A Review of the New York City Payroll with Reccomendations for Improvement from the Commission to Analyze Taxpayer Spending (Mini Project 1)

Foreward

In February 2025, the Commission to Analyze Taxpayer Spending was asked to analyze several questions of interest to the Mayor of New York City and the New York City Council regarding the budget for the City. In this document, we will present our findings to each of these questions.

Executive Summary

The Commission has determined that capping the salary for the Mayor will not lead to significant savings on the City payroll. The Commission has found sufficient evidence that increasing the number of employees per agency to reduce total overtime expenditure or replacing overtime altogether with a one time pay raise would have an impact on the city budget.

Research

if (!file.exists("data/mp01/nyc_payroll_export.csv")) {
  dir.create("data/mp01", showWarnings = FALSE, recursive = TRUE)

  ENDPOINT <- "https://data.cityofnewyork.us/resource/k397-673e.json"

  if (!require("httr2")) install.packages("httr2")
  library(httr2)

  if (!require("jsonlite")) install.packages("jsonlite")
  library(jsonlite)

  if (!require("dplyr")) install.packages("dplyr")
  library(dplyr)

  if (!require("readr")) install.packages("readr")
  library(readr)

  if (!require("ggplot2")) install.packages("ggplot2")
  library(readr)

  if (!require("scales")) install.packages("scales")
  library(scales)

  if (!require("stringr")) install.packages("scales")
  library(stringr)

  if (!require("knitr")) install.packages("knitr")
  library(knitr)

  if (!require("kableExtra")) install.packages("kableExtra")
  library(kableExtra)


  BATCH_SIZE <- 50000
  OFFSET <- 0
  END_OF_EXPORT <- FALSE
  ALL_DATA <- list()

  while (!END_OF_EXPORT) {
    cat("Requesting items", OFFSET, "to", BATCH_SIZE + OFFSET, "\n")

    req <- request(ENDPOINT) |>
      req_url_query(
        `$limit` = BATCH_SIZE,
        `$offset` = OFFSET
      )

    resp <- req_perform(req)

    batch_data <- fromJSON(resp_body_string(resp))

    ALL_DATA <- c(ALL_DATA, list(batch_data))

    if (NROW(batch_data) != BATCH_SIZE) {
      END_OF_EXPORT <- TRUE

      cat("End of Data Export Reached\n")
    } else {
      OFFSET <- OFFSET + BATCH_SIZE
    }
  }

  ALL_DATA <- bind_rows(ALL_DATA)

  cat("Data export complete:", NROW(ALL_DATA), "rows and", NCOL(ALL_DATA), "columns.")

  write_csv(ALL_DATA, "data/mp01/nyc_payroll_export.csv")
} else if (file.exists("data/mp01/nyc_payroll_export.csv")) {
  if (!require("dplyr")) install.packages("dplyr")
  library(dplyr)

  if (!require("readr")) install.packages("readr")
  library(readr)

  if (!require("ggplot2")) install.packages("ggplot2")
  library(ggplot2)

  if (!require("scales")) install.packages("scales")
  library(scales)

  if (!require("stringr")) install.packages("scales")
  library(stringr)

  if (!require("knitr")) install.packages("knitr")
  library(knitr)

  if (!require("kableExtra")) install.packages("kableExtra")
  library(kableExtra)

  ALL_DATA <- read_csv("data/mp01/nyc_payroll_export.csv", col_types = "iiccccTcccncnnn")
}
Loading required package: dplyr

Attaching package: 'dplyr'
The following objects are masked from 'package:stats':

    filter, lag
The following objects are masked from 'package:base':

    intersect, setdiff, setequal, union
Loading required package: readr
Loading required package: ggplot2
Loading required package: scales

Attaching package: 'scales'
The following object is masked from 'package:readr':

    col_factor
Loading required package: stringr
Loading required package: knitr
Loading required package: kableExtra

Attaching package: 'kableExtra'
The following object is masked from 'package:dplyr':

    group_rows
cleaned <- ALL_DATA |>
  mutate(work_location_borough = replace(work_location_borough, work_location_borough == "Bronx", "BRONX")) |>
  mutate(agency_name = replace(agency_name, agency_name == "Office Of Collective Bargainin", "Office Of Collective Bargaining")) |>
  mutate(agency_name = replace(agency_name, agency_name == "Police Department", "POLICE DEPARTMENT")) |>
  mutate(agency_name = replace(agency_name, agency_name == "Bronx DA", "BRONX DISTRICT ATTORNEY")) |>
  mutate(agency_name = replace(agency_name, agency_name == "Manhattan DA", "DISTRICT ATTORNEY-MANHATTAN")) |>
  mutate(agency_name = replace(agency_name, agency_name == "Queens DA", "DISTRICT ATTORNEY QNS COUNTY")) |>
  mutate(agency_name = replace(agency_name, agency_name == "Kings DA", "DISTRICT ATTORNEY KINGS COUNTY")) |>
  mutate(agency_name = replace(agency_name, agency_name == "Richmond DA", "DISTRICT ATTORNEY RICHMOND COU")) |>
  mutate(agency_name = replace(agency_name, agency_name == "Spec Narcs-DA", "DISTRICT ATTORNEY-SPECIAL NARC")) |>
  mutate(agency_name = replace(agency_name, agency_name == "BOARD OF CORRECTIONS", "BOARD OF CORRECTION")) |>
  mutate(agency_name = replace(agency_name, agency_name == "PRESIDENT BOROUGH OF MANHATTAN", "BOROUGH PRESIDENT-MANHATTAN")) |>
  mutate(agency_name = replace(agency_name, agency_name == "Police Department", "POLICE DEPARTMENT")) |>
  mutate(aggregated_agency_name = agency_name) |>
  mutate(aggregated_agency_name = replace(aggregated_agency_name, str_detect(agency_name, "DEPT OF ED"), "DEPARTMENT OF EDUCATION")) |>
  mutate(aggregated_agency_name = replace(aggregated_agency_name, str_detect(agency_name, "PUBLIC ADMINISTRATOR"), "PUBLIC ADMINISTRATOR")) |>
  mutate(aggregated_agency_name = replace(aggregated_agency_name, str_detect(agency_name, "STATEN ISLAND COMMUNITY BD"), "STATEN ISLAND COMMUNITY BD")) |>
  mutate(aggregated_agency_name = replace(aggregated_agency_name, str_detect(agency_name, "QUEENS COMMUNITY BOARD"), "QUEENS COMMUNITY BOARD")) |>
  mutate(aggregated_agency_name = replace(aggregated_agency_name, str_detect(agency_name, "MANHATTAN COMMUNITY BOARD"), "MANHATTAN COMMUNITY BOARD")) |>
  mutate(aggregated_agency_name = replace(aggregated_agency_name, str_detect(agency_name, "BROOKLYN COMMUNITY BOARD"), "BROOKLYN COMMUNITY BOARD")) |>
  mutate(aggregated_agency_name = replace(aggregated_agency_name, str_detect(agency_name, "BRONX COMMUNITY BOARD"), "BRONX COMMUNITY BOARD")) |>
  mutate(aggregated_agency_name = replace(aggregated_agency_name, str_detect(agency_name, "BOROUGH PRESIDENT"), "BOROUGH PRESIDENT")) |>
  mutate(aggregated_agency_name = replace(aggregated_agency_name, agency_name == "BOARD OF ELECTION POLL WORKERS", "BOARD OF ELECTION")) |>
  mutate(aggregated_agency_name = replace(aggregated_agency_name, agency_name == "DEPARTMENT OF EDUCATION ADMIN", "DEPARTMENT OF EDUCATION")) |>
  mutate(aggregated_agency_name = replace(aggregated_agency_name, agency_name == "DOE CUSTODIAL PAYROL", "DEPARTMENT OF EDUCATION")) |>
  mutate(pay_basis = if_else(title_description == "Custodian Engineer" & pay_basis == "per Hour", "per Annum", pay_basis)) |>
  mutate(
    agency_name = str_to_title(agency_name),
    aggregated_agency_name = str_to_title(aggregated_agency_name),
    last_name = str_to_title(last_name),
    mid_init = str_to_title(mid_init),
    title_description = str_to_title(title_description),
    first_name = str_to_title(first_name),
    work_location_borough = str_to_title(work_location_borough),
    leave_status_as_of_june_30 = str_to_title(leave_status_as_of_june_30)
  ) |>
  mutate(
    base_annual_pay = case_when(
      pay_basis == "per Hour" ~ base_salary * (regular_hours + 1.5 * ot_hours),
      pay_basis == "per Annum" ~ base_salary,
      pay_basis == "Per Day" ~ base_salary * regular_hours / 7.5,
      pay_basis == "Prorated Annual" ~ base_salary
    ),
    gross_annual_pay = regular_gross_paid + total_ot_paid + total_other_pay
  ) |>
  filter(gross_annual_pay > 0) |>
  filter(!is.na(last_name))



#rm(ALL_DATA)

The commission will use the NYC Payroll data with the specified data dictionary found here. The Commission has annualized the base pay rate reported in the city data. This analysis, at times, will also rely on the gross annual pay as recommended in the notes attached to the data dictionary.

The Commission has cleaned the data to the best of its ability. The Commission also defined an aggregated agency name. This is used for analysis where we need to analyze an agency as a whole and not any reported sub divisions of an agency. The Department of Education notably has many sub divisions.

The Commission has also corrected data for Custodial Engineers within the city. There is a pattern of classifying these employees as hourly workers which does not align with the salaries they are recorded to have received. As such, they have been classified as “Per Annum” employees with regard to pay.

The Commission has removed records from the analysis where the gross annual pay is less than zero or there is no last name recorded in the data set. The Commission believes that these records require further information to properly address. However, this information is not currently available.

Which job title has the highest base rate of pay?

The commission has been asked which role within New York City has the highest base rate of pay. We will be using the annualized base rate of pay and not the gross annual pay for this analysis.

tmp <- cleaned |>
  group_by(title_description) |>
  summarize(avg_base = mean(base_annual_pay)) |>
  slice_max(order_by = avg_base, n = 1)

kable(tmp |>
  rename(
    "Title / Job Description" = title_description,
    "Average Base Annual Pay (USD)" = avg_base
  ), digits = 0, format.args = list(big.mark = ","))
Title / Job Description Average Base Annual Pay (USD)
Chief Actuary 296,470

The job title with the highest average annual base pay is Chief Actuary at $296,470 per year.

What individual and in what year had the highest total pay?

The commission has decided to review this using the total gross pay as calculated by the methodology within the data dictionary provided by the city and not the annualized base rate of pay.

To do so, we

tmp <- cleaned |>
  select(fiscal_year, agency_name, title_description, last_name, first_name, mid_init, gross_annual_pay) |>
  ungroup() |>
  slice_max(gross_annual_pay, n = 1)

Mark K. Tettonis, the Chief Marine Engineer of the Department Of Transportation had the highest total pay of $1,689,518 in 2024.

Which individual had worked the most overtime hours?

Highest Logged Amount of Overtime Hours Annually

The Commission has found that the below employees have logged the largest amount of overtime hours per year. The Police Department notably is featured several times on this list.

In this instance, our analysis is hurt but the lack of unique employee identifiers. It is not immediately apparent why.

cleaned |>
  group_by(fiscal_year, agency_name, last_name, first_name, mid_init, title_description) |>
  summarize(total_ot_hours = sum(ot_hours)) |>
  ungroup(agency_name, last_name, first_name, mid_init, title_description) |>
  slice_max(total_ot_hours, n = 1) |>
  mutate(total_ot_days = total_ot_hours / 24) |>
  arrange(desc(fiscal_year)) |>
  rename(
    "Fiscal Year" = fiscal_year,
    "Total Overtime Hours" = total_ot_hours,
    "Total Overtime in Days" = total_ot_days,
    "Title / Job Description" = title_description,
    "Agency Name" = agency_name,
    "First Name" = first_name,
    "Last Name" = last_name,
    "Middle Initial" = mid_init
  ) |>
  kable()
`summarise()` has grouped output by 'fiscal_year', 'agency_name', 'last_name',
'first_name', 'mid_init'. You can override using the `.groups` argument.
Fiscal Year Agency Name Last Name First Name Middle Initial Title / Job Description Total Overtime Hours Total Overtime in Days
2024 Hra/Dept Of Social Services Leslie Asalay NA Benefits Opportunity Specialist 3702.00 154.2500
2023 Department Of Correction Castillo John NA Correction Officer 3943.05 164.2937
2022 Fire Department Shelley James M Wiper 5612.00 233.8333
2021 Department Of Sanitation Sarno John M Supervisor 3131.00 130.4583
2020 Nyc Housing Authority Davis Kenny A Maintenance Worker 5051.00 210.4583
2019 Police Department Islam Md S Traffic Enforcement Agent Al 1 & 2 Only 3145.00 131.0417
2018 Police Department Islam Md S Traffic Enforcement Agent Al 1 & 2 Only 3028.50 126.1875
2017 Department Of Correction Castillo John NA Correction Officer 2935.75 122.3229
2016 Police Department Islam Md S Traffic Enforcement Agent 2987.50 124.4792
2015 Police Department Uddin Mohammad N Traffic Enforcement Agent 5308.50 221.1875
2014 Department Of Buildings Murphy John NA Associate Inspector 3347.50 139.4792

Employee with Highest Total Amount of Logged Overtime Hours

tmp <- cleaned |>
  group_by(agency_name, last_name, first_name, mid_init, title_description) |>
  summarize(total_ot_hours = sum(ot_hours)) |>
  ungroup() |>
  slice_max(total_ot_hours, n = 1) |>
  mutate(total_ot_days = total_ot_hours / 24) |>
  rename(
    "Title / Job Description" = title_description,
    "Agency Name" = agency_name,
    "First Name" = first_name,
    "Last Name" = last_name,
    "Middle Initial" = mid_init,
    "Total Overtime Hours" = total_ot_hours,
    "Total Overtime in Days" = total_ot_days
  ) |>
  kable(digits = 2, format.args = list(big.mark = ","))
`summarise()` has grouped output by 'agency_name', 'last_name', 'first_name',
'mid_init'. You can override using the `.groups` argument.

John Castillo, a Correctional Officer in the Department of Corrections, has logged the largest amount of overtime hours within NYC. Mr. Castillo has logged 22,120 hours or 922 days of overtime according to publicly available data.

Which agency has the highest average total annual gross payroll?

cleaned |>
  group_by(aggregated_agency_name) |>
  summarize(mean_annual_gross_salary = mean(gross_annual_pay)) |>
  slice_max(mean_annual_gross_salary, n = 10) |>
  rename(
    "Agency Name (Aggregated)" = aggregated_agency_name,
    "Mean Annual Gross Salary (USD)" = mean_annual_gross_salary
  ) |>
  kable(digits = 2, format.args = list(big.mark = ","))
Agency Name (Aggregated) Mean Annual Gross Salary (USD)
Office Of Collective Bargainin 105,562.73
Financial Info Svcs Agency 105,436.71
Fire Department 100,771.68
Office Of The Actuary 98,543.01
Municipal Water Fin Authority 92,880.93
Department Of Correction 89,654.30
Nyc Fire Pension Fund 88,934.29
Independent Budget Office 85,512.45
Police Department 84,564.47
Conflicts Of Interest Board 84,526.45

The Office of Collective Bargaining1 has the highest average gross salary of any agency within New York City. This conclusion is sound as its stated mission2 is to help the City negotiate collective bargaining with unions and the department will need a high number of attorneys on payroll to do so.

Which agency has the most employees on payroll each year?

tmp <- cleaned |>
  group_by(fiscal_year, aggregated_agency_name) |>
  summarize(count_employee = n()) |>
  ungroup() |>
  slice_max(count_employee, n = 10) |>
  arrange(desc(fiscal_year)) |>
  rename(
    "Number of Employees on File" = count_employee,
    "Agency Name (Aggregated)" = aggregated_agency_name,
    "Fiscal Year" = fiscal_year
  )
`summarise()` has grouped output by 'fiscal_year'. You can override using the
`.groups` argument.
tmp$`Number of Employees on File` <- format(tmp$`Number of Employees on File`, big.mark = ",")

kable(tmp)
Fiscal Year Agency Name (Aggregated) Number of Employees on File
2024 Department Of Education 295,223
2023 Department Of Education 289,856
2022 Department Of Education 342,860
2021 Department Of Education 303,807
2020 Department Of Education 313,471
2019 Department Of Education 310,097
2018 Department Of Education 273,855
2017 Department Of Education 266,499
2016 Department Of Education 265,291
2015 Department Of Education 299,815

The Department of Education has the most employees of any department3 within New York City for all years with publicly available data.

Which agency has the highest average overtime usage?

cleaned |>
  group_by(agency_name) |>
  summarize(avg_ot_count = mean(ot_hours), avg_reg_hours = mean(regular_hours)) |>
  filter(avg_ot_count != 0) |>
  arrange(desc(avg_ot_count)) |>
  slice_max(avg_ot_count, n = 10) |>
  rename(
    "Agency Name" = agency_name,
    "Average Amount of Overtime Hours" = avg_ot_count,
    "Average Amount of Regular Hours" = avg_reg_hours
  ) |>
  kable(digits = 0, format.args = list(big.mark = ","))
Agency Name Average Amount of Overtime Hours Average Amount of Regular Hours
Fire Department 347 1,822
Department Of Correction 321 1,739
Board Of Election 262 1,314
Department Of Sanitation 224 1,618
Police Department 214 1,717
Dept Of Citywide Admin Svcs 189 1,582
Department Of Transportation 185 1,609
Nyc Housing Authority 169 1,600
Dept. Of Homeless Services 164 1,501
Admin For Children’s Svcs 121 1,491

The New York Fire Department has the highest average overtime hours of any department at 347 hours. This was determined by taking the average amount of overtime hours logged by agency. The top ten agencies by average amount of overtime worked is provided above.

What is the average salary of employees outside of the five bouroughs?

The average salary of employees outside of the five boroughs is listed below. The commission is limited as the there is a catch all category called “Other”. Further granularity is needed for future analysis. We leave out any employee where the work location was recorded as NA.

cleaned |>
  filter(work_location_borough %in% c("Albany", "Other", "Orange")) |>
  group_by(work_location_borough) |>
  summarize(avg_gross_annual_pay = mean(gross_annual_pay)) |>
  rename(
    "Work Location (Borough)" = work_location_borough,
    "Average Gross Annual Pay" = avg_gross_annual_pay
  ) |>
  kable(digits = 0, format.args = list(big.mark = ","))
Work Location (Borough) Average Gross Annual Pay
Albany 86,341
Orange 53,821
Other 68,753

How much has the city’s aggregate payroll grown in the past 10 years?

pay_data <- cleaned |>
  group_by(fiscal_year) |>
  summarize(total_payroll = sum(gross_annual_pay))

ggplot(data = pay_data, aes(x = fiscal_year, y = total_payroll)) +
  geom_bar(stat = "identity",fill='steelblue') +
  scale_y_continuous(
    name = "Payroll of New York City",
    labels = label_currency(scale_cut = cut_short_scale()),
    breaks = scales::pretty_breaks(n = 6)
  ) +
  scale_x_continuous(
    name = "Fiscal Year",
    breaks = scales::pretty_breaks(n = 10)
  ) +
  coord_cartesian(ylim = c(20000000000, NA))

NYC Total Payroll per Year
pay_2014 <- pay_data |> filter(fiscal_year == 2014)|> select(total_payroll)
pay_2024 <- pay_data |> filter(fiscal_year == 2024)|> select(total_payroll)

pay_diff <- pay_2024 - pay_2014

Over the last ten years, the total base annual payroll of New York City has increased by $9,261,070,771, from $22,854,720,601in 2014 to $32,115,791,372 in 2024.

Proposals to reduce expenditure

Before proceeding we must establish our base value. We will use the total recorded payroll for 2023 as this is the last full year recorded in the data set.

high_water_mark <- cleaned |> 
  filter(fiscal_year == 2023) |> 
  select(gross_annual_pay) |>
  sum()

Our benchmark for all years will be $31,069,627,573 from 2023. When useful or informative, we will look at data from other years.

Proposal 1: Introduce cap based on the Mayor’s salary

We will review the proposal to make cap all salaries within the city at the pay rate of the mayor. It will be helpful to first see the annual gross salary paid to the currency mayor Eric L. Adams as he is present in the data for multiple years and has held multiple jobs within the city.

eric_adams_data <- cleaned |>
  filter(last_name == "Adams", first_name == "Eric", mid_init == "L")
ead <- eric_adams_data |>
  group_by(fiscal_year) |>
  summarize(sum_salary = sum(gross_annual_pay))

ggplot(ead, mapping = aes(x = fiscal_year, y = sum_salary)) +
  geom_bar(stat = "identity", fill="steelblue") +
  scale_y_continuous(
    name = "Annual Salary of Eric Adams",
    labels = label_currency(scale_cut = cut_short_scale()),
    breaks = scales::pretty_breaks(n = 6)
  ) +
  scale_x_continuous(
    name = "Fiscal Year",
    breaks = scales::pretty_breaks(n = 10)
  )

Eric L. Adams Payroll per Year

Eric Adams was elected as mayor in the 2021 election. It is important to note that his pay for 2022 records his (now) current pay as well as the pay for his previous role as the Brooklyn Borough President. We do see a marked increase in his annual gross pay from 2015 to 2024.

As defined in the New York City Charter4, the mayor is entitled to a salary of $258,750 per year. We will use this value as the maximum gross annual pay for all employees.

mayor_cap_2023 <-cleaned |> 
  filter(fiscal_year==2023) |>
  mutate(gross_annual_pay = case_when(gross_annual_pay>258750 ~ 258750,
                                    TRUE ~ gross_annual_pay)) |>
  select(gross_annual_pay) |>
  sum()

By capping the total gross annual pay to match that of the mayor, the expected payroll would have been $31,057,950,855, representing a savings of $11,676,718.

This value is not as high as we the Commission had hoped. Let us see what the distribution of gross annual pay for the year 2023 looks like.

cleaned |> 
  filter(fiscal_year==2023)|>
  select(pay_basis,gross_annual_pay) |>
  ggplot(aes(x=gross_annual_pay)) + geom_histogram() +
    scale_y_continuous(
    name = "Count of Employees at Salary Level",
    breaks = scales::pretty_breaks(n = 6)
  ) +
  scale_x_continuous(
    name = "Gross Annual Pay",
    labels = label_currency(scale_cut = cut_short_scale()),
    breaks = scales::pretty_breaks(n = 10)
  ) +
geom_vline(aes(xintercept=258750),
            color="blue", linetype="dashed", size=1)
Warning: Using `size` aesthetic for lines was deprecated in ggplot2 3.4.0.
ℹ Please use `linewidth` instead.
`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

HIstogram of Payroll for Fiscal Year 2023

Here is the distribution of all employee pay for 2023, with the mayoral salary indicated with the blue line. We can see that there are significantly few people making more than the mayoral salary compared to those making less than the mayoral salary. This includes ALL employee types. Let us limit our analysis to only the annually salaried city employees.

cleaned |> 
  filter(fiscal_year==2023,
         pay_basis %in% c("Per Annum","Prorated Annual"))|>
  select(pay_basis,gross_annual_pay) |>
  ggplot(aes(x=gross_annual_pay)) + geom_histogram() +
    scale_y_continuous(
    name = "Count of Employees at Annual Salary Level",
    breaks = scales::pretty_breaks(n = 6)
  ) +
  scale_x_continuous(
    name = "Gross Annual Pay",
    labels = label_currency(scale_cut = cut_short_scale()),
    breaks = scales::pretty_breaks(n = 10)
  ) +
geom_vline(aes(xintercept=258750),
            color="blue", linetype="dashed", size=1)
`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

Histogram of Payroll for annually Salaried for Fiscal Year 2023

When restricting our view to annually salaried employees, we can see the limits of the proposal. There are significantly more people making less than the Mayor’s salary compared to the number of people making more than the mayor.

Proposal 2: Increase regular capacity by hiring more employees to reduce overtime expenditure

We will use a 2000 hour work week as the base line measurement.

tmp <- cleaned |>
  filter(fiscal_year==2023) |>
  group_by(agency_name, title_description) |>
  summarize(
    average_base_annual_pay = mean(base_annual_pay, ),
    total_base_annual_pay = sum(base_annual_pay),
    total_over_time_paid = sum(total_ot_paid),
    total_ot_hours = sum(ot_hours)
  ) |>
  mutate(
    number_new_full_time_employees = total_ot_hours %/% 2000,
    ot_paid_converted_to_regular = total_over_time_paid / 1.5,
    new_employee_cost = average_base_annual_pay * number_new_full_time_employees,
    is_new_employee_outright_cheaper = case_when(
      number_new_full_time_employees == 0 ~ 0,
      ot_paid_converted_to_regular > new_employee_cost ~ 1,
      TRUE ~ 0
    ),
    savings = case_when(
      is_new_employee_outright_cheaper == 1 ~ ot_paid_converted_to_regular - new_employee_cost,
      TRUE ~ 0
    )
  )
`summarise()` has grouped output by 'agency_name'. You can override using the
`.groups` argument.
total_savings_by_agency <- tmp |>
  group_by(agency_name) |>
  summarise(total_savings = sum(savings)) |>
  filter(total_savings > 0)

total_savings_by_agency |>
  slice_max(total_savings, n = 10) |>
  rename("Agency Name"=agency_name,
         "Total Savings"=total_savings) |> 
  kable(format.args = list(big.mark = ",")) 
Agency Name Total Savings
Department Of Sanitation 25,392,961
Fire Department 21,847,569
Police Department 19,928,391
Department Of Correction 10,362,960
Department Of Education Admin 4,837,283
Department Of Transportation 4,792,377
Hra/Dept Of Social Services 4,625,900
Dept Of Parks & Recreation 3,275,678
Nyc Housing Authority 2,130,958
Dept Of Health/Mental Hygiene 2,007,121
total_savings <- sum(total_savings_by_agency$total_savings)

The Commission is pleased to report that $106,481,110 can be saved by hiring new employees to reduce overtime expenditure. The top ten departments that benefit from this action are in the above table.

Proposal 3: Remove overtime pay and increase salaries by the median or average overtime paid

Overtime expenditure is a significant portion of the overall payroll for New York City. We will review the financial impact of eliminating overtime all together and replacing it with a one time pay raise. This one time raise will be equal to the lower value of the median overtime or the average overtime paid per agency and description.

The annualized base pay and the total overtime paid will be used as the base rate instead of the gross rate. This will simplify our analysis, but we lose a degree of accuracy by not including the total other pay for each employee.

We will attempt to back-date this analysis by calculating the mean and median overtime paid per agency, job title, and fiscal year. We will then add the lower of the median and the mean to the annualized base pay to create the proposed pay rate. The amount of savings is calculated subtracting the proposed pay rate from the sum of the annualized base pay and the total over paid.

We will then compare the results against the annual payroll per year to see the total savings had this methodology been adopted in the past.

# TODO Get rid of all the TMPs

tmp <- cleaned |>
  group_by(fiscal_year, agency_name, title_description) |>
  summarize(
    average_base_annual_pay = mean(base_annual_pay, ),
    total_base_annual_pay = sum(base_annual_pay),
    total_over_time_paid = sum(total_ot_paid),
    average_over_time_paid = mean(total_ot_paid),
    median_over_time_paid = median(total_ot_paid),
    total_ot_hours = sum(ot_hours),
    number_employees = n(),
    smaller_of_two = min(average_over_time_paid, median_over_time_paid),
    proposed_total_salary_increase = number_employees * smaller_of_two
  ) |>
  mutate(
    current_pay_total = total_base_annual_pay + total_over_time_paid,
    proposed_pay_total = total_base_annual_pay + proposed_total_salary_increase,
    savings = current_pay_total - proposed_pay_total
  )
`summarise()` has grouped output by 'fiscal_year', 'agency_name'. You can
override using the `.groups` argument.
total_savings <- sum(tmp$savings)

total_savings_by_agency <- tmp |>
  group_by(agency_name) |>
  summarize(agency_savings = sum(savings))

We can see in the below table that the savings are significant each year.

tmp |>
  group_by(fiscal_year) |>
  summarize(savings = sum(savings, na.rm = TRUE)) |>
  rename(
    "Total Annual Payroll Savings" = savings,
    "Fiscal Year" = fiscal_year)
# A tibble: 11 × 2
   `Fiscal Year` `Total Annual Payroll Savings`
           <int>                          <dbl>
 1          2014                     243137378.
 2          2015                     237757751.
 3          2016                     333201300.
 4          2017                     358503107.
 5          2018                     359469859.
 6          2019                     361231410.
 7          2020                     331290228.
 8          2021                     354099678.
 9          2022                     480630098.
10          2023                     482879010.
11          2024                     638606711.
  tmp$`Total Annual Payroll Savings` <- format(tmp$`Total Annual Payroll Savings`, big.mark = ",") 
Warning: Unknown or uninitialised column: `Total Annual Payroll Savings`.
  kable(tmp)
fiscal_year agency_name title_description average_base_annual_pay total_base_annual_pay total_over_time_paid average_over_time_paid median_over_time_paid total_ot_hours number_employees smaller_of_two proposed_total_salary_increase current_pay_total proposed_pay_total savings Total Annual Payroll Savings
2014 Admin For Children’s Svcs *Attorney At Law 78712.12500 1.259394e+06 236.08 1.475500e+01 0.000 2.50 16 0.000000e+00 0.00 1.259630e+06 1.259394e+06 236.08 NULL
2014 Admin For Children’s Svcs *Certified Applications Developer 91789.00000 9.178900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.178900e+04 9.178900e+04 0.00 NULL
2014 Admin For Children’s Svcs *Certified Database Administrator 93854.50000 1.877090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.877090e+05 1.877090e+05 0.00 NULL
2014 Admin For Children’s Svcs *Certified Local Area Network Administrator 79484.00000 2.384520e+05 822.48 2.741600e+02 91.930 24.50 3 9.193000e+01 275.79 2.392745e+05 2.387278e+05 546.69 NULL
2014 Admin For Children’s Svcs *Cook 34504.25000 1.380170e+05 13417.39 3.354347e+03 2529.190 579.25 4 2.529190e+03 10116.76 1.514344e+05 1.481338e+05 3300.63 NULL
2014 Admin For Children’s Svcs *Custodial Assistant 34761.00000 3.476100e+04 12459.87 1.245987e+04 12459.870 481.50 1 1.245987e+04 12459.87 4.722087e+04 4.722087e+04 0.00 NULL
2014 Admin For Children’s Svcs *Senior Cook 37917.66667 1.137530e+05 29071.07 9.690357e+03 7249.910 1146.50 3 7.249910e+03 21749.73 1.428241e+05 1.355027e+05 7321.34 NULL
2014 Admin For Children’s Svcs Accountant 54477.46154 7.082070e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 7.082070e+05 7.082070e+05 0.00 NULL
2014 Admin For Children’s Svcs Adm Manager-Non-Mgrl From M1/M2 65591.50000 2.623660e+05 285.65 7.141250e+01 0.000 8.50 4 0.000000e+00 0.00 2.626517e+05 2.623660e+05 285.65 NULL
2014 Admin For Children’s Svcs Admin Contract Specialist 84928.50000 1.698570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.698570e+05 1.698570e+05 0.00 NULL
2014 Admin For Children’s Svcs Administrative Accountant 84942.00000 8.494200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.494200e+04 8.494200e+04 0.00 NULL
2014 Admin For Children’s Svcs Administrative Architect 90931.00000 9.093100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.093100e+04 9.093100e+04 0.00 NULL
2014 Admin For Children’s Svcs Administrative Construction Project Manager 98668.00000 9.866800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.866800e+04 9.866800e+04 0.00 NULL
2014 Admin For Children’s Svcs Administrative Consultant 78972.00000 7.897200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.897200e+04 7.897200e+04 0.00 NULL
2014 Admin For Children’s Svcs Administrative Director Of Residential Child Care 77569.07692 1.008398e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.008398e+06 1.008398e+06 0.00 NULL
2014 Admin For Children’s Svcs Administrative Director Of Social Services 88824.17662 2.078486e+07 18925.39 8.087774e+01 0.000 563.25 234 0.000000e+00 0.00 2.080378e+07 2.078486e+07 18925.39 NULL
2014 Admin For Children’s Svcs Administrative Engineer 80320.00000 1.606400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.606400e+05 1.606400e+05 0.00 NULL
2014 Admin For Children’s Svcs Administrative Juvenile Counselor 67852.43750 1.085639e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.085639e+06 1.085639e+06 0.00 NULL
2014 Admin For Children’s Svcs Administrative Project Manager 77465.75000 3.098630e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.098630e+05 3.098630e+05 0.00 NULL
2014 Admin For Children’s Svcs Administrative Public Health Nurse 117776.50000 2.355530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.355530e+05 2.355530e+05 0.00 NULL
2014 Admin For Children’s Svcs Administrative Real Property Manager 124000.00000 1.240000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.240000e+05 1.240000e+05 0.00 NULL
2014 Admin For Children’s Svcs Administrative Staff Analyst 82983.59302 2.140977e+07 234939.62 9.106187e+02 0.000 4436.75 258 0.000000e+00 0.00 2.164471e+07 2.140977e+07 234939.62 NULL
2014 Admin For Children’s Svcs Agency Attorney 69490.99849 1.799817e+07 15001.80 5.792201e+01 0.000 333.75 259 0.000000e+00 0.00 1.801317e+07 1.799817e+07 15001.80 NULL
2014 Admin For Children’s Svcs Agency Attorney Interne 52694.75676 1.949706e+06 1506.45 4.071486e+01 0.000 34.75 37 0.000000e+00 0.00 1.951212e+06 1.949706e+06 1506.45 NULL
2014 Admin For Children’s Svcs Architect 69592.00000 6.959200e+04 943.74 9.437400e+02 943.740 21.00 1 9.437400e+02 943.74 7.053574e+04 7.053574e+04 0.00 NULL
2014 Admin For Children’s Svcs Assistant Architect 55345.00000 5.534500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.534500e+04 5.534500e+04 0.00 NULL
2014 Admin For Children’s Svcs Assistant Commissioner 121769.00000 1.217690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.217690e+05 1.217690e+05 0.00 NULL
2014 Admin For Children’s Svcs Associate Inspector 61146.00000 6.114600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.114600e+04 6.114600e+04 0.00 NULL
2014 Admin For Children’s Svcs Associate Juvenile Counselor 52230.97872 2.454856e+06 1192847.36 2.537973e+04 20715.330 28852.00 47 2.071533e+04 973620.51 3.647703e+06 3.428477e+06 219226.85 NULL
2014 Admin For Children’s Svcs Associate Project Manager 71400.33333 4.284020e+05 69150.80 1.152513e+04 778.805 1278.50 6 7.788050e+02 4672.83 4.975528e+05 4.330748e+05 64477.97 NULL
2014 Admin For Children’s Svcs Associate Staff Analyst 71030.76344 6.605861e+06 8110.91 8.721409e+01 0.000 313.25 93 0.000000e+00 0.00 6.613972e+06 6.605861e+06 8110.91 NULL
2014 Admin For Children’s Svcs Bookkeeper 40425.28571 2.829770e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.829770e+05 2.829770e+05 0.00 NULL
2014 Admin For Children’s Svcs Caseworker 39911.53846 2.594250e+06 14319.76 2.203040e+02 0.000 525.25 65 0.000000e+00 0.00 2.608570e+06 2.594250e+06 14319.76 NULL
2014 Admin For Children’s Svcs Certified It Administrator 79462.00000 7.946200e+04 1185.20 1.185200e+03 1185.200 26.50 1 1.185200e+03 1185.20 8.064720e+04 8.064720e+04 0.00 NULL
2014 Admin For Children’s Svcs Certified It Developer 79795.33333 2.393860e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.393860e+05 2.393860e+05 0.00 NULL
2014 Admin For Children’s Svcs Chaplain 52937.00000 5.293700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.293700e+04 5.293700e+04 0.00 NULL
2014 Admin For Children’s Svcs Child And Family Specialist 74697.40000 1.643343e+07 281447.50 1.279307e+03 0.000 6007.00 220 0.000000e+00 0.00 1.671488e+07 1.643343e+07 281447.50 NULL
2014 Admin For Children’s Svcs Child Protective Specialist 49351.61059 9.973960e+07 9673982.15 4.786730e+03 3406.840 283117.98 2021 3.406840e+03 6885223.64 1.094136e+08 1.066248e+08 2788758.51 NULL
2014 Admin For Children’s Svcs Child Protective Specialist Supervisor 69970.49353 3.785404e+07 4821331.68 8.911889e+03 6749.940 98800.00 541 6.749940e+03 3651717.54 4.267537e+07 4.150575e+07 1169614.14 NULL
2014 Admin For Children’s Svcs Child Welfare Specialist 51033.72199 1.229913e+07 242593.47 1.006612e+03 0.000 6987.50 241 0.000000e+00 0.00 1.254172e+07 1.229913e+07 242593.47 NULL
2014 Admin For Children’s Svcs Child Welfare Specialist Supervisor 65404.70635 8.240993e+06 276505.44 2.194488e+03 0.000 6096.25 126 0.000000e+00 0.00 8.517498e+06 8.240993e+06 276505.44 NULL
2014 Admin For Children’s Svcs Children’s Counselor 40109.55674 2.005478e+06 218260.78 4.365216e+03 1694.550 7853.72 50 1.694550e+03 84727.50 2.223739e+06 2.090205e+06 133533.28 NULL
2014 Admin For Children’s Svcs City Custodial Assistant 33872.33333 1.016170e+05 10219.42 3.406473e+03 2403.700 337.25 3 2.403700e+03 7211.10 1.118364e+05 1.088281e+05 3008.32 NULL
2014 Admin For Children’s Svcs City Laborer NA NA 106998.77 2.139975e+04 29364.020 2106.75 5 2.139975e+04 106998.77 NA NA NA NULL
2014 Admin For Children’s Svcs City Medical Director 155077.50000 1.550775e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550775e+05 1.550775e+05 0.00 NULL
2014 Admin For Children’s Svcs City Research Scientist 83234.50000 6.658760e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.658760e+05 6.658760e+05 0.00 NULL
2014 Admin For Children’s Svcs Clerical Aide 29007.00000 5.801400e+04 20.13 1.006500e+01 10.065 1.25 2 1.006500e+01 20.13 5.803413e+04 5.803413e+04 0.00 NULL
2014 Admin For Children’s Svcs Clerical Associate Most Mayoral Ag 35510.29333 7.989816e+06 150245.90 6.677596e+02 0.000 5417.50 225 0.000000e+00 0.00 8.140062e+06 7.989816e+06 150245.90 NULL
2014 Admin For Children’s Svcs College Aide 4465.22937 2.455876e+05 0.00 0.000000e+00 0.000 0.00 55 0.000000e+00 0.00 2.455876e+05 2.455876e+05 0.00 NULL
2014 Admin For Children’s Svcs Commissioner Of Children’s Services 205199.50000 4.103990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.103990e+05 4.103990e+05 0.00 NULL
2014 Admin For Children’s Svcs Community Assistant 31856.67164 2.134397e+06 49496.47 7.387533e+02 0.000 2293.75 67 0.000000e+00 0.00 2.183893e+06 2.134397e+06 49496.47 NULL
2014 Admin For Children’s Svcs Community Associate 42171.39216 2.150741e+06 70936.88 1.390919e+03 0.000 2465.13 51 0.000000e+00 0.00 2.221678e+06 2.150741e+06 70936.88 NULL
2014 Admin For Children’s Svcs Community Coordinator 55869.25366 1.145320e+07 99190.68 4.838570e+02 0.000 2506.00 205 0.000000e+00 0.00 1.155239e+07 1.145320e+07 99190.68 NULL
2014 Admin For Children’s Svcs Computer Aide-Non-Spvr 43610.23684 1.657189e+06 9678.37 2.546939e+02 0.000 307.75 38 0.000000e+00 0.00 1.666867e+06 1.657189e+06 9678.37 NULL
2014 Admin For Children’s Svcs Computer Associate 63316.06897 1.836166e+06 1725.42 5.949724e+01 0.000 37.25 29 0.000000e+00 0.00 1.837891e+06 1.836166e+06 1725.42 NULL
2014 Admin For Children’s Svcs Computer Programmer Analyst 59158.00000 2.366320e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.366320e+05 2.366320e+05 0.00 NULL
2014 Admin For Children’s Svcs Computer Service Technician 41533.00000 1.245990e+05 339.15 1.130500e+02 0.000 12.00 3 0.000000e+00 0.00 1.249381e+05 1.245990e+05 339.15 NULL
2014 Admin For Children’s Svcs Computer Specialist 89198.47619 1.873168e+06 2431.68 1.157943e+02 0.000 36.00 21 0.000000e+00 0.00 1.875600e+06 1.873168e+06 2431.68 NULL
2014 Admin For Children’s Svcs Computer Systems Manager 94103.73077 2.446697e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 2.446697e+06 2.446697e+06 0.00 NULL
2014 Admin For Children’s Svcs Confidential Agency Investigator 125888.00000 1.258880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.258880e+05 1.258880e+05 0.00 NULL
2014 Admin For Children’s Svcs Congreg Care Spec - Acs 49479.06667 7.421860e+05 85871.80 5.724787e+03 4614.440 2527.50 15 4.614440e+03 69216.60 8.280578e+05 8.114026e+05 16655.20 NULL
2014 Admin For Children’s Svcs Congreg Care Spec- Djj 44915.92308 1.751721e+06 247688.53 6.350988e+03 4438.600 7937.25 39 4.438600e+03 173105.40 1.999410e+06 1.924826e+06 74583.13 NULL
2014 Admin For Children’s Svcs Construction Project Manager 72177.16667 4.330630e+05 37961.52 6.326920e+03 86.260 533.50 6 8.626000e+01 517.56 4.710245e+05 4.335806e+05 37443.96 NULL
2014 Admin For Children’s Svcs Consultant 65175.58824 1.107985e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.107985e+06 1.107985e+06 0.00 NULL
2014 Admin For Children’s Svcs Contract Specialist 41699.00000 8.339800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.339800e+04 8.339800e+04 0.00 NULL
2014 Admin For Children’s Svcs Custodian 35988.00000 3.238920e+05 59792.30 6.643589e+03 3257.880 2491.75 9 3.257880e+03 29320.92 3.836843e+05 3.532129e+05 30471.38 NULL
2014 Admin For Children’s Svcs Deputy General Counsel 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2014 Admin For Children’s Svcs Deputy Superintendent 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2014 Admin For Children’s Svcs Director Of Field Operations 91497.07104 1.674396e+07 68208.93 3.727264e+02 0.000 1281.50 183 0.000000e+00 0.00 1.681217e+07 1.674396e+07 68208.93 NULL
2014 Admin For Children’s Svcs Director Of Security 71500.00000 7.150000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.150000e+04 7.150000e+04 0.00 NULL
2014 Admin For Children’s Svcs Electrician NA NA 65892.75 6.589275e+04 65892.750 796.50 1 6.589275e+04 65892.75 NA NA NA NULL
2014 Admin For Children’s Svcs Eligibility Specialist 42669.50000 8.533900e+04 4814.52 2.407260e+03 2407.260 155.00 2 2.407260e+03 4814.52 9.015352e+04 9.015352e+04 0.00 NULL
2014 Admin For Children’s Svcs Executive Agency Counsel 108241.18182 4.762612e+06 69.80 1.586364e+00 0.000 1.25 44 0.000000e+00 0.00 4.762682e+06 4.762612e+06 69.80 NULL
2014 Admin For Children’s Svcs Food Service Manager 57183.00000 5.718300e+04 3145.38 3.145380e+03 3145.380 91.00 1 3.145380e+03 3145.38 6.032838e+04 6.032838e+04 0.00 NULL
2014 Admin For Children’s Svcs Graphic Artist 44209.00000 4.420900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.420900e+04 4.420900e+04 0.00 NULL
2014 Admin For Children’s Svcs Home Aide 30489.00000 6.097800e+04 8768.46 4.384230e+03 4384.230 416.25 2 4.384230e+03 8768.46 6.974646e+04 6.974646e+04 0.00 NULL
2014 Admin For Children’s Svcs Homemaker 31074.00000 2.175180e+05 22670.50 3.238643e+03 263.620 1035.75 7 2.636200e+02 1845.34 2.401885e+05 2.193633e+05 20825.16 NULL
2014 Admin For Children’s Svcs Houseparent Aide 33979.00000 3.397900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.397900e+04 3.397900e+04 0.00 NULL
2014 Admin For Children’s Svcs Human Resources Technician 32800.00000 3.280000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.280000e+04 3.280000e+04 0.00 NULL
2014 Admin For Children’s Svcs Institutional Aide 32960.81481 8.899420e+05 198217.54 7.341390e+03 4271.280 8220.25 27 4.271280e+03 115324.56 1.088160e+06 1.005267e+06 82892.98 NULL
2014 Admin For Children’s Svcs Juvenile Counselor 39078.48525 1.457628e+07 3981148.82 1.067332e+04 8325.330 130596.50 373 8.325330e+03 3105348.09 1.855742e+07 1.768162e+07 875800.73 NULL
2014 Admin For Children’s Svcs Management Auditor 59217.50000 1.184350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.184350e+05 1.184350e+05 0.00 NULL
2014 Admin For Children’s Svcs Motor Vehicle Operator 41942.90909 9.227440e+05 313300.80 1.424095e+04 13317.050 10360.93 22 1.331705e+04 292975.10 1.236045e+06 1.215719e+06 20325.70 NULL
2014 Admin For Children’s Svcs Motor Vehicle Supervisor 50808.00000 1.016160e+05 54188.84 2.709442e+04 27094.420 1558.00 2 2.709442e+04 54188.84 1.558048e+05 1.558048e+05 0.00 NULL
2014 Admin For Children’s Svcs Office Machine Aide 33426.00000 3.342600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.342600e+04 3.342600e+04 0.00 NULL
2014 Admin For Children’s Svcs Ombudsman 61369.00000 6.136900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.136900e+04 6.136900e+04 0.00 NULL
2014 Admin For Children’s Svcs Painter NA NA 8610.00 8.610000e+03 8610.000 173.00 1 8.610000e+03 8610.00 NA NA NA NULL
2014 Admin For Children’s Svcs Paralegal Aide 37144.23529 6.314520e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 6.314520e+05 6.314520e+05 0.00 NULL
2014 Admin For Children’s Svcs Plumber NA NA 89029.35 4.451468e+04 44514.675 1009.00 2 4.451468e+04 89029.35 NA NA NA NULL
2014 Admin For Children’s Svcs Principal Administrative Associate - Lev 1 & 2 Non Supvr 49937.35341 1.473152e+07 198754.71 6.737448e+02 0.000 5849.00 295 0.000000e+00 0.00 1.493027e+07 1.473152e+07 198754.71 NULL
2014 Admin For Children’s Svcs Procurement Analyst 57356.00000 7.456280e+05 2491.40 1.916462e+02 0.000 117.50 13 0.000000e+00 0.00 7.481194e+05 7.456280e+05 2491.40 NULL
2014 Admin For Children’s Svcs Program Evaluator 67539.26190 5.673298e+06 38.33 4.563095e-01 0.000 1.25 84 0.000000e+00 0.00 5.673336e+06 5.673298e+06 38.33 NULL
2014 Admin For Children’s Svcs Project Manager 65833.00000 6.583300e+04 18089.17 1.808917e+04 18089.170 407.25 1 1.808917e+04 18089.17 8.392217e+04 8.392217e+04 0.00 NULL
2014 Admin For Children’s Svcs Protection Agent 57651.96639 6.860584e+06 17944.73 1.507961e+02 0.000 441.50 119 0.000000e+00 0.00 6.878529e+06 6.860584e+06 17944.73 NULL
2014 Admin For Children’s Svcs Recreation Director 40273.00000 4.027300e+04 2232.03 2.232030e+03 2232.030 77.75 1 2.232030e+03 2232.03 4.250503e+04 4.250503e+04 0.00 NULL
2014 Admin For Children’s Svcs Recreation Supervisor 49824.00000 4.982400e+04 7854.46 7.854460e+03 7854.460 235.25 1 7.854460e+03 7854.46 5.767846e+04 5.767846e+04 0.00 NULL
2014 Admin For Children’s Svcs Research Assistant 48075.20000 2.403760e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.403760e+05 2.403760e+05 0.00 NULL
2014 Admin For Children’s Svcs Secretary 40529.62500 6.484740e+05 2252.28 1.407675e+02 0.000 65.75 16 0.000000e+00 0.00 6.507263e+05 6.484740e+05 2252.28 NULL
2014 Admin For Children’s Svcs Secretary Of Comm 63500.00000 1.270000e+05 4385.79 2.192895e+03 2192.895 103.75 2 2.192895e+03 4385.79 1.313858e+05 1.313858e+05 0.00 NULL
2014 Admin For Children’s Svcs Sheet Metal Worker NA NA 42386.40 4.238640e+04 42386.400 464.00 1 4.238640e+04 42386.40 NA NA NA NULL
2014 Admin For Children’s Svcs Space Analyst 67179.50000 2.687180e+05 33188.53 8.297132e+03 3247.675 740.00 4 3.247675e+03 12990.70 3.019065e+05 2.817087e+05 20197.83 NULL
2014 Admin For Children’s Svcs Special Officer 38084.79070 3.275292e+06 672337.99 7.817884e+03 6405.385 25050.73 86 6.405385e+03 550863.11 3.947630e+06 3.826155e+06 121474.88 NULL
2014 Admin For Children’s Svcs Staff Analyst 57736.78049 2.367208e+06 27494.33 6.705934e+02 0.000 537.00 41 0.000000e+00 0.00 2.394702e+06 2.367208e+06 27494.33 NULL
2014 Admin For Children’s Svcs Staff Analyst Trainee 44137.00000 4.413700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.413700e+04 4.413700e+04 0.00 NULL
2014 Admin For Children’s Svcs Staff Nurse 64920.71429 4.544450e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.544450e+05 4.544450e+05 0.00 NULL
2014 Admin For Children’s Svcs Stock Worker 35157.00000 3.515700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.515700e+04 3.515700e+04 0.00 NULL
2014 Admin For Children’s Svcs Superintendent 93624.00000 2.808720e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.808720e+05 2.808720e+05 0.00 NULL
2014 Admin For Children’s Svcs Supervising Special Officer 47779.19048 1.003363e+06 240411.93 1.144819e+04 9004.530 7058.25 21 9.004530e+03 189095.13 1.243775e+06 1.192458e+06 51316.80 NULL
2014 Admin For Children’s Svcs Supervisor I 50370.05263 9.570310e+05 752.34 3.959684e+01 0.000 22.00 19 0.000000e+00 0.00 9.577833e+05 9.570310e+05 752.34 NULL
2014 Admin For Children’s Svcs Supervisor I Social Work 70810.00000 7.081000e+04 2753.10 2.753100e+03 2753.100 62.25 1 2.753100e+03 2753.10 7.356310e+04 7.356310e+04 0.00 NULL
2014 Admin For Children’s Svcs Supervisor Ii 58658.16129 1.818403e+06 978.77 3.157323e+01 0.000 24.50 31 0.000000e+00 0.00 1.819382e+06 1.818403e+06 978.77 NULL
2014 Admin For Children’s Svcs Supervisor Iii 65804.54545 7.238500e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.238500e+05 7.238500e+05 0.00 NULL
2014 Admin For Children’s Svcs Supervisor Iii Social Work 72001.00000 1.440020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.440020e+05 1.440020e+05 0.00 NULL
2014 Admin For Children’s Svcs Supervisor Of Child Care 58495.00000 6.434450e+05 123751.28 1.125012e+04 10208.450 3103.25 11 1.020845e+04 112292.95 7.671963e+05 7.557379e+05 11458.33 NULL
2014 Admin For Children’s Svcs Supervisor Of Mechanical Installations & Maintenance 66951.50000 1.339030e+05 14728.39 7.364195e+03 7364.195 397.75 2 7.364195e+03 14728.39 1.486314e+05 1.486314e+05 0.00 NULL
2014 Admin For Children’s Svcs Supervisor Of Mechanics NA NA 88042.69 8.804269e+04 88042.690 1135.50 1 8.804269e+04 88042.69 NA NA NA NULL
2014 Admin For Children’s Svcs Supervisor Of Nurses 76409.60000 3.820480e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.820480e+05 3.820480e+05 0.00 NULL
2014 Admin For Children’s Svcs Telecommunications Associate 63343.44444 5.700910e+05 24133.19 2.681466e+03 1178.470 411.00 9 1.178470e+03 10606.23 5.942242e+05 5.806972e+05 13526.96 NULL
2014 Admin Trials And Hearings *Attorney At Law 78997.40000 3.949870e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.949870e+05 3.949870e+05 0.00 NULL
2014 Admin Trials And Hearings Adm Manager-Non-Mgrl From M1/M2 66124.84211 1.256372e+06 2576.58 1.356095e+02 0.000 62.00 19 0.000000e+00 0.00 1.258949e+06 1.256372e+06 2576.58 NULL
2014 Admin Trials And Hearings Administrative Law Judge 117656.40000 1.176564e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.176564e+06 1.176564e+06 0.00 NULL
2014 Admin Trials And Hearings Administrative Staff Analyst 96388.00000 1.156656e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.156656e+06 1.156656e+06 0.00 NULL
2014 Admin Trials And Hearings Agency Attorney 80791.44000 2.019786e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 2.019786e+06 2.019786e+06 0.00 NULL
2014 Admin Trials And Hearings Agency Attorney Interne 21003.16000 4.200632e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.200632e+04 4.200632e+04 0.00 NULL
2014 Admin Trials And Hearings Agency Chief Contracting Officer 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2014 Admin Trials And Hearings Associate Staff Analyst 72762.16667 4.365730e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.365730e+05 4.365730e+05 0.00 NULL
2014 Admin Trials And Hearings Bookkeeper 42049.00000 8.409800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.409800e+04 8.409800e+04 0.00 NULL
2014 Admin Trials And Hearings Certified It Developer 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2014 Admin Trials And Hearings Chief Administrative Law Judge 192198.00000 1.921980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.921980e+05 1.921980e+05 0.00 NULL
2014 Admin Trials And Hearings City Laborer NA NA 1533.61 7.668050e+02 766.805 32.25 2 7.668050e+02 1533.61 NA NA NA NULL
2014 Admin Trials And Hearings Clerical Aide 29189.00000 1.459450e+05 1066.82 2.133640e+02 86.260 57.75 5 8.626000e+01 431.30 1.470118e+05 1.463763e+05 635.52 NULL
2014 Admin Trials And Hearings Clerical Associate Most Mayoral Ag 34329.25072 1.682133e+06 17911.40 3.655388e+02 0.000 770.50 49 0.000000e+00 0.00 1.700045e+06 1.682133e+06 17911.40 NULL
2014 Admin Trials And Hearings College Aide 5644.65929 1.185378e+05 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.185378e+05 1.185378e+05 0.00 NULL
2014 Admin Trials And Hearings Community Assistant 27660.29797 4.978854e+05 884.67 4.914833e+01 0.000 45.00 18 0.000000e+00 0.00 4.987700e+05 4.978854e+05 884.67 NULL
2014 Admin Trials And Hearings Community Associate 42536.25644 1.063406e+06 10748.46 4.299384e+02 0.000 404.75 25 0.000000e+00 0.00 1.074155e+06 1.063406e+06 10748.46 NULL
2014 Admin Trials And Hearings Community Coordinator 57287.80000 5.728780e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.728780e+05 5.728780e+05 0.00 NULL
2014 Admin Trials And Hearings Community Service Aide 19538.20165 9.964483e+05 15388.52 3.017357e+02 0.000 887.00 51 0.000000e+00 0.00 1.011837e+06 9.964483e+05 15388.52 NULL
2014 Admin Trials And Hearings Computer Aide-Non-Spvr 48000.00000 1.920000e+05 25968.45 6.492113e+03 4087.320 813.50 4 4.087320e+03 16349.28 2.179685e+05 2.083493e+05 9619.17 NULL
2014 Admin Trials And Hearings Computer Associate 60966.00000 2.438640e+05 7507.57 1.876892e+03 1448.280 196.50 4 1.448280e+03 5793.12 2.513716e+05 2.496571e+05 1714.45 NULL
2014 Admin Trials And Hearings Computer Service Technician 55000.00000 5.500000e+04 12362.01 1.236201e+04 12362.010 325.75 1 1.236201e+04 12362.01 6.736201e+04 6.736201e+04 0.00 NULL
2014 Admin Trials And Hearings Computer Specialist 87638.60000 4.381930e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.381930e+05 4.381930e+05 0.00 NULL
2014 Admin Trials And Hearings Computer Systems Manager 131200.00000 6.560000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.560000e+05 6.560000e+05 0.00 NULL
2014 Admin Trials And Hearings Confidential Secretary Of Administrative Law Judge 51786.00000 1.035720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.035720e+05 1.035720e+05 0.00 NULL
2014 Admin Trials And Hearings Executive Agency Counsel 100379.39130 2.308726e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 2.308726e+06 2.308726e+06 0.00 NULL
2014 Admin Trials And Hearings Executive Director To The Environmental Control Board 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2014 Admin Trials And Hearings Hearing Officer 26135.04986 7.317814e+06 0.00 0.000000e+00 0.000 0.00 280 0.000000e+00 0.00 7.317814e+06 7.317814e+06 0.00 NULL
2014 Admin Trials And Hearings Member Of The Environmental Control Board - Oath 45.17580 2.258790e+02 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.258790e+02 2.258790e+02 0.00 NULL
2014 Admin Trials And Hearings Principal Administrative Associate - Lev 1 & 2 Non Supvr 50663.80000 7.599570e+05 1464.60 9.764000e+01 0.000 42.50 15 0.000000e+00 0.00 7.614216e+05 7.599570e+05 1464.60 NULL
2014 Admin Trials And Hearings Procurement Analyst 58248.00000 5.824800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.824800e+04 5.824800e+04 0.00 NULL
2014 Admin Trials And Hearings Public Records Aide 34458.44444 3.101260e+05 1173.71 1.304122e+02 0.000 52.75 9 0.000000e+00 0.00 3.112997e+05 3.101260e+05 1173.71 NULL
2014 Admin Trials And Hearings Secretary 38338.80000 1.916940e+05 889.60 1.779200e+02 0.000 41.50 5 0.000000e+00 0.00 1.925836e+05 1.916940e+05 889.60 NULL
2014 Admin Trials And Hearings Staff Analyst 56392.00000 2.255680e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.255680e+05 2.255680e+05 0.00 NULL
2014 Admin Trials And Hearings Staff Analyst Trainee 40846.00000 1.225380e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.225380e+05 1.225380e+05 0.00 NULL
2014 Board Of Correction City Research Scientist 77000.00000 7.700000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.700000e+04 7.700000e+04 0.00 NULL
2014 Board Of Correction Community Coordinator 45615.00000 4.561500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.561500e+04 4.561500e+04 0.00 NULL
2014 Board Of Correction Computer Specialist 95896.00000 9.589600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.589600e+04 9.589600e+04 0.00 NULL
2014 Board Of Correction Correctional Standards Review Specialist 59487.90000 5.948790e+05 148.38 1.483800e+01 0.000 4.00 10 0.000000e+00 0.00 5.950274e+05 5.948790e+05 148.38 NULL
2014 Board Of Correction Deputy Executive Director 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2014 Board Of Correction Director Of Correctional Standards Review 76212.00000 7.621200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.621200e+04 7.621200e+04 0.00 NULL
2014 Board Of Correction Executive Director 151865.00000 1.518650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.518650e+05 1.518650e+05 0.00 NULL
2014 Board Of Correction Secretary 42727.00000 4.272700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.272700e+04 4.272700e+04 0.00 NULL
2014 Board Of Election Administrative Assistant 44463.68235 3.779413e+06 827419.91 9.734352e+03 8601.250 26718.75 85 8.601250e+03 731106.25 4.606833e+06 4.510519e+06 96313.66 NULL
2014 Board Of Election Administrative Associate 54480.57143 2.288184e+06 659078.56 1.569235e+04 11929.935 16906.33 42 1.192993e+04 501057.27 2.947263e+06 2.789241e+06 158021.29 NULL
2014 Board Of Election Administrative Manager 152899.00000 1.528990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.528990e+05 1.528990e+05 0.00 NULL
2014 Board Of Election Assistance Finance Officer 55958.00000 1.119160e+05 9825.36 4.912680e+03 4912.680 303.75 2 4.912680e+03 9825.36 1.217414e+05 1.217414e+05 0.00 NULL
2014 Board Of Election Associate Staff Analyst 72973.08333 8.756770e+05 193342.47 1.611187e+04 15330.750 3878.25 12 1.533075e+04 183969.00 1.069019e+06 1.059646e+06 9373.47 NULL
2014 Board Of Election Chief Clerk 108457.50000 4.338300e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.338300e+05 4.338300e+05 0.00 NULL
2014 Board Of Election Clerk To The Board 31094.18421 3.544737e+06 908894.56 7.972759e+03 7622.525 41229.50 114 7.622525e+03 868967.85 4.453632e+06 4.413705e+06 39926.71 NULL
2014 Board Of Election Commissioner 26072.72727 2.868000e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 2.868000e+05 2.868000e+05 0.00 NULL
2014 Board Of Election Computer Operator 40500.00000 8.100000e+04 13299.36 6.649680e+03 6649.680 466.75 2 6.649680e+03 13299.36 9.429936e+04 9.429936e+04 0.00 NULL
2014 Board Of Election Computer Specialist 112234.25000 4.489370e+05 145749.36 3.643734e+04 38404.695 1894.50 4 3.643734e+04 145749.36 5.946864e+05 5.946864e+05 0.00 NULL
2014 Board Of Election Computer System Manager 119827.50000 2.396550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.396550e+05 2.396550e+05 0.00 NULL
2014 Board Of Election Coordinator, Election Day Operations 92190.00000 9.219000e+04 11378.68 1.137868e+04 11378.680 195.00 1 1.137868e+04 11378.68 1.035687e+05 1.035687e+05 0.00 NULL
2014 Board Of Election Coordinator, Voter Registration Activities 84842.00000 8.484200e+04 22458.58 2.245858e+04 22458.580 382.00 1 2.245858e+04 22458.58 1.073006e+05 1.073006e+05 0.00 NULL
2014 Board Of Election Counsel 132669.00000 2.653380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.653380e+05 2.653380e+05 0.00 NULL
2014 Board Of Election Counsel To The Board 49701.00000 9.940200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.940200e+04 9.940200e+04 0.00 NULL
2014 Board Of Election Deputy Chief Clerk 98331.55556 8.849840e+05 0.00 0.000000e+00 0.000 5.50 9 0.000000e+00 0.00 8.849840e+05 8.849840e+05 0.00 NULL
2014 Board Of Election Deputy Executive Director 155478.00000 1.554780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.554780e+05 1.554780e+05 0.00 NULL
2014 Board Of Election Director Of Equipment 80223.33333 2.406700e+05 47026.54 1.567551e+04 10703.710 881.50 3 1.070371e+04 32111.13 2.876965e+05 2.727811e+05 14915.41 NULL
2014 Board Of Election Director, Public Affairs And Communication 97893.00000 9.789300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.789300e+04 9.789300e+04 0.00 NULL
2014 Board Of Election Executive Director 172753.00000 1.727530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.727530e+05 1.727530e+05 0.00 NULL
2014 Board Of Election Finance Officer 94630.00000 9.463000e+04 4390.32 4.390320e+03 4390.320 71.00 1 4.390320e+03 4390.32 9.902032e+04 9.902032e+04 0.00 NULL
2014 Board Of Election Financial Clerk 31099.24443 8.707788e+05 123135.32 4.397690e+03 2944.285 4697.83 28 2.944285e+03 82439.98 9.939142e+05 9.532188e+05 40695.34 NULL
2014 Board Of Election Project Coordinator 89146.37500 7.131710e+05 167971.82 2.099648e+04 15870.905 2911.75 8 1.587091e+04 126967.24 8.811428e+05 8.401382e+05 41004.58 NULL
2014 Board Of Election Senior Adminisrator 100464.00000 1.004640e+05 13396.60 1.339660e+04 13396.600 225.50 1 1.339660e+04 13396.60 1.138606e+05 1.138606e+05 0.00 NULL
2014 Board Of Election Senior Computer Programmer 70115.66667 6.310410e+05 205552.91 2.283921e+04 13834.040 3881.00 9 1.383404e+04 124506.36 8.365939e+05 7.555474e+05 81046.55 NULL
2014 Board Of Election Senior Systems Analysts 98652.00000 9.865200e+04 81091.07 8.109107e+04 81091.070 991.25 1 8.109107e+04 81091.07 1.797431e+05 1.797431e+05 0.00 NULL
2014 Board Of Election Stenographic/Secretarial Associate 45820.00000 4.582000e+04 3733.63 3.733630e+03 3733.630 145.25 1 3.733630e+03 3733.63 4.955363e+04 4.955363e+04 0.00 NULL
2014 Board Of Election Temporary Clerk 15913.27671 8.577256e+06 1706842.23 3.166683e+03 2623.960 96770.98 539 2.623960e+03 1414314.44 1.028410e+07 9.991571e+06 292527.79 NULL
2014 Board Of Election Trainer Assistant 39666.96716 4.363366e+05 49033.12 4.457556e+03 3329.830 1501.25 11 3.329830e+03 36628.13 4.853698e+05 4.729648e+05 12404.99 NULL
2014 Board Of Election Voting Machine Technician 32303.23967 2.939595e+06 972720.59 1.068924e+04 10733.250 41472.80 91 1.068924e+04 972720.59 3.912315e+06 3.912315e+06 0.00 NULL
2014 Board Of Election Poll Workers Election Trainer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 552 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2014 Board Of Election Poll Workers Election Worker 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 32684 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2014 Board Of Election Poll Workers Hcppa 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2014 Borough President-Bronx Administrative Architect 69050.00000 6.905000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.905000e+04 6.905000e+04 0.00 NULL
2014 Borough President-Bronx Administrative City Planner 70861.00000 7.086100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.086100e+04 7.086100e+04 0.00 NULL
2014 Borough President-Bronx Administrative Manager 93431.42750 7.474514e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.474514e+05 7.474514e+05 0.00 NULL
2014 Borough President-Bronx Administrative Public Information Specialist 57513.00000 5.751300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.751300e+04 5.751300e+04 0.00 NULL
2014 Borough President-Bronx Assistant To The President 60054.50000 2.402180e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.402180e+05 2.402180e+05 0.00 NULL
2014 Borough President-Bronx Associate Staff Analyst 70771.00000 7.077100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.077100e+04 7.077100e+04 0.00 NULL
2014 Borough President-Bronx Borough President 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2014 Borough President-Bronx City Planning Technician 40706.00000 4.070600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.070600e+04 4.070600e+04 0.00 NULL
2014 Borough President-Bronx Clerical Associate Most Mayoral Ag 46469.00000 9.293800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.293800e+04 9.293800e+04 0.00 NULL
2014 Borough President-Bronx Community Assistant 17928.84000 3.585768e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.585768e+04 3.585768e+04 0.00 NULL
2014 Borough President-Bronx Community Associate 49638.83333 2.978330e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.978330e+05 2.978330e+05 0.00 NULL
2014 Borough President-Bronx Community Coordinator 61135.00000 1.039295e+06 23270.19 1.368835e+03 0.000 476.50 17 0.000000e+00 0.00 1.062565e+06 1.039295e+06 23270.19 NULL
2014 Borough President-Bronx Community Planning Board Coordinator 40000.00000 4.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.000000e+04 4.000000e+04 0.00 NULL
2014 Borough President-Bronx Consulting Engineer 437.88000 4.378800e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.378800e+02 4.378800e+02 0.00 NULL
2014 Borough President-Bronx Deputy Borough President 152880.00000 1.528800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.528800e+05 1.528800e+05 0.00 NULL
2014 Borough President-Bronx Director Of Community Planning Boards 101362.00000 1.013620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.013620e+05 1.013620e+05 0.00 NULL
2014 Borough President-Bronx Executive Assistant 150600.00000 1.506000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.506000e+05 1.506000e+05 0.00 NULL
2014 Borough President-Bronx Principal Administrative Associate - Lev 1 & 2 Non Supvr 52055.00000 5.205500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.205500e+04 5.205500e+04 0.00 NULL
2014 Borough President-Bronx Public Information Officer 88000.00000 8.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.800000e+04 8.800000e+04 0.00 NULL
2014 Borough President-Bronx Research Liaison Adn Governmental Coordinator 96750.00000 9.675000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.675000e+04 9.675000e+04 0.00 NULL
2014 Borough President-Bronx Secretary To Assistant To President 88315.00000 8.831500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.831500e+04 8.831500e+04 0.00 NULL
2014 Borough President-Bronx Secretary To The Deputy Boro President 66447.00000 6.644700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.644700e+04 6.644700e+04 0.00 NULL
2014 Borough President-Bronx Secretary To The Excutive Assistant 68800.00000 6.880000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.880000e+04 6.880000e+04 0.00 NULL
2014 Borough President-Bronx Secretary To The President 107078.00000 1.070780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.070780e+05 1.070780e+05 0.00 NULL
2014 Borough President-Bronx Special Assistant To The Borough President 90453.33333 2.713600e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.713600e+05 2.713600e+05 0.00 NULL
2014 Borough President-Brooklyn Adm Manager-Non-Mgrl From M1/M2 63652.00000 6.365200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.365200e+04 6.365200e+04 0.00 NULL
2014 Borough President-Brooklyn Administrative Accountant 67500.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2014 Borough President-Brooklyn Administrative Engineer 46900.00000 4.690000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.690000e+04 4.690000e+04 0.00 NULL
2014 Borough President-Brooklyn Administrative Graphic Artist 63531.00000 6.353100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.353100e+04 6.353100e+04 0.00 NULL
2014 Borough President-Brooklyn Administrative Housing Development Specialist 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2014 Borough President-Brooklyn Administrative Staff Analyst 84043.00000 2.521290e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.521290e+05 2.521290e+05 0.00 NULL
2014 Borough President-Brooklyn Assistant To The President 79755.70000 7.975570e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.975570e+05 7.975570e+05 0.00 NULL
2014 Borough President-Brooklyn Borough President 160000.00000 3.200000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.200000e+05 3.200000e+05 0.00 NULL
2014 Borough President-Brooklyn Chauffeur-Attendant 59787.66667 1.793630e+05 27889.41 9.296470e+03 10023.580 632.50 3 9.296470e+03 27889.41 2.072524e+05 2.072524e+05 0.00 NULL
2014 Borough President-Brooklyn City Planner 89156.00000 1.783120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.783120e+05 1.783120e+05 0.00 NULL
2014 Borough President-Brooklyn Clerical Associate Most Mayoral Ag 50913.50000 1.018270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.018270e+05 1.018270e+05 0.00 NULL
2014 Borough President-Brooklyn Community Assistant 28792.00000 8.637600e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 8.637600e+04 8.637600e+04 0.00 NULL
2014 Borough President-Brooklyn Community Associate 40472.12500 3.237770e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 3.237770e+05 3.237770e+05 0.00 NULL
2014 Borough President-Brooklyn Community Coordinator 53041.57019 1.485164e+06 280.31 1.001107e+01 0.000 7.50 28 0.000000e+00 0.00 1.485444e+06 1.485164e+06 280.31 NULL
2014 Borough President-Brooklyn Community Service Aide 3614.12375 7.228248e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.228248e+03 7.228248e+03 0.00 NULL
2014 Borough President-Brooklyn Counsel To The Borough President 81666.66667 2.450000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.450000e+05 2.450000e+05 0.00 NULL
2014 Borough President-Brooklyn Deputy Borough President 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2014 Borough President-Brooklyn Director Of Community Planning Boards 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2014 Borough President-Brooklyn Executive Agency Counsel 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2014 Borough President-Brooklyn Executive Assistant 132500.00000 2.650000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.650000e+05 2.650000e+05 0.00 NULL
2014 Borough President-Brooklyn Principal Administrative Associate - Lev 1 & 2 Non Supvr 54071.00000 5.407100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.407100e+04 5.407100e+04 0.00 NULL
2014 Borough President-Brooklyn Program Producer 64076.00000 6.407600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.407600e+04 6.407600e+04 0.00 NULL
2014 Borough President-Brooklyn Public Information Officer 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2014 Borough President-Brooklyn Research & Liaison Coordinator 53623.14442 2.681157e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.681157e+05 2.681157e+05 0.00 NULL
2014 Borough President-Brooklyn Secretary To The President 63000.00000 6.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.300000e+04 6.300000e+04 0.00 NULL
2014 Borough President-Brooklyn Special Assistant To The Borough President 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2014 Borough President-Manhattan Adm Manager-Non-Mgrl From M1/M2 55986.10000 5.598610e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.598610e+05 5.598610e+05 0.00 NULL
2014 Borough President-Manhattan Admin Contract Specialist 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2014 Borough President-Manhattan Administrative City Planner 72166.66667 4.330000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.330000e+05 4.330000e+05 0.00 NULL
2014 Borough President-Manhattan Administrative Graphic Artist 49920.00000 4.992000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.992000e+04 4.992000e+04 0.00 NULL
2014 Borough President-Manhattan Administrative Manager 80339.00000 6.427120e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.427120e+05 6.427120e+05 0.00 NULL
2014 Borough President-Manhattan Administrative Public Information Specialist 83000.00000 4.150000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.150000e+05 4.150000e+05 0.00 NULL
2014 Borough President-Manhattan Administrative Staff Analyst 87260.33333 7.853430e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.853430e+05 7.853430e+05 0.00 NULL
2014 Borough President-Manhattan Assistant To The President 58463.66667 3.507820e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.507820e+05 3.507820e+05 0.00 NULL
2014 Borough President-Manhattan Borough President 160000.00000 3.200000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.200000e+05 3.200000e+05 0.00 NULL
2014 Borough President-Manhattan Chauffeur Attendant 59020.50000 1.180410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.180410e+05 1.180410e+05 0.00 NULL
2014 Borough President-Manhattan Community Associate 43946.24500 3.515700e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 3.515700e+05 3.515700e+05 0.00 NULL
2014 Borough President-Manhattan Community Coordinator 54174.46750 4.333957e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.333957e+05 4.333957e+05 0.00 NULL
2014 Borough President-Manhattan Community Planning Board Coordinator 45880.90909 5.046900e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.046900e+05 5.046900e+05 0.00 NULL
2014 Borough President-Manhattan Computer Operations Manager 69899.00000 6.989900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.989900e+04 6.989900e+04 0.00 NULL
2014 Borough President-Manhattan Deputy Borough President 143008.00000 2.860160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.860160e+05 2.860160e+05 0.00 NULL
2014 Borough President-Manhattan Executive Assistant 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2014 Borough President-Manhattan General Counsel 141555.50000 2.831110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.831110e+05 2.831110e+05 0.00 NULL
2014 Borough President-Manhattan Principal Administrative Associate - Lev 1 & 2 Non Supvr 56911.00000 5.691100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.691100e+04 5.691100e+04 0.00 NULL
2014 Borough President-Manhattan Public Information Officer 61666.66667 1.850000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.850000e+05 1.850000e+05 0.00 NULL
2014 Borough President-Queens Administrative Manager 81064.28125 3.242571e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.242571e+05 3.242571e+05 0.00 NULL
2014 Borough President-Queens Administrative Staff Analyst 75875.16000 2.276255e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.276255e+05 2.276255e+05 0.00 NULL
2014 Borough President-Queens Assistant Civil Engineer 67176.00000 6.717600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.717600e+04 6.717600e+04 0.00 NULL
2014 Borough President-Queens Assistant To The President 35000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2014 Borough President-Queens Associate Staff Analyst 74933.66667 2.248010e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.248010e+05 2.248010e+05 0.00 NULL
2014 Borough President-Queens Borough President 160000.00000 3.200000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.200000e+05 3.200000e+05 0.00 NULL
2014 Borough President-Queens Cashier 30218.00000 3.021800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.021800e+04 3.021800e+04 0.00 NULL
2014 Borough President-Queens Chauffeur-Attendant 66521.00000 6.652100e+04 3650.09 3.650090e+03 3650.090 64.00 1 3.650090e+03 3650.09 7.017109e+04 7.017109e+04 0.00 NULL
2014 Borough President-Queens City Planner 54666.00000 5.466600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.466600e+04 5.466600e+04 0.00 NULL
2014 Borough President-Queens Clerical Associate Most Mayoral Ag 46930.00000 9.386000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.386000e+04 9.386000e+04 0.00 NULL
2014 Borough President-Queens Community Assistant 26080.75000 2.086460e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 2.086460e+05 2.086460e+05 0.00 NULL
2014 Borough President-Queens Community Associate 43238.30000 4.323830e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.323830e+05 4.323830e+05 0.00 NULL
2014 Borough President-Queens Community Coordinator 54294.75000 4.343580e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.343580e+05 4.343580e+05 0.00 NULL
2014 Borough President-Queens Community Planning Board Coordinator 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2014 Borough President-Queens Community Service Aide 21082.71600 2.108272e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.108272e+04 2.108272e+04 0.00 NULL
2014 Borough President-Queens Counsel To The Borough President 120527.00000 2.410540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.410540e+05 2.410540e+05 0.00 NULL
2014 Borough President-Queens Deputy Director Of Community Planning Boards 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2014 Borough President-Queens Engineering Technician 57988.50000 2.319540e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.319540e+05 2.319540e+05 0.00 NULL
2014 Borough President-Queens Executive Agency Counsel 73000.00000 7.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.300000e+04 7.300000e+04 0.00 NULL
2014 Borough President-Queens Executive Assistant 141940.50000 2.838810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.838810e+05 2.838810e+05 0.00 NULL
2014 Borough President-Queens Principal Administrative Associate - Lev 1 & 2 Non Supvr 63628.66667 1.908860e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.908860e+05 1.908860e+05 0.00 NULL
2014 Borough President-Queens Research And Liaison Specialist 45000.00000 4.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.500000e+04 4.500000e+04 0.00 NULL
2014 Borough President-Queens Secretary 34993.00000 3.499300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.499300e+04 3.499300e+04 0.00 NULL
2014 Borough President-Queens Secretary To The President 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2014 Borough President-Queens Special Assistant To The Borough President 92047.37500 7.363790e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.363790e+05 7.363790e+05 0.00 NULL
2014 Borough President-Staten Is Administrative Architect 147650.00000 1.476500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.476500e+05 1.476500e+05 0.00 NULL
2014 Borough President-Staten Is Administrative Staff Analyst 105225.00000 2.104500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.104500e+05 2.104500e+05 0.00 NULL
2014 Borough President-Staten Is Assistant To The President 102420.00000 3.072600e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.072600e+05 3.072600e+05 0.00 NULL
2014 Borough President-Staten Is Asst Project Planner 38150.08714 5.341012e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 5.341012e+05 5.341012e+05 0.00 NULL
2014 Borough President-Staten Is Borough President 160000.00000 3.200000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.200000e+05 3.200000e+05 0.00 NULL
2014 Borough President-Staten Is Clerical Associate Most Mayoral Ag 51000.00000 5.100000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.100000e+04 5.100000e+04 0.00 NULL
2014 Borough President-Staten Is College Aide 1533.66083 2.300491e+04 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 2.300491e+04 2.300491e+04 0.00 NULL
2014 Borough President-Staten Is Community Associate 48871.83333 2.932310e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.932310e+05 2.932310e+05 0.00 NULL
2014 Borough President-Staten Is Community Coordinator 60982.25506 4.878580e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.878580e+05 4.878580e+05 0.00 NULL
2014 Borough President-Staten Is Confidential Assistant To Boro President 120628.50000 2.412570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.412570e+05 2.412570e+05 0.00 NULL
2014 Borough President-Staten Is Consulting Engineer 118216.00000 1.182160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.182160e+05 1.182160e+05 0.00 NULL
2014 Borough President-Staten Is Counsel To The Borough President 38055.42465 7.611085e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.611085e+04 7.611085e+04 0.00 NULL
2014 Borough President-Staten Is Deputy Borough President 148820.00000 1.488200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.488200e+05 1.488200e+05 0.00 NULL
2014 Borough President-Staten Is Director Of Community Planning Boards 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2014 Borough President-Staten Is Engineering Technician 24984.96000 2.498496e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.498496e+04 2.498496e+04 0.00 NULL
2014 Borough President-Staten Is Executive Assistant 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2014 Borough President-Staten Is High School Student Aide 543.20969 4.345677e+03 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.345677e+03 4.345677e+03 0.00 NULL
2014 Borough President-Staten Is Project Planner 53939.95714 3.775797e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.775797e+05 3.775797e+05 0.00 NULL
2014 Borough President-Staten Is Public Information Officer 84080.00000 1.681600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.681600e+05 1.681600e+05 0.00 NULL
2014 Borough President-Staten Is Secretary 56917.33333 1.707520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.707520e+05 1.707520e+05 0.00 NULL
2014 Borough President-Staten Is Special Assistant To The Borough President 17680.96000 1.768096e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.768096e+04 1.768096e+04 0.00 NULL
2014 Borough President-Staten Is Staff Analyst 60346.00000 6.034600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.034600e+04 6.034600e+04 0.00 NULL
2014 Borough President-Staten Is Surveyor 86619.00000 8.661900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.661900e+04 8.661900e+04 0.00 NULL
2014 Bronx Community Board #1 Community Coordinator 70810.00000 7.081000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.081000e+04 7.081000e+04 0.00 NULL
2014 Bronx Community Board #1 District Manager 116154.00000 1.161540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.161540e+05 1.161540e+05 0.00 NULL
2014 Bronx Community Board #10 City Seasonal Aide 1973.82850 1.973829e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.973829e+03 1.973829e+03 0.00 NULL
2014 Bronx Community Board #10 Clerical Associate Most Mayoral Ag 23704.94827 7.111484e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.111484e+04 7.111484e+04 0.00 NULL
2014 Bronx Community Board #10 Community Assistant 22433.68500 2.243369e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.243369e+04 2.243369e+04 0.00 NULL
2014 Bronx Community Board #10 District Manager 86765.00000 8.676500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.676500e+04 8.676500e+04 0.00 NULL
2014 Bronx Community Board #11 Administrative Manager 25344.15000 2.534415e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.534415e+04 2.534415e+04 0.00 NULL
2014 Bronx Community Board #11 Community Assistant 27063.68000 2.706368e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.706368e+04 2.706368e+04 0.00 NULL
2014 Bronx Community Board #11 Community Associate 31771.08000 3.177108e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.177108e+04 3.177108e+04 0.00 NULL
2014 Bronx Community Board #11 Community Coordinator 51744.00000 5.174400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.174400e+04 5.174400e+04 0.00 NULL
2014 Bronx Community Board #11 District Manager 66000.00000 6.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.600000e+04 6.600000e+04 0.00 NULL
2014 Bronx Community Board #12 Community Associate 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2014 Bronx Community Board #12 Community Service Aide 13166.40000 1.316640e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.316640e+04 1.316640e+04 0.00 NULL
2014 Bronx Community Board #12 District Manager 105890.00000 1.058900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.058900e+05 1.058900e+05 0.00 NULL
2014 Bronx Community Board #2 Community Assistant 27421.00000 2.742100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.742100e+04 2.742100e+04 0.00 NULL
2014 Bronx Community Board #2 Community Associate 45000.00000 4.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.500000e+04 4.500000e+04 0.00 NULL
2014 Bronx Community Board #2 District Manager 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2014 Bronx Community Board #3 Adm Manager-Non-Mgrl From M1/M2 75826.00000 7.582600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.582600e+04 7.582600e+04 0.00 NULL
2014 Bronx Community Board #3 District Manager 113478.00000 1.134780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.134780e+05 1.134780e+05 0.00 NULL
2014 Bronx Community Board #4 Community Associate 46908.00000 9.381600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.381600e+04 9.381600e+04 0.00 NULL
2014 Bronx Community Board #4 District Manager 85120.00000 8.512000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.512000e+04 8.512000e+04 0.00 NULL
2014 Bronx Community Board #5 Adm Manager-Non-Mgrl From M1/M2 75384.00000 7.538400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.538400e+04 7.538400e+04 0.00 NULL
2014 Bronx Community Board #5 Community Assistant 26583.00000 2.658300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.658300e+04 2.658300e+04 0.00 NULL
2014 Bronx Community Board #5 District Manager 94838.00000 9.483800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.483800e+04 9.483800e+04 0.00 NULL
2014 Bronx Community Board #6 Community Coordinator 70280.00000 7.028000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.028000e+04 7.028000e+04 0.00 NULL
2014 Bronx Community Board #6 District Manager 111023.00000 1.110230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.110230e+05 1.110230e+05 0.00 NULL
2014 Bronx Community Board #7 Community Assistant 31534.00000 3.153400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.153400e+04 3.153400e+04 0.00 NULL
2014 Bronx Community Board #7 Community Associate 47299.00000 4.729900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.729900e+04 4.729900e+04 0.00 NULL
2014 Bronx Community Board #7 District Manager 71500.00000 1.430000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.430000e+05 1.430000e+05 0.00 NULL
2014 Bronx Community Board #8 Community Associate 46495.00000 9.299000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.299000e+04 9.299000e+04 0.00 NULL
2014 Bronx Community Board #8 District Manager 102753.00000 1.027530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.027530e+05 1.027530e+05 0.00 NULL
2014 Bronx Community Board #9 College Aide 7852.64500 7.852645e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.852645e+03 7.852645e+03 0.00 NULL
2014 Bronx Community Board #9 Community Associate 47000.00000 4.700000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.700000e+04 4.700000e+04 0.00 NULL
2014 Bronx Community Board #9 District Manager 98634.00000 9.863400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.863400e+04 9.863400e+04 0.00 NULL
2014 Bronx District Attorney Accountant 75349.00000 7.534900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.534900e+04 7.534900e+04 0.00 NULL
2014 Bronx District Attorney Adm Manager-Non-Mgrl 66440.57143 4.650840e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.650840e+05 4.650840e+05 0.00 NULL
2014 Bronx District Attorney Administrative Accountant 122000.00000 1.220000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.220000e+05 1.220000e+05 0.00 NULL
2014 Bronx District Attorney Administrative Chief 185000.00000 1.850000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.850000e+05 1.850000e+05 0.00 NULL
2014 Bronx District Attorney Administrative Community Relations Specialist 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2014 Bronx District Attorney Administrative Staff Analyst 84228.00000 3.369120e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.369120e+05 3.369120e+05 0.00 NULL
2014 Bronx District Attorney Assistant District Attorney 75209.30804 3.369377e+07 0.00 0.000000e+00 0.000 0.00 448 0.000000e+00 0.00 3.369377e+07 3.369377e+07 0.00 NULL
2014 Bronx District Attorney Associate Staff Analyst 78818.50000 1.576370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.576370e+05 1.576370e+05 0.00 NULL
2014 Bronx District Attorney Certified It Administrator 107225.00000 2.144500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.144500e+05 2.144500e+05 0.00 NULL
2014 Bronx District Attorney Chief Rackets Investigator 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2014 Bronx District Attorney Clerical Associate 38845.36538 2.019959e+06 103415.78 1.988765e+03 0.000 4019.75 52 0.000000e+00 0.00 2.123375e+06 2.019959e+06 103415.78 NULL
2014 Bronx District Attorney Community Assistant 30985.70213 2.912656e+06 159121.35 1.692780e+03 0.000 7380.00 94 0.000000e+00 0.00 3.071777e+06 2.912656e+06 159121.35 NULL
2014 Bronx District Attorney Community Associate 38310.02073 4.712133e+06 252053.43 2.049215e+03 0.000 9220.75 123 0.000000e+00 0.00 4.964186e+06 4.712133e+06 252053.43 NULL
2014 Bronx District Attorney Community Coordinator 59080.94737 1.122538e+06 56862.75 2.992776e+03 531.760 1488.00 19 5.317600e+02 10103.44 1.179401e+06 1.132641e+06 46759.31 NULL
2014 Bronx District Attorney Community Service Aide 26086.02985 1.747764e+06 90838.54 1.355799e+03 23.380 5318.00 67 2.338000e+01 1566.46 1.838603e+06 1.749330e+06 89272.08 NULL
2014 Bronx District Attorney Computer Associate 75242.50000 3.009700e+05 1135.17 2.837925e+02 238.150 7.00 4 2.381500e+02 952.60 3.021052e+05 3.019226e+05 182.57 NULL
2014 Bronx District Attorney Deputy Chief Rackets Investigator 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2014 Bronx District Attorney Director Of Public Information 130000.00000 2.600000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.600000e+05 2.600000e+05 0.00 NULL
2014 Bronx District Attorney District Attorney 190000.00000 1.900000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.900000e+05 1.900000e+05 0.00 NULL
2014 Bronx District Attorney Interpreter 46209.71429 3.234680e+05 49445.73 7.063676e+03 4218.610 2555.25 7 4.218610e+03 29530.27 3.729137e+05 3.529983e+05 19915.46 NULL
2014 Bronx District Attorney Media Services Technician 49418.50000 9.883700e+04 30255.50 1.512775e+04 15127.750 774.50 2 1.512775e+04 30255.50 1.290925e+05 1.290925e+05 0.00 NULL
2014 Bronx District Attorney Paralegal Aide 45094.00000 9.018800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.018800e+04 9.018800e+04 0.00 NULL
2014 Bronx District Attorney Principal Accountant Investigator 109950.00000 2.199000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.199000e+05 2.199000e+05 0.00 NULL
2014 Bronx District Attorney Principal Administrative Associate 60147.63636 6.616240e+05 792.65 7.205909e+01 0.000 19.50 11 0.000000e+00 0.00 6.624167e+05 6.616240e+05 792.65 NULL
2014 Bronx District Attorney Private Secretary 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2014 Bronx District Attorney Procurement Analyst 68000.00000 6.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.800000e+04 6.800000e+04 0.00 NULL
2014 Bronx District Attorney Rackets Investigator 47309.06667 7.096360e+05 65049.24 4.336616e+03 4729.280 2150.00 15 4.336616e+03 65049.24 7.746852e+05 7.746852e+05 0.00 NULL
2014 Bronx District Attorney Reporter/ Stenographer 56340.90809 9.577954e+05 30527.53 1.795737e+03 1138.310 833.25 17 1.138310e+03 19351.27 9.883230e+05 9.771467e+05 11176.26 NULL
2014 Bronx District Attorney Secretary 39792.16667 2.387530e+05 239.66 3.994333e+01 0.000 0.00 6 0.000000e+00 0.00 2.389927e+05 2.387530e+05 239.66 NULL
2014 Bronx District Attorney Senior Accountant Investigator 63550.00000 1.271000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.271000e+05 1.271000e+05 0.00 NULL
2014 Bronx District Attorney Senior Rackets Investigator 56574.37500 1.357785e+06 90532.71 3.772196e+03 1512.905 2378.75 24 1.512905e+03 36309.72 1.448318e+06 1.394095e+06 54222.99 NULL
2014 Bronx District Attorney Special Assistant To The District Attorney 135780.00000 6.789000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.789000e+05 6.789000e+05 0.00 NULL
2014 Bronx District Attorney Special Officer 42332.00000 1.269960e+05 7982.89 2.660963e+03 3413.630 222.75 3 2.660963e+03 7982.89 1.349789e+05 1.349789e+05 0.00 NULL
2014 Bronx District Attorney Stock Worker 40223.00000 4.022300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.022300e+04 4.022300e+04 0.00 NULL
2014 Bronx District Attorney Supervising Computer Service Technician 77224.00000 7.722400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.722400e+04 7.722400e+04 0.00 NULL
2014 Bronx District Attorney Supervising Rackets Investigator 78470.75000 3.138830e+05 22687.26 5.671815e+03 6791.870 461.75 4 5.671815e+03 22687.26 3.365703e+05 3.365703e+05 0.00 NULL
2014 Brooklyn Community Board #1 Assistant District Manager 53085.00000 5.308500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.308500e+04 5.308500e+04 0.00 NULL
2014 Brooklyn Community Board #1 Community Associate 28068.18300 2.806818e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.806818e+04 2.806818e+04 0.00 NULL
2014 Brooklyn Community Board #1 District Manager 111683.00000 1.116830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.116830e+05 1.116830e+05 0.00 NULL
2014 Brooklyn Community Board #10 Community Assistant 18036.70000 1.803670e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.803670e+04 1.803670e+04 0.00 NULL
2014 Brooklyn Community Board #10 Community Coordinator 64290.00000 6.429000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.429000e+04 6.429000e+04 0.00 NULL
2014 Brooklyn Community Board #10 District Manager 106337.00000 1.063370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.063370e+05 1.063370e+05 0.00 NULL
2014 Brooklyn Community Board #11 Community Assistant 22524.30000 2.252430e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.252430e+04 2.252430e+04 0.00 NULL
2014 Brooklyn Community Board #11 Community Coordinator 56094.00000 5.609400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.609400e+04 5.609400e+04 0.00 NULL
2014 Brooklyn Community Board #11 District Manager 86736.00000 8.673600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.673600e+04 8.673600e+04 0.00 NULL
2014 Brooklyn Community Board #12 Community Assistant 33202.00000 6.640400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.640400e+04 6.640400e+04 0.00 NULL
2014 Brooklyn Community Board #12 District Manager 93909.00000 1.878180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.878180e+05 1.878180e+05 0.00 NULL
2014 Brooklyn Community Board #13 Community Coordinator 61925.00000 6.192500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.192500e+04 6.192500e+04 0.00 NULL
2014 Brooklyn Community Board #13 District Manager 95254.00000 9.525400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.525400e+04 9.525400e+04 0.00 NULL
2014 Brooklyn Community Board #13 Secretary 29313.20000 2.931320e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.931320e+04 2.931320e+04 0.00 NULL
2014 Brooklyn Community Board #14 Community Associate 45795.68000 9.159136e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.159136e+04 9.159136e+04 0.00 NULL
2014 Brooklyn Community Board #14 District Manager 92000.00000 9.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.200000e+04 9.200000e+04 0.00 NULL
2014 Brooklyn Community Board #15 Community Assistant 31534.00000 3.153400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.153400e+04 3.153400e+04 0.00 NULL
2014 Brooklyn Community Board #15 Community Associate 48925.00000 4.892500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.892500e+04 4.892500e+04 0.00 NULL
2014 Brooklyn Community Board #15 District Manager 72100.00000 7.210000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.210000e+04 7.210000e+04 0.00 NULL
2014 Brooklyn Community Board #16 Community Assistant 32469.00000 3.246900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.246900e+04 3.246900e+04 0.00 NULL
2014 Brooklyn Community Board #16 Community Coordinator 62378.00000 6.237800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.237800e+04 6.237800e+04 0.00 NULL
2014 Brooklyn Community Board #16 District Manager 101925.00000 1.019250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.019250e+05 1.019250e+05 0.00 NULL
2014 Brooklyn Community Board #17 Community Assistant 32662.50000 6.532500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.532500e+04 6.532500e+04 0.00 NULL
2014 Brooklyn Community Board #17 Community Coordinator 52457.00000 5.245700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.245700e+04 5.245700e+04 0.00 NULL
2014 Brooklyn Community Board #17 District Manager 73326.00000 7.332600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.332600e+04 7.332600e+04 0.00 NULL
2014 Brooklyn Community Board #18 Community Assistant 31534.00000 3.153400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.153400e+04 3.153400e+04 0.00 NULL
2014 Brooklyn Community Board #18 Community Service Aide 24756.00000 2.475600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.475600e+04 2.475600e+04 0.00 NULL
2014 Brooklyn Community Board #18 District Manager 117676.00000 1.176760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.176760e+05 1.176760e+05 0.00 NULL
2014 Brooklyn Community Board #2 Community Coordinator 56128.00000 5.612800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.612800e+04 5.612800e+04 0.00 NULL
2014 Brooklyn Community Board #2 District Manager 91040.00000 9.104000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.104000e+04 9.104000e+04 0.00 NULL
2014 Brooklyn Community Board #2 Secretary 49779.00000 4.977900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.977900e+04 4.977900e+04 0.00 NULL
2014 Brooklyn Community Board #3 Assistant District Manager 53829.00000 5.382900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.382900e+04 5.382900e+04 0.00 NULL
2014 Brooklyn Community Board #3 Community Assistant 35416.00000 3.541600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.541600e+04 3.541600e+04 0.00 NULL
2014 Brooklyn Community Board #3 District Manager 73000.00000 7.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.300000e+04 7.300000e+04 0.00 NULL
2014 Brooklyn Community Board #4 Community Associate 42093.50000 8.418700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.418700e+04 8.418700e+04 0.00 NULL
2014 Brooklyn Community Board #4 Community Service Aide 5060.20220 5.060202e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.060202e+03 5.060202e+03 0.00 NULL
2014 Brooklyn Community Board #4 District Manager 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2014 Brooklyn Community Board #5 Community Associate 39169.00000 3.916900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.916900e+04 3.916900e+04 0.00 NULL
2014 Brooklyn Community Board #5 Community Service Aide 16842.16000 3.368432e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.368432e+04 3.368432e+04 0.00 NULL
2014 Brooklyn Community Board #5 District Manager 99290.00000 9.929000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.929000e+04 9.929000e+04 0.00 NULL
2014 Brooklyn Community Board #6 Assistant District Manager 45067.00000 4.506700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.506700e+04 4.506700e+04 0.00 NULL
2014 Brooklyn Community Board #6 Community Associate 40224.00000 4.022400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.022400e+04 4.022400e+04 0.00 NULL
2014 Brooklyn Community Board #6 District Manager 105180.00000 1.051800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.051800e+05 1.051800e+05 0.00 NULL
2014 Brooklyn Community Board #7 Community Associate 40730.00000 4.073000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.073000e+04 4.073000e+04 0.00 NULL
2014 Brooklyn Community Board #7 Community Coordinator 57138.00000 5.713800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.713800e+04 5.713800e+04 0.00 NULL
2014 Brooklyn Community Board #7 District Manager 84790.00000 8.479000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.479000e+04 8.479000e+04 0.00 NULL
2014 Brooklyn Community Board #8 Community Assistant 27421.00000 2.742100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.742100e+04 2.742100e+04 0.00 NULL
2014 Brooklyn Community Board #8 Community Associate 53500.00000 5.350000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.350000e+04 5.350000e+04 0.00 NULL
2014 Brooklyn Community Board #8 Community Service Aide 29735.00000 2.973500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.973500e+04 2.973500e+04 0.00 NULL
2014 Brooklyn Community Board #8 District Manager 80356.00000 8.035600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.035600e+04 8.035600e+04 0.00 NULL
2014 Brooklyn Community Board #9 Community Assistant 27421.00000 2.742100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.742100e+04 2.742100e+04 0.00 NULL
2014 Brooklyn Community Board #9 District Manager 133290.00000 1.332900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.332900e+05 1.332900e+05 0.00 NULL
2014 Business Integrity Commission Administrative Staff Analyst 92183.61538 1.198387e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.198387e+06 1.198387e+06 0.00 NULL
2014 Business Integrity Commission Associate Fraud Investigator 59764.75000 2.390590e+05 19201.88 4.800470e+03 5005.295 516.50 4 4.800470e+03 19201.88 2.582609e+05 2.582609e+05 0.00 NULL
2014 Business Integrity Commission Associate Staff Analyst 84311.00000 8.431100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.431100e+04 8.431100e+04 0.00 NULL
2014 Business Integrity Commission Chair 204656.00000 2.046560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.046560e+05 2.046560e+05 0.00 NULL
2014 Business Integrity Commission Clerical Associate Most Mayoral Ag 50617.00000 1.518510e+05 85.72 2.857333e+01 0.000 1.50 3 0.000000e+00 0.00 1.519367e+05 1.518510e+05 85.72 NULL
2014 Business Integrity Commission Community Associate 45364.00000 8.165520e+05 3588.41 1.993561e+02 0.000 79.00 18 0.000000e+00 0.00 8.201404e+05 8.165520e+05 3588.41 NULL
2014 Business Integrity Commission Community Coordinator 65199.00000 1.955970e+05 5245.24 1.748413e+03 0.000 155.50 3 0.000000e+00 0.00 2.008422e+05 1.955970e+05 5245.24 NULL
2014 Business Integrity Commission Computer Associate 64574.00000 6.457400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.457400e+04 6.457400e+04 0.00 NULL
2014 Business Integrity Commission Computer Programmer Analyst 59951.00000 5.995100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.995100e+04 5.995100e+04 0.00 NULL
2014 Business Integrity Commission Computer Systems Manager 96000.00000 9.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.600000e+04 9.600000e+04 0.00 NULL
2014 Business Integrity Commission Deputy Commissioner 135492.00000 1.354920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.354920e+05 1.354920e+05 0.00 NULL
2014 Business Integrity Commission Executive Agency Counsel 100472.50000 1.004725e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.004725e+06 1.004725e+06 0.00 NULL
2014 Business Integrity Commission First Deputy Commissioner 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2014 Business Integrity Commission Inspector 54158.00000 5.415800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.415800e+04 5.415800e+04 0.00 NULL
2014 Business Integrity Commission Management Auditor 72776.00000 7.277600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.277600e+04 7.277600e+04 0.00 NULL
2014 Business Integrity Commission Market Agent 44593.07143 6.243030e+05 15301.52 1.092966e+03 332.480 562.50 14 3.324800e+02 4654.72 6.396045e+05 6.289577e+05 10646.80 NULL
2014 Business Integrity Commission Principal Administrative Associate - Lev 1 & 2 Non Supvr 55366.50000 1.107330e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.107330e+05 1.107330e+05 0.00 NULL
2014 Business Integrity Commission Secretary To The Chair 56042.00000 5.604200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.604200e+04 5.604200e+04 0.00 NULL
2014 Campaign Finance Board Admin Asst-Campaign Fin Board 52492.28445 8.398766e+05 58025.08 3.626568e+03 3763.950 1831.00 16 3.626568e+03 58025.08 8.979016e+05 8.979016e+05 0.00 NULL
2014 Campaign Finance Board Administrative Accountant 123487.50000 2.469750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.469750e+05 2.469750e+05 0.00 NULL
2014 Campaign Finance Board Administrative Management Auditor 87500.00000 8.750000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.750000e+04 8.750000e+04 0.00 NULL
2014 Campaign Finance Board Administrative Staff Analyst 118718.66667 7.123120e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.123120e+05 7.123120e+05 0.00 NULL
2014 Campaign Finance Board Analyst 56431.00472 2.821550e+06 174662.41 3.493248e+03 2494.370 4706.50 50 2.494370e+03 124718.50 2.996213e+06 2.946269e+06 49943.91 NULL
2014 Campaign Finance Board Associate Staff Analyst 92276.00000 9.227600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.227600e+04 9.227600e+04 0.00 NULL
2014 Campaign Finance Board Attorney-Campaign Fin Board 91184.50000 7.294760e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.294760e+05 7.294760e+05 0.00 NULL
2014 Campaign Finance Board College Aide 3838.08962 4.989517e+04 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 4.989517e+04 4.989517e+04 0.00 NULL
2014 Campaign Finance Board Computer Systems Manager 130676.00000 1.306760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.306760e+05 1.306760e+05 0.00 NULL
2014 Campaign Finance Board Director Of Public Relations 106842.00000 1.068420e+05 978.90 9.789000e+02 978.900 14.00 1 9.789000e+02 978.90 1.078209e+05 1.078209e+05 0.00 NULL
2014 Campaign Finance Board Executive Agency Counsel 175636.00000 1.756360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.756360e+05 1.756360e+05 0.00 NULL
2014 Campaign Finance Board Executive Director 201749.00000 2.017490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.017490e+05 2.017490e+05 0.00 NULL
2014 Campaign Finance Board Principal Administrative Associate - Lev 1 & 2 Non Supvr 55983.00000 5.598300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.598300e+04 5.598300e+04 0.00 NULL
2014 Campaign Finance Board Secretary To The Executive Director 92839.00000 9.283900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.283900e+04 9.283900e+04 0.00 NULL
2014 Campaign Finance Board Systems Administrator-Cam Fin Bd 93949.11111 8.455420e+05 9170.49 1.018943e+03 0.000 252.00 9 0.000000e+00 0.00 8.547125e+05 8.455420e+05 9170.49 NULL
2014 City Clerk Administrative Investigator 68817.00000 6.881700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.881700e+04 6.881700e+04 0.00 NULL
2014 City Clerk Administrative Manager 151609.00000 1.516090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.516090e+05 1.516090e+05 0.00 NULL
2014 City Clerk Assistant Administrator 70000.00000 7.000000e+04 2112.08 2.112080e+03 2112.080 42.50 1 2.112080e+03 2112.08 7.211208e+04 7.211208e+04 0.00 NULL
2014 City Clerk Cashier 41487.50000 2.489250e+05 683.97 1.139950e+02 0.000 27.00 6 0.000000e+00 0.00 2.496090e+05 2.489250e+05 683.97 NULL
2014 City Clerk Chief Of Staff 90175.00000 9.017500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.017500e+04 9.017500e+04 0.00 NULL
2014 City Clerk City Clerk & Clerk Of Council 200853.00000 2.008530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.008530e+05 2.008530e+05 0.00 NULL
2014 City Clerk Clerical Associate Most Mayoral Ag 37597.62500 9.023430e+05 14116.82 5.882008e+02 12.090 540.25 24 1.209000e+01 290.16 9.164598e+05 9.026332e+05 13826.66 NULL
2014 City Clerk College Aide 5071.20000 1.014240e+05 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.014240e+05 1.014240e+05 0.00 NULL
2014 City Clerk Community Assistant 31767.00000 6.353400e+04 11.49 5.745000e+00 5.745 0.50 2 5.745000e+00 11.49 6.354549e+04 6.354549e+04 0.00 NULL
2014 City Clerk Community Associate 39384.50000 7.876900e+04 4780.48 2.390240e+03 2390.240 163.25 2 2.390240e+03 4780.48 8.354948e+04 8.354948e+04 0.00 NULL
2014 City Clerk Community Coordinator 68932.50000 2.757300e+05 11618.78 2.904695e+03 2011.130 229.25 4 2.011130e+03 8044.52 2.873488e+05 2.837745e+05 3574.26 NULL
2014 City Clerk Deputy City Clerk 110216.16667 6.612970e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.612970e+05 6.612970e+05 0.00 NULL
2014 City Clerk Executive Agency Counsel 136292.00000 1.362920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.362920e+05 1.362920e+05 0.00 NULL
2014 City Clerk Executive Assistant To The City Clerk 75181.00000 7.518100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.518100e+04 7.518100e+04 0.00 NULL
2014 City Clerk Executive Assistant To The First Deputy Clerk 42411.00000 4.241100e+04 63.83 6.383000e+01 63.830 2.75 1 6.383000e+01 63.83 4.247483e+04 4.247483e+04 0.00 NULL
2014 City Clerk Executive Secretary To City Clerk 35285.00000 3.528500e+04 2150.93 2.150930e+03 2150.930 89.25 1 2.150930e+03 2150.93 3.743593e+04 3.743593e+04 0.00 NULL
2014 City Clerk Principal Administrative Associate - Lev 1 & 2 Non Supvr 65881.00000 1.976430e+05 12823.01 4.274337e+03 0.000 205.00 3 0.000000e+00 0.00 2.104660e+05 1.976430e+05 12823.01 NULL
2014 City Clerk Public Records Officer 39869.00000 7.973800e+04 186.43 9.321500e+01 93.215 7.00 2 9.321500e+01 186.43 7.992443e+04 7.992443e+04 0.00 NULL
2014 City Clerk Secretary 28588.00000 2.858800e+04 2308.56 2.308560e+03 2308.560 103.25 1 2.308560e+03 2308.56 3.089656e+04 3.089656e+04 0.00 NULL
2014 City Clerk Special Advisor To City Clerk 82000.00000 8.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.200000e+04 8.200000e+04 0.00 NULL
2014 City Council Assistant Director Of Administration 116340.00000 5.817000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.817000e+05 5.817000e+05 0.00 NULL
2014 City Council Assistant Director Of Legal Services 88517.50000 3.540700e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.540700e+05 3.540700e+05 0.00 NULL
2014 City Council Assistant Sergeant At Arms 50792.00000 2.539600e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.539600e+05 2.539600e+05 0.00 NULL
2014 City Council Chief Of Staff 209973.00000 2.099730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.099730e+05 2.099730e+05 0.00 NULL
2014 City Council Communication Assistant 55510.00000 4.440800e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.440800e+05 4.440800e+05 0.00 NULL
2014 City Council Cooperative Education Trainee Legislative Clerical Assistant 7597.25000 3.038900e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.038900e+04 3.038900e+04 0.00 NULL
2014 City Council Council Member 61280.48780 7.537500e+06 0.00 0.000000e+00 0.000 0.00 123 0.000000e+00 0.00 7.537500e+06 7.537500e+06 0.00 NULL
2014 City Council Councilmanic Aide 37253.81982 2.067587e+07 0.00 0.000000e+00 0.000 0.00 555 0.000000e+00 0.00 2.067587e+07 2.067587e+07 0.00 NULL
2014 City Council Counsel To Minority Leader 79694.00000 1.593880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.593880e+05 1.593880e+05 0.00 NULL
2014 City Council Deputy Administration Assistant 79817.00000 7.981700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.981700e+04 7.981700e+04 0.00 NULL
2014 City Council Deputy Director 106663.72727 1.173301e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.173301e+06 1.173301e+06 0.00 NULL
2014 City Council Deputy Director- Finance 130407.33333 7.824440e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.824440e+05 7.824440e+05 0.00 NULL
2014 City Council Deputy Unit Chief 75942.50000 1.518850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.518850e+05 1.518850e+05 0.00 NULL
2014 City Council Director 122587.41667 1.471049e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.471049e+06 1.471049e+06 0.00 NULL
2014 City Council Director Legal Division/Gen Counsel& Spec Counsel 187135.00000 3.742700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.742700e+05 3.742700e+05 0.00 NULL
2014 City Council Director Of Council Services Bureau 172753.00000 1.727530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.727530e+05 1.727530e+05 0.00 NULL
2014 City Council Director Of Finance 173056.00000 1.730560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.730560e+05 1.730560e+05 0.00 NULL
2014 City Council Director Of Land Use Division 199144.00000 1.991440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.991440e+05 1.991440e+05 0.00 NULL
2014 City Council Director-Office Of Communications 153416.00000 3.068320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.068320e+05 3.068320e+05 0.00 NULL
2014 City Council Director-Office Of Policy 116988.00000 2.339760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.339760e+05 2.339760e+05 0.00 NULL
2014 City Council Executive Legislative Coordinator 151033.46154 1.963435e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.963435e+06 1.963435e+06 0.00 NULL
2014 City Council Executive Legislative Secretary 55709.33333 1.671280e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.671280e+05 1.671280e+05 0.00 NULL
2014 City Council Legislative Administrative Assistant 56831.37500 4.546510e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.546510e+05 4.546510e+05 0.00 NULL
2014 City Council Legislative Administrative Manager 90559.40000 4.527970e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.527970e+05 4.527970e+05 0.00 NULL
2014 City Council Legislative Administrative Secretary 58374.00000 5.837400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.837400e+04 5.837400e+04 0.00 NULL
2014 City Council Legislative Analyst 65000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2014 City Council Legislative Assistant 56464.43682 4.178368e+06 0.00 0.000000e+00 0.000 0.00 74 0.000000e+00 0.00 4.178368e+06 4.178368e+06 0.00 NULL
2014 City Council Legislative Attorney 68604.61905 1.440697e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.440697e+06 1.440697e+06 0.00 NULL
2014 City Council Legislative Clerk 25530.92100 1.021237e+06 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 1.021237e+06 1.021237e+06 0.00 NULL
2014 City Council Legislative Computer Support Specialist 55833.62500 4.466690e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.466690e+05 4.466690e+05 0.00 NULL
2014 City Council Legislative Coordinator 81872.66667 2.456180e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.456180e+05 2.456180e+05 0.00 NULL
2014 City Council Legislative Counsel 98606.40000 1.972128e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.972128e+06 1.972128e+06 0.00 NULL
2014 City Council Legislative Financial Analyst 52903.53846 6.877460e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 6.877460e+05 6.877460e+05 0.00 NULL
2014 City Council Legislative Intern 4522.23542 1.899339e+05 0.00 0.000000e+00 0.000 0.00 42 0.000000e+00 0.00 1.899339e+05 1.899339e+05 0.00 NULL
2014 City Council Legislative Investigator 50000.00000 1.500000e+05 112.00 3.733333e+01 0.000 7.00 3 0.000000e+00 0.00 1.501120e+05 1.500000e+05 112.00 NULL
2014 City Council Legislative Messenger 35205.33333 1.056160e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.056160e+05 1.056160e+05 0.00 NULL
2014 City Council Legislative Policy Analyst 49833.42308 1.295669e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 1.295669e+06 1.295669e+06 0.00 NULL
2014 City Council Legislative Programmer/Analyst 103652.00000 1.036520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.036520e+05 1.036520e+05 0.00 NULL
2014 City Council Legislative Project Manager 82952.40000 4.147620e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.147620e+05 4.147620e+05 0.00 NULL
2014 City Council Legislative Support Service Coord 51092.00000 1.021840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.021840e+05 1.021840e+05 0.00 NULL
2014 City Council Legislative Systems Manager 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2014 City Council Legistative Manager-Office Of Communication 103652.00000 1.036520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.036520e+05 1.036520e+05 0.00 NULL
2014 City Council Minority Leader 121500.00000 2.430000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.430000e+05 2.430000e+05 0.00 NULL
2014 City Council Principal Legislative Financial Analyst 60333.25000 2.413330e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.413330e+05 2.413330e+05 0.00 NULL
2014 City Council Senior Legislative Financial Analyst 70424.50000 4.225470e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.225470e+05 4.225470e+05 0.00 NULL
2014 City Council Senior Legislative Policy Analyst 65120.00000 3.256000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.256000e+05 3.256000e+05 0.00 NULL
2014 City Council Speaker/Majority Leader 75000.00000 2.250000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.250000e+05 2.250000e+05 0.00 NULL
2014 City Council Special Advisor To The Director 112008.50000 2.240170e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.240170e+05 2.240170e+05 0.00 NULL
2014 Civil Service Commission Administrative Staff Analyst 114929.28000 1.149293e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.149293e+05 1.149293e+05 0.00 NULL
2014 Civil Service Commission Agency Attorney 66590.50000 1.331810e+05 1592.77 7.963850e+02 796.385 0.00 2 7.963850e+02 1592.77 1.347738e+05 1.347738e+05 0.00 NULL
2014 Civil Service Commission Agency Attorney Interne 52482.00000 5.248200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.248200e+04 5.248200e+04 0.00 NULL
2014 Civil Service Commission Bookkeeper 71985.10000 7.198510e+04 12725.76 1.272576e+04 12725.760 260.00 1 1.272576e+04 12725.76 8.471086e+04 8.471086e+04 0.00 NULL
2014 Civil Service Commission Chairman 1373.56560 1.373566e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.373566e+03 1.373566e+03 0.00 NULL
2014 Civil Service Commission Commissioner 1255.39250 2.510785e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.510785e+03 2.510785e+03 0.00 NULL
2014 Civil Service Commission Community Associate 36036.00000 7.207200e+04 1656.82 8.284100e+02 828.410 72.50 2 8.284100e+02 1656.82 7.372882e+04 7.372882e+04 0.00 NULL
2014 Civil Service Commission Secretary Of The Commission 124146.00000 1.241460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.241460e+05 1.241460e+05 0.00 NULL
2014 Civilian Complaint Review Bd Adm Manager-Non-Mgrl From M1/M2 66623.50000 1.332470e+05 7408.75 3.704375e+03 3704.375 165.75 2 3.704375e+03 7408.75 1.406558e+05 1.406558e+05 0.00 NULL
2014 Civilian Complaint Review Bd Administrative Staff Analyst 95447.18000 3.817887e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.817887e+05 3.817887e+05 0.00 NULL
2014 Civilian Complaint Review Bd Clerical Associate Most Mayoral Ag 34295.02667 1.028851e+05 6858.74 2.286247e+03 1754.780 302.50 3 1.754780e+03 5264.34 1.097438e+05 1.081494e+05 1594.40 NULL
2014 Civilian Complaint Review Bd Community Assistant 32535.10000 3.253510e+04 1335.50 1.335500e+03 1335.500 90.00 1 1.335500e+03 1335.50 3.387060e+04 3.387060e+04 0.00 NULL
2014 Civilian Complaint Review Bd Community Associate 36320.77550 1.816039e+05 508.25 1.016500e+02 0.000 25.00 5 0.000000e+00 0.00 1.821121e+05 1.816039e+05 508.25 NULL
2014 Civilian Complaint Review Bd Community Coordinator 54325.75000 2.173030e+05 374.50 9.362500e+01 0.000 15.00 4 0.000000e+00 0.00 2.176775e+05 2.173030e+05 374.50 NULL
2014 Civilian Complaint Review Bd Computer Operations Manager 105725.00000 1.057250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.057250e+05 1.057250e+05 0.00 NULL
2014 Civilian Complaint Review Bd Computer Specialist 74267.50000 1.485350e+05 15268.37 7.634185e+03 7634.185 325.00 2 7.634185e+03 15268.37 1.638034e+05 1.638034e+05 0.00 NULL
2014 Civilian Complaint Review Bd Computer Systems Manager 78446.00000 1.568920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.568920e+05 1.568920e+05 0.00 NULL
2014 Civilian Complaint Review Bd Deputy Assistant Director 85887.70000 2.576631e+05 2041.24 6.804133e+02 703.850 48.25 3 6.804133e+02 2041.24 2.597043e+05 2.597043e+05 0.00 NULL
2014 Civilian Complaint Review Bd Deputy Executive Director 126666.66667 3.800000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.800000e+05 3.800000e+05 0.00 NULL
2014 Civilian Complaint Review Bd Executive Agency Counsel 87941.29000 1.407061e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.407061e+06 1.407061e+06 0.00 NULL
2014 Civilian Complaint Review Bd Executive Director 178180.00000 3.563600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.563600e+05 3.563600e+05 0.00 NULL
2014 Civilian Complaint Review Bd Investigative Manager 90400.50000 5.424030e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.424030e+05 5.424030e+05 0.00 NULL
2014 Civilian Complaint Review Bd Investigator 42161.27820 5.607450e+06 228776.12 1.720121e+03 878.330 7964.25 133 8.783300e+02 116817.89 5.836226e+06 5.724268e+06 111958.23 NULL
2014 Civilian Complaint Review Bd Member, Civilian Complaint Review Board 292.13750 3.505650e+03 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 3.505650e+03 3.505650e+03 0.00 NULL
2014 Civilian Complaint Review Bd Principal Administrative Associate - Lev 1 & 2 Non Supvr 49465.00000 4.946500e+04 5958.40 5.958400e+03 5958.400 173.50 1 5.958400e+03 5958.40 5.542340e+04 5.542340e+04 0.00 NULL
2014 Civilian Complaint Review Bd Secretary 44988.80000 8.997760e+04 14945.28 7.472640e+03 7472.640 522.25 2 7.472640e+03 14945.28 1.049229e+05 1.049229e+05 0.00 NULL
2014 Civilian Complaint Review Bd Strategic Initiative Specialist 54000.00000 5.400000e+04 88.67 8.867000e+01 88.670 7.25 1 8.867000e+01 88.67 5.408867e+04 5.408867e+04 0.00 NULL
2014 Civilian Complaint Review Bd Supervisor Of Investigators 73012.66667 6.571140e+05 50657.34 5.628593e+03 3377.100 1054.50 9 3.377100e+03 30393.90 7.077713e+05 6.875079e+05 20263.44 NULL
2014 Community College (Bronx) ?Assistant Purchasing Agent 35796.00000 7.159200e+04 542.69 2.713450e+02 271.345 20.50 2 2.713450e+02 542.69 7.213469e+04 7.213469e+04 0.00 NULL
2014 Community College (Bronx) ?Purchasing Agent 48097.00000 9.619400e+04 683.78 3.418900e+02 341.890 8.50 2 3.418900e+02 683.78 9.687778e+04 9.687778e+04 0.00 NULL
2014 Community College (Bronx) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 130 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Bronx) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Bronx) Adjunct College Lab Tech 6056.51804 2.785998e+05 0.00 0.000000e+00 0.000 0.00 46 0.000000e+00 0.00 2.785998e+05 2.785998e+05 0.00 NULL
2014 Community College (Bronx) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 457 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Bronx) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Bronx) Adjunct Senior College Lab Tech 7587.70750 1.517542e+04 47.29 2.364500e+01 23.645 0.00 2 2.364500e+01 47.29 1.522270e+04 1.522270e+04 0.00 NULL
2014 Community College (Bronx) Administrator 140000.00000 2.800000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.800000e+05 2.800000e+05 0.00 NULL
2014 Community College (Bronx) Administrator Supt Campus B/G 87248.50000 1.744970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.744970e+05 1.744970e+05 0.00 NULL
2014 Community College (Bronx) Assistant Administrator 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2014 Community College (Bronx) Assistant Dean 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2014 Community College (Bronx) Assistant Principal Custodial Supervisor 40325.00000 4.032500e+04 379.88 3.798800e+02 379.880 9.50 1 3.798800e+02 379.88 4.070488e+04 4.070488e+04 0.00 NULL
2014 Community College (Bronx) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 139 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Bronx) Assistant To Heo 56002.41176 1.904082e+06 6336.29 1.863615e+02 0.000 136.67 34 0.000000e+00 0.00 1.910418e+06 1.904082e+06 6336.29 NULL
2014 Community College (Bronx) Assistant Vice President 142500.00000 5.700000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.700000e+05 5.700000e+05 0.00 NULL
2014 Community College (Bronx) Associate Administrator 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2014 Community College (Bronx) Associate Dean 120000.00000 2.400000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.400000e+05 2.400000e+05 0.00 NULL
2014 Community College (Bronx) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 92 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Bronx) Auto Mechanic NA NA 8105.23 8.105230e+03 8105.230 148.00 1 8.105230e+03 8105.23 NA NA NA NULL
2014 Community College (Bronx) Campus Peace Officer 37032.90000 1.110987e+06 192069.04 6.402301e+03 4625.140 7063.70 30 4.625140e+03 138754.20 1.303056e+06 1.249741e+06 53314.84 NULL
2014 Community College (Bronx) Campus Public Safety Sergeant 50313.66667 6.037640e+05 170123.92 1.417699e+04 12187.915 4740.89 12 1.218792e+04 146254.98 7.738879e+05 7.500190e+05 23868.94 NULL
2014 Community College (Bronx) Campus Security Assistant 20449.09921 7.770658e+05 97292.39 2.560326e+03 1533.490 5176.31 38 1.533490e+03 58272.62 8.743582e+05 8.353384e+05 39019.77 NULL
2014 Community College (Bronx) Carpenter NA NA 20000.00 1.000000e+04 10000.000 324.50 2 1.000000e+04 20000.00 NA NA NA NULL
2014 Community College (Bronx) Cement Mason NA NA 20149.08 2.014908e+04 20149.080 294.00 1 2.014908e+04 20149.08 NA NA NA NULL
2014 Community College (Bronx) Chief Administrative Supt Campus B/G 114878.00000 1.148780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.148780e+05 1.148780e+05 0.00 NULL
2014 Community College (Bronx) Chief College Lab Technician 75022.00000 2.250660e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.250660e+05 2.250660e+05 0.00 NULL
2014 Community College (Bronx) City Laborer NA NA 59869.27 7.483659e+03 6990.000 1285.75 8 6.990000e+03 55920.00 NA NA NA NULL
2014 Community College (Bronx) College Accountant 49227.50000 1.969100e+05 241.77 6.044250e+01 0.000 0.00 4 0.000000e+00 0.00 1.971518e+05 1.969100e+05 241.77 NULL
2014 Community College (Bronx) College Accounting Assistant 38265.60000 1.913280e+05 1409.17 2.818340e+02 0.000 57.50 5 0.000000e+00 0.00 1.927372e+05 1.913280e+05 1409.17 NULL
2014 Community College (Bronx) College Assistant 6502.31172 2.861017e+06 3290.03 7.477341e+00 0.000 156.25 440 0.000000e+00 0.00 2.864307e+06 2.861017e+06 3290.03 NULL
2014 Community College (Bronx) College Graph Designer 47746.00000 4.774600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.774600e+04 4.774600e+04 0.00 NULL
2014 Community College (Bronx) College Lab Technician 45270.98455 9.959617e+05 398.74 1.812455e+01 0.000 0.00 22 0.000000e+00 0.00 9.963604e+05 9.959617e+05 398.74 NULL
2014 Community College (Bronx) College Print Shop Assistant 28090.00000 2.809000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.809000e+04 2.809000e+04 0.00 NULL
2014 Community College (Bronx) College Print Shop Associate 37520.00000 7.504000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.504000e+04 7.504000e+04 0.00 NULL
2014 Community College (Bronx) College Security Director 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2014 Community College (Bronx) College Security Specialist 60648.00000 1.212960e+05 52160.58 2.608029e+04 26080.290 1203.00 2 2.608029e+04 52160.58 1.734566e+05 1.734566e+05 0.00 NULL
2014 Community College (Bronx) Computer Systems Manager 104600.00000 5.230000e+05 14213.69 2.842738e+03 0.000 224.00 5 0.000000e+00 0.00 5.372137e+05 5.230000e+05 14213.69 NULL
2014 Community College (Bronx) Continuing Education Teacher 15500.29872 1.209023e+06 0.00 0.000000e+00 0.000 0.00 78 0.000000e+00 0.00 1.209023e+06 1.209023e+06 0.00 NULL
2014 Community College (Bronx) Cuny Administrator Assistant 45720.25000 7.315240e+05 33219.52 2.076220e+03 0.000 1133.25 16 0.000000e+00 0.00 7.647435e+05 7.315240e+05 33219.52 NULL
2014 Community College (Bronx) Cuny Custodial Assistant 28053.31455 1.795412e+06 19490.69 3.045420e+02 30.465 992.25 64 3.046500e+01 1949.76 1.814903e+06 1.797362e+06 17540.93 NULL
2014 Community College (Bronx) Cuny Office Assistant 32254.10976 2.644837e+06 38710.26 4.720763e+02 0.000 1910.42 82 0.000000e+00 0.00 2.683547e+06 2.644837e+06 38710.26 NULL
2014 Community College (Bronx) Custodial Supervisor 32545.40000 1.627270e+05 3758.34 7.516680e+02 179.920 151.50 5 1.799200e+02 899.60 1.664853e+05 1.636266e+05 2858.74 NULL
2014 Community College (Bronx) Dean 143997.50000 5.759900e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.759900e+05 5.759900e+05 0.00 NULL
2014 Community College (Bronx) Disability Accommodations Specialist 48060.50000 9.612100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.612100e+04 9.612100e+04 0.00 NULL
2014 Community College (Bronx) Electrician NA NA 45778.30 7.629717e+03 8323.880 711.25 6 7.629717e+03 45778.30 NA NA NA NULL
2014 Community College (Bronx) Eoc Accounting Assistant 37317.00000 7.463400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.463400e+04 7.463400e+04 0.00 NULL
2014 Community College (Bronx) Eoc Adjunct Lecturer 10993.85933 1.649079e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.649079e+05 1.649079e+05 0.00 NULL
2014 Community College (Bronx) Eoc Administrative Assistant 51879.00000 5.187900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.187900e+04 5.187900e+04 0.00 NULL
2014 Community College (Bronx) Eoc Assistant To Heo 57985.20000 2.899260e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.899260e+05 2.899260e+05 0.00 NULL
2014 Community College (Bronx) Eoc College Lab Technician 56119.50000 1.122390e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.122390e+05 1.122390e+05 0.00 NULL
2014 Community College (Bronx) Eoc Custodial Assistant 26272.00000 7.881600e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.881600e+04 7.881600e+04 0.00 NULL
2014 Community College (Bronx) Eoc Custodial Supervisor 35175.50000 7.035100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.035100e+04 7.035100e+04 0.00 NULL
2014 Community College (Bronx) Eoc Higher Education Assistant 74133.00000 7.413300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.413300e+04 7.413300e+04 0.00 NULL
2014 Community College (Bronx) Eoc Higher Education Associate 88418.00000 1.768360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.768360e+05 1.768360e+05 0.00 NULL
2014 Community College (Bronx) Eoc Higher Education Officer 116364.00000 1.163640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.163640e+05 1.163640e+05 0.00 NULL
2014 Community College (Bronx) Eoc Lecturer 74907.00000 2.247210e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.247210e+05 2.247210e+05 0.00 NULL
2014 Community College (Bronx) Eoc Office Assistant 30299.42857 2.120960e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.120960e+05 2.120960e+05 0.00 NULL
2014 Community College (Bronx) High Pressure Plant Tender NA NA 30937.90 4.419700e+03 3409.310 692.25 7 3.409310e+03 23865.17 NA NA NA NULL
2014 Community College (Bronx) Higher Education Assistant 67025.00000 4.289600e+06 16437.67 2.568386e+02 0.000 286.50 64 0.000000e+00 0.00 4.306038e+06 4.289600e+06 16437.67 NULL
2014 Community College (Bronx) Higher Education Associate 83022.78571 3.486957e+06 0.00 0.000000e+00 0.000 0.00 42 0.000000e+00 0.00 3.486957e+06 3.486957e+06 0.00 NULL
2014 Community College (Bronx) Higher Education Officer 107714.28125 3.446857e+06 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 3.446857e+06 3.446857e+06 0.00 NULL
2014 Community College (Bronx) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Bronx) It Assistant 49649.38462 6.454420e+05 16087.39 1.237492e+03 231.090 488.50 13 2.310900e+02 3004.17 6.615294e+05 6.484462e+05 13083.22 NULL
2014 Community College (Bronx) It Associate 70360.71429 4.925250e+05 25103.53 3.586219e+03 912.210 561.50 7 9.122100e+02 6385.47 5.176285e+05 4.989105e+05 18718.06 NULL
2014 Community College (Bronx) It Senior Associate 95578.00000 1.911560e+05 2313.77 1.156885e+03 1156.885 34.50 2 1.156885e+03 2313.77 1.934698e+05 1.934698e+05 0.00 NULL
2014 Community College (Bronx) It Support Assistant 26857.54654 6.982962e+05 3324.92 1.278815e+02 0.000 135.50 26 0.000000e+00 0.00 7.016211e+05 6.982962e+05 3324.92 NULL
2014 Community College (Bronx) Laborer NA NA 12609.00 4.203000e+03 0.000 255.75 3 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Bronx) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 110 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Bronx) Locksmith NA NA 37.19 1.859500e+01 18.595 2.00 2 1.859500e+01 37.19 NA NA NA NULL
2014 Community College (Bronx) Mail/Message Services Worker 30600.66667 9.180200e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.180200e+04 9.180200e+04 0.00 NULL
2014 Community College (Bronx) Maintenance Worker NA NA 31870.82 3.541202e+03 3136.800 858.75 9 3.136800e+03 28231.20 NA NA NA NULL
2014 Community College (Bronx) Media Services Technician 50958.00000 5.095800e+04 8639.30 8.639300e+03 8639.300 241.50 1 8.639300e+03 8639.30 5.959730e+04 5.959730e+04 0.00 NULL
2014 Community College (Bronx) Motor Vehicle Operator 34237.00000 3.423700e+04 5813.84 5.813840e+03 5813.840 222.00 1 5.813840e+03 5813.84 4.005084e+04 4.005084e+04 0.00 NULL
2014 Community College (Bronx) Non-Teaching Adjunct I 3106.30833 9.318925e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.318925e+03 9.318925e+03 0.00 NULL
2014 Community College (Bronx) Non-Teaching Adjunct Ii 2497.49362 5.894085e+05 0.00 0.000000e+00 0.000 0.00 236 0.000000e+00 0.00 5.894085e+05 5.894085e+05 0.00 NULL
2014 Community College (Bronx) Non-Teaching Adjunct Iii 844.05443 5.148732e+04 0.00 0.000000e+00 0.000 0.00 61 0.000000e+00 0.00 5.148732e+04 5.148732e+04 0.00 NULL
2014 Community College (Bronx) Non-Teaching Adjunct Iv 1335.11867 4.005356e+04 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 4.005356e+04 4.005356e+04 0.00 NULL
2014 Community College (Bronx) Non-Teaching Adjunct V 2287.12271 8.004929e+04 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 8.004929e+04 8.004929e+04 0.00 NULL
2014 Community College (Bronx) Oiler NA NA 15368.96 5.122987e+03 7178.760 271.00 3 5.122987e+03 15368.96 NA NA NA NULL
2014 Community College (Bronx) Painter NA NA 28345.71 7.086427e+03 6853.455 625.75 4 6.853455e+03 27413.82 NA NA NA NULL
2014 Community College (Bronx) Plumber NA NA 51761.27 1.725376e+04 16471.580 593.50 3 1.647158e+04 49414.74 NA NA NA NULL
2014 Community College (Bronx) Plumber’s Helper NA NA 24998.40 1.249920e+04 12499.200 343.00 2 1.249920e+04 24998.40 NA NA NA NULL
2014 Community College (Bronx) President 204000.00000 2.040000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.040000e+05 2.040000e+05 0.00 NULL
2014 Community College (Bronx) Principal Custodial Supervisor 54977.00000 5.497700e+04 6040.52 6.040520e+03 6040.520 145.75 1 6.040520e+03 6040.52 6.101752e+04 6.101752e+04 0.00 NULL
2014 Community College (Bronx) Professor NA NA 0.00 0.000000e+00 0.000 0.00 114 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Bronx) Senior College Lab Tech 59195.55556 5.327600e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.327600e+05 5.327600e+05 0.00 NULL
2014 Community College (Bronx) Senior Custodial Supervisor 35154.66667 1.054640e+05 1954.03 6.513433e+02 201.550 77.50 3 2.015500e+02 604.65 1.074180e+05 1.060686e+05 1349.38 NULL
2014 Community College (Bronx) Senior Stationary Engineer NA NA 60163.47 3.008174e+04 30081.735 704.50 2 3.008174e+04 60163.47 NA NA NA NULL
2014 Community College (Bronx) Senior Vice President 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2014 Community College (Bronx) Sr College Laboratory Tech 3984.12000 3.984120e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.984120e+03 3.984120e+03 0.00 NULL
2014 Community College (Bronx) Stationary Engineer NA NA 89796.16 1.282802e+04 12050.330 1449.75 7 1.205033e+04 84352.31 NA NA NA NULL
2014 Community College (Bronx) Steam Fitter NA NA 16251.51 1.625151e+04 16251.510 146.00 1 1.625151e+04 16251.51 NA NA NA NULL
2014 Community College (Bronx) Stock Worker 30148.66667 1.808920e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.808920e+05 1.808920e+05 0.00 NULL
2014 Community College (Bronx) Student Aide 1980.21167 1.485159e+05 250.14 3.335200e+00 0.000 23.00 75 0.000000e+00 0.00 1.487660e+05 1.485159e+05 250.14 NULL
2014 Community College (Bronx) Supervisor Carpenter NA NA 41865.93 4.186593e+04 41865.930 597.25 1 4.186593e+04 41865.93 NA NA NA NULL
2014 Community College (Bronx) Supervisor Electrician NA NA 29777.68 2.977768e+04 29777.680 395.00 1 2.977768e+04 29777.68 NA NA NA NULL
2014 Community College (Bronx) Supervisor Painter NA NA 7275.00 7.275000e+03 7275.000 125.25 1 7.275000e+03 7275.00 NA NA NA NULL
2014 Community College (Bronx) Thermostat Repairer NA NA 14033.05 7.016525e+03 7016.525 133.50 2 7.016525e+03 14033.05 NA NA NA NULL
2014 Community College (Bronx) Vice President 176333.33333 5.290000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.290000e+05 5.290000e+05 0.00 NULL
2014 Community College (Hostos) ?Assistant Purchasing Agent 35796.00000 7.159200e+04 545.72 2.728600e+02 272.860 15.50 2 2.728600e+02 545.72 7.213772e+04 7.213772e+04 0.00 NULL
2014 Community College (Hostos) ?Purchasing Agent 50867.00000 5.086700e+04 1642.66 1.642660e+03 1642.660 22.00 1 1.642660e+03 1642.66 5.250966e+04 5.250966e+04 0.00 NULL
2014 Community College (Hostos) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 98 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Hostos) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Hostos) Adjunct College Lab Tech 12851.33000 6.425665e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.425665e+04 6.425665e+04 0.00 NULL
2014 Community College (Hostos) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 196 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Hostos) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Hostos) Administrator 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2014 Community College (Hostos) Administrator Supt Campus B/G 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2014 Community College (Hostos) Assistant Administrator 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2014 Community College (Hostos) Assistant College Security Director 71065.50000 1.421310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.421310e+05 1.421310e+05 0.00 NULL
2014 Community College (Hostos) Assistant Dean 109137.33333 6.548240e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.548240e+05 6.548240e+05 0.00 NULL
2014 Community College (Hostos) Assistant Principal Custodial Supervisor 39399.00000 3.939900e+04 3595.55 3.595550e+03 3595.550 125.00 1 3.595550e+03 3595.55 4.299455e+04 4.299455e+04 0.00 NULL
2014 Community College (Hostos) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 132 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Hostos) Assistant To Heo 45062.22857 1.577178e+06 3276.16 9.360457e+01 0.000 85.50 35 0.000000e+00 0.00 1.580454e+06 1.577178e+06 3276.16 NULL
2014 Community College (Hostos) Assistant Vice President 140612.00000 2.812240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.812240e+05 2.812240e+05 0.00 NULL
2014 Community College (Hostos) Associate Administrator 123000.00000 1.230000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.230000e+05 1.230000e+05 0.00 NULL
2014 Community College (Hostos) Associate Dean 126118.00000 3.783540e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.783540e+05 3.783540e+05 0.00 NULL
2014 Community College (Hostos) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Hostos) Campus Peace Officer 38203.96296 1.031507e+06 200708.16 7.433636e+03 8135.360 6998.09 27 7.433636e+03 200708.16 1.232215e+06 1.232215e+06 0.00 NULL
2014 Community College (Hostos) Campus Public Safety Sergeant 50147.00000 3.008820e+05 45151.28 7.525213e+03 6420.780 1213.00 6 6.420780e+03 38524.68 3.460333e+05 3.394067e+05 6626.60 NULL
2014 Community College (Hostos) Campus Security Assistant 26487.84615 3.443420e+05 68255.62 5.250432e+03 5291.630 3777.67 13 5.250432e+03 68255.62 4.125976e+05 4.125976e+05 0.00 NULL
2014 Community College (Hostos) Carpenter NA NA 12518.30 1.251830e+04 12518.300 140.25 1 1.251830e+04 12518.30 NA NA NA NULL
2014 Community College (Hostos) Chief Administrator Supt Campus B/G 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2014 Community College (Hostos) City Laborer NA NA 39214.64 1.307155e+04 14913.180 754.25 3 1.307155e+04 39214.64 NA NA NA NULL
2014 Community College (Hostos) College Accountant 45901.00000 1.377030e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.377030e+05 1.377030e+05 0.00 NULL
2014 Community College (Hostos) College Accounting Assistant 38882.16667 2.332930e+05 2290.19 3.816983e+02 0.000 135.00 6 0.000000e+00 0.00 2.355832e+05 2.332930e+05 2290.19 NULL
2014 Community College (Hostos) College Assistant 5725.28688 2.192785e+06 3368.39 8.794752e+00 0.000 155.50 383 0.000000e+00 0.00 2.196153e+06 2.192785e+06 3368.39 NULL
2014 Community College (Hostos) College Graph Designer 54752.00000 5.475200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.475200e+04 5.475200e+04 0.00 NULL
2014 Community College (Hostos) College Lab Technician 53023.36364 5.832570e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.832570e+05 5.832570e+05 0.00 NULL
2014 Community College (Hostos) College Print Shop Assistant 28090.00000 2.809000e+04 7158.34 7.158340e+03 7158.340 391.58 1 7.158340e+03 7158.34 3.524834e+04 3.524834e+04 0.00 NULL
2014 Community College (Hostos) College Security Director 112546.00000 1.125460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.125460e+05 1.125460e+05 0.00 NULL
2014 Community College (Hostos) College Security Specialist 48766.66667 1.463000e+05 14108.98 4.702993e+03 335.790 339.75 3 3.357900e+02 1007.37 1.604090e+05 1.473074e+05 13101.61 NULL
2014 Community College (Hostos) Computer Systems Manager 71000.00000 7.100000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.100000e+04 7.100000e+04 0.00 NULL
2014 Community College (Hostos) Continuing Education Teacher NA NA 0.00 0.000000e+00 0.000 0.00 170 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Hostos) Cuny Administrator Assistant 47427.16667 5.691260e+05 6474.25 5.395208e+02 0.000 232.75 12 0.000000e+00 0.00 5.756002e+05 5.691260e+05 6474.25 NULL
2014 Community College (Hostos) Cuny Custodial Assistant 27322.78991 1.202203e+06 31292.40 7.111909e+02 390.500 1395.58 44 3.905000e+02 17182.00 1.233495e+06 1.219385e+06 14110.40 NULL
2014 Community College (Hostos) Cuny Office Assistant 33631.52000 1.681576e+06 2975.44 5.950880e+01 0.000 156.75 50 0.000000e+00 0.00 1.684551e+06 1.681576e+06 2975.44 NULL
2014 Community College (Hostos) Custodial Supervisor 32568.40000 1.628420e+05 6599.58 1.319916e+03 852.860 238.50 5 8.528600e+02 4264.30 1.694416e+05 1.671063e+05 2335.28 NULL
2014 Community College (Hostos) Disability Accommodations Specialist 45127.00000 4.512700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.512700e+04 4.512700e+04 0.00 NULL
2014 Community College (Hostos) Distinguished Lecturer 96333.33333 2.890000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.890000e+05 2.890000e+05 0.00 NULL
2014 Community College (Hostos) Distinguished Professor 134665.00000 1.346650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.346650e+05 1.346650e+05 0.00 NULL
2014 Community College (Hostos) Electrician NA NA 16629.38 1.662938e+04 16629.380 197.00 1 1.662938e+04 16629.38 NA NA NA NULL
2014 Community College (Hostos) Electrician’s Helper NA NA 11475.99 5.737995e+03 5737.995 169.00 2 5.737995e+03 11475.99 NA NA NA NULL
2014 Community College (Hostos) High Pressure Plant Tender NA NA 39979.12 5.711303e+03 5078.700 840.50 7 5.078700e+03 35550.90 NA NA NA NULL
2014 Community College (Hostos) Higher Education Assistant 54954.30645 3.407167e+06 0.00 0.000000e+00 0.000 0.00 62 0.000000e+00 0.00 3.407167e+06 3.407167e+06 0.00 NULL
2014 Community College (Hostos) Higher Education Associate 81027.81081 2.998029e+06 100.55 2.717568e+00 0.000 1.50 37 0.000000e+00 0.00 2.998130e+06 2.998029e+06 100.55 NULL
2014 Community College (Hostos) Higher Education Officer 104723.96429 2.932271e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 2.932271e+06 2.932271e+06 0.00 NULL
2014 Community College (Hostos) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Hostos) It Assistant 39338.93867 5.900841e+05 2154.38 1.436253e+02 0.000 70.00 15 0.000000e+00 0.00 5.922385e+05 5.900841e+05 2154.38 NULL
2014 Community College (Hostos) It Associate 67186.75000 2.687470e+05 1109.92 2.774800e+02 0.000 26.00 4 0.000000e+00 0.00 2.698569e+05 2.687470e+05 1109.92 NULL
2014 Community College (Hostos) It Senior Associate 86111.33333 2.583340e+05 2880.82 9.602733e+02 0.000 46.75 3 0.000000e+00 0.00 2.612148e+05 2.583340e+05 2880.82 NULL
2014 Community College (Hostos) It Support Assistant 34916.06800 3.491607e+05 1428.42 1.428420e+02 0.000 55.00 10 0.000000e+00 0.00 3.505891e+05 3.491607e+05 1428.42 NULL
2014 Community College (Hostos) Laborer NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Hostos) Lead Theatre Technician 5182.26100 1.295565e+05 11649.41 4.659764e+02 58.130 330.50 25 5.813000e+01 1453.25 1.412059e+05 1.310098e+05 10196.16 NULL
2014 Community College (Hostos) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Hostos) Lecturer/Doctoral Schedule 64186.50000 1.283730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.283730e+05 1.283730e+05 0.00 NULL
2014 Community College (Hostos) Locksmith NA NA 316.07 3.160700e+02 316.070 8.50 1 3.160700e+02 316.07 NA NA NA NULL
2014 Community College (Hostos) Mail/Message Services Worker 35491.33333 1.064740e+05 19176.71 6.392237e+03 4666.870 795.75 3 4.666870e+03 14000.61 1.256507e+05 1.204746e+05 5176.10 NULL
2014 Community College (Hostos) Maintenance Worker NA NA 22297.21 5.574302e+03 5972.860 458.75 4 5.574302e+03 22297.21 NA NA NA NULL
2014 Community College (Hostos) Non-Teaching Adjunct I 2270.10431 1.157753e+05 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 1.157753e+05 1.157753e+05 0.00 NULL
2014 Community College (Hostos) Non-Teaching Adjunct Ii 1910.34043 4.393783e+04 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 4.393783e+04 4.393783e+04 0.00 NULL
2014 Community College (Hostos) Non-Teaching Adjunct Iii 796.64456 4.540874e+04 0.00 0.000000e+00 0.000 0.00 57 0.000000e+00 0.00 4.540874e+04 4.540874e+04 0.00 NULL
2014 Community College (Hostos) Non-Teaching Adjunct Iv 1204.06294 2.046907e+04 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.046907e+04 2.046907e+04 0.00 NULL
2014 Community College (Hostos) Non-Teaching Adjunct V 3113.76042 3.736512e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 3.736512e+04 3.736512e+04 0.00 NULL
2014 Community College (Hostos) Oiler NA NA 39916.68 1.995834e+04 19958.340 589.50 2 1.995834e+04 39916.68 NA NA NA NULL
2014 Community College (Hostos) Painter NA NA 3491.26 1.745630e+03 1745.630 66.50 2 1.745630e+03 3491.26 NA NA NA NULL
2014 Community College (Hostos) Plumber NA NA 19646.28 1.964628e+04 19646.280 198.75 1 1.964628e+04 19646.28 NA NA NA NULL
2014 Community College (Hostos) Plumber’s Helper NA NA 8517.60 8.517600e+03 8517.600 116.50 1 8.517600e+03 8517.60 NA NA NA NULL
2014 Community College (Hostos) President 204000.00000 2.040000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.040000e+05 2.040000e+05 0.00 NULL
2014 Community College (Hostos) Principal Custodial Supervisor 56932.00000 5.693200e+04 4769.50 4.769500e+03 4769.500 108.00 1 4.769500e+03 4769.50 6.170150e+04 6.170150e+04 0.00 NULL
2014 Community College (Hostos) Professor NA NA 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Hostos) Senior College Lab Tech 60089.50000 3.605370e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.605370e+05 3.605370e+05 0.00 NULL
2014 Community College (Hostos) Senior Custodial Supervisor 35069.00000 7.013800e+04 515.36 2.576800e+02 257.680 20.50 2 2.576800e+02 515.36 7.065336e+04 7.065336e+04 0.00 NULL
2014 Community College (Hostos) Senior Vice President 188511.00000 1.885110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.885110e+05 1.885110e+05 0.00 NULL
2014 Community College (Hostos) Sign Language Interpreter 2153.02500 4.306050e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.306050e+03 4.306050e+03 0.00 NULL
2014 Community College (Hostos) Staff Nurse 64279.65750 1.285593e+05 440.92 2.204600e+02 220.460 7.50 2 2.204600e+02 440.92 1.290002e+05 1.290002e+05 0.00 NULL
2014 Community College (Hostos) Stationary Engineer NA NA 100148.57 2.503714e+04 25198.610 1346.75 4 2.503714e+04 100148.57 NA NA NA NULL
2014 Community College (Hostos) Stock Worker 30731.33333 9.219400e+04 75.24 2.508000e+01 25.080 10.00 3 2.508000e+01 75.24 9.226924e+04 9.226924e+04 0.00 NULL
2014 Community College (Hostos) Thermostat Repairer NA NA 34415.49 3.441549e+04 34415.490 375.00 1 3.441549e+04 34415.49 NA NA NA NULL
2014 Community College (Hostos) Vice President 151212.25000 6.048490e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.048490e+05 6.048490e+05 0.00 NULL
2014 Community College (Kingsboro) ?Purchasing Agent 53974.80000 2.698740e+05 12597.98 2.519596e+03 481.670 334.75 5 4.816700e+02 2408.35 2.824720e+05 2.722823e+05 10189.63 NULL
2014 Community College (Kingsboro) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 93 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Kingsboro) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Kingsboro) Adjunct College Lab Tech 9103.28179 1.247150e+06 0.00 0.000000e+00 0.000 0.00 137 0.000000e+00 0.00 1.247150e+06 1.247150e+06 0.00 NULL
2014 Community College (Kingsboro) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 721 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Kingsboro) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Kingsboro) Adjunct Senior College Lab Tech 568.26000 1.136520e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.136520e+03 1.136520e+03 0.00 NULL
2014 Community College (Kingsboro) Administrator 141937.50000 2.838750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.838750e+05 2.838750e+05 0.00 NULL
2014 Community College (Kingsboro) Administrator Supt Campus B/G 94613.50000 1.892270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.892270e+05 1.892270e+05 0.00 NULL
2014 Community College (Kingsboro) Assistant College Security Director 68483.00000 1.369660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.369660e+05 1.369660e+05 0.00 NULL
2014 Community College (Kingsboro) Assistant Principal Custodial Supervisor 39399.00000 3.939900e+04 3682.02 3.682020e+03 3682.020 112.50 1 3.682020e+03 3682.02 4.308102e+04 4.308102e+04 0.00 NULL
2014 Community College (Kingsboro) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 271 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Kingsboro) Assistant To Heo 47619.19231 2.476198e+06 27284.85 5.247087e+02 0.000 751.50 52 0.000000e+00 0.00 2.503483e+06 2.476198e+06 27284.85 NULL
2014 Community College (Kingsboro) Assistant Vice President 142829.00000 4.284870e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.284870e+05 4.284870e+05 0.00 NULL
2014 Community College (Kingsboro) Associate Administrator 134588.50000 2.691770e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.691770e+05 2.691770e+05 0.00 NULL
2014 Community College (Kingsboro) Associate Dean 119226.00000 3.576780e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.576780e+05 3.576780e+05 0.00 NULL
2014 Community College (Kingsboro) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 86 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Kingsboro) Auto Mechanic NA NA 3258.94 1.086313e+03 164.690 58.75 3 1.646900e+02 494.07 NA NA NA NULL
2014 Community College (Kingsboro) Campus Peace Officer 37711.95000 7.542390e+05 54196.80 2.709840e+03 2223.705 1969.75 20 2.223705e+03 44474.10 8.084358e+05 7.987131e+05 9722.70 NULL
2014 Community College (Kingsboro) Campus Public Safety Sergeant 50147.00000 4.513230e+05 102569.21 1.139658e+04 13218.210 2829.25 9 1.139658e+04 102569.21 5.538922e+05 5.538922e+05 0.00 NULL
2014 Community College (Kingsboro) Campus Security Assistant 26194.58333 6.286700e+05 41723.47 1.738478e+03 1180.515 2127.25 24 1.180515e+03 28332.36 6.703935e+05 6.570024e+05 13391.11 NULL
2014 Community College (Kingsboro) Carpenter NA NA 50354.68 2.517734e+04 25177.340 750.50 2 2.517734e+04 50354.68 NA NA NA NULL
2014 Community College (Kingsboro) Chief Administrative Supt Campus B/G 117450.00000 1.174500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.174500e+05 1.174500e+05 0.00 NULL
2014 Community College (Kingsboro) Chief College Lab Technician 69895.20000 3.494760e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.494760e+05 3.494760e+05 0.00 NULL
2014 Community College (Kingsboro) City Laborer NA NA 101396.15 7.242582e+03 7755.315 2341.50 14 7.242582e+03 101396.15 NA NA NA NULL
2014 Community College (Kingsboro) College Accountant 45870.60000 2.293530e+05 5916.21 1.183242e+03 1001.640 189.25 5 1.001640e+03 5008.20 2.352692e+05 2.343612e+05 908.01 NULL
2014 Community College (Kingsboro) College Accounting Assistant 38776.00000 2.326560e+05 23749.63 3.958272e+03 1876.480 927.00 6 1.876480e+03 11258.88 2.564056e+05 2.439149e+05 12490.75 NULL
2014 Community College (Kingsboro) College Assistant 6241.16707 3.975623e+06 233.37 3.663579e-01 0.000 10.50 637 0.000000e+00 0.00 3.975857e+06 3.975623e+06 233.37 NULL
2014 Community College (Kingsboro) College Lab Technician 43178.81545 9.499339e+05 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 9.499339e+05 9.499339e+05 0.00 NULL
2014 Community College (Kingsboro) College Print Shop Assistant 32770.00000 9.831000e+04 1154.04 3.846800e+02 553.280 56.00 3 3.846800e+02 1154.04 9.946404e+04 9.946404e+04 0.00 NULL
2014 Community College (Kingsboro) College Print Shop Associate 42950.66667 1.288520e+05 3262.86 1.087620e+03 1020.430 117.50 3 1.020430e+03 3061.29 1.321149e+05 1.319133e+05 201.57 NULL
2014 Community College (Kingsboro) College Print Shop Coordinator 68299.50000 1.365990e+05 554.20 2.771000e+02 277.100 17.50 2 2.771000e+02 554.20 1.371532e+05 1.371532e+05 0.00 NULL
2014 Community College (Kingsboro) College Security Specialist 62379.50000 1.247590e+05 27817.93 1.390897e+04 13908.965 607.00 2 1.390897e+04 27817.93 1.525769e+05 1.525769e+05 0.00 NULL
2014 Community College (Kingsboro) Computer Operator Manager 90715.33333 2.721460e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.721460e+05 2.721460e+05 0.00 NULL
2014 Community College (Kingsboro) Computer Systems Manager 84586.00000 1.691720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.691720e+05 1.691720e+05 0.00 NULL
2014 Community College (Kingsboro) Continuing Education Teacher NA NA 0.00 0.000000e+00 0.000 0.00 389 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Kingsboro) Cuny Administrator Assistant 46384.16000 1.159604e+06 18065.80 7.226320e+02 0.000 580.25 25 0.000000e+00 0.00 1.177670e+06 1.159604e+06 18065.80 NULL
2014 Community College (Kingsboro) Cuny Broadcast Associate 51742.00000 1.034840e+05 8496.90 4.248450e+03 4248.450 239.75 2 4.248450e+03 8496.90 1.119809e+05 1.119809e+05 0.00 NULL
2014 Community College (Kingsboro) Cuny Custodial Assistant 27412.66935 2.302664e+06 53268.57 6.341496e+02 110.615 2538.25 84 1.106150e+02 9291.66 2.355933e+06 2.311956e+06 43976.91 NULL
2014 Community College (Kingsboro) Cuny Office Assistant 32674.94595 2.417946e+06 24420.03 3.300004e+02 0.000 1080.25 74 0.000000e+00 0.00 2.442366e+06 2.417946e+06 24420.03 NULL
2014 Community College (Kingsboro) Custodial Supervisor 32525.00000 1.626250e+05 6808.29 1.361658e+03 969.690 317.75 5 9.696900e+02 4848.45 1.694333e+05 1.674735e+05 1959.84 NULL
2014 Community College (Kingsboro) Dean 145575.00000 4.367250e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.367250e+05 4.367250e+05 0.00 NULL
2014 Community College (Kingsboro) Disability Accommodations Specialist 18229.50250 3.645900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.645900e+04 3.645900e+04 0.00 NULL
2014 Community College (Kingsboro) Distinguished Lecturer 65545.00000 6.554500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.554500e+04 6.554500e+04 0.00 NULL
2014 Community College (Kingsboro) Electrician NA NA 33203.63 1.106788e+04 12660.380 469.75 3 1.106788e+04 33203.63 NA NA NA NULL
2014 Community College (Kingsboro) Electrician’s Helper NA NA 27518.60 6.879650e+03 7449.885 656.00 4 6.879650e+03 27518.60 NA NA NA NULL
2014 Community College (Kingsboro) Facilities Coordinator 59549.50000 1.190990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.190990e+05 1.190990e+05 0.00 NULL
2014 Community College (Kingsboro) High Pressure Plant Tender NA NA 82113.65 1.026421e+04 7531.840 1746.50 8 7.531840e+03 60254.72 NA NA NA NULL
2014 Community College (Kingsboro) Higher Education Assistant 59000.33846 3.835022e+06 8498.22 1.307418e+02 0.000 206.25 65 0.000000e+00 0.00 3.843520e+06 3.835022e+06 8498.22 NULL
2014 Community College (Kingsboro) Higher Education Associate 76389.91228 4.354225e+06 32179.22 5.645477e+02 0.000 509.25 57 0.000000e+00 0.00 4.386404e+06 4.354225e+06 32179.22 NULL
2014 Community College (Kingsboro) Higher Education Officer 100028.90476 4.201214e+06 0.00 0.000000e+00 0.000 0.00 42 0.000000e+00 0.00 4.201214e+06 4.201214e+06 0.00 NULL
2014 Community College (Kingsboro) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Kingsboro) It Assistant 50226.00000 5.524860e+05 4168.13 3.789209e+02 0.000 125.00 11 0.000000e+00 0.00 5.566541e+05 5.524860e+05 4168.13 NULL
2014 Community College (Kingsboro) It Associate 67457.60000 3.372880e+05 2684.83 5.369660e+02 0.000 71.00 5 0.000000e+00 0.00 3.399728e+05 3.372880e+05 2684.83 NULL
2014 Community College (Kingsboro) It Senior Associate 87500.50000 1.750010e+05 3536.16 1.768080e+03 1768.080 57.00 2 1.768080e+03 3536.16 1.785372e+05 1.785372e+05 0.00 NULL
2014 Community College (Kingsboro) It Support Assistant 34783.98000 2.782718e+05 1633.24 2.041550e+02 0.000 76.50 8 0.000000e+00 0.00 2.799051e+05 2.782718e+05 1633.24 NULL
2014 Community College (Kingsboro) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 193 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Kingsboro) Lecturer/Doctoral Schedule 75310.80000 3.765540e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.765540e+05 3.765540e+05 0.00 NULL
2014 Community College (Kingsboro) Locksmith NA NA 198.32 1.983200e+02 198.320 8.00 1 1.983200e+02 198.32 NA NA NA NULL
2014 Community College (Kingsboro) Mail/Message Services Worker 33745.83333 2.024750e+05 3385.50 5.642500e+02 299.635 141.50 6 2.996350e+02 1797.81 2.058605e+05 2.042728e+05 1587.69 NULL
2014 Community College (Kingsboro) Maintenance Worker NA NA 48855.20 5.428356e+03 4785.590 1460.00 9 4.785590e+03 43070.31 NA NA NA NULL
2014 Community College (Kingsboro) Media Services Technician 58392.00000 5.839200e+04 14810.38 1.481038e+04 14810.380 373.00 1 1.481038e+04 14810.38 7.320238e+04 7.320238e+04 0.00 NULL
2014 Community College (Kingsboro) Non-Teaching Adjunct I NA NA 0.00 0.000000e+00 0.000 0.00 517 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Kingsboro) Non-Teaching Adjunct Ii 774.78520 2.324356e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.324356e+03 2.324356e+03 0.00 NULL
2014 Community College (Kingsboro) Non-Teaching Adjunct Iii 2101.22900 1.744020e+05 0.00 0.000000e+00 0.000 0.00 83 0.000000e+00 0.00 1.744020e+05 1.744020e+05 0.00 NULL
2014 Community College (Kingsboro) Non-Teaching Adjunct Iv NA NA 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Kingsboro) Non-Teaching Adjunct V NA NA 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Kingsboro) Oiler NA NA 11548.44 5.774220e+03 5774.220 104.50 2 5.774220e+03 11548.44 NA NA NA NULL
2014 Community College (Kingsboro) Painter NA NA 51423.75 2.571188e+04 25711.875 1020.00 2 2.571188e+04 51423.75 NA NA NA NULL
2014 Community College (Kingsboro) Plumber NA NA 26202.70 1.310135e+04 13101.350 326.00 2 1.310135e+04 26202.70 NA NA NA NULL
2014 Community College (Kingsboro) President 214362.00000 4.287240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.287240e+05 4.287240e+05 0.00 NULL
2014 Community College (Kingsboro) Principal Custodial Supervisor 54885.00000 5.488500e+04 3114.86 3.114860e+03 3114.860 90.50 1 3.114860e+03 3114.86 5.799986e+04 5.799986e+04 0.00 NULL
2014 Community College (Kingsboro) Professor NA NA 0.00 0.000000e+00 0.000 0.00 114 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Kingsboro) Project Manager 75547.00000 7.554700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.554700e+04 7.554700e+04 0.00 NULL
2014 Community College (Kingsboro) Senior College Lab Tech 57185.00000 1.086515e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.086515e+06 1.086515e+06 0.00 NULL
2014 Community College (Kingsboro) Senior Custodial Supervisor 35101.00000 3.510100e+04 747.95 7.479500e+02 747.950 22.00 1 7.479500e+02 747.95 3.584895e+04 3.584895e+04 0.00 NULL
2014 Community College (Kingsboro) Senior Stationary Engineer NA NA 14005.27 4.668423e+03 4623.950 178.00 3 4.623950e+03 13871.85 NA NA NA NULL
2014 Community College (Kingsboro) Sign Language Interpreter 8799.56845 5.279741e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.279741e+04 5.279741e+04 0.00 NULL
2014 Community College (Kingsboro) Sr College Laboratory Tech 7072.10000 2.121630e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.121630e+04 2.121630e+04 0.00 NULL
2014 Community College (Kingsboro) Staff Nurse 16617.34000 2.326428e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.326428e+05 2.326428e+05 0.00 NULL
2014 Community College (Kingsboro) Stationary Engineer NA NA 58129.33 1.162587e+04 12400.920 809.00 5 1.162587e+04 58129.33 NA NA NA NULL
2014 Community College (Kingsboro) Stock Worker 30551.00000 6.110200e+04 2433.05 1.216525e+03 1216.525 12.00 2 1.216525e+03 2433.05 6.353505e+04 6.353505e+04 0.00 NULL
2014 Community College (Kingsboro) Student Aide 2099.75010 6.446233e+05 0.00 0.000000e+00 0.000 0.00 307 0.000000e+00 0.00 6.446233e+05 6.446233e+05 0.00 NULL
2014 Community College (Kingsboro) Supervisor Electrician NA NA 23579.38 2.357938e+04 23579.380 314.00 1 2.357938e+04 23579.38 NA NA NA NULL
2014 Community College (Kingsboro) Supervisor Of Stock Workers 42624.00000 4.262400e+04 1714.78 1.714780e+03 1714.780 12.00 1 1.714780e+03 1714.78 4.433878e+04 4.433878e+04 0.00 NULL
2014 Community College (Kingsboro) Thermostat Repairer NA NA 2852.62 2.852620e+03 2852.620 36.00 1 2.852620e+03 2852.62 NA NA NA NULL
2014 Community College (Kingsboro) University Architect 95893.00000 9.589300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.589300e+04 9.589300e+04 0.00 NULL
2014 Community College (Kingsboro) University Assistant Architect 55630.00000 5.563000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.563000e+04 5.563000e+04 0.00 NULL
2014 Community College (Kingsboro) Vice President 160353.66667 4.810610e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.810610e+05 4.810610e+05 0.00 NULL
2014 Community College (Laguardia) ?Purchasing Agent 50734.33333 1.522030e+05 2905.47 9.684900e+02 1250.550 118.25 3 9.684900e+02 2905.47 1.551085e+05 1.551085e+05 0.00 NULL
2014 Community College (Laguardia) Adjunct Assistant Professor 11785.75557 3.523941e+06 0.00 0.000000e+00 0.000 0.00 299 0.000000e+00 0.00 3.523941e+06 3.523941e+06 0.00 NULL
2014 Community College (Laguardia) Adjunct Associate Professor 9249.65978 4.162347e+05 0.00 0.000000e+00 0.000 0.00 45 0.000000e+00 0.00 4.162347e+05 4.162347e+05 0.00 NULL
2014 Community College (Laguardia) Adjunct College Lab Tech 7780.29691 6.613252e+05 0.00 0.000000e+00 0.000 0.00 85 0.000000e+00 0.00 6.613252e+05 6.613252e+05 0.00 NULL
2014 Community College (Laguardia) Adjunct Lecturer 13381.52260 1.114681e+07 0.00 0.000000e+00 0.000 0.00 833 0.000000e+00 0.00 1.114681e+07 1.114681e+07 0.00 NULL
2014 Community College (Laguardia) Adjunct Professor 18006.46750 2.520905e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.520905e+05 2.520905e+05 0.00 NULL
2014 Community College (Laguardia) Adjunct Senior College Lab Tech 12264.94500 2.452989e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.452989e+04 2.452989e+04 0.00 NULL
2014 Community College (Laguardia) Administrator 149677.50000 2.993550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.993550e+05 2.993550e+05 0.00 NULL
2014 Community College (Laguardia) Administrator Supt Campus B/G 85145.75000 3.405830e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.405830e+05 3.405830e+05 0.00 NULL
2014 Community College (Laguardia) Assistant College Security Director 73000.00000 7.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.300000e+04 7.300000e+04 0.00 NULL
2014 Community College (Laguardia) Assistant Dean 124625.00000 4.985000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.985000e+05 4.985000e+05 0.00 NULL
2014 Community College (Laguardia) Assistant Professor 53126.83545 9.084689e+06 0.00 0.000000e+00 0.000 0.00 171 0.000000e+00 0.00 9.084689e+06 9.084689e+06 0.00 NULL
2014 Community College (Laguardia) Assistant To Heo 51197.55844 3.942212e+06 10803.50 1.403052e+02 0.000 249.50 77 0.000000e+00 0.00 3.953016e+06 3.942212e+06 10803.50 NULL
2014 Community College (Laguardia) Associate Administrator 133427.00000 4.002810e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.002810e+05 4.002810e+05 0.00 NULL
2014 Community College (Laguardia) Associate Dean 137930.00000 6.896500e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.896500e+05 6.896500e+05 0.00 NULL
2014 Community College (Laguardia) Associate Professor 62480.69519 8.372413e+06 0.00 0.000000e+00 0.000 0.00 134 0.000000e+00 0.00 8.372413e+06 8.372413e+06 0.00 NULL
2014 Community College (Laguardia) Campus Peace Officer 37620.00000 9.781200e+05 95742.02 3.682385e+03 3675.200 3669.00 26 3.675200e+03 95555.20 1.073862e+06 1.073675e+06 186.82 NULL
2014 Community College (Laguardia) Campus Public Safety Sergeant 50334.50000 4.026760e+05 67001.62 8.375202e+03 3587.060 1864.25 8 3.587060e+03 28696.48 4.696776e+05 4.313725e+05 38305.14 NULL
2014 Community College (Laguardia) Campus Security Assistant 28597.02941 9.722990e+05 56690.01 1.667353e+03 1460.020 2999.75 34 1.460020e+03 49640.68 1.028989e+06 1.021940e+06 7049.33 NULL
2014 Community College (Laguardia) Chief College Lab Technician 66435.36800 6.643537e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 6.643537e+05 6.643537e+05 0.00 NULL
2014 Community College (Laguardia) College Accountant 48370.66667 1.451120e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.451120e+05 1.451120e+05 0.00 NULL
2014 Community College (Laguardia) College Accounting Assistant 41028.42857 2.871990e+05 1487.96 2.125657e+02 121.800 20.50 7 1.218000e+02 852.60 2.886870e+05 2.880516e+05 635.36 NULL
2014 Community College (Laguardia) College Assistant 5988.73979 4.928733e+06 5388.86 6.547825e+00 0.000 270.25 823 0.000000e+00 0.00 4.934122e+06 4.928733e+06 5388.86 NULL
2014 Community College (Laguardia) College Graph Designer 53952.00000 5.395200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.395200e+04 5.395200e+04 0.00 NULL
2014 Community College (Laguardia) College Lab Technician 49243.77778 8.863880e+05 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 8.863880e+05 8.863880e+05 0.00 NULL
2014 Community College (Laguardia) College Print Shop Assistant 32994.00000 3.299400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.299400e+04 3.299400e+04 0.00 NULL
2014 Community College (Laguardia) College Print Shop Associate 42884.00000 4.288400e+04 9532.50 9.532500e+03 9532.500 347.50 1 9.532500e+03 9532.50 5.241650e+04 5.241650e+04 0.00 NULL
2014 Community College (Laguardia) College Security Director 102000.00000 1.020000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020000e+05 1.020000e+05 0.00 NULL
2014 Community College (Laguardia) College Security Specialist 56365.66667 1.690970e+05 47241.12 1.574704e+04 14991.470 1045.75 3 1.499147e+04 44974.41 2.163381e+05 2.140714e+05 2266.71 NULL
2014 Community College (Laguardia) Computer Systems Manager 101095.20000 5.054760e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.054760e+05 5.054760e+05 0.00 NULL
2014 Community College (Laguardia) Continuing Education Teacher 13319.17522 2.437409e+06 0.00 0.000000e+00 0.000 0.00 183 0.000000e+00 0.00 2.437409e+06 2.437409e+06 0.00 NULL
2014 Community College (Laguardia) Cuny Administrator Assistant 47001.77778 1.269048e+06 7671.14 2.841163e+02 0.000 358.00 27 0.000000e+00 0.00 1.276719e+06 1.269048e+06 7671.14 NULL
2014 Community College (Laguardia) Cuny Broadcast Associate 41693.00000 1.667720e+05 27709.60 6.927400e+03 7519.305 1092.75 4 6.927400e+03 27709.60 1.944816e+05 1.944816e+05 0.00 NULL
2014 Community College (Laguardia) Cuny Custodial Assistant 21315.38967 1.470762e+06 181056.63 2.624009e+03 591.950 8326.25 69 5.919500e+02 40844.55 1.651819e+06 1.511606e+06 140212.08 NULL
2014 Community College (Laguardia) Cuny Office Assistant 33137.18421 2.518426e+06 15090.46 1.985587e+02 0.000 695.00 76 0.000000e+00 0.00 2.533516e+06 2.518426e+06 15090.46 NULL
2014 Community College (Laguardia) Custodial Supervisor 37427.50000 7.485500e+04 25958.02 1.297901e+04 12979.010 937.00 2 1.297901e+04 25958.02 1.008130e+05 1.008130e+05 0.00 NULL
2014 Community College (Laguardia) Dean 151000.00000 1.510000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.510000e+05 1.510000e+05 0.00 NULL
2014 Community College (Laguardia) Higher Education Assistant 63833.33333 4.596000e+06 17780.30 2.469486e+02 0.000 313.00 72 0.000000e+00 0.00 4.613780e+06 4.596000e+06 17780.30 NULL
2014 Community College (Laguardia) Higher Education Associate 82044.47692 5.332891e+06 0.00 0.000000e+00 0.000 0.00 65 0.000000e+00 0.00 5.332891e+06 5.332891e+06 0.00 NULL
2014 Community College (Laguardia) Higher Education Officer 106427.79592 5.214962e+06 0.00 0.000000e+00 0.000 0.00 49 0.000000e+00 0.00 5.214962e+06 5.214962e+06 0.00 NULL
2014 Community College (Laguardia) Instructor 59079.03438 4.726323e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.726323e+05 4.726323e+05 0.00 NULL
2014 Community College (Laguardia) It Assistant 48649.05226 1.021630e+06 37044.33 1.764016e+03 332.610 1227.75 21 3.326100e+02 6984.81 1.058674e+06 1.028615e+06 30059.52 NULL
2014 Community College (Laguardia) It Associate 66216.70588 1.125684e+06 18548.98 1.091116e+03 0.000 474.00 17 0.000000e+00 0.00 1.144233e+06 1.125684e+06 18548.98 NULL
2014 Community College (Laguardia) It Senior Associate 83089.09091 9.139800e+05 12629.37 1.148125e+03 0.000 199.00 11 0.000000e+00 0.00 9.266094e+05 9.139800e+05 12629.37 NULL
2014 Community College (Laguardia) It Support Assistant 35475.48520 8.868871e+05 10479.26 4.191704e+02 0.000 390.00 25 0.000000e+00 0.00 8.973664e+05 8.868871e+05 10479.26 NULL
2014 Community College (Laguardia) Lecturer 43467.40809 4.085936e+06 0.00 0.000000e+00 0.000 0.00 94 0.000000e+00 0.00 4.085936e+06 4.085936e+06 0.00 NULL
2014 Community College (Laguardia) Lecturer/Doctoral Schedule 74599.00000 1.491980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.491980e+05 1.491980e+05 0.00 NULL
2014 Community College (Laguardia) Mail/Message Services Worker 32540.00000 2.928600e+05 26346.73 2.927414e+03 317.050 1152.25 9 3.170500e+02 2853.45 3.192067e+05 2.957135e+05 23493.28 NULL
2014 Community College (Laguardia) Media Services Technician 53305.00000 5.330500e+04 16072.70 1.607270e+04 16072.700 475.00 1 1.607270e+04 16072.70 6.937770e+04 6.937770e+04 0.00 NULL
2014 Community College (Laguardia) Non-Teaching Adjunct I 6603.27733 9.904916e+04 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 9.904916e+04 9.904916e+04 0.00 NULL
2014 Community College (Laguardia) Non-Teaching Adjunct Ii 2244.76346 3.793650e+05 0.00 0.000000e+00 0.000 0.00 169 0.000000e+00 0.00 3.793650e+05 3.793650e+05 0.00 NULL
2014 Community College (Laguardia) Non-Teaching Adjunct Iii 4625.46490 2.358987e+05 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 2.358987e+05 2.358987e+05 0.00 NULL
2014 Community College (Laguardia) Non-Teaching Adjunct Iv 7263.29946 1.670559e+05 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 1.670559e+05 1.670559e+05 0.00 NULL
2014 Community College (Laguardia) Non-Teaching Adjunct V 5128.81364 5.641695e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.641695e+04 5.641695e+04 0.00 NULL
2014 Community College (Laguardia) President 219834.00000 2.198340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.198340e+05 2.198340e+05 0.00 NULL
2014 Community College (Laguardia) Professor 69688.48366 9.895765e+06 0.00 0.000000e+00 0.000 0.00 142 0.000000e+00 0.00 9.895765e+06 9.895765e+06 0.00 NULL
2014 Community College (Laguardia) Senior College Lab Tech 62576.40000 6.257640e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 6.257640e+05 6.257640e+05 0.00 NULL
2014 Community College (Laguardia) Senior Vice President 181000.00000 1.810000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.810000e+05 1.810000e+05 0.00 NULL
2014 Community College (Laguardia) Sign Language Interpreter 27248.23359 4.359717e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 4.359717e+05 4.359717e+05 0.00 NULL
2014 Community College (Laguardia) Sr College Laboratory Tech 5357.45000 1.071490e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.071490e+04 1.071490e+04 0.00 NULL
2014 Community College (Laguardia) Stock Worker 35019.00000 3.501900e+04 10608.71 1.060871e+04 10608.710 444.00 1 1.060871e+04 10608.71 4.562771e+04 4.562771e+04 0.00 NULL
2014 Community College (Laguardia) Supervisor Of Stock Workers 36323.00000 3.632300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.632300e+04 3.632300e+04 0.00 NULL
2014 Community College (Laguardia) University Assistant Architect 57908.00000 1.158160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.158160e+05 1.158160e+05 0.00 NULL
2014 Community College (Laguardia) University Assistant Engineer 55630.00000 1.112600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.112600e+05 1.112600e+05 0.00 NULL
2014 Community College (Laguardia) University Engineer Tech 41036.50000 8.207300e+04 5407.44 2.703720e+03 2703.720 196.25 2 2.703720e+03 5407.44 8.748044e+04 8.748044e+04 0.00 NULL
2014 Community College (Laguardia) Vice President 166346.80000 8.317340e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.317340e+05 8.317340e+05 0.00 NULL
2014 Community College (Manhattan) ?Assistant Purchasing Agent 37981.00000 1.519240e+05 1161.65 2.904125e+02 233.900 5.25 4 2.339000e+02 935.60 1.530856e+05 1.528596e+05 226.05 NULL
2014 Community College (Manhattan) ?Purchasing Agent 58213.00000 5.821300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.821300e+04 5.821300e+04 0.00 NULL
2014 Community College (Manhattan) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 251 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Manhattan) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Manhattan) Adjunct College Lab Tech 6015.92191 4.572101e+05 0.00 0.000000e+00 0.000 0.00 76 0.000000e+00 0.00 4.572101e+05 4.572101e+05 0.00 NULL
2014 Community College (Manhattan) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 1077 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Manhattan) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Manhattan) Adjunct Senior College Lab Tech 4503.85533 1.351157e+05 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 1.351157e+05 1.351157e+05 0.00 NULL
2014 Community College (Manhattan) Administrator 157500.00000 1.575000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.575000e+05 1.575000e+05 0.00 NULL
2014 Community College (Manhattan) Administrator Supt Campus B/G 86848.00000 2.605440e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.605440e+05 2.605440e+05 0.00 NULL
2014 Community College (Manhattan) Assistant College Security Director 63877.50000 2.555100e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.555100e+05 2.555100e+05 0.00 NULL
2014 Community College (Manhattan) Assistant Principal Custodial Supervisor 37132.00000 7.426400e+04 20850.74 1.042537e+04 10425.370 843.75 2 1.042537e+04 20850.74 9.511474e+04 9.511474e+04 0.00 NULL
2014 Community College (Manhattan) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 347 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Manhattan) Assistant To Heo 47962.93443 2.925739e+06 1331.70 2.183115e+01 0.000 23.50 61 0.000000e+00 0.00 2.927071e+06 2.925739e+06 1331.70 NULL
2014 Community College (Manhattan) Assistant Vice President 134140.00000 1.341400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.341400e+05 1.341400e+05 0.00 NULL
2014 Community College (Manhattan) Associate Administrator 122385.50000 2.447710e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.447710e+05 2.447710e+05 0.00 NULL
2014 Community College (Manhattan) Associate Dean 139781.00000 1.397810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.397810e+05 1.397810e+05 0.00 NULL
2014 Community College (Manhattan) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 153 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Manhattan) Campus Peace Officer 37584.59524 1.578553e+06 172171.95 4.099332e+03 3099.860 6478.75 42 3.099860e+03 130194.12 1.750725e+06 1.708747e+06 41977.83 NULL
2014 Community College (Manhattan) Campus Public Safety Sergeant 50147.00000 4.513230e+05 50420.40 5.602267e+03 4236.000 1401.25 9 4.236000e+03 38124.00 5.017434e+05 4.894470e+05 12296.40 NULL
2014 Community College (Manhattan) Campus Security Assistant 23878.00847 1.193900e+06 167369.76 3.347395e+03 2450.050 9435.50 50 2.450050e+03 122502.50 1.361270e+06 1.316403e+06 44867.26 NULL
2014 Community College (Manhattan) Carpenter NA NA 93655.01 1.560917e+04 20406.700 1547.00 6 1.560917e+04 93655.01 NA NA NA NULL
2014 Community College (Manhattan) Chief Administrator Supt Campus B/G 140902.00000 1.409020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.409020e+05 1.409020e+05 0.00 NULL
2014 Community College (Manhattan) City Laborer NA NA 136996.73 1.712459e+04 20442.075 2868.50 8 1.712459e+04 136996.73 NA NA NA NULL
2014 Community College (Manhattan) College Accountant 41051.00000 8.210200e+04 1106.62 5.533100e+02 553.310 74.00 2 5.533100e+02 1106.62 8.320862e+04 8.320862e+04 0.00 NULL
2014 Community College (Manhattan) College Accounting Assistant 38794.30769 5.043260e+05 6469.44 4.976492e+02 0.000 254.50 13 0.000000e+00 0.00 5.107954e+05 5.043260e+05 6469.44 NULL
2014 Community College (Manhattan) College Assistant 5635.25195 4.294062e+06 63694.81 8.358899e+01 0.000 5073.00 762 0.000000e+00 0.00 4.357757e+06 4.294062e+06 63694.81 NULL
2014 Community College (Manhattan) College Graph Designer 46914.00000 4.691400e+04 2545.93 2.545930e+03 2545.930 51.00 1 2.545930e+03 2545.93 4.945993e+04 4.945993e+04 0.00 NULL
2014 Community College (Manhattan) College Lab Technician 49694.51000 9.938902e+05 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 9.938902e+05 9.938902e+05 0.00 NULL
2014 Community College (Manhattan) College Print Shop Assistant 26070.62500 2.085650e+05 5392.78 6.740975e+02 468.810 356.50 8 4.688100e+02 3750.48 2.139578e+05 2.123155e+05 1642.30 NULL
2014 Community College (Manhattan) College Print Shop Coordinator 57598.00000 5.759800e+04 1629.44 1.629440e+03 1629.440 53.00 1 1.629440e+03 1629.44 5.922744e+04 5.922744e+04 0.00 NULL
2014 Community College (Manhattan) College Security Director 103351.00000 1.033510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.033510e+05 1.033510e+05 0.00 NULL
2014 Community College (Manhattan) College Security Specialist 60648.00000 6.064800e+04 7504.63 7.504630e+03 7504.630 174.25 1 7.504630e+03 7504.63 6.815263e+04 6.815263e+04 0.00 NULL
2014 Community College (Manhattan) Computer Systems Manager 111000.00000 1.110000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.110000e+05 1.110000e+05 0.00 NULL
2014 Community College (Manhattan) Continuing Education Teacher 12631.52462 2.109465e+06 0.00 0.000000e+00 0.000 0.00 167 0.000000e+00 0.00 2.109465e+06 2.109465e+06 0.00 NULL
2014 Community College (Manhattan) Cuny Administrator Assistant 47433.90909 5.217730e+05 1864.78 1.695255e+02 0.000 68.50 11 0.000000e+00 0.00 5.236378e+05 5.217730e+05 1864.78 NULL
2014 Community College (Manhattan) Cuny Custodial Assistant 25683.72134 2.799526e+06 183592.55 1.684335e+03 699.530 9839.34 109 6.995300e+02 76248.77 2.983118e+06 2.875774e+06 107343.78 NULL
2014 Community College (Manhattan) Cuny Office Assistant 31910.47059 2.712390e+06 34900.92 4.105991e+02 0.000 1731.50 85 0.000000e+00 0.00 2.747291e+06 2.712390e+06 34900.92 NULL
2014 Community College (Manhattan) Cuny Secretarial Assistant 39815.00000 3.981500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.981500e+04 3.981500e+04 0.00 NULL
2014 Community College (Manhattan) Custodial Supervisor 30449.11111 2.740420e+05 36813.51 4.090390e+03 4367.940 1824.75 9 4.090390e+03 36813.51 3.108555e+05 3.108555e+05 0.00 NULL
2014 Community College (Manhattan) Dean 148307.16667 8.898430e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.898430e+05 8.898430e+05 0.00 NULL
2014 Community College (Manhattan) Disability Accommodations Specialist 36830.00000 3.683000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.683000e+04 3.683000e+04 0.00 NULL
2014 Community College (Manhattan) Electrician NA NA 107383.62 2.147672e+04 23152.540 1616.00 5 2.147672e+04 107383.62 NA NA NA NULL
2014 Community College (Manhattan) Electrician’s Helper NA NA 70791.56 1.769789e+04 17820.350 1712.75 4 1.769789e+04 70791.56 NA NA NA NULL
2014 Community College (Manhattan) Eoc Accountant 38515.66667 1.155470e+05 224.19 7.473000e+01 0.000 13.25 3 0.000000e+00 0.00 1.157712e+05 1.155470e+05 224.19 NULL
2014 Community College (Manhattan) Eoc Adjunct College Lab Tech 9935.10000 9.935100e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.935100e+03 9.935100e+03 0.00 NULL
2014 Community College (Manhattan) Eoc Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 57 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Manhattan) Eoc Administrative Assistant 45507.00000 4.550700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.550700e+04 4.550700e+04 0.00 NULL
2014 Community College (Manhattan) Eoc Assistant 1146.12500 1.146125e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.146125e+03 1.146125e+03 0.00 NULL
2014 Community College (Manhattan) Eoc Assistant To Heo 58213.28571 4.074930e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.074930e+05 4.074930e+05 0.00 NULL
2014 Community College (Manhattan) Eoc College Lab Technician 47128.00000 9.425600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.425600e+04 9.425600e+04 0.00 NULL
2014 Community College (Manhattan) Eoc Higher Education Assistant 76637.00000 2.299110e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.299110e+05 2.299110e+05 0.00 NULL
2014 Community College (Manhattan) Eoc Higher Education Associate 82281.00000 4.114050e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.114050e+05 4.114050e+05 0.00 NULL
2014 Community College (Manhattan) Eoc Higher Education Officer 93804.50000 1.876090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.876090e+05 1.876090e+05 0.00 NULL
2014 Community College (Manhattan) Eoc Lecturer 72253.27273 7.947860e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.947860e+05 7.947860e+05 0.00 NULL
2014 Community College (Manhattan) Eoc Lecturer/ Doctral Schedule 73657.50000 1.473150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.473150e+05 1.473150e+05 0.00 NULL
2014 Community College (Manhattan) Eoc Mail/Message Services Worker 31173.33333 1.870400e+05 332.64 5.544000e+01 0.000 20.25 6 0.000000e+00 0.00 1.873726e+05 1.870400e+05 332.64 NULL
2014 Community College (Manhattan) Eoc Office Assistant 33471.00000 4.685940e+05 630.68 4.504857e+01 0.000 41.75 14 0.000000e+00 0.00 4.692247e+05 4.685940e+05 630.68 NULL
2014 Community College (Manhattan) Facilities Coordinator 53938.00000 5.393800e+04 2192.17 2.192170e+03 2192.170 61.75 1 2.192170e+03 2192.17 5.613017e+04 5.613017e+04 0.00 NULL
2014 Community College (Manhattan) Grad Assistant “C” 13814.00000 1.381400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.381400e+04 1.381400e+04 0.00 NULL
2014 Community College (Manhattan) Higher Education Assistant 63920.80220 5.816793e+06 3988.50 4.382967e+01 0.000 30.00 91 0.000000e+00 0.00 5.820782e+06 5.816793e+06 3988.50 NULL
2014 Community College (Manhattan) Higher Education Associate 81820.65116 3.518288e+06 0.00 0.000000e+00 0.000 0.00 43 0.000000e+00 0.00 3.518288e+06 3.518288e+06 0.00 NULL
2014 Community College (Manhattan) Higher Education Officer 109156.00000 3.602148e+06 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 3.602148e+06 3.602148e+06 0.00 NULL
2014 Community College (Manhattan) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 88 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Manhattan) It Assistant 48901.20327 1.271431e+06 3697.39 1.422073e+02 0.000 136.25 26 0.000000e+00 0.00 1.275129e+06 1.271431e+06 3697.39 NULL
2014 Community College (Manhattan) It Associate 61205.20000 3.060260e+05 2981.79 5.963580e+02 365.320 83.25 5 3.653200e+02 1826.60 3.090078e+05 3.078526e+05 1155.19 NULL
2014 Community College (Manhattan) It Senior Associate 85509.50000 5.130570e+05 30201.31 5.033552e+03 0.000 557.00 6 0.000000e+00 0.00 5.432583e+05 5.130570e+05 30201.31 NULL
2014 Community College (Manhattan) It Support Assistant 31425.43975 7.856360e+05 12805.74 5.122296e+02 36.810 621.75 25 3.681000e+01 920.25 7.984417e+05 7.865562e+05 11885.49 NULL
2014 Community College (Manhattan) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 102 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Manhattan) Lecturer/Doctoral Schedule 66067.00000 6.606700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.606700e+04 6.606700e+04 0.00 NULL
2014 Community College (Manhattan) Locksmith NA NA 3582.17 1.791085e+03 1791.085 141.25 2 1.791085e+03 3582.17 NA NA NA NULL
2014 Community College (Manhattan) Mail/Message Services Worker 31957.40000 1.597870e+05 5423.90 1.084780e+03 0.000 201.75 5 0.000000e+00 0.00 1.652109e+05 1.597870e+05 5423.90 NULL
2014 Community College (Manhattan) Maintenance Worker NA NA 10251.32 2.050264e+03 2398.360 288.50 5 2.050264e+03 10251.32 NA NA NA NULL
2014 Community College (Manhattan) Media Services Technician 40083.00000 4.008300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.008300e+04 4.008300e+04 0.00 NULL
2014 Community College (Manhattan) Non-Teaching Adjunct I NA NA 0.00 0.000000e+00 0.000 0.00 91 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Manhattan) Non-Teaching Adjunct Ii NA NA 0.00 0.000000e+00 0.000 0.00 147 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Manhattan) Non-Teaching Adjunct Iii 684.96283 8.973013e+04 0.00 0.000000e+00 0.000 0.00 131 0.000000e+00 0.00 8.973013e+04 8.973013e+04 0.00 NULL
2014 Community College (Manhattan) Non-Teaching Adjunct Iv 1426.68114 3.709371e+04 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 3.709371e+04 3.709371e+04 0.00 NULL
2014 Community College (Manhattan) Non-Teaching Adjunct V 5933.13815 1.601947e+05 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 1.601947e+05 1.601947e+05 0.00 NULL
2014 Community College (Manhattan) Oiler NA NA 159811.22 1.229317e+04 5756.880 2525.00 13 5.756880e+03 74839.44 NA NA NA NULL
2014 Community College (Manhattan) Painter NA NA 42832.66 5.354083e+03 6607.140 889.00 8 5.354083e+03 42832.66 NA NA NA NULL
2014 Community College (Manhattan) Plumber NA NA 49092.67 1.636422e+04 17897.890 544.25 3 1.636422e+04 49092.67 NA NA NA NULL
2014 Community College (Manhattan) Plumber’s Helper NA NA 21621.60 1.081080e+04 10810.800 305.50 2 1.081080e+04 21621.60 NA NA NA NULL
2014 Community College (Manhattan) President 222251.00000 2.222510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.222510e+05 2.222510e+05 0.00 NULL
2014 Community College (Manhattan) Principal Custodial Supervisor 50675.00000 1.520250e+05 14093.10 4.697700e+03 78.510 361.50 3 7.851000e+01 235.53 1.661181e+05 1.522605e+05 13857.57 NULL
2014 Community College (Manhattan) Professor NA NA 0.00 0.000000e+00 0.000 0.00 170 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Manhattan) Senior College Lab Tech 63074.06250 1.009185e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.009185e+06 1.009185e+06 0.00 NULL
2014 Community College (Manhattan) Senior Custodial Supervisor 31035.00000 3.103500e+04 919.68 9.196800e+02 919.680 57.75 1 9.196800e+02 919.68 3.195468e+04 3.195468e+04 0.00 NULL
2014 Community College (Manhattan) Senior Stationary Engineer NA NA 11081.07 1.108107e+04 11081.070 137.25 1 1.108107e+04 11081.07 NA NA NA NULL
2014 Community College (Manhattan) Senior Vice President 205391.50000 4.107830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.107830e+05 4.107830e+05 0.00 NULL
2014 Community College (Manhattan) Sign Language Interpreter 16943.18500 5.082956e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.082956e+04 5.082956e+04 0.00 NULL
2014 Community College (Manhattan) Staff Nurse 83074.00000 8.307400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.307400e+04 8.307400e+04 0.00 NULL
2014 Community College (Manhattan) Stationary Engineer NA NA 127934.03 1.163037e+04 5634.550 1823.75 11 5.634550e+03 61980.05 NA NA NA NULL
2014 Community College (Manhattan) Stock Worker 30551.00000 9.165300e+04 185.62 6.187333e+01 76.930 15.00 3 6.187333e+01 185.62 9.183862e+04 9.183862e+04 0.00 NULL
2014 Community College (Manhattan) Supervisor Of Stock Workers 42624.00000 4.262400e+04 501.60 5.016000e+02 501.600 16.00 1 5.016000e+02 501.60 4.312560e+04 4.312560e+04 0.00 NULL
2014 Community College (Manhattan) Supervisor Painter NA NA 495.00 4.950000e+02 495.000 8.25 1 4.950000e+02 495.00 NA NA NA NULL
2014 Community College (Manhattan) Thermostat Repairer NA NA 1288.28 1.288280e+03 1288.280 20.00 1 1.288280e+03 1288.28 NA NA NA NULL
2014 Community College (Manhattan) Vice President 177682.50000 7.107300e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.107300e+05 7.107300e+05 0.00 NULL
2014 Community College (Queensboro) ?Assistant Purchasing Agent 37981.00000 3.798100e+04 166.31 1.663100e+02 166.310 8.00 1 1.663100e+02 166.31 3.814731e+04 3.814731e+04 0.00 NULL
2014 Community College (Queensboro) ?Purchasing Agent 51919.00000 1.038380e+05 19274.43 9.637215e+03 9637.215 390.25 2 9.637215e+03 19274.43 1.231124e+05 1.231124e+05 0.00 NULL
2014 Community College (Queensboro) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 112 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Queensboro) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Queensboro) Adjunct College Lab Tech 7098.37669 7.027393e+05 0.00 0.000000e+00 0.000 0.00 99 0.000000e+00 0.00 7.027393e+05 7.027393e+05 0.00 NULL
2014 Community College (Queensboro) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 520 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Queensboro) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Queensboro) Adjunct Senior College Lab Tech 10867.39286 7.607175e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.607175e+04 7.607175e+04 0.00 NULL
2014 Community College (Queensboro) Administrator 134236.00000 1.342360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.342360e+05 1.342360e+05 0.00 NULL
2014 Community College (Queensboro) Administrator Supt Campus B/G 98500.00000 1.970000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.970000e+05 1.970000e+05 0.00 NULL
2014 Community College (Queensboro) Assistant Administrator 119397.50000 4.775900e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.775900e+05 4.775900e+05 0.00 NULL
2014 Community College (Queensboro) Assistant College Security Director 68855.00000 1.377100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.377100e+05 1.377100e+05 0.00 NULL
2014 Community College (Queensboro) Assistant Dean 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2014 Community College (Queensboro) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 265 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Queensboro) Assistant To Heo 43716.38710 1.355208e+06 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 1.355208e+06 1.355208e+06 0.00 NULL
2014 Community College (Queensboro) Associate Administrator 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2014 Community College (Queensboro) Associate Dean 114740.50000 2.294810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.294810e+05 2.294810e+05 0.00 NULL
2014 Community College (Queensboro) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 172 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Queensboro) Auto Mechanic NA NA 2505.50 2.505500e+03 2505.500 45.75 1 2.505500e+03 2505.50 NA NA NA NULL
2014 Community College (Queensboro) Campus Peace Officer 40099.50000 9.623880e+05 145761.99 6.073416e+03 4301.680 4991.25 24 4.301680e+03 103240.32 1.108150e+06 1.065628e+06 42521.67 NULL
2014 Community College (Queensboro) Campus Public Safety Sergeant 50147.00000 2.507350e+05 24103.90 4.820780e+03 5181.640 678.75 5 4.820780e+03 24103.90 2.748389e+05 2.748389e+05 0.00 NULL
2014 Community College (Queensboro) Campus Security Assistant 24970.84615 3.246210e+05 29842.49 2.295576e+03 1867.310 1683.75 13 1.867310e+03 24275.03 3.544635e+05 3.488960e+05 5567.46 NULL
2014 Community College (Queensboro) Carpenter NA NA 57570.42 2.878521e+04 28785.210 914.50 2 2.878521e+04 57570.42 NA NA NA NULL
2014 Community College (Queensboro) Chief Administrative Supt Campus B/G 130388.00000 1.303880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.303880e+05 1.303880e+05 0.00 NULL
2014 Community College (Queensboro) Chief College Lab Technician 35276.87227 3.880456e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 3.880456e+05 3.880456e+05 0.00 NULL
2014 Community College (Queensboro) City Laborer NA NA 124303.26 1.553791e+04 18291.470 2734.67 8 1.553791e+04 124303.26 NA NA NA NULL
2014 Community College (Queensboro) College Accountant 49079.62500 3.926370e+05 3198.95 3.998687e+02 0.000 75.00 8 0.000000e+00 0.00 3.958360e+05 3.926370e+05 3198.95 NULL
2014 Community College (Queensboro) College Accounting Assistant 40059.50000 1.602380e+05 11712.40 2.928100e+03 0.000 362.00 4 0.000000e+00 0.00 1.719504e+05 1.602380e+05 11712.40 NULL
2014 Community College (Queensboro) College Assistant 5274.53650 3.839863e+06 0.00 0.000000e+00 0.000 0.00 728 0.000000e+00 0.00 3.839863e+06 3.839863e+06 0.00 NULL
2014 Community College (Queensboro) College Graph Designer 53952.00000 5.395200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.395200e+04 5.395200e+04 0.00 NULL
2014 Community College (Queensboro) College Lab Technician 44759.66241 1.298030e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 1.298030e+06 1.298030e+06 0.00 NULL
2014 Community College (Queensboro) College Print Shop Assistant 28865.50000 5.773100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.773100e+04 5.773100e+04 0.00 NULL
2014 Community College (Queensboro) College Print Shop Associate 34223.00000 3.422300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.422300e+04 3.422300e+04 0.00 NULL
2014 Community College (Queensboro) College Print Shop Coordinator 47648.00000 4.764800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.764800e+04 4.764800e+04 0.00 NULL
2014 Community College (Queensboro) College Security Director 103000.00000 1.030000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030000e+05 1.030000e+05 0.00 NULL
2014 Community College (Queensboro) Continuing Education Teacher NA NA 0.00 0.000000e+00 0.000 0.00 211 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Queensboro) Cuny Administrator Assistant 46037.14706 1.565263e+06 15679.30 4.611559e+02 0.000 555.50 34 0.000000e+00 0.00 1.580942e+06 1.565263e+06 15679.30 NULL
2014 Community College (Queensboro) Cuny Custodial Assistant 26586.45798 1.621774e+06 142121.28 2.329857e+03 43.050 8332.50 61 4.305000e+01 2626.05 1.763895e+06 1.624400e+06 139495.23 NULL
2014 Community College (Queensboro) Cuny Office Assistant 32831.80952 2.757872e+06 3296.48 3.924381e+01 0.000 168.00 84 0.000000e+00 0.00 2.761168e+06 2.757872e+06 3296.48 NULL
2014 Community College (Queensboro) Custodial Supervisor 32525.00000 1.301000e+05 27304.90 6.826225e+03 6752.760 1259.50 4 6.752760e+03 27011.04 1.574049e+05 1.571110e+05 293.86 NULL
2014 Community College (Queensboro) Dean 126000.00000 3.780000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.780000e+05 3.780000e+05 0.00 NULL
2014 Community College (Queensboro) Disability Accommodations Specialist 24142.93900 1.207147e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.207147e+05 1.207147e+05 0.00 NULL
2014 Community College (Queensboro) Electrician NA NA 53765.25 1.344131e+04 10381.875 718.50 4 1.038188e+04 41527.50 NA NA NA NULL
2014 Community College (Queensboro) High Pressure Plant Tender NA NA 48599.38 6.942769e+03 3487.690 1054.00 7 3.487690e+03 24413.83 NA NA NA NULL
2014 Community College (Queensboro) Higher Education Assistant 63200.01667 3.792001e+06 0.00 0.000000e+00 0.000 0.00 60 0.000000e+00 0.00 3.792001e+06 3.792001e+06 0.00 NULL
2014 Community College (Queensboro) Higher Education Associate 82684.53333 3.720804e+06 0.00 0.000000e+00 0.000 0.00 45 0.000000e+00 0.00 3.720804e+06 3.720804e+06 0.00 NULL
2014 Community College (Queensboro) Higher Education Officer 103512.21429 4.347513e+06 0.00 0.000000e+00 0.000 0.00 42 0.000000e+00 0.00 4.347513e+06 4.347513e+06 0.00 NULL
2014 Community College (Queensboro) Higher Education Officer/Asst Administrator 124034.00000 1.240340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.240340e+05 1.240340e+05 0.00 NULL
2014 Community College (Queensboro) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Queensboro) It Assistant 4891.18000 4.891180e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.891180e+03 4.891180e+03 0.00 NULL
2014 Community College (Queensboro) It Associate 62424.57143 4.369720e+05 342.04 4.886286e+01 0.000 10.00 7 0.000000e+00 0.00 4.373140e+05 4.369720e+05 342.04 NULL
2014 Community College (Queensboro) It Senior Associate 88315.07692 1.148096e+06 82280.97 6.329305e+03 4503.350 1322.75 13 4.503350e+03 58543.55 1.230377e+06 1.206640e+06 23737.42 NULL
2014 Community College (Queensboro) It Support Assistant 21773.79682 2.395118e+05 862.72 7.842909e+01 0.000 44.00 11 0.000000e+00 0.00 2.403745e+05 2.395118e+05 862.72 NULL
2014 Community College (Queensboro) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 154 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Queensboro) Lecturer/Doctoral Schedule 67955.00000 6.795500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.795500e+04 6.795500e+04 0.00 NULL
2014 Community College (Queensboro) Locksmith NA NA 2240.40 2.240400e+03 2240.400 63.00 1 2.240400e+03 2240.40 NA NA NA NULL
2014 Community College (Queensboro) Mail/Message Services Worker 36288.50000 7.257700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.257700e+04 7.257700e+04 0.00 NULL
2014 Community College (Queensboro) Maintenance Worker NA NA 13092.99 3.273247e+03 3422.720 379.25 4 3.273247e+03 13092.99 NA NA NA NULL
2014 Community College (Queensboro) Motor Vehicle Operator 37444.50000 7.488900e+04 4601.17 2.300585e+03 2300.585 180.50 2 2.300585e+03 4601.17 7.949017e+04 7.949017e+04 0.00 NULL
2014 Community College (Queensboro) Non-Teaching Adjunct I 6000.64932 1.116121e+06 0.00 0.000000e+00 0.000 0.00 186 0.000000e+00 0.00 1.116121e+06 1.116121e+06 0.00 NULL
2014 Community College (Queensboro) Non-Teaching Adjunct Iii 3408.49929 2.385949e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.385949e+04 2.385949e+04 0.00 NULL
2014 Community College (Queensboro) Non-Teaching Adjunct Iv 2343.58400 1.171792e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.171792e+04 1.171792e+04 0.00 NULL
2014 Community College (Queensboro) Non-Teaching Adjunct V 2526.04000 7.578120e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.578120e+03 7.578120e+03 0.00 NULL
2014 Community College (Queensboro) Oiler NA NA 7514.58 7.514580e+03 7514.580 132.00 1 7.514580e+03 7514.58 NA NA NA NULL
2014 Community College (Queensboro) Painter NA NA 41658.76 2.082938e+04 20829.380 793.50 2 2.082938e+04 41658.76 NA NA NA NULL
2014 Community College (Queensboro) Plasterer NA NA 25531.16 2.553116e+04 25531.160 397.00 1 2.553116e+04 25531.16 NA NA NA NULL
2014 Community College (Queensboro) Plumber NA NA 17644.84 1.764484e+04 17644.840 210.75 1 1.764484e+04 17644.84 NA NA NA NULL
2014 Community College (Queensboro) President 219635.50000 4.392710e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.392710e+05 4.392710e+05 0.00 NULL
2014 Community College (Queensboro) Professor NA NA 0.00 0.000000e+00 0.000 0.00 113 0.000000e+00 0.00 NA NA NA NULL
2014 Community College (Queensboro) Senior College Lab Tech 60872.35000 1.217447e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.217447e+06 1.217447e+06 0.00 NULL
2014 Community College (Queensboro) Senior Custodial Supervisor 35119.50000 7.023900e+04 38694.70 1.934735e+04 19347.350 1644.25 2 1.934735e+04 38694.70 1.089337e+05 1.089337e+05 0.00 NULL
2014 Community College (Queensboro) Senior Registrar 116364.00000 1.163640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.163640e+05 1.163640e+05 0.00 NULL
2014 Community College (Queensboro) Senior Stationary Engineer NA NA 31947.94 3.194794e+04 31947.940 373.25 1 3.194794e+04 31947.94 NA NA NA NULL
2014 Community College (Queensboro) Senior Vice President 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2014 Community College (Queensboro) Sr College Laboratory Tech 5076.16500 4.568549e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.568549e+04 4.568549e+04 0.00 NULL
2014 Community College (Queensboro) Staff Nurse 39560.76583 1.186823e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.186823e+05 1.186823e+05 0.00 NULL
2014 Community College (Queensboro) Stationary Engineer NA NA 127424.56 2.123743e+04 24143.670 1752.00 6 2.123743e+04 127424.56 NA NA NA NULL
2014 Community College (Queensboro) Steam Fitter NA NA 3687.42 3.687420e+03 3687.420 37.75 1 3.687420e+03 3687.42 NA NA NA NULL
2014 Community College (Queensboro) Supervisor Of Stock Workers 36430.00000 3.643000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.643000e+04 3.643000e+04 0.00 NULL
2014 Community College (Queensboro) Thermostat Repairer NA NA 12836.79 1.283679e+04 12836.790 166.50 1 1.283679e+04 12836.79 NA NA NA NULL
2014 Community College (Queensboro) University Engineer 87784.00000 8.778400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.778400e+04 8.778400e+04 0.00 NULL
2014 Community College (Queensboro) Vice President 159643.66667 9.578620e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.578620e+05 9.578620e+05 0.00 NULL
2014 Community College (Queensboro) NA 51083.50000 1.021670e+05 21789.32 1.089466e+04 10894.660 638.25 2 1.089466e+04 21789.32 1.239563e+05 1.239563e+05 0.00 NULL
2014 Conflicts Of Interest Board Administrative Staff Analyst 94527.00000 2.835810e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.835810e+05 2.835810e+05 0.00 NULL
2014 Conflicts Of Interest Board Agency Attorney 68500.00000 3.425000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.425000e+05 3.425000e+05 0.00 NULL
2014 Conflicts Of Interest Board Community Assistant 31534.00000 3.153400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.153400e+04 3.153400e+04 0.00 NULL
2014 Conflicts Of Interest Board Community Associate 39000.00000 7.800000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.800000e+04 7.800000e+04 0.00 NULL
2014 Conflicts Of Interest Board Community Coordinator 52457.00000 5.245700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.245700e+04 5.245700e+04 0.00 NULL
2014 Conflicts Of Interest Board Computer Operations Manager 96083.00000 9.608300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.608300e+04 9.608300e+04 0.00 NULL
2014 Conflicts Of Interest Board Confidential Investigator 82087.00000 8.208700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.208700e+04 8.208700e+04 0.00 NULL
2014 Conflicts Of Interest Board Counsel 188644.00000 1.886440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.886440e+05 1.886440e+05 0.00 NULL
2014 Conflicts Of Interest Board Executive Agency Counsel 127106.60000 6.355330e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.355330e+05 6.355330e+05 0.00 NULL
2014 Conflicts Of Interest Board Principal Administrative Associate - Lev 1 & 2 Non Supvr 53013.50000 1.060270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.060270e+05 1.060270e+05 0.00 NULL
2014 Conflicts Of Interest Board Secretary To Conflicts Of Interest Board 48182.00000 4.818200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.818200e+04 4.818200e+04 0.00 NULL
2014 Consumer Affairs *Attorney At Law 88215.00000 1.764300e+05 15059.39 7.529695e+03 7529.695 235.50 2 7.529695e+03 15059.39 1.914894e+05 1.914894e+05 0.00 NULL
2014 Consumer Affairs Accountant 56776.00000 5.677600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.677600e+04 5.677600e+04 0.00 NULL
2014 Consumer Affairs Adm Manager-Non-Mgrl From M1/M2 80566.66667 2.417000e+05 16468.68 5.489560e+03 4123.570 368.25 3 4.123570e+03 12370.71 2.581687e+05 2.540707e+05 4097.97 NULL
2014 Consumer Affairs Admin Contract Specialist 62640.00000 6.264000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.264000e+04 6.264000e+04 0.00 NULL
2014 Consumer Affairs Administrative Staff Analyst 94048.41000 2.821452e+06 67144.92 2.238164e+03 0.000 1472.00 30 0.000000e+00 0.00 2.888597e+06 2.821452e+06 67144.92 NULL
2014 Consumer Affairs Agency Attorney 70309.53333 2.109286e+06 72323.18 2.410773e+03 692.295 1553.25 30 6.922950e+02 20768.85 2.181609e+06 2.130055e+06 51554.33 NULL
2014 Consumer Affairs Agency Attorney Interne 58000.00000 5.800000e+04 599.23 5.992300e+02 599.230 26.75 1 5.992300e+02 599.23 5.859923e+04 5.859923e+04 0.00 NULL
2014 Consumer Affairs Assistant To The Commissioner 127200.00000 1.272000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.272000e+05 1.272000e+05 0.00 NULL
2014 Consumer Affairs Associate Inspector 63889.40000 9.583410e+05 20109.16 1.340611e+03 795.860 503.75 15 7.958600e+02 11937.90 9.784502e+05 9.702789e+05 8171.26 NULL
2014 Consumer Affairs Cashier 37169.00000 3.716900e+04 35.60 3.560000e+01 35.600 0.00 1 3.560000e+01 35.60 3.720460e+04 3.720460e+04 0.00 NULL
2014 Consumer Affairs Clerical Associate Most Mayoral Ag 37802.90409 9.828755e+05 46183.43 1.776286e+03 841.920 1659.25 26 8.419200e+02 21889.92 1.029059e+06 1.004765e+06 24293.51 NULL
2014 Consumer Affairs Commissioner 192198.00000 3.843960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.843960e+05 3.843960e+05 0.00 NULL
2014 Consumer Affairs Community Assistant 35167.41000 3.516741e+05 16131.18 1.613118e+03 222.735 695.25 10 2.227350e+02 2227.35 3.678053e+05 3.539015e+05 13903.83 NULL
2014 Consumer Affairs Community Associate 38997.10954 5.693578e+06 274648.67 1.881155e+03 660.910 10640.00 146 6.609100e+02 96492.86 5.968227e+06 5.790071e+06 178155.81 NULL
2014 Consumer Affairs Community Coordinator 55468.78573 3.272658e+06 159930.10 2.710680e+03 1091.680 4761.75 59 1.091680e+03 64409.12 3.432588e+06 3.337067e+06 95520.98 NULL
2014 Consumer Affairs Computer Associate 61785.56778 5.560701e+05 24908.17 2.767574e+03 1443.680 631.50 9 1.443680e+03 12993.12 5.809783e+05 5.690632e+05 11915.05 NULL
2014 Consumer Affairs Computer Specialist 93038.93333 1.395584e+06 32659.03 2.177269e+03 793.700 544.00 15 7.937000e+02 11905.50 1.428243e+06 1.407490e+06 20753.53 NULL
2014 Consumer Affairs Computer Systems Manager 122151.33333 3.664540e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.664540e+05 3.664540e+05 0.00 NULL
2014 Consumer Affairs Counsel 172800.00000 1.728000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.728000e+05 1.728000e+05 0.00 NULL
2014 Consumer Affairs Deputy Commissioner 162000.00000 3.240000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.240000e+05 3.240000e+05 0.00 NULL
2014 Consumer Affairs Deputy Counsel 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2014 Consumer Affairs Director Of Consumer Information 151200.00000 1.512000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.512000e+05 1.512000e+05 0.00 NULL
2014 Consumer Affairs Executive Agency Counsel 106640.00000 1.066400e+06 26416.00 2.641600e+03 0.000 448.25 10 0.000000e+00 0.00 1.092816e+06 1.066400e+06 26416.00 NULL
2014 Consumer Affairs General Inspector 48398.00000 4.839800e+04 2841.10 2.841100e+03 2841.100 66.50 1 2.841100e+03 2841.10 5.123910e+04 5.123910e+04 0.00 NULL
2014 Consumer Affairs Inspector 41867.65217 2.888868e+06 44577.68 6.460533e+02 29.430 1395.25 69 2.943000e+01 2030.67 2.933446e+06 2.890899e+06 42547.01 NULL
2014 Consumer Affairs Interpreter 39266.00000 7.853200e+04 397.61 1.988050e+02 198.805 22.50 2 1.988050e+02 397.61 7.892961e+04 7.892961e+04 0.00 NULL
2014 Consumer Affairs Paralegal Aide 41918.00000 4.191800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.191800e+04 4.191800e+04 0.00 NULL
2014 Consumer Affairs Principal Administrative Associate - Lev 1 & 2 Non Supvr 52598.66667 4.733880e+05 35739.49 3.971054e+03 473.780 1045.50 9 4.737800e+02 4264.02 5.091275e+05 4.776520e+05 31475.47 NULL
2014 Consumer Affairs Secretary 36931.00000 7.386200e+04 6295.26 3.147630e+03 3147.630 210.50 2 3.147630e+03 6295.26 8.015726e+04 8.015726e+04 0.00 NULL
2014 Cultural Affairs Adm Manager-Non-Mgrl From M1/M2 77990.33333 2.339710e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.339710e+05 2.339710e+05 0.00 NULL
2014 Cultural Affairs Administrative Staff Analyst 103822.66667 6.229360e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.229360e+05 6.229360e+05 0.00 NULL
2014 Cultural Affairs Agency Attorney 61158.00000 6.115800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.115800e+04 6.115800e+04 0.00 NULL
2014 Cultural Affairs Agency Chief Contracting Officer 110997.00000 1.109970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.109970e+05 1.109970e+05 0.00 NULL
2014 Cultural Affairs Arts Program Specialist 42190.10818 2.531406e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.531406e+05 2.531406e+05 0.00 NULL
2014 Cultural Affairs Assistant Commissioner 112997.00000 1.129970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.129970e+05 1.129970e+05 0.00 NULL
2014 Cultural Affairs Associate Arts Programs Specialist 56338.57143 7.887400e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 7.887400e+05 7.887400e+05 0.00 NULL
2014 Cultural Affairs Associate Staff Analyst 65978.00000 6.597800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.597800e+04 6.597800e+04 0.00 NULL
2014 Cultural Affairs City Laborer 52216.20750 1.044324e+05 319.22 1.596100e+02 159.610 0.00 2 1.596100e+02 319.22 1.047516e+05 1.047516e+05 0.00 NULL
2014 Cultural Affairs Commissioner Of Cultural Affairs 192198.00000 3.843960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.843960e+05 3.843960e+05 0.00 NULL
2014 Cultural Affairs Community Assistant 33891.97490 3.389197e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.389197e+04 3.389197e+04 0.00 NULL
2014 Cultural Affairs Community Associate 38495.79592 5.004453e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 5.004453e+05 5.004453e+05 0.00 NULL
2014 Cultural Affairs Community Coordinator 60458.79312 4.836703e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.836703e+05 4.836703e+05 0.00 NULL
2014 Cultural Affairs Computer Associate 80712.00000 8.071200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.071200e+04 8.071200e+04 0.00 NULL
2014 Cultural Affairs Computer Systems Manager 105587.00000 1.055870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.055870e+05 1.055870e+05 0.00 NULL
2014 Cultural Affairs Deputy Commissioner 143961.00000 1.439610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.439610e+05 1.439610e+05 0.00 NULL
2014 Cultural Affairs Executive Agency Counsel 120956.00000 2.419120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.419120e+05 2.419120e+05 0.00 NULL
2014 Cultural Affairs Executive Director Of Materials For The Arts 91496.00000 9.149600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.149600e+04 9.149600e+04 0.00 NULL
2014 Cultural Affairs Principal Administrative Associate - Lev 1 & 2 Non Supvr 45000.00000 4.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.500000e+04 4.500000e+04 0.00 NULL
2014 Cultural Affairs Secretary 48533.62900 4.853363e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.853363e+04 4.853363e+04 0.00 NULL
2014 Cultural Affairs Secretary To The Commissioner 51000.00000 5.100000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.100000e+04 5.100000e+04 0.00 NULL
2014 Cultural Affairs Staff Analyst 64653.00000 1.293060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.293060e+05 1.293060e+05 0.00 NULL
2014 Department For The Aging *Attorney At Law 79966.00000 7.996600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.996600e+04 7.996600e+04 0.00 NULL
2014 Department For The Aging Accountant 51067.00000 1.021340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.021340e+05 1.021340e+05 0.00 NULL
2014 Department For The Aging Administrative Program Officer 103697.33333 2.177644e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 2.177644e+06 2.177644e+06 0.00 NULL
2014 Department For The Aging Administrative Accountant 85205.00000 8.520500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.520500e+04 8.520500e+04 0.00 NULL
2014 Department For The Aging Administrative Director Of Social Services 121921.00000 2.438420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.438420e+05 2.438420e+05 0.00 NULL
2014 Department For The Aging Administrative Project Manager 98072.00000 9.807200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.807200e+04 9.807200e+04 0.00 NULL
2014 Department For The Aging Administrative Public Information Specialist 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2014 Department For The Aging Administrative Staff Analyst 95426.19405 3.530769e+06 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 3.530769e+06 3.530769e+06 0.00 NULL
2014 Department For The Aging Agency Chief Contracting Officer 124540.00000 1.245400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.245400e+05 1.245400e+05 0.00 NULL
2014 Department For The Aging Architect 62925.66667 1.887770e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.887770e+05 1.887770e+05 0.00 NULL
2014 Department For The Aging Associate Public Information Specialist 66848.00000 6.684800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.684800e+04 6.684800e+04 0.00 NULL
2014 Department For The Aging Associate Staff Analyst 71903.70877 6.471334e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 6.471334e+05 6.471334e+05 0.00 NULL
2014 Department For The Aging Bookkeeper 49998.33333 1.499950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.499950e+05 1.499950e+05 0.00 NULL
2014 Department For The Aging City Custodial Assistant 33474.00000 3.347400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.347400e+04 3.347400e+04 0.00 NULL
2014 Department For The Aging Clerical Associate Most Mayoral Ag 33921.14479 2.035269e+05 410.83 6.847167e+01 0.000 30.75 6 0.000000e+00 0.00 2.039377e+05 2.035269e+05 410.83 NULL
2014 Department For The Aging College Aide 5462.64250 1.638793e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.638793e+04 1.638793e+04 0.00 NULL
2014 Department For The Aging Commissioner 192198.00000 3.843960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.843960e+05 3.843960e+05 0.00 NULL
2014 Department For The Aging Community Assistant 25156.06339 3.521849e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 3.521849e+05 3.521849e+05 0.00 NULL
2014 Department For The Aging Community Associate 42375.96356 1.991670e+06 25305.52 5.384153e+02 0.000 893.50 47 0.000000e+00 0.00 2.016976e+06 1.991670e+06 25305.52 NULL
2014 Department For The Aging Community Coordinator 55440.23344 2.383930e+06 0.00 0.000000e+00 0.000 0.00 43 0.000000e+00 0.00 2.383930e+06 2.383930e+06 0.00 NULL
2014 Department For The Aging Community Service Aide 5126.22353 2.178645e+06 0.00 0.000000e+00 0.000 0.00 425 0.000000e+00 0.00 2.178645e+06 2.178645e+06 0.00 NULL
2014 Department For The Aging Construction Project Manager 65987.00000 6.598700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.598700e+04 6.598700e+04 0.00 NULL
2014 Department For The Aging Counsel 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2014 Department For The Aging Director Of Administration 89232.00000 8.923200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.923200e+04 8.923200e+04 0.00 NULL
2014 Department For The Aging Director Of Community Programs 123781.00000 1.237810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.237810e+05 1.237810e+05 0.00 NULL
2014 Department For The Aging Director Of Research Planning And Policy Analysis 111217.00000 1.112170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.112170e+05 1.112170e+05 0.00 NULL
2014 Department For The Aging Executive Agency Counsel 97742.88000 2.932286e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.932286e+05 2.932286e+05 0.00 NULL
2014 Department For The Aging Foster Grandparent 2416.96636 1.017543e+06 0.00 0.000000e+00 0.000 0.00 421 0.000000e+00 0.00 1.017543e+06 1.017543e+06 0.00 NULL
2014 Department For The Aging Housing Development Specialist 55345.00000 5.534500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.534500e+04 5.534500e+04 0.00 NULL
2014 Department For The Aging Management Auditor 60554.91667 7.266590e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.266590e+05 7.266590e+05 0.00 NULL
2014 Department For The Aging Nutrition Consultant 59293.83333 7.115260e+05 13.49 1.124167e+00 0.000 0.00 12 0.000000e+00 0.00 7.115395e+05 7.115260e+05 13.49 NULL
2014 Department For The Aging Principal Administrative Associate - Lev 1 & 2 Non Supvr 52956.18519 1.429817e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 1.429817e+06 1.429817e+06 0.00 NULL
2014 Department For The Aging Principal Nutrition Consultant 71015.00000 1.420300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.420300e+05 1.420300e+05 0.00 NULL
2014 Department For The Aging Procurement Analyst 65194.33333 1.955830e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.955830e+05 1.955830e+05 0.00 NULL
2014 Department For The Aging Program Officer 59581.02273 2.621565e+06 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 2.621565e+06 2.621565e+06 0.00 NULL
2014 Department For The Aging Secretary 38664.79541 4.253127e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 4.253127e+05 4.253127e+05 0.00 NULL
2014 Department For The Aging Space Analyst 65931.00000 6.593100e+04 93.37 9.337000e+01 93.370 2.50 1 9.337000e+01 93.37 6.602437e+04 6.602437e+04 0.00 NULL
2014 Department For The Aging Summer College Intern 3221.72000 9.665160e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.665160e+03 9.665160e+03 0.00 NULL
2014 Department For The Aging Summer Graduate Intern 3567.20000 1.783600e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.783600e+04 1.783600e+04 0.00 NULL
2014 Department For The Aging Supervisor Ii 68805.00000 1.376100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.376100e+05 1.376100e+05 0.00 NULL
2014 Department For The Aging Supervisor Iii 63232.17650 3.793931e+05 8.27 1.378333e+00 0.000 0.00 6 0.000000e+00 0.00 3.794013e+05 3.793931e+05 8.27 NULL
2014 Department Of Buildings Adm Manager-Non-Mgrl From M1/M2 65483.00800 6.220886e+06 499582.84 5.258767e+03 1453.400 11884.50 95 1.453400e+03 138073.00 6.720469e+06 6.358959e+06 361509.84 NULL
2014 Department Of Buildings Administration Public Record Officer 90897.00000 9.089700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.089700e+04 9.089700e+04 0.00 NULL
2014 Department Of Buildings Administrative Architect 108426.48889 1.951677e+06 18369.37 1.020521e+03 0.000 288.00 18 0.000000e+00 0.00 1.970046e+06 1.951677e+06 18369.37 NULL
2014 Department Of Buildings Administrative Borough Superintendent 105413.80000 5.270690e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.270690e+05 5.270690e+05 0.00 NULL
2014 Department Of Buildings Administrative Engineer 112250.88889 4.041032e+06 554.11 1.539194e+01 0.000 13.75 36 0.000000e+00 0.00 4.041586e+06 4.041032e+06 554.11 NULL
2014 Department Of Buildings Administrative Inspector 98648.57143 4.833780e+06 51573.45 1.052519e+03 0.000 976.25 49 0.000000e+00 0.00 4.885353e+06 4.833780e+06 51573.45 NULL
2014 Department Of Buildings Administrative Investigator 98768.00000 2.963040e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.963040e+05 2.963040e+05 0.00 NULL
2014 Department Of Buildings Administrative Manager 103334.87467 1.550023e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.550023e+06 1.550023e+06 0.00 NULL
2014 Department Of Buildings Administrative Project Manager 94313.00000 1.886260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.886260e+05 1.886260e+05 0.00 NULL
2014 Department Of Buildings Administrative Staff Analyst 104193.34000 5.209667e+06 119541.57 2.390831e+03 0.000 2153.00 50 0.000000e+00 0.00 5.329209e+06 5.209667e+06 119541.57 NULL
2014 Department Of Buildings Agency Attorney 79843.34667 2.155770e+06 22039.59 8.162811e+02 0.000 395.50 27 0.000000e+00 0.00 2.177810e+06 2.155770e+06 22039.59 NULL
2014 Department Of Buildings Agency Attorney Interne 58098.33333 1.742950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.742950e+05 1.742950e+05 0.00 NULL
2014 Department Of Buildings Agency Chief Contracting Officer 89137.00000 8.913700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.913700e+04 8.913700e+04 0.00 NULL
2014 Department Of Buildings Architect 80408.09524 1.688570e+06 109358.93 5.207568e+03 446.220 1972.25 21 4.462200e+02 9370.62 1.797929e+06 1.697941e+06 99988.31 NULL
2014 Department Of Buildings Assistant Architect 69869.45455 7.685640e+05 48352.46 4.395678e+03 1081.130 1075.25 11 1.081130e+03 11892.43 8.169165e+05 7.804564e+05 36460.03 NULL
2014 Department Of Buildings Assistant Civil Engineer 66765.80000 3.338290e+05 25420.46 5.084092e+03 89.270 475.50 5 8.927000e+01 446.35 3.592495e+05 3.342753e+05 24974.11 NULL
2014 Department Of Buildings Assistant Commissioner For Labor Relations & Admin 156281.00000 1.562810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.562810e+05 1.562810e+05 0.00 NULL
2014 Department Of Buildings Assistant Mechanical Engineer 72832.00000 1.456640e+05 41940.66 2.097033e+04 20970.330 751.00 2 2.097033e+04 41940.66 1.876047e+05 1.876047e+05 0.00 NULL
2014 Department Of Buildings Assistant Plan Examiner 69075.75000 1.105212e+06 103608.15 6.475509e+03 2287.970 2169.00 16 2.287970e+03 36607.52 1.208820e+06 1.141820e+06 67000.63 NULL
2014 Department Of Buildings Associate Inspector 69075.98355 1.167384e+07 2745488.04 1.624549e+04 5111.030 52560.75 169 5.111030e+03 863764.07 1.441933e+07 1.253761e+07 1881723.97 NULL
2014 Department Of Buildings Associate Project Manager 82813.16667 4.968790e+05 1795.54 2.992567e+02 77.460 8.50 6 7.746000e+01 464.76 4.986745e+05 4.973438e+05 1330.78 NULL
2014 Department Of Buildings Associate Staff Analyst 74556.11111 6.710050e+05 17135.21 1.903912e+03 0.000 282.50 9 0.000000e+00 0.00 6.881402e+05 6.710050e+05 17135.21 NULL
2014 Department Of Buildings City Service Aide 5768.84827 1.269147e+05 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 1.269147e+05 1.269147e+05 0.00 NULL
2014 Department Of Buildings Civil Engineer 84624.06250 1.353985e+06 115624.65 7.226541e+03 52.425 1927.75 16 5.242500e+01 838.80 1.469610e+06 1.354824e+06 114785.85 NULL
2014 Department Of Buildings Clerical Associate Most Mayoral Ag 40073.70902 4.087518e+06 406437.63 3.984683e+03 1207.730 12795.25 102 1.207730e+03 123188.46 4.493956e+06 4.210707e+06 283249.17 NULL
2014 Department Of Buildings College Aide 2990.03495 1.495017e+05 0.00 0.000000e+00 0.000 0.00 50 0.000000e+00 0.00 1.495017e+05 1.495017e+05 0.00 NULL
2014 Department Of Buildings Commissioner Of Buildings 205174.00000 2.051740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.051740e+05 2.051740e+05 0.00 NULL
2014 Department Of Buildings Community Assistant 32146.91667 3.857630e+05 24892.59 2.074383e+03 1086.205 1180.25 12 1.086205e+03 13034.46 4.106556e+05 3.987975e+05 11858.13 NULL
2014 Department Of Buildings Community Associate 39329.21940 1.651827e+06 212323.45 5.055320e+03 273.745 7832.75 42 2.737450e+02 11497.29 1.864151e+06 1.663325e+06 200826.16 NULL
2014 Department Of Buildings Community Coordinator 62138.30000 6.213830e+05 23256.09 2.325609e+03 81.335 524.00 10 8.133500e+01 813.35 6.446391e+05 6.221963e+05 22442.74 NULL
2014 Department Of Buildings Computer Aide-Non-Spvr 47744.25000 1.909770e+05 5385.00 1.346250e+03 690.605 173.00 4 6.906050e+02 2762.42 1.963620e+05 1.937394e+05 2622.58 NULL
2014 Department Of Buildings Computer Associate 62334.10000 6.233410e+05 83691.45 8.369145e+03 4540.840 1869.25 10 4.540840e+03 45408.40 7.070324e+05 6.687494e+05 38283.05 NULL
2014 Department Of Buildings Computer Specialist 95195.11111 8.567560e+05 260.54 2.894889e+01 0.000 4.50 9 0.000000e+00 0.00 8.570165e+05 8.567560e+05 260.54 NULL
2014 Department Of Buildings Computer Systems Manager 95248.18182 1.047730e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.047730e+06 1.047730e+06 0.00 NULL
2014 Department Of Buildings Director Nyc Loft Board 113568.00000 1.135680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.135680e+05 1.135680e+05 0.00 NULL
2014 Department Of Buildings Electrical Engineer 90647.00000 1.812940e+05 385.73 1.928650e+02 192.865 5.50 2 1.928650e+02 385.73 1.816797e+05 1.816797e+05 0.00 NULL
2014 Department Of Buildings Engineering Technician 58204.00000 5.820400e+04 436.94 4.369400e+02 436.940 8.50 1 4.369400e+02 436.94 5.864094e+04 5.864094e+04 0.00 NULL
2014 Department Of Buildings Estimator 58473.50000 2.338940e+05 3825.91 9.564775e+02 771.770 94.25 4 7.717700e+02 3087.08 2.377199e+05 2.369811e+05 738.83 NULL
2014 Department Of Buildings Executive Agency Counsel 115083.78462 1.496089e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.496089e+06 1.496089e+06 0.00 NULL
2014 Department Of Buildings Inspector 56361.89059 1.042695e+07 1004982.77 5.432339e+03 1156.690 24096.50 185 1.156690e+03 213987.65 1.143193e+07 1.064094e+07 790995.12 NULL
2014 Department Of Buildings Investigator Empl Disc 49964.44000 9.493244e+05 125804.45 6.621287e+03 1683.450 4017.25 19 1.683450e+03 31985.55 1.075129e+06 9.813099e+05 93818.90 NULL
2014 Department Of Buildings Mechanical Engineer 81240.56111 7.311651e+05 143487.15 1.594302e+04 1435.730 2454.75 9 1.435730e+03 12921.57 8.746522e+05 7.440866e+05 130565.58 NULL
2014 Department Of Buildings Plan Examiner 77493.48842 1.472376e+06 89451.48 4.707973e+03 790.270 1829.00 19 7.902700e+02 15015.13 1.561828e+06 1.487391e+06 74436.35 NULL
2014 Department Of Buildings Principal Administrative Associate - Lev 1 & 2 Non Supvr 53387.90987 4.164257e+06 268895.07 3.447373e+03 36.625 6768.50 78 3.662500e+01 2856.75 4.433152e+06 4.167114e+06 266038.32 NULL
2014 Department Of Buildings Principal Multiple Dwelling Specialist 87517.45000 1.750349e+05 28725.78 1.436289e+04 14362.890 438.50 2 1.436289e+04 28725.78 2.037607e+05 2.037607e+05 0.00 NULL
2014 Department Of Buildings Procurement Analyst 74897.89000 1.497958e+05 847.53 4.237650e+02 423.765 14.00 2 4.237650e+02 847.53 1.506433e+05 1.506433e+05 0.00 NULL
2014 Department Of Buildings Public Records Aide 35307.60000 1.765380e+05 18329.11 3.665822e+03 888.320 560.25 5 8.883200e+02 4441.60 1.948671e+05 1.809796e+05 13887.51 NULL
2014 Department Of Buildings Research Assistant 49060.50000 9.812100e+04 7898.36 3.949180e+03 3949.180 315.50 2 3.949180e+03 7898.36 1.060194e+05 1.060194e+05 0.00 NULL
2014 Department Of Buildings Secretary 44319.42588 7.534302e+05 96509.06 5.677004e+03 1820.970 2716.25 17 1.820970e+03 30956.49 8.499393e+05 7.843867e+05 65552.57 NULL
2014 Department Of Buildings Secretary To Commissioner Of Bldgs 87244.00000 8.724400e+04 549.21 5.492100e+02 549.210 11.50 1 5.492100e+02 549.21 8.779321e+04 8.779321e+04 0.00 NULL
2014 Department Of Buildings Senior Estimator 74641.00000 7.464100e+04 224.81 2.248100e+02 224.810 5.00 1 2.248100e+02 224.81 7.486581e+04 7.486581e+04 0.00 NULL
2014 Department Of Buildings Space Analyst 65811.00000 6.581100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.581100e+04 6.581100e+04 0.00 NULL
2014 Department Of Buildings Staff Analyst 57511.33333 1.725340e+05 45388.55 1.512952e+04 21615.580 877.00 3 1.512952e+04 45388.55 2.179225e+05 2.179225e+05 0.00 NULL
2014 Department Of Business Serv. *Administrative Attorney 90980.00000 9.098000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.098000e+04 9.098000e+04 0.00 NULL
2014 Department Of Business Serv. Adm Manager-Non-Mgrl From M1/M2 59365.06719 3.502539e+06 5135.91 8.704932e+01 0.000 134.75 59 0.000000e+00 0.00 3.507675e+06 3.502539e+06 5135.91 NULL
2014 Department Of Business Serv. Admin Contract Specialist 90893.75000 3.635750e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.635750e+05 3.635750e+05 0.00 NULL
2014 Department Of Business Serv. Administrative Architect 106204.00000 2.124080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.124080e+05 2.124080e+05 0.00 NULL
2014 Department Of Business Serv. Administrative Business Promotion Coordinator 86725.54286 3.035394e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 3.035394e+06 3.035394e+06 0.00 NULL
2014 Department Of Business Serv. Administrative Manager 93333.33333 2.800000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.800000e+05 2.800000e+05 0.00 NULL
2014 Department Of Business Serv. Administrative Procurement Analyst 96000.00000 9.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.600000e+04 9.600000e+04 0.00 NULL
2014 Department Of Business Serv. Administrative Public Information Specialist 109500.00000 2.190000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.190000e+05 2.190000e+05 0.00 NULL
2014 Department Of Business Serv. Administrative Staff Analyst 96445.27056 1.736015e+06 18691.05 1.038392e+03 0.000 229.75 18 0.000000e+00 0.00 1.754706e+06 1.736015e+06 18691.05 NULL
2014 Department Of Business Serv. Agency Attorney 64661.50000 1.293230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.293230e+05 1.293230e+05 0.00 NULL
2014 Department Of Business Serv. Agency Chief Contracting Officer 116000.00000 1.160000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.160000e+05 1.160000e+05 0.00 NULL
2014 Department Of Business Serv. Assistant Commissioner 111900.20000 1.119002e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.119002e+06 1.119002e+06 0.00 NULL
2014 Department Of Business Serv. Associate Contract Specialist 56139.92828 5.052594e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.052594e+05 5.052594e+05 0.00 NULL
2014 Department Of Business Serv. Associate Staff Analyst 75599.40000 3.779970e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.779970e+05 3.779970e+05 0.00 NULL
2014 Department Of Business Serv. Business Promotion Coordinator 61989.61412 1.053823e+06 13910.80 8.182824e+02 0.000 287.25 17 0.000000e+00 0.00 1.067734e+06 1.053823e+06 13910.80 NULL
2014 Department Of Business Serv. Certified It Developer 100344.00000 1.003440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.003440e+05 1.003440e+05 0.00 NULL
2014 Department Of Business Serv. Chief Dockmaster 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2014 Department Of Business Serv. Clerical Associate Most Mayoral Ag 42185.22000 3.374818e+05 1010.34 1.262925e+02 0.000 32.00 8 0.000000e+00 0.00 3.384921e+05 3.374818e+05 1010.34 NULL
2014 Department Of Business Serv. College Aide 1376.70000 1.376700e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.376700e+03 1.376700e+03 0.00 NULL
2014 Department Of Business Serv. Commissioner Of Business Services 192202.00000 3.844040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.844040e+05 3.844040e+05 0.00 NULL
2014 Department Of Business Serv. Community Assistant 6040.43220 9.060648e+04 495.40 3.302667e+01 0.000 32.00 15 0.000000e+00 0.00 9.110188e+04 9.060648e+04 495.40 NULL
2014 Department Of Business Serv. Community Associate 41635.42412 1.082521e+06 21843.37 8.401296e+02 0.000 617.50 26 0.000000e+00 0.00 1.104364e+06 1.082521e+06 21843.37 NULL
2014 Department Of Business Serv. Community Coordinator 54655.76090 1.366394e+06 4856.48 1.942592e+02 0.000 109.25 25 0.000000e+00 0.00 1.371251e+06 1.366394e+06 4856.48 NULL
2014 Department Of Business Serv. Computer Operations Manager 88691.00000 1.773820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.773820e+05 1.773820e+05 0.00 NULL
2014 Department Of Business Serv. Computer Service Technician 43070.72000 4.307072e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.307072e+04 4.307072e+04 0.00 NULL
2014 Department Of Business Serv. Computer Specialist 75041.33333 2.251240e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.251240e+05 2.251240e+05 0.00 NULL
2014 Department Of Business Serv. Computer Systems Manager 89000.00000 8.900000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.900000e+04 8.900000e+04 0.00 NULL
2014 Department Of Business Serv. Contract Reviewer 52487.36208 1.312184e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.312184e+06 1.312184e+06 0.00 NULL
2014 Department Of Business Serv. Contract Specialist 55156.50000 1.103130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.103130e+05 1.103130e+05 0.00 NULL
2014 Department Of Business Serv. Deputy Commissioner 157273.66667 1.415463e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.415463e+06 1.415463e+06 0.00 NULL
2014 Department Of Business Serv. Executive Agency Counsel 85000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2014 Department Of Business Serv. General Counsel 150800.00000 1.508000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.508000e+05 1.508000e+05 0.00 NULL
2014 Department Of Business Serv. Graphic Artist 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2014 Department Of Business Serv. Principal Administrative Associate - Lev 1 & 2 Non Supvr 59315.17200 8.897276e+05 136.17 9.078000e+00 0.000 3.25 15 0.000000e+00 0.00 8.898638e+05 8.897276e+05 136.17 NULL
2014 Department Of Business Serv. Secretary 50752.00000 5.075200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.075200e+04 5.075200e+04 0.00 NULL
2014 Department Of Business Serv. Staff Analyst 57933.00000 2.896650e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.896650e+05 2.896650e+05 0.00 NULL
2014 Department Of Business Serv. Summer College Intern 2265.40833 2.038867e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 2.038867e+04 2.038867e+04 0.00 NULL
2014 Department Of Business Serv. Summer Graduate Intern 2808.28909 3.089118e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 3.089118e+04 3.089118e+04 0.00 NULL
2014 Department Of City Planning *Certified Local Area Network Administrator 89265.00000 8.926500e+04 2316.19 2.316190e+03 2316.190 26.00 1 2.316190e+03 2316.19 9.158119e+04 9.158119e+04 0.00 NULL
2014 Department Of City Planning Adm Manager-Non-Mgrl From M1/M2 60347.25000 2.413890e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.413890e+05 2.413890e+05 0.00 NULL
2014 Department Of City Planning Administrative City Planner 100749.86111 3.626995e+06 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 3.626995e+06 3.626995e+06 0.00 NULL
2014 Department Of City Planning Administrative Staff Analyst 90101.66667 5.406100e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.406100e+05 5.406100e+05 0.00 NULL
2014 Department Of City Planning Agency Attorney 76391.66667 2.291750e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.291750e+05 2.291750e+05 0.00 NULL
2014 Department Of City Planning Agency Attorney Interne 58177.00000 1.163540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.163540e+05 1.163540e+05 0.00 NULL
2014 Department Of City Planning Assistant Architect 59018.00000 5.901800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.901800e+04 5.901800e+04 0.00 NULL
2014 Department Of City Planning Assistant Highway Transportation Specialist 51000.00000 2.040000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.040000e+05 2.040000e+05 0.00 NULL
2014 Department Of City Planning Assistant Urban Designer 57336.25000 2.293450e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.293450e+05 2.293450e+05 0.00 NULL
2014 Department Of City Planning Associate Public Information Specialist 25776.00000 5.155200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.155200e+04 5.155200e+04 0.00 NULL
2014 Department Of City Planning Associate Staff Analyst 75232.60000 3.761630e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.761630e+05 3.761630e+05 0.00 NULL
2014 Department Of City Planning Associate Urban Designer 73284.25000 5.862740e+05 19925.78 2.490722e+03 0.000 398.75 8 0.000000e+00 0.00 6.061998e+05 5.862740e+05 19925.78 NULL
2014 Department Of City Planning Chairman 205180.00000 4.103600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.103600e+05 4.103600e+05 0.00 NULL
2014 Department Of City Planning City Planner 63111.16407 6.752895e+06 8.11 7.579440e-02 0.000 0.00 107 0.000000e+00 0.00 6.752903e+06 6.752895e+06 8.11 NULL
2014 Department Of City Planning City Planning Technician 30426.76900 4.564015e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 4.564015e+05 4.564015e+05 0.00 NULL
2014 Department Of City Planning Clerical Associate Most Mayoral Ag 39142.23834 3.131379e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 3.131379e+05 3.131379e+05 0.00 NULL
2014 Department Of City Planning Commissioner 54150.00000 5.956500e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.956500e+05 5.956500e+05 0.00 NULL
2014 Department Of City Planning Commissioner Designated As Vice Chairman 62271.00000 6.227100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.227100e+04 6.227100e+04 0.00 NULL
2014 Department Of City Planning Community Coordinator 51000.00000 5.100000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.100000e+04 5.100000e+04 0.00 NULL
2014 Department Of City Planning Computer Aide-Non-Spvr 52692.00000 5.269200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.269200e+04 5.269200e+04 0.00 NULL
2014 Department Of City Planning Computer Associate 61450.56071 4.301539e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.301539e+05 4.301539e+05 0.00 NULL
2014 Department Of City Planning Computer Operations Manager 79842.33333 2.395270e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.395270e+05 2.395270e+05 0.00 NULL
2014 Department Of City Planning Computer Programmer Analyst 60153.58040 1.203072e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.203072e+05 1.203072e+05 0.00 NULL
2014 Department Of City Planning Computer Service Technician 54080.00000 5.408000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.408000e+04 5.408000e+04 0.00 NULL
2014 Department Of City Planning Computer Specialist 78776.71383 1.102874e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.102874e+06 1.102874e+06 0.00 NULL
2014 Department Of City Planning Computer Systems Manager 107235.66667 3.217070e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.217070e+05 3.217070e+05 0.00 NULL
2014 Department Of City Planning Counsel 173433.50000 3.468670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.468670e+05 3.468670e+05 0.00 NULL
2014 Department Of City Planning Director Of Public Information 114685.00000 1.146850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.146850e+05 1.146850e+05 0.00 NULL
2014 Department Of City Planning Executive Agency Counsel 119985.00000 1.199850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.199850e+05 1.199850e+05 0.00 NULL
2014 Department Of City Planning Executive Assistant For Planning 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2014 Department Of City Planning Executive Assistant To The Chairman 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2014 Department Of City Planning Executive Director 168592.00000 1.685920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.685920e+05 1.685920e+05 0.00 NULL
2014 Department Of City Planning Graphic Artist 67321.00000 6.732100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.732100e+04 6.732100e+04 0.00 NULL
2014 Department Of City Planning Highway Transportation Specialist 70134.66667 2.104040e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.104040e+05 2.104040e+05 0.00 NULL
2014 Department Of City Planning Motor Vehicle Supervisor 48882.00000 4.888200e+04 33729.93 3.372993e+04 33729.930 943.50 1 3.372993e+04 33729.93 8.261193e+04 8.261193e+04 0.00 NULL
2014 Department Of City Planning Principal Administrative Associate - Lev 1 & 2 Non Supvr 55928.99718 9.507930e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 9.507930e+05 9.507930e+05 0.00 NULL
2014 Department Of City Planning Principal Planning Consultant 113000.00000 1.130000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.130000e+05 1.130000e+05 0.00 NULL
2014 Department Of City Planning Public Records Officer 250.00000 7.500000e+02 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.500000e+02 7.500000e+02 0.00 NULL
2014 Department Of City Planning Secretary To The Chairman 67500.00000 6.750000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.750000e+04 6.750000e+04 0.00 NULL
2014 Department Of City Planning Staff Analyst 55451.50500 5.545150e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.545150e+04 5.545150e+04 0.00 NULL
2014 Department Of City Planning Statistician 15320.17500 1.532017e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.532017e+04 1.532017e+04 0.00 NULL
2014 Department Of City Planning Supervisor Of Office Machine Operations 39607.00000 3.960700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.960700e+04 3.960700e+04 0.00 NULL
2014 Department Of City Planning Telecommunications Associate 62096.00000 6.209600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.209600e+04 6.209600e+04 0.00 NULL
2014 Department Of Correction *Adm Dir Fleet Maintenance - Nm 129039.00000 1.290390e+05 1714.95 1.714950e+03 1714.950 18.50 1 1.714950e+03 1714.95 1.307539e+05 1.307539e+05 0.00 NULL
2014 Department Of Correction *Attorney At Law 92987.00000 3.719480e+05 250.12 6.253000e+01 0.000 4.00 4 0.000000e+00 0.00 3.721981e+05 3.719480e+05 250.12 NULL
2014 Department Of Correction *Cook 34386.44681 4.848489e+06 367867.19 2.608987e+03 646.220 13848.00 141 6.462200e+02 91117.02 5.216356e+06 4.939606e+06 276750.17 NULL
2014 Department Of Correction *Senior Cook 37695.20000 9.423800e+05 139215.65 5.568626e+03 3653.800 4937.00 25 3.653800e+03 91345.00 1.081596e+06 1.033725e+06 47870.65 NULL
2014 Department Of Correction Administrative Architect 118500.00000 2.370000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.370000e+05 2.370000e+05 0.00 NULL
2014 Department Of Correction Administrative Construction Project Manager 112948.00000 2.258960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.258960e+05 2.258960e+05 0.00 NULL
2014 Department Of Correction Administrative Director Of Social Services 90564.76923 1.177342e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.177342e+06 1.177342e+06 0.00 NULL
2014 Department Of Correction Administrative Engineer 125000.00000 2.500000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.500000e+05 2.500000e+05 0.00 NULL
2014 Department Of Correction Administrative Graphic Artist 79376.00000 7.937600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.937600e+04 7.937600e+04 0.00 NULL
2014 Department Of Correction Administrative Inspector 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2014 Department Of Correction Administrative Investigator 138976.00000 4.169280e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.169280e+05 4.169280e+05 0.00 NULL
2014 Department Of Correction Administrative Management Auditor 102936.00000 1.029360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.029360e+05 1.029360e+05 0.00 NULL
2014 Department Of Correction Administrative Procurement Analyst 98285.00000 4.914250e+05 3525.70 7.051400e+02 0.000 107.00 5 0.000000e+00 0.00 4.949507e+05 4.914250e+05 3525.70 NULL
2014 Department Of Correction Administrative Project Manager 120250.00000 2.405000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.405000e+05 2.405000e+05 0.00 NULL
2014 Department Of Correction Administrative Psychologist 49200.30500 4.920031e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.920031e+04 4.920031e+04 0.00 NULL
2014 Department Of Correction Administrative Public Health Sanitarian 97330.50000 1.946610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.946610e+05 1.946610e+05 0.00 NULL
2014 Department Of Correction Administrative Public Information Specialist 140000.00000 2.800000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.800000e+05 2.800000e+05 0.00 NULL
2014 Department Of Correction Administrative Staff Analyst 105877.75926 5.717399e+06 166914.80 3.091015e+03 0.000 2865.00 54 0.000000e+00 0.00 5.884314e+06 5.717399e+06 166914.80 NULL
2014 Department Of Correction Administrative Storekeeper 112786.00000 1.127860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.127860e+05 1.127860e+05 0.00 NULL
2014 Department Of Correction Administrative Supervisor Of Building Maintenance 117785.00000 1.177850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.177850e+05 1.177850e+05 0.00 NULL
2014 Department Of Correction Agency Attorney 84956.60500 1.699132e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.699132e+06 1.699132e+06 0.00 NULL
2014 Department Of Correction Architect 96300.66667 2.889020e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.889020e+05 2.889020e+05 0.00 NULL
2014 Department Of Correction Asbestos Handler Supervisor 75848.00000 1.516960e+05 61544.83 3.077242e+04 30772.415 1081.00 2 3.077242e+04 61544.83 2.132408e+05 2.132408e+05 0.00 NULL
2014 Department Of Correction Assistant Architect 69038.00000 6.903800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.903800e+04 6.903800e+04 0.00 NULL
2014 Department Of Correction Assistant Laundry Supervisor 37361.00000 3.736100e+04 940.01 9.400100e+02 940.010 33.50 1 9.400100e+02 940.01 3.830101e+04 3.830101e+04 0.00 NULL
2014 Department Of Correction Associate Correctional Counselor 53189.63636 1.170172e+06 6937.40 3.153364e+02 0.000 205.75 22 0.000000e+00 0.00 1.177109e+06 1.170172e+06 6937.40 NULL
2014 Department Of Correction Associate Investigator 55458.41176 9.427930e+05 89885.84 5.287402e+03 0.000 2079.75 17 0.000000e+00 0.00 1.032679e+06 9.427930e+05 89885.84 NULL
2014 Department Of Correction Associate Project Manager 78473.83333 4.708430e+05 56.31 9.385000e+00 0.000 0.00 6 0.000000e+00 0.00 4.708993e+05 4.708430e+05 56.31 NULL
2014 Department Of Correction Associate Public Health Sanitarian 65798.00000 3.289900e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.289900e+05 3.289900e+05 0.00 NULL
2014 Department Of Correction Associate Public Information Specialist 47342.00000 4.734200e+04 174.90 1.749000e+02 174.900 6.75 1 1.749000e+02 174.90 4.751690e+04 4.751690e+04 0.00 NULL
2014 Department Of Correction Associate Staff Analyst 77293.00455 1.855032e+06 10749.52 4.478967e+02 0.000 202.75 24 0.000000e+00 0.00 1.865782e+06 1.855032e+06 10749.52 NULL
2014 Department Of Correction Auto Body Worker 51533.50000 1.030670e+05 44358.57 2.217928e+04 22179.285 1103.00 2 2.217928e+04 44358.57 1.474256e+05 1.474256e+05 0.00 NULL
2014 Department Of Correction Auto Mechanic NA NA 255104.61 1.822176e+04 20434.200 4703.50 14 1.822176e+04 255104.61 NA NA NA NULL
2014 Department Of Correction Automotive Service Worker 33876.40000 1.693820e+05 10942.33 2.188466e+03 2814.820 494.00 5 2.188466e+03 10942.33 1.803243e+05 1.803243e+05 0.00 NULL
2014 Department Of Correction Baker 34965.20000 1.748260e+05 3795.24 7.590480e+02 1124.040 186.50 5 7.590480e+02 3795.24 1.786212e+05 1.786212e+05 0.00 NULL
2014 Department Of Correction Bricklayer NA NA 228937.53 2.861719e+04 18253.810 3899.75 8 1.825381e+04 146030.48 NA NA NA NULL
2014 Department Of Correction Captain 89708.88584 7.858498e+07 22199752.71 2.534218e+04 23941.530 305104.18 876 2.394153e+04 20972780.28 1.007847e+08 9.955776e+07 1226972.43 NULL
2014 Department Of Correction Carpenter NA NA 270554.83 1.690968e+04 19191.985 4325.50 16 1.690968e+04 270554.83 NA NA NA NULL
2014 Department Of Correction Case Management Nurse 70111.66667 2.103350e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.103350e+05 2.103350e+05 0.00 NULL
2014 Department Of Correction Cashier 37666.80952 7.910030e+05 137994.38 6.571161e+03 7010.020 4898.25 21 6.571161e+03 137994.38 9.289974e+05 9.289974e+05 0.00 NULL
2014 Department Of Correction Cement Mason NA NA 17761.94 8.880970e+03 8880.970 233.50 2 8.880970e+03 17761.94 NA NA NA NULL
2014 Department Of Correction Certified It Administrator 88333.33333 2.650000e+05 12009.78 4.003260e+03 3899.170 231.75 3 3.899170e+03 11697.51 2.770098e+05 2.766975e+05 312.27 NULL
2014 Department Of Correction Chaplain 39634.92500 1.109778e+06 14610.68 5.218100e+02 0.000 378.50 28 0.000000e+00 0.00 1.124389e+06 1.109778e+06 14610.68 NULL
2014 Department Of Correction City Elevator Operator 33702.80000 1.685140e+05 10022.39 2.004478e+03 1787.320 400.75 5 1.787320e+03 8936.60 1.785364e+05 1.774506e+05 1085.79 NULL
2014 Department Of Correction City Medical Specialist 69260.20500 1.385204e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.385204e+05 1.385204e+05 0.00 NULL
2014 Department Of Correction Civil Engineer 78766.00000 7.876600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.876600e+04 7.876600e+04 0.00 NULL
2014 Department Of Correction Clerical Associate Most Mayoral Ag 40613.15094 2.152497e+06 104145.51 1.965010e+03 0.000 3506.70 53 0.000000e+00 0.00 2.256643e+06 2.152497e+06 104145.51 NULL
2014 Department Of Correction College Aide 11016.58350 2.203317e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.203317e+04 2.203317e+04 0.00 NULL
2014 Department Of Correction Commissary Manager 32530.80000 1.626540e+05 4896.89 9.793780e+02 711.450 240.50 5 7.114500e+02 3557.25 1.675509e+05 1.662112e+05 1339.64 NULL
2014 Department Of Correction Commissioner 205180.00000 4.103600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.103600e+05 4.103600e+05 0.00 NULL
2014 Department Of Correction Community Assistant 31709.66875 6.341934e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.341934e+04 6.341934e+04 0.00 NULL
2014 Department Of Correction Community Associate 34491.00715 1.379640e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.379640e+05 1.379640e+05 0.00 NULL
2014 Department Of Correction Community Coordinator 59067.00000 5.906700e+04 10842.88 1.084288e+04 10842.880 278.75 1 1.084288e+04 10842.88 6.990988e+04 6.990988e+04 0.00 NULL
2014 Department Of Correction Computer Aide-Non-Spvr 43456.00000 1.738240e+05 7351.64 1.837910e+03 1430.395 196.00 4 1.430395e+03 5721.58 1.811756e+05 1.795456e+05 1630.06 NULL
2014 Department Of Correction Computer Associate 62542.46154 8.130520e+05 6837.15 5.259346e+02 311.610 201.75 13 3.116100e+02 4050.93 8.198892e+05 8.171029e+05 2786.22 NULL
2014 Department Of Correction Computer Operations Manager 117600.00000 5.880000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.880000e+05 5.880000e+05 0.00 NULL
2014 Department Of Correction Computer Specialist 87996.73684 1.671938e+06 20186.82 1.062464e+03 0.000 353.00 19 0.000000e+00 0.00 1.692125e+06 1.671938e+06 20186.82 NULL
2014 Department Of Correction Computer Systems Manager 122604.18182 1.348646e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.348646e+06 1.348646e+06 0.00 NULL
2014 Department Of Correction Confidential Agency Investigator 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2014 Department Of Correction Construction Project Manager 86265.33333 2.587960e+05 0.85 2.833333e-01 0.000 0.00 3 0.000000e+00 0.00 2.587969e+05 2.587960e+05 0.85 NULL
2014 Department Of Correction Correction Administrative Aide 33881.80690 4.404635e+05 1773.77 1.364438e+02 0.000 63.25 13 0.000000e+00 0.00 4.422373e+05 4.404635e+05 1773.77 NULL
2014 Department Of Correction Correction Officer 66544.84687 5.636349e+08 99352596.87 1.172994e+04 7550.320 1849650.97 8470 7.550320e+03 63951210.40 6.629874e+08 6.275861e+08 35401386.47 NULL
2014 Department Of Correction Correctional Standards Review Specialist 60926.81818 6.701950e+05 55527.94 5.047995e+03 0.000 1307.50 11 0.000000e+00 0.00 7.257229e+05 6.701950e+05 55527.94 NULL
2014 Department Of Correction Counselor 49420.33333 1.482610e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.482610e+05 1.482610e+05 0.00 NULL
2014 Department Of Correction Dietary Aide 32116.88889 2.890520e+05 46762.96 5.195884e+03 1162.540 1644.50 9 1.162540e+03 10462.86 3.358150e+05 2.995149e+05 36300.10 NULL
2014 Department Of Correction Dietitian 46253.18182 5.087850e+05 180.69 1.642636e+01 0.000 7.00 11 0.000000e+00 0.00 5.089657e+05 5.087850e+05 180.69 NULL
2014 Department Of Correction Electrical Engineer 78463.00000 7.846300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.846300e+04 7.846300e+04 0.00 NULL
2014 Department Of Correction Electrician NA NA 1558781.79 3.896954e+04 33589.500 21548.75 40 3.358950e+04 1343580.00 NA NA NA NULL
2014 Department Of Correction Electrician’s Helper NA NA 488391.77 2.034966e+04 12105.680 10440.75 24 1.210568e+04 290536.32 NA NA NA NULL
2014 Department Of Correction Executive Agency Counsel 124335.20000 6.216760e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.216760e+05 6.216760e+05 0.00 NULL
2014 Department Of Correction Executive Assistant To The Commissioner 201000.00000 2.010000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.010000e+05 2.010000e+05 0.00 NULL
2014 Department Of Correction Executive Director Of Food Services 124609.00000 1.246090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.246090e+05 1.246090e+05 0.00 NULL
2014 Department Of Correction Exterminator 33521.40000 3.352140e+05 25739.48 2.573948e+03 8.480 1051.25 10 8.480000e+00 84.80 3.609535e+05 3.352988e+05 25654.68 NULL
2014 Department Of Correction Food Service Administrator 72665.25000 2.906610e+05 75668.66 1.891717e+04 10791.905 1531.50 4 1.079191e+04 43167.62 3.663297e+05 3.338286e+05 32501.04 NULL
2014 Department Of Correction Food Service Manager 53329.00000 5.332900e+05 42976.16 4.297616e+03 1300.445 1194.50 10 1.300445e+03 13004.45 5.762662e+05 5.462944e+05 29971.71 NULL
2014 Department Of Correction Fraud Investigator 56929.50000 1.138590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.138590e+05 1.138590e+05 0.00 NULL
2014 Department Of Correction Graphic Artist 74630.00000 7.463000e+04 5745.94 5.745940e+03 5745.940 102.00 1 5.745940e+03 5745.94 8.037594e+04 8.037594e+04 0.00 NULL
2014 Department Of Correction Health Services Manager 93045.00000 9.304500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.304500e+04 9.304500e+04 0.00 NULL
2014 Department Of Correction High Pressure Plant Tender NA NA 288804.08 3.208934e+04 17775.450 6297.00 9 1.777545e+04 159979.05 NA NA NA NULL
2014 Department Of Correction Institutional Aide 33749.00000 6.749800e+05 36204.73 1.810236e+03 948.145 1452.00 20 9.481450e+02 18962.90 7.111847e+05 6.939429e+05 17241.83 NULL
2014 Department Of Correction Investigator 46687.42857 1.307248e+06 216110.25 7.718223e+03 7205.700 5814.00 28 7.205700e+03 201759.60 1.523358e+06 1.509008e+06 14350.65 NULL
2014 Department Of Correction Legal Coordinator 52906.12633 1.534278e+06 286216.78 9.869544e+03 3479.460 6789.50 29 3.479460e+03 100904.34 1.820494e+06 1.635182e+06 185312.44 NULL
2014 Department Of Correction Licensed Barber 33480.14286 2.343610e+05 15096.65 2.156664e+03 0.000 615.50 7 0.000000e+00 0.00 2.494576e+05 2.343610e+05 15096.65 NULL
2014 Department Of Correction Locksmith NA NA 120703.80 9.284908e+03 9054.720 3382.00 13 9.054720e+03 117711.36 NA NA NA NULL
2014 Department Of Correction Machinist NA NA 98790.54 1.975811e+04 13910.340 1918.50 5 1.391034e+04 69551.70 NA NA NA NULL
2014 Department Of Correction Maintenance Worker NA NA 376018.70 8.545880e+03 6413.455 10051.75 44 6.413455e+03 282192.02 NA NA NA NULL
2014 Department Of Correction Management Auditor 74151.66667 2.224550e+05 13556.06 4.518687e+03 0.000 254.00 3 0.000000e+00 0.00 2.360111e+05 2.224550e+05 13556.06 NULL
2014 Department Of Correction Marine Engineer 69622.50206 2.784900e+05 127517.72 3.187943e+04 30809.840 2387.75 4 3.080984e+04 123239.36 4.060077e+05 4.017294e+05 4278.36 NULL
2014 Department Of Correction Marine Oiler 34088.14340 1.022644e+05 7085.08 2.361693e+03 2968.230 164.75 3 2.361693e+03 7085.08 1.093495e+05 1.093495e+05 0.00 NULL
2014 Department Of Correction Masons Helper NA NA 20383.36 2.038336e+04 20383.360 509.50 1 2.038336e+04 20383.36 NA NA NA NULL
2014 Department Of Correction Mate 57875.00000 5.787500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.787500e+04 5.787500e+04 0.00 NULL
2014 Department Of Correction Medical Officer 100780.22609 9.070220e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.070220e+05 9.070220e+05 0.00 NULL
2014 Department Of Correction Motor Vehicle Operator 41596.20833 1.996618e+06 371712.63 7.744013e+03 5189.325 12367.50 48 5.189325e+03 249087.60 2.368331e+06 2.245706e+06 122625.03 NULL
2014 Department Of Correction Motor Vehicle Supervisor 49004.50000 9.800900e+04 18229.89 9.114945e+03 9114.945 538.50 2 9.114945e+03 18229.89 1.162389e+05 1.162389e+05 0.00 NULL
2014 Department Of Correction Office Machine Aide 23191.87710 1.159594e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.159594e+05 1.159594e+05 0.00 NULL
2014 Department Of Correction Oiler NA NA 1159795.23 2.577323e+04 26183.400 17439.25 45 2.577323e+04 1159795.23 NA NA NA NULL
2014 Department Of Correction Paralegal Aide 23380.04880 7.014015e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.014015e+04 7.014015e+04 0.00 NULL
2014 Department Of Correction Plumber NA NA 1213945.76 3.194594e+04 33656.315 5011.25 38 3.194594e+04 1213945.76 NA NA NA NULL
2014 Department Of Correction Plumber’s Helper NA NA 699368.32 2.331228e+04 20512.800 4065.50 30 2.051280e+04 615384.00 NA NA NA NULL
2014 Department Of Correction Principal Administrative Associate - Lev 1 & 2 Non Supvr 51505.18196 4.996003e+06 215129.47 2.217830e+03 0.000 5952.75 97 0.000000e+00 0.00 5.211132e+06 4.996003e+06 215129.47 NULL
2014 Department Of Correction Procurement Analyst 55448.82353 9.426300e+05 334.51 1.967706e+01 0.000 11.00 17 0.000000e+00 0.00 9.429645e+05 9.426300e+05 334.51 NULL
2014 Department Of Correction Program Specialist Correction 58011.44800 9.919958e+06 245290.00 1.434444e+03 0.000 6303.00 171 0.000000e+00 0.00 1.016525e+07 9.919958e+06 245290.00 NULL
2014 Department Of Correction Psychologist 47499.31760 2.374966e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.374966e+05 2.374966e+05 0.00 NULL
2014 Department Of Correction Public Health Sanitarian 52763.42857 3.693440e+05 8482.92 1.211846e+03 1445.540 188.25 7 1.211846e+03 8482.92 3.778269e+05 3.778269e+05 0.00 NULL
2014 Department Of Correction Public Records Aide 33279.50000 6.655900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.655900e+04 6.655900e+04 0.00 NULL
2014 Department Of Correction Quality Assurance Specialist 55158.00000 1.654740e+05 1609.27 5.364233e+02 0.000 65.75 3 0.000000e+00 0.00 1.670833e+05 1.654740e+05 1609.27 NULL
2014 Department Of Correction Radio Repair Mechanic NA NA 27675.00 1.383750e+04 13837.500 422.00 2 1.383750e+04 27675.00 NA NA NA NULL
2014 Department Of Correction Rubber Tire Repairer NA NA 1870.52 1.870520e+03 1870.520 57.25 1 1.870520e+03 1870.52 NA NA NA NULL
2014 Department Of Correction Secretary 42676.00000 1.280280e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.280280e+05 1.280280e+05 0.00 NULL
2014 Department Of Correction Senior Baker 40359.50000 1.614380e+05 4057.49 1.014372e+03 1091.930 160.50 4 1.014372e+03 4057.49 1.654955e+05 1.654955e+05 0.00 NULL
2014 Department Of Correction Senior Institutional Trades Instructor 43137.00000 4.313700e+04 12832.42 1.283242e+04 12832.420 402.50 1 1.283242e+04 12832.42 5.596942e+04 5.596942e+04 0.00 NULL
2014 Department Of Correction Senior Stationary Engineer NA NA 354962.05 5.916034e+04 52718.245 4253.00 6 5.271825e+04 316309.47 NA NA NA NULL
2014 Department Of Correction Sheet Metal Worker NA NA 121117.92 3.027948e+04 36710.520 1240.50 4 3.027948e+04 121117.92 NA NA NA NULL
2014 Department Of Correction Social Worker 59407.00000 5.940700e+04 3575.55 3.575550e+03 3575.550 83.00 1 3.575550e+03 3575.55 6.298255e+04 6.298255e+04 0.00 NULL
2014 Department Of Correction Staff Analyst 67102.50000 2.684100e+05 678.08 1.695200e+02 149.575 14.50 4 1.495750e+02 598.30 2.690881e+05 2.690083e+05 79.78 NULL
2014 Department Of Correction Staff Nurse 61872.00800 3.093600e+05 1339.01 2.678020e+02 0.000 33.00 5 0.000000e+00 0.00 3.106990e+05 3.093600e+05 1339.01 NULL
2014 Department Of Correction Stationary Engineer NA NA 955881.80 3.823527e+04 37830.540 13350.50 25 3.783054e+04 945763.50 NA NA NA NULL
2014 Department Of Correction Steam Fitter NA NA 642984.16 6.429842e+04 59408.480 6625.50 10 5.940848e+04 594084.80 NA NA NA NULL
2014 Department Of Correction Steam Fitter’s Helper NA NA 161018.14 3.220363e+04 34605.900 2235.50 5 3.220363e+04 161018.14 NA NA NA NULL
2014 Department Of Correction Stock Worker 38580.50000 7.716100e+04 168.38 8.419000e+01 84.190 7.50 2 8.419000e+01 168.38 7.732938e+04 7.732938e+04 0.00 NULL
2014 Department Of Correction Summer College Intern 2244.92155 6.285780e+04 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 6.285780e+04 6.285780e+04 0.00 NULL
2014 Department Of Correction Summer Graduate Intern 3560.54946 2.492385e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.492385e+04 2.492385e+04 0.00 NULL
2014 Department Of Correction Superintendent Of Laundries 52040.00000 5.204000e+04 11888.96 1.188896e+04 11888.960 315.00 1 1.188896e+04 11888.96 6.392896e+04 6.392896e+04 0.00 NULL
2014 Department Of Correction Supervising Computer Service Technician 75643.66667 2.269310e+05 2442.46 8.141533e+02 1030.720 47.50 3 8.141533e+02 2442.46 2.293735e+05 2.293735e+05 0.00 NULL
2014 Department Of Correction Supervising Housekeeper 43759.00000 4.375900e+04 123.32 1.233200e+02 123.320 5.00 1 1.233200e+02 123.32 4.388232e+04 4.388232e+04 0.00 NULL
2014 Department Of Correction Supervisor 41209.00000 4.120900e+04 524.42 5.244200e+02 524.420 19.00 1 5.244200e+02 524.42 4.173342e+04 4.173342e+04 0.00 NULL
2014 Department Of Correction Supervisor Electrician NA NA 76158.42 7.615842e+04 76158.420 973.00 1 7.615842e+04 76158.42 NA NA NA NULL
2014 Department Of Correction Supervisor Of Mechanical Installations & Maintenance 77260.00000 7.726000e+04 430.16 4.301600e+02 430.160 10.00 1 4.301600e+02 430.16 7.769016e+04 7.769016e+04 0.00 NULL
2014 Department Of Correction Supervisor Of Mechanics NA NA 655633.37 3.856667e+04 38936.670 9060.50 17 3.856667e+04 655633.37 NA NA NA NULL
2014 Department Of Correction Supervisor Of Stock Workers 43167.12500 6.906740e+05 5935.15 3.709469e+02 12.965 210.50 16 1.296500e+01 207.44 6.966092e+05 6.908814e+05 5727.71 NULL
2014 Department Of Correction Supervisor Plumber NA NA 46254.29 4.625429e+04 46254.290 130.50 1 4.625429e+04 46254.29 NA NA NA NULL
2014 Department Of Correction Supervisor Steamfitter NA NA 90758.25 9.075825e+04 90758.250 823.50 1 9.075825e+04 90758.25 NA NA NA NULL
2014 Department Of Correction Telecommunications Associate 70699.33333 2.120980e+05 8595.60 2.865200e+03 763.720 194.25 3 7.637200e+02 2291.16 2.206936e+05 2.143892e+05 6304.44 NULL
2014 Department Of Correction Telephone Service Technician 56619.00000 1.698570e+05 31484.36 1.049479e+04 3663.070 774.00 3 3.663070e+03 10989.21 2.013414e+05 1.808462e+05 20495.15 NULL
2014 Department Of Correction Tractor Operator NA NA 118119.42 5.905971e+04 59059.710 1292.50 2 5.905971e+04 118119.42 NA NA NA NULL
2014 Department Of Correction Warden 172296.96296 4.652018e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 4.652018e+06 4.652018e+06 0.00 NULL
2014 Department Of Correction Warden-Assistant Deputy Warden Ted < 11/1/92 105210.74312 1.146797e+07 2579766.75 2.366758e+04 19453.590 30241.50 109 1.945359e+04 2120441.31 1.404774e+07 1.358841e+07 459325.44 NULL
2014 Department Of Correction Warden-Deputy Warden In Comm Ted < 11/1/92 154664.00000 6.186560e+05 14557.18 3.639295e+03 0.000 204.25 4 0.000000e+00 0.00 6.332132e+05 6.186560e+05 14557.18 NULL
2014 Department Of Correction Warden-Deputy Warden Ted < 11/1/92 122444.63415 5.020230e+06 183388.48 4.472890e+03 0.000 1861.00 41 0.000000e+00 0.00 5.203618e+06 5.020230e+06 183388.48 NULL
2014 Department Of Correction Welder NA NA 302169.73 2.324383e+04 21353.040 4338.50 13 2.135304e+04 277589.52 NA NA NA NULL
2014 Department Of Correction Worker’s Compensation Benefits Examiner 42798.00000 4.279800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.279800e+04 4.279800e+04 0.00 NULL
2014 Department Of Education Admin *Administrative Attorney 192528.00000 1.925280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.925280e+05 1.925280e+05 0.00 NULL
2014 Department Of Education Admin *Certified Applications Developer 99158.50000 1.983170e+05 146.30 7.315000e+01 73.150 2.50 2 7.315000e+01 146.30 1.984633e+05 1.984633e+05 0.00 NULL
2014 Department Of Education Admin *Certified Database Administrator 96679.00000 9.667900e+04 72771.07 7.277107e+04 72771.070 998.25 1 7.277107e+04 72771.07 1.694501e+05 1.694501e+05 0.00 NULL
2014 Department Of Education Admin *Certified Wide Area Network Administrator 101025.16667 6.061510e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.061510e+05 6.061510e+05 0.00 NULL
2014 Department Of Education Admin *School Lunch Helper 25488.00000 2.548800e+04 3485.57 3.485570e+03 3485.570 0.00 1 3.485570e+03 3485.57 2.897357e+04 2.897357e+04 0.00 NULL
2014 Department Of Education Admin Accountant 57824.72414 1.676917e+06 27204.95 9.381017e+02 0.000 747.50 29 0.000000e+00 0.00 1.704122e+06 1.676917e+06 27204.95 NULL
2014 Department Of Education Admin Adm Manager-Non-Mgrl From M1/M2 70281.50000 4.216890e+05 448.62 7.477000e+01 0.000 21.50 6 0.000000e+00 0.00 4.221376e+05 4.216890e+05 448.62 NULL
2014 Department Of Education Admin Administration Public Record Officer 117508.00000 1.175080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.175080e+05 1.175080e+05 0.00 NULL
2014 Department Of Education Admin Administrative Accountant 100661.83333 1.207942e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.207942e+06 1.207942e+06 0.00 NULL
2014 Department Of Education Admin Administrative Education Analyst 98892.91795 3.856824e+07 5464.07 1.401044e+01 0.000 299.75 390 0.000000e+00 0.00 3.857370e+07 3.856824e+07 5464.07 NULL
2014 Department Of Education Admin Administrative Education Officer 101847.91129 3.788742e+07 2377.38 6.390807e+00 0.000 43.50 372 0.000000e+00 0.00 3.788980e+07 3.788742e+07 2377.38 NULL
2014 Department Of Education Admin Administrative Investigator 94416.25000 7.553300e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.553300e+05 7.553300e+05 0.00 NULL
2014 Department Of Education Admin Administrative Management Auditor 94547.40000 9.454740e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 9.454740e+05 9.454740e+05 0.00 NULL
2014 Department Of Education Admin Administrative Manager 92074.75000 1.104897e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.104897e+06 1.104897e+06 0.00 NULL
2014 Department Of Education Admin Administrative Procurement Analyst 88504.68000 2.212617e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 2.212617e+06 2.212617e+06 0.00 NULL
2014 Department Of Education Admin Administrative Public Health Nurse 117299.00000 2.345980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.345980e+05 2.345980e+05 0.00 NULL
2014 Department Of Education Admin Administrative Public Information Specialist 91097.42857 1.275364e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.275364e+06 1.275364e+06 0.00 NULL
2014 Department Of Education Admin Administrative Quality Assurance Specialist 88804.20000 1.776084e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.776084e+06 1.776084e+06 0.00 NULL
2014 Department Of Education Admin Administrative Retirement Benefits Specialist 92225.00000 9.222500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.222500e+04 9.222500e+04 0.00 NULL
2014 Department Of Education Admin Administrative School Food Service Manager 94700.50000 1.515208e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.515208e+06 1.515208e+06 0.00 NULL
2014 Department Of Education Admin Administrative Space Analyst 107382.87500 8.590630e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.590630e+05 8.590630e+05 0.00 NULL
2014 Department Of Education Admin Administrative Staff Analyst 93738.87365 2.596567e+07 3140.29 1.133679e+01 0.000 66.25 277 0.000000e+00 0.00 2.596881e+07 2.596567e+07 3140.29 NULL
2014 Department Of Education Admin Administrative Storekeeper 91561.00000 9.156100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.156100e+04 9.156100e+04 0.00 NULL
2014 Department Of Education Admin Agency Attorney 85365.93662 1.212196e+07 0.00 0.000000e+00 0.000 0.00 142 0.000000e+00 0.00 1.212196e+07 1.212196e+07 0.00 NULL
2014 Department Of Education Admin Agency Attorney Interne 60172.00000 6.017200e+04 314.45 3.144500e+02 314.450 22.25 1 3.144500e+02 314.45 6.048645e+04 6.048645e+04 0.00 NULL
2014 Department Of Education Admin Architect 82852.20000 4.142610e+05 11945.19 2.389038e+03 0.000 249.50 5 0.000000e+00 0.00 4.262062e+05 4.142610e+05 11945.19 NULL
2014 Department Of Education Admin Area Manager Of School Maintenance 113928.44000 2.848211e+06 5382.08 2.152832e+02 0.000 48.00 25 0.000000e+00 0.00 2.853593e+06 2.848211e+06 5382.08 NULL
2014 Department Of Education Admin Asbestos Handler 72319.22222 6.508730e+05 185088.88 2.056543e+04 19941.820 3497.75 9 1.994182e+04 179476.38 8.359619e+05 8.303494e+05 5612.50 NULL
2014 Department Of Education Admin Asbestos Hazard Investigator 58852.00000 5.885200e+04 1185.21 1.185210e+03 1185.210 29.25 1 1.185210e+03 1185.21 6.003721e+04 6.003721e+04 0.00 NULL
2014 Department Of Education Admin Assistant Accountant 47178.00000 9.435600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.435600e+04 9.435600e+04 0.00 NULL
2014 Department Of Education Admin Assistant Architect 71982.00000 7.198200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.198200e+04 7.198200e+04 0.00 NULL
2014 Department Of Education Admin Assistant Civil Engineer 63937.50000 1.278750e+05 19036.85 9.518425e+03 9518.425 411.75 2 9.518425e+03 19036.85 1.469119e+05 1.469119e+05 0.00 NULL
2014 Department Of Education Admin Assistant Mechanical Engineer 55345.00000 5.534500e+04 1935.02 1.935020e+03 1935.020 29.50 1 1.935020e+03 1935.02 5.728002e+04 5.728002e+04 0.00 NULL
2014 Department Of Education Admin Assistant Retirement Benefits Examiner 44407.00000 2.220350e+05 2210.37 4.420740e+02 309.030 158.25 5 3.090300e+02 1545.15 2.242454e+05 2.235801e+05 665.22 NULL
2014 Department Of Education Admin Associate Education Analyst 77906.69565 5.375562e+06 30107.18 4.363359e+02 0.000 659.25 69 0.000000e+00 0.00 5.405669e+06 5.375562e+06 30107.18 NULL
2014 Department Of Education Admin Associate Education Officer 75633.58389 1.126940e+07 34217.85 2.296500e+02 0.000 1048.25 149 0.000000e+00 0.00 1.130362e+07 1.126940e+07 34217.85 NULL
2014 Department Of Education Admin Associate Fingerprint Technician 40319.40000 2.015970e+05 18587.33 3.717466e+03 0.000 673.25 5 0.000000e+00 0.00 2.201843e+05 2.015970e+05 18587.33 NULL
2014 Department Of Education Admin Associate Human Rights Specialist 84139.00000 8.413900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.413900e+04 8.413900e+04 0.00 NULL
2014 Department Of Education Admin Associate Investigator 58052.00000 1.741560e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.741560e+05 1.741560e+05 0.00 NULL
2014 Department Of Education Admin Associate Project Manager 74564.00000 1.491280e+05 13088.52 6.544260e+03 6544.260 246.25 2 6.544260e+03 13088.52 1.622165e+05 1.622165e+05 0.00 NULL
2014 Department Of Education Admin Associate Public Information Specialist 55335.55000 1.106711e+06 14170.13 7.085065e+02 0.000 509.00 20 0.000000e+00 0.00 1.120881e+06 1.106711e+06 14170.13 NULL
2014 Department Of Education Admin Associate Quality Assurance Specialist 60225.58333 2.890828e+06 252757.94 5.265790e+03 2772.805 6392.75 48 2.772805e+03 133094.64 3.143586e+06 3.023923e+06 119663.30 NULL
2014 Department Of Education Admin Associate Real Property Manager 56844.00000 5.684400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.684400e+04 5.684400e+04 0.00 NULL
2014 Department Of Education Admin Associate Retirement Benefits Examiner 49999.94118 8.499990e+05 30359.57 1.785857e+03 544.220 1156.25 17 5.442200e+02 9251.74 8.803586e+05 8.592507e+05 21107.83 NULL
2014 Department Of Education Admin Associate School Food Service Manager 62062.40351 3.537557e+06 102508.11 1.798388e+03 793.940 2779.75 57 7.939400e+02 45254.58 3.640065e+06 3.582812e+06 57253.53 NULL
2014 Department Of Education Admin Associate Staff Analyst 73725.11111 6.635260e+05 1044.60 1.160667e+02 0.000 29.75 9 0.000000e+00 0.00 6.645706e+05 6.635260e+05 1044.60 NULL
2014 Department Of Education Admin Attorney At Law 92838.92500 4.641946e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.641946e+05 4.641946e+05 0.00 NULL
2014 Department Of Education Admin Bookkeeper 41869.06780 2.470275e+06 10120.64 1.715363e+02 0.000 450.75 59 0.000000e+00 0.00 2.480396e+06 2.470275e+06 10120.64 NULL
2014 Department Of Education Admin Bricklayer NA NA 13353.46 4.451153e+03 4096.430 231.50 3 4.096430e+03 12289.29 NA NA NA NULL
2014 Department Of Education Admin Carpenter NA NA 447430.26 6.883542e+03 4619.390 6141.75 65 4.619390e+03 300260.35 NA NA NA NULL
2014 Department Of Education Admin Certified It Administrator 95161.81818 4.187120e+06 162348.61 3.689741e+03 516.050 2403.17 44 5.160500e+02 22706.20 4.349469e+06 4.209826e+06 139642.41 NULL
2014 Department Of Education Admin Certified It Developer 93499.52941 1.589492e+06 4775.48 2.809106e+02 0.000 82.25 17 0.000000e+00 0.00 1.594267e+06 1.589492e+06 4775.48 NULL
2014 Department Of Education Admin Chancellor 212614.00000 2.126140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.126140e+05 2.126140e+05 0.00 NULL
2014 Department Of Education Admin Chauffeur-Attendant 36885.00000 3.688500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.688500e+04 3.688500e+04 0.00 NULL
2014 Department Of Education Admin Chief Administrator Of Impartial Hearing Office 129077.00000 1.290770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.290770e+05 1.290770e+05 0.00 NULL
2014 Department Of Education Admin Chief School Business Executive 192000.00000 1.920000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.920000e+05 1.920000e+05 0.00 NULL
2014 Department Of Education Admin City Dentist 19687.71000 1.968771e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.968771e+04 1.968771e+04 0.00 NULL
2014 Department Of Education Admin City Elevator Operator 32779.25000 1.311170e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.311170e+05 1.311170e+05 0.00 NULL
2014 Department Of Education Admin City Laborer NA NA 23069.56 1.281642e+03 847.150 484.50 18 8.471500e+02 15248.70 NA NA NA NULL
2014 Department Of Education Admin City Medical Specialist 67029.87383 1.005448e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.005448e+06 1.005448e+06 0.00 NULL
2014 Department Of Education Admin City Research Scientist 103343.00000 1.033430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.033430e+05 1.033430e+05 0.00 NULL
2014 Department Of Education Admin Civil Engineer 86418.00000 3.456720e+05 17390.58 4.347645e+03 3628.545 398.75 4 3.628545e+03 14514.18 3.630626e+05 3.601862e+05 2876.40 NULL
2014 Department Of Education Admin Clerical Aide 29478.59284 9.433150e+05 22375.35 6.992297e+02 0.000 1033.50 32 0.000000e+00 0.00 9.656903e+05 9.433150e+05 22375.35 NULL
2014 Department Of Education Admin Clerical Associate Most Mayoral Ag 40331.53770 1.710057e+07 239586.76 5.650631e+02 0.000 8317.25 424 0.000000e+00 0.00 1.734016e+07 1.710057e+07 239586.76 NULL
2014 Department Of Education Admin Community Assistant 31231.50959 1.139950e+07 219890.77 6.024405e+02 103.290 9479.75 365 1.032900e+02 37700.85 1.161939e+07 1.143720e+07 182189.92 NULL
2014 Department Of Education Admin Community Associate 40547.94341 8.312328e+07 1721147.97 8.395844e+02 269.165 55295.00 2050 2.691650e+02 551788.25 8.484443e+07 8.367507e+07 1169359.72 NULL
2014 Department Of Education Admin Community Coordinator 56285.22738 2.302066e+07 567771.21 1.388194e+03 293.540 13257.00 409 2.935400e+02 120057.86 2.358843e+07 2.314072e+07 447713.35 NULL
2014 Department Of Education Admin Computer Aide-Non-Spvr 47316.04927 5.677926e+05 19686.48 1.640540e+03 99.685 610.75 12 9.968500e+01 1196.22 5.874791e+05 5.689888e+05 18490.26 NULL
2014 Department Of Education Admin Computer Associate 63192.02035 5.181746e+06 71874.78 8.765217e+02 0.000 1935.50 82 0.000000e+00 0.00 5.253620e+06 5.181746e+06 71874.78 NULL
2014 Department Of Education Admin Computer Programmer Analyst 51666.36364 5.683300e+05 1393.34 1.266673e+02 0.000 48.25 11 0.000000e+00 0.00 5.697233e+05 5.683300e+05 1393.34 NULL
2014 Department Of Education Admin Computer Service Technician 44791.93408 4.210442e+06 72338.95 7.695633e+02 0.000 2248.50 94 0.000000e+00 0.00 4.282781e+06 4.210442e+06 72338.95 NULL
2014 Department Of Education Admin Computer Specialist 94881.23611 1.366290e+07 127466.39 8.851833e+02 0.000 2117.25 144 0.000000e+00 0.00 1.379036e+07 1.366290e+07 127466.39 NULL
2014 Department Of Education Admin Computer Systems Manager 118926.11940 7.968050e+06 0.00 0.000000e+00 0.000 0.00 67 0.000000e+00 0.00 7.968050e+06 7.968050e+06 0.00 NULL
2014 Department Of Education Admin Confidential Investigator 66862.06250 6.418758e+06 1579.23 1.645031e+01 0.000 34.00 96 0.000000e+00 0.00 6.420337e+06 6.418758e+06 1579.23 NULL
2014 Department Of Education Admin Construction Laborer NA NA 79640.54 3.620025e+03 1987.880 1320.25 22 1.987880e+03 43733.36 NA NA NA NULL
2014 Department Of Education Admin Construction Project Manager 70713.85000 1.414277e+06 157060.70 7.853035e+03 2687.300 3145.00 20 2.687300e+03 53746.00 1.571338e+06 1.468023e+06 103314.70 NULL
2014 Department Of Education Admin Counsel To The Chancellor 192500.00000 1.925000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.925000e+05 1.925000e+05 0.00 NULL
2014 Department Of Education Admin Customer Information Representative Ma L 1549 45691.28514 1.242803e+07 191967.33 7.057622e+02 40.880 7112.50 272 4.088000e+01 11119.36 1.262000e+07 1.243915e+07 180847.97 NULL
2014 Department Of Education Admin Deputy Auditor General 155150.00000 1.551500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.551500e+05 1.551500e+05 0.00 NULL
2014 Department Of Education Admin Deputy Chancellor Financial Affairs 203391.00000 2.033910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.033910e+05 2.033910e+05 0.00 NULL
2014 Department Of Education Admin Deputy Executive Director Of Business And Administration 118770.00000 1.187700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.187700e+05 1.187700e+05 0.00 NULL
2014 Department Of Education Admin Deputy Inspector General 133772.00000 1.337720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.337720e+05 1.337720e+05 0.00 NULL
2014 Department Of Education Admin Director 151578.00000 3.031560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.031560e+05 3.031560e+05 0.00 NULL
2014 Department Of Education Admin Director Of Audit And Investigation 143620.00000 2.872400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.872400e+05 2.872400e+05 0.00 NULL
2014 Department Of Education Admin Director Of Equal Opportunity 109670.50000 2.193410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.193410e+05 2.193410e+05 0.00 NULL
2014 Department Of Education Admin Director Of Operations 135409.00000 2.031135e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 2.031135e+06 2.031135e+06 0.00 NULL
2014 Department Of Education Admin Director, Data Processing Coordination 175000.00000 3.500000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.500000e+05 3.500000e+05 0.00 NULL
2014 Department Of Education Admin District Manager Of Administration And Business Affairs 81667.37500 1.306678e+06 7064.12 4.415075e+02 0.000 154.75 16 0.000000e+00 0.00 1.313742e+06 1.306678e+06 7064.12 NULL
2014 Department Of Education Admin Education Analyst 60445.07692 7.857860e+05 1427.96 1.098431e+02 0.000 18.25 13 0.000000e+00 0.00 7.872140e+05 7.857860e+05 1427.96 NULL
2014 Department Of Education Admin Education Analyst Trainee 44555.37500 3.564430e+05 544.20 6.802500e+01 0.000 18.75 8 0.000000e+00 0.00 3.569872e+05 3.564430e+05 544.20 NULL
2014 Department Of Education Admin Education Officer 60132.14130 5.532157e+06 39074.76 4.247257e+02 0.000 941.00 92 0.000000e+00 0.00 5.571232e+06 5.532157e+06 39074.76 NULL
2014 Department Of Education Admin Educational Management Associate 154284.88571 5.399971e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 5.399971e+06 5.399971e+06 0.00 NULL
2014 Department Of Education Admin Electrician NA NA 807820.22 8.414794e+03 4557.000 10755.75 96 4.557000e+03 437472.00 NA NA NA NULL
2014 Department Of Education Admin Electrician’s Helper NA NA 606.46 1.516150e+02 104.965 13.00 4 1.049650e+02 419.86 NA NA NA NULL
2014 Department Of Education Admin Equal Rights Compl Spec 61709.33333 1.851280e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.851280e+05 1.851280e+05 0.00 NULL
2014 Department Of Education Admin Equal Rights Compliance Specialist 61243.44444 1.102382e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.102382e+06 1.102382e+06 0.00 NULL
2014 Department Of Education Admin Exec Sec To Advisory Bd For Locational And Extension Educ 108652.00000 1.086520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.086520e+05 1.086520e+05 0.00 NULL
2014 Department Of Education Admin Executive Agency Counsel 116354.68000 5.817734e+06 0.00 0.000000e+00 0.000 0.00 50 0.000000e+00 0.00 5.817734e+06 5.817734e+06 0.00 NULL
2014 Department Of Education Admin Executive Assistant To The Chancellor 74333.33333 2.230000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.230000e+05 2.230000e+05 0.00 NULL
2014 Department Of Education Admin Executive Director 179712.00000 1.797120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.797120e+05 1.797120e+05 0.00 NULL
2014 Department Of Education Admin Exterminator 35126.55556 6.322780e+05 14075.32 7.819622e+02 110.040 608.25 18 1.100400e+02 1980.72 6.463533e+05 6.342587e+05 12094.60 NULL
2014 Department Of Education Admin Furniture Maintainer NA NA 1449.11 7.245550e+02 724.555 36.00 2 7.245550e+02 1449.11 NA NA NA NULL
2014 Department Of Education Admin Glazier NA NA 16489.20 2.355600e+03 1383.200 225.50 7 1.383200e+03 9682.40 NA NA NA NULL
2014 Department Of Education Admin Health Services Manager 92870.75000 7.429660e+05 -12.24 -1.530000e+00 0.000 0.00 8 -1.530000e+00 -12.24 7.429538e+05 7.429538e+05 0.00 NULL
2014 Department Of Education Admin Industrial Hygienist 62889.00000 6.288900e+04 13804.52 1.380452e+04 13804.520 361.25 1 1.380452e+04 13804.52 7.669352e+04 7.669352e+04 0.00 NULL
2014 Department Of Education Admin Interpreter 50859.24280 1.017185e+05 12753.11 6.376555e+03 6376.555 442.50 2 6.376555e+03 12753.11 1.144716e+05 1.144716e+05 0.00 NULL
2014 Department Of Education Admin Interpreter/Translator 52570.31429 1.839961e+06 91.78 2.622286e+00 0.000 7.50 35 0.000000e+00 0.00 1.840053e+06 1.839961e+06 91.78 NULL
2014 Department Of Education Admin Investigator 40224.00000 4.022400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.022400e+04 4.022400e+04 0.00 NULL
2014 Department Of Education Admin Investigator Empl Disc 53215.00000 1.117515e+06 2368.85 1.128024e+02 0.000 98.00 21 0.000000e+00 0.00 1.119884e+06 1.117515e+06 2368.85 NULL
2014 Department Of Education Admin Investment Analyst 51758.50000 2.070340e+05 1561.19 3.902975e+02 414.125 92.00 4 3.902975e+02 1561.19 2.085952e+05 2.085952e+05 0.00 NULL
2014 Department Of Education Admin Legal Secretarial Assistant - Al 1 Only 37158.00000 3.715800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.715800e+04 3.715800e+04 0.00 NULL
2014 Department Of Education Admin Legal Secretarial Assistant Al 2,3,4 Only 40497.00000 4.049700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.049700e+04 4.049700e+04 0.00 NULL
2014 Department Of Education Admin Locksmith NA NA 37.19 9.297500e+00 0.000 0.00 4 0.000000e+00 0.00 NA NA NA NULL
2014 Department Of Education Admin Machinist NA NA 218184.75 5.454619e+03 1862.020 4252.00 40 1.862020e+03 74480.80 NA NA NA NULL
2014 Department Of Education Admin Machinist’s Helper NA NA 29588.34 3.698543e+03 232.675 619.00 8 2.326750e+02 1861.40 NA NA NA NULL
2014 Department Of Education Admin Maintenance Worker NA NA 509.74 5.663778e+01 0.000 0.00 9 0.000000e+00 0.00 NA NA NA NULL
2014 Department Of Education Admin Management Auditor 58573.86667 8.786080e+05 16577.13 1.105142e+03 0.000 398.25 15 0.000000e+00 0.00 8.951851e+05 8.786080e+05 16577.13 NULL
2014 Department Of Education Admin Management Auditor Trainee 41175.50000 2.470530e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.470530e+05 2.470530e+05 0.00 NULL
2014 Department Of Education Admin Media Services Technician 53322.50000 1.066450e+05 24266.53 1.213326e+04 12133.265 635.50 2 1.213326e+04 24266.53 1.309115e+05 1.309115e+05 0.00 NULL
2014 Department Of Education Admin Mental Health Worker 36861.00000 7.372200e+04 167.76 8.388000e+01 83.880 0.00 2 8.388000e+01 167.76 7.388976e+04 7.388976e+04 0.00 NULL
2014 Department Of Education Admin Motor Vehicle Operator 41205.93750 6.592950e+05 96729.29 6.045581e+03 5551.260 3372.00 16 5.551260e+03 88820.16 7.560243e+05 7.481152e+05 7909.13 NULL
2014 Department Of Education Admin Occupational Therapist 44078.94387 1.185724e+07 16670.30 6.197138e+01 0.000 227.75 269 0.000000e+00 0.00 1.187391e+07 1.185724e+07 16670.30 NULL
2014 Department Of Education Admin Office Machine Aide 36692.00000 4.403040e+05 3050.50 2.542083e+02 0.000 202.75 12 0.000000e+00 0.00 4.433545e+05 4.403040e+05 3050.50 NULL
2014 Department Of Education Admin Painter NA NA 6457.50 1.076250e+03 892.500 80.00 6 8.925000e+02 5355.00 NA NA NA NULL
2014 Department Of Education Admin Physical Therapist 45503.52443 3.003233e+06 1317.89 1.996803e+01 0.000 19.75 66 0.000000e+00 0.00 3.004551e+06 3.003233e+06 1317.89 NULL
2014 Department Of Education Admin Plasterer NA NA 80489.97 5.749284e+03 5804.370 1196.50 14 5.749284e+03 80489.97 NA NA NA NULL
2014 Department Of Education Admin Plumber NA NA 178311.55 4.245513e+03 3703.805 2093.50 42 3.703805e+03 155559.81 NA NA NA NULL
2014 Department Of Education Admin Plumber’s Helper NA NA 6115.20 2.038400e+03 571.200 94.00 3 5.712000e+02 1713.60 NA NA NA NULL
2014 Department Of Education Admin Principal Administrative Associate - Lev 1 & 2 Non Supvr 53900.16773 1.412184e+07 189006.99 7.214007e+02 0.000 5313.25 262 0.000000e+00 0.00 1.431085e+07 1.412184e+07 189006.99 NULL
2014 Department Of Education Admin Principal School-Neighborhood Worker 47181.00000 4.718100e+04 2973.00 2.973000e+03 2973.000 76.00 1 2.973000e+03 2973.00 5.015400e+04 5.015400e+04 0.00 NULL
2014 Department Of Education Admin Procurement Analyst 56582.86885 3.451555e+06 66334.60 1.087452e+03 0.000 2224.75 61 0.000000e+00 0.00 3.517890e+06 3.451555e+06 66334.60 NULL
2014 Department Of Education Admin Program Producer 65200.00000 6.520000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.520000e+04 6.520000e+04 0.00 NULL
2014 Department Of Education Admin Public Records Aide 38971.00000 3.507390e+05 871.17 9.679667e+01 0.000 78.75 9 0.000000e+00 0.00 3.516102e+05 3.507390e+05 871.17 NULL
2014 Department Of Education Admin Quality Assurance Specialist 47018.78947 8.933570e+05 28570.60 1.503716e+03 0.000 870.00 19 0.000000e+00 0.00 9.219276e+05 8.933570e+05 28570.60 NULL
2014 Department Of Education Admin Radio Repair Mechanic NA NA 68664.79 5.722066e+03 5019.955 1038.00 12 5.019955e+03 60239.46 NA NA NA NULL
2014 Department Of Education Admin Research Assistant 51172.35294 8.699300e+05 5542.47 3.260276e+02 0.000 158.25 17 0.000000e+00 0.00 8.754725e+05 8.699300e+05 5542.47 NULL
2014 Department Of Education Admin Roofer NA NA 10620.44 7.586029e+02 240.065 286.00 14 2.400650e+02 3360.91 NA NA NA NULL
2014 Department Of Education Admin School Business Manager 68572.39103 1.069729e+07 233720.39 1.498208e+03 0.000 5661.75 156 0.000000e+00 0.00 1.093101e+07 1.069729e+07 233720.39 NULL
2014 Department Of Education Admin School Computer Technology Specialist 42743.03416 9.104266e+06 301051.59 1.413388e+03 21.430 9615.00 213 2.143000e+01 4564.59 9.405318e+06 9.108831e+06 296487.00 NULL
2014 Department Of Education Admin School Equipment Maintainer 39447.00000 7.889400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.889400e+04 7.889400e+04 0.00 NULL
2014 Department Of Education Admin School Food Service Manager 48137.47045 2.036215e+07 189136.26 4.471306e+02 46.400 6248.75 423 4.640000e+01 19627.20 2.055129e+07 2.038178e+07 169509.06 NULL
2014 Department Of Education Admin School Lunch Aide 27711.62273 2.291751e+07 1439313.73 1.740404e+03 1116.390 17619.00 827 1.116390e+03 923254.53 2.435683e+07 2.384077e+07 516059.20 NULL
2014 Department Of Education Admin School Lunch Assistant 35708.10294 2.428151e+06 81064.65 1.192127e+03 147.395 3353.75 68 1.473950e+02 10022.86 2.509216e+06 2.438174e+06 71041.79 NULL
2014 Department Of Education Admin School Lunch Assistant Cook 35591.31148 2.171070e+06 34482.71 5.652903e+02 97.330 1425.00 61 9.733000e+01 5937.13 2.205553e+06 2.177007e+06 28545.58 NULL
2014 Department Of Education Admin School Lunch Loader And Handler 44938.70000 1.348161e+06 46445.74 1.548191e+03 61.295 1571.50 30 6.129500e+01 1838.85 1.394607e+06 1.350000e+06 44606.89 NULL
2014 Department Of Education Admin School Plant Manager 106500.35294 5.431518e+06 236.25 4.632353e+00 0.000 0.00 51 0.000000e+00 0.00 5.431754e+06 5.431518e+06 236.25 NULL
2014 Department Of Education Admin School-Neighborhood Worker 35982.00000 1.439280e+05 859.33 2.148325e+02 0.000 30.75 4 0.000000e+00 0.00 1.447873e+05 1.439280e+05 859.33 NULL
2014 Department Of Education Admin Secretary 41297.02758 4.171000e+06 50439.57 4.994017e+02 0.000 1835.00 101 0.000000e+00 0.00 4.221439e+06 4.171000e+06 50439.57 NULL
2014 Department Of Education Admin Secretary To Community School Board 42191.18919 1.561074e+06 794.83 2.148189e+01 0.000 34.75 37 0.000000e+00 0.00 1.561869e+06 1.561074e+06 794.83 NULL
2014 Department Of Education Admin Secretary To Dept Chancellor 72737.00000 7.273700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.273700e+04 7.273700e+04 0.00 NULL
2014 Department Of Education Admin Secretary To The Chancellor 59169.00000 5.916900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.916900e+04 5.916900e+04 0.00 NULL
2014 Department Of Education Admin Secretary To The Counsel To The Chancellor 70876.50000 1.417530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.417530e+05 1.417530e+05 0.00 NULL
2014 Department Of Education Admin Secretary To The Deputy Chancellor 71541.50000 1.430830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.430830e+05 1.430830e+05 0.00 NULL
2014 Department Of Education Admin Secretary To The Special Commissioner Investigation Nyc Sch 76667.00000 7.666700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.666700e+04 7.666700e+04 0.00 NULL
2014 Department Of Education Admin Senior Estimator 75067.00000 7.506700e+04 1557.74 1.557740e+03 1557.740 34.50 1 1.557740e+03 1557.74 7.662474e+04 7.662474e+04 0.00 NULL
2014 Department Of Education Admin Senior Occupational Therapist 45660.94451 7.579717e+07 207687.51 1.251130e+02 0.000 1801.75 1660 0.000000e+00 0.00 7.600486e+07 7.579717e+07 207687.51 NULL
2014 Department Of Education Admin Senior Physical Therapist 44607.07177 4.201986e+07 49933.21 5.300765e+01 0.000 345.00 942 0.000000e+00 0.00 4.206979e+07 4.201986e+07 49933.21 NULL
2014 Department Of Education Admin Senior School Lunch Aide 32166.09667 9.649829e+06 178376.65 5.945888e+02 59.975 7557.75 300 5.997500e+01 17992.50 9.828206e+06 9.667822e+06 160384.15 NULL
2014 Department Of Education Admin Senior School-Neighborhood Worker 43055.50000 1.722220e+05 6206.99 1.551747e+03 1053.960 236.00 4 1.053960e+03 4215.84 1.784290e+05 1.764378e+05 1991.15 NULL
2014 Department Of Education Admin Service Inspector 40308.00000 1.612320e+05 33.10 8.275000e+00 8.275 0.75 4 8.275000e+00 33.10 1.612651e+05 1.612651e+05 0.00 NULL
2014 Department Of Education Admin Sign Language Interpreter 69404.33380 1.596300e+06 33900.85 1.473950e+03 207.400 643.50 23 2.074000e+02 4770.20 1.630201e+06 1.601070e+06 29130.65 NULL
2014 Department Of Education Admin Sign Language Interpreter 1,2,3-10m 53944.00000 5.394400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.394400e+04 5.394400e+04 0.00 NULL
2014 Department Of Education Admin Special Assistant To The Chancellor 98834.12500 7.906730e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.906730e+05 7.906730e+05 0.00 NULL
2014 Department Of Education Admin Staff Analyst 52162.00000 5.216200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.216200e+04 5.216200e+04 0.00 NULL
2014 Department Of Education Admin Staff Nurse 42486.58711 3.670841e+07 1216261.83 1.407710e+03 24.135 22322.33 864 2.413500e+01 20852.64 3.792467e+07 3.672926e+07 1195409.19 NULL
2014 Department Of Education Admin Statistician 55116.00000 5.511600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.511600e+04 5.511600e+04 0.00 NULL
2014 Department Of Education Admin Steam Fitter NA NA 268131.60 8.937720e+03 8742.360 2741.00 30 8.742360e+03 262270.80 NA NA NA NULL
2014 Department Of Education Admin Steam Fitter’s Helper NA NA 66593.47 8.324184e+03 4238.765 1001.75 8 4.238765e+03 33910.12 NA NA NA NULL
2014 Department Of Education Admin Stock Worker 34726.85590 6.250834e+05 9213.81 5.118783e+02 0.000 461.50 18 0.000000e+00 0.00 6.342972e+05 6.250834e+05 9213.81 NULL
2014 Department Of Education Admin Substance Abuse Prevention & Intervention Specialist 52601.89783 1.483374e+07 40355.96 1.431062e+02 0.000 1243.50 282 0.000000e+00 0.00 1.487409e+07 1.483374e+07 40355.96 NULL
2014 Department Of Education Admin Supervising Computer Service Technician 65704.77342 2.956715e+06 65043.78 1.445417e+03 126.420 1479.25 45 1.264200e+02 5688.90 3.021759e+06 2.962404e+06 59354.88 NULL
2014 Department Of Education Admin Supervising Therapist 38677.63624 2.088592e+06 3833.19 7.098500e+01 0.000 56.00 54 0.000000e+00 0.00 2.092426e+06 2.088592e+06 3833.19 NULL
2014 Department Of Education Admin Supervisor 58342.75000 2.333710e+05 6056.53 1.514132e+03 324.470 131.75 4 3.244700e+02 1297.88 2.394275e+05 2.346689e+05 4758.65 NULL
2014 Department Of Education Admin Supervisor Bricklayer NA NA 20962.25 2.096225e+04 20962.250 346.75 1 2.096225e+04 20962.25 NA NA NA NULL
2014 Department Of Education Admin Supervisor Carpenter NA NA 126248.31 1.147712e+04 10618.610 1662.50 11 1.061861e+04 116804.71 NA NA NA NULL
2014 Department Of Education Admin Supervisor Electrician NA NA 83239.83 1.040498e+04 7833.385 992.50 8 7.833385e+03 62667.08 NA NA NA NULL
2014 Department Of Education Admin Supervisor Of Electrical Installations & Maintenance 70280.86667 1.054213e+06 77518.94 5.167929e+03 907.990 1495.75 15 9.079900e+02 13619.85 1.131732e+06 1.067833e+06 63899.09 NULL
2014 Department Of Education Admin Supervisor Of Mechanical Installations & Maintenance 68629.28000 1.715732e+06 217060.71 8.682428e+03 4593.840 4253.25 25 4.593840e+03 114846.00 1.932793e+06 1.830578e+06 102214.71 NULL
2014 Department Of Education Admin Supervisor Of Mechanics NA NA 125328.24 6.962680e+03 4565.465 1821.25 18 4.565465e+03 82178.37 NA NA NA NULL
2014 Department Of Education Admin Supervisor Of Motor Transport 63470.00000 6.347000e+04 3255.18 3.255180e+03 3255.180 67.00 1 3.255180e+03 3255.18 6.672518e+04 6.672518e+04 0.00 NULL
2014 Department Of Education Admin Supervisor Of Nurses 45539.74388 1.275113e+06 4868.07 1.738596e+02 0.000 20.75 28 0.000000e+00 0.00 1.279981e+06 1.275113e+06 4868.07 NULL
2014 Department Of Education Admin Supervisor Of Office Machine Operations 44744.66667 2.684680e+05 25949.89 4.324982e+03 49.040 742.50 6 4.904000e+01 294.24 2.944179e+05 2.687622e+05 25655.65 NULL
2014 Department Of Education Admin Supervisor Of Stock Workers 53712.00000 1.074240e+05 130.10 6.505000e+01 65.050 7.50 2 6.505000e+01 130.10 1.075541e+05 1.075541e+05 0.00 NULL
2014 Department Of Education Admin Supervisor Painter NA NA 15090.00 5.030000e+03 1620.000 254.50 3 1.620000e+03 4860.00 NA NA NA NULL
2014 Department Of Education Admin Supervisor Plasterer NA NA 31460.98 1.048699e+04 13209.520 551.00 3 1.048699e+04 31460.98 NA NA NA NULL
2014 Department Of Education Admin Supervisor Plumber NA NA 71358.21 1.019403e+04 10963.260 767.50 7 1.019403e+04 71358.21 NA NA NA NULL
2014 Department Of Education Admin Supervisor Roofer NA NA 24195.60 6.048900e+03 2361.150 485.00 4 2.361150e+03 9444.60 NA NA NA NULL
2014 Department Of Education Admin Supervisor Steamfitter NA NA 84383.75 2.109594e+04 18705.500 823.50 4 1.870550e+04 74822.00 NA NA NA NULL
2014 Department Of Education Admin Telecommunication Manager 99950.25000 3.998010e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.998010e+05 3.998010e+05 0.00 NULL
2014 Department Of Education Admin Telecommunications Associate 70921.64706 1.205668e+06 2241.90 1.318765e+02 0.000 62.75 17 0.000000e+00 0.00 1.207910e+06 1.205668e+06 2241.90 NULL
2014 Department Of Education Admin Thermostat Repairer NA NA 30826.70 3.853338e+03 1288.280 339.00 8 1.288280e+03 10306.24 NA NA NA NULL
2014 Department Of Education Admin Transportation Inspector 39770.00000 3.977000e+04 3936.96 3.936960e+03 3936.960 176.50 1 3.936960e+03 3936.96 4.370696e+04 4.370696e+04 0.00 NULL
2014 Department Of Finance *Attorney At Law 91097.45000 1.821949e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.821949e+06 1.821949e+06 0.00 NULL
2014 Department Of Finance *Certified Local Area Network Administrator 85260.33333 2.557810e+05 137.89 4.596333e+01 0.000 3.00 3 0.000000e+00 0.00 2.559189e+05 2.557810e+05 137.89 NULL
2014 Department Of Finance Accountant 57499.00000 2.299960e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.299960e+05 2.299960e+05 0.00 NULL
2014 Department Of Finance Adm Manager-Non-Mgrl From M1/M2 83078.00000 6.646240e+05 5032.67 6.290838e+02 0.000 112.75 8 0.000000e+00 0.00 6.696567e+05 6.646240e+05 5032.67 NULL
2014 Department Of Finance Administrative Accountant 97037.50000 3.881500e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.881500e+05 3.881500e+05 0.00 NULL
2014 Department Of Finance Administrative Assessor 110858.33333 6.651500e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.651500e+05 6.651500e+05 0.00 NULL
2014 Department Of Finance Administrative Deputy Register 100676.33333 3.020290e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.020290e+05 3.020290e+05 0.00 NULL
2014 Department Of Finance Administrative Investigator 107288.00000 2.145760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.145760e+05 2.145760e+05 0.00 NULL
2014 Department Of Finance Administrative Labor Relations Analyst 119000.00000 1.190000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.190000e+05 1.190000e+05 0.00 NULL
2014 Department Of Finance Administrative Manager 97603.00000 2.928090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.928090e+05 2.928090e+05 0.00 NULL
2014 Department Of Finance Administrative Procurement Analyst 93244.33333 2.797330e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.797330e+05 2.797330e+05 0.00 NULL
2014 Department Of Finance Administrative Space Analyst 86528.00000 8.652800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.652800e+04 8.652800e+04 0.00 NULL
2014 Department Of Finance Administrative Staff Analyst 95205.13333 1.285269e+07 5148.07 3.813385e+01 0.000 114.75 135 0.000000e+00 0.00 1.285784e+07 1.285269e+07 5148.07 NULL
2014 Department Of Finance Administrative Storekeeper 96029.00000 1.920580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.920580e+05 1.920580e+05 0.00 NULL
2014 Department Of Finance Administrative Tax Auditor 101872.97059 3.463681e+06 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 3.463681e+06 3.463681e+06 0.00 NULL
2014 Department Of Finance Agency Attorney 86304.80000 8.630480e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 8.630480e+05 8.630480e+05 0.00 NULL
2014 Department Of Finance Agency Attorney Interne 62000.00000 1.860000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.860000e+05 1.860000e+05 0.00 NULL
2014 Department Of Finance Agency Chief Contracting Officer 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2014 Department Of Finance Agency Security Director 87988.00000 8.798800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.798800e+04 8.798800e+04 0.00 NULL
2014 Department Of Finance Assistant City Assessor 35253.35000 7.050670e+05 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 7.050670e+05 7.050670e+05 0.00 NULL
2014 Department Of Finance Assistant Commissioner 156250.00000 6.250000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.250000e+05 6.250000e+05 0.00 NULL
2014 Department Of Finance Associate Fraud Investigator 63161.22222 1.136902e+06 39923.46 2.217970e+03 1136.520 1034.00 18 1.136520e+03 20457.36 1.176825e+06 1.157359e+06 19466.10 NULL
2014 Department Of Finance Associate Staff Analyst 75868.03226 2.351909e+06 4699.18 1.515865e+02 0.000 88.00 31 0.000000e+00 0.00 2.356608e+06 2.351909e+06 4699.18 NULL
2014 Department Of Finance Asst Commissioner 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2014 Department Of Finance Bookkeeper 44771.50000 8.954300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.954300e+04 8.954300e+04 0.00 NULL
2014 Department Of Finance Cashier 39671.40000 1.983570e+05 61.52 1.230400e+01 0.000 2.50 5 0.000000e+00 0.00 1.984185e+05 1.983570e+05 61.52 NULL
2014 Department Of Finance Certified It Administrator 93867.00000 9.386700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.386700e+04 9.386700e+04 0.00 NULL
2014 Department Of Finance Chief Review Assessor 117500.00000 2.350000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.350000e+05 2.350000e+05 0.00 NULL
2014 Department Of Finance City Assessor 69724.83333 7.948631e+06 176834.37 1.551179e+03 263.585 3378.00 114 2.635850e+02 30048.69 8.125465e+06 7.978680e+06 146785.68 NULL
2014 Department Of Finance City Laborer NA NA 29454.40 1.963627e+03 2504.610 847.25 15 1.963627e+03 29454.40 NA NA NA NULL
2014 Department Of Finance City Planning Technician 50000.00000 5.000000e+04 136.84 1.368400e+02 136.840 5.00 1 1.368400e+02 136.84 5.013684e+04 5.013684e+04 0.00 NULL
2014 Department Of Finance City Register 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2014 Department Of Finance City Research Scientist 73781.20000 7.378120e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.378120e+05 7.378120e+05 0.00 NULL
2014 Department Of Finance City Tax Auditor 55963.96697 1.863600e+07 979.88 2.942583e+00 0.000 27.25 333 0.000000e+00 0.00 1.863698e+07 1.863600e+07 979.88 NULL
2014 Department Of Finance Clerical Aide 32400.87500 5.184140e+05 795.92 4.974500e+01 0.000 28.00 16 0.000000e+00 0.00 5.192099e+05 5.184140e+05 795.92 NULL
2014 Department Of Finance Clerical Associate Most Mayoral Ag 38235.39535 1.150885e+07 42178.49 1.401279e+02 0.000 1593.00 301 0.000000e+00 0.00 1.155103e+07 1.150885e+07 42178.49 NULL
2014 Department Of Finance Commissioner Of Finance 205180.00000 6.155400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.155400e+05 6.155400e+05 0.00 NULL
2014 Department Of Finance Community Assistant 33156.00000 1.657800e+05 1965.54 3.931080e+02 0.000 81.00 5 0.000000e+00 0.00 1.677455e+05 1.657800e+05 1965.54 NULL
2014 Department Of Finance Community Associate 44496.00000 2.669760e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.669760e+05 2.669760e+05 0.00 NULL
2014 Department Of Finance Community Coordinator 63718.00000 1.274360e+05 124.52 6.226000e+01 62.260 3.25 2 6.226000e+01 124.52 1.275605e+05 1.275605e+05 0.00 NULL
2014 Department Of Finance Community Service Aide 29857.00000 2.985700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.985700e+04 2.985700e+04 0.00 NULL
2014 Department Of Finance Computer Aide-Non-Spvr 46253.25000 1.850130e+05 82.17 2.054250e+01 0.000 7.00 4 0.000000e+00 0.00 1.850952e+05 1.850130e+05 82.17 NULL
2014 Department Of Finance Computer Associate 63972.50000 2.686845e+06 24835.36 5.913181e+02 0.000 622.00 42 0.000000e+00 0.00 2.711680e+06 2.686845e+06 24835.36 NULL
2014 Department Of Finance Computer Programmer Analyst 61187.00000 4.283090e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.283090e+05 4.283090e+05 0.00 NULL
2014 Department Of Finance Computer Service Technician 39747.00000 3.974700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.974700e+04 3.974700e+04 0.00 NULL
2014 Department Of Finance Computer Specialist 90811.85149 9.171997e+06 46090.60 4.563426e+02 0.000 995.50 101 0.000000e+00 0.00 9.218088e+06 9.171997e+06 46090.60 NULL
2014 Department Of Finance Computer Systems Manager 117399.06780 1.385309e+07 0.00 0.000000e+00 0.000 0.00 118 0.000000e+00 0.00 1.385309e+07 1.385309e+07 0.00 NULL
2014 Department Of Finance Counsel 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2014 Department Of Finance Deputy City Sheriff - Non-Spvr 68266.56780 8.055455e+06 721018.85 6.110329e+03 4308.580 14208.75 118 4.308580e+03 508412.44 8.776474e+06 8.563867e+06 212606.41 NULL
2014 Department Of Finance Deputy Commissioner 175000.00000 7.000000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.000000e+05 7.000000e+05 0.00 NULL
2014 Department Of Finance Director Of Public Information 106580.00000 2.131600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.131600e+05 2.131600e+05 0.00 NULL
2014 Department Of Finance Examiner Of Accounts 68500.00000 1.370000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.370000e+05 1.370000e+05 0.00 NULL
2014 Department Of Finance Exec Asst To The Commissioner Of Finance 65000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2014 Department Of Finance Executive Agency Counsel 119281.78571 1.669945e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.669945e+06 1.669945e+06 0.00 NULL
2014 Department Of Finance Fraud Investigator 67377.00000 6.737700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.737700e+04 6.737700e+04 0.00 NULL
2014 Department Of Finance Hearing Officer 38036.42986 4.564372e+06 0.00 0.000000e+00 0.000 0.00 120 0.000000e+00 0.00 4.564372e+06 4.564372e+06 0.00 NULL
2014 Department Of Finance Investigator 50131.00000 1.002620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.002620e+05 1.002620e+05 0.00 NULL
2014 Department Of Finance Investigator Empl Disc 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2014 Department Of Finance Management Auditor 64231.00000 6.423100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.423100e+04 6.423100e+04 0.00 NULL
2014 Department Of Finance Mortgage Tax Examiner 49203.66667 1.476110e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.476110e+05 1.476110e+05 0.00 NULL
2014 Department Of Finance Motor Vehicle Operator 41377.00000 4.137700e+04 1102.00 1.102000e+03 1102.000 45.25 1 1.102000e+03 1102.00 4.247900e+04 4.247900e+04 0.00 NULL
2014 Department Of Finance Principal Administrative Associate - Lev 1 & 2 Non Supvr 54773.61342 1.714414e+07 171924.58 5.492798e+02 0.000 4741.00 313 0.000000e+00 0.00 1.731607e+07 1.714414e+07 171924.58 NULL
2014 Department Of Finance Procurement Analyst 62942.83333 3.776570e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.776570e+05 3.776570e+05 0.00 NULL
2014 Department Of Finance Public Records Aide 35236.00000 3.523600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.523600e+04 3.523600e+04 0.00 NULL
2014 Department Of Finance Research Assistant 52800.00000 5.280000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.280000e+04 5.280000e+04 0.00 NULL
2014 Department Of Finance Secretary 43414.16667 2.604850e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.604850e+05 2.604850e+05 0.00 NULL
2014 Department Of Finance Secretary Of Comm 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2014 Department Of Finance Secretary To Deputy Commissioner 64575.50000 1.291510e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.291510e+05 1.291510e+05 0.00 NULL
2014 Department Of Finance Senior Estimator 75000.00000 1.500000e+05 1325.60 6.628000e+02 662.800 26.50 2 6.628000e+02 1325.60 1.513256e+05 1.513256e+05 0.00 NULL
2014 Department Of Finance Senior Photographer 51600.00000 5.160000e+04 784.21 7.842100e+02 784.210 20.50 1 7.842100e+02 784.21 5.238421e+04 5.238421e+04 0.00 NULL
2014 Department Of Finance Space Analyst 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2014 Department Of Finance Staff Analyst 61340.32000 1.533508e+06 13885.10 5.554040e+02 0.000 341.25 25 0.000000e+00 0.00 1.547393e+06 1.533508e+06 13885.10 NULL
2014 Department Of Finance Staff Analyst Trainee 43068.50000 8.613700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.613700e+04 8.613700e+04 0.00 NULL
2014 Department Of Finance Summer College Intern 826.82100 2.480463e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.480463e+03 2.480463e+03 0.00 NULL
2014 Department Of Finance Summer Graduate Intern 1642.11840 3.284237e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.284237e+03 3.284237e+03 0.00 NULL
2014 Department Of Finance Supervising Deputy Sheriff - Al 1 Only 40 Hr 96028.07692 1.248365e+06 163651.93 1.258861e+04 3153.540 2296.75 13 3.153540e+03 40996.02 1.412017e+06 1.289361e+06 122655.91 NULL
2014 Department Of Finance Supervising Special Officer 48499.00000 2.424950e+05 7877.64 1.575528e+03 921.910 238.25 5 9.219100e+02 4609.55 2.503726e+05 2.471045e+05 3268.09 NULL
2014 Department Of Finance Tax Map Cartographer 58534.25000 2.341370e+05 919.74 2.299350e+02 111.195 24.25 4 1.111950e+02 444.78 2.350567e+05 2.345818e+05 474.96 NULL
2014 Department Of Investigation Adm Manager-Non-Mgrl From M1/M2 63386.10000 6.338610e+05 4116.15 4.116150e+02 101.170 106.25 10 1.011700e+02 1011.70 6.379772e+05 6.348727e+05 3104.45 NULL
2014 Department Of Investigation Administrative Manager 116392.00000 1.163920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.163920e+05 1.163920e+05 0.00 NULL
2014 Department Of Investigation Administrative Public Information Specialist 115000.00000 2.300000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.300000e+05 2.300000e+05 0.00 NULL
2014 Department Of Investigation Administrative Staff Analyst 97790.66667 5.867440e+05 43.79 7.298333e+00 0.000 1.00 6 0.000000e+00 0.00 5.867878e+05 5.867440e+05 43.79 NULL
2014 Department Of Investigation Assistant Commissioner 136632.00000 4.098960e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.098960e+05 4.098960e+05 0.00 NULL
2014 Department Of Investigation Associate Staff Analyst 87424.33333 2.622730e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.622730e+05 2.622730e+05 0.00 NULL
2014 Department Of Investigation Clerical Associate Most Mayoral Ag 42509.62500 3.400770e+05 4813.44 6.016800e+02 0.000 117.00 8 0.000000e+00 0.00 3.448904e+05 3.400770e+05 4813.44 NULL
2014 Department Of Investigation Commissioner 205180.00000 4.103600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.103600e+05 4.103600e+05 0.00 NULL
2014 Department Of Investigation Community Assistant 25262.12585 3.284076e+05 8785.42 6.758015e+02 286.920 548.50 13 2.869200e+02 3729.96 3.371931e+05 3.321376e+05 5055.46 NULL
2014 Department Of Investigation Community Associate 39515.50000 3.161240e+05 7315.05 9.143813e+02 0.000 262.25 8 0.000000e+00 0.00 3.234390e+05 3.161240e+05 7315.05 NULL
2014 Department Of Investigation Computer Associate 76507.00000 7.650700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.650700e+04 7.650700e+04 0.00 NULL
2014 Department Of Investigation Computer Specialist 89196.00000 4.459800e+05 15002.73 3.000546e+03 0.000 211.00 5 0.000000e+00 0.00 4.609827e+05 4.459800e+05 15002.73 NULL
2014 Department Of Investigation Computer Systems Manager 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2014 Department Of Investigation Confidential Investigator 55068.82667 4.130162e+06 173009.25 2.306790e+03 487.470 5177.75 75 4.874700e+02 36560.25 4.303171e+06 4.166722e+06 136449.00 NULL
2014 Department Of Investigation Confidential Secretary To The Deputy Commissioner 53000.00000 5.300000e+04 3212.74 3.212740e+03 3212.740 128.00 1 3.212740e+03 3212.74 5.621274e+04 5.621274e+04 0.00 NULL
2014 Department Of Investigation Deputy Commissioner 180000.00000 1.800000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.800000e+05 1.800000e+05 0.00 NULL
2014 Department Of Investigation Deputy Inspector General 101704.58824 1.728978e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.728978e+06 1.728978e+06 0.00 NULL
2014 Department Of Investigation Examining Attorney 102438.75000 1.639020e+06 9014.79 5.634244e+02 0.000 194.75 16 0.000000e+00 0.00 1.648035e+06 1.639020e+06 9014.79 NULL
2014 Department Of Investigation Executive Agency Counsel 183000.00000 1.830000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.830000e+05 1.830000e+05 0.00 NULL
2014 Department Of Investigation Executive Director 135492.00000 1.354920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.354920e+05 1.354920e+05 0.00 NULL
2014 Department Of Investigation Inspector General 117576.39130 2.704257e+06 19992.71 8.692483e+02 0.000 404.50 23 0.000000e+00 0.00 2.724250e+06 2.704257e+06 19992.71 NULL
2014 Department Of Investigation Office Machine Aide 38091.00000 3.809100e+04 1072.28 1.072280e+03 1072.280 41.00 1 1.072280e+03 1072.28 3.916328e+04 3.916328e+04 0.00 NULL
2014 Department Of Investigation Principal Administrative Associate - Lev 1 & 2 Non Supvr 55334.60000 5.533460e+05 741.60 7.416000e+01 0.000 2.00 10 0.000000e+00 0.00 5.540876e+05 5.533460e+05 741.60 NULL
2014 Department Of Investigation Procurement Analyst 56462.33333 1.693870e+05 270.39 9.013000e+01 0.000 9.25 3 0.000000e+00 0.00 1.696574e+05 1.693870e+05 270.39 NULL
2014 Department Of Investigation Secretary 46172.00000 1.385160e+05 3510.24 1.170080e+03 0.000 96.75 3 0.000000e+00 0.00 1.420262e+05 1.385160e+05 3510.24 NULL
2014 Department Of Investigation Special Commissioner Of Investigation-Nyc School Dist. Doi 193788.00000 1.937880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.937880e+05 1.937880e+05 0.00 NULL
2014 Department Of Investigation Special Investigator 79393.25806 2.461191e+06 104131.65 3.359085e+03 269.280 2494.00 31 2.692800e+02 8347.68 2.565323e+06 2.469539e+06 95783.97 NULL
2014 Department Of Investigation Stock Worker 31873.00000 3.187300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.187300e+04 3.187300e+04 0.00 NULL
2014 Department Of Juvenile Justice Community Associate 40224.00000 4.022400e+04 375.30 3.753000e+02 375.300 0.00 1 3.753000e+02 375.30 4.059930e+04 4.059930e+04 0.00 NULL
2014 Department Of Probation *Attorney At Law 78612.75000 3.144510e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.144510e+05 3.144510e+05 0.00 NULL
2014 Department Of Probation Administrative Probation Officer 85044.41463 3.486821e+06 0.00 0.000000e+00 0.000 0.00 41 0.000000e+00 0.00 3.486821e+06 3.486821e+06 0.00 NULL
2014 Department Of Probation Administrative Procurement Analyst 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2014 Department Of Probation Administrative Public Information Specialist 90000.00000 1.800000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.800000e+05 1.800000e+05 0.00 NULL
2014 Department Of Probation Administrative Staff Analyst 95089.84000 2.377246e+06 10404.03 4.161612e+02 0.000 208.50 25 0.000000e+00 0.00 2.387650e+06 2.377246e+06 10404.03 NULL
2014 Department Of Probation Agency Attorney 76004.57143 5.320320e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.320320e+05 5.320320e+05 0.00 NULL
2014 Department Of Probation Agency Chief Contracting Officer 98000.00000 9.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.800000e+04 9.800000e+04 0.00 NULL
2014 Department Of Probation Associate Staff Analyst 83112.22222 7.480100e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.480100e+05 7.480100e+05 0.00 NULL
2014 Department Of Probation City Custodial Assistant 35000.00000 3.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.500000e+04 3.500000e+04 0.00 NULL
2014 Department Of Probation City Research Scientist 81686.00000 1.633720e+05 341.10 1.705500e+02 170.550 22.00 2 1.705500e+02 341.10 1.637131e+05 1.637131e+05 0.00 NULL
2014 Department Of Probation Clerical Associate Most Mayoral Ag 35411.33333 2.124680e+06 9859.75 1.643292e+02 0.000 280.00 60 0.000000e+00 0.00 2.134540e+06 2.124680e+06 9859.75 NULL
2014 Department Of Probation College Aide 12615.89000 1.261589e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.261589e+04 1.261589e+04 0.00 NULL
2014 Department Of Probation Community Assistant 31534.00000 3.153400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.153400e+04 3.153400e+04 0.00 NULL
2014 Department Of Probation Community Associate 40467.17647 6.879420e+05 5251.81 3.089300e+02 101.720 131.00 17 1.017200e+02 1729.24 6.931938e+05 6.896712e+05 3522.57 NULL
2014 Department Of Probation Community Coordinator 65663.75000 2.626550e+05 2046.84 5.117100e+02 0.000 49.50 4 0.000000e+00 0.00 2.647018e+05 2.626550e+05 2046.84 NULL
2014 Department Of Probation Community Service Aide 24756.00000 1.237800e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.237800e+05 1.237800e+05 0.00 NULL
2014 Department Of Probation Computer Associate 72323.00000 7.232300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.232300e+04 7.232300e+04 0.00 NULL
2014 Department Of Probation Computer Service Technician 39747.00000 3.974700e+04 987.13 9.871300e+02 987.130 34.75 1 9.871300e+02 987.13 4.073413e+04 4.073413e+04 0.00 NULL
2014 Department Of Probation Computer Specialist 86495.14286 6.054660e+05 25727.76 3.675394e+03 0.000 441.50 7 0.000000e+00 0.00 6.311938e+05 6.054660e+05 25727.76 NULL
2014 Department Of Probation Computer Systems Manager 115790.00000 1.157900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.157900e+05 1.157900e+05 0.00 NULL
2014 Department Of Probation Counsel 152000.00000 1.520000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.520000e+05 1.520000e+05 0.00 NULL
2014 Department Of Probation Custodian 60000.00000 6.000000e+04 2198.27 2.198270e+03 2198.270 43.50 1 2.198270e+03 2198.27 6.219827e+04 6.219827e+04 0.00 NULL
2014 Department Of Probation Deputy Director Of Probation 153000.00000 3.060000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.060000e+05 3.060000e+05 0.00 NULL
2014 Department Of Probation Director Of Probation 192198.00000 1.921980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.921980e+05 1.921980e+05 0.00 NULL
2014 Department Of Probation Executive Agency Counsel 133343.00000 2.666860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.666860e+05 2.666860e+05 0.00 NULL
2014 Department Of Probation Executive Director Of Administration 152000.00000 1.520000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.520000e+05 1.520000e+05 0.00 NULL
2014 Department Of Probation Laboratory Helper 27470.00000 2.747000e+04 35.43 3.543000e+01 35.430 0.00 1 3.543000e+01 35.43 2.750543e+04 2.750543e+04 0.00 NULL
2014 Department Of Probation Principal Administrative Associate - Lev 1 & 2 Non Supvr 49809.35849 2.639896e+06 25928.97 4.892258e+02 0.000 738.75 53 0.000000e+00 0.00 2.665825e+06 2.639896e+06 25928.97 NULL
2014 Department Of Probation Probation Assistant 23350.00000 9.340000e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 9.340000e+04 9.340000e+04 0.00 NULL
2014 Department Of Probation Probation Officer 53520.45763 2.841936e+07 238400.64 4.489654e+02 0.000 5899.00 531 0.000000e+00 0.00 2.865776e+07 2.841936e+07 238400.64 NULL
2014 Department Of Probation Probation Officer Trainee 37958.05882 6.452870e+05 2289.10 1.346529e+02 0.000 89.25 17 0.000000e+00 0.00 6.475761e+05 6.452870e+05 2289.10 NULL
2014 Department Of Probation Procurement Analyst 51080.66667 1.532420e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.532420e+05 1.532420e+05 0.00 NULL
2014 Department Of Probation Secretary 35307.18919 1.306366e+06 7726.49 2.088241e+02 0.000 271.50 37 0.000000e+00 0.00 1.314092e+06 1.306366e+06 7726.49 NULL
2014 Department Of Probation Senior Mental Health Worker 5935.74667 1.780724e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.780724e+04 1.780724e+04 0.00 NULL
2014 Department Of Probation Staff Analyst 57677.83333 3.460670e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.460670e+05 3.460670e+05 0.00 NULL
2014 Department Of Probation Staff Analyst Trainee 40000.00000 4.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.000000e+04 4.000000e+04 0.00 NULL
2014 Department Of Probation Stock Worker 31873.00000 3.187300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.187300e+04 3.187300e+04 0.00 NULL
2014 Department Of Probation Summer College Intern 2805.57440 1.178341e+05 0.00 0.000000e+00 0.000 0.00 42 0.000000e+00 0.00 1.178341e+05 1.178341e+05 0.00 NULL
2014 Department Of Probation Summer Graduate Intern 3275.35714 2.292750e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.292750e+04 2.292750e+04 0.00 NULL
2014 Department Of Probation Supervising Computer Service Technician 62877.00000 1.257540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.257540e+05 1.257540e+05 0.00 NULL
2014 Department Of Probation Supervising Probation Officer 65148.24224 1.048887e+07 131713.61 8.180970e+02 0.000 2709.75 161 0.000000e+00 0.00 1.062058e+07 1.048887e+07 131713.61 NULL
2014 Department Of Sanitation *Attorney At Law 86018.40000 4.300920e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.300920e+05 4.300920e+05 0.00 NULL
2014 Department Of Sanitation *Certified Local Area Network Administrator 94756.00000 9.475600e+04 17712.83 1.771283e+04 17712.830 247.00 1 1.771283e+04 17712.83 1.124688e+05 1.124688e+05 0.00 NULL
2014 Department Of Sanitation *Custodial Assistant 31903.00000 3.190300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.190300e+04 3.190300e+04 0.00 NULL
2014 Department Of Sanitation *Watchperson 33761.50000 6.752300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.752300e+04 6.752300e+04 0.00 NULL
2014 Department Of Sanitation Accountant 57488.50000 3.449310e+05 507.25 8.454167e+01 0.000 17.75 6 0.000000e+00 0.00 3.454382e+05 3.449310e+05 507.25 NULL
2014 Department Of Sanitation Adm Manager-Non-Mgrl From M1/M2 66595.50000 1.864674e+06 123267.73 4.402419e+03 2934.375 2907.25 28 2.934375e+03 82162.50 1.987942e+06 1.946836e+06 41105.23 NULL
2014 Department Of Sanitation Administrative Architect 87193.50000 1.743870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.743870e+05 1.743870e+05 0.00 NULL
2014 Department Of Sanitation Administrative Business Promotion Coordinator 81782.00000 8.178200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.178200e+04 8.178200e+04 0.00 NULL
2014 Department Of Sanitation Administrative City Planner 114802.00000 1.148020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.148020e+05 1.148020e+05 0.00 NULL
2014 Department Of Sanitation Administrative Construction Project Manager 102821.83333 6.169310e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.169310e+05 6.169310e+05 0.00 NULL
2014 Department Of Sanitation Administrative Engineer 134020.37500 1.072163e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.072163e+06 1.072163e+06 0.00 NULL
2014 Department Of Sanitation Administrative Management Auditor 114216.00000 1.142160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.142160e+05 1.142160e+05 0.00 NULL
2014 Department Of Sanitation Administrative Manager 100485.40000 5.024270e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.024270e+05 5.024270e+05 0.00 NULL
2014 Department Of Sanitation Administrative Procurement Analyst 92072.00000 9.207200e+04 151.19 1.511900e+02 151.190 3.00 1 1.511900e+02 151.19 9.222319e+04 9.222319e+04 0.00 NULL
2014 Department Of Sanitation Administrative Project Manager 133778.25000 5.351130e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.351130e+05 5.351130e+05 0.00 NULL
2014 Department Of Sanitation Administrative Public Information Specialist 137036.33333 4.111090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.111090e+05 4.111090e+05 0.00 NULL
2014 Department Of Sanitation Administrative Sanitation Enforcement Agent 82855.00000 8.285500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.285500e+04 8.285500e+04 0.00 NULL
2014 Department Of Sanitation Administrative Staff Analyst 85807.44277 5.491676e+06 137896.84 2.154638e+03 79.770 2369.50 64 7.977000e+01 5105.28 5.629573e+06 5.496782e+06 132791.56 NULL
2014 Department Of Sanitation Administrative Supervisor Of Building Maintenance 85000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2014 Department Of Sanitation Agency Attorney 80148.75000 6.411900e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.411900e+05 6.411900e+05 0.00 NULL
2014 Department Of Sanitation Architect 72674.00000 7.267400e+04 4124.14 4.124140e+03 4124.140 95.25 1 4.124140e+03 4124.14 7.679814e+04 7.679814e+04 0.00 NULL
2014 Department Of Sanitation Assistant Architect 59762.00000 2.390480e+05 460.44 1.151100e+02 0.000 14.50 4 0.000000e+00 0.00 2.395084e+05 2.390480e+05 460.44 NULL
2014 Department Of Sanitation Assistant Civil Engineer 59108.66667 3.546520e+05 10153.64 1.692273e+03 0.000 219.75 6 0.000000e+00 0.00 3.648056e+05 3.546520e+05 10153.64 NULL
2014 Department Of Sanitation Assistant Electrical Engineer 61374.00000 1.227480e+05 136.58 6.829000e+01 68.290 4.00 2 6.829000e+01 136.58 1.228846e+05 1.228846e+05 0.00 NULL
2014 Department Of Sanitation Assistant Mechanical Engineer 56145.00000 1.122900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.122900e+05 1.122900e+05 0.00 NULL
2014 Department Of Sanitation Associate Director-Operational Services 95307.00000 9.530700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.530700e+04 9.530700e+04 0.00 NULL
2014 Department Of Sanitation Associate Project Manager 75813.00000 6.065040e+05 1738.99 2.173738e+02 36.120 24.00 8 3.612000e+01 288.96 6.082430e+05 6.067930e+05 1450.03 NULL
2014 Department Of Sanitation Associate Public Information Specialist 65052.09091 7.155730e+05 13777.81 1.252528e+03 329.300 351.75 11 3.293000e+02 3622.30 7.293508e+05 7.191953e+05 10155.51 NULL
2014 Department Of Sanitation Associate Quality Assurance Specialist 68631.00000 6.863100e+04 140.87 1.408700e+02 140.870 3.75 1 1.408700e+02 140.87 6.877187e+04 6.877187e+04 0.00 NULL
2014 Department Of Sanitation Associate Retirement Benefits Examiner 52162.00000 5.216200e+04 206.99 2.069900e+02 206.990 7.25 1 2.069900e+02 206.99 5.236899e+04 5.236899e+04 0.00 NULL
2014 Department Of Sanitation Associate Sanitation Enforcement Agent 45042.10345 2.612442e+06 315310.15 5.436382e+03 5175.220 9501.25 58 5.175220e+03 300162.76 2.927752e+06 2.912605e+06 15147.39 NULL
2014 Department Of Sanitation Associate Staff Analyst 72865.44000 1.821636e+06 56923.62 2.276945e+03 112.130 1086.75 25 1.121300e+02 2803.25 1.878560e+06 1.824439e+06 54120.37 NULL
2014 Department Of Sanitation Auto Machinist NA NA 321256.48 1.235602e+04 13062.015 6247.00 26 1.235602e+04 321256.48 NA NA NA NULL
2014 Department Of Sanitation Auto Mechanic NA NA 5489779.18 1.087085e+04 11952.940 105748.42 505 1.087085e+04 5489779.18 NA NA NA NULL
2014 Department Of Sanitation Automotive Service Worker 34215.35714 9.580300e+05 124314.92 4.439819e+03 4911.815 5288.00 28 4.439819e+03 124314.92 1.082345e+06 1.082345e+06 0.00 NULL
2014 Department Of Sanitation Blacksmith NA NA 1736.64 5.788800e+02 0.000 24.00 3 0.000000e+00 0.00 NA NA NA NULL
2014 Department Of Sanitation Boiler Maker NA NA 7742.52 2.580840e+03 868.320 107.00 3 8.683200e+02 2604.96 NA NA NA NULL
2014 Department Of Sanitation Bookkeeper 41598.50000 5.823790e+05 3663.43 2.616736e+02 0.000 100.50 14 0.000000e+00 0.00 5.860424e+05 5.823790e+05 3663.43 NULL
2014 Department Of Sanitation Carpenter NA NA 29066.79 2.235907e+03 2492.180 439.75 13 2.235907e+03 29066.79 NA NA NA NULL
2014 Department Of Sanitation Carriage Upholsterer NA NA 2355.60 2.355600e+03 2355.600 44.00 1 2.355600e+03 2355.60 NA NA NA NULL
2014 Department Of Sanitation Case Mgmt Nurse 83166.00000 8.316600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.316600e+04 8.316600e+04 0.00 NULL
2014 Department Of Sanitation Cement Mason NA NA 16062.62 5.354207e+03 5462.100 198.50 3 5.354207e+03 16062.62 NA NA NA NULL
2014 Department Of Sanitation Certified It Administrator 79462.00000 7.946200e+04 15868.58 1.586858e+04 15868.580 281.25 1 1.586858e+04 15868.58 9.533058e+04 9.533058e+04 0.00 NULL
2014 Department Of Sanitation Certified It Developer 79462.00000 7.946200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.946200e+04 7.946200e+04 0.00 NULL
2014 Department Of Sanitation Chaplain 24780.25000 9.912100e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 9.912100e+04 9.912100e+04 0.00 NULL
2014 Department Of Sanitation Chauffer Attendant 43860.00000 4.386000e+04 6847.83 6.847830e+03 6847.830 213.00 1 6.847830e+03 6847.83 5.070783e+04 5.070783e+04 0.00 NULL
2014 Department Of Sanitation City Attendant 31367.20000 1.097852e+06 39326.08 1.123602e+03 543.180 1544.00 35 5.431800e+02 19011.30 1.137178e+06 1.116863e+06 20314.78 NULL
2014 Department Of Sanitation City Clinician 95042.30500 9.504230e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.504230e+04 9.504230e+04 0.00 NULL
2014 Department Of Sanitation City Custodial Assistant 37671.00000 1.130130e+05 32685.14 1.089505e+04 11288.990 1057.50 3 1.089505e+04 32685.14 1.456981e+05 1.456981e+05 0.00 NULL
2014 Department Of Sanitation City Deputy Medical Director 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2014 Department Of Sanitation City Laborer NA NA 53391.17 4.853743e+03 2934.360 1030.00 11 2.934360e+03 32277.96 NA NA NA NULL
2014 Department Of Sanitation City Medical Specialist 58369.49813 3.502170e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.502170e+05 3.502170e+05 0.00 NULL
2014 Department Of Sanitation City Planner 69259.33333 2.077780e+05 1862.42 6.208067e+02 696.370 26.75 3 6.208067e+02 1862.42 2.096404e+05 2.096404e+05 0.00 NULL
2014 Department Of Sanitation City Research Scientist 84151.00000 3.366040e+05 17207.34 4.301835e+03 3286.690 321.50 4 3.286690e+03 13146.76 3.538113e+05 3.497508e+05 4060.58 NULL
2014 Department Of Sanitation City Seasonal Aide 561.63911 1.987079e+06 80850.00 2.285189e+01 0.000 4493.00 3538 0.000000e+00 0.00 2.067929e+06 1.987079e+06 80850.00 NULL
2014 Department Of Sanitation Civil Engineer 84159.60000 4.207980e+05 1355.76 2.711520e+02 0.000 21.00 5 0.000000e+00 0.00 4.221538e+05 4.207980e+05 1355.76 NULL
2014 Department Of Sanitation Clerical Aide 27251.50000 2.725150e+05 8356.50 8.356500e+02 126.820 467.50 10 1.268200e+02 1268.20 2.808715e+05 2.737832e+05 7088.30 NULL
2014 Department Of Sanitation Clerical Associate Most Mayoral Ag 36719.10938 9.400092e+06 1253677.84 4.897179e+03 3279.620 45688.50 256 3.279620e+03 839582.72 1.065377e+07 1.023967e+07 414095.12 NULL
2014 Department Of Sanitation College Aide 5828.22133 3.322086e+05 0.00 0.000000e+00 0.000 0.00 57 0.000000e+00 0.00 3.322086e+05 3.322086e+05 0.00 NULL
2014 Department Of Sanitation Commissioner Of Sanitation 205180.00000 4.103600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.103600e+05 4.103600e+05 0.00 NULL
2014 Department Of Sanitation Community Assistant 32595.33333 4.889300e+05 13409.60 8.939733e+02 172.410 582.75 15 1.724100e+02 2586.15 5.023396e+05 4.915162e+05 10823.45 NULL
2014 Department Of Sanitation Community Associate 41198.67568 1.524351e+06 40217.53 1.086960e+03 20.340 1462.50 37 2.034000e+01 752.58 1.564569e+06 1.525104e+06 39464.95 NULL
2014 Department Of Sanitation Community Coordinator 56832.11765 9.661460e+05 59554.08 3.503181e+03 1754.750 1525.00 17 1.754750e+03 29830.75 1.025700e+06 9.959768e+05 29723.33 NULL
2014 Department Of Sanitation Computer Aide-Non-Spvr 43574.00000 3.050180e+05 32580.78 4.654397e+03 2538.000 927.75 7 2.538000e+03 17766.00 3.375988e+05 3.227840e+05 14814.78 NULL
2014 Department Of Sanitation Computer Associate 59440.05000 1.188801e+06 70411.26 3.520563e+03 134.755 1601.25 20 1.347550e+02 2695.10 1.259212e+06 1.191496e+06 67716.16 NULL
2014 Department Of Sanitation Computer Programmer Analyst 68664.00000 6.866400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.866400e+04 6.866400e+04 0.00 NULL
2014 Department Of Sanitation Computer Service Technician 47902.66667 1.437080e+05 11468.67 3.822890e+03 5664.670 351.75 3 3.822890e+03 11468.67 1.551767e+05 1.551767e+05 0.00 NULL
2014 Department Of Sanitation Computer Specialist 89086.46875 2.850767e+06 184990.53 5.780954e+03 2943.405 3043.00 32 2.943405e+03 94188.96 3.035758e+06 2.944956e+06 90801.57 NULL
2014 Department Of Sanitation Computer Systems Manager 122172.91667 2.932150e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 2.932150e+06 2.932150e+06 0.00 NULL
2014 Department Of Sanitation Construction Laborer NA NA 67643.96 5.636997e+03 4170.375 1233.00 12 4.170375e+03 50044.50 NA NA NA NULL
2014 Department Of Sanitation Construction Project Manager 74402.33333 4.464140e+05 994.43 1.657383e+02 0.000 28.75 6 0.000000e+00 0.00 4.474084e+05 4.464140e+05 994.43 NULL
2014 Department Of Sanitation Counselor 70464.00000 7.046400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.046400e+04 7.046400e+04 0.00 NULL
2014 Department Of Sanitation Dep Dir Mtr Eq Mntc 131542.00000 1.315420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.315420e+05 1.315420e+05 0.00 NULL
2014 Department Of Sanitation Deputy Commissioner 195590.00000 5.867700e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.867700e+05 5.867700e+05 0.00 NULL
2014 Department Of Sanitation Deputy Director Of Motor Equipment Maintenance 129039.00000 2.580780e+05 16494.42 8.247210e+03 8247.210 179.00 2 8.247210e+03 16494.42 2.745724e+05 2.745724e+05 0.00 NULL
2014 Department Of Sanitation Director Of Building Management 141441.00000 1.414410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.414410e+05 1.414410e+05 0.00 NULL
2014 Department Of Sanitation Director Of Motor Equipment Maintenance 158147.33333 4.744420e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.744420e+05 4.744420e+05 0.00 NULL
2014 Department Of Sanitation Economist 59274.00000 5.927400e+04 383.01 3.830100e+02 383.010 11.50 1 3.830100e+02 383.01 5.965701e+04 5.965701e+04 0.00 NULL
2014 Department Of Sanitation Electrical Engineer 86336.00000 8.633600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.633600e+04 8.633600e+04 0.00 NULL
2014 Department Of Sanitation Electrician NA NA 450060.54 9.575756e+03 8526.000 8170.75 47 8.526000e+03 400722.00 NA NA NA NULL
2014 Department Of Sanitation Estimator 55345.00000 5.534500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.534500e+04 5.534500e+04 0.00 NULL
2014 Department Of Sanitation Executive Agency Counsel 118845.25000 4.753810e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.753810e+05 4.753810e+05 0.00 NULL
2014 Department Of Sanitation Executive Assistant To The Commissioner 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2014 Department Of Sanitation General Superintendent 120426.20147 3.287635e+07 4956135.66 1.815434e+04 18313.890 59142.49 273 1.815434e+04 4956135.66 3.783249e+07 3.783249e+07 0.00 NULL
2014 Department Of Sanitation Geologist 55345.00000 5.534500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.534500e+04 5.534500e+04 0.00 NULL
2014 Department Of Sanitation Graphic Artist 52175.00000 1.043500e+05 28.30 1.415000e+01 14.150 1.00 2 1.415000e+01 28.30 1.043783e+05 1.043783e+05 0.00 NULL
2014 Department Of Sanitation High Pressure Plant Tender NA NA 16976.02 2.829337e+03 2833.255 331.00 6 2.829337e+03 16976.02 NA NA NA NULL
2014 Department Of Sanitation Incinerator Facility Manager 94436.00000 9.443600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.443600e+04 9.443600e+04 0.00 NULL
2014 Department Of Sanitation Investigator 46767.54545 5.144430e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.144430e+05 5.144430e+05 0.00 NULL
2014 Department Of Sanitation Job Training Participant 6493.73012 1.013022e+06 432.00 2.769231e+00 0.000 24.00 156 0.000000e+00 0.00 1.013454e+06 1.013022e+06 432.00 NULL
2014 Department Of Sanitation Laboratory Associate 41123.00000 8.224600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.224600e+04 8.224600e+04 0.00 NULL
2014 Department Of Sanitation Letterer And Sign Painter NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2014 Department Of Sanitation Machinist NA NA 77483.38 4.842711e+03 3174.185 1487.50 16 3.174185e+03 50786.96 NA NA NA NULL
2014 Department Of Sanitation Machinist’s Helper NA NA 4808.61 4.808610e+03 4808.610 102.00 1 4.808610e+03 4808.61 NA NA NA NULL
2014 Department Of Sanitation Maintenance Worker NA NA 3234.83 8.087075e+02 0.000 74.50 4 0.000000e+00 0.00 NA NA NA NULL
2014 Department Of Sanitation Management Auditor 65916.50000 1.318330e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.318330e+05 1.318330e+05 0.00 NULL
2014 Department Of Sanitation Mechanical Engineer 75741.00000 1.514820e+05 559.58 2.797900e+02 279.790 0.00 2 2.797900e+02 559.58 1.520416e+05 1.520416e+05 0.00 NULL
2014 Department Of Sanitation Medical Director 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2014 Department Of Sanitation Medical Record Librarian 46928.60000 2.346430e+05 182.31 3.646200e+01 0.000 6.50 5 0.000000e+00 0.00 2.348253e+05 2.346430e+05 182.31 NULL
2014 Department Of Sanitation Metal Work Mechanic 83610.83333 4.514985e+06 417200.10 7.725928e+03 4239.205 7065.00 54 4.239205e+03 228917.07 4.932185e+06 4.743902e+06 188283.03 NULL
2014 Department Of Sanitation Motor Vehicle Operator 42195.50000 2.531730e+05 21672.17 3.612028e+03 2434.355 695.50 6 2.434355e+03 14606.13 2.748452e+05 2.677791e+05 7066.04 NULL
2014 Department Of Sanitation Office Machine Aide 34751.00000 1.737550e+05 1237.85 2.475700e+02 217.930 51.50 5 2.179300e+02 1089.65 1.749929e+05 1.748446e+05 148.20 NULL
2014 Department Of Sanitation Oiler NA NA 33708.96 5.618160e+03 5583.480 470.00 6 5.583480e+03 33500.88 NA NA NA NULL
2014 Department Of Sanitation Painter NA NA 1809.14 6.030467e+02 515.610 33.00 3 5.156100e+02 1546.83 NA NA NA NULL
2014 Department Of Sanitation Photographer 49402.00000 4.940200e+04 2622.88 2.622880e+03 2622.880 88.75 1 2.622880e+03 2622.88 5.202488e+04 5.202488e+04 0.00 NULL
2014 Department Of Sanitation Plumber NA NA 103591.52 8.632627e+03 4670.015 1126.25 12 4.670015e+03 56040.18 NA NA NA NULL
2014 Department Of Sanitation Principal Administrative Associate - Lev 1 & 2 Non Supvr 50340.92868 3.423183e+06 353736.18 5.202003e+03 2314.185 10026.25 68 2.314185e+03 157364.58 3.776919e+06 3.580548e+06 196371.60 NULL
2014 Department Of Sanitation Procurement Analyst 52328.53333 7.849280e+05 14806.86 9.871240e+02 105.660 401.00 15 1.056600e+02 1584.90 7.997349e+05 7.865129e+05 13221.96 NULL
2014 Department Of Sanitation Project Manager 55345.00000 1.106900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.106900e+05 1.106900e+05 0.00 NULL
2014 Department Of Sanitation Research Assistant 50299.85714 3.520990e+05 8459.20 1.208457e+03 0.000 225.25 7 0.000000e+00 0.00 3.605582e+05 3.520990e+05 8459.20 NULL
2014 Department Of Sanitation Rubber Tire Repairer NA NA 42341.37 3.257028e+03 2468.700 1133.50 13 2.468700e+03 32093.10 NA NA NA NULL
2014 Department Of Sanitation Sanitation Compliance Agent 33550.10000 3.355010e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 3.355010e+05 3.355010e+05 0.00 NULL
2014 Department Of Sanitation Sanitation Enforcement Agent 33161.11168 6.532739e+06 496830.86 2.521984e+03 2350.790 20438.25 197 2.350790e+03 463105.63 7.029570e+06 6.995845e+06 33725.23 NULL
2014 Department Of Sanitation Sanitation Worker 62947.84763 4.015443e+08 87013566.57 1.364063e+04 14417.730 1846528.94 6379 1.364063e+04 87013566.57 4.885579e+08 4.885579e+08 0.00 NULL
2014 Department Of Sanitation Secretary 42334.88889 3.810140e+05 8634.78 9.594200e+02 83.420 271.75 9 8.342000e+01 750.78 3.896488e+05 3.817648e+05 7884.00 NULL
2014 Department Of Sanitation Secretary To The Commissioner 75439.00000 7.543900e+04 433.56 4.335600e+02 433.560 7.00 1 4.335600e+02 433.56 7.587256e+04 7.587256e+04 0.00 NULL
2014 Department Of Sanitation Senior Automotive Specialist 81675.00000 8.167500e+04 12076.01 1.207601e+04 12076.010 242.25 1 1.207601e+04 12076.01 9.375101e+04 9.375101e+04 0.00 NULL
2014 Department Of Sanitation Senior Estimator 76410.20000 3.820510e+05 1090.96 2.181920e+02 0.000 1.00 5 0.000000e+00 0.00 3.831420e+05 3.820510e+05 1090.96 NULL
2014 Department Of Sanitation Senior Stationary Engineer NA NA 35075.16 1.753758e+04 17537.580 403.50 2 1.753758e+04 35075.16 NA NA NA NULL
2014 Department Of Sanitation Sheet Metal Worker NA NA 27088.32 5.417664e+03 8428.560 278.00 5 5.417664e+03 27088.32 NA NA NA NULL
2014 Department Of Sanitation Staff Analyst 56243.38462 7.311640e+05 23826.41 1.832801e+03 0.000 533.00 13 0.000000e+00 0.00 7.549904e+05 7.311640e+05 23826.41 NULL
2014 Department Of Sanitation Staff Nurse 67733.00000 1.354660e+05 0.00 0.000000e+00 0.000 2.75 2 0.000000e+00 0.00 1.354660e+05 1.354660e+05 0.00 NULL
2014 Department Of Sanitation Stationary Engineer NA NA 214931.65 8.266602e+03 4724.160 2989.75 26 4.724160e+03 122828.16 NA NA NA NULL
2014 Department Of Sanitation Statistician 48762.00000 4.876200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.876200e+04 4.876200e+04 0.00 NULL
2014 Department Of Sanitation Steam Fitter NA NA 130421.34 1.863162e+04 16306.680 1337.25 7 1.630668e+04 114146.76 NA NA NA NULL
2014 Department Of Sanitation Steam Fitter’s Helper NA NA 62224.61 1.555615e+04 11306.425 868.25 4 1.130642e+04 45225.70 NA NA NA NULL
2014 Department Of Sanitation Stock Worker 39417.80000 1.970890e+05 51827.65 1.036553e+04 6703.430 1864.75 5 6.703430e+03 33517.15 2.489166e+05 2.306061e+05 18310.50 NULL
2014 Department Of Sanitation Summer College Intern 3408.49542 2.045097e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.045097e+04 2.045097e+04 0.00 NULL
2014 Department Of Sanitation Summer Graduate Intern 6238.73180 3.743239e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.743239e+04 3.743239e+04 0.00 NULL
2014 Department Of Sanitation Supervising Computer Service Technician 67322.00000 6.732200e+04 7475.36 7.475360e+03 7475.360 144.50 1 7.475360e+03 7475.36 7.479736e+04 7.479736e+04 0.00 NULL
2014 Department Of Sanitation Supervisor 87689.12448 8.383080e+07 19277647.63 2.016490e+04 20355.170 275866.81 956 2.016490e+04 19277647.63 1.031085e+08 1.031085e+08 0.00 NULL
2014 Department Of Sanitation Supervisor Carpenter NA NA 18973.84 9.486920e+03 9486.920 268.00 2 9.486920e+03 18973.84 NA NA NA NULL
2014 Department Of Sanitation Supervisor Electrician NA NA 25340.04 8.446680e+03 6231.120 336.25 3 6.231120e+03 18693.36 NA NA NA NULL
2014 Department Of Sanitation Supervisor Of Ironwork 105601.00000 2.112020e+05 20773.70 1.038685e+04 10386.850 284.50 2 1.038685e+04 20773.70 2.319757e+05 2.319757e+05 0.00 NULL
2014 Department Of Sanitation Supervisor Of Mechanics 107526.78947 8.172036e+06 1344292.42 1.768806e+04 19935.050 18185.25 76 1.768806e+04 1344292.42 9.516328e+06 9.516328e+06 0.00 NULL
2014 Department Of Sanitation Supervisor Of Office Machine Operations 39462.25000 1.578490e+05 8384.96 2.096240e+03 266.110 313.50 4 2.661100e+02 1064.44 1.662340e+05 1.589134e+05 7320.52 NULL
2014 Department Of Sanitation Supervisor Of Stock Workers 49117.29412 8.349940e+05 255798.58 1.504698e+04 12104.650 7538.75 17 1.210465e+04 205779.05 1.090793e+06 1.040773e+06 50019.53 NULL
2014 Department Of Sanitation Supervisor Painter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2014 Department Of Sanitation Supervisor Plumber NA NA 37019.69 1.233990e+04 14850.610 394.25 3 1.233990e+04 37019.69 NA NA NA NULL
2014 Department Of Sanitation Supervisor Sheet Metal Worker NA NA 12346.74 1.234674e+04 12346.740 151.50 1 1.234674e+04 12346.74 NA NA NA NULL
2014 Department Of Sanitation Supervisor Steamfitter NA NA 60766.75 3.038338e+04 30383.375 644.00 2 3.038338e+04 60766.75 NA NA NA NULL
2014 Department Of Sanitation Surveyor 72383.00000 7.238300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.238300e+04 7.238300e+04 0.00 NULL
2014 Department Of Sanitation Telecommunications Associate 61666.66667 1.850000e+05 21779.10 7.259700e+03 2942.460 414.50 3 2.942460e+03 8827.38 2.067791e+05 1.938274e+05 12951.72 NULL
2014 Department Of Sanitation Tractor Operator NA NA 60681.92 1.517048e+04 15715.450 598.50 4 1.517048e+04 60681.92 NA NA NA NULL
2014 Department Of Sanitation Welder NA NA 131677.08 1.881101e+04 21403.520 1803.00 7 1.881101e+04 131677.08 NA NA NA NULL
2014 Department Of Transportation *Certified Wide Area Network Administrator 95896.00000 9.589600e+04 1250.29 1.250290e+03 1250.290 23.50 1 1.250290e+03 1250.29 9.714629e+04 9.714629e+04 0.00 NULL
2014 Department Of Transportation Accountant 49680.00000 1.341360e+06 36461.17 1.350414e+03 0.000 795.25 27 0.000000e+00 0.00 1.377821e+06 1.341360e+06 36461.17 NULL
2014 Department Of Transportation Adm Manager-Non-Mgrl From M1/M2 64821.22047 8.232295e+06 565642.30 4.453876e+03 557.760 13061.50 127 5.577600e+02 70835.52 8.797937e+06 8.303131e+06 494806.78 NULL
2014 Department Of Transportation Admin Community Relations Specialist 108896.25000 4.355850e+05 2511.34 6.278350e+02 21.915 33.25 4 2.191500e+01 87.66 4.380963e+05 4.356727e+05 2423.68 NULL
2014 Department Of Transportation Administrative Accountant 111408.33333 3.342250e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.342250e+05 3.342250e+05 0.00 NULL
2014 Department Of Transportation Administrative City Planner 107776.87500 8.622150e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.622150e+05 8.622150e+05 0.00 NULL
2014 Department Of Transportation Administrative Community Relations Specialist 116690.00000 1.166900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.166900e+05 1.166900e+05 0.00 NULL
2014 Department Of Transportation Administrative Director Of Marine Maintenance 131250.00000 1.312500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.312500e+05 1.312500e+05 0.00 NULL
2014 Department Of Transportation Administrative Engineer 115966.19403 7.769735e+06 27111.92 4.046555e+02 0.000 438.00 67 0.000000e+00 0.00 7.796847e+06 7.769735e+06 27111.92 NULL
2014 Department Of Transportation Administrative Graphic Artist 90564.00000 9.056400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.056400e+04 9.056400e+04 0.00 NULL
2014 Department Of Transportation Administrative Inspector 102600.90909 1.128610e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.128610e+06 1.128610e+06 0.00 NULL
2014 Department Of Transportation Administrative Investigator 74952.00000 7.495200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.495200e+04 7.495200e+04 0.00 NULL
2014 Department Of Transportation Administrative Management Auditor 119753.00000 3.592590e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.592590e+05 3.592590e+05 0.00 NULL
2014 Department Of Transportation Administrative Manager 99617.33333 8.965560e+05 20318.65 2.257628e+03 0.000 343.00 9 0.000000e+00 0.00 9.168747e+05 8.965560e+05 20318.65 NULL
2014 Department Of Transportation Administrative Procurement Analyst 97772.66667 2.933180e+05 47047.95 1.568265e+04 1179.340 686.50 3 1.179340e+03 3538.02 3.403660e+05 2.968560e+05 43509.93 NULL
2014 Department Of Transportation Administrative Project Manager 115906.91667 4.172649e+06 26432.16 7.342267e+02 0.000 382.50 36 0.000000e+00 0.00 4.199081e+06 4.172649e+06 26432.16 NULL
2014 Department Of Transportation Administrative Public Information Specialist 110000.00000 1.100000e+05 13671.47 1.367147e+04 13671.470 225.00 1 1.367147e+04 13671.47 1.236715e+05 1.236715e+05 0.00 NULL
2014 Department Of Transportation Administrative Space Analyst 113400.00000 1.134000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.134000e+05 1.134000e+05 0.00 NULL
2014 Department Of Transportation Administrative Staff Analyst 98715.13131 9.772798e+06 377721.08 3.815364e+03 0.000 6726.25 99 0.000000e+00 0.00 1.015052e+07 9.772798e+06 377721.08 NULL
2014 Department Of Transportation Administrative Superintendent Of Bridge Operations 91997.00000 9.199700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.199700e+04 9.199700e+04 0.00 NULL
2014 Department Of Transportation Administrative Superintendent Of Highway Operations 107153.17391 2.464523e+06 17199.51 7.478048e+02 0.000 228.00 23 0.000000e+00 0.00 2.481723e+06 2.464523e+06 17199.51 NULL
2014 Department Of Transportation Administrative Transportation Coordinator 115441.56250 1.847065e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.847065e+06 1.847065e+06 0.00 NULL
2014 Department Of Transportation Agency Attorney 74568.63942 9.693923e+05 411.64 3.166462e+01 0.000 1.50 13 0.000000e+00 0.00 9.698040e+05 9.693923e+05 411.64 NULL
2014 Department Of Transportation Agency Attorney Interne 52482.00000 5.248200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.248200e+04 5.248200e+04 0.00 NULL
2014 Department Of Transportation Agency Chief Contracting Officer 148400.00000 1.484000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.484000e+05 1.484000e+05 0.00 NULL
2014 Department Of Transportation Agency Security Director 116303.00000 1.163030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.163030e+05 1.163030e+05 0.00 NULL
2014 Department Of Transportation Apprentice Inspector 36534.90373 2.374769e+06 279273.91 4.296522e+03 2939.390 10791.25 65 2.939390e+03 191060.35 2.654043e+06 2.565829e+06 88213.56 NULL
2014 Department Of Transportation Area Supervisor 94738.67568 3.505331e+06 2049750.05 5.539865e+04 53988.590 29162.50 37 5.398859e+04 1997577.83 5.555081e+06 5.502909e+06 52172.22 NULL
2014 Department Of Transportation Assistant Accountant 47611.00000 4.761100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.761100e+04 4.761100e+04 0.00 NULL
2014 Department Of Transportation Assistant Captain 63014.00000 8.821960e+05 473822.48 3.384446e+04 32700.935 7644.00 14 3.270094e+04 457813.09 1.356018e+06 1.340009e+06 16009.39 NULL
2014 Department Of Transportation Assistant City Highway Repairer 37529.40759 1.362317e+07 2320339.01 6.392118e+03 5309.830 73247.93 363 5.309830e+03 1927468.29 1.594351e+07 1.555064e+07 392870.72 NULL
2014 Department Of Transportation Assistant Civil Engineer 59333.51579 5.636684e+06 594373.72 6.256565e+03 879.240 13476.00 95 8.792400e+02 83527.80 6.231058e+06 5.720212e+06 510845.92 NULL
2014 Department Of Transportation Assistant Commissioner 145083.00000 2.901660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.901660e+05 2.901660e+05 0.00 NULL
2014 Department Of Transportation Assistant Director 102788.00000 1.027880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.027880e+05 1.027880e+05 0.00 NULL
2014 Department Of Transportation Assistant Electrical Engineer 57420.67742 1.780041e+06 205459.48 6.627725e+03 1261.520 4897.75 31 1.261520e+03 39107.12 1.985500e+06 1.819148e+06 166352.36 NULL
2014 Department Of Transportation Assistant Highway Transportation Specialist 50171.63636 5.518880e+05 14977.04 1.361549e+03 0.000 476.00 11 0.000000e+00 0.00 5.668650e+05 5.518880e+05 14977.04 NULL
2014 Department Of Transportation Assistant Mechanical Engineer 60210.25000 4.816820e+05 88727.03 1.109088e+04 4258.980 2162.75 8 4.258980e+03 34071.84 5.704090e+05 5.157538e+05 54655.19 NULL
2014 Department Of Transportation Assistant Urban Designer 55642.05000 5.564205e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.564205e+04 5.564205e+04 0.00 NULL
2014 Department Of Transportation Associate Inspector 64972.37500 2.079116e+06 451126.60 1.409771e+04 11411.465 9500.25 32 1.141147e+04 365166.88 2.530243e+06 2.444283e+06 85959.72 NULL
2014 Department Of Transportation Associate Investigator 54448.75000 4.355900e+05 46205.95 5.775744e+03 1003.415 1138.25 8 1.003415e+03 8027.32 4.817960e+05 4.436173e+05 38178.63 NULL
2014 Department Of Transportation Associate Operations Communications Specialist 50713.50000 2.028540e+05 24358.54 6.089635e+03 3702.605 579.00 4 3.702605e+03 14810.42 2.272125e+05 2.176644e+05 9548.12 NULL
2014 Department Of Transportation Associate Project Manager 72608.96774 4.501756e+06 583488.45 9.411104e+03 5418.875 11830.00 62 5.418875e+03 335970.25 5.085244e+06 4.837726e+06 247518.20 NULL
2014 Department Of Transportation Associate Public Information Specialist 67595.00000 1.351900e+05 32165.13 1.608257e+04 16082.565 749.25 2 1.608257e+04 32165.13 1.673551e+05 1.673551e+05 0.00 NULL
2014 Department Of Transportation Associate Quality Assurance Specialist 59378.00000 2.375120e+05 93899.50 2.347488e+04 19765.380 2244.75 4 1.976538e+04 79061.52 3.314115e+05 3.165735e+05 14837.98 NULL
2014 Department Of Transportation Associate Staff Analyst 75305.85790 7.304668e+06 511032.40 5.268375e+03 166.400 9661.25 97 1.664000e+02 16140.80 7.815701e+06 7.320809e+06 494891.60 NULL
2014 Department Of Transportation Associate Traffic Enforcement Agent 28395.00000 2.839500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.839500e+04 2.839500e+04 0.00 NULL
2014 Department Of Transportation Associate Urban Designer 93929.50000 1.878590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.878590e+05 1.878590e+05 0.00 NULL
2014 Department Of Transportation Auto Machinist NA NA 104793.17 5.239658e+04 52396.585 1915.25 2 5.239658e+04 104793.17 NA NA NA NULL
2014 Department Of Transportation Auto Body Worker 48110.00000 9.622000e+04 21255.12 1.062756e+04 10627.560 630.00 2 1.062756e+04 21255.12 1.174751e+05 1.174751e+05 0.00 NULL
2014 Department Of Transportation Auto Mechanic NA NA 1546734.92 1.594572e+04 17497.440 28642.50 97 1.594572e+04 1546734.92 NA NA NA NULL
2014 Department Of Transportation Automotive Service Worker 39544.00000 3.558960e+05 67460.17 7.495574e+03 7722.830 2556.00 9 7.495574e+03 67460.17 4.233562e+05 4.233562e+05 0.00 NULL
2014 Department Of Transportation Blacksmith NA NA 98246.79 2.456170e+04 28772.145 1401.75 4 2.456170e+04 98246.79 NA NA NA NULL
2014 Department Of Transportation Blacksmith’s Helper NA NA 3500.43 3.500430e+03 3500.430 84.50 1 3.500430e+03 3500.43 NA NA NA NULL
2014 Department Of Transportation Boiler Maker NA NA 210603.78 2.340042e+04 33960.960 3015.75 9 2.340042e+04 210603.78 NA NA NA NULL
2014 Department Of Transportation Bookkeeper 39347.55556 3.541280e+05 1389.84 1.544267e+02 0.000 57.00 9 0.000000e+00 0.00 3.555178e+05 3.541280e+05 1389.84 NULL
2014 Department Of Transportation Bricklayer NA NA 296345.14 4.233502e+04 46713.840 4779.00 7 4.233502e+04 296345.14 NA NA NA NULL
2014 Department Of Transportation Bridge Operator 36687.53623 2.531440e+06 639812.49 9.272645e+03 8102.960 21843.34 69 8.102960e+03 559104.24 3.171252e+06 3.090544e+06 80708.25 NULL
2014 Department Of Transportation Bridge Painter NA NA 358303.00 1.557839e+04 15554.000 4150.50 23 1.555400e+04 357742.00 NA NA NA NULL
2014 Department Of Transportation Bridge Repairer And Riveter NA NA 1947953.02 4.530123e+04 45684.890 34626.08 43 4.530123e+04 1947953.02 NA NA NA NULL
2014 Department Of Transportation Captain 70926.00000 1.347594e+06 830373.65 4.370388e+04 45522.800 11789.25 19 4.370388e+04 830373.65 2.177968e+06 2.177968e+06 0.00 NULL
2014 Department Of Transportation Carpenter NA NA 504514.39 2.293247e+04 18613.215 8302.75 22 1.861322e+04 409490.73 NA NA NA NULL
2014 Department Of Transportation Cement Mason NA NA 1166983.77 6.864610e+04 65170.940 14341.75 17 6.517094e+04 1107905.98 NA NA NA NULL
2014 Department Of Transportation Certified It Administrator 102695.27475 1.026953e+06 321050.21 3.210502e+04 29445.315 4840.00 10 2.944531e+04 294453.15 1.348003e+06 1.321406e+06 26597.06 NULL
2014 Department Of Transportation Certified It Developer 97965.33333 2.938960e+05 66743.97 2.224799e+04 19125.370 1240.50 3 1.912537e+04 57376.11 3.606400e+05 3.512721e+05 9367.86 NULL
2014 Department Of Transportation Chief Marine Engineer 68789.00000 1.719725e+06 1713845.76 6.855383e+04 73038.480 26053.50 25 6.855383e+04 1713845.76 3.433571e+06 3.433571e+06 0.00 NULL
2014 Department Of Transportation City Attendant 32555.20400 1.692871e+06 155095.66 2.982609e+03 792.900 6580.63 52 7.929000e+02 41230.80 1.847966e+06 1.734101e+06 113864.86 NULL
2014 Department Of Transportation City Custodial Assistant 34340.35408 1.030211e+05 2887.64 9.625467e+02 549.560 109.75 3 5.495600e+02 1648.68 1.059087e+05 1.046697e+05 1238.96 NULL
2014 Department Of Transportation City Debris Remover 38395.53350 3.839553e+05 65560.56 6.556056e+03 2831.495 2356.00 10 2.831495e+03 28314.95 4.495159e+05 4.122703e+05 37245.61 NULL
2014 Department Of Transportation City Laborer NA NA 124265.24 6.540276e+03 5475.780 2902.25 19 5.475780e+03 104039.82 NA NA NA NULL
2014 Department Of Transportation City Parking Equipment Service Worker 36517.78182 4.016956e+06 881063.57 8.009669e+03 7917.145 32495.75 110 7.917145e+03 870885.95 4.898020e+06 4.887842e+06 10177.62 NULL
2014 Department Of Transportation City Planner 72178.21250 5.774257e+06 240126.69 3.001584e+03 474.385 5067.00 80 4.743850e+02 37950.80 6.014384e+06 5.812208e+06 202175.89 NULL
2014 Department Of Transportation City Planning Technician 42045.78947 7.988700e+05 9924.16 5.223242e+02 0.000 374.00 19 0.000000e+00 0.00 8.087942e+05 7.988700e+05 9924.16 NULL
2014 Department Of Transportation City Research Scientist 77974.85714 5.458240e+05 25377.21 3.625316e+03 117.660 464.75 7 1.176600e+02 823.62 5.712012e+05 5.466476e+05 24553.59 NULL
2014 Department Of Transportation City Tax Auditor 46088.00000 4.608800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.608800e+04 4.608800e+04 0.00 NULL
2014 Department Of Transportation Civil Engineer 82169.15385 8.545592e+06 794305.33 7.637551e+03 2489.850 14084.25 104 2.489850e+03 258944.40 9.339897e+06 8.804536e+06 535360.93 NULL
2014 Department Of Transportation Civil Engineering Intern 47137.25000 1.885490e+05 5494.43 1.373608e+03 1202.730 224.00 4 1.202730e+03 4810.92 1.940434e+05 1.933599e+05 683.51 NULL
2014 Department Of Transportation Clerical Aide 34642.00000 3.464200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.464200e+04 3.464200e+04 0.00 NULL
2014 Department Of Transportation Clerical Associate Most Mayoral Ag 38968.95138 9.196673e+06 666762.22 2.825264e+03 141.230 23786.25 236 1.412300e+02 33330.28 9.863435e+06 9.230003e+06 633431.94 NULL
2014 Department Of Transportation Climber & Pruner 57090.44444 5.138140e+05 119464.76 1.327386e+04 13241.710 3011.00 9 1.324171e+04 119175.39 6.332788e+05 6.329894e+05 289.37 NULL
2014 Department Of Transportation College Aide 5606.07146 2.410611e+05 0.00 0.000000e+00 0.000 0.00 43 0.000000e+00 0.00 2.410611e+05 2.410611e+05 0.00 NULL
2014 Department Of Transportation College Aide - Assignment Levels Ii And Iii 14309.52072 1.430952e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.430952e+05 1.430952e+05 0.00 NULL
2014 Department Of Transportation Commissioner Of Transportation 205180.00000 4.103600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.103600e+05 4.103600e+05 0.00 NULL
2014 Department Of Transportation Community Assistant 31362.06094 5.017930e+05 45147.73 2.821733e+03 1072.980 2114.50 16 1.072980e+03 17167.68 5.469407e+05 5.189607e+05 27980.05 NULL
2014 Department Of Transportation Community Associate 41630.99649 5.828340e+05 19100.39 1.364314e+03 248.100 755.50 14 2.481000e+02 3473.40 6.019343e+05 5.863074e+05 15626.99 NULL
2014 Department Of Transportation Community Coordinator 55443.12835 2.494941e+06 97682.95 2.170732e+03 444.320 2925.25 45 4.443200e+02 19994.40 2.592624e+06 2.514935e+06 77688.55 NULL
2014 Department Of Transportation Community Service Aide 21274.48547 1.276469e+05 2347.42 3.912367e+02 19.575 150.00 6 1.957500e+01 117.45 1.299943e+05 1.277644e+05 2229.97 NULL
2014 Department Of Transportation Computer Aide-Non-Spvr 43814.18500 1.796382e+06 122430.14 2.986101e+03 508.460 3856.75 41 5.084600e+02 20846.86 1.918812e+06 1.817228e+06 101583.28 NULL
2014 Department Of Transportation Computer Associate 63756.23402 1.466393e+06 205126.52 8.918544e+03 2385.680 4876.25 23 2.385680e+03 54870.64 1.671520e+06 1.521264e+06 150255.88 NULL
2014 Department Of Transportation Computer Programmer Analyst 57592.00000 5.759200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.759200e+04 5.759200e+04 0.00 NULL
2014 Department Of Transportation Computer Specialist 95537.28000 2.388432e+06 194027.37 7.761095e+03 719.790 3316.50 25 7.197900e+02 17994.75 2.582459e+06 2.406427e+06 176032.62 NULL
2014 Department Of Transportation Computer Systems Manager 131647.50000 7.898850e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.898850e+05 7.898850e+05 0.00 NULL
2014 Department Of Transportation Confidential Strategy Planner 72000.00000 7.200000e+04 5556.64 5.556640e+03 5556.640 153.75 1 5.556640e+03 5556.64 7.755664e+04 7.755664e+04 0.00 NULL
2014 Department Of Transportation Construction Project Manager 66025.42857 1.848712e+06 487007.69 1.739313e+04 13991.815 10013.25 28 1.399182e+04 391770.82 2.335720e+06 2.240483e+06 95236.87 NULL
2014 Department Of Transportation Counsel 200166.00000 2.001660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.001660e+05 2.001660e+05 0.00 NULL
2014 Department Of Transportation Crane Operator Ampes NA NA 408566.79 6.809446e+04 57159.420 3884.00 6 5.715942e+04 342956.52 NA NA NA NULL
2014 Department Of Transportation Customer Information Representative Ma L 1549 35790.92160 1.073728e+05 151.12 5.037333e+01 0.000 8.50 3 0.000000e+00 0.00 1.075239e+05 1.073728e+05 151.12 NULL
2014 Department Of Transportation Deckhand 48405.17949 1.132681e+07 3360212.25 1.435988e+04 11568.880 62719.75 234 1.156888e+04 2707117.92 1.468702e+07 1.403393e+07 653094.33 NULL
2014 Department Of Transportation Deputy Commissioner 197703.00000 5.931090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.931090e+05 5.931090e+05 0.00 NULL
2014 Department Of Transportation Deputy Director 119788.50000 2.395770e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.395770e+05 2.395770e+05 0.00 NULL
2014 Department Of Transportation Director Of Public Relations 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2014 Department Of Transportation Dockbuilder NA NA 238891.63 2.388916e+04 25773.275 4030.75 10 2.388916e+04 238891.63 NA NA NA NULL
2014 Department Of Transportation Electrical Engineer 71904.00000 1.438080e+05 69511.36 3.475568e+04 34755.680 1250.75 2 3.475568e+04 69511.36 2.133194e+05 2.133194e+05 0.00 NULL
2014 Department Of Transportation Electrician NA NA 2486363.11 3.453282e+04 31899.000 34932.00 72 3.189900e+04 2296728.00 NA NA NA NULL
2014 Department Of Transportation Electrician’s Helper NA NA 45017.66 1.500589e+04 13680.420 972.25 3 1.368042e+04 41041.26 NA NA NA NULL
2014 Department Of Transportation Engineering Technician 50102.57143 3.507180e+05 25464.70 3.637814e+03 1217.500 701.50 7 1.217500e+03 8522.50 3.761827e+05 3.592405e+05 16942.20 NULL
2014 Department Of Transportation Environmental Engineer 84002.66667 2.520080e+05 2724.80 9.082667e+02 0.000 44.00 3 0.000000e+00 0.00 2.547328e+05 2.520080e+05 2724.80 NULL
2014 Department Of Transportation Estimator 55345.00000 5.534500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.534500e+04 5.534500e+04 0.00 NULL
2014 Department Of Transportation Executive Agency Counsel 118803.36364 1.306837e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.306837e+06 1.306837e+06 0.00 NULL
2014 Department Of Transportation Executive Assistant To Commissioner Of Transportation 154677.00000 3.093540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.093540e+05 3.093540e+05 0.00 NULL
2014 Department Of Transportation Ferry Terminal Supervisor 67246.00000 8.069520e+05 273760.19 2.281335e+04 21589.540 5207.25 12 2.158954e+04 259074.48 1.080712e+06 1.066026e+06 14685.71 NULL
2014 Department Of Transportation Fraud Investigator 48277.00000 4.827700e+04 1098.99 1.098990e+03 1098.990 26.75 1 1.098990e+03 1098.99 4.937599e+04 4.937599e+04 0.00 NULL
2014 Department Of Transportation Gardener 55767.00000 1.115340e+05 21562.41 1.078120e+04 10781.205 562.00 2 1.078120e+04 21562.41 1.330964e+05 1.330964e+05 0.00 NULL
2014 Department Of Transportation Gasoline Roller Engineer-L15 NA NA 1362771.11 1.946816e+04 17622.340 17497.88 70 1.762234e+04 1233563.80 NA NA NA NULL
2014 Department Of Transportation Graphic Artist 57050.00000 1.141000e+05 227.07 1.135350e+02 113.535 6.75 2 1.135350e+02 227.07 1.143271e+05 1.143271e+05 0.00 NULL
2014 Department Of Transportation High Pressure Plant Tender NA NA 213341.53 2.666769e+04 22838.515 4738.75 8 2.283851e+04 182708.12 NA NA NA NULL
2014 Department Of Transportation Highway Repairer NA NA 8028012.99 1.571040e+04 14324.700 143062.45 511 1.432470e+04 7319921.70 NA NA NA NULL
2014 Department Of Transportation Highway Transportation Specialist 63963.13013 1.061788e+07 1846307.91 1.112234e+04 7622.365 39628.83 166 7.622365e+03 1265312.59 1.246419e+07 1.188319e+07 580995.32 NULL
2014 Department Of Transportation Highways And Sewers Inspector 55145.28000 5.514528e+06 772349.99 7.723500e+03 5992.595 19435.35 100 5.992595e+03 599259.50 6.286878e+06 6.113788e+06 173090.49 NULL
2014 Department Of Transportation Industrial Hygienist 57710.66667 3.462640e+05 43829.78 7.304963e+03 5061.455 1099.50 6 5.061455e+03 30368.73 3.900938e+05 3.766327e+05 13461.05 NULL
2014 Department Of Transportation Investigator 47310.33333 7.096550e+05 11857.90 7.905267e+02 257.860 413.75 15 2.578600e+02 3867.90 7.215129e+05 7.135229e+05 7990.00 NULL
2014 Department Of Transportation Investigator Empl Disc 35670.00000 3.567000e+04 422.20 4.222000e+02 422.200 19.25 1 4.222000e+02 422.20 3.609220e+04 3.609220e+04 0.00 NULL
2014 Department Of Transportation Laborer NA NA 2848.39 2.848390e+03 2848.390 58.00 1 2.848390e+03 2848.39 NA NA NA NULL
2014 Department Of Transportation Landscape Architect 67922.00000 6.792200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.792200e+04 6.792200e+04 0.00 NULL
2014 Department Of Transportation Letterer And Sign Painter NA NA 59629.96 7.453745e+03 6467.940 1613.25 8 6.467940e+03 51743.52 NA NA NA NULL
2014 Department Of Transportation Machinist NA NA 229448.93 1.638921e+04 20153.565 4365.00 14 1.638921e+04 229448.93 NA NA NA NULL
2014 Department Of Transportation Management Auditor 62292.58333 7.475110e+05 18163.02 1.513585e+03 0.000 355.75 12 0.000000e+00 0.00 7.656740e+05 7.475110e+05 18163.02 NULL
2014 Department Of Transportation Marine Electronics Technician 83989.00000 4.199450e+05 39522.38 7.904476e+03 3863.210 633.75 5 3.863210e+03 19316.05 4.594674e+05 4.392610e+05 20206.33 NULL
2014 Department Of Transportation Marine Engineer 64231.27273 1.413088e+06 1243668.93 5.653041e+04 60379.940 20094.50 22 5.653041e+04 1243668.93 2.656757e+06 2.656757e+06 0.00 NULL
2014 Department Of Transportation Marine Oiler 49925.80000 2.995548e+06 2018671.77 3.364453e+04 38031.685 41609.25 60 3.364453e+04 2018671.77 5.014220e+06 5.014220e+06 0.00 NULL
2014 Department Of Transportation Masons Helper NA NA 17202.57 8.601285e+03 8601.285 458.50 2 8.601285e+03 17202.57 NA NA NA NULL
2014 Department Of Transportation Mate 57061.31579 4.336660e+06 1903653.45 2.504807e+04 25236.480 33084.50 76 2.504807e+04 1903653.45 6.240313e+06 6.240313e+06 0.00 NULL
2014 Department Of Transportation Mechanical Engineer 79093.20000 3.954660e+05 48757.68 9.751536e+03 1454.040 884.75 5 1.454040e+03 7270.20 4.442237e+05 4.027362e+05 41487.48 NULL
2014 Department Of Transportation Motor Grader Operator NA NA 568757.48 2.472859e+04 26110.970 7434.75 23 2.472859e+04 568757.48 NA NA NA NULL
2014 Department Of Transportation Office Machine Aide 33896.86364 3.728655e+05 1372.60 1.247818e+02 0.000 82.75 11 0.000000e+00 0.00 3.742381e+05 3.728655e+05 1372.60 NULL
2014 Department Of Transportation Oiler NA NA 810059.81 4.500332e+04 49317.850 11841.50 18 4.500332e+04 810059.81 NA NA NA NULL
2014 Department Of Transportation Operations Communications Specialist 40514.25000 6.482280e+05 66373.33 4.148333e+03 3187.375 2372.75 16 3.187375e+03 50998.00 7.146013e+05 6.992260e+05 15375.33 NULL
2014 Department Of Transportation Painter NA NA 34493.19 6.898638e+03 4659.380 648.75 5 4.659380e+03 23296.90 NA NA NA NULL
2014 Department Of Transportation Paralegal Aide 41778.00000 8.355600e+04 1909.14 9.545700e+02 954.570 74.25 2 9.545700e+02 1909.14 8.546514e+04 8.546514e+04 0.00 NULL
2014 Department Of Transportation Plumber NA NA 177229.10 2.215364e+04 19105.675 2097.00 8 1.910567e+04 152845.40 NA NA NA NULL
2014 Department Of Transportation Principal Administrative Associate - Lev 1 & 2 Non Supvr 53281.69287 7.352874e+06 481737.32 3.490850e+03 215.135 13326.25 138 2.151350e+02 29688.63 7.834611e+06 7.382562e+06 452048.69 NULL
2014 Department Of Transportation Procurement Analyst 53966.22692 2.104683e+06 149189.57 3.825374e+03 0.000 3957.25 39 0.000000e+00 0.00 2.253872e+06 2.104683e+06 149189.57 NULL
2014 Department Of Transportation Project Manager 61149.40000 3.057470e+05 75560.30 1.511206e+04 18770.250 1788.50 5 1.511206e+04 75560.30 3.813073e+05 3.813073e+05 0.00 NULL
2014 Department Of Transportation Project Manager Intern# 63228.00000 6.322800e+04 1499.82 1.499820e+03 1499.820 39.00 1 1.499820e+03 1499.82 6.472782e+04 6.472782e+04 0.00 NULL
2014 Department Of Transportation Public Records Aide 31731.57922 2.855842e+05 4593.16 5.103511e+02 0.000 186.50 9 0.000000e+00 0.00 2.901774e+05 2.855842e+05 4593.16 NULL
2014 Department Of Transportation Radio Repair Mechanic NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2014 Department Of Transportation Research Assistant 50432.64138 9.582202e+05 26084.23 1.372854e+03 0.000 698.00 19 0.000000e+00 0.00 9.843044e+05 9.582202e+05 26084.23 NULL
2014 Department Of Transportation Rigger NA NA 228986.88 3.271241e+04 31255.050 4238.75 7 3.125505e+04 218785.35 NA NA NA NULL
2014 Department Of Transportation Rubber Tire Repairer NA NA 31656.33 7.914083e+03 10045.710 873.50 4 7.914083e+03 31656.33 NA NA NA NULL
2014 Department Of Transportation Secretary 38763.14464 1.007842e+06 27824.53 1.070174e+03 173.890 1074.25 26 1.738900e+02 4521.14 1.035666e+06 1.012363e+06 23303.39 NULL
2014 Department Of Transportation Senior Service Inspector 45652.92308 5.934880e+05 54302.75 4.177135e+03 3668.060 1932.50 13 3.668060e+03 47684.78 6.477908e+05 6.411728e+05 6617.97 NULL
2014 Department Of Transportation Service Inspector 33549.20000 1.677460e+05 8567.38 1.713476e+03 833.920 392.50 5 8.339200e+02 4169.60 1.763134e+05 1.719156e+05 4397.78 NULL
2014 Department Of Transportation Sheet Metal Worker NA NA 240165.24 4.803305e+04 51423.960 2460.00 5 4.803305e+04 240165.24 NA NA NA NULL
2014 Department Of Transportation Ship Carpenter NA NA 195422.94 2.791756e+04 28608.210 3595.50 7 2.791756e+04 195422.94 NA NA NA NULL
2014 Department Of Transportation Staff Analyst 59849.12500 1.915172e+06 113754.41 3.554825e+03 318.975 2791.00 32 3.189750e+02 10207.20 2.028926e+06 1.925379e+06 103547.21 NULL
2014 Department Of Transportation Staff Analyst Trainee 36071.10000 3.607110e+05 8912.93 8.912930e+02 0.000 393.75 10 0.000000e+00 0.00 3.696239e+05 3.607110e+05 8912.93 NULL
2014 Department Of Transportation Steam Fitter NA NA 395970.30 4.399670e+04 58485.900 4100.25 9 4.399670e+04 395970.30 NA NA NA NULL
2014 Department Of Transportation Steam Fitter’s Helper NA NA 29955.16 2.995516e+04 29955.160 410.00 1 2.995516e+04 29955.16 NA NA NA NULL
2014 Department Of Transportation Stock Worker 35841.11111 3.225700e+05 54852.97 6.094774e+03 6197.730 2109.00 9 6.094774e+03 54852.97 3.774230e+05 3.774230e+05 0.00 NULL
2014 Department Of Transportation Summer College Intern 1882.88720 4.518929e+04 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 4.518929e+04 4.518929e+04 0.00 NULL
2014 Department Of Transportation Summer Graduate Intern 3389.95106 1.118684e+05 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 1.118684e+05 1.118684e+05 0.00 NULL
2014 Department Of Transportation Supervising Computer Service Technician 64896.00000 1.297920e+05 85663.22 4.283161e+04 42831.610 1629.50 2 4.283161e+04 85663.22 2.154552e+05 2.154552e+05 0.00 NULL
2014 Department Of Transportation Supervisor 66056.00000 1.321120e+05 25931.89 1.296594e+04 12965.945 570.75 2 1.296594e+04 25931.89 1.580439e+05 1.580439e+05 0.00 NULL
2014 Department Of Transportation Supervisor Boiler Maker NA NA 106026.50 5.301325e+04 53013.250 1359.25 2 5.301325e+04 106026.50 NA NA NA NULL
2014 Department Of Transportation Supervisor Bricklayer NA NA 111111.34 1.111113e+05 111111.340 1611.25 1 1.111113e+05 111111.34 NA NA NA NULL
2014 Department Of Transportation Supervisor Bridge Painter NA NA 127975.57 1.828222e+04 14584.110 1280.25 7 1.458411e+04 102088.77 NA NA NA NULL
2014 Department Of Transportation Supervisor Bridge Repairer And Riveter NA NA 190595.81 4.764895e+04 46480.480 3243.50 4 4.648048e+04 185921.92 NA NA NA NULL
2014 Department Of Transportation Supervisor Carpenter NA NA 191327.52 4.783188e+04 55463.395 2847.75 4 4.783188e+04 191327.52 NA NA NA NULL
2014 Department Of Transportation Supervisor Dockbuilder NA NA 78973.81 3.948690e+04 39486.905 1216.75 2 3.948690e+04 78973.81 NA NA NA NULL
2014 Department Of Transportation Supervisor Electrician NA NA 622019.46 6.911327e+04 66227.940 7880.50 9 6.622794e+04 596051.46 NA NA NA NULL
2014 Department Of Transportation Supervisor Highway Repairer NA NA 3374084.12 2.556124e+04 25381.940 56936.75 132 2.538194e+04 3350416.08 NA NA NA NULL
2014 Department Of Transportation Supervisor Of Bridge Operations 48693.90476 1.022572e+06 504610.61 2.402908e+04 19431.310 15459.05 21 1.943131e+04 408057.51 1.527183e+06 1.430630e+06 96553.10 NULL
2014 Department Of Transportation Supervisor Of Electrical Installations & Maintenance 63986.61111 2.303518e+06 333882.05 9.274501e+03 5102.280 7006.25 36 5.102280e+03 183682.08 2.637400e+06 2.487200e+06 150199.97 NULL
2014 Department Of Transportation Supervisor Of Mechanics NA NA 1018366.25 3.182395e+04 30090.065 13293.25 32 3.009006e+04 962882.08 NA NA NA NULL
2014 Department Of Transportation Supervisor Of Office Machine Operations 38352.00000 3.835200e+04 238.78 2.387800e+02 238.780 9.25 1 2.387800e+02 238.78 3.859078e+04 3.859078e+04 0.00 NULL
2014 Department Of Transportation Supervisor Of Stock Workers 48031.00000 4.322790e+05 74090.86 8.232318e+03 5900.150 2134.50 9 5.900150e+03 53101.35 5.063699e+05 4.853803e+05 20989.51 NULL
2014 Department Of Transportation Supervisor Of Traffic Device Maintainers 60165.86275 3.068459e+06 949509.11 1.861783e+04 20260.880 21102.58 51 1.861783e+04 949509.11 4.017968e+06 4.017968e+06 0.00 NULL
2014 Department Of Transportation Supervisor Of Traffic Device Maintainers L2 & L3 66540.55556 5.988650e+05 249241.26 2.769347e+04 29586.300 4816.00 9 2.769347e+04 249241.26 8.481063e+05 8.481063e+05 0.00 NULL
2014 Department Of Transportation Supervisor Painter NA NA 37290.00 1.864500e+04 18645.000 645.25 2 1.864500e+04 37290.00 NA NA NA NULL
2014 Department Of Transportation Supervisor Plumber NA NA 73395.63 2.446521e+04 2862.090 822.00 3 2.862090e+03 8586.27 NA NA NA NULL
2014 Department Of Transportation Supervisor Sheet Metal Worker NA NA 79711.38 7.971138e+04 79711.380 771.50 1 7.971138e+04 79711.38 NA NA NA NULL
2014 Department Of Transportation Supervisor Ship Carpenter NA NA 48730.25 4.873025e+04 48730.250 852.25 1 4.873025e+04 48730.25 NA NA NA NULL
2014 Department Of Transportation Telecommunications Associate 77884.14286 5.451890e+05 162172.49 2.316750e+04 22287.130 2868.50 7 2.228713e+04 156009.91 7.073615e+05 7.011989e+05 6162.58 NULL
2014 Department Of Transportation Tractor Operator NA NA 763783.96 4.019916e+04 31989.390 7884.75 19 3.198939e+04 607798.41 NA NA NA NULL
2014 Department Of Transportation Traffic Control Inspector 45658.40323 2.830821e+06 227324.49 3.666524e+03 1754.575 7480.60 62 1.754575e+03 108783.65 3.058145e+06 2.939605e+06 118540.84 NULL
2014 Department Of Transportation Traffic Device Maintainer 52016.77519 1.342033e+07 2935543.30 1.137807e+04 9484.390 76509.25 258 9.484390e+03 2446972.62 1.635587e+07 1.586730e+07 488570.68 NULL
2014 Department Of Transportation Transportation Borough Commissioner 128114.00000 5.124560e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.124560e+05 5.124560e+05 0.00 NULL
2014 Department Of Transportation Welder NA NA 55054.75 2.752738e+04 27527.375 760.75 2 2.752738e+04 55054.75 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs *Adm Dir Fleet Maint-Mgrl Asgmnt 118034.00000 1.180340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.180340e+05 1.180340e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs *Attorney At Law 89725.41083 2.691762e+05 660.83 2.202767e+02 0.000 13.50 3 0.000000e+00 0.00 2.698371e+05 2.691762e+05 660.83 NULL
2014 Dept Of Citywide Admin Svcs *Custodial Assistant 31656.25000 3.798750e+05 51767.31 4.313943e+03 1960.430 2113.75 12 1.960430e+03 23525.16 4.316423e+05 4.034002e+05 28242.15 NULL
2014 Dept Of Citywide Admin Svcs *Watchperson 36056.00000 7.211200e+04 17306.02 8.653010e+03 8653.010 701.00 2 8.653010e+03 17306.02 8.941802e+04 8.941802e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Accountant 61278.83333 3.676730e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.676730e+05 3.676730e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Adm Manager-Non-Mgrl From M1/M2 61453.54545 2.703956e+06 158339.22 3.598619e+03 819.885 3562.75 44 8.198850e+02 36074.94 2.862295e+06 2.740031e+06 122264.28 NULL
2014 Dept Of Citywide Admin Svcs Admin Tests & Meas Spec 98956.16667 5.937370e+05 3041.20 5.068667e+02 0.000 94.50 6 0.000000e+00 0.00 5.967782e+05 5.937370e+05 3041.20 NULL
2014 Dept Of Citywide Admin Svcs Administrative Accountant 112881.60000 5.644080e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.644080e+05 5.644080e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Administrative Architect 115086.33333 3.452590e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.452590e+05 3.452590e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Administrative Business Promotion Coordinator 104795.00000 1.047950e+05 7867.12 7.867120e+03 7867.120 139.00 1 7.867120e+03 7867.12 1.126621e+05 1.126621e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Administrative City Planner 122488.00000 2.449760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.449760e+05 2.449760e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Administrative Construction Project Manager 107543.40000 5.377170e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.377170e+05 5.377170e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Administrative Engineer 108406.83333 6.504410e+05 925.50 1.542500e+02 0.000 17.50 6 0.000000e+00 0.00 6.513665e+05 6.504410e+05 925.50 NULL
2014 Dept Of Citywide Admin Svcs Administrative Graphic Artist 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Administrative Housing Development Specialist 145159.00000 1.451590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.451590e+05 1.451590e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Administrative Inspector 99913.25000 3.996530e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.996530e+05 3.996530e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Administrative Management Auditor 96898.00000 9.689800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.689800e+04 9.689800e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Administrative Manager 68467.62500 5.477410e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.477410e+05 5.477410e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Administrative Procurement Analyst 77878.60897 2.258480e+06 70560.53 2.433122e+03 0.000 1345.50 29 0.000000e+00 0.00 2.329040e+06 2.258480e+06 70560.53 NULL
2014 Dept Of Citywide Admin Svcs Administrative Project Manager 109240.71429 7.646850e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.646850e+05 7.646850e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Administrative Public Information Specialist 117370.00000 2.347400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.347400e+05 2.347400e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Administrative Quality Assurance Specialist 100000.00000 1.000000e+05 22988.58 2.298858e+04 22988.580 357.00 1 2.298858e+04 22988.58 1.229886e+05 1.229886e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Administrative Real Property Manager 82600.00000 8.260000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.260000e+04 8.260000e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Administrative Staff Analyst 96614.80388 9.951325e+06 173883.82 1.688192e+03 0.000 3351.75 103 0.000000e+00 0.00 1.012521e+07 9.951325e+06 173883.82 NULL
2014 Dept Of Citywide Admin Svcs Administrative Storekeeper 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Agency Attorney 86396.91667 1.036763e+06 261.81 2.181750e+01 0.000 7.00 12 0.000000e+00 0.00 1.037025e+06 1.036763e+06 261.81 NULL
2014 Dept Of Citywide Admin Svcs Agency Attorney Interne 55500.00000 1.110000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.110000e+05 1.110000e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Appraiser 70073.33333 2.102200e+05 1980.36 6.601200e+02 0.000 51.75 3 0.000000e+00 0.00 2.122004e+05 2.102200e+05 1980.36 NULL
2014 Dept Of Citywide Admin Svcs Architect 82957.50000 8.295750e+05 2287.38 2.287380e+02 0.000 27.00 10 0.000000e+00 0.00 8.318624e+05 8.295750e+05 2287.38 NULL
2014 Dept Of Citywide Admin Svcs Asbestos Handler 72288.50000 1.445770e+05 40412.69 2.020635e+04 20206.345 815.92 2 2.020635e+04 40412.69 1.849897e+05 1.849897e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Assistant Architect 63334.28571 4.433400e+05 11234.85 1.604979e+03 0.000 286.75 7 0.000000e+00 0.00 4.545748e+05 4.433400e+05 11234.85 NULL
2014 Dept Of Citywide Admin Svcs Assistant Civil Engineer 70233.00000 1.404660e+05 9335.89 4.667945e+03 4667.945 145.50 2 4.667945e+03 9335.89 1.498019e+05 1.498019e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Assistant Commissioner 134027.66667 4.020830e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.020830e+05 4.020830e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Assistant Electrical Engineer 55000.00000 5.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.500000e+04 5.500000e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Assistant Mechanical Engineer 63299.00000 1.898970e+05 4245.04 1.415013e+03 1023.230 115.50 3 1.023230e+03 3069.69 1.941420e+05 1.929667e+05 1175.35 NULL
2014 Dept Of Citywide Admin Svcs Assistant Printing Press Operator 52948.50000 1.058970e+05 3575.67 1.787835e+03 1787.835 97.25 2 1.787835e+03 3575.67 1.094727e+05 1.094727e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Associate Chemist 59488.00000 5.948800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.948800e+04 5.948800e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Associate Investigator 50625.97818 5.568858e+05 29507.64 2.682513e+03 1794.980 783.75 11 1.794980e+03 19744.78 5.863934e+05 5.766305e+05 9762.86 NULL
2014 Dept Of Citywide Admin Svcs Associate Project Manager 84977.50000 6.798200e+05 24543.80 3.067975e+03 63.915 344.75 8 6.391500e+01 511.32 7.043638e+05 6.803313e+05 24032.48 NULL
2014 Dept Of Citywide Admin Svcs Associate Public Information Specialist 55000.00000 1.100000e+05 30.10 1.505000e+01 15.050 1.00 2 1.505000e+01 30.10 1.100301e+05 1.100301e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Associate Quality Assurance Specialist 62616.85714 4.383180e+05 55141.15 7.877307e+03 5098.060 1159.50 7 5.098060e+03 35686.42 4.934592e+05 4.740044e+05 19454.73 NULL
2014 Dept Of Citywide Admin Svcs Associate Staff Analyst 72013.46939 3.528660e+06 199479.34 4.071007e+03 922.940 3689.50 49 9.229400e+02 45224.06 3.728139e+06 3.573884e+06 154255.28 NULL
2014 Dept Of Citywide Admin Svcs Auto Mechanic NA NA 5166.18 2.583090e+03 2583.090 118.00 2 2.583090e+03 5166.18 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Automotive Specialist 71186.00000 7.118600e+04 42.45 4.245000e+01 42.450 1.00 1 4.245000e+01 42.45 7.122845e+04 7.122845e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Bookkeeper 37069.75000 1.482790e+05 78.97 1.974250e+01 0.000 0.00 4 0.000000e+00 0.00 1.483580e+05 1.482790e+05 78.97 NULL
2014 Dept Of Citywide Admin Svcs Bricklayer NA NA 51079.53 5.107953e+04 51079.530 738.00 1 5.107953e+04 51079.53 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Business Promotion Coordinator 77974.50000 1.559490e+05 9930.66 4.965330e+03 4965.330 236.75 2 4.965330e+03 9930.66 1.658797e+05 1.658797e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Carpenter NA NA 411107.45 2.283930e+04 23402.020 6679.50 18 2.283930e+04 411107.45 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Certified It Administrator 126476.23250 2.529525e+05 52317.16 2.615858e+04 26158.580 602.50 2 2.615858e+04 52317.16 3.052696e+05 3.052696e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Certified It Developer 95397.00000 9.539700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.539700e+04 9.539700e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Chairman 192198.00000 1.921980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.921980e+05 1.921980e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Chauffeur-Attendant 51798.49123 1.657552e+06 273054.43 8.532951e+03 7814.630 7025.00 32 7.814630e+03 250068.16 1.930606e+06 1.907620e+06 22986.27 NULL
2014 Dept Of Citywide Admin Svcs City Custodial Assistant 30540.79156 1.294930e+07 2653329.68 6.257853e+03 3364.645 119460.72 424 3.364645e+03 1426609.48 1.560263e+07 1.437591e+07 1226720.20 NULL
2014 Dept Of Citywide Admin Svcs City Laborer NA NA 226295.33 1.257196e+04 6445.045 4749.50 18 6.445045e+03 116010.81 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs City Planner 68542.00000 6.168780e+05 6024.74 6.694156e+02 0.000 140.50 9 0.000000e+00 0.00 6.229027e+05 6.168780e+05 6024.74 NULL
2014 Dept Of Citywide Admin Svcs City Planning Technician 50355.00000 5.035500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.035500e+04 5.035500e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs City Research Scientist 69915.22222 6.292370e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 6.292370e+05 6.292370e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs City Security Aide 39965.02417 2.397901e+05 68814.39 1.146907e+04 11220.710 2422.00 6 1.122071e+04 67324.26 3.086045e+05 3.071144e+05 1490.13 NULL
2014 Dept Of Citywide Admin Svcs Clerical Aide 28588.00000 2.858800e+04 917.31 9.173100e+02 917.310 56.75 1 9.173100e+02 917.31 2.950531e+04 2.950531e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Clerical Associate Most Mayoral Ag 38944.15200 3.816527e+06 95275.51 9.721991e+02 0.000 3964.00 98 0.000000e+00 0.00 3.911802e+06 3.816527e+06 95275.51 NULL
2014 Dept Of Citywide Admin Svcs Clock Repairer 6124.71000 6.124710e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.124710e+03 6.124710e+03 0.00 NULL
2014 Dept Of Citywide Admin Svcs College Aide 6184.93343 1.298836e+05 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.298836e+05 1.298836e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Commissioner 152946.50000 6.117860e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.117860e+05 6.117860e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Commissioner Of Citywide Administrative Services 205180.00000 4.103600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.103600e+05 4.103600e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Community Assistant 29207.74980 1.109894e+06 43816.39 1.153063e+03 75.675 2164.00 38 7.567500e+01 2875.65 1.153711e+06 1.112770e+06 40940.74 NULL
2014 Dept Of Citywide Admin Svcs Community Associate 39030.81436 1.522202e+06 57544.22 1.475493e+03 0.000 2022.25 39 0.000000e+00 0.00 1.579746e+06 1.522202e+06 57544.22 NULL
2014 Dept Of Citywide Admin Svcs Community Coordinator 59622.75000 2.384910e+05 35705.47 8.926368e+03 183.985 624.50 4 1.839850e+02 735.94 2.741965e+05 2.392269e+05 34969.53 NULL
2014 Dept Of Citywide Admin Svcs Community Service Aide 30752.20250 1.230088e+05 5023.52 1.255880e+03 72.810 213.00 4 7.281000e+01 291.24 1.280323e+05 1.233001e+05 4732.28 NULL
2014 Dept Of Citywide Admin Svcs Computer Aide-Non-Spvr 47574.60250 9.514921e+04 13384.13 6.692065e+03 6692.065 354.75 2 6.692065e+03 13384.13 1.085333e+05 1.085333e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Computer Associate 73681.44852 1.178903e+06 145426.28 9.089142e+03 6503.530 2619.50 16 6.503530e+03 104056.48 1.324329e+06 1.282960e+06 41369.80 NULL
2014 Dept Of Citywide Admin Svcs Computer Operations Manager 106984.50000 2.139690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.139690e+05 2.139690e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Computer Programmer Analyst 59771.66667 1.793150e+05 15332.45 5.110817e+03 0.000 323.50 3 0.000000e+00 0.00 1.946475e+05 1.793150e+05 15332.45 NULL
2014 Dept Of Citywide Admin Svcs Computer Specialist 89774.41725 2.693233e+06 176678.20 5.889273e+03 2073.885 3108.00 30 2.073885e+03 62216.55 2.869911e+06 2.755449e+06 114461.65 NULL
2014 Dept Of Citywide Admin Svcs Computer Systems Manager 116777.30000 1.167773e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.167773e+06 1.167773e+06 0.00 NULL
2014 Dept Of Citywide Admin Svcs Confidential Strategy Planner 85000.00000 8.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.500000e+04 8.500000e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Construction Project Manager 63841.11111 5.745700e+05 18351.27 2.039030e+03 354.410 513.00 9 3.544100e+02 3189.69 5.929213e+05 5.777597e+05 15161.58 NULL
2014 Dept Of Citywide Admin Svcs Counsel 114454.00000 1.144540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.144540e+05 1.144540e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Custodian 36128.41042 8.345663e+06 2689238.88 1.164173e+04 9223.790 100045.38 231 9.223790e+03 2130695.49 1.103490e+07 1.047636e+07 558543.39 NULL
2014 Dept Of Citywide Admin Svcs Deputy Assistant Commissioner 76610.00000 1.532200e+06 852.13 4.260650e+01 0.000 18.00 20 0.000000e+00 0.00 1.533052e+06 1.532200e+06 852.13 NULL
2014 Dept Of Citywide Admin Svcs Deputy Commissioner 171414.50000 1.028487e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.028487e+06 1.028487e+06 0.00 NULL
2014 Dept Of Citywide Admin Svcs Deputy Commissioner For City Personnel Services 180000.00000 1.800000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.800000e+05 1.800000e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Director Of Energy Conservation 124772.00000 1.247720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.247720e+05 1.247720e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Director Of Purchase 175000.00000 3.500000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.500000e+05 3.500000e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Director Of Security 97344.00000 9.734400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.734400e+04 9.734400e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Director Of Stores 121747.00000 1.217470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.217470e+05 1.217470e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Director Of The City Record 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Director,Citywide Occupational Safety & Health Program 105223.50000 2.104470e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.104470e+05 2.104470e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Electrician NA NA 488922.06 3.760939e+04 45239.250 6617.75 13 3.760939e+04 488922.06 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Electrician’s Helper NA NA 17563.74 1.756374e+04 17563.740 353.50 1 1.756374e+04 17563.74 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Elevator Mechanic NA NA 1036567.90 2.657866e+04 30351.440 10488.50 39 2.657866e+04 1036567.90 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Elevator Mechanic Helper NA NA 73443.40 1.224057e+04 13922.755 1384.00 6 1.224057e+04 73443.40 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Engineering Technician 54578.00000 5.457800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.457800e+04 5.457800e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Estimator 69700.00000 1.394000e+05 2641.91 1.320955e+03 1320.955 61.25 2 1.320955e+03 2641.91 1.420419e+05 1.420419e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Exec Asst To The Deputy Com For Citywide Personnel Svcs-Dcas 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Executive Agency Counsel 110315.12500 8.825210e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.825210e+05 8.825210e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Executive Director Of Standards And Appeals 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Executive Program Specialist 95000.00000 9.500000e+04 3220.52 3.220520e+03 3220.520 33.75 1 3.220520e+03 3220.52 9.822052e+04 9.822052e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs First Deputy Commissioner 178500.00000 1.785000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.785000e+05 1.785000e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs General Counsel 172500.00000 3.450000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.450000e+05 3.450000e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Graphic Artist 66701.00000 6.670100e+04 22300.91 2.230091e+04 22300.910 422.25 1 2.230091e+04 22300.91 8.900191e+04 8.900191e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs High Pressure Plant Tender NA NA 660200.02 1.692821e+04 15776.890 14995.75 39 1.577689e+04 615298.71 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Industrial Hygienist 63506.00000 6.350600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.350600e+04 6.350600e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Investigator 34977.00000 3.497700e+04 760.92 7.609200e+02 760.920 35.50 1 7.609200e+02 760.92 3.573792e+04 3.573792e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Landscape Architect 78343.00000 7.834300e+04 0.00 0.000000e+00 0.000 4.00 1 0.000000e+00 0.00 7.834300e+04 7.834300e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Locksmith NA NA 19578.13 1.957813e+04 19578.130 526.50 1 1.957813e+04 19578.13 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Machinist NA NA 9802.98 9.802980e+03 9802.980 180.50 1 9.802980e+03 9802.98 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Maintenance Worker NA NA 1005381.77 2.452151e+04 22163.890 25712.00 41 2.216389e+04 908719.49 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Management Auditor 47288.00000 4.728800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.728800e+04 4.728800e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Mechanical Engineer 86797.75000 3.471910e+05 6546.37 1.636592e+03 1056.890 103.75 4 1.056890e+03 4227.56 3.537374e+05 3.514186e+05 2318.81 NULL
2014 Dept Of Citywide Admin Svcs Media Services Technician 40851.00000 4.085100e+04 684.76 6.847600e+02 684.760 24.00 1 6.847600e+02 684.76 4.153576e+04 4.153576e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Motor Vehicle Operator 43853.50000 8.770700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.770700e+04 8.770700e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Motor Vehicle Supervisor 48882.00000 9.776400e+04 8808.41 4.404205e+03 4404.205 240.25 2 4.404205e+03 8808.41 1.065724e+05 1.065724e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs New York City Urban Fellow 26607.03804 1.223924e+06 0.00 0.000000e+00 0.000 0.00 46 0.000000e+00 0.00 1.223924e+06 1.223924e+06 0.00 NULL
2014 Dept Of Citywide Admin Svcs Nycaps Process Analyst 73541.25000 1.470825e+06 17513.47 8.756735e+02 428.455 392.50 20 4.284550e+02 8569.10 1.488338e+06 1.479394e+06 8944.37 NULL
2014 Dept Of Citywide Admin Svcs Nycaps Process Analyst Manager 107143.00000 6.428580e+05 332.45 5.540833e+01 0.000 0.00 6 0.000000e+00 0.00 6.431904e+05 6.428580e+05 332.45 NULL
2014 Dept Of Citywide Admin Svcs Office Machine Aide 37779.50000 7.555900e+04 356.87 1.784350e+02 178.435 12.50 2 1.784350e+02 356.87 7.591587e+04 7.591587e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Oiler NA NA 329908.43 1.268879e+04 8548.620 5026.75 26 8.548620e+03 222264.12 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Painter NA NA 166585.12 3.331702e+04 39603.060 3095.50 5 3.331702e+04 166585.12 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Plasterer NA NA 173887.58 8.694379e+04 86943.790 2114.75 2 8.694379e+04 173887.58 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Plumber NA NA 201272.30 1.437659e+04 9984.170 2423.25 14 9.984170e+03 139778.38 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Plumber’s Helper NA NA 24553.20 8.184400e+03 10416.000 410.00 3 8.184400e+03 24553.20 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Principal Administrative Associate - Lev 1 & 2 Non Supvr 53341.18180 5.440801e+06 186621.84 1.829626e+03 73.335 4699.75 102 7.333500e+01 7480.17 5.627422e+06 5.448281e+06 179141.67 NULL
2014 Dept Of Citywide Admin Svcs Principal Appraiser 111160.00000 2.223200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.223200e+05 2.223200e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Procurement Analyst 60260.41176 1.024427e+06 32655.85 1.920932e+03 0.000 677.00 17 0.000000e+00 0.00 1.057083e+06 1.024427e+06 32655.85 NULL
2014 Dept Of Citywide Admin Svcs Public Records Aide 0.00000 0.000000e+00 1657.75 3.315500e+02 275.500 0.00 5 2.755000e+02 1377.50 1.657750e+03 1.377500e+03 280.25 NULL
2014 Dept Of Citywide Admin Svcs Quality Assurance Specialist 49334.70588 8.386900e+05 41620.06 2.448239e+03 2471.590 1374.00 17 2.448239e+03 41620.06 8.803101e+05 8.803101e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Radio And Tevevision Operator 44000.00000 8.800000e+04 9203.15 4.601575e+03 4601.575 267.75 2 4.601575e+03 9203.15 9.720315e+04 9.720315e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Real Property Manager 49934.25000 1.997370e+05 30.02 7.505000e+00 0.000 1.00 4 0.000000e+00 0.00 1.997670e+05 1.997370e+05 30.02 NULL
2014 Dept Of Citywide Admin Svcs Research Assistant 51445.00000 5.144500e+04 601.18 6.011800e+02 601.180 20.25 1 6.011800e+02 601.18 5.204618e+04 5.204618e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Secretary 40466.93400 8.093387e+05 18189.73 9.094865e+02 19.795 588.75 20 1.979500e+01 395.90 8.275284e+05 8.097346e+05 17793.83 NULL
2014 Dept Of Citywide Admin Svcs Secretary Of Comm 56164.00000 5.616400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.616400e+04 5.616400e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Secretary To The Deputy Commissioner 83000.00000 8.300000e+04 10982.55 1.098255e+04 10982.550 227.00 1 1.098255e+04 10982.55 9.398255e+04 9.398255e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Senior Estimator 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Senior Salvage Appraiser 59488.00000 5.948800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.948800e+04 5.948800e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Senior Stationary Engineer NA NA 438129.78 1.413322e+04 8761.530 5140.75 31 8.761530e+03 271607.43 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Sheet Metal Worker NA NA 104333.88 5.216694e+04 52166.940 1076.75 2 5.216694e+04 104333.88 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Special Examiner 14360.29971 4.308090e+05 3707.26 1.235753e+02 0.000 0.00 30 0.000000e+00 0.00 4.345163e+05 4.308090e+05 3707.26 NULL
2014 Dept Of Citywide Admin Svcs Special Officer 35630.80000 1.781540e+05 24688.20 4.937640e+03 316.310 1083.25 5 3.163100e+02 1581.55 2.028422e+05 1.797355e+05 23106.65 NULL
2014 Dept Of Citywide Admin Svcs Staff Analyst 59201.27615 1.480032e+06 33682.93 1.347317e+03 64.240 932.00 25 6.424000e+01 1606.00 1.513715e+06 1.481638e+06 32076.93 NULL
2014 Dept Of Citywide Admin Svcs Stationary Engineer NA NA 2635325.08 2.661945e+04 24285.140 37100.50 99 2.428514e+04 2404228.86 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Steam Fitter NA NA 420877.56 3.507313e+04 38675.010 4717.50 12 3.507313e+04 420877.56 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Steam Fitter’s Helper NA NA 74741.42 2.491381e+04 28856.560 1122.00 3 2.491381e+04 74741.42 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Stenographic Specialist 19055.25000 1.905525e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.905525e+04 1.905525e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Stock Worker 32755.15385 4.258170e+05 12578.23 9.675562e+02 285.680 536.75 13 2.856800e+02 3713.84 4.383952e+05 4.295308e+05 8864.39 NULL
2014 Dept Of Citywide Admin Svcs Summer College Intern 2913.69778 7.866984e+04 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 7.866984e+04 7.866984e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Summer Graduate Intern 3893.58800 3.893588e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 3.893588e+04 3.893588e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Supervising Special Officer 54005.91667 6.480710e+05 281121.04 2.342675e+04 21942.300 7158.75 12 2.194230e+04 263307.60 9.291920e+05 9.113786e+05 17813.44 NULL
2014 Dept Of Citywide Admin Svcs Supervisor NA NA 55810.03 5.581003e+04 55810.030 1290.00 1 5.581003e+04 55810.03 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Supervisor Bricklayer NA NA 90073.19 9.007319e+04 90073.190 1212.50 1 9.007319e+04 90073.19 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Supervisor Carpenter NA NA 79908.87 3.995443e+04 39954.435 1219.75 2 3.995443e+04 79908.87 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Supervisor Electrician NA NA 114369.31 5.718465e+04 57184.655 1485.75 2 5.718465e+04 114369.31 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Supervisor Elevator Mechanic NA NA 338280.33 5.638006e+04 58908.450 2308.00 6 5.638006e+04 338280.33 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Supervisor Locksmith NA NA 21559.65 2.155965e+04 21559.650 529.00 1 2.155965e+04 21559.65 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Supervisor Of Electrical Installations & Maintenance 73133.00000 7.313300e+04 665.67 6.656700e+02 665.670 13.50 1 6.656700e+02 665.67 7.379867e+04 7.379867e+04 0.00 NULL
2014 Dept Of Citywide Admin Svcs Supervisor Of Mechanics NA NA 136448.24 4.548275e+04 59512.410 1755.50 3 4.548275e+04 136448.24 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Supervisor Of Radio And Television Operators 65846.50000 1.316930e+05 30613.32 1.530666e+04 15306.660 657.25 2 1.530666e+04 30613.32 1.623063e+05 1.623063e+05 0.00 NULL
2014 Dept Of Citywide Admin Svcs Supervisor Of Stock Workers 44943.77778 4.044940e+05 103040.79 1.144898e+04 4397.670 2950.50 9 4.397670e+03 39579.03 5.075348e+05 4.440730e+05 63461.76 NULL
2014 Dept Of Citywide Admin Svcs Supervisor Plumber NA NA 81654.50 8.165450e+04 81654.500 902.25 1 8.165450e+04 81654.50 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Supervisor Steamfitter NA NA 96662.50 9.666250e+04 96662.500 985.00 1 9.666250e+04 96662.50 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Supervisor Thermostat Repair NA NA 21910.59 2.191059e+04 21910.590 256.50 1 2.191059e+04 21910.59 NA NA NA NULL
2014 Dept Of Citywide Admin Svcs Tests And Measurement Specialist 58757.47500 1.880239e+06 196655.12 6.145472e+03 3870.115 4729.75 32 3.870115e+03 123843.68 2.076894e+06 2.004083e+06 72811.44 NULL
2014 Dept Of Citywide Admin Svcs Thermostat Repairer NA NA 14562.17 1.820271e+03 1426.310 229.50 8 1.426310e+03 11410.48 NA NA NA NULL
2014 Dept Of Ed Hrly Support Staff ?P/T Dc 37 Family Para 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2014 Dept Of Ed Hrly Support Staff Coop Education Trainee Computer Tech Aide/Jr 0.00000 0.000000e+00 16.75 2.203947e-01 0.000 0.00 76 0.000000e+00 0.00 1.675000e+01 0.000000e+00 16.75 NULL
2014 Dept Of Ed Hrly Support Staff Coop Education Trainee Computer Tech Aide/Sr 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2014 Dept Of Ed Hrly Support Staff Coop Trainee Typist 0.00000 0.000000e+00 7077.85 3.158345e+00 0.000 0.00 2241 0.000000e+00 0.00 7.077850e+03 0.000000e+00 7077.85 NULL
2014 Dept Of Ed Hrly Support Staff F/T Dc 37 Family Para 0.00000 0.000000e+00 111150.37 6.308194e+01 0.000 0.00 1762 0.000000e+00 0.00 1.111504e+05 0.000000e+00 111150.37 NULL
2014 Dept Of Ed Hrly Support Staff F/T Film Inspection Asst. 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2014 Dept Of Ed Hrly Support Staff F/T Group Leader 0.00000 0.000000e+00 103219.43 7.939956e+03 4355.550 0.00 13 4.355550e+03 56622.15 1.032194e+05 5.662215e+04 46597.28 NULL
2014 Dept Of Ed Hrly Support Staff F/T Health Service Aide 0.00000 0.000000e+00 16052.47 9.172840e+01 0.000 0.00 175 0.000000e+00 0.00 1.605247e+04 0.000000e+00 16052.47 NULL
2014 Dept Of Ed Hrly Support Staff F/T School Aide 0.00000 0.000000e+00 1694102.43 2.129607e+02 0.000 0.00 7955 0.000000e+00 0.00 1.694102e+06 0.000000e+00 1694102.43 NULL
2014 Dept Of Ed Hrly Support Staff F/T School Guard 0.00000 0.000000e+00 29526.38 6.866600e+02 0.000 0.00 43 0.000000e+00 0.00 2.952638e+04 0.000000e+00 29526.38 NULL
2014 Dept Of Ed Hrly Support Staff F/T School Lunch Helper 0.00000 0.000000e+00 77156.48 1.892482e+01 0.000 0.00 4077 0.000000e+00 0.00 7.715648e+04 0.000000e+00 77156.48 NULL
2014 Dept Of Ed Hrly Support Staff F/T School Safety Officer 0.00000 0.000000e+00 125125.71 3.910178e+03 2176.890 0.00 32 2.176890e+03 69660.48 1.251257e+05 6.966048e+04 55465.23 NULL
2014 Dept Of Ed Hrly Support Staff F/T Sr. School Lunch Helper 0.00000 0.000000e+00 206030.42 8.819795e+01 0.000 0.00 2336 0.000000e+00 0.00 2.060304e+05 0.000000e+00 206030.42 NULL
2014 Dept Of Ed Hrly Support Staff Student Aide 0.00000 0.000000e+00 15206.29 5.361879e+00 0.000 0.00 2836 0.000000e+00 0.00 1.520629e+04 0.000000e+00 15206.29 NULL
2014 Dept Of Ed Hrly Support Staff Student Aide Vocational 0.00000 0.000000e+00 157.70 7.885000e+01 78.850 0.00 2 7.885000e+01 157.70 1.577000e+02 1.577000e+02 0.00 NULL
2014 Dept Of Ed Hrly Support Staff Substitute Recreation Assistant 0.00000 0.000000e+00 2171.54 2.334989e+01 0.000 0.00 93 0.000000e+00 0.00 2.171540e+03 0.000000e+00 2171.54 NULL
2014 Dept Of Ed Hrly Support Staff Substitute School Aide 0.00000 0.000000e+00 22059.63 5.945992e+01 0.000 0.00 371 0.000000e+00 0.00 2.205963e+04 0.000000e+00 22059.63 NULL
2014 Dept Of Ed Hrly Support Staff Substitute School Guard 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2014 Dept Of Ed Hrly Support Staff Substitute School Lunch Helper 0.00000 0.000000e+00 110.71 3.514603e-01 0.000 0.00 315 0.000000e+00 0.00 1.107100e+02 0.000000e+00 110.71 NULL
2014 Dept Of Ed Hrly Support Staff Substitute Sr. School Lunch Helper 0.00000 0.000000e+00 270.61 1.104531e+00 0.000 0.00 245 0.000000e+00 0.00 2.706100e+02 0.000000e+00 270.61 NULL
2014 Dept Of Ed Hrly Support Staff Supervising School Aide 0.00000 0.000000e+00 385729.01 8.385413e+02 0.000 0.00 460 0.000000e+00 0.00 3.857290e+05 0.000000e+00 385729.01 NULL
2014 Dept Of Ed Hrly Support Staff NA NA NA 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 NA NA NA NULL
2014 Dept Of Ed Para Professionals Adult Ed-30 H 33723.27500 1.348931e+06 6678.67 1.669667e+02 15.330 0.00 40 1.533000e+01 613.20 1.355610e+06 1.349544e+06 6065.47 NULL
2014 Dept Of Ed Para Professionals Adult Ed-35 H 41369.00000 1.241070e+05 4787.51 1.595837e+03 1617.290 0.00 3 1.595837e+03 4787.51 1.288945e+05 1.288945e+05 0.00 NULL
2014 Dept Of Ed Para Professionals Annual Ed Para 30612.90212 6.861882e+08 1374560.00 6.132322e+01 0.000 0.00 22415 0.000000e+00 0.00 6.875628e+08 6.861882e+08 1374560.00 NULL
2014 Dept Of Ed Para Professionals Pre-Ses Ed Para 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2014 Dept Of Ed Para Professionals Substitute Ed Para NA NA 0.00 0.000000e+00 0.000 0.00 4988 0.000000e+00 0.00 NA NA NA NULL
2014 Dept Of Ed Para Professionals Teacher Aide 22005.87500 1.584423e+06 7762.31 1.078099e+02 0.000 0.00 72 0.000000e+00 0.00 1.592185e+06 1.584423e+06 7762.31 NULL
2014 Dept Of Ed Para Professionals NA 21879.66667 6.563900e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.563900e+04 6.563900e+04 0.00 NULL
2014 Dept Of Ed Pedagogical 12 Month Special Education Asst. Principal 117313.61429 2.463586e+07 0.00 0.000000e+00 0.000 0.00 210 0.000000e+00 0.00 2.463586e+07 2.463586e+07 0.00 NULL
2014 Dept Of Ed Pedagogical 12 Month Special Education Supervisor 119534.61905 2.510227e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 2.510227e+06 2.510227e+06 0.00 NULL
2014 Dept Of Ed Pedagogical Adult Educat Teach - Reg Sub 35416.28571 4.958280e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 4.958280e+05 4.958280e+05 0.00 NULL
2014 Dept Of Ed Pedagogical Adult Education Teacher 86910.37297 1.607842e+07 0.00 0.000000e+00 0.000 0.00 185 0.000000e+00 0.00 1.607842e+07 1.607842e+07 0.00 NULL
2014 Dept Of Ed Pedagogical Adult Educator Assistant Coord 83191.50000 1.663830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.663830e+05 1.663830e+05 0.00 NULL
2014 Dept Of Ed Pedagogical Aspiring Principal 93597.95000 1.871959e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.871959e+06 1.871959e+06 0.00 NULL
2014 Dept Of Ed Pedagogical Assistant Principal 107819.17756 3.776906e+08 0.00 0.000000e+00 0.000 0.00 3503 0.000000e+00 0.00 3.776906e+08 3.776906e+08 0.00 NULL
2014 Dept Of Ed Pedagogical Assistant Principal Assigned 106473.42857 1.490628e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.490628e+06 1.490628e+06 0.00 NULL
2014 Dept Of Ed Pedagogical Assistant Superintendent 144449.97727 2.542320e+07 0.00 0.000000e+00 0.000 0.00 176 0.000000e+00 0.00 2.542320e+07 2.542320e+07 0.00 NULL
2014 Dept Of Ed Pedagogical Chancellor 212627.50000 4.252550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.252550e+05 4.252550e+05 0.00 NULL
2014 Dept Of Ed Pedagogical Community Supertindent 155338.66667 5.592192e+06 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 5.592192e+06 5.592192e+06 0.00 NULL
2014 Dept Of Ed Pedagogical Cse Chairperson 128585.64286 1.800199e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.800199e+06 1.800199e+06 0.00 NULL
2014 Dept Of Ed Pedagogical Deputy Assistant Superintendent 161431.00000 1.614310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.614310e+05 1.614310e+05 0.00 NULL
2014 Dept Of Ed Pedagogical Deputy Chancellor 204653.00000 2.046530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.046530e+05 2.046530e+05 0.00 NULL
2014 Dept Of Ed Pedagogical Deputy Community Superintendent 158960.75000 6.358430e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.358430e+05 6.358430e+05 0.00 NULL
2014 Dept Of Ed Pedagogical Deputy Regional Superintendent 181886.00000 5.456580e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.456580e+05 5.456580e+05 0.00 NULL
2014 Dept Of Ed Pedagogical Director 129209.00000 1.292090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.292090e+05 1.292090e+05 0.00 NULL
2014 Dept Of Ed Pedagogical Educational Administrator Csa 112390.87711 9.328443e+07 0.00 0.000000e+00 0.000 0.00 830 0.000000e+00 0.00 9.328443e+07 9.328443e+07 0.00 NULL
2014 Dept Of Ed Pedagogical Educational Administrator Uft 112880.33333 6.772820e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.772820e+05 6.772820e+05 0.00 NULL
2014 Dept Of Ed Pedagogical Guidance Counselor 84173.34678 2.524359e+08 0.00 0.000000e+00 0.000 0.00 2999 0.000000e+00 0.00 2.524359e+08 2.524359e+08 0.00 NULL
2014 Dept Of Ed Pedagogical Guidance Counselor Assigned A 92260.56250 1.476169e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.476169e+06 1.476169e+06 0.00 NULL
2014 Dept Of Ed Pedagogical Guidance Counselor-Reg Sub 51186.00000 1.023720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.023720e+05 1.023720e+05 0.00 NULL
2014 Dept Of Ed Pedagogical Lab Specialist/Assistant 69515.23741 9.662618e+06 0.00 0.000000e+00 0.000 0.00 139 0.000000e+00 0.00 9.662618e+06 9.662618e+06 0.00 NULL
2014 Dept Of Ed Pedagogical Lab Specialist/Assistant-Reg Sub 32383.00000 3.238300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.238300e+04 3.238300e+04 0.00 NULL
2014 Dept Of Ed Pedagogical Local Instructional Supervisor 161917.59091 3.562187e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 3.562187e+06 3.562187e+06 0.00 NULL
2014 Dept Of Ed Pedagogical New Leader 90791.60000 9.079160e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 9.079160e+05 9.079160e+05 0.00 NULL
2014 Dept Of Ed Pedagogical New Principal Intern 114962.75000 4.598510e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.598510e+05 4.598510e+05 0.00 NULL
2014 Dept Of Ed Pedagogical Principal 137738.67550 2.495825e+08 0.00 0.000000e+00 0.000 0.00 1812 0.000000e+00 0.00 2.495825e+08 2.495825e+08 0.00 NULL
2014 Dept Of Ed Pedagogical Principal Assigned 144311.69231 3.752104e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 3.752104e+06 3.752104e+06 0.00 NULL
2014 Dept Of Ed Pedagogical Psychologist In Train - Reg Sub 41659.00000 8.331800e+05 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 8.331800e+05 8.331800e+05 0.00 NULL
2014 Dept Of Ed Pedagogical Psychologist In Training 41659.00000 4.165900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.165900e+04 4.165900e+04 0.00 NULL
2014 Dept Of Ed Pedagogical Regional Instructional Superintendent 196959.50000 3.939190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.939190e+05 3.939190e+05 0.00 NULL
2014 Dept Of Ed Pedagogical School Medical Inspector 72107.00000 1.442140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.442140e+05 1.442140e+05 0.00 NULL
2014 Dept Of Ed Pedagogical School Medical Inspector - Reg Sub 72107.00000 7.210700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.210700e+04 7.210700e+04 0.00 NULL
2014 Dept Of Ed Pedagogical School Psychiatrist 80077.00000 8.007700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.007700e+04 8.007700e+04 0.00 NULL
2014 Dept Of Ed Pedagogical School Psycholgist 85038.44910 1.177783e+08 0.00 0.000000e+00 0.000 0.00 1385 0.000000e+00 0.00 1.177783e+08 1.177783e+08 0.00 NULL
2014 Dept Of Ed Pedagogical School Psychologist - Reg Sub 55188.71429 3.863210e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.863210e+05 3.863210e+05 0.00 NULL
2014 Dept Of Ed Pedagogical School Secretary 54306.85741 1.717726e+08 0.00 0.000000e+00 0.000 0.00 3163 0.000000e+00 0.00 1.717726e+08 1.717726e+08 0.00 NULL
2014 Dept Of Ed Pedagogical School Secretary-Reg Sub 38205.00000 3.820500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.820500e+04 3.820500e+04 0.00 NULL
2014 Dept Of Ed Pedagogical School Social Worker 87346.53115 1.304084e+08 0.00 0.000000e+00 0.000 0.00 1493 0.000000e+00 0.00 1.304084e+08 1.304084e+08 0.00 NULL
2014 Dept Of Ed Pedagogical School Social Worker - Reg Sub 60241.33333 1.807240e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.807240e+05 1.807240e+05 0.00 NULL
2014 Dept Of Ed Pedagogical Supervisor 107894.43860 6.149983e+06 0.00 0.000000e+00 0.000 0.00 57 0.000000e+00 0.00 6.149983e+06 6.149983e+06 0.00 NULL
2014 Dept Of Ed Pedagogical Supervisor Assigned 125418.35294 2.132112e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.132112e+06 2.132112e+06 0.00 NULL
2014 Dept Of Ed Pedagogical Teach Asst Vocation - Reg Sub 43329.20930 1.863156e+06 0.00 0.000000e+00 0.000 0.00 43 0.000000e+00 0.00 1.863156e+06 1.863156e+06 0.00 NULL
2014 Dept Of Ed Pedagogical Teacher 75973.51079 4.582190e+09 0.00 0.000000e+00 0.000 0.00 60313 0.000000e+00 0.00 4.582190e+09 4.582190e+09 0.00 NULL
2014 Dept Of Ed Pedagogical Teacher Assigned A 86400.81379 3.758435e+07 0.00 0.000000e+00 0.000 0.00 435 0.000000e+00 0.00 3.758435e+07 3.758435e+07 0.00 NULL
2014 Dept Of Ed Pedagogical Teacher Assigned B 45912.00000 4.591200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.591200e+04 4.591200e+04 0.00 NULL
2014 Dept Of Ed Pedagogical Teacher Assistant - Reg Sub 22500.00000 1.462500e+06 0.00 0.000000e+00 0.000 0.00 65 0.000000e+00 0.00 1.462500e+06 1.462500e+06 0.00 NULL
2014 Dept Of Ed Pedagogical Teacher Attendance 79438.96134 3.082232e+07 0.00 0.000000e+00 0.000 0.00 388 0.000000e+00 0.00 3.082232e+07 3.082232e+07 0.00 NULL
2014 Dept Of Ed Pedagogical Teacher Attendance-Reg Sub 45530.00000 4.553000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.553000e+04 4.553000e+04 0.00 NULL
2014 Dept Of Ed Pedagogical Teacher Resource Room 98084.00000 2.942520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.942520e+05 2.942520e+05 0.00 NULL
2014 Dept Of Ed Pedagogical Teacher Special Education 70600.69135 1.610331e+09 0.00 0.000000e+00 0.000 0.00 22809 0.000000e+00 0.00 1.610331e+09 1.610331e+09 0.00 NULL
2014 Dept Of Ed Pedagogical Teacher Special Education-Reg Sub 49620.57353 3.374199e+06 0.00 0.000000e+00 0.000 0.00 68 0.000000e+00 0.00 3.374199e+06 3.374199e+06 0.00 NULL
2014 Dept Of Ed Pedagogical Teacher Trainer 91085.50000 5.465130e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.465130e+05 5.465130e+05 0.00 NULL
2014 Dept Of Ed Pedagogical Teacher-Reg Sub 59536.47788 1.345524e+07 0.00 0.000000e+00 0.000 0.00 226 0.000000e+00 0.00 1.345524e+07 1.345524e+07 0.00 NULL
2014 Dept Of Ed Per Diem Teachers Assistant Principal NA NA 0.00 0.000000e+00 0.000 0.00 83 0.000000e+00 0.00 NA NA NA NULL
2014 Dept Of Ed Per Diem Teachers Guidance Counselor NA NA 0.00 0.000000e+00 0.000 0.00 181 0.000000e+00 0.00 NA NA NA NULL
2014 Dept Of Ed Per Diem Teachers Lab Specialist/Assistant NA NA 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2014 Dept Of Ed Per Diem Teachers Principal NA NA 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 NA NA NA NULL
2014 Dept Of Ed Per Diem Teachers School Psychologist NA NA 0.00 0.000000e+00 0.000 0.00 93 0.000000e+00 0.00 NA NA NA NULL
2014 Dept Of Ed Per Diem Teachers School Social Worker NA NA 0.00 0.000000e+00 0.000 0.00 57 0.000000e+00 0.00 NA NA NA NULL
2014 Dept Of Ed Per Diem Teachers Secretary NA NA 0.00 0.000000e+00 0.000 0.00 145 0.000000e+00 0.00 NA NA NA NULL
2014 Dept Of Ed Per Diem Teachers Supervisor NA NA 0.00 0.000000e+00 0.000 0.00 134 0.000000e+00 0.00 NA NA NA NULL
2014 Dept Of Ed Per Diem Teachers Teacher-General Ed NA NA 0.00 0.000000e+00 0.000 0.00 12768 0.000000e+00 0.00 NA NA NA NULL
2014 Dept Of Ed Per Diem Teachers Teacher-Special Ed NA NA 0.00 0.000000e+00 0.000 0.00 212 0.000000e+00 0.00 NA NA NA NULL
2014 Dept Of Ed Per Session Teacher School Secretary Per Session NA NA 0.00 0.000000e+00 0.000 0.00 751 0.000000e+00 0.00 NA NA NA NULL
2014 Dept Of Ed Per Session Teacher Supervisor Per Session NA NA 0.00 0.000000e+00 0.000 0.00 976 0.000000e+00 0.00 NA NA NA NULL
2014 Dept Of Ed Per Session Teacher Teacher- Per Session NA NA 0.00 0.000000e+00 0.000 0.00 74607 0.000000e+00 0.00 NA NA NA NULL
2014 Dept Of Environment Protection *Attorney At Law 92216.75000 3.688670e+05 8429.89 2.107472e+03 0.000 131.75 4 0.000000e+00 0.00 3.772969e+05 3.688670e+05 8429.89 NULL
2014 Dept Of Environment Protection *Certified Applications Developer 95896.00000 9.589600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.589600e+04 9.589600e+04 0.00 NULL
2014 Dept Of Environment Protection *Certified Local Area Network Administrator 103568.00000 1.035680e+05 25282.61 2.528261e+04 25282.610 316.50 1 2.528261e+04 25282.61 1.288506e+05 1.288506e+05 0.00 NULL
2014 Dept Of Environment Protection *Certified Wide Area Network Administrator 89393.00000 8.939300e+04 2950.96 2.950960e+03 2950.960 85.00 1 2.950960e+03 2950.96 9.234396e+04 9.234396e+04 0.00 NULL
2014 Dept Of Environment Protection *Custodial Assistant 31362.00000 3.136200e+04 24.79 2.479000e+01 24.790 1.00 1 2.479000e+01 24.79 3.138679e+04 3.138679e+04 0.00 NULL
2014 Dept Of Environment Protection *Research Scientist 91773.00000 9.177300e+04 993.88 9.938800e+02 993.880 14.75 1 9.938800e+02 993.88 9.276688e+04 9.276688e+04 0.00 NULL
2014 Dept Of Environment Protection Accountant 55710.71429 3.899750e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.899750e+05 3.899750e+05 0.00 NULL
2014 Dept Of Environment Protection Adm Manager-Non-Mgrl From M1/M2 72793.68182 1.601461e+06 80553.90 3.661541e+03 2002.530 1655.75 22 2.002530e+03 44055.66 1.682015e+06 1.645517e+06 36498.24 NULL
2014 Dept Of Environment Protection Admin Community Relations Specialist 106000.00000 1.060000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.060000e+05 1.060000e+05 0.00 NULL
2014 Dept Of Environment Protection Administrative Accountant 86636.33333 2.599090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.599090e+05 2.599090e+05 0.00 NULL
2014 Dept Of Environment Protection Administrative Architect 117825.00000 1.178250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.178250e+05 1.178250e+05 0.00 NULL
2014 Dept Of Environment Protection Administrative City Planner 111046.36364 1.221510e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.221510e+06 1.221510e+06 0.00 NULL
2014 Dept Of Environment Protection Administrative Director Of Laboratory 115508.22222 2.079148e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.079148e+06 2.079148e+06 0.00 NULL
2014 Dept Of Environment Protection Administrative Engineer 119232.46114 2.301186e+07 78117.81 4.047555e+02 0.000 1121.25 193 0.000000e+00 0.00 2.308998e+07 2.301186e+07 78117.81 NULL
2014 Dept Of Environment Protection Administrative Manager 124616.60000 6.230830e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.230830e+05 6.230830e+05 0.00 NULL
2014 Dept Of Environment Protection Administrative Procurement Analyst 102858.42857 7.200090e+05 40921.16 5.845880e+03 7944.150 730.75 7 5.845880e+03 40921.16 7.609302e+05 7.609302e+05 0.00 NULL
2014 Dept Of Environment Protection Administrative Project Manager 112063.15842 1.131838e+07 25368.51 2.511734e+02 0.000 350.00 101 0.000000e+00 0.00 1.134375e+07 1.131838e+07 25368.51 NULL
2014 Dept Of Environment Protection Administrative Public Health Sanitarian 106268.66667 6.376120e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.376120e+05 6.376120e+05 0.00 NULL
2014 Dept Of Environment Protection Administrative Public Information Specialist 109639.33333 6.578360e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.578360e+05 6.578360e+05 0.00 NULL
2014 Dept Of Environment Protection Administrative Quality Assurance Specialist 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2014 Dept Of Environment Protection Administrative Real Property Manager 113354.00000 2.267080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.267080e+05 2.267080e+05 0.00 NULL
2014 Dept Of Environment Protection Administrative Staff Analyst 91044.73890 9.923877e+06 355544.79 3.261879e+03 0.000 5857.25 109 0.000000e+00 0.00 1.027942e+07 9.923877e+06 355544.79 NULL
2014 Dept Of Environment Protection Administrative Storekeeper 93018.00000 9.301800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.301800e+04 9.301800e+04 0.00 NULL
2014 Dept Of Environment Protection Agency Attorney 80741.20000 2.422236e+06 24103.34 8.034447e+02 0.000 478.25 30 0.000000e+00 0.00 2.446339e+06 2.422236e+06 24103.34 NULL
2014 Dept Of Environment Protection Agency Security Director 100074.50000 4.002980e+05 247.57 6.189250e+01 0.000 0.00 4 0.000000e+00 0.00 4.005456e+05 4.002980e+05 247.57 NULL
2014 Dept Of Environment Protection Air Pollution Inspector 44453.81818 1.466976e+06 467871.08 1.417791e+04 13320.870 13917.87 33 1.332087e+04 439588.71 1.934847e+06 1.906565e+06 28282.37 NULL
2014 Dept Of Environment Protection Apprentice 37288.74133 1.118662e+06 66924.44 2.230815e+03 1662.595 3011.00 30 1.662595e+03 49877.85 1.185587e+06 1.168540e+06 17046.59 NULL
2014 Dept Of Environment Protection Architect 86001.50000 3.440060e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.440060e+05 3.440060e+05 0.00 NULL
2014 Dept Of Environment Protection Assistant Architect 58001.00000 3.480060e+05 69.93 1.165500e+01 0.000 0.00 6 0.000000e+00 0.00 3.480759e+05 3.480060e+05 69.93 NULL
2014 Dept Of Environment Protection Assistant Chemical Engineer 59009.22727 1.298203e+06 157712.42 7.168746e+03 2542.685 4439.75 22 2.542685e+03 55939.07 1.455915e+06 1.354142e+06 101773.35 NULL
2014 Dept Of Environment Protection Assistant Civil Engineer 60830.76000 4.562307e+06 348935.81 4.652477e+03 950.220 8680.50 75 9.502200e+02 71266.50 4.911243e+06 4.633574e+06 277669.31 NULL
2014 Dept Of Environment Protection Assistant Commissioner 135369.00000 2.707380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.707380e+05 2.707380e+05 0.00 NULL
2014 Dept Of Environment Protection Assistant Electrical Engineer 58402.48718 2.277697e+06 137205.99 3.518102e+03 691.450 3859.50 39 6.914500e+02 26966.55 2.414903e+06 2.304664e+06 110239.44 NULL
2014 Dept Of Environment Protection Assistant Environmental Engineer 59112.59091 1.300477e+06 85169.46 3.871339e+03 449.485 2409.00 22 4.494850e+02 9888.67 1.385646e+06 1.310366e+06 75280.79 NULL
2014 Dept Of Environment Protection Assistant Mechanical Engineer 58880.57576 3.886118e+06 273217.14 4.139654e+03 1199.075 8019.50 66 1.199075e+03 79138.95 4.159335e+06 3.965257e+06 194078.19 NULL
2014 Dept Of Environment Protection Associate Air Pollution Inspr 54559.00000 7.092670e+05 282993.90 2.176876e+04 20113.100 6960.50 13 2.011310e+04 261470.30 9.922609e+05 9.707373e+05 21523.60 NULL
2014 Dept Of Environment Protection Associate Chemist 61291.83553 9.316359e+06 606935.64 3.992998e+03 318.915 20286.00 152 3.189150e+02 48475.08 9.923295e+06 9.364834e+06 558460.56 NULL
2014 Dept Of Environment Protection Associate Commissioner 156000.00000 3.120000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.120000e+05 3.120000e+05 0.00 NULL
2014 Dept Of Environment Protection Associate Laboratory Microbiologist 60455.65217 1.390480e+06 62802.67 2.730551e+03 1141.200 1701.75 23 1.141200e+03 26247.60 1.453283e+06 1.416728e+06 36555.07 NULL
2014 Dept Of Environment Protection Associate Project Manager 73275.50602 1.824560e+07 927287.97 3.724048e+03 268.880 18914.00 249 2.688800e+02 66951.12 1.917289e+07 1.831255e+07 860336.85 NULL
2014 Dept Of Environment Protection Associate Public Health Sanitarian 65710.29630 1.774178e+06 50061.63 1.854134e+03 751.780 975.00 27 7.517800e+02 20298.06 1.824240e+06 1.794476e+06 29763.57 NULL
2014 Dept Of Environment Protection Associate Public Information Specialist 26109.37500 5.221875e+04 4922.39 2.461195e+03 2461.195 168.50 2 2.461195e+03 4922.39 5.714114e+04 5.714114e+04 0.00 NULL
2014 Dept Of Environment Protection Associate Quality Assurance Specialist 63636.85714 4.454580e+05 5405.97 7.722814e+02 433.480 169.00 7 4.334800e+02 3034.36 4.508640e+05 4.484924e+05 2371.61 NULL
2014 Dept Of Environment Protection Associate Staff Analyst 74286.21689 5.794325e+06 131010.99 1.679628e+03 0.000 2531.25 78 0.000000e+00 0.00 5.925336e+06 5.794325e+06 131010.99 NULL
2014 Dept Of Environment Protection Associate Water Use Inpector 55380.08451 3.931986e+06 718840.91 1.012452e+04 9504.920 17808.17 71 9.504920e+03 674849.32 4.650827e+06 4.606835e+06 43991.59 NULL
2014 Dept Of Environment Protection Auto Mechanic NA NA 88017.58 8.801758e+03 6064.860 1894.75 10 6.064860e+03 60648.60 NA NA NA NULL
2014 Dept Of Environment Protection Bookkeeper 50994.00000 5.099400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.099400e+04 5.099400e+04 0.00 NULL
2014 Dept Of Environment Protection Bricklayer NA NA 4359.60 2.179800e+03 2179.800 76.00 2 2.179800e+03 4359.60 NA NA NA NULL
2014 Dept Of Environment Protection Captain 79124.00000 7.912400e+05 214859.00 2.148590e+04 17351.505 3793.25 10 1.735151e+04 173515.05 1.006099e+06 9.647551e+05 41343.95 NULL
2014 Dept Of Environment Protection Carpenter NA NA 22242.07 2.471341e+03 2471.380 421.00 9 2.471341e+03 22242.07 NA NA NA NULL
2014 Dept Of Environment Protection Certified It Administrator 94792.50000 3.791700e+05 15922.54 3.980635e+03 1174.905 292.50 4 1.174905e+03 4699.62 3.950925e+05 3.838696e+05 11222.92 NULL
2014 Dept Of Environment Protection Chauffeur-Attendant 55000.00000 5.500000e+04 31767.22 3.176722e+04 31767.220 799.50 1 3.176722e+04 31767.22 8.676722e+04 8.676722e+04 0.00 NULL
2014 Dept Of Environment Protection Chemical Engineer 78701.77778 7.083160e+05 36457.17 4.050797e+03 3170.590 690.00 9 3.170590e+03 28535.31 7.447732e+05 7.368513e+05 7921.86 NULL
2014 Dept Of Environment Protection Chief Engineer 190000.00000 1.900000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.900000e+05 1.900000e+05 0.00 NULL
2014 Dept Of Environment Protection Chief Marine Engineer 73843.00000 5.907440e+05 395118.22 4.938978e+04 46983.130 7227.25 8 4.698313e+04 375865.04 9.858622e+05 9.666090e+05 19253.18 NULL
2014 Dept Of Environment Protection City Custodial Assistant 31192.00000 3.119200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.119200e+04 3.119200e+04 0.00 NULL
2014 Dept Of Environment Protection City Laborer NA NA 52596.98 3.093940e+03 1817.090 1096.00 17 1.817090e+03 30890.53 NA NA NA NULL
2014 Dept Of Environment Protection City Medical Specialist 126344.50000 1.263445e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.263445e+05 1.263445e+05 0.00 NULL
2014 Dept Of Environment Protection City Park Worker 25124.27286 1.758699e+05 1624.84 2.321200e+02 302.280 83.25 7 2.321200e+02 1624.84 1.774948e+05 1.774948e+05 0.00 NULL
2014 Dept Of Environment Protection City Planner 71379.31818 1.570345e+06 21197.45 9.635205e+02 0.000 427.50 22 0.000000e+00 0.00 1.591542e+06 1.570345e+06 21197.45 NULL
2014 Dept Of Environment Protection City Planning Technician 40546.71429 2.838270e+05 6875.02 9.821457e+02 503.690 253.00 7 5.036900e+02 3525.83 2.907020e+05 2.873528e+05 3349.19 NULL
2014 Dept Of Environment Protection City Research Scientist 82454.10448 5.524425e+06 176448.89 2.633566e+03 0.000 3553.25 67 0.000000e+00 0.00 5.700874e+06 5.524425e+06 176448.89 NULL
2014 Dept Of Environment Protection City Seasonal Aide 5900.35689 1.239075e+05 4375.80 2.083714e+02 0.000 334.25 21 0.000000e+00 0.00 1.282833e+05 1.239075e+05 4375.80 NULL
2014 Dept Of Environment Protection City Tax Auditor 44048.00000 4.404800e+04 5879.70 5.879700e+03 5879.700 178.50 1 5.879700e+03 5879.70 4.992770e+04 4.992770e+04 0.00 NULL
2014 Dept Of Environment Protection Civil Engineer 80166.74324 5.932339e+06 237398.36 3.208086e+03 0.000 4283.50 74 0.000000e+00 0.00 6.169737e+06 5.932339e+06 237398.36 NULL
2014 Dept Of Environment Protection Civil Engineering Intern 50796.40000 1.523892e+06 122406.05 4.080202e+03 803.225 3727.25 30 8.032250e+02 24096.75 1.646298e+06 1.547989e+06 98309.30 NULL
2014 Dept Of Environment Protection Clerical Aide 27922.65400 8.376796e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 8.376796e+04 8.376796e+04 0.00 NULL
2014 Dept Of Environment Protection Clerical Associate Most Mayoral Ag 35782.46064 1.295325e+07 762544.63 2.106477e+03 85.640 27724.00 362 8.564000e+01 31001.68 1.371580e+07 1.298425e+07 731542.95 NULL
2014 Dept Of Environment Protection College Aide 9279.69501 1.113563e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.113563e+05 1.113563e+05 0.00 NULL
2014 Dept Of Environment Protection College Aide - Assignment Levels Ii And Iii 9521.13367 2.856340e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.856340e+04 2.856340e+04 0.00 NULL
2014 Dept Of Environment Protection Commissioner Of Environmental Protection 205180.00000 4.103600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.103600e+05 4.103600e+05 0.00 NULL
2014 Dept Of Environment Protection Community Assistant 31796.09955 8.266986e+05 16018.20 6.160846e+02 0.000 782.00 26 0.000000e+00 0.00 8.427168e+05 8.266986e+05 16018.20 NULL
2014 Dept Of Environment Protection Community Associate 45177.70833 1.084265e+06 65507.48 2.729478e+03 407.825 2240.25 24 4.078250e+02 9787.80 1.149772e+06 1.094053e+06 55719.68 NULL
2014 Dept Of Environment Protection Community Coordinator 61863.65000 1.237273e+06 42094.93 2.104747e+03 0.000 1151.00 20 0.000000e+00 0.00 1.279368e+06 1.237273e+06 42094.93 NULL
2014 Dept Of Environment Protection Community Service Aide 28848.80000 1.442440e+05 11217.00 2.243400e+03 436.090 563.25 5 4.360900e+02 2180.45 1.554610e+05 1.464245e+05 9036.55 NULL
2014 Dept Of Environment Protection Computer Aide-Non-Spvr 40987.33333 9.836960e+05 99746.55 4.156106e+03 0.000 3290.83 24 0.000000e+00 0.00 1.083443e+06 9.836960e+05 99746.55 NULL
2014 Dept Of Environment Protection Computer Associate 65849.85714 4.148541e+06 138562.97 2.199412e+03 31.510 3306.50 63 3.151000e+01 1985.13 4.287104e+06 4.150526e+06 136577.84 NULL
2014 Dept Of Environment Protection Computer Programmer Analyst 54953.84589 9.891692e+05 46343.42 2.574634e+03 258.910 1039.25 18 2.589100e+02 4660.38 1.035513e+06 9.938296e+05 41683.04 NULL
2014 Dept Of Environment Protection Computer Service Technician 48169.33569 2.408467e+05 26024.66 5.204932e+03 467.010 908.25 5 4.670100e+02 2335.05 2.668713e+05 2.431817e+05 23689.61 NULL
2014 Dept Of Environment Protection Computer Specialist 88430.00000 6.366960e+06 314737.81 4.371358e+03 299.205 6299.25 72 2.992050e+02 21542.76 6.681698e+06 6.388503e+06 293195.05 NULL
2014 Dept Of Environment Protection Computer Systems Manager 110800.50000 1.108005e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.108005e+06 1.108005e+06 0.00 NULL
2014 Dept Of Environment Protection Construction Laborer NA NA 2901870.74 7.759013e+03 6707.385 51660.75 374 6.707385e+03 2508561.99 NA NA NA NULL
2014 Dept Of Environment Protection Construction Project Manager 67885.45714 2.375991e+06 199756.30 5.707323e+03 4779.540 4121.00 35 4.779540e+03 167283.90 2.575747e+06 2.543275e+06 32472.40 NULL
2014 Dept Of Environment Protection Construction Project Manager Intern 51933.47500 2.077339e+06 137102.48 3.427562e+03 401.605 4188.50 40 4.016050e+02 16064.20 2.214441e+06 2.093403e+06 121038.28 NULL
2014 Dept Of Environment Protection Counsel 181471.00000 1.814710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.814710e+05 1.814710e+05 0.00 NULL
2014 Dept Of Environment Protection Crane Operator Ampes NA NA 29506.48 2.950648e+04 29506.480 245.75 1 2.950648e+04 29506.48 NA NA NA NULL
2014 Dept Of Environment Protection Custodian 30103.22122 1.113819e+06 36225.13 9.790576e+02 0.000 1710.25 37 0.000000e+00 0.00 1.150044e+06 1.113819e+06 36225.13 NULL
2014 Dept Of Environment Protection Customer Information Representative Ma L 1549 60038.75000 2.401550e+05 22197.53 5.549382e+03 3180.450 498.50 4 3.180450e+03 12721.80 2.623525e+05 2.528768e+05 9475.73 NULL
2014 Dept Of Environment Protection Deputy Commissioner 181314.00000 5.439420e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.439420e+05 5.439420e+05 0.00 NULL
2014 Dept Of Environment Protection Director Employee Assistance Program 105725.00000 1.057250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.057250e+05 1.057250e+05 0.00 NULL
2014 Dept Of Environment Protection Director For Equal Employment Opportunity 109728.00000 1.097280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.097280e+05 1.097280e+05 0.00 NULL
2014 Dept Of Environment Protection Director Of Management Information Services 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2014 Dept Of Environment Protection Director Of Noise Abatement 141158.00000 1.411580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.411580e+05 1.411580e+05 0.00 NULL
2014 Dept Of Environment Protection Director Of Technical Services 118800.00000 1.188000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.188000e+05 1.188000e+05 0.00 NULL
2014 Dept Of Environment Protection District Supervisor 85336.00000 2.048064e+06 523903.33 2.182931e+04 25272.720 8086.75 24 2.182931e+04 523903.33 2.571967e+06 2.571967e+06 0.00 NULL
2014 Dept Of Environment Protection Electrical Engineer 78074.66667 1.405344e+06 91889.93 5.104996e+03 1395.745 1796.00 18 1.395745e+03 25123.41 1.497234e+06 1.430467e+06 66766.52 NULL
2014 Dept Of Environment Protection Electrical Engineering Intern 52000.00000 1.560000e+05 1885.47 6.284900e+02 0.000 59.50 3 0.000000e+00 0.00 1.578855e+05 1.560000e+05 1885.47 NULL
2014 Dept Of Environment Protection Electrician NA NA 1143870.29 1.525160e+04 12844.160 16100.00 75 1.284416e+04 963312.00 NA NA NA NULL
2014 Dept Of Environment Protection Electrician’s Helper NA NA 342080.77 8.771302e+03 6318.520 7589.25 39 6.318520e+03 246422.28 NA NA NA NULL
2014 Dept Of Environment Protection Engineering Technician 50325.20777 3.120163e+06 256482.88 4.136821e+03 2944.460 7297.75 62 2.944460e+03 182556.52 3.376646e+06 3.302719e+06 73926.36 NULL
2014 Dept Of Environment Protection Environmental Engineer 80767.60000 8.076760e+05 51943.73 5.194373e+03 361.150 964.50 10 3.611500e+02 3611.50 8.596197e+05 8.112875e+05 48332.23 NULL
2014 Dept Of Environment Protection Environmental Engineering Intern 51299.80000 1.025996e+06 19759.34 9.879670e+02 26.820 635.50 20 2.682000e+01 536.40 1.045755e+06 1.026532e+06 19222.94 NULL
2014 Dept Of Environment Protection Environmental Police Officer 44385.97898 1.478053e+07 1433219.03 4.303961e+03 1419.770 42193.72 333 1.419770e+03 472783.41 1.621375e+07 1.525331e+07 960435.62 NULL
2014 Dept Of Environment Protection Environmental Police Officer-Managerial 112105.50000 6.726330e+05 20797.39 3.466232e+03 0.000 428.05 6 0.000000e+00 0.00 6.934304e+05 6.726330e+05 20797.39 NULL
2014 Dept Of Environment Protection Executive Agency Counsel 130073.53333 1.951103e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.951103e+06 1.951103e+06 0.00 NULL
2014 Dept Of Environment Protection Executive Asst To The Commissioner 95469.00000 9.546900e+04 655.78 6.557800e+02 655.780 12.75 1 6.557800e+02 655.78 9.612478e+04 9.612478e+04 0.00 NULL
2014 Dept Of Environment Protection Executive Chief Of Staff 90000.00000 1.800000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.800000e+05 1.800000e+05 0.00 NULL
2014 Dept Of Environment Protection Executive Deputy Commissioner 195773.50000 3.915470e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.915470e+05 3.915470e+05 0.00 NULL
2014 Dept Of Environment Protection Executive Program Specialist 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2014 Dept Of Environment Protection First Asst Marine Engineer 69971.00000 1.399420e+05 66436.54 3.321827e+04 33218.270 1243.00 2 3.321827e+04 66436.54 2.063785e+05 2.063785e+05 0.00 NULL
2014 Dept Of Environment Protection Gardener 45915.33333 4.132380e+05 1439.41 1.599344e+02 97.190 43.00 9 9.719000e+01 874.71 4.146774e+05 4.141127e+05 564.70 NULL
2014 Dept Of Environment Protection Geologist 55254.11111 4.972870e+05 382.32 4.248000e+01 0.000 13.25 9 0.000000e+00 0.00 4.976693e+05 4.972870e+05 382.32 NULL
2014 Dept Of Environment Protection Industrial Hygienist 53213.62712 3.139604e+06 387359.44 6.565414e+03 1200.610 14931.25 59 1.200610e+03 70835.99 3.526963e+06 3.210440e+06 316523.45 NULL
2014 Dept Of Environment Protection Instrumental Specialist 55968.11940 3.749864e+06 204215.89 3.047998e+03 865.280 5012.25 67 8.652800e+02 57973.76 3.954080e+06 3.807838e+06 146242.13 NULL
2014 Dept Of Environment Protection Interpreter 51680.84000 4.651276e+05 50239.58 5.582176e+03 8297.160 1507.50 9 5.582176e+03 50239.58 5.153671e+05 5.153671e+05 0.00 NULL
2014 Dept Of Environment Protection Investigator 34977.00000 3.497700e+04 17892.86 1.789286e+04 17892.860 672.00 1 1.789286e+04 17892.86 5.286986e+04 5.286986e+04 0.00 NULL
2014 Dept Of Environment Protection Investigator Empl Disc 61668.00000 6.166800e+04 42.19 4.219000e+01 42.190 1.25 1 4.219000e+01 42.19 6.171019e+04 6.171019e+04 0.00 NULL
2014 Dept Of Environment Protection Laboratory Associate 40908.25000 3.272660e+05 5613.10 7.016375e+02 340.515 230.75 8 3.405150e+02 2724.12 3.328791e+05 3.299901e+05 2888.98 NULL
2014 Dept Of Environment Protection Laboratory Helper 36136.00000 2.168160e+05 10757.55 1.792925e+03 1975.035 484.75 6 1.792925e+03 10757.55 2.275735e+05 2.275735e+05 0.00 NULL
2014 Dept Of Environment Protection Laboratory Microbiologist 46710.86667 7.006630e+05 15048.74 1.003249e+03 80.500 500.50 15 8.050000e+01 1207.50 7.157117e+05 7.018705e+05 13841.24 NULL
2014 Dept Of Environment Protection Laborer NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2014 Dept Of Environment Protection Landscape Architect 77132.00000 2.313960e+05 8576.40 2.858800e+03 1777.580 206.50 3 1.777580e+03 5332.74 2.399724e+05 2.367287e+05 3243.66 NULL
2014 Dept Of Environment Protection Machinist NA NA 361263.01 6.451125e+03 4518.120 7088.25 56 4.518120e+03 253014.72 NA NA NA NULL
2014 Dept Of Environment Protection Machinist’s Helper NA NA 69869.55 4.366847e+03 3693.425 1472.00 16 3.693425e+03 59094.80 NA NA NA NULL
2014 Dept Of Environment Protection Manager, Water And Sewer Systems 91345.00000 9.134500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.134500e+04 9.134500e+04 0.00 NULL
2014 Dept Of Environment Protection Manager, Water Supply 105485.50000 2.109710e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.109710e+05 2.109710e+05 0.00 NULL
2014 Dept Of Environment Protection Marine Oiler 58005.00000 4.060350e+05 114755.60 1.639366e+04 15523.460 2816.25 7 1.552346e+04 108664.22 5.207906e+05 5.146992e+05 6091.38 NULL
2014 Dept Of Environment Protection Mariner 58005.00000 9.860850e+05 262107.21 1.541807e+04 14311.500 6322.00 17 1.431150e+04 243295.50 1.248192e+06 1.229380e+06 18811.71 NULL
2014 Dept Of Environment Protection Mate 64673.50000 9.054290e+05 266893.19 1.906380e+04 12554.755 5673.75 14 1.255475e+04 175766.57 1.172322e+06 1.081196e+06 91126.62 NULL
2014 Dept Of Environment Protection Mechanical Engineer 76446.30303 2.522728e+06 141203.30 4.278888e+03 999.440 2355.25 33 9.994400e+02 32981.52 2.663931e+06 2.555710e+06 108221.78 NULL
2014 Dept Of Environment Protection Mechanical Engineering Intern 47674.50000 9.534900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.534900e+04 9.534900e+04 0.00 NULL
2014 Dept Of Environment Protection Motor Vehicle Operator 38921.00000 7.784200e+05 92512.95 4.625648e+03 3684.330 3236.25 20 3.684330e+03 73686.60 8.709329e+05 8.521066e+05 18826.35 NULL
2014 Dept Of Environment Protection Motor Vehicle Supervisor 48013.66667 1.440410e+05 30174.58 1.005819e+04 9671.340 903.00 3 9.671340e+03 29014.02 1.742156e+05 1.730550e+05 1160.56 NULL
2014 Dept Of Environment Protection Oiler NA NA 468126.49 6.593331e+03 4456.380 7297.25 71 4.456380e+03 316402.98 NA NA NA NULL
2014 Dept Of Environment Protection Painter NA NA 31220.05 1.561002e+04 15610.025 616.00 2 1.561002e+04 31220.05 NA NA NA NULL
2014 Dept Of Environment Protection Paralegal Aide 36799.00000 7.359800e+04 646.84 3.234200e+02 323.420 28.00 2 3.234200e+02 646.84 7.424484e+04 7.424484e+04 0.00 NULL
2014 Dept Of Environment Protection Photographer 47367.00000 4.736700e+04 117.90 1.179000e+02 117.900 12.50 1 1.179000e+02 117.90 4.748490e+04 4.748490e+04 0.00 NULL
2014 Dept Of Environment Protection Physicist 66272.00000 1.325440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.325440e+05 1.325440e+05 0.00 NULL
2014 Dept Of Environment Protection Pipe Caulker NA NA 42283.20 4.228320e+04 42283.200 462.50 1 4.228320e+04 42283.20 NA NA NA NULL
2014 Dept Of Environment Protection Plumber NA NA 109509.87 9.125823e+03 4635.515 1174.75 12 4.635515e+03 55626.18 NA NA NA NULL
2014 Dept Of Environment Protection Plumber’s Helper NA NA 47677.28 5.297476e+03 2486.400 713.75 9 2.486400e+03 22377.60 NA NA NA NULL
2014 Dept Of Environment Protection Port Marine Engineer 74859.00000 7.485900e+04 1905.23 1.905230e+03 1905.230 53.00 1 1.905230e+03 1905.23 7.676423e+04 7.676423e+04 0.00 NULL
2014 Dept Of Environment Protection Principal Administrative Associate - Lev 1 & 2 Non Supvr 54087.27587 1.806515e+07 742916.36 2.224300e+03 30.270 20099.00 334 3.027000e+01 10110.18 1.880807e+07 1.807526e+07 732806.18 NULL
2014 Dept Of Environment Protection Procurement Analyst 54088.65854 2.217635e+06 74710.67 1.822211e+03 119.350 2384.75 41 1.193500e+02 4893.35 2.292346e+06 2.222528e+06 69817.32 NULL
2014 Dept Of Environment Protection Project Manager 58110.45455 1.278430e+06 37709.09 1.714050e+03 0.000 936.25 22 0.000000e+00 0.00 1.316139e+06 1.278430e+06 37709.09 NULL
2014 Dept Of Environment Protection Project Manager Intern# 49674.82353 8.444720e+05 29890.39 1.758258e+03 1032.240 1002.50 17 1.032240e+03 17548.08 8.743624e+05 8.620201e+05 12342.31 NULL
2014 Dept Of Environment Protection Public Health Epidemiologist 54480.00000 1.634400e+05 423.77 1.412567e+02 0.000 11.00 3 0.000000e+00 0.00 1.638638e+05 1.634400e+05 423.77 NULL
2014 Dept Of Environment Protection Public Health Sanitarian 50928.16667 9.167070e+05 12177.66 6.765367e+02 8.210 337.75 18 8.210000e+00 147.78 9.288847e+05 9.168548e+05 12029.88 NULL
2014 Dept Of Environment Protection Public Records Aide 36058.60000 3.605860e+05 41242.12 4.124212e+03 4512.385 1713.75 10 4.124212e+03 41242.12 4.018281e+05 4.018281e+05 0.00 NULL
2014 Dept Of Environment Protection Public Records Officer 36740.05000 7.348010e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.348010e+04 7.348010e+04 0.00 NULL
2014 Dept Of Environment Protection Radio Repair Mechanic NA NA 11660.64 1.166064e+04 11660.640 377.50 1 1.166064e+04 11660.64 NA NA NA NULL
2014 Dept Of Environment Protection Research Assistant 44180.00000 1.325400e+05 1678.50 5.595000e+02 0.000 40.75 3 0.000000e+00 0.00 1.342185e+05 1.325400e+05 1678.50 NULL
2014 Dept Of Environment Protection Scientist 55960.18824 4.756616e+06 140560.87 1.653657e+03 268.710 4283.50 85 2.687100e+02 22840.35 4.897177e+06 4.779456e+06 117720.52 NULL
2014 Dept Of Environment Protection Secretary 41303.40341 4.543374e+05 24363.31 2.214846e+03 0.000 826.75 11 0.000000e+00 0.00 4.787007e+05 4.543374e+05 24363.31 NULL
2014 Dept Of Environment Protection Secretary To The Commissioner 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2014 Dept Of Environment Protection Secretary To The Exec Deputy Commissioner 58222.50000 1.164450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.164450e+05 1.164450e+05 0.00 NULL
2014 Dept Of Environment Protection Senior Adviser To The Commissioner 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2014 Dept Of Environment Protection Senior Sewage Treatment Worker NA NA 1672882.85 9.451316e+03 7723.260 39289.70 177 7.723260e+03 1367017.02 NA NA NA NULL
2014 Dept Of Environment Protection Senior Stationary Engineer NA NA 1246323.50 2.225578e+04 24321.275 16564.00 56 2.225578e+04 1246323.50 NA NA NA NULL
2014 Dept Of Environment Protection Sewage Treatment Worker NA NA 3869435.00 6.312292e+03 4511.140 91159.10 613 4.511140e+03 2765328.82 NA NA NA NULL
2014 Dept Of Environment Protection Staff Analyst 56871.45455 2.502344e+06 72904.53 1.656921e+03 0.000 2001.00 44 0.000000e+00 0.00 2.575249e+06 2.502344e+06 72904.53 NULL
2014 Dept Of Environment Protection Staff Analyst Trainee 40502.51724 1.174573e+06 42581.77 1.468337e+03 89.480 1667.25 29 8.948000e+01 2594.92 1.217155e+06 1.177168e+06 39986.85 NULL
2014 Dept Of Environment Protection Stationary Engineer NA NA 2602290.81 1.429830e+04 9936.765 51281.52 182 9.936765e+03 1808491.23 NA NA NA NULL
2014 Dept Of Environment Protection Statistician 73886.00000 7.388600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.388600e+04 7.388600e+04 0.00 NULL
2014 Dept Of Environment Protection Stock Worker 24315.06400 1.215753e+05 5156.23 1.031246e+03 365.980 301.25 5 3.659800e+02 1829.90 1.267316e+05 1.234052e+05 3326.33 NULL
2014 Dept Of Environment Protection Strategic Initiative Specialist 55000.00000 5.500000e+04 2114.81 2.114810e+03 2114.810 70.00 1 2.114810e+03 2114.81 5.711481e+04 5.711481e+04 0.00 NULL
2014 Dept Of Environment Protection Summer College Intern 1710.83200 1.094932e+05 0.00 0.000000e+00 0.000 0.00 64 0.000000e+00 0.00 1.094932e+05 1.094932e+05 0.00 NULL
2014 Dept Of Environment Protection Summer Graduate Intern 2511.73371 7.032854e+04 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 7.032854e+04 7.032854e+04 0.00 NULL
2014 Dept Of Environment Protection Superintendent Of Water And Sewer Systems 107666.95000 2.153339e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 2.153339e+06 2.153339e+06 0.00 NULL
2014 Dept Of Environment Protection Supervising Special Officer 47093.00000 4.709300e+04 12204.62 1.220462e+04 12204.620 368.75 1 1.220462e+04 12204.62 5.929762e+04 5.929762e+04 0.00 NULL
2014 Dept Of Environment Protection Supervisor 73658.66829 1.510003e+07 2051751.89 1.000855e+04 5975.200 35375.00 205 5.975200e+03 1224916.00 1.715178e+07 1.632494e+07 826835.89 NULL
2014 Dept Of Environment Protection Supervisor Bricklayer NA NA 11840.68 1.184068e+04 11840.680 169.25 1 1.184068e+04 11840.68 NA NA NA NULL
2014 Dept Of Environment Protection Supervisor Carpenter NA NA 7455.45 7.455450e+03 7455.450 134.00 1 7.455450e+03 7455.45 NA NA NA NULL
2014 Dept Of Environment Protection Supervisor Electrician NA NA 670927.99 2.683712e+04 22313.230 8484.25 25 2.231323e+04 557830.75 NA NA NA NULL
2014 Dept Of Environment Protection Supervisor Of Mechanics 108264.73684 2.057030e+06 182933.16 9.628061e+03 1521.150 2468.50 19 1.521150e+03 28901.85 2.239963e+06 2.085932e+06 154031.31 NULL
2014 Dept Of Environment Protection Supervisor Of Stock Workers 41713.74194 1.293126e+06 134281.50 4.331661e+03 447.850 4518.75 31 4.478500e+02 13883.35 1.427408e+06 1.307009e+06 120398.15 NULL
2014 Dept Of Environment Protection Supervisor Painter NA NA 18573.16 1.857316e+04 18573.160 338.50 1 1.857316e+04 18573.16 NA NA NA NULL
2014 Dept Of Environment Protection Supervisor Plumber NA NA 66644.12 1.110735e+04 9004.785 664.75 6 9.004785e+03 54028.71 NA NA NA NULL
2014 Dept Of Environment Protection Surveyor 63321.88889 5.698970e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.698970e+05 5.698970e+05 0.00 NULL
2014 Dept Of Environment Protection Telecommunications Associate 70302.62500 5.624210e+05 78471.53 9.808941e+03 5876.185 1643.25 8 5.876185e+03 47009.48 6.408925e+05 6.094305e+05 31462.05 NULL
2014 Dept Of Environment Protection Third Assistant Marine Engineer 65258.00000 4.568060e+05 145552.80 2.079326e+04 23345.740 3079.50 7 2.079326e+04 145552.80 6.023588e+05 6.023588e+05 0.00 NULL
2014 Dept Of Environment Protection Tractor Operator NA NA 1140.64 1.140640e+03 1140.640 11.25 1 1.140640e+03 1140.64 NA NA NA NULL
2014 Dept Of Environment Protection Water Use Inspector 44108.40385 2.293637e+06 298453.81 5.739496e+03 2778.065 9499.50 52 2.778065e+03 144459.38 2.592091e+06 2.438096e+06 153994.43 NULL
2014 Dept Of Environment Protection Watershed Maintainer 46779.58955 1.253693e+07 574393.45 2.143259e+03 902.855 16450.14 268 9.028550e+02 241965.14 1.311132e+07 1.277890e+07 332428.31 NULL
2014 Dept Of Environment Protection Welder NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2014 Dept Of Health/Mental Hygiene *Asist Systms Analyst 57355.00000 1.147100e+05 1.30 6.500000e-01 0.650 0.00 2 6.500000e-01 1.30 1.147113e+05 1.147113e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene *Assist Coordinating Manager 47772.66667 4.299540e+05 1643.23 1.825811e+02 0.000 4.00 9 0.000000e+00 0.00 4.315972e+05 4.299540e+05 1643.23 NULL
2014 Dept Of Health/Mental Hygiene *Associate Director Health Program 95915.00000 4.795750e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.795750e+05 4.795750e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene *Associate Executive Director 109811.00000 7.686770e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.686770e+05 7.686770e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene *Attorney At Law 101855.50000 2.037110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.037110e+05 2.037110e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene *Certified Local Area Network Administrator 82640.00000 8.264000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.264000e+04 8.264000e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene *Community Liaison Worker 46419.33333 1.392580e+05 4398.50 1.466167e+03 61.600 122.00 3 6.160000e+01 184.80 1.436565e+05 1.394428e+05 4213.70 NULL
2014 Dept Of Health/Mental Hygiene *Coordinating Manager 61102.00000 1.466448e+06 9399.23 3.916346e+02 0.000 196.50 24 0.000000e+00 0.00 1.475847e+06 1.466448e+06 9399.23 NULL
2014 Dept Of Health/Mental Hygiene *Custodial Assistant 31522.33333 9.456700e+04 6843.96 2.281320e+03 3335.280 245.50 3 2.281320e+03 6843.96 1.014110e+05 1.014110e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene *Dir Of Fiscal Affairs 81432.00000 8.143200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.143200e+04 8.143200e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene *Director Of Health Care Program Planning/Analysis 90520.00000 4.526000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.526000e+05 4.526000e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene *Personnel Program Developement Specialist 71361.00000 7.136100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.136100e+04 7.136100e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene *Senior Staff Officer 69072.00000 6.907200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.907200e+04 6.907200e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene *Senior Systems Analyst 49410.85714 3.458760e+05 1048.55 1.497929e+02 0.000 22.25 7 0.000000e+00 0.00 3.469245e+05 3.458760e+05 1048.55 NULL
2014 Dept Of Health/Mental Hygiene *Sr Management Consultant 78167.90909 1.719694e+06 2618.14 1.190064e+02 0.000 40.00 22 0.000000e+00 0.00 1.722312e+06 1.719694e+06 2618.14 NULL
2014 Dept Of Health/Mental Hygiene *Sr Systems Analyst - Edp 49610.00000 4.961000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.961000e+04 4.961000e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene *Supvsng Systems Analyst 58994.00000 2.359760e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.359760e+05 2.359760e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene *Systems Analyst 43410.30769 5.643340e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 5.643340e+05 5.643340e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Accountant 57003.00000 1.311069e+06 28922.68 1.257508e+03 214.750 715.00 23 2.147500e+02 4939.25 1.339992e+06 1.316008e+06 23983.43 NULL
2014 Dept Of Health/Mental Hygiene Adm Manager-Non-Mgrl From M1/M2 67403.00000 8.762390e+05 6536.87 5.028362e+02 0.000 164.25 13 0.000000e+00 0.00 8.827759e+05 8.762390e+05 6536.87 NULL
2014 Dept Of Health/Mental Hygiene Admin Community Relations Specialist 89957.77778 8.096200e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.096200e+05 8.096200e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Admin Contract Specialist 93672.81481 2.529166e+06 11582.09 4.289663e+02 0.000 222.50 27 0.000000e+00 0.00 2.540748e+06 2.529166e+06 11582.09 NULL
2014 Dept Of Health/Mental Hygiene Administrative Accountant 94971.00000 1.899420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.899420e+05 1.899420e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Administrative Community Relations Specialist 88350.00000 8.835000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.835000e+04 8.835000e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Administrative Director Of Social Services 92714.00000 1.854280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.854280e+05 1.854280e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Administrative Investigator 98365.00000 2.950950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.950950e+05 2.950950e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Administrative Management Auditor 81350.40000 4.067520e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.067520e+05 4.067520e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Administrative Manager 137500.00000 1.375000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.375000e+05 1.375000e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Administrative Printing Services Manager 106862.00000 1.068620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.068620e+05 1.068620e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Administrative Procurement Analyst 76111.25000 3.044450e+05 33715.24 8.428810e+03 1382.155 495.50 4 1.382155e+03 5528.62 3.381602e+05 3.099736e+05 28186.62 NULL
2014 Dept Of Health/Mental Hygiene Administrative Psychologist 126117.50000 2.522350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.522350e+05 2.522350e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Administrative Public Health Nurse 99460.25000 1.989205e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.989205e+06 1.989205e+06 0.00 NULL
2014 Dept Of Health/Mental Hygiene Administrative Public Health Sanitarian 106296.62500 8.503730e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.503730e+05 8.503730e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Administrative Public Information Specialist 89099.21429 1.247389e+06 3424.67 2.446193e+02 0.000 62.75 14 0.000000e+00 0.00 1.250814e+06 1.247389e+06 3424.67 NULL
2014 Dept Of Health/Mental Hygiene Administrative Space Analyst 106126.00000 1.061260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.061260e+05 1.061260e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Administrative Staff Analyst 80083.99649 2.282394e+07 153969.65 5.402444e+02 0.000 3503.50 285 0.000000e+00 0.00 2.297791e+07 2.282394e+07 153969.65 NULL
2014 Dept Of Health/Mental Hygiene Administrative Storekeeper 73615.66667 2.208470e+05 5910.53 1.970177e+03 0.000 123.00 3 0.000000e+00 0.00 2.267575e+05 2.208470e+05 5910.53 NULL
2014 Dept Of Health/Mental Hygiene Administrative Supervisor Of Building Maintenance 104579.75000 4.183190e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.183190e+05 4.183190e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Agency Attorney 83234.65965 1.997632e+06 1954.68 8.144500e+01 0.000 3.50 24 0.000000e+00 0.00 1.999587e+06 1.997632e+06 1954.68 NULL
2014 Dept Of Health/Mental Hygiene Agency Attorney Interne 56960.00000 1.708800e+05 1353.71 4.512367e+02 0.000 27.50 3 0.000000e+00 0.00 1.722337e+05 1.708800e+05 1353.71 NULL
2014 Dept Of Health/Mental Hygiene Agency Chief Contracting Officer 133767.00000 2.675340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.675340e+05 2.675340e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Agency Deputy Medical Director 138159.66667 4.144790e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.144790e+05 4.144790e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Agency Medical Director 166403.96000 4.160099e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 4.160099e+06 4.160099e+06 0.00 NULL
2014 Dept Of Health/Mental Hygiene Agency Security Director 74470.00000 7.447000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.447000e+04 7.447000e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Architect 90967.50000 3.638700e+05 26771.48 6.692870e+03 0.000 348.75 4 0.000000e+00 0.00 3.906415e+05 3.638700e+05 26771.48 NULL
2014 Dept Of Health/Mental Hygiene Assistant Architect 58239.33333 1.747180e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.747180e+05 1.747180e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Assistant Commissioner 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Assistant Director Health Program 67886.00000 6.788600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.788600e+04 6.788600e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Assistant Director Of Forensic Biology 127919.00000 2.558380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.558380e+05 2.558380e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Assistant Director Of Toxicology 137186.00000 1.371860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.371860e+05 1.371860e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Assistant Electrical Engineer 55345.00000 5.534500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.534500e+04 5.534500e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Assistant Printing Press Operator 50412.25000 1.008245e+05 294.88 1.474400e+02 147.440 8.00 2 1.474400e+02 294.88 1.011194e+05 1.011194e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Associate Chemist 62017.25000 2.480690e+05 380.53 9.513250e+01 35.550 2.00 4 3.555000e+01 142.20 2.484495e+05 2.482112e+05 238.33 NULL
2014 Dept Of Health/Mental Hygiene Associate Contract Specialist 61400.75000 2.456030e+05 227.76 5.694000e+01 31.940 11.00 4 3.194000e+01 127.76 2.458308e+05 2.457308e+05 100.00 NULL
2014 Dept Of Health/Mental Hygiene Associate Correctional Counselor 53138.00000 5.313800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.313800e+04 5.313800e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Associate Director Of Nursing Services 100650.00000 1.006500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.006500e+05 1.006500e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Associate Investigator 57846.00000 5.784600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.784600e+04 5.784600e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Associate Laboratory Microbiologist 61158.13514 2.262851e+06 34866.71 9.423435e+02 42.000 1205.75 37 4.200000e+01 1554.00 2.297718e+06 2.264405e+06 33312.71 NULL
2014 Dept Of Health/Mental Hygiene Associate Project Manager 82679.00000 2.480370e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.480370e+05 2.480370e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Associate Public Health Sanitarian 63247.74016 8.032463e+06 351616.07 2.768630e+03 303.140 9013.75 127 3.031400e+02 38498.78 8.384079e+06 8.070962e+06 313117.29 NULL
2014 Dept Of Health/Mental Hygiene Associate Public Information Specialist 53360.71429 7.470500e+05 425.73 3.040929e+01 0.000 13.50 14 0.000000e+00 0.00 7.474757e+05 7.470500e+05 425.73 NULL
2014 Dept Of Health/Mental Hygiene Associate Staff Analyst 74574.28901 6.786260e+06 33498.06 3.681105e+02 0.000 745.75 91 0.000000e+00 0.00 6.819758e+06 6.786260e+06 33498.06 NULL
2014 Dept Of Health/Mental Hygiene Asst Commissioner 186000.00000 1.860000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.860000e+05 1.860000e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Asst Pb Hlth Adv 31058.91728 7.764729e+05 17196.35 6.878540e+02 0.000 838.00 25 0.000000e+00 0.00 7.936693e+05 7.764729e+05 17196.35 NULL
2014 Dept Of Health/Mental Hygiene Attending Physician 141202.00000 1.412020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.412020e+05 1.412020e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Bookbinder 36957.00000 3.695700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.695700e+04 3.695700e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Bookkeeper 42974.87500 3.437990e+05 10296.32 1.287040e+03 956.815 455.25 8 9.568150e+02 7654.52 3.540953e+05 3.514535e+05 2641.80 NULL
2014 Dept Of Health/Mental Hygiene Carpenter NA NA 8576.69 8.576690e+03 8576.690 116.75 1 8.576690e+03 8576.69 NA NA NA NULL
2014 Dept Of Health/Mental Hygiene Caseworker 42218.65217 9.710290e+05 25414.14 1.104963e+03 0.000 773.75 23 0.000000e+00 0.00 9.964431e+05 9.710290e+05 25414.14 NULL
2014 Dept Of Health/Mental Hygiene Certified It Administrator 86627.97727 1.905816e+06 89932.59 4.087845e+03 527.850 1644.25 22 5.278500e+02 11612.70 1.995748e+06 1.917428e+06 78319.89 NULL
2014 Dept Of Health/Mental Hygiene Certified It Developer 89712.80000 8.971280e+05 17944.35 1.794435e+03 0.000 293.50 10 0.000000e+00 0.00 9.150723e+05 8.971280e+05 17944.35 NULL
2014 Dept Of Health/Mental Hygiene Chief Consultant 89166.00000 8.916600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.916600e+04 8.916600e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene City Clinician 91806.29739 2.203351e+06 84215.11 3.508963e+03 326.850 1345.75 24 3.268500e+02 7844.40 2.287566e+06 2.211196e+06 76370.71 NULL
2014 Dept Of Health/Mental Hygiene City Custodial Assistant 29938.84998 1.197554e+06 44208.39 1.105210e+03 644.380 1936.00 40 6.443800e+02 25775.20 1.241762e+06 1.223329e+06 18433.19 NULL
2014 Dept Of Health/Mental Hygiene City Deputy Medical Director 169811.00000 1.698110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.698110e+05 1.698110e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene City Laborer NA NA 94071.55 4.703578e+03 2474.460 1985.25 20 2.474460e+03 49489.20 NA NA NA NULL
2014 Dept Of Health/Mental Hygiene City Medical Examiner 170620.35897 6.654194e+06 571.09 1.464333e+01 0.000 8.50 39 0.000000e+00 0.00 6.654765e+06 6.654194e+06 571.09 NULL
2014 Dept Of Health/Mental Hygiene City Medical Specialist 100875.03950 9.381379e+06 140936.64 1.515448e+03 0.000 1877.75 93 0.000000e+00 0.00 9.522315e+06 9.381379e+06 140936.64 NULL
2014 Dept Of Health/Mental Hygiene City Mortuary Technician 36177.69444 1.302397e+06 69453.88 1.929274e+03 1128.050 2915.75 36 1.128050e+03 40609.80 1.371851e+06 1.343007e+06 28844.08 NULL
2014 Dept Of Health/Mental Hygiene City Pest Control Aide 27754.84686 6.106066e+05 10719.09 4.872314e+02 0.000 494.00 22 0.000000e+00 0.00 6.213257e+05 6.106066e+05 10719.09 NULL
2014 Dept Of Health/Mental Hygiene City Research Scientist 78255.30873 3.216293e+07 98247.13 2.390441e+02 0.000 2114.75 411 0.000000e+00 0.00 3.226118e+07 3.216293e+07 98247.13 NULL
2014 Dept Of Health/Mental Hygiene City Veterinarian 43908.81375 1.756353e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.756353e+05 1.756353e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Civil Engineer 73597.50000 1.471950e+05 3259.77 1.629885e+03 1629.885 114.00 2 1.629885e+03 3259.77 1.504548e+05 1.504548e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Clerical Aide 26931.33333 2.423820e+05 984.97 1.094411e+02 0.000 55.25 9 0.000000e+00 0.00 2.433670e+05 2.423820e+05 984.97 NULL
2014 Dept Of Health/Mental Hygiene Clerical Associate Most Mayoral Ag 36922.15871 9.082851e+06 230886.93 9.385648e+02 0.000 8391.75 246 0.000000e+00 0.00 9.313738e+06 9.082851e+06 230886.93 NULL
2014 Dept Of Health/Mental Hygiene College Aide 5076.69498 9.138051e+05 0.00 0.000000e+00 0.000 0.00 180 0.000000e+00 0.00 9.138051e+05 9.138051e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene College Aide - Assignment Levels Ii And Iii 10873.28250 6.523969e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.523969e+04 6.523969e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Commissioner Of Health 205180.00000 4.103600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.103600e+05 4.103600e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Community Assistant 30552.95333 1.833177e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.833177e+05 1.833177e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Community Associate 42019.37500 1.008465e+06 51433.46 2.143061e+03 23.340 1803.75 24 2.334000e+01 560.16 1.059898e+06 1.009025e+06 50873.30 NULL
2014 Dept Of Health/Mental Hygiene Community Coordinator 55765.47059 9.480130e+05 47997.44 2.823379e+03 0.000 945.25 17 0.000000e+00 0.00 9.960104e+05 9.480130e+05 47997.44 NULL
2014 Dept Of Health/Mental Hygiene Community Service Aide 22973.26600 2.067594e+05 738.19 8.202111e+01 0.000 57.50 9 0.000000e+00 0.00 2.074976e+05 2.067594e+05 738.19 NULL
2014 Dept Of Health/Mental Hygiene Computer Aide-Non-Spvr 40851.86514 2.328556e+06 56259.55 9.870096e+02 0.000 1771.00 57 0.000000e+00 0.00 2.384816e+06 2.328556e+06 56259.55 NULL
2014 Dept Of Health/Mental Hygiene Computer Associate 62092.64894 2.918354e+06 55652.47 1.184095e+03 0.000 1305.00 47 0.000000e+00 0.00 2.974007e+06 2.918354e+06 55652.47 NULL
2014 Dept Of Health/Mental Hygiene Computer Programmer Analyst 55038.00000 3.852660e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.852660e+05 3.852660e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Computer Service Technician 44184.31783 6.627648e+05 9925.02 6.616680e+02 0.000 280.50 15 0.000000e+00 0.00 6.726898e+05 6.627648e+05 9925.02 NULL
2014 Dept Of Health/Mental Hygiene Computer Specialist 88467.50000 5.308050e+06 62048.20 1.034137e+03 0.000 1064.25 60 0.000000e+00 0.00 5.370098e+06 5.308050e+06 62048.20 NULL
2014 Dept Of Health/Mental Hygiene Computer Systems Manager 96293.52632 7.318308e+06 36.59 4.814474e-01 0.000 1.00 76 0.000000e+00 0.00 7.318345e+06 7.318308e+06 36.59 NULL
2014 Dept Of Health/Mental Hygiene Consultant 66553.35556 2.994901e+06 159364.12 3.541425e+03 703.350 3613.50 45 7.033500e+02 31650.75 3.154265e+06 3.026552e+06 127713.37 NULL
2014 Dept Of Health/Mental Hygiene Consultant Public Health Nurse 70824.00000 1.416480e+05 4688.20 2.344100e+03 2344.100 68.25 2 2.344100e+03 4688.20 1.463362e+05 1.463362e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Contract Specialist 59480.00000 4.758400e+05 446.33 5.579125e+01 0.000 10.25 8 0.000000e+00 0.00 4.762863e+05 4.758400e+05 446.33 NULL
2014 Dept Of Health/Mental Hygiene Correctional Counselor 44970.85714 3.147960e+05 538.36 7.690857e+01 54.650 18.50 7 5.465000e+01 382.55 3.153344e+05 3.151785e+05 155.81 NULL
2014 Dept Of Health/Mental Hygiene Counsel 158075.00000 1.580750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.580750e+05 1.580750e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Criminalist 61663.27684 1.091440e+07 479426.99 2.708627e+03 941.100 10524.00 177 9.411000e+02 166574.70 1.139383e+07 1.108097e+07 312852.29 NULL
2014 Dept Of Health/Mental Hygiene Criminalist Assistant Director Of Laboratory 110496.18182 1.215458e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.215458e+06 1.215458e+06 0.00 NULL
2014 Dept Of Health/Mental Hygiene Criminalist Deputy Director Of Labatory 102210.00000 2.044200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.044200e+05 2.044200e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Custodian 35360.39935 8.486496e+05 59632.84 2.484702e+03 2462.515 2576.75 24 2.462515e+03 59100.36 9.082824e+05 9.077499e+05 532.48 NULL
2014 Dept Of Health/Mental Hygiene Customer Information Representative Ma L 1549 68466.00000 6.846600e+04 11930.90 1.193090e+04 11930.900 240.25 1 1.193090e+04 11930.90 8.039690e+04 8.039690e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Deputy Chief City Medical Examiner 202484.00000 2.024840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.024840e+05 2.024840e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Deputy Commissioner 195666.66667 5.870000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.870000e+05 5.870000e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Deputy Commissioner For Administation 143000.00000 1.430000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.430000e+05 1.430000e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Deputy Director Of Medicolegal Investigations 108000.00000 1.080000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.080000e+05 1.080000e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Director 167941.00000 1.679410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.679410e+05 1.679410e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Director Of Crisis Assistance And Training 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Director Of Forensic Biology 185000.00000 1.850000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.850000e+05 1.850000e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Director Of Nursing Services 129295.00000 1.292950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.292950e+05 1.292950e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Director Of Public Relations 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Director Of Security 74900.00000 7.490000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.490000e+04 7.490000e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Director, Medical Affairs 144772.00000 1.447720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.447720e+05 1.447720e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Electrician NA NA 16084.25 8.042125e+03 8042.125 255.50 2 8.042125e+03 16084.25 NA NA NA NULL
2014 Dept Of Health/Mental Hygiene Electrician’s Helper NA NA 14920.25 1.492025e+04 14920.250 340.00 1 1.492025e+04 14920.25 NA NA NA NULL
2014 Dept Of Health/Mental Hygiene Environmental Health Technician 34813.20000 1.740660e+05 444.63 8.892600e+01 0.000 20.75 5 0.000000e+00 0.00 1.745106e+05 1.740660e+05 444.63 NULL
2014 Dept Of Health/Mental Hygiene Evidence And Property Control Specialist 52510.11111 1.890364e+06 303703.49 8.436208e+03 5475.680 7863.75 36 5.475680e+03 197124.48 2.194067e+06 2.087488e+06 106579.01 NULL
2014 Dept Of Health/Mental Hygiene Executive Agency Counsel 118305.63636 1.301362e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.301362e+06 1.301362e+06 0.00 NULL
2014 Dept Of Health/Mental Hygiene Executive Deputy Commissioner For Mental Hygiene 191610.00000 1.916100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.916100e+05 1.916100e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Executive Secretary 45197.22350 4.519722e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.519722e+04 4.519722e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Exterminator 32988.59659 7.257491e+05 35851.91 1.629632e+03 0.000 1161.00 22 0.000000e+00 0.00 7.616010e+05 7.257491e+05 35851.91 NULL
2014 Dept Of Health/Mental Hygiene Family Pub Health Nurse 74648.66667 1.343676e+06 240.48 1.336000e+01 0.000 0.00 18 0.000000e+00 0.00 1.343916e+06 1.343676e+06 240.48 NULL
2014 Dept Of Health/Mental Hygiene Forens Mort Tech-Coord Mrt Srv 80308.00000 8.030800e+04 16923.09 1.692309e+04 16923.090 311.00 1 1.692309e+04 16923.09 9.723109e+04 9.723109e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Forensic Mortuary Technician 46223.92308 1.201822e+06 148878.84 5.726109e+03 3783.485 4898.75 26 3.783485e+03 98370.61 1.350701e+06 1.300193e+06 50508.23 NULL
2014 Dept Of Health/Mental Hygiene Health Care Prog Plan/Analyst 49367.11111 4.443040e+05 23.61 2.623333e+00 0.000 0.00 9 0.000000e+00 0.00 4.443276e+05 4.443040e+05 23.61 NULL
2014 Dept Of Health/Mental Hygiene Health Services Manager 99746.37975 1.965004e+07 1176.21 5.970609e+00 0.000 18.75 197 0.000000e+00 0.00 1.965121e+07 1.965004e+07 1176.21 NULL
2014 Dept Of Health/Mental Hygiene Industrial Hygienist 58216.00000 5.821600e+04 48.62 4.862000e+01 48.620 2.75 1 4.862000e+01 48.62 5.826462e+04 5.826462e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Institutional Aide 33812.27136 7.438700e+05 26658.38 1.211745e+03 80.505 798.75 22 8.050500e+01 1771.11 7.705283e+05 7.456411e+05 24887.27 NULL
2014 Dept Of Health/Mental Hygiene Interpreter 55645.66667 1.669370e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.669370e+05 1.669370e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Investigator 47773.69231 6.210580e+05 11636.27 8.950977e+02 0.000 461.00 13 0.000000e+00 0.00 6.326943e+05 6.210580e+05 11636.27 NULL
2014 Dept Of Health/Mental Hygiene Jr Phnurse 32873.37654 1.683117e+07 192966.80 3.768883e+02 0.000 5396.00 512 0.000000e+00 0.00 1.702414e+07 1.683117e+07 192966.80 NULL
2014 Dept Of Health/Mental Hygiene Junior Public Health Nurse 62459.70107 1.748872e+06 23095.07 8.248239e+02 110.890 555.50 28 1.108900e+02 3104.92 1.771967e+06 1.751977e+06 19990.15 NULL
2014 Dept Of Health/Mental Hygiene Laboratory Associate 38705.67951 1.393404e+06 25990.07 7.219464e+02 59.975 1024.75 36 5.997500e+01 2159.10 1.419395e+06 1.395564e+06 23830.97 NULL
2014 Dept Of Health/Mental Hygiene Laboratory Helper 30786.61762 3.078662e+05 1267.80 1.267800e+02 0.000 88.25 10 0.000000e+00 0.00 3.091340e+05 3.078662e+05 1267.80 NULL
2014 Dept Of Health/Mental Hygiene Laboratory Microbiologist 47039.23670 2.116766e+06 14554.37 3.234304e+02 22.720 447.75 45 2.272000e+01 1022.40 2.131320e+06 2.117788e+06 13531.97 NULL
2014 Dept Of Health/Mental Hygiene Legal Secretarial Assistant Al 2,3,4 Only 56534.00000 5.653400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.653400e+04 5.653400e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Maintenance Worker NA NA 52752.10 4.795645e+03 1489.990 1205.75 11 1.489990e+03 16389.89 NA NA NA NULL
2014 Dept Of Health/Mental Hygiene Management Auditor 69077.85714 4.835450e+05 8401.11 1.200159e+03 18.590 181.50 7 1.859000e+01 130.13 4.919461e+05 4.836751e+05 8270.98 NULL
2014 Dept Of Health/Mental Hygiene Mechanical Engineer 66051.00000 6.605100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.605100e+04 6.605100e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Medical Investigator 46813.78050 9.362756e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.362756e+04 9.362756e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Medical Record Librarian 45969.00000 9.193800e+04 68.75 3.437500e+01 34.375 2.50 2 3.437500e+01 68.75 9.200675e+04 9.200675e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Medical Specialist 101360.32000 3.040810e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.040810e+05 3.040810e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Medicolegal Investigator 84368.20000 2.531046e+06 127828.83 4.260961e+03 2257.980 2070.75 30 2.257980e+03 67739.40 2.658875e+06 2.598785e+06 60089.43 NULL
2014 Dept Of Health/Mental Hygiene Motor Vehicle Operator 41968.89220 2.476165e+06 117662.08 1.994273e+03 1209.600 3965.75 59 1.209600e+03 71366.40 2.593827e+06 2.547531e+06 46295.68 NULL
2014 Dept Of Health/Mental Hygiene Motor Vehicle Supervisor 50296.80000 2.514840e+05 21266.40 4.253280e+03 422.230 571.25 5 4.222300e+02 2111.15 2.727504e+05 2.535951e+05 19155.25 NULL
2014 Dept Of Health/Mental Hygiene Nurse Practicioner 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Nurse’s Aide 35294.50000 7.058900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.058900e+04 7.058900e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Nutritionist 59303.00000 1.779090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.779090e+05 1.779090e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Office Machine Aide 34365.54545 3.780210e+05 15060.87 1.369170e+03 0.000 749.25 11 0.000000e+00 0.00 3.930819e+05 3.780210e+05 15060.87 NULL
2014 Dept Of Health/Mental Hygiene Oiler NA NA 77778.77 2.592626e+04 24952.260 1343.00 3 2.495226e+04 74856.78 NA NA NA NULL
2014 Dept Of Health/Mental Hygiene Peer Counselor 31664.50000 6.332900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.332900e+04 6.332900e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Personnel Director - Health Care Facilities 127793.00000 1.277930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.277930e+05 1.277930e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Pharmacy Technician 38727.00000 7.745400e+04 442.68 2.213400e+02 221.340 19.25 2 2.213400e+02 442.68 7.789668e+04 7.789668e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Photographer 39957.50000 1.598300e+05 8666.76 2.166690e+03 1731.625 353.75 4 1.731625e+03 6926.50 1.684968e+05 1.667565e+05 1740.26 NULL
2014 Dept Of Health/Mental Hygiene Physicist 72736.00000 7.273600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.273600e+04 7.273600e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Poison Information Specialist 84084.71265 1.429440e+06 95456.39 5.615082e+03 276.880 1480.25 17 2.768800e+02 4706.96 1.524897e+06 1.434147e+06 90749.43 NULL
2014 Dept Of Health/Mental Hygiene Principal Administrative Associate - Lev 1 & 2 Non Supvr 50953.43254 1.370647e+07 179432.26 6.670344e+02 0.000 4765.75 269 0.000000e+00 0.00 1.388591e+07 1.370647e+07 179432.26 NULL
2014 Dept Of Health/Mental Hygiene Printing Press Operator NA NA 0.00 0.000000e+00 0.000 10.00 6 0.000000e+00 0.00 NA NA NA NULL
2014 Dept Of Health/Mental Hygiene Procurement Analyst 54742.80214 3.777253e+06 56482.55 8.185877e+02 0.000 1490.75 69 0.000000e+00 0.00 3.833736e+06 3.777253e+06 56482.55 NULL
2014 Dept Of Health/Mental Hygiene Psychiatrist 77606.96083 2.328209e+05 9403.92 3.134640e+03 1476.990 99.75 3 1.476990e+03 4430.97 2.422248e+05 2.372519e+05 4972.95 NULL
2014 Dept Of Health/Mental Hygiene Psychologist 81203.20000 1.624064e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.624064e+05 1.624064e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Public Health Adviser 38068.57226 1.872974e+07 192553.68 3.913693e+02 0.000 6166.50 492 0.000000e+00 0.00 1.892229e+07 1.872974e+07 192553.68 NULL
2014 Dept Of Health/Mental Hygiene Public Health Assistant 24786.65125 2.800892e+06 16586.94 1.467871e+02 0.000 747.00 113 0.000000e+00 0.00 2.817479e+06 2.800892e+06 16586.94 NULL
2014 Dept Of Health/Mental Hygiene Public Health Education Trainee 42396.00000 4.239600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.239600e+04 4.239600e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Public Health Educator 58141.54000 2.907077e+06 15246.14 3.049228e+02 0.000 429.25 50 0.000000e+00 0.00 2.922323e+06 2.907077e+06 15246.14 NULL
2014 Dept Of Health/Mental Hygiene Public Health Epidemiologist 58600.89655 3.398852e+06 37048.22 6.387624e+02 0.000 968.50 58 0.000000e+00 0.00 3.435900e+06 3.398852e+06 37048.22 NULL
2014 Dept Of Health/Mental Hygiene Public Health Nurse 40154.23026 2.015742e+07 208838.78 4.160135e+02 0.000 5635.25 502 0.000000e+00 0.00 2.036626e+07 2.015742e+07 208838.78 NULL
2014 Dept Of Health/Mental Hygiene Public Health Sanitarian 50075.99281 1.392113e+07 652441.14 2.346911e+03 107.775 18037.25 278 1.077750e+02 29961.45 1.457357e+07 1.395109e+07 622479.69 NULL
2014 Dept Of Health/Mental Hygiene Public Records Aide 32309.29487 1.777011e+06 12602.15 2.291300e+02 0.000 576.00 55 0.000000e+00 0.00 1.789613e+06 1.777011e+06 12602.15 NULL
2014 Dept Of Health/Mental Hygiene Public Records Officer 42752.00000 4.275200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.275200e+04 4.275200e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Research Assistant 50345.60000 2.517280e+05 153.74 3.074800e+01 0.000 0.00 5 0.000000e+00 0.00 2.518817e+05 2.517280e+05 153.74 NULL
2014 Dept Of Health/Mental Hygiene Scientist 66680.66667 1.000210e+06 8289.10 5.526067e+02 0.000 207.75 15 0.000000e+00 0.00 1.008499e+06 1.000210e+06 8289.10 NULL
2014 Dept Of Health/Mental Hygiene Secretary 40871.23492 2.574888e+06 23445.21 3.721462e+02 0.000 840.75 63 0.000000e+00 0.00 2.598333e+06 2.574888e+06 23445.21 NULL
2014 Dept Of Health/Mental Hygiene Senior Consultant 79143.00000 7.914300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.914300e+04 7.914300e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Senior Executive Secretary 60662.00000 6.066200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.066200e+04 6.066200e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Senior Housekeeper 37972.00000 3.797200e+04 3237.08 3.237080e+03 3237.080 117.50 1 3.237080e+03 3237.08 4.120908e+04 4.120908e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Senior Medical Specialist 34368.07667 1.031042e+05 213.54 7.118000e+01 0.000 3.00 3 0.000000e+00 0.00 1.033178e+05 1.031042e+05 213.54 NULL
2014 Dept Of Health/Mental Hygiene Senior Photographer 48169.66667 1.445090e+05 8278.02 2.759340e+03 3160.480 250.50 3 2.759340e+03 8278.02 1.527870e+05 1.527870e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Senior Stationary Engineer NA NA 102483.87 5.124193e+04 51241.935 1222.00 2 5.124193e+04 102483.87 NA NA NA NULL
2014 Dept Of Health/Mental Hygiene Social Worker 53622.28814 3.163715e+06 65764.66 1.114655e+03 0.000 1712.50 59 0.000000e+00 0.00 3.229480e+06 3.163715e+06 65764.66 NULL
2014 Dept Of Health/Mental Hygiene Space Analyst 71155.00000 1.423100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.423100e+05 1.423100e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Spec Consultant 70515.61565 1.621859e+06 3870.49 1.682822e+02 0.000 77.50 23 0.000000e+00 0.00 1.625730e+06 1.621859e+06 3870.49 NULL
2014 Dept Of Health/Mental Hygiene Special Asst For Investigations/Inspector Gen 74975.00000 7.497500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.497500e+04 7.497500e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Special Consultant 65761.91667 7.891430e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.891430e+05 7.891430e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Special Officer 38365.56266 1.956644e+06 349636.77 6.855623e+03 4510.780 11254.00 51 4.510780e+03 230049.78 2.306280e+06 2.186693e+06 119586.99 NULL
2014 Dept Of Health/Mental Hygiene Sr Associate Health Program Director 140947.00000 1.409470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.409470e+05 1.409470e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Sr Healthcare Prog Plan Anlyst 58051.04118 4.934338e+06 10357.89 1.218575e+02 0.000 137.75 85 0.000000e+00 0.00 4.944696e+06 4.934338e+06 10357.89 NULL
2014 Dept Of Health/Mental Hygiene Staff Analyst 62330.15455 3.428158e+06 35836.88 6.515796e+02 0.000 752.25 55 0.000000e+00 0.00 3.463995e+06 3.428158e+06 35836.88 NULL
2014 Dept Of Health/Mental Hygiene Staff Analyst Trainee 37373.40804 5.232277e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 5.232277e+05 5.232277e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Stationary Engineer NA NA 734289.45 4.319350e+04 44621.230 9621.75 17 4.319350e+04 734289.45 NA NA NA NULL
2014 Dept Of Health/Mental Hygiene Statistician 38303.00000 3.830300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.830300e+04 3.830300e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Stock Worker 33274.70796 5.989447e+05 30648.32 1.702684e+03 0.000 1205.50 18 0.000000e+00 0.00 6.295931e+05 5.989447e+05 30648.32 NULL
2014 Dept Of Health/Mental Hygiene Summer College Intern 2762.97000 8.288910e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 8.288910e+03 8.288910e+03 0.00 NULL
2014 Dept Of Health/Mental Hygiene Summer Graduate Intern 4961.45791 4.465312e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.465312e+04 4.465312e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Supervising Computer Service Technician 61405.78571 4.298405e+05 6402.33 9.146186e+02 0.000 165.00 7 0.000000e+00 0.00 4.362428e+05 4.298405e+05 6402.33 NULL
2014 Dept Of Health/Mental Hygiene Supervising Public Health Adviser 53563.15190 4.231489e+06 109355.79 1.384251e+03 0.000 2894.50 79 0.000000e+00 0.00 4.340845e+06 4.231489e+06 109355.79 NULL
2014 Dept Of Health/Mental Hygiene Supervising Special Officer 47971.75000 3.837740e+05 142526.07 1.781576e+04 20395.940 3753.75 8 1.781576e+04 142526.07 5.263001e+05 5.263001e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Supervisor 43310.66667 7.795920e+05 64561.19 3.586733e+03 0.000 1713.25 18 0.000000e+00 0.00 8.441532e+05 7.795920e+05 64561.19 NULL
2014 Dept Of Health/Mental Hygiene Supervisor Electrician NA NA 936.33 4.681650e+02 468.165 11.50 2 4.681650e+02 936.33 NA NA NA NULL
2014 Dept Of Health/Mental Hygiene Supervisor I Social Work 61378.00000 3.068900e+05 693.66 1.387320e+02 0.000 17.00 5 0.000000e+00 0.00 3.075837e+05 3.068900e+05 693.66 NULL
2014 Dept Of Health/Mental Hygiene Supervisor Ii Social Work 68478.66667 2.054360e+05 3.16 1.053333e+00 0.000 0.00 3 0.000000e+00 0.00 2.054392e+05 2.054360e+05 3.16 NULL
2014 Dept Of Health/Mental Hygiene Supervisor Iii Social Work 71968.80000 3.598440e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.598440e+05 3.598440e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Supervisor Of Mechanical Installations & Maintenance 78973.50000 1.579470e+05 16555.98 8.277990e+03 8277.990 298.00 2 8.277990e+03 16555.98 1.745030e+05 1.745030e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Supervisor Of Motor Transport 58838.50000 1.176770e+05 9260.16 4.630080e+03 4630.080 203.75 2 4.630080e+03 9260.16 1.269372e+05 1.269372e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Supervisor Of Office Machine Operations 40793.50000 8.158700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.158700e+04 8.158700e+04 0.00 NULL
2014 Dept Of Health/Mental Hygiene Supervisor Of Stock Workers 44687.00000 1.340610e+05 9307.92 3.102640e+03 4113.260 275.25 3 3.102640e+03 9307.92 1.433689e+05 1.433689e+05 0.00 NULL
2014 Dept Of Health/Mental Hygiene Telecommunications Associate 58082.75000 2.323310e+05 5241.59 1.310398e+03 176.140 180.00 4 1.761400e+02 704.56 2.375726e+05 2.330356e+05 4537.03 NULL
2014 Dept Of Health/Mental Hygiene X-Ray Technician 48442.50365 6.297525e+05 38244.95 2.941919e+03 162.750 1064.25 13 1.627500e+02 2115.75 6.679975e+05 6.318683e+05 36129.20 NULL
2014 Dept Of Info Tech & Telecomm *Attorney At Law 89823.00000 8.982300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.982300e+04 8.982300e+04 0.00 NULL
2014 Dept Of Info Tech & Telecomm *Certified Database Administrator 117636.50000 2.352730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.352730e+05 2.352730e+05 0.00 NULL
2014 Dept Of Info Tech & Telecomm *Certified Local Area Network Administrator 98801.55556 8.892140e+05 2796.77 3.107522e+02 0.000 50.50 9 0.000000e+00 0.00 8.920108e+05 8.892140e+05 2796.77 NULL
2014 Dept Of Info Tech & Telecomm *Certified Wide Area Network Administrator 114734.75000 4.589390e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.589390e+05 4.589390e+05 0.00 NULL
2014 Dept Of Info Tech & Telecomm Accountant 64765.00000 6.476500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.476500e+04 6.476500e+04 0.00 NULL
2014 Dept Of Info Tech & Telecomm Adm Manager-Non-Mgrl From M1/M2 67081.88889 3.622422e+06 68217.66 1.263290e+03 0.000 1506.75 54 0.000000e+00 0.00 3.690640e+06 3.622422e+06 68217.66 NULL
2014 Dept Of Info Tech & Telecomm Administrative Business Promotion Coordinator 101513.25000 4.060530e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.060530e+05 4.060530e+05 0.00 NULL
2014 Dept Of Info Tech & Telecomm Administrative Construction Project Manager 108000.00000 1.080000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.080000e+05 1.080000e+05 0.00 NULL
2014 Dept Of Info Tech & Telecomm Administrative Manager 109675.18182 1.206427e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.206427e+06 1.206427e+06 0.00 NULL
2014 Dept Of Info Tech & Telecomm Administrative Procurement Analyst 101924.50000 4.076980e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.076980e+05 4.076980e+05 0.00 NULL
2014 Dept Of Info Tech & Telecomm Administrative Staff Analyst 96416.68421 7.327668e+06 16185.69 2.129696e+02 0.000 428.25 76 0.000000e+00 0.00 7.343854e+06 7.327668e+06 16185.69 NULL
2014 Dept Of Info Tech & Telecomm Agency Attorney 78367.00000 3.134680e+05 164.93 4.123250e+01 0.000 0.00 4 0.000000e+00 0.00 3.136329e+05 3.134680e+05 164.93 NULL
2014 Dept Of Info Tech & Telecomm Agency Chief Contracting Officer 140608.00000 1.406080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.406080e+05 1.406080e+05 0.00 NULL
2014 Dept Of Info Tech & Telecomm Associate Call Center Representative-Non-Spvr 55568.92105 2.111619e+06 53068.07 1.396528e+03 262.000 1302.25 38 2.620000e+02 9956.00 2.164687e+06 2.121575e+06 43112.07 NULL
2014 Dept Of Info Tech & Telecomm Associate Investigator 49528.00000 4.952800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.952800e+04 4.952800e+04 0.00 NULL
2014 Dept Of Info Tech & Telecomm Associate Staff Analyst 80837.16667 9.700460e+05 6695.52 5.579600e+02 0.000 105.00 12 0.000000e+00 0.00 9.767415e+05 9.700460e+05 6695.52 NULL
2014 Dept Of Info Tech & Telecomm Business Promotion Coordinator 54421.16667 3.265270e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.265270e+05 3.265270e+05 0.00 NULL
2014 Dept Of Info Tech & Telecomm Call Center Representative 32264.34008 7.969292e+06 117383.06 4.752351e+02 0.000 5523.67 247 0.000000e+00 0.00 8.086675e+06 7.969292e+06 117383.06 NULL
2014 Dept Of Info Tech & Telecomm Certified It Administrator 103647.00000 3.316704e+06 7730.92 2.415913e+02 0.000 114.50 32 0.000000e+00 0.00 3.324435e+06 3.316704e+06 7730.92 NULL
2014 Dept Of Info Tech & Telecomm Certified It Developer 102856.00000 2.057120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.057120e+05 2.057120e+05 0.00 NULL
2014 Dept Of Info Tech & Telecomm Clerical Associate Most Mayoral Ag 40248.49000 8.049698e+05 10390.73 5.195365e+02 0.000 335.25 20 0.000000e+00 0.00 8.153605e+05 8.049698e+05 10390.73 NULL
2014 Dept Of Info Tech & Telecomm College Aide 3527.59000 1.411036e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.411036e+04 1.411036e+04 0.00 NULL
2014 Dept Of Info Tech & Telecomm College Aide - Assignment Levels Ii And Iii 11210.67000 1.121067e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.121067e+04 1.121067e+04 0.00 NULL
2014 Dept Of Info Tech & Telecomm Commissioner Of Dept Of Info Technology & Telecommunications 215090.00000 4.301800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.301800e+05 4.301800e+05 0.00 NULL
2014 Dept Of Info Tech & Telecomm Community Assistant 32913.66667 9.874100e+04 555.14 1.850467e+02 0.000 19.50 3 0.000000e+00 0.00 9.929614e+04 9.874100e+04 555.14 NULL
2014 Dept Of Info Tech & Telecomm Community Associate 42792.25806 1.326560e+06 8711.56 2.810181e+02 0.000 334.50 31 0.000000e+00 0.00 1.335272e+06 1.326560e+06 8711.56 NULL
2014 Dept Of Info Tech & Telecomm Community Coordinator 62247.66667 1.867430e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.867430e+05 1.867430e+05 0.00 NULL
2014 Dept Of Info Tech & Telecomm Computer Aide-Non-Spvr 45472.94444 8.185130e+05 21524.15 1.195786e+03 103.570 580.25 18 1.035700e+02 1864.26 8.400372e+05 8.203773e+05 19659.89 NULL
2014 Dept Of Info Tech & Telecomm Computer Associate 65501.25773 6.353622e+06 130032.66 1.340543e+03 0.000 3105.00 97 0.000000e+00 0.00 6.483655e+06 6.353622e+06 130032.66 NULL
2014 Dept Of Info Tech & Telecomm Computer Operations Manager 118119.93333 1.771799e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.771799e+06 1.771799e+06 0.00 NULL
2014 Dept Of Info Tech & Telecomm Computer Programmer Analyst 56895.60000 8.534340e+05 8008.33 5.338887e+02 0.000 204.75 15 0.000000e+00 0.00 8.614423e+05 8.534340e+05 8008.33 NULL
2014 Dept Of Info Tech & Telecomm Computer Programmer Analyst Trainee 38361.09091 1.265916e+06 13107.50 3.971970e+02 75.730 434.75 33 7.573000e+01 2499.09 1.279024e+06 1.268415e+06 10608.41 NULL
2014 Dept Of Info Tech & Telecomm Computer Service Technician 39492.66667 2.369560e+05 8051.19 1.341865e+03 0.000 309.00 6 0.000000e+00 0.00 2.450072e+05 2.369560e+05 8051.19 NULL
2014 Dept Of Info Tech & Telecomm Computer Specialist 94581.84570 8.796112e+06 56451.11 6.070012e+02 0.000 986.50 93 0.000000e+00 0.00 8.852563e+06 8.796112e+06 56451.11 NULL
2014 Dept Of Info Tech & Telecomm Computer Systems Manager 107988.36858 3.185657e+07 0.00 0.000000e+00 0.000 0.00 295 0.000000e+00 0.00 3.185657e+07 3.185657e+07 0.00 NULL
2014 Dept Of Info Tech & Telecomm Customer Information Representative Ma L 1549 51381.00000 1.027620e+05 5174.84 2.587420e+03 2587.420 143.00 2 2.587420e+03 5174.84 1.079368e+05 1.079368e+05 0.00 NULL
2014 Dept Of Info Tech & Telecomm Deputy Commissioner 177216.00000 1.772160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.772160e+05 1.772160e+05 0.00 NULL
2014 Dept Of Info Tech & Telecomm Director Of Television 49978.50000 1.999140e+05 2228.29 5.570725e+02 11.590 67.50 4 1.159000e+01 46.36 2.021423e+05 1.999604e+05 2181.93 NULL
2014 Dept Of Info Tech & Telecomm Executive Agency Counsel 128106.12500 1.024849e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.024849e+06 1.024849e+06 0.00 NULL
2014 Dept Of Info Tech & Telecomm Film Manager 63105.00000 6.310500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.310500e+04 6.310500e+04 0.00 NULL
2014 Dept Of Info Tech & Telecomm Graphic Artist 44209.00000 8.841800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.841800e+04 8.841800e+04 0.00 NULL
2014 Dept Of Info Tech & Telecomm Inspector 44514.00000 8.902800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.902800e+04 8.902800e+04 0.00 NULL
2014 Dept Of Info Tech & Telecomm Investigator 43442.00000 4.344200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.344200e+04 4.344200e+04 0.00 NULL
2014 Dept Of Info Tech & Telecomm Labor Relations Analyst Trainee 44718.00000 4.471800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.471800e+04 4.471800e+04 0.00 NULL
2014 Dept Of Info Tech & Telecomm Office Machine Aide 37363.00000 3.736300e+04 2019.48 2.019480e+03 2019.480 83.50 1 2.019480e+03 2019.48 3.938248e+04 3.938248e+04 0.00 NULL
2014 Dept Of Info Tech & Telecomm Principal Administrative Associate - Lev 1 & 2 Non Supvr 60730.52381 1.275341e+06 8280.81 3.943243e+02 0.000 211.50 21 0.000000e+00 0.00 1.283622e+06 1.275341e+06 8280.81 NULL
2014 Dept Of Info Tech & Telecomm Procurement Analyst 84000.00000 8.400000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.400000e+04 8.400000e+04 0.00 NULL
2014 Dept Of Info Tech & Telecomm Program Producer 59588.04278 5.362924e+05 6643.00 7.381111e+02 0.000 147.00 9 0.000000e+00 0.00 5.429354e+05 5.362924e+05 6643.00 NULL
2014 Dept Of Info Tech & Telecomm Radio And Tevevision Operator 47725.98352 1.049972e+06 31228.60 1.419482e+03 570.285 941.25 22 5.702850e+02 12546.27 1.081200e+06 1.062518e+06 18682.33 NULL
2014 Dept Of Info Tech & Telecomm Secretary 52621.00000 5.262100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.262100e+04 5.262100e+04 0.00 NULL
2014 Dept Of Info Tech & Telecomm Staff Analyst 57506.66667 1.725200e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.725200e+05 1.725200e+05 0.00 NULL
2014 Dept Of Info Tech & Telecomm Staff Analyst Trainee 39579.66667 5.936950e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 5.936950e+05 5.936950e+05 0.00 NULL
2014 Dept Of Info Tech & Telecomm Summer College Intern 2051.41667 6.154250e+04 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 6.154250e+04 6.154250e+04 0.00 NULL
2014 Dept Of Info Tech & Telecomm Supervising Computer Service Technician 67796.71429 4.745770e+05 3988.38 5.697686e+02 0.000 105.25 7 0.000000e+00 0.00 4.785654e+05 4.745770e+05 3988.38 NULL
2014 Dept Of Info Tech & Telecomm Supervisor Of Office Machine Operations 43594.00000 8.718800e+04 5425.97 2.712985e+03 2712.985 46.00 2 2.712985e+03 5425.97 9.261397e+04 9.261397e+04 0.00 NULL
2014 Dept Of Info Tech & Telecomm Supervisor Of Radio And Television Operators 67356.07833 4.041365e+05 5453.92 9.089867e+02 337.315 139.50 6 3.373150e+02 2023.89 4.095904e+05 4.061604e+05 3430.03 NULL
2014 Dept Of Info Tech & Telecomm Telecommunication Manager 105878.72727 1.164666e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.164666e+06 1.164666e+06 0.00 NULL
2014 Dept Of Info Tech & Telecomm Telecommunications Associate 66102.41667 3.966145e+06 167083.88 2.784731e+03 135.875 3400.25 60 1.358750e+02 8152.50 4.133229e+06 3.974298e+06 158931.38 NULL
2014 Dept Of Info Tech & Telecomm Televison Equipment Operator 40766.50000 8.153300e+04 3778.79 1.889395e+03 1889.395 111.00 2 1.889395e+03 3778.79 8.531179e+04 8.531179e+04 0.00 NULL
2014 Dept Of Parks & Recreation *Principal Park Supervisor 53802.07814 3.766145e+05 22959.00 3.279857e+03 0.000 414.00 7 0.000000e+00 0.00 3.995735e+05 3.766145e+05 22959.00 NULL
2014 Dept Of Parks & Recreation Accountant 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2014 Dept Of Parks & Recreation Adm Manager-Non-Mgrl From M1/M2 59933.25528 9.049922e+06 191240.34 1.266492e+03 15.050 4495.50 151 1.505000e+01 2272.55 9.241162e+06 9.052194e+06 188967.79 NULL
2014 Dept Of Parks & Recreation Admin Community Relations Specialist 93018.00000 9.301800e+04 76.37 7.637000e+01 76.370 1.50 1 7.637000e+01 76.37 9.309437e+04 9.309437e+04 0.00 NULL
2014 Dept Of Parks & Recreation Administrative Architect 107250.00000 2.145000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.145000e+05 2.145000e+05 0.00 NULL
2014 Dept Of Parks & Recreation Administrative City Planner 84656.00000 1.693120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.693120e+05 1.693120e+05 0.00 NULL
2014 Dept Of Parks & Recreation Administrative Construction Project Manager 121464.00000 1.214640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.214640e+05 1.214640e+05 0.00 NULL
2014 Dept Of Parks & Recreation Administrative Engineer 106476.33333 6.388580e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.388580e+05 6.388580e+05 0.00 NULL
2014 Dept Of Parks & Recreation Administrative Horticulturist 73039.22222 2.629412e+06 50830.28 1.411952e+03 0.000 1181.50 36 0.000000e+00 0.00 2.680242e+06 2.629412e+06 50830.28 NULL
2014 Dept Of Parks & Recreation Administrative Landmarks Preservationist 97043.00000 9.704300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.704300e+04 9.704300e+04 0.00 NULL
2014 Dept Of Parks & Recreation Administrative Landscape Architect 108125.50000 2.162510e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.162510e+05 2.162510e+05 0.00 NULL
2014 Dept Of Parks & Recreation Administrative Manager 87964.00000 4.398200e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.398200e+05 4.398200e+05 0.00 NULL
2014 Dept Of Parks & Recreation Administrative Parks & Recreation Manager 77852.83459 5.761110e+06 5751.59 7.772419e+01 0.000 111.00 74 0.000000e+00 0.00 5.766861e+06 5.761110e+06 5751.59 NULL
2014 Dept Of Parks & Recreation Administrative Project Manager 101372.84655 2.939813e+06 14971.66 5.162641e+02 0.000 274.75 29 0.000000e+00 0.00 2.954784e+06 2.939813e+06 14971.66 NULL
2014 Dept Of Parks & Recreation Administrative Public Information Specialist 100000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2014 Dept Of Parks & Recreation Administrative Staff Analyst 93432.78154 9.717009e+06 231735.87 2.228230e+03 0.000 4045.75 104 0.000000e+00 0.00 9.948745e+06 9.717009e+06 231735.87 NULL
2014 Dept Of Parks & Recreation Administrative Supervisor Of Building Maintenance 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2014 Dept Of Parks & Recreation Agency Attorney 76706.20000 1.150593e+06 12252.12 8.168080e+02 0.000 202.75 15 0.000000e+00 0.00 1.162845e+06 1.150593e+06 12252.12 NULL
2014 Dept Of Parks & Recreation Agency Chief Contracting Officer 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2014 Dept Of Parks & Recreation Architect 59612.85595 8.941928e+05 20429.93 1.361995e+03 458.490 406.75 15 4.584900e+02 6877.35 9.146228e+05 9.010702e+05 13552.58 NULL
2014 Dept Of Parks & Recreation Architectural Intern 48000.00000 4.800000e+04 190.47 1.904700e+02 190.470 7.25 1 1.904700e+02 190.47 4.819047e+04 4.819047e+04 0.00 NULL
2014 Dept Of Parks & Recreation Assistant Architect 61156.00000 3.057800e+05 6080.53 1.216106e+03 603.690 126.75 5 6.036900e+02 3018.45 3.118605e+05 3.087985e+05 3062.08 NULL
2014 Dept Of Parks & Recreation Assistant Civil Engineer 42605.17555 6.816828e+05 22081.06 1.380066e+03 51.730 568.75 16 5.173000e+01 827.68 7.037639e+05 6.825105e+05 21253.38 NULL
2014 Dept Of Parks & Recreation Assistant Commissioner 132444.00000 1.324440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.324440e+05 1.324440e+05 0.00 NULL
2014 Dept Of Parks & Recreation Assistant Electrical Engineer 58621.40000 2.931070e+05 1287.00 2.574000e+02 72.880 36.75 5 7.288000e+01 364.40 2.943940e+05 2.934714e+05 922.60 NULL
2014 Dept Of Parks & Recreation Assistant Environmental Engineer 11621.66720 1.162167e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.162167e+04 1.162167e+04 0.00 NULL
2014 Dept Of Parks & Recreation Assistant Landscape Architect 53468.94544 2.352634e+06 62819.17 1.427708e+03 0.000 1485.75 44 0.000000e+00 0.00 2.415453e+06 2.352634e+06 62819.17 NULL
2014 Dept Of Parks & Recreation Assistant Mechanical Engineer 70039.00000 2.101170e+05 3395.90 1.131967e+03 1549.170 68.50 3 1.131967e+03 3395.90 2.135129e+05 2.135129e+05 0.00 NULL
2014 Dept Of Parks & Recreation Assistant Urban Designer 64896.00000 6.489600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.489600e+04 6.489600e+04 0.00 NULL
2014 Dept Of Parks & Recreation Associate Investigator 67943.00000 6.794300e+04 4926.85 4.926850e+03 4926.850 103.50 1 4.926850e+03 4926.85 7.286985e+04 7.286985e+04 0.00 NULL
2014 Dept Of Parks & Recreation Associate Park Service Worker 40915.91694 1.562988e+07 1286999.51 3.369109e+03 1095.260 37276.35 382 1.095260e+03 418389.32 1.691688e+07 1.604827e+07 868610.19 NULL
2014 Dept Of Parks & Recreation Associate Project Manager 74280.45833 2.674096e+06 200979.34 5.582759e+03 2059.185 3823.00 36 2.059185e+03 74130.66 2.875076e+06 2.748227e+06 126848.68 NULL
2014 Dept Of Parks & Recreation Associate Public Information Specialist 64000.00000 1.280000e+05 748.23 3.741150e+02 374.115 11.00 2 3.741150e+02 748.23 1.287482e+05 1.287482e+05 0.00 NULL
2014 Dept Of Parks & Recreation Associate Quality Assurance Specialist 64532.66667 1.935980e+05 5192.38 1.730793e+03 664.500 128.75 3 6.645000e+02 1993.50 1.987904e+05 1.955915e+05 3198.88 NULL
2014 Dept Of Parks & Recreation Associate Staff Analyst 67169.76980 1.947923e+06 43601.03 1.503484e+03 0.000 925.25 29 0.000000e+00 0.00 1.991524e+06 1.947923e+06 43601.03 NULL
2014 Dept Of Parks & Recreation Associate Urban Designer 70485.18730 1.127763e+06 19543.40 1.221463e+03 121.790 332.50 16 1.217900e+02 1948.64 1.147306e+06 1.129712e+06 17594.76 NULL
2014 Dept Of Parks & Recreation Associate Urban Park Ranger 48765.92381 5.169188e+06 438950.50 4.141042e+03 2612.220 12758.82 106 2.612220e+03 276895.32 5.608138e+06 5.446083e+06 162055.18 NULL
2014 Dept Of Parks & Recreation Auto Mechanic NA NA 106773.63 5.338681e+03 4429.120 2042.50 20 4.429120e+03 88582.40 NA NA NA NULL
2014 Dept Of Parks & Recreation Automotive Service Worker 42207.91667 3.798712e+05 5045.63 5.606256e+02 468.750 176.50 9 4.687500e+02 4218.75 3.849169e+05 3.840900e+05 826.88 NULL
2014 Dept Of Parks & Recreation Blacksmith NA NA 115088.58 9.590715e+03 1003.995 1573.50 12 1.003995e+03 12047.94 NA NA NA NULL
2014 Dept Of Parks & Recreation Blacksmith’s Helper NA NA 2971.29 7.428225e+02 624.105 46.75 4 6.241050e+02 2496.42 NA NA NA NULL
2014 Dept Of Parks & Recreation Borough Director Of Recreation 105997.00000 4.239880e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.239880e+05 4.239880e+05 0.00 NULL
2014 Dept Of Parks & Recreation Bricklayer NA NA 1201.46 1.201460e+03 1201.460 10.00 1 1.201460e+03 1201.46 NA NA NA NULL
2014 Dept Of Parks & Recreation Carpenter NA NA 526647.64 1.350379e+04 13889.540 8366.00 39 1.350379e+04 526647.64 NA NA NA NULL
2014 Dept Of Parks & Recreation Cashier 52966.00000 5.296600e+04 1765.29 1.765290e+03 1765.290 56.00 1 1.765290e+03 1765.29 5.473129e+04 5.473129e+04 0.00 NULL
2014 Dept Of Parks & Recreation Cement Mason NA NA 52840.76 4.403397e+03 1598.170 618.50 12 1.598170e+03 19178.04 NA NA NA NULL
2014 Dept Of Parks & Recreation Certified It Administrator 91853.66667 2.755610e+05 617.00 2.056667e+02 136.030 7.25 3 1.360300e+02 408.09 2.761780e+05 2.759691e+05 208.91 NULL
2014 Dept Of Parks & Recreation Certified It Developer 85000.00000 8.500000e+04 2057.71 2.057710e+03 2057.710 39.00 1 2.057710e+03 2057.71 8.705771e+04 8.705771e+04 0.00 NULL
2014 Dept Of Parks & Recreation Chief Dockmaster 64000.00000 6.400000e+04 1701.16 1.701160e+03 1701.160 0.00 1 1.701160e+03 1701.16 6.570116e+04 6.570116e+04 0.00 NULL
2014 Dept Of Parks & Recreation Chief Lifeguard 25147.73992 3.621275e+06 53292.84 3.700892e+02 0.000 1120.75 144 0.000000e+00 0.00 3.674567e+06 3.621275e+06 53292.84 NULL
2014 Dept Of Parks & Recreation City Park Worker 25155.74321 2.641353e+07 1304677.66 1.242550e+03 394.565 53836.25 1050 3.945650e+02 414293.25 2.771821e+07 2.682782e+07 890384.41 NULL
2014 Dept Of Parks & Recreation City Planner 65977.02700 1.319541e+06 20127.20 1.006360e+03 0.000 390.25 20 0.000000e+00 0.00 1.339668e+06 1.319541e+06 20127.20 NULL
2014 Dept Of Parks & Recreation City Planning Technician 46632.00000 9.326400e+04 2148.42 1.074210e+03 1074.210 69.00 2 1.074210e+03 2148.42 9.541242e+04 9.541242e+04 0.00 NULL
2014 Dept Of Parks & Recreation City Research Scientist 75059.86667 4.503592e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.503592e+05 4.503592e+05 0.00 NULL
2014 Dept Of Parks & Recreation City Seasonal Aide 8461.55792 1.556081e+07 489681.27 2.662758e+02 0.000 23285.85 1839 0.000000e+00 0.00 1.605049e+07 1.556081e+07 489681.27 NULL
2014 Dept Of Parks & Recreation Civil Engineer 40739.50000 8.147900e+04 1504.01 7.520050e+02 752.005 15.00 2 7.520050e+02 1504.01 8.298301e+04 8.298301e+04 0.00 NULL
2014 Dept Of Parks & Recreation Civil Engineering Intern 48000.00000 4.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.800000e+04 4.800000e+04 0.00 NULL
2014 Dept Of Parks & Recreation Clerical Aide 18378.85179 1.286520e+05 2524.66 3.606657e+02 208.440 112.50 7 2.084400e+02 1459.08 1.311766e+05 1.301110e+05 1065.58 NULL
2014 Dept Of Parks & Recreation Clerical Associate Most Mayoral Ag 35879.10667 4.161976e+06 126091.17 1.086993e+03 11.155 3936.50 116 1.115500e+01 1293.98 4.288068e+06 4.163270e+06 124797.19 NULL
2014 Dept Of Parks & Recreation Climber & Pruner 56777.72363 7.040438e+06 1618087.01 1.304909e+04 10349.665 39497.56 124 1.034967e+04 1283358.46 8.658525e+06 8.323796e+06 334728.55 NULL
2014 Dept Of Parks & Recreation College Aide 2176.77375 1.741419e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.741419e+04 1.741419e+04 0.00 NULL
2014 Dept Of Parks & Recreation Commissioner Of Parks & Recreation 205180.00000 4.103600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.103600e+05 4.103600e+05 0.00 NULL
2014 Dept Of Parks & Recreation Community Assistant 29619.84864 5.035374e+05 7224.81 4.249888e+02 109.750 380.00 17 1.097500e+02 1865.75 5.107622e+05 5.054032e+05 5359.06 NULL
2014 Dept Of Parks & Recreation Community Associate 35204.41965 8.660287e+06 85723.21 3.484683e+02 0.000 2984.57 246 0.000000e+00 0.00 8.746010e+06 8.660287e+06 85723.21 NULL
2014 Dept Of Parks & Recreation Community Coordinator 55666.38415 9.741617e+06 345436.42 1.973922e+03 0.000 7918.50 175 0.000000e+00 0.00 1.008705e+07 9.741617e+06 345436.42 NULL
2014 Dept Of Parks & Recreation Community Service Aide 3384.29324 1.184503e+05 291.90 8.340000e+00 0.000 19.50 35 0.000000e+00 0.00 1.187422e+05 1.184503e+05 291.90 NULL
2014 Dept Of Parks & Recreation Computer Aide-Non-Spvr 47114.63453 1.130751e+06 26418.74 1.100781e+03 118.915 772.75 24 1.189150e+02 2853.96 1.157170e+06 1.133605e+06 23564.78 NULL
2014 Dept Of Parks & Recreation Computer Associate 73379.96629 2.494919e+06 53838.49 1.583485e+03 124.025 1068.50 34 1.240250e+02 4216.85 2.548757e+06 2.499136e+06 49621.64 NULL
2014 Dept Of Parks & Recreation Computer Operations Manager 82400.00000 2.472000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.472000e+05 2.472000e+05 0.00 NULL
2014 Dept Of Parks & Recreation Computer Programmer Analyst 50416.00000 1.008320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.008320e+05 1.008320e+05 0.00 NULL
2014 Dept Of Parks & Recreation Computer Service Technician 42441.34400 1.273240e+05 15815.69 5.271897e+03 187.300 420.00 3 1.873000e+02 561.90 1.431397e+05 1.278859e+05 15253.79 NULL
2014 Dept Of Parks & Recreation Computer Specialist 79690.33333 2.390710e+05 2079.80 6.932667e+02 0.000 55.50 3 0.000000e+00 0.00 2.411508e+05 2.390710e+05 2079.80 NULL
2014 Dept Of Parks & Recreation Computer Systems Manager 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2014 Dept Of Parks & Recreation Construction Project Manager 66424.77961 5.114708e+06 306356.60 3.978657e+03 365.380 5876.00 77 3.653800e+02 28134.26 5.421065e+06 5.142842e+06 278222.34 NULL
2014 Dept Of Parks & Recreation Construction Project Manager Intern 49234.00000 2.954040e+05 20428.91 3.404818e+03 2146.145 637.50 6 2.146145e+03 12876.87 3.158329e+05 3.082809e+05 7552.04 NULL
2014 Dept Of Parks & Recreation Cooperative Education Trainee-Seasonal Park Help 693.11374 1.490195e+05 291.64 1.356465e+00 0.000 0.00 215 0.000000e+00 0.00 1.493111e+05 1.490195e+05 291.64 NULL
2014 Dept Of Parks & Recreation Counsel 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2014 Dept Of Parks & Recreation Deputy Borough Commissioner 123302.00000 8.631140e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.631140e+05 8.631140e+05 0.00 NULL
2014 Dept Of Parks & Recreation Deputy Chief Of Operations 103098.07692 1.340275e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.340275e+06 1.340275e+06 0.00 NULL
2014 Dept Of Parks & Recreation Deputy Commissioner 171822.25000 6.872890e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.872890e+05 6.872890e+05 0.00 NULL
2014 Dept Of Parks & Recreation Director Of Puppetry 52083.00000 5.208300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.208300e+04 5.208300e+04 0.00 NULL
2014 Dept Of Parks & Recreation Director Of Regional Joint Interest Park 88435.00000 2.122440e+06 4352.67 1.813613e+02 0.000 95.00 24 0.000000e+00 0.00 2.126793e+06 2.122440e+06 4352.67 NULL
2014 Dept Of Parks & Recreation Electrician NA NA 263583.06 7.321752e+03 4287.510 3737.00 36 4.287510e+03 154350.36 NA NA NA NULL
2014 Dept Of Parks & Recreation Engineering Technician 43321.39333 1.299642e+05 1806.91 6.023033e+02 0.000 78.50 3 0.000000e+00 0.00 1.317711e+05 1.299642e+05 1806.91 NULL
2014 Dept Of Parks & Recreation Environmental Engineer 88400.00000 8.840000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.840000e+04 8.840000e+04 0.00 NULL
2014 Dept Of Parks & Recreation Executive Agency Counsel 112333.33333 3.370000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.370000e+05 3.370000e+05 0.00 NULL
2014 Dept Of Parks & Recreation Exterminator 32992.00000 3.299200e+04 1002.21 1.002210e+03 1002.210 47.50 1 1.002210e+03 1002.21 3.399421e+04 3.399421e+04 0.00 NULL
2014 Dept Of Parks & Recreation Forester 47661.42344 2.526055e+06 172313.90 3.251206e+03 902.790 4789.50 53 9.027900e+02 47847.87 2.698369e+06 2.573903e+06 124466.03 NULL
2014 Dept Of Parks & Recreation Gardener 39465.29985 5.485677e+06 139693.05 1.004986e+03 130.620 4460.03 139 1.306200e+02 18156.18 5.625370e+06 5.503833e+06 121536.87 NULL
2014 Dept Of Parks & Recreation High Pressure Plant Tender NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2014 Dept Of Parks & Recreation Investigator 51515.20000 5.151520e+05 28306.55 2.830655e+03 1151.495 697.00 10 1.151495e+03 11514.95 5.434586e+05 5.266669e+05 16791.60 NULL
2014 Dept Of Parks & Recreation Job Training Participant 4886.92550 3.035269e+07 1123848.74 1.809449e+02 0.000 88564.50 6211 0.000000e+00 0.00 3.147654e+07 3.035269e+07 1123848.74 NULL
2014 Dept Of Parks & Recreation Landmarks Preservationist 60766.15188 2.430646e+05 771.43 1.928575e+02 168.470 19.50 4 1.684700e+02 673.88 2.438360e+05 2.437385e+05 97.55 NULL
2014 Dept Of Parks & Recreation Landscape Architect 77795.45838 4.434341e+06 203619.57 3.572273e+03 1426.000 4167.00 57 1.426000e+03 81282.00 4.637961e+06 4.515623e+06 122337.57 NULL
2014 Dept Of Parks & Recreation Landscape Architect Intern 48000.00000 1.440000e+05 1133.00 3.776667e+02 0.000 95.50 3 0.000000e+00 0.00 1.451330e+05 1.440000e+05 1133.00 NULL
2014 Dept Of Parks & Recreation Letterer And Sign Painter NA NA 1501.05 7.505250e+02 750.525 32.50 2 7.505250e+02 1501.05 NA NA NA NULL
2014 Dept Of Parks & Recreation Life Guard 6951.05194 9.613305e+06 27053.71 1.956161e+01 0.000 958.83 1383 0.000000e+00 0.00 9.640359e+06 9.613305e+06 27053.71 NULL
2014 Dept Of Parks & Recreation Machinist NA NA 3965.09 1.321697e+03 1122.680 150.75 3 1.122680e+03 3368.04 NA NA NA NULL
2014 Dept Of Parks & Recreation Maintenance Worker NA NA 256066.31 2.845181e+03 1575.515 6556.25 90 1.575515e+03 141796.35 NA NA NA NULL
2014 Dept Of Parks & Recreation Marine Maintenance Mechanic 66855.00000 1.337100e+05 14671.07 7.335535e+03 7335.535 321.50 2 7.335535e+03 14671.07 1.483811e+05 1.483811e+05 0.00 NULL
2014 Dept Of Parks & Recreation Mechanical Engineer 73298.66667 2.198960e+05 14365.16 4.788387e+03 2075.950 303.25 3 2.075950e+03 6227.85 2.342612e+05 2.261239e+05 8137.31 NULL
2014 Dept Of Parks & Recreation Mechanical Engineering Intern 48000.00000 4.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.800000e+04 4.800000e+04 0.00 NULL
2014 Dept Of Parks & Recreation Nutritionist 1829.10000 1.829100e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.829100e+03 1.829100e+03 0.00 NULL
2014 Dept Of Parks & Recreation Office Machine Aide 31852.00000 3.185200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.185200e+04 3.185200e+04 0.00 NULL
2014 Dept Of Parks & Recreation Oiler 18993.08000 1.899308e+04 8687.34 8.687340e+03 8687.340 40.50 1 8.687340e+03 8687.34 2.768042e+04 2.768042e+04 0.00 NULL
2014 Dept Of Parks & Recreation Painter NA NA 221622.37 1.108112e+04 9178.245 4190.00 20 9.178245e+03 183564.90 NA NA NA NULL
2014 Dept Of Parks & Recreation Park Borough Commissioner 150326.80000 7.516340e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.516340e+05 7.516340e+05 0.00 NULL
2014 Dept Of Parks & Recreation Park Services Worker 34303.00000 3.430300e+04 134.53 1.345300e+02 134.530 5.00 1 1.345300e+02 134.53 3.443753e+04 3.443753e+04 0.00 NULL
2014 Dept Of Parks & Recreation Park Supervisor 63135.55705 2.676948e+07 1976733.56 4.662107e+03 2609.905 44257.95 424 2.609905e+03 1106599.72 2.874621e+07 2.787608e+07 870133.84 NULL
2014 Dept Of Parks & Recreation Plasterer NA NA 12867.03 6.433515e+03 6433.515 151.00 2 6.433515e+03 12867.03 NA NA NA NULL
2014 Dept Of Parks & Recreation Playground Associate 13254.79804 3.472757e+06 66601.88 2.542056e+02 0.000 3325.50 262 0.000000e+00 0.00 3.539359e+06 3.472757e+06 66601.88 NULL
2014 Dept Of Parks & Recreation Plumber NA NA 312551.13 7.441694e+03 4877.060 3750.00 42 4.877060e+03 204836.52 NA NA NA NULL
2014 Dept Of Parks & Recreation Plumber’s Helper NA NA 21408.43 2.676054e+03 2289.665 408.00 8 2.289665e+03 18317.32 NA NA NA NULL
2014 Dept Of Parks & Recreation Principal Administrative Associate - Lev 1 & 2 Non Supvr 50784.24281 3.910387e+06 49052.17 6.370412e+02 0.000 1147.00 77 0.000000e+00 0.00 3.959439e+06 3.910387e+06 49052.17 NULL
2014 Dept Of Parks & Recreation Procurement Analyst 57083.92308 1.484182e+06 16145.87 6.209950e+02 18.475 479.00 26 1.847500e+01 480.35 1.500328e+06 1.484662e+06 15665.52 NULL
2014 Dept Of Parks & Recreation Project Manager 61725.95652 1.419697e+06 72894.67 3.169333e+03 339.660 1723.00 23 3.396600e+02 7812.18 1.492592e+06 1.427509e+06 65082.49 NULL
2014 Dept Of Parks & Recreation Public Records Officer 50000.00000 1.500000e+05 1899.08 6.330267e+02 0.000 88.25 3 0.000000e+00 0.00 1.518991e+05 1.500000e+05 1899.08 NULL
2014 Dept Of Parks & Recreation Puppeteer 40273.00000 1.208190e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.208190e+05 1.208190e+05 0.00 NULL
2014 Dept Of Parks & Recreation Recreation Director 39136.49487 1.487187e+06 12970.26 3.413226e+02 0.000 454.50 38 0.000000e+00 0.00 1.500157e+06 1.487187e+06 12970.26 NULL
2014 Dept Of Parks & Recreation Recreation Specialist 19930.05014 4.922722e+06 69028.92 2.794693e+02 0.000 2713.25 247 0.000000e+00 0.00 4.991751e+06 4.922722e+06 69028.92 NULL
2014 Dept Of Parks & Recreation Recreation Supervisor 38320.99048 4.636840e+06 79499.28 6.570188e+02 0.000 1883.50 121 0.000000e+00 0.00 4.716339e+06 4.636840e+06 79499.28 NULL
2014 Dept Of Parks & Recreation Research Assistant 39908.20250 1.596328e+05 1067.78 2.669450e+02 0.000 32.75 4 0.000000e+00 0.00 1.607006e+05 1.596328e+05 1067.78 NULL
2014 Dept Of Parks & Recreation Roofer 10476.32750 1.047633e+04 1411.58 1.411580e+03 1411.580 18.50 1 1.411580e+03 1411.58 1.188791e+04 1.188791e+04 0.00 NULL
2014 Dept Of Parks & Recreation Secretary 47782.00000 4.778200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.778200e+04 4.778200e+04 0.00 NULL
2014 Dept Of Parks & Recreation Senior Photographer 64000.00000 1.280000e+05 1313.91 6.569550e+02 656.955 36.00 2 6.569550e+02 1313.91 1.293139e+05 1.293139e+05 0.00 NULL
2014 Dept Of Parks & Recreation Senior Stationary Engineer NA NA 15814.55 7.907275e+03 7907.275 180.50 2 7.907275e+03 15814.55 NA NA NA NULL
2014 Dept Of Parks & Recreation Sheet Metal Worker NA NA 47526.36 6.789480e+03 1364.160 508.50 7 1.364160e+03 9549.12 NA NA NA NULL
2014 Dept Of Parks & Recreation Staff Analyst 54170.44000 1.354261e+06 27583.41 1.103336e+03 0.000 676.00 25 0.000000e+00 0.00 1.381844e+06 1.354261e+06 27583.41 NULL
2014 Dept Of Parks & Recreation Stationary Engineer NA NA 148128.49 3.291744e+03 984.200 1799.00 45 9.842000e+02 44289.00 NA NA NA NULL
2014 Dept Of Parks & Recreation Steam Fitter NA NA 112942.50 1.411781e+04 7362.630 1189.75 8 7.362630e+03 58901.04 NA NA NA NULL
2014 Dept Of Parks & Recreation Stock Worker 27878.54500 5.575709e+04 314.24 1.571200e+02 157.120 14.00 2 1.571200e+02 314.24 5.607133e+04 5.607133e+04 0.00 NULL
2014 Dept Of Parks & Recreation Supervising Computer Service Technician 65000.00000 1.300000e+05 1138.83 5.694150e+02 569.415 33.25 2 5.694150e+02 1138.83 1.311388e+05 1.311388e+05 0.00 NULL
2014 Dept Of Parks & Recreation Supervising Dockmaster 53306.19000 2.665310e+05 10053.18 2.010636e+03 1068.950 184.50 5 1.068950e+03 5344.75 2.765841e+05 2.718757e+05 4708.43 NULL
2014 Dept Of Parks & Recreation Supervisor Carpenter NA NA 60946.79 1.523670e+04 12921.520 910.25 4 1.292152e+04 51686.08 NA NA NA NULL
2014 Dept Of Parks & Recreation Supervisor Of Mechanics NA NA 193697.91 1.614149e+04 6011.325 2517.00 12 6.011325e+03 72135.90 NA NA NA NULL
2014 Dept Of Parks & Recreation Supervisor Of Stock Workers 41004.97333 1.230149e+05 7093.91 2.364637e+03 2915.530 211.25 3 2.364637e+03 7093.91 1.301088e+05 1.301088e+05 0.00 NULL
2014 Dept Of Parks & Recreation Supervisor Painter NA NA 110332.36 3.677745e+04 46568.860 1808.50 3 3.677745e+04 110332.36 NA NA NA NULL
2014 Dept Of Parks & Recreation Supervisor Plumber NA NA 75699.88 2.523329e+04 20180.160 791.00 3 2.018016e+04 60540.48 NA NA NA NULL
2014 Dept Of Parks & Recreation Surveyor 58751.88889 5.287670e+05 11531.15 1.281239e+03 704.770 379.00 9 7.047700e+02 6342.93 5.402982e+05 5.351099e+05 5188.22 NULL
2014 Dept Of Parks & Recreation Telecommunications Associate 69905.92308 9.087770e+05 154176.76 1.185975e+04 10689.350 2709.25 13 1.068935e+04 138961.55 1.062954e+06 1.047739e+06 15215.21 NULL
2014 Dept Of Parks & Recreation Telephone Service Technician 54979.80000 2.748990e+05 36003.93 7.200786e+03 5444.190 930.00 5 5.444190e+03 27220.95 3.109029e+05 3.021200e+05 8782.98 NULL
2014 Dept Of Parks & Recreation Urban Park Ranger 33250.83962 7.414937e+06 188636.99 8.459058e+02 231.840 8105.50 223 2.318400e+02 51700.32 7.603574e+06 7.466638e+06 136936.67 NULL
2014 Dept Of Records & Info Service Adm Manager-Non-Mgrl From M1/M2 78180.50000 3.127220e+05 2175.23 5.438075e+02 0.000 95.00 4 0.000000e+00 0.00 3.148972e+05 3.127220e+05 2175.23 NULL
2014 Dept Of Records & Info Service Administration Public Record Officer 78335.00000 7.833500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.833500e+04 7.833500e+04 0.00 NULL
2014 Dept Of Records & Info Service Assistant Commissioner 106473.90000 1.064739e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.064739e+05 1.064739e+05 0.00 NULL
2014 Dept Of Records & Info Service Associate Public Records Officer 56200.00000 1.124000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.124000e+05 1.124000e+05 0.00 NULL
2014 Dept Of Records & Info Service Associate Staff Analyst 68845.00000 2.065350e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.065350e+05 2.065350e+05 0.00 NULL
2014 Dept Of Records & Info Service Clerical Associate Most Mayoral Ag 36148.00000 2.530360e+05 3765.01 5.378586e+02 0.000 120.50 7 0.000000e+00 0.00 2.568010e+05 2.530360e+05 3765.01 NULL
2014 Dept Of Records & Info Service Commissioner 143171.00000 1.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.431710e+05 1.431710e+05 0.00 NULL
2014 Dept Of Records & Info Service Community Assistant 32136.50000 9.640950e+04 4102.52 1.367507e+03 0.000 150.25 3 0.000000e+00 0.00 1.005120e+05 9.640950e+04 4102.52 NULL
2014 Dept Of Records & Info Service Community Associate 37169.00000 7.433800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.433800e+04 7.433800e+04 0.00 NULL
2014 Dept Of Records & Info Service Computer Systems Manager 92135.00000 9.213500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.213500e+04 9.213500e+04 0.00 NULL
2014 Dept Of Records & Info Service Deputy Commissioner 143171.00000 1.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.431710e+05 1.431710e+05 0.00 NULL
2014 Dept Of Records & Info Service Motor Vehicle Operator 42302.00000 4.230200e+04 4743.44 4.743440e+03 4743.440 135.00 1 4.743440e+03 4743.44 4.704544e+04 4.704544e+04 0.00 NULL
2014 Dept Of Records & Info Service Principal Administrative Associate - Lev 1 & 2 Non Supvr 50275.75000 2.011030e+05 3187.07 7.967675e+02 0.000 24.00 4 0.000000e+00 0.00 2.042901e+05 2.011030e+05 3187.07 NULL
2014 Dept Of Records & Info Service Public Records Aide 35163.11496 3.516311e+05 8800.93 8.800930e+02 0.000 271.00 10 0.000000e+00 0.00 3.604321e+05 3.516311e+05 8800.93 NULL
2014 Dept Of Records & Info Service Public Records Officer 28564.56382 1.428228e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.428228e+05 1.428228e+05 0.00 NULL
2014 Dept Of Records & Info Service Research Assistant 46327.33333 1.389820e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.389820e+05 1.389820e+05 0.00 NULL
2014 Dept Of Records & Info Service Staff Analyst 53379.00000 1.067580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.067580e+05 1.067580e+05 0.00 NULL
2014 Dept Of Records & Info Service Stock Worker 32687.55333 9.806266e+04 2810.08 9.366933e+02 0.000 130.50 3 0.000000e+00 0.00 1.008727e+05 9.806266e+04 2810.08 NULL
2014 Dept Of Records & Info Service Summer College Intern 1748.38613 5.245158e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.245158e+03 5.245158e+03 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Accountant 56803.50000 3.408210e+05 0.29 4.833330e-02 0.000 0.00 6 0.000000e+00 0.00 3.408213e+05 3.408210e+05 0.29 NULL
2014 Dept Of Youth & Comm Dev Srvs Adm Manager-Non-Mgrl From M1/M2 68881.02941 2.341955e+06 2588.06 7.611941e+01 0.000 71.75 34 0.000000e+00 0.00 2.344543e+06 2.341955e+06 2588.06 NULL
2014 Dept Of Youth & Comm Dev Srvs Admin Community Relations Specialist 84000.00000 2.520000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.520000e+05 2.520000e+05 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Admin Contract Specialist 82788.23439 4.718929e+06 1340.69 2.352088e+01 0.000 35.75 57 0.000000e+00 0.00 4.720270e+06 4.718929e+06 1340.69 NULL
2014 Dept Of Youth & Comm Dev Srvs Administrative Accountant 86993.00000 8.699300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.699300e+04 8.699300e+04 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Administrative Management Auditor 89670.00000 2.690100e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.690100e+05 2.690100e+05 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Administrative Manager 119920.00000 5.996000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.996000e+05 5.996000e+05 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Administrative Public Information Specialist 105000.00000 2.100000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.100000e+05 2.100000e+05 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Administrative Staff Analyst 95962.70370 5.181986e+06 1272.71 2.356870e+01 0.000 45.75 54 0.000000e+00 0.00 5.183259e+06 5.181986e+06 1272.71 NULL
2014 Dept Of Youth & Comm Dev Srvs Agency Attorney 89093.50000 1.781870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.781870e+05 1.781870e+05 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Agency Chief Contracting Officer 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Associate Contract Specialist 60754.90566 3.220010e+06 5422.48 1.023109e+02 0.000 160.50 53 0.000000e+00 0.00 3.225432e+06 3.220010e+06 5422.48 NULL
2014 Dept Of Youth & Comm Dev Srvs Associate Staff Analyst 75188.00000 6.015040e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.015040e+05 6.015040e+05 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Certified It Developer 94842.80000 4.742140e+05 49497.17 9.899434e+03 8086.340 830.25 5 8.086340e+03 40431.70 5.237112e+05 5.146457e+05 9065.47 NULL
2014 Dept Of Youth & Comm Dev Srvs Clerical Associate Most Mayoral Ag 39788.14286 2.785170e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.785170e+05 2.785170e+05 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs College Aide 5500.70000 5.500700e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.500700e+03 5.500700e+03 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Commissioner Of Community Development 192198.00000 3.843960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.843960e+05 3.843960e+05 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Community Assistant 33412.50000 6.682500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.682500e+04 6.682500e+04 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Community Associate 43498.18182 4.784800e+05 18.24 1.658182e+00 0.000 1.00 11 0.000000e+00 0.00 4.784982e+05 4.784800e+05 18.24 NULL
2014 Dept Of Youth & Comm Dev Srvs Community Coordinator 55383.07143 7.753630e+05 4221.40 3.015286e+02 0.000 130.75 14 0.000000e+00 0.00 7.795844e+05 7.753630e+05 4221.40 NULL
2014 Dept Of Youth & Comm Dev Srvs Computer Associate 64940.75000 2.597630e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.597630e+05 2.597630e+05 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Computer Specialist 90512.47059 1.538712e+06 22457.59 1.321035e+03 0.000 462.25 17 0.000000e+00 0.00 1.561170e+06 1.538712e+06 22457.59 NULL
2014 Dept Of Youth & Comm Dev Srvs Computer Systems Manager 111273.50000 6.676410e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.676410e+05 6.676410e+05 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Contract Specialist 52997.95385 3.444867e+06 9853.54 1.515929e+02 0.000 251.00 65 0.000000e+00 0.00 3.454721e+06 3.444867e+06 9853.54 NULL
2014 Dept Of Youth & Comm Dev Srvs Deputy Commissioner 150000.00000 3.000000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.000000e+05 3.000000e+05 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Executive Agency Counsel 150000.00000 3.000000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.000000e+05 3.000000e+05 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Field Supervisor 9076.16581 4.719606e+05 388.64 7.473846e+00 0.000 26.50 52 0.000000e+00 0.00 4.723493e+05 4.719606e+05 388.64 NULL
2014 Dept Of Youth & Comm Dev Srvs Management Auditor 60629.00000 3.031450e+05 0.07 1.400000e-02 0.000 18.00 5 0.000000e+00 0.00 3.031451e+05 3.031450e+05 0.07 NULL
2014 Dept Of Youth & Comm Dev Srvs Management Auditor Trainee 44048.00000 1.321440e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.321440e+05 1.321440e+05 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Motor Vehicle Operator 41047.50000 8.209500e+04 6687.60 3.343800e+03 3343.800 219.00 2 3.343800e+03 6687.60 8.878260e+04 8.878260e+04 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Principal Administrative Associate - Lev 1 & 2 Non Supvr 56283.33333 8.442500e+05 203.53 1.356867e+01 0.000 5.00 15 0.000000e+00 0.00 8.444535e+05 8.442500e+05 203.53 NULL
2014 Dept Of Youth & Comm Dev Srvs Procurement Analyst 57869.00000 1.157380e+05 1697.60 8.488000e+02 848.800 48.50 2 8.488000e+02 1697.60 1.174356e+05 1.174356e+05 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Secretary 38660.00000 1.159800e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.159800e+05 1.159800e+05 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Secretary To Commissioner 66982.00000 1.339640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.339640e+05 1.339640e+05 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Staff Analyst 60419.14286 4.229340e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.229340e+05 4.229340e+05 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Summer Graduate Intern 2814.57000 4.221855e+04 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 4.221855e+04 4.221855e+04 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Supervisor Of Motor Transport 58268.00000 5.826800e+04 15995.43 1.599543e+04 15995.430 449.50 1 1.599543e+04 15995.43 7.426343e+04 7.426343e+04 0.00 NULL
2014 Dept Of Youth & Comm Dev Srvs Youth Coordinator 54849.09091 6.033400e+05 1246.31 1.133009e+02 0.000 36.25 11 0.000000e+00 0.00 6.045863e+05 6.033400e+05 1246.31 NULL
2014 Dept. Of Design & Construction *Certified Local Area Network Administrator 107852.00000 1.078520e+05 407.45 4.074500e+02 407.450 0.00 1 4.074500e+02 407.45 1.082594e+05 1.082594e+05 0.00 NULL
2014 Dept. Of Design & Construction Accountant 57997.72727 6.379750e+05 3879.89 3.527173e+02 0.000 69.75 11 0.000000e+00 0.00 6.418549e+05 6.379750e+05 3879.89 NULL
2014 Dept. Of Design & Construction Adm Manager-Non-Mgrl From M1/M2 60038.00000 1.801140e+05 2430.75 8.102500e+02 0.000 30.50 3 0.000000e+00 0.00 1.825448e+05 1.801140e+05 2430.75 NULL
2014 Dept. Of Design & Construction Administrative Accountant 96149.50000 1.922990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.922990e+05 1.922990e+05 0.00 NULL
2014 Dept. Of Design & Construction Administrative Architect 116136.33333 3.484090e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 3.484090e+06 3.484090e+06 0.00 NULL
2014 Dept. Of Design & Construction Administrative City Planner 107174.00000 1.071740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.071740e+05 1.071740e+05 0.00 NULL
2014 Dept. Of Design & Construction Administrative Construction Project Manager 97318.75000 7.785500e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.785500e+05 7.785500e+05 0.00 NULL
2014 Dept. Of Design & Construction Administrative Engineer 115846.68519 6.255721e+06 0.00 0.000000e+00 0.000 0.00 54 0.000000e+00 0.00 6.255721e+06 6.255721e+06 0.00 NULL
2014 Dept. Of Design & Construction Administrative Graphic Artist 87190.60000 4.359530e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.359530e+05 4.359530e+05 0.00 NULL
2014 Dept. Of Design & Construction Administrative Landscape Architect 110785.75000 4.431430e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.431430e+05 4.431430e+05 0.00 NULL
2014 Dept. Of Design & Construction Administrative Project Manager 97651.74955 8.593354e+06 2869.98 3.261341e+01 0.000 44.75 88 0.000000e+00 0.00 8.596224e+06 8.593354e+06 2869.98 NULL
2014 Dept. Of Design & Construction Administrative Public Information Specialist 114487.66667 3.434630e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.434630e+05 3.434630e+05 0.00 NULL
2014 Dept. Of Design & Construction Administrative Staff Analyst 94768.11364 4.169797e+06 29385.16 6.678445e+02 0.000 657.75 44 0.000000e+00 0.00 4.199182e+06 4.169797e+06 29385.16 NULL
2014 Dept. Of Design & Construction Administrative Supervisor Of Building Maintenance 77487.00000 7.748700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.748700e+04 7.748700e+04 0.00 NULL
2014 Dept. Of Design & Construction Agency Attorney 77543.80000 3.877190e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.877190e+05 3.877190e+05 0.00 NULL
2014 Dept. Of Design & Construction Agency Chief Contracting Officer 146016.00000 1.460160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.460160e+05 1.460160e+05 0.00 NULL
2014 Dept. Of Design & Construction Architect 79246.97711 2.139668e+06 24675.50 9.139074e+02 0.000 413.50 27 0.000000e+00 0.00 2.164344e+06 2.139668e+06 24675.50 NULL
2014 Dept. Of Design & Construction Architectural Intern 49851.00000 4.985100e+04 5953.84 5.953840e+03 5953.840 97.75 1 5.953840e+03 5953.84 5.580484e+04 5.580484e+04 0.00 NULL
2014 Dept. Of Design & Construction Asbestos Hazard Investigator 58864.60000 2.943230e+05 806.21 1.612420e+02 0.000 16.00 5 0.000000e+00 0.00 2.951292e+05 2.943230e+05 806.21 NULL
2014 Dept. Of Design & Construction Assistant Architect 66589.40000 3.329470e+05 27509.18 5.501836e+03 0.000 465.50 5 0.000000e+00 0.00 3.604562e+05 3.329470e+05 27509.18 NULL
2014 Dept. Of Design & Construction Assistant Chemical Engineer 56385.00000 5.638500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.638500e+04 5.638500e+04 0.00 NULL
2014 Dept. Of Design & Construction Assistant Civil Engineer 61340.68657 4.109826e+06 212862.99 3.177060e+03 2885.090 5509.00 67 2.885090e+03 193301.03 4.322689e+06 4.303127e+06 19561.96 NULL
2014 Dept. Of Design & Construction Assistant Electrical Engineer 58833.33333 1.765000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.765000e+05 1.765000e+05 0.00 NULL
2014 Dept. Of Design & Construction Assistant Landscape Architect 68202.50000 1.364050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.364050e+05 1.364050e+05 0.00 NULL
2014 Dept. Of Design & Construction Assistant Mechanical Engineer 60145.33333 3.608720e+05 21591.58 3.598597e+03 2495.605 501.75 6 2.495605e+03 14973.63 3.824636e+05 3.758456e+05 6617.95 NULL
2014 Dept. Of Design & Construction Assistant Urban Designer 62772.50000 1.255450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.255450e+05 1.255450e+05 0.00 NULL
2014 Dept. Of Design & Construction Associate Inspector 65842.00000 6.584200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.584200e+04 6.584200e+04 0.00 NULL
2014 Dept. Of Design & Construction Associate Investigator 58556.40000 2.927820e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.927820e+05 2.927820e+05 0.00 NULL
2014 Dept. Of Design & Construction Associate Project Manager 74958.01818 8.245382e+06 438108.01 3.982800e+03 125.440 8031.25 110 1.254400e+02 13798.40 8.683490e+06 8.259180e+06 424309.61 NULL
2014 Dept. Of Design & Construction Associate Public Information Specialist 66848.00000 6.684800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.684800e+04 6.684800e+04 0.00 NULL
2014 Dept. Of Design & Construction Associate Quality Assurance Specialist 60921.33333 3.655280e+05 2932.82 4.888033e+02 0.000 86.00 6 0.000000e+00 0.00 3.684608e+05 3.655280e+05 2932.82 NULL
2014 Dept. Of Design & Construction Associate Staff Analyst 72667.42857 1.526016e+06 6169.95 2.938071e+02 0.000 116.75 21 0.000000e+00 0.00 1.532186e+06 1.526016e+06 6169.95 NULL
2014 Dept. Of Design & Construction Associate Urban Designer 67547.93654 8.781232e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 8.781232e+05 8.781232e+05 0.00 NULL
2014 Dept. Of Design & Construction Certified It Developer 79462.00000 7.946200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.946200e+04 7.946200e+04 0.00 NULL
2014 Dept. Of Design & Construction City Planner 75613.66667 2.268410e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.268410e+05 2.268410e+05 0.00 NULL
2014 Dept. Of Design & Construction Civil Engineer 78855.53247 6.071876e+06 358368.63 4.654138e+03 879.310 6612.75 77 8.793100e+02 67706.87 6.430245e+06 6.139583e+06 290661.76 NULL
2014 Dept. Of Design & Construction Civil Engineering Intern 47981.41176 3.262736e+06 35601.67 5.235540e+02 0.000 1237.75 68 0.000000e+00 0.00 3.298338e+06 3.262736e+06 35601.67 NULL
2014 Dept. Of Design & Construction Clerical Associate Most Mayoral Ag 43791.68750 1.401334e+06 3470.42 1.084506e+02 0.000 127.50 32 0.000000e+00 0.00 1.404804e+06 1.401334e+06 3470.42 NULL
2014 Dept. Of Design & Construction College Aide 7216.05889 6.494453e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 6.494453e+04 6.494453e+04 0.00 NULL
2014 Dept. Of Design & Construction Commissioner Of Design & Construction 205180.00000 4.103600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.103600e+05 4.103600e+05 0.00 NULL
2014 Dept. Of Design & Construction Community Assistant 32729.00000 6.545800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.545800e+04 6.545800e+04 0.00 NULL
2014 Dept. Of Design & Construction Community Associate 51984.00000 1.039680e+05 14801.82 7.400910e+03 7400.910 531.75 2 7.400910e+03 14801.82 1.187698e+05 1.187698e+05 0.00 NULL
2014 Dept. Of Design & Construction Community Coordinator 59665.33333 1.789960e+05 151.59 5.053000e+01 0.000 4.75 3 0.000000e+00 0.00 1.791476e+05 1.789960e+05 151.59 NULL
2014 Dept. Of Design & Construction Community Service Aide 29578.00000 2.957800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.957800e+04 2.957800e+04 0.00 NULL
2014 Dept. Of Design & Construction Computer Aide-Non-Spvr 48601.28571 3.402090e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.402090e+05 3.402090e+05 0.00 NULL
2014 Dept. Of Design & Construction Computer Associate 67476.42857 9.446700e+05 17698.08 1.264149e+03 0.000 453.25 14 0.000000e+00 0.00 9.623681e+05 9.446700e+05 17698.08 NULL
2014 Dept. Of Design & Construction Computer Operations Manager 108051.33333 3.241540e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.241540e+05 3.241540e+05 0.00 NULL
2014 Dept. Of Design & Construction Computer Programmer Analyst 55642.40000 2.782120e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.782120e+05 2.782120e+05 0.00 NULL
2014 Dept. Of Design & Construction Computer Service Technician 44832.50000 8.966500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.966500e+04 8.966500e+04 0.00 NULL
2014 Dept. Of Design & Construction Computer Specialist 93742.47059 1.593622e+06 24245.14 1.426185e+03 0.000 393.00 17 0.000000e+00 0.00 1.617867e+06 1.593622e+06 24245.14 NULL
2014 Dept. Of Design & Construction Computer Systems Manager 117960.66667 7.077640e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.077640e+05 7.077640e+05 0.00 NULL
2014 Dept. Of Design & Construction Construction Project Manager 71044.90532 8.951658e+06 300708.35 2.386574e+03 0.000 6685.75 126 0.000000e+00 0.00 9.252366e+06 8.951658e+06 300708.35 NULL
2014 Dept. Of Design & Construction Construction Project Manager Intern 47820.14286 3.347410e+05 189.81 2.711571e+01 0.000 7.00 7 0.000000e+00 0.00 3.349308e+05 3.347410e+05 189.81 NULL
2014 Dept. Of Design & Construction Electrical Engineer 76190.50000 1.523810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.523810e+05 1.523810e+05 0.00 NULL
2014 Dept. Of Design & Construction Engineering Technician 54571.07500 2.182843e+06 59426.28 1.485657e+03 0.000 1681.00 40 0.000000e+00 0.00 2.242269e+06 2.182843e+06 59426.28 NULL
2014 Dept. Of Design & Construction Estimator 62390.12500 4.991210e+05 6494.17 8.117713e+02 0.000 145.25 8 0.000000e+00 0.00 5.056152e+05 4.991210e+05 6494.17 NULL
2014 Dept. Of Design & Construction Executive Agency Counsel 130794.66667 7.847680e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.847680e+05 7.847680e+05 0.00 NULL
2014 Dept. Of Design & Construction Geologist 66406.71429 4.648470e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.648470e+05 4.648470e+05 0.00 NULL
2014 Dept. Of Design & Construction Graphic Artist 56276.66667 1.688300e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.688300e+05 1.688300e+05 0.00 NULL
2014 Dept. Of Design & Construction Highway Transportation Specialist 78677.00000 7.867700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.867700e+04 7.867700e+04 0.00 NULL
2014 Dept. Of Design & Construction Highways And Sewers Inspector 55031.00000 2.751550e+05 11102.67 2.220534e+03 1259.330 278.00 5 1.259330e+03 6296.65 2.862577e+05 2.814517e+05 4806.02 NULL
2014 Dept. Of Design & Construction Investigator 56091.50000 1.121830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.121830e+05 1.121830e+05 0.00 NULL
2014 Dept. Of Design & Construction Investigator Empl Disc 46908.75000 1.876350e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.876350e+05 1.876350e+05 0.00 NULL
2014 Dept. Of Design & Construction Landscape Architect 78249.00000 5.477430e+05 5759.72 8.228171e+02 0.000 164.25 7 0.000000e+00 0.00 5.535027e+05 5.477430e+05 5759.72 NULL
2014 Dept. Of Design & Construction Management Auditor 76570.00000 7.657000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.657000e+04 7.657000e+04 0.00 NULL
2014 Dept. Of Design & Construction Mechanical Engineer 80560.00000 8.056000e+05 37071.42 3.707142e+03 0.000 639.00 10 0.000000e+00 0.00 8.426714e+05 8.056000e+05 37071.42 NULL
2014 Dept. Of Design & Construction Motor Vehicle Operator 42155.00000 8.431000e+04 255.04 1.275200e+02 127.520 7.00 2 1.275200e+02 255.04 8.456504e+04 8.456504e+04 0.00 NULL
2014 Dept. Of Design & Construction Motor Vehicle Supervisor 48882.00000 9.776400e+04 1246.60 6.233000e+02 623.300 65.50 2 6.233000e+02 1246.60 9.901060e+04 9.901060e+04 0.00 NULL
2014 Dept. Of Design & Construction Principal Administrative Associate - Lev 1 & 2 Non Supvr 55547.66667 2.333002e+06 10951.32 2.607457e+02 0.000 300.50 42 0.000000e+00 0.00 2.343953e+06 2.333002e+06 10951.32 NULL
2014 Dept. Of Design & Construction Principal Title Examiner 59364.00000 5.936400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.936400e+04 5.936400e+04 0.00 NULL
2014 Dept. Of Design & Construction Procurement Analyst 58245.02857 2.038576e+06 5437.21 1.553489e+02 0.000 163.50 35 0.000000e+00 0.00 2.044013e+06 2.038576e+06 5437.21 NULL
2014 Dept. Of Design & Construction Project Manager 60153.38889 2.165522e+06 62651.86 1.740329e+03 0.000 1458.75 36 0.000000e+00 0.00 2.228174e+06 2.165522e+06 62651.86 NULL
2014 Dept. Of Design & Construction Project Manager Intern# 43452.00000 4.345200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.345200e+04 4.345200e+04 0.00 NULL
2014 Dept. Of Design & Construction Public Records Aide 36118.32263 7.584848e+05 4042.87 1.925176e+02 0.000 215.75 21 0.000000e+00 0.00 7.625276e+05 7.584848e+05 4042.87 NULL
2014 Dept. Of Design & Construction Public Records Officer 53415.00000 5.341500e+04 111.12 1.111200e+02 111.120 3.75 1 1.111200e+02 111.12 5.352612e+04 5.352612e+04 0.00 NULL
2014 Dept. Of Design & Construction Quality Assurance Specialist 59530.00000 5.953000e+04 65.17 6.517000e+01 65.170 2.00 1 6.517000e+01 65.17 5.959517e+04 5.959517e+04 0.00 NULL
2014 Dept. Of Design & Construction Secretary 44978.73333 6.746810e+05 136.29 9.086000e+00 0.000 7.00 15 0.000000e+00 0.00 6.748173e+05 6.746810e+05 136.29 NULL
2014 Dept. Of Design & Construction Secretary To The Commissioner Of Ddc 63380.00000 6.338000e+04 20601.93 2.060193e+04 20601.930 492.00 1 2.060193e+04 20601.93 8.398193e+04 8.398193e+04 0.00 NULL
2014 Dept. Of Design & Construction Senior Estimator 74751.55882 2.541553e+06 72401.37 2.129452e+03 0.000 1480.75 34 0.000000e+00 0.00 2.613954e+06 2.541553e+06 72401.37 NULL
2014 Dept. Of Design & Construction Special Assistant To The Commissioner 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2014 Dept. Of Design & Construction Staff Analyst 60039.73077 1.561033e+06 7537.91 2.899196e+02 0.000 236.50 26 0.000000e+00 0.00 1.568571e+06 1.561033e+06 7537.91 NULL
2014 Dept. Of Design & Construction Staff Analyst Trainee 41518.75000 1.660750e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.660750e+05 1.660750e+05 0.00 NULL
2014 Dept. Of Design & Construction Stock Worker 44823.50000 8.964700e+04 7495.07 3.747535e+03 3747.535 300.50 2 3.747535e+03 7495.07 9.714207e+04 9.714207e+04 0.00 NULL
2014 Dept. Of Design & Construction Summer College Intern 2202.31525 1.321389e+05 0.00 0.000000e+00 0.000 0.00 60 0.000000e+00 0.00 1.321389e+05 1.321389e+05 0.00 NULL
2014 Dept. Of Design & Construction Summer Graduate Intern 2339.22853 3.976689e+04 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 3.976689e+04 3.976689e+04 0.00 NULL
2014 Dept. Of Design & Construction Supervising Computer Service Technician 70460.00000 7.046000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.046000e+04 7.046000e+04 0.00 NULL
2014 Dept. Of Design & Construction Supervisor Of Electrical Installations & Maintenance 68577.50000 6.857750e+05 18579.26 1.857926e+03 44.620 281.75 10 4.462000e+01 446.20 7.043543e+05 6.862212e+05 18133.06 NULL
2014 Dept. Of Design & Construction Supervisor Of Mechanical Installations & Maintenance 78068.50000 1.561370e+05 2039.85 1.019925e+03 1019.925 35.50 2 1.019925e+03 2039.85 1.581769e+05 1.581769e+05 0.00 NULL
2014 Dept. Of Design & Construction Surveyor 64939.10714 1.818295e+06 17386.67 6.209525e+02 0.000 415.25 28 0.000000e+00 0.00 1.835682e+06 1.818295e+06 17386.67 NULL
2014 Dept. Of Homeless Services *Attorney At Law 98125.00000 9.812500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.812500e+04 9.812500e+04 0.00 NULL
2014 Dept. Of Homeless Services *Certified Applications Developer 111448.00000 1.114480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.114480e+05 1.114480e+05 0.00 NULL
2014 Dept. Of Homeless Services *Certified Local Area Network Administrator 83999.88889 7.559990e+05 1335.69 1.484100e+02 0.000 49.00 9 0.000000e+00 0.00 7.573347e+05 7.559990e+05 1335.69 NULL
2014 Dept. Of Homeless Services *Certified Wide Area Network Administrator 85994.00000 8.599400e+04 2073.99 2.073990e+03 2073.990 34.00 1 2.073990e+03 2073.99 8.806799e+04 8.806799e+04 0.00 NULL
2014 Dept. Of Homeless Services Adm Manager-Non-Mgrl From M1/M2 69876.50000 2.795060e+05 1237.88 3.094700e+02 91.680 27.50 4 9.168000e+01 366.72 2.807439e+05 2.798727e+05 871.16 NULL
2014 Dept. Of Homeless Services Admin Contract Specialist 89496.16667 5.369770e+05 9840.61 1.640102e+03 0.000 224.75 6 0.000000e+00 0.00 5.468176e+05 5.369770e+05 9840.61 NULL
2014 Dept. Of Homeless Services Administrative Construction Project Manager 101438.50000 4.057540e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.057540e+05 4.057540e+05 0.00 NULL
2014 Dept. Of Homeless Services Administrative Director Of Social Services 98381.10280 1.052678e+07 27662.19 2.585251e+02 0.000 501.50 107 0.000000e+00 0.00 1.055444e+07 1.052678e+07 27662.19 NULL
2014 Dept. Of Homeless Services Administrative Investigator 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2014 Dept. Of Homeless Services Administrative Labor Relations Analyst 76306.00000 7.630600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.630600e+04 7.630600e+04 0.00 NULL
2014 Dept. Of Homeless Services Administrative Procurement Analyst 83739.00000 2.512170e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.512170e+05 2.512170e+05 0.00 NULL
2014 Dept. Of Homeless Services Administrative Public Information Specialist 109482.75000 4.379310e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.379310e+05 4.379310e+05 0.00 NULL
2014 Dept. Of Homeless Services Administrative Staff Analyst 85093.78740 1.080691e+07 299143.63 2.355462e+03 0.000 5635.75 127 0.000000e+00 0.00 1.110605e+07 1.080691e+07 299143.63 NULL
2014 Dept. Of Homeless Services Administrative Supervisor Of Building Maintenance 121394.60000 6.069730e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.069730e+05 6.069730e+05 0.00 NULL
2014 Dept. Of Homeless Services Agency Attorney 74083.82609 1.703928e+06 65383.14 2.842745e+03 0.000 1282.75 23 0.000000e+00 0.00 1.769311e+06 1.703928e+06 65383.14 NULL
2014 Dept. Of Homeless Services Agency Attorney Interne 52482.00000 5.248200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.248200e+04 5.248200e+04 0.00 NULL
2014 Dept. Of Homeless Services Agency Chief Contracting Officer 119391.00000 1.193910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.193910e+05 1.193910e+05 0.00 NULL
2014 Dept. Of Homeless Services Agency Medical Director 149391.00000 1.493910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.493910e+05 1.493910e+05 0.00 NULL
2014 Dept. Of Homeless Services Agency Security Director 115977.00000 1.159770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.159770e+05 1.159770e+05 0.00 NULL
2014 Dept. Of Homeless Services Assistant Superintendent Of Welfare Shelters 58938.25714 4.125678e+06 854657.70 1.220940e+04 9961.740 19768.25 70 9.961740e+03 697321.80 4.980336e+06 4.823000e+06 157335.90 NULL
2014 Dept. Of Homeless Services Associate Fraud Investigator 60320.19355 3.739852e+06 644321.86 1.039229e+04 11137.155 14853.00 62 1.039229e+04 644321.86 4.384174e+06 4.384174e+06 0.00 NULL
2014 Dept. Of Homeless Services Associate Investigator 64599.00000 6.459900e+04 31012.59 3.101259e+04 31012.590 561.25 1 3.101259e+04 31012.59 9.561159e+04 9.561159e+04 0.00 NULL
2014 Dept. Of Homeless Services Associate Project Manager 73500.20000 3.675010e+05 10368.31 2.073662e+03 905.660 221.00 5 9.056600e+02 4528.30 3.778693e+05 3.720293e+05 5840.01 NULL
2014 Dept. Of Homeless Services Associate Public Information Specialist 66848.00000 6.684800e+04 1631.00 1.631000e+03 1631.000 44.25 1 1.631000e+03 1631.00 6.847900e+04 6.847900e+04 0.00 NULL
2014 Dept. Of Homeless Services Associate Staff Analyst 68637.79032 4.255543e+06 178850.59 2.884687e+03 0.000 3694.75 62 0.000000e+00 0.00 4.434394e+06 4.255543e+06 178850.59 NULL
2014 Dept. Of Homeless Services Bookkeeper 56911.00000 5.691100e+04 10731.07 1.073107e+04 10731.070 297.25 1 1.073107e+04 10731.07 6.764207e+04 6.764207e+04 0.00 NULL
2014 Dept. Of Homeless Services Carpenter NA NA 221643.66 1.231354e+04 14736.805 3349.25 18 1.231354e+04 221643.66 NA NA NA NULL
2014 Dept. Of Homeless Services Caseworker 39681.64583 3.809438e+06 190640.75 1.985841e+03 402.065 6380.17 96 4.020650e+02 38598.24 4.000079e+06 3.848036e+06 152042.51 NULL
2014 Dept. Of Homeless Services Cement Mason NA NA 255241.91 3.190524e+04 35523.880 3149.25 8 3.190524e+04 255241.91 NA NA NA NULL
2014 Dept. Of Homeless Services Certified It Administrator 79462.00000 7.946200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.946200e+04 7.946200e+04 0.00 NULL
2014 Dept. Of Homeless Services Certified It Developer 103647.00000 1.036470e+05 2045.17 2.045170e+03 2045.170 31.75 1 2.045170e+03 2045.17 1.056922e+05 1.056922e+05 0.00 NULL
2014 Dept. Of Homeless Services City Service Aide 6952.59054 1.466997e+06 0.00 0.000000e+00 0.000 0.00 211 0.000000e+00 0.00 1.466997e+06 1.466997e+06 0.00 NULL
2014 Dept. Of Homeless Services Clerical Associate Most Mayoral Ag 41194.60417 1.977341e+06 123409.66 2.571035e+03 668.910 3946.75 48 6.689100e+02 32107.68 2.100751e+06 2.009449e+06 91301.98 NULL
2014 Dept. Of Homeless Services Commissioner Of Homeless Services 205180.00000 4.103600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.103600e+05 4.103600e+05 0.00 NULL
2014 Dept. Of Homeless Services Community Assistant 32828.40714 4.595977e+06 472343.04 3.373879e+03 2191.535 20082.62 140 2.191535e+03 306814.90 5.068320e+06 4.902792e+06 165528.14 NULL
2014 Dept. Of Homeless Services Community Associate 37147.13849 4.680539e+06 356931.93 2.832793e+03 582.295 13435.00 126 5.822950e+02 73369.17 5.037471e+06 4.753909e+06 283562.76 NULL
2014 Dept. Of Homeless Services Community Coordinator 53839.64286 6.030040e+06 439627.98 3.925250e+03 1835.475 12131.30 112 1.835475e+03 205573.20 6.469668e+06 6.235613e+06 234054.78 NULL
2014 Dept. Of Homeless Services Computer Aide-Non-Spvr 55000.00000 5.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.500000e+04 5.500000e+04 0.00 NULL
2014 Dept. Of Homeless Services Computer Associate 63734.66667 1.912040e+05 5638.24 1.879413e+03 2404.470 156.25 3 1.879413e+03 5638.24 1.968422e+05 1.968422e+05 0.00 NULL
2014 Dept. Of Homeless Services Computer Operations Manager 104659.66667 3.139790e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.139790e+05 3.139790e+05 0.00 NULL
2014 Dept. Of Homeless Services Computer Specialist 88765.87500 7.101270e+05 14472.70 1.809088e+03 0.000 212.50 8 0.000000e+00 0.00 7.245997e+05 7.101270e+05 14472.70 NULL
2014 Dept. Of Homeless Services Computer Systems Manager 118926.28571 8.324840e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.324840e+05 8.324840e+05 0.00 NULL
2014 Dept. Of Homeless Services Construction Project Manager 70710.00000 1.414200e+05 2990.60 1.495300e+03 1495.300 95.00 2 1.495300e+03 2990.60 1.444106e+05 1.444106e+05 0.00 NULL
2014 Dept. Of Homeless Services Contract Specialist 53972.00000 1.079440e+05 17051.47 8.525735e+03 8525.735 507.75 2 8.525735e+03 17051.47 1.249955e+05 1.249955e+05 0.00 NULL
2014 Dept. Of Homeless Services Counselor 44217.00000 2.210850e+05 7790.27 1.558054e+03 952.570 294.25 5 9.525700e+02 4762.85 2.288753e+05 2.258479e+05 3027.42 NULL
2014 Dept. Of Homeless Services Deputy Commisioner 182316.00000 3.646320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.646320e+05 3.646320e+05 0.00 NULL
2014 Dept. Of Homeless Services Director Of Eeo 119391.00000 1.193910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.193910e+05 1.193910e+05 0.00 NULL
2014 Dept. Of Homeless Services Electrician NA NA 283875.42 1.577086e+04 15407.440 3816.75 18 1.540744e+04 277333.92 NA NA NA NULL
2014 Dept. Of Homeless Services Electrician’s Helper NA NA 20409.38 5.102345e+03 5621.325 407.50 4 5.102345e+03 20409.38 NA NA NA NULL
2014 Dept. Of Homeless Services Executive Agency Counsel 110188.60000 5.509430e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.509430e+05 5.509430e+05 0.00 NULL
2014 Dept. Of Homeless Services Executive Assistant To The Commissioner 156279.00000 1.562790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.562790e+05 1.562790e+05 0.00 NULL
2014 Dept. Of Homeless Services Fraud Investigator 43564.86179 5.358478e+06 727882.95 5.917748e+03 3019.090 21820.70 123 3.019090e+03 371348.07 6.086361e+06 5.729826e+06 356534.88 NULL
2014 Dept. Of Homeless Services General Counsel 156909.00000 1.569090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.569090e+05 1.569090e+05 0.00 NULL
2014 Dept. Of Homeless Services High Pressure Plant Tender NA NA 4396.93 4.396930e+03 4396.930 68.50 1 4.396930e+03 4396.93 NA NA NA NULL
2014 Dept. Of Homeless Services Housekeeper 36719.16667 2.203150e+05 30530.84 5.088473e+03 4274.325 1090.00 6 4.274325e+03 25645.95 2.508458e+05 2.459610e+05 4884.89 NULL
2014 Dept. Of Homeless Services Human Resources Technician 32800.00000 3.280000e+04 404.63 4.046300e+02 404.630 19.00 1 4.046300e+02 404.63 3.320463e+04 3.320463e+04 0.00 NULL
2014 Dept. Of Homeless Services Investigator Empl Disc 60215.33333 1.806460e+05 1420.79 4.735967e+02 552.900 21.75 3 4.735967e+02 1420.79 1.820668e+05 1.820668e+05 0.00 NULL
2014 Dept. Of Homeless Services Locksmith NA NA 8645.63 4.322815e+03 4322.815 233.50 2 4.322815e+03 8645.63 NA NA NA NULL
2014 Dept. Of Homeless Services Maintenance Worker NA NA 82633.60 9.181511e+03 10692.910 2127.50 9 9.181511e+03 82633.60 NA NA NA NULL
2014 Dept. Of Homeless Services Management Auditor 64272.40000 3.213620e+05 890.03 1.780060e+02 0.000 17.50 5 0.000000e+00 0.00 3.222520e+05 3.213620e+05 890.03 NULL
2014 Dept. Of Homeless Services Motor Vehicle Operator 39980.71795 1.559248e+06 161104.86 4.130894e+03 3503.240 5727.25 39 3.503240e+03 136626.36 1.720353e+06 1.695874e+06 24478.50 NULL
2014 Dept. Of Homeless Services Motor Vehicle Supervisor 49543.22222 4.458890e+05 68317.32 7.590813e+03 10584.710 1795.75 9 7.590813e+03 68317.32 5.142063e+05 5.142063e+05 0.00 NULL
2014 Dept. Of Homeless Services Oiler NA NA 63655.14 7.956892e+03 5323.380 858.75 8 5.323380e+03 42587.04 NA NA NA NULL
2014 Dept. Of Homeless Services Plumber NA NA 183919.64 1.149498e+04 13260.465 2078.25 16 1.149498e+04 183919.64 NA NA NA NULL
2014 Dept. Of Homeless Services Plumber’s Helper NA NA 45836.00 9.167200e+03 8769.600 670.50 5 8.769600e+03 43848.00 NA NA NA NULL
2014 Dept. Of Homeless Services Principal Administrative Associate - Lev 1 & 2 Non Supvr 51442.85185 5.555828e+06 292119.88 2.704814e+03 856.950 8110.00 108 8.569500e+02 92550.60 5.847948e+06 5.648379e+06 199569.28 NULL
2014 Dept. Of Homeless Services Procurement Analyst 54739.28571 3.831750e+05 22154.86 3.164980e+03 0.000 495.50 7 0.000000e+00 0.00 4.053299e+05 3.831750e+05 22154.86 NULL
2014 Dept. Of Homeless Services Recreation Director 38783.42857 2.714840e+05 10710.26 1.530037e+03 740.370 383.00 7 7.403700e+02 5182.59 2.821943e+05 2.766666e+05 5527.67 NULL
2014 Dept. Of Homeless Services Research Assistant 44059.00000 4.405900e+04 3214.42 3.214420e+03 3214.420 125.75 1 3.214420e+03 3214.42 4.727342e+04 4.727342e+04 0.00 NULL
2014 Dept. Of Homeless Services Secretary 45322.28571 3.172560e+05 16167.05 2.309579e+03 0.000 446.25 7 0.000000e+00 0.00 3.334230e+05 3.172560e+05 16167.05 NULL
2014 Dept. Of Homeless Services Secretary Of Comm 76000.00000 7.600000e+04 1664.00 1.664000e+03 1664.000 48.50 1 1.664000e+03 1664.00 7.766400e+04 7.766400e+04 0.00 NULL
2014 Dept. Of Homeless Services Senior Stationary Engineer NA NA 49563.36 4.956336e+04 49563.360 593.00 1 4.956336e+04 49563.36 NA NA NA NULL
2014 Dept. Of Homeless Services Sheet Metal Worker NA NA 81216.24 2.707208e+04 23336.880 833.50 3 2.333688e+04 70010.64 NA NA NA NULL
2014 Dept. Of Homeless Services Social Worker 61233.00000 3.061650e+05 20421.50 4.084300e+03 710.930 444.75 5 7.109300e+02 3554.65 3.265865e+05 3.097197e+05 16866.85 NULL
2014 Dept. Of Homeless Services Space Analyst 59777.23077 7.771040e+05 69471.75 5.343981e+03 0.000 1356.75 13 0.000000e+00 0.00 8.465758e+05 7.771040e+05 69471.75 NULL
2014 Dept. Of Homeless Services Special Officer 37623.75287 1.309307e+07 1148805.14 3.301164e+03 2902.040 42258.32 348 2.902040e+03 1009909.92 1.424187e+07 1.410298e+07 138895.22 NULL
2014 Dept. Of Homeless Services Staff Analyst 59578.27273 1.966083e+06 42982.91 1.302512e+03 0.000 864.00 33 0.000000e+00 0.00 2.009066e+06 1.966083e+06 42982.91 NULL
2014 Dept. Of Homeless Services Stationary Engineer NA NA 5000.97 2.500485e+03 2500.485 67.75 2 2.500485e+03 5000.97 NA NA NA NULL
2014 Dept. Of Homeless Services Stock Worker 29624.16667 1.777450e+05 3517.23 5.862050e+02 340.025 170.75 6 3.400250e+02 2040.15 1.812622e+05 1.797851e+05 1477.08 NULL
2014 Dept. Of Homeless Services Superintendent Of Adult Institutions 64925.71429 9.089600e+05 166432.30 1.188802e+04 11162.745 3573.00 14 1.116275e+04 156278.43 1.075392e+06 1.065238e+06 10153.87 NULL
2014 Dept. Of Homeless Services Supervising Special Officer 49466.93902 4.056289e+06 469226.76 5.722278e+03 5173.340 12897.48 82 5.173340e+03 424213.88 4.525516e+06 4.480503e+06 45012.88 NULL
2014 Dept. Of Homeless Services Supervisor Bricklayer NA NA 11989.42 1.198942e+04 11989.420 157.00 1 1.198942e+04 11989.42 NA NA NA NULL
2014 Dept. Of Homeless Services Supervisor Carpenter NA NA 63681.34 2.122711e+04 16847.170 939.00 3 1.684717e+04 50541.51 NA NA NA NULL
2014 Dept. Of Homeless Services Supervisor Electrician NA NA 82587.18 2.064679e+04 24153.050 1033.00 4 2.064679e+04 82587.18 NA NA NA NULL
2014 Dept. Of Homeless Services Supervisor I 50931.51515 1.680740e+06 139934.67 4.240445e+03 3524.360 3828.50 33 3.524360e+03 116303.88 1.820675e+06 1.797044e+06 23630.79 NULL
2014 Dept. Of Homeless Services Supervisor Ii 58598.33333 7.031800e+05 77015.17 6.417931e+03 4361.930 1818.50 12 4.361930e+03 52343.16 7.801952e+05 7.555232e+05 24672.01 NULL
2014 Dept. Of Homeless Services Supervisor Ii Social Work 62379.08333 7.485490e+05 13933.54 1.161128e+03 383.445 288.75 12 3.834450e+02 4601.34 7.624825e+05 7.531503e+05 9332.20 NULL
2014 Dept. Of Homeless Services Supervisor Iii 64627.00000 6.462700e+04 3820.18 3.820180e+03 3820.180 47.00 1 3.820180e+03 3820.18 6.844718e+04 6.844718e+04 0.00 NULL
2014 Dept. Of Homeless Services Supervisor Of Electrical Installations & Maintenance 65346.00000 6.534600e+04 3512.14 3.512140e+03 3512.140 28.00 1 3.512140e+03 3512.14 6.885814e+04 6.885814e+04 0.00 NULL
2014 Dept. Of Homeless Services Supervisor Of Mechanics NA NA 131025.57 3.275639e+04 32348.110 1786.50 4 3.234811e+04 129392.44 NA NA NA NULL
2014 Dept. Of Homeless Services Supervisor Of Stock Workers 47557.33333 1.426720e+05 26850.27 8.950090e+03 9069.530 829.75 3 8.950090e+03 26850.27 1.695223e+05 1.695223e+05 0.00 NULL
2014 Dept. Of Homeless Services Supervisor Plumber NA NA 77689.60 2.589653e+04 24715.860 833.00 3 2.471586e+04 74147.58 NA NA NA NULL
2014 Dept. Of Homeless Services Telecommunication Manager 86528.00000 8.652800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.652800e+04 8.652800e+04 0.00 NULL
2014 Dept. Of Homeless Services Telecommunications Associate 75200.00000 7.520000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.520000e+04 7.520000e+04 0.00 NULL
2014 District Attorney Kings County Accountant 59651.00000 1.193020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.193020e+05 1.193020e+05 0.00 NULL
2014 District Attorney Kings County Adm Manager-Non-Mgrl 80808.98659 3.313168e+06 1348.31 3.288561e+01 0.000 13.50 41 0.000000e+00 0.00 3.314517e+06 3.313168e+06 1348.31 NULL
2014 District Attorney Kings County Administrative Manager 111376.28571 7.796340e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.796340e+05 7.796340e+05 0.00 NULL
2014 District Attorney Kings County Administrative Staff Analyst 95000.00000 1.900000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.900000e+05 1.900000e+05 0.00 NULL
2014 District Attorney Kings County Assistant District Attorney 79183.51952 4.663909e+07 0.00 0.000000e+00 0.000 0.00 589 0.000000e+00 0.00 4.663909e+07 4.663909e+07 0.00 NULL
2014 District Attorney Kings County Chief Rackets Investigator 169983.50000 3.399670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.399670e+05 3.399670e+05 0.00 NULL
2014 District Attorney Kings County Clerical Associate 38534.26667 5.780140e+05 3809.26 2.539507e+02 0.000 132.50 15 0.000000e+00 0.00 5.818233e+05 5.780140e+05 3809.26 NULL
2014 District Attorney Kings County Community Assistant 30843.77753 2.837628e+06 39201.72 4.261057e+02 0.000 1765.25 92 0.000000e+00 0.00 2.876829e+06 2.837628e+06 39201.72 NULL
2014 District Attorney Kings County Community Associate 39711.17599 1.056317e+07 23531.27 8.846342e+01 0.000 735.00 266 0.000000e+00 0.00 1.058670e+07 1.056317e+07 23531.27 NULL
2014 District Attorney Kings County Community Coordinator 55831.05457 2.568229e+06 745.79 1.621283e+01 0.000 50.75 46 0.000000e+00 0.00 2.568974e+06 2.568229e+06 745.79 NULL
2014 District Attorney Kings County Community Service Aide 25892.59187 6.214222e+05 4647.01 1.936254e+02 0.000 232.75 24 0.000000e+00 0.00 6.260692e+05 6.214222e+05 4647.01 NULL
2014 District Attorney Kings County Computer Associate 69529.00000 6.952900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.952900e+04 6.952900e+04 0.00 NULL
2014 District Attorney Kings County Computer Programmer Analyst 57952.00000 5.795200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.795200e+04 5.795200e+04 0.00 NULL
2014 District Attorney Kings County Computer Specialist 89393.00000 8.939300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.939300e+04 8.939300e+04 0.00 NULL
2014 District Attorney Kings County Computer Systems Manager 82280.00000 8.228000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.228000e+04 8.228000e+04 0.00 NULL
2014 District Attorney Kings County Director Of Public Information 147828.50000 2.956570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.956570e+05 2.956570e+05 0.00 NULL
2014 District Attorney Kings County District Attorney 190000.00000 3.800000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.800000e+05 3.800000e+05 0.00 NULL
2014 District Attorney Kings County Executive Assistant 123621.00000 2.472420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.472420e+05 2.472420e+05 0.00 NULL
2014 District Attorney Kings County Maintenance Worker NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2014 District Attorney Kings County Media Services Technician 50891.37500 4.071310e+05 15863.72 1.982965e+03 1397.265 540.25 8 1.397265e+03 11178.12 4.229947e+05 4.183091e+05 4685.60 NULL
2014 District Attorney Kings County Office Assistant 32741.00000 3.274100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.274100e+04 3.274100e+04 0.00 NULL
2014 District Attorney Kings County Paralegal Aide 42212.39600 6.331859e+05 154.53 1.030200e+01 0.000 33.00 15 0.000000e+00 0.00 6.333405e+05 6.331859e+05 154.53 NULL
2014 District Attorney Kings County Principal Accountant Investigator 113666.66667 3.410000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.410000e+05 3.410000e+05 0.00 NULL
2014 District Attorney Kings County Principal Administrative Associate 59210.65000 1.184213e+06 6000.24 3.000120e+02 0.000 131.75 20 0.000000e+00 0.00 1.190213e+06 1.184213e+06 6000.24 NULL
2014 District Attorney Kings County Procurement Analyst 62157.00000 6.215700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.215700e+04 6.215700e+04 0.00 NULL
2014 District Attorney Kings County Rackets Investigator 52584.28571 2.208540e+06 207841.59 4.948609e+03 2828.795 5801.50 42 2.828795e+03 118809.39 2.416382e+06 2.327349e+06 89032.20 NULL
2014 District Attorney Kings County Reporter/ Stenographer 41666.20000 8.333240e+05 302.28 1.511400e+01 0.000 9.50 20 0.000000e+00 0.00 8.336263e+05 8.333240e+05 302.28 NULL
2014 District Attorney Kings County Secretary 41376.16667 2.482570e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.482570e+05 2.482570e+05 0.00 NULL
2014 District Attorney Kings County Secretary To District Attorney 62500.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2014 District Attorney Kings County Senior Rackets Investigator 66368.61538 8.627920e+05 96973.18 7.459475e+03 5252.920 2195.00 13 5.252920e+03 68287.96 9.597652e+05 9.310800e+05 28685.22 NULL
2014 District Attorney Kings County Social Worker 52458.42857 3.672090e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.672090e+05 3.672090e+05 0.00 NULL
2014 District Attorney Kings County Special Assistant To The District Attorney 106500.00000 2.130000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.130000e+05 2.130000e+05 0.00 NULL
2014 District Attorney Kings County Supervising Accountant Investigator 76492.87500 6.119430e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.119430e+05 6.119430e+05 0.00 NULL
2014 District Attorney Kings County Supervising Computer Service Technician 72225.00000 7.222500e+04 610.07 6.100700e+02 610.070 12.25 1 6.100700e+02 610.07 7.283507e+04 7.283507e+04 0.00 NULL
2014 District Attorney Kings County Supervising Rackets Investigator 80875.21875 2.588007e+06 219719.76 6.866243e+03 5821.750 4146.00 32 5.821750e+03 186296.00 2.807727e+06 2.774303e+06 33423.76 NULL
2014 District Attorney Qns County Adm Manager-Non-Mgrl 74779.20000 3.738960e+05 8314.40 1.662880e+03 190.970 152.50 5 1.909700e+02 954.85 3.822104e+05 3.748508e+05 7359.55 NULL
2014 District Attorney Qns County Administrative Manager 111224.50000 2.224490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.224490e+05 2.224490e+05 0.00 NULL
2014 District Attorney Qns County Administrative Public Information Specialist 83712.00000 8.371200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.371200e+04 8.371200e+04 0.00 NULL
2014 District Attorney Qns County Administrative Staff Analyst 125840.00000 1.258400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.258400e+05 1.258400e+05 0.00 NULL
2014 District Attorney Qns County Agency Chief Contracting Officer 104342.00000 1.043420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.043420e+05 1.043420e+05 0.00 NULL
2014 District Attorney Qns County Assistant District Attorney 97166.80961 2.992738e+07 0.00 0.000000e+00 0.000 0.00 308 0.000000e+00 0.00 2.992738e+07 2.992738e+07 0.00 NULL
2014 District Attorney Qns County Associate Project Manager 103007.00000 1.030070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030070e+05 1.030070e+05 0.00 NULL
2014 District Attorney Qns County Certified Applications Developer 87610.00000 8.761000e+04 302.53 3.025300e+02 302.530 7.00 1 3.025300e+02 302.53 8.791253e+04 8.791253e+04 0.00 NULL
2014 District Attorney Qns County Certified It Administrator 103426.00000 1.034260e+05 6467.55 6.467550e+03 6467.550 100.00 1 6.467550e+03 6467.55 1.098936e+05 1.098936e+05 0.00 NULL
2014 District Attorney Qns County City Seasonal Aide 7368.18000 2.210454e+04 1232.00 4.106667e+02 0.000 102.75 3 0.000000e+00 0.00 2.333654e+04 2.210454e+04 1232.00 NULL
2014 District Attorney Qns County Clerical Associate 46062.00000 1.151550e+06 27022.88 1.080915e+03 0.000 671.75 25 0.000000e+00 0.00 1.178573e+06 1.151550e+06 27022.88 NULL
2014 District Attorney Qns County Community Assistant 32209.05882 5.475540e+05 30549.23 1.797014e+03 0.000 1439.75 17 0.000000e+00 0.00 5.781032e+05 5.475540e+05 30549.23 NULL
2014 District Attorney Qns County Community Associate 36951.38580 4.212458e+06 134714.70 1.181708e+03 23.770 5031.50 114 2.377000e+01 2709.78 4.347173e+06 4.215168e+06 132004.92 NULL
2014 District Attorney Qns County Community Coordinator 63267.66667 9.490150e+05 25648.05 1.709870e+03 0.000 621.50 15 0.000000e+00 0.00 9.746631e+05 9.490150e+05 25648.05 NULL
2014 District Attorney Qns County Community Service Aide 27887.17647 9.481640e+05 51576.77 1.516964e+03 0.000 2977.00 34 0.000000e+00 0.00 9.997408e+05 9.481640e+05 51576.77 NULL
2014 District Attorney Qns County Computer Associate 86500.00000 8.650000e+04 5326.36 5.326360e+03 5326.360 75.00 1 5.326360e+03 5326.36 9.182636e+04 9.182636e+04 0.00 NULL
2014 District Attorney Qns County Computer Specialist 84000.00000 8.400000e+04 4735.66 4.735660e+03 4735.660 60.75 1 4.735660e+03 4735.66 8.873566e+04 8.873566e+04 0.00 NULL
2014 District Attorney Qns County Director Of Public Information 142563.00000 1.425630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.425630e+05 1.425630e+05 0.00 NULL
2014 District Attorney Qns County District Attorney 190000.00000 1.900000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.900000e+05 1.900000e+05 0.00 NULL
2014 District Attorney Qns County Interpreter 45156.00000 4.515600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.515600e+04 4.515600e+04 0.00 NULL
2014 District Attorney Qns County Paralegal Aide 46842.93333 7.026440e+05 30638.08 2.042539e+03 0.000 967.25 15 0.000000e+00 0.00 7.332821e+05 7.026440e+05 30638.08 NULL
2014 District Attorney Qns County Principal Administrative Associate 59851.81250 9.576290e+05 32271.57 2.016973e+03 0.000 883.00 16 0.000000e+00 0.00 9.899006e+05 9.576290e+05 32271.57 NULL
2014 District Attorney Qns County Private Secretary 93600.00000 9.360000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.360000e+04 9.360000e+04 0.00 NULL
2014 District Attorney Qns County Reporter/ Stenographer 58540.00000 9.951800e+05 10384.10 6.108294e+02 46.940 191.25 17 4.694000e+01 797.98 1.005564e+06 9.959780e+05 9586.12 NULL
2014 District Attorney Qns County Secretary 51248.25000 4.099860e+05 3959.14 4.948925e+02 0.000 99.00 8 0.000000e+00 0.00 4.139451e+05 4.099860e+05 3959.14 NULL
2014 District Attorney Qns County Special Assistant To Da 119845.33333 7.190720e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.190720e+05 7.190720e+05 0.00 NULL
2014 District Attorney Qns County Staff Analyst 83741.00000 8.374100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.374100e+04 8.374100e+04 0.00 NULL
2014 District Attorney Qns County Supervising Accountant Investigator 82160.00000 1.643200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.643200e+05 1.643200e+05 0.00 NULL
2014 District Attorney Richmond Cou Administrative Manager 91628.00000 9.162800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.162800e+04 9.162800e+04 0.00 NULL
2014 District Attorney Richmond Cou Administrative Public Information Specialist 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2014 District Attorney Richmond Cou Administrative Staff Analyst 117034.33333 3.511030e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.511030e+05 3.511030e+05 0.00 NULL
2014 District Attorney Richmond Cou Assistant District Attorney 88455.26531 4.334308e+06 0.00 0.000000e+00 0.000 0.00 49 0.000000e+00 0.00 4.334308e+06 4.334308e+06 0.00 NULL
2014 District Attorney Richmond Cou Associate Staff Analyst 65936.26500 1.318725e+05 16109.58 8.054790e+03 8054.790 323.75 2 8.054790e+03 16109.58 1.479821e+05 1.479821e+05 0.00 NULL
2014 District Attorney Richmond Cou Chief Investigator 94528.00000 9.452800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.452800e+04 9.452800e+04 0.00 NULL
2014 District Attorney Richmond Cou Clerical Associate 44776.28000 4.477628e+05 24616.17 2.461617e+03 0.000 715.75 10 0.000000e+00 0.00 4.723790e+05 4.477628e+05 24616.17 NULL
2014 District Attorney Richmond Cou Community Assistant 29659.65187 5.931930e+04 1167.04 5.835200e+02 583.520 77.75 2 5.835200e+02 1167.04 6.048634e+04 6.048634e+04 0.00 NULL
2014 District Attorney Richmond Cou Community Associate 43546.62500 6.967460e+05 9741.51 6.088444e+02 0.000 318.00 16 0.000000e+00 0.00 7.064875e+05 6.967460e+05 9741.51 NULL
2014 District Attorney Richmond Cou Community Coordinator 61003.00000 1.830090e+05 1401.19 4.670633e+02 245.200 56.50 3 2.452000e+02 735.60 1.844102e+05 1.837446e+05 665.59 NULL
2014 District Attorney Richmond Cou Computer Systems Manager 83000.00000 8.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.300000e+04 8.300000e+04 0.00 NULL
2014 District Attorney Richmond Cou Detective Investigator 51906.00000 5.190600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.190600e+04 5.190600e+04 0.00 NULL
2014 District Attorney Richmond Cou District Attorney 190000.00000 1.900000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.900000e+05 1.900000e+05 0.00 NULL
2014 District Attorney Richmond Cou Paralegal Aide 49137.33333 1.474120e+05 30780.25 1.026008e+04 14689.840 905.00 3 1.026008e+04 30780.25 1.781922e+05 1.781922e+05 0.00 NULL
2014 District Attorney Richmond Cou Principal Administrative Associate 64371.00000 1.931130e+05 1315.21 4.384033e+02 0.000 28.00 3 0.000000e+00 0.00 1.944282e+05 1.931130e+05 1315.21 NULL
2014 District Attorney Richmond Cou Program Producer 58077.10000 5.807710e+04 5503.06 5.503060e+03 5503.060 128.00 1 5.503060e+03 5503.06 6.358016e+04 6.358016e+04 0.00 NULL
2014 District Attorney Richmond Cou Reporter/ Stenographer 51475.48000 1.544264e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.544264e+05 1.544264e+05 0.00 NULL
2014 District Attorney Richmond Cou Secretary 42000.00000 4.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.200000e+04 4.200000e+04 0.00 NULL
2014 District Attorney Richmond Cou Senior Detective Investigator 62575.42857 4.380280e+05 6217.97 8.882814e+02 957.270 167.00 7 8.882814e+02 6217.97 4.442460e+05 4.442460e+05 0.00 NULL
2014 District Attorney Richmond Cou Social Worker 54629.66667 1.638890e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.638890e+05 1.638890e+05 0.00 NULL
2014 District Attorney-Manhattan Administrative Investigator 54569.00000 5.456900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.456900e+04 5.456900e+04 0.00 NULL
2014 District Attorney-Manhattan Administrative Staff Analyst 116419.11364 5.122441e+06 10441.51 2.373070e+02 0.000 286.00 44 0.000000e+00 0.00 5.132883e+06 5.122441e+06 10441.51 NULL
2014 District Attorney-Manhattan Assistant District Attorney 97539.98162 5.306175e+07 0.00 0.000000e+00 0.000 0.00 544 0.000000e+00 0.00 5.306175e+07 5.306175e+07 0.00 NULL
2014 District Attorney-Manhattan Assistant Media Services Technican 40077.00000 8.015400e+04 5064.48 2.532240e+03 2532.240 202.75 2 2.532240e+03 5064.48 8.521848e+04 8.521848e+04 0.00 NULL
2014 District Attorney-Manhattan Carpenter NA NA 23754.22 7.918073e+03 9671.670 508.75 3 7.918073e+03 23754.22 NA NA NA NULL
2014 District Attorney-Manhattan Chief Office Assistant 42461.00000 4.246100e+04 2521.91 2.521910e+03 2521.910 78.25 1 2.521910e+03 2521.91 4.498291e+04 4.498291e+04 0.00 NULL
2014 District Attorney-Manhattan City Custodial Assistant 32771.76471 5.571200e+05 6836.97 4.021747e+02 216.520 302.25 17 2.165200e+02 3680.84 5.639570e+05 5.608008e+05 3156.13 NULL
2014 District Attorney-Manhattan City Laborer NA NA 11610.99 1.935165e+03 1510.140 306.75 6 1.510140e+03 9060.84 NA NA NA NULL
2014 District Attorney-Manhattan Clerical Associate 46876.18152 1.078152e+06 24377.95 1.059911e+03 25.750 806.75 23 2.575000e+01 592.25 1.102530e+06 1.078744e+06 23785.70 NULL
2014 District Attorney-Manhattan College Aide 219.97706 3.145672e+04 0.00 0.000000e+00 0.000 0.00 143 0.000000e+00 0.00 3.145672e+04 3.145672e+04 0.00 NULL
2014 District Attorney-Manhattan Community Assistant 31895.65193 1.307722e+06 44555.05 1.086709e+03 56.420 1970.25 41 5.642000e+01 2313.22 1.352277e+06 1.310035e+06 42241.83 NULL
2014 District Attorney-Manhattan Community Associate 40905.22616 1.926636e+07 341315.17 7.246607e+02 0.000 12938.78 471 0.000000e+00 0.00 1.960768e+07 1.926636e+07 341315.17 NULL
2014 District Attorney-Manhattan Community Coordinator 70025.16656 8.753146e+06 188141.95 1.505136e+03 35.580 4785.60 125 3.558000e+01 4447.50 8.941288e+06 8.757593e+06 183694.45 NULL
2014 District Attorney-Manhattan Community Service Aide 2572.46000 2.572460e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.572460e+03 2.572460e+03 0.00 NULL
2014 District Attorney-Manhattan County Detective 43341.00000 3.900690e+05 20193.01 2.243668e+03 2089.890 727.75 9 2.089890e+03 18809.01 4.102620e+05 4.088780e+05 1384.00 NULL
2014 District Attorney-Manhattan District Attorney 190000.00000 1.900000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.900000e+05 1.900000e+05 0.00 NULL
2014 District Attorney-Manhattan Electrician NA NA 4612.13 4.612130e+03 4612.130 80.25 1 4.612130e+03 4612.13 NA NA NA NULL
2014 District Attorney-Manhattan Electrician’s Helper NA NA 3195.53 3.195530e+03 3195.530 98.50 1 3.195530e+03 3195.53 NA NA NA NULL
2014 District Attorney-Manhattan Engineering Technician 67846.00000 6.784600e+04 701.98 7.019800e+02 701.980 7.75 1 7.019800e+02 701.98 6.854798e+04 6.854798e+04 0.00 NULL
2014 District Attorney-Manhattan High Pressure Plant Tender NA NA 8405.75 8.405750e+03 8405.750 195.75 1 8.405750e+03 8405.75 NA NA NA NULL
2014 District Attorney-Manhattan Interpreter 50165.00000 3.009900e+05 5521.32 9.202200e+02 90.760 122.75 6 9.076000e+01 544.56 3.065113e+05 3.015346e+05 4976.76 NULL
2014 District Attorney-Manhattan Management Auditor 91002.00000 9.100200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.100200e+04 9.100200e+04 0.00 NULL
2014 District Attorney-Manhattan Media Services Technician 51825.00000 2.591250e+05 93099.88 1.861998e+04 14518.020 2315.60 5 1.451802e+04 72590.10 3.522249e+05 3.317151e+05 20509.78 NULL
2014 District Attorney-Manhattan Office Assistant 51007.33333 1.530220e+05 14175.96 4.725320e+03 6748.400 391.75 3 4.725320e+03 14175.96 1.671980e+05 1.671980e+05 0.00 NULL
2014 District Attorney-Manhattan Painter NA NA 23357.91 1.167895e+04 11678.955 433.25 2 1.167895e+04 23357.91 NA NA NA NULL
2014 District Attorney-Manhattan Paralegal Aide 67471.00000 6.747100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.747100e+04 6.747100e+04 0.00 NULL
2014 District Attorney-Manhattan Photographer 54741.00000 1.094820e+05 27212.55 1.360627e+04 13606.275 728.50 2 1.360627e+04 27212.55 1.366945e+05 1.366945e+05 0.00 NULL
2014 District Attorney-Manhattan Principal Accountant Investigator 101721.27778 1.830983e+06 107.94 5.996667e+00 0.000 19.00 18 0.000000e+00 0.00 1.831091e+06 1.830983e+06 107.94 NULL
2014 District Attorney-Manhattan Principal Administrative Associate 66998.00000 7.369780e+05 2580.04 2.345491e+02 0.000 85.50 11 0.000000e+00 0.00 7.395580e+05 7.369780e+05 2580.04 NULL
2014 District Attorney-Manhattan Reporter/ Stenographer 70961.87500 1.703085e+06 0.00 0.000000e+00 0.000 1.00 24 0.000000e+00 0.00 1.703085e+06 1.703085e+06 0.00 NULL
2014 District Attorney-Manhattan Secretary 62997.42857 4.409820e+05 8850.58 1.264369e+03 503.240 252.00 7 5.032400e+02 3522.68 4.498326e+05 4.445047e+05 5327.90 NULL
2014 District Attorney-Manhattan Senior Accountant Investigator 55175.09091 6.069260e+05 8288.64 7.535127e+02 0.000 253.50 11 0.000000e+00 0.00 6.152146e+05 6.069260e+05 8288.64 NULL
2014 District Attorney-Manhattan Senior Secretary 50793.42857 3.555540e+05 1372.82 1.961171e+02 0.000 36.50 7 0.000000e+00 0.00 3.569268e+05 3.555540e+05 1372.82 NULL
2014 District Attorney-Manhattan Special Assistant To Da 155750.00000 3.115000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.115000e+05 3.115000e+05 0.00 NULL
2014 District Attorney-Manhattan Special Officer 35505.00000 2.485350e+05 3640.33 5.200471e+02 488.600 146.50 7 4.886000e+02 3420.20 2.521753e+05 2.519552e+05 220.13 NULL
2014 District Attorney-Manhattan Supervising Accountant Investigator 73269.00000 1.465380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.465380e+05 1.465380e+05 0.00 NULL
2014 District Attorney-Manhattan Supervisor Electrician NA NA 5756.36 5.756360e+03 5756.360 101.00 1 5.756360e+03 5756.36 NA NA NA NULL
2014 District Attorney-Special Narc Administrative Manager 160426.50000 3.208530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.208530e+05 3.208530e+05 0.00 NULL
2014 District Attorney-Special Narc Administrative Staff Analyst 135435.00000 5.417400e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.417400e+05 5.417400e+05 0.00 NULL
2014 District Attorney-Special Narc Assistant District Attorney 88792.47101 1.225336e+07 0.00 0.000000e+00 0.000 0.00 138 0.000000e+00 0.00 1.225336e+07 1.225336e+07 0.00 NULL
2014 District Attorney-Special Narc Associate Chief Rackets Investigator 100000.00000 2.000000e+05 1176.84 5.884200e+02 588.420 18.00 2 5.884200e+02 1176.84 2.011768e+05 2.011768e+05 0.00 NULL
2014 District Attorney-Special Narc Chief Rackets Investigator 150093.50000 3.001870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.001870e+05 3.001870e+05 0.00 NULL
2014 District Attorney-Special Narc Clerical Associate 66437.00000 5.314960e+05 1027.90 1.284875e+02 0.000 5.25 8 0.000000e+00 0.00 5.325239e+05 5.314960e+05 1027.90 NULL
2014 District Attorney-Special Narc College Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2014 District Attorney-Special Narc Community Associate 46829.78049 1.920021e+06 18029.13 4.397349e+02 0.000 725.00 41 0.000000e+00 0.00 1.938050e+06 1.920021e+06 18029.13 NULL
2014 District Attorney-Special Narc Community Coordinator 75635.08333 9.076210e+05 4872.10 4.060083e+02 0.000 111.25 12 0.000000e+00 0.00 9.124931e+05 9.076210e+05 4872.10 NULL
2014 District Attorney-Special Narc Confidential Secy 85517.00000 8.551700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.551700e+04 8.551700e+04 0.00 NULL
2014 District Attorney-Special Narc Director Of Public Information 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2014 District Attorney-Special Narc Paralegal Aide 68575.00000 1.371500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.371500e+05 1.371500e+05 0.00 NULL
2014 District Attorney-Special Narc Rackets Investigator 57500.00000 5.750000e+04 2649.05 2.649050e+03 2649.050 66.00 1 2.649050e+03 2649.05 6.014905e+04 6.014905e+04 0.00 NULL
2014 District Attorney-Special Narc Reporter/ Stenographer 69578.33333 4.174700e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.174700e+05 4.174700e+05 0.00 NULL
2014 District Attorney-Special Narc Secretary 66454.33333 1.993630e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.993630e+05 1.993630e+05 0.00 NULL
2014 District Attorney-Special Narc Senior Rackets Investigator 73481.38889 1.322665e+06 21234.37 1.179687e+03 491.220 414.00 18 4.912200e+02 8841.96 1.343899e+06 1.331507e+06 12392.41 NULL
2014 District Attorney-Special Narc Special Assistant District Attorney 189000.00000 1.890000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.890000e+05 1.890000e+05 0.00 NULL
2014 District Attorney-Special Narc Staff Analyst 98700.00000 9.870000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.870000e+04 9.870000e+04 0.00 NULL
2014 District Attorney-Special Narc Supervising Rackets Investigator 83752.50000 1.675050e+05 12214.83 6.107415e+03 6107.415 206.00 2 6.107415e+03 12214.83 1.797198e+05 1.797198e+05 0.00 NULL
2014 Districting Commission Computer Systems Manager 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2014 Districting Commission Deputy Executive Director 176099.00000 1.760990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.760990e+05 1.760990e+05 0.00 NULL
2014 Districting Commission Executive Director 180000.00000 1.800000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.800000e+05 1.800000e+05 0.00 NULL
2014 Doe Custodial Payrol Custodian Engineer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 799 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2014 Equal Employ Practices Comm Administrative Manager 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2014 Equal Employ Practices Comm City Research Scientist 77500.00000 7.750000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.750000e+04 7.750000e+04 0.00 NULL
2014 Equal Employ Practices Comm College Aide 2637.25000 2.637250e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.637250e+03 2.637250e+03 0.00 NULL
2014 Equal Employ Practices Comm Community Coordinator 59485.66667 1.784570e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.784570e+05 1.784570e+05 0.00 NULL
2014 Equal Employ Practices Comm Executive Agency Counsel 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2014 Equal Employ Practices Comm Executive Secretary 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2014 Financial Info Svcs Agency *Certified Wide Area Network Administrator 103377.00000 1.033770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.033770e+05 1.033770e+05 0.00 NULL
2014 Financial Info Svcs Agency Adm Manager-Non-Mgrl From M1/M2 76163.54545 8.377990e+05 2172.35 1.974864e+02 0.000 44.50 11 0.000000e+00 0.00 8.399713e+05 8.377990e+05 2172.35 NULL
2014 Financial Info Svcs Agency Admin Contract Specialist 108967.66667 3.269030e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.269030e+05 3.269030e+05 0.00 NULL
2014 Financial Info Svcs Agency Administrative Manager 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2014 Financial Info Svcs Agency Administrative Staff Analyst 108164.54615 1.406139e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.406139e+06 1.406139e+06 0.00 NULL
2014 Financial Info Svcs Agency Agency Attorney 94282.50000 1.885650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.885650e+05 1.885650e+05 0.00 NULL
2014 Financial Info Svcs Agency Agency Security Director 86643.00000 8.664300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.664300e+04 8.664300e+04 0.00 NULL
2014 Financial Info Svcs Agency Associate Staff Analyst 75247.00000 6.019760e+05 1608.33 2.010412e+02 0.000 29.00 8 0.000000e+00 0.00 6.035843e+05 6.019760e+05 1608.33 NULL
2014 Financial Info Svcs Agency Certified It Administrator 103914.00000 1.039140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.039140e+05 1.039140e+05 0.00 NULL
2014 Financial Info Svcs Agency City Attendant 31873.00000 3.187300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.187300e+04 3.187300e+04 0.00 NULL
2014 Financial Info Svcs Agency City Custodial Assistant 30654.75000 1.226190e+05 3249.87 8.124675e+02 156.520 157.00 4 1.565200e+02 626.08 1.258689e+05 1.232451e+05 2623.79 NULL
2014 Financial Info Svcs Agency Clerical Associate Most Mayoral Ag 38609.94500 1.930497e+05 192.16 3.843200e+01 0.000 10.50 5 0.000000e+00 0.00 1.932419e+05 1.930497e+05 192.16 NULL
2014 Financial Info Svcs Agency College Aide - Assignment Levels Ii And Iii 4836.37500 4.836375e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.836375e+03 4.836375e+03 0.00 NULL
2014 Financial Info Svcs Agency Community Assistant 33267.00000 6.653400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.653400e+04 6.653400e+04 0.00 NULL
2014 Financial Info Svcs Agency Community Associate 44912.50000 2.245625e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.245625e+05 2.245625e+05 0.00 NULL
2014 Financial Info Svcs Agency Computer Aide-Non-Spvr 47346.50000 1.893860e+05 28649.19 7.162297e+03 3948.790 807.00 4 3.948790e+03 15795.16 2.180352e+05 2.051812e+05 12854.03 NULL
2014 Financial Info Svcs Agency Computer Associate 67399.26316 3.841758e+06 168585.37 2.957638e+03 1577.280 3911.00 57 1.577280e+03 89904.96 4.010343e+06 3.931663e+06 78680.41 NULL
2014 Financial Info Svcs Agency Computer Operations Manager 108514.00000 3.255420e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.255420e+05 3.255420e+05 0.00 NULL
2014 Financial Info Svcs Agency Computer Programmer Analyst 56219.50000 1.124390e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.124390e+05 1.124390e+05 0.00 NULL
2014 Financial Info Svcs Agency Computer Programmer Analyst Trainee 34588.00000 3.458800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.458800e+04 3.458800e+04 0.00 NULL
2014 Financial Info Svcs Agency Computer Specialist 93751.71233 6.843875e+06 0.00 0.000000e+00 0.000 0.00 73 0.000000e+00 0.00 6.843875e+06 6.843875e+06 0.00 NULL
2014 Financial Info Svcs Agency Computer Systems Manager 116821.06136 2.570063e+07 0.00 0.000000e+00 0.000 0.00 220 0.000000e+00 0.00 2.570063e+07 2.570063e+07 0.00 NULL
2014 Financial Info Svcs Agency Executive Agency Counsel 139174.80000 6.958740e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.958740e+05 6.958740e+05 0.00 NULL
2014 Financial Info Svcs Agency Executive Director 205180.00000 2.051800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.051800e+05 2.051800e+05 0.00 NULL
2014 Financial Info Svcs Agency Motor Vehicle Operator 42095.00000 4.209500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.209500e+04 4.209500e+04 0.00 NULL
2014 Financial Info Svcs Agency Motor Vehicle Supervisor 48882.00000 4.888200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.888200e+04 4.888200e+04 0.00 NULL
2014 Financial Info Svcs Agency Principal Administrative Associate - Lev 1 & 2 Non Supvr 53969.83333 3.238190e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.238190e+05 3.238190e+05 0.00 NULL
2014 Financial Info Svcs Agency Procurement Analyst 73769.00000 7.376900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.376900e+04 7.376900e+04 0.00 NULL
2014 Financial Info Svcs Agency Secretary 46575.50000 9.315100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.315100e+04 9.315100e+04 0.00 NULL
2014 Financial Info Svcs Agency Staff Analyst 59537.80000 2.976890e+05 530.27 1.060540e+02 0.000 16.00 5 0.000000e+00 0.00 2.982193e+05 2.976890e+05 530.27 NULL
2014 Financial Info Svcs Agency Staff Analyst Trainee 39731.00000 1.589240e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.589240e+05 1.589240e+05 0.00 NULL
2014 Financial Info Svcs Agency Supervising Computer Service Technician 70219.00000 7.021900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.021900e+04 7.021900e+04 0.00 NULL
2014 Financial Info Svcs Agency Supervisor Of Motor Transport 56607.00000 5.660700e+04 847.60 8.476000e+02 847.600 14.25 1 8.476000e+02 847.60 5.745460e+04 5.745460e+04 0.00 NULL
2014 Financial Info Svcs Agency Supervisor Of Office Machine Operations 42613.00000 8.522600e+04 1250.08 6.250400e+02 625.040 25.50 2 6.250400e+02 1250.08 8.647608e+04 8.647608e+04 0.00 NULL
2014 Financial Info Svcs Agency Supervisor Of Stock Workers 66420.00000 6.642000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.642000e+04 6.642000e+04 0.00 NULL
2014 Financial Info Svcs Agency Telecommunications Associate 78379.00000 7.837900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.837900e+04 7.837900e+04 0.00 NULL
2014 Fire Department *Certified Applications Developer 90715.00000 1.814300e+05 57984.29 2.899215e+04 28992.145 768.00 2 2.899215e+04 57984.29 2.394143e+05 2.394143e+05 0.00 NULL
2014 Fire Department *Senior Systems Analyst 67632.00000 6.763200e+04 749.66 7.496600e+02 749.660 28.25 1 7.496600e+02 749.66 6.838166e+04 6.838166e+04 0.00 NULL
2014 Fire Department Accountant 67911.50000 1.358230e+05 13526.44 6.763220e+03 6763.220 233.75 2 6.763220e+03 13526.44 1.493494e+05 1.493494e+05 0.00 NULL
2014 Fire Department Adm Manager-Non-Mgrl From M1/M2 69050.91837 3.383495e+06 186873.43 3.813743e+03 751.330 4163.25 49 7.513300e+02 36815.17 3.570368e+06 3.420310e+06 150058.26 NULL
2014 Fire Department Admin Community Relations Specialist 94108.00000 9.410800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.410800e+04 9.410800e+04 0.00 NULL
2014 Fire Department Admin Tests & Meas Spec 124815.00000 1.248150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.248150e+05 1.248150e+05 0.00 NULL
2014 Fire Department Administrative Accountant 148757.00000 1.487570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.487570e+05 1.487570e+05 0.00 NULL
2014 Fire Department Administrative Architect 116758.00000 1.167580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.167580e+05 1.167580e+05 0.00 NULL
2014 Fire Department Administrative Blasting Inspector 111128.00000 1.111280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.111280e+05 1.111280e+05 0.00 NULL
2014 Fire Department Administrative Community Relations Specialist 100912.00000 3.027360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.027360e+05 3.027360e+05 0.00 NULL
2014 Fire Department Administrative Construction Project Manager 114176.00000 2.283520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.283520e+05 2.283520e+05 0.00 NULL
2014 Fire Department Administrative Engineer 110929.00000 3.327870e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.327870e+05 3.327870e+05 0.00 NULL
2014 Fire Department Administrative Fire Protection Inspector 88905.42857 6.223380e+05 1666.18 2.380257e+02 0.000 15.25 7 0.000000e+00 0.00 6.240042e+05 6.223380e+05 1666.18 NULL
2014 Fire Department Administrative Graphic Artist 76031.00000 7.603100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.603100e+04 7.603100e+04 0.00 NULL
2014 Fire Department Administrative Inspector 97200.00000 9.720000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.720000e+04 9.720000e+04 0.00 NULL
2014 Fire Department Administrative Investigator 103082.25000 4.123290e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.123290e+05 4.123290e+05 0.00 NULL
2014 Fire Department Administrative Labor Relations Analyst 113531.00000 2.270620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.270620e+05 2.270620e+05 0.00 NULL
2014 Fire Department Administrative Management Auditor 139463.00000 1.394630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.394630e+05 1.394630e+05 0.00 NULL
2014 Fire Department Administrative Printing Services Manager 108960.00000 1.089600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.089600e+05 1.089600e+05 0.00 NULL
2014 Fire Department Administrative Procurement Analyst 106594.66667 3.197840e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.197840e+05 3.197840e+05 0.00 NULL
2014 Fire Department Administrative Project Manager 87722.46154 1.140392e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.140392e+06 1.140392e+06 0.00 NULL
2014 Fire Department Administrative Public Information Specialist 96300.00000 1.926000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.926000e+05 1.926000e+05 0.00 NULL
2014 Fire Department Administrative Quality Assurance Specialist 52227.00000 5.222700e+04 1170.00 1.170000e+03 1170.000 42.50 1 1.170000e+03 1170.00 5.339700e+04 5.339700e+04 0.00 NULL
2014 Fire Department Administrative Retirement Benefits Specialist 100899.00000 1.008990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.008990e+05 1.008990e+05 0.00 NULL
2014 Fire Department Administrative Staff Analyst 88686.17999 7.183581e+06 123982.11 1.530643e+03 0.000 2766.00 81 0.000000e+00 0.00 7.307563e+06 7.183581e+06 123982.11 NULL
2014 Fire Department Administrative Storekeeper 112116.00000 1.121160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.121160e+05 1.121160e+05 0.00 NULL
2014 Fire Department Administrative Supervisor Of Building Maintenance 66000.00000 6.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.600000e+04 6.600000e+04 0.00 NULL
2014 Fire Department Administrator Of Medical Affairs 180105.00000 1.801050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.801050e+05 1.801050e+05 0.00 NULL
2014 Fire Department Agency Attorney 81948.05976 1.720909e+06 53209.14 2.533769e+03 0.000 910.75 21 0.000000e+00 0.00 1.774118e+06 1.720909e+06 53209.14 NULL
2014 Fire Department Agency Chief Contracting Officer 140454.00000 1.404540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.404540e+05 1.404540e+05 0.00 NULL
2014 Fire Department Agency Deputy Medical Director 153288.40000 7.664420e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.664420e+05 7.664420e+05 0.00 NULL
2014 Fire Department Architect 88434.00000 8.843400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.843400e+04 8.843400e+04 0.00 NULL
2014 Fire Department Assistant Chemical Engineer 67626.50000 1.352530e+05 3672.14 1.836070e+03 1836.070 91.25 2 1.836070e+03 3672.14 1.389251e+05 1.389251e+05 0.00 NULL
2014 Fire Department Assistant Chief Fire Marshal 178016.00000 1.780160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.780160e+05 1.780160e+05 0.00 NULL
2014 Fire Department Assistant Chief Of Department 198653.84615 2.582500e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 2.582500e+06 2.582500e+06 0.00 NULL
2014 Fire Department Assistant Commissioner 144593.00000 8.675580e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.675580e+05 8.675580e+05 0.00 NULL
2014 Fire Department Assistant Mechanical Engineer 55345.00000 5.534500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.534500e+04 5.534500e+04 0.00 NULL
2014 Fire Department Assistant Retirement Benefits Examiner 47080.00000 4.708000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.708000e+04 4.708000e+04 0.00 NULL
2014 Fire Department Associate Fire Protection Inspector 57641.29310 1.002958e+07 2165324.41 1.244439e+04 8885.045 49966.84 174 8.885045e+03 1545997.83 1.219491e+07 1.157558e+07 619326.58 NULL
2014 Fire Department Associate Inspector 57689.81818 1.269176e+06 527438.29 2.397447e+04 23227.365 12354.98 22 2.322737e+04 511002.03 1.796614e+06 1.780178e+06 16436.26 NULL
2014 Fire Department Associate Investigator 49528.00000 4.952800e+04 32564.55 3.256455e+04 32564.550 886.25 1 3.256455e+04 32564.55 8.209255e+04 8.209255e+04 0.00 NULL
2014 Fire Department Associate Project Manager 76674.00000 7.667400e+05 31855.77 3.185577e+03 427.090 535.75 10 4.270900e+02 4270.90 7.985958e+05 7.710109e+05 27584.87 NULL
2014 Fire Department Associate Public Information Specialist 53496.00000 5.349600e+04 12462.32 1.246232e+04 12462.320 379.75 1 1.246232e+04 12462.32 6.595832e+04 6.595832e+04 0.00 NULL
2014 Fire Department Associate Retirement Benefits Examiner 51566.60000 2.578330e+05 12424.01 2.484802e+03 429.460 331.75 5 4.294600e+02 2147.30 2.702570e+05 2.599803e+05 10276.71 NULL
2014 Fire Department Associate Staff Analyst 75942.77717 1.746684e+06 56253.10 2.445787e+03 0.000 998.75 23 0.000000e+00 0.00 1.802937e+06 1.746684e+06 56253.10 NULL
2014 Fire Department Attending Physician 29698.99885 2.375920e+05 55.64 6.955000e+00 0.000 1.00 8 0.000000e+00 0.00 2.376476e+05 2.375920e+05 55.64 NULL
2014 Fire Department Auto Machinist NA NA 264996.38 2.944404e+04 32010.410 4726.50 9 2.944404e+04 264996.38 NA NA NA NULL
2014 Fire Department Auto Mechanic NA NA 2707525.83 2.506968e+04 24856.470 51190.60 108 2.485647e+04 2684498.76 NA NA NA NULL
2014 Fire Department Automotive Service Worker 37369.82609 8.595060e+05 191249.44 8.315193e+03 6555.740 7312.00 23 6.555740e+03 150782.02 1.050755e+06 1.010288e+06 40467.42 NULL
2014 Fire Department Battalion Chief 139039.67758 5.519875e+07 1644324.05 4.141874e+03 0.000 16666.71 397 0.000000e+00 0.00 5.684308e+07 5.519875e+07 1644324.05 NULL
2014 Fire Department Bio-Medical Equipment Technician 45499.00000 4.549900e+04 11281.52 1.128152e+04 11281.520 365.75 1 1.128152e+04 11281.52 5.678052e+04 5.678052e+04 0.00 NULL
2014 Fire Department Blacksmith’s Helper NA NA 34325.79 3.432579e+04 34325.790 636.50 1 3.432579e+04 34325.79 NA NA NA NULL
2014 Fire Department Captain 107557.55626 6.786882e+07 20527947.47 3.253240e+04 30446.140 237214.61 631 3.044614e+04 19211514.34 8.839677e+07 8.708033e+07 1316433.13 NULL
2014 Fire Department Carpenter NA NA 229895.97 1.532640e+04 15954.140 3706.75 15 1.532640e+04 229895.97 NA NA NA NULL
2014 Fire Department Case - Management Nurse 62987.79378 1.133780e+06 16325.11 9.069506e+02 207.650 337.97 18 2.076500e+02 3737.70 1.150105e+06 1.137518e+06 12587.41 NULL
2014 Fire Department Cashier 34735.84969 1.389434e+05 5685.80 1.421450e+03 645.485 253.00 4 6.454850e+02 2581.94 1.446292e+05 1.415253e+05 3103.86 NULL
2014 Fire Department Cement Mason NA NA 36838.83 1.841942e+04 18419.415 447.50 2 1.841942e+04 36838.83 NA NA NA NULL
2014 Fire Department Certified It Administrator 85117.40000 4.255870e+05 174184.19 3.483684e+04 46785.590 2035.00 5 3.483684e+04 174184.19 5.997712e+05 5.997712e+05 0.00 NULL
2014 Fire Department Certified It Developer 81673.33333 2.450200e+05 16105.76 5.368587e+03 5273.700 291.75 3 5.273700e+03 15821.10 2.611258e+05 2.608411e+05 284.66 NULL
2014 Fire Department Chaplain 27415.12500 2.193210e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 2.193210e+05 2.193210e+05 0.00 NULL
2014 Fire Department Chemical Engineer 77841.66667 2.335250e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.335250e+05 2.335250e+05 0.00 NULL
2014 Fire Department Chief Fire Marshal 194500.00000 1.945000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.945000e+05 1.945000e+05 0.00 NULL
2014 Fire Department Chief Of Department 201096.00000 2.010960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.010960e+05 2.010960e+05 0.00 NULL
2014 Fire Department City Laborer NA NA 122589.88 1.362110e+04 6719.940 2542.75 9 6.719940e+03 60479.46 NA NA NA NULL
2014 Fire Department City Medical Specialist 40091.48956 8.419213e+05 45395.54 2.161692e+03 0.000 818.25 21 0.000000e+00 0.00 8.873168e+05 8.419213e+05 45395.54 NULL
2014 Fire Department City Research Scientist 79899.00000 7.989900e+04 288.90 2.889000e+02 288.900 6.00 1 2.889000e+02 288.90 8.018790e+04 8.018790e+04 0.00 NULL
2014 Fire Department Civil Engineer 87867.00000 8.786700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.786700e+04 8.786700e+04 0.00 NULL
2014 Fire Department Civil Engineering Intern 43349.00000 4.334900e+04 1700.24 1.700240e+03 1700.240 87.50 1 1.700240e+03 1700.24 4.504924e+04 4.504924e+04 0.00 NULL
2014 Fire Department Clerical Aide 33231.00000 3.323100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.323100e+04 3.323100e+04 0.00 NULL
2014 Fire Department Clerical Associate Most Mayoral Ag 41851.60033 4.812934e+06 263210.30 2.288785e+03 0.000 8778.25 115 0.000000e+00 0.00 5.076144e+06 4.812934e+06 263210.30 NULL
2014 Fire Department Commissioner 205180.00000 4.103600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.103600e+05 4.103600e+05 0.00 NULL
2014 Fire Department Communication Electrician NA NA 1428149.31 3.104672e+04 28368.440 24326.50 46 2.836844e+04 1304948.24 NA NA NA NULL
2014 Fire Department Community Associate 42100.14046 4.210014e+05 8792.47 8.792470e+02 563.100 354.75 10 5.631000e+02 5631.00 4.297939e+05 4.266324e+05 3161.47 NULL
2014 Fire Department Community Coordinator 53713.39359 1.181695e+06 119682.28 5.440104e+03 1457.475 3147.00 22 1.457475e+03 32064.45 1.301377e+06 1.213759e+06 87617.83 NULL
2014 Fire Department Computer Associate 63938.51806 1.726340e+06 459232.52 1.700861e+04 3553.840 9296.50 27 3.553840e+03 95953.68 2.185573e+06 1.822294e+06 363278.84 NULL
2014 Fire Department Computer Programmer Analyst 50014.00000 5.001400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.001400e+04 5.001400e+04 0.00 NULL
2014 Fire Department Computer Service Technician 43055.00000 8.611000e+04 66041.27 3.302064e+04 33020.635 1810.50 2 3.302064e+04 66041.27 1.521513e+05 1.521513e+05 0.00 NULL
2014 Fire Department Computer Specialist 86095.56009 3.357727e+06 166357.77 4.265584e+03 184.380 2627.75 39 1.843800e+02 7190.82 3.524085e+06 3.364918e+06 159166.95 NULL
2014 Fire Department Computer Systems Manager 112630.66667 1.351568e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.351568e+06 1.351568e+06 0.00 NULL
2014 Fire Department Construction Project Manager 65698.00000 6.569800e+04 1180.25 1.180250e+03 1180.250 40.00 1 1.180250e+03 1180.25 6.687825e+04 6.687825e+04 0.00 NULL
2014 Fire Department Counsel 156038.00000 1.560380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.560380e+05 1.560380e+05 0.00 NULL
2014 Fire Department Deputy Assistant Chief Of Department 194500.00000 1.750500e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.750500e+06 1.750500e+06 0.00 NULL
2014 Fire Department Deputy Chief 160213.45161 9.933234e+06 0.00 0.000000e+00 0.000 0.00 62 0.000000e+00 0.00 9.933234e+06 9.933234e+06 0.00 NULL
2014 Fire Department Deputy Commissioner 187333.33333 5.620000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.620000e+05 5.620000e+05 0.00 NULL
2014 Fire Department Electrical Engineering Intern 43349.00000 8.669800e+04 1116.48 5.582400e+02 558.240 38.00 2 5.582400e+02 1116.48 8.781448e+04 8.781448e+04 0.00 NULL
2014 Fire Department Electrician NA NA 724116.44 4.827443e+04 50862.010 9956.68 15 4.827443e+04 724116.44 NA NA NA NULL
2014 Fire Department Emergency Medical Specialist-Emt 40716.90456 9.812774e+07 14254796.75 5.914853e+03 3734.000 432892.90 2410 3.734000e+03 8998940.00 1.123825e+08 1.071267e+08 5255856.75 NULL
2014 Fire Department Emergency Medical Specialist-Paramedic 54841.81210 5.166099e+07 9326861.79 9.901127e+03 8021.605 212519.82 942 8.021605e+03 7556351.91 6.098785e+07 5.921734e+07 1770509.88 NULL
2014 Fire Department Employee Assistance Program Specialist 47297.73398 8.513592e+05 3657.63 2.032017e+02 0.000 102.00 18 0.000000e+00 0.00 8.550168e+05 8.513592e+05 3657.63 NULL
2014 Fire Department Executive Agency Counsel 128316.85714 8.982180e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.982180e+05 8.982180e+05 0.00 NULL
2014 Fire Department Executive Program Specialist 92416.00000 9.241600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.241600e+04 9.241600e+04 0.00 NULL
2014 Fire Department Fire Alarm Dispatcher 52776.57317 8.655358e+06 1602399.02 9.770726e+03 8994.620 33557.50 164 8.994620e+03 1475117.68 1.025776e+07 1.013048e+07 127281.34 NULL
2014 Fire Department Fire Marshal 85667.00000 7.281695e+06 3490223.10 4.106145e+04 40935.250 52084.73 85 4.093525e+04 3479496.25 1.077192e+07 1.076119e+07 10726.85 NULL
2014 Fire Department Fire Medical Officer 131661.32000 3.291533e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 3.291533e+06 3.291533e+06 0.00 NULL
2014 Fire Department Fire Protection Inspector 44167.67949 6.890158e+06 709595.52 4.548689e+03 2197.235 22275.12 156 2.197235e+03 342768.66 7.599754e+06 7.232927e+06 366826.86 NULL
2014 Fire Department Firefighter 73141.78561 5.745287e+08 217355314.14 2.767095e+04 29418.860 3615153.94 7855 2.767095e+04 217355314.14 7.918840e+08 7.918840e+08 0.00 NULL
2014 Fire Department Head Nurse 71699.75000 2.867990e+05 981.78 2.454450e+02 102.550 19.00 4 1.025500e+02 410.20 2.877808e+05 2.872092e+05 571.58 NULL
2014 Fire Department Health Services Manager 117718.00000 1.177180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.177180e+05 1.177180e+05 0.00 NULL
2014 Fire Department Industrial Hygienist 59773.00000 5.977300e+04 0.60 6.000000e-01 0.600 0.00 1 6.000000e-01 0.60 5.977360e+04 5.977360e+04 0.00 NULL
2014 Fire Department Inspector 42524.00000 4.252400e+04 1000.86 1.000860e+03 1000.860 90.00 1 1.000860e+03 1000.86 4.352486e+04 4.352486e+04 0.00 NULL
2014 Fire Department Institutional Aide 33189.44444 2.987050e+05 30493.46 3.388162e+03 74.830 1280.50 9 7.483000e+01 673.47 3.291985e+05 2.993785e+05 29819.99 NULL
2014 Fire Department Investigator 45465.37236 5.001191e+05 69587.97 6.326179e+03 4001.170 2142.75 11 4.001170e+03 44012.87 5.697071e+05 5.441320e+05 25575.10 NULL
2014 Fire Department Investigator Empl Disc 54638.14286 3.824670e+05 37078.15 5.296879e+03 3636.590 886.25 7 3.636590e+03 25456.13 4.195452e+05 4.079231e+05 11622.02 NULL
2014 Fire Department Lieutenant 91860.47257 1.473442e+08 45844463.51 2.858134e+04 27400.745 616574.37 1604 2.740074e+04 43950794.98 1.931887e+08 1.912950e+08 1893668.53 NULL
2014 Fire Department Locksmith NA NA 44368.05 2.218403e+04 22184.025 1175.50 2 2.218403e+04 44368.05 NA NA NA NULL
2014 Fire Department Machinist NA NA 24534.65 2.453465e+04 24534.650 402.50 1 2.453465e+04 24534.65 NA NA NA NULL
2014 Fire Department Manager Of Radio Repair Operations 104737.00000 2.094740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.094740e+05 2.094740e+05 0.00 NULL
2014 Fire Department Marine Engineer 87160.61905 1.830373e+06 1319829.31 6.284901e+04 72581.040 18572.38 21 6.284901e+04 1319829.31 3.150202e+06 3.150202e+06 0.00 NULL
2014 Fire Department Marine Maintenance Mechanic 66855.00000 2.674200e+05 53972.93 1.349323e+04 13497.835 1257.75 4 1.349323e+04 53972.93 3.213929e+05 3.213929e+05 0.00 NULL
2014 Fire Department Mechanical Engineering Intern 46232.66667 1.386980e+05 720.73 2.402433e+02 163.120 29.75 3 1.631200e+02 489.36 1.394187e+05 1.391874e+05 231.37 NULL
2014 Fire Department Medical Record Librarian 56125.00000 5.612500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.612500e+04 5.612500e+04 0.00 NULL
2014 Fire Department Metal Work Mechanic 84906.00000 8.490600e+04 31229.45 3.122945e+04 31229.450 522.00 1 3.122945e+04 31229.45 1.161354e+05 1.161354e+05 0.00 NULL
2014 Fire Department Motor Vehicle Operator 43116.83168 1.077921e+06 308835.27 1.235341e+04 8304.120 9311.75 25 8.304120e+03 207603.00 1.386756e+06 1.285524e+06 101232.27 NULL
2014 Fire Department Motor Vehicle Supervisor 48915.33333 1.467460e+05 95684.73 3.189491e+04 31753.950 2594.75 3 3.175395e+04 95261.85 2.424307e+05 2.420079e+05 422.88 NULL
2014 Fire Department Oiler NA NA 152435.94 5.081198e+04 44425.080 2293.00 3 4.442508e+04 133275.24 NA NA NA NULL
2014 Fire Department Painter NA NA 7074.38 7.074380e+03 7074.380 144.25 1 7.074380e+03 7074.38 NA NA NA NULL
2014 Fire Department Physician 74249.82945 2.969993e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.969993e+05 2.969993e+05 0.00 NULL
2014 Fire Department Physician’s Assistant 78624.00000 7.862400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.862400e+04 7.862400e+04 0.00 NULL
2014 Fire Department Pilot 92081.80000 1.381227e+06 600128.73 4.000858e+04 45655.000 8218.85 15 4.000858e+04 600128.73 1.981356e+06 1.981356e+06 0.00 NULL
2014 Fire Department Planner: Production Cntrl & Scheduling 54098.66667 1.622960e+05 106310.27 3.543676e+04 40217.140 2381.25 3 3.543676e+04 106310.27 2.686063e+05 2.686063e+05 0.00 NULL
2014 Fire Department Plasterer NA NA 10502.74 1.050274e+04 10502.740 186.25 1 1.050274e+04 10502.74 NA NA NA NULL
2014 Fire Department Plumber NA NA 298869.74 2.716998e+04 32828.260 3518.25 11 2.716998e+04 298869.74 NA NA NA NULL
2014 Fire Department Plumber’s Helper NA NA 12163.20 1.216320e+04 12163.200 182.00 1 1.216320e+04 12163.20 NA NA NA NULL
2014 Fire Department Principal Administrative Associate - Lev 1 & 2 Non Supvr 54090.89549 7.085907e+06 349411.81 2.667266e+03 197.120 9505.25 131 1.971200e+02 25822.72 7.435319e+06 7.111730e+06 323589.09 NULL
2014 Fire Department Procurement Analyst 53727.49048 1.558097e+06 95267.58 3.285089e+03 352.790 3011.25 29 3.527900e+02 10230.91 1.653365e+06 1.568328e+06 85036.67 NULL
2014 Fire Department Program Producer 60808.21000 1.824246e+05 444.50 1.481667e+02 132.250 20.25 3 1.322500e+02 396.75 1.828691e+05 1.828214e+05 47.75 NULL
2014 Fire Department Public Records Officer 48083.50000 9.616700e+04 257.40 1.287000e+02 128.700 22.25 2 1.287000e+02 257.40 9.642440e+04 9.642440e+04 0.00 NULL
2014 Fire Department Radio Repair Mechanic NA NA 594710.54 2.287348e+04 22975.380 9868.00 26 2.287348e+04 594710.54 NA NA NA NULL
2014 Fire Department Research Assistant 49683.53846 6.458860e+05 12500.10 9.615462e+02 0.000 413.50 13 0.000000e+00 0.00 6.583861e+05 6.458860e+05 12500.10 NULL
2014 Fire Department Roofer NA NA 5924.86 5.924860e+03 5924.860 153.75 1 5.924860e+03 5924.86 NA NA NA NULL
2014 Fire Department Rubber Tire Repairer NA NA 114630.02 1.637572e+04 15340.770 3373.75 7 1.534077e+04 107385.39 NA NA NA NULL
2014 Fire Department Secretary To The Deputy Commissioner 59810.00000 5.981000e+04 60.63 6.063000e+01 60.630 2.00 1 6.063000e+01 60.63 5.987063e+04 5.987063e+04 0.00 NULL
2014 Fire Department Senior Photographer 71683.79750 7.168380e+04 9755.92 9.755920e+03 9755.920 267.50 1 9.755920e+03 9755.92 8.143972e+04 8.143972e+04 0.00 NULL
2014 Fire Department Senior Stationary Engineer NA NA 65003.41 6.500341e+04 65003.410 752.00 1 6.500341e+04 65003.41 NA NA NA NULL
2014 Fire Department Senior Supervisor Communication Electrician NA NA 38684.39 3.868439e+04 38684.390 577.75 1 3.868439e+04 38684.39 NA NA NA NULL
2014 Fire Department Sheet Metal Worker NA NA 87135.72 8.713572e+04 87135.720 895.75 1 8.713572e+04 87135.72 NA NA NA NULL
2014 Fire Department Spvsg Fad-Dep Dir Dsptch Dtail 101118.00000 2.022360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.022360e+05 2.022360e+05 0.00 NULL
2014 Fire Department Spvsg Fad-Dir Dsptch Op Detail 108310.50000 2.166210e+05 1102.30 5.511500e+02 551.150 18.00 2 5.511500e+02 1102.30 2.177233e+05 2.177233e+05 0.00 NULL
2014 Fire Department Staff Analyst 61036.43056 5.493279e+05 1699.01 1.887789e+02 0.000 38.50 9 0.000000e+00 0.00 5.510269e+05 5.493279e+05 1699.01 NULL
2014 Fire Department Staff Analyst Trainee 43152.29606 3.452184e+05 4236.23 5.295287e+02 0.000 174.50 8 0.000000e+00 0.00 3.494546e+05 3.452184e+05 4236.23 NULL
2014 Fire Department Stationary Engineer NA NA 78539.51 7.853951e+04 78539.510 1032.00 1 7.853951e+04 78539.51 NA NA NA NULL
2014 Fire Department Statistician 50468.25000 2.018730e+05 1451.29 3.628225e+02 126.810 48.50 4 1.268100e+02 507.24 2.033243e+05 2.023802e+05 944.05 NULL
2014 Fire Department Steam Fitter NA NA 36825.36 3.682536e+04 36825.360 354.50 1 3.682536e+04 36825.36 NA NA NA NULL
2014 Fire Department Stock Worker 31873.00000 9.561900e+04 42233.78 1.407793e+04 11799.180 1750.75 3 1.179918e+04 35397.54 1.378528e+05 1.310165e+05 6836.24 NULL
2014 Fire Department Supervising Blasting Inspector 64580.00000 3.874800e+05 227148.21 3.785804e+04 41520.200 4705.17 6 3.785804e+04 227148.21 6.146282e+05 6.146282e+05 0.00 NULL
2014 Fire Department Supervising Communication Electrician NA NA 477979.65 5.974746e+04 62555.415 7304.00 8 5.974746e+04 477979.65 NA NA NA NULL
2014 Fire Department Supervising Computer Service Technician 59604.00000 5.960400e+04 54789.95 5.478995e+04 54789.950 1069.00 1 5.478995e+04 54789.95 1.143939e+05 1.143939e+05 0.00 NULL
2014 Fire Department Supervising Emergency Medical Service Specialist 63762.00202 3.156219e+07 6928141.75 1.399625e+04 12606.030 136696.28 495 1.260603e+04 6239984.85 3.849033e+07 3.780218e+07 688156.90 NULL
2014 Fire Department Supervising Emergency Medical Service Specialist-Dpty Chiefs 96372.76190 4.047656e+06 65408.03 1.557334e+03 0.000 1064.25 42 0.000000e+00 0.00 4.113064e+06 4.047656e+06 65408.03 NULL
2014 Fire Department Supervising Fire Alarm Dispatcher 68697.82857 2.404424e+06 569414.65 1.626899e+04 15702.150 10216.25 35 1.570215e+04 549575.25 2.973839e+06 2.953999e+06 19839.40 NULL
2014 Fire Department Supervising Fire Marshal 109963.00000 2.969001e+06 986846.87 3.654988e+04 37264.210 12034.98 27 3.654988e+04 986846.87 3.955848e+06 3.955848e+06 0.00 NULL
2014 Fire Department Supervising Fm-Mgl Det: Chief Of Staff To Fire Comm 199691.00000 1.996910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.996910e+05 1.996910e+05 0.00 NULL
2014 Fire Department Supervisor Carpenter NA NA 89398.21 4.469911e+04 44699.105 1347.50 2 4.469911e+04 89398.21 NA NA NA NULL
2014 Fire Department Supervisor Electrician NA NA 162167.18 8.108359e+04 81083.590 2039.50 2 8.108359e+04 162167.18 NA NA NA NULL
2014 Fire Department Supervisor Of Electrical Installations & Maintenance 68442.00000 4.790940e+05 56726.40 8.103771e+03 985.670 1110.50 7 9.856700e+02 6899.69 5.358204e+05 4.859937e+05 49826.71 NULL
2014 Fire Department Supervisor Of Ironwork 105601.00000 1.056010e+05 26457.06 2.645706e+04 26457.060 308.75 1 2.645706e+04 26457.06 1.320581e+05 1.320581e+05 0.00 NULL
2014 Fire Department Supervisor Of Mechanics NA NA 1313162.85 4.377210e+04 45794.090 17475.50 30 4.377210e+04 1313162.85 NA NA NA NULL
2014 Fire Department Supervisor Of Radio Repair Operations 74825.00000 7.482500e+04 4009.13 4.009130e+03 4009.130 71.25 1 4.009130e+03 4009.13 7.883413e+04 7.883413e+04 0.00 NULL
2014 Fire Department Supervisor Of Stock Workers 46755.63158 8.883570e+05 312056.21 1.642401e+04 13711.640 9119.50 19 1.371164e+04 260521.16 1.200413e+06 1.148878e+06 51535.05 NULL
2014 Fire Department Supervisor Plumber NA NA 100246.42 5.012321e+04 50123.210 1035.50 2 5.012321e+04 100246.42 NA NA NA NULL
2014 Fire Department Telecommunication Manager 117789.00000 1.177890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.177890e+05 1.177890e+05 0.00 NULL
2014 Fire Department Telecommunications Associate 69730.50250 5.578440e+05 124337.10 1.554214e+04 11118.510 2397.50 8 1.111851e+04 88948.08 6.821811e+05 6.467921e+05 35389.02 NULL
2014 Fire Department Tests And Measurement Specialist 64338.33333 1.930150e+05 1413.48 4.711600e+02 0.000 45.50 3 0.000000e+00 0.00 1.944285e+05 1.930150e+05 1413.48 NULL
2014 Fire Department Welder NA NA 60235.26 3.011763e+04 30117.630 803.50 2 3.011763e+04 60235.26 NA NA NA NULL
2014 Fire Department Wiper 79275.00000 1.347675e+06 378789.04 2.228171e+04 22219.310 5933.18 17 2.221931e+04 377728.27 1.726464e+06 1.725403e+06 1060.77 NULL
2014 Guttman Community College Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 NA NA NA NULL
2014 Guttman Community College Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2014 Guttman Community College Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 NA NA NA NULL
2014 Guttman Community College Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 NA NA NA NULL
2014 Guttman Community College Administrator 138000.00000 1.380000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.380000e+05 1.380000e+05 0.00 NULL
2014 Guttman Community College Assistant College Security Director 81780.00000 8.178000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.178000e+04 8.178000e+04 0.00 NULL
2014 Guttman Community College Assistant Dean 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2014 Guttman Community College Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 NA NA NA NULL
2014 Guttman Community College Assistant To Heo 48534.66667 5.824160e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 5.824160e+05 5.824160e+05 0.00 NULL
2014 Guttman Community College Associate Professor 92640.00000 4.632000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.632000e+05 4.632000e+05 0.00 NULL
2014 Guttman Community College Campus Peace Officer 38954.75000 1.558190e+05 40043.05 1.001076e+04 11609.115 1476.00 4 1.001076e+04 40043.05 1.958620e+05 1.958620e+05 0.00 NULL
2014 Guttman Community College Campus Public Safety Sergeant 50147.00000 5.014700e+04 0.00 0.000000e+00 0.000 44.75 1 0.000000e+00 0.00 5.014700e+04 5.014700e+04 0.00 NULL
2014 Guttman Community College Campus Security Assistant 25553.00000 1.022120e+05 33344.21 8.336052e+03 8128.850 1875.25 4 8.128850e+03 32515.40 1.355562e+05 1.347274e+05 828.81 NULL
2014 Guttman Community College College Assistant NA NA 147.75 1.738235e+00 0.000 5.50 85 0.000000e+00 0.00 NA NA NA NULL
2014 Guttman Community College College Security Specialist 56488.00000 5.648800e+04 7030.53 7.030530e+03 7030.530 220.25 1 7.030530e+03 7030.53 6.351853e+04 6.351853e+04 0.00 NULL
2014 Guttman Community College Computer Systems Manager 101000.00000 1.010000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.010000e+05 1.010000e+05 0.00 NULL
2014 Guttman Community College Dean 138000.00000 1.380000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.380000e+05 1.380000e+05 0.00 NULL
2014 Guttman Community College Higher Education Assistant 59417.33333 1.069512e+06 991.28 5.507111e+01 0.000 20.00 18 0.000000e+00 0.00 1.070503e+06 1.069512e+06 991.28 NULL
2014 Guttman Community College Higher Education Associate 73882.78571 1.034359e+06 1066.72 7.619429e+01 0.000 20.00 14 0.000000e+00 0.00 1.035426e+06 1.034359e+06 1066.72 NULL
2014 Guttman Community College Higher Education Officer 104599.00000 1.150589e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.150589e+06 1.150589e+06 0.00 NULL
2014 Guttman Community College Instructor 57904.88889 5.211440e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.211440e+05 5.211440e+05 0.00 NULL
2014 Guttman Community College It Associate 76042.50000 1.520850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.520850e+05 1.520850e+05 0.00 NULL
2014 Guttman Community College It Senior Associate 78703.66667 2.361110e+05 649.88 2.166267e+02 0.000 16.00 3 0.000000e+00 0.00 2.367609e+05 2.361110e+05 649.88 NULL
2014 Guttman Community College It Support Assistant 27868.29000 2.786829e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.786829e+04 2.786829e+04 0.00 NULL
2014 Guttman Community College Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2014 Guttman Community College Non-Teaching Adjunct I 5541.27656 8.866043e+04 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 8.866043e+04 8.866043e+04 0.00 NULL
2014 Guttman Community College Non-Teaching Adjunct Ii 4474.56107 3.132193e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.132193e+04 3.132193e+04 0.00 NULL
2014 Guttman Community College Non-Teaching Adjunct Iii 4516.96000 3.613568e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 3.613568e+04 3.613568e+04 0.00 NULL
2014 Guttman Community College Non-Teaching Adjunct Iv 2643.10750 1.585865e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.585865e+04 1.585865e+04 0.00 NULL
2014 Guttman Community College Non-Teaching Adjunct V 2863.95344 2.291163e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 2.291163e+04 2.291163e+04 0.00 NULL
2014 Guttman Community College President 210000.00000 2.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.100000e+05 2.100000e+05 0.00 NULL
2014 Guttman Community College Professor 98147.00000 2.944410e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.944410e+05 2.944410e+05 0.00 NULL
2014 Guttman Community College Student Aide 1030.69097 3.710488e+04 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 3.710488e+04 3.710488e+04 0.00 NULL
2014 Guttman Community College Vice President 175888.33333 5.276650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.276650e+05 5.276650e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt *Attorney At Law 80895.51750 1.294328e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.294328e+06 1.294328e+06 0.00 NULL
2014 Housing Preservation & Dvlpmnt *Certified Wide Area Network Administrator 107846.00000 1.078460e+05 18303.63 1.830363e+04 18303.630 223.50 1 1.830363e+04 18303.63 1.261496e+05 1.261496e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Accountant 57990.38889 1.043827e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.043827e+06 1.043827e+06 0.00 NULL
2014 Housing Preservation & Dvlpmnt Adm Manager-Non-Mgrl From M1/M2 62952.62857 2.203342e+06 24823.04 7.092297e+02 0.000 564.47 35 0.000000e+00 0.00 2.228165e+06 2.203342e+06 24823.04 NULL
2014 Housing Preservation & Dvlpmnt Administrative Accountant 74688.00000 7.468800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.468800e+04 7.468800e+04 0.00 NULL
2014 Housing Preservation & Dvlpmnt Administrative Architect 91875.50000 1.837510e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.837510e+05 1.837510e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Administrative City Planner 98614.42857 6.903010e+05 8779.75 1.254250e+03 0.000 168.25 7 0.000000e+00 0.00 6.990808e+05 6.903010e+05 8779.75 NULL
2014 Housing Preservation & Dvlpmnt Administrative Engineer 102107.33333 3.063220e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.063220e+05 3.063220e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Administrative Housing Development Specialist 99359.34783 2.285265e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 2.285265e+06 2.285265e+06 0.00 NULL
2014 Housing Preservation & Dvlpmnt Administrative Inspector 90598.50000 9.059850e+05 518.61 5.186100e+01 0.000 10.75 10 0.000000e+00 0.00 9.065036e+05 9.059850e+05 518.61 NULL
2014 Housing Preservation & Dvlpmnt Administrative Management Auditor 97146.00000 9.714600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.714600e+04 9.714600e+04 0.00 NULL
2014 Housing Preservation & Dvlpmnt Administrative Manager 132758.00000 3.982740e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.982740e+05 3.982740e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Administrative Procurement Analyst 93031.00000 1.860620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.860620e+05 1.860620e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Administrative Project Director 102511.45455 2.255252e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 2.255252e+06 2.255252e+06 0.00 NULL
2014 Housing Preservation & Dvlpmnt Administrative Project Manager 103945.33333 9.355080e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.355080e+05 9.355080e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Administrative Public Information Specialist 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Administrative Real Property Manager 80796.88889 7.271720e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.271720e+05 7.271720e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Administrative Staff Analyst 92757.95098 9.461311e+06 70915.52 6.952502e+02 0.000 1318.50 102 0.000000e+00 0.00 9.532227e+06 9.461311e+06 70915.52 NULL
2014 Housing Preservation & Dvlpmnt Administrative Supervisor Of Building Maintenance 87760.00000 1.755200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.755200e+05 1.755200e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Agency Attorney 72844.72936 3.278013e+06 9371.97 2.082660e+02 0.000 184.25 45 0.000000e+00 0.00 3.287385e+06 3.278013e+06 9371.97 NULL
2014 Housing Preservation & Dvlpmnt Agency Attorney Interne 52482.00000 2.099280e+05 471.33 1.178325e+02 48.935 16.25 4 4.893500e+01 195.74 2.103993e+05 2.101237e+05 275.59 NULL
2014 Housing Preservation & Dvlpmnt Agency Chief Contracting Officer 108986.00000 1.089860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.089860e+05 1.089860e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Appraiser 62894.66667 3.773680e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.773680e+05 3.773680e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Architect 72080.50000 1.441610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.441610e+05 1.441610e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Assistant Architect 57114.00000 9.709380e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 9.709380e+05 9.709380e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Assistant Commissioner 125396.00000 2.507920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.507920e+05 2.507920e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Assistant Electrical Engineer 61206.00000 1.224120e+05 532.04 2.660200e+02 266.020 12.50 2 2.660200e+02 532.04 1.229440e+05 1.229440e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Assistant Mechanical Engineer 56409.25000 2.256370e+05 990.56 2.476400e+02 0.000 23.25 4 0.000000e+00 0.00 2.266276e+05 2.256370e+05 990.56 NULL
2014 Housing Preservation & Dvlpmnt Associate Housing Development Specialist 77876.57636 2.569927e+06 10434.58 3.161994e+02 0.000 215.00 33 0.000000e+00 0.00 2.580362e+06 2.569927e+06 10434.58 NULL
2014 Housing Preservation & Dvlpmnt Associate Inspector 61979.92453 3.284936e+06 195408.48 3.686952e+03 3206.310 4024.68 53 3.206310e+03 169934.43 3.480344e+06 3.454870e+06 25474.05 NULL
2014 Housing Preservation & Dvlpmnt Associate Investigator 57786.00000 1.155720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.155720e+05 1.155720e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Associate Project Manager 76728.60000 7.672860e+05 25618.79 2.561879e+03 201.380 524.50 10 2.013800e+02 2013.80 7.929048e+05 7.692998e+05 23604.99 NULL
2014 Housing Preservation & Dvlpmnt Associate Quality Assurance Specialist 60066.20000 3.003310e+05 5199.88 1.039976e+03 0.000 105.25 5 0.000000e+00 0.00 3.055309e+05 3.003310e+05 5199.88 NULL
2014 Housing Preservation & Dvlpmnt Associate Real Property Manager 59694.50000 2.387780e+06 24506.51 6.126627e+02 0.000 504.75 40 0.000000e+00 0.00 2.412287e+06 2.387780e+06 24506.51 NULL
2014 Housing Preservation & Dvlpmnt Associate Rehabilitation Specialist 59157.00000 1.183140e+05 2452.28 1.226140e+03 1226.140 53.75 2 1.226140e+03 2452.28 1.207663e+05 1.207663e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Associate Staff Analyst 75549.02225 3.021961e+06 3872.34 9.680850e+01 0.000 74.50 40 0.000000e+00 0.00 3.025833e+06 3.021961e+06 3872.34 NULL
2014 Housing Preservation & Dvlpmnt Bookkeeper 50000.42857 3.500030e+05 358.52 5.121714e+01 0.000 10.00 7 0.000000e+00 0.00 3.503615e+05 3.500030e+05 358.52 NULL
2014 Housing Preservation & Dvlpmnt Certified It Administrator 82730.50000 1.654610e+05 667.15 3.335750e+02 333.575 11.75 2 3.335750e+02 667.15 1.661281e+05 1.661281e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt City Planner 75446.00000 1.508920e+06 6373.36 3.186680e+02 0.000 129.75 20 0.000000e+00 0.00 1.515293e+06 1.508920e+06 6373.36 NULL
2014 Housing Preservation & Dvlpmnt City Planning Technician 42650.50000 8.530100e+04 190.82 9.541000e+01 95.410 7.50 2 9.541000e+01 190.82 8.549182e+04 8.549182e+04 0.00 NULL
2014 Housing Preservation & Dvlpmnt City Research Scientist 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt City Seasonal Aide 5649.96661 1.129993e+05 5554.67 2.777335e+02 182.530 333.00 20 1.825300e+02 3650.60 1.185540e+05 1.166499e+05 1904.07 NULL
2014 Housing Preservation & Dvlpmnt Civil Engineer 76618.00000 1.532360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.532360e+05 1.532360e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Clerical Aide 33769.30125 1.350772e+05 7450.58 1.862645e+03 895.145 244.00 4 8.951450e+02 3580.58 1.425278e+05 1.386578e+05 3870.00 NULL
2014 Housing Preservation & Dvlpmnt Clerical Associate Most Mayoral Ag 38819.08834 7.297989e+06 40487.66 2.153599e+02 0.000 1383.00 188 0.000000e+00 0.00 7.338476e+06 7.297989e+06 40487.66 NULL
2014 Housing Preservation & Dvlpmnt Commissioner Of Housing Preservation & Development 205180.00000 6.155400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.155400e+05 6.155400e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Community Assistant 32823.93623 2.396147e+06 30041.00 4.115205e+02 0.000 1132.75 73 0.000000e+00 0.00 2.426188e+06 2.396147e+06 30041.00 NULL
2014 Housing Preservation & Dvlpmnt Community Associate 41801.21614 8.193038e+06 60469.22 3.085164e+02 0.000 1818.00 196 0.000000e+00 0.00 8.253508e+06 8.193038e+06 60469.22 NULL
2014 Housing Preservation & Dvlpmnt Community Coordinator 58194.41748 5.994025e+06 71927.06 6.983210e+02 0.000 1956.00 103 0.000000e+00 0.00 6.065952e+06 5.994025e+06 71927.06 NULL
2014 Housing Preservation & Dvlpmnt Community Service Aide 28889.75482 3.177873e+05 3504.84 3.186218e+02 0.000 169.75 11 0.000000e+00 0.00 3.212921e+05 3.177873e+05 3504.84 NULL
2014 Housing Preservation & Dvlpmnt Computer Aide-Non-Spvr 47528.80000 2.376440e+05 13440.06 2.688012e+03 0.000 353.00 5 0.000000e+00 0.00 2.510841e+05 2.376440e+05 13440.06 NULL
2014 Housing Preservation & Dvlpmnt Computer Associate 72302.87500 1.156846e+06 15163.35 9.477094e+02 0.000 313.75 16 0.000000e+00 0.00 1.172009e+06 1.156846e+06 15163.35 NULL
2014 Housing Preservation & Dvlpmnt Computer Operations Manager 104287.60000 5.214380e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.214380e+05 5.214380e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Computer Programmer Analyst 63694.50000 1.273890e+05 555.32 2.776600e+02 277.660 14.00 2 2.776600e+02 555.32 1.279443e+05 1.279443e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Computer Specialist 88777.06250 1.420433e+06 10661.76 6.663600e+02 0.000 151.00 16 0.000000e+00 0.00 1.431095e+06 1.420433e+06 10661.76 NULL
2014 Housing Preservation & Dvlpmnt Computer Systems Manager 110243.91667 1.322927e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.322927e+06 1.322927e+06 0.00 NULL
2014 Housing Preservation & Dvlpmnt Construction Project Manager 65739.37714 1.150439e+07 316124.39 1.806425e+03 0.000 6298.00 175 0.000000e+00 0.00 1.182052e+07 1.150439e+07 316124.39 NULL
2014 Housing Preservation & Dvlpmnt Construction Project Manager Intern 52457.00000 5.245700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.245700e+04 5.245700e+04 0.00 NULL
2014 Housing Preservation & Dvlpmnt Deputy Commissioner 172647.33333 1.035884e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.035884e+06 1.035884e+06 0.00 NULL
2014 Housing Preservation & Dvlpmnt Deputy Counsel 109020.00000 2.180400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.180400e+05 2.180400e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Deputy General Counsel 136008.25000 5.440330e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.440330e+05 5.440330e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Electrician NA NA 26864.25 2.686425e+04 26864.250 365.50 1 2.686425e+04 26864.25 NA NA NA NULL
2014 Housing Preservation & Dvlpmnt Executive Agency Counsel 113531.27273 1.248844e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.248844e+06 1.248844e+06 0.00 NULL
2014 Housing Preservation & Dvlpmnt General Counsel 160609.00000 1.606090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.606090e+05 1.606090e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Housing Development Specialist 65036.95482 5.528141e+06 98089.12 1.153990e+03 0.000 2163.25 85 0.000000e+00 0.00 5.626230e+06 5.528141e+06 98089.12 NULL
2014 Housing Preservation & Dvlpmnt Housing Development Specialist Trainee 46890.00000 1.875600e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.875600e+05 1.875600e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Industrial Hygienist 54339.00000 5.433900e+04 720.28 7.202800e+02 720.280 19.00 1 7.202800e+02 720.28 5.505928e+04 5.505928e+04 0.00 NULL
2014 Housing Preservation & Dvlpmnt Inspector 51665.27778 1.580958e+07 431081.12 1.408762e+03 439.585 10919.43 306 4.395850e+02 134513.01 1.624066e+07 1.594409e+07 296568.11 NULL
2014 Housing Preservation & Dvlpmnt Investigator 49578.00000 9.915600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.915600e+04 9.915600e+04 0.00 NULL
2014 Housing Preservation & Dvlpmnt Investigator Empl Disc 47996.50000 1.919860e+05 33797.92 8.449480e+03 6470.375 906.25 4 6.470375e+03 25881.50 2.257839e+05 2.178675e+05 7916.42 NULL
2014 Housing Preservation & Dvlpmnt Lead Abatement Worker 45426.00000 4.996860e+05 52.34 4.758182e+00 0.000 1.50 11 0.000000e+00 0.00 4.997383e+05 4.996860e+05 52.34 NULL
2014 Housing Preservation & Dvlpmnt Management Auditor 63564.18182 6.992060e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 6.992060e+05 6.992060e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Mechanical Engineer 65698.00000 6.569800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.569800e+04 6.569800e+04 0.00 NULL
2014 Housing Preservation & Dvlpmnt Multiple Dwelling Specialist 56677.33333 1.700320e+05 3410.36 1.136787e+03 613.210 74.10 3 6.132100e+02 1839.63 1.734424e+05 1.718716e+05 1570.73 NULL
2014 Housing Preservation & Dvlpmnt Paralegal Aide 49496.00000 4.949600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.949600e+04 4.949600e+04 0.00 NULL
2014 Housing Preservation & Dvlpmnt Principal Administrative Associate - Lev 1 & 2 Non Supvr 52279.94475 9.462670e+06 43068.39 2.379469e+02 0.000 1178.25 181 0.000000e+00 0.00 9.505738e+06 9.462670e+06 43068.39 NULL
2014 Housing Preservation & Dvlpmnt Principal Appraiser 102467.00000 1.024670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.024670e+05 1.024670e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Procurement Analyst 62187.66667 5.596890e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.596890e+05 5.596890e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Project Manager 58355.66667 1.750670e+05 414.71 1.382367e+02 0.000 12.00 3 0.000000e+00 0.00 1.754817e+05 1.750670e+05 414.71 NULL
2014 Housing Preservation & Dvlpmnt Quality Assurance Specialist 46093.61111 8.296850e+05 8405.42 4.669678e+02 500.075 246.00 18 4.669678e+02 8405.42 8.380904e+05 8.380904e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Real Property Manager 50353.64179 3.373694e+06 4150.65 6.195000e+01 0.000 127.50 67 0.000000e+00 0.00 3.377845e+06 3.373694e+06 4150.65 NULL
2014 Housing Preservation & Dvlpmnt Repair Crew Chief 37102.50000 2.226150e+05 4950.62 8.251033e+02 632.930 225.00 6 6.329300e+02 3797.58 2.275656e+05 2.264126e+05 1153.04 NULL
2014 Housing Preservation & Dvlpmnt Research Assistant 38303.00000 3.830300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.830300e+04 3.830300e+04 0.00 NULL
2014 Housing Preservation & Dvlpmnt Secretary 37514.19355 1.162940e+06 7474.10 2.411000e+02 0.000 185.75 31 0.000000e+00 0.00 1.170414e+06 1.162940e+06 7474.10 NULL
2014 Housing Preservation & Dvlpmnt Secretary Of Comm 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2014 Housing Preservation & Dvlpmnt Senior Estimator 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2014 Housing Preservation & Dvlpmnt Senior Intergroup Relations Officer 44604.00000 4.460400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.460400e+04 4.460400e+04 0.00 NULL
2014 Housing Preservation & Dvlpmnt Senior Repair Crew Chief 55118.33333 1.653550e+05 20688.37 6.896123e+03 5213.140 597.00 3 5.213140e+03 15639.42 1.860434e+05 1.809944e+05 5048.95 NULL
2014 Housing Preservation & Dvlpmnt Sr Community Organization Specialist- Urban Renewal 70683.00000 7.068300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.068300e+04 7.068300e+04 0.00 NULL
2014 Housing Preservation & Dvlpmnt Staff Analyst 58453.52941 9.937100e+05 1132.30 6.660588e+01 0.000 31.75 17 0.000000e+00 0.00 9.948423e+05 9.937100e+05 1132.30 NULL
2014 Housing Preservation & Dvlpmnt Staff Analyst Trainee 48535.40000 2.426770e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.426770e+05 2.426770e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Supervising Computer Service Technician 62169.00000 6.216900e+04 313.39 3.133900e+02 313.390 15.00 1 3.133900e+02 313.39 6.248239e+04 6.248239e+04 0.00 NULL
2014 Housing Preservation & Dvlpmnt Supervising Demolition Inspector 65698.00000 1.970940e+05 10335.95 3.445317e+03 3224.680 218.50 3 3.224680e+03 9674.04 2.074300e+05 2.067680e+05 661.91 NULL
2014 Housing Preservation & Dvlpmnt Supervisor Of Electrical Installations & Maintenance 66034.80000 6.603480e+05 11090.94 1.109094e+03 0.000 246.75 10 0.000000e+00 0.00 6.714389e+05 6.603480e+05 11090.94 NULL
2014 Housing Preservation & Dvlpmnt Supervisor Of Mechanical Installations & Maintenance 61576.44444 5.541880e+05 13334.64 1.481627e+03 0.000 324.42 9 0.000000e+00 0.00 5.675226e+05 5.541880e+05 13334.64 NULL
2014 Housing Preservation & Dvlpmnt Supervisor Of Stock Workers 49374.50000 9.874900e+04 5045.63 2.522815e+03 2522.815 77.50 2 2.522815e+03 5045.63 1.037946e+05 1.037946e+05 0.00 NULL
2014 Housing Preservation & Dvlpmnt Telecommunication Manager 72000.00000 7.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.200000e+04 7.200000e+04 0.00 NULL
2014 Hra/Dept Of Social Services *Attorney At Law 76263.83333 9.151660e+05 2335.93 1.946608e+02 0.000 50.25 12 0.000000e+00 0.00 9.175019e+05 9.151660e+05 2335.93 NULL
2014 Hra/Dept Of Social Services *Certified Database Administrator 97048.00000 9.704800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.704800e+04 9.704800e+04 0.00 NULL
2014 Hra/Dept Of Social Services *Certified Local Area Network Administrator 90406.14286 6.328430e+05 48598.53 6.942647e+03 1743.880 785.00 7 1.743880e+03 12207.16 6.814415e+05 6.450502e+05 36391.37 NULL
2014 Hra/Dept Of Social Services *Community Liaison Worker 40428.00000 4.042800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.042800e+04 4.042800e+04 0.00 NULL
2014 Hra/Dept Of Social Services *Custodial Assistant 31984.83333 1.919090e+05 18238.16 3.039693e+03 1236.975 785.50 6 1.236975e+03 7421.85 2.101472e+05 1.993309e+05 10816.31 NULL
2014 Hra/Dept Of Social Services Accountant 52732.86957 1.212856e+06 12249.14 5.325713e+02 0.000 481.25 23 0.000000e+00 0.00 1.225105e+06 1.212856e+06 12249.14 NULL
2014 Hra/Dept Of Social Services Adm Manager-Non-Mgrl From M1/M2 64967.14583 3.118423e+06 32605.91 6.792898e+02 0.000 789.25 48 0.000000e+00 0.00 3.151029e+06 3.118423e+06 32605.91 NULL
2014 Hra/Dept Of Social Services Admin Community Relations Specialist 88118.40000 4.405920e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.405920e+05 4.405920e+05 0.00 NULL
2014 Hra/Dept Of Social Services Admin Contract Specialist 99720.00000 6.980400e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.980400e+05 6.980400e+05 0.00 NULL
2014 Hra/Dept Of Social Services Admin Job Opor Spec-Managerial 100861.19231 2.622391e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 2.622391e+06 2.622391e+06 0.00 NULL
2014 Hra/Dept Of Social Services Admin Job Opportunity Spec Nm 73274.75000 6.448178e+06 373535.19 4.244718e+03 2347.510 7494.25 88 2.347510e+03 206580.88 6.821713e+06 6.654759e+06 166954.31 NULL
2014 Hra/Dept Of Social Services Administrative Accountant 87057.00000 8.705700e+05 6146.55 6.146550e+02 0.000 116.50 10 0.000000e+00 0.00 8.767166e+05 8.705700e+05 6146.55 NULL
2014 Hra/Dept Of Social Services Administrative Architect 101769.50000 2.035390e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.035390e+05 2.035390e+05 0.00 NULL
2014 Hra/Dept Of Social Services Administrative City Planner 68124.00000 6.812400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.812400e+04 6.812400e+04 0.00 NULL
2014 Hra/Dept Of Social Services Administrative Community Relations Specialist 163841.00000 1.638410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.638410e+05 1.638410e+05 0.00 NULL
2014 Hra/Dept Of Social Services Administrative Construction Project Manager 101328.00000 2.026560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.026560e+05 2.026560e+05 0.00 NULL
2014 Hra/Dept Of Social Services Administrative Director Of Social Services 85174.12605 1.013572e+07 35565.99 2.988739e+02 0.000 694.50 119 0.000000e+00 0.00 1.017129e+07 1.013572e+07 35565.99 NULL
2014 Hra/Dept Of Social Services Administrative Engineer 100292.00000 3.008760e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.008760e+05 3.008760e+05 0.00 NULL
2014 Hra/Dept Of Social Services Administrative Investigator 85227.32558 3.664775e+06 140.56 3.268837e+00 0.000 3.75 43 0.000000e+00 0.00 3.664916e+06 3.664775e+06 140.56 NULL
2014 Hra/Dept Of Social Services Administrative Management Auditor 89973.75000 7.197900e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.197900e+05 7.197900e+05 0.00 NULL
2014 Hra/Dept Of Social Services Administrative Manager 93813.20000 4.690660e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.690660e+05 4.690660e+05 0.00 NULL
2014 Hra/Dept Of Social Services Administrative Printing Services Manager 83783.66667 2.513510e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.513510e+05 2.513510e+05 0.00 NULL
2014 Hra/Dept Of Social Services Administrative Procurement Analyst 90958.12500 7.276650e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.276650e+05 7.276650e+05 0.00 NULL
2014 Hra/Dept Of Social Services Administrative Public Information Specialist 102915.16667 6.174910e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.174910e+05 6.174910e+05 0.00 NULL
2014 Hra/Dept Of Social Services Administrative Space Analyst 86987.20000 8.698720e+05 1487.84 1.487840e+02 0.000 33.00 10 0.000000e+00 0.00 8.713598e+05 8.698720e+05 1487.84 NULL
2014 Hra/Dept Of Social Services Administrative Staff Analyst 87760.06971 3.650819e+07 247819.97 5.957211e+02 0.000 4608.00 416 0.000000e+00 0.00 3.675601e+07 3.650819e+07 247819.97 NULL
2014 Hra/Dept Of Social Services Administrative Storekeeper 92022.66667 2.760680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.760680e+05 2.760680e+05 0.00 NULL
2014 Hra/Dept Of Social Services Administrative Supervisor Of Building Maintenance 116780.20000 5.839010e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.839010e+05 5.839010e+05 0.00 NULL
2014 Hra/Dept Of Social Services Agency Attorney 70741.62921 6.296005e+06 58304.83 6.551104e+02 0.000 1233.75 89 0.000000e+00 0.00 6.354310e+06 6.296005e+06 58304.83 NULL
2014 Hra/Dept Of Social Services Agency Attorney Interne 56680.00000 3.400800e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.400800e+05 3.400800e+05 0.00 NULL
2014 Hra/Dept Of Social Services Agency Chief Contracting Officer 151200.00000 1.512000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.512000e+05 1.512000e+05 0.00 NULL
2014 Hra/Dept Of Social Services Architect 74844.33333 2.245330e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.245330e+05 2.245330e+05 0.00 NULL
2014 Hra/Dept Of Social Services Assistant Accountant 46422.00000 4.642200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.642200e+04 4.642200e+04 0.00 NULL
2014 Hra/Dept Of Social Services Assistant Administrator Of Public Affairs 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2014 Hra/Dept Of Social Services Assistant Commissioner 132245.66667 3.967370e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.967370e+05 3.967370e+05 0.00 NULL
2014 Hra/Dept Of Social Services Assistant Deputy Commissioner Ss 105744.00000 5.287200e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.287200e+05 5.287200e+05 0.00 NULL
2014 Hra/Dept Of Social Services Assistant Mechanical Engineer 55345.00000 5.534500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.534500e+04 5.534500e+04 0.00 NULL
2014 Hra/Dept Of Social Services Assistant Printing Press Operator 50757.25000 2.030290e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.030290e+05 2.030290e+05 0.00 NULL
2014 Hra/Dept Of Social Services Assistant Superintendent Of Welfare Shelters 57943.10000 5.794310e+05 158802.00 1.588020e+04 16858.390 3728.00 10 1.588020e+04 158802.00 7.382330e+05 7.382330e+05 0.00 NULL
2014 Hra/Dept Of Social Services Associate Commissioner For Employment Service 152000.00000 1.520000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.520000e+05 1.520000e+05 0.00 NULL
2014 Hra/Dept Of Social Services Associate Contract Specialist 60163.14286 4.211420e+05 2034.93 2.907043e+02 0.000 60.25 7 0.000000e+00 0.00 4.231769e+05 4.211420e+05 2034.93 NULL
2014 Hra/Dept Of Social Services Associate Fraud Investigator 60287.37500 1.591587e+07 27628.35 1.046528e+02 0.000 860.00 264 0.000000e+00 0.00 1.594350e+07 1.591587e+07 27628.35 NULL
2014 Hra/Dept Of Social Services Associate Investigator 63056.00000 6.305600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.305600e+04 6.305600e+04 0.00 NULL
2014 Hra/Dept Of Social Services Associate Job Opportunity Specialist 54133.47336 4.368571e+07 3883474.07 4.812236e+03 3186.810 101108.25 807 3.186810e+03 2571755.67 4.756919e+07 4.625747e+07 1311718.40 NULL
2014 Hra/Dept Of Social Services Associate Labor Relations Analyst 75780.16667 4.546810e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.546810e+05 4.546810e+05 0.00 NULL
2014 Hra/Dept Of Social Services Associate Project Manager 74273.66667 2.228210e+05 6079.29 2.026430e+03 0.000 93.50 3 0.000000e+00 0.00 2.289003e+05 2.228210e+05 6079.29 NULL
2014 Hra/Dept Of Social Services Associate Public Information Specialist 46748.00000 9.349600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.349600e+04 9.349600e+04 0.00 NULL
2014 Hra/Dept Of Social Services Associate Staff Analyst 69028.33591 1.787834e+07 69155.82 2.670109e+02 0.000 1487.50 259 0.000000e+00 0.00 1.794749e+07 1.787834e+07 69155.82 NULL
2014 Hra/Dept Of Social Services Bookbinder 32137.00000 3.213700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.213700e+04 3.213700e+04 0.00 NULL
2014 Hra/Dept Of Social Services Bookkeeper 40519.33824 5.510630e+06 254769.17 1.873303e+03 0.000 9950.00 136 0.000000e+00 0.00 5.765399e+06 5.510630e+06 254769.17 NULL
2014 Hra/Dept Of Social Services Carpenter NA NA 17487.06 1.028651e+03 1001.040 249.00 17 1.001040e+03 17017.68 NA NA NA NULL
2014 Hra/Dept Of Social Services Caseworker 40458.90050 6.424873e+07 1037474.65 6.533216e+02 0.000 34386.20 1588 0.000000e+00 0.00 6.528621e+07 6.424873e+07 1037474.65 NULL
2014 Hra/Dept Of Social Services Cement Mason NA NA 4167.38 1.389127e+03 1456.560 56.50 3 1.389127e+03 4167.38 NA NA NA NULL
2014 Hra/Dept Of Social Services Certified It Administrator 89624.77419 2.778368e+06 180153.98 5.811419e+03 0.000 2750.50 31 0.000000e+00 0.00 2.958522e+06 2.778368e+06 180153.98 NULL
2014 Hra/Dept Of Social Services Certified It Developer 91635.37500 7.330830e+05 38725.70 4.840712e+03 1781.755 610.50 8 1.781755e+03 14254.04 7.718087e+05 7.473370e+05 24471.66 NULL
2014 Hra/Dept Of Social Services City Custodial Assistant 31290.60000 1.564530e+05 5029.80 1.005960e+03 0.000 241.00 5 0.000000e+00 0.00 1.614828e+05 1.564530e+05 5029.80 NULL
2014 Hra/Dept Of Social Services City Laborer NA NA 29924.51 2.301885e+03 2283.640 554.25 13 2.283640e+03 29687.32 NA NA NA NULL
2014 Hra/Dept Of Social Services City Medical Director 186443.00000 1.864430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.864430e+05 1.864430e+05 0.00 NULL
2014 Hra/Dept Of Social Services City Planner 76877.00000 7.687700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.687700e+04 7.687700e+04 0.00 NULL
2014 Hra/Dept Of Social Services City Research Scientist 76942.55556 2.077449e+06 0.00 0.000000e+00 0.000 12.25 27 0.000000e+00 0.00 2.077449e+06 2.077449e+06 0.00 NULL
2014 Hra/Dept Of Social Services Civil Engineer 83090.00000 8.309000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.309000e+04 8.309000e+04 0.00 NULL
2014 Hra/Dept Of Social Services Clerical Aide 28758.77778 2.588290e+05 2875.66 3.195178e+02 0.000 191.50 9 0.000000e+00 0.00 2.617047e+05 2.588290e+05 2875.66 NULL
2014 Hra/Dept Of Social Services Clerical Associate Most Mayoral Ag 34525.89701 4.391694e+07 1043598.81 8.204393e+02 0.000 43913.22 1272 0.000000e+00 0.00 4.496054e+07 4.391694e+07 1043598.81 NULL
2014 Hra/Dept Of Social Services Community Assistant 31557.01744 1.956535e+06 49976.98 8.060803e+02 0.000 2259.50 62 0.000000e+00 0.00 2.006512e+06 1.956535e+06 49976.98 NULL
2014 Hra/Dept Of Social Services Community Associate 41225.30488 3.380475e+06 90580.96 1.104646e+03 0.000 3201.25 82 0.000000e+00 0.00 3.471056e+06 3.380475e+06 90580.96 NULL
2014 Hra/Dept Of Social Services Community Coordinator 56827.53347 5.398616e+06 181317.52 1.908605e+03 0.000 4646.75 95 0.000000e+00 0.00 5.579933e+06 5.398616e+06 181317.52 NULL
2014 Hra/Dept Of Social Services Computer Aide-Non-Spvr 40543.84211 7.703330e+05 8554.28 4.502253e+02 0.000 300.75 19 0.000000e+00 0.00 7.788873e+05 7.703330e+05 8554.28 NULL
2014 Hra/Dept Of Social Services Computer Associate 63729.22414 1.293703e+07 157424.09 7.754881e+02 0.000 3577.75 203 0.000000e+00 0.00 1.309446e+07 1.293703e+07 157424.09 NULL
2014 Hra/Dept Of Social Services Computer Operations Manager 98046.36000 4.902318e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.902318e+05 4.902318e+05 0.00 NULL
2014 Hra/Dept Of Social Services Computer Programmer Analyst 52767.15385 6.859730e+05 1114.95 8.576538e+01 0.000 55.75 13 0.000000e+00 0.00 6.870879e+05 6.859730e+05 1114.95 NULL
2014 Hra/Dept Of Social Services Computer Programmer Analyst Trainee 39776.00000 7.955200e+04 9435.11 4.717555e+03 4717.555 382.25 2 4.717555e+03 9435.11 8.898711e+04 8.898711e+04 0.00 NULL
2014 Hra/Dept Of Social Services Computer Service Technician 42127.41667 5.055290e+05 3471.00 2.892500e+02 0.000 136.25 12 0.000000e+00 0.00 5.090000e+05 5.055290e+05 3471.00 NULL
2014 Hra/Dept Of Social Services Computer Specialist 86601.72533 3.247565e+07 868814.58 2.316839e+03 0.000 15202.75 375 0.000000e+00 0.00 3.334446e+07 3.247565e+07 868814.58 NULL
2014 Hra/Dept Of Social Services Computer Systems Manager 107232.92632 1.018713e+07 0.00 0.000000e+00 0.000 0.00 95 0.000000e+00 0.00 1.018713e+07 1.018713e+07 0.00 NULL
2014 Hra/Dept Of Social Services Construction Project Manager 68855.20000 3.442760e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.442760e+05 3.442760e+05 0.00 NULL
2014 Hra/Dept Of Social Services Consultant 60887.90000 6.088790e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 6.088790e+05 6.088790e+05 0.00 NULL
2014 Hra/Dept Of Social Services Custodian 37224.36458 3.573539e+06 635595.44 6.620786e+03 5334.080 22533.00 96 5.334080e+03 512071.68 4.209134e+06 4.085611e+06 123523.76 NULL
2014 Hra/Dept Of Social Services Deputy Asst Admin For Personnel Adm & Labor Rel 154777.00000 1.547770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.547770e+05 1.547770e+05 0.00 NULL
2014 Hra/Dept Of Social Services Deputy Commissioner 165286.50000 3.305730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.305730e+05 3.305730e+05 0.00 NULL
2014 Hra/Dept Of Social Services Deputy Director Of Administration 126795.28571 1.775134e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.775134e+06 1.775134e+06 0.00 NULL
2014 Hra/Dept Of Social Services Deputy Director Of Labor Relations 99779.00000 9.977900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.977900e+04 9.977900e+04 0.00 NULL
2014 Hra/Dept Of Social Services Deputy Director Of Security 76712.33333 2.301370e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.301370e+05 2.301370e+05 0.00 NULL
2014 Hra/Dept Of Social Services Dir Of Home Care Services/Family And Adult Services 136344.00000 1.363440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.363440e+05 1.363440e+05 0.00 NULL
2014 Hra/Dept Of Social Services Dir Policy Econom Resrch 133322.50000 2.666450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.666450e+05 2.666450e+05 0.00 NULL
2014 Hra/Dept Of Social Services Director Of Admin 182000.00000 1.820000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.820000e+05 1.820000e+05 0.00 NULL
2014 Hra/Dept Of Social Services Director Of Community Participation Programs 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2014 Hra/Dept Of Social Services Director Of Compliance & Legislative Development 73943.00000 7.394300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.394300e+04 7.394300e+04 0.00 NULL
2014 Hra/Dept Of Social Services Director Of Eeo/Contract Compliance 98211.00000 9.821100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.821100e+04 9.821100e+04 0.00 NULL
2014 Hra/Dept Of Social Services Director Of Fiscal Operations 121846.00000 1.218460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.218460e+05 1.218460e+05 0.00 NULL
2014 Hra/Dept Of Social Services Director Of Food Stamp Program 146638.00000 1.466380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.466380e+05 1.466380e+05 0.00 NULL
2014 Hra/Dept Of Social Services Director Of Information Services 195000.00000 1.950000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.950000e+05 1.950000e+05 0.00 NULL
2014 Hra/Dept Of Social Services Director Of Labor Relations 139571.00000 1.395710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.395710e+05 1.395710e+05 0.00 NULL
2014 Hra/Dept Of Social Services Director Of Legislative Coordination 113027.00000 1.130270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.130270e+05 1.130270e+05 0.00 NULL
2014 Hra/Dept Of Social Services Director Of Security 85253.00000 8.525300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.525300e+04 8.525300e+04 0.00 NULL
2014 Hra/Dept Of Social Services Electrical Engineer 78166.00000 7.816600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.816600e+04 7.816600e+04 0.00 NULL
2014 Hra/Dept Of Social Services Electrician NA NA 20812.74 1.734395e+03 771.750 287.25 12 7.717500e+02 9261.00 NA NA NA NULL
2014 Hra/Dept Of Social Services Electrician’s Helper NA NA 5364.76 8.941267e+02 466.500 95.00 6 4.665000e+02 2799.00 NA NA NA NULL
2014 Hra/Dept Of Social Services Eligibility Specialist 35834.27505 1.005868e+08 3219122.14 1.146819e+03 2.690 124421.83 2807 2.690000e+00 7550.83 1.038059e+08 1.005944e+08 3211571.31 NULL
2014 Hra/Dept Of Social Services Exec Asst To The Deputy Commissioner 89884.00000 1.797680e+05 92.56 4.628000e+01 46.280 0.00 2 4.628000e+01 92.56 1.798606e+05 1.798606e+05 0.00 NULL
2014 Hra/Dept Of Social Services Executive Agency Counsel 115720.51724 3.355895e+06 3599.67 1.241266e+02 0.000 56.50 29 0.000000e+00 0.00 3.359495e+06 3.355895e+06 3599.67 NULL
2014 Hra/Dept Of Social Services Executive Asst-Domestic Violence-Hra 54331.40000 2.716570e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.716570e+05 2.716570e+05 0.00 NULL
2014 Hra/Dept Of Social Services Executive Deputy Administrator 150292.00000 1.502920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.502920e+05 1.502920e+05 0.00 NULL
2014 Hra/Dept Of Social Services First Deputy Commissioner 195100.00000 1.951000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.951000e+05 1.951000e+05 0.00 NULL
2014 Hra/Dept Of Social Services Fraud Investigator 45189.48163 3.321427e+07 54412.27 7.403030e+01 0.000 2326.50 735 0.000000e+00 0.00 3.326868e+07 3.321427e+07 54412.27 NULL
2014 Hra/Dept Of Social Services Gardener 58548.00000 5.854800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.854800e+04 5.854800e+04 0.00 NULL
2014 Hra/Dept Of Social Services General Counsel 181530.00000 3.630600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.630600e+05 3.630600e+05 0.00 NULL
2014 Hra/Dept Of Social Services Graphic Artist 51325.16667 3.079510e+05 495.29 8.254833e+01 0.000 14.00 6 0.000000e+00 0.00 3.084463e+05 3.079510e+05 495.29 NULL
2014 Hra/Dept Of Social Services Head Nurse 70700.89474 1.343317e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.343317e+06 1.343317e+06 0.00 NULL
2014 Hra/Dept Of Social Services Homemaker 31584.00000 3.158400e+04 4728.11 4.728110e+03 4728.110 228.00 1 4.728110e+03 4728.11 3.631211e+04 3.631211e+04 0.00 NULL
2014 Hra/Dept Of Social Services Human Resources Administrator 205180.00000 4.103600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.103600e+05 4.103600e+05 0.00 NULL
2014 Hra/Dept Of Social Services Human Resources Technician 30984.00000 6.196800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.196800e+04 6.196800e+04 0.00 NULL
2014 Hra/Dept Of Social Services Institutional Aide 33654.33333 1.009630e+05 22051.69 7.350563e+03 7889.240 842.75 3 7.350563e+03 22051.69 1.230147e+05 1.230147e+05 0.00 NULL
2014 Hra/Dept Of Social Services Investigator 55408.66667 3.324520e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.324520e+05 3.324520e+05 0.00 NULL
2014 Hra/Dept Of Social Services Job Opportunity Specialist 40686.09981 6.359237e+07 4290146.03 2.744815e+03 877.180 150830.90 1563 8.771800e+02 1371032.34 6.788252e+07 6.496341e+07 2919113.69 NULL
2014 Hra/Dept Of Social Services Labor Relations Analyst 61369.00000 6.136900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.136900e+04 6.136900e+04 0.00 NULL
2014 Hra/Dept Of Social Services Locksmith NA NA 2119.60 1.059800e+03 1059.800 55.00 2 1.059800e+03 2119.60 NA NA NA NULL
2014 Hra/Dept Of Social Services Maintenance Worker NA NA 705.79 1.764475e+02 0.000 18.00 4 0.000000e+00 0.00 NA NA NA NULL
2014 Hra/Dept Of Social Services Management Auditor 58657.94595 2.170344e+06 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 2.170344e+06 2.170344e+06 0.00 NULL
2014 Hra/Dept Of Social Services Mechanical Engineer 85410.66667 2.562320e+05 6466.06 2.155353e+03 0.000 115.50 3 0.000000e+00 0.00 2.626981e+05 2.562320e+05 6466.06 NULL
2014 Hra/Dept Of Social Services Medical Director 138097.00000 1.380970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.380970e+05 1.380970e+05 0.00 NULL
2014 Hra/Dept Of Social Services Medical Specialist 71180.00000 2.135400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.135400e+05 2.135400e+05 0.00 NULL
2014 Hra/Dept Of Social Services Motor Vehicle Operator 39995.00000 1.599800e+05 10176.35 2.544088e+03 873.665 325.25 4 8.736650e+02 3494.66 1.701564e+05 1.634747e+05 6681.69 NULL
2014 Hra/Dept Of Social Services Motor Vehicle Supervisor 51079.80000 2.553990e+05 33247.83 6.649566e+03 7742.160 780.50 5 6.649566e+03 33247.83 2.886468e+05 2.886468e+05 0.00 NULL
2014 Hra/Dept Of Social Services Office Machine Aide 31134.60870 7.160960e+05 6542.78 2.844687e+02 0.000 308.00 23 0.000000e+00 0.00 7.226388e+05 7.160960e+05 6542.78 NULL
2014 Hra/Dept Of Social Services Oiler NA NA 18657.84 3.731568e+03 2254.200 256.50 5 2.254200e+03 11271.00 NA NA NA NULL
2014 Hra/Dept Of Social Services Painter NA NA 1050.00 1.050000e+03 1050.000 0.00 1 1.050000e+03 1050.00 NA NA NA NULL
2014 Hra/Dept Of Social Services Paralegal Aide 39904.00000 8.379840e+05 17499.64 8.333162e+02 0.000 476.75 21 0.000000e+00 0.00 8.554836e+05 8.379840e+05 17499.64 NULL
2014 Hra/Dept Of Social Services Plumber NA NA 22148.85 2.214885e+03 2300.500 61.00 10 2.214885e+03 22148.85 NA NA NA NULL
2014 Hra/Dept Of Social Services Principal Administrative Associate - Lev 1 & 2 Non Supvr 49879.36456 7.402098e+07 2688142.02 1.811416e+03 0.000 78144.75 1484 0.000000e+00 0.00 7.670912e+07 7.402098e+07 2688142.02 NULL
2014 Hra/Dept Of Social Services Printing Press Operator NA NA 607.20 3.036000e+02 303.600 11.50 2 3.036000e+02 607.20 NA NA NA NULL
2014 Hra/Dept Of Social Services Procurement Analyst 51438.32353 1.748903e+06 10897.50 3.205147e+02 0.000 299.50 34 0.000000e+00 0.00 1.759800e+06 1.748903e+06 10897.50 NULL
2014 Hra/Dept Of Social Services Psychiatrist 120711.07753 1.810666e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.810666e+06 1.810666e+06 0.00 NULL
2014 Hra/Dept Of Social Services Real Property Manager 56777.00000 5.677700e+04 139.84 1.398400e+02 139.840 4.50 1 1.398400e+02 139.84 5.691684e+04 5.691684e+04 0.00 NULL
2014 Hra/Dept Of Social Services Research Assistant 49532.60000 2.476630e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.476630e+05 2.476630e+05 0.00 NULL
2014 Hra/Dept Of Social Services Safety Specialist 43700.00000 4.370000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.370000e+04 4.370000e+04 0.00 NULL
2014 Hra/Dept Of Social Services Secretary 35954.48889 1.617952e+06 61075.71 1.357238e+03 0.000 2378.50 45 0.000000e+00 0.00 1.679028e+06 1.617952e+06 61075.71 NULL
2014 Hra/Dept Of Social Services Secretary To The Commissioner 81338.00000 8.133800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.133800e+04 8.133800e+04 0.00 NULL
2014 Hra/Dept Of Social Services Senior Consultant 69854.80000 1.047822e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.047822e+06 1.047822e+06 0.00 NULL
2014 Hra/Dept Of Social Services Senior Stationary Engineer NA NA 34423.80 1.147460e+04 11737.870 432.50 3 1.147460e+04 34423.80 NA NA NA NULL
2014 Hra/Dept Of Social Services Sheet Metal Worker NA NA 7186.20 3.593100e+03 3593.100 73.75 2 3.593100e+03 7186.20 NA NA NA NULL
2014 Hra/Dept Of Social Services Social Worker 50396.40000 2.771802e+06 47474.66 8.631756e+02 0.000 1351.75 55 0.000000e+00 0.00 2.819277e+06 2.771802e+06 47474.66 NULL
2014 Hra/Dept Of Social Services Space Analyst 61749.16667 1.481980e+06 17343.15 7.226313e+02 0.000 332.00 24 0.000000e+00 0.00 1.499323e+06 1.481980e+06 17343.15 NULL
2014 Hra/Dept Of Social Services Special Assistant To The Human Resources Administrator 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2014 Hra/Dept Of Social Services Special Officer 36736.61728 2.975666e+06 100145.59 1.236365e+03 451.090 3885.50 81 4.510900e+02 36538.29 3.075812e+06 3.012204e+06 63607.30 NULL
2014 Hra/Dept Of Social Services Staff Analyst 58671.27439 9.622089e+06 119256.67 7.271748e+02 0.000 3273.50 164 0.000000e+00 0.00 9.741346e+06 9.622089e+06 119256.67 NULL
2014 Hra/Dept Of Social Services Staff Analyst Trainee 38025.33333 1.140760e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.140760e+05 1.140760e+05 0.00 NULL
2014 Hra/Dept Of Social Services Staff Nurse 66522.80769 1.729593e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 1.729593e+06 1.729593e+06 0.00 NULL
2014 Hra/Dept Of Social Services Stationary Engineer NA NA 31316.41 6.263282e+03 1623.930 427.25 5 1.623930e+03 8119.65 NA NA NA NULL
2014 Hra/Dept Of Social Services Steam Fitter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2014 Hra/Dept Of Social Services Stock Worker 33846.00000 2.030760e+05 22457.92 3.742987e+03 0.000 824.75 6 0.000000e+00 0.00 2.255339e+05 2.030760e+05 22457.92 NULL
2014 Hra/Dept Of Social Services Summer College Intern 1772.07975 3.544160e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.544160e+03 3.544160e+03 0.00 NULL
2014 Hra/Dept Of Social Services Summer Graduate Intern 3083.35250 6.166705e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.166705e+03 6.166705e+03 0.00 NULL
2014 Hra/Dept Of Social Services Superintendent Of Adult Institutions 77099.00000 7.709900e+04 18536.86 1.853686e+04 18536.860 341.00 1 1.853686e+04 18536.86 9.563586e+04 9.563586e+04 0.00 NULL
2014 Hra/Dept Of Social Services Supervising Computer Service Technician 62385.40000 7.486248e+05 13060.31 1.088359e+03 0.000 372.75 12 0.000000e+00 0.00 7.616851e+05 7.486248e+05 13060.31 NULL
2014 Hra/Dept Of Social Services Supervising Special Officer 49216.92593 2.657714e+06 91743.54 1.698954e+03 532.845 2740.00 54 5.328450e+02 28773.63 2.749458e+06 2.686488e+06 62969.91 NULL
2014 Hra/Dept Of Social Services Supervisor 66427.00000 6.642700e+04 326.53 3.265300e+02 326.530 0.00 1 3.265300e+02 326.53 6.675353e+04 6.675353e+04 0.00 NULL
2014 Hra/Dept Of Social Services Supervisor Carpenter NA NA 5599.97 2.799985e+03 2799.985 68.50 2 2.799985e+03 5599.97 NA NA NA NULL
2014 Hra/Dept Of Social Services Supervisor Electrician NA NA 38231.99 1.274400e+04 7536.680 407.50 3 7.536680e+03 22610.04 NA NA NA NULL
2014 Hra/Dept Of Social Services Supervisor I 49915.36948 2.485785e+07 507809.63 1.019698e+03 0.000 13650.00 498 0.000000e+00 0.00 2.536566e+07 2.485785e+07 507809.63 NULL
2014 Hra/Dept Of Social Services Supervisor I Social Work 55120.10000 1.653603e+06 25180.84 8.393613e+02 0.000 582.50 30 0.000000e+00 0.00 1.678784e+06 1.653603e+06 25180.84 NULL
2014 Hra/Dept Of Social Services Supervisor Ii 58706.23563 1.021488e+07 470689.45 2.705112e+03 89.835 11324.25 174 8.983500e+01 15631.29 1.068557e+07 1.023052e+07 455058.16 NULL
2014 Hra/Dept Of Social Services Supervisor Ii Social Work 67850.50000 2.714020e+05 8213.18 2.053295e+03 427.390 169.75 4 4.273900e+02 1709.56 2.796152e+05 2.731116e+05 6503.62 NULL
2014 Hra/Dept Of Social Services Supervisor Iii 64646.57143 4.072734e+06 104977.72 1.666313e+03 0.000 2377.25 63 0.000000e+00 0.00 4.177712e+06 4.072734e+06 104977.72 NULL
2014 Hra/Dept Of Social Services Supervisor Iii Social Work 70810.00000 4.956700e+05 15722.66 2.246094e+03 0.000 288.00 7 0.000000e+00 0.00 5.113927e+05 4.956700e+05 15722.66 NULL
2014 Hra/Dept Of Social Services Supervisor Of Electrical Installations & Maintenance 65698.00000 1.313960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.313960e+05 1.313960e+05 0.00 NULL
2014 Hra/Dept Of Social Services Supervisor Of Motor Transport 60315.00000 6.031500e+04 502.41 5.024100e+02 502.410 14.00 1 5.024100e+02 502.41 6.081741e+04 6.081741e+04 0.00 NULL
2014 Hra/Dept Of Social Services Supervisor Of Nurses 83473.14286 5.843120e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.843120e+05 5.843120e+05 0.00 NULL
2014 Hra/Dept Of Social Services Supervisor Of Office Machine Operations 39684.40909 8.730570e+05 32505.06 1.477503e+03 116.345 1292.75 22 1.163450e+02 2559.59 9.055621e+05 8.756166e+05 29945.47 NULL
2014 Hra/Dept Of Social Services Supervisor Of Stock Workers 45142.83333 2.708570e+05 408.42 6.807000e+01 0.000 12.50 6 0.000000e+00 0.00 2.712654e+05 2.708570e+05 408.42 NULL
2014 Hra/Dept Of Social Services Supervisor Plumber NA NA 19743.57 9.871785e+03 9871.785 84.00 2 9.871785e+03 19743.57 NA NA NA NULL
2014 Hra/Dept Of Social Services Telecommunications Associate 60350.42857 4.224530e+05 2572.21 3.674586e+02 0.000 102.50 7 0.000000e+00 0.00 4.250252e+05 4.224530e+05 2572.21 NULL
2014 Hra/Dept Of Social Services Title Examiner 38750.00000 3.875000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.875000e+04 3.875000e+04 0.00 NULL
2014 Human Rights Commission *Attorney At Law 76011.50000 1.520230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.520230e+05 1.520230e+05 0.00 NULL
2014 Human Rights Commission Administrative Public Information Specialist 105340.00000 1.053400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.053400e+05 1.053400e+05 0.00 NULL
2014 Human Rights Commission Administrative Staff Analyst 84699.00000 8.469900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.469900e+04 8.469900e+04 0.00 NULL
2014 Human Rights Commission Agency Attorney 56067.23000 8.970757e+05 637.30 3.983125e+01 0.000 25.50 16 0.000000e+00 0.00 8.977130e+05 8.970757e+05 637.30 NULL
2014 Human Rights Commission Associate Human Rights Specialist 64283.33333 7.714000e+05 1407.39 1.172825e+02 58.315 55.50 12 5.831500e+01 699.78 7.728074e+05 7.720998e+05 707.61 NULL
2014 Human Rights Commission Associate Staff Analyst 80151.00000 8.015100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.015100e+04 8.015100e+04 0.00 NULL
2014 Human Rights Commission Chairman Commission On Human Rights 192198.00000 1.921980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.921980e+05 1.921980e+05 0.00 NULL
2014 Human Rights Commission Clerical Associate Most Mayoral Ag 39641.00000 3.964100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.964100e+04 3.964100e+04 0.00 NULL
2014 Human Rights Commission College Aide 1724.37500 6.897500e+03 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.897500e+03 6.897500e+03 0.00 NULL
2014 Human Rights Commission College Aide - Assignment Levels Ii And Iii 1935.22500 1.935225e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.935225e+03 1.935225e+03 0.00 NULL
2014 Human Rights Commission Community Assistant 31534.00000 3.153400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.153400e+04 3.153400e+04 0.00 NULL
2014 Human Rights Commission Community Associate 37169.00000 3.716900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.716900e+04 3.716900e+04 0.00 NULL
2014 Human Rights Commission Computer Associate 49676.00000 4.967600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.967600e+04 4.967600e+04 0.00 NULL
2014 Human Rights Commission Computer Operations Manager 105830.00000 1.058300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.058300e+05 1.058300e+05 0.00 NULL
2014 Human Rights Commission Dep Commissioner For Community Relations 144419.00000 1.444190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.444190e+05 1.444190e+05 0.00 NULL
2014 Human Rights Commission Deputy Commissioner For Law Enforcement 182227.00000 1.822270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.822270e+05 1.822270e+05 0.00 NULL
2014 Human Rights Commission Executive Director 108160.00000 1.081600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081600e+05 1.081600e+05 0.00 NULL
2014 Human Rights Commission Graphic Artist 22910.82000 2.291082e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.291082e+04 2.291082e+04 0.00 NULL
2014 Human Rights Commission Human Rights Specialist 47578.71429 6.661020e+05 870.92 6.220857e+01 0.000 30.00 14 0.000000e+00 0.00 6.669729e+05 6.661020e+05 870.92 NULL
2014 Human Rights Commission Principal Administrative Associate - Lev 1 & 2 Non Supvr 56634.60000 2.831730e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.831730e+05 2.831730e+05 0.00 NULL
2014 Human Rights Commission Prinicipal Human Rights Specialist 68040.75000 2.721630e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.721630e+05 2.721630e+05 0.00 NULL
2014 Human Rights Commission Secretary 39730.33333 1.191910e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.191910e+05 1.191910e+05 0.00 NULL
2014 Human Rights Commission Supervising Human Rights Specialist 62115.00000 1.242300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.242300e+05 1.242300e+05 0.00 NULL
2014 Hunter College High School ?Information Systems Aide 25451.29094 1.018052e+05 20.06 5.015000e+00 0.000 0.75 4 0.000000e+00 0.00 1.018252e+05 1.018052e+05 20.06 NULL
2014 Hunter College High School Administrator 173805.00000 3.476100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.476100e+05 3.476100e+05 0.00 NULL
2014 Hunter College High School Assistant Principal 105689.54545 1.162585e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.162585e+06 1.162585e+06 0.00 NULL
2014 Hunter College High School Assistant Teacher 21524.36364 4.735360e+05 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 4.735360e+05 4.735360e+05 0.00 NULL
2014 Hunter College High School Assistant To Heo 50915.00000 2.036600e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.036600e+05 2.036600e+05 0.00 NULL
2014 Hunter College High School Coach NA NA 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 NA NA NA NULL
2014 Hunter College High School College Accountant 42147.00000 4.214700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.214700e+04 4.214700e+04 0.00 NULL
2014 Hunter College High School College Assistant 8687.90537 2.345734e+05 882.00 3.266667e+01 0.000 42.00 27 0.000000e+00 0.00 2.354554e+05 2.345734e+05 882.00 NULL
2014 Hunter College High School College Lab Technician 54848.00000 5.484800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.484800e+04 5.484800e+04 0.00 NULL
2014 Hunter College High School Computer Systems Manager 88814.00000 8.881400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.881400e+04 8.881400e+04 0.00 NULL
2014 Hunter College High School Cuny Administrator Assistant 45344.75000 1.813790e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.813790e+05 1.813790e+05 0.00 NULL
2014 Hunter College High School Cuny Custodial Assistant 29962.00000 8.988600e+04 6066.92 2.022307e+03 1836.760 289.50 3 1.836760e+03 5510.28 9.595292e+04 9.539628e+04 556.64 NULL
2014 Hunter College High School Cuny Office Assistant 33327.80000 3.332780e+05 1025.29 1.025290e+02 0.000 44.75 10 0.000000e+00 0.00 3.343033e+05 3.332780e+05 1025.29 NULL
2014 Hunter College High School Education & Vocat Counselor 77929.14286 5.455040e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.455040e+05 5.455040e+05 0.00 NULL
2014 Hunter College High School Hccs Sr College Lab Tech 58530.00000 1.170600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.170600e+05 1.170600e+05 0.00 NULL
2014 Hunter College High School High School Elem Counselor 80045.00000 8.004500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.004500e+04 8.004500e+04 0.00 NULL
2014 Hunter College High School Higher Education Assistant 69603.33333 2.088100e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.088100e+05 2.088100e+05 0.00 NULL
2014 Hunter College High School Higher Education Officer 111217.50000 2.224350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.224350e+05 2.224350e+05 0.00 NULL
2014 Hunter College High School It Assistant 46528.00000 4.652800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.652800e+04 4.652800e+04 0.00 NULL
2014 Hunter College High School It Associate 60417.00000 6.041700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.041700e+04 6.041700e+04 0.00 NULL
2014 Hunter College High School It Senior Associate 76389.00000 1.527780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.527780e+05 1.527780e+05 0.00 NULL
2014 Hunter College High School Oiler 96549.00000 9.654900e+04 32183.04 3.218304e+04 32183.040 476.00 1 3.218304e+04 32183.04 1.287320e+05 1.287320e+05 0.00 NULL
2014 Hunter College High School Principal 145493.00000 1.454930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.454930e+05 1.454930e+05 0.00 NULL
2014 Hunter College High School Substitute Teacher 25999.82633 2.547983e+06 0.00 0.000000e+00 0.000 0.00 98 0.000000e+00 0.00 2.547983e+06 2.547983e+06 0.00 NULL
2014 Hunter College High School Teacher NA NA 0.00 0.000000e+00 0.000 0.00 93 0.000000e+00 0.00 NA NA NA NULL
2014 Hunter College High School Teacher Of Library 68901.00000 6.890100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.890100e+04 6.890100e+04 0.00 NULL
2014 Independent Budget Office Adm Manager-Non-Mgrl From M1/M2 64411.00000 6.441100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.441100e+04 6.441100e+04 0.00 NULL
2014 Independent Budget Office Administrative Staff Analyst 104725.00000 3.141750e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.141750e+05 3.141750e+05 0.00 NULL
2014 Independent Budget Office Agency Chief Contracting Officer 94000.00000 9.400000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.400000e+04 9.400000e+04 0.00 NULL
2014 Independent Budget Office Assistant Budget Analyst 46966.66667 1.409000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.409000e+05 1.409000e+05 0.00 NULL
2014 Independent Budget Office Budget Analyst 87786.87940 2.458033e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 2.458033e+06 2.458033e+06 0.00 NULL
2014 Independent Budget Office Director Of Independent Budget Office 184593.00000 1.845930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.845930e+05 1.845930e+05 0.00 NULL
2014 Independent Budget Office Executive Agency Counsel 55030.84950 5.503085e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.503085e+04 5.503085e+04 0.00 NULL
2014 Independent Budget Office Principal Administrative Associate - Lev 1 & 2 Non Supvr 73071.00000 7.307100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.307100e+04 7.307100e+04 0.00 NULL
2014 Landmarks Preservation Comm *Attorney At Law 77015.00000 7.701500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.701500e+04 7.701500e+04 0.00 NULL
2014 Landmarks Preservation Comm Administrative Landmarks Preservationist 84224.46344 6.737957e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.737957e+05 6.737957e+05 0.00 NULL
2014 Landmarks Preservation Comm Administrative Public Information Specialist 90743.00000 9.074300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.074300e+04 9.074300e+04 0.00 NULL
2014 Landmarks Preservation Comm Administrative Staff Analyst 60398.00000 6.039800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.039800e+04 6.039800e+04 0.00 NULL
2014 Landmarks Preservation Comm Associate Landmarks Preservationist 70765.00000 7.076500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.076500e+04 7.076500e+04 0.00 NULL
2014 Landmarks Preservation Comm Associate Staff Analyst 77899.00000 7.789900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.789900e+04 7.789900e+04 0.00 NULL
2014 Landmarks Preservation Comm Chair-Landmarks Preservation Commission 192198.00000 1.921980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.921980e+05 1.921980e+05 0.00 NULL
2014 Landmarks Preservation Comm Clerical Associate Most Mayoral Ag 43130.66667 1.293920e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.293920e+05 1.293920e+05 0.00 NULL
2014 Landmarks Preservation Comm Community Associate 43989.00000 8.797800e+04 25.17 1.258500e+01 12.585 1.00 2 1.258500e+01 25.17 8.800317e+04 8.800317e+04 0.00 NULL
2014 Landmarks Preservation Comm Computer Systems Manager 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2014 Landmarks Preservation Comm Counsel 130102.00000 1.301020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.301020e+05 1.301020e+05 0.00 NULL
2014 Landmarks Preservation Comm Director Urban Archaeology - Lpc 74405.00000 7.440500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.440500e+04 7.440500e+04 0.00 NULL
2014 Landmarks Preservation Comm Executive Director 124384.00000 1.243840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.243840e+05 1.243840e+05 0.00 NULL
2014 Landmarks Preservation Comm Landmarks Preservationist 53271.65460 2.130866e+06 553.86 1.384650e+01 0.000 0.00 40 0.000000e+00 0.00 2.131420e+06 2.130866e+06 553.86 NULL
2014 Landmarks Preservation Comm Legal Secretarial Assistant Al 2,3,4 Only 41073.00000 4.107300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.107300e+04 4.107300e+04 0.00 NULL
2014 Landmarks Preservation Comm Principal Administrative Associate - Lev 1 & 2 Non Supvr 55266.00000 5.526600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.526600e+04 5.526600e+04 0.00 NULL
2014 Landmarks Preservation Comm Public Relations Adviser 57325.00000 1.146500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.146500e+05 1.146500e+05 0.00 NULL
2014 Landmarks Preservation Comm Secretary To The Chair, Landmarks Preservation Commission 72519.00000 7.251900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.251900e+04 7.251900e+04 0.00 NULL
2014 Landmarks Preservation Comm Staff Analyst 53446.00000 5.344600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.344600e+04 5.344600e+04 0.00 NULL
2014 Landmarks Preservation Comm Urban Archeologist 33611.29805 6.722260e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.722260e+04 6.722260e+04 0.00 NULL
2014 Law Department *Attorney At Law 79718.66667 2.391560e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.391560e+05 2.391560e+05 0.00 NULL
2014 Law Department *Certified Applications Developer 94680.00000 9.468000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.468000e+04 9.468000e+04 0.00 NULL
2014 Law Department Accountant 72475.00000 7.247500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.247500e+04 7.247500e+04 0.00 NULL
2014 Law Department Administrative Accountant 100993.50000 2.019870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.019870e+05 2.019870e+05 0.00 NULL
2014 Law Department Administrative Public Information Specialist 98821.33333 2.964640e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.964640e+05 2.964640e+05 0.00 NULL
2014 Law Department Administrative Staff Analyst 102569.00000 8.205520e+05 7125.47 8.906838e+02 0.000 111.25 8 0.000000e+00 0.00 8.276775e+05 8.205520e+05 7125.47 NULL
2014 Law Department Assistant Corporation Counsel 92587.68004 7.351462e+07 0.00 0.000000e+00 0.000 0.00 794 0.000000e+00 0.00 7.351462e+07 7.351462e+07 0.00 NULL
2014 Law Department Associate Public Information Specialist 45000.00000 4.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.500000e+04 4.500000e+04 0.00 NULL
2014 Law Department Associate Staff Analyst 71176.29304 8.541155e+05 29163.12 2.430260e+03 0.000 564.50 12 0.000000e+00 0.00 8.832786e+05 8.541155e+05 29163.12 NULL
2014 Law Department Bookkeeper 42981.00000 3.008670e+05 7013.94 1.001991e+03 23.020 203.75 7 2.302000e+01 161.14 3.078809e+05 3.010281e+05 6852.80 NULL
2014 Law Department Certified It Administrator 90666.00000 9.066600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.066600e+04 9.066600e+04 0.00 NULL
2014 Law Department City Assessor 76010.00000 3.040400e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.040400e+05 3.040400e+05 0.00 NULL
2014 Law Department City Custodial Assistant 35438.00000 7.087600e+04 45738.73 2.286937e+04 22869.365 1693.00 2 2.286937e+04 45738.73 1.166147e+05 1.166147e+05 0.00 NULL
2014 Law Department Claim Specialist 41040.47716 3.119076e+06 125597.11 1.652594e+03 0.000 3517.75 76 0.000000e+00 0.00 3.244673e+06 3.119076e+06 125597.11 NULL
2014 Law Department Clerical Associate Most Mayoral Ag 29831.97517 6.533203e+06 267601.16 1.221923e+03 0.000 10163.75 219 0.000000e+00 0.00 6.800804e+06 6.533203e+06 267601.16 NULL
2014 Law Department College Aide 3586.11286 1.147556e+05 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 1.147556e+05 1.147556e+05 0.00 NULL
2014 Law Department College Aide - Assignment Levels Ii And Iii 10838.40750 4.335363e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.335363e+04 4.335363e+04 0.00 NULL
2014 Law Department Community Coordinator 42517.69655 8.503539e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.503539e+04 8.503539e+04 0.00 NULL
2014 Law Department Computer Aide-Non-Spvr 29835.93778 2.685234e+05 5139.10 5.710111e+02 0.000 147.50 9 0.000000e+00 0.00 2.736625e+05 2.685234e+05 5139.10 NULL
2014 Law Department Computer Associate 64317.46973 8.361271e+05 375.32 2.887077e+01 0.000 12.00 13 0.000000e+00 0.00 8.365024e+05 8.361271e+05 375.32 NULL
2014 Law Department Computer Operations Manager 97344.00000 9.734400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.734400e+04 9.734400e+04 0.00 NULL
2014 Law Department Computer Service Technician 41140.79060 2.057040e+05 31393.87 6.278774e+03 8312.130 1053.00 5 6.278774e+03 31393.87 2.370978e+05 2.370978e+05 0.00 NULL
2014 Law Department Computer Specialist 88894.33333 5.333660e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.333660e+05 5.333660e+05 0.00 NULL
2014 Law Department Computer Systems Manager 129842.66667 7.790560e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.790560e+05 7.790560e+05 0.00 NULL
2014 Law Department Corporation Counsel 205180.00000 4.103600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.103600e+05 4.103600e+05 0.00 NULL
2014 Law Department Custodian 46931.06696 2.815864e+05 119177.70 1.986295e+04 22076.615 3219.75 6 1.986295e+04 119177.70 4.007641e+05 4.007641e+05 0.00 NULL
2014 Law Department Department Librarian 34193.81000 3.419381e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.419381e+04 3.419381e+04 0.00 NULL
2014 Law Department Deputy Director Of Admin Worker’s Comp Benefits 88542.00000 8.854200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.854200e+04 8.854200e+04 0.00 NULL
2014 Law Department Deputy Director Of Administration 159580.00000 1.595800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.595800e+05 1.595800e+05 0.00 NULL
2014 Law Department Deputy Operation Support Manager 112064.50000 2.241290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.241290e+05 2.241290e+05 0.00 NULL
2014 Law Department Dir Of Administration, Worker’s Comp Benefits 105875.00000 1.058750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.058750e+05 1.058750e+05 0.00 NULL
2014 Law Department Director Of Administration 159969.00000 1.599690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.599690e+05 1.599690e+05 0.00 NULL
2014 Law Department Field Investigation Specialist 49016.00000 4.901600e+04 268.73 2.687300e+02 268.730 0.00 1 2.687300e+02 268.73 4.928473e+04 4.928473e+04 0.00 NULL
2014 Law Department First Assistant Corporation Counsel 205116.00000 2.051160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.051160e+05 2.051160e+05 0.00 NULL
2014 Law Department Graphic Artist 23638.44000 2.363844e+04 21.04 2.104000e+01 21.040 1.00 1 2.104000e+01 21.04 2.365948e+04 2.365948e+04 0.00 NULL
2014 Law Department Legal Secretarial Assistant - Al 1 Only 37256.00000 1.117680e+05 2780.18 9.267267e+02 964.300 72.50 3 9.267267e+02 2780.18 1.145482e+05 1.145482e+05 0.00 NULL
2014 Law Department Legal Secretarial Assistant Al 2,3,4 Only 47446.06333 1.423382e+06 85700.89 2.856696e+03 181.575 2436.75 30 1.815750e+02 5447.25 1.509083e+06 1.428829e+06 80253.64 NULL
2014 Law Department Management Auditor 54312.00000 5.431200e+04 7155.53 7.155530e+03 7155.530 170.50 1 7.155530e+03 7155.53 6.146753e+04 6.146753e+04 0.00 NULL
2014 Law Department Medicolegal Analyst 63512.50000 1.270250e+05 15717.06 7.858530e+03 7858.530 380.25 2 7.858530e+03 15717.06 1.427421e+05 1.427421e+05 0.00 NULL
2014 Law Department Motor Vehicle Operator 39971.55333 2.398293e+05 39023.32 6.503887e+03 2477.815 1353.50 6 2.477815e+03 14866.89 2.788526e+05 2.546962e+05 24156.43 NULL
2014 Law Department Office Machine Aide 36442.00000 3.644200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.644200e+04 3.644200e+04 0.00 NULL
2014 Law Department Paralegal Aide 41260.67440 1.072778e+07 549581.48 2.113775e+03 0.000 16937.25 260 0.000000e+00 0.00 1.127736e+07 1.072778e+07 549581.48 NULL
2014 Law Department Principal Administrative Associate - Lev 1 & 2 Non Supvr 52163.42105 9.911050e+05 112600.61 5.926348e+03 1196.520 2773.25 19 1.196520e+03 22733.88 1.103706e+06 1.013839e+06 89866.73 NULL
2014 Law Department Principal Title Examiner 59394.40000 2.969720e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.969720e+05 2.969720e+05 0.00 NULL
2014 Law Department Procurement Analyst 61584.50000 1.231690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.231690e+05 1.231690e+05 0.00 NULL
2014 Law Department Public Records Aide 34308.86800 3.430887e+05 38286.85 3.828685e+03 1320.430 1396.25 10 1.320430e+03 13204.30 3.813755e+05 3.562930e+05 25082.55 NULL
2014 Law Department Research Assistant 49048.00000 4.904800e+04 9640.73 9.640730e+03 9640.730 248.50 1 9.640730e+03 9640.73 5.868873e+04 5.868873e+04 0.00 NULL
2014 Law Department Secretary 38622.14286 2.703550e+05 2983.93 4.262757e+02 0.000 83.25 7 0.000000e+00 0.00 2.733389e+05 2.703550e+05 2983.93 NULL
2014 Law Department Secretary To The Corporation Counsel 85700.00000 8.570000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.570000e+04 8.570000e+04 0.00 NULL
2014 Law Department Secretary To The First Assistant Corporation Counsel 64313.00000 6.431300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.431300e+04 6.431300e+04 0.00 NULL
2014 Law Department Senior Student Legal Specialist 42690.00000 8.538000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.538000e+04 8.538000e+04 0.00 NULL
2014 Law Department Senior Title Examiner 42542.00000 4.254200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.254200e+04 4.254200e+04 0.00 NULL
2014 Law Department Staff Analyst 57902.60000 5.211234e+05 2222.92 2.469911e+02 136.250 36.50 9 1.362500e+02 1226.25 5.233463e+05 5.223497e+05 996.67 NULL
2014 Law Department Stenographer To The Corporation Counsel 60495.00000 6.049500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.049500e+04 6.049500e+04 0.00 NULL
2014 Law Department Student Legal Specialist 32156.55333 1.929393e+05 1146.40 1.910667e+02 0.000 44.25 6 0.000000e+00 0.00 1.940857e+05 1.929393e+05 1146.40 NULL
2014 Law Department Summer Graduate Intern 2209.87577 1.723703e+05 0.00 0.000000e+00 0.000 0.00 78 0.000000e+00 0.00 1.723703e+05 1.723703e+05 0.00 NULL
2014 Law Department Supervising Computer Service Technician 66478.50000 5.318280e+05 74735.09 9.341886e+03 7316.960 1598.50 8 7.316960e+03 58535.68 6.065631e+05 5.903637e+05 16199.41 NULL
2014 Law Department Supervisor Of Office Machine Operations 45752.00000 2.745120e+05 26350.78 4.391797e+03 2837.240 819.75 6 2.837240e+03 17023.44 3.008628e+05 2.915354e+05 9327.34 NULL
2014 Law Department Worker’s Compensation Benefits Examiner 39750.78582 2.782555e+06 109962.72 1.570896e+03 0.000 3553.75 70 0.000000e+00 0.00 2.892518e+06 2.782555e+06 109962.72 NULL
2014 Manhattan Community Board #1 Administrative Staff Analyst 16137.92000 3.227584e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.227584e+04 3.227584e+04 0.00 NULL
2014 Manhattan Community Board #1 Community Associate 33000.00000 6.600000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.600000e+04 6.600000e+04 0.00 NULL
2014 Manhattan Community Board #1 Community Coordinator 56254.00000 5.625400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.625400e+04 5.625400e+04 0.00 NULL
2014 Manhattan Community Board #1 District Manager 81120.00000 8.112000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.112000e+04 8.112000e+04 0.00 NULL
2014 Manhattan Community Board #10 Community Associate 32448.00000 3.244800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.244800e+04 3.244800e+04 0.00 NULL
2014 Manhattan Community Board #10 District Manager 75250.00000 1.505000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.505000e+05 1.505000e+05 0.00 NULL
2014 Manhattan Community Board #11 Assistant District Manager 46000.00000 4.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.600000e+04 4.600000e+04 0.00 NULL
2014 Manhattan Community Board #11 Community Associate 41370.00000 4.137000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.137000e+04 4.137000e+04 0.00 NULL
2014 Manhattan Community Board #11 District Manager 79376.00000 7.937600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.937600e+04 7.937600e+04 0.00 NULL
2014 Manhattan Community Board #12 Community Assistant 34501.00000 3.450100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.450100e+04 3.450100e+04 0.00 NULL
2014 Manhattan Community Board #12 Community Coordinator 55671.00000 5.567100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.567100e+04 5.567100e+04 0.00 NULL
2014 Manhattan Community Board #12 District Manager 79712.00000 7.971200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.971200e+04 7.971200e+04 0.00 NULL
2014 Manhattan Community Board #2 Community Assistant 31000.00000 6.200000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.200000e+04 6.200000e+04 0.00 NULL
2014 Manhattan Community Board #2 Community Associate 37331.00000 3.733100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.733100e+04 3.733100e+04 0.00 NULL
2014 Manhattan Community Board #2 Community Coordinator 52457.00000 5.245700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.245700e+04 5.245700e+04 0.00 NULL
2014 Manhattan Community Board #2 District Manager 75100.00000 7.510000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.510000e+04 7.510000e+04 0.00 NULL
2014 Manhattan Community Board #3 Assistant District Manager 46500.00000 4.650000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.650000e+04 4.650000e+04 0.00 NULL
2014 Manhattan Community Board #3 Community Associate 37812.00000 7.562400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.562400e+04 7.562400e+04 0.00 NULL
2014 Manhattan Community Board #3 District Manager 72778.52000 7.277852e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.277852e+04 7.277852e+04 0.00 NULL
2014 Manhattan Community Board #4 Community Associate 45000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2014 Manhattan Community Board #4 District Manager 82222.26000 8.222226e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.222226e+04 8.222226e+04 0.00 NULL
2014 Manhattan Community Board #5 Assistant District Manager 53474.30000 5.347430e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.347430e+04 5.347430e+04 0.00 NULL
2014 Manhattan Community Board #5 Community Associate 39000.00000 7.800000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.800000e+04 7.800000e+04 0.00 NULL
2014 Manhattan Community Board #5 District Manager 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2014 Manhattan Community Board #6 Community Assistant 33000.00000 3.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.300000e+04 3.300000e+04 0.00 NULL
2014 Manhattan Community Board #6 Community Associate 46304.50000 9.260900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.260900e+04 9.260900e+04 0.00 NULL
2014 Manhattan Community Board #6 District Manager 91460.50000 1.829210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.829210e+05 1.829210e+05 0.00 NULL
2014 Manhattan Community Board #7 Adm Manager-Non-Mgrl From M1/M2 63222.76000 6.322276e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.322276e+04 6.322276e+04 0.00 NULL
2014 Manhattan Community Board #7 Community Associate 33274.00000 3.327400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.327400e+04 3.327400e+04 0.00 NULL
2014 Manhattan Community Board #7 District Manager 87224.55000 8.722455e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.722455e+04 8.722455e+04 0.00 NULL
2014 Manhattan Community Board #8 Community Assistant 30000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2014 Manhattan Community Board #8 Community Associate 38330.00000 7.666000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.666000e+04 7.666000e+04 0.00 NULL
2014 Manhattan Community Board #8 District Manager 67500.00000 6.750000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.750000e+04 6.750000e+04 0.00 NULL
2014 Manhattan Community Board #9 Community Assistant 32523.90000 6.504780e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.504780e+04 6.504780e+04 0.00 NULL
2014 Manhattan Community Board #9 District Manager 80900.00000 8.090000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.090000e+04 8.090000e+04 0.00 NULL
2014 Municipal Water Fin Authority Budget Analyst 80938.66667 1.214080e+06 5124.72 3.416480e+02 0.000 161.00 15 0.000000e+00 0.00 1.219205e+06 1.214080e+06 5124.72 NULL
2014 Municipal Water Fin Authority Statistical Secretary 57061.00000 5.706100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.706100e+04 5.706100e+04 0.00 NULL
2014 Nyc Employees Retirement Sys Accountant 59178.08333 7.101370e+05 89068.99 7.422416e+03 6563.495 1856.50 12 6.563495e+03 78761.94 7.992060e+05 7.888989e+05 10307.05 NULL
2014 Nyc Employees Retirement Sys Administrative Accountant 119333.00000 1.193330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.193330e+05 1.193330e+05 0.00 NULL
2014 Nyc Employees Retirement Sys Administrative Graphic Artist 85987.00000 8.598700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.598700e+04 8.598700e+04 0.00 NULL
2014 Nyc Employees Retirement Sys Administrative Management Auditor 115636.00000 1.156360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.156360e+05 1.156360e+05 0.00 NULL
2014 Nyc Employees Retirement Sys Administrative Public Information Specialist 115559.33333 3.466780e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.466780e+05 3.466780e+05 0.00 NULL
2014 Nyc Employees Retirement Sys Administrative Retirement Benefits Specialist 100109.36364 2.202406e+06 3499.18 1.590536e+02 0.000 48.25 22 0.000000e+00 0.00 2.205905e+06 2.202406e+06 3499.18 NULL
2014 Nyc Employees Retirement Sys Administrative Staff Analyst 111360.09091 1.224961e+06 12327.32 1.120665e+03 0.000 287.25 11 0.000000e+00 0.00 1.237288e+06 1.224961e+06 12327.32 NULL
2014 Nyc Employees Retirement Sys Administrative Supervisor Of Building Maintenance 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2014 Nyc Employees Retirement Sys Agency Attorney 80278.75000 3.211150e+05 5480.71 1.370178e+03 0.000 98.50 4 0.000000e+00 0.00 3.265957e+05 3.211150e+05 5480.71 NULL
2014 Nyc Employees Retirement Sys Assistant Retirement Benefits Examiner 42653.98876 3.796205e+06 293454.98 3.297247e+03 1211.460 10066.00 89 1.211460e+03 107819.94 4.089660e+06 3.904025e+06 185635.04 NULL
2014 Nyc Employees Retirement Sys Associate Public Information Specialist 53496.00000 5.349600e+04 9292.13 9.292130e+03 9292.130 310.00 1 9.292130e+03 9292.13 6.278813e+04 6.278813e+04 0.00 NULL
2014 Nyc Employees Retirement Sys Associate Retirement Benefits Examiner 54012.50000 5.509275e+06 659107.28 6.461836e+03 3772.165 16548.00 102 3.772165e+03 384760.83 6.168382e+06 5.894036e+06 274346.45 NULL
2014 Nyc Employees Retirement Sys Associate Staff Analyst 91739.33333 2.752180e+05 4807.46 1.602487e+03 0.000 78.75 3 0.000000e+00 0.00 2.800255e+05 2.752180e+05 4807.46 NULL
2014 Nyc Employees Retirement Sys Bookkeeper 38001.50000 7.600300e+04 4899.54 2.449770e+03 2449.770 255.25 2 2.449770e+03 4899.54 8.090254e+04 8.090254e+04 0.00 NULL
2014 Nyc Employees Retirement Sys Certified It Administrator 86458.91667 1.037507e+06 33408.24 2.784020e+03 313.010 544.00 12 3.130100e+02 3756.12 1.070915e+06 1.041263e+06 29652.12 NULL
2014 Nyc Employees Retirement Sys Certified It Developer 85625.00000 2.568750e+05 5492.70 1.830900e+03 96.280 92.75 3 9.628000e+01 288.84 2.623677e+05 2.571638e+05 5203.86 NULL
2014 Nyc Employees Retirement Sys Clerical Aide 28588.00000 5.717600e+04 6581.55 3.290775e+03 3290.775 319.50 2 3.290775e+03 6581.55 6.375755e+04 6.375755e+04 0.00 NULL
2014 Nyc Employees Retirement Sys Clerical Associate Most Mayoral Ag 37178.17647 1.896087e+06 138585.91 2.717371e+03 828.100 5653.75 51 8.281000e+02 42233.10 2.034673e+06 1.938320e+06 96352.81 NULL
2014 Nyc Employees Retirement Sys Community Assistant 30138.33333 9.041500e+04 1864.34 6.214467e+02 724.000 148.00 3 6.214467e+02 1864.34 9.227934e+04 9.227934e+04 0.00 NULL
2014 Nyc Employees Retirement Sys Computer Aide-Non-Spvr 44739.00000 4.473900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.473900e+04 4.473900e+04 0.00 NULL
2014 Nyc Employees Retirement Sys Computer Associate 72991.07143 1.021875e+06 12410.00 8.864286e+02 0.000 252.50 14 0.000000e+00 0.00 1.034285e+06 1.021875e+06 12410.00 NULL
2014 Nyc Employees Retirement Sys Computer Programmer Analyst 65426.00000 1.308520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.308520e+05 1.308520e+05 0.00 NULL
2014 Nyc Employees Retirement Sys Computer Service Technician 39747.00000 3.974700e+04 1819.86 1.819860e+03 1819.860 71.75 1 1.819860e+03 1819.86 4.156686e+04 4.156686e+04 0.00 NULL
2014 Nyc Employees Retirement Sys Computer Specialist 90596.84615 1.177759e+06 7312.46 5.624969e+02 0.000 128.00 13 0.000000e+00 0.00 1.185071e+06 1.177759e+06 7312.46 NULL
2014 Nyc Employees Retirement Sys Computer Systems Manager 126972.92308 1.650648e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.650648e+06 1.650648e+06 0.00 NULL
2014 Nyc Employees Retirement Sys Customer Information Representative Ma L 1549 26816.62146 4.826992e+05 9154.20 5.085667e+02 16.355 531.00 18 1.635500e+01 294.39 4.918534e+05 4.829936e+05 8859.81 NULL
2014 Nyc Employees Retirement Sys Deputy Director 166633.00000 1.666330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.666330e+05 1.666330e+05 0.00 NULL
2014 Nyc Employees Retirement Sys Deputy Executive Director 178161.00000 1.781610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.781610e+05 1.781610e+05 0.00 NULL
2014 Nyc Employees Retirement Sys Executive Agency Counsel 133167.50000 2.663350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.663350e+05 2.663350e+05 0.00 NULL
2014 Nyc Employees Retirement Sys Executive Director 205178.00000 2.051780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.051780e+05 2.051780e+05 0.00 NULL
2014 Nyc Employees Retirement Sys Management Auditor 53725.33333 1.611760e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.611760e+05 1.611760e+05 0.00 NULL
2014 Nyc Employees Retirement Sys Management Auditor Trainee 44048.00000 4.404800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.404800e+04 4.404800e+04 0.00 NULL
2014 Nyc Employees Retirement Sys Motor Vehicle Operator 5336.83500 5.336835e+03 791.21 7.912100e+02 791.210 63.50 1 7.912100e+02 791.21 6.128045e+03 6.128045e+03 0.00 NULL
2014 Nyc Employees Retirement Sys Office Machine Aide 10511.27516 4.204510e+05 12725.08 3.181270e+02 129.375 645.75 40 1.293750e+02 5175.00 4.331761e+05 4.256260e+05 7550.08 NULL
2014 Nyc Employees Retirement Sys Principal Administrative Associate - Lev 1 & 2 Non Supvr 59859.00000 1.017603e+06 65825.36 3.872080e+03 2686.070 1688.00 17 2.686070e+03 45663.19 1.083428e+06 1.063266e+06 20162.17 NULL
2014 Nyc Employees Retirement Sys Staff Analyst 61122.00000 6.112200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.112200e+04 6.112200e+04 0.00 NULL
2014 Nyc Employees Retirement Sys Supervising Computer Service Technician 63101.33333 1.893040e+05 8538.39 2.846130e+03 2474.100 175.25 3 2.474100e+03 7422.30 1.978424e+05 1.967263e+05 1116.09 NULL
2014 Nyc Employees Retirement Sys Telecommunications Associate 70592.50000 1.411850e+05 1508.42 7.542100e+02 754.210 37.25 2 7.542100e+02 1508.42 1.426934e+05 1.426934e+05 0.00 NULL
2014 Nyc Housing Authority *Administrative Attorney 114570.00000 1.145700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.145700e+05 1.145700e+05 0.00 NULL
2014 Nyc Housing Authority *Attorney At Law 77015.00000 6.161200e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.161200e+05 6.161200e+05 0.00 NULL
2014 Nyc Housing Authority *Certified Local Area Network Administrator 90923.33333 2.727700e+05 9635.55 3.211850e+03 2100.920 164.25 3 2.100920e+03 6302.76 2.824055e+05 2.790728e+05 3332.79 NULL
2014 Nyc Housing Authority *Certified Wide Area Network Administrator 101238.00000 1.012380e+05 2532.32 2.532320e+03 2532.320 32.50 1 2.532320e+03 2532.32 1.037703e+05 1.037703e+05 0.00 NULL
2014 Nyc Housing Authority *Housing Caretaker 39019.00000 2.575254e+06 658159.33 9.972111e+03 9260.245 20660.75 66 9.260245e+03 611176.17 3.233413e+06 3.186430e+06 46983.16 NULL
2014 Nyc Housing Authority *Procurment Analyst Level Iii, Oj 67322.00000 6.732200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.732200e+04 6.732200e+04 0.00 NULL
2014 Nyc Housing Authority Accountant 52586.89796 2.576758e+06 3191.25 6.512755e+01 0.000 107.25 49 0.000000e+00 0.00 2.579949e+06 2.576758e+06 3191.25 NULL
2014 Nyc Housing Authority Adm Manager-Non-Mgrl From M1/M2 64116.92537 4.295834e+06 22830.15 3.407485e+02 0.000 589.00 67 0.000000e+00 0.00 4.318664e+06 4.295834e+06 22830.15 NULL
2014 Nyc Housing Authority Admin Community Relations Specialist 73550.88000 1.838772e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.838772e+06 1.838772e+06 0.00 NULL
2014 Nyc Housing Authority Admin Contract Specialist 123044.25000 4.921770e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.921770e+05 4.921770e+05 0.00 NULL
2014 Nyc Housing Authority Administrative Accountant 92075.23077 2.393956e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 2.393956e+06 2.393956e+06 0.00 NULL
2014 Nyc Housing Authority Administrative Architect 110479.00000 3.314370e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.314370e+05 3.314370e+05 0.00 NULL
2014 Nyc Housing Authority Administrative Business Promotion Coordinator 99398.66667 2.981960e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.981960e+05 2.981960e+05 0.00 NULL
2014 Nyc Housing Authority Administrative Community Relations Specialist 94859.00000 1.138308e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.138308e+06 1.138308e+06 0.00 NULL
2014 Nyc Housing Authority Administrative Construction Project Manager 94902.85000 1.898057e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.898057e+06 1.898057e+06 0.00 NULL
2014 Nyc Housing Authority Administrative Engineer 109869.66667 9.888270e+05 355.22 3.946889e+01 0.000 7.50 9 0.000000e+00 0.00 9.891822e+05 9.888270e+05 355.22 NULL
2014 Nyc Housing Authority Administrative Graphic Artist 84000.00000 8.400000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.400000e+04 8.400000e+04 0.00 NULL
2014 Nyc Housing Authority Administrative Housing Development Specialist 114266.09091 1.256927e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.256927e+06 1.256927e+06 0.00 NULL
2014 Nyc Housing Authority Administrative Housing Manager 106548.47826 4.901230e+06 63812.28 1.387223e+03 0.000 1112.00 46 0.000000e+00 0.00 4.965042e+06 4.901230e+06 63812.28 NULL
2014 Nyc Housing Authority Administrative Housing Superintendent 103934.75362 7.171498e+06 124354.65 1.802241e+03 0.000 2234.75 69 0.000000e+00 0.00 7.295853e+06 7.171498e+06 124354.65 NULL
2014 Nyc Housing Authority Administrative Inspector 101842.23529 1.731318e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.731318e+06 1.731318e+06 0.00 NULL
2014 Nyc Housing Authority Administrative Investigator 72448.80000 3.622440e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.622440e+05 3.622440e+05 0.00 NULL
2014 Nyc Housing Authority Administrative Labor Relations Analyst 99053.66667 2.971610e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.971610e+05 2.971610e+05 0.00 NULL
2014 Nyc Housing Authority Administrative Landscape Architect 90472.00000 1.809440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.809440e+05 1.809440e+05 0.00 NULL
2014 Nyc Housing Authority Administrative Management Auditor 97919.00000 1.958380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.958380e+05 1.958380e+05 0.00 NULL
2014 Nyc Housing Authority Administrative Printing Services Manager 87000.00000 8.700000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.700000e+04 8.700000e+04 0.00 NULL
2014 Nyc Housing Authority Administrative Procurement Analyst 86071.50000 6.885720e+05 11397.87 1.424734e+03 0.000 202.25 8 0.000000e+00 0.00 6.999699e+05 6.885720e+05 11397.87 NULL
2014 Nyc Housing Authority Administrative Project Manager 105810.00000 6.348600e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.348600e+05 6.348600e+05 0.00 NULL
2014 Nyc Housing Authority Administrative Public Information Specialist 96416.11111 8.677450e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.677450e+05 8.677450e+05 0.00 NULL
2014 Nyc Housing Authority Administrative Quality Assurance Specialist 74000.00000 7.400000e+04 0.00 0.000000e+00 0.000 5.50 1 0.000000e+00 0.00 7.400000e+04 7.400000e+04 0.00 NULL
2014 Nyc Housing Authority Administrative Real Property Manager 104057.00000 2.081140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.081140e+05 2.081140e+05 0.00 NULL
2014 Nyc Housing Authority Administrative Space Analyst 96204.00000 4.810200e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.810200e+05 4.810200e+05 0.00 NULL
2014 Nyc Housing Authority Administrative Staff Analyst 97152.66383 2.283088e+07 58286.01 2.480256e+02 0.000 1338.00 235 0.000000e+00 0.00 2.288916e+07 2.283088e+07 58286.01 NULL
2014 Nyc Housing Authority Administrative Storekeeper 93815.00000 2.814450e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.814450e+05 2.814450e+05 0.00 NULL
2014 Nyc Housing Authority Administrative Supervisor Of Building Maintenance 95211.00000 1.142532e+06 30468.26 2.539022e+03 0.000 528.00 12 0.000000e+00 0.00 1.173000e+06 1.142532e+06 30468.26 NULL
2014 Nyc Housing Authority Administrative Supervisor Of Skilled Trades 88740.00000 8.874000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.874000e+04 8.874000e+04 0.00 NULL
2014 Nyc Housing Authority Agency Attorney 73784.50909 4.058148e+06 0.00 0.000000e+00 0.000 0.00 55 0.000000e+00 0.00 4.058148e+06 4.058148e+06 0.00 NULL
2014 Nyc Housing Authority Agency Security Director 131000.00000 1.310000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.310000e+05 1.310000e+05 0.00 NULL
2014 Nyc Housing Authority Architect 79672.62500 6.373810e+05 5504.37 6.880462e+02 0.000 85.50 8 0.000000e+00 0.00 6.428854e+05 6.373810e+05 5504.37 NULL
2014 Nyc Housing Authority Asbestos Handler 72235.17647 1.227998e+06 261612.94 1.538900e+04 11691.300 4898.25 17 1.169130e+04 198752.10 1.489611e+06 1.426750e+06 62860.84 NULL
2014 Nyc Housing Authority Asbestos Handler Supervisor 75877.33333 2.276320e+05 45018.26 1.500609e+04 932.650 788.75 3 9.326500e+02 2797.95 2.726503e+05 2.304300e+05 42220.31 NULL
2014 Nyc Housing Authority Asbestos Hazard Investigator 68840.00000 2.065200e+05 57981.92 1.932731e+04 25291.400 1129.50 3 1.932731e+04 57981.92 2.645019e+05 2.645019e+05 0.00 NULL
2014 Nyc Housing Authority Assistant Architect 59502.18182 6.545240e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 6.545240e+05 6.545240e+05 0.00 NULL
2014 Nyc Housing Authority Assistant Caretaker 28793.28571 3.023295e+06 262828.53 2.503129e+03 1392.440 13090.75 105 1.392440e+03 146206.20 3.286124e+06 3.169501e+06 116622.33 NULL
2014 Nyc Housing Authority Assistant Civil Engineer 63759.50000 2.550380e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.550380e+05 2.550380e+05 0.00 NULL
2014 Nyc Housing Authority Assistant Electrical Engineer 57136.00000 1.142720e+05 51.29 2.564500e+01 25.645 1.50 2 2.564500e+01 51.29 1.143233e+05 1.143233e+05 0.00 NULL
2014 Nyc Housing Authority Assistant Housing Manager 64587.18182 1.207780e+07 570124.61 3.048795e+03 264.310 13522.75 187 2.643100e+02 49425.97 1.264793e+07 1.212723e+07 520698.64 NULL
2014 Nyc Housing Authority Assistant Landscape Architect 70315.00000 7.031500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.031500e+04 7.031500e+04 0.00 NULL
2014 Nyc Housing Authority Assistant Mechanical Engineer 61099.00000 1.221980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.221980e+05 1.221980e+05 0.00 NULL
2014 Nyc Housing Authority Assistant Printing Press Operator 51336.83333 3.080210e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.080210e+05 3.080210e+05 0.00 NULL
2014 Nyc Housing Authority Assistant Resident Building Supt 60904.89916 1.449537e+07 3597689.45 1.511634e+04 13647.800 83460.00 238 1.364780e+04 3248176.40 1.809306e+07 1.774354e+07 349513.05 NULL
2014 Nyc Housing Authority Assoc Inspector 72186.83333 4.331210e+05 634.61 1.057683e+02 0.000 12.00 6 0.000000e+00 0.00 4.337556e+05 4.331210e+05 634.61 NULL
2014 Nyc Housing Authority Associate Contract Specialist 59511.00000 5.951100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.951100e+04 5.951100e+04 0.00 NULL
2014 Nyc Housing Authority Associate Fraud Investigator 78919.00000 7.891900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.891900e+04 7.891900e+04 0.00 NULL
2014 Nyc Housing Authority Associate Housing Development Specialist 72559.50000 1.451190e+05 4728.94 2.364470e+03 2364.470 124.25 2 2.364470e+03 4728.94 1.498479e+05 1.498479e+05 0.00 NULL
2014 Nyc Housing Authority Associate Inspector 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2014 Nyc Housing Authority Associate Investigator 53374.22222 4.803680e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.803680e+05 4.803680e+05 0.00 NULL
2014 Nyc Housing Authority Associate Labor Relations Analyst 75678.50000 1.513570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.513570e+05 1.513570e+05 0.00 NULL
2014 Nyc Housing Authority Associate Operations Communications Specialist 51695.00000 5.169500e+04 863.54 8.635400e+02 863.540 23.25 1 8.635400e+02 863.54 5.255854e+04 5.255854e+04 0.00 NULL
2014 Nyc Housing Authority Associate Project Manager 77180.12500 6.174410e+05 2858.38 3.572975e+02 0.000 41.00 8 0.000000e+00 0.00 6.202994e+05 6.174410e+05 2858.38 NULL
2014 Nyc Housing Authority Associate Public Information Specialist 57962.00000 2.318480e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.318480e+05 2.318480e+05 0.00 NULL
2014 Nyc Housing Authority Associate Quality Assurance Specialist 59437.00000 5.943700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.943700e+04 5.943700e+04 0.00 NULL
2014 Nyc Housing Authority Associate Real Property Manager 64035.00000 6.403500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.403500e+04 6.403500e+04 0.00 NULL
2014 Nyc Housing Authority Associate Staff Analyst 70850.25397 4.463566e+06 21204.05 3.365722e+02 0.000 493.00 63 0.000000e+00 0.00 4.484770e+06 4.463566e+06 21204.05 NULL
2014 Nyc Housing Authority Associate Urban Designer 65698.00000 6.569800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.569800e+04 6.569800e+04 0.00 NULL
2014 Nyc Housing Authority Auto Mechanic NA NA 7797.92 3.898960e+03 3898.960 158.00 2 3.898960e+03 7797.92 NA NA NA NULL
2014 Nyc Housing Authority Automotive Service Worker 43186.00000 1.727440e+05 3069.45 7.673625e+02 525.185 124.25 4 5.251850e+02 2100.74 1.758135e+05 1.748447e+05 968.71 NULL
2014 Nyc Housing Authority Bookkeeper 44419.15152 1.465832e+06 6258.37 1.896476e+02 0.000 205.75 33 0.000000e+00 0.00 1.472090e+06 1.465832e+06 6258.37 NULL
2014 Nyc Housing Authority Bricklayer NA NA 1728965.64 2.505747e+04 23640.390 28189.25 69 2.364039e+04 1631186.91 NA NA NA NULL
2014 Nyc Housing Authority Business Promotion Coordinator 48759.00000 9.751800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.751800e+04 9.751800e+04 0.00 NULL
2014 Nyc Housing Authority Caretaker 35850.08177 1.240771e+08 26177778.20 7.563646e+03 7064.190 920807.00 3461 7.064190e+03 24449161.59 1.502549e+08 1.485263e+08 1728616.61 NULL
2014 Nyc Housing Authority Carpenter NA NA 4960243.19 2.024589e+04 16084.500 73317.25 245 1.608450e+04 3940702.50 NA NA NA NULL
2014 Nyc Housing Authority Cashier 35285.00000 3.528500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.528500e+04 3.528500e+04 0.00 NULL
2014 Nyc Housing Authority Certified It Administrator 95504.00000 1.050544e+06 68741.44 6.249222e+03 2758.470 1097.25 11 2.758470e+03 30343.17 1.119285e+06 1.080887e+06 38398.27 NULL
2014 Nyc Housing Authority Certified It Developer 79462.00000 7.946200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.946200e+04 7.946200e+04 0.00 NULL
2014 Nyc Housing Authority Chair 203682.00000 4.073640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.073640e+05 4.073640e+05 0.00 NULL
2014 Nyc Housing Authority Chief Caretaker 43692.00000 1.310760e+06 348095.49 1.160318e+04 10642.665 11683.25 30 1.064267e+04 319279.95 1.658855e+06 1.630040e+06 28815.54 NULL
2014 Nyc Housing Authority Chief Of Housing Community Activities 77725.00000 1.554500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.554500e+05 1.554500e+05 0.00 NULL
2014 Nyc Housing Authority City Custodial Assistant 28025.00000 5.605000e+04 3274.35 1.637175e+03 1637.175 133.75 2 1.637175e+03 3274.35 5.932435e+04 5.932435e+04 0.00 NULL
2014 Nyc Housing Authority City Planner 60202.25000 2.408090e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.408090e+05 2.408090e+05 0.00 NULL
2014 Nyc Housing Authority City Planning Technician 46970.50000 9.394100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.394100e+04 9.394100e+04 0.00 NULL
2014 Nyc Housing Authority City Research Scientist 77746.00000 1.554920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.554920e+05 1.554920e+05 0.00 NULL
2014 Nyc Housing Authority City Seasonal Aide 17912.31204 7.290311e+06 200.80 4.933661e-01 0.000 15.25 407 0.000000e+00 0.00 7.290512e+06 7.290311e+06 200.80 NULL
2014 Nyc Housing Authority City Security Aide 7949.29688 5.087550e+05 0.00 0.000000e+00 0.000 0.00 64 0.000000e+00 0.00 5.087550e+05 5.087550e+05 0.00 NULL
2014 Nyc Housing Authority City Service Aide 16788.07547 3.559072e+06 117.91 5.561792e-01 0.000 0.50 212 0.000000e+00 0.00 3.559190e+06 3.559072e+06 117.91 NULL
2014 Nyc Housing Authority Civil Engineer 78267.70000 7.826770e+05 5897.99 5.897990e+02 23.285 105.25 10 2.328500e+01 232.85 7.885750e+05 7.829098e+05 5665.14 NULL
2014 Nyc Housing Authority Claim Specialist 54351.20000 2.717560e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.717560e+05 2.717560e+05 0.00 NULL
2014 Nyc Housing Authority Clerical Aide 29573.33333 5.323200e+05 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 5.323200e+05 5.323200e+05 0.00 NULL
2014 Nyc Housing Authority Clerical Associate Most Mayoral Ag 37145.63057 5.831864e+06 51302.36 3.267666e+02 0.000 1885.25 157 0.000000e+00 0.00 5.883166e+06 5.831864e+06 51302.36 NULL
2014 Nyc Housing Authority Community Assistant 31246.35294 1.062376e+06 24498.43 7.205421e+02 414.225 1094.75 34 4.142250e+02 14083.65 1.086874e+06 1.076460e+06 10414.78 NULL
2014 Nyc Housing Authority Community Associate 37534.42336 5.142216e+06 58095.66 4.240559e+02 0.000 2229.25 137 0.000000e+00 0.00 5.200312e+06 5.142216e+06 58095.66 NULL
2014 Nyc Housing Authority Community Coordinator 55516.80328 1.015958e+07 242802.09 1.326787e+03 112.000 6348.25 183 1.120000e+02 20496.00 1.040238e+07 1.018007e+07 222306.09 NULL
2014 Nyc Housing Authority Community Service Aide 20489.12438 4.118314e+06 17002.18 8.458796e+01 0.000 1083.75 201 0.000000e+00 0.00 4.135316e+06 4.118314e+06 17002.18 NULL
2014 Nyc Housing Authority Computer Aide-Non-Spvr 46913.75000 1.876550e+05 141.57 3.539250e+01 0.000 4.25 4 0.000000e+00 0.00 1.877966e+05 1.876550e+05 141.57 NULL
2014 Nyc Housing Authority Computer Associate 64926.32143 1.817937e+06 11025.01 3.937504e+02 0.000 199.00 28 0.000000e+00 0.00 1.828962e+06 1.817937e+06 11025.01 NULL
2014 Nyc Housing Authority Computer Operations Manager 87174.42857 6.102210e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.102210e+05 6.102210e+05 0.00 NULL
2014 Nyc Housing Authority Computer Programmer Analyst Trainee 39776.00000 3.977600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.977600e+04 3.977600e+04 0.00 NULL
2014 Nyc Housing Authority Computer Service Technician 47231.33333 2.833880e+05 7545.01 1.257502e+03 1109.905 266.00 6 1.109905e+03 6659.43 2.909330e+05 2.900474e+05 885.58 NULL
2014 Nyc Housing Authority Computer Specialist 86669.09091 6.673520e+06 117464.90 1.525518e+03 0.000 2021.50 77 0.000000e+00 0.00 6.790985e+06 6.673520e+06 117464.90 NULL
2014 Nyc Housing Authority Computer Systems Manager 110747.06977 4.762124e+06 0.00 0.000000e+00 0.000 0.00 43 0.000000e+00 0.00 4.762124e+06 4.762124e+06 0.00 NULL
2014 Nyc Housing Authority Confidential Investigator 58524.39394 1.931305e+06 13373.98 4.052721e+02 104.000 449.75 33 1.040000e+02 3432.00 1.944679e+06 1.934737e+06 9941.98 NULL
2014 Nyc Housing Authority Construction Project Manager 69467.20800 8.683401e+06 53672.33 4.293786e+02 0.000 1135.50 125 0.000000e+00 0.00 8.737073e+06 8.683401e+06 53672.33 NULL
2014 Nyc Housing Authority Contract Specialist 66581.00000 6.658100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.658100e+04 6.658100e+04 0.00 NULL
2014 Nyc Housing Authority Controller 138497.00000 1.384970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.384970e+05 1.384970e+05 0.00 NULL
2014 Nyc Housing Authority Custodian 32935.00000 9.880500e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.880500e+04 9.880500e+04 0.00 NULL
2014 Nyc Housing Authority Customer Information Representative Ma L 1549 37940.67544 4.325237e+06 53524.43 4.695125e+02 0.000 2314.75 114 0.000000e+00 0.00 4.378761e+06 4.325237e+06 53524.43 NULL
2014 Nyc Housing Authority Dep Dir Of Audit & Prog Analysis 104000.00000 1.040000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.040000e+05 1.040000e+05 0.00 NULL
2014 Nyc Housing Authority Dep Director Of Personnel & Lr 113000.00000 1.130000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.130000e+05 1.130000e+05 0.00 NULL
2014 Nyc Housing Authority Deputy Counsel Intern 64081.00000 2.563240e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.563240e+05 2.563240e+05 0.00 NULL
2014 Nyc Housing Authority Deputy Director Of Housing Applicants 107760.00000 1.077600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.077600e+05 1.077600e+05 0.00 NULL
2014 Nyc Housing Authority Deputy Director Of Management 109007.00000 1.090070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.090070e+05 1.090070e+05 0.00 NULL
2014 Nyc Housing Authority Deputy Director Of Methods & Analysis 101838.00000 1.018380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.018380e+05 1.018380e+05 0.00 NULL
2014 Nyc Housing Authority Deputy Executive Director 182498.33333 5.474950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.474950e+05 5.474950e+05 0.00 NULL
2014 Nyc Housing Authority Deputy Inspector General 98265.50000 5.895930e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.895930e+05 5.895930e+05 0.00 NULL
2014 Nyc Housing Authority Dir Of Audit & Prog Analysis 132500.00000 1.325000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.325000e+05 1.325000e+05 0.00 NULL
2014 Nyc Housing Authority Dir Of Materials Management 149113.00000 1.491130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.491130e+05 1.491130e+05 0.00 NULL
2014 Nyc Housing Authority Director Of Equal Opportunity 118899.00000 1.188990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.188990e+05 1.188990e+05 0.00 NULL
2014 Nyc Housing Authority Director Of Housing Applicantions 137629.00000 1.376290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.376290e+05 1.376290e+05 0.00 NULL
2014 Nyc Housing Authority Director Of Information Systems 174569.00000 1.745690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.745690e+05 1.745690e+05 0.00 NULL
2014 Nyc Housing Authority Director Of Leased Housing 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2014 Nyc Housing Authority Director Of Public & Community Relations 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2014 Nyc Housing Authority Director Or Management 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2014 Nyc Housing Authority Electrical Engineer 68866.00000 6.886600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.886600e+04 6.886600e+04 0.00 NULL
2014 Nyc Housing Authority Electrician NA NA 2050441.49 2.887946e+04 28098.440 29141.00 71 2.809844e+04 1994989.24 NA NA NA NULL
2014 Nyc Housing Authority Electrician’s Helper NA NA 1177077.43 1.810888e+04 16813.610 25622.75 65 1.681361e+04 1092884.65 NA NA NA NULL
2014 Nyc Housing Authority Elevator Mechanic NA NA 7427924.43 2.710921e+04 26772.100 51153.50 274 2.677210e+04 7335555.40 NA NA NA NULL
2014 Nyc Housing Authority Elevator Mechanic Helper NA NA 3551780.45 1.241881e+04 12824.740 53037.25 286 1.241881e+04 3551780.45 NA NA NA NULL
2014 Nyc Housing Authority Emergency Service Aide 28478.72414 4.129415e+06 192088.89 1.324751e+03 880.650 8061.50 145 8.806500e+02 127694.25 4.321504e+06 4.257109e+06 64394.64 NULL
2014 Nyc Housing Authority Engineering Technician 56029.33333 1.680880e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.680880e+05 1.680880e+05 0.00 NULL
2014 Nyc Housing Authority Executive Agency Counsel 104593.00000 4.079127e+06 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 4.079127e+06 4.079127e+06 0.00 NULL
2014 Nyc Housing Authority Executive Director 195000.00000 1.950000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.950000e+05 1.950000e+05 0.00 NULL
2014 Nyc Housing Authority Glazier NA NA 578561.80 2.142821e+04 16998.800 7967.50 27 1.699880e+04 458967.60 NA NA NA NULL
2014 Nyc Housing Authority Graphic Artist 44209.00000 1.326270e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.326270e+05 1.326270e+05 0.00 NULL
2014 Nyc Housing Authority Hearing Examiner 108609.00000 3.258270e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.258270e+05 3.258270e+05 0.00 NULL
2014 Nyc Housing Authority Heating Plant Technician 43707.68580 1.446724e+07 3019865.86 9.123462e+03 6671.730 97522.50 331 6.671730e+03 2208342.63 1.748711e+07 1.667559e+07 811523.23 NULL
2014 Nyc Housing Authority Housing Assistant 50039.15654 4.858802e+07 865506.79 8.913561e+02 0.000 25937.25 971 0.000000e+00 0.00 4.945353e+07 4.858802e+07 865506.79 NULL
2014 Nyc Housing Authority Housing Development Specialist 69770.42857 4.883930e+05 1488.47 2.126386e+02 0.000 35.50 7 0.000000e+00 0.00 4.898815e+05 4.883930e+05 1488.47 NULL
2014 Nyc Housing Authority Housing Exterminator 39216.07362 6.392220e+06 240620.25 1.476198e+03 141.140 6980.75 163 1.411400e+02 23005.82 6.632840e+06 6.415226e+06 217614.43 NULL
2014 Nyc Housing Authority Housing Manager 79360.84127 1.499920e+07 937429.66 4.959945e+03 2392.670 18152.75 189 2.392670e+03 452214.63 1.593663e+07 1.545141e+07 485215.03 NULL
2014 Nyc Housing Authority Housing Stock Worker 44324.79412 1.507043e+06 18761.70 5.518147e+02 165.160 566.75 34 1.651600e+02 5615.44 1.525805e+06 1.512658e+06 13146.26 NULL
2014 Nyc Housing Authority Industrial Hygienist 54339.00000 1.630170e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.630170e+05 1.630170e+05 0.00 NULL
2014 Nyc Housing Authority Inspector 59735.28571 4.181470e+05 14809.81 2.115687e+03 173.890 368.75 7 1.738900e+02 1217.23 4.329568e+05 4.193642e+05 13592.58 NULL
2014 Nyc Housing Authority Inspector General 135579.00000 1.355790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.355790e+05 1.355790e+05 0.00 NULL
2014 Nyc Housing Authority Interpreter 45989.33333 2.759360e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.759360e+05 2.759360e+05 0.00 NULL
2014 Nyc Housing Authority Interpreter/Translator 47656.00000 9.531200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.531200e+04 9.531200e+04 0.00 NULL
2014 Nyc Housing Authority Investigator 47826.00000 9.086940e+05 253.01 1.331632e+01 0.000 0.00 19 0.000000e+00 0.00 9.089470e+05 9.086940e+05 253.01 NULL
2014 Nyc Housing Authority Labor Relations Analyst 55939.88889 5.034590e+05 9603.26 1.067029e+03 0.000 320.75 9 0.000000e+00 0.00 5.130623e+05 5.034590e+05 9603.26 NULL
2014 Nyc Housing Authority Labor Relations Analyst Trainee 43930.00000 1.317900e+05 1312.20 4.374000e+02 473.970 48.50 3 4.374000e+02 1312.20 1.331022e+05 1.331022e+05 0.00 NULL
2014 Nyc Housing Authority Landscape Architect 73675.00000 1.473500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.473500e+05 1.473500e+05 0.00 NULL
2014 Nyc Housing Authority Lead Abatement Worker 43906.76923 1.712364e+06 205947.26 5.280699e+03 2627.010 6296.75 39 2.627010e+03 102453.39 1.918311e+06 1.814817e+06 103493.87 NULL
2014 Nyc Housing Authority Legal Secretarial Assistant - Al 1 Only 37158.00000 7.431600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.431600e+04 7.431600e+04 0.00 NULL
2014 Nyc Housing Authority Machinist NA NA 7247.28 2.415760e+03 1889.410 141.50 3 1.889410e+03 5668.23 NA NA NA NULL
2014 Nyc Housing Authority Maintenance Worker NA NA 10177379.37 9.804797e+03 7526.745 268825.25 1038 7.526745e+03 7812761.31 NA NA NA NULL
2014 Nyc Housing Authority Management Auditor 58035.66667 5.223210e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.223210e+05 5.223210e+05 0.00 NULL
2014 Nyc Housing Authority Masons Helper NA NA 779911.09 1.471530e+04 11683.590 17032.25 53 1.168359e+04 619230.27 NA NA NA NULL
2014 Nyc Housing Authority Mechanical Engineer 79710.66667 4.782640e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.782640e+05 4.782640e+05 0.00 NULL
2014 Nyc Housing Authority Media Services Technician 52989.00000 5.298900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.298900e+04 5.298900e+04 0.00 NULL
2014 Nyc Housing Authority Member Of The Housing Authority 187147.00000 1.871470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.871470e+05 1.871470e+05 0.00 NULL
2014 Nyc Housing Authority Motor Grader Operator NA NA 45680.89 2.284044e+04 22840.445 592.50 2 2.284044e+04 45680.89 NA NA NA NULL
2014 Nyc Housing Authority Motor Vehicle Operator 42130.44000 1.053261e+06 75068.32 3.002733e+03 1028.030 2201.50 25 1.028030e+03 25700.75 1.128329e+06 1.078962e+06 49367.57 NULL
2014 Nyc Housing Authority Motor Vehicle Supervisor 52507.50000 1.050150e+05 1353.64 6.768200e+02 676.820 35.00 2 6.768200e+02 1353.64 1.063686e+05 1.063686e+05 0.00 NULL
2014 Nyc Housing Authority Office Machine Aide 28588.00000 2.858800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.858800e+04 2.858800e+04 0.00 NULL
2014 Nyc Housing Authority Painter NA NA 3449504.95 1.301700e+04 7245.000 65916.75 265 7.245000e+03 1919925.00 NA NA NA NULL
2014 Nyc Housing Authority Plasterer NA NA 7181825.75 2.592717e+04 23156.600 90664.75 277 2.315660e+04 6414378.20 NA NA NA NULL
2014 Nyc Housing Authority Plumber NA NA 5573129.54 5.410805e+04 50611.000 61647.00 103 5.061100e+04 5212933.00 NA NA NA NULL
2014 Nyc Housing Authority Plumber’s Helper NA NA 2872034.52 3.156082e+04 26367.600 43033.50 91 2.636760e+04 2399451.60 NA NA NA NULL
2014 Nyc Housing Authority Principal Administrative Associate - Lev 1 & 2 Non Supvr 52752.05682 4.642181e+06 31885.18 3.623316e+02 0.000 782.25 88 0.000000e+00 0.00 4.674066e+06 4.642181e+06 31885.18 NULL
2014 Nyc Housing Authority Printing Press Operator NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2014 Nyc Housing Authority Procurement Analyst 55238.94231 2.872425e+06 58232.34 1.119853e+03 0.000 1717.50 52 0.000000e+00 0.00 2.930657e+06 2.872425e+06 58232.34 NULL
2014 Nyc Housing Authority Project Manager 63008.66667 1.890260e+05 7445.81 2.481937e+03 0.000 146.25 3 0.000000e+00 0.00 1.964718e+05 1.890260e+05 7445.81 NULL
2014 Nyc Housing Authority Public Records Officer 50697.00000 5.069700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.069700e+04 5.069700e+04 0.00 NULL
2014 Nyc Housing Authority Quality Assurance Specialist 50732.00000 2.029280e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.029280e+05 2.029280e+05 0.00 NULL
2014 Nyc Housing Authority Real Property Manager 56398.00000 1.127960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.127960e+05 1.127960e+05 0.00 NULL
2014 Nyc Housing Authority Recreation Director 43866.00000 4.386600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.386600e+04 4.386600e+04 0.00 NULL
2014 Nyc Housing Authority Research Assistant 47967.26667 7.195090e+05 1521.05 1.014033e+02 0.000 44.25 15 0.000000e+00 0.00 7.210301e+05 7.195090e+05 1521.05 NULL
2014 Nyc Housing Authority Resident Building Superintendent 76891.78037 1.645484e+07 3364232.61 1.572071e+04 12630.335 63325.00 214 1.263033e+04 2702891.69 1.981907e+07 1.915773e+07 661340.92 NULL
2014 Nyc Housing Authority Roofer NA NA 237502.04 8.482216e+03 5795.175 4675.50 28 5.795175e+03 162264.90 NA NA NA NULL
2014 Nyc Housing Authority Secretary 37061.93964 2.271897e+07 172083.74 2.807239e+02 0.000 6587.75 613 0.000000e+00 0.00 2.289105e+07 2.271897e+07 172083.74 NULL
2014 Nyc Housing Authority Secretary Of The Authority 138303.00000 1.383030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.383030e+05 1.383030e+05 0.00 NULL
2014 Nyc Housing Authority Secretary To Deputy Executive Director 60781.80000 3.039090e+05 489.17 9.783400e+01 0.000 13.00 5 0.000000e+00 0.00 3.043982e+05 3.039090e+05 489.17 NULL
2014 Nyc Housing Authority Secretary To Member 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2014 Nyc Housing Authority Senior Estimator 66440.27273 7.308430e+05 25340.00 2.303636e+03 0.000 470.25 11 0.000000e+00 0.00 7.561830e+05 7.308430e+05 25340.00 NULL
2014 Nyc Housing Authority Senior Intergroup Relations Officer 49500.00000 4.950000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.950000e+04 4.950000e+04 0.00 NULL
2014 Nyc Housing Authority Senior Photographer 56677.00000 5.667700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.667700e+04 5.667700e+04 0.00 NULL
2014 Nyc Housing Authority Social Worker 50135.75000 6.016290e+05 234.55 1.954583e+01 0.000 8.00 12 0.000000e+00 0.00 6.018636e+05 6.016290e+05 234.55 NULL
2014 Nyc Housing Authority Space Analyst 65039.50000 1.300790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.300790e+05 1.300790e+05 0.00 NULL
2014 Nyc Housing Authority Special Officer 42332.00000 3.386560e+05 47550.28 5.943785e+03 4299.370 1543.00 8 4.299370e+03 34394.96 3.862063e+05 3.730510e+05 13155.32 NULL
2014 Nyc Housing Authority Staff Analyst 60795.25000 2.674991e+06 9960.16 2.263673e+02 0.000 243.25 44 0.000000e+00 0.00 2.684951e+06 2.674991e+06 9960.16 NULL
2014 Nyc Housing Authority Staff Analyst Trainee 44785.29032 1.388344e+06 20902.93 6.742881e+02 0.000 835.25 31 0.000000e+00 0.00 1.409247e+06 1.388344e+06 20902.93 NULL
2014 Nyc Housing Authority Stationary Engineer 61583.00000 6.158300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.158300e+04 6.158300e+04 0.00 NULL
2014 Nyc Housing Authority Statistician 59091.50000 1.181830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.181830e+05 1.181830e+05 0.00 NULL
2014 Nyc Housing Authority Summer Graduate Intern 32670.66667 9.801200e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.801200e+04 9.801200e+04 0.00 NULL
2014 Nyc Housing Authority Supervising Computer Service Technician 59604.00000 1.192080e+05 3020.03 1.510015e+03 1510.015 72.50 2 1.510015e+03 3020.03 1.222280e+05 1.222280e+05 0.00 NULL
2014 Nyc Housing Authority Supervising Housing Groundskeeper 51892.26496 6.071395e+06 1919359.67 1.640478e+04 15160.730 48606.50 117 1.516073e+04 1773805.41 7.990755e+06 7.845200e+06 145554.26 NULL
2014 Nyc Housing Authority Supervising Special Officer 47093.00000 1.412790e+05 27961.52 9.320507e+03 10293.160 797.25 3 9.320507e+03 27961.52 1.692405e+05 1.692405e+05 0.00 NULL
2014 Nyc Housing Authority Supervisor Bricklayer NA NA 397897.10 3.978971e+04 38610.820 5764.50 10 3.861082e+04 386108.20 NA NA NA NULL
2014 Nyc Housing Authority Supervisor Carpenter NA NA 756617.45 5.044116e+04 55373.700 10393.50 15 5.044116e+04 756617.45 NA NA NA NULL
2014 Nyc Housing Authority Supervisor Electrician NA NA 583551.43 4.168225e+04 40028.615 7442.25 14 4.002861e+04 560400.61 NA NA NA NULL
2014 Nyc Housing Authority Supervisor Elevator Mechanic NA NA 1802034.63 4.870364e+04 50103.150 10212.00 37 4.870364e+04 1802034.63 NA NA NA NULL
2014 Nyc Housing Authority Supervisor Glazier NA NA 127814.20 4.260473e+04 38036.600 1733.75 3 3.803660e+04 114109.80 NA NA NA NULL
2014 Nyc Housing Authority Supervisor I Social Work 55325.75000 2.213030e+05 128.02 3.200500e+01 0.000 4.00 4 0.000000e+00 0.00 2.214310e+05 2.213030e+05 128.02 NULL
2014 Nyc Housing Authority Supervisor Ii Social Work 64424.00000 5.798160e+05 259.70 2.885556e+01 0.000 10.00 9 0.000000e+00 0.00 5.800757e+05 5.798160e+05 259.70 NULL
2014 Nyc Housing Authority Supervisor Of Electrical Installations & Maintenance 69125.60000 3.456280e+05 4342.96 8.685920e+02 0.000 97.00 5 0.000000e+00 0.00 3.499710e+05 3.456280e+05 4342.96 NULL
2014 Nyc Housing Authority Supervisor Of Elevator Maintenance 113194.00000 3.395820e+05 134.37 4.479000e+01 0.000 0.00 3 0.000000e+00 0.00 3.397164e+05 3.395820e+05 134.37 NULL
2014 Nyc Housing Authority Supervisor Of Housing Caretaker 52042.72539 1.004425e+07 3127948.78 1.620699e+04 15726.910 78103.25 193 1.572691e+04 3035293.63 1.317219e+07 1.307954e+07 92655.15 NULL
2014 Nyc Housing Authority Supervisor Of Housing Stock Workers 59774.56000 1.494364e+06 86547.17 3.461887e+03 960.500 1983.50 25 9.605000e+02 24012.50 1.580911e+06 1.518376e+06 62534.67 NULL
2014 Nyc Housing Authority Supervisor Of Mechanical Installations & Maintenance 67690.64706 2.301482e+06 43272.38 1.272717e+03 66.325 883.50 34 6.632500e+01 2255.05 2.344754e+06 2.303737e+06 41017.33 NULL
2014 Nyc Housing Authority Supervisor Of Mechanics 102263.00000 2.045260e+05 34500.22 1.725011e+04 17250.110 465.25 2 1.725011e+04 34500.22 2.390262e+05 2.390262e+05 0.00 NULL
2014 Nyc Housing Authority Supervisor Of Office Machine Operations 35619.50000 7.123900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.123900e+04 7.123900e+04 0.00 NULL
2014 Nyc Housing Authority Supervisor Painter NA NA 844244.52 1.623547e+04 14722.500 14002.25 52 1.472250e+04 765570.00 NA NA NA NULL
2014 Nyc Housing Authority Supervisor Plasterer NA NA 1295558.79 4.318529e+04 46205.910 15769.00 30 4.318529e+04 1295558.79 NA NA NA NULL
2014 Nyc Housing Authority Supervisor Plumber NA NA 1225578.65 8.754133e+04 89689.065 12661.25 14 8.754133e+04 1225578.65 NA NA NA NULL
2014 Nyc Housing Authority Supervisor Roofer NA NA 53665.36 8.944227e+03 6724.575 1046.75 6 6.724575e+03 40347.45 NA NA NA NULL
2014 Nyc Housing Authority Supv Of Housing Exterminator 51673.00000 3.617110e+05 91264.29 1.303776e+04 12017.640 2203.50 7 1.201764e+04 84123.48 4.529753e+05 4.458345e+05 7140.81 NULL
2014 Nyc Housing Authority Supv Of Housing Exterminators 75489.50000 1.509790e+05 6996.64 3.498320e+03 3498.320 189.50 2 3.498320e+03 6996.64 1.579756e+05 1.579756e+05 0.00 NULL
2014 Nyc Housing Authority Telecommunication Manager 96000.00000 9.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.600000e+04 9.600000e+04 0.00 NULL
2014 Nyc Housing Authority Telecommunications Associate 67539.22222 6.078530e+05 8589.51 9.543900e+02 330.180 193.00 9 3.301800e+02 2971.62 6.164425e+05 6.108246e+05 5617.89 NULL
2014 Nyc Housing Authority Welder NA NA 234044.21 2.340442e+04 21293.095 3082.25 10 2.129310e+04 212930.95 NA NA NA NULL
2014 Nyc Housing Authority Worker’s Compensation Benefits Examiner 46170.50000 9.234100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.234100e+04 9.234100e+04 0.00 NULL
2014 Nyc Police Pension Fund *Certified Local Area Network Administrator 96408.00000 9.640800e+04 12773.85 1.277385e+04 12773.850 199.75 1 1.277385e+04 12773.85 1.091819e+05 1.091819e+05 0.00 NULL
2014 Nyc Police Pension Fund Accountant 70370.83333 4.222250e+05 9762.10 1.627017e+03 0.000 167.75 6 0.000000e+00 0.00 4.319871e+05 4.222250e+05 9762.10 NULL
2014 Nyc Police Pension Fund Administrative Accountant 126540.00000 3.796200e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.796200e+05 3.796200e+05 0.00 NULL
2014 Nyc Police Pension Fund Administrative Retirement Benefits Specialist 108596.63636 1.194563e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.194563e+06 1.194563e+06 0.00 NULL
2014 Nyc Police Pension Fund Administrative Staff Analyst 120684.20000 6.034210e+05 134.00 2.680000e+01 0.000 2.25 5 0.000000e+00 0.00 6.035550e+05 6.034210e+05 134.00 NULL
2014 Nyc Police Pension Fund Agency Attorney 79085.00000 7.908500e+04 4504.21 4.504210e+03 4504.210 82.75 1 4.504210e+03 4504.21 8.358921e+04 8.358921e+04 0.00 NULL
2014 Nyc Police Pension Fund Agency Security Director 89439.00000 8.943900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.943900e+04 8.943900e+04 0.00 NULL
2014 Nyc Police Pension Fund Assistant Retirement Benefits Examiner 48929.28571 3.425050e+05 16729.12 2.389874e+03 2247.410 543.25 7 2.247410e+03 15731.87 3.592341e+05 3.582369e+05 997.25 NULL
2014 Nyc Police Pension Fund Associate Retirement Benefits Examiner 66810.75000 1.068972e+06 28008.84 1.750553e+03 115.695 618.50 16 1.156950e+02 1851.12 1.096981e+06 1.070823e+06 26157.72 NULL
2014 Nyc Police Pension Fund Associate Staff Analyst 86456.00000 8.645600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.645600e+04 8.645600e+04 0.00 NULL
2014 Nyc Police Pension Fund Clerical Associate Most Mayoral Ag 46979.04656 7.516647e+05 26236.96 1.639810e+03 839.990 836.00 16 8.399900e+02 13439.84 7.779017e+05 7.651046e+05 12797.12 NULL
2014 Nyc Police Pension Fund College Aide 3935.06757 1.455975e+05 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 1.455975e+05 1.455975e+05 0.00 NULL
2014 Nyc Police Pension Fund Community Assistant 31316.88278 2.818519e+05 11799.42 1.311047e+03 755.870 515.50 9 7.558700e+02 6802.83 2.936514e+05 2.886548e+05 4996.59 NULL
2014 Nyc Police Pension Fund Community Associate 42624.31034 1.236105e+06 69944.25 2.411871e+03 878.390 2482.00 29 8.783900e+02 25473.31 1.306049e+06 1.261578e+06 44470.94 NULL
2014 Nyc Police Pension Fund Community Coordinator 63746.66667 3.824800e+05 5893.15 9.821917e+02 0.000 167.00 6 0.000000e+00 0.00 3.883732e+05 3.824800e+05 5893.15 NULL
2014 Nyc Police Pension Fund Computer Associate 81936.00000 8.193600e+04 8363.23 8.363230e+03 8363.230 142.75 1 8.363230e+03 8363.23 9.029923e+04 9.029923e+04 0.00 NULL
2014 Nyc Police Pension Fund Computer Specialist 106688.20000 5.334410e+05 23585.18 4.717036e+03 0.000 311.00 5 0.000000e+00 0.00 5.570262e+05 5.334410e+05 23585.18 NULL
2014 Nyc Police Pension Fund Computer Systems Manager 166083.00000 6.643320e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.643320e+05 6.643320e+05 0.00 NULL
2014 Nyc Police Pension Fund Deputy Director 177269.00000 3.545380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.545380e+05 3.545380e+05 0.00 NULL
2014 Nyc Police Pension Fund Executive Director 192198.00000 1.921980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.921980e+05 1.921980e+05 0.00 NULL
2014 Nyc Police Pension Fund Management Auditor 62977.50000 1.259550e+05 964.37 4.821850e+02 482.185 19.00 2 4.821850e+02 964.37 1.269194e+05 1.269194e+05 0.00 NULL
2014 Nyc Police Pension Fund Paralegal Aide 46886.00000 4.688600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.688600e+04 4.688600e+04 0.00 NULL
2014 Nyc Police Pension Fund Principal Administrative Associate - Lev 1 & 2 Non Supvr 61492.50000 3.689550e+05 12705.25 2.117542e+03 936.285 325.00 6 9.362850e+02 5617.71 3.816602e+05 3.745727e+05 7087.54 NULL
2014 Nyc Police Pension Fund Secretary To The Executive Director 141290.00000 1.412900e+05 1898.54 1.898540e+03 1898.540 16.37 1 1.898540e+03 1898.54 1.431885e+05 1.431885e+05 0.00 NULL
2014 Nyc Police Pension Fund Summer Graduate Intern 7960.25000 1.592050e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.592050e+04 1.592050e+04 0.00 NULL
2014 Nyc Police Pension Fund Supervisor Of Office Machine Operations 50329.66667 1.509890e+05 12421.73 4.140577e+03 5934.840 339.75 3 4.140577e+03 12421.73 1.634107e+05 1.634107e+05 0.00 NULL
2014 Off Of Payroll Administration Accountant 63584.00000 1.907520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.907520e+05 1.907520e+05 0.00 NULL
2014 Off Of Payroll Administration Adm Manager-Non-Mgrl From M1/M2 84537.66667 2.536130e+05 691.21 2.304033e+02 0.000 12.25 3 0.000000e+00 0.00 2.543042e+05 2.536130e+05 691.21 NULL
2014 Off Of Payroll Administration Admin Contract Specialist 100974.54000 1.009745e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.009745e+05 1.009745e+05 0.00 NULL
2014 Off Of Payroll Administration Administrative Accountant 110720.00000 4.428800e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.428800e+05 4.428800e+05 0.00 NULL
2014 Off Of Payroll Administration Administrative Procurement Analyst 109514.00000 1.095140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.095140e+05 1.095140e+05 0.00 NULL
2014 Off Of Payroll Administration Administrative Staff Analyst 92959.67750 1.859194e+06 984.14 4.920700e+01 0.000 22.25 20 0.000000e+00 0.00 1.860178e+06 1.859194e+06 984.14 NULL
2014 Off Of Payroll Administration Associate Executive Director 185400.87000 1.854009e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.854009e+05 1.854009e+05 0.00 NULL
2014 Off Of Payroll Administration Associate Staff Analyst 73055.16667 8.766620e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 8.766620e+05 8.766620e+05 0.00 NULL
2014 Off Of Payroll Administration Bookkeeper 53930.00000 1.078600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.078600e+05 1.078600e+05 0.00 NULL
2014 Off Of Payroll Administration Certified It Developer 104626.00000 1.046260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.046260e+05 1.046260e+05 0.00 NULL
2014 Off Of Payroll Administration Clerical Associate Most Mayoral Ag 39348.44567 9.443627e+05 2195.82 9.149250e+01 0.000 56.50 24 0.000000e+00 0.00 9.465585e+05 9.443627e+05 2195.82 NULL
2014 Off Of Payroll Administration Computer Aide-Non-Spvr 43225.74286 3.025802e+05 5499.56 7.856514e+02 0.000 142.00 7 0.000000e+00 0.00 3.080798e+05 3.025802e+05 5499.56 NULL
2014 Off Of Payroll Administration Computer Associate 64601.11765 1.098219e+06 3482.12 2.048306e+02 0.000 58.00 17 0.000000e+00 0.00 1.101701e+06 1.098219e+06 3482.12 NULL
2014 Off Of Payroll Administration Computer Programmer Analyst 62302.00000 6.230200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.230200e+04 6.230200e+04 0.00 NULL
2014 Off Of Payroll Administration Computer Specialist 91296.38462 1.186853e+06 11739.82 9.030631e+02 0.000 170.25 13 0.000000e+00 0.00 1.198593e+06 1.186853e+06 11739.82 NULL
2014 Off Of Payroll Administration Computer Systems Manager 116118.78889 2.090138e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.090138e+06 2.090138e+06 0.00 NULL
2014 Off Of Payroll Administration Custodian 51423.12000 5.142312e+04 3595.30 3.595300e+03 3595.300 79.00 1 3.595300e+03 3595.30 5.501842e+04 5.501842e+04 0.00 NULL
2014 Off Of Payroll Administration Deputy Executive Director 185472.10000 1.854721e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.854721e+05 1.854721e+05 0.00 NULL
2014 Off Of Payroll Administration Executive Agency Counsel 176074.00000 1.760740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.760740e+05 1.760740e+05 0.00 NULL
2014 Off Of Payroll Administration Management Auditor 65214.20000 3.260710e+05 3489.26 6.978520e+02 0.000 119.00 5 0.000000e+00 0.00 3.295603e+05 3.260710e+05 3489.26 NULL
2014 Off Of Payroll Administration Principal Administrative Associate - Lev 1 & 2 Non Supvr 55484.89474 1.054213e+06 9493.24 4.996442e+02 0.000 271.25 19 0.000000e+00 0.00 1.063706e+06 1.054213e+06 9493.24 NULL
2014 Off Of Payroll Administration Staff Analyst 57600.55556 5.184050e+05 0.00 0.000000e+00 0.000 7.00 9 0.000000e+00 0.00 5.184050e+05 5.184050e+05 0.00 NULL
2014 Office Of Collective Bargainin Administrative Staff Analyst 106000.00000 1.060000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.060000e+05 1.060000e+05 0.00 NULL
2014 Office Of Collective Bargainin Clerical Associate Most Mayoral Ag 40390.00000 4.039000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.039000e+04 4.039000e+04 0.00 NULL
2014 Office Of Collective Bargainin Computer Systems Manager 78000.00000 7.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.800000e+04 7.800000e+04 0.00 NULL
2014 Office Of Collective Bargainin Deputy Director 158500.00000 3.170000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.170000e+05 3.170000e+05 0.00 NULL
2014 Office Of Collective Bargainin Director Of Information And Research 90151.00000 9.015100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.015100e+04 9.015100e+04 0.00 NULL
2014 Office Of Collective Bargainin Director Of The Office Of Collective Bargaining 205180.00000 2.051800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.051800e+05 2.051800e+05 0.00 NULL
2014 Office Of Collective Bargainin Executive Assistant To The Director 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2014 Office Of Collective Bargainin Labor Relations Trial Examiner 85416.66667 5.125000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.125000e+05 5.125000e+05 0.00 NULL
2014 Office Of Collective Bargainin Secretary To The Deputy Chair 40000.00000 4.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.000000e+04 4.000000e+04 0.00 NULL
2014 Office Of Collective Bargainin Secy To The Director Of Collective Bargaining 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2014 Office Of Collective Bargainin Staff Analyst 58000.00000 5.800000e+04 0.00 0.000000e+00 0.000 24.00 1 0.000000e+00 0.00 5.800000e+04 5.800000e+04 0.00 NULL
2014 Office Of Emergency Management Adm Manager-Non-Mgrl From M1/M2 84920.00000 8.492000e+04 534.52 5.345200e+02 534.520 16.00 1 5.345200e+02 534.52 8.545452e+04 8.545452e+04 0.00 NULL
2014 Office Of Emergency Management Administration Public Record Officer 78000.00000 7.800000e+04 773.64 7.736400e+02 773.640 21.00 1 7.736400e+02 773.64 7.877364e+04 7.877364e+04 0.00 NULL
2014 Office Of Emergency Management Administrative Manager 182997.00000 1.829970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.829970e+05 1.829970e+05 0.00 NULL
2014 Office Of Emergency Management Administrative Staff Analyst 122974.42857 8.608210e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.608210e+05 8.608210e+05 0.00 NULL
2014 Office Of Emergency Management Agency Attorney 77071.25000 3.082850e+05 6113.69 1.528422e+03 1024.690 127.00 4 1.024690e+03 4098.76 3.143987e+05 3.123838e+05 2014.93 NULL
2014 Office Of Emergency Management Assistant Urban Designer 70631.00000 7.063100e+04 349.29 3.492900e+02 349.290 5.00 1 3.492900e+02 349.29 7.098029e+04 7.098029e+04 0.00 NULL
2014 Office Of Emergency Management Associate Public Information Specialist 61250.00000 1.225000e+05 11674.47 5.837235e+03 5837.235 320.25 2 5.837235e+03 11674.47 1.341745e+05 1.341745e+05 0.00 NULL
2014 Office Of Emergency Management Certified It Administrator 113004.00000 1.130040e+05 4120.73 4.120730e+03 4120.730 56.75 1 4.120730e+03 4120.73 1.171247e+05 1.171247e+05 0.00 NULL
2014 Office Of Emergency Management Commissioner Of Emergency Management 205180.00000 2.051800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.051800e+05 2.051800e+05 0.00 NULL
2014 Office Of Emergency Management Community Associate 46625.33333 1.398760e+05 9346.59 3.115530e+03 2887.970 334.00 3 2.887970e+03 8663.91 1.492226e+05 1.485399e+05 682.68 NULL
2014 Office Of Emergency Management Community Coordinator 53713.29600 2.685665e+05 33967.85 6.793570e+03 2386.970 763.00 5 2.386970e+03 11934.85 3.025343e+05 2.805013e+05 22033.00 NULL
2014 Office Of Emergency Management Computer Systems Manager 104934.50000 2.098690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.098690e+05 2.098690e+05 0.00 NULL
2014 Office Of Emergency Management Deputy Commissioner 160618.00000 3.212360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.212360e+05 3.212360e+05 0.00 NULL
2014 Office Of Emergency Management Emergency Preparedness Manager 91283.85366 3.742638e+06 45316.96 1.105292e+03 0.000 932.00 41 0.000000e+00 0.00 3.787955e+06 3.742638e+06 45316.96 NULL
2014 Office Of Emergency Management Emergency Preparedness Specialist 64586.94941 4.779434e+06 299670.89 4.049607e+03 2299.190 7392.00 74 2.299190e+03 170140.06 5.079105e+06 4.949574e+06 129530.83 NULL
2014 Office Of Emergency Management First Deputy Commissioner 195000.00000 1.950000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.950000e+05 1.950000e+05 0.00 NULL
2014 Office Of Emergency Management Public Records Officer 50000.00000 5.000000e+04 1467.58 1.467580e+03 1467.580 49.75 1 1.467580e+03 1467.58 5.146758e+04 5.146758e+04 0.00 NULL
2014 Office Of Emergency Management Secretary To The Commissioner 82814.00000 8.281400e+04 2677.72 2.677720e+03 2677.720 65.50 1 2.677720e+03 2677.72 8.549172e+04 8.549172e+04 0.00 NULL
2014 Office Of Labor Relations Accountant 57716.75000 2.308670e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.308670e+05 2.308670e+05 0.00 NULL
2014 Office Of Labor Relations Administrative Manager 90048.20000 4.502410e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.502410e+05 4.502410e+05 0.00 NULL
2014 Office Of Labor Relations Administrative Staff Analyst 117656.33333 7.059380e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.059380e+05 7.059380e+05 0.00 NULL
2014 Office Of Labor Relations Agency Chief Contracting Officer 77512.00000 7.751200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.751200e+04 7.751200e+04 0.00 NULL
2014 Office Of Labor Relations Assistant Commissioner Of Labor Relations 130193.66667 7.811620e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.811620e+05 7.811620e+05 0.00 NULL
2014 Office Of Labor Relations Associate Counsel 122427.00000 1.224270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.224270e+05 1.224270e+05 0.00 NULL
2014 Office Of Labor Relations Associate Labor Relations Analyst 69369.00000 6.936900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.936900e+04 6.936900e+04 0.00 NULL
2014 Office Of Labor Relations Associate Staff Analyst 68466.00000 1.369320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.369320e+05 1.369320e+05 0.00 NULL
2014 Office Of Labor Relations Bookkeeper 49654.00000 4.965400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.965400e+04 4.965400e+04 0.00 NULL
2014 Office Of Labor Relations Clerical Associate Most Mayoral Ag 38720.00000 4.259200e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 4.259200e+05 4.259200e+05 0.00 NULL
2014 Office Of Labor Relations Commissioner Of Labor Relations 205180.00000 4.103600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.103600e+05 4.103600e+05 0.00 NULL
2014 Office Of Labor Relations Community Assistant 31837.92857 2.228655e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.228655e+05 2.228655e+05 0.00 NULL
2014 Office Of Labor Relations Community Associate 44830.80000 2.241540e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.241540e+05 2.241540e+05 0.00 NULL
2014 Office Of Labor Relations Computer Specialist 76125.00000 7.612500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.612500e+04 7.612500e+04 0.00 NULL
2014 Office Of Labor Relations Computer Systems Manager 124867.00000 2.497340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.497340e+05 2.497340e+05 0.00 NULL
2014 Office Of Labor Relations Counsel 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2014 Office Of Labor Relations Customer Information Representative Ma L 1549 34017.00000 3.401700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.401700e+04 3.401700e+04 0.00 NULL
2014 Office Of Labor Relations Deputy Assistant Counsel 74799.62500 5.983970e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.983970e+05 5.983970e+05 0.00 NULL
2014 Office Of Labor Relations Deputy Commissioner Of Labor Relations 172897.00000 1.728970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.728970e+05 1.728970e+05 0.00 NULL
2014 Office Of Labor Relations Director Employee Assistance Program 114376.00000 1.143760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.143760e+05 1.143760e+05 0.00 NULL
2014 Office Of Labor Relations Employee Assistance Program Specialist 50398.75000 4.031900e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.031900e+05 4.031900e+05 0.00 NULL
2014 Office Of Labor Relations Employee Health Benefits Program Director 174972.00000 3.499440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.499440e+05 3.499440e+05 0.00 NULL
2014 Office Of Labor Relations Executive Agency Counsel 138600.00000 1.386000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.386000e+05 1.386000e+05 0.00 NULL
2014 Office Of Labor Relations Insurance Advisor 63477.98880 1.904340e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.904340e+05 1.904340e+05 0.00 NULL
2014 Office Of Labor Relations Labor Relations Analyst 54409.66667 1.632290e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.632290e+05 1.632290e+05 0.00 NULL
2014 Office Of Labor Relations Labor Relations Analyst Trainee 43092.50000 8.618500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.618500e+04 8.618500e+04 0.00 NULL
2014 Office Of Labor Relations Principal Administrative Associate - Lev 1 & 2 Non Supvr 54428.83859 8.164326e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 8.164326e+05 8.164326e+05 0.00 NULL
2014 Office Of Labor Relations Secretary 37332.40000 1.866620e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.866620e+05 1.866620e+05 0.00 NULL
2014 Office Of Labor Relations Secretary To The First Deputy Commissioner 53007.00000 5.300700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.300700e+04 5.300700e+04 0.00 NULL
2014 Office Of Labor Relations Staff Analyst 53487.50000 1.069750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.069750e+05 1.069750e+05 0.00 NULL
2014 Office Of Labor Relations Supervising Computer Service Technician 68941.00000 6.894100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.894100e+04 6.894100e+04 0.00 NULL
2014 Office Of Labor Relations Supervisor Of Office Machine Operations 53124.00000 5.312400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.312400e+04 5.312400e+04 0.00 NULL
2014 Office Of Labor Relations Tests And Measurement Specialist 76416.00000 7.641600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.641600e+04 7.641600e+04 0.00 NULL
2014 Office Of Management & Budget Adm Manager-Non-Mgrl From M1/M2 73403.00000 7.340300e+04 672.95 6.729500e+02 672.950 14.50 1 6.729500e+02 672.95 7.407595e+04 7.407595e+04 0.00 NULL
2014 Office Of Management & Budget Administrative Engineer 127629.00000 1.276290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.276290e+05 1.276290e+05 0.00 NULL
2014 Office Of Management & Budget Administrative Manager 117270.50000 2.345410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.345410e+05 2.345410e+05 0.00 NULL
2014 Office Of Management & Budget Administrative Project Manager 157697.00000 1.576970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.576970e+05 1.576970e+05 0.00 NULL
2014 Office Of Management & Budget Administrative Staff Analyst 138523.63636 1.523760e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.523760e+06 1.523760e+06 0.00 NULL
2014 Office Of Management & Budget Budget Analyst 74531.28278 2.541517e+07 502018.33 1.472195e+03 0.000 14076.00 341 0.000000e+00 0.00 2.591719e+07 2.541517e+07 502018.33 NULL
2014 Office Of Management & Budget Community Associate 32120.00000 3.212000e+04 1333.91 1.333910e+03 1333.910 54.00 1 1.333910e+03 1333.91 3.345391e+04 3.345391e+04 0.00 NULL
2014 Office Of Management & Budget Computer Operations Manager 112102.00000 1.121020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.121020e+05 1.121020e+05 0.00 NULL
2014 Office Of Management & Budget Computer Specialist 69336.00000 6.933600e+04 217.28 2.172800e+02 217.280 4.75 1 2.172800e+02 217.28 6.955328e+04 6.955328e+04 0.00 NULL
2014 Office Of Management & Budget Computer Systems Manager 140300.20000 7.015010e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.015010e+05 7.015010e+05 0.00 NULL
2014 Office Of Management & Budget Deputy Director Of Management & Budget 187959.50000 7.518380e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.518380e+05 7.518380e+05 0.00 NULL
2014 Office Of Management & Budget Deputy General Counsel 128431.00000 1.284310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.284310e+05 1.284310e+05 0.00 NULL
2014 Office Of Management & Budget Director Of Financing Policy Coordination 187960.00000 1.879600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.879600e+05 1.879600e+05 0.00 NULL
2014 Office Of Management & Budget Director Of Management & Budget 205180.00000 4.103600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.103600e+05 4.103600e+05 0.00 NULL
2014 Office Of Management & Budget Director Of Public Affairs 85000.00000 8.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.500000e+04 8.500000e+04 0.00 NULL
2014 Office Of Management & Budget Executive Agency Counsel 177653.00000 5.329590e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.329590e+05 5.329590e+05 0.00 NULL
2014 Office Of Management & Budget Statistical Secretary 55899.16667 1.006185e+06 5765.09 3.202828e+02 0.000 204.25 18 0.000000e+00 0.00 1.011950e+06 1.006185e+06 5765.09 NULL
2014 Office Of Management & Budget Supervisor Of Office Machine Operations 41994.00000 4.199400e+04 2706.55 2.706550e+03 2706.550 94.25 1 2.706550e+03 2706.55 4.470055e+04 4.470055e+04 0.00 NULL
2014 Office Of The Actuary *Certified Local Area Network Administrator 79462.00000 7.946200e+04 4126.48 4.126480e+03 4126.480 92.75 1 4.126480e+03 4126.48 8.358848e+04 8.358848e+04 0.00 NULL
2014 Office Of The Actuary Actuarial Specialist Level I 60612.90476 1.272871e+06 59901.36 2.852446e+03 1374.560 1429.00 21 1.374560e+03 28865.76 1.332772e+06 1.301737e+06 31035.60 NULL
2014 Office Of The Actuary Actuarial Specialist Level Ii, Oj 93121.00000 1.862420e+05 4018.73 2.009365e+03 2009.365 86.25 2 2.009365e+03 4018.73 1.902607e+05 1.902607e+05 0.00 NULL
2014 Office Of The Actuary Administrative Actuary 157180.66667 9.430840e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.430840e+05 9.430840e+05 0.00 NULL
2014 Office Of The Actuary Administrative Staff Analyst 98118.00000 9.811800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.811800e+04 9.811800e+04 0.00 NULL
2014 Office Of The Actuary Chief Actuary 245757.00000 2.457570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.457570e+05 2.457570e+05 0.00 NULL
2014 Office Of The Actuary Clerical Associate Most Mayoral Ag 41730.00000 4.173000e+04 232.47 2.324700e+02 232.470 0.00 1 2.324700e+02 232.47 4.196247e+04 4.196247e+04 0.00 NULL
2014 Office Of The Actuary Procurement Analyst 44232.00000 4.423200e+04 109.67 1.096700e+02 109.670 0.00 1 1.096700e+02 109.67 4.434167e+04 4.434167e+04 0.00 NULL
2014 Office Of The Actuary Secretary 47675.00000 4.767500e+04 10546.31 1.054631e+04 10546.310 316.75 1 1.054631e+04 10546.31 5.822131e+04 5.822131e+04 0.00 NULL
2014 Office Of The Actuary Secretary To The Chief Actuary 65000.00000 6.500000e+04 14760.11 1.476011e+04 14760.110 347.00 1 1.476011e+04 14760.11 7.976011e+04 7.976011e+04 0.00 NULL
2014 Office Of The Comptroller Accountant 52302.18678 3.085829e+06 27238.05 4.616619e+02 0.000 951.25 59 0.000000e+00 0.00 3.113067e+06 3.085829e+06 27238.05 NULL
2014 Office Of The Comptroller Adm Manager-Non-Mgrl From M1/M2 64301.59291 4.308207e+06 2674.02 3.991075e+01 0.000 43.00 67 0.000000e+00 0.00 4.310881e+06 4.308207e+06 2674.02 NULL
2014 Office Of The Comptroller Administrative Accountant 104432.81481 2.819686e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 2.819686e+06 2.819686e+06 0.00 NULL
2014 Office Of The Comptroller Administrative Architect 128882.00000 1.288820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.288820e+05 1.288820e+05 0.00 NULL
2014 Office Of The Comptroller Administrative Assistant To The Comptroller 155725.00000 1.557250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.557250e+05 1.557250e+05 0.00 NULL
2014 Office Of The Comptroller Administrative Claim Examiner 82846.93032 2.568255e+06 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 2.568255e+06 2.568255e+06 0.00 NULL
2014 Office Of The Comptroller Administrative Engineer 101459.01067 1.521885e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.521885e+06 1.521885e+06 0.00 NULL
2014 Office Of The Comptroller Administrative Graphic Artist 55921.00000 5.592100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.592100e+04 5.592100e+04 0.00 NULL
2014 Office Of The Comptroller Administrative Management Auditor 102357.83333 1.228294e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.228294e+06 1.228294e+06 0.00 NULL
2014 Office Of The Comptroller Administrative Manager 93164.40656 5.683029e+06 0.00 0.000000e+00 0.000 0.00 61 0.000000e+00 0.00 5.683029e+06 5.683029e+06 0.00 NULL
2014 Office Of The Comptroller Administrative Procurement Analyst 123577.60000 6.178880e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.178880e+05 6.178880e+05 0.00 NULL
2014 Office Of The Comptroller Administrative Project Manager 103900.57143 7.273040e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.273040e+05 7.273040e+05 0.00 NULL
2014 Office Of The Comptroller Administrative Public Information Specialist 91923.07692 1.195000e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.195000e+06 1.195000e+06 0.00 NULL
2014 Office Of The Comptroller Administrative Staff Analyst 113584.56923 7.382997e+06 0.00 0.000000e+00 0.000 0.00 65 0.000000e+00 0.00 7.382997e+06 7.382997e+06 0.00 NULL
2014 Office Of The Comptroller Agency Attorney 82750.00000 2.482500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.482500e+05 2.482500e+05 0.00 NULL
2014 Office Of The Comptroller Assistant Budget Analyst 64291.00000 6.429100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.429100e+04 6.429100e+04 0.00 NULL
2014 Office Of The Comptroller Assistant Secretary To The Comptroller 48500.00000 9.700000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.700000e+04 9.700000e+04 0.00 NULL
2014 Office Of The Comptroller Assistant To The Comptroller 179444.00000 1.794440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.794440e+05 1.794440e+05 0.00 NULL
2014 Office Of The Comptroller Associate Project Manager 82044.60000 8.204460e+05 1565.11 1.565110e+02 0.000 97.25 10 0.000000e+00 0.00 8.220111e+05 8.204460e+05 1565.11 NULL
2014 Office Of The Comptroller Associate Public Information Specialist 58066.66667 1.742000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.742000e+05 1.742000e+05 0.00 NULL
2014 Office Of The Comptroller Associate Staff Analyst 73111.76923 9.504530e+05 799.81 6.152385e+01 0.000 16.75 13 0.000000e+00 0.00 9.512528e+05 9.504530e+05 799.81 NULL
2014 Office Of The Comptroller Bookkeeper 39463.07385 5.130200e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 5.130200e+05 5.130200e+05 0.00 NULL
2014 Office Of The Comptroller Budget Analyst 57040.57143 3.992840e+05 2393.67 3.419529e+02 0.000 76.25 7 0.000000e+00 0.00 4.016777e+05 3.992840e+05 2393.67 NULL
2014 Office Of The Comptroller Business Promotion Coordinator 60380.50000 1.207610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.207610e+05 1.207610e+05 0.00 NULL
2014 Office Of The Comptroller City Custodial Assistant 36401.80000 1.820090e+05 31384.23 6.276846e+03 3787.130 1228.00 5 3.787130e+03 18935.65 2.133932e+05 2.009446e+05 12448.58 NULL
2014 Office Of The Comptroller Claim Specialist 56036.62857 1.961282e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 1.961282e+06 1.961282e+06 0.00 NULL
2014 Office Of The Comptroller Clerical Aide 21830.00000 4.366000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.366000e+04 4.366000e+04 0.00 NULL
2014 Office Of The Comptroller Clerical Associate Most Mayoral Ag 42039.62571 1.765664e+06 4248.69 1.011593e+02 0.000 172.78 42 0.000000e+00 0.00 1.769913e+06 1.765664e+06 4248.69 NULL
2014 Office Of The Comptroller College Aide 3626.56200 1.813281e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.813281e+04 1.813281e+04 0.00 NULL
2014 Office Of The Comptroller Community Assistant 24373.00000 7.311900e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.311900e+04 7.311900e+04 0.00 NULL
2014 Office Of The Comptroller Community Associate 42102.00000 4.631220e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 4.631220e+05 4.631220e+05 0.00 NULL
2014 Office Of The Comptroller Community Coordinator 56324.00000 1.689720e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.689720e+05 1.689720e+05 0.00 NULL
2014 Office Of The Comptroller Community Service Aide 11939.61667 3.581885e+04 3203.87 1.067957e+03 0.000 160.50 3 0.000000e+00 0.00 3.902272e+04 3.581885e+04 3203.87 NULL
2014 Office Of The Comptroller Comptroller 185000.00000 3.700000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.700000e+05 3.700000e+05 0.00 NULL
2014 Office Of The Comptroller Computer Aide-Non-Spvr 44647.60000 4.464760e+05 6618.28 6.618280e+02 0.000 213.00 10 0.000000e+00 0.00 4.530943e+05 4.464760e+05 6618.28 NULL
2014 Office Of The Comptroller Computer Associate 62792.36364 6.907160e+05 19293.33 1.753939e+03 0.000 421.75 11 0.000000e+00 0.00 7.100093e+05 6.907160e+05 19293.33 NULL
2014 Office Of The Comptroller Computer Operations Manager 156154.50000 3.123090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.123090e+05 3.123090e+05 0.00 NULL
2014 Office Of The Comptroller Computer Programmer Analyst 49794.00000 4.979400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.979400e+04 4.979400e+04 0.00 NULL
2014 Office Of The Comptroller Computer Service Technician 41337.00000 8.267400e+04 1358.17 6.790850e+02 679.085 50.00 2 6.790850e+02 1358.17 8.403217e+04 8.403217e+04 0.00 NULL
2014 Office Of The Comptroller Computer Specialist 82502.09091 9.075230e+05 440.80 4.007273e+01 0.000 7.75 11 0.000000e+00 0.00 9.079638e+05 9.075230e+05 440.80 NULL
2014 Office Of The Comptroller Computer Systems Manager 98557.12308 1.281243e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.281243e+06 1.281243e+06 0.00 NULL
2014 Office Of The Comptroller Confidential Investigator 58283.33333 1.748500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.748500e+05 1.748500e+05 0.00 NULL
2014 Office Of The Comptroller Confidential Strategy Planner 68500.00000 2.740000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.740000e+05 2.740000e+05 0.00 NULL
2014 Office Of The Comptroller Construction Project Manager 88922.00000 8.892200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.892200e+04 8.892200e+04 0.00 NULL
2014 Office Of The Comptroller Construction Project Manager Intern 52496.00000 5.249600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.249600e+04 5.249600e+04 0.00 NULL
2014 Office Of The Comptroller Custodian 57737.66667 1.732130e+05 49044.84 1.634828e+04 10648.370 1092.00 3 1.064837e+04 31945.11 2.222578e+05 2.051581e+05 17099.73 NULL
2014 Office Of The Comptroller Director Of Audits 182222.00000 3.644440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.644440e+05 3.644440e+05 0.00 NULL
2014 Office Of The Comptroller Economist 55531.09091 6.108420e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 6.108420e+05 6.108420e+05 0.00 NULL
2014 Office Of The Comptroller Executive Agency Counsel 127992.47826 2.943827e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 2.943827e+06 2.943827e+06 0.00 NULL
2014 Office Of The Comptroller Executive Assistant To The Comptroller 121553.00000 1.215530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.215530e+05 1.215530e+05 0.00 NULL
2014 Office Of The Comptroller First Deputy Comptroller 197000.00000 3.940000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.940000e+05 3.940000e+05 0.00 NULL
2014 Office Of The Comptroller Fraud Investigator 61682.50000 1.233650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.233650e+05 1.233650e+05 0.00 NULL
2014 Office Of The Comptroller Graphic Artist 10115.00000 1.011500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.011500e+04 1.011500e+04 0.00 NULL
2014 Office Of The Comptroller Investment Analyst 54021.60000 1.890756e+06 202.11 5.774571e+00 0.000 181.25 35 0.000000e+00 0.00 1.890958e+06 1.890756e+06 202.11 NULL
2014 Office Of The Comptroller Management Auditor 63383.53886 3.866396e+06 24561.99 4.026556e+02 0.000 509.00 61 0.000000e+00 0.00 3.890958e+06 3.866396e+06 24561.99 NULL
2014 Office Of The Comptroller Management Auditor Trainee 42733.86047 1.837556e+06 1495.58 3.478093e+01 0.000 54.00 43 0.000000e+00 0.00 1.839052e+06 1.837556e+06 1495.58 NULL
2014 Office Of The Comptroller Office Machine Aide 29436.50000 5.887300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.887300e+04 5.887300e+04 0.00 NULL
2014 Office Of The Comptroller Pension Investment Advisor 224578.00000 2.245780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.245780e+05 2.245780e+05 0.00 NULL
2014 Office Of The Comptroller Principal Administrative Associate - Lev 1 & 2 Non Supvr 54170.52045 1.516775e+06 4540.40 1.621571e+02 0.000 95.25 28 0.000000e+00 0.00 1.521315e+06 1.516775e+06 4540.40 NULL
2014 Office Of The Comptroller Procurement Analyst 58832.33333 7.059880e+05 3113.92 2.594933e+02 0.000 165.25 12 0.000000e+00 0.00 7.091019e+05 7.059880e+05 3113.92 NULL
2014 Office Of The Comptroller Project Manager 72212.00000 7.221200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.221200e+04 7.221200e+04 0.00 NULL
2014 Office Of The Comptroller Public Records Aide 19351.10000 5.805330e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.805330e+04 5.805330e+04 0.00 NULL
2014 Office Of The Comptroller Public Records Officer 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2014 Office Of The Comptroller Radio And Tevevision Operator 55000.00000 5.500000e+04 30.16 3.016000e+01 30.160 1.00 1 3.016000e+01 30.16 5.503016e+04 5.503016e+04 0.00 NULL
2014 Office Of The Comptroller Research And Liaison Coordinator 93262.26500 1.398934e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.398934e+06 1.398934e+06 0.00 NULL
2014 Office Of The Comptroller Research Assistant 43238.36667 1.297151e+05 1388.75 4.629167e+02 0.000 41.75 3 0.000000e+00 0.00 1.311039e+05 1.297151e+05 1388.75 NULL
2014 Office Of The Comptroller Second Deputy Comptroller 185000.00000 1.850000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.850000e+05 1.850000e+05 0.00 NULL
2014 Office Of The Comptroller Secretary 43443.60000 2.172180e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.172180e+05 2.172180e+05 0.00 NULL
2014 Office Of The Comptroller Secretary To The Comptroller 46000.00000 4.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.600000e+04 4.600000e+04 0.00 NULL
2014 Office Of The Comptroller Space Analyst 1237.98000 1.237980e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.237980e+03 1.237980e+03 0.00 NULL
2014 Office Of The Comptroller Staff Analyst 57057.00000 3.423420e+05 0.00 0.000000e+00 0.000 26.00 6 0.000000e+00 0.00 3.423420e+05 3.423420e+05 0.00 NULL
2014 Office Of The Comptroller Staff Analyst Trainee 38152.15762 8.011953e+05 4482.14 2.134352e+02 0.000 242.50 21 0.000000e+00 0.00 8.056774e+05 8.011953e+05 4482.14 NULL
2014 Office Of The Comptroller Statistician 60131.00000 1.202620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.202620e+05 1.202620e+05 0.00 NULL
2014 Office Of The Comptroller Summer College Intern 1884.65889 3.392386e+04 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 3.392386e+04 3.392386e+04 0.00 NULL
2014 Office Of The Comptroller Summer Graduate Intern 2610.14833 3.132178e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 3.132178e+04 3.132178e+04 0.00 NULL
2014 Office Of The Comptroller Supervising Computer Service Technician 72716.00000 7.271600e+04 3487.31 3.487310e+03 3487.310 84.25 1 3.487310e+03 3487.31 7.620331e+04 7.620331e+04 0.00 NULL
2014 Office Of The Comptroller Supervisor Of Motor Transport 55000.00000 1.100000e+05 598.06 2.990300e+02 299.030 14.00 2 2.990300e+02 598.06 1.105981e+05 1.105981e+05 0.00 NULL
2014 Office Of The Comptroller Telecommunications Associate 78023.00000 7.802300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.802300e+04 7.802300e+04 0.00 NULL
2014 Office Of The Mayor Administrative Assistant To The Mayor 91714.50000 1.834290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.834290e+05 1.834290e+05 0.00 NULL
2014 Office Of The Mayor Administrative Business Promotion Coordinator 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2014 Office Of The Mayor Administrative Manager 108124.62500 1.729994e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.729994e+06 1.729994e+06 0.00 NULL
2014 Office Of The Mayor Administrative Printing Services Manager 84500.00000 8.450000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.450000e+04 8.450000e+04 0.00 NULL
2014 Office Of The Mayor Administrative Project Manager 118004.50000 4.720180e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.720180e+05 4.720180e+05 0.00 NULL
2014 Office Of The Mayor Administrative Public Information Specialist 138000.00000 1.380000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.380000e+05 1.380000e+05 0.00 NULL
2014 Office Of The Mayor Administrative Staff Analyst 124280.58737 4.722662e+06 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 4.722662e+06 4.722662e+06 0.00 NULL
2014 Office Of The Mayor Assistant Housekeeper 74011.00000 7.401100e+04 13.29 1.329000e+01 13.290 0.25 1 1.329000e+01 13.29 7.402429e+04 7.402429e+04 0.00 NULL
2014 Office Of The Mayor Assistant Legislative Representative 79305.81250 1.268893e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.268893e+06 1.268893e+06 0.00 NULL
2014 Office Of The Mayor Assistant To City Administrator 61875.00000 6.187500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.187500e+04 6.187500e+04 0.00 NULL
2014 Office Of The Mayor Assistant To The Deputy Mayor 176366.80000 2.645502e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 2.645502e+06 2.645502e+06 0.00 NULL
2014 Office Of The Mayor Assistant To The Mayor 158317.25000 1.266538e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.266538e+06 1.266538e+06 0.00 NULL
2014 Office Of The Mayor Associate Staff Analyst 75295.00000 7.529500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.529500e+04 7.529500e+04 0.00 NULL
2014 Office Of The Mayor Asst Dir Of Intergvnmental Reltns For The Albany Office 163500.00000 3.270000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.270000e+05 3.270000e+05 0.00 NULL
2014 Office Of The Mayor Asst Dir Of Intergvnmentl Relatns For The Washngtn Off 167500.00000 3.350000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.350000e+05 3.350000e+05 0.00 NULL
2014 Office Of The Mayor Asst Director Of Intergovermental Rel For City Legist Affs 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2014 Office Of The Mayor Auditor 74713.50000 1.494270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.494270e+05 1.494270e+05 0.00 NULL
2014 Office Of The Mayor Calendar Assistant 83325.00000 8.332500e+04 228.03 2.280300e+02 228.030 0.00 1 2.280300e+02 228.03 8.355303e+04 8.355303e+04 0.00 NULL
2014 Office Of The Mayor Clerical Associate Most Mayoral Ag 41000.25000 1.640010e+05 31608.60 7.902150e+03 0.000 685.00 4 0.000000e+00 0.00 1.956096e+05 1.640010e+05 31608.60 NULL
2014 Office Of The Mayor Community Associate 45456.00000 4.545600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.545600e+04 4.545600e+04 0.00 NULL
2014 Office Of The Mayor Computer Operations Manager 94198.33333 8.477850e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.477850e+05 8.477850e+05 0.00 NULL
2014 Office Of The Mayor Computer Systems Manager 114185.00000 3.425550e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.425550e+05 3.425550e+05 0.00 NULL
2014 Office Of The Mayor Coordinator Of Criminal Justice 205180.00000 2.051800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.051800e+05 2.051800e+05 0.00 NULL
2014 Office Of The Mayor Coordinator Of Veterans’ Affairs 98904.00000 9.890400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.890400e+04 9.890400e+04 0.00 NULL
2014 Office Of The Mayor Deputy Mayor 186037.37500 1.488299e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.488299e+06 1.488299e+06 0.00 NULL
2014 Office Of The Mayor Director Correspondence Services 105582.00000 1.055820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.055820e+05 1.055820e+05 0.00 NULL
2014 Office Of The Mayor Director Of Community Assistance Unit 192198.00000 3.843960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.843960e+05 3.843960e+05 0.00 NULL
2014 Office Of The Mayor Director Of Intergovernmental Relations 200463.50000 4.009270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.009270e+05 4.009270e+05 0.00 NULL
2014 Office Of The Mayor Director Of Scheduling 87250.00000 1.745000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.745000e+05 1.745000e+05 0.00 NULL
2014 Office Of The Mayor Director, Nyc Art Commission 192198.00000 1.921980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.921980e+05 1.921980e+05 0.00 NULL
2014 Office Of The Mayor Director, Office Of Operations 187790.00000 3.755800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.755800e+05 3.755800e+05 0.00 NULL
2014 Office Of The Mayor Executive Administrator Of Gracie Mansion 101348.00000 1.013480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.013480e+05 1.013480e+05 0.00 NULL
2014 Office Of The Mayor Executive Agency Counsel 124124.80952 2.606621e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 2.606621e+06 2.606621e+06 0.00 NULL
2014 Office Of The Mayor Executive Assistant For Programs & Policy 115246.00000 2.304920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.304920e+05 2.304920e+05 0.00 NULL
2014 Office Of The Mayor Executive Assistant-Midtown Enforcement 63722.23000 6.372223e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.372223e+04 6.372223e+04 0.00 NULL
2014 Office Of The Mayor Executive Cook 97548.00000 9.754800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.754800e+04 9.754800e+04 0.00 NULL
2014 Office Of The Mayor First Deputy Mayor 245760.00000 4.915200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.915200e+05 4.915200e+05 0.00 NULL
2014 Office Of The Mayor Fiscal Responsibility Officer 70985.00000 7.098500e+04 845.07 8.450700e+02 845.070 10.50 1 8.450700e+02 845.07 7.183007e+04 7.183007e+04 0.00 NULL
2014 Office Of The Mayor Legislative Aide 51529.00000 5.152900e+04 1917.84 1.917840e+03 1917.840 72.00 1 1.917840e+03 1917.84 5.344684e+04 5.344684e+04 0.00 NULL
2014 Office Of The Mayor Mayor 112500.50000 2.250010e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.250010e+05 2.250010e+05 0.00 NULL
2014 Office Of The Mayor Mayoral Office Assistant 36843.43203 4.715959e+06 103262.32 8.067369e+02 86.400 4326.00 128 8.640000e+01 11059.20 4.819222e+06 4.727018e+06 92203.12 NULL
2014 Office Of The Mayor Mayoral Program Coordinator 59906.00000 1.317932e+06 24535.86 1.115266e+03 104.090 686.50 22 1.040900e+02 2289.98 1.342468e+06 1.320222e+06 22245.88 NULL
2014 Office Of The Mayor Press And Speech Aide 66166.00000 6.616600e+04 3014.97 3.014970e+03 3014.970 70.25 1 3.014970e+03 3014.97 6.918097e+04 6.918097e+04 0.00 NULL
2014 Office Of The Mayor Press Officer 109486.00000 2.189720e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 2.189720e+06 2.189720e+06 0.00 NULL
2014 Office Of The Mayor Project Planner 71966.00000 3.598300e+05 16823.55 3.364710e+03 2041.590 445.50 5 2.041590e+03 10207.95 3.766535e+05 3.700380e+05 6615.60 NULL
2014 Office Of The Mayor Publishing Associate 61547.50000 1.230950e+05 6222.56 3.111280e+03 3111.280 126.25 2 3.111280e+03 6222.56 1.293176e+05 1.293176e+05 0.00 NULL
2014 Office Of The Mayor Research Projects Coord 75781.33695 7.578134e+06 3815.38 3.815380e+01 0.000 133.75 100 0.000000e+00 0.00 7.581949e+06 7.578134e+06 3815.38 NULL
2014 Office Of The Mayor Research Projects Coordinator 57267.46154 7.444770e+05 30922.17 2.378628e+03 804.610 863.25 13 8.046100e+02 10459.93 7.753992e+05 7.549369e+05 20462.24 NULL
2014 Office Of The Mayor Secretary 62728.83333 3.763730e+05 16604.87 2.767478e+03 2834.310 462.75 6 2.767478e+03 16604.87 3.929779e+05 3.929779e+05 0.00 NULL
2014 Office Of The Mayor Senior Service Inspector 49870.00000 4.987000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.987000e+04 4.987000e+04 0.00 NULL
2014 Office Of The Mayor Service Inspector 36331.40000 1.816570e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.816570e+05 1.816570e+05 0.00 NULL
2014 Office Of The Mayor Special Assistant 82730.53893 1.464331e+07 16912.63 9.555158e+01 0.000 491.50 177 0.000000e+00 0.00 1.466022e+07 1.464331e+07 16912.63 NULL
2014 Office Of The Mayor Sr Project Planner 92920.33333 2.787610e+05 4389.58 1.463193e+03 0.000 69.25 3 0.000000e+00 0.00 2.831506e+05 2.787610e+05 4389.58 NULL
2014 Office Of The Mayor Staff Assistant 51451.10000 5.145110e+05 26796.33 2.679633e+03 2246.545 934.50 10 2.246545e+03 22465.45 5.413073e+05 5.369764e+05 4330.88 NULL
2014 Personnel Monitors Monitor 608.11474 7.406838e+05 7985.25 6.556034e+00 0.000 598.50 1218 0.000000e+00 0.00 7.486690e+05 7.406838e+05 7985.25 NULL
2014 Police Department Accountant 52170.41176 8.868970e+05 63063.51 3.709618e+03 1174.470 1525.75 17 1.174470e+03 19965.99 9.499605e+05 9.068630e+05 43097.52 NULL
2014 Police Department Adm Manager-Non-Mgrl 65115.18182 7.162670e+05 71254.56 6.477687e+03 2080.320 1454.25 11 2.080320e+03 22883.52 7.875216e+05 7.391505e+05 48371.04 NULL
2014 Police Department Adm School Security Manager 70652.66667 4.239160e+05 40233.35 6.705558e+03 5697.145 822.25 6 5.697145e+03 34182.87 4.641493e+05 4.580989e+05 6050.48 NULL
2014 Police Department Adm Traffic Enfrcmnt Agent 127992.00000 1.279920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.279920e+05 1.279920e+05 0.00 NULL
2014 Police Department Admin Contract Specialist 104146.66667 6.248800e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.248800e+05 6.248800e+05 0.00 NULL
2014 Police Department Admin Schl Secur Mgr 122000.00000 1.220000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.220000e+05 1.220000e+05 0.00 NULL
2014 Police Department Admin Traffic Enf Agnt 62356.37500 1.496553e+06 478475.66 1.993649e+04 21647.565 10415.00 24 1.993649e+04 478475.66 1.975029e+06 1.975029e+06 0.00 NULL
2014 Police Department Admin Traffic Enfrcmnt Agent 101732.50000 2.034650e+05 7854.09 3.927045e+03 3927.045 122.25 2 3.927045e+03 7854.09 2.113191e+05 2.113191e+05 0.00 NULL
2014 Police Department Administrative Accountant 88046.28571 6.163240e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.163240e+05 6.163240e+05 0.00 NULL
2014 Police Department Administrative Attorney 161125.50000 3.222510e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.222510e+05 3.222510e+05 0.00 NULL
2014 Police Department Administrative Investigator 86584.00000 8.658400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.658400e+04 8.658400e+04 0.00 NULL
2014 Police Department Administrative Labor Relations Analyst 198026.00000 1.980260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.980260e+05 1.980260e+05 0.00 NULL
2014 Police Department Administrative Printing Services Manager 106034.50000 2.120690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.120690e+05 2.120690e+05 0.00 NULL
2014 Police Department Administrative Procurement Analyst 74962.00000 2.248860e+05 62946.97 2.098232e+04 20426.420 1345.75 3 2.042642e+04 61279.26 2.878330e+05 2.861653e+05 1667.71 NULL
2014 Police Department Administrative Project Manager 112944.75000 4.517790e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.517790e+05 4.517790e+05 0.00 NULL
2014 Police Department Administrative Psychologist 102505.33333 3.075160e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.075160e+05 3.075160e+05 0.00 NULL
2014 Police Department Administrative Public Health Sanitarian 102532.00000 1.025320e+05 389.72 3.897200e+02 389.720 7.50 1 3.897200e+02 389.72 1.029217e+05 1.029217e+05 0.00 NULL
2014 Police Department Administrative Public Information Specialist 103986.50000 2.079730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.079730e+05 2.079730e+05 0.00 NULL
2014 Police Department Administrative Staff Analyst 94785.77647 8.056791e+06 324049.36 3.812345e+03 0.000 5584.50 85 0.000000e+00 0.00 8.380840e+06 8.056791e+06 324049.36 NULL
2014 Police Department Agency Attorney 77232.83333 4.170573e+06 533266.84 9.875312e+03 4093.650 8984.50 54 4.093650e+03 221057.10 4.703840e+06 4.391630e+06 312209.74 NULL
2014 Police Department Agency Attorney Interne 55106.00000 1.653180e+05 9637.48 3.212493e+03 3960.560 281.75 3 3.212493e+03 9637.48 1.749555e+05 1.749555e+05 0.00 NULL
2014 Police Department Agency Chief Contracting Officer 144853.00000 1.448530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.448530e+05 1.448530e+05 0.00 NULL
2014 Police Department Architect 73711.60000 3.685580e+05 29633.73 5.926746e+03 162.190 590.75 5 1.621900e+02 810.95 3.981917e+05 3.693690e+05 28822.78 NULL
2014 Police Department Assistant Advocate-Pd 85624.10526 1.626858e+06 9949.16 5.236400e+02 473.090 252.25 19 4.730900e+02 8988.71 1.636807e+06 1.635847e+06 960.45 NULL
2014 Police Department Assistant Architect 62433.50000 1.248670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.248670e+05 1.248670e+05 0.00 NULL
2014 Police Department Assistant Chemical Engineer 65698.00000 6.569800e+04 398.50 3.985000e+02 398.500 1.50 1 3.985000e+02 398.50 6.609650e+04 6.609650e+04 0.00 NULL
2014 Police Department Assistant Commissioner 155370.00000 4.661100e+05 19096.34 6.365447e+03 0.000 214.50 3 0.000000e+00 0.00 4.852063e+05 4.661100e+05 19096.34 NULL
2014 Police Department Assistant Counsel-Pd 90319.14286 6.322340e+05 126475.65 1.806795e+04 22971.050 2022.75 7 1.806795e+04 126475.65 7.587097e+05 7.587097e+05 0.00 NULL
2014 Police Department Assistant Deputy Commissioner 100412.00000 1.004120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.004120e+05 1.004120e+05 0.00 NULL
2014 Police Department Assistant Mechanical Engineer 66301.00000 6.630100e+04 14556.10 1.455610e+04 14556.100 336.75 1 1.455610e+04 14556.10 8.085710e+04 8.085710e+04 0.00 NULL
2014 Police Department Assistant To Police Commissionor 90000.50000 1.800010e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.800010e+05 1.800010e+05 0.00 NULL
2014 Police Department Assoc Spvr Of School Security 63276.70270 2.341238e+06 469194.26 1.268093e+04 14155.830 10715.50 37 1.268093e+04 469194.26 2.810432e+06 2.810432e+06 0.00 NULL
2014 Police Department Assoc Supvr Of Schl Sec 86298.75000 3.451950e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.451950e+05 3.451950e+05 0.00 NULL
2014 Police Department Associate Fingerprint Technician 37825.31429 1.323886e+06 41925.04 1.197858e+03 0.000 1092.50 35 0.000000e+00 0.00 1.365811e+06 1.323886e+06 41925.04 NULL
2014 Police Department Associate Investigator 44281.63710 2.834025e+06 415212.47 6.487695e+03 5954.015 10914.75 64 5.954015e+03 381056.96 3.249237e+06 3.215082e+06 34155.51 NULL
2014 Police Department Associate Parking Control Specialist 53515.33333 4.816380e+05 108493.73 1.205486e+04 12951.760 2677.75 9 1.205486e+04 108493.73 5.901317e+05 5.901317e+05 0.00 NULL
2014 Police Department Associate Project Manager 81405.00000 3.256200e+05 29279.26 7.319815e+03 658.215 402.75 4 6.582150e+02 2632.86 3.548993e+05 3.282529e+05 26646.40 NULL
2014 Police Department Associate Public Information Specialist 53496.00000 5.349600e+04 29.55 2.955000e+01 29.550 1.00 1 2.955000e+01 29.55 5.352555e+04 5.352555e+04 0.00 NULL
2014 Police Department Associate Quality Assurance Specialist 59426.00000 5.942600e+04 17489.44 1.748944e+04 17489.440 437.00 1 1.748944e+04 17489.44 7.691544e+04 7.691544e+04 0.00 NULL
2014 Police Department Associate Staff Analyst 69444.21918 5.069428e+06 291770.74 3.996859e+03 637.050 6034.25 73 6.370500e+02 46504.65 5.361199e+06 5.115933e+06 245266.09 NULL
2014 Police Department Associate Traffic Enforcement Agent 45236.52304 1.963265e+07 5650580.27 1.301977e+04 12311.270 169828.79 434 1.231127e+04 5343091.18 2.528323e+07 2.497574e+07 307489.09 NULL
2014 Police Department Attorney At Law 86275.66667 5.176540e+05 65993.76 1.099896e+04 72.030 867.75 6 7.203000e+01 432.18 5.836478e+05 5.180862e+05 65561.58 NULL
2014 Police Department Auto Body Worker 48425.45455 1.065360e+06 75063.57 3.411980e+03 3663.625 1936.68 22 3.411980e+03 75063.57 1.140424e+06 1.140424e+06 0.00 NULL
2014 Police Department Auto Mechanic NA NA 943224.95 4.990608e+03 4271.670 16499.92 189 4.271670e+03 807345.63 NA NA NA NULL
2014 Police Department Automotive Service Worker 35848.22857 1.254688e+06 75853.67 2.167248e+03 1312.420 2794.00 35 1.312420e+03 45934.70 1.330542e+06 1.300623e+06 29918.97 NULL
2014 Police Department Bookbinder 38247.00000 7.649400e+04 2596.36 1.298180e+03 1298.180 89.25 2 1.298180e+03 2596.36 7.909036e+04 7.909036e+04 0.00 NULL
2014 Police Department Bookkeeper 42318.20968 2.623729e+06 133035.59 2.145735e+03 39.875 4289.00 62 3.987500e+01 2472.25 2.756765e+06 2.626201e+06 130563.34 NULL
2014 Police Department Capt Det Chief Of Department 201096.00000 4.021920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.021920e+05 4.021920e+05 0.00 NULL
2014 Police Department Capt Det Chief Of Internal Affairs 199000.00000 3.980000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.980000e+05 3.980000e+05 0.00 NULL
2014 Police Department Capt Det Chief Of The Housing Bureau 199000.00000 1.990000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.990000e+05 1.990000e+05 0.00 NULL
2014 Police Department Capt Det Chief Of The Transit Bureau 199000.00000 1.990000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.990000e+05 1.990000e+05 0.00 NULL
2014 Police Department Capt-Det Chf Spec Operations-M 195480.00000 1.954800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.954800e+05 1.954800e+05 0.00 NULL
2014 Police Department Captain 136420.51402 5.838798e+07 492990.83 1.151848e+03 0.000 4941.74 428 0.000000e+00 0.00 5.888097e+07 5.838798e+07 492990.83 NULL
2014 Police Department Captain Chief Of Counterterrorism 199000.00000 1.990000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.990000e+05 1.990000e+05 0.00 NULL
2014 Police Department Captain D/A Deputy Chief Inspector 171142.00000 9.583952e+06 0.00 0.000000e+00 0.000 0.00 56 0.000000e+00 0.00 9.583952e+06 9.583952e+06 0.00 NULL
2014 Police Department Captain D/A Deputy Inspector 154300.00000 2.700250e+07 10179.42 5.816811e+01 0.000 0.00 175 0.000000e+00 0.00 2.701268e+07 2.700250e+07 10179.42 NULL
2014 Police Department Captain D/A Inspector 162472.00000 1.998406e+07 0.00 0.000000e+00 0.000 0.00 123 0.000000e+00 0.00 1.998406e+07 1.998406e+07 0.00 NULL
2014 Police Department Captain Detailed As Assistant Chief Inspector 198500.00000 4.565500e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 4.565500e+06 4.565500e+06 0.00 NULL
2014 Police Department Captain Detailed As Chief Of Detectives 199000.00000 3.980000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.980000e+05 3.980000e+05 0.00 NULL
2014 Police Department Captain Detailed As Chief Of Organized Crime Control 199000.00000 3.980000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.980000e+05 3.980000e+05 0.00 NULL
2014 Police Department Captain Detailed As Chief Of Patrol 199000.00000 3.980000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.980000e+05 3.980000e+05 0.00 NULL
2014 Police Department Captain-Chief Of Community Affairs 199000.00000 1.990000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.990000e+05 1.990000e+05 0.00 NULL
2014 Police Department Captain-Chief Of Intelligence 199000.00000 1.990000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.990000e+05 1.990000e+05 0.00 NULL
2014 Police Department Captain-Chief Of Staff 199000.00000 1.990000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.990000e+05 1.990000e+05 0.00 NULL
2014 Police Department Captain: Chief Of Transportation Bureau 199000.00000 3.980000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.980000e+05 3.980000e+05 0.00 NULL
2014 Police Department Carpenter NA NA 469032.35 2.233487e+04 28498.560 7811.25 21 2.233487e+04 469032.35 NA NA NA NULL
2014 Police Department Case Management Nurse 69075.94118 1.174291e+06 41149.06 2.420533e+03 809.560 796.00 17 8.095600e+02 13762.52 1.215440e+06 1.188054e+06 27386.54 NULL
2014 Police Department Cashier 45798.00000 1.831920e+05 18775.18 4.693795e+03 357.825 517.98 4 3.578250e+02 1431.30 2.019672e+05 1.846233e+05 17343.88 NULL
2014 Police Department Certified Applications Developer 92644.50000 1.852890e+05 56851.74 2.842587e+04 28425.870 822.00 2 2.842587e+04 56851.74 2.421407e+05 2.421407e+05 0.00 NULL
2014 Police Department Certified Database Administrator 94680.00000 9.468000e+04 4506.26 4.506260e+03 4506.260 82.50 1 4.506260e+03 4506.26 9.918626e+04 9.918626e+04 0.00 NULL
2014 Police Department Certified It Administrator 86434.70000 1.728694e+06 276876.55 1.384383e+04 13677.365 4703.16 20 1.367736e+04 273547.30 2.005571e+06 2.002241e+06 3329.25 NULL
2014 Police Department Certified It Developer 83965.80000 4.198290e+05 55908.64 1.118173e+04 11536.980 971.25 5 1.118173e+04 55908.64 4.757376e+05 4.757376e+05 0.00 NULL
2014 Police Department Certified Local Area Network Administrator 98208.16667 5.892490e+05 109935.80 1.832263e+04 20723.265 1552.00 6 1.832263e+04 109935.80 6.991848e+05 6.991848e+05 0.00 NULL
2014 Police Department Chaplain 31122.62500 2.489810e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 2.489810e+05 2.489810e+05 0.00 NULL
2014 Police Department Chief Of Staff 199000.00000 1.990000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.990000e+05 1.990000e+05 0.00 NULL
2014 Police Department City Attendant 31653.00000 3.165300e+04 18825.89 1.882589e+04 18825.890 746.00 1 1.882589e+04 18825.89 5.047889e+04 5.047889e+04 0.00 NULL
2014 Police Department City Custodial Assistant 30586.28192 8.747677e+06 574153.79 2.007531e+03 0.000 24957.40 286 0.000000e+00 0.00 9.321830e+06 8.747677e+06 574153.79 NULL
2014 Police Department City Dentist 25166.94180 2.516694e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.516694e+04 2.516694e+04 0.00 NULL
2014 Police Department City Deputy Medical Director 137628.00000 1.376280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.376280e+05 1.376280e+05 0.00 NULL
2014 Police Department City Laborer NA NA 123094.95 1.025791e+04 8629.090 2597.00 12 8.629090e+03 103549.08 NA NA NA NULL
2014 Police Department City Planner 93080.00000 9.308000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.308000e+04 9.308000e+04 0.00 NULL
2014 Police Department City Research Scientist 73620.00000 1.472400e+05 383.38 1.916900e+02 191.690 7.25 2 1.916900e+02 383.38 1.476234e+05 1.476234e+05 0.00 NULL
2014 Police Department Civilianization Manager-Pd 83681.00000 1.673620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.673620e+05 1.673620e+05 0.00 NULL
2014 Police Department Clerical Aide 16713.97775 8.356989e+04 2484.09 4.968180e+02 30.620 159.75 5 3.062000e+01 153.10 8.605398e+04 8.372299e+04 2330.99 NULL
2014 Police Department Clerical Associate 37764.69536 3.172234e+06 280756.13 3.342335e+03 657.410 9769.00 84 6.574100e+02 55222.44 3.452991e+06 3.227457e+06 225533.69 NULL
2014 Police Department College Aide 9335.92358 5.601554e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.601554e+04 5.601554e+04 0.00 NULL
2014 Police Department Commissioner 205180.00000 4.103600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.103600e+05 4.103600e+05 0.00 NULL
2014 Police Department Community Assistant 30699.40000 1.534970e+05 24608.75 4.921750e+03 0.000 937.00 5 0.000000e+00 0.00 1.781058e+05 1.534970e+05 24608.75 NULL
2014 Police Department Community Associate 43635.00000 1.745400e+05 5264.92 1.316230e+03 1498.755 231.25 4 1.316230e+03 5264.92 1.798049e+05 1.798049e+05 0.00 NULL
2014 Police Department Community Coordinator 57913.66667 1.737410e+05 5636.34 1.878780e+03 0.000 178.00 3 0.000000e+00 0.00 1.793773e+05 1.737410e+05 5636.34 NULL
2014 Police Department Compositor NA NA 37319.96 1.243999e+04 7302.360 564.25 3 7.302360e+03 21907.08 NA NA NA NULL
2014 Police Department Computer Aide 43536.00000 8.707200e+04 2216.39 1.108195e+03 1108.195 69.25 2 1.108195e+03 2216.39 8.928839e+04 8.928839e+04 0.00 NULL
2014 Police Department Computer Associate 63933.84444 8.631069e+06 690191.30 5.112528e+03 2836.780 15212.50 135 2.836780e+03 382965.30 9.321260e+06 9.014034e+06 307226.00 NULL
2014 Police Department Computer Operations Manager 125547.53846 1.632118e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.632118e+06 1.632118e+06 0.00 NULL
2014 Police Department Computer Programmer Analyst 53479.57143 3.743570e+05 36997.14 5.285306e+03 606.840 876.50 7 6.068400e+02 4247.88 4.113541e+05 3.786049e+05 32749.26 NULL
2014 Police Department Computer Specialist 89250.71739 4.105533e+06 518399.82 1.126956e+04 9866.965 8248.25 46 9.866965e+03 453880.39 4.623933e+06 4.559413e+06 64519.43 NULL
2014 Police Department Computer Systems Manager 130873.00000 7.852380e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.852380e+05 7.852380e+05 0.00 NULL
2014 Police Department Construction Project Manager 99861.00000 9.986100e+04 6710.67 6.710670e+03 6710.670 107.50 1 6.710670e+03 6710.67 1.065717e+05 1.065717e+05 0.00 NULL
2014 Police Department Counsel To The Police Commissioner 199000.00000 1.990000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.990000e+05 1.990000e+05 0.00 NULL
2014 Police Department Criminalist 64273.37766 1.208340e+07 1887365.84 1.003918e+04 9648.140 39736.50 188 9.648140e+03 1813850.32 1.397076e+07 1.389725e+07 73515.52 NULL
2014 Police Department Criminalist Assistant Director Of Laboratory 105596.80000 5.279840e+05 19425.23 3.885046e+03 0.000 352.00 5 0.000000e+00 0.00 5.474092e+05 5.279840e+05 19425.23 NULL
2014 Police Department Criminalist Deputy Director Of Labatory 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2014 Police Department Criminalist Director Of Laboratory 144000.00000 1.440000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.440000e+05 1.440000e+05 0.00 NULL
2014 Police Department Custodial Assistant 32166.05882 5.468230e+05 1656.42 9.743647e+01 0.000 62.50 17 0.000000e+00 0.00 5.484794e+05 5.468230e+05 1656.42 NULL
2014 Police Department Custodian 33675.21429 9.429060e+05 171898.00 6.139214e+03 3189.595 7085.25 28 3.189595e+03 89308.66 1.114804e+06 1.032215e+06 82589.34 NULL
2014 Police Department Deputy Chief Surgeon 138866.00000 5.554640e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.554640e+05 5.554640e+05 0.00 NULL
2014 Police Department Deputy Commissioner 196416.27273 2.160579e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 2.160579e+06 2.160579e+06 0.00 NULL
2014 Police Department Director Employee Management Division 145427.00000 1.454270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.454270e+05 1.454270e+05 0.00 NULL
2014 Police Department Director Management Information Systems 152675.00000 1.526750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.526750e+05 1.526750e+05 0.00 NULL
2014 Police Department Director Of Department Advocates Office 178774.00000 1.787740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.787740e+05 1.787740e+05 0.00 NULL
2014 Police Department Director Of Motor Transport 135253.00000 1.352530e+05 2017.32 2.017320e+03 2017.320 19.50 1 2.017320e+03 2017.32 1.372703e+05 1.372703e+05 0.00 NULL
2014 Police Department Director Of Photographic Services-Pd 70296.00000 7.029600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.029600e+04 7.029600e+04 0.00 NULL
2014 Police Department Director Of Psychological Services 120755.00000 1.207550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.207550e+05 1.207550e+05 0.00 NULL
2014 Police Department Director Of Support Services-Pd 176944.00000 1.769440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.769440e+05 1.769440e+05 0.00 NULL
2014 Police Department Director Of Training 195000.00000 3.900000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.900000e+05 3.900000e+05 0.00 NULL
2014 Police Department Electrician NA NA 745582.74 2.485276e+04 30282.005 10482.25 30 2.485276e+04 745582.74 NA NA NA NULL
2014 Police Department Electrician’s Helper NA NA 30346.34 3.034634e+04 30346.340 654.75 1 3.034634e+04 30346.34 NA NA NA NULL
2014 Police Department Elevator Mechanic NA NA 57917.26 2.895863e+04 28958.630 572.00 2 2.895863e+04 57917.26 NA NA NA NULL
2014 Police Department Employee Assistance Program Specialist 49897.00000 4.989700e+04 2423.79 2.423790e+03 2423.790 72.50 1 2.423790e+03 2423.79 5.232079e+04 5.232079e+04 0.00 NULL
2014 Police Department Evidence And Property Control Specialist 49075.14085 3.484335e+06 73857.68 1.040249e+03 67.940 2128.75 71 6.794000e+01 4823.74 3.558193e+06 3.489159e+06 69033.94 NULL
2014 Police Department Executive Agency Counsel 121805.34615 3.166939e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 3.166939e+06 3.166939e+06 0.00 NULL
2014 Police Department Executive Director, Technological Development 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2014 Police Department Fingerprint Technician Trainee 26453.00000 5.290600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.290600e+04 5.290600e+04 0.00 NULL
2014 Police Department First Deputy Commissioner 201139.00000 2.011390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.011390e+05 2.011390e+05 0.00 NULL
2014 Police Department Fitness Instructor 50608.08333 6.072970e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 6.072970e+05 6.072970e+05 0.00 NULL
2014 Police Department Glazier NA NA 41750.80 2.087540e+04 20875.400 568.00 2 2.087540e+04 41750.80 NA NA NA NULL
2014 Police Department Graphic Artist 57050.00000 1.141000e+05 15475.97 7.737985e+03 7737.985 409.50 2 7.737985e+03 15475.97 1.295760e+05 1.295760e+05 0.00 NULL
2014 Police Department Highway Transportation Specialist 92249.00000 9.224900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.224900e+04 9.224900e+04 0.00 NULL
2014 Police Department Horseshoer NA NA 4868.54 1.622847e+03 1447.970 102.00 3 1.447970e+03 4343.91 NA NA NA NULL
2014 Police Department Hostler 34334.60656 8.240306e+05 92450.49 3.852104e+03 3777.715 3736.00 24 3.777715e+03 90665.16 9.164810e+05 9.146957e+05 1785.33 NULL
2014 Police Department Intelligence Research Manager 138646.66667 8.318800e+05 348.74 5.812333e+01 0.000 3.50 6 0.000000e+00 0.00 8.322287e+05 8.318800e+05 348.74 NULL
2014 Police Department Intelligence Research Specialist 83372.88462 4.335390e+06 601658.50 1.157036e+04 8931.550 9919.25 52 8.931550e+03 464440.60 4.937048e+06 4.799831e+06 137217.90 NULL
2014 Police Department Investigator 40776.80435 1.875733e+06 289294.92 6.289020e+03 6379.225 9277.25 46 6.289020e+03 289294.92 2.165028e+06 2.165028e+06 0.00 NULL
2014 Police Department Investigator Trainee 36985.42105 7.027230e+05 98791.75 5.199566e+03 3784.340 3887.50 19 3.784340e+03 71902.46 8.015148e+05 7.746255e+05 26889.29 NULL
2014 Police Department Lieutenant 109006.45692 1.796426e+08 32469515.17 1.970238e+04 19085.340 372596.34 1648 1.908534e+04 31452640.32 2.121122e+08 2.110953e+08 1016874.85 NULL
2014 Police Department Lieutenant D/A Commander Of Detective Squad 120597.08333 1.881314e+07 4864555.97 3.118305e+04 37667.150 50655.65 156 3.118305e+04 4864555.97 2.367770e+07 2.367770e+07 0.00 NULL
2014 Police Department Lieutenant D/A Special Assignment 121075.09402 1.416579e+07 2858240.46 2.442941e+04 26791.790 29849.22 117 2.442941e+04 2858240.46 1.702403e+07 1.702403e+07 0.00 NULL
2014 Police Department Locksmith NA NA 18648.01 9.324005e+03 9324.005 515.00 2 9.324005e+03 18648.01 NA NA NA NULL
2014 Police Department Maintenance Worker NA NA 682631.56 1.896199e+04 21864.485 17741.00 36 1.896199e+04 682631.56 NA NA NA NULL
2014 Police Department Management Auditor 59956.25000 7.194750e+05 41439.13 3.453261e+03 0.000 924.50 12 0.000000e+00 0.00 7.609141e+05 7.194750e+05 41439.13 NULL
2014 Police Department Management Auditor Trainee 44048.00000 4.404800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.404800e+04 4.404800e+04 0.00 NULL
2014 Police Department Manager Of Radio Repair Operations 107101.00000 1.071010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.071010e+05 1.071010e+05 0.00 NULL
2014 Police Department Marine Maintenance Mechanic 60332.00000 1.206640e+05 635.68 3.178400e+02 317.840 12.50 2 3.178400e+02 635.68 1.212997e+05 1.212997e+05 0.00 NULL
2014 Police Department Mechanical Engineer 89641.50000 1.792830e+05 37675.49 1.883774e+04 18837.745 483.00 2 1.883774e+04 37675.49 2.169585e+05 2.169585e+05 0.00 NULL
2014 Police Department Mechanical Engineering Intern 48126.00000 4.812600e+04 4059.73 4.059730e+03 4059.730 152.50 1 4.059730e+03 4059.73 5.218573e+04 5.218573e+04 0.00 NULL
2014 Police Department Media Services Technician 47108.57143 3.297600e+05 15493.37 2.213339e+03 0.000 403.75 7 0.000000e+00 0.00 3.452534e+05 3.297600e+05 15493.37 NULL
2014 Police Department Motor Vehicle Operator 41530.41860 1.785808e+06 195969.17 4.557423e+03 2414.950 6025.25 43 2.414950e+03 103842.85 1.981777e+06 1.889651e+06 92126.32 NULL
2014 Police Department Motor Vehicle Supervisor 49773.50000 1.990940e+05 23850.51 5.962627e+03 4917.020 656.75 4 4.917020e+03 19668.08 2.229445e+05 2.187621e+05 4182.43 NULL
2014 Police Department Nutritionist 69093.00000 6.909300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.909300e+04 6.909300e+04 0.00 NULL
2014 Police Department Office Machine Aide 31954.33333 9.586300e+04 111.37 3.712333e+01 0.000 5.25 3 0.000000e+00 0.00 9.597437e+04 9.586300e+04 111.37 NULL
2014 Police Department Oiler NA NA 341303.22 1.551378e+04 13282.440 5048.75 22 1.328244e+04 292213.68 NA NA NA NULL
2014 Police Department Operations Communications Specialist 38987.25000 1.559490e+05 18102.87 4.525717e+03 1278.010 551.50 4 1.278010e+03 5112.04 1.740519e+05 1.610610e+05 12990.83 NULL
2014 Police Department P.o. Da Det Gr3 86511.31307 2.674930e+08 68882708.26 2.227772e+04 24897.920 1004352.80 3092 2.227772e+04 68882708.26 3.363757e+08 3.363757e+08 0.00 NULL
2014 Police Department P.o. Det Spec 85788.23324 5.885073e+07 12807477.47 1.866979e+04 20682.705 190221.20 686 1.866979e+04 12807477.47 7.165821e+07 7.165821e+07 0.00 NULL
2014 Police Department Painter NA NA 260318.42 2.366531e+04 31285.400 4595.00 11 2.366531e+04 260318.42 NA NA NA NULL
2014 Police Department Paralegal Aide 39474.71429 2.763230e+05 5705.37 8.150529e+02 0.000 180.25 7 0.000000e+00 0.00 2.820284e+05 2.763230e+05 5705.37 NULL
2014 Police Department Parking Control Specialist 39677.08333 9.522500e+05 148244.25 6.176844e+03 4818.910 5401.00 24 4.818910e+03 115653.84 1.100494e+06 1.067904e+06 32590.41 NULL
2014 Police Department Photographer 39835.39130 9.162140e+05 43511.72 1.891814e+03 1458.080 1592.25 23 1.458080e+03 33535.84 9.597257e+05 9.497498e+05 9975.88 NULL
2014 Police Department Plumber NA NA 343763.76 2.455455e+04 31137.270 3828.75 14 2.455455e+04 343763.76 NA NA NA NULL
2014 Police Department Police Administrative Aide 34808.51231 5.089004e+07 1224961.85 8.378672e+02 0.000 46707.36 1462 0.000000e+00 0.00 5.211501e+07 5.089004e+07 1224961.85 NULL
2014 Police Department Police Attendant 36254.51613 1.123890e+06 155656.03 5.021162e+03 5127.130 5646.75 31 5.021162e+03 155656.03 1.279546e+06 1.279546e+06 0.00 NULL
2014 Police Department Police Cadet 5013.74361 1.138120e+06 0.00 0.000000e+00 0.000 0.00 227 0.000000e+00 0.00 1.138120e+06 1.138120e+06 0.00 NULL
2014 Police Department Police Communications Technician 41508.99200 5.707486e+07 6831436.37 4.968317e+03 3274.640 219173.66 1375 3.274640e+03 4502630.00 6.390630e+07 6.157749e+07 2328806.37 NULL
2014 Police Department Police Officer 66409.25189 1.570512e+09 230064640.79 9.728303e+03 7480.490 4180372.66 23649 7.480490e+03 176906108.01 1.800577e+09 1.747419e+09 53158532.78 NULL
2014 Police Department Police Officer D/A Detective 1st Gr 112555.12667 5.064981e+07 13033865.05 2.896414e+04 32694.110 147053.54 450 2.896414e+04 13033865.05 6.368367e+07 6.368367e+07 0.00 NULL
2014 Police Department Police Officer D/A Detective 2nd Gr 98034.61139 1.152887e+08 31955138.89 2.717274e+04 31472.585 413855.64 1176 2.717274e+04 31955138.89 1.472438e+08 1.472438e+08 0.00 NULL
2014 Police Department Police Officer, Special Assignment 78883.00000 3.944150e+05 38168.33 7.633666e+03 4032.450 557.02 5 4.032450e+03 20162.25 4.325833e+05 4.145772e+05 18006.08 NULL
2014 Police Department Police Surgeon 125651.62963 3.392594e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 3.392594e+06 3.392594e+06 0.00 NULL
2014 Police Department Precinct Community Relations Aide 24905.42100 1.245271e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.245271e+05 1.245271e+05 0.00 NULL
2014 Police Department Precinct Receptionist 18224.82562 3.827213e+05 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 3.827213e+05 3.827213e+05 0.00 NULL
2014 Police Department Principal Administrative Associate - Lev 1 & 2 Non Supvr 51404.12500 1.603809e+07 724227.75 2.321243e+03 0.000 19663.95 312 0.000000e+00 0.00 1.676231e+07 1.603809e+07 724227.75 NULL
2014 Police Department Principal Fingerprint Technician 45390.66667 2.723440e+05 24.82 4.136667e+00 0.000 1.00 6 0.000000e+00 0.00 2.723688e+05 2.723440e+05 24.82 NULL
2014 Police Department Principal Police Communication Technician 63350.65574 3.864390e+06 911423.52 1.494137e+04 11616.570 19360.50 61 1.161657e+04 708610.77 4.775814e+06 4.573001e+06 202812.75 NULL
2014 Police Department Printing Press Operator NA NA 136401.06 9.742933e+03 11399.520 2888.25 14 9.742933e+03 136401.06 NA NA NA NULL
2014 Police Department Procurement Analyst 51171.04000 1.279276e+06 112909.58 4.516383e+03 1235.750 3187.75 25 1.235750e+03 30893.75 1.392186e+06 1.310170e+06 82015.83 NULL
2014 Police Department Psychologist 62467.60272 1.499222e+06 25891.00 1.078792e+03 25.700 802.25 24 2.570000e+01 616.80 1.525113e+06 1.499839e+06 25274.20 NULL
2014 Police Department Public Health Assistant 31064.00000 6.212800e+04 108.62 5.431000e+01 54.310 5.50 2 5.431000e+01 108.62 6.223662e+04 6.223662e+04 0.00 NULL
2014 Police Department Public Records Officer 39964.00000 7.992800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.992800e+04 7.992800e+04 0.00 NULL
2014 Police Department Radio Repair Mechanic NA NA 989519.90 1.393690e+04 13899.000 15918.50 71 1.389900e+04 986829.00 NA NA NA NULL
2014 Police Department Research Assistant 55707.00000 5.570700e+04 5005.66 5.005660e+03 5005.660 110.75 1 5.005660e+03 5005.66 6.071266e+04 6.071266e+04 0.00 NULL
2014 Police Department Roofer NA NA 18552.04 1.855204e+04 18552.040 287.00 1 1.855204e+04 18552.04 NA NA NA NULL
2014 Police Department School Crossing Guard 10265.52118 2.575619e+07 499.27 1.989916e-01 0.000 39.00 2509 0.000000e+00 0.00 2.575669e+07 2.575619e+07 499.27 NULL
2014 Police Department School Safety Agent 34953.25117 1.866154e+08 38379888.73 7.188591e+03 6306.100 1501203.99 5339 6.306100e+03 33668267.90 2.249953e+08 2.202837e+08 4711620.83 NULL
2014 Police Department Secretary 38761.38636 1.705501e+06 79171.96 1.799363e+03 0.000 2684.50 44 0.000000e+00 0.00 1.784673e+06 1.705501e+06 79171.96 NULL
2014 Police Department Secretary Of The Department 199000.00000 3.980000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.980000e+05 3.980000e+05 0.00 NULL
2014 Police Department Secretary To The Commissioner 89563.00000 8.956300e+04 10135.03 1.013503e+04 10135.030 244.25 1 1.013503e+04 10135.03 9.969803e+04 9.969803e+04 0.00 NULL
2014 Police Department Senior Office Appliance Maintainer 35385.00000 3.538500e+04 3609.57 3.609570e+03 3609.570 149.50 1 3.609570e+03 3609.57 3.899457e+04 3.899457e+04 0.00 NULL
2014 Police Department Senior Photographer 48169.62500 3.853570e+05 59992.45 7.499056e+03 8418.145 1826.50 8 7.499056e+03 59992.45 4.453495e+05 4.453495e+05 0.00 NULL
2014 Police Department Senior Police Administrative Aide 42701.14455 3.958396e+07 1132869.29 1.222081e+03 0.000 37551.92 927 0.000000e+00 0.00 4.071683e+07 3.958396e+07 1132869.29 NULL
2014 Police Department Senior Stationary Engineer NA NA 26306.51 2.630651e+04 26306.510 304.50 1 2.630651e+04 26306.51 NA NA NA NULL
2014 Police Department Sergeant 91013.73203 4.014616e+08 65641123.46 1.488123e+04 12320.400 885838.90 4411 1.232040e+04 54345284.40 4.671027e+08 4.558069e+08 11295839.06 NULL
2014 Police Department Sergeant D/A Supervisor Detective Squad 108014.55440 4.169362e+07 10555930.45 2.734697e+04 31429.655 122195.19 386 2.734697e+04 10555930.45 5.224955e+07 5.224955e+07 0.00 NULL
2014 Police Department Sergeantd/A Special Assignment 107599.24082 2.636181e+07 5442369.58 2.221375e+04 24057.630 63324.62 245 2.221375e+04 5442369.58 3.180418e+07 3.180418e+07 0.00 NULL
2014 Police Department Sheet Metal Worker NA NA 204161.16 3.402686e+04 34104.000 2069.25 6 3.402686e+04 204161.16 NA NA NA NULL
2014 Police Department Special Officer 42397.66667 1.271930e+05 12051.23 4.017077e+03 3452.520 400.50 3 3.452520e+03 10357.56 1.392442e+05 1.375506e+05 1693.67 NULL
2014 Police Department Staff Analyst 57393.26087 1.320045e+06 94480.70 4.107857e+03 35.690 2300.00 23 3.569000e+01 820.87 1.414526e+06 1.320866e+06 93659.83 NULL
2014 Police Department Staff Analyst Trainee 43250.92143 1.211026e+06 11958.39 4.270854e+02 0.000 459.50 28 0.000000e+00 0.00 1.222984e+06 1.211026e+06 11958.39 NULL
2014 Police Department Stationary Engineer NA NA 265322.82 1.658268e+04 19908.655 3577.50 16 1.658268e+04 265322.82 NA NA NA NULL
2014 Police Department Steam Fitter NA NA 286300.08 2.602728e+04 30598.260 3017.00 11 2.602728e+04 286300.08 NA NA NA NULL
2014 Police Department Stenographer To Each Deputy Commissioner 50678.00000 2.533900e+05 38522.41 7.704482e+03 0.000 1071.50 5 0.000000e+00 0.00 2.919124e+05 2.533900e+05 38522.41 NULL
2014 Police Department Stenographic Specialist 46478.50000 9.295700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.295700e+04 9.295700e+04 0.00 NULL
2014 Police Department Stock Worker 33720.75862 9.779020e+05 71401.74 2.462129e+03 1066.360 3163.50 29 1.066360e+03 30924.44 1.049304e+06 1.008826e+06 40477.30 NULL
2014 Police Department Summer College Intern 2406.81623 6.739085e+04 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 6.739085e+04 6.739085e+04 0.00 NULL
2014 Police Department Summer Graduate Intern 4563.99895 8.671598e+04 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 8.671598e+04 8.671598e+04 0.00 NULL
2014 Police Department Supervising Chief Surgeon 199000.00000 1.990000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.990000e+05 1.990000e+05 0.00 NULL
2014 Police Department Supervising Police Communications Technician 55903.70701 8.776882e+06 1716996.96 1.093629e+04 9271.770 42202.00 157 9.271770e+03 1455667.89 1.049388e+07 1.023255e+07 261329.07 NULL
2014 Police Department Supervisor 65330.00000 2.613200e+05 141279.13 3.531978e+04 35233.340 2859.75 4 3.523334e+04 140933.36 4.025991e+05 4.022534e+05 345.77 NULL
2014 Police Department Supervisor Carpenter NA NA 55440.46 2.772023e+04 27720.230 805.50 2 2.772023e+04 55440.46 NA NA NA NULL
2014 Police Department Supervisor Electrician NA NA 107248.07 2.681202e+04 29019.255 1350.50 4 2.681202e+04 107248.07 NA NA NA NULL
2014 Police Department Supervisor Elevator Mechanic NA NA 76552.44 7.655244e+04 76552.440 579.00 1 7.655244e+04 76552.44 NA NA NA NULL
2014 Police Department Supervisor Glazier NA NA 35380.40 3.538040e+04 35380.400 476.00 1 3.538040e+04 35380.40 NA NA NA NULL
2014 Police Department Supervisor Locksmith NA NA 12552.75 1.255275e+04 12552.750 310.00 1 1.255275e+04 12552.75 NA NA NA NULL
2014 Police Department Supervisor Of Mechanical Installations & Maintenance 65698.00000 6.569800e+04 32671.66 3.267166e+04 32671.660 684.50 1 3.267166e+04 32671.66 9.836966e+04 9.836966e+04 0.00 NULL
2014 Police Department Supervisor Of Mechanics 104050.29412 5.306565e+06 444269.56 8.711168e+03 8906.620 5660.50 51 8.711168e+03 444269.56 5.750835e+06 5.750835e+06 0.00 NULL
2014 Police Department Supervisor Of Office Machine Operations 38581.50000 7.716300e+04 12101.61 6.050805e+03 6050.805 380.25 2 6.050805e+03 12101.61 8.926461e+04 8.926461e+04 0.00 NULL
2014 Police Department Supervisor Of Radio Repair Operations 74926.00000 2.997040e+05 29331.45 7.332863e+03 5353.760 529.00 4 5.353760e+03 21415.04 3.290355e+05 3.211190e+05 7916.41 NULL
2014 Police Department Supervisor Of School Security 58942.81102 7.485737e+06 1388882.76 1.093608e+04 12301.020 33986.75 127 1.093608e+04 1388882.76 8.874620e+06 8.874620e+06 0.00 NULL
2014 Police Department Supervisor Of Stock Workers 41865.25000 1.674610e+05 19457.21 4.864302e+03 2498.130 678.25 4 2.498130e+03 9992.52 1.869182e+05 1.774535e+05 9464.69 NULL
2014 Police Department Supervisor Painter NA NA 35656.53 3.565653e+04 35656.530 542.25 1 3.565653e+04 35656.53 NA NA NA NULL
2014 Police Department Supervisor Plumber NA NA 69324.50 3.466225e+04 34662.250 710.50 2 3.466225e+04 69324.50 NA NA NA NULL
2014 Police Department Supervisor Roofer NA NA 33590.70 3.359070e+04 33590.700 575.50 1 3.359070e+04 33590.70 NA NA NA NULL
2014 Police Department Supervisor Sheet Metal Worker NA NA 11468.52 1.146852e+04 11468.520 88.00 1 1.146852e+04 11468.52 NA NA NA NULL
2014 Police Department Supervisor Steamfitter NA NA 33126.50 3.312650e+04 33126.500 332.50 1 3.312650e+04 33126.50 NA NA NA NULL
2014 Police Department Supervisor Thermostat Repair NA NA 32938.29 3.293829e+04 32938.290 346.00 1 3.293829e+04 32938.29 NA NA NA NULL
2014 Police Department Surgeon 127497.00000 1.274970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.274970e+05 1.274970e+05 0.00 NULL
2014 Police Department Surgeon Detailed As Deputy Chief Surgeon 138866.00000 1.388660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.388660e+05 1.388660e+05 0.00 NULL
2014 Police Department Telecommunications Associate 57080.66667 1.712420e+05 4407.76 1.469253e+03 1590.060 92.25 3 1.469253e+03 4407.76 1.756498e+05 1.756498e+05 0.00 NULL
2014 Police Department Telephone Service Technician 56454.50000 1.129090e+05 21535.09 1.076755e+04 10767.545 560.75 2 1.076755e+04 21535.09 1.344441e+05 1.344441e+05 0.00 NULL
2014 Police Department Tests And Measurement Specialist 76109.00000 7.610900e+04 2426.30 2.426300e+03 2426.300 69.25 1 2.426300e+03 2426.30 7.853530e+04 7.853530e+04 0.00 NULL
2014 Police Department Thermostat Repairer NA NA 152155.07 3.043101e+04 31654.880 1632.00 5 3.043101e+04 152155.07 NA NA NA NULL
2014 Police Department Traffic Enforc Agent 41914.03750 1.341249e+07 3946785.50 1.233370e+04 12186.775 123014.63 320 1.218677e+04 3899768.00 1.735928e+07 1.731226e+07 47017.50 NULL
2014 Police Department Traffic Enforcement Agent 33624.26294 8.900342e+07 16697986.95 6.308269e+03 4075.350 663823.79 2647 4.075350e+03 10787451.45 1.057014e+08 9.979088e+07 5910535.50 NULL
2014 Police Department Welder NA NA 68034.42 3.401721e+04 34017.210 913.75 2 3.401721e+04 68034.42 NA NA NA NULL
2014 Public Administrator-Bronx Community Associate 41833.33333 1.255000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.255000e+05 1.255000e+05 0.00 NULL
2014 Public Administrator-Bronx Decedent Property Agent 43500.00000 4.350000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.350000e+04 4.350000e+04 0.00 NULL
2014 Public Administrator-Bronx Deputy Public Administator 100200.00000 2.004000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.004000e+05 2.004000e+05 0.00 NULL
2014 Public Administrator-Bronx Principal Administrative Associate - Lev 1 & 2 Non Supvr 52903.00000 5.290300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.290300e+04 5.290300e+04 0.00 NULL
2014 Public Administrator-Bronx Public Administrator 150300.00000 1.503000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503000e+05 1.503000e+05 0.00 NULL
2014 Public Administrator-Kings Community Assistant 32796.00000 3.279600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.279600e+04 3.279600e+04 0.00 NULL
2014 Public Administrator-Kings Community Associate 39000.75000 1.560030e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.560030e+05 1.560030e+05 0.00 NULL
2014 Public Administrator-Kings Community Coordinator 56957.00000 1.139140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.139140e+05 1.139140e+05 0.00 NULL
2014 Public Administrator-Kings Decedent Property Agent 42290.66667 1.268720e+05 71.04 2.368000e+01 0.000 0.00 3 0.000000e+00 0.00 1.269430e+05 1.268720e+05 71.04 NULL
2014 Public Administrator-Kings Deputy Public Administator 104400.00000 1.044000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.044000e+05 1.044000e+05 0.00 NULL
2014 Public Administrator-Kings Public Administrator 156600.00000 1.566000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.566000e+05 1.566000e+05 0.00 NULL
2014 Public Administrator-New York Accountant 56312.00000 5.631200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.631200e+04 5.631200e+04 0.00 NULL
2014 Public Administrator-New York Clerical Associate Most Mayoral Ag 36164.00000 1.446560e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.446560e+05 1.446560e+05 0.00 NULL
2014 Public Administrator-New York Decedent Property Agent 38608.50000 1.544340e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.544340e+05 1.544340e+05 0.00 NULL
2014 Public Administrator-New York Deputy Public Administator 104400.00000 1.044000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.044000e+05 1.044000e+05 0.00 NULL
2014 Public Administrator-New York Principal Administrative Associate - Lev 1 & 2 Non Supvr 53900.00000 5.390000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.390000e+04 5.390000e+04 0.00 NULL
2014 Public Administrator-New York Public Administrator 156600.00000 1.566000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.566000e+05 1.566000e+05 0.00 NULL
2014 Public Administrator-Queens Decedent Property Agent 39192.00000 1.959600e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.959600e+05 1.959600e+05 0.00 NULL
2014 Public Administrator-Queens Deputy Public Administator 104922.00000 1.049220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.049220e+05 1.049220e+05 0.00 NULL
2014 Public Administrator-Queens Public Administrator 156600.00000 1.566000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.566000e+05 1.566000e+05 0.00 NULL
2014 Public Administrator-Richmond Deputy Public Administator 104400.00000 1.044000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.044000e+05 1.044000e+05 0.00 NULL
2014 Public Administrator-Richmond Public Administrator 156600.00000 1.566000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.566000e+05 1.566000e+05 0.00 NULL
2014 Public Administrator-Richmond Secretary To Public Administrator 52881.00000 1.586430e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.586430e+05 1.586430e+05 0.00 NULL
2014 Public Advocate Assistant To The Public Advocate 35842.52564 1.397858e+06 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 1.397858e+06 1.397858e+06 0.00 NULL
2014 Public Advocate Associate Staff Analyst 69623.20000 3.481160e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.481160e+05 3.481160e+05 0.00 NULL
2014 Public Advocate Counsel To The Public Advocate 108333.33333 3.250000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.250000e+05 3.250000e+05 0.00 NULL
2014 Public Advocate Director Of Communications 100000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2014 Public Advocate Director Of The Ombudsman Program 80500.00000 1.610000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.610000e+05 1.610000e+05 0.00 NULL
2014 Public Advocate Executive Assistant And Counsel To The Public Advocate 85000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2014 Public Advocate Executive Secretary To The Public Advocate 38000.00000 3.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.800000e+04 3.800000e+04 0.00 NULL
2014 Public Advocate First Assistant To The Public Advocate 122500.00000 2.450000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.450000e+05 2.450000e+05 0.00 NULL
2014 Public Advocate Legislative Information Officer 79642.85714 5.575000e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.575000e+05 5.575000e+05 0.00 NULL
2014 Public Advocate Office Assistant 35000.00000 3.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.500000e+04 3.500000e+04 0.00 NULL
2014 Public Advocate Office Manager 55000.00000 5.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.500000e+04 5.500000e+04 0.00 NULL
2014 Public Advocate Public Advocate 165000.00000 3.300000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.300000e+05 3.300000e+05 0.00 NULL
2014 Public Advocate Research Analyst To The Public Advocate 70416.66667 2.112500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.112500e+05 2.112500e+05 0.00 NULL
2014 Public Service Corps College Aide 1982.75204 1.060772e+06 0.00 0.000000e+00 0.000 0.00 535 0.000000e+00 0.00 1.060772e+06 1.060772e+06 0.00 NULL
2014 Queens Community Board #1 Community Associate 19425.40000 3.885080e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.885080e+04 3.885080e+04 0.00 NULL
2014 Queens Community Board #1 District Manager 87610.00000 8.761000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.761000e+04 8.761000e+04 0.00 NULL
2014 Queens Community Board #10 Community Associate 38084.50000 7.616900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.616900e+04 7.616900e+04 0.00 NULL
2014 Queens Community Board #10 Community Coordinator 13367.83000 1.336783e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.336783e+04 1.336783e+04 0.00 NULL
2014 Queens Community Board #10 District Manager 75458.00000 7.545800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.545800e+04 7.545800e+04 0.00 NULL
2014 Queens Community Board #11 Community Assistant 40800.00000 4.080000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.080000e+04 4.080000e+04 0.00 NULL
2014 Queens Community Board #11 Community Coordinator 54095.00000 5.409500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.409500e+04 5.409500e+04 0.00 NULL
2014 Queens Community Board #11 District Manager 89209.00000 8.920900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.920900e+04 8.920900e+04 0.00 NULL
2014 Queens Community Board #12 City Seasonal Aide 15511.00000 1.551100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.551100e+04 1.551100e+04 0.00 NULL
2014 Queens Community Board #12 Community Assistant 34917.00000 3.491700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.491700e+04 3.491700e+04 0.00 NULL
2014 Queens Community Board #12 Community Service Aide 29323.00000 2.932300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.932300e+04 2.932300e+04 0.00 NULL
2014 Queens Community Board #12 District Manager 100294.00000 1.002940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.002940e+05 1.002940e+05 0.00 NULL
2014 Queens Community Board #13 Community Associate 29172.00000 2.917200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.917200e+04 2.917200e+04 0.00 NULL
2014 Queens Community Board #13 Community Coordinator 54896.00000 5.489600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.489600e+04 5.489600e+04 0.00 NULL
2014 Queens Community Board #13 District Manager 81738.00000 8.173800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.173800e+04 8.173800e+04 0.00 NULL
2014 Queens Community Board #14 Community Coordinator 60453.00000 6.045300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.045300e+04 6.045300e+04 0.00 NULL
2014 Queens Community Board #14 Community Service Aide 12235.00000 1.223500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.223500e+04 1.223500e+04 0.00 NULL
2014 Queens Community Board #14 District Manager 108795.00000 1.087950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.087950e+05 1.087950e+05 0.00 NULL
2014 Queens Community Board #2 Community Assistant 32007.00000 3.200700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.200700e+04 3.200700e+04 0.00 NULL
2014 Queens Community Board #2 Community Associate 51148.00000 5.114800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.114800e+04 5.114800e+04 0.00 NULL
2014 Queens Community Board #2 Community Service Aide 14952.11000 1.495211e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.495211e+04 1.495211e+04 0.00 NULL
2014 Queens Community Board #2 District Manager 86494.00000 8.649400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.649400e+04 8.649400e+04 0.00 NULL
2014 Queens Community Board #3 Community Assistant 30421.00000 6.084200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.084200e+04 6.084200e+04 0.00 NULL
2014 Queens Community Board #3 Community Service Aide 27979.00000 2.797900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.797900e+04 2.797900e+04 0.00 NULL
2014 Queens Community Board #3 District Manager 86342.00000 8.634200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.634200e+04 8.634200e+04 0.00 NULL
2014 Queens Community Board #4 Community Assistant 32640.00000 3.264000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.264000e+04 3.264000e+04 0.00 NULL
2014 Queens Community Board #4 Community Coordinator 67200.00000 6.720000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.720000e+04 6.720000e+04 0.00 NULL
2014 Queens Community Board #4 District Manager 78000.00000 7.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.800000e+04 7.800000e+04 0.00 NULL
2014 Queens Community Board #5 Community Associate 35554.01000 1.066620e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.066620e+05 1.066620e+05 0.00 NULL
2014 Queens Community Board #5 District Manager 69583.00000 6.958300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.958300e+04 6.958300e+04 0.00 NULL
2014 Queens Community Board #6 Community Associate 47706.00000 4.770600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.770600e+04 4.770600e+04 0.00 NULL
2014 Queens Community Board #6 Community Service Aide 16338.00000 1.633800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.633800e+04 1.633800e+04 0.00 NULL
2014 Queens Community Board #6 District Manager 92430.00000 9.243000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.243000e+04 9.243000e+04 0.00 NULL
2014 Queens Community Board #6 Secretary 33010.00000 3.301000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.301000e+04 3.301000e+04 0.00 NULL
2014 Queens Community Board #7 Community Assistant 33267.00000 6.653400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.653400e+04 6.653400e+04 0.00 NULL
2014 Queens Community Board #7 Community Service Aide 14837.00000 1.483700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.483700e+04 1.483700e+04 0.00 NULL
2014 Queens Community Board #7 District Manager 98000.00000 9.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.800000e+04 9.800000e+04 0.00 NULL
2014 Queens Community Board #8 Community Assistant 28824.25000 1.152970e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.152970e+05 1.152970e+05 0.00 NULL
2014 Queens Community Board #8 Community Associate 45102.00000 4.510200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.510200e+04 4.510200e+04 0.00 NULL
2014 Queens Community Board #8 District Manager 80093.00000 8.009300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.009300e+04 8.009300e+04 0.00 NULL
2014 Queens Community Board #9 Community Assistant 34951.00000 3.495100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.495100e+04 3.495100e+04 0.00 NULL
2014 Queens Community Board #9 Community Coordinator 55946.00000 5.594600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.594600e+04 5.594600e+04 0.00 NULL
2014 Queens Community Board #9 District Manager 94665.00000 9.466500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.466500e+04 9.466500e+04 0.00 NULL
2014 Staten Island Community Bd #1 Community Associate 47647.50000 9.529500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.529500e+04 9.529500e+04 0.00 NULL
2014 Staten Island Community Bd #1 District Manager 80912.00000 8.091200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.091200e+04 8.091200e+04 0.00 NULL
2014 Staten Island Community Bd #2 Community Assistant 19520.00000 1.952000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.952000e+04 1.952000e+04 0.00 NULL
2014 Staten Island Community Bd #2 Community Associate 33380.00000 6.676000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.676000e+04 6.676000e+04 0.00 NULL
2014 Staten Island Community Bd #2 Community Coordinator 15131.44500 1.513144e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.513144e+04 1.513144e+04 0.00 NULL
2014 Staten Island Community Bd #2 District Manager 83578.00000 8.357800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.357800e+04 8.357800e+04 0.00 NULL
2014 Staten Island Community Bd #3 Community Coordinator 52880.00000 1.057600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.057600e+05 1.057600e+05 0.00 NULL
2014 Staten Island Community Bd #3 District Manager 84171.00000 8.417100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.417100e+04 8.417100e+04 0.00 NULL
2014 Tax Commission *Administrative Attorney 135000.00000 2.700000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.700000e+05 2.700000e+05 0.00 NULL
2014 Tax Commission *Certified Database Administrator 87733.00000 8.773300e+04 1988.02 1.988020e+03 1988.020 30.00 1 1.988020e+03 1988.02 8.972102e+04 8.972102e+04 0.00 NULL
2014 Tax Commission Adm Manager-Non-Mgrl From M1/M2 64582.00000 1.291640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.291640e+05 1.291640e+05 0.00 NULL
2014 Tax Commission Administrative Assessor 35237.78000 3.523778e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.523778e+04 3.523778e+04 0.00 NULL
2014 Tax Commission Agency Attorney 62024.87750 2.480995e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.480995e+05 2.480995e+05 0.00 NULL
2014 Tax Commission Assistant Counsel 111917.00000 1.119170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.119170e+05 1.119170e+05 0.00 NULL
2014 Tax Commission Associate Staff Analyst 73260.00000 7.326000e+04 86.12 8.612000e+01 86.120 2.00 1 8.612000e+01 86.12 7.334612e+04 7.334612e+04 0.00 NULL
2014 Tax Commission City Assessor 83934.63636 9.232810e+05 129851.10 1.180465e+04 7007.490 2150.00 11 7.007490e+03 77082.39 1.053132e+06 1.000363e+06 52768.71 NULL
2014 Tax Commission Clerical Associate Most Mayoral Ag 52000.00000 5.200000e+04 391.34 3.913400e+02 391.340 13.50 1 3.913400e+02 391.34 5.239134e+04 5.239134e+04 0.00 NULL
2014 Tax Commission College Aide 6245.25000 1.249050e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.249050e+04 1.249050e+04 0.00 NULL
2014 Tax Commission Commissioner 64026.42857 4.481850e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.481850e+05 4.481850e+05 0.00 NULL
2014 Tax Commission Community Assistant 37169.27500 3.716928e+04 124.88 1.248800e+02 124.880 6.50 1 1.248800e+02 124.88 3.729415e+04 3.729415e+04 0.00 NULL
2014 Tax Commission Computer Associate 66271.33333 1.988140e+05 5492.09 1.830697e+03 1702.150 115.75 3 1.702150e+03 5106.45 2.043061e+05 2.039205e+05 385.64 NULL
2014 Tax Commission Computer Specialist 98370.00000 9.837000e+04 4639.31 4.639310e+03 4639.310 63.50 1 4.639310e+03 4639.31 1.030093e+05 1.030093e+05 0.00 NULL
2014 Tax Commission Computer Systems Manager 121808.00000 1.218080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.218080e+05 1.218080e+05 0.00 NULL
2014 Tax Commission Executive Agency Counsel 136278.00000 1.362780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.362780e+05 1.362780e+05 0.00 NULL
2014 Tax Commission Executive Assistant To The President Of The Tax Commission 112809.00000 1.128090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.128090e+05 1.128090e+05 0.00 NULL
2014 Tax Commission President 192198.00000 1.921980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.921980e+05 1.921980e+05 0.00 NULL
2014 Tax Commission Principal Administrative Associate - Lev 1 & 2 Non Supvr 60661.80000 3.033090e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.033090e+05 3.033090e+05 0.00 NULL
2014 Tax Commission Secretary Of The Tax Commission 67379.00000 6.737900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.737900e+04 6.737900e+04 0.00 NULL
2014 Tax Commission Secretary To The President 65121.00000 6.512100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.512100e+04 6.512100e+04 0.00 NULL
2014 Taxi & Limousine Commission *Certified Database Administrator 81903.00000 8.190300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.190300e+04 8.190300e+04 0.00 NULL
2014 Taxi & Limousine Commission Accountant 65005.66667 1.950170e+05 179.77 5.992333e+01 0.000 5.50 3 0.000000e+00 0.00 1.951968e+05 1.950170e+05 179.77 NULL
2014 Taxi & Limousine Commission Administratiive Taxi & Limousine Inspector 101213.85714 7.084970e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.084970e+05 7.084970e+05 0.00 NULL
2014 Taxi & Limousine Commission Administrative City Planner 82000.00000 8.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.200000e+04 8.200000e+04 0.00 NULL
2014 Taxi & Limousine Commission Administrative Manager 117461.00000 1.174610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.174610e+05 1.174610e+05 0.00 NULL
2014 Taxi & Limousine Commission Administrative Procurement Analyst 75687.50000 1.513750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.513750e+05 1.513750e+05 0.00 NULL
2014 Taxi & Limousine Commission Administrative Project Manager 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2014 Taxi & Limousine Commission Administrative Public Information Specialist 135000.00000 2.700000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.700000e+05 2.700000e+05 0.00 NULL
2014 Taxi & Limousine Commission Administrative Staff Analyst 97918.45000 1.958369e+06 43272.94 2.163647e+03 0.000 907.25 20 0.000000e+00 0.00 2.001642e+06 1.958369e+06 43272.94 NULL
2014 Taxi & Limousine Commission Agency Attorney 61345.29412 1.042870e+06 22257.27 1.309251e+03 0.000 723.00 17 0.000000e+00 0.00 1.065127e+06 1.042870e+06 22257.27 NULL
2014 Taxi & Limousine Commission Agency Attorney Interne 49500.15333 2.970009e+05 3073.77 5.122950e+02 330.365 146.25 6 3.303650e+02 1982.19 3.000747e+05 2.989831e+05 1091.58 NULL
2014 Taxi & Limousine Commission Associate Fingerprint Technician 34640.00000 3.464000e+04 1045.17 1.045170e+03 1045.170 50.00 1 1.045170e+03 1045.17 3.568517e+04 3.568517e+04 0.00 NULL
2014 Taxi & Limousine Commission Associate Public Information Specialist 62367.00000 6.236700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.236700e+04 6.236700e+04 0.00 NULL
2014 Taxi & Limousine Commission Associate Staff Analyst 74305.00000 1.486100e+05 644.67 3.223350e+02 322.335 16.75 2 3.223350e+02 644.67 1.492547e+05 1.492547e+05 0.00 NULL
2014 Taxi & Limousine Commission Associate Taxi & Limousine Inspector 51271.64789 3.640287e+06 254987.72 3.591376e+03 1637.830 6737.25 71 1.637830e+03 116285.93 3.895275e+06 3.756573e+06 138701.79 NULL
2014 Taxi & Limousine Commission Cashier 36452.58339 2.551681e+05 3574.11 5.105871e+02 409.720 175.25 7 4.097200e+02 2868.04 2.587422e+05 2.580361e+05 706.07 NULL
2014 Taxi & Limousine Commission Certified It Administrator 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2014 Taxi & Limousine Commission Chairman 192198.00000 3.843960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.843960e+05 3.843960e+05 0.00 NULL
2014 Taxi & Limousine Commission Clerical Aide 24648.66800 2.464867e+05 5325.79 5.325790e+02 42.945 345.25 10 4.294500e+01 429.45 2.518125e+05 2.469161e+05 4896.34 NULL
2014 Taxi & Limousine Commission Clerical Associate Most Mayoral Ag 39322.46869 1.690866e+06 79906.44 1.858289e+03 39.680 3320.50 43 3.968000e+01 1706.24 1.770773e+06 1.692572e+06 78200.20 NULL
2014 Taxi & Limousine Commission College Aide 3498.34706 5.947190e+04 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 5.947190e+04 5.947190e+04 0.00 NULL
2014 Taxi & Limousine Commission Community Assistant 24923.34102 1.221244e+06 47385.25 9.670459e+02 124.850 2021.50 49 1.248500e+02 6117.65 1.268629e+06 1.227361e+06 41267.60 NULL
2014 Taxi & Limousine Commission Community Associate 34951.37191 2.691256e+06 144926.03 1.882156e+03 385.870 5314.75 77 3.858700e+02 29711.99 2.836182e+06 2.720968e+06 115214.04 NULL
2014 Taxi & Limousine Commission Community Coordinator 62426.23077 8.115410e+05 62717.51 4.824424e+03 350.860 1388.25 13 3.508600e+02 4561.18 8.742585e+05 8.161022e+05 58156.33 NULL
2014 Taxi & Limousine Commission Computer Aide-Non-Spvr 57252.70312 1.145054e+05 9578.89 4.789445e+03 4789.445 718.75 2 4.789445e+03 9578.89 1.240843e+05 1.240843e+05 0.00 NULL
2014 Taxi & Limousine Commission Computer Associate 63429.75719 5.074381e+05 66060.09 8.257511e+03 1932.455 2712.75 8 1.932455e+03 15459.64 5.734981e+05 5.228977e+05 50600.45 NULL
2014 Taxi & Limousine Commission Computer Specialist 86906.20000 8.690620e+05 8238.02 8.238020e+02 0.000 235.00 10 0.000000e+00 0.00 8.773000e+05 8.690620e+05 8238.02 NULL
2014 Taxi & Limousine Commission Computer Systems Manager 113830.00000 6.829800e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.829800e+05 6.829800e+05 0.00 NULL
2014 Taxi & Limousine Commission Executive Agency Counsel 97115.87500 7.769270e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.769270e+05 7.769270e+05 0.00 NULL
2014 Taxi & Limousine Commission Executive Assistant 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2014 Taxi & Limousine Commission Investigator 44318.40000 2.215920e+05 7199.56 1.439912e+03 0.000 270.00 5 0.000000e+00 0.00 2.287916e+05 2.215920e+05 7199.56 NULL
2014 Taxi & Limousine Commission Maintenance Worker NA NA 19704.90 9.852450e+03 9852.450 442.75 2 9.852450e+03 19704.90 NA NA NA NULL
2014 Taxi & Limousine Commission Operations Communications Specialist 33191.79003 2.655343e+05 7143.39 8.929238e+02 581.655 288.50 8 5.816550e+02 4653.24 2.726777e+05 2.701876e+05 2490.15 NULL
2014 Taxi & Limousine Commission Principal Administrative Associate - Lev 1 & 2 Non Supvr 56540.60000 1.130812e+06 85905.64 4.295282e+03 2863.735 2344.25 20 2.863735e+03 57274.70 1.216718e+06 1.188087e+06 28630.94 NULL
2014 Taxi & Limousine Commission Research Assistant 45978.00000 4.597800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.597800e+04 4.597800e+04 0.00 NULL
2014 Taxi & Limousine Commission Secretary 36792.25000 1.471690e+05 3022.18 7.555450e+02 590.920 132.00 4 5.909200e+02 2363.68 1.501912e+05 1.495327e+05 658.50 NULL
2014 Taxi & Limousine Commission Staff Analyst 52162.00000 5.216200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.216200e+04 5.216200e+04 0.00 NULL
2014 Taxi & Limousine Commission Staff Analyst Trainee 42409.85714 2.968690e+05 376.30 5.375714e+01 0.000 14.50 7 0.000000e+00 0.00 2.972453e+05 2.968690e+05 376.30 NULL
2014 Taxi & Limousine Commission Stock Worker 38238.50000 7.647700e+04 780.71 3.903550e+02 390.355 30.75 2 3.903550e+02 780.71 7.725771e+04 7.725771e+04 0.00 NULL
2014 Taxi & Limousine Commission Supervisor Of Stock Workers 41903.33333 1.257100e+05 32526.59 1.084220e+04 13438.180 1113.75 3 1.084220e+04 32526.59 1.582366e+05 1.582366e+05 0.00 NULL
2014 Taxi & Limousine Commission Taxi And Limousine Inspector 37550.52475 7.585206e+06 464272.85 2.298380e+03 751.830 16886.50 202 7.518300e+02 151869.66 8.049479e+06 7.737076e+06 312403.19 NULL
2014 Teachers Retirement System *Certified Applications Developer 90252.00000 9.025200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.025200e+04 9.025200e+04 0.00 NULL
2014 Teachers Retirement System Accountant 53674.58333 6.440950e+05 2924.71 2.437258e+02 0.000 107.25 12 0.000000e+00 0.00 6.470197e+05 6.440950e+05 2924.71 NULL
2014 Teachers Retirement System Adm Manager-Non-Mgrl From M1/M2 65897.87500 1.581549e+06 30453.29 1.268887e+03 0.000 864.50 24 0.000000e+00 0.00 1.612002e+06 1.581549e+06 30453.29 NULL
2014 Teachers Retirement System Administrative Accountant 81468.83333 4.888130e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.888130e+05 4.888130e+05 0.00 NULL
2014 Teachers Retirement System Administrative Management Auditor 125032.00000 1.250320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250320e+05 1.250320e+05 0.00 NULL
2014 Teachers Retirement System Administrative Manager 104376.40000 5.218820e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.218820e+05 5.218820e+05 0.00 NULL
2014 Teachers Retirement System Administrative Public Information Specialist 76946.91000 7.694691e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.694691e+04 7.694691e+04 0.00 NULL
2014 Teachers Retirement System Administrative Retirement Benefits Specialist 94948.84615 2.468670e+06 2171.23 8.350885e+01 0.000 43.00 26 0.000000e+00 0.00 2.470841e+06 2.468670e+06 2171.23 NULL
2014 Teachers Retirement System Agency Attorney 73542.50000 1.470850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.470850e+05 1.470850e+05 0.00 NULL
2014 Teachers Retirement System Assistant Executive Director 155075.66667 4.652270e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.652270e+05 4.652270e+05 0.00 NULL
2014 Teachers Retirement System Assistant Retirement Benefits Examiner 45453.77778 8.181680e+05 21107.22 1.172623e+03 37.745 771.00 18 3.774500e+01 679.41 8.392752e+05 8.188474e+05 20427.81 NULL
2014 Teachers Retirement System Associate Public Information Specialist 55363.50000 2.214540e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.214540e+05 2.214540e+05 0.00 NULL
2014 Teachers Retirement System Associate Public Records Officer 69571.00000 6.957100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.957100e+04 6.957100e+04 0.00 NULL
2014 Teachers Retirement System Associate Retirement Benefits Examiner 50716.34483 5.883096e+06 67465.44 5.815986e+02 0.000 2276.50 116 0.000000e+00 0.00 5.950561e+06 5.883096e+06 67465.44 NULL
2014 Teachers Retirement System Associate Staff Analyst 71179.40000 3.558970e+05 146.48 2.929600e+01 0.000 0.00 5 0.000000e+00 0.00 3.560435e+05 3.558970e+05 146.48 NULL
2014 Teachers Retirement System Bookkeeper 39381.57143 2.756710e+05 180.29 2.575571e+01 0.000 8.00 7 0.000000e+00 0.00 2.758513e+05 2.756710e+05 180.29 NULL
2014 Teachers Retirement System Certified It Developer 102949.00000 1.029490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.029490e+05 1.029490e+05 0.00 NULL
2014 Teachers Retirement System Clerical Associate Most Mayoral Ag 42309.57143 8.885010e+05 19185.17 9.135795e+02 0.000 819.75 21 0.000000e+00 0.00 9.076862e+05 8.885010e+05 19185.17 NULL
2014 Teachers Retirement System Computer Associate 63296.00000 7.595520e+05 985.76 8.214667e+01 0.000 40.25 12 0.000000e+00 0.00 7.605378e+05 7.595520e+05 985.76 NULL
2014 Teachers Retirement System Computer Operations Manager 110751.00000 1.107510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.107510e+05 1.107510e+05 0.00 NULL
2014 Teachers Retirement System Computer Service Technician 56006.00000 5.600600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.600600e+04 5.600600e+04 0.00 NULL
2014 Teachers Retirement System Computer Specialist 94480.75758 3.117865e+06 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 3.117865e+06 3.117865e+06 0.00 NULL
2014 Teachers Retirement System Computer Systems Manager 130596.72041 6.399239e+06 0.00 0.000000e+00 0.000 0.00 49 0.000000e+00 0.00 6.399239e+06 6.399239e+06 0.00 NULL
2014 Teachers Retirement System Customer Information Representative Ma L 1549 50077.00000 5.007700e+04 6043.77 6.043770e+03 6043.770 197.75 1 6.043770e+03 6043.77 5.612077e+04 5.612077e+04 0.00 NULL
2014 Teachers Retirement System Deputy Executive Director 190000.00000 1.900000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.900000e+05 1.900000e+05 0.00 NULL
2014 Teachers Retirement System Executive Agency Counsel 145035.00000 4.351050e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.351050e+05 4.351050e+05 0.00 NULL
2014 Teachers Retirement System Executive Director 205180.00000 2.051800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.051800e+05 2.051800e+05 0.00 NULL
2014 Teachers Retirement System Graphic Artist 61645.00000 6.164500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.164500e+04 6.164500e+04 0.00 NULL
2014 Teachers Retirement System Investment Analyst 63483.50000 1.269670e+05 1590.50 7.952500e+02 795.250 39.00 2 7.952500e+02 1590.50 1.285575e+05 1.285575e+05 0.00 NULL
2014 Teachers Retirement System Management Auditor 56756.00000 1.135120e+05 2589.65 1.294825e+03 1294.825 88.00 2 1.294825e+03 2589.65 1.161016e+05 1.161016e+05 0.00 NULL
2014 Teachers Retirement System Office Machine Aide 38115.41667 4.573850e+05 24641.01 2.053418e+03 1512.580 1041.25 12 1.512580e+03 18150.96 4.820260e+05 4.755360e+05 6490.05 NULL
2014 Teachers Retirement System Principal Administrative Associate - Lev 1 & 2 Non Supvr 55772.57667 6.692709e+05 3343.13 2.785942e+02 0.000 134.00 12 0.000000e+00 0.00 6.726141e+05 6.692709e+05 3343.13 NULL
2014 Teachers Retirement System Public Records Aide 42938.00000 4.293800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.293800e+04 4.293800e+04 0.00 NULL
2014 Teachers Retirement System Staff Analyst 56707.25000 2.268290e+05 3363.24 8.408100e+02 0.000 126.00 4 0.000000e+00 0.00 2.301922e+05 2.268290e+05 3363.24 NULL
2014 Teachers Retirement System Stock Worker 31873.00000 6.374600e+04 702.18 3.510900e+02 351.090 31.50 2 3.510900e+02 702.18 6.444818e+04 6.444818e+04 0.00 NULL
2014 Teachers Retirement System Summer College Intern 3436.42969 5.498288e+04 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 5.498288e+04 5.498288e+04 0.00 NULL
2014 Teachers Retirement System Summer Graduate Intern 3825.50000 7.651000e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.651000e+03 7.651000e+03 0.00 NULL
2014 Teachers Retirement System Supervisor Of Office Machine Operations 37197.00000 3.719700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.719700e+04 3.719700e+04 0.00 NULL
2014 Teachers Retirement System Supervisor Of Stock Workers 43389.00000 4.338900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.338900e+04 4.338900e+04 0.00 NULL
2015 Admin For Children’s Svcs *Certified Applications Developer 95989.00000 9.598900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.598900e+04 9.598900e+04 0.00 NULL
2015 Admin For Children’s Svcs *Certified Database Administrator 98149.00000 1.962980e+05 107.37 5.368500e+01 53.685 2.00 2 5.368500e+01 107.37 1.964054e+05 1.964054e+05 0.00 NULL
2015 Admin For Children’s Svcs *Custodial Assistant 36389.00000 3.638900e+04 26298.50 2.629850e+04 26298.500 947.50 1 2.629850e+04 26298.50 6.268750e+04 6.268750e+04 0.00 NULL
2015 Admin For Children’s Svcs Accountant 57563.92308 7.483310e+05 117.65 9.050000e+00 0.000 3.00 13 0.000000e+00 0.00 7.484487e+05 7.483310e+05 117.65 NULL
2015 Admin For Children’s Svcs Adm Manager-Non-Mgrl 72217.00000 2.166510e+05 56.95 1.898333e+01 0.000 1.50 3 0.000000e+00 0.00 2.167080e+05 2.166510e+05 56.95 NULL
2015 Admin For Children’s Svcs Admin Contract Specialist 86202.50000 1.724050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.724050e+05 1.724050e+05 0.00 NULL
2015 Admin For Children’s Svcs Administrative Accountant 88828.00000 8.882800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.882800e+04 8.882800e+04 0.00 NULL
2015 Admin For Children’s Svcs Administrative Construction Project Manager 103184.00000 1.031840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.031840e+05 1.031840e+05 0.00 NULL
2015 Admin For Children’s Svcs Administrative Director Of Residential Child Care 74180.70833 1.780337e+06 3961.68 1.650700e+02 0.000 97.00 24 0.000000e+00 0.00 1.784299e+06 1.780337e+06 3961.68 NULL
2015 Admin For Children’s Svcs Administrative Director Of Social Services 93615.03220 2.490160e+07 7856.49 2.953568e+01 0.000 109.00 266 0.000000e+00 0.00 2.490946e+07 2.490160e+07 7856.49 NULL
2015 Admin For Children’s Svcs Administrative Engineer 82764.50000 1.655290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.655290e+05 1.655290e+05 0.00 NULL
2015 Admin For Children’s Svcs Administrative Juvenile Counselor 71761.00000 7.176100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.176100e+04 7.176100e+04 0.00 NULL
2015 Admin For Children’s Svcs Administrative Project Manager 79928.75000 3.197150e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.197150e+05 3.197150e+05 0.00 NULL
2015 Admin For Children’s Svcs Administrative Public Health Nurse 120622.00000 2.412440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.412440e+05 2.412440e+05 0.00 NULL
2015 Admin For Children’s Svcs Administrative Public Information Specialist 172913.00000 1.729130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.729130e+05 1.729130e+05 0.00 NULL
2015 Admin For Children’s Svcs Administrative Real Property Manager 129673.00000 1.296730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.296730e+05 1.296730e+05 0.00 NULL
2015 Admin For Children’s Svcs Administrative Staff Analyst 81935.86282 2.269623e+07 411980.28 1.487293e+03 0.000 7732.25 277 0.000000e+00 0.00 2.310821e+07 2.269623e+07 411980.28 NULL
2015 Admin For Children’s Svcs Agency Attorney 71013.83903 2.492586e+07 19474.32 5.548239e+01 0.000 345.75 351 0.000000e+00 0.00 2.494533e+07 2.492586e+07 19474.32 NULL
2015 Admin For Children’s Svcs Agency Attorney Intern 54615.28571 3.058456e+06 2028.13 3.621661e+01 0.000 71.00 56 0.000000e+00 0.00 3.060484e+06 3.058456e+06 2028.13 NULL
2015 Admin For Children’s Svcs Architect 72986.00000 7.298600e+04 1879.19 1.879190e+03 1879.190 40.00 1 1.879190e+03 1879.19 7.486519e+04 7.486519e+04 0.00 NULL
2015 Admin For Children’s Svcs Assistant Architect 57877.00000 5.787700e+04 1666.75 1.666750e+03 1666.750 53.50 1 1.666750e+03 1666.75 5.954375e+04 5.954375e+04 0.00 NULL
2015 Admin For Children’s Svcs Assistant Commissioner 127341.00000 1.273410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.273410e+05 1.273410e+05 0.00 NULL
2015 Admin For Children’s Svcs Associate Inspector 63309.00000 1.266180e+05 0.00 0.000000e+00 0.000 16.50 2 0.000000e+00 0.00 1.266180e+05 1.266180e+05 0.00 NULL
2015 Admin For Children’s Svcs Associate Juvenile Counselor 54717.81356 3.228351e+06 1182825.44 2.004789e+04 17894.230 26756.50 59 1.789423e+04 1055759.57 4.411176e+06 4.284111e+06 127065.87 NULL
2015 Admin For Children’s Svcs Associate Project Manager 73744.50000 4.424670e+05 137503.06 2.291718e+04 8039.200 2262.75 6 8.039200e+03 48235.20 5.799701e+05 4.907022e+05 89267.86 NULL
2015 Admin For Children’s Svcs Associate Staff Analyst 71169.41860 6.120570e+06 53694.32 6.243526e+02 0.000 1068.75 86 0.000000e+00 0.00 6.174264e+06 6.120570e+06 53694.32 NULL
2015 Admin For Children’s Svcs Attorney At Law 81853.61111 1.473365e+06 148.90 8.272222e+00 0.000 1.50 18 0.000000e+00 0.00 1.473514e+06 1.473365e+06 148.90 NULL
2015 Admin For Children’s Svcs Bookkeeper 39670.00000 3.967000e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 3.967000e+05 3.967000e+05 0.00 NULL
2015 Admin For Children’s Svcs Caseworker 41580.46575 3.035374e+06 26101.51 3.575549e+02 0.000 718.50 73 0.000000e+00 0.00 3.061476e+06 3.035374e+06 26101.51 NULL
2015 Admin For Children’s Svcs Certified It Administrator 81871.00000 8.187100e+04 758.39 7.583900e+02 758.390 11.50 1 7.583900e+02 758.39 8.262939e+04 8.262939e+04 0.00 NULL
2015 Admin For Children’s Svcs Certified It Developer 83444.00000 2.503320e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.503320e+05 2.503320e+05 0.00 NULL
2015 Admin For Children’s Svcs Certified Local Area Network Administrator 83133.33333 2.494000e+05 10842.56 3.614187e+03 312.160 191.00 3 3.121600e+02 936.48 2.602426e+05 2.503365e+05 9906.08 NULL
2015 Admin For Children’s Svcs Chaplain 55359.00000 5.535900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.535900e+04 5.535900e+04 0.00 NULL
2015 Admin For Children’s Svcs Child And Family Specialist 77674.55649 1.856422e+07 298710.72 1.249836e+03 1.040 5732.00 239 1.040000e+00 248.56 1.886293e+07 1.856447e+07 298462.16 NULL
2015 Admin For Children’s Svcs Child Protective Specialist 50800.58029 1.335039e+08 12664707.22 4.819143e+03 2398.510 335424.24 2628 2.398510e+03 6303284.28 1.461686e+08 1.398072e+08 6361422.94 NULL
2015 Admin For Children’s Svcs Child Protective Specialist Supervisor 73192.32099 4.150005e+07 5947816.56 1.048998e+04 6968.050 107798.75 567 6.968050e+03 3950884.35 4.744786e+07 4.545093e+07 1996932.21 NULL
2015 Admin For Children’s Svcs Child Welfare Specialist 53089.12644 1.385626e+07 371316.40 1.422668e+03 0.000 9685.45 261 0.000000e+00 0.00 1.422758e+07 1.385626e+07 371316.40 NULL
2015 Admin For Children’s Svcs Child Welfare Specialist Supervisor 68274.02158 9.490089e+06 402307.90 2.894301e+03 0.000 7850.25 139 0.000000e+00 0.00 9.892397e+06 9.490089e+06 402307.90 NULL
2015 Admin For Children’s Svcs Children’s Counselor 40712.64409 2.320621e+06 397556.16 6.974669e+03 2945.270 12984.25 57 2.945270e+03 167880.39 2.718177e+06 2.488501e+06 229675.77 NULL
2015 Admin For Children’s Svcs City Custodial Assistant 35275.66667 1.058270e+05 9886.85 3.295617e+03 521.700 341.75 3 5.217000e+02 1565.10 1.157139e+05 1.073921e+05 8321.75 NULL
2015 Admin For Children’s Svcs City Laborer NA NA 155930.03 2.598834e+04 30334.000 3572.75 6 2.598834e+04 155930.03 NA NA NA NULL
2015 Admin For Children’s Svcs City Medical Director 120458.25000 2.409165e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.409165e+05 2.409165e+05 0.00 NULL
2015 Admin For Children’s Svcs City Research Scientist 78112.77778 7.030150e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.030150e+05 7.030150e+05 0.00 NULL
2015 Admin For Children’s Svcs Clerical Aide 31029.33333 9.308800e+04 64.08 2.136000e+01 0.000 7.25 3 0.000000e+00 0.00 9.315208e+04 9.308800e+04 64.08 NULL
2015 Admin For Children’s Svcs Clerical Associate 36734.61472 8.485696e+06 213546.98 9.244458e+02 0.000 7664.75 231 0.000000e+00 0.00 8.699243e+06 8.485696e+06 213546.98 NULL
2015 Admin For Children’s Svcs College Aide 5399.60767 3.941714e+05 0.00 0.000000e+00 0.000 0.00 73 0.000000e+00 0.00 3.941714e+05 3.941714e+05 0.00 NULL
2015 Admin For Children’s Svcs Commissioner Of Children’s Services 214413.00000 2.144130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144130e+05 2.144130e+05 0.00 NULL
2015 Admin For Children’s Svcs Community Assistant 32919.00000 2.271411e+06 108496.03 1.572406e+03 0.000 4445.25 69 0.000000e+00 0.00 2.379907e+06 2.271411e+06 108496.03 NULL
2015 Admin For Children’s Svcs Community Associate 44326.17241 2.570918e+06 78255.90 1.349240e+03 0.000 2500.00 58 0.000000e+00 0.00 2.649174e+06 2.570918e+06 78255.90 NULL
2015 Admin For Children’s Svcs Community Coordinator 57914.54639 1.378366e+07 63833.81 2.682093e+02 0.000 1628.75 238 0.000000e+00 0.00 1.384750e+07 1.378366e+07 63833.81 NULL
2015 Admin For Children’s Svcs Computer Aide-Non-Spvr 46145.00000 1.799655e+06 34286.95 8.791526e+02 5.140 828.75 39 5.140000e+00 200.46 1.833942e+06 1.799855e+06 34086.49 NULL
2015 Admin For Children’s Svcs Computer Associate 65556.58065 2.032254e+06 1115.46 3.598258e+01 0.000 23.50 31 0.000000e+00 0.00 2.033369e+06 2.032254e+06 1115.46 NULL
2015 Admin For Children’s Svcs Computer Programmer Analyst 63675.00000 2.547000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.547000e+05 2.547000e+05 0.00 NULL
2015 Admin For Children’s Svcs Computer Service Technician 41564.00000 8.312800e+04 291.21 1.456050e+02 145.605 11.00 2 1.456050e+02 291.21 8.341921e+04 8.341921e+04 0.00 NULL
2015 Admin For Children’s Svcs Computer Specialist 93720.68182 2.061855e+06 2447.57 1.112532e+02 0.000 39.75 22 0.000000e+00 0.00 2.064303e+06 2.061855e+06 2447.57 NULL
2015 Admin For Children’s Svcs Computer Systems Manager 98855.80000 2.965674e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 2.965674e+06 2.965674e+06 0.00 NULL
2015 Admin For Children’s Svcs Confidential Agency Investigator 131648.00000 1.316480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.316480e+05 1.316480e+05 0.00 NULL
2015 Admin For Children’s Svcs Congreg Care Spec - Acs 51384.90476 1.079083e+06 118745.77 5.654560e+03 1415.910 3094.25 21 1.415910e+03 29734.11 1.197829e+06 1.108817e+06 89011.66 NULL
2015 Admin For Children’s Svcs Congreg Care Spec- Djj 46252.42857 1.942602e+06 247514.68 5.893207e+03 3900.785 6243.75 42 3.900785e+03 163832.97 2.190117e+06 2.106435e+06 83681.71 NULL
2015 Admin For Children’s Svcs Construction Project Manager 75653.66667 4.539220e+05 89763.44 1.496057e+04 7623.015 1619.00 6 7.623015e+03 45738.09 5.436854e+05 4.996601e+05 44025.35 NULL
2015 Admin For Children’s Svcs Consultant 67448.91667 1.618774e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 1.618774e+06 1.618774e+06 0.00 NULL
2015 Admin For Children’s Svcs Contract Specialist 43109.00000 8.621800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.621800e+04 8.621800e+04 0.00 NULL
2015 Admin For Children’s Svcs Cook 37701.25000 3.016100e+05 53762.28 6.720285e+03 3002.770 1915.00 8 3.002770e+03 24022.16 3.553723e+05 3.256322e+05 29740.12 NULL
2015 Admin For Children’s Svcs Custodian 36804.20000 3.680420e+05 76988.08 7.698808e+03 4898.735 2925.75 10 4.898735e+03 48987.35 4.450301e+05 4.170293e+05 28000.73 NULL
2015 Admin For Children’s Svcs Deputy General Counsel 141177.00000 1.411770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.411770e+05 1.411770e+05 0.00 NULL
2015 Admin For Children’s Svcs Deputy Superintendent 71408.80000 3.570440e+05 468.16 9.363200e+01 89.690 0.00 5 8.969000e+01 448.45 3.575122e+05 3.574925e+05 19.71 NULL
2015 Admin For Children’s Svcs Director Of Field Operations 94675.79558 1.713632e+07 40566.89 2.241265e+02 0.000 695.25 181 0.000000e+00 0.00 1.717689e+07 1.713632e+07 40566.89 NULL
2015 Admin For Children’s Svcs Director Of Security 74771.00000 7.477100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.477100e+04 7.477100e+04 0.00 NULL
2015 Admin For Children’s Svcs Electrician NA NA 33871.25 3.387125e+04 33871.250 508.00 1 3.387125e+04 33871.25 NA NA NA NULL
2015 Admin For Children’s Svcs Eligibility Specialist 44720.50000 8.944100e+04 4261.37 2.130685e+03 2130.685 120.25 2 2.130685e+03 4261.37 9.370237e+04 9.370237e+04 0.00 NULL
2015 Admin For Children’s Svcs Executive Agency Counsel 111223.45833 5.338726e+06 1186.29 2.471438e+01 0.000 6.50 48 0.000000e+00 0.00 5.339912e+06 5.338726e+06 1186.29 NULL
2015 Admin For Children’s Svcs Food Service Manager 59177.00000 5.917700e+04 4383.50 4.383500e+03 4383.500 125.00 1 4.383500e+03 4383.50 6.356050e+04 6.356050e+04 0.00 NULL
2015 Admin For Children’s Svcs Graphic Artist 46232.00000 4.623200e+04 26.07 2.607000e+01 26.070 2.00 1 2.607000e+01 26.07 4.625807e+04 4.625807e+04 0.00 NULL
2015 Admin For Children’s Svcs Home Aide 31371.00000 9.411300e+04 4526.76 1.508920e+03 3.950 184.00 3 3.950000e+00 11.85 9.863976e+04 9.412485e+04 4514.91 NULL
2015 Admin For Children’s Svcs Homemaker 32403.88889 2.916350e+05 28157.90 3.128656e+03 373.740 1121.75 9 3.737400e+02 3363.66 3.197929e+05 2.949987e+05 24794.24 NULL
2015 Admin For Children’s Svcs Houseparent Aide 35033.00000 3.503300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.503300e+04 3.503300e+04 0.00 NULL
2015 Admin For Children’s Svcs Human Resources Technician 33794.00000 3.379400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.379400e+04 3.379400e+04 0.00 NULL
2015 Admin For Children’s Svcs Institutional Aide 34623.48276 1.004081e+06 170428.60 5.876848e+03 2365.330 6849.00 29 2.365330e+03 68594.57 1.174510e+06 1.072676e+06 101834.03 NULL
2015 Admin For Children’s Svcs Investigator 48320.00000 4.832000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.832000e+04 4.832000e+04 0.00 NULL
2015 Admin For Children’s Svcs Juvenile Counselor 40375.72211 1.917847e+07 3358101.29 7.069687e+03 3198.760 103383.58 475 3.198760e+03 1519411.00 2.253657e+07 2.069788e+07 1838690.29 NULL
2015 Admin For Children’s Svcs Management Auditor 62908.66667 1.887260e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.887260e+05 1.887260e+05 0.00 NULL
2015 Admin For Children’s Svcs Motor Vehicle Operator 43847.85000 8.769570e+05 381031.22 1.905156e+04 17921.725 11783.25 20 1.792172e+04 358434.50 1.257988e+06 1.235392e+06 22596.72 NULL
2015 Admin For Children’s Svcs Motor Vehicle Supervisor 52375.33333 1.571260e+05 101190.85 3.373028e+04 22639.350 2694.75 3 2.263935e+04 67918.05 2.583169e+05 2.250440e+05 33272.80 NULL
2015 Admin For Children’s Svcs Office Machine Aide 34992.00000 3.499200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.499200e+04 3.499200e+04 0.00 NULL
2015 Admin For Children’s Svcs Ombudsman 61369.00000 6.136900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.136900e+04 6.136900e+04 0.00 NULL
2015 Admin For Children’s Svcs Painter NA NA 6352.50 6.352500e+03 6352.500 77.00 1 6.352500e+03 6352.50 NA NA NA NULL
2015 Admin For Children’s Svcs Paralegal Aide 37432.27273 8.235100e+05 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 8.235100e+05 8.235100e+05 0.00 NULL
2015 Admin For Children’s Svcs Plumber NA NA 112816.53 5.640826e+04 56408.265 1179.00 2 5.640826e+04 112816.53 NA NA NA NULL
2015 Admin For Children’s Svcs Principal Administrative Associate 52155.43642 1.689836e+07 305057.56 9.415357e+02 0.000 8470.75 324 0.000000e+00 0.00 1.720342e+07 1.689836e+07 305057.56 NULL
2015 Admin For Children’s Svcs Procurement Analyst 56967.71429 7.975480e+05 3382.62 2.416157e+02 0.000 62.75 14 0.000000e+00 0.00 8.009306e+05 7.975480e+05 3382.62 NULL
2015 Admin For Children’s Svcs Program Evaluator 70665.56842 6.713229e+06 13317.77 1.401871e+02 0.000 289.00 95 0.000000e+00 0.00 6.726547e+06 6.713229e+06 13317.77 NULL
2015 Admin For Children’s Svcs Project Manager 68845.00000 6.884500e+04 4838.19 4.838190e+03 4838.190 43.00 1 4.838190e+03 4838.19 7.368319e+04 7.368319e+04 0.00 NULL
2015 Admin For Children’s Svcs Protection Agent 60095.47143 8.413366e+06 858.11 6.129357e+00 0.000 5.25 140 0.000000e+00 0.00 8.414224e+06 8.413366e+06 858.11 NULL
2015 Admin For Children’s Svcs Recreation Director 42116.00000 4.211600e+04 2090.29 2.090290e+03 2090.290 74.25 1 2.090290e+03 2090.29 4.420629e+04 4.420629e+04 0.00 NULL
2015 Admin For Children’s Svcs Recreation Supervisor 52103.00000 5.210300e+04 10601.23 1.060123e+04 10601.230 290.25 1 1.060123e+04 10601.23 6.270423e+04 6.270423e+04 0.00 NULL
2015 Admin For Children’s Svcs Research Assistant 49762.75000 1.990510e+05 35.07 8.767500e+00 4.355 0.00 4 4.355000e+00 17.42 1.990861e+05 1.990684e+05 17.65 NULL
2015 Admin For Children’s Svcs Secretary 42938.22222 7.728880e+05 460.29 2.557167e+01 0.000 8.25 18 0.000000e+00 0.00 7.733483e+05 7.728880e+05 460.29 NULL
2015 Admin For Children’s Svcs Secretary Of Comm 64792.00000 1.295840e+05 119.98 5.999000e+01 59.990 0.00 2 5.999000e+01 119.98 1.297040e+05 1.297040e+05 0.00 NULL
2015 Admin For Children’s Svcs Sheet Metal Worker NA NA 63482.16 6.348216e+04 63482.160 598.50 1 6.348216e+04 63482.16 NA NA NA NULL
2015 Admin For Children’s Svcs Space Analyst 69910.50000 2.796420e+05 47622.59 1.190565e+04 9554.675 1081.50 4 9.554675e+03 38218.70 3.272646e+05 3.178607e+05 9403.89 NULL
2015 Admin For Children’s Svcs Special Officer 38352.77647 3.259986e+06 757824.17 8.915578e+03 7123.550 27276.50 85 7.123550e+03 605501.75 4.017810e+06 3.865488e+06 152322.42 NULL
2015 Admin For Children’s Svcs Staff Analyst 57821.05714 2.023737e+06 21919.74 6.262783e+02 0.000 474.50 35 0.000000e+00 0.00 2.045657e+06 2.023737e+06 21919.74 NULL
2015 Admin For Children’s Svcs Staff Analyst Trainee 39351.66667 1.180550e+05 257.74 8.591333e+01 0.000 10.50 3 0.000000e+00 0.00 1.183127e+05 1.180550e+05 257.74 NULL
2015 Admin For Children’s Svcs Staff Nurse 67737.16667 4.064230e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.064230e+05 4.064230e+05 0.00 NULL
2015 Admin For Children’s Svcs Stock Worker 35874.00000 3.587400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.587400e+04 3.587400e+04 0.00 NULL
2015 Admin For Children’s Svcs Superintendent 97908.66667 2.937260e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.937260e+05 2.937260e+05 0.00 NULL
2015 Admin For Children’s Svcs Supervising Computer Service Technician 62331.00000 6.233100e+04 14.06 1.406000e+01 14.060 0.00 1 1.406000e+01 14.06 6.234506e+04 6.234506e+04 0.00 NULL
2015 Admin For Children’s Svcs Supervising Special Officer 47930.52941 8.148190e+05 230709.16 1.357113e+04 9802.600 6636.00 17 9.802600e+03 166644.20 1.045528e+06 9.814632e+05 64064.96 NULL
2015 Admin For Children’s Svcs Supervisor I 52412.47619 1.100662e+06 8823.37 4.201605e+02 0.000 254.75 21 0.000000e+00 0.00 1.109485e+06 1.100662e+06 8823.37 NULL
2015 Admin For Children’s Svcs Supervisor I Social Work 74059.00000 7.405900e+04 5342.36 5.342360e+03 5342.360 121.00 1 5.342360e+03 5342.36 7.940136e+04 7.940136e+04 0.00 NULL
2015 Admin For Children’s Svcs Supervisor Ii 61624.36111 2.218477e+06 68160.04 1.893334e+03 0.000 1609.00 36 0.000000e+00 0.00 2.286637e+06 2.218477e+06 68160.04 NULL
2015 Admin For Children’s Svcs Supervisor Iii 71128.50000 9.957990e+05 27533.93 1.966709e+03 0.000 574.75 14 0.000000e+00 0.00 1.023333e+06 9.957990e+05 27533.93 NULL
2015 Admin For Children’s Svcs Supervisor Iii Social Work 76541.00000 7.654100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.654100e+04 7.654100e+04 0.00 NULL
2015 Admin For Children’s Svcs Supervisor Of Child Care 60844.36364 6.692880e+05 155604.04 1.414582e+04 13205.810 3401.75 11 1.320581e+04 145263.91 8.248920e+05 8.145519e+05 10340.13 NULL
2015 Admin For Children’s Svcs Supervisor Of Mechanical Installations & Maintenance 70084.00000 1.401680e+05 41787.38 2.089369e+04 20893.690 694.00 2 2.089369e+04 41787.38 1.819554e+05 1.819554e+05 0.00 NULL
2015 Admin For Children’s Svcs Supervisor Of Mechanics NA NA 39604.40 3.960440e+04 39604.400 464.00 1 3.960440e+04 39604.40 NA NA NA NULL
2015 Admin For Children’s Svcs Supervisor Of Nurses 78672.25000 3.146890e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.146890e+05 3.146890e+05 0.00 NULL
2015 Admin For Children’s Svcs Telecommunications Associate 63780.75000 7.653690e+05 33534.85 2.794571e+03 1522.545 707.00 12 1.522545e+03 18270.54 7.989038e+05 7.836395e+05 15264.31 NULL
2015 Admin Trials And Hearings Adm Manager-Non-Mgrl 68957.20000 1.379144e+06 725.70 3.628500e+01 0.000 19.50 20 0.000000e+00 0.00 1.379870e+06 1.379144e+06 725.70 NULL
2015 Admin Trials And Hearings Administrative Law Judge 134697.41667 1.616369e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.616369e+06 1.616369e+06 0.00 NULL
2015 Admin Trials And Hearings Administrative Manager 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2015 Admin Trials And Hearings Administrative Staff Analyst 99369.07692 1.291798e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.291798e+06 1.291798e+06 0.00 NULL
2015 Admin Trials And Hearings Agency Attorney 82801.50000 2.484045e+06 79.33 2.644333e+00 0.000 3.50 30 0.000000e+00 0.00 2.484124e+06 2.484045e+06 79.33 NULL
2015 Admin Trials And Hearings Agency Attorney Intern 12506.92667 3.752078e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.752078e+04 3.752078e+04 0.00 NULL
2015 Admin Trials And Hearings Agency Chief Contracting Officer 93072.00000 9.307200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.307200e+04 9.307200e+04 0.00 NULL
2015 Admin Trials And Hearings Associate Staff Analyst 73104.33333 4.386260e+05 61.58 1.026333e+01 0.000 2.75 6 0.000000e+00 0.00 4.386876e+05 4.386260e+05 61.58 NULL
2015 Admin Trials And Hearings Attorney At Law 80839.42857 5.658760e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.658760e+05 5.658760e+05 0.00 NULL
2015 Admin Trials And Hearings Bookkeeper 43973.00000 8.794600e+04 4.19 2.095000e+00 2.095 0.00 2 2.095000e+00 4.19 8.795019e+04 8.795019e+04 0.00 NULL
2015 Admin Trials And Hearings Certified It Developer 109444.00000 1.094440e+05 0.49 4.900000e-01 0.490 0.00 1 4.900000e-01 0.49 1.094445e+05 1.094445e+05 0.00 NULL
2015 Admin Trials And Hearings Chief Administrative Law Judge 196522.50000 3.930450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.930450e+05 3.930450e+05 0.00 NULL
2015 Admin Trials And Hearings City Laborer NA NA 49.11 2.455500e+01 24.555 0.00 2 2.455500e+01 49.11 NA NA NA NULL
2015 Admin Trials And Hearings Clerical Aide 30549.00000 1.221960e+05 32.02 8.005000e+00 4.010 0.00 4 4.010000e+00 16.04 1.222280e+05 1.222120e+05 15.98 NULL
2015 Admin Trials And Hearings Clerical Associate 34602.94987 2.041574e+06 729.46 1.236373e+01 0.000 1.50 59 0.000000e+00 0.00 2.042304e+06 2.041574e+06 729.46 NULL
2015 Admin Trials And Hearings College Aide 4857.13014 8.742834e+04 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 8.742834e+04 8.742834e+04 0.00 NULL
2015 Admin Trials And Hearings Community Assistant 25431.59716 6.103583e+05 108.06 4.502500e+00 0.000 2.50 24 0.000000e+00 0.00 6.104664e+05 6.103583e+05 108.06 NULL
2015 Admin Trials And Hearings Community Associate 41644.86375 1.332636e+06 551.54 1.723562e+01 0.000 28.25 32 0.000000e+00 0.00 1.333187e+06 1.332636e+06 551.54 NULL
2015 Admin Trials And Hearings Community Coordinator 61602.08333 7.392250e+05 204.18 1.701500e+01 0.000 7.00 12 0.000000e+00 0.00 7.394292e+05 7.392250e+05 204.18 NULL
2015 Admin Trials And Hearings Community Service Aide 15757.85850 1.197597e+06 2984.06 3.926395e+01 0.000 158.00 76 0.000000e+00 0.00 1.200581e+06 1.197597e+06 2984.06 NULL
2015 Admin Trials And Hearings Computer Aide-Non-Spvr 48608.20000 2.430410e+05 28902.08 5.780416e+03 2084.470 780.75 5 2.084470e+03 10422.35 2.719431e+05 2.534634e+05 18479.73 NULL
2015 Admin Trials And Hearings Computer Associate 63774.00000 2.550960e+05 5155.70 1.288925e+03 928.410 121.50 4 9.284100e+02 3713.64 2.602517e+05 2.588096e+05 1442.06 NULL
2015 Admin Trials And Hearings Computer Service Technician 57199.00000 5.719900e+04 4030.71 4.030710e+03 4030.710 92.00 1 4.030710e+03 4030.71 6.122971e+04 6.122971e+04 0.00 NULL
2015 Admin Trials And Hearings Computer Specialist 91653.40000 4.582670e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.582670e+05 4.582670e+05 0.00 NULL
2015 Admin Trials And Hearings Computer Systems Manager 121965.28571 8.537570e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.537570e+05 8.537570e+05 0.00 NULL
2015 Admin Trials And Hearings Confidential Secretary Of Administrative Law Judge 56937.00000 1.138740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.138740e+05 1.138740e+05 0.00 NULL
2015 Admin Trials And Hearings Executive Agency Counsel 103848.71429 2.907764e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 2.907764e+06 2.907764e+06 0.00 NULL
2015 Admin Trials And Hearings Hearing Officer 28441.18641 8.703003e+06 0.00 0.000000e+00 0.000 0.00 306 0.000000e+00 0.00 8.703003e+06 8.703003e+06 0.00 NULL
2015 Admin Trials And Hearings Member Of The Environmental Control Board - Oath 49.72840 2.486420e+02 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.486420e+02 2.486420e+02 0.00 NULL
2015 Admin Trials And Hearings Principal Administrative Associate 52407.37500 8.385180e+05 33.62 2.101250e+00 0.000 0.00 16 0.000000e+00 0.00 8.385516e+05 8.385180e+05 33.62 NULL
2015 Admin Trials And Hearings Procurement Analyst 60042.00000 6.004200e+04 464.80 4.648000e+02 464.800 24.50 1 4.648000e+02 464.80 6.050680e+04 6.050680e+04 0.00 NULL
2015 Admin Trials And Hearings Public Records Aide 36668.66667 3.300180e+05 48.43 5.381111e+00 1.130 0.00 9 1.130000e+00 10.17 3.300664e+05 3.300282e+05 38.26 NULL
2015 Admin Trials And Hearings Secretary 39889.20000 1.994460e+05 28.32 5.664000e+00 0.000 0.00 5 0.000000e+00 0.00 1.994743e+05 1.994460e+05 28.32 NULL
2015 Admin Trials And Hearings Staff Analyst 57556.33333 1.726690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.726690e+05 1.726690e+05 0.00 NULL
2015 Admin Trials And Hearings Staff Analyst Trainee 39025.33333 1.170760e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.170760e+05 1.170760e+05 0.00 NULL
2015 Board Of Correction Administrative Staff Analyst 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2015 Board Of Correction City Research Scientist 77968.50000 1.559370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.559370e+05 1.559370e+05 0.00 NULL
2015 Board Of Correction Community Coordinator 47703.00000 4.770300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.770300e+04 4.770300e+04 0.00 NULL
2015 Board Of Correction Computer Specialist 100284.00000 1.002840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.002840e+05 1.002840e+05 0.00 NULL
2015 Board Of Correction Correctional Standards Review Specialist 61486.27273 6.763490e+05 13.78 1.252727e+00 0.000 0.00 11 0.000000e+00 0.00 6.763628e+05 6.763490e+05 13.78 NULL
2015 Board Of Correction Deputy Executive Director 134602.00000 1.346020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.346020e+05 1.346020e+05 0.00 NULL
2015 Board Of Correction Director Of Correctional Standards Review 78129.00000 7.812900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.812900e+04 7.812900e+04 0.00 NULL
2015 Board Of Correction Executive Director 151865.00000 1.518650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.518650e+05 1.518650e+05 0.00 NULL
2015 Board Of Correction Secretary 44694.00000 4.469400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.469400e+04 4.469400e+04 0.00 NULL
2015 Board Of Election Administrative Assistant 47188.89247 4.388567e+06 729699.15 7.846227e+03 7853.020 19647.33 93 7.846227e+03 729699.15 5.118266e+06 5.118266e+06 0.00 NULL
2015 Board Of Election Administrative Associate 59108.85106 2.778116e+06 624280.79 1.328257e+04 10398.080 12997.03 47 1.039808e+04 488709.76 3.402397e+06 3.266826e+06 135571.03 NULL
2015 Board Of Election Administrative Manager 148696.00000 2.973920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.973920e+05 2.973920e+05 0.00 NULL
2015 Board Of Election Assistance Finance Officer 59518.00000 1.190360e+05 17369.64 8.684820e+03 8684.820 476.17 2 8.684820e+03 17369.64 1.364056e+05 1.364056e+05 0.00 NULL
2015 Board Of Election Associate Staff Analyst 76561.00000 1.148415e+06 213832.49 1.425550e+04 8725.960 3588.50 15 8.725960e+03 130889.40 1.362247e+06 1.279304e+06 82943.09 NULL
2015 Board Of Election Chief Clerk 130000.00000 5.200000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.200000e+05 5.200000e+05 0.00 NULL
2015 Board Of Election Clerk To The Board 33319.61240 4.298230e+06 776872.28 6.022266e+03 5713.610 28833.00 129 5.713610e+03 737055.69 5.075102e+06 5.035286e+06 39816.59 NULL
2015 Board Of Election Commissioner 36575.00000 4.389000e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 4.389000e+05 4.389000e+05 0.00 NULL
2015 Board Of Election Computer Operator 45503.00000 9.100600e+04 12261.87 6.130935e+03 6130.935 398.80 2 6.130935e+03 12261.87 1.032679e+05 1.032679e+05 0.00 NULL
2015 Board Of Election Computer Specialist 117369.75000 4.694790e+05 135916.87 3.397922e+04 34768.145 1468.00 4 3.397922e+04 135916.87 6.053959e+05 6.053959e+05 0.00 NULL
2015 Board Of Election Computer System Manager 131575.50000 2.631510e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.631510e+05 2.631510e+05 0.00 NULL
2015 Board Of Election Coordinator, Election Day Operations 100956.00000 1.009560e+05 11708.91 1.170891e+04 11708.910 155.00 1 1.170891e+04 11708.91 1.126649e+05 1.126649e+05 0.00 NULL
2015 Board Of Election Coordinator, Voter Registration Activities 88724.00000 8.872400e+04 21515.99 2.151599e+04 21515.990 337.50 1 2.151599e+04 21515.99 1.102400e+05 1.102400e+05 0.00 NULL
2015 Board Of Election Counsel 150103.50000 3.002070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.002070e+05 3.002070e+05 0.00 NULL
2015 Board Of Election Counsel To The Board 53217.50000 1.064350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.064350e+05 1.064350e+05 0.00 NULL
2015 Board Of Election Deputy Chief Clerk 111830.00000 1.230130e+06 823.34 7.484909e+01 0.000 0.00 11 0.000000e+00 0.00 1.230953e+06 1.230130e+06 823.34 NULL
2015 Board Of Election Deputy Executive Director 182500.00000 1.825000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.825000e+05 1.825000e+05 0.00 NULL
2015 Board Of Election Director Of Equipment 68961.50000 2.758460e+05 50144.28 1.253607e+04 9649.895 929.50 4 9.649895e+03 38599.58 3.259903e+05 3.144456e+05 11544.70 NULL
2015 Board Of Election Director, Public Affairs And Communication 109591.00000 1.095910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.095910e+05 1.095910e+05 0.00 NULL
2015 Board Of Election Executive Director 198200.00000 1.982000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.982000e+05 1.982000e+05 0.00 NULL
2015 Board Of Election Finance Officer 99528.00000 1.990560e+05 16048.35 8.024175e+03 8024.175 232.92 2 8.024175e+03 16048.35 2.151044e+05 2.151044e+05 0.00 NULL
2015 Board Of Election Financial Clerk 32119.37990 3.083460e+06 310925.61 3.238808e+03 2973.585 13761.02 96 2.973585e+03 285464.16 3.394386e+06 3.368925e+06 25461.45 NULL
2015 Board Of Election Project Coordinator 91197.18182 1.003169e+06 190789.45 1.734450e+04 11360.450 2990.50 11 1.136045e+04 124964.95 1.193958e+06 1.128134e+06 65824.50 NULL
2015 Board Of Election Senior Adminisrator 105061.00000 2.101220e+05 10440.14 5.220070e+03 5220.070 121.75 2 5.220070e+03 10440.14 2.205621e+05 2.205621e+05 0.00 NULL
2015 Board Of Election Senior Computer Programmer 73968.11111 6.657130e+05 247142.33 2.746026e+04 20806.240 4221.75 9 2.080624e+04 187256.16 9.128553e+05 8.529692e+05 59886.17 NULL
2015 Board Of Election Senior Systems Analysts 103166.00000 1.031660e+05 81174.41 8.117441e+04 81174.410 923.50 1 8.117441e+04 81174.41 1.843404e+05 1.843404e+05 0.00 NULL
2015 Board Of Election Stenographic/Secretarial Associate 47916.00000 4.791600e+04 5030.64 5.030640e+03 5030.640 133.00 1 5.030640e+03 5030.64 5.294664e+04 5.294664e+04 0.00 NULL
2015 Board Of Election Temporary Clerk 6243.25656 5.500309e+06 768163.18 8.719219e+02 73.590 36794.50 881 7.359000e+01 64832.79 6.268472e+06 5.565142e+06 703330.39 NULL
2015 Board Of Election Trainer Assistant 41555.72585 1.786896e+06 160434.46 3.731034e+03 2503.890 6280.92 43 2.503890e+03 107667.27 1.947331e+06 1.894563e+06 52767.19 NULL
2015 Board Of Election Voting Machine Technician 34190.34906 3.624177e+06 694979.08 6.556406e+03 6884.430 24845.73 106 6.556406e+03 694979.08 4.319156e+06 4.319156e+06 0.00 NULL
2015 Board Of Election Poll Workers Election Trainer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 531 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2015 Board Of Election Poll Workers Election Worker 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 32255 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2015 Board Of Election Poll Workers Hcppa 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2015 Borough President-Bronx Administrative Architect 72209.00000 7.220900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.220900e+04 7.220900e+04 0.00 NULL
2015 Borough President-Bronx Administrative City Planner 74104.00000 7.410400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.410400e+04 7.410400e+04 0.00 NULL
2015 Borough President-Bronx Administrative Manager 97885.77656 7.830862e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.830862e+05 7.830862e+05 0.00 NULL
2015 Borough President-Bronx Administrative Public Information Specialist 57513.00000 5.751300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.751300e+04 5.751300e+04 0.00 NULL
2015 Borough President-Bronx Assistant To The President 52281.60000 2.614080e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.614080e+05 2.614080e+05 0.00 NULL
2015 Borough President-Bronx Associate Staff Analyst 70771.00000 7.077100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.077100e+04 7.077100e+04 0.00 NULL
2015 Borough President-Bronx Borough President 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2015 Borough President-Bronx City Planning Technician 42568.00000 4.256800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.256800e+04 4.256800e+04 0.00 NULL
2015 Borough President-Bronx Clerical Associate 48649.50000 9.729900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.729900e+04 9.729900e+04 0.00 NULL
2015 Borough President-Bronx Community Assistant 36189.00000 3.618900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.618900e+04 3.618900e+04 0.00 NULL
2015 Borough President-Bronx Community Associate 50229.42857 3.516060e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.516060e+05 3.516060e+05 0.00 NULL
2015 Borough President-Bronx Community Coordinator 62643.25000 1.252865e+06 48389.66 2.419483e+03 0.000 884.00 20 0.000000e+00 0.00 1.301255e+06 1.252865e+06 48389.66 NULL
2015 Borough President-Bronx Community Planning Board Coordinator 45651.00000 4.565100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.565100e+04 4.565100e+04 0.00 NULL
2015 Borough President-Bronx Community Service Aide 10627.50000 1.062750e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.062750e+04 1.062750e+04 0.00 NULL
2015 Borough President-Bronx Consulting Engineer 145.96000 1.459600e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.459600e+02 1.459600e+02 0.00 NULL
2015 Borough President-Bronx Deputy Borough President 159876.00000 1.598760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.598760e+05 1.598760e+05 0.00 NULL
2015 Borough President-Bronx Director Of Community Planning Boards 106001.00000 1.060010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.060010e+05 1.060010e+05 0.00 NULL
2015 Borough President-Bronx Executive Assistant 157491.00000 1.574910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.574910e+05 1.574910e+05 0.00 NULL
2015 Borough President-Bronx Principal Administrative Associate 54437.00000 5.443700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.443700e+04 5.443700e+04 0.00 NULL
2015 Borough President-Bronx Public Information Officer 92026.00000 9.202600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.202600e+04 9.202600e+04 0.00 NULL
2015 Borough President-Bronx Research Liaison Adn Governmental Coordinator 114218.00000 1.142180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.142180e+05 1.142180e+05 0.00 NULL
2015 Borough President-Bronx Secretary To Assistant To President 92356.00000 9.235600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.235600e+04 9.235600e+04 0.00 NULL
2015 Borough President-Bronx Secretary To The Deputy Boro President 69488.00000 6.948800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.948800e+04 6.948800e+04 0.00 NULL
2015 Borough President-Bronx Secretary To The Excutive Assistant 69198.00000 1.383960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.383960e+05 1.383960e+05 0.00 NULL
2015 Borough President-Bronx Secretary To The President 111978.00000 1.119780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.119780e+05 1.119780e+05 0.00 NULL
2015 Borough President-Bronx Special Assistant To The Borough President 90589.66667 2.717690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.717690e+05 2.717690e+05 0.00 NULL
2015 Borough President-Brooklyn Adm Manager-Non-Mgrl 66536.00000 6.653600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.653600e+04 6.653600e+04 0.00 NULL
2015 Borough President-Brooklyn Administrative Accountant 70000.00000 7.000000e+04 1.51 1.510000e+00 1.510 0.00 1 1.510000e+00 1.51 7.000151e+04 7.000151e+04 0.00 NULL
2015 Borough President-Brooklyn Administrative Engineer 43031.04000 4.303104e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.303104e+04 4.303104e+04 0.00 NULL
2015 Borough President-Brooklyn Administrative Graphic Artist 66375.00000 6.637500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.637500e+04 6.637500e+04 0.00 NULL
2015 Borough President-Brooklyn Administrative Housing Development Specialist 146023.00000 1.460230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.460230e+05 1.460230e+05 0.00 NULL
2015 Borough President-Brooklyn Administrative Staff Analyst 75355.33333 2.260660e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.260660e+05 2.260660e+05 0.00 NULL
2015 Borough President-Brooklyn Assistant To The President 73852.27867 1.107784e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.107784e+06 1.107784e+06 0.00 NULL
2015 Borough President-Brooklyn Borough President 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2015 Borough President-Brooklyn Chauffeur-Attendant 60993.33333 1.829800e+05 10044.00 3.348000e+03 766.680 311.75 3 7.666800e+02 2300.04 1.930240e+05 1.852800e+05 7743.96 NULL
2015 Borough President-Brooklyn City Planner 93420.50000 1.868410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.868410e+05 1.868410e+05 0.00 NULL
2015 Borough President-Brooklyn Clerical Associate 53279.50000 1.065590e+05 1.36 6.800000e-01 0.680 0.00 2 6.800000e-01 1.36 1.065604e+05 1.065604e+05 0.00 NULL
2015 Borough President-Brooklyn Community Assistant 28675.00000 5.735000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.735000e+04 5.735000e+04 0.00 NULL
2015 Borough President-Brooklyn Community Associate 38365.21214 5.371130e+05 4439.99 3.171421e+02 0.000 239.00 14 0.000000e+00 0.00 5.415530e+05 5.371130e+05 4439.99 NULL
2015 Borough President-Brooklyn Community Coordinator 52291.91500 2.143969e+06 12102.19 2.951754e+02 0.000 328.25 41 0.000000e+00 0.00 2.156071e+06 2.143969e+06 12102.19 NULL
2015 Borough President-Brooklyn Community Service Aide 2331.46095 4.662922e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.662922e+03 4.662922e+03 0.00 NULL
2015 Borough President-Brooklyn Counsel To The Borough President 91162.50000 1.823250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.823250e+05 1.823250e+05 0.00 NULL
2015 Borough President-Brooklyn Deputy Borough President 142100.00000 1.421000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.421000e+05 1.421000e+05 0.00 NULL
2015 Borough President-Brooklyn Director Of Community Planning Boards 81125.00000 8.112500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.112500e+04 8.112500e+04 0.00 NULL
2015 Borough President-Brooklyn Executive Agency Counsel 137025.00000 1.370250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.370250e+05 1.370250e+05 0.00 NULL
2015 Borough President-Brooklyn Executive Assistant 147175.00000 1.471750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.471750e+05 1.471750e+05 0.00 NULL
2015 Borough President-Brooklyn Principal Administrative Associate 56587.00000 5.658700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.658700e+04 5.658700e+04 0.00 NULL
2015 Borough President-Brooklyn Program Producer 67020.00000 6.702000e+04 3391.33 3.391330e+03 3391.330 95.50 1 3.391330e+03 3391.33 7.041133e+04 7.041133e+04 0.00 NULL
2015 Borough President-Brooklyn Public Information Officer 79029.00000 1.580580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.580580e+05 1.580580e+05 0.00 NULL
2015 Borough President-Brooklyn Research & Liaison Coordinator 59777.42620 2.391097e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.391097e+05 2.391097e+05 0.00 NULL
2015 Borough President-Brooklyn Special Assistant To The Borough President 142100.00000 1.421000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.421000e+05 1.421000e+05 0.00 NULL
2015 Borough President-Manhattan Adm Manager-Non-Mgrl 58464.27273 6.431070e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 6.431070e+05 6.431070e+05 0.00 NULL
2015 Borough President-Manhattan Admin Contract Specialist 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2015 Borough President-Manhattan Administrative City Planner 70400.71429 4.928050e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.928050e+05 4.928050e+05 0.00 NULL
2015 Borough President-Manhattan Administrative Manager 83678.11111 7.531030e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.531030e+05 7.531030e+05 0.00 NULL
2015 Borough President-Manhattan Administrative Public Information Specialist 85537.60000 4.276880e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.276880e+05 4.276880e+05 0.00 NULL
2015 Borough President-Manhattan Administrative Staff Analyst 93797.08000 8.441737e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.441737e+05 8.441737e+05 0.00 NULL
2015 Borough President-Manhattan Assistant To The President 61445.50000 2.457820e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.457820e+05 2.457820e+05 0.00 NULL
2015 Borough President-Manhattan Borough President 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2015 Borough President-Manhattan Chauffeur Attendant 61154.00000 1.223080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.223080e+05 1.223080e+05 0.00 NULL
2015 Borough President-Manhattan Community Associate 46397.13091 5.103684e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.103684e+05 5.103684e+05 0.00 NULL
2015 Borough President-Manhattan Community Coordinator 59407.80600 5.940781e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.940781e+05 5.940781e+05 0.00 NULL
2015 Borough President-Manhattan Community Planning Board Coordinator 47949.06667 7.192360e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 7.192360e+05 7.192360e+05 0.00 NULL
2015 Borough President-Manhattan Computer Operations Manager 71657.00000 7.165700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.165700e+04 7.165700e+04 0.00 NULL
2015 Borough President-Manhattan Deputy Borough President 146270.00000 2.925400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.925400e+05 2.925400e+05 0.00 NULL
2015 Borough President-Manhattan Executive Assistant 142100.00000 1.421000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.421000e+05 1.421000e+05 0.00 NULL
2015 Borough President-Manhattan General Counsel 144643.50000 2.892870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.892870e+05 2.892870e+05 0.00 NULL
2015 Borough President-Manhattan Principal Administrative Associate 58342.00000 5.834200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.834200e+04 5.834200e+04 0.00 NULL
2015 Borough President-Manhattan Public Information Officer 78500.00000 1.570000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.570000e+05 1.570000e+05 0.00 NULL
2015 Borough President-Queens Administrative Staff Analyst 94046.00000 1.880920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.880920e+05 1.880920e+05 0.00 NULL
2015 Borough President-Queens Agency Attorney Intern 54884.00000 5.488400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.488400e+04 5.488400e+04 0.00 NULL
2015 Borough President-Queens Assistant Civil Engineer 70401.00000 7.040100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.040100e+04 7.040100e+04 0.00 NULL
2015 Borough President-Queens Assistant To The President 38500.00000 7.700000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.700000e+04 7.700000e+04 0.00 NULL
2015 Borough President-Queens Associate Staff Analyst 75162.00000 2.254860e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.254860e+05 2.254860e+05 0.00 NULL
2015 Borough President-Queens Borough President 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2015 Borough President-Queens Cashier 31278.00000 3.127800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.127800e+04 3.127800e+04 0.00 NULL
2015 Borough President-Queens Chauffeur-Attendant 57760.50000 1.155210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.155210e+05 1.155210e+05 0.00 NULL
2015 Borough President-Queens City Planner 57277.00000 5.727700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.727700e+04 5.727700e+04 0.00 NULL
2015 Borough President-Queens Clerical Associate 49114.00000 9.822800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.822800e+04 9.822800e+04 0.00 NULL
2015 Borough President-Queens Community Assistant 29313.87500 2.345110e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 2.345110e+05 2.345110e+05 0.00 NULL
2015 Borough President-Queens Community Associate 43022.75000 6.883640e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 6.883640e+05 6.883640e+05 0.00 NULL
2015 Borough President-Queens Community Coordinator 58457.55556 5.261180e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.261180e+05 5.261180e+05 0.00 NULL
2015 Borough President-Queens Community Planning Board Coordinator 60900.00000 6.090000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.090000e+04 6.090000e+04 0.00 NULL
2015 Borough President-Queens Computer Systems Manager 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2015 Borough President-Queens Counsel To The Borough President 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2015 Borough President-Queens Deputy Borough President 128500.00000 2.570000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.570000e+05 2.570000e+05 0.00 NULL
2015 Borough President-Queens Deputy Director Of Community Planning Boards 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2015 Borough President-Queens Director Borough President’s Office Of Administration Queens 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2015 Borough President-Queens Engineering Technician 58794.80000 2.939740e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.939740e+05 2.939740e+05 0.00 NULL
2015 Borough President-Queens Executive Agency Counsel 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2015 Borough President-Queens Executive Assistant 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2015 Borough President-Queens Fiscal And Policy Analyst 45000.00000 4.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.500000e+04 4.500000e+04 0.00 NULL
2015 Borough President-Queens Principal Administrative Associate 66224.00000 2.648960e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.648960e+05 2.648960e+05 0.00 NULL
2015 Borough President-Queens Public Information Officer 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2015 Borough President-Queens Research And Liaison Specialist 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2015 Borough President-Queens Secretary 26381.66667 7.914500e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.914500e+04 7.914500e+04 0.00 NULL
2015 Borough President-Queens Secretary To The President 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2015 Borough President-Queens Special Assistant To The Borough President 84250.00000 3.370000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.370000e+05 3.370000e+05 0.00 NULL
2015 Borough President-Staten Is Administrative Architect 147650.00000 1.476500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.476500e+05 1.476500e+05 0.00 NULL
2015 Borough President-Staten Is Administrative Staff Analyst 109664.00000 1.096640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.096640e+05 1.096640e+05 0.00 NULL
2015 Borough President-Staten Is Assistant To The President 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2015 Borough President-Staten Is Asst Project Planner 49766.00000 4.976600e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.976600e+05 4.976600e+05 0.00 NULL
2015 Borough President-Staten Is Borough President 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2015 Borough President-Staten Is Clerical Associate 53232.00000 5.323200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.323200e+04 5.323200e+04 0.00 NULL
2015 Borough President-Staten Is College Aide 2288.52000 2.288520e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.288520e+03 2.288520e+03 0.00 NULL
2015 Borough President-Staten Is Community Assistant 30588.00000 3.058800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.058800e+04 3.058800e+04 0.00 NULL
2015 Borough President-Staten Is Community Associate 48469.62500 3.877570e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 3.877570e+05 3.877570e+05 0.00 NULL
2015 Borough President-Staten Is Community Coordinator 61491.87500 4.919350e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.919350e+05 4.919350e+05 0.00 NULL
2015 Borough President-Staten Is Confidential Assistant To Boro President 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2015 Borough President-Staten Is Counsel To The Borough President 72797.79000 7.279779e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.279779e+04 7.279779e+04 0.00 NULL
2015 Borough President-Staten Is Deputy Borough President 148820.00000 1.488200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.488200e+05 1.488200e+05 0.00 NULL
2015 Borough President-Staten Is Director Of Community Planning Boards 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2015 Borough President-Staten Is Engineering Technician 30044.24250 6.008849e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.008849e+04 6.008849e+04 0.00 NULL
2015 Borough President-Staten Is Executive Assistant 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2015 Borough President-Staten Is Project Planner 45316.30000 2.265815e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.265815e+05 2.265815e+05 0.00 NULL
2015 Borough President-Staten Is Public Information Officer 101000.00000 1.010000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.010000e+05 1.010000e+05 0.00 NULL
2015 Borough President-Staten Is Secretary 56500.00000 1.130000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.130000e+05 1.130000e+05 0.00 NULL
2015 Borough President-Staten Is Special Assistant To The Borough President 55090.75710 5.509076e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.509076e+04 5.509076e+04 0.00 NULL
2015 Borough President-Staten Is Staff Analyst 60346.00000 6.034600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.034600e+04 6.034600e+04 0.00 NULL
2015 Borough President-Staten Is Surveyor 90551.00000 9.055100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.055100e+04 9.055100e+04 0.00 NULL
2015 Bronx Community Board #1 City Seasonal Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2015 Bronx Community Board #1 Community Coordinator 74019.00000 7.401900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.401900e+04 7.401900e+04 0.00 NULL
2015 Bronx Community Board #1 District Manager 121391.00000 1.213910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.213910e+05 1.213910e+05 0.00 NULL
2015 Bronx Community Board #10 Clerical Associate 18607.35875 7.442943e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.442943e+04 7.442943e+04 0.00 NULL
2015 Bronx Community Board #10 Community Assistant 26100.30000 2.610030e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.610030e+04 2.610030e+04 0.00 NULL
2015 Bronx Community Board #10 District Manager 90721.00000 9.072100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.072100e+04 9.072100e+04 0.00 NULL
2015 Bronx Community Board #11 Administrative Manager 25838.67000 2.583867e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.583867e+04 2.583867e+04 0.00 NULL
2015 Bronx Community Board #11 Community Assistant 15559.10000 1.555910e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.555910e+04 1.555910e+04 0.00 NULL
2015 Bronx Community Board #11 Community Associate 33351.36000 3.335136e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.335136e+04 3.335136e+04 0.00 NULL
2015 Bronx Community Board #11 Community Coordinator 27029.16000 5.405832e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.405832e+04 5.405832e+04 0.00 NULL
2015 Bronx Community Board #11 District Manager 74500.00000 7.450000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.450000e+04 7.450000e+04 0.00 NULL
2015 Bronx Community Board #12 Community Associate 52260.00000 5.226000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.226000e+04 5.226000e+04 0.00 NULL
2015 Bronx Community Board #12 Community Service Aide 14835.00000 2.967000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.967000e+04 2.967000e+04 0.00 NULL
2015 Bronx Community Board #12 District Manager 110704.00000 1.107040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.107040e+05 1.107040e+05 0.00 NULL
2015 Bronx Community Board #2 Community Assistant 32976.00000 3.297600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.297600e+04 3.297600e+04 0.00 NULL
2015 Bronx Community Board #2 Community Associate 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2015 Bronx Community Board #2 District Manager 114570.00000 1.145700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.145700e+05 1.145700e+05 0.00 NULL
2015 Bronx Community Board #3 Adm Manager-Non-Mgrl 80856.00000 8.085600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.085600e+04 8.085600e+04 0.00 NULL
2015 Bronx Community Board #3 District Manager 118618.00000 1.186180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.186180e+05 1.186180e+05 0.00 NULL
2015 Bronx Community Board #4 Community Associate 49073.00000 9.814600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.814600e+04 9.814600e+04 0.00 NULL
2015 Bronx Community Board #4 District Manager 89015.00000 8.901500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.901500e+04 8.901500e+04 0.00 NULL
2015 Bronx Community Board #5 Adm Manager-Non-Mgrl 78827.00000 7.882700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.882700e+04 7.882700e+04 0.00 NULL
2015 Bronx Community Board #5 Community Assistant 32976.00000 3.297600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.297600e+04 3.297600e+04 0.00 NULL
2015 Bronx Community Board #5 District Manager 99177.00000 9.917700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.917700e+04 9.917700e+04 0.00 NULL
2015 Bronx Community Board #6 Community Coordinator 73533.00000 7.353300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.353300e+04 7.353300e+04 0.00 NULL
2015 Bronx Community Board #6 District Manager 116103.00000 1.161030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.161030e+05 1.161030e+05 0.00 NULL
2015 Bronx Community Board #7 Community Associate 44166.50000 8.833300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.833300e+04 8.833300e+04 0.00 NULL
2015 Bronx Community Board #7 District Manager 73520.00000 7.352000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.352000e+04 7.352000e+04 0.00 NULL
2015 Bronx Community Board #8 Community Associate 39766.00000 3.976600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.976600e+04 3.976600e+04 0.00 NULL
2015 Bronx Community Board #8 District Manager 88876.50000 1.777530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.777530e+05 1.777530e+05 0.00 NULL
2015 Bronx Community Board #9 College Aide 9054.45000 9.054450e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.054450e+03 9.054450e+03 0.00 NULL
2015 Bronx Community Board #9 Community Associate 48664.00000 4.866400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.866400e+04 4.866400e+04 0.00 NULL
2015 Bronx Community Board #9 District Manager 98634.00000 9.863400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.863400e+04 9.863400e+04 0.00 NULL
2015 Bronx District Attorney Accountant 79013.00000 7.901300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.901300e+04 7.901300e+04 0.00 NULL
2015 Bronx District Attorney Adm Manager-Non-Mgrl 69569.00000 4.869830e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.869830e+05 4.869830e+05 0.00 NULL
2015 Bronx District Attorney Administrative Accountant 130800.00000 1.308000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.308000e+05 1.308000e+05 0.00 NULL
2015 Bronx District Attorney Administrative Chief 195000.00000 1.950000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.950000e+05 1.950000e+05 0.00 NULL
2015 Bronx District Attorney Administrative Community Relations Specialist 102500.00000 1.025000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.025000e+05 1.025000e+05 0.00 NULL
2015 Bronx District Attorney Administrative Staff Analyst 104993.33333 3.149800e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.149800e+05 3.149800e+05 0.00 NULL
2015 Bronx District Attorney Assistant District Attorney 81447.11253 3.836159e+07 2490.48 5.287643e+00 0.000 106.75 471 0.000000e+00 0.00 3.836408e+07 3.836159e+07 2490.48 NULL
2015 Bronx District Attorney Associate Staff Analyst 82019.00000 1.640380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.640380e+05 1.640380e+05 0.00 NULL
2015 Bronx District Attorney Certified It Administrator 102478.33333 3.074350e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.074350e+05 3.074350e+05 0.00 NULL
2015 Bronx District Attorney Chief Rackets Investigator 146500.00000 1.465000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.465000e+05 1.465000e+05 0.00 NULL
2015 Bronx District Attorney Clerical Associate 41026.73684 2.338524e+06 127807.20 2.242232e+03 0.000 4171.00 57 0.000000e+00 0.00 2.466331e+06 2.338524e+06 127807.20 NULL
2015 Bronx District Attorney Community Assistant 32422.88000 4.052860e+06 172334.90 1.378679e+03 0.780 7312.50 125 7.800000e-01 97.50 4.225195e+06 4.052958e+06 172237.40 NULL
2015 Bronx District Attorney Community Associate 39420.47661 6.346697e+06 283791.95 1.762683e+03 0.360 10080.75 161 3.600000e-01 57.96 6.630489e+06 6.346755e+06 283733.99 NULL
2015 Bronx District Attorney Community Coordinator 61633.91304 1.417580e+06 41264.61 1.794113e+03 70.920 1043.50 23 7.092000e+01 1631.16 1.458845e+06 1.419211e+06 39633.45 NULL
2015 Bronx District Attorney Community Service Aide 27102.01980 2.737304e+06 87592.01 8.672476e+02 42.510 4650.25 101 4.251000e+01 4293.51 2.824896e+06 2.741598e+06 83298.50 NULL
2015 Bronx District Attorney Computer Associate 82040.75000 3.281630e+05 23.37 5.842500e+00 4.545 0.00 4 4.545000e+00 18.18 3.281864e+05 3.281812e+05 5.19 NULL
2015 Bronx District Attorney Deputy Chief Rackets Investigator 119300.00000 1.193000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.193000e+05 1.193000e+05 0.00 NULL
2015 Bronx District Attorney Director Of Public Information 136000.00000 1.360000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.360000e+05 1.360000e+05 0.00 NULL
2015 Bronx District Attorney District Attorney 190000.00000 1.900000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.900000e+05 1.900000e+05 0.00 NULL
2015 Bronx District Attorney Interpreter 45611.54545 5.017270e+05 61287.76 5.571615e+03 3708.180 2958.50 11 3.708180e+03 40789.98 5.630148e+05 5.425170e+05 20497.78 NULL
2015 Bronx District Attorney Media Services Technician 51455.00000 1.029100e+05 47045.08 2.352254e+04 23522.540 1146.25 2 2.352254e+04 47045.08 1.499551e+05 1.499551e+05 0.00 NULL
2015 Bronx District Attorney Paralegal Aide 47193.50000 9.438700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.438700e+04 9.438700e+04 0.00 NULL
2015 Bronx District Attorney Principal Accountant Investigator 117450.00000 2.349000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.349000e+05 2.349000e+05 0.00 NULL
2015 Bronx District Attorney Principal Administrative Associate 62189.14286 8.706480e+05 2592.70 1.851929e+02 0.000 67.00 14 0.000000e+00 0.00 8.732407e+05 8.706480e+05 2592.70 NULL
2015 Bronx District Attorney Private Secretary 96800.00000 9.680000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.680000e+04 9.680000e+04 0.00 NULL
2015 Bronx District Attorney Procurement Analyst 73611.00000 7.361100e+04 60.24 6.024000e+01 60.240 1.00 1 6.024000e+01 60.24 7.367124e+04 7.367124e+04 0.00 NULL
2015 Bronx District Attorney Rackets Investigator 47522.66667 7.128400e+05 33448.33 2.229889e+03 1799.620 710.75 15 1.799620e+03 26994.30 7.462883e+05 7.398343e+05 6454.03 NULL
2015 Bronx District Attorney Reporter/ Stenographer 57014.81713 1.140296e+06 28171.37 1.408569e+03 116.255 576.00 20 1.162550e+02 2325.10 1.168468e+06 1.142621e+06 25846.27 NULL
2015 Bronx District Attorney Secretary 43189.33333 2.591360e+05 7568.14 1.261357e+03 16.710 335.75 6 1.671000e+01 100.26 2.667041e+05 2.592363e+05 7467.88 NULL
2015 Bronx District Attorney Senior Accountant Investigator 69953.50000 1.399070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.399070e+05 1.399070e+05 0.00 NULL
2015 Bronx District Attorney Senior Rackets Investigator 55765.26087 1.282601e+06 25241.01 1.097435e+03 445.250 463.00 23 4.452500e+02 10240.75 1.307842e+06 1.292842e+06 15000.26 NULL
2015 Bronx District Attorney Special Assistant To The District Attorney 136166.66667 8.170000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.170000e+05 8.170000e+05 0.00 NULL
2015 Bronx District Attorney Special Officer 44329.75000 1.773190e+05 1962.27 4.905675e+02 514.165 53.75 4 4.905675e+02 1962.27 1.792813e+05 1.792813e+05 0.00 NULL
2015 Bronx District Attorney Stock Worker 41041.00000 4.104100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.104100e+04 4.104100e+04 0.00 NULL
2015 Bronx District Attorney Supervising Rackets Investigator 78244.50000 3.129780e+05 16005.59 4.001398e+03 2853.625 134.75 4 2.853625e+03 11414.50 3.289836e+05 3.243925e+05 4591.09 NULL
2015 Brooklyn Community Board #1 Assistant District Manager 55514.00000 5.551400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.551400e+04 5.551400e+04 0.00 NULL
2015 Brooklyn Community Board #1 Community Associate 13543.51500 2.708703e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.708703e+04 2.708703e+04 0.00 NULL
2015 Brooklyn Community Board #1 District Manager 116793.00000 1.167930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.167930e+05 1.167930e+05 0.00 NULL
2015 Brooklyn Community Board #10 Community Assistant 18862.25000 1.886225e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.886225e+04 1.886225e+04 0.00 NULL
2015 Brooklyn Community Board #10 Community Coordinator 67145.00000 6.714500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.714500e+04 6.714500e+04 0.00 NULL
2015 Brooklyn Community Board #10 District Manager 111049.00000 1.110490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.110490e+05 1.110490e+05 0.00 NULL
2015 Brooklyn Community Board #11 Community Assistant 23555.25000 2.355525e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.355525e+04 2.355525e+04 0.00 NULL
2015 Brooklyn Community Board #11 Community Coordinator 58660.00000 5.866000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.866000e+04 5.866000e+04 0.00 NULL
2015 Brooklyn Community Board #11 District Manager 90651.00000 9.065100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.065100e+04 9.065100e+04 0.00 NULL
2015 Brooklyn Community Board #12 Community Assistant 34635.50000 6.927100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.927100e+04 6.927100e+04 0.00 NULL
2015 Brooklyn Community Board #12 District Manager 85448.00000 8.544800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.544800e+04 8.544800e+04 0.00 NULL
2015 Brooklyn Community Board #13 Community Coordinator 64758.00000 6.475800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.475800e+04 6.475800e+04 0.00 NULL
2015 Brooklyn Community Board #13 District Manager 95254.00000 9.525400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.525400e+04 9.525400e+04 0.00 NULL
2015 Brooklyn Community Board #13 Secretary 38497.45000 3.849745e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.849745e+04 3.849745e+04 0.00 NULL
2015 Brooklyn Community Board #14 Community Associate 47676.38500 9.535277e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.535277e+04 9.535277e+04 0.00 NULL
2015 Brooklyn Community Board #14 District Manager 95756.00000 9.575600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.575600e+04 9.575600e+04 0.00 NULL
2015 Brooklyn Community Board #15 Community Assistant 33927.50000 6.785500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.785500e+04 6.785500e+04 0.00 NULL
2015 Brooklyn Community Board #15 Community Associate 51051.00000 5.105100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.105100e+04 5.105100e+04 0.00 NULL
2015 Brooklyn Community Board #15 District Manager 61928.50000 1.238570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.238570e+05 1.238570e+05 0.00 NULL
2015 Brooklyn Community Board #16 Community Assistant 20180.30000 4.036060e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.036060e+04 4.036060e+04 0.00 NULL
2015 Brooklyn Community Board #16 Community Coordinator 64292.00000 6.429200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.429200e+04 6.429200e+04 0.00 NULL
2015 Brooklyn Community Board #16 District Manager 106589.00000 1.065890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.065890e+05 1.065890e+05 0.00 NULL
2015 Brooklyn Community Board #17 Community Assistant 34166.50000 6.833300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.833300e+04 6.833300e+04 0.00 NULL
2015 Brooklyn Community Board #17 Community Coordinator 54858.00000 5.485800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.485800e+04 5.485800e+04 0.00 NULL
2015 Brooklyn Community Board #17 District Manager 76681.00000 7.668100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.668100e+04 7.668100e+04 0.00 NULL
2015 Brooklyn Community Board #18 Community Assistant 32977.00000 3.297700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.297700e+04 3.297700e+04 0.00 NULL
2015 Brooklyn Community Board #18 Community Associate 49241.00000 4.924100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.924100e+04 4.924100e+04 0.00 NULL
2015 Brooklyn Community Board #18 Community Service Aide 25889.00000 2.588900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.588900e+04 2.588900e+04 0.00 NULL
2015 Brooklyn Community Board #18 District Manager 132437.00000 1.324370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.324370e+05 1.324370e+05 0.00 NULL
2015 Brooklyn Community Board #2 Community Associate 33799.00000 3.379900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.379900e+04 3.379900e+04 0.00 NULL
2015 Brooklyn Community Board #2 Community Coordinator 58658.00000 5.865800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.865800e+04 5.865800e+04 0.00 NULL
2015 Brooklyn Community Board #2 District Manager 95044.00000 9.504400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.504400e+04 9.504400e+04 0.00 NULL
2015 Brooklyn Community Board #2 Secretary 51312.00000 5.131200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.131200e+04 5.131200e+04 0.00 NULL
2015 Brooklyn Community Board #3 Assistant District Manager 57369.00000 5.736900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.736900e+04 5.736900e+04 0.00 NULL
2015 Brooklyn Community Board #3 Community Assistant 36926.00000 3.692600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.692600e+04 3.692600e+04 0.00 NULL
2015 Brooklyn Community Board #3 District Manager 77081.00000 7.708100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.708100e+04 7.708100e+04 0.00 NULL
2015 Brooklyn Community Board #4 Community Associate 49038.50000 9.807700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.807700e+04 9.807700e+04 0.00 NULL
2015 Brooklyn Community Board #4 Community Service Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2015 Brooklyn Community Board #4 District Manager 83547.00000 8.354700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.354700e+04 8.354700e+04 0.00 NULL
2015 Brooklyn Community Board #5 Community Associate 37378.00000 7.475600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.475600e+04 7.475600e+04 0.00 NULL
2015 Brooklyn Community Board #5 Community Service Aide 8994.43300 1.798887e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.798887e+04 1.798887e+04 0.00 NULL
2015 Brooklyn Community Board #5 District Manager 103792.00000 1.037920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.037920e+05 1.037920e+05 0.00 NULL
2015 Brooklyn Community Board #6 Assistant District Manager 47129.00000 4.712900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.712900e+04 4.712900e+04 0.00 NULL
2015 Brooklyn Community Board #6 Community Associate 42064.00000 4.206400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.206400e+04 4.206400e+04 0.00 NULL
2015 Brooklyn Community Board #6 District Manager 109993.00000 1.099930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.099930e+05 1.099930e+05 0.00 NULL
2015 Brooklyn Community Board #7 Community Associate 43443.00000 4.344300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.344300e+04 4.344300e+04 0.00 NULL
2015 Brooklyn Community Board #7 Community Coordinator 60905.00000 6.090500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.090500e+04 6.090500e+04 0.00 NULL
2015 Brooklyn Community Board #7 Community Service Aide 28754.00000 2.875400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.875400e+04 2.875400e+04 0.00 NULL
2015 Brooklyn Community Board #7 District Manager 90844.00000 9.084400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.084400e+04 9.084400e+04 0.00 NULL
2015 Brooklyn Community Board #8 Community Assistant 28676.00000 2.867600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.867600e+04 2.867600e+04 0.00 NULL
2015 Brooklyn Community Board #8 Community Associate 55885.00000 5.588500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.588500e+04 5.588500e+04 0.00 NULL
2015 Brooklyn Community Board #8 Community Service Aide 30623.00000 3.062300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.062300e+04 3.062300e+04 0.00 NULL
2015 Brooklyn Community Board #8 District Manager 87041.00000 8.704100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.704100e+04 8.704100e+04 0.00 NULL
2015 Brooklyn Community Board #9 Community Assistant 29547.66667 8.864300e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 8.864300e+04 8.864300e+04 0.00 NULL
2015 Brooklyn Community Board #9 District Manager 138978.00000 1.389780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.389780e+05 1.389780e+05 0.00 NULL
2015 Business Integrity Commission Administrative Staff Analyst 100408.56250 1.606537e+06 21.41 1.338125e+00 0.000 0.00 16 0.000000e+00 0.00 1.606558e+06 1.606537e+06 21.41 NULL
2015 Business Integrity Commission Associate Fraud Investigator 61867.60000 3.093380e+05 15585.11 3.117022e+03 985.210 373.50 5 9.852100e+02 4926.05 3.249231e+05 3.142640e+05 10659.06 NULL
2015 Business Integrity Commission Associate Investigator 61610.00000 1.232200e+05 30.94 1.547000e+01 15.470 0.00 2 1.547000e+01 30.94 1.232509e+05 1.232509e+05 0.00 NULL
2015 Business Integrity Commission Associate Staff Analyst 84311.00000 8.431100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.431100e+04 8.431100e+04 0.00 NULL
2015 Business Integrity Commission Chair 214413.00000 2.144130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144130e+05 2.144130e+05 0.00 NULL
2015 Business Integrity Commission Clerical Associate 49284.00000 9.856800e+04 1.69 8.450000e-01 0.845 0.00 2 8.450000e-01 1.69 9.856969e+04 9.856969e+04 0.00 NULL
2015 Business Integrity Commission Community Assistant 30000.00000 3.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.000000e+04 3.000000e+04 0.00 NULL
2015 Business Integrity Commission Community Associate 43388.02632 1.648745e+06 12721.65 3.347803e+02 0.000 488.50 38 0.000000e+00 0.00 1.661467e+06 1.648745e+06 12721.65 NULL
2015 Business Integrity Commission Community Coordinator 65068.75000 2.602750e+05 3954.28 9.885700e+02 0.585 103.75 4 5.850000e-01 2.34 2.642293e+05 2.602773e+05 3951.94 NULL
2015 Business Integrity Commission Computer Associate 61135.00000 1.222700e+05 935.18 4.675900e+02 467.590 31.00 2 4.675900e+02 935.18 1.232052e+05 1.232052e+05 0.00 NULL
2015 Business Integrity Commission Computer Programmer Analyst 62708.00000 6.270800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.270800e+04 6.270800e+04 0.00 NULL
2015 Business Integrity Commission Computer Systems Manager 97163.00000 9.716300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.716300e+04 9.716300e+04 0.00 NULL
2015 Business Integrity Commission Executive Agency Counsel 105807.16667 1.269686e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.269686e+06 1.269686e+06 0.00 NULL
2015 Business Integrity Commission Inspector 56673.00000 5.667300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.667300e+04 5.667300e+04 0.00 NULL
2015 Business Integrity Commission Management Auditor 74554.00000 7.455400e+04 79.57 7.957000e+01 79.570 1.75 1 7.957000e+01 79.57 7.463357e+04 7.463357e+04 0.00 NULL
2015 Business Integrity Commission Market Agent 44826.64706 7.620530e+05 14770.92 8.688776e+02 228.590 404.75 17 2.285900e+02 3886.03 7.768239e+05 7.659390e+05 10884.89 NULL
2015 Business Integrity Commission Principal Administrative Associate 53949.00000 1.618470e+05 -5.83 -1.943333e+00 0.000 0.00 3 -1.943333e+00 -5.83 1.618412e+05 1.618412e+05 0.00 NULL
2015 Campaign Finance Board Admin Asst-Campaign Fin Board 53644.30500 9.655975e+05 5212.19 2.895661e+02 37.705 156.00 18 3.770500e+01 678.69 9.708097e+05 9.662762e+05 4533.50 NULL
2015 Campaign Finance Board Administrative Accountant 134475.00000 1.344750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.344750e+05 1.344750e+05 0.00 NULL
2015 Campaign Finance Board Administrative Staff Analyst 121091.85714 8.476430e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.476430e+05 8.476430e+05 0.00 NULL
2015 Campaign Finance Board Analyst 58011.69344 3.480702e+06 160857.72 2.680962e+03 264.405 4070.25 60 2.644050e+02 15864.30 3.641559e+06 3.496566e+06 144993.42 NULL
2015 Campaign Finance Board Associate Staff Analyst 94122.00000 9.412200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.412200e+04 9.412200e+04 0.00 NULL
2015 Campaign Finance Board Attorney-Campaign Fin Board 94432.37500 7.554590e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.554590e+05 7.554590e+05 0.00 NULL
2015 Campaign Finance Board College Aide 3059.07833 3.670894e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 3.670894e+04 3.670894e+04 0.00 NULL
2015 Campaign Finance Board Computer Systems Manager 137961.50000 2.759230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.759230e+05 2.759230e+05 0.00 NULL
2015 Campaign Finance Board Director Of Public Relations 113867.00000 1.138670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.138670e+05 1.138670e+05 0.00 NULL
2015 Campaign Finance Board Executive Agency Counsel 181802.00000 1.818020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.818020e+05 1.818020e+05 0.00 NULL
2015 Campaign Finance Board Executive Director 210828.00000 2.108280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.108280e+05 2.108280e+05 0.00 NULL
2015 Campaign Finance Board Principal Administrative Associate 58587.00000 5.858700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.858700e+04 5.858700e+04 0.00 NULL
2015 Campaign Finance Board Secretary To The Executive Director 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2015 Campaign Finance Board Summer College Intern 1595.44000 1.595440e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.595440e+03 1.595440e+03 0.00 NULL
2015 Campaign Finance Board Systems Administrator-Cam Fin Bd 86388.77923 1.123054e+06 4948.15 3.806269e+02 0.000 134.75 13 0.000000e+00 0.00 1.128002e+06 1.123054e+06 4948.15 NULL
2015 City Clerk Administrative Investigator 71868.00000 7.186800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.186800e+04 7.186800e+04 0.00 NULL
2015 City Clerk Administrative Manager 158546.00000 1.585460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.585460e+05 1.585460e+05 0.00 NULL
2015 City Clerk Assistant Administrator 73203.00000 7.320300e+04 60.86 6.086000e+01 60.860 0.00 1 6.086000e+01 60.86 7.326386e+04 7.326386e+04 0.00 NULL
2015 City Clerk Associate Investigator 45037.00000 4.503700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.503700e+04 4.503700e+04 0.00 NULL
2015 City Clerk Cashier 44118.25000 1.764730e+05 11.00 2.750000e+00 0.000 0.00 4 0.000000e+00 0.00 1.764840e+05 1.764730e+05 11.00 NULL
2015 City Clerk Chief Of Staff 94302.00000 9.430200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.430200e+04 9.430200e+04 0.00 NULL
2015 City Clerk City Clerk & Clerk Of Council 210044.00000 2.100440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.100440e+05 2.100440e+05 0.00 NULL
2015 City Clerk Clerical Associate 37024.87234 1.740169e+06 1672.79 3.559128e+01 0.000 31.25 47 0.000000e+00 0.00 1.741842e+06 1.740169e+06 1672.79 NULL
2015 City Clerk College Aide 4743.24933 7.114874e+04 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 7.114874e+04 7.114874e+04 0.00 NULL
2015 City Clerk Community Assistant 34802.50000 6.960500e+04 0.24 1.200000e-01 0.120 0.00 2 1.200000e-01 0.24 6.960524e+04 6.960524e+04 0.00 NULL
2015 City Clerk Community Associate 38881.00000 3.888100e+04 45.15 4.515000e+01 45.150 0.00 1 4.515000e+01 45.15 3.892615e+04 3.892615e+04 0.00 NULL
2015 City Clerk Community Coordinator 72286.25000 2.891450e+05 4630.66 1.157665e+03 669.730 85.50 4 6.697300e+02 2678.92 2.937757e+05 2.918239e+05 1951.74 NULL
2015 City Clerk Cooperative Educational Trainee 1090.60000 1.090600e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.090600e+03 1.090600e+03 0.00 NULL
2015 City Clerk Deputy City Clerk 114795.16667 6.887710e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.887710e+05 6.887710e+05 0.00 NULL
2015 City Clerk Executive Agency Counsel 142528.00000 1.425280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.425280e+05 1.425280e+05 0.00 NULL
2015 City Clerk Executive Assistant To The City Clerk 78621.00000 7.862100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.862100e+04 7.862100e+04 0.00 NULL
2015 City Clerk Executive Assistant To The First Deputy Clerk 44351.00000 4.435100e+04 1.95 1.950000e+00 1.950 0.00 1 1.950000e+00 1.95 4.435295e+04 4.435295e+04 0.00 NULL
2015 City Clerk Executive Secretary To City Clerk 36899.00000 3.689900e+04 65.09 6.509000e+01 65.090 0.00 1 6.509000e+01 65.09 3.696409e+04 3.696409e+04 0.00 NULL
2015 City Clerk Principal Administrative Associate 68937.33333 2.068120e+05 257.60 8.586667e+01 0.000 0.00 3 0.000000e+00 0.00 2.070696e+05 2.068120e+05 257.60 NULL
2015 City Clerk Public Records Officer 46413.20000 2.320660e+05 21.14 4.228000e+00 0.000 0.00 5 0.000000e+00 0.00 2.320871e+05 2.320660e+05 21.14 NULL
2015 City Clerk Secretary 29897.00000 2.989700e+04 68.02 6.802000e+01 68.020 0.00 1 6.802000e+01 68.02 2.996502e+04 2.996502e+04 0.00 NULL
2015 City Clerk Special Advisor To City Clerk 91751.00000 9.175100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.175100e+04 9.175100e+04 0.00 NULL
2015 City Council Assistant Director Of Administration 123755.00000 6.187750e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.187750e+05 6.187750e+05 0.00 NULL
2015 City Council Assistant Director Of Legal Services 103159.20000 5.157960e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.157960e+05 5.157960e+05 0.00 NULL
2015 City Council Assistant Sergeant At Arms 41462.50000 3.317000e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 3.317000e+05 3.317000e+05 0.00 NULL
2015 City Council Chief Of Staff 213381.00000 4.267620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.267620e+05 4.267620e+05 0.00 NULL
2015 City Council Communication Assistant 67513.33333 4.050800e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.050800e+05 4.050800e+05 0.00 NULL
2015 City Council Council Member 63362.06897 5.512500e+06 0.00 0.000000e+00 0.000 0.00 87 0.000000e+00 0.00 5.512500e+06 5.512500e+06 0.00 NULL
2015 City Council Councilmanic Aide 38708.81190 2.016729e+07 0.00 0.000000e+00 0.000 0.00 521 0.000000e+00 0.00 2.016729e+07 2.016729e+07 0.00 NULL
2015 City Council Counsel To Minority Leader 80587.00000 1.611740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.611740e+05 1.611740e+05 0.00 NULL
2015 City Council Deputy Administration Assistant 83469.00000 8.346900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.346900e+04 8.346900e+04 0.00 NULL
2015 City Council Deputy Chief Of Staff 157500.00000 3.150000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.150000e+05 3.150000e+05 0.00 NULL
2015 City Council Deputy Director 108962.36364 1.198586e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.198586e+06 1.198586e+06 0.00 NULL
2015 City Council Deputy Director- Finance 136601.50000 5.464060e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.464060e+05 5.464060e+05 0.00 NULL
2015 City Council Deputy Director-Legal Division 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2015 City Council Deputy Unit Chief 84532.66667 2.535980e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.535980e+05 2.535980e+05 0.00 NULL
2015 City Council Director 120461.66667 1.084155e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.084155e+06 1.084155e+06 0.00 NULL
2015 City Council Director Legal Division/Gen Counsel& Spec Counsel 190000.00000 1.900000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.900000e+05 1.900000e+05 0.00 NULL
2015 City Council Director Of Council Services Bureau 180657.00000 1.806570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.806570e+05 1.806570e+05 0.00 NULL
2015 City Council Director Of Finance 169028.00000 3.380560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.380560e+05 3.380560e+05 0.00 NULL
2015 City Council Director Of Land Use Division 184128.00000 3.682560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.682560e+05 3.682560e+05 0.00 NULL
2015 City Council Director-Office Of Communications 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2015 City Council Director-Office Of Policy 118764.00000 2.375280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.375280e+05 2.375280e+05 0.00 NULL
2015 City Council Executive Legislative Coordinator 169429.50000 1.016577e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.016577e+06 1.016577e+06 0.00 NULL
2015 City Council Executive Legislative Secretary 59130.00000 5.913000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.913000e+04 5.913000e+04 0.00 NULL
2015 City Council Legislative Administrative Assistant 53204.90000 5.320490e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.320490e+05 5.320490e+05 0.00 NULL
2015 City Council Legislative Administrative Manager 88506.42857 6.195450e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.195450e+05 6.195450e+05 0.00 NULL
2015 City Council Legislative Administrative Secretary 61045.00000 6.104500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.104500e+04 6.104500e+04 0.00 NULL
2015 City Council Legislative Analyst 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2015 City Council Legislative Assistant 53619.09730 3.967813e+06 0.00 0.000000e+00 0.000 0.00 74 0.000000e+00 0.00 3.967813e+06 3.967813e+06 0.00 NULL
2015 City Council Legislative Attorney 73324.50000 2.932980e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.932980e+05 2.932980e+05 0.00 NULL
2015 City Council Legislative Clerk 24751.12488 4.950225e+05 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 4.950225e+05 4.950225e+05 0.00 NULL
2015 City Council Legislative Computer Support Specialist 60533.00000 4.842640e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.842640e+05 4.842640e+05 0.00 NULL
2015 City Council Legislative Coordinator 67742.33333 4.064540e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.064540e+05 4.064540e+05 0.00 NULL
2015 City Council Legislative Counsel 89332.02273 3.930609e+06 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 3.930609e+06 3.930609e+06 0.00 NULL
2015 City Council Legislative Financial Analyst 55434.77778 4.989130e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.989130e+05 4.989130e+05 0.00 NULL
2015 City Council Legislative Fiscal Officer 156832.00000 1.568320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.568320e+05 1.568320e+05 0.00 NULL
2015 City Council Legislative Intern 4503.17623 2.746938e+05 0.00 0.000000e+00 0.000 0.00 61 0.000000e+00 0.00 2.746938e+05 2.746938e+05 0.00 NULL
2015 City Council Legislative Investigator 50232.66667 1.506980e+05 2.03 6.766667e-01 0.000 0.00 3 0.000000e+00 0.00 1.507000e+05 1.506980e+05 2.03 NULL
2015 City Council Legislative Messenger 36816.00000 1.104480e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.104480e+05 1.104480e+05 0.00 NULL
2015 City Council Legislative Policy Analyst 55873.33333 1.676200e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 1.676200e+06 1.676200e+06 0.00 NULL
2015 City Council Legislative Project Manager 84813.60000 4.240680e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.240680e+05 4.240680e+05 0.00 NULL
2015 City Council Legislative Support Service Coord 58429.50000 1.168590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.168590e+05 1.168590e+05 0.00 NULL
2015 City Council Legislative Systems Manager 119514.00000 1.195140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.195140e+05 1.195140e+05 0.00 NULL
2015 City Council Minority Leader 112500.00000 1.125000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.125000e+05 1.125000e+05 0.00 NULL
2015 City Council Principal Legislative Financial Analyst 77668.33333 4.660100e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.660100e+05 4.660100e+05 0.00 NULL
2015 City Council Senior Legislative Financial Analyst 63835.62500 5.106850e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.106850e+05 5.106850e+05 0.00 NULL
2015 City Council Senior Legislative Policy Analyst 66427.00000 7.306970e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.306970e+05 7.306970e+05 0.00 NULL
2015 City Council Sergeant At Arms 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2015 City Council Speaker/Majority Leader 112500.00000 1.125000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.125000e+05 1.125000e+05 0.00 NULL
2015 City Council Special Advisor To The Director 109788.00000 2.195760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.195760e+05 2.195760e+05 0.00 NULL
2015 Civil Service Commission Administrative Staff Analyst 120188.00000 1.201880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.201880e+05 1.201880e+05 0.00 NULL
2015 Civil Service Commission Agency Attorney 76337.50000 3.053500e+05 10215.28 2.553820e+03 156.900 295.50 4 1.569000e+02 627.60 3.155653e+05 3.059776e+05 9587.68 NULL
2015 Civil Service Commission Bookkeeper 80461.00000 8.046100e+04 18427.00 1.842700e+04 18427.000 336.00 1 1.842700e+04 18427.00 9.888800e+04 9.888800e+04 0.00 NULL
2015 Civil Service Commission Chairman 1312.83000 1.312830e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.312830e+03 1.312830e+03 0.00 NULL
2015 Civil Service Commission College Aide 7678.12500 7.678125e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.678125e+03 7.678125e+03 0.00 NULL
2015 Civil Service Commission Commissioner 1249.59800 2.499196e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.499196e+03 2.499196e+03 0.00 NULL
2015 Civil Service Commission Community Associate 37933.00000 1.137990e+05 4681.64 1.560547e+03 1662.410 189.50 3 1.560547e+03 4681.64 1.184806e+05 1.184806e+05 0.00 NULL
2015 Civil Service Commission Secretary Of The Commission 124146.00000 1.241460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.241460e+05 1.241460e+05 0.00 NULL
2015 Civilian Complaint Review Bd Adm Manager-Non-Mgrl 68982.00000 1.379640e+05 5365.43 2.682715e+03 2682.715 125.50 2 2.682715e+03 5365.43 1.433294e+05 1.433294e+05 0.00 NULL
2015 Civilian Complaint Review Bd Administrative Public Information Specialist 86275.00000 8.627500e+04 2744.39 2.744390e+03 2744.390 57.00 1 2.744390e+03 2744.39 8.901939e+04 8.901939e+04 0.00 NULL
2015 Civilian Complaint Review Bd Administrative Staff Analyst 101104.33333 3.033130e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.033130e+05 3.033130e+05 0.00 NULL
2015 Civilian Complaint Review Bd Agency Attorney Intern 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2015 Civilian Complaint Review Bd Clerical Associate 39889.20250 1.595568e+05 14532.30 3.633075e+03 872.665 418.00 4 8.726650e+02 3490.66 1.740891e+05 1.630475e+05 11041.64 NULL
2015 Civilian Complaint Review Bd Community Assistant 32187.66250 3.218766e+04 852.86 8.528600e+02 852.860 25.50 1 8.528600e+02 852.86 3.304052e+04 3.304052e+04 0.00 NULL
2015 Civilian Complaint Review Bd Community Associate 29002.64833 1.740159e+05 15.75 2.625000e+00 0.000 0.00 6 0.000000e+00 0.00 1.740316e+05 1.740159e+05 15.75 NULL
2015 Civilian Complaint Review Bd Community Coordinator 52029.82313 2.081193e+05 6882.48 1.720620e+03 188.810 311.50 4 1.888100e+02 755.24 2.150018e+05 2.088745e+05 6127.24 NULL
2015 Civilian Complaint Review Bd Computer Specialist 82546.00000 1.650920e+05 10544.80 5.272400e+03 5272.400 249.50 2 5.272400e+03 10544.80 1.756368e+05 1.756368e+05 0.00 NULL
2015 Civilian Complaint Review Bd Computer Systems Manager 81175.00000 1.623500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.623500e+05 1.623500e+05 0.00 NULL
2015 Civilian Complaint Review Bd Deputy Assistant Director 87027.50000 3.481100e+05 5450.18 1.362545e+03 138.650 64.75 4 1.386500e+02 554.60 3.535602e+05 3.486646e+05 4895.58 NULL
2015 Civilian Complaint Review Bd Deputy Executive Director 132118.80000 6.605940e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.605940e+05 6.605940e+05 0.00 NULL
2015 Civilian Complaint Review Bd Executive Agency Counsel 89452.45000 1.789049e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.789049e+06 1.789049e+06 0.00 NULL
2015 Civilian Complaint Review Bd Executive Director 190000.00000 3.800000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.800000e+05 3.800000e+05 0.00 NULL
2015 Civilian Complaint Review Bd Investigative Manager 94423.16667 5.665390e+05 18.50 3.083333e+00 0.740 0.00 6 7.400000e-01 4.44 5.665575e+05 5.665434e+05 14.06 NULL
2015 Civilian Complaint Review Bd Investigator 43939.45833 9.490923e+06 268220.58 1.241762e+03 102.820 8921.75 216 1.028200e+02 22209.12 9.759144e+06 9.513132e+06 246011.46 NULL
2015 Civilian Complaint Review Bd Member, Civilian Complaint Review Board 298.65200 4.479780e+03 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 4.479780e+03 4.479780e+03 0.00 NULL
2015 Civilian Complaint Review Bd Principal Administrative Associate 48739.50000 1.949580e+05 8397.76 2.099440e+03 0.000 229.50 4 0.000000e+00 0.00 2.033558e+05 1.949580e+05 8397.76 NULL
2015 Civilian Complaint Review Bd Secretary 47013.50000 9.402700e+04 25023.90 1.251195e+04 12511.950 627.50 2 1.251195e+04 25023.90 1.190509e+05 1.190509e+05 0.00 NULL
2015 Civilian Complaint Review Bd Strategic Initiative Specialist 54000.00000 5.400000e+04 539.45 5.394500e+02 539.450 11.00 1 5.394500e+02 539.45 5.453945e+04 5.453945e+04 0.00 NULL
2015 Civilian Complaint Review Bd Supervising Computer Service Technician 63776.00000 6.377600e+04 5.54 5.540000e+00 5.540 0.00 1 5.540000e+00 5.54 6.378154e+04 6.378154e+04 0.00 NULL
2015 Civilian Complaint Review Bd Supervisor Of Investigators 76392.25000 6.111380e+05 51192.72 6.399090e+03 4825.655 973.25 8 4.825655e+03 38605.24 6.623307e+05 6.497432e+05 12587.48 NULL
2015 Community College (Bronx) ?Assistant Purchasing Agent 37981.00000 1.139430e+05 124.74 4.158000e+01 62.370 17.00 3 4.158000e+01 124.74 1.140677e+05 1.140677e+05 0.00 NULL
2015 Community College (Bronx) ?Purchasing Agent 37981.00000 3.798100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.798100e+04 3.798100e+04 0.00 NULL
2015 Community College (Bronx) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 125 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Bronx) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Bronx) Adjunct College Lab Tech 5550.92167 2.997498e+05 0.00 0.000000e+00 0.000 0.00 54 0.000000e+00 0.00 2.997498e+05 2.997498e+05 0.00 NULL
2015 Community College (Bronx) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 417 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Bronx) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Bronx) Adjunct Senior College Lab Tech 15541.19000 1.554119e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.554119e+04 1.554119e+04 0.00 NULL
2015 Community College (Bronx) Administrator 140000.00000 2.800000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.800000e+05 2.800000e+05 0.00 NULL
2015 Community College (Bronx) Administrator Supt Campus B/G 99537.00000 9.953700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.953700e+04 9.953700e+04 0.00 NULL
2015 Community College (Bronx) Assistant Administrator 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2015 Community College (Bronx) Assistant College Security Director 85000.00000 1.700000e+05 28127.20 1.406360e+04 14063.600 638.92 2 1.406360e+04 28127.20 1.981272e+05 1.981272e+05 0.00 NULL
2015 Community College (Bronx) Assistant Dean 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2015 Community College (Bronx) Assistant Principal Custodial Supervisor 40325.00000 4.032500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.032500e+04 4.032500e+04 0.00 NULL
2015 Community College (Bronx) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 146 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Bronx) Assistant To Heo 56684.60000 2.550807e+06 5217.15 1.159367e+02 0.000 111.75 45 0.000000e+00 0.00 2.556024e+06 2.550807e+06 5217.15 NULL
2015 Community College (Bronx) Assistant Vice President 142857.14286 1.000000e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.000000e+06 1.000000e+06 0.00 NULL
2015 Community College (Bronx) Associate Administrator 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2015 Community College (Bronx) Associate Dean 125000.00000 2.500000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.500000e+05 2.500000e+05 0.00 NULL
2015 Community College (Bronx) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 100 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Bronx) Auto Mechanic NA NA 16929.67 8.464835e+03 8464.835 334.25 2 8.464835e+03 16929.67 NA NA NA NULL
2015 Community College (Bronx) Campus Peace Officer 38001.44444 1.026039e+06 174939.70 6.479248e+03 5178.480 6200.32 27 5.178480e+03 139818.96 1.200979e+06 1.165858e+06 35120.74 NULL
2015 Community College (Bronx) Campus Public Safety Sergeant 47533.13000 6.654638e+05 162633.96 1.161671e+04 10351.210 4836.84 14 1.035121e+04 144916.94 8.280978e+05 8.103808e+05 17717.02 NULL
2015 Community College (Bronx) Campus Security Assistant 19486.92469 9.353724e+05 81037.44 1.688280e+03 882.365 4251.50 48 8.823650e+02 42353.52 1.016410e+06 9.777259e+05 38683.92 NULL
2015 Community College (Bronx) Carpenter NA NA 39953.10 1.997655e+04 19976.550 505.25 2 1.997655e+04 39953.10 NA NA NA NULL
2015 Community College (Bronx) Cement Mason NA NA 14828.59 1.482859e+04 14828.590 188.50 1 1.482859e+04 14828.59 NA NA NA NULL
2015 Community College (Bronx) Chief Administrative Supt Campus B/G 114878.00000 1.148780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.148780e+05 1.148780e+05 0.00 NULL
2015 Community College (Bronx) Chief College Lab Technician 75022.00000 2.250660e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.250660e+05 2.250660e+05 0.00 NULL
2015 Community College (Bronx) City Laborer NA NA 0.00 0.000000e+00 0.000 20.00 1 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Bronx) College Accountant 48315.00000 1.449450e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.449450e+05 1.449450e+05 0.00 NULL
2015 Community College (Bronx) College Accounting Assistant 37391.83333 2.243510e+05 1455.71 2.426183e+02 0.000 71.25 6 0.000000e+00 0.00 2.258067e+05 2.243510e+05 1455.71 NULL
2015 Community College (Bronx) College Assistant 6507.32767 2.921790e+06 2551.82 5.683341e+00 0.000 88.50 449 0.000000e+00 0.00 2.924342e+06 2.921790e+06 2551.82 NULL
2015 Community College (Bronx) College Graph Designer 47746.00000 4.774600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.774600e+04 4.774600e+04 0.00 NULL
2015 Community College (Bronx) College Lab Technician 46269.77474 8.791257e+05 413.43 2.175947e+01 0.000 0.00 19 0.000000e+00 0.00 8.795392e+05 8.791257e+05 413.43 NULL
2015 Community College (Bronx) College Print Shop Assistant 28090.00000 2.809000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.809000e+04 2.809000e+04 0.00 NULL
2015 Community College (Bronx) College Print Shop Associate 37920.00000 7.584000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.584000e+04 7.584000e+04 0.00 NULL
2015 Community College (Bronx) College Security Director 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2015 Community College (Bronx) College Security Specialist 60898.00000 1.217960e+05 36549.78 1.827489e+04 18274.890 884.08 2 1.827489e+04 36549.78 1.583458e+05 1.583458e+05 0.00 NULL
2015 Community College (Bronx) Computer Systems Manager 98000.00000 4.900000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.900000e+05 4.900000e+05 0.00 NULL
2015 Community College (Bronx) Continuing Education Teacher 19331.46648 1.275877e+06 0.00 0.000000e+00 0.000 0.00 66 0.000000e+00 0.00 1.275877e+06 1.275877e+06 0.00 NULL
2015 Community College (Bronx) Cuny Administrator Assistant 46101.25000 7.376200e+05 28543.50 1.783969e+03 0.000 951.75 16 0.000000e+00 0.00 7.661635e+05 7.376200e+05 28543.50 NULL
2015 Community College (Bronx) Cuny Custodial Assistant 27929.56158 1.703703e+06 25430.61 4.168952e+02 178.550 1150.75 61 1.785500e+02 10891.55 1.729134e+06 1.714595e+06 14539.06 NULL
2015 Community College (Bronx) Cuny Office Assistant 32435.83333 2.724610e+06 29183.27 3.474199e+02 0.000 1387.42 84 0.000000e+00 0.00 2.753793e+06 2.724610e+06 29183.27 NULL
2015 Community College (Bronx) Custodial Supervisor 32545.40000 1.627270e+05 2352.64 4.705280e+02 583.990 98.25 5 4.705280e+02 2352.64 1.650796e+05 1.650796e+05 0.00 NULL
2015 Community College (Bronx) Dean 141820.00000 5.672800e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.672800e+05 5.672800e+05 0.00 NULL
2015 Community College (Bronx) Disability Accommodations Specialist 45127.00000 4.512700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.512700e+04 4.512700e+04 0.00 NULL
2015 Community College (Bronx) Electrician NA NA 44994.32 7.499053e+03 7579.690 578.00 6 7.499053e+03 44994.32 NA NA NA NULL
2015 Community College (Bronx) Eoc Accounting Assistant 37317.00000 3.731700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.731700e+04 3.731700e+04 0.00 NULL
2015 Community College (Bronx) Eoc Adjunct Lecturer 9744.52571 1.364234e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.364234e+05 1.364234e+05 0.00 NULL
2015 Community College (Bronx) Eoc Administrative Assistant 51879.00000 5.187900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.187900e+04 5.187900e+04 0.00 NULL
2015 Community College (Bronx) Eoc Assistant To Heo 57760.14286 4.043210e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.043210e+05 4.043210e+05 0.00 NULL
2015 Community College (Bronx) Eoc College Lab Technician 56862.50000 1.137250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.137250e+05 1.137250e+05 0.00 NULL
2015 Community College (Bronx) Eoc Custodial Assistant 26272.00000 5.254400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.254400e+04 5.254400e+04 0.00 NULL
2015 Community College (Bronx) Eoc Custodial Supervisor 28520.00000 2.852000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.852000e+04 2.852000e+04 0.00 NULL
2015 Community College (Bronx) Eoc Higher Education Assistant 74133.00000 7.413300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.413300e+04 7.413300e+04 0.00 NULL
2015 Community College (Bronx) Eoc Higher Education Associate 82636.33333 2.479090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.479090e+05 2.479090e+05 0.00 NULL
2015 Community College (Bronx) Eoc Higher Education Officer 116364.00000 1.163640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.163640e+05 1.163640e+05 0.00 NULL
2015 Community College (Bronx) Eoc Lecturer 74907.00000 1.498140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.498140e+05 1.498140e+05 0.00 NULL
2015 Community College (Bronx) Eoc Office Assistant 28634.66667 1.718080e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.718080e+05 1.718080e+05 0.00 NULL
2015 Community College (Bronx) High Pressure Plant Tender NA NA 54681.01 9.113502e+03 10266.320 1185.75 6 9.113502e+03 54681.01 NA NA NA NULL
2015 Community College (Bronx) Higher Education Assistant 68499.58333 4.109975e+06 9097.70 1.516283e+02 0.000 164.50 60 0.000000e+00 0.00 4.119073e+06 4.109975e+06 9097.70 NULL
2015 Community College (Bronx) Higher Education Associate 85114.27500 3.404571e+06 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 3.404571e+06 3.404571e+06 0.00 NULL
2015 Community College (Bronx) Higher Education Officer 107874.41379 3.128358e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 3.128358e+06 3.128358e+06 0.00 NULL
2015 Community College (Bronx) Instructor 49515.86667 4.456428e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.456428e+05 4.456428e+05 0.00 NULL
2015 Community College (Bronx) It Assistant 48584.66667 5.830160e+05 17322.00 1.443500e+03 0.000 512.00 12 0.000000e+00 0.00 6.003380e+05 5.830160e+05 17322.00 NULL
2015 Community College (Bronx) It Associate 70475.00000 4.933250e+05 34019.82 4.859974e+03 1992.690 681.00 7 1.992690e+03 13948.83 5.273448e+05 5.072738e+05 20070.99 NULL
2015 Community College (Bronx) It Senior Associate 95578.00000 1.911560e+05 5266.97 2.633485e+03 2633.485 12.00 2 2.633485e+03 5266.97 1.964230e+05 1.964230e+05 0.00 NULL
2015 Community College (Bronx) It Support Assistant 23771.61632 8.082350e+05 3945.61 1.160474e+02 0.000 154.75 34 0.000000e+00 0.00 8.121806e+05 8.082350e+05 3945.61 NULL
2015 Community College (Bronx) Laborer NA NA 122975.75 1.366397e+04 15158.630 2272.75 9 1.366397e+04 122975.75 NA NA NA NULL
2015 Community College (Bronx) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 102 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Bronx) Lecturer/Doctoral Schedule 64186.00000 6.418600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.418600e+04 6.418600e+04 0.00 NULL
2015 Community College (Bronx) Locksmith NA NA 3687.54 1.843770e+03 1843.770 119.50 2 1.843770e+03 3687.54 NA NA NA NULL
2015 Community College (Bronx) Mail/Message Services Worker 30600.66667 9.180200e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.180200e+04 9.180200e+04 0.00 NULL
2015 Community College (Bronx) Maintenance Worker NA NA 16616.99 2.373856e+03 1967.050 470.25 7 1.967050e+03 13769.35 NA NA NA NULL
2015 Community College (Bronx) Media Services Technician 50958.00000 5.095800e+04 6896.14 6.896140e+03 6896.140 212.00 1 6.896140e+03 6896.14 5.785414e+04 5.785414e+04 0.00 NULL
2015 Community College (Bronx) Motor Vehicle Operator 39953.00000 3.995300e+04 6423.46 6.423460e+03 6423.460 254.75 1 6.423460e+03 6423.46 4.637646e+04 4.637646e+04 0.00 NULL
2015 Community College (Bronx) Non-Teaching Adjunct I 5458.22750 1.091645e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.091645e+04 1.091645e+04 0.00 NULL
2015 Community College (Bronx) Non-Teaching Adjunct Ii 2456.99974 5.528249e+05 0.00 0.000000e+00 0.000 0.00 225 0.000000e+00 0.00 5.528249e+05 5.528249e+05 0.00 NULL
2015 Community College (Bronx) Non-Teaching Adjunct Iii 1068.11951 7.049589e+04 0.00 0.000000e+00 0.000 0.00 66 0.000000e+00 0.00 7.049589e+04 7.049589e+04 0.00 NULL
2015 Community College (Bronx) Non-Teaching Adjunct Iv 1284.71558 5.524277e+04 0.00 0.000000e+00 0.000 0.00 43 0.000000e+00 0.00 5.524277e+04 5.524277e+04 0.00 NULL
2015 Community College (Bronx) Non-Teaching Adjunct V 2631.36348 1.210427e+05 0.00 0.000000e+00 0.000 0.00 46 0.000000e+00 0.00 1.210427e+05 1.210427e+05 0.00 NULL
2015 Community College (Bronx) Oiler NA NA 6663.75 3.331875e+03 3331.875 117.50 2 3.331875e+03 6663.75 NA NA NA NULL
2015 Community College (Bronx) Painter NA NA 16762.00 3.352400e+03 3934.370 324.25 5 3.352400e+03 16762.00 NA NA NA NULL
2015 Community College (Bronx) Plumber NA NA 71338.52 1.783463e+04 12215.660 699.25 4 1.221566e+04 48862.64 NA NA NA NULL
2015 Community College (Bronx) Plumber’s Helper NA NA 28341.60 1.417080e+04 14170.800 400.25 2 1.417080e+04 28341.60 NA NA NA NULL
2015 Community College (Bronx) President 252000.00000 5.040000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.040000e+05 5.040000e+05 0.00 NULL
2015 Community College (Bronx) Principal Custodial Supervisor 54977.00000 5.497700e+04 6341.02 6.341020e+03 6341.020 158.25 1 6.341020e+03 6341.02 6.131802e+04 6.131802e+04 0.00 NULL
2015 Community College (Bronx) Professor NA NA 0.00 0.000000e+00 0.000 0.00 108 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Bronx) Project Manager 71981.50000 1.439630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.439630e+05 1.439630e+05 0.00 NULL
2015 Community College (Bronx) Senior College Lab Tech 60184.00000 5.416560e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.416560e+05 5.416560e+05 0.00 NULL
2015 Community College (Bronx) Senior Custodial Supervisor 35154.66667 1.054640e+05 2432.38 8.107933e+02 799.900 95.75 3 7.999000e+02 2399.70 1.078964e+05 1.078637e+05 32.68 NULL
2015 Community College (Bronx) Senior Stationary Engineer NA NA 64501.79 3.225090e+04 32250.895 710.00 2 3.225090e+04 64501.79 NA NA NA NULL
2015 Community College (Bronx) Senior Vice President 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2015 Community College (Bronx) Sr College Laboratory Tech 3984.12000 3.984120e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.984120e+03 3.984120e+03 0.00 NULL
2015 Community College (Bronx) Stationary Engineer NA NA 128628.97 1.837557e+04 18878.200 1482.75 7 1.837557e+04 128628.97 NA NA NA NULL
2015 Community College (Bronx) Steam Fitter NA NA 15653.22 1.565322e+04 15653.220 132.75 1 1.565322e+04 15653.22 NA NA NA NULL
2015 Community College (Bronx) Stock Worker 31179.80000 1.558990e+05 16.72 3.344000e+00 0.000 1.00 5 0.000000e+00 0.00 1.559157e+05 1.558990e+05 16.72 NULL
2015 Community College (Bronx) Student Aide 2339.72603 1.708000e+05 0.00 0.000000e+00 0.000 0.00 73 0.000000e+00 0.00 1.708000e+05 1.708000e+05 0.00 NULL
2015 Community College (Bronx) Supervisor Carpenter NA NA 22198.75 2.219875e+04 22198.750 254.50 1 2.219875e+04 22198.75 NA NA NA NULL
2015 Community College (Bronx) Supervisor Electrician NA NA 22089.32 2.208932e+04 22089.320 310.75 1 2.208932e+04 22089.32 NA NA NA NULL
2015 Community College (Bronx) Supervisor Painter NA NA 1305.00 1.305000e+03 1305.000 20.75 1 1.305000e+03 1305.00 NA NA NA NULL
2015 Community College (Bronx) Thermostat Repairer NA NA 8258.80 4.129400e+03 4129.400 84.75 2 4.129400e+03 8258.80 NA NA NA NULL
2015 Community College (Bronx) Vice President 176333.33333 5.290000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.290000e+05 5.290000e+05 0.00 NULL
2015 Community College (Hostos) ?Assistant Purchasing Agent 37981.00000 7.596200e+04 938.09 4.690450e+02 469.045 60.00 2 4.690450e+02 938.09 7.690009e+04 7.690009e+04 0.00 NULL
2015 Community College (Hostos) ?Purchasing Agent 50867.00000 5.086700e+04 508.09 5.080900e+02 508.090 12.50 1 5.080900e+02 508.09 5.137509e+04 5.137509e+04 0.00 NULL
2015 Community College (Hostos) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 97 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Hostos) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Hostos) Adjunct College Lab Tech 13474.49633 8.084698e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.084698e+04 8.084698e+04 0.00 NULL
2015 Community College (Hostos) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 213 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Hostos) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Hostos) Administrator 140000.00000 2.800000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.800000e+05 2.800000e+05 0.00 NULL
2015 Community College (Hostos) Administrator Supt Campus B/G 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2015 Community College (Hostos) Assistant Administrator 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2015 Community College (Hostos) Assistant College Security Director 71065.50000 1.421310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.421310e+05 1.421310e+05 0.00 NULL
2015 Community College (Hostos) Assistant Dean 111647.50000 4.465900e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.465900e+05 4.465900e+05 0.00 NULL
2015 Community College (Hostos) Assistant Principal Custodial Supervisor 39399.00000 3.939900e+04 2411.45 2.411450e+03 2411.450 103.00 1 2.411450e+03 2411.45 4.181045e+04 4.181045e+04 0.00 NULL
2015 Community College (Hostos) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 124 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Hostos) Assistant To Heo 45179.23529 1.536094e+06 1206.66 3.549000e+01 0.000 42.75 34 0.000000e+00 0.00 1.537301e+06 1.536094e+06 1206.66 NULL
2015 Community College (Hostos) Assistant Vice President 147500.00000 2.950000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.950000e+05 2.950000e+05 0.00 NULL
2015 Community College (Hostos) Associate Administrator 123000.00000 1.230000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.230000e+05 1.230000e+05 0.00 NULL
2015 Community College (Hostos) Associate Dean 118000.00000 2.360000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.360000e+05 2.360000e+05 0.00 NULL
2015 Community College (Hostos) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 46 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Hostos) Campus Peace Officer 37297.73913 8.578480e+05 185375.71 8.059813e+03 7738.000 7145.42 23 7.738000e+03 177974.00 1.043224e+06 1.035822e+06 7401.71 NULL
2015 Community College (Hostos) Campus Public Safety Sergeant 50147.00000 3.008820e+05 44291.47 7.381912e+03 6935.730 1360.75 6 6.935730e+03 41614.38 3.451735e+05 3.424964e+05 2677.09 NULL
2015 Community College (Hostos) Campus Security Assistant 27329.62500 4.372740e+05 65498.75 4.093672e+03 4042.630 3566.33 16 4.042630e+03 64682.08 5.027728e+05 5.019561e+05 816.67 NULL
2015 Community College (Hostos) Carpenter NA NA 10907.21 1.090721e+04 10907.210 167.00 1 1.090721e+04 10907.21 NA NA NA NULL
2015 Community College (Hostos) Chief Administrator Supt Campus B/G 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2015 Community College (Hostos) City Laborer NA NA 37102.86 1.236762e+04 12911.900 750.00 3 1.236762e+04 37102.86 NA NA NA NULL
2015 Community College (Hostos) College Accountant 45901.00000 1.377030e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.377030e+05 1.377030e+05 0.00 NULL
2015 Community College (Hostos) College Accounting Assistant 38898.00000 1.166940e+05 196.86 6.562000e+01 0.000 9.50 3 0.000000e+00 0.00 1.168909e+05 1.166940e+05 196.86 NULL
2015 Community College (Hostos) College Assistant 5464.24499 2.371482e+06 658.13 1.516429e+00 0.000 4.50 434 0.000000e+00 0.00 2.372140e+06 2.371482e+06 658.13 NULL
2015 Community College (Hostos) College Graph Designer 54752.00000 5.475200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.475200e+04 5.475200e+04 0.00 NULL
2015 Community College (Hostos) College Lab Technician 53081.44444 4.777330e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.777330e+05 4.777330e+05 0.00 NULL
2015 Community College (Hostos) College Print Shop Assistant 28090.00000 2.809000e+04 8376.34 8.376340e+03 8376.340 441.50 1 8.376340e+03 8376.34 3.646634e+04 3.646634e+04 0.00 NULL
2015 Community College (Hostos) College Security Director 112546.00000 1.125460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.125460e+05 1.125460e+05 0.00 NULL
2015 Community College (Hostos) College Security Specialist 50791.33333 1.523740e+05 10121.91 3.373970e+03 2568.680 304.50 3 2.568680e+03 7706.04 1.624959e+05 1.600800e+05 2415.87 NULL
2015 Community College (Hostos) Computer Systems Manager 71000.00000 7.100000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.100000e+04 7.100000e+04 0.00 NULL
2015 Community College (Hostos) Continuing Education Teacher NA NA 0.00 0.000000e+00 0.000 0.00 146 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Hostos) Cuny Administrator Assistant 47652.08333 5.718250e+05 2307.93 1.923275e+02 0.000 80.75 12 0.000000e+00 0.00 5.741329e+05 5.718250e+05 2307.93 NULL
2015 Community College (Hostos) Cuny Custodial Assistant 27095.25306 1.327667e+06 29240.02 5.967351e+02 43.050 1487.75 49 4.305000e+01 2109.45 1.356907e+06 1.329777e+06 27130.57 NULL
2015 Community College (Hostos) Cuny Office Assistant 33152.24561 1.889678e+06 5662.24 9.933754e+01 0.000 215.42 57 0.000000e+00 0.00 1.895340e+06 1.889678e+06 5662.24 NULL
2015 Community College (Hostos) Custodial Supervisor 31121.37500 2.489710e+05 16645.74 2.080718e+03 2022.045 809.00 8 2.022045e+03 16176.36 2.656167e+05 2.651474e+05 469.38 NULL
2015 Community College (Hostos) Disability Accommodations Specialist 25357.02500 5.071405e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.071405e+04 5.071405e+04 0.00 NULL
2015 Community College (Hostos) Distinguished Lecturer 93500.00000 1.870000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.870000e+05 1.870000e+05 0.00 NULL
2015 Community College (Hostos) Distinguished Professor 134665.00000 1.346650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.346650e+05 1.346650e+05 0.00 NULL
2015 Community College (Hostos) Electrician NA NA 14553.00 1.455300e+04 14553.000 198.50 1 1.455300e+04 14553.00 NA NA NA NULL
2015 Community College (Hostos) Electrician’s Helper NA NA 7277.44 3.638720e+03 3638.720 156.00 2 3.638720e+03 7277.44 NA NA NA NULL
2015 Community College (Hostos) High Pressure Plant Tender NA NA 52472.13 1.049443e+04 10486.590 1139.50 5 1.048659e+04 52432.95 NA NA NA NULL
2015 Community College (Hostos) Higher Education Assistant 55109.24658 4.022975e+06 3496.34 4.789507e+01 0.000 67.50 73 0.000000e+00 0.00 4.026471e+06 4.022975e+06 3496.34 NULL
2015 Community College (Hostos) Higher Education Associate 84169.05714 2.945917e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 2.945917e+06 2.945917e+06 0.00 NULL
2015 Community College (Hostos) Higher Education Officer 103069.58333 3.710505e+06 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 3.710505e+06 3.710505e+06 0.00 NULL
2015 Community College (Hostos) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Hostos) It Assistant 45450.60531 6.817591e+05 1703.96 1.135973e+02 0.000 53.25 15 0.000000e+00 0.00 6.834630e+05 6.817591e+05 1703.96 NULL
2015 Community College (Hostos) It Associate 67186.75000 2.687470e+05 702.43 1.756075e+02 75.245 15.00 4 7.524500e+01 300.98 2.694494e+05 2.690480e+05 401.45 NULL
2015 Community College (Hostos) It Senior Associate 86111.33333 2.583340e+05 1858.21 6.194033e+02 0.000 34.25 3 0.000000e+00 0.00 2.601922e+05 2.583340e+05 1858.21 NULL
2015 Community College (Hostos) It Support Assistant 33589.00000 3.694790e+05 467.72 4.252000e+01 0.000 20.00 11 0.000000e+00 0.00 3.699467e+05 3.694790e+05 467.72 NULL
2015 Community College (Hostos) Lead Theatre Technician 5433.21776 1.575633e+05 17662.29 6.090445e+02 270.000 564.50 29 2.700000e+02 7830.00 1.752256e+05 1.653933e+05 9832.29 NULL
2015 Community College (Hostos) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Hostos) Lecturer/Doctoral Schedule 62931.00000 1.887930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.887930e+05 1.887930e+05 0.00 NULL
2015 Community College (Hostos) Locksmith NA NA 198.32 1.983200e+02 198.320 8.00 1 1.983200e+02 198.32 NA NA NA NULL
2015 Community College (Hostos) Mail/Message Services Worker 37763.50000 7.552700e+04 10614.86 5.307430e+03 5307.430 390.92 2 5.307430e+03 10614.86 8.614186e+04 8.614186e+04 0.00 NULL
2015 Community College (Hostos) Maintenance Worker NA NA 11537.71 2.307542e+03 1901.810 344.75 5 1.901810e+03 9509.05 NA NA NA NULL
2015 Community College (Hostos) Non-Teaching Adjunct I 2403.76651 1.153808e+05 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 1.153808e+05 1.153808e+05 0.00 NULL
2015 Community College (Hostos) Non-Teaching Adjunct Ii 2546.28941 4.328692e+04 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 4.328692e+04 4.328692e+04 0.00 NULL
2015 Community College (Hostos) Non-Teaching Adjunct Iii 1109.57471 4.438299e+04 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 4.438299e+04 4.438299e+04 0.00 NULL
2015 Community College (Hostos) Non-Teaching Adjunct Iv 1062.85550 1.062856e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.062856e+04 1.062856e+04 0.00 NULL
2015 Community College (Hostos) Non-Teaching Adjunct V 3723.47875 4.468175e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 4.468175e+04 4.468175e+04 0.00 NULL
2015 Community College (Hostos) Oiler NA NA 33951.72 1.697586e+04 16975.860 502.50 2 1.697586e+04 33951.72 NA NA NA NULL
2015 Community College (Hostos) Painter NA NA 1168.15 5.840750e+02 584.075 22.25 2 5.840750e+02 1168.15 NA NA NA NULL
2015 Community College (Hostos) Plumber NA NA 10881.37 1.088137e+04 10881.370 124.75 1 1.088137e+04 10881.37 NA NA NA NULL
2015 Community College (Hostos) Plumber’s Helper NA NA 8265.60 8.265600e+03 8265.600 127.50 1 8.265600e+03 8265.60 NA NA NA NULL
2015 Community College (Hostos) President 204000.00000 4.080000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.080000e+05 4.080000e+05 0.00 NULL
2015 Community College (Hostos) Principal Custodial Supervisor 56932.00000 5.693200e+04 13876.54 1.387654e+04 13876.540 338.83 1 1.387654e+04 13876.54 7.080854e+04 7.080854e+04 0.00 NULL
2015 Community College (Hostos) Professor NA NA 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Hostos) Senior College Lab Tech 60507.80000 3.025390e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.025390e+05 3.025390e+05 0.00 NULL
2015 Community College (Hostos) Senior Custodial Supervisor 35069.00000 7.013800e+04 327.52 1.637600e+02 163.760 14.00 2 1.637600e+02 327.52 7.046552e+04 7.046552e+04 0.00 NULL
2015 Community College (Hostos) Senior Stationary Engineer NA NA 3720.31 3.720310e+03 3720.310 45.50 1 3.720310e+03 3720.31 NA NA NA NULL
2015 Community College (Hostos) Senior Vice President 188511.00000 1.885110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.885110e+05 1.885110e+05 0.00 NULL
2015 Community College (Hostos) Staff Nurse 64052.01250 1.281040e+05 0.00 0.000000e+00 0.000 1.25 2 0.000000e+00 0.00 1.281040e+05 1.281040e+05 0.00 NULL
2015 Community College (Hostos) Stationary Engineer NA NA 96513.20 1.930264e+04 26167.440 1309.00 5 1.930264e+04 96513.20 NA NA NA NULL
2015 Community College (Hostos) Stock Worker 30731.33333 9.219400e+04 307.17 1.023900e+02 114.870 10.25 3 1.023900e+02 307.17 9.250117e+04 9.250117e+04 0.00 NULL
2015 Community College (Hostos) Thermostat Repairer NA NA 33564.32 3.356432e+04 33564.320 376.25 1 3.356432e+04 33564.32 NA NA NA NULL
2015 Community College (Hostos) Vice President 155569.80000 7.778490e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.778490e+05 7.778490e+05 0.00 NULL
2015 Community College (Kingsboro) ?Purchasing Agent 55604.80000 2.780240e+05 14721.19 2.944238e+03 1068.710 414.00 5 1.068710e+03 5343.55 2.927452e+05 2.833675e+05 9377.64 NULL
2015 Community College (Kingsboro) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 114 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Kingsboro) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Kingsboro) Adjunct College Lab Tech 8706.54400 1.279862e+06 0.00 0.000000e+00 0.000 0.00 147 0.000000e+00 0.00 1.279862e+06 1.279862e+06 0.00 NULL
2015 Community College (Kingsboro) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 683 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Kingsboro) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Kingsboro) Adjunct Senior College Lab Tech 2020.48000 2.020480e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.020480e+03 2.020480e+03 0.00 NULL
2015 Community College (Kingsboro) Administrator 143803.00000 1.438030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.438030e+05 1.438030e+05 0.00 NULL
2015 Community College (Kingsboro) Administrator Supt Campus B/G 84742.33333 2.542270e+05 611.15 2.037167e+02 0.000 0.00 3 0.000000e+00 0.00 2.548381e+05 2.542270e+05 611.15 NULL
2015 Community College (Kingsboro) Assistant Administrator 121500.00000 1.215000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.215000e+05 1.215000e+05 0.00 NULL
2015 Community College (Kingsboro) Assistant College Security Director 72383.00000 1.447660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.447660e+05 1.447660e+05 0.00 NULL
2015 Community College (Kingsboro) Assistant Principal Custodial Supervisor 39399.00000 3.939900e+04 8475.78 8.475780e+03 8475.780 293.50 1 8.475780e+03 8475.78 4.787478e+04 4.787478e+04 0.00 NULL
2015 Community College (Kingsboro) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 270 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Kingsboro) Assistant To Heo 47358.77193 2.699450e+06 12217.57 2.143433e+02 0.000 333.50 57 0.000000e+00 0.00 2.711668e+06 2.699450e+06 12217.57 NULL
2015 Community College (Kingsboro) Assistant Vice President 139495.66667 4.184870e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.184870e+05 4.184870e+05 0.00 NULL
2015 Community College (Kingsboro) Associate Administrator 134588.50000 2.691770e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.691770e+05 2.691770e+05 0.00 NULL
2015 Community College (Kingsboro) Associate Dean 118800.00000 2.376000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.376000e+05 2.376000e+05 0.00 NULL
2015 Community College (Kingsboro) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 83 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Kingsboro) Auto Mechanic NA NA 3556.74 1.778370e+03 1778.370 63.25 2 1.778370e+03 3556.74 NA NA NA NULL
2015 Community College (Kingsboro) Campus Peace Officer 36567.04348 8.410420e+05 49619.70 2.157378e+03 1749.500 1969.50 23 1.749500e+03 40238.50 8.906617e+05 8.812805e+05 9381.20 NULL
2015 Community College (Kingsboro) Campus Public Safety Sergeant 50147.00000 5.516170e+05 100781.30 9.161936e+03 5225.080 2793.00 11 5.225080e+03 57475.88 6.523983e+05 6.090929e+05 43305.42 NULL
2015 Community College (Kingsboro) Campus Security Assistant 29132.66667 6.991840e+05 19171.14 7.987975e+02 516.460 1032.50 24 5.164600e+02 12395.04 7.183551e+05 7.115790e+05 6776.10 NULL
2015 Community College (Kingsboro) Carpenter NA NA 71017.17 3.550858e+04 35508.585 1010.25 2 3.550858e+04 71017.17 NA NA NA NULL
2015 Community College (Kingsboro) Chief Administrative Supt Campus B/G 117450.00000 1.174500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.174500e+05 1.174500e+05 0.00 NULL
2015 Community College (Kingsboro) Chief College Lab Technician 70638.75000 2.825550e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.825550e+05 2.825550e+05 0.00 NULL
2015 Community College (Kingsboro) City Laborer NA NA 125264.03 7.829002e+03 7841.235 2615.25 16 7.829002e+03 125264.03 NA NA NA NULL
2015 Community College (Kingsboro) College Accountant 49969.33333 1.499080e+05 431.47 1.438233e+02 154.090 19.00 3 1.438233e+02 431.47 1.503395e+05 1.503395e+05 0.00 NULL
2015 Community College (Kingsboro) College Accounting Assistant 38258.20000 1.912910e+05 13906.45 2.781290e+03 0.000 566.00 5 0.000000e+00 0.00 2.051975e+05 1.912910e+05 13906.45 NULL
2015 Community College (Kingsboro) College Assistant 6405.38611 4.003366e+06 394.34 6.309440e-01 0.000 19.50 625 0.000000e+00 0.00 4.003761e+06 4.003366e+06 394.34 NULL
2015 Community College (Kingsboro) College Graph Designer 46914.00000 4.691400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.691400e+04 4.691400e+04 0.00 NULL
2015 Community College (Kingsboro) College Interior Designer 50573.00000 5.057300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.057300e+04 5.057300e+04 0.00 NULL
2015 Community College (Kingsboro) College Lab Technician 41506.31036 1.162177e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 1.162177e+06 1.162177e+06 0.00 NULL
2015 Community College (Kingsboro) College Print Shop Assistant 32770.00000 9.831000e+04 0.00 0.000000e+00 0.000 2.00 3 0.000000e+00 0.00 9.831000e+04 9.831000e+04 0.00 NULL
2015 Community College (Kingsboro) College Print Shop Associate 42950.66667 1.288520e+05 184.79 6.159667e+01 61.470 25.00 3 6.147000e+01 184.41 1.290368e+05 1.290364e+05 0.38 NULL
2015 Community College (Kingsboro) College Print Shop Coordinator 53842.00000 5.384200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.384200e+04 5.384200e+04 0.00 NULL
2015 Community College (Kingsboro) College Security Director 114291.00000 1.142910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.142910e+05 1.142910e+05 0.00 NULL
2015 Community College (Kingsboro) College Security Specialist 62379.50000 1.247590e+05 7273.45 3.636725e+03 3636.725 157.75 2 3.636725e+03 7273.45 1.320325e+05 1.320325e+05 0.00 NULL
2015 Community College (Kingsboro) Computer Operator Manager 92013.66667 2.760410e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.760410e+05 2.760410e+05 0.00 NULL
2015 Community College (Kingsboro) Computer Systems Manager 84586.00000 1.691720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.691720e+05 1.691720e+05 0.00 NULL
2015 Community College (Kingsboro) Continuing Education Teacher NA NA 0.00 0.000000e+00 0.000 0.00 375 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Kingsboro) Cuny Administrator Assistant 46346.00000 1.019612e+06 7103.99 3.229086e+02 0.000 208.75 22 0.000000e+00 0.00 1.026716e+06 1.019612e+06 7103.99 NULL
2015 Community College (Kingsboro) Cuny Broadcast Associate 51742.00000 1.034840e+05 6973.89 3.486945e+03 3486.945 281.25 2 3.486945e+03 6973.89 1.104579e+05 1.104579e+05 0.00 NULL
2015 Community College (Kingsboro) Cuny Custodial Assistant 27818.48576 2.197660e+06 58292.30 7.378772e+02 309.710 3037.00 79 3.097100e+02 24467.09 2.255953e+06 2.222127e+06 33825.21 NULL
2015 Community College (Kingsboro) Cuny Office Assistant 32423.28169 2.302053e+06 19327.42 2.722172e+02 0.000 936.00 71 0.000000e+00 0.00 2.321380e+06 2.302053e+06 19327.42 NULL
2015 Community College (Kingsboro) Custodial Supervisor 32525.00000 1.951500e+05 10663.89 1.777315e+03 956.385 460.75 6 9.563850e+02 5738.31 2.058139e+05 2.008883e+05 4925.58 NULL
2015 Community College (Kingsboro) Dean 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2015 Community College (Kingsboro) Disability Accommodations Specialist 23953.66000 4.790732e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.790732e+04 4.790732e+04 0.00 NULL
2015 Community College (Kingsboro) Distinguished Lecturer 70180.00000 2.105400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.105400e+05 2.105400e+05 0.00 NULL
2015 Community College (Kingsboro) Electrician NA NA 67758.50 2.258617e+04 25839.000 924.00 3 2.258617e+04 67758.50 NA NA NA NULL
2015 Community College (Kingsboro) Electrician’s Helper NA NA 19771.83 9.885915e+03 9885.915 394.00 2 9.885915e+03 19771.83 NA NA NA NULL
2015 Community College (Kingsboro) Facilities Coordinator 59549.50000 1.190990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.190990e+05 1.190990e+05 0.00 NULL
2015 Community College (Kingsboro) High Pressure Plant Tender NA NA 32839.21 5.473202e+03 5619.505 694.00 6 5.473202e+03 32839.21 NA NA NA NULL
2015 Community College (Kingsboro) Higher Education Assistant 60605.35714 4.242375e+06 6480.38 9.257686e+01 0.000 148.50 70 0.000000e+00 0.00 4.248855e+06 4.242375e+06 6480.38 NULL
2015 Community College (Kingsboro) Higher Education Associate 77607.17188 4.966859e+06 58.35 9.117188e-01 0.000 1.00 64 0.000000e+00 0.00 4.966917e+06 4.966859e+06 58.35 NULL
2015 Community College (Kingsboro) Higher Education Officer 100977.19048 4.241042e+06 0.00 0.000000e+00 0.000 0.00 42 0.000000e+00 0.00 4.241042e+06 4.241042e+06 0.00 NULL
2015 Community College (Kingsboro) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Kingsboro) It Assistant 49070.37500 7.851260e+05 1261.94 7.887125e+01 0.000 43.50 16 0.000000e+00 0.00 7.863879e+05 7.851260e+05 1261.94 NULL
2015 Community College (Kingsboro) It Associate 67457.60000 3.372880e+05 4417.00 8.834000e+02 0.000 125.50 5 0.000000e+00 0.00 3.417050e+05 3.372880e+05 4417.00 NULL
2015 Community College (Kingsboro) It Senior Associate 87500.50000 1.750010e+05 2286.79 1.143395e+03 1143.395 36.50 2 1.143395e+03 2286.79 1.772878e+05 1.772878e+05 0.00 NULL
2015 Community College (Kingsboro) It Support Assistant 36804.00000 2.944320e+05 283.59 3.544875e+01 0.000 19.00 8 0.000000e+00 0.00 2.947156e+05 2.944320e+05 283.59 NULL
2015 Community College (Kingsboro) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 193 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Kingsboro) Lecturer/Doctoral Schedule 74847.40000 3.742370e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.742370e+05 3.742370e+05 0.00 NULL
2015 Community College (Kingsboro) Locksmith NA NA 396.64 3.966400e+02 396.640 16.00 1 3.966400e+02 396.64 NA NA NA NULL
2015 Community College (Kingsboro) Mail/Message Services Worker 31232.00000 1.561600e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.561600e+05 1.561600e+05 0.00 NULL
2015 Community College (Kingsboro) Maintenance Worker NA NA 48942.55 4.449323e+03 4295.030 1298.25 11 4.295030e+03 47245.33 NA NA NA NULL
2015 Community College (Kingsboro) Media Services Technician 58392.00000 5.839200e+04 12543.14 1.254314e+04 12543.140 305.75 1 1.254314e+04 12543.14 7.093514e+04 7.093514e+04 0.00 NULL
2015 Community College (Kingsboro) Non-Teaching Adjunct I 5960.25576 2.813241e+06 0.00 0.000000e+00 0.000 0.00 472 0.000000e+00 0.00 2.813241e+06 2.813241e+06 0.00 NULL
2015 Community College (Kingsboro) Non-Teaching Adjunct Ii 925.98000 1.851960e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.851960e+03 1.851960e+03 0.00 NULL
2015 Community College (Kingsboro) Non-Teaching Adjunct Iii 3900.86321 2.457544e+05 0.00 0.000000e+00 0.000 0.00 63 0.000000e+00 0.00 2.457544e+05 2.457544e+05 0.00 NULL
2015 Community College (Kingsboro) Non-Teaching Adjunct Iv NA NA 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Kingsboro) Non-Teaching Adjunct V NA NA 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Kingsboro) Oiler NA NA 37262.01 1.242067e+04 18067.140 581.50 3 1.242067e+04 37262.01 NA NA NA NULL
2015 Community College (Kingsboro) Painter NA NA 24780.00 1.239000e+04 12390.000 449.50 2 1.239000e+04 24780.00 NA NA NA NULL
2015 Community College (Kingsboro) Plumber NA NA 42513.24 2.125662e+04 21256.620 436.50 2 2.125662e+04 42513.24 NA NA NA NULL
2015 Community College (Kingsboro) President 221862.00000 4.437240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.437240e+05 4.437240e+05 0.00 NULL
2015 Community College (Kingsboro) Professor NA NA 0.00 0.000000e+00 0.000 0.00 125 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Kingsboro) Project Manager 75547.00000 7.554700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.554700e+04 7.554700e+04 0.00 NULL
2015 Community College (Kingsboro) Senior College Lab Tech 57816.05882 9.828730e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 9.828730e+05 9.828730e+05 0.00 NULL
2015 Community College (Kingsboro) Senior Custodial Supervisor 35101.00000 3.510100e+04 1586.15 1.586150e+03 1586.150 66.00 1 1.586150e+03 1586.15 3.668715e+04 3.668715e+04 0.00 NULL
2015 Community College (Kingsboro) Senior Stationary Engineer NA NA 7662.82 3.831410e+03 3831.410 89.50 2 3.831410e+03 7662.82 NA NA NA NULL
2015 Community College (Kingsboro) Sign Language Interpreter 7844.22970 4.706538e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.706538e+04 4.706538e+04 0.00 NULL
2015 Community College (Kingsboro) Sr College Laboratory Tech 4880.56667 1.464170e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.464170e+04 1.464170e+04 0.00 NULL
2015 Community College (Kingsboro) Staff Nurse 15286.81179 2.293022e+05 78.47 5.231333e+00 0.000 0.00 15 0.000000e+00 0.00 2.293806e+05 2.293022e+05 78.47 NULL
2015 Community College (Kingsboro) Stationary Engineer NA NA 53245.46 8.874243e+03 8162.710 718.50 6 8.162710e+03 48976.26 NA NA NA NULL
2015 Community College (Kingsboro) Stock Worker 29379.33333 8.813800e+04 255.01 8.500333e+01 0.000 22.75 3 0.000000e+00 0.00 8.839301e+04 8.813800e+04 255.01 NULL
2015 Community College (Kingsboro) Student Aide 1901.29799 7.034803e+05 0.00 0.000000e+00 0.000 0.00 370 0.000000e+00 0.00 7.034803e+05 7.034803e+05 0.00 NULL
2015 Community College (Kingsboro) Supervisor Electrician NA NA 10128.08 1.012808e+04 10128.080 74.00 1 1.012808e+04 10128.08 NA NA NA NULL
2015 Community College (Kingsboro) Supervisor Of Stock Workers 42624.00000 4.262400e+04 326.63 3.266300e+02 326.630 17.00 1 3.266300e+02 326.63 4.295063e+04 4.295063e+04 0.00 NULL
2015 Community College (Kingsboro) Thermostat Repairer NA NA 10168.22 1.016822e+04 10168.220 105.75 1 1.016822e+04 10168.22 NA NA NA NULL
2015 Community College (Kingsboro) University Architect 95893.00000 9.589300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.589300e+04 9.589300e+04 0.00 NULL
2015 Community College (Kingsboro) University Assistant Architect 55630.00000 5.563000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.563000e+04 5.563000e+04 0.00 NULL
2015 Community College (Kingsboro) Vice President 162287.33333 9.737240e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.737240e+05 9.737240e+05 0.00 NULL
2015 Community College (Laguardia) ?Purchasing Agent 50686.25000 2.027450e+05 3960.23 9.900575e+02 873.020 139.75 4 8.730200e+02 3492.08 2.067052e+05 2.062371e+05 468.15 NULL
2015 Community College (Laguardia) Adjunct Assistant Professor 11368.79233 3.035468e+06 0.00 0.000000e+00 0.000 0.00 267 0.000000e+00 0.00 3.035468e+06 3.035468e+06 0.00 NULL
2015 Community College (Laguardia) Adjunct Associate Professor 11128.42086 3.227242e+05 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 3.227242e+05 3.227242e+05 0.00 NULL
2015 Community College (Laguardia) Adjunct College Lab Tech 7601.22471 6.537053e+05 0.00 0.000000e+00 0.000 0.00 86 0.000000e+00 0.00 6.537053e+05 6.537053e+05 0.00 NULL
2015 Community College (Laguardia) Adjunct Lecturer 12718.25078 1.018732e+07 0.00 0.000000e+00 0.000 0.00 801 0.000000e+00 0.00 1.018732e+07 1.018732e+07 0.00 NULL
2015 Community College (Laguardia) Adjunct Professor 20544.36833 2.465324e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 2.465324e+05 2.465324e+05 0.00 NULL
2015 Community College (Laguardia) Adjunct Senior College Lab Tech 22611.12500 2.261112e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.261112e+04 2.261112e+04 0.00 NULL
2015 Community College (Laguardia) Administrator 149677.50000 2.993550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.993550e+05 2.993550e+05 0.00 NULL
2015 Community College (Laguardia) Administrator Supt Campus B/G 84081.33333 2.522440e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.522440e+05 2.522440e+05 0.00 NULL
2015 Community College (Laguardia) Assistant College Security Director 73000.00000 7.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.300000e+04 7.300000e+04 0.00 NULL
2015 Community College (Laguardia) Assistant Dean 123700.00000 6.185000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.185000e+05 6.185000e+05 0.00 NULL
2015 Community College (Laguardia) Assistant Professor 51344.59603 1.150119e+07 0.00 0.000000e+00 0.000 0.00 224 0.000000e+00 0.00 1.150119e+07 1.150119e+07 0.00 NULL
2015 Community College (Laguardia) Assistant To Heo 51340.88732 3.645203e+06 5649.29 7.956746e+01 0.000 155.50 71 0.000000e+00 0.00 3.650852e+06 3.645203e+06 5649.29 NULL
2015 Community College (Laguardia) Associate Administrator 135015.50000 5.400620e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.400620e+05 5.400620e+05 0.00 NULL
2015 Community College (Laguardia) Associate Dean 137930.00000 6.896500e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.896500e+05 6.896500e+05 0.00 NULL
2015 Community College (Laguardia) Associate Professor 60591.25533 8.361593e+06 0.00 0.000000e+00 0.000 0.00 138 0.000000e+00 0.00 8.361593e+06 8.361593e+06 0.00 NULL
2015 Community College (Laguardia) Campus Peace Officer 37707.03846 9.803830e+05 103517.54 3.981444e+03 2474.545 3656.25 26 2.474545e+03 64338.17 1.083901e+06 1.044721e+06 39179.37 NULL
2015 Community College (Laguardia) Campus Public Safety Sergeant 50361.28571 3.525290e+05 53247.54 7.606791e+03 8339.830 1401.25 7 7.606791e+03 53247.54 4.057765e+05 4.057765e+05 0.00 NULL
2015 Community College (Laguardia) Campus Security Assistant 29397.56757 1.087710e+06 84697.04 2.289109e+03 1597.020 4383.25 37 1.597020e+03 59089.74 1.172407e+06 1.146800e+06 25607.30 NULL
2015 Community College (Laguardia) Chief Administrative Supt Campus B/G 116500.00000 1.165000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.165000e+05 1.165000e+05 0.00 NULL
2015 Community College (Laguardia) Chief College Lab Technician 64622.79000 5.169823e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.169823e+05 5.169823e+05 0.00 NULL
2015 Community College (Laguardia) College Accountant 46814.75000 1.872590e+05 169.30 4.232500e+01 0.000 6.75 4 0.000000e+00 0.00 1.874283e+05 1.872590e+05 169.30 NULL
2015 Community College (Laguardia) College Accounting Assistant 41647.00000 2.498820e+05 359.59 5.993167e+01 0.000 32.75 6 0.000000e+00 0.00 2.502416e+05 2.498820e+05 359.59 NULL
2015 Community College (Laguardia) College Assistant 6232.62041 5.422380e+06 4555.12 5.235770e+00 0.000 232.25 870 0.000000e+00 0.00 5.426935e+06 5.422380e+06 4555.12 NULL
2015 Community College (Laguardia) College Graph Designer 53952.00000 5.395200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.395200e+04 5.395200e+04 0.00 NULL
2015 Community College (Laguardia) College Lab Technician 44051.11600 1.101278e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.101278e+06 1.101278e+06 0.00 NULL
2015 Community College (Laguardia) College Print Shop Assistant 32994.00000 3.299400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.299400e+04 3.299400e+04 0.00 NULL
2015 Community College (Laguardia) College Print Shop Associate 42884.00000 4.288400e+04 8109.33 8.109330e+03 8109.330 287.50 1 8.109330e+03 8109.33 5.099333e+04 5.099333e+04 0.00 NULL
2015 Community College (Laguardia) College Security Director 102000.00000 1.020000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020000e+05 1.020000e+05 0.00 NULL
2015 Community College (Laguardia) College Security Specialist 56365.66667 1.690970e+05 50216.84 1.673895e+04 19523.820 1264.75 3 1.673895e+04 50216.84 2.193138e+05 2.193138e+05 0.00 NULL
2015 Community College (Laguardia) Computer Systems Manager 121500.00000 4.860000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.860000e+05 4.860000e+05 0.00 NULL
2015 Community College (Laguardia) Continuing Education Teacher 13322.17911 2.477925e+06 0.00 0.000000e+00 0.000 0.00 186 0.000000e+00 0.00 2.477925e+06 2.477925e+06 0.00 NULL
2015 Community College (Laguardia) Cuny Administrator Assistant 47294.95455 1.040489e+06 6616.67 3.007577e+02 0.000 228.00 22 0.000000e+00 0.00 1.047106e+06 1.040489e+06 6616.67 NULL
2015 Community College (Laguardia) Cuny Broadcast Associate 41693.00000 1.667720e+05 33209.28 8.302320e+03 8648.905 1053.50 4 8.302320e+03 33209.28 1.999813e+05 1.999813e+05 0.00 NULL
2015 Community College (Laguardia) Cuny Custodial Assistant 22338.07261 1.518989e+06 150638.20 2.215268e+03 1109.235 6859.00 68 1.109235e+03 75427.98 1.669627e+06 1.594417e+06 75210.22 NULL
2015 Community College (Laguardia) Cuny Office Assistant 33002.17949 2.574170e+06 7883.25 1.010673e+02 0.000 436.00 78 0.000000e+00 0.00 2.582053e+06 2.574170e+06 7883.25 NULL
2015 Community College (Laguardia) Custodial Supervisor 37427.50000 7.485500e+04 28757.15 1.437858e+04 14378.575 1071.50 2 1.437858e+04 28757.15 1.036121e+05 1.036121e+05 0.00 NULL
2015 Community College (Laguardia) Higher Education Assistant 62475.56701 6.060130e+06 13131.55 1.353768e+02 0.000 313.00 97 0.000000e+00 0.00 6.073262e+06 6.060130e+06 13131.55 NULL
2015 Community College (Laguardia) Higher Education Associate 82162.57471 7.148144e+06 0.00 0.000000e+00 0.000 0.00 87 0.000000e+00 0.00 7.148144e+06 7.148144e+06 0.00 NULL
2015 Community College (Laguardia) Higher Education Officer 107404.94118 5.477652e+06 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 5.477652e+06 5.477652e+06 0.00 NULL
2015 Community College (Laguardia) Instructor 45066.21867 6.759933e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 6.759933e+05 6.759933e+05 0.00 NULL
2015 Community College (Laguardia) It Assistant 48754.17990 1.218854e+06 34995.99 1.399840e+03 848.580 1136.00 25 8.485800e+02 21214.50 1.253850e+06 1.240069e+06 13781.49 NULL
2015 Community College (Laguardia) It Associate 67932.35294 1.154850e+06 19049.69 1.120570e+03 131.120 574.50 17 1.311200e+02 2229.04 1.173900e+06 1.157079e+06 16820.65 NULL
2015 Community College (Laguardia) It Senior Associate 84351.63636 9.278680e+05 19646.81 1.786074e+03 935.000 394.50 11 9.350000e+02 10285.00 9.475148e+05 9.381530e+05 9361.81 NULL
2015 Community College (Laguardia) It Support Assistant 35687.71111 9.635682e+05 6638.28 2.458622e+02 54.000 461.25 27 5.400000e+01 1458.00 9.702065e+05 9.650262e+05 5180.28 NULL
2015 Community College (Laguardia) Lecturer 47054.03696 4.328971e+06 0.00 0.000000e+00 0.000 0.00 92 0.000000e+00 0.00 4.328971e+06 4.328971e+06 0.00 NULL
2015 Community College (Laguardia) Lecturer/Doctoral Schedule 74270.00000 2.228100e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.228100e+05 2.228100e+05 0.00 NULL
2015 Community College (Laguardia) Mail/Message Services Worker 30784.58333 3.694150e+05 36998.99 3.083249e+03 276.070 1664.75 12 2.760700e+02 3312.84 4.064140e+05 3.727278e+05 33686.15 NULL
2015 Community College (Laguardia) Media Services Technician 53305.00000 5.330500e+04 17150.84 1.715084e+04 17150.840 426.00 1 1.715084e+04 17150.84 7.045584e+04 7.045584e+04 0.00 NULL
2015 Community College (Laguardia) Non-Teaching Adjunct I 4681.92742 4.447831e+05 0.00 0.000000e+00 0.000 0.00 95 0.000000e+00 0.00 4.447831e+05 4.447831e+05 0.00 NULL
2015 Community College (Laguardia) Non-Teaching Adjunct Ii 1132.27082 1.143594e+05 0.00 0.000000e+00 0.000 0.00 101 0.000000e+00 0.00 1.143594e+05 1.143594e+05 0.00 NULL
2015 Community College (Laguardia) Non-Teaching Adjunct Iii 4816.95778 1.734105e+05 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 1.734105e+05 1.734105e+05 0.00 NULL
2015 Community College (Laguardia) Non-Teaching Adjunct Iv 8205.37175 1.641074e+05 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.641074e+05 1.641074e+05 0.00 NULL
2015 Community College (Laguardia) Non-Teaching Adjunct V 4123.84400 6.185766e+04 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 6.185766e+04 6.185766e+04 0.00 NULL
2015 Community College (Laguardia) President 219834.00000 2.198340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.198340e+05 2.198340e+05 0.00 NULL
2015 Community College (Laguardia) Professor 68822.63397 1.039222e+07 0.00 0.000000e+00 0.000 0.00 151 0.000000e+00 0.00 1.039222e+07 1.039222e+07 0.00 NULL
2015 Community College (Laguardia) Senior College Lab Tech 62966.77778 5.667010e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.667010e+05 5.667010e+05 0.00 NULL
2015 Community College (Laguardia) Senior Vice President 181000.00000 1.810000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.810000e+05 1.810000e+05 0.00 NULL
2015 Community College (Laguardia) Sign Language Interpreter 28625.87143 4.007622e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 4.007622e+05 4.007622e+05 0.00 NULL
2015 Community College (Laguardia) Sr College Laboratory Tech 4325.09000 4.325090e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.325090e+03 4.325090e+03 0.00 NULL
2015 Community College (Laguardia) Stock Worker 35019.00000 3.501900e+04 3751.82 3.751820e+03 3751.820 127.50 1 3.751820e+03 3751.82 3.877082e+04 3.877082e+04 0.00 NULL
2015 Community College (Laguardia) Supervisor Of Stock Workers 36323.00000 3.632300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.632300e+04 3.632300e+04 0.00 NULL
2015 Community College (Laguardia) University Assistant Architect 54226.00000 1.626780e+05 5967.88 1.989293e+03 634.830 175.00 3 6.348300e+02 1904.49 1.686459e+05 1.645825e+05 4063.39 NULL
2015 Community College (Laguardia) University Assistant Engineer 55630.00000 1.112600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.112600e+05 1.112600e+05 0.00 NULL
2015 Community College (Laguardia) University Engineer Tech 41036.50000 8.207300e+04 4973.29 2.486645e+03 2486.645 186.00 2 2.486645e+03 4973.29 8.704629e+04 8.704629e+04 0.00 NULL
2015 Community College (Laguardia) Vice President 166346.80000 8.317340e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.317340e+05 8.317340e+05 0.00 NULL
2015 Community College (Manhattan) ?Assistant Purchasing Agent 37981.00000 1.899050e+05 706.86 1.413720e+02 88.370 40.75 5 8.837000e+01 441.85 1.906119e+05 1.903469e+05 265.01 NULL
2015 Community College (Manhattan) ?Purchasing Agent 58213.00000 5.821300e+04 23.90 2.390000e+01 23.900 0.75 1 2.390000e+01 23.90 5.823690e+04 5.823690e+04 0.00 NULL
2015 Community College (Manhattan) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 262 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Manhattan) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Manhattan) Adjunct College Lab Tech 6456.52272 4.648696e+05 0.00 0.000000e+00 0.000 0.00 72 0.000000e+00 0.00 4.648696e+05 4.648696e+05 0.00 NULL
2015 Community College (Manhattan) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 1141 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Manhattan) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Manhattan) Adjunct Senior College Lab Tech 5021.57133 1.506471e+05 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 1.506471e+05 1.506471e+05 0.00 NULL
2015 Community College (Manhattan) Administrator 138750.00000 2.775000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.775000e+05 2.775000e+05 0.00 NULL
2015 Community College (Manhattan) Administrator Supt Campus B/G 82772.00000 1.655440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.655440e+05 1.655440e+05 0.00 NULL
2015 Community College (Manhattan) Assistant College Security Director 63503.33333 1.905100e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.905100e+05 1.905100e+05 0.00 NULL
2015 Community College (Manhattan) Assistant Principal Custodial Supervisor 39399.00000 7.879800e+04 41059.17 2.052958e+04 20529.585 1534.92 2 2.052958e+04 41059.17 1.198572e+05 1.198572e+05 0.00 NULL
2015 Community College (Manhattan) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 383 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Manhattan) Assistant To Heo 46985.48276 4.087737e+06 2646.68 3.042161e+01 0.000 179.25 87 0.000000e+00 0.00 4.090384e+06 4.087737e+06 2646.68 NULL
2015 Community College (Manhattan) Assistant Vice President 134140.00000 1.341400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.341400e+05 1.341400e+05 0.00 NULL
2015 Community College (Manhattan) Associate Administrator 122923.66667 3.687710e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.687710e+05 3.687710e+05 0.00 NULL
2015 Community College (Manhattan) Associate Dean 139781.00000 1.397810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.397810e+05 1.397810e+05 0.00 NULL
2015 Community College (Manhattan) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 149 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Manhattan) Campus Peace Officer 37241.86047 1.601400e+06 200222.54 4.656338e+03 3292.240 7428.09 43 3.292240e+03 141566.32 1.801623e+06 1.742966e+06 58656.22 NULL
2015 Community College (Manhattan) Campus Public Safety Sergeant 50147.00000 5.516170e+05 42661.23 3.878294e+03 3172.120 1179.50 11 3.172120e+03 34893.32 5.942782e+05 5.865103e+05 7767.91 NULL
2015 Community College (Manhattan) Campus Security Assistant 24142.80265 1.182997e+06 185870.70 3.793280e+03 2843.740 9453.92 49 2.843740e+03 139343.26 1.368868e+06 1.322341e+06 46527.44 NULL
2015 Community College (Manhattan) Carpenter NA NA 118905.39 1.698648e+04 18863.430 1538.50 7 1.698648e+04 118905.39 NA NA NA NULL
2015 Community College (Manhattan) Chief Administrator Supt Campus B/G 140902.00000 1.409020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.409020e+05 1.409020e+05 0.00 NULL
2015 Community College (Manhattan) City Laborer NA NA 168553.92 2.407913e+04 24751.450 2819.50 7 2.407913e+04 168553.92 NA NA NA NULL
2015 Community College (Manhattan) College Accountant 41051.00000 8.210200e+04 1186.31 5.931550e+02 593.155 9.50 2 5.931550e+02 1186.31 8.328831e+04 8.328831e+04 0.00 NULL
2015 Community College (Manhattan) College Accounting Assistant 38724.26667 5.808640e+05 5495.81 3.663873e+02 36.150 221.00 15 3.615000e+01 542.25 5.863598e+05 5.814062e+05 4953.56 NULL
2015 Community College (Manhattan) College Assistant 4525.83752 4.462476e+06 76430.09 7.751530e+01 0.000 7157.59 986 0.000000e+00 0.00 4.538906e+06 4.462476e+06 76430.09 NULL
2015 Community College (Manhattan) College Graph Designer 46914.00000 4.691400e+04 1649.85 1.649850e+03 1649.850 62.75 1 1.649850e+03 1649.85 4.856385e+04 4.856385e+04 0.00 NULL
2015 Community College (Manhattan) College Lab Technician 44908.55172 1.302348e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 1.302348e+06 1.302348e+06 0.00 NULL
2015 Community College (Manhattan) College Print Shop Assistant 25936.00000 1.556160e+05 2816.49 4.694150e+02 309.565 175.50 6 3.095650e+02 1857.39 1.584325e+05 1.574734e+05 959.10 NULL
2015 Community College (Manhattan) College Print Shop Associate 34131.00000 3.413100e+04 2188.52 2.188520e+03 2188.520 121.75 1 2.188520e+03 2188.52 3.631952e+04 3.631952e+04 0.00 NULL
2015 Community College (Manhattan) College Print Shop Coordinator 57598.00000 5.759800e+04 470.74 4.707400e+02 470.740 7.00 1 4.707400e+02 470.74 5.806874e+04 5.806874e+04 0.00 NULL
2015 Community College (Manhattan) College Security Director 111675.50000 2.233510e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.233510e+05 2.233510e+05 0.00 NULL
2015 Community College (Manhattan) College Security Specialist 60648.00000 6.064800e+04 12279.05 1.227905e+04 12279.050 293.33 1 1.227905e+04 12279.05 7.292705e+04 7.292705e+04 0.00 NULL
2015 Community College (Manhattan) Computer Systems Manager 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2015 Community College (Manhattan) Continuing Education Teacher 14066.62712 2.222527e+06 0.00 0.000000e+00 0.000 0.00 158 0.000000e+00 0.00 2.222527e+06 2.222527e+06 0.00 NULL
2015 Community College (Manhattan) Cuny Administrator Assistant 45769.00000 5.034590e+05 3095.33 2.813936e+02 0.000 135.25 11 0.000000e+00 0.00 5.065543e+05 5.034590e+05 3095.33 NULL
2015 Community College (Manhattan) Cuny Broadcast Associate 53020.00000 5.302000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.302000e+04 5.302000e+04 0.00 NULL
2015 Community College (Manhattan) Cuny Custodial Assistant 26276.69082 2.890436e+06 223123.99 2.028400e+03 921.955 11438.41 110 9.219550e+02 101415.05 3.113560e+06 2.991851e+06 121708.94 NULL
2015 Community College (Manhattan) Cuny Office Assistant 32183.26882 2.993044e+06 37989.89 4.084934e+02 0.000 1760.25 93 0.000000e+00 0.00 3.031034e+06 2.993044e+06 37989.89 NULL
2015 Community College (Manhattan) Custodial Supervisor 32528.20000 3.252820e+05 67841.89 6.784189e+03 6600.895 3109.25 10 6.600895e+03 66008.95 3.931239e+05 3.912910e+05 1832.94 NULL
2015 Community College (Manhattan) Dean 148307.16667 8.898430e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.898430e+05 8.898430e+05 0.00 NULL
2015 Community College (Manhattan) Disability Accommodations Specialist 36830.00000 3.683000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.683000e+04 3.683000e+04 0.00 NULL
2015 Community College (Manhattan) Electrician NA NA 122506.36 2.450127e+04 16868.250 1539.75 5 1.686825e+04 84341.25 NA NA NA NULL
2015 Community College (Manhattan) Electrician’s Helper NA NA 97405.67 2.435142e+04 27241.790 1896.50 4 2.435142e+04 97405.67 NA NA NA NULL
2015 Community College (Manhattan) Eoc Accountant 33023.00000 6.604600e+04 40.67 2.033500e+01 20.335 2.25 2 2.033500e+01 40.67 6.608667e+04 6.608667e+04 0.00 NULL
2015 Community College (Manhattan) Eoc Adjunct College Lab Tech 7394.80000 7.394800e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.394800e+03 7.394800e+03 0.00 NULL
2015 Community College (Manhattan) Eoc Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 42 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Manhattan) Eoc Administrative Assistant 45507.00000 4.550700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.550700e+04 4.550700e+04 0.00 NULL
2015 Community College (Manhattan) Eoc Assistant 1162.68750 1.162688e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.162688e+03 1.162688e+03 0.00 NULL
2015 Community College (Manhattan) Eoc Assistant To Heo 57562.71429 4.029390e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.029390e+05 4.029390e+05 0.00 NULL
2015 Community College (Manhattan) Eoc College Lab Technician 48462.00000 9.692400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.692400e+04 9.692400e+04 0.00 NULL
2015 Community College (Manhattan) Eoc Higher Education Assistant 76637.00000 2.299110e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.299110e+05 2.299110e+05 0.00 NULL
2015 Community College (Manhattan) Eoc Higher Education Associate 78270.75000 3.130830e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.130830e+05 3.130830e+05 0.00 NULL
2015 Community College (Manhattan) Eoc Higher Education Officer 85356.00000 8.535600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.535600e+04 8.535600e+04 0.00 NULL
2015 Community College (Manhattan) Eoc Lecturer 73104.00000 8.041440e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 8.041440e+05 8.041440e+05 0.00 NULL
2015 Community College (Manhattan) Eoc Lecturer/ Doctral Schedule 74599.00000 1.491980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.491980e+05 1.491980e+05 0.00 NULL
2015 Community College (Manhattan) Eoc Mail/Message Services Worker 30386.33333 9.115900e+04 974.11 3.247033e+02 44.920 44.25 3 4.492000e+01 134.76 9.213311e+04 9.129376e+04 839.35 NULL
2015 Community College (Manhattan) Eoc Office Assistant 33172.46154 4.312420e+05 1640.74 1.262108e+02 47.410 60.75 13 4.741000e+01 616.33 4.328827e+05 4.318583e+05 1024.41 NULL
2015 Community College (Manhattan) Facilities Coordinator 53938.00000 5.393800e+04 881.99 8.819900e+02 881.990 30.75 1 8.819900e+02 881.99 5.481999e+04 5.481999e+04 0.00 NULL
2015 Community College (Manhattan) Higher Education Assistant 63020.89216 6.428131e+06 33.52 3.286275e-01 0.000 6.00 102 0.000000e+00 0.00 6.428165e+06 6.428131e+06 33.52 NULL
2015 Community College (Manhattan) Higher Education Associate 79649.60714 4.460378e+06 0.00 0.000000e+00 0.000 0.00 56 0.000000e+00 0.00 4.460378e+06 4.460378e+06 0.00 NULL
2015 Community College (Manhattan) Higher Education Officer 107548.17949 4.194379e+06 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 4.194379e+06 4.194379e+06 0.00 NULL
2015 Community College (Manhattan) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 84 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Manhattan) It Assistant 48951.53440 1.223788e+06 3716.11 1.486444e+02 0.000 100.00 25 0.000000e+00 0.00 1.227504e+06 1.223788e+06 3716.11 NULL
2015 Community College (Manhattan) It Associate 61402.25000 2.456090e+05 681.81 1.704525e+02 139.955 8.25 4 1.399550e+02 559.82 2.462908e+05 2.461688e+05 121.99 NULL
2015 Community College (Manhattan) It Senior Associate 85509.50000 5.130570e+05 29166.49 4.861082e+03 0.000 507.75 6 0.000000e+00 0.00 5.422235e+05 5.130570e+05 29166.49 NULL
2015 Community College (Manhattan) It Support Assistant 26750.20432 8.827567e+05 2406.88 7.293576e+01 0.000 143.00 33 0.000000e+00 0.00 8.851636e+05 8.827567e+05 2406.88 NULL
2015 Community College (Manhattan) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 107 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Manhattan) Lecturer/Doctoral Schedule 67955.00000 6.795500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.795500e+04 6.795500e+04 0.00 NULL
2015 Community College (Manhattan) Locksmith NA NA 10718.73 5.359365e+03 5359.365 279.00 2 5.359365e+03 10718.73 NA NA NA NULL
2015 Community College (Manhattan) Mail/Message Services Worker 31957.40000 1.597870e+05 5512.67 1.102534e+03 0.000 193.75 5 0.000000e+00 0.00 1.652997e+05 1.597870e+05 5512.67 NULL
2015 Community College (Manhattan) Maintenance Worker NA NA 10766.03 1.794338e+03 1515.080 268.50 6 1.515080e+03 9090.48 NA NA NA NULL
2015 Community College (Manhattan) Media Services Technician 40083.00000 4.008300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.008300e+04 4.008300e+04 0.00 NULL
2015 Community College (Manhattan) Non-Teaching Adjunct I NA NA 0.00 0.000000e+00 0.000 0.00 72 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Manhattan) Non-Teaching Adjunct Ii NA NA 0.00 0.000000e+00 0.000 0.00 139 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Manhattan) Non-Teaching Adjunct Iii 991.88917 1.160510e+05 0.00 0.000000e+00 0.000 0.00 117 0.000000e+00 0.00 1.160510e+05 1.160510e+05 0.00 NULL
2015 Community College (Manhattan) Non-Teaching Adjunct Iv 2217.13255 5.764545e+04 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 5.764545e+04 5.764545e+04 0.00 NULL
2015 Community College (Manhattan) Non-Teaching Adjunct V 7002.92187 1.610672e+05 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 1.610672e+05 1.610672e+05 0.00 NULL
2015 Community College (Manhattan) Oiler NA NA 196080.72 1.508313e+04 16137.760 2579.00 13 1.508313e+04 196080.72 NA NA NA NULL
2015 Community College (Manhattan) Painter NA NA 36014.79 6.002465e+03 6492.765 510.50 6 6.002465e+03 36014.79 NA NA NA NULL
2015 Community College (Manhattan) Plumber NA NA 95194.71 4.759736e+04 47597.355 1013.75 2 4.759736e+04 95194.71 NA NA NA NULL
2015 Community College (Manhattan) Plumber’s Helper NA NA 26880.00 8.960000e+03 0.000 396.75 3 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Manhattan) President 222251.00000 2.222510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.222510e+05 2.222510e+05 0.00 NULL
2015 Community College (Manhattan) Principal Custodial Supervisor 51727.50000 1.034550e+05 16954.87 8.477435e+03 8477.435 419.25 2 8.477435e+03 16954.87 1.204099e+05 1.204099e+05 0.00 NULL
2015 Community College (Manhattan) Professor NA NA 0.00 0.000000e+00 0.000 0.00 173 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Manhattan) Project Manager 54079.00000 5.407900e+04 192.40 1.924000e+02 192.400 6.00 1 1.924000e+02 192.40 5.427140e+04 5.427140e+04 0.00 NULL
2015 Community College (Manhattan) Senior College Lab Tech 63124.00000 8.837360e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 8.837360e+05 8.837360e+05 0.00 NULL
2015 Community College (Manhattan) Senior Custodial Supervisor 31035.00000 6.207000e+04 13414.24 6.707120e+03 6707.120 628.25 2 6.707120e+03 13414.24 7.548424e+04 7.548424e+04 0.00 NULL
2015 Community College (Manhattan) Senior Stationary Engineer NA NA 99412.42 3.313747e+04 18191.250 1153.75 3 1.819125e+04 54573.75 NA NA NA NULL
2015 Community College (Manhattan) Senior Vice President 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2015 Community College (Manhattan) Sign Language Interpreter 30621.17250 6.124235e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.124235e+04 6.124235e+04 0.00 NULL
2015 Community College (Manhattan) Staff Nurse 84744.00000 8.474400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.474400e+04 8.474400e+04 0.00 NULL
2015 Community College (Manhattan) Stationary Engineer NA NA 158646.70 1.220359e+04 11281.400 2026.75 13 1.128140e+04 146658.20 NA NA NA NULL
2015 Community College (Manhattan) Stock Worker 30551.00000 9.165300e+04 1187.23 3.957433e+02 326.070 55.75 3 3.260700e+02 978.21 9.284023e+04 9.263121e+04 209.02 NULL
2015 Community College (Manhattan) Supervisor Of Stock Workers 42624.00000 4.262400e+04 303.29 3.032900e+02 303.290 39.00 1 3.032900e+02 303.29 4.292729e+04 4.292729e+04 0.00 NULL
2015 Community College (Manhattan) Thermostat Repairer NA NA 2208.48 2.208480e+03 2208.480 23.00 1 2.208480e+03 2208.48 NA NA NA NULL
2015 Community College (Manhattan) Vice President 179079.00000 8.953950e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.953950e+05 8.953950e+05 0.00 NULL
2015 Community College (Queensboro) ?Assistant Purchasing Agent 37981.00000 3.798100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.798100e+04 3.798100e+04 0.00 NULL
2015 Community College (Queensboro) ?Purchasing Agent 50542.00000 5.054200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.054200e+04 5.054200e+04 0.00 NULL
2015 Community College (Queensboro) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 111 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Queensboro) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Queensboro) Adjunct College Lab Tech 6738.46172 6.671077e+05 0.00 0.000000e+00 0.000 0.00 99 0.000000e+00 0.00 6.671077e+05 6.671077e+05 0.00 NULL
2015 Community College (Queensboro) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 505 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Queensboro) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Queensboro) Adjunct Senior College Lab Tech 9599.85563 7.679885e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.679885e+04 7.679885e+04 0.00 NULL
2015 Community College (Queensboro) Administrator 134236.00000 1.342360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.342360e+05 1.342360e+05 0.00 NULL
2015 Community College (Queensboro) Administrator Supt Campus B/G 85534.97667 2.566049e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.566049e+05 2.566049e+05 0.00 NULL
2015 Community College (Queensboro) Assistant Administrator 119397.50000 4.775900e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.775900e+05 4.775900e+05 0.00 NULL
2015 Community College (Queensboro) Assistant College Security Director 68855.00000 1.377100e+05 61.85 3.092500e+01 30.925 0.00 2 3.092500e+01 61.85 1.377719e+05 1.377719e+05 0.00 NULL
2015 Community College (Queensboro) Assistant Dean 115666.66667 3.470000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.470000e+05 3.470000e+05 0.00 NULL
2015 Community College (Queensboro) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 269 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Queensboro) Assistant To Heo 42305.51111 1.903748e+06 0.00 0.000000e+00 0.000 0.00 45 0.000000e+00 0.00 1.903748e+06 1.903748e+06 0.00 NULL
2015 Community College (Queensboro) Associate Administrator 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2015 Community College (Queensboro) Associate Dean 119481.00000 1.194810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.194810e+05 1.194810e+05 0.00 NULL
2015 Community College (Queensboro) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 163 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Queensboro) Auto Mechanic NA NA 1108.99 1.108990e+03 1108.990 21.75 1 1.108990e+03 1108.99 NA NA NA NULL
2015 Community College (Queensboro) Campus Peace Officer 38983.35714 1.091534e+06 171089.40 6.110336e+03 4344.395 6076.25 28 4.344395e+03 121643.06 1.262623e+06 1.213177e+06 49446.34 NULL
2015 Community College (Queensboro) Campus Public Safety Sergeant 50147.00000 2.507350e+05 33747.19 6.749438e+03 6250.380 996.50 5 6.250380e+03 31251.90 2.844822e+05 2.819869e+05 2495.29 NULL
2015 Community College (Queensboro) Campus Security Assistant 25754.11111 4.635740e+05 35730.48 1.985027e+03 949.580 2071.00 18 9.495800e+02 17092.44 4.993045e+05 4.806664e+05 18638.04 NULL
2015 Community College (Queensboro) Carpenter NA NA 94027.43 2.350686e+04 23806.090 1479.75 4 2.350686e+04 94027.43 NA NA NA NULL
2015 Community College (Queensboro) Chief Administrative Supt Campus B/G 130388.00000 1.303880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.303880e+05 1.303880e+05 0.00 NULL
2015 Community College (Queensboro) Chief College Lab Technician 38604.41300 3.860441e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 3.860441e+05 3.860441e+05 0.00 NULL
2015 Community College (Queensboro) City Laborer NA NA 181236.77 2.589097e+04 25492.240 3443.25 7 2.549224e+04 178445.68 NA NA NA NULL
2015 Community College (Queensboro) College Accountant 51230.50000 2.049220e+05 793.13 1.982825e+02 148.000 34.00 4 1.480000e+02 592.00 2.057151e+05 2.055140e+05 201.13 NULL
2015 Community College (Queensboro) College Accounting Assistant 39392.66667 1.181780e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.181780e+05 1.181780e+05 0.00 NULL
2015 Community College (Queensboro) College Assistant 5165.29502 3.713847e+06 0.00 0.000000e+00 0.000 0.00 719 0.000000e+00 0.00 3.713847e+06 3.713847e+06 0.00 NULL
2015 Community College (Queensboro) College Graph Designer 53952.00000 5.395200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.395200e+04 5.395200e+04 0.00 NULL
2015 Community College (Queensboro) College Lab Technician 44307.47000 1.240609e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 1.240609e+06 1.240609e+06 0.00 NULL
2015 Community College (Queensboro) College Print Shop Assistant 32872.00000 3.287200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.287200e+04 3.287200e+04 0.00 NULL
2015 Community College (Queensboro) College Print Shop Associate 38553.50000 7.710700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.710700e+04 7.710700e+04 0.00 NULL
2015 Community College (Queensboro) College Print Shop Coordinator 53842.00000 5.384200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.384200e+04 5.384200e+04 0.00 NULL
2015 Community College (Queensboro) College Security Director 103000.00000 1.030000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030000e+05 1.030000e+05 0.00 NULL
2015 Community College (Queensboro) Continuing Education Teacher 7641.67821 1.482486e+06 0.00 0.000000e+00 0.000 0.00 194 0.000000e+00 0.00 1.482486e+06 1.482486e+06 0.00 NULL
2015 Community College (Queensboro) Cuny Administrator Assistant 46128.09375 1.476099e+06 3770.05 1.178141e+02 0.000 107.50 32 0.000000e+00 0.00 1.479869e+06 1.476099e+06 3770.05 NULL
2015 Community College (Queensboro) Cuny Broadcast Associate 45788.00000 4.578800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.578800e+04 4.578800e+04 0.00 NULL
2015 Community College (Queensboro) Cuny Custodial Assistant 25967.67752 1.480158e+06 366722.92 6.433735e+03 1721.960 16131.83 57 1.721960e+03 98151.72 1.846881e+06 1.578309e+06 268571.20 NULL
2015 Community College (Queensboro) Cuny Office Assistant 33095.23750 2.647619e+06 663.02 8.287750e+00 0.000 36.50 80 0.000000e+00 0.00 2.648282e+06 2.647619e+06 663.02 NULL
2015 Community College (Queensboro) Custodial Supervisor 31121.37500 2.489710e+05 50875.76 6.359470e+03 6850.105 2037.25 8 6.359470e+03 50875.76 2.998468e+05 2.998468e+05 0.00 NULL
2015 Community College (Queensboro) Dean 128333.33333 3.850000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.850000e+05 3.850000e+05 0.00 NULL
2015 Community College (Queensboro) Disability Accommodations Specialist 18325.32214 1.282773e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.282773e+05 1.282773e+05 0.00 NULL
2015 Community College (Queensboro) Electrician NA NA 92395.63 1.539927e+04 12054.000 1293.75 6 1.205400e+04 72324.00 NA NA NA NULL
2015 Community College (Queensboro) Facilities Coordinator 53938.00000 5.393800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.393800e+04 5.393800e+04 0.00 NULL
2015 Community College (Queensboro) High Pressure Plant Tender NA NA 73703.98 1.474080e+04 13449.200 1728.00 5 1.344920e+04 67246.00 NA NA NA NULL
2015 Community College (Queensboro) Higher Education Assistant 63441.91045 4.250608e+06 0.00 0.000000e+00 0.000 0.00 67 0.000000e+00 0.00 4.250608e+06 4.250608e+06 0.00 NULL
2015 Community College (Queensboro) Higher Education Associate 83092.38000 4.154619e+06 0.00 0.000000e+00 0.000 0.00 50 0.000000e+00 0.00 4.154619e+06 4.154619e+06 0.00 NULL
2015 Community College (Queensboro) Higher Education Officer 105031.43902 4.306289e+06 0.00 0.000000e+00 0.000 0.00 41 0.000000e+00 0.00 4.306289e+06 4.306289e+06 0.00 NULL
2015 Community College (Queensboro) Higher Education Officer/Asst Administrator 124034.00000 1.240340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.240340e+05 1.240340e+05 0.00 NULL
2015 Community College (Queensboro) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Queensboro) It Assistant 52776.00000 5.277600e+04 103.94 1.039400e+02 103.940 5.00 1 1.039400e+02 103.94 5.287994e+04 5.287994e+04 0.00 NULL
2015 Community College (Queensboro) It Associate 62173.62500 4.973890e+05 592.90 7.411250e+01 0.000 22.75 8 0.000000e+00 0.00 4.979819e+05 4.973890e+05 592.90 NULL
2015 Community College (Queensboro) It Senior Associate 90119.41667 1.081433e+06 82754.20 6.896183e+03 2690.505 1360.50 12 2.690505e+03 32286.06 1.164187e+06 1.113719e+06 50468.14 NULL
2015 Community College (Queensboro) It Support Assistant 17494.69417 2.099363e+05 1547.35 1.289458e+02 0.000 53.00 12 0.000000e+00 0.00 2.114837e+05 2.099363e+05 1547.35 NULL
2015 Community College (Queensboro) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 176 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Queensboro) Lecturer/Doctoral Schedule 62306.00000 6.230600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.230600e+04 6.230600e+04 0.00 NULL
2015 Community College (Queensboro) Locksmith NA NA 2726.97 2.726970e+03 2726.970 79.50 1 2.726970e+03 2726.97 NA NA NA NULL
2015 Community College (Queensboro) Mail/Message Services Worker 36288.50000 7.257700e+04 5.69 2.845000e+00 2.845 0.00 2 2.845000e+00 5.69 7.258269e+04 7.258269e+04 0.00 NULL
2015 Community College (Queensboro) Maintenance Worker NA NA 21622.96 2.702870e+03 1055.405 504.50 8 1.055405e+03 8443.24 NA NA NA NULL
2015 Community College (Queensboro) Motor Vehicle Operator 37444.50000 7.488900e+04 5791.22 2.895610e+03 2895.610 222.75 2 2.895610e+03 5791.22 8.068022e+04 8.068022e+04 0.00 NULL
2015 Community College (Queensboro) Non-Teaching Adjunct I 7801.20776 9.829522e+05 0.00 0.000000e+00 0.000 0.00 126 0.000000e+00 0.00 9.829522e+05 9.829522e+05 0.00 NULL
2015 Community College (Queensboro) Non-Teaching Adjunct Iii 5743.23750 1.148648e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.148648e+04 1.148648e+04 0.00 NULL
2015 Community College (Queensboro) Non-Teaching Adjunct Iv 3569.33500 1.427734e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.427734e+04 1.427734e+04 0.00 NULL
2015 Community College (Queensboro) Non-Teaching Adjunct V 2865.87833 8.597635e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 8.597635e+03 8.597635e+03 0.00 NULL
2015 Community College (Queensboro) Oiler NA NA 2219.52 2.219520e+03 2219.520 32.00 1 2.219520e+03 2219.52 NA NA NA NULL
2015 Community College (Queensboro) Painter NA NA 49175.02 2.458751e+04 24587.510 950.75 2 2.458751e+04 49175.02 NA NA NA NULL
2015 Community College (Queensboro) Plasterer NA NA 23237.84 2.323784e+04 23237.840 391.25 1 2.323784e+04 23237.84 NA NA NA NULL
2015 Community College (Queensboro) Plumber NA NA 19784.31 1.978431e+04 19784.310 163.50 1 1.978431e+04 19784.31 NA NA NA NULL
2015 Community College (Queensboro) President 215000.00000 2.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.150000e+05 2.150000e+05 0.00 NULL
2015 Community College (Queensboro) Professor NA NA 0.00 0.000000e+00 0.000 0.00 120 0.000000e+00 0.00 NA NA NA NULL
2015 Community College (Queensboro) Senior College Lab Tech 60436.90476 1.269175e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.269175e+06 1.269175e+06 0.00 NULL
2015 Community College (Queensboro) Senior Custodial Supervisor 35119.50000 7.023900e+04 50857.99 2.542899e+04 25428.995 1858.00 2 2.542899e+04 50857.99 1.210970e+05 1.210970e+05 0.00 NULL
2015 Community College (Queensboro) Senior Stationary Engineer NA NA 23262.01 2.326201e+04 23262.010 261.00 1 2.326201e+04 23262.01 NA NA NA NULL
2015 Community College (Queensboro) Sr College Laboratory Tech 5450.26254 4.905236e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.905236e+04 4.905236e+04 0.00 NULL
2015 Community College (Queensboro) Staff Nurse 61662.06750 1.233241e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.233241e+05 1.233241e+05 0.00 NULL
2015 Community College (Queensboro) Stationary Engineer NA NA 167719.75 2.795329e+04 24986.385 2472.50 6 2.498638e+04 149918.31 NA NA NA NULL
2015 Community College (Queensboro) Steam Fitter NA NA 4420.02 4.420020e+03 4420.020 47.00 1 4.420020e+03 4420.02 NA NA NA NULL
2015 Community College (Queensboro) Stock Worker 30551.00000 3.055100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.055100e+04 3.055100e+04 0.00 NULL
2015 Community College (Queensboro) Supervisor Of Stock Workers 51429.00000 5.142900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.142900e+04 5.142900e+04 0.00 NULL
2015 Community College (Queensboro) Thermostat Repairer NA NA 44008.57 4.400857e+04 44008.570 501.25 1 4.400857e+04 44008.57 NA NA NA NULL
2015 Community College (Queensboro) University Architect 66136.00000 6.613600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.613600e+04 6.613600e+04 0.00 NULL
2015 Community College (Queensboro) University Engineer 87784.00000 8.778400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.778400e+04 8.778400e+04 0.00 NULL
2015 Community College (Queensboro) Vice President 164694.57143 1.152862e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.152862e+06 1.152862e+06 0.00 NULL
2015 Community College (Queensboro) NA 51083.50000 1.021670e+05 34642.74 1.732137e+04 17321.370 893.00 2 1.732137e+04 34642.74 1.368097e+05 1.368097e+05 0.00 NULL
2015 Conflicts Of Interest Board Administrative Staff Analyst 97197.33333 2.915920e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.915920e+05 2.915920e+05 0.00 NULL
2015 Conflicts Of Interest Board Agency Attorney 70503.50000 4.230210e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.230210e+05 4.230210e+05 0.00 NULL
2015 Conflicts Of Interest Board Community Assistant 32489.00000 3.248900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.248900e+04 3.248900e+04 0.00 NULL
2015 Conflicts Of Interest Board Community Associate 43030.00000 8.606000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.606000e+04 8.606000e+04 0.00 NULL
2015 Conflicts Of Interest Board Community Coordinator 54858.00000 5.485800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.485800e+04 5.485800e+04 0.00 NULL
2015 Conflicts Of Interest Board Computer Operations Manager 100479.00000 1.004790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.004790e+05 1.004790e+05 0.00 NULL
2015 Conflicts Of Interest Board Confidential Investigator 56587.00000 1.697610e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.697610e+05 1.697610e+05 0.00 NULL
2015 Conflicts Of Interest Board Counsel 197275.00000 1.972750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.972750e+05 1.972750e+05 0.00 NULL
2015 Conflicts Of Interest Board Executive Agency Counsel 137110.28571 9.597720e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.597720e+05 9.597720e+05 0.00 NULL
2015 Conflicts Of Interest Board Principal Administrative Associate 55160.00000 1.103200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.103200e+05 1.103200e+05 0.00 NULL
2015 Conflicts Of Interest Board Secretary To Conflicts Of Interest Board 50388.00000 5.038800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.038800e+04 5.038800e+04 0.00 NULL
2015 Consumer Affairs Accountant 58806.00000 5.880600e+04 22.15 2.215000e+01 22.150 0.00 1 2.215000e+01 22.15 5.882815e+04 5.882815e+04 0.00 NULL
2015 Consumer Affairs Adm Manager-Non-Mgrl 83361.33333 2.500840e+05 770.01 2.566700e+02 27.070 1.00 3 2.707000e+01 81.21 2.508540e+05 2.501652e+05 688.80 NULL
2015 Consumer Affairs Admin Contract Specialist 88267.00000 1.765340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.765340e+05 1.765340e+05 0.00 NULL
2015 Consumer Affairs Administrative Business Promotion Coordinator 73225.00000 7.322500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.322500e+04 7.322500e+04 0.00 NULL
2015 Consumer Affairs Administrative Director Of Social Services 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2015 Consumer Affairs Administrative Labor Relations Analyst 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2015 Consumer Affairs Administrative Manager 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2015 Consumer Affairs Administrative Procurement Analyst 82500.00000 8.250000e+04 15.73 1.573000e+01 15.730 0.00 1 1.573000e+01 15.73 8.251573e+04 8.251573e+04 0.00 NULL
2015 Consumer Affairs Administrative Public Information Specialist 105477.66667 3.164330e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.164330e+05 3.164330e+05 0.00 NULL
2015 Consumer Affairs Administrative Staff Analyst 94142.72414 2.730139e+06 11114.12 3.832455e+02 0.000 127.75 29 0.000000e+00 0.00 2.741253e+06 2.730139e+06 11114.12 NULL
2015 Consumer Affairs Agency Attorney 73692.31429 2.579231e+06 17232.04 4.923440e+02 118.710 280.25 35 1.187100e+02 4154.85 2.596463e+06 2.583386e+06 13077.19 NULL
2015 Consumer Affairs Assistant To The Commissioner 99470.00000 9.947000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.947000e+04 9.947000e+04 0.00 NULL
2015 Consumer Affairs Associate Inspector 67511.44444 1.215206e+06 5468.42 3.038011e+02 83.205 95.00 18 8.320500e+01 1497.69 1.220674e+06 1.216704e+06 3970.73 NULL
2015 Consumer Affairs Attorney At Law 87429.00000 2.622870e+05 1948.27 6.494233e+02 116.640 14.50 3 1.166400e+02 349.92 2.642353e+05 2.626369e+05 1598.35 NULL
2015 Consumer Affairs Cashier 38831.00000 3.883100e+04 115.19 1.151900e+02 115.190 5.25 1 1.151900e+02 115.19 3.894619e+04 3.894619e+04 0.00 NULL
2015 Consumer Affairs Clerical Associate 40551.44444 1.094889e+06 8396.18 3.109696e+02 52.730 165.00 27 5.273000e+01 1423.71 1.103285e+06 1.096313e+06 6972.47 NULL
2015 Consumer Affairs Commissioner 200847.00000 2.008470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.008470e+05 2.008470e+05 0.00 NULL
2015 Consumer Affairs Community Assistant 36255.00000 3.262950e+05 6054.53 6.727256e+02 36.290 99.00 9 3.629000e+01 326.61 3.323495e+05 3.266216e+05 5727.92 NULL
2015 Consumer Affairs Community Associate 41136.35068 6.869771e+06 92131.55 5.516859e+02 81.960 2492.25 167 8.196000e+01 13687.32 6.961902e+06 6.883458e+06 78444.23 NULL
2015 Consumer Affairs Community Coordinator 57739.02667 4.330427e+06 58531.92 7.804256e+02 91.700 1178.75 75 9.170000e+01 6877.50 4.388959e+06 4.337304e+06 51654.42 NULL
2015 Consumer Affairs Computer Associate 66375.70000 6.637570e+05 14746.39 1.474639e+03 415.465 279.00 10 4.154650e+02 4154.65 6.785034e+05 6.679117e+05 10591.74 NULL
2015 Consumer Affairs Computer Specialist 96300.20000 1.444503e+06 10661.94 7.107960e+02 301.060 143.00 15 3.010600e+02 4515.90 1.455165e+06 1.449019e+06 6146.04 NULL
2015 Consumer Affairs Computer Systems Manager 107249.66667 3.217490e+05 1.98 6.600000e-01 0.000 0.00 3 0.000000e+00 0.00 3.217510e+05 3.217490e+05 1.98 NULL
2015 Consumer Affairs Counsel 180707.00000 1.807070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.807070e+05 1.807070e+05 0.00 NULL
2015 Consumer Affairs Deputy Commissioner 161724.00000 4.851720e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.851720e+05 4.851720e+05 0.00 NULL
2015 Consumer Affairs Deputy Counsel 156790.00000 1.567900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.567900e+05 1.567900e+05 0.00 NULL
2015 Consumer Affairs Director Of Consumer Information 116725.00000 1.167250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.167250e+05 1.167250e+05 0.00 NULL
2015 Consumer Affairs Executive Agency Counsel 106850.33333 1.282204e+06 1563.13 1.302608e+02 0.000 8.75 12 0.000000e+00 0.00 1.283767e+06 1.282204e+06 1563.13 NULL
2015 Consumer Affairs Executive Assistant To The Commissioner 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2015 Consumer Affairs General Inspector 48398.00000 4.839800e+04 851.00 8.510000e+02 851.000 28.00 1 8.510000e+02 851.00 4.924900e+04 4.924900e+04 0.00 NULL
2015 Consumer Affairs Inspector 45059.13433 3.018962e+06 24382.39 3.639163e+02 6.810 705.75 67 6.810000e+00 456.27 3.043344e+06 3.019418e+06 23926.12 NULL
2015 Consumer Affairs Paralegal Aide 43872.00000 4.387200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.387200e+04 4.387200e+04 0.00 NULL
2015 Consumer Affairs Principal Administrative Associate 54419.53846 7.074540e+05 11612.55 8.932731e+02 50.430 134.00 13 5.043000e+01 655.59 7.190666e+05 7.081096e+05 10956.96 NULL
2015 Consumer Affairs Secretary 38642.50000 7.728500e+04 347.38 1.736900e+02 173.690 5.00 2 1.736900e+02 347.38 7.763238e+04 7.763238e+04 0.00 NULL
2015 Consumer Affairs Secretary Of The Department 120501.00000 1.205010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.205010e+05 1.205010e+05 0.00 NULL
2015 Cultural Affairs Adm Manager-Non-Mgrl 75019.50000 1.500390e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.500390e+05 1.500390e+05 0.00 NULL
2015 Cultural Affairs Administrative Project Manager 134551.00000 1.345510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.345510e+05 1.345510e+05 0.00 NULL
2015 Cultural Affairs Administrative Staff Analyst 95690.66667 2.870720e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.870720e+05 2.870720e+05 0.00 NULL
2015 Cultural Affairs Agency Attorney 63957.00000 6.395700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.395700e+04 6.395700e+04 0.00 NULL
2015 Cultural Affairs Agency Chief Contracting Officer 115973.00000 1.159730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.159730e+05 1.159730e+05 0.00 NULL
2015 Cultural Affairs Arts Program Specialist 46186.15401 4.618615e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.618615e+05 4.618615e+05 0.00 NULL
2015 Cultural Affairs Assistant Commissioner 113758.00000 3.412740e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.412740e+05 3.412740e+05 0.00 NULL
2015 Cultural Affairs Associate Arts Programs Specialist 57742.22213 8.661333e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 8.661333e+05 8.661333e+05 0.00 NULL
2015 Cultural Affairs Associate Staff Analyst 65978.00000 6.597800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.597800e+04 6.597800e+04 0.00 NULL
2015 Cultural Affairs City Laborer 44968.39000 8.993678e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.993678e+04 8.993678e+04 0.00 NULL
2015 Cultural Affairs Commissioner Of Cultural Affairs 200847.00000 2.008470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.008470e+05 2.008470e+05 0.00 NULL
2015 Cultural Affairs Community Assistant 35390.76780 3.539077e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.539077e+04 3.539077e+04 0.00 NULL
2015 Cultural Affairs Community Associate 33626.80479 7.061629e+05 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 7.061629e+05 7.061629e+05 0.00 NULL
2015 Cultural Affairs Community Coordinator 58950.32235 7.663542e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 7.663542e+05 7.663542e+05 0.00 NULL
2015 Cultural Affairs Computer Associate 84354.00000 8.435400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.435400e+04 8.435400e+04 0.00 NULL
2015 Cultural Affairs Computer Systems Manager 110346.00000 1.103460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.103460e+05 1.103460e+05 0.00 NULL
2015 Cultural Affairs Deputy Commissioner 145060.50000 2.901210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.901210e+05 2.901210e+05 0.00 NULL
2015 Cultural Affairs Executive Agency Counsel 138125.00000 2.762500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.762500e+05 2.762500e+05 0.00 NULL
2015 Cultural Affairs Executive Director Of Materials For The Arts 95579.00000 9.557900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.557900e+04 9.557900e+04 0.00 NULL
2015 Cultural Affairs Principal Administrative Associate 48082.00000 4.808200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.808200e+04 4.808200e+04 0.00 NULL
2015 Cultural Affairs Secretary 50820.00000 5.082000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.082000e+04 5.082000e+04 0.00 NULL
2015 Cultural Affairs Secretary To The Commissioner 50750.00000 5.075000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.075000e+04 5.075000e+04 0.00 NULL
2015 Cultural Affairs Staff Analyst 64653.00000 1.293060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.293060e+05 1.293060e+05 0.00 NULL
2015 Department For The Aging Accountant 56029.00000 1.680870e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.680870e+05 1.680870e+05 0.00 NULL
2015 Department For The Aging Administrative Program Officer 112474.04762 2.361955e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 2.361955e+06 2.361955e+06 0.00 NULL
2015 Department For The Aging Administrative Accountant 96232.00000 9.623200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.623200e+04 9.623200e+04 0.00 NULL
2015 Department For The Aging Administrative Director Of Social Services 127355.50000 2.547110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.547110e+05 2.547110e+05 0.00 NULL
2015 Department For The Aging Administrative Project Manager 102560.00000 1.025600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.025600e+05 1.025600e+05 0.00 NULL
2015 Department For The Aging Administrative Public Information Specialist 79727.50000 1.594550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.594550e+05 1.594550e+05 0.00 NULL
2015 Department For The Aging Administrative Staff Analyst 84814.79375 2.714073e+06 27.90 8.718750e-01 0.000 0.00 32 0.000000e+00 0.00 2.714101e+06 2.714073e+06 27.90 NULL
2015 Department For The Aging Agency Chief Contracting Officer 130238.00000 1.302380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.302380e+05 1.302380e+05 0.00 NULL
2015 Department For The Aging Architect 65351.33333 1.960540e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.960540e+05 1.960540e+05 0.00 NULL
2015 Department For The Aging Associate Staff Analyst 64930.66667 5.843760e+05 29.41 3.267778e+00 0.000 0.00 9 0.000000e+00 0.00 5.844054e+05 5.843760e+05 29.41 NULL
2015 Department For The Aging Attorney At Law 83626.00000 8.362600e+04 19.12 1.912000e+01 19.120 0.00 1 1.912000e+01 19.12 8.364512e+04 8.364512e+04 0.00 NULL
2015 Department For The Aging Bookkeeper 52309.66667 1.569290e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.569290e+05 1.569290e+05 0.00 NULL
2015 Department For The Aging City Custodial Assistant 34956.00000 3.495600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.495600e+04 3.495600e+04 0.00 NULL
2015 Department For The Aging Clerical Associate 35412.78875 2.124767e+05 135.03 2.250500e+01 0.000 11.50 6 0.000000e+00 0.00 2.126118e+05 2.124767e+05 135.03 NULL
2015 Department For The Aging College Aide 7728.09375 1.545619e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.545619e+04 1.545619e+04 0.00 NULL
2015 Department For The Aging Commissioner 200847.00000 2.008470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.008470e+05 2.008470e+05 0.00 NULL
2015 Department For The Aging Community Assistant 27181.90186 4.349104e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 4.349104e+05 4.349104e+05 0.00 NULL
2015 Department For The Aging Community Associate 44879.33515 2.109329e+06 33373.04 7.100647e+02 0.000 1047.75 47 0.000000e+00 0.00 2.142702e+06 2.109329e+06 33373.04 NULL
2015 Department For The Aging Community Coordinator 57621.70382 2.996329e+06 245.03 4.712115e+00 0.000 0.00 52 0.000000e+00 0.00 2.996574e+06 2.996329e+06 245.03 NULL
2015 Department For The Aging Community Service Aide 5772.20287 2.793746e+06 0.00 0.000000e+00 0.000 0.00 484 0.000000e+00 0.00 2.793746e+06 2.793746e+06 0.00 NULL
2015 Department For The Aging Construction Project Manager 67342.00000 6.734200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.734200e+04 6.734200e+04 0.00 NULL
2015 Department For The Aging Counsel 150332.50000 3.006650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.006650e+05 3.006650e+05 0.00 NULL
2015 Department For The Aging Deputy Commissioner 161578.00000 1.615780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.615780e+05 1.615780e+05 0.00 NULL
2015 Department For The Aging Director Of Administration 124553.00000 2.491060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.491060e+05 2.491060e+05 0.00 NULL
2015 Department For The Aging Director Of Community Programs 129445.00000 1.294450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.294450e+05 1.294450e+05 0.00 NULL
2015 Department For The Aging Director Of Direct Service Programs 147115.00000 1.471150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.471150e+05 1.471150e+05 0.00 NULL
2015 Department For The Aging Director Of Research Planning And Policy Analysis 116306.00000 1.163060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.163060e+05 1.163060e+05 0.00 NULL
2015 Department For The Aging Executive Agency Counsel 102240.11133 3.067203e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.067203e+05 3.067203e+05 0.00 NULL
2015 Department For The Aging Foster Grandparent 2386.14976 9.735491e+05 0.00 0.000000e+00 0.000 0.00 408 0.000000e+00 0.00 9.735491e+05 9.735491e+05 0.00 NULL
2015 Department For The Aging Housing Development Specialist 62316.00000 1.246320e+05 5.99 2.995000e+00 2.995 0.00 2 2.995000e+00 5.99 1.246380e+05 1.246380e+05 0.00 NULL
2015 Department For The Aging Management Auditor 63984.33333 7.678120e+05 18.08 1.506667e+00 0.000 0.00 12 0.000000e+00 0.00 7.678301e+05 7.678120e+05 18.08 NULL
2015 Department For The Aging Nutrition Consultant 61623.22222 1.109218e+06 36.62 2.034444e+00 0.000 0.00 18 0.000000e+00 0.00 1.109255e+06 1.109218e+06 36.62 NULL
2015 Department For The Aging Principal Administrative Associate 55850.06897 1.619652e+06 52.86 1.822759e+00 0.000 0.00 29 0.000000e+00 0.00 1.619705e+06 1.619652e+06 52.86 NULL
2015 Department For The Aging Principal Nutrition Consultant 74282.00000 1.485640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.485640e+05 1.485640e+05 0.00 NULL
2015 Department For The Aging Procurement Analyst 73175.00000 1.463500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.463500e+05 1.463500e+05 0.00 NULL
2015 Department For The Aging Program Officer 63039.78261 2.899830e+06 390.44 8.487826e+00 0.000 0.00 46 0.000000e+00 0.00 2.900220e+06 2.899830e+06 390.44 NULL
2015 Department For The Aging Secretary 40004.98600 4.800598e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 4.800598e+05 4.800598e+05 0.00 NULL
2015 Department For The Aging Space Analyst 69157.00000 6.915700e+04 118.24 1.182400e+02 118.240 3.00 1 1.182400e+02 118.24 6.927524e+04 6.927524e+04 0.00 NULL
2015 Department For The Aging Summer College Intern 2505.00000 5.010000e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.010000e+03 5.010000e+03 0.00 NULL
2015 Department For The Aging Summer Graduate Intern 3154.66667 9.464000e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.464000e+03 9.464000e+03 0.00 NULL
2015 Department For The Aging Supervisor Ii 71437.00000 1.428740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.428740e+05 1.428740e+05 0.00 NULL
2015 Department For The Aging Supervisor Iii 66111.48403 4.627804e+05 17.80 2.542857e+00 0.000 0.00 7 0.000000e+00 0.00 4.627982e+05 4.627804e+05 17.80 NULL
2015 Department Of Buildings Adm Manager-Non-Mgrl 68559.63848 7.198762e+06 502117.52 4.782072e+03 1340.290 12367.25 105 1.340290e+03 140730.45 7.700880e+06 7.339492e+06 361387.07 NULL
2015 Department Of Buildings Administration Public Record Officer 95056.00000 9.505600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.505600e+04 9.505600e+04 0.00 NULL
2015 Department Of Buildings Administrative Architect 125268.47593 3.382249e+06 763.14 2.826444e+01 0.000 0.00 27 0.000000e+00 0.00 3.383012e+06 3.382249e+06 763.14 NULL
2015 Department Of Buildings Administrative Borough Superintendent 111051.80000 5.552590e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.552590e+05 5.552590e+05 0.00 NULL
2015 Department Of Buildings Administrative Engineer 117180.47619 4.921580e+06 18172.91 4.326883e+02 0.000 185.25 42 0.000000e+00 0.00 4.939753e+06 4.921580e+06 18172.91 NULL
2015 Department Of Buildings Administrative Inspector 103674.20833 4.976362e+06 41228.93 8.589360e+02 0.000 638.50 48 0.000000e+00 0.00 5.017591e+06 4.976362e+06 41228.93 NULL
2015 Department Of Buildings Administrative Manager 106109.20000 2.122184e+06 19456.22 9.728110e+02 0.000 255.00 20 0.000000e+00 0.00 2.141640e+06 2.122184e+06 19456.22 NULL
2015 Department Of Buildings Administrative Project Manager 111214.33333 3.336430e+05 11.71 3.903333e+00 0.000 0.00 3 0.000000e+00 0.00 3.336547e+05 3.336430e+05 11.71 NULL
2015 Department Of Buildings Administrative Public Information Specialist 129412.50000 2.588250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.588250e+05 2.588250e+05 0.00 NULL
2015 Department Of Buildings Administrative Staff Analyst 88266.95000 3.530678e+06 86050.82 2.151271e+03 0.000 1501.25 40 0.000000e+00 0.00 3.616729e+06 3.530678e+06 86050.82 NULL
2015 Department Of Buildings Agency Attorney 84134.18444 3.028831e+06 17785.57 4.940436e+02 0.000 243.75 36 0.000000e+00 0.00 3.046616e+06 3.028831e+06 17785.57 NULL
2015 Department Of Buildings Agency Attorney Intern 61619.40000 3.080970e+05 14.75 2.950000e+00 0.000 0.00 5 0.000000e+00 0.00 3.081118e+05 3.080970e+05 14.75 NULL
2015 Department Of Buildings Agency Chief Contracting Officer 93216.00000 9.321600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.321600e+04 9.321600e+04 0.00 NULL
2015 Department Of Buildings Architect 84634.57143 2.369768e+06 223679.69 7.988560e+03 5230.645 3838.75 28 5.230645e+03 146458.06 2.593448e+06 2.516226e+06 77221.63 NULL
2015 Department Of Buildings Assistant Architect 73536.90000 7.353690e+05 128371.64 1.283716e+04 7897.495 2480.50 10 7.897495e+03 78974.95 8.637406e+05 8.143439e+05 49396.69 NULL
2015 Department Of Buildings Assistant Civil Engineer 69653.20000 3.482660e+05 40547.22 8.109444e+03 6610.390 896.00 5 6.610390e+03 33051.95 3.888132e+05 3.813180e+05 7495.27 NULL
2015 Department Of Buildings Assistant Commissioner For Labor Relations & Admin 165574.00000 1.655740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.655740e+05 1.655740e+05 0.00 NULL
2015 Department Of Buildings Assistant Commissioner Of Operations 165322.00000 1.653220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.653220e+05 1.653220e+05 0.00 NULL
2015 Department Of Buildings Assistant Electrical Engineer 73000.00000 7.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.300000e+04 7.300000e+04 0.00 NULL
2015 Department Of Buildings Assistant Mechanical Engineer 73662.00000 2.946480e+05 75982.64 1.899566e+04 3.265 1227.00 4 3.265000e+00 13.06 3.706306e+05 2.946611e+05 75969.58 NULL
2015 Department Of Buildings Assistant Plan Examiner 72645.70588 1.234977e+06 145857.85 8.579874e+03 6771.170 2852.25 17 6.771170e+03 115109.89 1.380835e+06 1.350087e+06 30747.96 NULL
2015 Department Of Buildings Associate Inspector 73805.31159 1.298973e+07 2632723.11 1.495865e+04 9078.720 50156.57 176 9.078720e+03 1597854.72 1.562246e+07 1.458759e+07 1034868.39 NULL
2015 Department Of Buildings Associate Investigator 73521.00000 7.352100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.352100e+04 7.352100e+04 0.00 NULL
2015 Department Of Buildings Associate Project Manager 84915.57143 5.944090e+05 10337.13 1.476733e+03 799.820 233.50 7 7.998200e+02 5598.74 6.047461e+05 6.000077e+05 4738.39 NULL
2015 Department Of Buildings Associate Staff Analyst 73208.18182 8.052900e+05 11401.28 1.036480e+03 0.000 242.00 11 0.000000e+00 0.00 8.166913e+05 8.052900e+05 11401.28 NULL
2015 Department Of Buildings Attorney At Law 99853.00000 9.985300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.985300e+04 9.985300e+04 0.00 NULL
2015 Department Of Buildings City Service Aide 13390.05938 2.678012e+04 63.14 3.157000e+01 31.570 4.25 2 3.157000e+01 63.14 2.684326e+04 2.684326e+04 0.00 NULL
2015 Department Of Buildings Civil Engineer 89935.62500 1.438970e+06 175852.56 1.099078e+04 635.675 2746.00 16 6.356750e+02 10170.80 1.614823e+06 1.449141e+06 165681.76 NULL
2015 Department Of Buildings Clerical Associate 41696.46406 5.545630e+06 317054.46 2.383868e+03 197.280 10414.80 133 1.972800e+02 26238.24 5.862684e+06 5.571868e+06 290816.22 NULL
2015 Department Of Buildings College Aide 6659.88356 4.661918e+05 0.00 0.000000e+00 0.000 0.00 70 0.000000e+00 0.00 4.661918e+05 4.661918e+05 0.00 NULL
2015 Department Of Buildings Commissioner Of Buildings 214413.00000 2.144130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144130e+05 2.144130e+05 0.00 NULL
2015 Department Of Buildings Community Assistant 33982.92857 4.757610e+05 16183.41 1.155958e+03 18.520 606.25 14 1.852000e+01 259.28 4.919444e+05 4.760203e+05 15924.13 NULL
2015 Department Of Buildings Community Associate 41558.44301 1.828571e+06 215631.25 4.900710e+03 529.810 7715.50 44 5.298100e+02 23311.64 2.044203e+06 1.851883e+06 192319.61 NULL
2015 Department Of Buildings Community Coordinator 65110.38462 8.464350e+05 41720.16 3.209243e+03 318.320 832.50 13 3.183200e+02 4138.16 8.881552e+05 8.505732e+05 37582.00 NULL
2015 Department Of Buildings Computer Aide-Non-Spvr 50072.25000 2.002890e+05 7922.18 1.980545e+03 1732.705 238.25 4 1.732705e+03 6930.82 2.082112e+05 2.072198e+05 991.36 NULL
2015 Department Of Buildings Computer Associate 68447.09091 7.529180e+05 34297.61 3.117965e+03 1724.960 676.00 11 1.724960e+03 18974.56 7.872156e+05 7.718926e+05 15323.05 NULL
2015 Department Of Buildings Computer Specialist 96376.81818 1.060145e+06 303.37 2.757909e+01 0.000 3.50 11 0.000000e+00 0.00 1.060448e+06 1.060145e+06 303.37 NULL
2015 Department Of Buildings Computer Systems Manager 100644.55556 1.811602e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.811602e+06 1.811602e+06 0.00 NULL
2015 Department Of Buildings Deputy Commissioner 182700.00000 3.654000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.654000e+05 3.654000e+05 0.00 NULL
2015 Department Of Buildings Director Nyc Loft Board 118765.00000 1.187650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.187650e+05 1.187650e+05 0.00 NULL
2015 Department Of Buildings Electrical Engineer 98320.50000 1.966410e+05 1459.00 7.295000e+02 729.500 32.25 2 7.295000e+02 1459.00 1.981000e+05 1.981000e+05 0.00 NULL
2015 Department Of Buildings Engineering Technician 60904.00000 6.090400e+04 898.43 8.984300e+02 898.430 27.25 1 8.984300e+02 898.43 6.180243e+04 6.180243e+04 0.00 NULL
2015 Department Of Buildings Estimator 61126.25000 2.445050e+05 29001.87 7.250467e+03 6847.075 741.50 4 6.847075e+03 27388.30 2.735069e+05 2.718933e+05 1613.57 NULL
2015 Department Of Buildings Executive Agency Counsel 131283.20000 1.969248e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.969248e+06 1.969248e+06 0.00 NULL
2015 Department Of Buildings Executive Inspector 188236.00000 1.882360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.882360e+05 1.882360e+05 0.00 NULL
2015 Department Of Buildings Inspector 58207.41405 1.193252e+07 1006639.34 4.910436e+03 829.300 25182.61 205 8.293000e+02 170006.50 1.293916e+07 1.210253e+07 836632.84 NULL
2015 Department Of Buildings Investigator 49000.00000 9.800000e+04 2137.04 1.068520e+03 1068.520 71.50 2 1.068520e+03 2137.04 1.001370e+05 1.001370e+05 0.00 NULL
2015 Department Of Buildings Investigator Empl Disc 51156.12690 1.483528e+06 142214.18 4.903937e+03 756.960 3812.00 29 7.569600e+02 21951.84 1.625742e+06 1.505480e+06 120262.34 NULL
2015 Department Of Buildings Mechanical Engineer 84631.10000 8.463110e+05 176652.67 1.766527e+04 15083.215 2718.00 10 1.508322e+04 150832.15 1.022964e+06 9.971432e+05 25820.52 NULL
2015 Department Of Buildings Plan Examiner 80413.62857 2.814477e+06 217450.91 6.212883e+03 499.990 4168.00 35 4.999900e+02 17499.65 3.031928e+06 2.831977e+06 199951.26 NULL
2015 Department Of Buildings Principal Administrative Associate 55829.93573 4.578055e+06 169005.97 2.061048e+03 31.495 4348.10 82 3.149500e+01 2582.59 4.747061e+06 4.580637e+06 166423.38 NULL
2015 Department Of Buildings Principal Multiple Dwelling Specialist 94887.00000 1.897740e+05 30750.20 1.537510e+04 15375.100 468.00 2 1.537510e+04 30750.20 2.205242e+05 2.205242e+05 0.00 NULL
2015 Department Of Buildings Procurement Analyst 77132.89000 1.542658e+05 10.47 5.235000e+00 5.235 6.50 2 5.235000e+00 10.47 1.542762e+05 1.542762e+05 0.00 NULL
2015 Department Of Buildings Public Records Aide 38177.80000 1.908890e+05 7215.74 1.443148e+03 5.550 251.50 5 5.550000e+00 27.75 1.981047e+05 1.909168e+05 7187.99 NULL
2015 Department Of Buildings Research Assistant 51279.50000 1.025590e+05 17485.86 8.742930e+03 8742.930 416.00 2 8.742930e+03 17485.86 1.200449e+05 1.200449e+05 0.00 NULL
2015 Department Of Buildings Secretary 46569.22222 8.382460e+05 72948.61 4.052701e+03 293.710 2064.75 18 2.937100e+02 5286.78 9.111946e+05 8.435328e+05 67661.83 NULL
2015 Department Of Buildings Secretary To Commissioner Of Bldgs 91236.00000 9.123600e+04 16.59 1.659000e+01 16.590 0.00 1 1.659000e+01 16.59 9.125259e+04 9.125259e+04 0.00 NULL
2015 Department Of Buildings Secretary To Department 182700.00000 1.827000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.827000e+05 1.827000e+05 0.00 NULL
2015 Department Of Buildings Secretary To The Deputy Commissioner 91350.00000 9.135000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.135000e+04 9.135000e+04 0.00 NULL
2015 Department Of Buildings Senior Estimator 78265.00000 7.826500e+04 342.84 3.428400e+02 342.840 10.00 1 3.428400e+02 342.84 7.860784e+04 7.860784e+04 0.00 NULL
2015 Department Of Buildings Space Analyst 67134.00000 6.713400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.713400e+04 6.713400e+04 0.00 NULL
2015 Department Of Buildings Staff Analyst 58953.00000 1.768590e+05 9798.61 3.266203e+03 0.000 257.00 3 0.000000e+00 0.00 1.866576e+05 1.768590e+05 9798.61 NULL
2015 Department Of Buildings Stock Worker 39485.00000 3.948500e+04 4859.09 4.859090e+03 4859.090 214.00 1 4.859090e+03 4859.09 4.434409e+04 4.434409e+04 0.00 NULL
2015 Department Of Buildings Summer College Intern 2561.64488 5.379454e+04 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 5.379454e+04 5.379454e+04 0.00 NULL
2015 Department Of Buildings Summer Graduate Intern 5228.83050 2.614415e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.614415e+04 2.614415e+04 0.00 NULL
2015 Department Of Business Serv. Adm Manager-Non-Mgrl 61827.32749 3.524158e+06 5488.45 9.628860e+01 0.000 111.25 57 0.000000e+00 0.00 3.529646e+06 3.524158e+06 5488.45 NULL
2015 Department Of Business Serv. Admin Contract Specialist 91831.00000 2.754930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.754930e+05 2.754930e+05 0.00 NULL
2015 Department Of Business Serv. Administrative Architect 111650.00000 1.116500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.116500e+05 1.116500e+05 0.00 NULL
2015 Department Of Business Serv. Administrative Business Promotion Coordinator 85867.34091 3.778163e+06 635.25 1.443750e+01 0.000 0.00 44 0.000000e+00 0.00 3.778798e+06 3.778163e+06 635.25 NULL
2015 Department Of Business Serv. Administrative Manager 89106.33333 2.673190e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.673190e+05 2.673190e+05 0.00 NULL
2015 Department Of Business Serv. Administrative Procurement Analyst 100260.00000 1.002600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.002600e+05 1.002600e+05 0.00 NULL
2015 Department Of Business Serv. Administrative Public Information Specialist 120256.00000 2.405120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.405120e+05 2.405120e+05 0.00 NULL
2015 Department Of Business Serv. Administrative Staff Analyst 89478.17938 1.431651e+06 598.58 3.741125e+01 0.000 6.00 16 0.000000e+00 0.00 1.432249e+06 1.431651e+06 598.58 NULL
2015 Department Of Business Serv. Agency Attorney 67620.00000 1.352400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.352400e+05 1.352400e+05 0.00 NULL
2015 Department Of Business Serv. Agency Chief Contracting Officer 121143.00000 1.211430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.211430e+05 1.211430e+05 0.00 NULL
2015 Department Of Business Serv. Assistant Commissioner 114708.61538 1.491212e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.491212e+06 1.491212e+06 0.00 NULL
2015 Department Of Business Serv. Associate Contract Specialist 55327.78239 4.979500e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.979500e+05 4.979500e+05 0.00 NULL
2015 Department Of Business Serv. Associate Project Manager 60000.00000 6.000000e+04 2118.19 2.118190e+03 2118.190 68.50 1 2.118190e+03 2118.19 6.211819e+04 6.211819e+04 0.00 NULL
2015 Department Of Business Serv. Associate Staff Analyst 75341.50000 3.013660e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.013660e+05 3.013660e+05 0.00 NULL
2015 Department Of Business Serv. Business Promotion Coordinator 63203.52857 1.327274e+06 2602.85 1.239452e+02 0.000 42.50 21 0.000000e+00 0.00 1.329877e+06 1.327274e+06 2602.85 NULL
2015 Department Of Business Serv. Certified It Developer 104842.00000 1.048420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.048420e+05 1.048420e+05 0.00 NULL
2015 Department Of Business Serv. Chief Dockmaster 73135.00000 7.313500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.313500e+04 7.313500e+04 0.00 NULL
2015 Department Of Business Serv. City Custodial Assistant 22657.67500 2.265767e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.265767e+04 2.265767e+04 0.00 NULL
2015 Department Of Business Serv. Clerical Associate 42749.29000 2.992450e+05 57.08 8.154286e+00 0.000 2.00 7 0.000000e+00 0.00 2.993021e+05 2.992450e+05 57.08 NULL
2015 Department Of Business Serv. College Aide 3413.80625 6.827613e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.827613e+03 6.827613e+03 0.00 NULL
2015 Department Of Business Serv. Commissioner Of Business Services 200847.00000 2.008470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.008470e+05 2.008470e+05 0.00 NULL
2015 Department Of Business Serv. Community Assistant 22500.00000 4.500000e+04 22.32 1.116000e+01 11.160 0.00 2 1.116000e+01 22.32 4.502232e+04 4.502232e+04 0.00 NULL
2015 Department Of Business Serv. Community Associate 42328.06656 1.354498e+06 23118.79 7.224622e+02 0.000 619.00 32 0.000000e+00 0.00 1.377617e+06 1.354498e+06 23118.79 NULL
2015 Department Of Business Serv. Community Coordinator 51934.33596 1.765767e+06 251.07 7.384412e+00 0.000 14.00 34 0.000000e+00 0.00 1.766018e+06 1.765767e+06 251.07 NULL
2015 Department Of Business Serv. Computer Operations Manager 90921.00000 9.092100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.092100e+04 9.092100e+04 0.00 NULL
2015 Department Of Business Serv. Computer Service Technician 45097.50000 4.509750e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.509750e+04 4.509750e+04 0.00 NULL
2015 Department Of Business Serv. Computer Specialist 58618.75000 2.344750e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.344750e+05 2.344750e+05 0.00 NULL
2015 Department Of Business Serv. Computer Systems Manager 92892.00000 9.289200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.289200e+04 9.289200e+04 0.00 NULL
2015 Department Of Business Serv. Contract Reviewer 55960.26065 1.846689e+06 103.99 3.151212e+00 0.000 4.00 33 0.000000e+00 0.00 1.846793e+06 1.846689e+06 103.99 NULL
2015 Department Of Business Serv. Contract Specialist 57699.50000 1.153990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.153990e+05 1.153990e+05 0.00 NULL
2015 Department Of Business Serv. Deputy Commissioner 162479.50000 1.299836e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.299836e+06 1.299836e+06 0.00 NULL
2015 Department Of Business Serv. Executive Agency Counsel 104464.66667 3.133940e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.133940e+05 3.133940e+05 0.00 NULL
2015 Department Of Business Serv. Principal Administrative Associate 60363.43750 9.658150e+05 224.81 1.405063e+01 0.000 5.25 16 0.000000e+00 0.00 9.660398e+05 9.658150e+05 224.81 NULL
2015 Department Of Business Serv. Procurement Analyst 52780.00000 5.278000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.278000e+04 5.278000e+04 0.00 NULL
2015 Department Of Business Serv. Secretary 51753.00000 5.175300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.175300e+04 5.175300e+04 0.00 NULL
2015 Department Of Business Serv. Staff Analyst 58145.20000 2.907260e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.907260e+05 2.907260e+05 0.00 NULL
2015 Department Of Business Serv. Summer College Intern 4372.00000 2.623200e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.623200e+04 2.623200e+04 0.00 NULL
2015 Department Of Business Serv. Summer Graduate Intern 3713.33333 2.228000e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.228000e+04 2.228000e+04 0.00 NULL
2015 Department Of City Planning Adm Manager-Non-Mgrl 62465.75000 2.498630e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.498630e+05 2.498630e+05 0.00 NULL
2015 Department Of City Planning Administrative City Planner 105324.87805 4.318320e+06 0.00 0.000000e+00 0.000 0.00 41 0.000000e+00 0.00 4.318320e+06 4.318320e+06 0.00 NULL
2015 Department Of City Planning Administrative Public Information Specialist 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2015 Department Of City Planning Administrative Staff Analyst 97486.00000 6.824020e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.824020e+05 6.824020e+05 0.00 NULL
2015 Department Of City Planning Agency Attorney 76774.83333 4.606490e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.606490e+05 4.606490e+05 0.00 NULL
2015 Department Of City Planning Agency Attorney Intern 60900.00000 6.090000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.090000e+04 6.090000e+04 0.00 NULL
2015 Department Of City Planning Assistant Architect 61718.00000 6.171800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.171800e+04 6.171800e+04 0.00 NULL
2015 Department Of City Planning Assistant Highway Transportation Specialist 52232.83333 3.133970e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.133970e+05 3.133970e+05 0.00 NULL
2015 Department Of City Planning Assistant Urban Designer 61610.00000 3.080500e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.080500e+05 3.080500e+05 0.00 NULL
2015 Department Of City Planning Associate Public Information Specialist 4212.50000 4.212500e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.212500e+03 4.212500e+03 0.00 NULL
2015 Department Of City Planning Associate Staff Analyst 75232.60000 3.761630e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.761630e+05 3.761630e+05 0.00 NULL
2015 Department Of City Planning Associate Urban Designer 77207.88889 6.948710e+05 3498.83 3.887589e+02 0.000 29.50 9 0.000000e+00 0.00 6.983698e+05 6.948710e+05 3498.83 NULL
2015 Department Of City Planning Certified Local Area Network Administrator 93351.00000 9.335100e+04 1652.86 1.652860e+03 1652.860 26.25 1 1.652860e+03 1652.86 9.500386e+04 9.500386e+04 0.00 NULL
2015 Department Of City Planning Chairman 214413.00000 2.144130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144130e+05 2.144130e+05 0.00 NULL
2015 Department Of City Planning City Planner 64214.09072 9.696328e+06 17.91 1.186093e-01 0.000 0.00 151 0.000000e+00 0.00 9.696346e+06 9.696328e+06 17.91 NULL
2015 Department Of City Planning City Planning Technician 39936.64002 5.990496e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 5.990496e+05 5.990496e+05 0.00 NULL
2015 Department Of City Planning Clerical Associate 43209.65457 3.888869e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 3.888869e+05 3.888869e+05 0.00 NULL
2015 Department Of City Planning Commissioner 55293.69231 7.188180e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 7.188180e+05 7.188180e+05 0.00 NULL
2015 Department Of City Planning Commissioner Designated As Vice Chairman 65121.00000 6.512100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.512100e+04 6.512100e+04 0.00 NULL
2015 Department Of City Planning Community Coordinator 47193.40000 1.887736e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.887736e+05 1.887736e+05 0.00 NULL
2015 Department Of City Planning Computer Aide-Non-Spvr 55140.00000 5.514000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.514000e+04 5.514000e+04 0.00 NULL
2015 Department Of City Planning Computer Associate 63235.76250 5.691219e+05 99.27 1.103000e+01 0.000 3.00 9 0.000000e+00 0.00 5.692211e+05 5.691219e+05 99.27 NULL
2015 Department Of City Planning Computer Operations Manager 85495.00000 2.564850e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.564850e+05 2.564850e+05 0.00 NULL
2015 Department Of City Planning Computer Programmer Analyst 65371.96490 1.307439e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.307439e+05 1.307439e+05 0.00 NULL
2015 Department Of City Planning Computer Service Technician 59555.00000 5.955500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.955500e+04 5.955500e+04 0.00 NULL
2015 Department Of City Planning Computer Specialist 72959.22182 1.240307e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.240307e+06 1.240307e+06 0.00 NULL
2015 Department Of City Planning Computer Systems Manager 109847.00000 4.393880e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.393880e+05 4.393880e+05 0.00 NULL
2015 Department Of City Planning Counsel 193465.00000 1.934650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.934650e+05 1.934650e+05 0.00 NULL
2015 Department Of City Planning Deputy Executive Director 183007.00000 1.830070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.830070e+05 1.830070e+05 0.00 NULL
2015 Department Of City Planning Director Of Public Information 119932.00000 1.199320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.199320e+05 1.199320e+05 0.00 NULL
2015 Department Of City Planning Executive Agency Counsel 117737.50000 2.354750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.354750e+05 2.354750e+05 0.00 NULL
2015 Department Of City Planning Executive Assistant For Planning 94673.50000 1.893470e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.893470e+05 1.893470e+05 0.00 NULL
2015 Department Of City Planning Executive Assistant To The Chairman 73203.00000 7.320300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.320300e+04 7.320300e+04 0.00 NULL
2015 Department Of City Planning Executive Director 182337.50000 3.646750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.646750e+05 3.646750e+05 0.00 NULL
2015 Department Of City Planning Graphic Artist 70438.00000 7.043800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.043800e+04 7.043800e+04 0.00 NULL
2015 Department Of City Planning Highway Transportation Specialist 61059.33333 3.663560e+05 7.35 1.225000e+00 0.000 0.00 6 0.000000e+00 0.00 3.663633e+05 3.663560e+05 7.35 NULL
2015 Department Of City Planning Motor Vehicle Supervisor 51119.00000 5.111900e+04 45766.59 4.576659e+04 45766.590 1169.75 1 4.576659e+04 45766.59 9.688559e+04 9.688559e+04 0.00 NULL
2015 Department Of City Planning Principal Administrative Associate 58952.16499 1.002187e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.002187e+06 1.002187e+06 0.00 NULL
2015 Department Of City Planning Secretary To The Chairman 70512.00000 7.051200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.051200e+04 7.051200e+04 0.00 NULL
2015 Department Of City Planning Staff Analyst 55062.11000 5.506211e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.506211e+04 5.506211e+04 0.00 NULL
2015 Department Of City Planning Statistician 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2015 Department Of City Planning Stock Worker 6377.69160 6.377692e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.377692e+03 6.377692e+03 0.00 NULL
2015 Department Of City Planning Supervisor Of Office Machine Operations 46494.00000 4.649400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.649400e+04 4.649400e+04 0.00 NULL
2015 Department Of City Planning Telecommunications Associate 64740.00000 6.474000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.474000e+04 6.474000e+04 0.00 NULL
2015 Department Of Correction *Adm Dir Fleet Maintenance - Nm 129039.00000 1.290390e+05 5005.80 5.005800e+03 5005.800 54.00 1 5.005800e+03 5005.80 1.340448e+05 1.340448e+05 0.00 NULL
2015 Department Of Correction Adm Manager-Non-Mgrl 63888.35484 1.980539e+06 197721.46 6.378112e+03 478.730 4553.00 31 4.787300e+02 14840.63 2.178260e+06 1.995380e+06 182880.83 NULL
2015 Department Of Correction Administrative Architect 119187.00000 3.575610e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.575610e+05 3.575610e+05 0.00 NULL
2015 Department Of Correction Administrative Construction Project Manager 117075.50000 2.341510e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.341510e+05 2.341510e+05 0.00 NULL
2015 Department Of Correction Administrative Director Of Social Services 91616.20000 9.161620e+05 6.98 6.980000e-01 0.000 0.00 10 0.000000e+00 0.00 9.161690e+05 9.161620e+05 6.98 NULL
2015 Department Of Correction Administrative Engineer 124662.66667 3.739880e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.739880e+05 3.739880e+05 0.00 NULL
2015 Department Of Correction Administrative Graphic Artist 80971.00000 8.097100e+04 3.15 3.150000e+00 3.150 0.00 1 3.150000e+00 3.15 8.097415e+04 8.097415e+04 0.00 NULL
2015 Department Of Correction Administrative Inspector 94118.00000 9.411800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.411800e+04 9.411800e+04 0.00 NULL
2015 Department Of Correction Administrative Investigator 157000.00000 3.140000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.140000e+05 3.140000e+05 0.00 NULL
2015 Department Of Correction Administrative Management Auditor 106512.00000 1.065120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.065120e+05 1.065120e+05 0.00 NULL
2015 Department Of Correction Administrative Procurement Analyst 100928.33333 6.055700e+05 11135.63 1.855938e+03 0.000 135.50 6 0.000000e+00 0.00 6.167056e+05 6.055700e+05 11135.63 NULL
2015 Department Of Correction Administrative Project Manager 118638.00000 3.559140e+05 0.66 2.200000e-01 0.000 0.00 3 0.000000e+00 0.00 3.559147e+05 3.559140e+05 0.66 NULL
2015 Department Of Correction Administrative Psychologist 14179.27500 1.417927e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.417927e+04 1.417927e+04 0.00 NULL
2015 Department Of Correction Administrative Public Health Sanitarian 101783.50000 2.035670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.035670e+05 2.035670e+05 0.00 NULL
2015 Department Of Correction Administrative Public Information Specialist 120971.50000 7.258290e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.258290e+05 7.258290e+05 0.00 NULL
2015 Department Of Correction Administrative Staff Analyst 109174.98611 7.860599e+06 295915.47 4.109937e+03 0.000 5184.00 72 0.000000e+00 0.00 8.156514e+06 7.860599e+06 295915.47 NULL
2015 Department Of Correction Administrative Storekeeper 117947.00000 1.179470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.179470e+05 1.179470e+05 0.00 NULL
2015 Department Of Correction Administrative Supervisor Of Building Maintenance 123064.00000 1.230640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.230640e+05 1.230640e+05 0.00 NULL
2015 Department Of Correction Agency Attorney 90876.44737 3.453305e+06 257.18 6.767895e+00 0.000 7.75 38 0.000000e+00 0.00 3.453562e+06 3.453305e+06 257.18 NULL
2015 Department Of Correction Agency Attorney Intern 7135.50000 1.427100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.427100e+04 1.427100e+04 0.00 NULL
2015 Department Of Correction Architect 100908.00000 3.027240e+05 8.99 2.996667e+00 0.000 0.00 3 0.000000e+00 0.00 3.027330e+05 3.027240e+05 8.99 NULL
2015 Department Of Correction Asbestos Handler Supervisor 79318.00000 1.586360e+05 63919.57 3.195978e+04 31959.785 1120.75 2 3.195978e+04 63919.57 2.225556e+05 2.225556e+05 0.00 NULL
2015 Department Of Correction Assistant Architect 71193.00000 7.119300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.119300e+04 7.119300e+04 0.00 NULL
2015 Department Of Correction Assistant Laundry Supervisor 39123.00000 3.912300e+04 698.37 6.983700e+02 698.370 22.50 1 6.983700e+02 698.37 3.982137e+04 3.982137e+04 0.00 NULL
2015 Department Of Correction Associate Contract Specialist 60389.00000 6.038900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.038900e+04 6.038900e+04 0.00 NULL
2015 Department Of Correction Associate Correctional Counselor 55401.90909 1.218842e+06 9359.00 4.254091e+02 0.000 288.00 22 0.000000e+00 0.00 1.228201e+06 1.218842e+06 9359.00 NULL
2015 Department Of Correction Associate Investigator 55543.86679 1.166421e+06 82687.38 3.937494e+03 16.350 1864.50 21 1.635000e+01 343.35 1.249109e+06 1.166765e+06 82344.03 NULL
2015 Department Of Correction Associate Project Manager 81623.00000 4.897380e+05 8.90 1.483333e+00 0.000 0.00 6 0.000000e+00 0.00 4.897469e+05 4.897380e+05 8.90 NULL
2015 Department Of Correction Associate Public Health Sanitarian 68417.20000 3.420860e+05 1584.21 3.168420e+02 0.000 27.50 5 0.000000e+00 0.00 3.436702e+05 3.420860e+05 1584.21 NULL
2015 Department Of Correction Associate Staff Analyst 78645.77273 1.730207e+06 39083.54 1.776525e+03 0.000 807.25 22 0.000000e+00 0.00 1.769291e+06 1.730207e+06 39083.54 NULL
2015 Department Of Correction Attorney At Law 96879.75000 3.875190e+05 18.06 4.515000e+00 0.550 0.00 4 5.500000e-01 2.20 3.875371e+05 3.875212e+05 15.86 NULL
2015 Department Of Correction Auto Body Worker 53899.00000 1.077980e+05 77026.43 3.851321e+04 38513.215 2113.00 2 3.851321e+04 77026.43 1.848244e+05 1.848244e+05 0.00 NULL
2015 Department Of Correction Auto Mechanic NA NA 247738.73 1.769562e+04 16990.875 4522.50 14 1.699088e+04 237872.25 NA NA NA NULL
2015 Department Of Correction Automotive Service Worker 34870.00000 1.394800e+05 8481.98 2.120495e+03 622.825 318.50 4 6.228250e+02 2491.30 1.479620e+05 1.419713e+05 5990.68 NULL
2015 Department Of Correction Baker 36580.80000 1.829040e+05 1490.85 2.981700e+02 249.280 66.00 5 2.492800e+02 1246.40 1.843949e+05 1.841504e+05 244.45 NULL
2015 Department Of Correction Bookkeeper 33825.00000 3.382500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.382500e+04 3.382500e+04 0.00 NULL
2015 Department Of Correction Bricklayer NA NA 290554.61 3.631933e+04 37102.410 4594.25 8 3.631933e+04 290554.61 NA NA NA NULL
2015 Department Of Correction Captain 92822.20343 8.669594e+07 20742701.66 2.220846e+04 18550.090 293697.83 934 1.855009e+04 17325784.06 1.074386e+08 1.040217e+08 3416917.60 NULL
2015 Department Of Correction Carpenter NA NA 380487.93 2.717771e+04 23824.545 6218.50 14 2.382454e+04 333543.63 NA NA NA NULL
2015 Department Of Correction Case Management Nurse 50795.17038 3.047710e+05 0.00 0.000000e+00 0.000 44.00 6 0.000000e+00 0.00 3.047710e+05 3.047710e+05 0.00 NULL
2015 Department Of Correction Cashier 36261.36842 1.377932e+06 134303.28 3.534297e+03 291.150 4411.28 38 2.911500e+02 11063.70 1.512235e+06 1.388996e+06 123239.58 NULL
2015 Department Of Correction Cement Mason NA NA 9305.80 4.652900e+03 4652.900 97.00 2 4.652900e+03 9305.80 NA NA NA NULL
2015 Department Of Correction Certified It Administrator 94020.75000 3.760830e+05 40762.14 1.019053e+04 3686.435 654.00 4 3.686435e+03 14745.74 4.168451e+05 3.908287e+05 26016.40 NULL
2015 Department Of Correction Chaplain 34718.29447 1.215140e+06 16105.10 4.601457e+02 0.000 380.00 35 0.000000e+00 0.00 1.231245e+06 1.215140e+06 16105.10 NULL
2015 Department Of Correction City Elevator Operator 35634.50000 1.425380e+05 9972.29 2.493073e+03 1433.140 310.50 4 1.433140e+03 5732.56 1.525103e+05 1.482706e+05 4239.73 NULL
2015 Department Of Correction City Medical Specialist 131439.55000 1.314395e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.314395e+05 1.314395e+05 0.00 NULL
2015 Department Of Correction Civil Engineer 82573.00000 8.257300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.257300e+04 8.257300e+04 0.00 NULL
2015 Department Of Correction Clerical Associate 41308.32530 3.428591e+06 169000.16 2.036147e+03 68.930 5583.01 83 6.893000e+01 5721.19 3.597591e+06 3.434312e+06 163278.97 NULL
2015 Department Of Correction College Aide 8888.05267 2.666416e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.666416e+04 2.666416e+04 0.00 NULL
2015 Department Of Correction Commissary Manager 36394.87500 2.911590e+05 9979.48 1.247435e+03 174.460 547.25 8 1.744600e+02 1395.68 3.011385e+05 2.925547e+05 8583.80 NULL
2015 Department Of Correction Commissioner 214413.00000 2.144130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144130e+05 2.144130e+05 0.00 NULL
2015 Department Of Correction Community Assistant 31178.77000 6.235754e+04 4.07 2.035000e+00 2.035 0.00 2 2.035000e+00 4.07 6.236161e+04 6.236161e+04 0.00 NULL
2015 Department Of Correction Community Associate 44190.33574 4.419034e+05 13402.87 1.340287e+03 1620.495 516.75 10 1.340287e+03 13402.87 4.553062e+05 4.553062e+05 0.00 NULL
2015 Department Of Correction Community Coordinator 32463.26769 4.220225e+05 26349.58 2.026891e+03 0.000 602.25 13 0.000000e+00 0.00 4.483721e+05 4.220225e+05 26349.58 NULL
2015 Department Of Correction Computer Aide-Non-Spvr 45900.25000 1.836010e+05 7652.60 1.913150e+03 1724.300 289.50 4 1.724300e+03 6897.20 1.912536e+05 1.904982e+05 755.40 NULL
2015 Department Of Correction Computer Associate 64537.50000 1.032600e+06 49433.57 3.089598e+03 1318.585 1268.50 16 1.318585e+03 21097.36 1.082034e+06 1.053697e+06 28336.21 NULL
2015 Department Of Correction Computer Operations Manager 123382.20000 6.169110e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.169110e+05 6.169110e+05 0.00 NULL
2015 Department Of Correction Computer Service Technician 46785.00000 4.678500e+04 332.90 3.329000e+02 332.900 13.00 1 3.329000e+02 332.90 4.711790e+04 4.711790e+04 0.00 NULL
2015 Department Of Correction Computer Specialist 92527.68182 2.035609e+06 42419.01 1.928137e+03 0.940 691.75 22 9.400000e-01 20.68 2.078028e+06 2.035630e+06 42398.33 NULL
2015 Department Of Correction Computer Systems Manager 130149.40000 1.301494e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.301494e+06 1.301494e+06 0.00 NULL
2015 Department Of Correction Confidential Agency Investigator 143645.00000 2.872900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.872900e+05 2.872900e+05 0.00 NULL
2015 Department Of Correction Construction Project Manager 90413.00000 2.712390e+05 6.52 2.173333e+00 0.000 0.00 3 0.000000e+00 0.00 2.712455e+05 2.712390e+05 6.52 NULL
2015 Department Of Correction Contract Specialist 69447.00000 6.944700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.944700e+04 6.944700e+04 0.00 NULL
2015 Department Of Correction Cook 36522.96257 6.829794e+06 465790.97 2.490861e+03 679.460 15822.00 187 6.794600e+02 127059.02 7.295585e+06 6.956853e+06 338731.95 NULL
2015 Department Of Correction Correction Administrative Aide 21503.41490 3.870615e+05 365.06 2.028111e+01 0.100 12.50 18 1.000000e-01 1.80 3.874265e+05 3.870633e+05 363.26 NULL
2015 Department Of Correction Correction Officer 66209.47122 5.624495e+08 148773745.86 1.751310e+04 14533.270 2968757.20 8495 1.453327e+04 123460128.65 7.112232e+08 6.859096e+08 25313617.21 NULL
2015 Department Of Correction Correctional Standards Review Specialist 63112.18750 1.009795e+06 128595.10 8.037194e+03 4.860 2917.75 16 4.860000e+00 77.76 1.138390e+06 1.009873e+06 128517.34 NULL
2015 Department Of Correction Counselor 50913.50000 2.036540e+05 1.44 3.600000e-01 0.000 0.00 4 0.000000e+00 0.00 2.036554e+05 2.036540e+05 1.44 NULL
2015 Department Of Correction Deputy Commissioner 177500.00000 3.550000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.550000e+05 3.550000e+05 0.00 NULL
2015 Department Of Correction Dietary Aide 33662.90000 3.366290e+05 40589.46 4.058946e+03 3020.860 1686.50 10 3.020860e+03 30208.60 3.772185e+05 3.668376e+05 10380.86 NULL
2015 Department Of Correction Dietitian 48867.41667 5.864090e+05 202.25 1.685417e+01 0.000 6.75 12 0.000000e+00 0.00 5.866112e+05 5.864090e+05 202.25 NULL
2015 Department Of Correction Electrical Engineer 82255.00000 8.225500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.225500e+04 8.225500e+04 0.00 NULL
2015 Department Of Correction Electrician NA NA 1591059.92 3.977650e+04 37751.440 22342.75 40 3.775144e+04 1510057.60 NA NA NA NULL
2015 Department Of Correction Electrician’s Helper NA NA 356278.10 1.370300e+04 9055.945 8044.25 26 9.055945e+03 235454.57 NA NA NA NULL
2015 Department Of Correction Executive Agency Counsel 134914.00000 1.214226e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.214226e+06 1.214226e+06 0.00 NULL
2015 Department Of Correction Executive Assistant To The Commissioner 202000.00000 4.040000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.040000e+05 4.040000e+05 0.00 NULL
2015 Department Of Correction Executive Director Of Food Services 130311.00000 1.303110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.303110e+05 1.303110e+05 0.00 NULL
2015 Department Of Correction Executive Program Specialist 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2015 Department Of Correction Exterminator 34700.22222 3.123020e+05 22657.91 2.517546e+03 128.780 925.25 9 1.287800e+02 1159.02 3.349599e+05 3.134610e+05 21498.89 NULL
2015 Department Of Correction Food Service Administrator 75327.80000 3.766390e+05 66219.32 1.324386e+04 7397.730 1185.00 5 7.397730e+03 36988.65 4.428583e+05 4.136277e+05 29230.67 NULL
2015 Department Of Correction Food Service Manager 54891.58333 6.586990e+05 49649.96 4.137497e+03 4084.350 1237.00 12 4.084350e+03 49012.20 7.083490e+05 7.077112e+05 637.76 NULL
2015 Department Of Correction Fraud Investigator 58959.00000 1.179180e+05 22.38 1.119000e+01 11.190 0.50 2 1.119000e+01 22.38 1.179404e+05 1.179404e+05 0.00 NULL
2015 Department Of Correction Graphic Artist 77944.00000 7.794400e+04 3035.24 3.035240e+03 3035.240 49.50 1 3.035240e+03 3035.24 8.097924e+04 8.097924e+04 0.00 NULL
2015 Department Of Correction Head Nurse 83012.00000 8.301200e+04 2326.16 2.326160e+03 2326.160 0.00 1 2.326160e+03 2326.16 8.533816e+04 8.533816e+04 0.00 NULL
2015 Department Of Correction Health Services Manager 97302.00000 9.730200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.730200e+04 9.730200e+04 0.00 NULL
2015 Department Of Correction High Pressure Plant Tender NA NA 337592.53 4.219907e+04 29037.945 7203.50 8 2.903794e+04 232303.56 NA NA NA NULL
2015 Department Of Correction Institutional Aide 35279.80000 7.055960e+05 51236.18 2.561809e+03 858.820 1955.50 20 8.588200e+02 17176.40 7.568322e+05 7.227724e+05 34059.78 NULL
2015 Department Of Correction Investigator 52553.60976 2.154698e+06 211648.20 5.162151e+03 3452.830 5913.00 41 3.452830e+03 141566.03 2.366346e+06 2.296264e+06 70082.17 NULL
2015 Department Of Correction Legal Coordinator 56218.25806 1.742766e+06 380319.27 1.226836e+04 9035.450 8822.00 31 9.035450e+03 280098.95 2.123085e+06 2.022865e+06 100220.32 NULL
2015 Department Of Correction Licensed Barber 34758.20000 3.475820e+05 17210.05 1.721005e+03 31.815 701.75 10 3.181500e+01 318.15 3.647920e+05 3.479002e+05 16891.90 NULL
2015 Department Of Correction Locksmith NA NA 144440.69 9.629379e+03 8422.610 3989.25 15 8.422610e+03 126339.15 NA NA NA NULL
2015 Department Of Correction Machinist NA NA 123694.89 3.092372e+04 18172.295 2375.25 4 1.817229e+04 72689.18 NA NA NA NULL
2015 Department Of Correction Maintenance Worker NA NA 466936.35 1.015079e+04 6719.680 12440.75 46 6.719680e+03 309105.28 NA NA NA NULL
2015 Department Of Correction Management Auditor 72513.00000 2.900520e+05 18161.52 4.540380e+03 0.000 335.25 4 0.000000e+00 0.00 3.082135e+05 2.900520e+05 18161.52 NULL
2015 Department Of Correction Marine Engineer 71236.27519 2.849451e+05 210035.00 5.250875e+04 55795.180 3707.00 4 5.250875e+04 210035.00 4.949801e+05 4.949801e+05 0.00 NULL
2015 Department Of Correction Marine Oiler 35667.52583 1.070026e+05 13260.35 4.420117e+03 4844.690 294.50 3 4.420117e+03 13260.35 1.202629e+05 1.202629e+05 0.00 NULL
2015 Department Of Correction Masons Helper NA NA 27976.41 2.797641e+04 27976.410 552.00 1 2.797641e+04 27976.41 NA NA NA NULL
2015 Department Of Correction Mate 57875.00000 5.787500e+04 152.64 1.526400e+02 152.640 3.00 1 1.526400e+02 152.64 5.802764e+04 5.802764e+04 0.00 NULL
2015 Department Of Correction Medical Officer 108845.05722 9.796055e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.796055e+05 9.796055e+05 0.00 NULL
2015 Department Of Correction Motor Vehicle Operator 43690.24074 2.359273e+06 409241.70 7.578550e+03 4616.870 12166.50 54 4.616870e+03 249310.98 2.768515e+06 2.608584e+06 159930.72 NULL
2015 Department Of Correction Motor Vehicle Supervisor 51265.00000 1.025300e+05 18303.26 9.151630e+03 9151.630 447.50 2 9.151630e+03 18303.26 1.208333e+05 1.208333e+05 0.00 NULL
2015 Department Of Correction Office Machine Aide 23079.41398 1.153971e+05 185.49 3.709800e+01 0.000 8.00 5 0.000000e+00 0.00 1.155826e+05 1.153971e+05 185.49 NULL
2015 Department Of Correction Oiler NA NA 1231059.08 2.564706e+04 24293.340 17935.25 48 2.429334e+04 1166080.32 NA NA NA NULL
2015 Department Of Correction Paralegal Aide 12596.83750 5.038735e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.038735e+04 5.038735e+04 0.00 NULL
2015 Department Of Correction Plumber NA NA 1273445.82 3.537350e+04 30564.830 6621.00 36 3.056483e+04 1100333.88 NA NA NA NULL
2015 Department Of Correction Plumber’s Helper NA NA 739240.32 2.549105e+04 23503.200 4551.50 29 2.350320e+04 681592.80 NA NA NA NULL
2015 Department Of Correction Principal Administrative Associate 53454.75588 5.185111e+06 224567.50 2.315129e+03 0.630 6489.00 97 6.300000e-01 61.11 5.409679e+06 5.185172e+06 224506.39 NULL
2015 Department Of Correction Printing Press Operator NA NA 19958.40 1.995840e+04 19958.400 399.00 1 1.995840e+04 19958.40 NA NA NA NULL
2015 Department Of Correction Procurement Analyst 57497.09474 1.092445e+06 1708.44 8.991789e+01 0.000 72.00 19 0.000000e+00 0.00 1.094153e+06 1.092445e+06 1708.44 NULL
2015 Department Of Correction Program Specialist Correction 60664.71353 1.025234e+07 522929.75 3.094259e+03 45.080 12417.25 169 4.508000e+01 7618.52 1.077527e+07 1.025996e+07 515311.23 NULL
2015 Department Of Correction Psychologist 67107.94390 4.026477e+05 6885.35 1.147558e+03 302.120 228.75 6 3.021200e+02 1812.72 4.095330e+05 4.044604e+05 5072.63 NULL
2015 Department Of Correction Public Health Sanitarian 53838.12500 4.307050e+05 4897.30 6.121625e+02 81.185 97.50 8 8.118500e+01 649.48 4.356023e+05 4.313545e+05 4247.82 NULL
2015 Department Of Correction Public Records Aide 34821.00000 6.964200e+04 449.72 2.248600e+02 224.860 20.00 2 2.248600e+02 449.72 7.009172e+04 7.009172e+04 0.00 NULL
2015 Department Of Correction Quality Assurance Specialist 57712.50000 1.154250e+05 3058.12 1.529060e+03 1529.060 57.25 2 1.529060e+03 3058.12 1.184831e+05 1.184831e+05 0.00 NULL
2015 Department Of Correction Radio Repair Mechanic NA NA 9317.25 4.658625e+03 4658.625 147.50 2 4.658625e+03 9317.25 NA NA NA NULL
2015 Department Of Correction Rubber Tire Repairer NA NA 13293.00 1.329300e+04 13293.000 366.00 1 1.329300e+04 13293.00 NA NA NA NULL
2015 Department Of Correction Secretary 44223.75000 1.768950e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.768950e+05 1.768950e+05 0.00 NULL
2015 Department Of Correction Senior Baker 42273.50000 1.690940e+05 1570.10 3.925250e+02 332.810 54.00 4 3.328100e+02 1331.24 1.706641e+05 1.704252e+05 238.86 NULL
2015 Department Of Correction Senior Institutional Trades Instructor 38580.33333 1.157410e+05 15391.17 5.130390e+03 0.000 602.50 3 0.000000e+00 0.00 1.311322e+05 1.157410e+05 15391.17 NULL
2015 Department Of Correction Senior Stationary Engineer NA NA 471580.40 7.859673e+04 81259.250 5796.75 6 7.859673e+04 471580.40 NA NA NA NULL
2015 Department Of Correction Sheet Metal Worker NA NA 79243.08 1.981077e+04 19232.220 899.75 4 1.923222e+04 76928.88 NA NA NA NULL
2015 Department Of Correction Social Worker 62125.00000 6.212500e+04 4414.39 4.414390e+03 4414.390 124.75 1 4.414390e+03 4414.39 6.653939e+04 6.653939e+04 0.00 NULL
2015 Department Of Correction Staff Analyst 66983.66667 2.009510e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.009510e+05 2.009510e+05 0.00 NULL
2015 Department Of Correction Staff Nurse 70842.94320 3.542147e+05 18710.98 3.742196e+03 0.000 378.00 5 0.000000e+00 0.00 3.729257e+05 3.542147e+05 18710.98 NULL
2015 Department Of Correction Stationary Engineer NA NA 1076059.73 3.586866e+04 39128.310 14753.00 30 3.586866e+04 1076059.73 NA NA NA NULL
2015 Department Of Correction Steam Fitter NA NA 475213.20 4.752132e+04 46617.780 5127.50 10 4.661778e+04 466177.80 NA NA NA NULL
2015 Department Of Correction Steam Fitter’s Helper NA NA 120699.52 2.413990e+04 21056.500 1641.50 5 2.105650e+04 105282.50 NA NA NA NULL
2015 Department Of Correction Stock Worker 40175.50000 8.035100e+04 173.44 8.672000e+01 86.720 7.50 2 8.672000e+01 173.44 8.052444e+04 8.052444e+04 0.00 NULL
2015 Department Of Correction Summer College Intern 2229.23182 4.012617e+04 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 4.012617e+04 4.012617e+04 0.00 NULL
2015 Department Of Correction Summer Graduate Intern 2835.66930 1.531261e+05 0.00 0.000000e+00 0.000 0.00 54 0.000000e+00 0.00 1.531261e+05 1.531261e+05 0.00 NULL
2015 Department Of Correction Superintendent Of Laundries 54439.00000 5.443900e+04 9548.66 9.548660e+03 9548.660 236.00 1 9.548660e+03 9548.66 6.398766e+04 6.398766e+04 0.00 NULL
2015 Department Of Correction Supervising Computer Service Technician 79123.66667 2.373710e+05 4640.89 1.546963e+03 1575.300 139.50 3 1.546963e+03 4640.89 2.420119e+05 2.420119e+05 0.00 NULL
2015 Department Of Correction Supervising Housekeeper 45784.00000 4.578400e+04 5.86 5.860000e+00 5.860 0.00 1 5.860000e+00 5.86 4.578986e+04 4.578986e+04 0.00 NULL
2015 Department Of Correction Supervisor 40956.50000 8.191300e+04 6110.85 3.055425e+03 3055.425 238.00 2 3.055425e+03 6110.85 8.802385e+04 8.802385e+04 0.00 NULL
2015 Department Of Correction Supervisor Electrician NA NA 75762.87 7.576287e+04 75762.870 965.50 1 7.576287e+04 75762.87 NA NA NA NULL
2015 Department Of Correction Supervisor Of Electrical Installations & Maintenance 65698.00000 6.569800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.569800e+04 6.569800e+04 0.00 NULL
2015 Department Of Correction Supervisor Of Mechanical Installations & Maintenance 78813.00000 7.881300e+04 16.36 1.636000e+01 16.360 0.00 1 1.636000e+01 16.36 7.882936e+04 7.882936e+04 0.00 NULL
2015 Department Of Correction Supervisor Of Mechanics NA NA 782240.57 4.889004e+04 51760.855 10747.00 16 4.889004e+04 782240.57 NA NA NA NULL
2015 Department Of Correction Supervisor Of Stock Workers 45329.66667 5.439560e+05 9588.81 7.990675e+02 45.425 429.50 12 4.542500e+01 545.10 5.535448e+05 5.445011e+05 9043.71 NULL
2015 Department Of Correction Supervisor Plumber NA NA 55831.22 5.583122e+04 55831.220 241.00 1 5.583122e+04 55831.22 NA NA NA NULL
2015 Department Of Correction Supervisor Steamfitter NA NA 45562.00 4.556200e+04 45562.000 416.00 1 4.556200e+04 45562.00 NA NA NA NULL
2015 Department Of Correction Telecommunications Associate 73955.00000 2.218650e+05 18666.06 6.222020e+03 493.650 408.00 3 4.936500e+02 1480.95 2.405311e+05 2.233460e+05 17185.11 NULL
2015 Department Of Correction Telephone Service Technician 61818.50000 1.236370e+05 61025.29 3.051265e+04 30512.645 1340.50 2 3.051265e+04 61025.29 1.846623e+05 1.846623e+05 0.00 NULL
2015 Department Of Correction Tractor Operator NA NA 119234.69 5.961735e+04 59617.345 1073.50 2 5.961735e+04 119234.69 NA NA NA NULL
2015 Department Of Correction Warden 176895.41176 6.014444e+06 129.20 3.800000e+00 0.000 0.00 34 0.000000e+00 0.00 6.014573e+06 6.014444e+06 129.20 NULL
2015 Department Of Correction Warden-Assistant Deputy Warden 108760.60577 1.131110e+07 3314430.66 3.186953e+04 28551.790 39708.50 104 2.855179e+04 2969386.16 1.462553e+07 1.428049e+07 345044.50 NULL
2015 Department Of Correction Warden-Deputy Warden 125464.45455 5.520436e+06 280127.48 6.366534e+03 239.235 2932.50 44 2.392350e+02 10526.34 5.800563e+06 5.530962e+06 269601.14 NULL
2015 Department Of Correction Warden-Deputy Warden In Comm 159351.00000 1.434159e+06 3530.55 3.922833e+02 0.000 0.00 9 0.000000e+00 0.00 1.437690e+06 1.434159e+06 3530.55 NULL
2015 Department Of Correction Welder NA NA 369185.48 2.637039e+04 27076.210 5074.00 14 2.637039e+04 369185.48 NA NA NA NULL
2015 Department Of Correction Worker’s Compensation Benefits Examiner 45250.00000 4.525000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.525000e+04 4.525000e+04 0.00 NULL
2015 Department Of Education Admin *Administrative Attorney 201337.00000 2.013370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.013370e+05 2.013370e+05 0.00 NULL
2015 Department Of Education Admin *Certified Applications Developer 103695.50000 2.073910e+05 51.02 2.551000e+01 25.510 0.00 2 2.551000e+01 51.02 2.074420e+05 2.074420e+05 0.00 NULL
2015 Department Of Education Admin *Certified Database Administrator 99608.00000 9.960800e+04 7385.82 7.385820e+03 7385.820 0.00 1 7.385820e+03 7385.82 1.069938e+05 1.069938e+05 0.00 NULL
2015 Department Of Education Admin *Certified Wide Area Network Administrator 105647.50000 6.338850e+05 55.76 9.293333e+00 0.000 0.00 6 0.000000e+00 0.00 6.339408e+05 6.338850e+05 55.76 NULL
2015 Department Of Education Admin *School Lunch Helper 20098.66667 6.029600e+04 4024.64 1.341547e+03 78.140 0.00 3 7.814000e+01 234.42 6.432064e+04 6.053042e+04 3790.22 NULL
2015 Department Of Education Admin ?Dir Of Operations 147002.00000 2.940040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.940040e+05 2.940040e+05 0.00 NULL
2015 Department Of Education Admin ?Interpreter/Translator Doe 54658.50000 2.186340e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.186340e+05 2.186340e+05 0.00 NULL
2015 Department Of Education Admin ?Physical Therapist 16817.26309 2.690762e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.690762e+05 2.690762e+05 0.00 NULL
2015 Department Of Education Admin ?Secretary To Dept Chancellor 74941.00000 7.494100e+04 0.89 8.900000e-01 0.890 0.00 1 8.900000e-01 0.89 7.494189e+04 7.494189e+04 0.00 NULL
2015 Department Of Education Admin ?Telecommunications Specialist 71169.00000 7.116900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.116900e+04 7.116900e+04 0.00 NULL
2015 Department Of Education Admin Accountant 60881.75758 2.009098e+06 40886.98 1.238999e+03 2.590 1141.25 33 2.590000e+00 85.47 2.049985e+06 2.009183e+06 40801.51 NULL
2015 Department Of Education Admin Adm Manager-Non-Mgrl 73121.00000 4.387260e+05 115.25 1.920833e+01 2.705 2.50 6 2.705000e+00 16.23 4.388412e+05 4.387422e+05 99.02 NULL
2015 Department Of Education Admin Administration Public Record Officer 122884.00000 1.228840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.228840e+05 1.228840e+05 0.00 NULL
2015 Department Of Education Admin Administrative Accountant 102078.75000 1.224945e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.224945e+06 1.224945e+06 0.00 NULL
2015 Department Of Education Admin Administrative Assistant To Community Education Council 31803.50000 6.360700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.360700e+04 6.360700e+04 0.00 NULL
2015 Department Of Education Admin Administrative Education Analyst 102914.78986 4.260672e+07 27389.89 6.615915e+01 0.000 467.75 414 0.000000e+00 0.00 4.263411e+07 4.260672e+07 27389.89 NULL
2015 Department Of Education Admin Administrative Education Officer 102983.74822 4.335616e+07 106214.96 2.522921e+02 0.000 1809.25 421 0.000000e+00 0.00 4.346237e+07 4.335616e+07 106214.96 NULL
2015 Department Of Education Admin Administrative Investigator 95122.80000 4.756140e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.756140e+05 4.756140e+05 0.00 NULL
2015 Department Of Education Admin Administrative Management Auditor 95983.63636 1.055820e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.055820e+06 1.055820e+06 0.00 NULL
2015 Department Of Education Admin Administrative Manager 97867.00000 1.174404e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.174404e+06 1.174404e+06 0.00 NULL
2015 Department Of Education Admin Administrative Procurement Analyst 87599.80000 2.627994e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 2.627994e+06 2.627994e+06 0.00 NULL
2015 Department Of Education Admin Administrative Public Health Nurse 120271.50000 2.405430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.405430e+05 2.405430e+05 0.00 NULL
2015 Department Of Education Admin Administrative Public Information Specialist 89630.81250 1.434093e+06 8.73 5.456250e-01 0.000 0.00 16 0.000000e+00 0.00 1.434102e+06 1.434093e+06 8.73 NULL
2015 Department Of Education Admin Administrative Quality Assurance Specialist 90896.60000 1.817932e+06 22.37 1.118500e+00 0.000 0.00 20 0.000000e+00 0.00 1.817954e+06 1.817932e+06 22.37 NULL
2015 Department Of Education Admin Administrative Retirement Benefits Specialist 96445.00000 9.644500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.644500e+04 9.644500e+04 0.00 NULL
2015 Department Of Education Admin Administrative School Food Service Manager 98402.82353 1.672848e+06 17.51 1.030000e+00 0.000 0.00 17 0.000000e+00 0.00 1.672866e+06 1.672848e+06 17.51 NULL
2015 Department Of Education Admin Administrative Space Analyst 108957.66667 9.806190e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.806190e+05 9.806190e+05 0.00 NULL
2015 Department Of Education Admin Administrative Staff Analyst 97267.99293 2.752684e+07 9721.53 3.435170e+01 0.000 186.50 283 0.000000e+00 0.00 2.753656e+07 2.752684e+07 9721.53 NULL
2015 Department Of Education Admin Administrative Storekeeper 81863.00000 1.637260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.637260e+05 1.637260e+05 0.00 NULL
2015 Department Of Education Admin Agency Attorney 88389.16129 1.370032e+07 11702.13 7.549761e+01 0.000 360.25 155 0.000000e+00 0.00 1.371202e+07 1.370032e+07 11702.13 NULL
2015 Department Of Education Admin Architect 87270.20000 4.363510e+05 12302.93 2.460586e+03 0.000 174.00 5 0.000000e+00 0.00 4.486539e+05 4.363510e+05 12302.93 NULL
2015 Department Of Education Admin Area Manager Of School Maintenance 119217.88462 3.099665e+06 816.59 3.140731e+01 0.000 8.00 26 0.000000e+00 0.00 3.100482e+06 3.099665e+06 816.59 NULL
2015 Department Of Education Admin Asbestos Handler 75648.55556 6.808370e+05 198591.38 2.206571e+04 24367.070 4310.50 9 2.206571e+04 198591.38 8.794284e+05 8.794284e+05 0.00 NULL
2015 Department Of Education Admin Asbestos Hazard Investigator 61582.00000 6.158200e+04 1349.95 1.349950e+03 1349.950 70.00 1 1.349950e+03 1349.95 6.293195e+04 6.293195e+04 0.00 NULL
2015 Department Of Education Admin Assistant Accountant 49355.00000 9.871000e+04 13.22 6.610000e+00 6.610 0.00 2 6.610000e+00 13.22 9.872322e+04 9.872322e+04 0.00 NULL
2015 Department Of Education Admin Assistant Architect 75275.00000 7.527500e+04 32.60 3.260000e+01 32.600 0.00 1 3.260000e+01 32.60 7.530760e+04 7.530760e+04 0.00 NULL
2015 Department Of Education Admin Assistant Civil Engineer 66863.00000 1.337260e+05 16980.89 8.490445e+03 8490.445 300.50 2 8.490445e+03 16980.89 1.507069e+05 1.507069e+05 0.00 NULL
2015 Department Of Education Admin Assistant Mechanical Engineer 57877.00000 1.157540e+05 3405.06 1.702530e+03 1702.530 213.00 2 1.702530e+03 3405.06 1.191591e+05 1.191591e+05 0.00 NULL
2015 Department Of Education Admin Assistant Retirement Benefits Examiner 44985.42857 3.148980e+05 4717.66 6.739514e+02 4.880 177.25 7 4.880000e+00 34.16 3.196157e+05 3.149322e+05 4683.50 NULL
2015 Department Of Education Admin Associate Education Analyst 81549.62687 5.463825e+06 49408.15 7.374351e+02 0.000 938.25 67 0.000000e+00 0.00 5.513233e+06 5.463825e+06 49408.15 NULL
2015 Department Of Education Admin Associate Education Officer 79031.73077 2.054825e+06 152.56 5.867692e+00 0.000 0.00 26 0.000000e+00 0.00 2.054978e+06 2.054825e+06 152.56 NULL
2015 Department Of Education Admin Associate Fingerprint Technician 39872.85714 2.791100e+05 22771.81 3.253116e+03 766.120 827.00 7 7.661200e+02 5362.84 3.018818e+05 2.844728e+05 17408.97 NULL
2015 Department Of Education Admin Associate Human Rights Specialist 88017.00000 8.801700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.801700e+04 8.801700e+04 0.00 NULL
2015 Department Of Education Admin Associate Investigator 59943.66667 1.798310e+05 3.17 1.056667e+00 0.000 0.00 3 0.000000e+00 0.00 1.798342e+05 1.798310e+05 3.17 NULL
2015 Department Of Education Admin Associate Project Manager 78174.00000 1.563480e+05 7222.77 3.611385e+03 3611.385 131.75 2 3.611385e+03 7222.77 1.635708e+05 1.635708e+05 0.00 NULL
2015 Department Of Education Admin Associate Public Information Specialist 58347.45455 6.418220e+05 8167.70 7.425182e+02 0.000 262.00 11 0.000000e+00 0.00 6.499897e+05 6.418220e+05 8167.70 NULL
2015 Department Of Education Admin Associate Quality Assurance Specialist 61943.48077 3.221061e+06 211338.27 4.064198e+03 1462.035 5105.25 52 1.462035e+03 76025.82 3.432399e+06 3.297087e+06 135312.45 NULL
2015 Department Of Education Admin Associate Real Property Manager 59482.00000 5.948200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.948200e+04 5.948200e+04 0.00 NULL
2015 Department Of Education Admin Associate Retirement Benefits Examiner 52348.06977 2.250967e+06 136192.55 3.167269e+03 959.230 4821.75 43 9.592300e+02 41246.89 2.387160e+06 2.292214e+06 94945.66 NULL
2015 Department Of Education Admin Associate School Food Service Manager 65998.21875 4.223886e+06 142410.10 2.225158e+03 1257.540 3682.00 64 1.257540e+03 80482.56 4.366296e+06 4.304369e+06 61927.54 NULL
2015 Department Of Education Admin Associate Staff Analyst 73877.14286 5.171400e+05 1339.73 1.913900e+02 0.000 48.50 7 0.000000e+00 0.00 5.184797e+05 5.171400e+05 1339.73 NULL
2015 Department Of Education Admin Attorney At Law 97638.74700 4.881937e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.881937e+05 4.881937e+05 0.00 NULL
2015 Department Of Education Admin Bookkeeper 43775.31325 3.633351e+06 38356.75 4.621295e+02 0.000 1340.25 83 0.000000e+00 0.00 3.671708e+06 3.633351e+06 38356.75 NULL
2015 Department Of Education Admin Bricklayer NA NA 11785.86 3.928620e+03 3455.660 205.00 3 3.455660e+03 10366.98 NA NA NA NULL
2015 Department Of Education Admin Carpenter NA NA 351731.30 5.583037e+03 4202.280 5975.25 63 4.202280e+03 264743.64 NA NA NA NULL
2015 Department Of Education Admin Certified It Administrator 99131.85714 4.857461e+06 182393.57 3.722318e+03 60.020 2315.50 49 6.002000e+01 2940.98 5.039855e+06 4.860402e+06 179452.59 NULL
2015 Department Of Education Admin Certified It Developer 97487.12500 1.559794e+06 38616.73 2.413546e+03 0.065 631.00 16 6.500000e-02 1.04 1.598411e+06 1.559795e+06 38615.69 NULL
2015 Department Of Education Admin Chauffeur-Attendant 38573.00000 3.857300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.857300e+04 3.857300e+04 0.00 NULL
2015 Department Of Education Admin Chief Administrator Of Impartial Hearing Office 134984.00000 1.349840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.349840e+05 1.349840e+05 0.00 NULL
2015 Department Of Education Admin Chief Information Technology Officer 183008.00000 1.830080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.830080e+05 1.830080e+05 0.00 NULL
2015 Department Of Education Admin Chief School Business Executive 200785.00000 2.007850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.007850e+05 2.007850e+05 0.00 NULL
2015 Department Of Education Admin City Dentist 17151.84000 1.715184e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.715184e+04 1.715184e+04 0.00 NULL
2015 Department Of Education Admin City Elevator Operator 33511.08333 4.021330e+05 54.32 4.526667e+00 0.000 0.00 12 0.000000e+00 0.00 4.021873e+05 4.021330e+05 54.32 NULL
2015 Department Of Education Admin City Laborer NA NA 27468.99 1.962071e+03 1270.725 620.75 14 1.270725e+03 17790.15 NA NA NA NULL
2015 Department Of Education Admin City Medical Specialist 68819.08523 1.032286e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.032286e+06 1.032286e+06 0.00 NULL
2015 Department Of Education Admin City Research Scientist 108269.00000 1.082690e+05 2.55 2.550000e+00 2.550 0.00 1 2.550000e+00 2.55 1.082716e+05 1.082716e+05 0.00 NULL
2015 Department Of Education Admin Civil Engineer 90570.75000 3.622830e+05 30579.79 7.644948e+03 3482.855 504.75 4 3.482855e+03 13931.42 3.928628e+05 3.762144e+05 16648.37 NULL
2015 Department Of Education Admin Clerical Aide 30599.23794 9.485764e+05 3290.37 1.061410e+02 1.410 153.50 31 1.410000e+00 43.71 9.518667e+05 9.486201e+05 3246.66 NULL
2015 Department Of Education Admin Clerical Associate 42050.91807 1.955368e+07 295335.65 6.351304e+02 0.960 9588.75 465 9.600000e-01 446.40 1.984901e+07 1.955412e+07 294889.25 NULL
2015 Department Of Education Admin Community Assistant 32266.14321 1.306779e+07 210276.60 5.192015e+02 68.860 7797.00 405 6.886000e+01 27888.30 1.327806e+07 1.309568e+07 182388.30 NULL
2015 Department Of Education Admin Community Associate 41794.65261 1.031074e+08 1930107.04 7.823701e+02 199.850 56477.75 2467 1.998500e+02 493029.95 1.050375e+08 1.036004e+08 1437077.09 NULL
2015 Department Of Education Admin Community Coordinator 57569.45196 3.235403e+07 627394.34 1.116360e+03 188.400 13309.50 562 1.884000e+02 105880.80 3.298143e+07 3.245991e+07 521513.54 NULL
2015 Department Of Education Admin Computer Aide-Non-Spvr 45241.16709 6.333763e+05 31179.95 2.227139e+03 91.010 742.00 14 9.101000e+01 1274.14 6.645563e+05 6.346505e+05 29905.81 NULL
2015 Department Of Education Admin Computer Associate 66115.96889 6.677713e+06 57041.95 5.647718e+02 9.110 1432.25 101 9.110000e+00 920.11 6.734755e+06 6.678633e+06 56121.84 NULL
2015 Department Of Education Admin Computer Programmer Analyst 54160.53846 7.040870e+05 5448.61 4.191238e+02 0.000 141.00 13 0.000000e+00 0.00 7.095356e+05 7.040870e+05 5448.61 NULL
2015 Department Of Education Admin Computer Service Technician 45606.13390 4.332583e+06 54725.75 5.760605e+02 7.780 1328.00 95 7.780000e+00 739.10 4.387308e+06 4.333322e+06 53986.65 NULL
2015 Department Of Education Admin Computer Specialist 97619.36782 1.698577e+07 228479.70 1.313102e+03 0.000 3016.00 174 0.000000e+00 0.00 1.721425e+07 1.698577e+07 228479.70 NULL
2015 Department Of Education Admin Computer Systems Manager 124757.35443 9.855831e+06 8010.73 1.014016e+02 0.000 47.50 79 0.000000e+00 0.00 9.863842e+06 9.855831e+06 8010.73 NULL
2015 Department Of Education Admin Confidential Agency Investigator 87409.50000 1.748190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.748190e+05 1.748190e+05 0.00 NULL
2015 Department Of Education Admin Confidential Investigator 69426.13684 6.595483e+06 299.35 3.151053e+00 0.000 3.00 95 0.000000e+00 0.00 6.595782e+06 6.595483e+06 299.35 NULL
2015 Department Of Education Admin Construction Laborer NA NA 68487.15 2.977702e+03 2391.020 1281.25 23 2.391020e+03 54993.46 NA NA NA NULL
2015 Department Of Education Admin Construction Project Manager 72909.08000 1.822727e+06 183033.52 7.321341e+03 320.290 3347.00 25 3.202900e+02 8007.25 2.005761e+06 1.830734e+06 175026.27 NULL
2015 Department Of Education Admin Cook 37093.08824 2.522330e+06 52486.69 7.718631e+02 86.725 2144.50 68 8.672500e+01 5897.30 2.574817e+06 2.528227e+06 46589.39 NULL
2015 Department Of Education Admin Counsel To The Chancellor 201308.00000 2.013080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.013080e+05 2.013080e+05 0.00 NULL
2015 Department Of Education Admin Customer Information Representative 46297.38049 1.412070e+07 206194.02 6.760460e+02 6.830 6078.17 305 6.830000e+00 2083.15 1.432690e+07 1.412278e+07 204110.87 NULL
2015 Department Of Education Admin Deputy Auditor General 162250.00000 1.622500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.622500e+05 1.622500e+05 0.00 NULL
2015 Department Of Education Admin Deputy Chancellor Financial Affairs 199848.50000 3.996970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.996970e+05 3.996970e+05 0.00 NULL
2015 Department Of Education Admin Deputy Executive Director Of Business And Administration 124205.00000 1.242050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.242050e+05 1.242050e+05 0.00 NULL
2015 Department Of Education Admin Deputy Inspector General 139893.00000 1.398930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.398930e+05 1.398930e+05 0.00 NULL
2015 Department Of Education Admin Director 156485.00000 3.129700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.129700e+05 3.129700e+05 0.00 NULL
2015 Department Of Education Admin Director Of Audit And Investigation 144315.00000 1.443150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.443150e+05 1.443150e+05 0.00 NULL
2015 Department Of Education Admin Director Of Equal Opportunity 112599.00000 2.251980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.251980e+05 2.251980e+05 0.00 NULL
2015 Department Of Education Admin District Manager Of Administration And Business Affairs 85394.82353 1.451712e+06 3436.88 2.021694e+02 0.000 38.50 17 0.000000e+00 0.00 1.455149e+06 1.451712e+06 3436.88 NULL
2015 Department Of Education Admin Education Analyst 63407.41176 1.077926e+06 1107.64 6.515529e+01 0.000 35.75 17 0.000000e+00 0.00 1.079034e+06 1.077926e+06 1107.64 NULL
2015 Department Of Education Admin Education Analyst Trainee 42494.69231 5.524310e+05 1944.09 1.495454e+02 0.000 44.75 13 0.000000e+00 0.00 5.543751e+05 5.524310e+05 1944.09 NULL
2015 Department Of Education Admin Education Officer 71849.80081 1.767505e+07 78863.74 3.205843e+02 0.000 1951.50 246 0.000000e+00 0.00 1.775391e+07 1.767505e+07 78863.74 NULL
2015 Department Of Education Admin Educational Management Associate 158969.00000 5.245977e+06 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 5.245977e+06 5.245977e+06 0.00 NULL
2015 Department Of Education Admin Electrician NA NA 839639.30 8.746243e+03 3913.875 12198.50 96 3.913875e+03 375732.00 NA NA NA NULL
2015 Department Of Education Admin Electrician’s Helper NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2015 Department Of Education Admin Engineering Technician 65112.00000 6.511200e+04 140.86 1.408600e+02 140.860 0.00 1 1.408600e+02 140.86 6.525286e+04 6.525286e+04 0.00 NULL
2015 Department Of Education Admin Equal Rights Compliance Specialist 63883.08696 1.469311e+06 1.67 7.260870e-02 0.000 0.00 23 0.000000e+00 0.00 1.469313e+06 1.469311e+06 1.67 NULL
2015 Department Of Education Admin Executive Agency Counsel 122067.47059 6.225441e+06 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 6.225441e+06 6.225441e+06 0.00 NULL
2015 Department Of Education Admin Executive Assistant To The Chancellor 68649.00000 2.059470e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.059470e+05 2.059470e+05 0.00 NULL
2015 Department Of Education Admin Executive Director 187934.00000 1.879340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.879340e+05 1.879340e+05 0.00 NULL
2015 Department Of Education Admin Exterminator 36276.52381 7.618070e+05 15888.58 7.565990e+02 85.380 690.50 21 8.538000e+01 1792.98 7.776956e+05 7.636000e+05 14095.60 NULL
2015 Department Of Education Admin Furniture Maintainer NA NA 1409.94 7.049700e+02 704.970 36.00 2 7.049700e+02 1409.94 NA NA NA NULL
2015 Department Of Education Admin Glazier NA NA 25407.20 3.629600e+03 3858.400 462.50 7 3.629600e+03 25407.20 NA NA NA NULL
2015 Department Of Education Admin Health Services Manager 92226.75000 1.106721e+06 188.17 1.568083e+01 0.000 12.50 12 0.000000e+00 0.00 1.106909e+06 1.106721e+06 188.17 NULL
2015 Department Of Education Admin Industrial Hygienist 65803.00000 6.580300e+04 12483.82 1.248382e+04 12483.820 260.00 1 1.248382e+04 12483.82 7.828682e+04 7.828682e+04 0.00 NULL
2015 Department Of Education Admin Interpreter 45797.02985 9.159406e+04 4117.81 2.058905e+03 2058.905 47.25 2 2.058905e+03 4117.81 9.571187e+04 9.571187e+04 0.00 NULL
2015 Department Of Education Admin Interpreter/Translator 54518.72222 1.962674e+06 18.43 5.119444e-01 0.000 0.00 36 0.000000e+00 0.00 1.962692e+06 1.962674e+06 18.43 NULL
2015 Department Of Education Admin Investigator 48653.66667 1.459610e+05 3873.61 1.291203e+03 680.830 106.75 3 6.808300e+02 2042.49 1.498346e+05 1.480035e+05 1831.12 NULL
2015 Department Of Education Admin Investigator Empl Disc 54649.84000 1.366246e+06 11374.76 4.549904e+02 0.000 327.00 25 0.000000e+00 0.00 1.377621e+06 1.366246e+06 11374.76 NULL
2015 Department Of Education Admin Investment Analyst 49277.50000 1.971100e+05 500.48 1.251200e+02 31.535 29.25 4 3.153500e+01 126.14 1.976105e+05 1.972361e+05 374.34 NULL
2015 Department Of Education Admin Investment Trustee - Deferred Compensation 1.00000 1.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+00 1.000000e+00 0.00 NULL
2015 Department Of Education Admin Legal Secretarial Assistant 40990.25000 1.639610e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.639610e+05 1.639610e+05 0.00 NULL
2015 Department Of Education Admin Locksmith NA NA 2528.58 6.321450e+02 148.740 68.00 4 1.487400e+02 594.96 NA NA NA NULL
2015 Department Of Education Admin Machinist NA NA 350732.44 8.768311e+03 3916.020 6657.25 40 3.916020e+03 156640.80 NA NA NA NULL
2015 Department Of Education Admin Machinist’s Helper NA NA 54559.14 6.819892e+03 2275.030 1094.50 8 2.275030e+03 18200.24 NA NA NA NULL
2015 Department Of Education Admin Maintenance Worker NA NA 6445.60 6.445600e+02 156.840 257.00 10 1.568400e+02 1568.40 NA NA NA NULL
2015 Department Of Education Admin Management Auditor 61141.50000 1.222830e+06 18020.69 9.010345e+02 0.000 431.00 20 0.000000e+00 0.00 1.240851e+06 1.222830e+06 18020.69 NULL
2015 Department Of Education Admin Management Auditor Trainee 44948.33333 2.696900e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.696900e+05 2.696900e+05 0.00 NULL
2015 Department Of Education Admin Mechanical Engineer 81683.00000 8.168300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.168300e+04 8.168300e+04 0.00 NULL
2015 Department Of Education Admin Media Services Technician 55326.00000 1.106520e+05 11914.38 5.957190e+03 5957.190 248.25 2 5.957190e+03 11914.38 1.225664e+05 1.225664e+05 0.00 NULL
2015 Department Of Education Admin Mental Health Worker 38738.00000 7.747600e+04 25.96 1.298000e+01 12.980 0.00 2 1.298000e+01 25.96 7.750196e+04 7.750196e+04 0.00 NULL
2015 Department Of Education Admin Motor Vehicle Operator 41849.79167 1.004395e+06 122182.17 5.090924e+03 436.180 3622.25 24 4.361800e+02 10468.32 1.126577e+06 1.014863e+06 111713.85 NULL
2015 Department Of Education Admin Occupational Therapist 49233.21886 9.905724e+07 113124.00 5.622465e+01 0.000 1839.00 2012 0.000000e+00 0.00 9.917036e+07 9.905724e+07 113124.00 NULL
2015 Department Of Education Admin Office Machine Aide 38342.58333 4.601110e+05 4167.36 3.472800e+02 4.605 203.75 12 4.605000e+00 55.26 4.642784e+05 4.601663e+05 4112.10 NULL
2015 Department Of Education Admin Painter NA NA 15933.76 3.186752e+03 0.000 358.50 5 0.000000e+00 0.00 NA NA NA NULL
2015 Department Of Education Admin Physical Therapist 48496.41402 4.810844e+07 29215.12 2.945073e+01 0.000 419.75 992 0.000000e+00 0.00 4.813766e+07 4.810844e+07 29215.12 NULL
2015 Department Of Education Admin Plasterer NA NA 113895.56 1.035414e+04 6778.530 1730.00 11 6.778530e+03 74563.83 NA NA NA NULL
2015 Department Of Education Admin Plumber NA NA 400079.96 8.890666e+03 7453.620 4732.00 45 7.453620e+03 335412.90 NA NA NA NULL
2015 Department Of Education Admin Plumber’s Helper NA NA 5577.60 1.859200e+03 2284.800 77.00 3 1.859200e+03 5577.60 NA NA NA NULL
2015 Department Of Education Admin Principal Administrative Associate 56577.63860 1.595489e+07 274411.45 9.730902e+02 0.000 6848.00 282 0.000000e+00 0.00 1.622931e+07 1.595489e+07 274411.45 NULL
2015 Department Of Education Admin Principal School-Neighborhood Worker 49340.00000 4.934000e+04 3225.95 3.225950e+03 3225.950 67.75 1 3.225950e+03 3225.95 5.256595e+04 5.256595e+04 0.00 NULL
2015 Department Of Education Admin Procurement Analyst 58111.98276 3.370495e+06 76103.26 1.312125e+03 0.000 1914.00 58 0.000000e+00 0.00 3.446598e+06 3.370495e+06 76103.26 NULL
2015 Department Of Education Admin Program Producer 67526.00000 6.752600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.752600e+04 6.752600e+04 0.00 NULL
2015 Department Of Education Admin Public Records Aide 39696.44444 3.572680e+05 12565.95 1.396217e+03 300.940 692.00 9 3.009400e+02 2708.46 3.698340e+05 3.599765e+05 9857.49 NULL
2015 Department Of Education Admin Quality Assurance Specialist 48239.14286 1.013022e+06 30580.06 1.456193e+03 1.450 833.25 21 1.450000e+00 30.45 1.043602e+06 1.013052e+06 30549.61 NULL
2015 Department Of Education Admin Radio Repair Mechanic NA NA 105472.57 7.533755e+03 5081.465 1820.50 14 5.081465e+03 71140.51 NA NA NA NULL
2015 Department Of Education Admin Research Assistant 53021.57895 1.007410e+06 1231.65 6.482368e+01 0.000 37.75 19 0.000000e+00 0.00 1.008642e+06 1.007410e+06 1231.65 NULL
2015 Department Of Education Admin Roofer NA NA 36931.44 2.462096e+03 825.820 686.00 15 8.258200e+02 12387.30 NA NA NA NULL
2015 Department Of Education Admin School Business Manager 71753.80000 1.291568e+07 322714.95 1.792861e+03 5.210 6649.75 180 5.210000e+00 937.80 1.323840e+07 1.291662e+07 321777.15 NULL
2015 Department Of Education Admin School Computer Technology Specialist 43762.14288 1.260350e+07 376615.94 1.307694e+03 25.180 10538.17 288 2.518000e+01 7251.84 1.298011e+07 1.261075e+07 369364.10 NULL
2015 Department Of Education Admin School Equipment Maintainer 41269.50000 8.253900e+04 3.26 1.630000e+00 1.630 0.00 2 1.630000e+00 3.26 8.254226e+04 8.254226e+04 0.00 NULL
2015 Department Of Education Admin School Food Service Manager 50536.94269 2.557169e+07 198922.25 3.931270e+02 43.830 6817.75 506 4.383000e+01 22177.98 2.577062e+07 2.559387e+07 176744.27 NULL
2015 Department Of Education Admin School Lunch Aide 28961.75930 2.647105e+07 1733370.74 1.896467e+03 805.750 23281.50 914 8.057500e+02 736455.50 2.820442e+07 2.720750e+07 996915.24 NULL
2015 Department Of Education Admin School Lunch Assistant 37008.56383 3.478805e+06 99511.47 1.058633e+03 33.435 3627.25 94 3.343500e+01 3142.89 3.578316e+06 3.481948e+06 96368.58 NULL
2015 Department Of Education Admin School Lunch Loader And Handler 46728.69231 1.822419e+06 69570.38 1.783856e+03 125.690 2209.50 39 1.256900e+02 4901.91 1.891989e+06 1.827321e+06 64668.47 NULL
2015 Department Of Education Admin School Plant Manager 114726.00000 5.047944e+06 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 5.047944e+06 5.047944e+06 0.00 NULL
2015 Department Of Education Admin School-Neighborhood Worker 37421.00000 1.871050e+05 44.47 8.894000e+00 0.000 0.00 5 0.000000e+00 0.00 1.871495e+05 1.871050e+05 44.47 NULL
2015 Department Of Education Admin Secretary 43680.37250 4.804841e+06 63477.12 5.770647e+02 0.000 2024.50 110 0.000000e+00 0.00 4.868318e+06 4.804841e+06 63477.12 NULL
2015 Department Of Education Admin Secretary To Community School Board 43752.80000 1.531348e+06 889.57 2.541629e+01 0.000 41.00 35 0.000000e+00 0.00 1.532238e+06 1.531348e+06 889.57 NULL
2015 Department Of Education Admin Secretary To The Chancellor 61877.00000 6.187700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.187700e+04 6.187700e+04 0.00 NULL
2015 Department Of Education Admin Secretary To The Counsel To The Chancellor 74064.00000 1.481280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.481280e+05 1.481280e+05 0.00 NULL
2015 Department Of Education Admin Secretary To The Deputy Chancellor 76831.50000 1.536630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.536630e+05 1.536630e+05 0.00 NULL
2015 Department Of Education Admin Secretary To The Special Commissioner Investigation Nyc Sch 80175.00000 8.017500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.017500e+04 8.017500e+04 0.00 NULL
2015 Department Of Education Admin Senior Estimator 71227.00000 2.136810e+05 1908.93 6.363100e+02 120.030 46.25 3 1.200300e+02 360.09 2.155899e+05 2.140411e+05 1548.84 NULL
2015 Department Of Education Admin Senior Occupational Therapist 18684.51109 4.521652e+06 291.36 1.203967e+00 0.000 1.00 242 0.000000e+00 0.00 4.521943e+06 4.521652e+06 291.36 NULL
2015 Department Of Education Admin Senior Physical Therapist 22579.37180 2.867580e+06 42.31 3.331496e-01 0.000 0.25 127 0.000000e+00 0.00 2.867623e+06 2.867580e+06 42.31 NULL
2015 Department Of Education Admin Senior School Lunch Aide 33519.98584 1.183256e+07 225619.49 6.391487e+02 43.400 8321.50 353 4.340000e+01 15320.20 1.205817e+07 1.184788e+07 210299.29 NULL
2015 Department Of Education Admin Senior School-Neighborhood Worker 44888.00000 1.795520e+05 10843.21 2.710802e+03 711.180 323.75 4 7.111800e+02 2844.72 1.903952e+05 1.823967e+05 7998.49 NULL
2015 Department Of Education Admin Service Inspector 40274.00000 2.013700e+05 2.69 5.380000e-01 0.330 0.00 5 3.300000e-01 1.65 2.013727e+05 2.013716e+05 1.04 NULL
2015 Department Of Education Admin Sign Language Interpreter 73011.79924 1.679271e+06 15535.10 6.754391e+02 480.170 323.00 23 4.801700e+02 11043.91 1.694806e+06 1.690315e+06 4491.19 NULL
2015 Department Of Education Admin Special Assistant To The Chancellor 105034.80000 1.050348e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.050348e+06 1.050348e+06 0.00 NULL
2015 Department Of Education Admin Staff Audiologist 59659.50000 1.193190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.193190e+05 1.193190e+05 0.00 NULL
2015 Department Of Education Admin Staff Nurse 43674.23628 4.585795e+07 1797547.69 1.711950e+03 46.170 30921.00 1050 4.617000e+01 48478.50 4.765550e+07 4.590643e+07 1749069.19 NULL
2015 Department Of Education Admin Statistician 55943.00000 5.594300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.594300e+04 5.594300e+04 0.00 NULL
2015 Department Of Education Admin Steam Fitter NA NA 395490.33 1.068893e+04 9865.680 4365.25 37 9.865680e+03 365030.16 NA NA NA NULL
2015 Department Of Education Admin Steam Fitter’s Helper NA NA 65366.70 1.307334e+04 5859.200 824.00 5 5.859200e+03 29296.00 NA NA NA NULL
2015 Department Of Education Admin Stock Worker 34974.05387 6.994811e+05 12161.26 6.080630e+02 0.710 596.25 20 7.100000e-01 14.20 7.116423e+05 6.994953e+05 12147.06 NULL
2015 Department Of Education Admin Strategic Initiative Specialist 103000.00000 1.030000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030000e+05 1.030000e+05 0.00 NULL
2015 Department Of Education Admin Substance Abuse Prevention & Intervention Specialist 54524.94149 1.706631e+07 38418.94 1.227442e+02 0.000 958.00 313 0.000000e+00 0.00 1.710473e+07 1.706631e+07 38418.94 NULL
2015 Department Of Education Admin Supervising Computer Service Technician 64189.42589 1.989872e+06 45674.35 1.473366e+03 55.480 878.25 31 5.548000e+01 1719.88 2.035547e+06 1.991592e+06 43954.47 NULL
2015 Department Of Education Admin Supervising Therapist 39373.65403 2.204925e+06 930.75 1.662054e+01 0.000 26.25 56 0.000000e+00 0.00 2.205855e+06 2.204925e+06 930.75 NULL
2015 Department Of Education Admin Supervisor 61049.25000 2.441970e+05 12679.49 3.169872e+03 2942.115 255.50 4 2.942115e+03 11768.46 2.568765e+05 2.559655e+05 911.03 NULL
2015 Department Of Education Admin Supervisor Bricklayer NA NA 18925.86 1.892586e+04 18925.860 323.25 1 1.892586e+04 18925.86 NA NA NA NULL
2015 Department Of Education Admin Supervisor Carpenter NA NA 58487.02 6.498558e+03 4359.250 955.25 9 4.359250e+03 39233.25 NA NA NA NULL
2015 Department Of Education Admin Supervisor Electrician NA NA 104167.78 1.302097e+04 9119.180 1613.75 8 9.119180e+03 72953.44 NA NA NA NULL
2015 Department Of Education Admin Supervisor Of Electrical Installations & Maintenance 72626.70588 1.234654e+06 84890.09 4.993535e+03 554.650 1711.75 17 5.546500e+02 9429.05 1.319544e+06 1.244083e+06 75461.04 NULL
2015 Department Of Education Admin Supervisor Of Mechanical Installations & Maintenance 70349.68000 1.758742e+06 189116.48 7.564659e+03 5212.670 3765.50 25 5.212670e+03 130316.75 1.947858e+06 1.889059e+06 58799.73 NULL
2015 Department Of Education Admin Supervisor Of Mechanics NA NA 219828.67 1.221270e+04 7404.965 2957.00 18 7.404965e+03 133289.37 NA NA NA NULL
2015 Department Of Education Admin Supervisor Of Motor Transport 66411.00000 6.641100e+04 390.12 3.901200e+02 390.120 0.00 1 3.901200e+02 390.12 6.680112e+04 6.680112e+04 0.00 NULL
2015 Department Of Education Admin Supervisor Of Nurses 49720.36242 1.640772e+06 4536.36 1.374655e+02 0.000 60.00 33 0.000000e+00 0.00 1.645308e+06 1.640772e+06 4536.36 NULL
2015 Department Of Education Admin Supervisor Of Office Machine Operations 46996.00000 1.879840e+05 4.63 1.157500e+00 0.270 0.00 4 2.700000e-01 1.08 1.879886e+05 1.879851e+05 3.55 NULL
2015 Department Of Education Admin Supervisor Of Stock Workers 56170.00000 1.123400e+05 451.44 2.257200e+02 225.720 15.25 2 2.257200e+02 451.44 1.127914e+05 1.127914e+05 0.00 NULL
2015 Department Of Education Admin Supervisor Painter NA NA 24450.00 1.222500e+04 12225.000 439.50 2 1.222500e+04 24450.00 NA NA NA NULL
2015 Department Of Education Admin Supervisor Plasterer NA NA 32627.61 1.631381e+04 16313.805 501.00 2 1.631381e+04 32627.61 NA NA NA NULL
2015 Department Of Education Admin Supervisor Plumber NA NA 104647.08 1.494958e+04 15377.670 1140.50 7 1.494958e+04 104647.08 NA NA NA NULL
2015 Department Of Education Admin Supervisor Roofer NA NA 39263.40 9.815850e+03 7563.600 771.25 4 7.563600e+03 30254.40 NA NA NA NULL
2015 Department Of Education Admin Supervisor Steamfitter NA NA 62543.25 1.563581e+04 13950.750 565.50 4 1.395075e+04 55803.00 NA NA NA NULL
2015 Department Of Education Admin Telecommunication Manager 104522.75000 4.180910e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.180910e+05 4.180910e+05 0.00 NULL
2015 Department Of Education Admin Telecommunications Associate 76074.90000 1.521498e+06 1155.12 5.775600e+01 0.000 32.00 20 0.000000e+00 0.00 1.522653e+06 1.521498e+06 1155.12 NULL
2015 Department Of Education Admin Thermostat Repairer NA NA 48632.57 5.403619e+03 2484.540 500.50 9 2.484540e+03 22360.86 NA NA NA NULL
2015 Department Of Education Admin Transportation Inspector 41613.00000 4.161300e+04 4994.38 4.994380e+03 4994.380 198.75 1 4.994380e+03 4994.38 4.660738e+04 4.660738e+04 0.00 NULL
2015 Department Of Finance *Certified Applications Developer 83673.00000 8.367300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.367300e+04 8.367300e+04 0.00 NULL
2015 Department Of Finance Accountant 61419.50000 2.456780e+05 36.43 9.107500e+00 0.000 0.75 4 0.000000e+00 0.00 2.457144e+05 2.456780e+05 36.43 NULL
2015 Department Of Finance Adm Manager-Non-Mgrl 71805.98387 4.451971e+06 47500.87 7.661431e+02 0.000 923.25 62 0.000000e+00 0.00 4.499472e+06 4.451971e+06 47500.87 NULL
2015 Department Of Finance Administrative Accountant 100262.75000 4.010510e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.010510e+05 4.010510e+05 0.00 NULL
2015 Department Of Finance Administrative Assessor 125224.28571 8.765700e+05 17.42 2.488571e+00 0.000 0.00 7 0.000000e+00 0.00 8.765874e+05 8.765700e+05 17.42 NULL
2015 Department Of Finance Administrative Deputy Register 104840.66667 3.145220e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.145220e+05 3.145220e+05 0.00 NULL
2015 Department Of Finance Administrative Investigator 113024.33333 3.390730e+05 4070.30 1.356767e+03 0.000 64.50 3 0.000000e+00 0.00 3.431433e+05 3.390730e+05 4070.30 NULL
2015 Department Of Finance Administrative Labor Relations Analyst 128148.66667 3.844460e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.844460e+05 3.844460e+05 0.00 NULL
2015 Department Of Finance Administrative Management Auditor 111650.00000 1.116500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.116500e+05 1.116500e+05 0.00 NULL
2015 Department Of Finance Administrative Manager 101169.66667 3.035090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.035090e+05 3.035090e+05 0.00 NULL
2015 Department Of Finance Administrative Procurement Analyst 103089.75000 4.123590e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.123590e+05 4.123590e+05 0.00 NULL
2015 Department Of Finance Administrative Public Information Specialist 100317.50000 2.006350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.006350e+05 2.006350e+05 0.00 NULL
2015 Department Of Finance Administrative Space Analyst 90487.00000 9.048700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.048700e+04 9.048700e+04 0.00 NULL
2015 Department Of Finance Administrative Staff Analyst 93505.32857 1.309075e+07 8333.50 5.952500e+01 0.000 197.75 140 0.000000e+00 0.00 1.309908e+07 1.309075e+07 8333.50 NULL
2015 Department Of Finance Administrative Storekeeper 100422.00000 2.008440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.008440e+05 2.008440e+05 0.00 NULL
2015 Department Of Finance Administrative Supervisor Of Building Maintenance 122121.00000 1.221210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.221210e+05 1.221210e+05 0.00 NULL
2015 Department Of Finance Administrative Tax Auditor 107042.27778 3.853522e+06 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 3.853522e+06 3.853522e+06 0.00 NULL
2015 Department Of Finance Agency Attorney 84963.83333 1.529349e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.529349e+06 1.529349e+06 0.00 NULL
2015 Department Of Finance Agency Attorney Intern 62930.00000 6.293000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.293000e+04 6.293000e+04 0.00 NULL
2015 Department Of Finance Agency Chief Contracting Officer 114294.00000 1.142940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.142940e+05 1.142940e+05 0.00 NULL
2015 Department Of Finance Assistant City Assessor 37322.51429 1.306288e+06 0.46 1.314290e-02 0.000 0.00 35 0.000000e+00 0.00 1.306288e+06 1.306288e+06 0.46 NULL
2015 Department Of Finance Assistant Commissioner 156624.33333 4.698730e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.698730e+05 4.698730e+05 0.00 NULL
2015 Department Of Finance Associate Fraud Investigator 63830.13636 1.404263e+06 82680.10 3.758186e+03 365.300 1794.25 22 3.653000e+02 8036.60 1.486943e+06 1.412300e+06 74643.50 NULL
2015 Department Of Finance Associate Staff Analyst 76623.36667 2.298701e+06 13111.15 4.370383e+02 0.000 244.00 30 0.000000e+00 0.00 2.311812e+06 2.298701e+06 13111.15 NULL
2015 Department Of Finance Asst Commissioner 155360.00000 1.553600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.553600e+05 1.553600e+05 0.00 NULL
2015 Department Of Finance Attorney At Law 93612.36364 2.059472e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 2.059472e+06 2.059472e+06 0.00 NULL
2015 Department Of Finance Bookkeeper 43973.00000 4.397300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.397300e+04 4.397300e+04 0.00 NULL
2015 Department Of Finance Cashier 41091.25000 3.287300e+05 195.39 2.442375e+01 0.000 7.50 8 0.000000e+00 0.00 3.289254e+05 3.287300e+05 195.39 NULL
2015 Department Of Finance Certified It Administrator 107213.50000 2.144270e+05 342.35 1.711750e+02 171.175 5.00 2 1.711750e+02 342.35 2.147694e+05 2.147694e+05 0.00 NULL
2015 Department Of Finance Certified Local Area Network Administrator 86902.00000 3.476080e+05 4136.19 1.034047e+03 0.000 75.50 4 0.000000e+00 0.00 3.517442e+05 3.476080e+05 4136.19 NULL
2015 Department Of Finance Chief Review Assessor 126875.00000 1.268750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.268750e+05 1.268750e+05 0.00 NULL
2015 Department Of Finance City Assessor 71259.02308 9.263673e+06 267417.09 2.057055e+03 169.060 4710.25 130 1.690600e+02 21977.80 9.531090e+06 9.285651e+06 245439.29 NULL
2015 Department Of Finance City Collector 170551.00000 1.705510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.705510e+05 1.705510e+05 0.00 NULL
2015 Department Of Finance City Laborer NA NA 34479.87 2.298658e+03 1924.050 632.75 15 1.924050e+03 28860.75 NA NA NA NULL
2015 Department Of Finance City Planning Technician 50750.00000 5.075000e+04 402.79 4.027900e+02 402.790 14.50 1 4.027900e+02 402.79 5.115279e+04 5.115279e+04 0.00 NULL
2015 Department Of Finance City Register 156715.00000 1.567150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.567150e+05 1.567150e+05 0.00 NULL
2015 Department Of Finance City Research Scientist 78781.36364 8.665950e+05 2804.25 2.549318e+02 0.000 51.25 11 0.000000e+00 0.00 8.693992e+05 8.665950e+05 2804.25 NULL
2015 Department Of Finance City Tax Auditor 59632.99743 2.319724e+07 1535.08 3.946221e+00 0.000 41.00 389 0.000000e+00 0.00 2.319877e+07 2.319724e+07 1535.08 NULL
2015 Department Of Finance Clerical Aide 34227.02778 1.232173e+06 53.59 1.488611e+00 0.000 3.00 36 0.000000e+00 0.00 1.232227e+06 1.232173e+06 53.59 NULL
2015 Department Of Finance Clerical Associate 39380.24348 1.358618e+07 16787.47 4.865933e+01 0.000 550.50 345 0.000000e+00 0.00 1.360297e+07 1.358618e+07 16787.47 NULL
2015 Department Of Finance College Aide 6521.97280 4.565381e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.565381e+04 4.565381e+04 0.00 NULL
2015 Department Of Finance Commissioner Of Finance 214413.00000 2.144130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144130e+05 2.144130e+05 0.00 NULL
2015 Department Of Finance Community Assistant 34204.33333 1.026130e+05 24.47 8.156667e+00 0.000 0.00 3 0.000000e+00 0.00 1.026375e+05 1.026130e+05 24.47 NULL
2015 Department Of Finance Community Associate 46584.57143 3.260920e+05 538.27 7.689571e+01 0.000 27.25 7 0.000000e+00 0.00 3.266303e+05 3.260920e+05 538.27 NULL
2015 Department Of Finance Community Coordinator 63728.66667 1.911860e+05 178.39 5.946333e+01 0.000 0.00 3 0.000000e+00 0.00 1.913644e+05 1.911860e+05 178.39 NULL
2015 Department Of Finance Community Service Aide 31261.00000 3.126100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.126100e+04 3.126100e+04 0.00 NULL
2015 Department Of Finance Computer Aide-Non-Spvr 48308.50000 1.932340e+05 306.43 7.660750e+01 2.025 7.00 4 2.025000e+00 8.10 1.935404e+05 1.932421e+05 298.33 NULL
2015 Department Of Finance Computer Associate 66992.97917 3.215663e+06 21783.14 4.538154e+02 0.000 506.00 48 0.000000e+00 0.00 3.237446e+06 3.215663e+06 21783.14 NULL
2015 Department Of Finance Computer Programmer Analyst 63600.00000 5.088000e+05 570.27 7.128375e+01 0.000 14.00 8 0.000000e+00 0.00 5.093703e+05 5.088000e+05 570.27 NULL
2015 Department Of Finance Computer Specialist 94699.41071 1.060633e+07 48722.23 4.350199e+02 0.000 1094.00 112 0.000000e+00 0.00 1.065506e+07 1.060633e+07 48722.23 NULL
2015 Department Of Finance Computer Systems Manager 119455.24615 1.552918e+07 13.63 1.048462e-01 0.000 0.00 130 0.000000e+00 0.00 1.552920e+07 1.552918e+07 13.63 NULL
2015 Department Of Finance Counsel 177625.00000 1.776250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.776250e+05 1.776250e+05 0.00 NULL
2015 Department Of Finance Deputy City Sheriff - Non-Spvr 67533.43363 7.631278e+06 745756.70 6.599617e+03 4383.910 14504.80 113 4.383910e+03 495381.83 8.377035e+06 8.126660e+06 250374.87 NULL
2015 Department Of Finance Deputy Commissioner 186437.75000 7.457510e+05 744.02 1.860050e+02 0.000 0.00 4 0.000000e+00 0.00 7.464950e+05 7.457510e+05 744.02 NULL
2015 Department Of Finance Director Of Public Information 106575.00000 1.065750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.065750e+05 1.065750e+05 0.00 NULL
2015 Department Of Finance Examiner Of Accounts 69943.50000 1.398870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.398870e+05 1.398870e+05 0.00 NULL
2015 Department Of Finance Exec Asst To The Commissioner Of Finance 60900.00000 6.090000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.090000e+04 6.090000e+04 0.00 NULL
2015 Department Of Finance Executive Agency Counsel 128750.31250 2.060005e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.060005e+06 2.060005e+06 0.00 NULL
2015 Department Of Finance Executive Program Specialist 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2015 Department Of Finance Fraud Investigator 58277.50000 1.165550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.165550e+05 1.165550e+05 0.00 NULL
2015 Department Of Finance Hearing Officer 39004.69514 4.641559e+06 0.00 0.000000e+00 0.000 0.00 119 0.000000e+00 0.00 4.641559e+06 4.641559e+06 0.00 NULL
2015 Department Of Finance Investigator 50131.00000 1.002620e+05 530.24 2.651200e+02 265.120 14.50 2 2.651200e+02 530.24 1.007922e+05 1.007922e+05 0.00 NULL
2015 Department Of Finance Investigator Empl Disc 73203.00000 7.320300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.320300e+04 7.320300e+04 0.00 NULL
2015 Department Of Finance Investment Analyst 76543.00000 1.530860e+05 0.44 2.200000e-01 0.220 0.00 2 2.200000e-01 0.44 1.530864e+05 1.530864e+05 0.00 NULL
2015 Department Of Finance Management Auditor 69518.40000 3.475920e+05 2.49 4.980000e-01 0.000 0.00 5 0.000000e+00 0.00 3.475945e+05 3.475920e+05 2.49 NULL
2015 Department Of Finance Mortgage Tax Examiner 50085.33333 1.502560e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.502560e+05 1.502560e+05 0.00 NULL
2015 Department Of Finance Motor Vehicle Operator 39628.50000 7.925700e+04 3034.78 1.517390e+03 1517.390 115.00 2 1.517390e+03 3034.78 8.229178e+04 8.229178e+04 0.00 NULL
2015 Department Of Finance Principal Administrative Associate 55815.02564 1.741429e+07 208947.79 6.697045e+02 0.000 5126.75 312 0.000000e+00 0.00 1.762324e+07 1.741429e+07 208947.79 NULL
2015 Department Of Finance Procurement Analyst 66318.66667 3.979120e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.979120e+05 3.979120e+05 0.00 NULL
2015 Department Of Finance Public Records Aide 36885.00000 3.688500e+04 1.13 1.130000e+00 1.130 0.00 1 1.130000e+00 1.13 3.688613e+04 3.688613e+04 0.00 NULL
2015 Department Of Finance Research Assistant 52800.00000 5.280000e+04 1199.30 1.199300e+03 1199.300 34.00 1 1.199300e+03 1199.30 5.399930e+04 5.399930e+04 0.00 NULL
2015 Department Of Finance Secretary 43976.57143 3.078360e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.078360e+05 3.078360e+05 0.00 NULL
2015 Department Of Finance Secretary Of Comm 76125.00000 7.612500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.612500e+04 7.612500e+04 0.00 NULL
2015 Department Of Finance Secretary To Deputy Commissioner 60186.00000 1.203720e+05 696.02 3.480100e+02 348.010 15.00 2 3.480100e+02 696.02 1.210680e+05 1.210680e+05 0.00 NULL
2015 Department Of Finance Senior Estimator 77656.00000 1.553120e+05 7175.61 3.587805e+03 3587.805 138.75 2 3.587805e+03 7175.61 1.624876e+05 1.624876e+05 0.00 NULL
2015 Department Of Finance Senior Photographer 53983.00000 5.398300e+04 16.31 1.631000e+01 16.310 0.00 1 1.631000e+01 16.31 5.399931e+04 5.399931e+04 0.00 NULL
2015 Department Of Finance Space Analyst 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2015 Department Of Finance Staff Analyst 61528.80952 1.292105e+06 13610.91 6.481386e+02 0.000 296.75 21 0.000000e+00 0.00 1.305716e+06 1.292105e+06 13610.91 NULL
2015 Department Of Finance Staff Analyst Trainee 39303.25000 1.572130e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.572130e+05 1.572130e+05 0.00 NULL
2015 Department Of Finance Statistician 75750.00000 1.515000e+05 45.97 2.298500e+01 22.985 0.00 2 2.298500e+01 45.97 1.515460e+05 1.515460e+05 0.00 NULL
2015 Department Of Finance Summer College Intern 1457.84204 1.603626e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.603626e+04 1.603626e+04 0.00 NULL
2015 Department Of Finance Summer Graduate Intern 2445.06240 9.780250e+03 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 9.780250e+03 9.780250e+03 0.00 NULL
2015 Department Of Finance Supervising Computer Service Technician 62331.00000 6.233100e+04 151.38 1.513800e+02 151.380 2.50 1 1.513800e+02 151.38 6.248238e+04 6.248238e+04 0.00 NULL
2015 Department Of Finance Supervising Deputy Sheriff - Al 1 Only 40 Hr 96114.35714 1.345601e+06 184427.09 1.317336e+04 10177.150 2458.00 14 1.017715e+04 142480.10 1.530028e+06 1.488081e+06 41946.99 NULL
2015 Department Of Finance Supervising Special Officer 50722.20000 2.536110e+05 16911.54 3.382308e+03 876.890 494.00 5 8.768900e+02 4384.45 2.705225e+05 2.579955e+05 12527.09 NULL
2015 Department Of Finance Tax Map Cartographer 63312.33333 1.899370e+05 23.67 7.890000e+00 6.180 0.00 3 6.180000e+00 18.54 1.899607e+05 1.899555e+05 5.13 NULL
2015 Department Of Finance Telecommunications Associate 56761.00000 1.135220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.135220e+05 1.135220e+05 0.00 NULL
2015 Department Of Investigation Adm Manager-Non-Mgrl 65628.45455 7.219130e+05 7306.05 6.641864e+02 175.530 177.75 11 1.755300e+02 1930.83 7.292191e+05 7.238438e+05 5375.22 NULL
2015 Department Of Investigation Administrative Manager 121718.00000 1.217180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.217180e+05 1.217180e+05 0.00 NULL
2015 Department Of Investigation Administrative Public Information Specialist 103003.66667 3.090110e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.090110e+05 3.090110e+05 0.00 NULL
2015 Department Of Investigation Administrative Staff Analyst 96926.22222 8.723360e+05 9313.61 1.034846e+03 0.000 199.00 9 0.000000e+00 0.00 8.816496e+05 8.723360e+05 9313.61 NULL
2015 Department Of Investigation Assistant Commissioner 158599.50000 3.171990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.171990e+05 3.171990e+05 0.00 NULL
2015 Department Of Investigation Associate Staff Analyst 87424.33333 2.622730e+05 321.77 1.072567e+02 0.000 6.25 3 0.000000e+00 0.00 2.625948e+05 2.622730e+05 321.77 NULL
2015 Department Of Investigation Certified It Administrator 110937.50000 2.218750e+05 755.20 3.776000e+02 377.600 11.50 2 3.776000e+02 755.20 2.226302e+05 2.226302e+05 0.00 NULL
2015 Department Of Investigation Clerical Associate 43882.80000 4.388280e+05 343.32 3.433200e+01 0.685 12.25 10 6.850000e-01 6.85 4.391713e+05 4.388348e+05 336.47 NULL
2015 Department Of Investigation Commissioner 214413.00000 2.144130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144130e+05 2.144130e+05 0.00 NULL
2015 Department Of Investigation Community Assistant 28366.43625 3.687637e+05 8257.40 6.351846e+02 18.890 527.75 13 1.889000e+01 245.57 3.770211e+05 3.690092e+05 8011.83 NULL
2015 Department Of Investigation Community Associate 40035.92308 5.204670e+05 4583.62 3.525862e+02 0.000 171.00 13 0.000000e+00 0.00 5.250506e+05 5.204670e+05 4583.62 NULL
2015 Department Of Investigation Community Coordinator 67000.00000 6.700000e+04 73.34 7.334000e+01 73.340 7.00 1 7.334000e+01 73.34 6.707334e+04 6.707334e+04 0.00 NULL
2015 Department Of Investigation Computer Associate 68468.20000 3.423410e+05 3696.43 7.392860e+02 0.000 87.25 5 0.000000e+00 0.00 3.460374e+05 3.423410e+05 3696.43 NULL
2015 Department Of Investigation Computer Specialist 93694.00000 4.684700e+05 7093.34 1.418668e+03 0.000 122.50 5 0.000000e+00 0.00 4.755633e+05 4.684700e+05 7093.34 NULL
2015 Department Of Investigation Confidential Investigator 58738.64179 3.935489e+06 166067.05 2.478613e+03 721.060 4386.25 67 7.210600e+02 48311.02 4.101556e+06 3.983800e+06 117756.03 NULL
2015 Department Of Investigation Confidential Secretary To The Deputy Commissioner 55000.00000 1.650000e+05 10797.45 3.599150e+03 157.350 256.75 3 1.573500e+02 472.05 1.757975e+05 1.654720e+05 10325.40 NULL
2015 Department Of Investigation Deputy Commissioner 182700.00000 1.827000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.827000e+05 1.827000e+05 0.00 NULL
2015 Department Of Investigation Deputy Inspector General 106655.73684 2.026459e+06 10.54 5.547368e-01 0.000 0.00 19 0.000000e+00 0.00 2.026470e+06 2.026459e+06 10.54 NULL
2015 Department Of Investigation Examining Attorney 108899.45000 2.177989e+06 10304.13 5.152065e+02 0.000 198.00 20 0.000000e+00 0.00 2.188293e+06 2.177989e+06 10304.13 NULL
2015 Department Of Investigation Executive Agency Counsel 185745.00000 1.857450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.857450e+05 1.857450e+05 0.00 NULL
2015 Department Of Investigation Executive Director 146692.00000 1.466920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.466920e+05 1.466920e+05 0.00 NULL
2015 Department Of Investigation Inspector General 123927.03571 3.469957e+06 7997.07 2.856096e+02 0.000 118.00 28 0.000000e+00 0.00 3.477954e+06 3.469957e+06 7997.07 NULL
2015 Department Of Investigation Office Machine Aide 39871.00000 3.987100e+04 37.27 3.727000e+01 37.270 0.00 1 3.727000e+01 37.27 3.990827e+04 3.990827e+04 0.00 NULL
2015 Department Of Investigation Principal Administrative Associate 59684.38462 7.758970e+05 3673.32 2.825631e+02 0.000 105.75 13 0.000000e+00 0.00 7.795703e+05 7.758970e+05 3673.32 NULL
2015 Department Of Investigation Procurement Analyst 57759.00000 1.155180e+05 4.64 2.320000e+00 2.320 0.00 2 2.320000e+00 4.64 1.155226e+05 1.155226e+05 0.00 NULL
2015 Department Of Investigation Secretary 44587.00000 2.229350e+05 131.23 2.624600e+01 0.000 1.00 5 0.000000e+00 0.00 2.230662e+05 2.229350e+05 131.23 NULL
2015 Department Of Investigation Special Commissioner Of Investigation-Nyc School Dist. Doi 202655.00000 2.026550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.026550e+05 2.026550e+05 0.00 NULL
2015 Department Of Investigation Special Investigator 69986.13433 4.689071e+06 165885.34 2.475901e+03 265.180 3538.75 67 2.651800e+02 17767.06 4.854956e+06 4.706838e+06 148118.28 NULL
2015 Department Of Investigation Stock Worker 33332.00000 3.333200e+04 341.99 3.419900e+02 341.990 20.00 1 3.419900e+02 341.99 3.367399e+04 3.367399e+04 0.00 NULL
2015 Department Of Investigation Supervising Inspector General 138716.00000 1.387160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.387160e+05 1.387160e+05 0.00 NULL
2015 Department Of Juvenile Justice Clerical Associate 40838.75000 1.633550e+05 6.34 1.585000e+00 0.105 0.00 4 1.050000e-01 0.42 1.633613e+05 1.633554e+05 5.92 NULL
2015 Department Of Juvenile Justice Juvenile Counselor 40428.00000 4.042800e+04 133.62 1.336200e+02 133.620 0.00 1 1.336200e+02 133.62 4.056162e+04 4.056162e+04 0.00 NULL
2015 Department Of Probation Administrative Director Of Social Services 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2015 Department Of Probation Administrative Probation Officer 90706.44186 3.900377e+06 0.00 0.000000e+00 0.000 0.00 43 0.000000e+00 0.00 3.900377e+06 3.900377e+06 0.00 NULL
2015 Department Of Probation Administrative Procurement Analyst 82118.50000 1.642370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.642370e+05 1.642370e+05 0.00 NULL
2015 Department Of Probation Administrative Public Information Specialist 88708.33333 2.661250e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.661250e+05 2.661250e+05 0.00 NULL
2015 Department Of Probation Administrative Staff Analyst 93448.82609 2.149323e+06 5749.43 2.499752e+02 0.000 122.50 23 0.000000e+00 0.00 2.155072e+06 2.149323e+06 5749.43 NULL
2015 Department Of Probation Agency Attorney 78404.00000 6.272320e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.272320e+05 6.272320e+05 0.00 NULL
2015 Department Of Probation Agency Chief Contracting Officer 109065.50000 2.181310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.181310e+05 2.181310e+05 0.00 NULL
2015 Department Of Probation Assistant Director Of Administration 90235.00000 9.023500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.023500e+04 9.023500e+04 0.00 NULL
2015 Department Of Probation Associate Staff Analyst 84230.83333 5.053850e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.053850e+05 5.053850e+05 0.00 NULL
2015 Department Of Probation Attorney At Law 81480.60000 4.074030e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.074030e+05 4.074030e+05 0.00 NULL
2015 Department Of Probation Bookkeeper 43973.00000 4.397300e+04 0.00 0.000000e+00 0.000 4.00 1 0.000000e+00 0.00 4.397300e+04 4.397300e+04 0.00 NULL
2015 Department Of Probation City Attendant 36602.00000 3.660200e+04 1347.59 1.347590e+03 1347.590 56.50 1 1.347590e+03 1347.59 3.794959e+04 3.794959e+04 0.00 NULL
2015 Department Of Probation City Research Scientist 84405.00000 1.688100e+05 10538.07 5.269035e+03 5269.035 233.50 2 5.269035e+03 10538.07 1.793481e+05 1.793481e+05 0.00 NULL
2015 Department Of Probation Clerical Associate 36938.26984 2.327111e+06 14166.12 2.248590e+02 0.000 505.00 63 0.000000e+00 0.00 2.341277e+06 2.327111e+06 14166.12 NULL
2015 Department Of Probation College Aide 8408.29290 3.363317e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.363317e+04 3.363317e+04 0.00 NULL
2015 Department Of Probation Community Associate 40687.25000 8.137450e+05 2406.51 1.203255e+02 9.430 88.25 20 9.430000e+00 188.60 8.161515e+05 8.139336e+05 2217.91 NULL
2015 Department Of Probation Community Coordinator 73230.71429 5.126150e+05 1013.51 1.447871e+02 0.000 23.25 7 0.000000e+00 0.00 5.136285e+05 5.126150e+05 1013.51 NULL
2015 Department Of Probation Community Service Aide 25889.00000 2.330010e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 2.330010e+05 2.330010e+05 0.00 NULL
2015 Department Of Probation Computer Associate 75632.00000 7.563200e+04 7.94 7.940000e+00 7.940 0.00 1 7.940000e+00 7.94 7.563994e+04 7.563994e+04 0.00 NULL
2015 Department Of Probation Computer Specialist 90473.57143 6.333150e+05 22118.39 3.159770e+03 266.210 373.25 7 2.662100e+02 1863.47 6.554334e+05 6.351785e+05 20254.92 NULL
2015 Department Of Probation Computer Systems Manager 119664.00000 1.196640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.196640e+05 1.196640e+05 0.00 NULL
2015 Department Of Probation Counsel 158955.00000 1.589550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.589550e+05 1.589550e+05 0.00 NULL
2015 Department Of Probation Custodian 70000.00000 7.000000e+04 945.94 9.459400e+02 945.940 29.50 1 9.459400e+02 945.94 7.094594e+04 7.094594e+04 0.00 NULL
2015 Department Of Probation Deputy Director Of Probation 167804.75000 6.712190e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.712190e+05 6.712190e+05 0.00 NULL
2015 Department Of Probation Director Of Probation 200847.00000 2.008470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.008470e+05 2.008470e+05 0.00 NULL
2015 Department Of Probation Executive Agency Counsel 122929.66667 3.687890e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.687890e+05 3.687890e+05 0.00 NULL
2015 Department Of Probation Executive Director 111683.00000 1.116830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.116830e+05 1.116830e+05 0.00 NULL
2015 Department Of Probation Executive Director Of Administration 140021.00000 2.800420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.800420e+05 2.800420e+05 0.00 NULL
2015 Department Of Probation Executive Program Specialist 109805.00000 1.098050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.098050e+05 1.098050e+05 0.00 NULL
2015 Department Of Probation Principal Administrative Associate 52074.30357 2.916161e+06 28724.97 5.129459e+02 0.000 817.25 56 0.000000e+00 0.00 2.944886e+06 2.916161e+06 28724.97 NULL
2015 Department Of Probation Probation Assistant 25815.25000 1.032610e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.032610e+05 1.032610e+05 0.00 NULL
2015 Department Of Probation Probation Officer 56809.07095 3.363097e+07 253586.84 4.283561e+02 0.000 6259.08 592 0.000000e+00 0.00 3.388456e+07 3.363097e+07 253586.84 NULL
2015 Department Of Probation Probation Officer Trainee 40023.22727 8.805110e+05 7402.22 3.364645e+02 10.255 296.25 22 1.025500e+01 225.61 8.879132e+05 8.807366e+05 7176.61 NULL
2015 Department Of Probation Procurement Analyst 52634.00000 1.579020e+05 94.66 3.155333e+01 0.000 2.25 3 0.000000e+00 0.00 1.579967e+05 1.579020e+05 94.66 NULL
2015 Department Of Probation Recreation Director 36623.00000 3.662300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.662300e+04 3.662300e+04 0.00 NULL
2015 Department Of Probation Secretary 36852.50000 1.474100e+06 17575.04 4.393760e+02 0.000 616.75 40 0.000000e+00 0.00 1.491675e+06 1.474100e+06 17575.04 NULL
2015 Department Of Probation Senior Consultant 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2015 Department Of Probation Senior Mental Health Worker 25522.99955 2.807530e+05 937.86 8.526000e+01 0.000 42.00 11 0.000000e+00 0.00 2.816909e+05 2.807530e+05 937.86 NULL
2015 Department Of Probation Staff Analyst 57677.83333 3.460670e+05 365.64 6.094000e+01 0.000 11.00 6 0.000000e+00 0.00 3.464326e+05 3.460670e+05 365.64 NULL
2015 Department Of Probation Staff Analyst Trainee 40000.00000 4.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.000000e+04 4.000000e+04 0.00 NULL
2015 Department Of Probation Stock Worker 33332.00000 3.333200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.333200e+04 3.333200e+04 0.00 NULL
2015 Department Of Probation Summer College Intern 2768.92857 3.876500e+04 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 3.876500e+04 3.876500e+04 0.00 NULL
2015 Department Of Probation Summer Graduate Intern 3017.16000 3.017160e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.017160e+03 3.017160e+03 0.00 NULL
2015 Department Of Probation Supervising Computer Service Technician 63711.66667 1.911350e+05 63.51 2.117000e+01 0.730 1.00 3 7.300000e-01 2.19 1.911985e+05 1.911372e+05 61.32 NULL
2015 Department Of Probation Supervising Probation Officer 70276.40936 1.201727e+07 134405.49 7.859970e+02 0.000 2671.75 171 0.000000e+00 0.00 1.215167e+07 1.201727e+07 134405.49 NULL
2015 Department Of Sanitation *Custodial Assistant 33399.00000 3.339900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.339900e+04 3.339900e+04 0.00 NULL
2015 Department Of Sanitation *Watchperson 34203.33333 1.026100e+05 0.26 8.666670e-02 0.000 0.00 3 0.000000e+00 0.00 1.026103e+05 1.026100e+05 0.26 NULL
2015 Department Of Sanitation ?Associate Engineering Technician 60114.00000 6.011400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.011400e+04 6.011400e+04 0.00 NULL
2015 Department Of Sanitation Accountant 60015.00000 3.600900e+05 83.03 1.383833e+01 4.260 0.00 6 4.260000e+00 25.56 3.601730e+05 3.601156e+05 57.47 NULL
2015 Department Of Sanitation Adm Manager-Non-Mgrl 72314.51429 2.531008e+06 130309.34 3.723124e+03 173.400 2758.25 35 1.734000e+02 6069.00 2.661317e+06 2.537077e+06 124240.34 NULL
2015 Department Of Sanitation Administrative Accountant 90598.00000 9.059800e+04 2096.23 2.096230e+03 2096.230 28.00 1 2.096230e+03 2096.23 9.269423e+04 9.269423e+04 0.00 NULL
2015 Department Of Sanitation Administrative Architect 89214.50000 1.784290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.784290e+05 1.784290e+05 0.00 NULL
2015 Department Of Sanitation Administrative Business Promotion Coordinator 94076.00000 9.407600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.407600e+04 9.407600e+04 0.00 NULL
2015 Department Of Sanitation Administrative City Planner 132061.00000 1.320610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.320610e+05 1.320610e+05 0.00 NULL
2015 Department Of Sanitation Administrative Construction Project Manager 107531.83333 6.451910e+05 20.17 3.361667e+00 0.000 0.00 6 0.000000e+00 0.00 6.452112e+05 6.451910e+05 20.17 NULL
2015 Department Of Sanitation Administrative Engineer 140061.85714 9.804330e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.804330e+05 9.804330e+05 0.00 NULL
2015 Department Of Sanitation Administrative Management Auditor 119442.00000 1.194420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.194420e+05 1.194420e+05 0.00 NULL
2015 Department Of Sanitation Administrative Manager 104112.58667 6.246755e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.246755e+05 6.246755e+05 0.00 NULL
2015 Department Of Sanitation Administrative Procurement Analyst 93923.00000 9.392300e+04 3.04 3.040000e+00 3.040 0.00 1 3.040000e+00 3.04 9.392604e+04 9.392604e+04 0.00 NULL
2015 Department Of Sanitation Administrative Project Manager 140744.40000 7.037220e+05 18785.98 3.757196e+03 0.000 323.75 5 0.000000e+00 0.00 7.225080e+05 7.037220e+05 18785.98 NULL
2015 Department Of Sanitation Administrative Public Information Specialist 144791.25000 5.791650e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.791650e+05 5.791650e+05 0.00 NULL
2015 Department Of Sanitation Administrative Sanitation Enforcement Agent 86645.00000 8.664500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.664500e+04 8.664500e+04 0.00 NULL
2015 Department Of Sanitation Administrative Staff Analyst 86109.73035 6.113791e+06 148159.89 2.086759e+03 0.000 2860.75 71 0.000000e+00 0.00 6.261951e+06 6.113791e+06 148159.89 NULL
2015 Department Of Sanitation Administrative Supervisor Of Building Maintenance 86275.00000 8.627500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.627500e+04 8.627500e+04 0.00 NULL
2015 Department Of Sanitation Agency Attorney 86703.20000 8.670320e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 8.670320e+05 8.670320e+05 0.00 NULL
2015 Department Of Sanitation Architect 84104.00000 8.410400e+04 2032.26 2.032260e+03 2032.260 31.25 1 2.032260e+03 2032.26 8.613626e+04 8.613626e+04 0.00 NULL
2015 Department Of Sanitation Assistant Architect 61565.14286 4.309560e+05 149.78 2.139714e+01 0.000 0.00 7 0.000000e+00 0.00 4.311058e+05 4.309560e+05 149.78 NULL
2015 Department Of Sanitation Assistant Civil Engineer 55904.85714 3.913340e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.913340e+05 3.913340e+05 0.00 NULL
2015 Department Of Sanitation Assistant Electrical Engineer 64182.50000 1.283650e+05 3.92 1.960000e+00 1.960 0.00 2 1.960000e+00 3.92 1.283689e+05 1.283689e+05 0.00 NULL
2015 Department Of Sanitation Assistant Mechanical Engineer 58713.50000 1.174270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.174270e+05 1.174270e+05 0.00 NULL
2015 Department Of Sanitation Associate Director-Operational Services 95307.00000 9.530700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.530700e+04 9.530700e+04 0.00 NULL
2015 Department Of Sanitation Associate Project Manager 78207.90000 7.820790e+05 7384.29 7.384290e+02 0.000 119.50 10 0.000000e+00 0.00 7.894633e+05 7.820790e+05 7384.29 NULL
2015 Department Of Sanitation Associate Public Information Specialist 70274.20000 3.513710e+05 11184.03 2.236806e+03 1945.580 257.50 5 1.945580e+03 9727.90 3.625550e+05 3.610989e+05 1456.13 NULL
2015 Department Of Sanitation Associate Quality Assurance Specialist 70710.00000 7.071000e+04 2.83 2.830000e+00 2.830 0.00 1 2.830000e+00 2.83 7.071283e+04 7.071283e+04 0.00 NULL
2015 Department Of Sanitation Associate Retirement Benefits Examiner 53211.00000 5.321100e+04 4.17 4.170000e+00 4.170 0.00 1 4.170000e+00 4.17 5.321517e+04 5.321517e+04 0.00 NULL
2015 Department Of Sanitation Associate Sanitation Enforcement Agent 45211.01786 2.531817e+06 275439.99 4.918571e+03 4341.915 8242.00 56 4.341915e+03 243147.24 2.807257e+06 2.774964e+06 32292.75 NULL
2015 Department Of Sanitation Associate Staff Analyst 73571.09091 1.618564e+06 32134.96 1.460680e+03 0.000 671.50 22 0.000000e+00 0.00 1.650699e+06 1.618564e+06 32134.96 NULL
2015 Department Of Sanitation Attorney At Law 89953.80000 4.497690e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.497690e+05 4.497690e+05 0.00 NULL
2015 Department Of Sanitation Auto Machinist NA NA 311803.15 9.448580e+03 12212.620 5801.25 33 9.448580e+03 311803.15 NA NA NA NULL
2015 Department Of Sanitation Auto Mechanic NA NA 5673610.70 1.027828e+04 10907.510 107125.92 552 1.027828e+04 5673610.70 NA NA NA NULL
2015 Department Of Sanitation Automotive Service Worker 36633.68571 1.282179e+06 144419.18 4.126262e+03 4039.260 5819.00 35 4.039260e+03 141374.10 1.426598e+06 1.423553e+06 3045.08 NULL
2015 Department Of Sanitation Blacksmith NA NA 289.44 9.648000e+01 0.000 4.00 3 0.000000e+00 0.00 NA NA NA NULL
2015 Department Of Sanitation Boiler Maker NA NA 13603.68 6.801840e+03 6801.840 188.00 2 6.801840e+03 13603.68 NA NA NA NULL
2015 Department Of Sanitation Bookkeeper 45650.31250 7.304050e+05 1686.05 1.053781e+02 0.885 42.00 16 8.850000e-01 14.16 7.320911e+05 7.304192e+05 1671.89 NULL
2015 Department Of Sanitation Carpenter NA NA 114548.49 1.041350e+04 11845.740 1723.00 11 1.041350e+04 114548.49 NA NA NA NULL
2015 Department Of Sanitation Carriage Upholsterer NA NA 4530.00 4.530000e+03 4530.000 100.00 1 4.530000e+03 4530.00 NA NA NA NULL
2015 Department Of Sanitation Case Mgmt Nurse 85619.00000 8.561900e+04 46.43 4.643000e+01 46.430 1.00 1 4.643000e+01 46.43 8.566543e+04 8.566543e+04 0.00 NULL
2015 Department Of Sanitation Cement Mason NA NA 25843.42 3.230427e+03 1618.400 351.00 8 1.618400e+03 12947.20 NA NA NA NULL
2015 Department Of Sanitation Certified It Administrator 83099.00000 8.309900e+04 32520.11 3.252011e+04 32520.110 507.00 1 3.252011e+04 32520.11 1.156191e+05 1.156191e+05 0.00 NULL
2015 Department Of Sanitation Certified It Developer 91115.00000 9.111500e+04 1110.90 1.110900e+03 1110.900 17.75 1 1.110900e+03 1110.90 9.222590e+04 9.222590e+04 0.00 NULL
2015 Department Of Sanitation Certified Local Area Network Administrator 99092.00000 9.909200e+04 18035.59 1.803559e+04 18035.590 307.00 1 1.803559e+04 18035.59 1.171276e+05 1.171276e+05 0.00 NULL
2015 Department Of Sanitation Chaplain 25925.50000 1.037020e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.037020e+05 1.037020e+05 0.00 NULL
2015 Department Of Sanitation Chauffer Attendant 45867.00000 4.586700e+04 3067.66 3.067660e+03 3067.660 86.00 1 3.067660e+03 3067.66 4.893466e+04 4.893466e+04 0.00 NULL
2015 Department Of Sanitation City Attendant 31411.94737 1.790481e+06 41572.68 7.293453e+02 24.730 1639.00 57 2.473000e+01 1409.61 1.832054e+06 1.791891e+06 40163.07 NULL
2015 Department Of Sanitation City Clinician 98945.70000 9.894570e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.894570e+04 9.894570e+04 0.00 NULL
2015 Department Of Sanitation City Custodial Assistant 39394.00000 1.181820e+05 19838.24 6.612747e+03 8778.330 658.75 3 6.612747e+03 19838.24 1.380202e+05 1.380202e+05 0.00 NULL
2015 Department Of Sanitation City Deputy Medical Director 164024.00000 1.640240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.640240e+05 1.640240e+05 0.00 NULL
2015 Department Of Sanitation City Laborer NA NA 98982.74 7.070196e+03 3367.485 1787.25 14 3.367485e+03 47144.79 NA NA NA NULL
2015 Department Of Sanitation City Medical Specialist 51946.49515 4.155720e+05 124.57 1.557125e+01 0.000 1.75 8 0.000000e+00 0.00 4.156965e+05 4.155720e+05 124.57 NULL
2015 Department Of Sanitation City Planner 70029.50000 1.400590e+05 1315.52 6.577600e+02 657.760 40.00 2 6.577600e+02 1315.52 1.413745e+05 1.413745e+05 0.00 NULL
2015 Department Of Sanitation City Research Scientist 88068.25000 3.522730e+05 22513.17 5.628292e+03 4602.760 386.75 4 4.602760e+03 18411.04 3.747862e+05 3.706840e+05 4102.13 NULL
2015 Department Of Sanitation City Seasonal Aide 366.41668 8.819650e+05 272.01 1.130079e-01 0.000 0.00 2407 0.000000e+00 0.00 8.822370e+05 8.819650e+05 272.01 NULL
2015 Department Of Sanitation Civil Engineer 87804.00000 4.390200e+05 9951.82 1.990364e+03 0.000 128.50 5 0.000000e+00 0.00 4.489718e+05 4.390200e+05 9951.82 NULL
2015 Department Of Sanitation Clerical Aide 27022.23333 8.106670e+05 75437.96 2.514599e+03 2172.085 4245.50 30 2.172085e+03 65162.55 8.861050e+05 8.758296e+05 10275.41 NULL
2015 Department Of Sanitation Clerical Associate 38586.08191 1.130572e+07 1185039.19 4.044502e+03 1956.960 39070.00 293 1.956960e+03 573389.28 1.249076e+07 1.187911e+07 611649.91 NULL
2015 Department Of Sanitation College Aide 6578.30559 4.210116e+05 0.00 0.000000e+00 0.000 0.00 64 0.000000e+00 0.00 4.210116e+05 4.210116e+05 0.00 NULL
2015 Department Of Sanitation Commissioner Of Sanitation 214413.00000 2.144130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144130e+05 2.144130e+05 0.00 NULL
2015 Department Of Sanitation Community Assistant 31932.07812 5.109132e+05 9658.00 6.036250e+02 2.100 351.25 16 2.100000e+00 33.60 5.205712e+05 5.109468e+05 9624.40 NULL
2015 Department Of Sanitation Community Associate 42191.95122 1.729870e+06 40778.96 9.946088e+02 0.620 1457.00 41 6.200000e-01 25.42 1.770649e+06 1.729895e+06 40753.54 NULL
2015 Department Of Sanitation Community Coordinator 57650.70000 1.729521e+06 70375.38 2.345846e+03 192.470 1735.00 30 1.924700e+02 5774.10 1.799896e+06 1.735295e+06 64601.28 NULL
2015 Department Of Sanitation Computer Aide-Non-Spvr 47955.20000 2.397760e+05 22615.95 4.523190e+03 2340.000 605.50 5 2.340000e+03 11700.00 2.623920e+05 2.514760e+05 10915.95 NULL
2015 Department Of Sanitation Computer Associate 65200.45833 1.564811e+06 72446.64 3.018610e+03 124.520 1491.75 24 1.245200e+02 2988.48 1.637258e+06 1.567799e+06 69458.16 NULL
2015 Department Of Sanitation Computer Programmer Analyst 71844.00000 7.184400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.184400e+04 7.184400e+04 0.00 NULL
2015 Department Of Sanitation Computer Service Technician 45020.66667 1.350620e+05 2970.48 9.901600e+02 14.910 64.00 3 1.491000e+01 44.73 1.380325e+05 1.351067e+05 2925.75 NULL
2015 Department Of Sanitation Computer Specialist 94491.31250 3.023722e+06 248214.90 7.756716e+03 1887.825 3894.25 32 1.887825e+03 60410.40 3.271937e+06 3.084132e+06 187804.50 NULL
2015 Department Of Sanitation Computer Systems Manager 132573.87097 4.109790e+06 8522.71 2.749261e+02 0.000 118.75 31 0.000000e+00 0.00 4.118313e+06 4.109790e+06 8522.71 NULL
2015 Department Of Sanitation Construction Laborer NA NA 80733.05 7.339368e+03 6723.070 1497.50 11 6.723070e+03 73953.77 NA NA NA NULL
2015 Department Of Sanitation Construction Project Manager 79102.16667 4.746130e+05 370.04 6.167333e+01 0.000 9.00 6 0.000000e+00 0.00 4.749830e+05 4.746130e+05 370.04 NULL
2015 Department Of Sanitation Counselor 73689.00000 7.368900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.368900e+04 7.368900e+04 0.00 NULL
2015 Department Of Sanitation Custodian 34508.00000 3.450800e+04 21.84 2.184000e+01 21.840 0.00 1 2.184000e+01 21.84 3.452984e+04 3.452984e+04 0.00 NULL
2015 Department Of Sanitation Dep Dir Mtr Eq Mntc 137560.00000 1.375600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.375600e+05 1.375600e+05 0.00 NULL
2015 Department Of Sanitation Deputy Commissioner 191399.50000 7.655980e+05 6.09 1.522500e+00 0.000 0.00 4 0.000000e+00 0.00 7.656041e+05 7.655980e+05 6.09 NULL
2015 Department Of Sanitation Deputy Director Of Motor Equipment Maintenance 129039.00000 3.871170e+05 22263.89 7.421297e+03 6040.360 285.50 3 6.040360e+03 18121.08 4.093809e+05 4.052381e+05 4142.81 NULL
2015 Department Of Sanitation Director Of Building Management 147913.00000 1.479130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.479130e+05 1.479130e+05 0.00 NULL
2015 Department Of Sanitation Director Of Motor Equipment Maintenance 158462.25000 6.338490e+05 6396.30 1.599075e+03 0.000 73.00 4 0.000000e+00 0.00 6.402453e+05 6.338490e+05 6396.30 NULL
2015 Department Of Sanitation Economist 61986.00000 6.198600e+04 80.98 8.098000e+01 80.980 1.50 1 8.098000e+01 80.98 6.206698e+04 6.206698e+04 0.00 NULL
2015 Department Of Sanitation Electrical Engineer 80751.00000 1.615020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.615020e+05 1.615020e+05 0.00 NULL
2015 Department Of Sanitation Electrician NA NA 554674.16 1.008498e+04 8636.250 9550.00 55 8.636250e+03 474993.75 NA NA NA NULL
2015 Department Of Sanitation Estimator 60358.50000 2.414340e+05 43.48 1.087000e+01 0.000 0.00 4 0.000000e+00 0.00 2.414775e+05 2.414340e+05 43.48 NULL
2015 Department Of Sanitation Executive Agency Counsel 124283.50000 4.971340e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.971340e+05 4.971340e+05 0.00 NULL
2015 Department Of Sanitation Executive Assistant To The Commissioner 96422.00000 9.642200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.642200e+04 9.642200e+04 0.00 NULL
2015 Department Of Sanitation General Superintendent 125210.96417 3.843977e+07 5544954.88 1.806174e+04 17538.840 63676.26 307 1.753884e+04 5384423.88 4.398472e+07 4.382419e+07 160531.00 NULL
2015 Department Of Sanitation Graphic Artist 61645.66667 1.849370e+05 212.12 7.070667e+01 100.440 6.75 3 7.070667e+01 212.12 1.851491e+05 1.851491e+05 0.00 NULL
2015 Department Of Sanitation High Pressure Plant Tender NA NA 53331.78 7.618826e+03 6395.400 1063.50 7 6.395400e+03 44767.80 NA NA NA NULL
2015 Department Of Sanitation Incinerator Facility Manager 98756.00000 9.875600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.875600e+04 9.875600e+04 0.00 NULL
2015 Department Of Sanitation Investigator 49004.61538 6.370600e+05 209.60 1.612308e+01 0.000 10.00 13 0.000000e+00 0.00 6.372696e+05 6.370600e+05 209.60 NULL
2015 Department Of Sanitation Job Training Participant 2728.33932 1.072237e+06 36.00 9.160310e-02 0.000 0.00 393 0.000000e+00 0.00 1.072273e+06 1.072237e+06 36.00 NULL
2015 Department Of Sanitation Laboratory Associate 42939.00000 4.293900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.293900e+04 4.293900e+04 0.00 NULL
2015 Department Of Sanitation Laboratory Microbiologist 50000.00000 5.000000e+04 0.96 9.600000e-01 0.960 0.00 1 9.600000e-01 0.96 5.000096e+04 5.000096e+04 0.00 NULL
2015 Department Of Sanitation Letterer And Sign Painter NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2015 Department Of Sanitation Machinist NA NA 49608.04 5.512004e+03 5394.370 1000.50 9 5.394370e+03 48549.33 NA NA NA NULL
2015 Department Of Sanitation Maintenance Worker NA NA 9685.37 3.725142e+02 0.000 257.00 26 0.000000e+00 0.00 NA NA NA NULL
2015 Department Of Sanitation Management Auditor 74861.66667 2.245850e+05 21.37 7.123333e+00 0.000 0.00 3 0.000000e+00 0.00 2.246064e+05 2.245850e+05 21.37 NULL
2015 Department Of Sanitation Mechanical Engineer 71840.00000 2.873600e+05 17.51 4.377500e+00 0.000 0.00 4 0.000000e+00 0.00 2.873775e+05 2.873600e+05 17.51 NULL
2015 Department Of Sanitation Medical Director 170828.00000 1.708280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.708280e+05 1.708280e+05 0.00 NULL
2015 Department Of Sanitation Medical Record Librarian 48489.87500 3.879190e+05 64.14 8.017500e+00 0.000 2.00 8 0.000000e+00 0.00 3.879831e+05 3.879190e+05 64.14 NULL
2015 Department Of Sanitation Metal Work Mechanic 83195.50000 4.159775e+06 452718.84 9.054377e+03 7611.715 7652.08 50 7.611715e+03 380585.75 4.612494e+06 4.540361e+06 72133.09 NULL
2015 Department Of Sanitation Motor Vehicle Operator 43908.75000 3.512700e+05 22344.05 2.793006e+03 528.095 683.75 8 5.280950e+02 4224.76 3.736140e+05 3.554948e+05 18119.29 NULL
2015 Department Of Sanitation Motor Vehicle Supervisor 51119.00000 5.111900e+04 18579.88 1.857988e+04 18579.880 495.50 1 1.857988e+04 18579.88 6.969888e+04 6.969888e+04 0.00 NULL
2015 Department Of Sanitation Office Machine Aide 36271.20000 1.813560e+05 236.81 4.736200e+01 10.630 7.00 5 1.063000e+01 53.15 1.815928e+05 1.814091e+05 183.66 NULL
2015 Department Of Sanitation Oiler NA NA 23027.52 5.756880e+03 3953.520 348.00 4 3.953520e+03 15814.08 NA NA NA NULL
2015 Department Of Sanitation Painter NA NA 15176.93 5.058977e+03 4296.760 281.75 3 4.296760e+03 12890.28 NA NA NA NULL
2015 Department Of Sanitation Photographer 51656.00000 5.165600e+04 3538.24 3.538240e+03 3538.240 120.50 1 3.538240e+03 3538.24 5.519424e+04 5.519424e+04 0.00 NULL
2015 Department Of Sanitation Plumber NA NA 130176.50 1.446406e+04 10547.550 1450.00 9 1.054755e+04 94927.95 NA NA NA NULL
2015 Department Of Sanitation Principal Administrative Associate 52982.10000 3.708747e+06 337417.04 4.820243e+03 516.040 8545.50 70 5.160400e+02 36122.80 4.046164e+06 3.744870e+06 301294.24 NULL
2015 Department Of Sanitation Procurement Analyst 52575.00000 1.051500e+06 13833.84 6.916920e+02 37.455 425.25 20 3.745500e+01 749.10 1.065334e+06 1.052249e+06 13084.74 NULL
2015 Department Of Sanitation Project Manager 60779.50000 2.431180e+05 459.62 1.149050e+02 46.070 11.00 4 4.607000e+01 184.28 2.435776e+05 2.433023e+05 275.34 NULL
2015 Department Of Sanitation Research Assistant 51099.57143 3.576970e+05 8145.54 1.163649e+03 0.000 204.25 7 0.000000e+00 0.00 3.658425e+05 3.576970e+05 8145.54 NULL
2015 Department Of Sanitation Rubber Tire Repairer NA NA 27136.71 2.261392e+03 2345.265 720.00 12 2.261392e+03 27136.71 NA NA NA NULL
2015 Department Of Sanitation Sanitation Compliance Agent 35059.81818 3.856580e+05 258.96 2.354182e+01 0.000 10.00 11 0.000000e+00 0.00 3.859170e+05 3.856580e+05 258.96 NULL
2015 Department Of Sanitation Sanitation Enforcement Agent 33259.57949 6.485618e+06 473697.30 2.429217e+03 2229.420 19842.25 195 2.229420e+03 434736.90 6.959315e+06 6.920355e+06 38960.40 NULL
2015 Department Of Sanitation Sanitation Worker 64006.52556 4.156584e+08 87215925.61 1.343023e+04 13583.985 1874354.69 6494 1.343023e+04 87215925.61 5.028743e+08 5.028743e+08 0.00 NULL
2015 Department Of Sanitation Secretary 44427.55556 3.998480e+05 9975.32 1.108369e+03 822.030 328.75 9 8.220300e+02 7398.27 4.098233e+05 4.072463e+05 2577.05 NULL
2015 Department Of Sanitation Secretary To The Commissioner 78892.00000 7.889200e+04 13.14 1.314000e+01 13.140 0.00 1 1.314000e+01 13.14 7.890514e+04 7.890514e+04 0.00 NULL
2015 Department Of Sanitation Senior Automotive Specialist 85621.00000 8.562100e+04 12343.60 1.234360e+04 12343.600 186.00 1 1.234360e+04 12343.60 9.796460e+04 9.796460e+04 0.00 NULL
2015 Department Of Sanitation Senior Estimator 79577.40000 3.978870e+05 153.54 3.070800e+01 3.820 2.00 5 3.820000e+00 19.10 3.980405e+05 3.979061e+05 134.44 NULL
2015 Department Of Sanitation Senior Stationary Engineer NA NA 97625.04 1.952501e+04 20975.020 1192.50 5 1.952501e+04 97625.04 NA NA NA NULL
2015 Department Of Sanitation Sheet Metal Worker NA NA 58805.04 7.350630e+03 7941.360 603.50 8 7.350630e+03 58805.04 NA NA NA NULL
2015 Department Of Sanitation Staff Analyst 56600.47188 9.056076e+05 26734.97 1.670936e+03 0.000 639.50 16 0.000000e+00 0.00 9.323425e+05 9.056076e+05 26734.97 NULL
2015 Department Of Sanitation Staff Nurse 73431.50000 4.405890e+05 551.88 9.198000e+01 25.125 9.75 6 2.512500e+01 150.75 4.411409e+05 4.407398e+05 401.13 NULL
2015 Department Of Sanitation Stationary Engineer NA NA 233315.87 7.777196e+03 6586.540 3410.00 30 6.586540e+03 197596.20 NA NA NA NULL
2015 Department Of Sanitation Statistician 50994.00000 5.099400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.099400e+04 5.099400e+04 0.00 NULL
2015 Department Of Sanitation Steam Fitter NA NA 264858.56 2.942873e+04 30915.720 2753.00 9 2.942873e+04 264858.56 NA NA NA NULL
2015 Department Of Sanitation Steam Fitter’s Helper NA NA 2783.12 1.391560e+03 1391.560 38.00 2 1.391560e+03 2783.12 NA NA NA NULL
2015 Department Of Sanitation Stock Worker 37615.42857 2.633080e+05 32468.62 4.638374e+03 4946.640 1473.25 7 4.638374e+03 32468.62 2.957766e+05 2.957766e+05 0.00 NULL
2015 Department Of Sanitation Summer College Intern 2647.42727 4.235884e+04 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 4.235884e+04 4.235884e+04 0.00 NULL
2015 Department Of Sanitation Summer Graduate Intern 5478.82156 4.930939e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.930939e+04 4.930939e+04 0.00 NULL
2015 Department Of Sanitation Supervising Computer Service Technician 64906.00000 1.947180e+05 19130.47 6.376823e+03 5357.160 427.75 3 5.357160e+03 16071.48 2.138485e+05 2.107895e+05 3058.99 NULL
2015 Department Of Sanitation Supervising Hull & Machinery Inspector 68612.00000 6.861200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.861200e+04 6.861200e+04 0.00 NULL
2015 Department Of Sanitation Supervisor 88748.08522 9.788914e+07 22299803.89 2.021741e+04 20130.440 325801.82 1103 2.013044e+04 22203875.32 1.201889e+08 1.200930e+08 95928.57 NULL
2015 Department Of Sanitation Supervisor Carpenter NA NA 52484.18 2.624209e+04 26242.090 723.00 2 2.624209e+04 52484.18 NA NA NA NULL
2015 Department Of Sanitation Supervisor Electrician NA NA 45478.51 1.136963e+04 6290.815 609.00 4 6.290815e+03 25163.26 NA NA NA NULL
2015 Department Of Sanitation Supervisor Of Ironwork 105601.00000 2.112020e+05 52307.13 2.615356e+04 26153.565 720.00 2 2.615356e+04 52307.13 2.635091e+05 2.635091e+05 0.00 NULL
2015 Department Of Sanitation Supervisor Of Mechanical Installations & Maintenance 70370.00000 7.037000e+04 1.89 1.890000e+00 1.890 0.00 1 1.890000e+00 1.89 7.037189e+04 7.037189e+04 0.00 NULL
2015 Department Of Sanitation Supervisor Of Mechanics 107942.62667 8.095697e+06 1200164.91 1.600220e+04 18256.060 16366.50 75 1.600220e+04 1200164.91 9.295862e+06 9.295862e+06 0.00 NULL
2015 Department Of Sanitation Supervisor Of Office Machine Operations 41267.25000 1.650690e+05 7334.15 1.833537e+03 410.465 278.25 4 4.104650e+02 1641.86 1.724031e+05 1.667109e+05 5692.29 NULL
2015 Department Of Sanitation Supervisor Of Stock Workers 50171.54545 1.103774e+06 211984.54 9.635661e+03 10904.310 6131.25 22 9.635661e+03 211984.54 1.315759e+06 1.315759e+06 0.00 NULL
2015 Department Of Sanitation Supervisor Plumber NA NA 55932.09 2.796604e+04 27966.045 622.75 2 2.796604e+04 55932.09 NA NA NA NULL
2015 Department Of Sanitation Supervisor Sheet Metal Worker NA NA 15188.04 1.518804e+04 15188.040 195.00 1 1.518804e+04 15188.04 NA NA NA NULL
2015 Department Of Sanitation Supervisor Steamfitter NA NA 28685.25 1.434262e+04 14342.625 297.50 2 1.434262e+04 28685.25 NA NA NA NULL
2015 Department Of Sanitation Surveyor 74576.00000 7.457600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.457600e+04 7.457600e+04 0.00 NULL
2015 Department Of Sanitation Telecommunications Associate 70853.66667 4.251220e+05 32481.85 5.413642e+03 1513.795 597.75 6 1.513795e+03 9082.77 4.576038e+05 4.342048e+05 23399.08 NULL
2015 Department Of Sanitation Thermostat Repairer NA NA 51991.30 1.299783e+04 12882.800 598.00 4 1.288280e+04 51531.20 NA NA NA NULL
2015 Department Of Sanitation Tractor Operator NA NA 32470.15 8.117538e+03 7756.335 330.25 4 7.756335e+03 31025.34 NA NA NA NULL
2015 Department Of Sanitation Welder NA NA 113302.36 1.618605e+04 17567.040 1475.00 7 1.618605e+04 113302.36 NA NA NA NULL
2015 Department Of Transportation *Certified Wide Area Network Administrator 100284.00000 1.002840e+05 3224.70 3.224700e+03 3224.700 54.50 1 3.224700e+03 3224.70 1.035087e+05 1.035087e+05 0.00 NULL
2015 Department Of Transportation Accountant 53775.46667 1.613264e+06 32956.87 1.098562e+03 0.000 730.50 30 0.000000e+00 0.00 1.646221e+06 1.613264e+06 32956.87 NULL
2015 Department Of Transportation Adm Manager-Non-Mgrl 69266.51852 9.350980e+06 799772.96 5.924244e+03 1777.950 16431.75 135 1.777950e+03 240023.25 1.015075e+07 9.591003e+06 559749.71 NULL
2015 Department Of Transportation Admin Community Relations Specialist 107103.80000 5.355190e+05 36125.49 7.225098e+03 6609.200 516.00 5 6.609200e+03 33046.00 5.716445e+05 5.685650e+05 3079.49 NULL
2015 Department Of Transportation Admin Contract Specialist 119071.00000 1.190710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.190710e+05 1.190710e+05 0.00 NULL
2015 Department Of Transportation Administrative Accountant 116506.00000 3.495180e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.495180e+05 3.495180e+05 0.00 NULL
2015 Department Of Transportation Administrative City Planner 117636.44444 1.058728e+06 14.19 1.576667e+00 0.000 0.00 9 0.000000e+00 0.00 1.058742e+06 1.058728e+06 14.19 NULL
2015 Department Of Transportation Administrative Community Relations Specialist 122029.00000 1.220290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.220290e+05 1.220290e+05 0.00 NULL
2015 Department Of Transportation Administrative Director Of Marine Maintenance 137255.00000 1.372550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.372550e+05 1.372550e+05 0.00 NULL
2015 Department Of Transportation Administrative Engineer 121191.82540 7.635085e+06 2364.91 3.753825e+01 0.000 0.00 63 0.000000e+00 0.00 7.637450e+06 7.635085e+06 2364.91 NULL
2015 Department Of Transportation Administrative Graphic Artist 94708.00000 9.470800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.470800e+04 9.470800e+04 0.00 NULL
2015 Department Of Transportation Administrative Inspector 107165.81818 1.178824e+06 785.24 7.138545e+01 0.000 0.00 11 0.000000e+00 0.00 1.179609e+06 1.178824e+06 785.24 NULL
2015 Department Of Transportation Administrative Investigator 84174.00000 8.417400e+04 241.02 2.410200e+02 241.020 0.00 1 2.410200e+02 241.02 8.441502e+04 8.441502e+04 0.00 NULL
2015 Department Of Transportation Administrative Management Auditor 92222.00000 9.222200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.222200e+04 9.222200e+04 0.00 NULL
2015 Department Of Transportation Administrative Manager 107736.22222 9.696260e+05 12561.66 1.395740e+03 0.000 145.50 9 0.000000e+00 0.00 9.821877e+05 9.696260e+05 12561.66 NULL
2015 Department Of Transportation Administrative Procurement Analyst 98705.50000 3.948220e+05 53521.10 1.338027e+04 551.355 741.25 4 5.513550e+02 2205.42 4.483431e+05 3.970274e+05 51315.68 NULL
2015 Department Of Transportation Administrative Project Manager 121580.87805 4.984816e+06 940.36 2.293561e+01 0.000 20.75 41 0.000000e+00 0.00 4.985756e+06 4.984816e+06 940.36 NULL
2015 Department Of Transportation Administrative Public Information Specialist 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2015 Department Of Transportation Administrative Real Property Manager 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2015 Department Of Transportation Administrative Space Analyst 118589.00000 1.185890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.185890e+05 1.185890e+05 0.00 NULL
2015 Department Of Transportation Administrative Staff Analyst 99533.95699 9.256658e+06 432020.37 4.645380e+03 0.000 7311.25 93 0.000000e+00 0.00 9.688678e+06 9.256658e+06 432020.37 NULL
2015 Department Of Transportation Administrative Superintendent Of Bridge Operations 96206.00000 9.620600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.620600e+04 9.620600e+04 0.00 NULL
2015 Department Of Transportation Administrative Superintendent Of Highway Operations 113948.95833 2.734775e+06 2046.24 8.526000e+01 0.000 0.00 24 0.000000e+00 0.00 2.736821e+06 2.734775e+06 2046.24 NULL
2015 Department Of Transportation Administrative Transportation Coordinator 129220.62500 2.067530e+06 329.17 2.057313e+01 0.000 0.00 16 0.000000e+00 0.00 2.067859e+06 2.067530e+06 329.17 NULL
2015 Department Of Transportation Agency Attorney 80930.82353 1.375824e+06 2192.32 1.289600e+02 0.000 62.00 17 0.000000e+00 0.00 1.378016e+06 1.375824e+06 2192.32 NULL
2015 Department Of Transportation Agency Attorney Intern 62046.00000 1.240920e+05 855.04 4.275200e+02 427.520 20.50 2 4.275200e+02 855.04 1.249470e+05 1.249470e+05 0.00 NULL
2015 Department Of Transportation Agency Chief Contracting Officer 162950.00000 1.629500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.629500e+05 1.629500e+05 0.00 NULL
2015 Department Of Transportation Apprentice Inspector 34655.06329 2.703095e+06 237664.61 3.046982e+03 359.685 9292.75 78 3.596850e+02 28055.43 2.940760e+06 2.731150e+06 209609.18 NULL
2015 Department Of Transportation Area Supervisor 97075.36170 4.562542e+06 2510473.08 5.341432e+04 54034.310 33474.75 47 5.341432e+04 2510473.08 7.073015e+06 7.073015e+06 0.00 NULL
2015 Department Of Transportation Assistant Accountant 49808.00000 4.980800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.980800e+04 4.980800e+04 0.00 NULL
2015 Department Of Transportation Assistant Architect 55345.00000 5.534500e+04 5.11 5.110000e+00 5.110 0.00 1 5.110000e+00 5.11 5.535011e+04 5.535011e+04 0.00 NULL
2015 Department Of Transportation Assistant Captain 63014.00000 8.191820e+05 458703.51 3.528489e+04 35559.840 6884.00 13 3.528489e+04 458703.51 1.277886e+06 1.277886e+06 0.00 NULL
2015 Department Of Transportation Assistant City Highway Repairer 37235.69951 1.299526e+07 2216874.08 6.352075e+03 4989.810 64224.32 349 4.989810e+03 1741443.69 1.521213e+07 1.473670e+07 475430.39 NULL
2015 Department Of Transportation Assistant Civil Engineer 61568.77228 6.218446e+06 616074.37 6.099746e+03 616.020 12912.25 101 6.160200e+02 62218.02 6.834520e+06 6.280664e+06 553856.35 NULL
2015 Department Of Transportation Assistant Commissioner 151721.50000 3.034430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.034430e+05 3.034430e+05 0.00 NULL
2015 Department Of Transportation Assistant Director 107492.00000 1.074920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074920e+05 1.074920e+05 0.00 NULL
2015 Department Of Transportation Assistant Electrical Engineer 59738.94595 2.210341e+06 237381.43 6.415714e+03 757.530 5184.50 37 7.575300e+02 28028.61 2.447722e+06 2.238370e+06 209352.82 NULL
2015 Department Of Transportation Assistant Environmental Engineer 73663.00000 7.366300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.366300e+04 7.366300e+04 0.00 NULL
2015 Department Of Transportation Assistant Highway Transportation Specialist 49892.89474 9.479650e+05 27404.90 1.442363e+03 17.200 876.75 19 1.720000e+01 326.80 9.753699e+05 9.482918e+05 27078.10 NULL
2015 Department Of Transportation Assistant Mechanical Engineer 62965.37500 5.037230e+05 80514.44 1.006431e+04 6404.350 1623.75 8 6.404350e+03 51234.80 5.842374e+05 5.549578e+05 29279.64 NULL
2015 Department Of Transportation Assistant Printing Press Operator 45737.00000 9.147400e+04 319.14 1.595700e+02 159.570 41.00 2 1.595700e+02 319.14 9.179314e+04 9.179314e+04 0.00 NULL
2015 Department Of Transportation Assistant To The Deputy Commissioner 108940.00000 1.089400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.089400e+05 1.089400e+05 0.00 NULL
2015 Department Of Transportation Assistant Urban Designer 57196.24375 1.143925e+05 205.88 1.029400e+02 102.940 7.00 2 1.029400e+02 205.88 1.145984e+05 1.145984e+05 0.00 NULL
2015 Department Of Transportation Associate Inspector 67119.43750 2.147822e+06 476031.23 1.487598e+04 12890.890 9850.50 32 1.289089e+04 412508.48 2.623853e+06 2.560330e+06 63522.75 NULL
2015 Department Of Transportation Associate Investigator 57023.00000 5.702300e+05 51393.23 5.139323e+03 45.030 1129.25 10 4.503000e+01 450.30 6.216232e+05 5.706803e+05 50942.93 NULL
2015 Department Of Transportation Associate Operations Communications Specialist 53499.25000 2.139970e+05 33258.15 8.314538e+03 5328.260 785.50 4 5.328260e+03 21313.04 2.472551e+05 2.353100e+05 11945.11 NULL
2015 Department Of Transportation Associate Project Manager 77055.40000 6.549709e+06 704254.81 8.285351e+03 2863.440 12791.50 85 2.863440e+03 243392.40 7.253964e+06 6.793101e+06 460862.41 NULL
2015 Department Of Transportation Associate Public Information Specialist 65650.00000 6.565000e+04 2678.06 2.678060e+03 2678.060 25.25 1 2.678060e+03 2678.06 6.832806e+04 6.832806e+04 0.00 NULL
2015 Department Of Transportation Associate Quality Assurance Specialist 59183.75000 2.367350e+05 80591.66 2.014792e+04 15974.315 1917.25 4 1.597432e+04 63897.26 3.173267e+05 3.006323e+05 16694.40 NULL
2015 Department Of Transportation Associate Staff Analyst 76142.34772 6.624384e+06 533109.96 6.127701e+03 153.750 9908.25 87 1.537500e+02 13376.25 7.157494e+06 6.637761e+06 519733.71 NULL
2015 Department Of Transportation Associate Urban Designer 97143.00000 1.942860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.942860e+05 1.942860e+05 0.00 NULL
2015 Department Of Transportation Auto Machinist NA NA 89089.38 4.454469e+04 44544.690 1624.00 2 4.454469e+04 89089.38 NA NA NA NULL
2015 Department Of Transportation Auto Body Worker 50320.00000 1.006400e+05 23302.75 1.165138e+04 11651.375 669.75 2 1.165138e+04 23302.75 1.239428e+05 1.239428e+05 0.00 NULL
2015 Department Of Transportation Auto Mechanic NA NA 1824205.35 1.788437e+04 18955.550 34039.25 102 1.788437e+04 1824205.35 NA NA NA NULL
2015 Department Of Transportation Automotive Service Worker 40397.00000 3.231760e+05 38656.74 4.832092e+03 4507.540 1381.75 8 4.507540e+03 36060.32 3.618327e+05 3.592363e+05 2596.42 NULL
2015 Department Of Transportation Blacksmith NA NA 82442.16 2.061054e+04 20444.715 1130.00 4 2.044472e+04 81778.86 NA NA NA NULL
2015 Department Of Transportation Blacksmith’s Helper NA NA 15059.93 1.505993e+04 15059.930 287.50 1 1.505993e+04 15059.93 NA NA NA NULL
2015 Department Of Transportation Boiler Maker NA NA 249575.67 2.773063e+04 29323.890 3419.00 9 2.773063e+04 249575.67 NA NA NA NULL
2015 Department Of Transportation Bookkeeper 42300.11111 3.807010e+05 654.70 7.274444e+01 3.460 27.50 9 3.460000e+00 31.14 3.813557e+05 3.807321e+05 623.56 NULL
2015 Department Of Transportation Bricklayer NA NA 331439.62 5.523994e+04 58454.490 5322.75 6 5.523994e+04 331439.62 NA NA NA NULL
2015 Department Of Transportation Bridge Operator 37603.13580 3.045854e+06 557561.36 6.883474e+03 4524.640 18633.91 81 4.524640e+03 366495.84 3.603415e+06 3.412350e+06 191065.52 NULL
2015 Department Of Transportation Bridge Painter NA NA 233981.00 1.063550e+04 9845.000 2519.25 22 9.845000e+03 216590.00 NA NA NA NULL
2015 Department Of Transportation Bridge Repairer And Riveter NA NA 2402980.47 5.588327e+04 60547.020 42543.17 43 5.588327e+04 2402980.47 NA NA NA NULL
2015 Department Of Transportation Captain 70926.00000 1.276668e+06 855204.91 4.751138e+04 45360.930 12007.50 18 4.536093e+04 816496.74 2.131873e+06 2.093165e+06 38708.17 NULL
2015 Department Of Transportation Carpenter NA NA 945876.15 4.504172e+04 42742.280 15029.25 21 4.274228e+04 897587.88 NA NA NA NULL
2015 Department Of Transportation Cement Mason NA NA 1329893.95 8.311837e+04 67993.030 16677.25 16 6.799303e+04 1087888.48 NA NA NA NULL
2015 Department Of Transportation Certified It Administrator 107403.70000 1.074037e+06 315244.47 3.152445e+04 31711.675 4166.75 10 3.152445e+04 315244.47 1.389281e+06 1.389281e+06 0.00 NULL
2015 Department Of Transportation Certified It Developer 98356.25000 3.934250e+05 41106.21 1.027655e+04 4030.020 556.50 4 4.030020e+03 16120.08 4.345312e+05 4.095451e+05 24986.13 NULL
2015 Department Of Transportation Certified Local Area Network Administrator 96855.00000 9.685500e+04 89.58 8.958000e+01 89.580 0.00 1 8.958000e+01 89.58 9.694458e+04 9.694458e+04 0.00 NULL
2015 Department Of Transportation Chief Marine Engineer 68789.00000 1.788514e+06 1601545.36 6.159790e+04 68055.120 23698.50 26 6.159790e+04 1601545.36 3.390059e+06 3.390059e+06 0.00 NULL
2015 Department Of Transportation City Attendant 33962.19591 1.562261e+06 109941.20 2.390026e+03 1414.445 4490.67 46 1.414445e+03 65064.47 1.672202e+06 1.627325e+06 44876.73 NULL
2015 Department Of Transportation City Custodial Assistant 28839.82212 1.441991e+05 2514.22 5.028440e+02 1.680 94.00 5 1.680000e+00 8.40 1.467133e+05 1.442075e+05 2505.82 NULL
2015 Department Of Transportation City Debris Remover 38052.88383 6.088461e+05 63358.51 3.959907e+03 4354.925 2367.25 16 3.959907e+03 63358.51 6.722047e+05 6.722047e+05 0.00 NULL
2015 Department Of Transportation City Laborer NA NA 236238.07 1.312434e+04 10939.075 4854.75 18 1.093908e+04 196903.35 NA NA NA NULL
2015 Department Of Transportation City Parking Equipment Service Worker 38062.33333 4.910041e+06 904766.26 7.013692e+03 5066.310 30165.42 129 5.066310e+03 653553.99 5.814807e+06 5.563595e+06 251212.27 NULL
2015 Department Of Transportation City Planner 74426.64516 6.921678e+06 291477.27 3.134164e+03 290.730 5660.25 93 2.907300e+02 27037.89 7.213155e+06 6.948716e+06 264439.38 NULL
2015 Department Of Transportation City Planning Technician 41652.51420 1.374533e+06 35643.79 1.080115e+03 353.050 1530.00 33 3.530500e+02 11650.65 1.410177e+06 1.386184e+06 23993.14 NULL
2015 Department Of Transportation City Research Scientist 81856.12500 6.548490e+05 42762.29 5.345286e+03 66.550 497.25 8 6.655000e+01 532.40 6.976113e+05 6.553814e+05 42229.89 NULL
2015 Department Of Transportation City Seasonal Aide 7812.41000 2.343723e+04 2774.16 9.247200e+02 0.000 225.00 3 0.000000e+00 0.00 2.621139e+04 2.343723e+04 2774.16 NULL
2015 Department Of Transportation City Tax Auditor 48579.00000 4.857900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.857900e+04 4.857900e+04 0.00 NULL
2015 Department Of Transportation Civil Engineer 86146.90435 9.906894e+06 844856.70 7.346580e+03 1669.420 13406.00 115 1.669420e+03 191983.30 1.075175e+07 1.009888e+07 652873.40 NULL
2015 Department Of Transportation Civil Engineering Intern 46871.50000 3.749720e+05 2417.12 3.021400e+02 1.665 70.00 8 1.665000e+00 13.32 3.773891e+05 3.749853e+05 2403.80 NULL
2015 Department Of Transportation Clerical Aide 36226.00000 3.622600e+04 5.19 5.190000e+00 5.190 0.00 1 5.190000e+00 5.19 3.623119e+04 3.623119e+04 0.00 NULL
2015 Department Of Transportation Clerical Associate 39827.75924 1.202798e+07 703700.63 2.330135e+03 59.705 22238.32 302 5.970500e+01 18030.91 1.273168e+07 1.204601e+07 685669.72 NULL
2015 Department Of Transportation Climber & Pruner 59918.20000 5.991820e+05 154382.58 1.543826e+04 18989.420 3422.00 10 1.543826e+04 154382.58 7.535646e+05 7.535646e+05 0.00 NULL
2015 Department Of Transportation College Aide 4770.75976 3.005579e+05 0.00 0.000000e+00 0.000 0.00 63 0.000000e+00 0.00 3.005579e+05 3.005579e+05 0.00 NULL
2015 Department Of Transportation College Aide - Assignment Levels Ii And Iii 6902.33006 8.282796e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 8.282796e+04 8.282796e+04 0.00 NULL
2015 Department Of Transportation Commissioner Of Transportation 214413.00000 2.144130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144130e+05 2.144130e+05 0.00 NULL
2015 Department Of Transportation Community Assistant 32831.23227 6.894559e+05 49753.06 2.369193e+03 117.170 2109.25 21 1.171700e+02 2460.57 7.392089e+05 6.919164e+05 47292.49 NULL
2015 Department Of Transportation Community Associate 45261.91685 1.267334e+06 79892.63 2.853308e+03 638.905 2414.25 28 6.389050e+02 17889.34 1.347226e+06 1.285223e+06 62003.29 NULL
2015 Department Of Transportation Community Coordinator 59339.99810 4.035120e+06 180865.78 2.659791e+03 922.860 4704.25 68 9.228600e+02 62754.48 4.215986e+06 4.097874e+06 118111.30 NULL
2015 Department Of Transportation Community Service Aide 14482.83442 8.689701e+04 1202.35 2.003917e+02 0.000 73.75 6 0.000000e+00 0.00 8.809936e+04 8.689701e+04 1202.35 NULL
2015 Department Of Transportation Computer Aide-Non-Spvr 44927.91787 4.043513e+05 9302.69 1.033632e+03 350.190 316.50 9 3.501900e+02 3151.71 4.136540e+05 4.075030e+05 6150.98 NULL
2015 Department Of Transportation Computer Associate 64385.63462 1.674026e+06 278229.84 1.070115e+04 2246.860 5860.50 26 2.246860e+03 58418.36 1.952256e+06 1.732445e+06 219811.48 NULL
2015 Department Of Transportation Computer Programmer Analyst 60264.00000 6.026400e+04 8.96 8.960000e+00 8.960 0.00 1 8.960000e+00 8.96 6.027296e+04 6.027296e+04 0.00 NULL
2015 Department Of Transportation Computer Service Technician 45025.00000 4.502500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.502500e+04 4.502500e+04 0.00 NULL
2015 Department Of Transportation Computer Specialist 100379.92857 2.810638e+06 156075.88 5.574139e+03 117.180 2131.00 28 1.171800e+02 3281.04 2.966714e+06 2.813919e+06 152794.84 NULL
2015 Department Of Transportation Computer Systems Manager 138552.50000 1.108420e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.108420e+06 1.108420e+06 0.00 NULL
2015 Department Of Transportation Confidential Strategy Planner 76854.00000 3.842700e+05 46663.40 9.332680e+03 5742.270 962.50 5 5.742270e+03 28711.35 4.309334e+05 4.129813e+05 17952.05 NULL
2015 Department Of Transportation Construction Project Manager 69584.29730 2.574619e+06 676924.34 1.829525e+04 10849.030 12975.00 37 1.084903e+04 401414.11 3.251543e+06 2.976033e+06 275510.23 NULL
2015 Department Of Transportation Construction Project Manager Intern 51709.66667 1.551290e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.551290e+05 1.551290e+05 0.00 NULL
2015 Department Of Transportation Counsel 209324.00000 2.093240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.093240e+05 2.093240e+05 0.00 NULL
2015 Department Of Transportation Crane Operator Ampes NA NA 390453.59 6.507560e+04 79551.955 3467.25 6 6.507560e+04 390453.59 NA NA NA NULL
2015 Department Of Transportation Customer Information Representative 36232.10235 7.246420e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.246420e+04 7.246420e+04 0.00 NULL
2015 Department Of Transportation Deckhand 51162.65315 1.135811e+07 4196007.54 1.890093e+04 17925.255 80901.75 222 1.792526e+04 3979406.61 1.555412e+07 1.533752e+07 216600.93 NULL
2015 Department Of Transportation Deputy Commissioner 203790.00000 6.113700e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.113700e+05 6.113700e+05 0.00 NULL
2015 Department Of Transportation Deputy Director 129328.00000 1.293280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.293280e+05 1.293280e+05 0.00 NULL
2015 Department Of Transportation Director Of Public Relations 119770.00000 1.197700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.197700e+05 1.197700e+05 0.00 NULL
2015 Department Of Transportation Dockbuilder NA NA 455747.97 4.557480e+04 49325.415 6187.75 10 4.557480e+04 455747.97 NA NA NA NULL
2015 Department Of Transportation Electrical Engineer 76559.66667 2.296790e+05 77729.09 2.590970e+04 21153.600 1221.75 3 2.115360e+04 63460.80 3.074081e+05 2.931398e+05 14268.29 NULL
2015 Department Of Transportation Electrician NA NA 2864217.72 3.870564e+04 31293.570 39333.50 74 3.129357e+04 2315724.18 NA NA NA NULL
2015 Department Of Transportation Electrician’s Helper NA NA 56575.15 1.885838e+04 14508.190 1210.25 3 1.450819e+04 43524.57 NA NA NA NULL
2015 Department Of Transportation Engineering Technician 53492.87500 4.279430e+05 21087.47 2.635934e+03 679.540 539.50 8 6.795400e+02 5436.32 4.490305e+05 4.333793e+05 15651.15 NULL
2015 Department Of Transportation Environmental Engineer 88956.25000 3.558250e+05 246.73 6.168250e+01 0.000 0.00 4 0.000000e+00 0.00 3.560717e+05 3.558250e+05 246.73 NULL
2015 Department Of Transportation Estimator 57877.00000 5.787700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.787700e+04 5.787700e+04 0.00 NULL
2015 Department Of Transportation Executive Agency Counsel 125426.90909 1.379696e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.379696e+06 1.379696e+06 0.00 NULL
2015 Department Of Transportation Executive Assistant To Commissioner Of Transportation 137025.00000 1.370250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.370250e+05 1.370250e+05 0.00 NULL
2015 Department Of Transportation Ferry Terminal Supervisor 70235.41667 8.428250e+05 239741.33 1.997844e+04 19390.340 4709.25 12 1.939034e+04 232684.08 1.082566e+06 1.075509e+06 7057.25 NULL
2015 Department Of Transportation Fraud Investigator 50415.00000 5.041500e+04 1145.19 1.145190e+03 1145.190 60.50 1 1.145190e+03 1145.19 5.156019e+04 5.156019e+04 0.00 NULL
2015 Department Of Transportation Gardener 56587.00000 5.658700e+04 23502.04 2.350204e+04 23502.040 547.50 1 2.350204e+04 23502.04 8.008904e+04 8.008904e+04 0.00 NULL
2015 Department Of Transportation Gasoline Roller Engineer-L15 NA NA 1503498.40 2.031755e+04 17049.780 19267.98 74 1.704978e+04 1261683.72 NA NA NA NULL
2015 Department Of Transportation Graphic Artist 54908.50000 2.196340e+05 13.22 3.305000e+00 0.000 0.00 4 0.000000e+00 0.00 2.196472e+05 2.196340e+05 13.22 NULL
2015 Department Of Transportation High Pressure Plant Tender NA NA 206424.50 2.580306e+04 20673.415 4422.25 8 2.067342e+04 165387.32 NA NA NA NULL
2015 Department Of Transportation Highway Repairer NA NA 9939564.53 1.900490e+04 15937.720 174138.93 523 1.593772e+04 8335427.56 NA NA NA NULL
2015 Department Of Transportation Highway Transportation Specialist 66169.78349 1.336630e+07 2144273.13 1.061521e+04 6509.650 43087.50 202 6.509650e+03 1314949.30 1.551057e+07 1.468125e+07 829323.83 NULL
2015 Department Of Transportation Highways And Sewers Inspector 57696.35455 6.346599e+06 870479.28 7.913448e+03 6502.385 22334.75 110 6.502385e+03 715262.35 7.217078e+06 7.061861e+06 155216.93 NULL
2015 Department Of Transportation Industrial Hygienist 60911.00000 3.654660e+05 28386.68 4.731113e+03 1.050 694.50 6 1.050000e+00 6.30 3.938527e+05 3.654723e+05 28380.38 NULL
2015 Department Of Transportation Investigator 47321.72222 8.517910e+05 12016.61 6.675894e+02 17.295 431.25 18 1.729500e+01 311.31 8.638076e+05 8.521023e+05 11705.30 NULL
2015 Department Of Transportation Investigator Empl Disc 37302.00000 3.730200e+04 281.94 2.819400e+02 281.940 37.75 1 2.819400e+02 281.94 3.758394e+04 3.758394e+04 0.00 NULL
2015 Department Of Transportation Laborer NA NA 6846.77 6.846770e+03 6846.770 127.00 1 6.846770e+03 6846.77 NA NA NA NULL
2015 Department Of Transportation Letterer And Sign Painter NA NA 71684.23 8.960529e+03 8221.050 1865.00 8 8.221050e+03 65768.40 NA NA NA NULL
2015 Department Of Transportation Machinist NA NA 286970.90 2.391424e+04 27444.105 5223.00 12 2.391424e+04 286970.90 NA NA NA NULL
2015 Department Of Transportation Management Auditor 65491.91667 7.859030e+05 11266.18 9.388483e+02 168.740 254.25 12 1.687400e+02 2024.88 7.971692e+05 7.879279e+05 9241.30 NULL
2015 Department Of Transportation Marine Electronics Technician 87832.00000 3.513280e+05 53622.47 1.340562e+04 6810.405 816.25 4 6.810405e+03 27241.62 4.049505e+05 3.785696e+05 26380.85 NULL
2015 Department Of Transportation Marine Engineer 64231.27273 1.413088e+06 1182725.63 5.376026e+04 58929.960 19087.00 22 5.376026e+04 1182725.63 2.595814e+06 2.595814e+06 0.00 NULL
2015 Department Of Transportation Marine Oiler 51512.64062 3.296809e+06 2130100.02 3.328281e+04 36648.635 43785.25 64 3.328281e+04 2130100.02 5.426909e+06 5.426909e+06 0.00 NULL
2015 Department Of Transportation Masons Helper NA NA 15898.19 7.949095e+03 7949.095 457.50 2 7.949095e+03 15898.19 NA NA NA NULL
2015 Department Of Transportation Mate 57254.69136 4.637630e+06 2132053.42 2.632165e+04 26635.680 37599.50 81 2.632165e+04 2132053.42 6.769683e+06 6.769683e+06 0.00 NULL
2015 Department Of Transportation Mechanical Engineer 80796.66667 4.847800e+05 48697.83 8.116305e+03 1292.105 774.00 6 1.292105e+03 7752.63 5.334778e+05 4.925326e+05 40945.20 NULL
2015 Department Of Transportation Mechanical Engineering Intern 48283.00000 9.656600e+04 451.48 2.257400e+02 225.740 12.25 2 2.257400e+02 451.48 9.701748e+04 9.701748e+04 0.00 NULL
2015 Department Of Transportation Motor Grader Operator NA NA 706857.46 2.827430e+04 29187.770 9291.50 25 2.827430e+04 706857.46 NA NA NA NULL
2015 Department Of Transportation Motor Vehicle Operator 38954.00000 7.790800e+04 8544.03 4.272015e+03 4272.015 364.00 2 4.272015e+03 8544.03 8.645203e+04 8.645203e+04 0.00 NULL
2015 Department Of Transportation Office Machine Aide 34440.47769 4.477262e+05 3013.42 2.318015e+02 0.260 143.75 13 2.600000e-01 3.38 4.507396e+05 4.477296e+05 3010.04 NULL
2015 Department Of Transportation Oiler NA NA 541729.63 3.385810e+04 32512.500 7732.25 16 3.251250e+04 520200.00 NA NA NA NULL
2015 Department Of Transportation Operations Communications Specialist 42203.15000 8.440630e+05 75806.34 3.790317e+03 1837.960 2313.00 20 1.837960e+03 36759.20 9.198693e+05 8.808222e+05 39047.14 NULL
2015 Department Of Transportation Painter NA NA 24925.97 4.985194e+03 4016.250 512.50 5 4.016250e+03 20081.25 NA NA NA NULL
2015 Department Of Transportation Paralegal Aide 43689.50000 8.737900e+04 2015.77 1.007885e+03 1007.885 78.50 2 1.007885e+03 2015.77 8.939477e+04 8.939477e+04 0.00 NULL
2015 Department Of Transportation Parking Control Specialist 32606.00000 3.260600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.260600e+04 3.260600e+04 0.00 NULL
2015 Department Of Transportation Plumber NA NA 279399.60 3.492495e+04 28303.825 2965.75 8 2.830383e+04 226430.60 NA NA NA NULL
2015 Department Of Transportation Principal Administrative Associate 56560.75394 8.540674e+06 502625.60 3.328646e+03 83.670 12420.48 151 8.367000e+01 12634.17 9.043299e+06 8.553308e+06 489991.43 NULL
2015 Department Of Transportation Procurement Analyst 57910.52010 2.663884e+06 184183.74 4.003994e+03 42.370 4195.50 46 4.237000e+01 1949.02 2.848068e+06 2.665833e+06 182234.72 NULL
2015 Department Of Transportation Project Manager 65705.16667 3.942310e+05 94775.32 1.579589e+04 14347.375 1869.25 6 1.434738e+04 86084.25 4.890063e+05 4.803152e+05 8691.07 NULL
2015 Department Of Transportation Project Manager Intern# 50366.75000 2.014670e+05 421.52 1.053800e+02 77.725 6.25 4 7.772500e+01 310.90 2.018885e+05 2.017779e+05 110.62 NULL
2015 Department Of Transportation Public Records Aide 30588.23959 3.058824e+05 314.89 3.148900e+01 0.000 11.25 10 0.000000e+00 0.00 3.061973e+05 3.058824e+05 314.89 NULL
2015 Department Of Transportation Radio Repair Mechanic NA NA 61.50 3.075000e+01 30.750 1.00 2 3.075000e+01 61.50 NA NA NA NULL
2015 Department Of Transportation Research Assistant 50401.64763 1.209640e+06 29274.82 1.219784e+03 0.000 704.25 24 0.000000e+00 0.00 1.238914e+06 1.209640e+06 29274.82 NULL
2015 Department Of Transportation Rigger NA NA 232267.24 3.318103e+04 32796.620 3958.50 7 3.279662e+04 229576.34 NA NA NA NULL
2015 Department Of Transportation Roofer NA NA 2346.19 2.346190e+03 2346.190 26.00 1 2.346190e+03 2346.19 NA NA NA NULL
2015 Department Of Transportation Rubber Tire Repairer NA NA 30757.50 7.689375e+03 8526.515 850.00 4 7.689375e+03 30757.50 NA NA NA NULL
2015 Department Of Transportation Secretary 40892.01734 1.144976e+06 37640.94 1.344319e+03 13.020 1338.50 28 1.302000e+01 364.56 1.182617e+06 1.145341e+06 37276.38 NULL
2015 Department Of Transportation Senior Service Inspector 47192.50000 5.663100e+05 64334.94 5.361245e+03 3772.260 2165.50 12 3.772260e+03 45267.12 6.306449e+05 6.115771e+05 19067.82 NULL
2015 Department Of Transportation Service Inspector 33042.75000 1.321710e+05 7955.47 1.988868e+03 2149.815 427.50 4 1.988868e+03 7955.47 1.401265e+05 1.401265e+05 0.00 NULL
2015 Department Of Transportation Sheet Metal Worker NA NA 217583.52 5.439588e+04 51009.840 2161.00 4 5.100984e+04 204039.36 NA NA NA NULL
2015 Department Of Transportation Ship Carpenter NA NA 167151.42 2.387877e+04 28178.380 2840.50 7 2.387877e+04 167151.42 NA NA NA NULL
2015 Department Of Transportation Staff Analyst 59603.14815 1.609285e+06 91191.07 3.377447e+03 471.430 2438.75 27 4.714300e+02 12728.61 1.700476e+06 1.622014e+06 78462.46 NULL
2015 Department Of Transportation Statistician 38303.00000 3.830300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.830300e+04 3.830300e+04 0.00 NULL
2015 Department Of Transportation Steam Fitter NA NA 375310.98 3.753110e+04 36935.250 3849.25 10 3.693525e+04 369352.50 NA NA NA NULL
2015 Department Of Transportation Steam Fitter’s Helper NA NA 2600.02 2.600020e+03 2600.020 0.00 1 2.600020e+03 2600.02 NA NA NA NULL
2015 Department Of Transportation Stock Worker 37904.27273 4.169470e+05 62151.35 5.650123e+03 5434.640 2171.50 11 5.434640e+03 59781.04 4.790983e+05 4.767280e+05 2370.31 NULL
2015 Department Of Transportation Strategic Initiative Specialist 76502.50000 1.530050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.530050e+05 1.530050e+05 0.00 NULL
2015 Department Of Transportation Summer College Intern 2504.80429 9.017295e+04 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 9.017295e+04 9.017295e+04 0.00 NULL
2015 Department Of Transportation Summer Graduate Intern 3581.25785 9.311270e+04 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 9.311270e+04 9.311270e+04 0.00 NULL
2015 Department Of Transportation Supervising Computer Service Technician 67865.00000 1.357300e+05 96525.53 4.826276e+04 48262.765 1685.00 2 4.826276e+04 96525.53 2.322555e+05 2.322555e+05 0.00 NULL
2015 Department Of Transportation Supervisor 68316.00000 2.049480e+05 37338.50 1.244617e+04 9454.990 681.25 3 9.454990e+03 28364.97 2.422865e+05 2.333130e+05 8973.53 NULL
2015 Department Of Transportation Supervisor Boiler Maker NA NA 76878.98 3.843949e+04 38439.490 921.50 2 3.843949e+04 76878.98 NA NA NA NULL
2015 Department Of Transportation Supervisor Bricklayer NA NA 344088.80 8.602220e+04 71958.110 4684.00 4 7.195811e+04 287832.44 NA NA NA NULL
2015 Department Of Transportation Supervisor Bridge Painter NA NA 94142.99 1.569050e+04 11403.260 960.25 6 1.140326e+04 68419.56 NA NA NA NULL
2015 Department Of Transportation Supervisor Bridge Repairer And Riveter NA NA 394079.24 9.851981e+04 110461.465 6852.75 4 9.851981e+04 394079.24 NA NA NA NULL
2015 Department Of Transportation Supervisor Carpenter NA NA 239171.76 5.979294e+04 51240.625 3464.25 4 5.124062e+04 204962.50 NA NA NA NULL
2015 Department Of Transportation Supervisor Dockbuilder NA NA 98864.67 9.886467e+04 98864.670 1359.50 1 9.886467e+04 98864.67 NA NA NA NULL
2015 Department Of Transportation Supervisor Electrician NA NA 718282.36 7.182824e+04 64239.790 9006.75 10 6.423979e+04 642397.90 NA NA NA NULL
2015 Department Of Transportation Supervisor Highway Repairer NA NA 4685965.93 3.123977e+04 29010.670 78170.50 150 2.901067e+04 4351600.50 NA NA NA NULL
2015 Department Of Transportation Supervisor Of Bridge Operations 50423.33333 1.210160e+06 494885.02 2.062021e+04 14407.185 14545.00 24 1.440718e+04 345772.44 1.705045e+06 1.555932e+06 149112.58 NULL
2015 Department Of Transportation Supervisor Of Electrical Installations & Maintenance 68266.55882 2.321063e+06 402603.41 1.184128e+04 6161.225 7802.50 34 6.161225e+03 209481.65 2.723666e+06 2.530545e+06 193121.76 NULL
2015 Department Of Transportation Supervisor Of Mechanics NA NA 957607.86 3.546696e+04 35017.110 12347.75 27 3.501711e+04 945461.97 NA NA NA NULL
2015 Department Of Transportation Supervisor Of Office Machine Operations 43410.00000 8.682000e+04 39.68 1.984000e+01 19.840 1.50 2 1.984000e+01 39.68 8.685968e+04 8.685968e+04 0.00 NULL
2015 Department Of Transportation Supervisor Of Stock Workers 49136.70000 4.913670e+05 69604.08 6.960408e+03 3646.295 1829.75 10 3.646295e+03 36462.95 5.609711e+05 5.278299e+05 33141.13 NULL
2015 Department Of Transportation Supervisor Of Traffic Device Maintainers 62578.63158 3.566982e+06 948996.18 1.664906e+04 19659.740 19160.33 57 1.664906e+04 948996.18 4.515978e+06 4.515978e+06 0.00 NULL
2015 Department Of Transportation Supervisor Of Traffic Device Maintainers L2 & L3 66345.36364 7.297990e+05 298478.02 2.713437e+04 31096.100 5816.25 11 2.713437e+04 298478.02 1.028277e+06 1.028277e+06 0.00 NULL
2015 Department Of Transportation Supervisor Painter NA NA 47073.32 2.353666e+04 23536.660 826.25 2 2.353666e+04 47073.32 NA NA NA NULL
2015 Department Of Transportation Supervisor Plumber NA NA 136495.13 6.824757e+04 68247.565 1406.00 2 6.824757e+04 136495.13 NA NA NA NULL
2015 Department Of Transportation Supervisor Sheet Metal Worker NA NA 90250.02 9.025002e+04 90250.020 867.00 1 9.025002e+04 90250.02 NA NA NA NULL
2015 Department Of Transportation Supervisor Ship Carpenter NA NA 43947.00 4.394700e+04 43947.000 703.50 1 4.394700e+04 43947.00 NA NA NA NULL
2015 Department Of Transportation Supervisor Steamfitter NA NA 72218.11 7.221811e+04 72218.110 704.50 1 7.221811e+04 72218.11 NA NA NA NULL
2015 Department Of Transportation Telecommunications Associate 79091.33333 7.118220e+05 195221.59 2.169129e+04 27308.870 2924.50 9 2.169129e+04 195221.59 9.070436e+05 9.070436e+05 0.00 NULL
2015 Department Of Transportation Tractor Operator NA NA 792642.91 4.403572e+04 30455.815 7719.50 18 3.045581e+04 548204.67 NA NA NA NULL
2015 Department Of Transportation Traffic Control Inspector 46094.57647 3.918039e+06 454984.90 5.352764e+03 2933.980 14597.00 85 2.933980e+03 249388.30 4.373024e+06 4.167427e+06 205596.60 NULL
2015 Department Of Transportation Traffic Device Maintainer 54048.84175 1.605251e+07 2692955.12 9.067189e+03 8531.000 61498.48 297 8.531000e+03 2533707.00 1.874546e+07 1.858621e+07 159248.12 NULL
2015 Department Of Transportation Transportation Borough Commissioner 130180.60000 6.509030e+05 24551.73 4.910346e+03 0.000 377.50 5 0.000000e+00 0.00 6.754547e+05 6.509030e+05 24551.73 NULL
2015 Department Of Transportation Welder NA NA 48195.78 2.409789e+04 24097.890 638.00 2 2.409789e+04 48195.78 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs *Adm Dir Fleet Maint-Mgrl Asgmnt 118034.00000 1.180340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.180340e+05 1.180340e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs *Custodial Assistant 33033.46667 4.955020e+05 41286.08 2.752405e+03 6.560 1494.75 15 6.560000e+00 98.40 5.367881e+05 4.956004e+05 41187.68 NULL
2015 Dept Of Citywide Admin Svcs *Watchperson 41612.50000 8.322500e+04 12704.90 6.352450e+03 6352.450 403.50 2 6.352450e+03 12704.90 9.592990e+04 9.592990e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Accountant 59265.50000 4.741240e+05 2194.40 2.743000e+02 0.000 34.00 8 0.000000e+00 0.00 4.763184e+05 4.741240e+05 2194.40 NULL
2015 Dept Of Citywide Admin Svcs Adm Manager-Non-Mgrl 64113.40385 3.333897e+06 145267.22 2.793600e+03 1137.480 3615.50 52 1.137480e+03 59148.96 3.479164e+06 3.393046e+06 86118.26 NULL
2015 Dept Of Citywide Admin Svcs Admin Tests & Meas Spec 106590.87500 8.527270e+05 22584.94 2.823117e+03 0.000 332.25 8 0.000000e+00 0.00 8.753119e+05 8.527270e+05 22584.94 NULL
2015 Dept Of Citywide Admin Svcs Administrative Accountant 118512.00000 4.740480e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.740480e+05 4.740480e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Administrative Architect 119204.00000 3.576120e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.576120e+05 3.576120e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Administrative Business Promotion Coordinator 107469.00000 1.074690e+05 515.14 5.151400e+02 515.140 0.00 1 5.151400e+02 515.14 1.079841e+05 1.079841e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Administrative City Planner 140532.00000 2.810640e+05 217.11 1.085550e+02 108.555 0.00 2 1.085550e+02 217.11 2.812811e+05 2.812811e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Administrative Construction Project Manager 109300.66667 6.558040e+05 73.14 1.219000e+01 0.000 0.00 6 0.000000e+00 0.00 6.558771e+05 6.558040e+05 73.14 NULL
2015 Dept Of Citywide Admin Svcs Administrative Engineer 112400.57143 7.868040e+05 48.21 6.887143e+00 0.000 0.00 7 0.000000e+00 0.00 7.868522e+05 7.868040e+05 48.21 NULL
2015 Dept Of Citywide Admin Svcs Administrative Graphic Artist 82186.00000 8.218600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.218600e+04 8.218600e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Administrative Inspector 110137.00000 3.304110e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.304110e+05 3.304110e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Administrative Investigator 74879.33333 2.246380e+05 992.15 3.307167e+02 201.190 24.00 3 2.011900e+02 603.57 2.256301e+05 2.252416e+05 388.58 NULL
2015 Dept Of Citywide Admin Svcs Administrative Management Auditor 101221.00000 1.012210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.012210e+05 1.012210e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Administrative Manager 85823.11111 7.724080e+05 16078.38 1.786487e+03 0.000 197.50 9 0.000000e+00 0.00 7.884864e+05 7.724080e+05 16078.38 NULL
2015 Dept Of Citywide Admin Svcs Administrative Procurement Analyst 79684.53125 2.549905e+06 7393.86 2.310581e+02 0.000 234.00 32 0.000000e+00 0.00 2.557299e+06 2.549905e+06 7393.86 NULL
2015 Dept Of Citywide Admin Svcs Administrative Project Manager 112508.40000 5.625420e+05 18.59 3.718000e+00 0.000 0.00 5 0.000000e+00 0.00 5.625606e+05 5.625420e+05 18.59 NULL
2015 Dept Of Citywide Admin Svcs Administrative Public Information Specialist 91324.10292 5.479446e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.479446e+05 5.479446e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Administrative Quality Assurance Specialist 104050.00000 1.040500e+05 7735.96 7.735960e+03 7735.960 119.00 1 7.735960e+03 7735.96 1.117860e+05 1.117860e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Administrative Real Property Manager 86500.00000 8.650000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.650000e+04 8.650000e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Administrative Staff Analyst 97913.73793 1.419749e+07 186421.14 1.285663e+03 0.000 3687.25 145 0.000000e+00 0.00 1.438391e+07 1.419749e+07 186421.14 NULL
2015 Dept Of Citywide Admin Svcs Administrative Storekeeper 97818.00000 9.781800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.781800e+04 9.781800e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Agency Attorney 87345.17647 1.484868e+06 804.53 4.732529e+01 0.000 14.75 17 0.000000e+00 0.00 1.485673e+06 1.484868e+06 804.53 NULL
2015 Dept Of Citywide Admin Svcs Appraiser 78626.33333 2.358790e+05 3930.82 1.310273e+03 0.000 66.25 3 0.000000e+00 0.00 2.398098e+05 2.358790e+05 3930.82 NULL
2015 Dept Of Citywide Admin Svcs Architect 88042.83333 1.056514e+06 5737.36 4.781133e+02 0.000 73.00 12 0.000000e+00 0.00 1.062251e+06 1.056514e+06 5737.36 NULL
2015 Dept Of Citywide Admin Svcs Asbestos Handler 75607.50000 1.512150e+05 58837.16 2.941858e+04 29418.580 1046.75 2 2.941858e+04 58837.16 2.100522e+05 2.100522e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Assistant Architect 68393.28571 4.787530e+05 18803.95 2.686279e+03 563.080 318.50 7 5.630800e+02 3941.56 4.975570e+05 4.826946e+05 14862.39 NULL
2015 Dept Of Citywide Admin Svcs Assistant Civil Engineer 67596.00000 2.027880e+05 897.88 2.992933e+02 9.160 17.00 3 9.160000e+00 27.48 2.036859e+05 2.028155e+05 870.40 NULL
2015 Dept Of Citywide Admin Svcs Assistant Commissioner 149769.25000 5.990770e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.990770e+05 5.990770e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Assistant Electrical Engineer 57877.00000 5.787700e+04 1432.60 1.432600e+03 1432.600 63.75 1 1.432600e+03 1432.60 5.930960e+04 5.930960e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Assistant Mechanical Engineer 63380.25000 2.535210e+05 4498.70 1.124675e+03 1109.230 109.50 4 1.109230e+03 4436.92 2.580197e+05 2.579579e+05 61.78 NULL
2015 Dept Of Citywide Admin Svcs Assistant Printing Press Operator 54127.00000 1.082540e+05 4802.33 2.401165e+03 2401.165 144.75 2 2.401165e+03 4802.33 1.130563e+05 1.130563e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Associate Chemist 59488.00000 5.948800e+04 931.12 9.311200e+02 931.120 33.25 1 9.311200e+02 931.12 6.041912e+04 6.041912e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Associate Investigator 48115.62500 3.849250e+05 4714.43 5.893038e+02 118.055 133.50 8 1.180550e+02 944.44 3.896394e+05 3.858694e+05 3769.99 NULL
2015 Dept Of Citywide Admin Svcs Associate Project Manager 83251.55000 1.665031e+06 27856.95 1.392848e+03 213.730 386.25 20 2.137300e+02 4274.60 1.692888e+06 1.669306e+06 23582.35 NULL
2015 Dept Of Citywide Admin Svcs Associate Public Information Specialist 51005.00000 5.100500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.100500e+04 5.100500e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Associate Quality Assurance Specialist 64192.87500 5.135430e+05 52323.69 6.540461e+03 4099.125 1193.50 8 4.099125e+03 32793.00 5.658667e+05 5.463360e+05 19530.69 NULL
2015 Dept Of Citywide Admin Svcs Associate Staff Analyst 73313.51923 3.812303e+06 191646.54 3.685510e+03 1647.925 4135.25 52 1.647925e+03 85692.10 4.003950e+06 3.897995e+06 105954.44 NULL
2015 Dept Of Citywide Admin Svcs Attorney At Law 99647.05000 3.985882e+05 11.34 2.835000e+00 0.000 0.00 4 0.000000e+00 0.00 3.985995e+05 3.985882e+05 11.34 NULL
2015 Dept Of Citywide Admin Svcs Auto Mechanic NA NA 7804.05 3.902025e+03 3902.025 122.00 2 3.902025e+03 7804.05 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Automotive Specialist 85000.00000 8.500000e+04 2176.91 2.176910e+03 2176.910 36.00 1 2.176910e+03 2176.91 8.717691e+04 8.717691e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Bookkeeper 38867.83333 2.332070e+05 545.64 9.094000e+01 0.000 17.00 6 0.000000e+00 0.00 2.337526e+05 2.332070e+05 545.64 NULL
2015 Dept Of Citywide Admin Svcs Bricklayer NA NA 62081.38 6.208138e+04 62081.380 932.25 1 6.208138e+04 62081.38 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Business Promotion Coordinator 78156.00000 3.126240e+05 4657.22 1.164305e+03 355.115 67.75 4 3.551150e+02 1420.46 3.172812e+05 3.140445e+05 3236.76 NULL
2015 Dept Of Citywide Admin Svcs Carpenter NA NA 702113.48 4.130079e+04 40552.920 11161.25 17 4.055292e+04 689399.64 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Certified It Administrator 120583.22708 3.617497e+05 34776.06 1.159202e+04 2477.790 362.00 3 2.477790e+03 7433.37 3.965257e+05 3.691831e+05 27342.69 NULL
2015 Dept Of Citywide Admin Svcs Certified It Developer 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Chairman 199434.50000 3.988690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.988690e+05 3.988690e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Chauffeur-Attendant 52441.61097 1.887898e+06 397650.64 1.104585e+04 7561.275 11121.25 36 7.561275e+03 272205.90 2.285549e+06 2.160104e+06 125444.74 NULL
2015 Dept Of Citywide Admin Svcs City Custodial Assistant 31699.43524 1.432814e+07 2761421.95 6.109341e+03 2936.320 113994.66 452 2.936320e+03 1327216.64 1.708957e+07 1.565536e+07 1434205.31 NULL
2015 Dept Of Citywide Admin Svcs City Laborer NA NA 308985.03 1.716583e+04 2938.255 6215.75 18 2.938255e+03 52888.59 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs City Planner 71912.10000 7.191210e+05 13841.79 1.384179e+03 0.000 335.50 10 0.000000e+00 0.00 7.329628e+05 7.191210e+05 13841.79 NULL
2015 Dept Of Citywide Admin Svcs City Planning Technician 50355.00000 5.035500e+04 644.25 6.442500e+02 644.250 20.50 1 6.442500e+02 644.25 5.099925e+04 5.099925e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs City Research Scientist 73080.87500 5.846470e+05 3228.17 4.035213e+02 0.000 92.00 8 0.000000e+00 0.00 5.878752e+05 5.846470e+05 3228.17 NULL
2015 Dept Of Citywide Admin Svcs City Security Aide 38096.75000 1.523870e+05 20840.92 5.210230e+03 589.850 636.75 4 5.898500e+02 2359.40 1.732279e+05 1.547464e+05 18481.52 NULL
2015 Dept Of Citywide Admin Svcs Clerical Aide 14727.50000 2.945500e+04 140.02 7.001000e+01 70.010 0.00 2 7.001000e+01 140.02 2.959502e+04 2.959502e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Clerical Associate 40028.36554 4.483177e+06 128151.52 1.144210e+03 6.135 5011.50 112 6.135000e+00 687.12 4.611328e+06 4.483864e+06 127464.40 NULL
2015 Dept Of Citywide Admin Svcs Clock Repairer 4513.93000 4.513930e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.513930e+03 4.513930e+03 0.00 NULL
2015 Dept Of Citywide Admin Svcs College Aide 6448.80352 1.354249e+05 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.354249e+05 1.354249e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Commissioner 159923.50000 6.396940e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.396940e+05 6.396940e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Commissioner Of Citywide Administrative Services 214413.00000 2.144130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144130e+05 2.144130e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Community Assistant 30416.76275 1.216671e+06 49732.29 1.243307e+03 0.270 2113.00 40 2.700000e-01 10.80 1.266403e+06 1.216681e+06 49721.49 NULL
2015 Dept Of Citywide Admin Svcs Community Associate 39619.85164 1.782893e+06 49768.83 1.105974e+03 45.980 2460.50 45 4.598000e+01 2069.10 1.832662e+06 1.784962e+06 47699.73 NULL
2015 Dept Of Citywide Admin Svcs Community Coordinator 60721.72222 1.092991e+06 64077.15 3.559842e+03 0.000 1295.50 18 0.000000e+00 0.00 1.157068e+06 1.092991e+06 64077.15 NULL
2015 Dept Of Citywide Admin Svcs Community Service Aide 31657.80900 1.582890e+05 2084.53 4.169060e+02 2.340 76.50 5 2.340000e+00 11.70 1.603736e+05 1.583007e+05 2072.83 NULL
2015 Dept Of Citywide Admin Svcs Computer Aide-Non-Spvr 51253.57437 1.025071e+05 5559.02 2.779510e+03 2779.510 108.50 2 2.779510e+03 5559.02 1.080662e+05 1.080662e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Computer Associate 69565.79353 1.182618e+06 54356.52 3.197442e+03 629.450 855.75 17 6.294500e+02 10700.65 1.236975e+06 1.193319e+06 43655.87 NULL
2015 Dept Of Citywide Admin Svcs Computer Operations Manager 118004.00000 1.180040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.180040e+05 1.180040e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Computer Programmer Analyst 68817.00000 1.376340e+05 10286.52 5.143260e+03 5143.260 219.25 2 5.143260e+03 10286.52 1.479205e+05 1.479205e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Computer Service Technician 40545.00000 4.054500e+04 2.02 2.020000e+00 2.020 0.00 1 2.020000e+00 2.02 4.054702e+04 4.054702e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Computer Specialist 93770.74597 3.375747e+06 115748.88 3.215247e+03 255.100 1806.75 36 2.551000e+02 9183.60 3.491496e+06 3.384930e+06 106565.28 NULL
2015 Dept Of Citywide Admin Svcs Computer Systems Manager 121661.51326 2.798215e+06 24875.82 1.081557e+03 0.000 302.75 23 0.000000e+00 0.00 2.823091e+06 2.798215e+06 24875.82 NULL
2015 Dept Of Citywide Admin Svcs Confidential Strategy Planner 76430.80000 3.821540e+05 3307.87 6.615740e+02 0.000 112.25 5 0.000000e+00 0.00 3.854619e+05 3.821540e+05 3307.87 NULL
2015 Dept Of Citywide Admin Svcs Construction Project Manager 68160.07692 8.860810e+05 57590.61 4.430047e+03 130.330 1242.25 13 1.303300e+02 1694.29 9.436716e+05 8.877753e+05 55896.32 NULL
2015 Dept Of Citywide Admin Svcs Counsel 133929.00000 1.339290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339290e+05 1.339290e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Custodian 37749.86483 9.626216e+06 2768683.94 1.085758e+04 7712.510 94187.38 255 7.712510e+03 1966690.05 1.239490e+07 1.159291e+07 801993.89 NULL
2015 Dept Of Citywide Admin Svcs Deputy Assistant Commissioner 77977.96429 2.183383e+06 875.48 3.126714e+01 0.000 246.75 28 0.000000e+00 0.00 2.184258e+06 2.183383e+06 875.48 NULL
2015 Dept Of Citywide Admin Svcs Deputy Commissioner 179905.00000 1.439240e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.439240e+06 1.439240e+06 0.00 NULL
2015 Dept Of Citywide Admin Svcs Deputy Commissioner For City Personnel Services 188500.00000 1.885000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.885000e+05 1.885000e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Director Of Energy Conservation 130481.00000 1.304810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.304810e+05 1.304810e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Director Of Purchase 188500.00000 1.885000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.885000e+05 1.885000e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Director Of Security 101797.00000 1.017970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.017970e+05 1.017970e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Director Of Stores 127318.00000 1.273180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.273180e+05 1.273180e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Director Of The City Record 130719.00000 1.307190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.307190e+05 1.307190e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Director,Citywide Occupational Safety & Health Program 109122.00000 1.091220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.091220e+05 1.091220e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Electrical Engineer 81608.00000 8.160800e+04 3.53 3.530000e+00 3.530 0.00 1 3.530000e+00 3.53 8.161153e+04 8.161153e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Electrician NA NA 519305.22 3.709323e+04 32799.380 7177.75 14 3.279938e+04 459191.32 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Elevator Mechanic NA NA 713770.06 1.929108e+04 20920.920 11361.00 37 1.929108e+04 713770.06 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Engineering Technician 55890.50000 1.117810e+05 122.77 6.138500e+01 61.385 0.00 2 6.138500e+01 122.77 1.119038e+05 1.119038e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Estimator 69240.00000 2.077200e+05 3282.09 1.094030e+03 37.770 57.00 3 3.777000e+01 113.31 2.110021e+05 2.078333e+05 3168.78 NULL
2015 Dept Of Citywide Admin Svcs Exec Asst To The Deputy Com For Citywide Personnel Svcs-Dcas 76125.00000 7.612500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.612500e+04 7.612500e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Executive Agency Counsel 117448.38114 1.291932e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.291932e+06 1.291932e+06 0.00 NULL
2015 Dept Of Citywide Admin Svcs Executive Director Of Standards And Appeals 140000.00000 2.800000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.800000e+05 2.800000e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Executive Program Specialist 97389.00000 9.738900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.738900e+04 9.738900e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs First Deputy Commissioner 183872.00000 1.838720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.838720e+05 1.838720e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs General Counsel 176750.00000 3.535000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.535000e+05 3.535000e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Graphic Artist 54000.00000 1.620000e+05 32362.23 1.078741e+04 6776.020 768.50 3 6.776020e+03 20328.06 1.943622e+05 1.823281e+05 12034.17 NULL
2015 Dept Of Citywide Admin Svcs High Pressure Plant Tender NA NA 531233.86 1.295692e+04 9405.000 11095.75 41 9.405000e+03 385605.00 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Industrial Hygienist 66448.00000 6.644800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.644800e+04 6.644800e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Investigator 36577.00000 7.315400e+04 449.02 2.245100e+02 224.510 16.50 2 2.245100e+02 449.02 7.360302e+04 7.360302e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Landscape Architect 82136.00000 8.213600e+04 1313.07 1.313070e+03 1313.070 17.00 1 1.313070e+03 1313.07 8.344907e+04 8.344907e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Locksmith NA NA 24895.59 2.489559e+04 24895.590 639.00 1 2.489559e+04 24895.59 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Machinist NA NA 19386.89 1.938689e+04 19386.890 373.00 1 1.938689e+04 19386.89 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Maintenance Worker NA NA 988780.60 2.471951e+04 23837.345 26341.50 40 2.383735e+04 953493.80 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Management Auditor 55713.00000 1.114260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.114260e+05 1.114260e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Mechanical Engineer 88031.00000 4.401550e+05 3118.36 6.236720e+02 45.270 36.50 5 4.527000e+01 226.35 4.432734e+05 4.403813e+05 2892.01 NULL
2015 Dept Of Citywide Admin Svcs Media Services Technician 43156.00000 4.315600e+04 1450.32 1.450320e+03 1450.320 52.50 1 1.450320e+03 1450.32 4.460632e+04 4.460632e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Motor Vehicle Operator 45183.00000 9.036600e+04 100.31 5.015500e+01 50.155 2.25 2 5.015500e+01 100.31 9.046631e+04 9.046631e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Motor Vehicle Supervisor 51119.00000 5.111900e+04 530.56 5.305600e+02 530.560 13.50 1 5.305600e+02 530.56 5.164956e+04 5.164956e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs New York City Urban Fellow 24252.70547 1.164130e+06 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 1.164130e+06 1.164130e+06 0.00 NULL
2015 Dept Of Citywide Admin Svcs Nycaps Process Analyst 76327.33333 2.289820e+05 308.03 1.026767e+02 10.790 5.00 3 1.079000e+01 32.37 2.292900e+05 2.290144e+05 275.66 NULL
2015 Dept Of Citywide Admin Svcs Nycaps Process Analyst Manager 117127.50000 2.342550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.342550e+05 2.342550e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Office Machine Aide 39526.50000 7.905300e+04 2234.48 1.117240e+03 1117.240 77.00 2 1.117240e+03 2234.48 8.128748e+04 8.128748e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Oiler NA NA 518818.58 1.921550e+04 14773.680 7878.75 27 1.477368e+04 398889.36 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Painter NA NA 117192.16 3.906405e+04 35618.770 2127.25 3 3.561877e+04 106856.31 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Plasterer NA NA 163943.02 8.197151e+04 81971.510 1984.25 2 8.197151e+04 163943.02 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Plumber NA NA 370541.55 2.646725e+04 24218.515 4069.75 14 2.421851e+04 339059.21 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Plumber’s Helper NA NA 58598.40 1.953280e+04 26812.800 868.50 3 1.953280e+04 58598.40 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Principal Administrative Associate 56902.02733 6.600635e+06 245060.83 2.112593e+03 421.125 6384.75 116 4.211250e+02 48850.50 6.845696e+06 6.649486e+06 196210.33 NULL
2015 Dept Of Citywide Admin Svcs Principal Appraiser 121800.00000 1.218000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.218000e+05 1.218000e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Procurement Analyst 62666.05556 1.127989e+06 19940.02 1.107779e+03 27.480 485.75 18 2.748000e+01 494.64 1.147929e+06 1.128484e+06 19445.38 NULL
2015 Dept Of Citywide Admin Svcs Public Records Officer 55000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Quality Assurance Specialist 50451.56250 8.072250e+05 45402.88 2.837680e+03 3332.150 1467.50 16 2.837680e+03 45402.88 8.526279e+05 8.526279e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Radio And Television Operator 45106.50000 9.021300e+04 3333.45 1.666725e+03 1666.725 138.50 2 1.666725e+03 3333.45 9.354645e+04 9.354645e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Real Property Manager 52219.25000 2.088770e+05 1194.90 2.987250e+02 80.335 50.00 4 8.033500e+01 321.34 2.100719e+05 2.091983e+05 873.56 NULL
2015 Dept Of Citywide Admin Svcs Research Assistant 53798.00000 5.379800e+04 2107.81 2.107810e+03 2107.810 60.75 1 2.107810e+03 2107.81 5.590581e+04 5.590581e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Secretary 41933.67375 8.386735e+05 22186.49 1.109324e+03 293.195 877.75 20 2.931950e+02 5863.90 8.608600e+05 8.445374e+05 16322.59 NULL
2015 Dept Of Citywide Admin Svcs Secretary Of Comm 58734.00000 5.873400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.873400e+04 5.873400e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Secretary To The Deputy Commissioner 74399.00000 1.487980e+05 5168.19 2.584095e+03 2584.095 130.50 2 2.584095e+03 5168.19 1.539662e+05 1.539662e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Senior Estimator 82824.00000 8.282400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.282400e+04 8.282400e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Senior Salvage Appraiser 61291.00000 6.129100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.129100e+04 6.129100e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Senior Stationary Engineer NA NA 651561.42 2.101811e+04 18465.000 8302.75 31 1.846500e+04 572415.00 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Sheet Metal Worker NA NA 15249.36 1.524936e+04 15249.360 134.00 1 1.524936e+04 15249.36 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Special Examiner 17021.63166 6.127787e+05 311.85 8.662500e+00 0.000 8.00 36 0.000000e+00 0.00 6.130906e+05 6.127787e+05 311.85 NULL
2015 Dept Of Citywide Admin Svcs Special Officer 39997.13666 3.999714e+05 81485.43 8.148543e+03 4812.320 2817.02 10 4.812320e+03 48123.20 4.814568e+05 4.480946e+05 33362.23 NULL
2015 Dept Of Citywide Admin Svcs Staff Analyst 58030.82829 1.508802e+06 58437.51 2.247597e+03 49.050 1594.75 26 4.905000e+01 1275.30 1.567239e+06 1.510077e+06 57162.21 NULL
2015 Dept Of Citywide Admin Svcs Stationary Engineer NA NA 2483843.46 2.508933e+04 23571.590 34161.75 99 2.357159e+04 2333587.41 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Steam Fitter NA NA 463735.80 4.215780e+04 52356.480 4925.00 11 4.215780e+04 463735.80 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Steam Fitter’s Helper NA NA 85983.76 2.866125e+04 30834.040 1226.00 3 2.866125e+04 85983.76 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Stenographic Specialist 18750.66410 1.875066e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.875066e+04 1.875066e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Stock Worker 33777.68750 5.404430e+05 10644.51 6.652819e+02 503.800 416.00 16 5.038000e+02 8060.80 5.510875e+05 5.485038e+05 2583.71 NULL
2015 Dept Of Citywide Admin Svcs Summer College Intern 2723.78526 5.175192e+04 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 5.175192e+04 5.175192e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Summer Graduate Intern 8879.90100 8.879901e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 8.879901e+04 8.879901e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Supervising Special Officer 59669.41667 7.160330e+05 257914.57 2.149288e+04 20348.465 5816.25 12 2.034847e+04 244181.58 9.739476e+05 9.602146e+05 13732.99 NULL
2015 Dept Of Citywide Admin Svcs Supervisor NA NA 59805.88 5.980588e+04 59805.880 1268.50 1 5.980588e+04 59805.88 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Supervisor Bricklayer NA NA 96679.04 9.667904e+04 96679.040 1255.50 1 9.667904e+04 96679.04 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Supervisor Carpenter NA NA 117577.72 5.878886e+04 58788.860 1708.75 2 5.878886e+04 117577.72 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Supervisor Electrician NA NA 132258.23 6.612912e+04 66129.115 1690.00 2 6.612912e+04 132258.23 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Supervisor Elevator Mechanic NA NA 205409.93 3.423499e+04 34837.830 2825.50 6 3.423499e+04 205409.93 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Supervisor Locksmith NA NA 29894.12 2.989412e+04 29894.120 765.00 1 2.989412e+04 29894.12 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Supervisor Of Electrical Installations & Maintenance 76688.00000 7.668800e+04 3422.86 3.422860e+03 3422.860 57.00 1 3.422860e+03 3422.86 8.011086e+04 8.011086e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Supervisor Of Mechanical Installations & Maintenance 67174.00000 6.717400e+04 135.90 1.359000e+02 135.900 0.00 1 1.359000e+02 135.90 6.730990e+04 6.730990e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Supervisor Of Mechanics NA NA 40865.76 1.362192e+04 3654.860 596.75 3 3.654860e+03 10964.58 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Supervisor Of Motor Transport 57293.00000 5.729300e+04 8293.40 8.293400e+03 8293.400 202.25 1 8.293400e+03 8293.40 6.558640e+04 6.558640e+04 0.00 NULL
2015 Dept Of Citywide Admin Svcs Supervisor Of Radio And Television Operators 68859.00000 1.377180e+05 24241.41 1.212070e+04 12120.705 495.00 2 1.212070e+04 24241.41 1.619594e+05 1.619594e+05 0.00 NULL
2015 Dept Of Citywide Admin Svcs Supervisor Of Stock Workers 48115.72727 5.292730e+05 73367.01 6.669728e+03 2172.360 1601.00 11 2.172360e+03 23895.96 6.026400e+05 5.531690e+05 49471.05 NULL
2015 Dept Of Citywide Admin Svcs Supervisor Painter NA NA 32134.36 3.213436e+04 32134.360 592.75 1 3.213436e+04 32134.36 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Supervisor Plumber NA NA 116588.18 1.165882e+05 116588.180 1210.50 1 1.165882e+05 116588.18 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Supervisor Sheet Metal Worker NA NA 109041.03 1.090410e+05 109041.030 1073.25 1 1.090410e+05 109041.03 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Supervisor Steamfitter NA NA 107896.25 1.078962e+05 107896.250 1048.50 1 1.078962e+05 107896.25 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Supervisor Thermostat Repair NA NA 39293.47 3.929347e+04 39293.470 458.00 1 3.929347e+04 39293.47 NA NA NA NULL
2015 Dept Of Citywide Admin Svcs Tests And Measurement Specialist 62172.12217 1.865164e+06 180266.24 6.008875e+03 5328.370 4548.75 30 5.328370e+03 159851.10 2.045430e+06 2.025015e+06 20415.14 NULL
2015 Dept Of Citywide Admin Svcs Thermostat Repairer NA NA 67749.75 7.527750e+03 7499.630 861.75 9 7.499630e+03 67496.67 NA NA NA NULL
2015 Dept Of Ed Hrly Support Staff ?P/T Dc 37 Family Para 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2015 Dept Of Ed Hrly Support Staff Coop Education Trainee Computer Tech Aide/Jr 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2015 Dept Of Ed Hrly Support Staff Coop Education Trainee Computer Tech Aide/Sr 0.00000 0.000000e+00 98.44 4.474545e+00 0.000 0.00 22 0.000000e+00 0.00 9.844000e+01 0.000000e+00 98.44 NULL
2015 Dept Of Ed Hrly Support Staff Coop Trainee Typist 0.00000 0.000000e+00 8073.38 2.260185e+00 0.000 0.00 3572 0.000000e+00 0.00 8.073380e+03 0.000000e+00 8073.38 NULL
2015 Dept Of Ed Hrly Support Staff F/T Dc 37 Family Para 0.00000 0.000000e+00 101475.75 5.296229e+01 0.000 0.00 1916 0.000000e+00 0.00 1.014758e+05 0.000000e+00 101475.75 NULL
2015 Dept Of Ed Hrly Support Staff F/T Film Inspection Asst. 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2015 Dept Of Ed Hrly Support Staff F/T Group Leader 0.00000 0.000000e+00 127472.26 8.498151e+03 6023.980 0.00 15 6.023980e+03 90359.70 1.274723e+05 9.035970e+04 37112.56 NULL
2015 Dept Of Ed Hrly Support Staff F/T Health Service Aide 0.00000 0.000000e+00 18022.73 8.582252e+01 0.000 0.00 210 0.000000e+00 0.00 1.802273e+04 0.000000e+00 18022.73 NULL
2015 Dept Of Ed Hrly Support Staff F/T School Aide 0.00000 0.000000e+00 1630907.74 1.814539e+02 0.000 0.00 8988 0.000000e+00 0.00 1.630908e+06 0.000000e+00 1630907.74 NULL
2015 Dept Of Ed Hrly Support Staff F/T School Guard 0.00000 0.000000e+00 25276.16 5.744582e+02 0.000 0.00 44 0.000000e+00 0.00 2.527616e+04 0.000000e+00 25276.16 NULL
2015 Dept Of Ed Hrly Support Staff F/T School Lunch Helper 0.00000 0.000000e+00 104954.97 2.287099e+01 0.000 0.00 4589 0.000000e+00 0.00 1.049550e+05 0.000000e+00 104954.97 NULL
2015 Dept Of Ed Hrly Support Staff F/T School Safety Officer 0.00000 0.000000e+00 165548.11 4.474273e+03 4199.960 0.00 37 4.199960e+03 155398.52 1.655481e+05 1.553985e+05 10149.59 NULL
2015 Dept Of Ed Hrly Support Staff F/T Sr. School Lunch Helper 0.00000 0.000000e+00 262813.87 9.505022e+01 0.000 0.00 2765 0.000000e+00 0.00 2.628139e+05 0.000000e+00 262813.87 NULL
2015 Dept Of Ed Hrly Support Staff P/T School Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2015 Dept Of Ed Hrly Support Staff Student Aide 0.00000 0.000000e+00 9793.82 2.552468e+00 0.000 0.00 3837 0.000000e+00 0.00 9.793820e+03 0.000000e+00 9793.82 NULL
2015 Dept Of Ed Hrly Support Staff Student Aide Vocational 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2015 Dept Of Ed Hrly Support Staff Substitute Recreation Assistant 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 92 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2015 Dept Of Ed Hrly Support Staff Substitute School Aide 0.00000 0.000000e+00 24658.46 5.360535e+01 0.000 0.00 460 0.000000e+00 0.00 2.465846e+04 0.000000e+00 24658.46 NULL
2015 Dept Of Ed Hrly Support Staff Substitute School Guard 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2015 Dept Of Ed Hrly Support Staff Substitute School Lunch Helper 0.00000 0.000000e+00 50.11 8.522110e-02 0.000 0.00 588 0.000000e+00 0.00 5.011000e+01 0.000000e+00 50.11 NULL
2015 Dept Of Ed Hrly Support Staff Substitute Sr. School Lunch Helper 0.00000 0.000000e+00 194.18 4.536916e-01 0.000 0.00 428 0.000000e+00 0.00 1.941800e+02 0.000000e+00 194.18 NULL
2015 Dept Of Ed Hrly Support Staff Supervising School Aide 0.00000 0.000000e+00 345262.48 6.989119e+02 0.000 0.00 494 0.000000e+00 0.00 3.452625e+05 0.000000e+00 345262.48 NULL
2015 Dept Of Ed Hrly Support Staff NA NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2015 Dept Of Ed Para Professionals Adult Ed-30 H 35567.77500 1.422711e+06 6897.11 1.724278e+02 0.000 0.00 40 0.000000e+00 0.00 1.429608e+06 1.422711e+06 6897.11 NULL
2015 Dept Of Ed Para Professionals Adult Ed-35 H 42701.66667 1.281050e+05 5086.59 1.695530e+03 1328.180 0.00 3 1.328180e+03 3984.54 1.331916e+05 1.320895e+05 1102.05 NULL
2015 Dept Of Ed Para Professionals Annual Ed Para 31963.20541 8.197284e+08 1376125.28 5.365848e+01 0.000 0.00 25646 0.000000e+00 0.00 8.211045e+08 8.197284e+08 1376125.28 NULL
2015 Dept Of Ed Para Professionals Pre-Ses Ed Para 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 56 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2015 Dept Of Ed Para Professionals Substitute Ed Para NA NA 0.00 0.000000e+00 0.000 0.00 6437 0.000000e+00 0.00 NA NA NA NULL
2015 Dept Of Ed Para Professionals Teacher Aide 23123.17105 1.757361e+06 11293.85 1.486033e+02 0.000 0.00 76 0.000000e+00 0.00 1.768655e+06 1.757361e+06 11293.85 NULL
2015 Dept Of Ed Para Professionals NA 26749.66667 8.024900e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 8.024900e+04 8.024900e+04 0.00 NULL
2015 Dept Of Ed Pedagogical 12 Month Special Education Asst. Principal 119686.83486 2.609173e+07 0.00 0.000000e+00 0.000 0.00 218 0.000000e+00 0.00 2.609173e+07 2.609173e+07 0.00 NULL
2015 Dept Of Ed Pedagogical 12 Month Special Education Supervisor 121118.30000 2.422366e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 2.422366e+06 2.422366e+06 0.00 NULL
2015 Dept Of Ed Pedagogical Adult Educat Teach - Reg Sub 33832.00000 5.413120e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 5.413120e+05 5.413120e+05 0.00 NULL
2015 Dept Of Ed Pedagogical Adult Education Teacher 90432.47577 2.052817e+07 0.00 0.000000e+00 0.000 0.00 227 0.000000e+00 0.00 2.052817e+07 2.052817e+07 0.00 NULL
2015 Dept Of Ed Pedagogical Adult Educator Assistant Coord 83979.00000 8.397900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.397900e+04 8.397900e+04 0.00 NULL
2015 Dept Of Ed Pedagogical Aspiring Principal 94914.87500 3.796595e+06 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 3.796595e+06 3.796595e+06 0.00 NULL
2015 Dept Of Ed Pedagogical Assistant Principal 109663.87175 4.001635e+08 0.00 0.000000e+00 0.000 0.00 3649 0.000000e+00 0.00 4.001635e+08 4.001635e+08 0.00 NULL
2015 Dept Of Ed Pedagogical Assistant Principal Assigned 112848.77778 1.015639e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.015639e+06 1.015639e+06 0.00 NULL
2015 Dept Of Ed Pedagogical Assistant Superintendent 149395.71892 2.763821e+07 0.00 0.000000e+00 0.000 0.00 185 0.000000e+00 0.00 2.763821e+07 2.763821e+07 0.00 NULL
2015 Dept Of Ed Pedagogical Chancellor 222182.00000 2.221820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.221820e+05 2.221820e+05 0.00 NULL
2015 Dept Of Ed Pedagogical Community Supertindent 165193.59574 7.764099e+06 0.00 0.000000e+00 0.000 0.00 47 0.000000e+00 0.00 7.764099e+06 7.764099e+06 0.00 NULL
2015 Dept Of Ed Pedagogical Cse Chairperson 130029.87500 2.080478e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.080478e+06 2.080478e+06 0.00 NULL
2015 Dept Of Ed Pedagogical Deputy Assistant Superintendent 161431.00000 1.614310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.614310e+05 1.614310e+05 0.00 NULL
2015 Dept Of Ed Pedagogical Deputy Chancellor 214016.00000 2.140160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.140160e+05 2.140160e+05 0.00 NULL
2015 Dept Of Ed Pedagogical Deputy Community Superintendent 160871.00000 3.217420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.217420e+05 3.217420e+05 0.00 NULL
2015 Dept Of Ed Pedagogical Deputy Regional Superintendent 190208.00000 5.706240e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.706240e+05 5.706240e+05 0.00 NULL
2015 Dept Of Ed Pedagogical Director 129209.00000 1.292090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.292090e+05 1.292090e+05 0.00 NULL
2015 Dept Of Ed Pedagogical Educational Administrator Csa 114745.29510 9.604181e+07 0.00 0.000000e+00 0.000 0.00 837 0.000000e+00 0.00 9.604181e+07 9.604181e+07 0.00 NULL
2015 Dept Of Ed Pedagogical Educational Administrator Uft 117634.83333 7.058090e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.058090e+05 7.058090e+05 0.00 NULL
2015 Dept Of Ed Pedagogical Guidance Counselor 87879.43348 3.018659e+08 0.00 0.000000e+00 0.000 0.00 3435 0.000000e+00 0.00 3.018659e+08 3.018659e+08 0.00 NULL
2015 Dept Of Ed Pedagogical Guidance Counselor Assigned A 97004.05000 1.940081e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.940081e+06 1.940081e+06 0.00 NULL
2015 Dept Of Ed Pedagogical Guidance Counselor-Reg Sub 54900.62500 4.392050e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.392050e+05 4.392050e+05 0.00 NULL
2015 Dept Of Ed Pedagogical Lab Specialist/Assistant 72754.76829 1.193178e+07 0.00 0.000000e+00 0.000 0.00 164 0.000000e+00 0.00 1.193178e+07 1.193178e+07 0.00 NULL
2015 Dept Of Ed Pedagogical Local Instructional Supervisor 170998.31250 2.735973e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.735973e+06 2.735973e+06 0.00 NULL
2015 Dept Of Ed Pedagogical New Leader 87768.22222 7.899140e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.899140e+05 7.899140e+05 0.00 NULL
2015 Dept Of Ed Pedagogical New Principal Intern 99249.50000 1.984990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.984990e+05 1.984990e+05 0.00 NULL
2015 Dept Of Ed Pedagogical Principal 140695.07206 2.694311e+08 0.00 0.000000e+00 0.000 0.00 1915 0.000000e+00 0.00 2.694311e+08 2.694311e+08 0.00 NULL
2015 Dept Of Ed Pedagogical Principal Assigned 146834.28571 3.083520e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 3.083520e+06 3.083520e+06 0.00 NULL
2015 Dept Of Ed Pedagogical Psychologist In Train - Reg Sub 43687.78261 1.004819e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 1.004819e+06 1.004819e+06 0.00 NULL
2015 Dept Of Ed Pedagogical Regional Instructional Superintendent 201422.00000 4.028440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.028440e+05 4.028440e+05 0.00 NULL
2015 Dept Of Ed Pedagogical School Medical Inspector 75779.00000 1.515580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.515580e+05 1.515580e+05 0.00 NULL
2015 Dept Of Ed Pedagogical School Medical Inspector - Reg Sub 73558.00000 7.355800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.355800e+04 7.355800e+04 0.00 NULL
2015 Dept Of Ed Pedagogical School Psychiatrist 81686.00000 8.168600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.168600e+04 8.168600e+04 0.00 NULL
2015 Dept Of Ed Pedagogical School Psycholgist 89648.33437 1.437063e+08 0.00 0.000000e+00 0.000 0.00 1603 0.000000e+00 0.00 1.437063e+08 1.437063e+08 0.00 NULL
2015 Dept Of Ed Pedagogical School Psychologist - Reg Sub 56897.42857 3.982820e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.982820e+05 3.982820e+05 0.00 NULL
2015 Dept Of Ed Pedagogical School Secretary 56738.75820 2.076639e+08 -71.69 -1.958740e-02 0.000 0.00 3660 -1.958740e-02 -71.69 2.076638e+08 2.076638e+08 0.00 NULL
2015 Dept Of Ed Pedagogical School Secretary-Reg Sub 37705.83673 3.695172e+06 0.00 0.000000e+00 0.000 0.00 98 0.000000e+00 0.00 3.695172e+06 3.695172e+06 0.00 NULL
2015 Dept Of Ed Pedagogical School Social Worker 90732.04275 1.634084e+08 0.00 0.000000e+00 0.000 0.00 1801 0.000000e+00 0.00 1.634084e+08 1.634084e+08 0.00 NULL
2015 Dept Of Ed Pedagogical School Social Worker - Reg Sub 61374.50000 1.227490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.227490e+05 1.227490e+05 0.00 NULL
2015 Dept Of Ed Pedagogical Supervisor 108340.45614 6.175406e+06 0.00 0.000000e+00 0.000 0.00 57 0.000000e+00 0.00 6.175406e+06 6.175406e+06 0.00 NULL
2015 Dept Of Ed Pedagogical Supervisor Assigned 125045.50000 2.250819e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.250819e+06 2.250819e+06 0.00 NULL
2015 Dept Of Ed Pedagogical Teach Asst Vocation - Reg Sub 45493.86000 2.274693e+06 0.00 0.000000e+00 0.000 0.00 50 0.000000e+00 0.00 2.274693e+06 2.274693e+06 0.00 NULL
2015 Dept Of Ed Pedagogical Teacher 80411.75518 5.307739e+09 0.00 0.000000e+00 0.000 0.00 66007 0.000000e+00 0.00 5.307739e+09 5.307739e+09 0.00 NULL
2015 Dept Of Ed Pedagogical Teacher Assigned A 91994.34021 5.354071e+07 0.00 0.000000e+00 0.000 0.00 582 0.000000e+00 0.00 5.354071e+07 5.354071e+07 0.00 NULL
2015 Dept Of Ed Pedagogical Teacher Assigned B 100049.00000 1.000490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000490e+05 1.000490e+05 0.00 NULL
2015 Dept Of Ed Pedagogical Teacher Assistant - Reg Sub 23195.52174 5.334970e+05 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 5.334970e+05 5.334970e+05 0.00 NULL
2015 Dept Of Ed Pedagogical Teacher Attendance 83883.13412 3.565033e+07 0.00 0.000000e+00 0.000 0.00 425 0.000000e+00 0.00 3.565033e+07 3.565033e+07 0.00 NULL
2015 Dept Of Ed Pedagogical Teacher Attendance-Reg Sub 57181.00000 1.143620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.143620e+05 1.143620e+05 0.00 NULL
2015 Dept Of Ed Pedagogical Teacher Resource Room 102045.00000 2.040900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.040900e+05 2.040900e+05 0.00 NULL
2015 Dept Of Ed Pedagogical Teacher Special Education 74835.21476 1.953798e+09 0.00 0.000000e+00 0.000 0.00 26108 0.000000e+00 0.00 1.953798e+09 1.953798e+09 0.00 NULL
2015 Dept Of Ed Pedagogical Teacher Special Education-Reg Sub 52963.47368 8.050448e+06 0.00 0.000000e+00 0.000 0.00 152 0.000000e+00 0.00 8.050448e+06 8.050448e+06 0.00 NULL
2015 Dept Of Ed Pedagogical Teacher Trainer 97033.57143 6.792350e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.792350e+05 6.792350e+05 0.00 NULL
2015 Dept Of Ed Pedagogical Teacher-Reg Sub 60522.84638 2.088038e+07 0.00 0.000000e+00 0.000 0.00 345 0.000000e+00 0.00 2.088038e+07 2.088038e+07 0.00 NULL
2015 Dept Of Ed Per Diem Teachers Assistant Principal NA NA 0.00 0.000000e+00 0.000 0.00 101 0.000000e+00 0.00 NA NA NA NULL
2015 Dept Of Ed Per Diem Teachers Guidance Counselor NA NA 0.00 0.000000e+00 0.000 0.00 188 0.000000e+00 0.00 NA NA NA NULL
2015 Dept Of Ed Per Diem Teachers Lab Specialist/Assistant NA NA 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2015 Dept Of Ed Per Diem Teachers Principal NA NA 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 NA NA NA NULL
2015 Dept Of Ed Per Diem Teachers School Psychologist NA NA 0.00 0.000000e+00 0.000 0.00 102 0.000000e+00 0.00 NA NA NA NULL
2015 Dept Of Ed Per Diem Teachers School Social Worker NA NA 0.00 0.000000e+00 0.000 0.00 65 0.000000e+00 0.00 NA NA NA NULL
2015 Dept Of Ed Per Diem Teachers Secretary NA NA 0.00 0.000000e+00 0.000 0.00 176 0.000000e+00 0.00 NA NA NA NULL
2015 Dept Of Ed Per Diem Teachers Supervisor NA NA 0.00 0.000000e+00 0.000 0.00 135 0.000000e+00 0.00 NA NA NA NULL
2015 Dept Of Ed Per Diem Teachers Teacher-General Ed NA NA 0.00 0.000000e+00 0.000 0.00 16347 0.000000e+00 0.00 NA NA NA NULL
2015 Dept Of Ed Per Diem Teachers Teacher-Special Ed NA NA 0.00 0.000000e+00 0.000 0.00 242 0.000000e+00 0.00 NA NA NA NULL
2015 Dept Of Ed Per Session Teacher School Secretary Per Session NA NA 0.00 0.000000e+00 0.000 0.00 868 0.000000e+00 0.00 NA NA NA NULL
2015 Dept Of Ed Per Session Teacher Supervisor Per Session NA NA 0.00 0.000000e+00 0.000 0.00 1008 0.000000e+00 0.00 NA NA NA NULL
2015 Dept Of Ed Per Session Teacher Teacher- Per Session NA NA 0.00 0.000000e+00 0.000 0.00 91465 0.000000e+00 0.00 NA NA NA NULL
2015 Dept Of Environment Protection *Certified Applications Developer 98802.00000 9.880200e+04 325.65 3.256500e+02 325.650 0.00 1 3.256500e+02 325.65 9.912765e+04 9.912765e+04 0.00 NULL
2015 Dept Of Environment Protection *Certified Wide Area Network Administrator 115172.00000 1.151720e+05 5155.77 5.155770e+03 5155.770 62.25 1 5.155770e+03 5155.77 1.203278e+05 1.203278e+05 0.00 NULL
2015 Dept Of Environment Protection *Custodial Assistant 32230.00000 9.669000e+04 3.79 1.263333e+00 0.000 0.00 3 0.000000e+00 0.00 9.669379e+04 9.669000e+04 3.79 NULL
2015 Dept Of Environment Protection *Research Scientist 96170.00000 9.617000e+04 1493.81 1.493810e+03 1493.810 15.50 1 1.493810e+03 1493.81 9.766381e+04 9.766381e+04 0.00 NULL
2015 Dept Of Environment Protection ?Assistant Chemist 51830.00000 5.183000e+04 91.14 9.114000e+01 91.140 0.00 1 9.114000e+01 91.14 5.192114e+04 5.192114e+04 0.00 NULL
2015 Dept Of Environment Protection ?Associate Engineering Technician 51450.50000 1.029010e+05 5.00 2.500000e+00 2.500 0.00 2 2.500000e+00 5.00 1.029060e+05 1.029060e+05 0.00 NULL
2015 Dept Of Environment Protection Accountant 58408.25000 4.672660e+05 8.01 1.001250e+00 0.000 0.00 8 0.000000e+00 0.00 4.672740e+05 4.672660e+05 8.01 NULL
2015 Dept Of Environment Protection Adm Manager-Non-Mgrl 77439.71429 2.168312e+06 87709.72 3.132490e+03 255.640 1798.00 28 2.556400e+02 7157.92 2.256022e+06 2.175470e+06 80551.80 NULL
2015 Dept Of Environment Protection Admin Community Relations Specialist 108010.00000 1.080100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.080100e+05 1.080100e+05 0.00 NULL
2015 Dept Of Environment Protection Administrative Accountant 94522.12593 2.835664e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.835664e+05 2.835664e+05 0.00 NULL
2015 Dept Of Environment Protection Administrative Architect 123217.00000 1.232170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.232170e+05 1.232170e+05 0.00 NULL
2015 Dept Of Environment Protection Administrative City Planner 116277.69231 1.511610e+06 7452.84 5.732954e+02 0.000 83.50 13 0.000000e+00 0.00 1.519063e+06 1.511610e+06 7452.84 NULL
2015 Dept Of Environment Protection Administrative Director Of Laboratory 120618.88889 2.171140e+06 328.02 1.822333e+01 0.000 0.00 18 0.000000e+00 0.00 2.171468e+06 2.171140e+06 328.02 NULL
2015 Dept Of Environment Protection Administrative Engineer 124738.33503 2.457345e+07 45230.46 2.295962e+02 0.000 570.75 197 0.000000e+00 0.00 2.461868e+07 2.457345e+07 45230.46 NULL
2015 Dept Of Environment Protection Administrative Manager 130318.80000 6.515940e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.515940e+05 6.515940e+05 0.00 NULL
2015 Dept Of Environment Protection Administrative Procurement Analyst 105343.85714 7.374070e+05 19589.51 2.798501e+03 45.160 336.25 7 4.516000e+01 316.12 7.569965e+05 7.377231e+05 19273.39 NULL
2015 Dept Of Environment Protection Administrative Project Manager 117685.75490 1.200395e+07 11457.65 1.123299e+02 0.000 130.50 102 0.000000e+00 0.00 1.201540e+07 1.200395e+07 11457.65 NULL
2015 Dept Of Environment Protection Administrative Public Health Sanitarian 111878.00000 8.950240e+05 112.99 1.412375e+01 0.000 0.00 8 0.000000e+00 0.00 8.951370e+05 8.950240e+05 112.99 NULL
2015 Dept Of Environment Protection Administrative Public Information Specialist 106764.44444 9.608800e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.608800e+05 9.608800e+05 0.00 NULL
2015 Dept Of Environment Protection Administrative Quality Assurance Specialist 93607.00000 9.360700e+04 34090.38 3.409038e+04 34090.380 479.75 1 3.409038e+04 34090.38 1.276974e+05 1.276974e+05 0.00 NULL
2015 Dept Of Environment Protection Administrative Real Property Manager 118540.50000 2.370810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.370810e+05 2.370810e+05 0.00 NULL
2015 Dept Of Environment Protection Administrative Staff Analyst 92117.75610 1.133048e+07 509219.63 4.139997e+03 201.730 8204.00 123 2.017300e+02 24812.79 1.183970e+07 1.135530e+07 484406.84 NULL
2015 Dept Of Environment Protection Administrative Storekeeper 101427.50000 2.028550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.028550e+05 2.028550e+05 0.00 NULL
2015 Dept Of Environment Protection Agency Attorney 84108.07692 3.280215e+06 30838.57 7.907326e+02 0.000 578.50 39 0.000000e+00 0.00 3.311054e+06 3.280215e+06 30838.57 NULL
2015 Dept Of Environment Protection Agency Security Director 107106.00000 1.071060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.071060e+05 1.071060e+05 0.00 NULL
2015 Dept Of Environment Protection Air Pollution Inspector 45749.05405 1.692715e+06 531799.67 1.437296e+04 15067.930 14550.50 37 1.437296e+04 531799.67 2.224515e+06 2.224515e+06 0.00 NULL
2015 Dept Of Environment Protection Apprentice 36989.14000 1.849457e+06 158103.77 3.162075e+03 2605.915 6797.00 50 2.605915e+03 130295.75 2.007561e+06 1.979753e+06 27808.02 NULL
2015 Dept Of Environment Protection Architect 89505.25000 3.580210e+05 17.66 4.415000e+00 2.215 0.00 4 2.215000e+00 8.86 3.580387e+05 3.580299e+05 8.80 NULL
2015 Dept Of Environment Protection Assistant Architect 60654.66667 3.639280e+05 1.37 2.283333e-01 0.000 0.00 6 0.000000e+00 0.00 3.639294e+05 3.639280e+05 1.37 NULL
2015 Dept Of Environment Protection Assistant Chemical Engineer 61409.68182 1.351013e+06 151386.89 6.881222e+03 3499.515 3809.00 22 3.499515e+03 76989.33 1.502400e+06 1.428002e+06 74397.56 NULL
2015 Dept Of Environment Protection Assistant Civil Engineer 62316.52083 5.982386e+06 469260.99 4.888135e+03 2062.065 11149.75 96 2.062065e+03 197958.24 6.451647e+06 6.180344e+06 271302.75 NULL
2015 Dept Of Environment Protection Assistant Commissioner 140265.50000 2.805310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.805310e+05 2.805310e+05 0.00 NULL
2015 Dept Of Environment Protection Assistant Electrical Engineer 61215.15000 2.448606e+06 123478.46 3.086961e+03 338.370 3307.00 40 3.383700e+02 13534.80 2.572084e+06 2.462141e+06 109943.66 NULL
2015 Dept Of Environment Protection Assistant Environmental Engineer 59720.36842 2.269374e+06 131090.10 3.449739e+03 482.600 3653.50 38 4.826000e+02 18338.80 2.400464e+06 2.287713e+06 112751.30 NULL
2015 Dept Of Environment Protection Assistant Mechanical Engineer 61241.82857 4.286928e+06 250233.42 3.574763e+03 584.840 6470.75 70 5.848400e+02 40938.80 4.537161e+06 4.327867e+06 209294.62 NULL
2015 Dept Of Environment Protection Assoc Water Use Inspector-Mgrl 111069.00000 1.110690e+05 7258.12 7.258120e+03 7258.120 66.75 1 7.258120e+03 7258.12 1.183271e+05 1.183271e+05 0.00 NULL
2015 Dept Of Environment Protection Associate Air Pollution Inspr 57005.94118 9.691010e+05 359466.53 2.114509e+04 23407.140 6950.25 17 2.114509e+04 359466.53 1.328568e+06 1.328568e+06 0.00 NULL
2015 Dept Of Environment Protection Associate Chemist 63649.71111 1.145695e+07 827815.54 4.598975e+03 392.320 25601.67 180 3.923200e+02 70617.60 1.228476e+07 1.152757e+07 757197.94 NULL
2015 Dept Of Environment Protection Associate Commissioner 157065.00000 3.141300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.141300e+05 3.141300e+05 0.00 NULL
2015 Dept Of Environment Protection Associate Laboratory Microbiologist 64116.26923 1.667023e+06 67714.37 2.604399e+03 447.035 1663.75 26 4.470350e+02 11622.91 1.734737e+06 1.678646e+06 56091.46 NULL
2015 Dept Of Environment Protection Associate Project Manager 77224.98577 2.170022e+07 962609.74 3.425657e+03 299.760 17916.00 281 2.997600e+02 84232.56 2.266283e+07 2.178445e+07 878377.18 NULL
2015 Dept Of Environment Protection Associate Public Health Sanitarian 66833.88235 2.272352e+06 63331.13 1.862680e+03 154.220 1274.75 34 1.542200e+02 5243.48 2.335683e+06 2.277595e+06 58087.65 NULL
2015 Dept Of Environment Protection Associate Public Information Specialist 43474.44800 8.694890e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.694890e+04 8.694890e+04 0.00 NULL
2015 Dept Of Environment Protection Associate Public Records Officer 67821.00000 1.356420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.356420e+05 1.356420e+05 0.00 NULL
2015 Dept Of Environment Protection Associate Quality Assurance Specialist 65769.00000 4.603830e+05 11488.37 1.641196e+03 70.640 320.00 7 7.064000e+01 494.48 4.718714e+05 4.608775e+05 10993.89 NULL
2015 Dept Of Environment Protection Associate Staff Analyst 74459.52778 5.361086e+06 131389.70 1.824857e+03 0.000 2446.25 72 0.000000e+00 0.00 5.492476e+06 5.361086e+06 131389.70 NULL
2015 Dept Of Environment Protection Associate Water Use Inpector 58184.95775 4.131132e+06 812000.75 1.143663e+04 11026.170 18635.37 71 1.102617e+04 782858.07 4.943133e+06 4.913990e+06 29142.68 NULL
2015 Dept Of Environment Protection Attorney At Law 96435.75000 3.857430e+05 11057.97 2.764492e+03 0.000 157.50 4 0.000000e+00 0.00 3.968010e+05 3.857430e+05 11057.97 NULL
2015 Dept Of Environment Protection Auto Mechanic NA NA 64236.08 8.029510e+03 5281.285 1248.75 8 5.281285e+03 42250.28 NA NA NA NULL
2015 Dept Of Environment Protection Bookkeeper 52799.00000 5.279900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.279900e+04 5.279900e+04 0.00 NULL
2015 Dept Of Environment Protection Bricklayer NA NA 1750.72 8.753600e+02 875.360 13.00 2 8.753600e+02 1750.72 NA NA NA NULL
2015 Dept Of Environment Protection Captain 79124.00000 8.703640e+05 216721.21 1.970193e+04 17480.780 4019.25 11 1.748078e+04 192288.58 1.087085e+06 1.062653e+06 24432.63 NULL
2015 Dept Of Environment Protection Carpenter NA NA 58978.13 8.425447e+03 8123.030 788.00 7 8.123030e+03 56861.21 NA NA NA NULL
2015 Dept Of Environment Protection Certified It Administrator 104893.25000 4.195730e+05 14390.72 3.597680e+03 1737.935 219.00 4 1.737935e+03 6951.74 4.339637e+05 4.265247e+05 7438.98 NULL
2015 Dept Of Environment Protection Certified Local Area Network Administrator 116972.00000 1.169720e+05 23813.24 2.381324e+04 23813.240 308.25 1 2.381324e+04 23813.24 1.407852e+05 1.407852e+05 0.00 NULL
2015 Dept Of Environment Protection Chauffeur-Attendant 59400.00000 5.940000e+04 36715.27 3.671527e+04 36715.270 898.25 1 3.671527e+04 36715.27 9.611527e+04 9.611527e+04 0.00 NULL
2015 Dept Of Environment Protection Chemical Engineer 83479.66667 7.513170e+05 23086.94 2.565216e+03 2451.220 449.00 9 2.451220e+03 22060.98 7.744039e+05 7.733780e+05 1025.96 NULL
2015 Dept Of Environment Protection Chemical Engineering Intern 52000.00000 1.040000e+05 113.84 5.692000e+01 56.920 18.25 2 5.692000e+01 113.84 1.041138e+05 1.041138e+05 0.00 NULL
2015 Dept Of Environment Protection Chief Engineer 198369.00000 1.983690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.983690e+05 1.983690e+05 0.00 NULL
2015 Dept Of Environment Protection Chief Marine Engineer 73843.00000 5.907440e+05 273564.64 3.419558e+04 34962.490 5225.25 8 3.419558e+04 273564.64 8.643086e+05 8.643086e+05 0.00 NULL
2015 Dept Of Environment Protection City Attendant 34538.00000 3.453800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.453800e+04 3.453800e+04 0.00 NULL
2015 Dept Of Environment Protection City Custodial Assistant 32655.00000 3.265500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.265500e+04 3.265500e+04 0.00 NULL
2015 Dept Of Environment Protection City Laborer NA NA 94242.31 5.543665e+03 2471.880 1669.75 17 2.471880e+03 42021.96 NA NA NA NULL
2015 Dept Of Environment Protection City Medical Specialist 136653.23000 1.366532e+05 4095.00 4.095000e+03 4095.000 52.50 1 4.095000e+03 4095.00 1.407482e+05 1.407482e+05 0.00 NULL
2015 Dept Of Environment Protection City Park Worker 15559.54055 1.711549e+05 867.15 7.883182e+01 0.000 28.25 11 0.000000e+00 0.00 1.720221e+05 1.711549e+05 867.15 NULL
2015 Dept Of Environment Protection City Planner 71760.65517 2.081059e+06 27539.74 9.496462e+02 0.000 520.75 29 0.000000e+00 0.00 2.108599e+06 2.081059e+06 27539.74 NULL
2015 Dept Of Environment Protection City Planning Technician 41314.41667 4.957730e+05 4772.59 3.977158e+02 0.120 185.00 12 1.200000e-01 1.44 5.005456e+05 4.957744e+05 4771.15 NULL
2015 Dept Of Environment Protection City Research Scientist 84378.92208 6.497177e+06 191263.17 2.483937e+03 86.270 3697.00 77 8.627000e+01 6642.79 6.688440e+06 6.503820e+06 184620.38 NULL
2015 Dept Of Environment Protection City Seasonal Aide 5817.47582 1.221670e+05 3149.29 1.499662e+02 0.000 212.00 21 0.000000e+00 0.00 1.253163e+05 1.221670e+05 3149.29 NULL
2015 Dept Of Environment Protection City Tax Auditor 51590.00000 5.159000e+04 5925.62 5.925620e+03 5925.620 144.50 1 5.925620e+03 5925.62 5.751562e+04 5.751562e+04 0.00 NULL
2015 Dept Of Environment Protection Civil Engineer 84193.47500 6.735478e+06 240023.07 3.000288e+03 0.000 3983.75 80 0.000000e+00 0.00 6.975501e+06 6.735478e+06 240023.07 NULL
2015 Dept Of Environment Protection Civil Engineering Intern 52878.78947 1.004697e+06 75160.87 3.955835e+03 2024.080 1958.50 19 2.024080e+03 38457.52 1.079858e+06 1.043155e+06 36703.35 NULL
2015 Dept Of Environment Protection Clerical Aide 25663.98203 7.699195e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.699195e+04 7.699195e+04 0.00 NULL
2015 Dept Of Environment Protection Clerical Associate 36432.98251 1.482822e+07 862339.26 2.118770e+03 27.400 28735.75 407 2.740000e+01 11151.80 1.569056e+07 1.483938e+07 851187.46 NULL
2015 Dept Of Environment Protection College Aide 5423.65959 6.508392e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 6.508392e+04 6.508392e+04 0.00 NULL
2015 Dept Of Environment Protection College Aide - Assignment Levels Ii And Iii 19716.95040 1.971695e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.971695e+04 1.971695e+04 0.00 NULL
2015 Dept Of Environment Protection Commissioner Of Environmental Protection 214413.00000 2.144130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144130e+05 2.144130e+05 0.00 NULL
2015 Dept Of Environment Protection Community Assistant 32443.21601 8.759668e+05 15207.11 5.632263e+02 3.850 705.25 27 3.850000e+00 103.95 8.911739e+05 8.760708e+05 15103.16 NULL
2015 Dept Of Environment Protection Community Associate 47139.71429 1.319912e+06 93121.18 3.325756e+03 315.715 2981.25 28 3.157150e+02 8840.02 1.413033e+06 1.328752e+06 84281.16 NULL
2015 Dept Of Environment Protection Community Coordinator 62461.94286 2.186168e+06 74801.90 2.137197e+03 333.080 1827.75 35 3.330800e+02 11657.80 2.260970e+06 2.197826e+06 63144.10 NULL
2015 Dept Of Environment Protection Community Service Aide 30183.40000 1.509170e+05 8710.38 1.742076e+03 56.890 400.25 5 5.689000e+01 284.45 1.596274e+05 1.512015e+05 8425.93 NULL
2015 Dept Of Environment Protection Computer Aide-Non-Spvr 44096.04762 9.260170e+05 83167.86 3.960374e+03 0.000 2029.00 21 0.000000e+00 0.00 1.009185e+06 9.260170e+05 83167.86 NULL
2015 Dept Of Environment Protection Computer Associate 70230.91304 4.845933e+06 141636.25 2.052699e+03 39.760 3236.25 69 3.976000e+01 2743.44 4.987569e+06 4.848676e+06 138892.81 NULL
2015 Dept Of Environment Protection Computer Programmer Analyst 56758.35975 1.135167e+06 29304.79 1.465239e+03 50.100 752.00 20 5.010000e+01 1002.00 1.164472e+06 1.136169e+06 28302.79 NULL
2015 Dept Of Environment Protection Computer Programmer Analyst Trainee 41597.00000 4.159700e+04 577.73 5.777300e+02 577.730 20.00 1 5.777300e+02 577.73 4.217473e+04 4.217473e+04 0.00 NULL
2015 Dept Of Environment Protection Computer Service Technician 50154.25580 2.006170e+05 17765.30 4.441325e+03 2641.085 469.00 4 2.641085e+03 10564.34 2.183823e+05 2.111814e+05 7200.96 NULL
2015 Dept Of Environment Protection Computer Specialist 92745.92798 7.790658e+06 393218.50 4.681173e+03 464.225 6641.25 84 4.642250e+02 38994.90 8.183876e+06 7.829653e+06 354223.60 NULL
2015 Dept Of Environment Protection Computer Systems Manager 118238.70000 1.182387e+06 10536.80 1.053680e+03 0.000 125.75 10 0.000000e+00 0.00 1.192924e+06 1.182387e+06 10536.80 NULL
2015 Dept Of Environment Protection Construction Laborer NA NA 3431158.64 1.059000e+04 9796.965 62422.00 324 9.796965e+03 3174216.66 NA NA NA NULL
2015 Dept Of Environment Protection Construction Project Manager 69733.12195 2.859058e+06 249309.61 6.080722e+03 1495.970 4784.25 41 1.495970e+03 61334.77 3.108368e+06 2.920393e+06 187974.84 NULL
2015 Dept Of Environment Protection Construction Project Manager Intern 52908.15556 2.380867e+06 162342.52 3.607612e+03 447.680 4513.00 45 4.476800e+02 20145.60 2.543210e+06 2.401013e+06 142196.92 NULL
2015 Dept Of Environment Protection Counsel 187896.00000 1.878960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.878960e+05 1.878960e+05 0.00 NULL
2015 Dept Of Environment Protection Crane Operator Ampes NA NA 58309.15 5.830915e+04 58309.150 574.00 1 5.830915e+04 58309.15 NA NA NA NULL
2015 Dept Of Environment Protection Custodian 31103.10838 1.306331e+06 41284.79 9.829712e+02 0.235 1659.50 42 2.350000e-01 9.87 1.347615e+06 1.306340e+06 41274.92 NULL
2015 Dept Of Environment Protection Customer Information Representative 59809.00000 4.784720e+05 35391.36 4.423920e+03 13.910 824.00 8 1.391000e+01 111.28 5.138634e+05 4.785833e+05 35280.08 NULL
2015 Dept Of Environment Protection Deputy Commissioner 186755.75000 7.470230e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.470230e+05 7.470230e+05 0.00 NULL
2015 Dept Of Environment Protection Director For Equal Employment Opportunity 114748.00000 1.147480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.147480e+05 1.147480e+05 0.00 NULL
2015 Dept Of Environment Protection Director Of Motor Equipment 140321.00000 1.403210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.403210e+05 1.403210e+05 0.00 NULL
2015 Dept Of Environment Protection Director Of Noise Abatement 147617.00000 1.476170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.476170e+05 1.476170e+05 0.00 NULL
2015 Dept Of Environment Protection Director Of Technical Services 124236.00000 1.242360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.242360e+05 1.242360e+05 0.00 NULL
2015 Dept Of Environment Protection District Supervisor 87898.06897 2.549044e+06 694356.90 2.394334e+04 28763.010 10117.75 29 2.394334e+04 694356.90 3.243401e+06 3.243401e+06 0.00 NULL
2015 Dept Of Environment Protection Electrical Engineer 82545.25000 1.650905e+06 150572.96 7.528648e+03 3827.610 2590.25 20 3.827610e+03 76552.20 1.801478e+06 1.727457e+06 74020.76 NULL
2015 Dept Of Environment Protection Electrical Engineering Intern 52476.00000 2.623800e+05 11186.71 2.237342e+03 2790.470 340.00 5 2.237342e+03 11186.71 2.735667e+05 2.735667e+05 0.00 NULL
2015 Dept Of Environment Protection Electrician NA NA 1197284.88 1.575375e+04 12963.580 17109.50 76 1.296358e+04 985232.08 NA NA NA NULL
2015 Dept Of Environment Protection Electrician’s Helper NA NA 330640.62 7.347569e+03 5341.460 7315.25 45 5.341460e+03 240365.70 NA NA NA NULL
2015 Dept Of Environment Protection Engineering Technician 52895.95946 3.914301e+06 325048.31 4.392545e+03 3893.675 9329.75 74 3.893675e+03 288131.95 4.239349e+06 4.202433e+06 36916.36 NULL
2015 Dept Of Environment Protection Environmental Engineer 87218.50000 1.046622e+06 60424.93 5.035411e+03 532.275 1001.75 12 5.322750e+02 6387.30 1.107047e+06 1.053009e+06 54037.63 NULL
2015 Dept Of Environment Protection Environmental Engineering Intern 52455.33333 1.573660e+05 759.80 2.532667e+02 20.530 24.00 3 2.053000e+01 61.59 1.581258e+05 1.574276e+05 698.21 NULL
2015 Dept Of Environment Protection Environmental Police Officer 51483.18433 1.117185e+07 827132.54 3.811671e+03 1660.610 33890.58 217 1.660610e+03 360352.37 1.199898e+07 1.153220e+07 466780.17 NULL
2015 Dept Of Environment Protection Environmental Police Officer-Managerial 117235.33333 7.034120e+05 157.20 2.620000e+01 0.000 0.00 6 0.000000e+00 0.00 7.035692e+05 7.034120e+05 157.20 NULL
2015 Dept Of Environment Protection Executive Agency Counsel 136126.41176 2.314149e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.314149e+06 2.314149e+06 0.00 NULL
2015 Dept Of Environment Protection Executive Asst To The Commissioner 95469.00000 9.546900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.546900e+04 9.546900e+04 0.00 NULL
2015 Dept Of Environment Protection Executive Chief Of Staff 90637.50000 1.812750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.812750e+05 1.812750e+05 0.00 NULL
2015 Dept Of Environment Protection Executive Deputy Commissioner 203017.50000 4.060350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.060350e+05 4.060350e+05 0.00 NULL
2015 Dept Of Environment Protection Executive Program Specialist 122032.50000 2.440650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.440650e+05 2.440650e+05 0.00 NULL
2015 Dept Of Environment Protection First Asst Marine Engineer 69971.00000 1.399420e+05 41341.64 2.067082e+04 20670.820 863.75 2 2.067082e+04 41341.64 1.812836e+05 1.812836e+05 0.00 NULL
2015 Dept Of Environment Protection Gardener 48016.22222 4.321460e+05 649.91 7.221222e+01 4.440 21.25 9 4.440000e+00 39.96 4.327959e+05 4.321860e+05 609.95 NULL
2015 Dept Of Environment Protection Geologist 59013.62500 4.721090e+05 30.68 3.835000e+00 0.000 0.00 8 0.000000e+00 0.00 4.721397e+05 4.721090e+05 30.68 NULL
2015 Dept Of Environment Protection Industrial Hygienist 54346.66154 3.532533e+06 329478.19 5.068895e+03 457.080 10580.75 65 4.570800e+02 29710.20 3.862011e+06 3.562243e+06 299767.99 NULL
2015 Dept Of Environment Protection Instrumental Specialist 58092.74648 4.124585e+06 119016.24 1.676285e+03 271.460 2839.50 71 2.714600e+02 19273.66 4.243601e+06 4.143859e+06 99742.58 NULL
2015 Dept Of Environment Protection Interpreter 48872.78591 3.909823e+05 51686.43 6.460804e+03 4710.560 1487.25 8 4.710560e+03 37684.48 4.426687e+05 4.286668e+05 14001.95 NULL
2015 Dept Of Environment Protection Investigator 42064.00000 4.206400e+04 11826.79 1.182679e+04 11826.790 368.00 1 1.182679e+04 11826.79 5.389079e+04 5.389079e+04 0.00 NULL
2015 Dept Of Environment Protection Investigator Empl Disc 70000.00000 7.000000e+04 1.28 1.280000e+00 1.280 0.00 1 1.280000e+00 1.28 7.000128e+04 7.000128e+04 0.00 NULL
2015 Dept Of Environment Protection Laboratory Associate 44692.66667 2.681560e+05 2863.10 4.771833e+02 179.550 101.75 6 1.795500e+02 1077.30 2.710191e+05 2.692333e+05 1785.80 NULL
2015 Dept Of Environment Protection Laboratory Helper 37007.16667 2.220430e+05 5361.37 8.935617e+02 827.550 205.50 6 8.275500e+02 4965.30 2.274044e+05 2.270083e+05 396.07 NULL
2015 Dept Of Environment Protection Laboratory Microbiologist 47896.14286 1.005819e+06 13187.77 6.279890e+02 81.390 373.25 21 8.139000e+01 1709.19 1.019007e+06 1.007528e+06 11478.58 NULL
2015 Dept Of Environment Protection Landscape Architect 80388.66667 2.411660e+05 594.02 1.980067e+02 230.080 0.00 3 1.980067e+02 594.02 2.417600e+05 2.417600e+05 0.00 NULL
2015 Dept Of Environment Protection Machinist NA NA 355298.63 6.579604e+03 5668.180 6575.00 54 5.668180e+03 306081.72 NA NA NA NULL
2015 Dept Of Environment Protection Machinist’s Helper NA NA 66062.74 4.404183e+03 2458.500 1350.00 15 2.458500e+03 36877.50 NA NA NA NULL
2015 Dept Of Environment Protection Management Auditor 63204.00000 6.320400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.320400e+04 6.320400e+04 0.00 NULL
2015 Dept Of Environment Protection Manager, Water Supply 110312.50000 2.206250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.206250e+05 2.206250e+05 0.00 NULL
2015 Dept Of Environment Protection Marine Electronics Technician 87832.00000 8.783200e+04 732.68 7.326800e+02 732.680 24.00 1 7.326800e+02 732.68 8.856468e+04 8.856468e+04 0.00 NULL
2015 Dept Of Environment Protection Marine Oiler 58005.00000 4.640400e+05 101782.26 1.272278e+04 15354.830 2494.50 8 1.272278e+04 101782.26 5.658223e+05 5.658223e+05 0.00 NULL
2015 Dept Of Environment Protection Mariner 58005.00000 1.102095e+06 258049.57 1.358156e+04 13615.960 6294.50 19 1.358156e+04 258049.57 1.360145e+06 1.360145e+06 0.00 NULL
2015 Dept Of Environment Protection Mate 64417.00000 9.018380e+05 231073.50 1.650525e+04 11793.660 5066.00 14 1.179366e+04 165111.24 1.132912e+06 1.066949e+06 65962.26 NULL
2015 Dept Of Environment Protection Mechanical Engineer 79052.24324 2.924933e+06 119012.42 3.216552e+03 82.880 1910.50 37 8.288000e+01 3066.56 3.043945e+06 2.928000e+06 115945.86 NULL
2015 Dept Of Environment Protection Mechanical Engineering Intern 51362.43750 8.217990e+05 32067.85 2.004241e+03 444.160 1035.25 16 4.441600e+02 7106.56 8.538668e+05 8.289056e+05 24961.29 NULL
2015 Dept Of Environment Protection Motor Vehicle Operator 41570.76190 8.729860e+05 108509.58 5.167123e+03 3050.230 3976.25 21 3.050230e+03 64054.83 9.814956e+05 9.370408e+05 44454.75 NULL
2015 Dept Of Environment Protection Motor Vehicle Supervisor 48723.25000 1.948930e+05 29936.36 7.484090e+03 7431.035 773.00 4 7.431035e+03 29724.14 2.248294e+05 2.246171e+05 212.22 NULL
2015 Dept Of Environment Protection Office Machine Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2015 Dept Of Environment Protection Oiler NA NA 479402.76 6.752152e+03 3745.440 7136.25 71 3.745440e+03 265926.24 NA NA NA NULL
2015 Dept Of Environment Protection Painter NA NA 12404.40 6.202200e+03 6202.200 209.00 2 6.202200e+03 12404.40 NA NA NA NULL
2015 Dept Of Environment Protection Paralegal Aide 38492.50000 7.698500e+04 19.37 9.685000e+00 9.685 0.00 2 9.685000e+00 19.37 7.700437e+04 7.700437e+04 0.00 NULL
2015 Dept Of Environment Protection Photographer 49557.00000 4.955700e+04 571.25 5.712500e+02 571.250 17.00 1 5.712500e+02 571.25 5.012825e+04 5.012825e+04 0.00 NULL
2015 Dept Of Environment Protection Physicist 69305.00000 1.386100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.386100e+05 1.386100e+05 0.00 NULL
2015 Dept Of Environment Protection Pipe Caulker NA NA 52221.36 5.222136e+04 52221.360 534.00 1 5.222136e+04 52221.36 NA NA NA NULL
2015 Dept Of Environment Protection Plumber NA NA 136778.73 1.052144e+04 6256.390 1513.00 13 6.256390e+03 81333.07 NA NA NA NULL
2015 Dept Of Environment Protection Plumber’s Helper NA NA 75410.71 8.378968e+03 3091.200 1134.75 9 3.091200e+03 27820.80 NA NA NA NULL
2015 Dept Of Environment Protection Port Marine Engineer 81679.50000 1.633590e+05 13752.52 6.876260e+03 6876.260 257.00 2 6.876260e+03 13752.52 1.771115e+05 1.771115e+05 0.00 NULL
2015 Dept Of Environment Protection Principal Administrative Associate 56438.38165 1.952768e+07 860906.20 2.488168e+03 29.945 21597.50 346 2.994500e+01 10360.97 2.038859e+07 1.953804e+07 850545.23 NULL
2015 Dept Of Environment Protection Procurement Analyst 55481.98148 2.996027e+06 63248.34 1.171266e+03 0.595 1819.25 54 5.950000e-01 32.13 3.059275e+06 2.996059e+06 63216.21 NULL
2015 Dept Of Environment Protection Project Manager 60957.33333 2.194464e+06 36997.98 1.027722e+03 1.385 763.50 36 1.385000e+00 49.86 2.231462e+06 2.194514e+06 36948.12 NULL
2015 Dept Of Environment Protection Project Manager Intern# 50824.12500 8.131860e+05 25658.79 1.603674e+03 0.000 873.50 16 0.000000e+00 0.00 8.388448e+05 8.131860e+05 25658.79 NULL
2015 Dept Of Environment Protection Public Health Epidemiologist 56972.00000 1.139440e+05 66.86 3.343000e+01 33.430 0.00 2 3.343000e+01 66.86 1.140109e+05 1.140109e+05 0.00 NULL
2015 Dept Of Environment Protection Public Health Sanitarian 54216.30000 1.084326e+06 24683.04 1.234152e+03 151.550 705.75 20 1.515500e+02 3031.00 1.109009e+06 1.087357e+06 21652.04 NULL
2015 Dept Of Environment Protection Public Records Aide 38003.60000 3.800360e+05 67591.13 6.759113e+03 6421.865 2408.75 10 6.421865e+03 64218.65 4.476271e+05 4.442547e+05 3372.48 NULL
2015 Dept Of Environment Protection Public Records Officer 29794.09493 8.938228e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 8.938228e+04 8.938228e+04 0.00 NULL
2015 Dept Of Environment Protection Quality Assurance Specialist 50000.00000 1.000000e+05 8049.87 4.024935e+03 4024.935 342.00 2 4.024935e+03 8049.87 1.080499e+05 1.080499e+05 0.00 NULL
2015 Dept Of Environment Protection Radio Repair Mechanic NA NA 7291.22 7.291220e+03 7291.220 82.50 1 7.291220e+03 7291.22 NA NA NA NULL
2015 Dept Of Environment Protection Research Assistant 46281.33333 1.388440e+05 1885.07 6.283567e+02 17.990 52.50 3 1.799000e+01 53.97 1.407291e+05 1.388980e+05 1831.10 NULL
2015 Dept Of Environment Protection Scientist 59678.72941 5.072692e+06 145652.52 1.713559e+03 94.020 3657.25 85 9.402000e+01 7991.70 5.218345e+06 5.080684e+06 137660.82 NULL
2015 Dept Of Environment Protection Secretary 44726.40000 4.472640e+05 19526.01 1.952601e+03 0.000 549.00 10 0.000000e+00 0.00 4.667900e+05 4.472640e+05 19526.01 NULL
2015 Dept Of Environment Protection Secretary To The Commissioner 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2015 Dept Of Environment Protection Secretary To The Exec Deputy Commissioner 58222.50000 1.164450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.164450e+05 1.164450e+05 0.00 NULL
2015 Dept Of Environment Protection Senior Adviser To The Commissioner 172550.00000 1.725500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.725500e+05 1.725500e+05 0.00 NULL
2015 Dept Of Environment Protection Senior Sewage Treatment Worker NA NA 1801465.71 1.029409e+04 8199.950 42060.30 175 8.199950e+03 1434991.25 NA NA NA NULL
2015 Dept Of Environment Protection Senior Stationary Engineer NA NA 1590943.33 2.892624e+04 32495.410 21399.25 55 2.892624e+04 1590943.33 NA NA NA NULL
2015 Dept Of Environment Protection Sewage Treatment Worker NA NA 4581972.78 7.474670e+03 5783.170 111979.29 613 5.783170e+03 3545083.21 NA NA NA NULL
2015 Dept Of Environment Protection Staff Analyst 57765.28947 2.195081e+06 75104.98 1.976447e+03 0.000 2070.50 38 0.000000e+00 0.00 2.270186e+06 2.195081e+06 75104.98 NULL
2015 Dept Of Environment Protection Staff Analyst Trainee 43273.15385 1.125102e+06 39445.32 1.517128e+03 23.635 1449.75 26 2.363500e+01 614.51 1.164547e+06 1.125717e+06 38830.81 NULL
2015 Dept Of Environment Protection Stationary Engineer NA NA 3429785.17 2.017521e+04 16237.340 70354.00 170 1.623734e+04 2760347.80 NA NA NA NULL
2015 Dept Of Environment Protection Statistician 77489.00000 7.748900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.748900e+04 7.748900e+04 0.00 NULL
2015 Dept Of Environment Protection Stock Worker 23891.97657 7.167593e+04 514.89 1.716300e+02 0.000 33.00 3 0.000000e+00 0.00 7.219082e+04 7.167593e+04 514.89 NULL
2015 Dept Of Environment Protection Strategic Initiative Specialist 86863.50000 5.211810e+05 10134.02 1.689003e+03 0.000 217.75 6 0.000000e+00 0.00 5.313150e+05 5.211810e+05 10134.02 NULL
2015 Dept Of Environment Protection Summer College Intern 1866.38530 1.381125e+05 0.00 0.000000e+00 0.000 0.00 74 0.000000e+00 0.00 1.381125e+05 1.381125e+05 0.00 NULL
2015 Dept Of Environment Protection Summer Graduate Intern 2255.89229 7.670034e+04 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 7.670034e+04 7.670034e+04 0.00 NULL
2015 Dept Of Environment Protection Superintendent Of Water And Sewer Systems 111158.35000 2.223167e+06 2699.06 1.349530e+02 0.000 20.00 20 0.000000e+00 0.00 2.225866e+06 2.223167e+06 2699.06 NULL
2015 Dept Of Environment Protection Supervising Special Officer 48520.00000 4.852000e+04 14187.72 1.418772e+04 14187.720 381.50 1 1.418772e+04 14187.72 6.270772e+04 6.270772e+04 0.00 NULL
2015 Dept Of Environment Protection Supervisor 76999.00877 1.755577e+07 2663668.41 1.168276e+04 6335.805 43464.50 228 6.335805e+03 1444563.54 2.021944e+07 1.900034e+07 1219104.87 NULL
2015 Dept Of Environment Protection Supervisor Bricklayer NA NA 11989.33 1.198933e+04 11989.330 144.00 1 1.198933e+04 11989.33 NA NA NA NULL
2015 Dept Of Environment Protection Supervisor Carpenter NA NA 18006.98 1.800698e+04 18006.980 220.00 1 1.800698e+04 18006.98 NA NA NA NULL
2015 Dept Of Environment Protection Supervisor Electrician NA NA 636503.72 2.546015e+04 21192.760 8292.75 25 2.119276e+04 529819.00 NA NA NA NULL
2015 Dept Of Environment Protection Supervisor Of Mechanics 108814.46154 1.414588e+06 239066.67 1.838974e+04 16020.160 3007.50 13 1.602016e+04 208262.08 1.653655e+06 1.622850e+06 30804.59 NULL
2015 Dept Of Environment Protection Supervisor Of Stock Workers 41989.76923 1.637601e+06 119343.40 3.060087e+03 641.160 4062.25 39 6.411600e+02 25005.24 1.756944e+06 1.662606e+06 94338.16 NULL
2015 Dept Of Environment Protection Supervisor Painter NA NA 8325.00 8.325000e+03 8325.000 108.25 1 8.325000e+03 8325.00 NA NA NA NULL
2015 Dept Of Environment Protection Supervisor Plumber NA NA 82171.10 1.369518e+04 10869.270 861.50 6 1.086927e+04 65215.62 NA NA NA NULL
2015 Dept Of Environment Protection Surveyor 67830.70000 6.783070e+05 129.07 1.290700e+01 2.660 1.25 10 2.660000e+00 26.60 6.784361e+05 6.783336e+05 102.47 NULL
2015 Dept Of Environment Protection Telecommunication Manager 130380.00000 1.303800e+05 9664.77 9.664770e+03 9664.770 116.75 1 9.664770e+03 9664.77 1.400448e+05 1.400448e+05 0.00 NULL
2015 Dept Of Environment Protection Telecommunications Associate 68569.00000 5.485520e+05 101262.23 1.265778e+04 9317.515 2061.75 8 9.317515e+03 74540.12 6.498142e+05 6.230921e+05 26722.11 NULL
2015 Dept Of Environment Protection Third Assistant Marine Engineer 65258.00000 4.568060e+05 101318.39 1.447406e+04 16243.550 2252.75 7 1.447406e+04 101318.39 5.581244e+05 5.581244e+05 0.00 NULL
2015 Dept Of Environment Protection Tractor Operator NA NA 912.54 9.125400e+02 912.540 9.00 1 9.125400e+02 912.54 NA NA NA NULL
2015 Dept Of Environment Protection Water Use Inspector 45501.70968 2.821106e+06 376261.44 6.068733e+03 2701.020 11604.50 62 2.701020e+03 167463.24 3.197367e+06 2.988569e+06 208798.20 NULL
2015 Dept Of Environment Protection Watershed Maintainer 48878.97464 1.349060e+07 636548.25 2.306334e+03 903.250 17592.35 276 9.032500e+02 249297.00 1.412715e+07 1.373989e+07 387251.25 NULL
2015 Dept Of Environment Protection Welder NA NA 25.24 2.524000e+01 25.240 0.50 1 2.524000e+01 25.24 NA NA NA NULL
2015 Dept Of Health/Mental Hygiene *Asist Systms Analyst 60015.50000 1.200310e+05 1.17 5.850000e-01 0.585 0.00 2 5.850000e-01 1.17 1.200322e+05 1.200322e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene *Assist Coordinating Manager 49994.10000 4.999410e+05 1635.45 1.635450e+02 0.000 32.75 10 0.000000e+00 0.00 5.015765e+05 4.999410e+05 1635.45 NULL
2015 Dept Of Health/Mental Hygiene *Associate Director Health Program 110513.33333 3.315400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.315400e+05 3.315400e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene *Associate Executive Director 114188.00000 7.993160e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.993160e+05 7.993160e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene *Community Liaison Worker 48311.33333 1.449340e+05 314.89 1.049633e+02 72.210 0.00 3 7.221000e+01 216.63 1.452489e+05 1.451506e+05 98.26 NULL
2015 Dept Of Health/Mental Hygiene *Coordinating Manager 65705.92000 1.642648e+06 23031.26 9.212504e+02 0.000 525.25 25 0.000000e+00 0.00 1.665679e+06 1.642648e+06 23031.26 NULL
2015 Dept Of Health/Mental Hygiene *Custodial Assistant 33549.66667 1.006490e+05 7943.70 2.647900e+03 2498.430 292.25 3 2.498430e+03 7495.29 1.085927e+05 1.081443e+05 448.41 NULL
2015 Dept Of Health/Mental Hygiene *Dir Of Fiscal Affairs 88415.00000 8.841500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.841500e+04 8.841500e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene *Director Of Health Care Program Planning/Analysis 94652.40000 4.732620e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.732620e+05 4.732620e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene *Personnel Program Developement Specialist 74627.00000 7.462700e+04 32.95 3.295000e+01 32.950 0.00 1 3.295000e+01 32.95 7.465995e+04 7.465995e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene *Research Scientist 83122.00000 8.312200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.312200e+04 8.312200e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene *Senior Staff Officer 72190.00000 7.219000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.219000e+04 7.219000e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene *Senior Systems Analyst 51507.50000 2.060300e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.060300e+05 2.060300e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene *Sr Management Consultant 78167.90909 1.719694e+06 -0.02 -9.091000e-04 0.000 0.00 22 -9.091000e-04 -0.02 1.719694e+06 1.719694e+06 0.00 NULL
2015 Dept Of Health/Mental Hygiene *Sr Systems Analyst - Edp 51964.00000 5.196400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.196400e+04 5.196400e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene *Systems Analyst 43410.30769 5.643340e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 5.643340e+05 5.643340e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene ?Public Relations Assistant 0.00000 0.000000e+00 1.16 1.160000e+00 1.160 0.00 1 1.160000e+00 1.16 1.160000e+00 1.160000e+00 0.00 NULL
2015 Dept Of Health/Mental Hygiene Accountant 61424.44444 1.658460e+06 52454.51 1.942760e+03 45.250 1002.00 27 4.525000e+01 1221.75 1.710915e+06 1.659682e+06 51232.76 NULL
2015 Dept Of Health/Mental Hygiene Adm Manager-Non-Mgrl 71506.38462 9.295830e+05 22231.76 1.710135e+03 31.410 507.50 13 3.141000e+01 408.33 9.518148e+05 9.299913e+05 21823.43 NULL
2015 Dept Of Health/Mental Hygiene Admin Community Relations Specialist 94067.33333 5.644040e+05 3566.47 5.944117e+02 0.000 67.50 6 0.000000e+00 0.00 5.679705e+05 5.644040e+05 3566.47 NULL
2015 Dept Of Health/Mental Hygiene Admin Contract Specialist 98706.00000 2.763768e+06 292.99 1.046393e+01 0.000 5.00 28 0.000000e+00 0.00 2.764061e+06 2.763768e+06 292.99 NULL
2015 Dept Of Health/Mental Hygiene Administrative Accountant 101502.50000 2.030050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.030050e+05 2.030050e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Administrative Community Relations Specialist 88350.00000 8.835000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.835000e+04 8.835000e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Administrative Director Of Social Services 96456.50000 1.929130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.929130e+05 1.929130e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Administrative Graphic Artist 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Administrative Investigator 102560.66667 3.076820e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.076820e+05 3.076820e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Administrative Management Auditor 87338.40000 4.366920e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.366920e+05 4.366920e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Administrative Manager 143382.00000 1.433820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.433820e+05 1.433820e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Administrative Printing Services Manager 111625.00000 1.116250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.116250e+05 1.116250e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Administrative Procurement Analyst 76720.60000 3.836030e+05 32782.37 6.556474e+03 416.180 578.00 5 4.161800e+02 2080.90 4.163854e+05 3.856839e+05 30701.47 NULL
2015 Dept Of Health/Mental Hygiene Administrative Psychologist 115033.00000 1.150330e+05 148.03 1.480300e+02 148.030 0.00 1 1.480300e+02 148.03 1.151810e+05 1.151810e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Administrative Public Health Nurse 104504.20000 2.090084e+06 41.76 2.088000e+00 0.000 0.00 20 0.000000e+00 0.00 2.090126e+06 2.090084e+06 41.76 NULL
2015 Dept Of Health/Mental Hygiene Administrative Public Health Sanitarian 112042.25000 8.963380e+05 19.12 2.390000e+00 0.000 0.00 8 0.000000e+00 0.00 8.963571e+05 8.963380e+05 19.12 NULL
2015 Dept Of Health/Mental Hygiene Administrative Public Information Specialist 91537.00000 2.105351e+06 786.73 3.420565e+01 0.000 26.75 23 0.000000e+00 0.00 2.106138e+06 2.105351e+06 786.73 NULL
2015 Dept Of Health/Mental Hygiene Administrative Space Analyst 124631.00000 1.246310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.246310e+05 1.246310e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Administrative Staff Analyst 79732.86332 2.200627e+07 254747.44 9.229980e+02 0.000 5516.75 276 0.000000e+00 0.00 2.226102e+07 2.200627e+07 254747.44 NULL
2015 Dept Of Health/Mental Hygiene Administrative Storekeeper 88606.00000 8.860600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.860600e+04 8.860600e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Administrative Supervisor Of Building Maintenance 108911.20000 5.445560e+05 26.74 5.348000e+00 0.000 0.00 5 0.000000e+00 0.00 5.445827e+05 5.445560e+05 26.74 NULL
2015 Dept Of Health/Mental Hygiene Agency Attorney 83776.99343 2.261979e+06 447.04 1.655704e+01 0.000 2.00 27 0.000000e+00 0.00 2.262426e+06 2.261979e+06 447.04 NULL
2015 Dept Of Health/Mental Hygiene Agency Attorney Intern 59221.66667 1.776650e+05 61.06 2.035333e+01 0.000 0.00 3 0.000000e+00 0.00 1.777261e+05 1.776650e+05 61.06 NULL
2015 Dept Of Health/Mental Hygiene Agency Chief Contracting Officer 145043.50000 2.900870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.900870e+05 2.900870e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Agency Deputy Medical Director 143688.50000 5.747540e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.747540e+05 5.747540e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Agency Medical Director 175411.11538 4.560689e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 4.560689e+06 4.560689e+06 0.00 NULL
2015 Dept Of Health/Mental Hygiene Agency Security Director 77878.00000 7.787800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.787800e+04 7.787800e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Architect 95105.75000 3.804230e+05 14945.47 3.736367e+03 0.000 172.00 4 0.000000e+00 0.00 3.953685e+05 3.804230e+05 14945.47 NULL
2015 Dept Of Health/Mental Hygiene Assistant Architect 65536.66667 1.966100e+05 1180.71 3.935700e+02 280.240 23.75 3 2.802400e+02 840.72 1.977907e+05 1.974507e+05 339.99 NULL
2015 Dept Of Health/Mental Hygiene Assistant Civil Engineer 56457.00000 5.645700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.645700e+04 5.645700e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Assistant Commissioner 168501.00000 1.685010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.685010e+05 1.685010e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Assistant Director Health Program 70940.00000 7.094000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.094000e+04 7.094000e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Assistant Director Of Forensic Biology 134290.00000 1.342900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.342900e+05 1.342900e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Assistant Director Of Toxicology 143463.00000 1.434630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.434630e+05 1.434630e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Assistant Electrical Engineer 56457.00000 5.645700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.645700e+04 5.645700e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Assistant Printing Press Operator 52543.75000 1.050875e+05 22.81 1.140500e+01 11.405 0.00 2 1.140500e+01 22.81 1.051103e+05 1.051103e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Associate Chemist 64929.66667 3.895780e+05 17461.83 2.910305e+03 162.140 1037.25 6 1.621400e+02 972.84 4.070398e+05 3.905508e+05 16488.99 NULL
2015 Dept Of Health/Mental Hygiene Associate Contract Specialist 69369.25000 2.774770e+05 990.22 2.475550e+02 223.610 3.75 4 2.236100e+02 894.44 2.784672e+05 2.783714e+05 95.78 NULL
2015 Dept Of Health/Mental Hygiene Associate Correctional Counselor 57683.00000 1.730490e+05 13138.05 4.379350e+03 1870.710 362.50 3 1.870710e+03 5612.13 1.861870e+05 1.786611e+05 7525.92 NULL
2015 Dept Of Health/Mental Hygiene Associate Director Of Nursing Services 105257.00000 1.052570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.052570e+05 1.052570e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Associate Investigator 60528.00000 6.052800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.052800e+04 6.052800e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Associate Laboratory Microbiologist 63594.76316 2.416601e+06 226048.61 5.948648e+03 482.115 12415.25 38 4.821150e+02 18320.37 2.642650e+06 2.434921e+06 207728.24 NULL
2015 Dept Of Health/Mental Hygiene Associate Project Manager 86480.66667 2.594420e+05 1837.75 6.125833e+02 0.000 32.00 3 0.000000e+00 0.00 2.612798e+05 2.594420e+05 1837.75 NULL
2015 Dept Of Health/Mental Hygiene Associate Public Health Sanitarian 65707.08029 9.001870e+06 458918.93 3.349773e+03 455.340 11017.25 137 4.553400e+02 62381.58 9.460789e+06 9.064252e+06 396537.35 NULL
2015 Dept Of Health/Mental Hygiene Associate Public Information Specialist 59579.83333 3.574790e+05 5283.05 8.805083e+02 0.435 141.00 6 4.350000e-01 2.61 3.627620e+05 3.574816e+05 5280.44 NULL
2015 Dept Of Health/Mental Hygiene Associate Staff Analyst 75654.38022 7.035857e+06 80588.51 8.665431e+02 0.000 1662.00 93 0.000000e+00 0.00 7.116446e+06 7.035857e+06 80588.51 NULL
2015 Dept Of Health/Mental Hygiene Asst Commissioner 195278.00000 1.952780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.952780e+05 1.952780e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Asst Pb Hlth Adv 31426.03783 1.414172e+06 42062.43 9.347207e+02 0.780 1497.50 45 7.800000e-01 35.10 1.456234e+06 1.414207e+06 42027.33 NULL
2015 Dept Of Health/Mental Hygiene Attending Physician 147662.00000 1.476620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.476620e+05 1.476620e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Attorney At Law 106516.00000 2.130320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.130320e+05 2.130320e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Bookbinder 40362.00000 4.036200e+04 1.22 1.220000e+00 1.220 0.00 1 1.220000e+00 1.22 4.036322e+04 4.036322e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Bookkeeper 41674.80000 4.167480e+05 17107.70 1.710770e+03 6.740 352.00 10 6.740000e+00 67.40 4.338557e+05 4.168154e+05 17040.30 NULL
2015 Dept Of Health/Mental Hygiene Carpenter NA NA 8769.55 8.769550e+03 8769.550 109.00 1 8.769550e+03 8769.55 NA NA NA NULL
2015 Dept Of Health/Mental Hygiene Caseworker 43702.84000 1.092571e+06 23922.99 9.569196e+02 4.200 773.25 25 4.200000e+00 105.00 1.116494e+06 1.092676e+06 23817.99 NULL
2015 Dept Of Health/Mental Hygiene Certified It Administrator 90324.16955 2.077456e+06 134032.60 5.827504e+03 654.550 2011.25 23 6.545500e+02 15054.65 2.211488e+06 2.092511e+06 118977.95 NULL
2015 Dept Of Health/Mental Hygiene Certified It Developer 96088.27273 1.056971e+06 10566.68 9.606073e+02 2.240 148.50 11 2.240000e+00 24.64 1.067538e+06 1.056996e+06 10542.04 NULL
2015 Dept Of Health/Mental Hygiene Certified Local Area Network Administrator 86325.00000 8.632500e+04 4.14 4.140000e+00 4.140 48.50 1 4.140000e+00 4.14 8.632914e+04 8.632914e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Chief City Medical Examiner 214413.00000 2.144130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144130e+05 2.144130e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene City Clinician 100872.22438 2.118317e+06 66904.43 3.185925e+03 0.000 939.75 21 0.000000e+00 0.00 2.185221e+06 2.118317e+06 66904.43 NULL
2015 Dept Of Health/Mental Hygiene City Custodial Assistant 31242.44230 1.562122e+06 86852.28 1.737046e+03 1001.115 3525.75 50 1.001115e+03 50055.75 1.648974e+06 1.612178e+06 36796.53 NULL
2015 Dept Of Health/Mental Hygiene City Laborer NA NA 148514.74 7.072130e+03 3171.690 3174.50 21 3.171690e+03 66605.49 NA NA NA NULL
2015 Dept Of Health/Mental Hygiene City Medical Examiner 175900.59459 6.508322e+06 5418.08 1.464346e+02 0.000 161.75 37 0.000000e+00 0.00 6.513740e+06 6.508322e+06 5418.08 NULL
2015 Dept Of Health/Mental Hygiene City Medical Specialist 108803.36723 1.022752e+07 304213.83 3.236317e+03 0.000 6982.75 94 0.000000e+00 0.00 1.053173e+07 1.022752e+07 304213.83 NULL
2015 Dept Of Health/Mental Hygiene City Mortuary Technician 38639.85714 1.352395e+06 219265.41 6.264726e+03 3125.160 7586.25 35 3.125160e+03 109380.60 1.571660e+06 1.461776e+06 109884.81 NULL
2015 Dept Of Health/Mental Hygiene City Pest Control Aide 26820.63605 6.973365e+05 9401.48 3.615954e+02 0.000 425.00 26 0.000000e+00 0.00 7.067380e+05 6.973365e+05 9401.48 NULL
2015 Dept Of Health/Mental Hygiene City Research Scientist 80075.28891 4.260005e+07 455048.63 8.553546e+02 0.000 11917.00 532 0.000000e+00 0.00 4.305510e+07 4.260005e+07 455048.63 NULL
2015 Dept Of Health/Mental Hygiene City Veterinarian 55288.06500 2.211523e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.211523e+05 2.211523e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Civil Engineer 75611.50000 1.512230e+05 5718.25 2.859125e+03 2859.125 48.25 2 2.859125e+03 5718.25 1.569412e+05 1.569412e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Clerical Aide 28858.50000 3.463020e+05 42.01 3.500833e+00 0.000 16.00 12 0.000000e+00 0.00 3.463440e+05 3.463020e+05 42.01 NULL
2015 Dept Of Health/Mental Hygiene Clerical Associate 38744.82036 1.069357e+07 290888.02 1.053942e+03 1.500 10290.75 276 1.500000e+00 414.00 1.098446e+07 1.069398e+07 290474.02 NULL
2015 Dept Of Health/Mental Hygiene College Aide 4817.22582 9.393590e+05 0.00 0.000000e+00 0.000 0.00 195 0.000000e+00 0.00 9.393590e+05 9.393590e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene College Aide - Assignment Levels Ii And Iii 12291.71475 4.916686e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.916686e+04 4.916686e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Commissioner Of Health 214413.00000 2.144130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144130e+05 2.144130e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Community Assistant 26701.85469 2.136148e+05 3362.73 4.203413e+02 279.865 138.75 8 2.798650e+02 2238.92 2.169776e+05 2.158538e+05 1123.81 NULL
2015 Dept Of Health/Mental Hygiene Community Associate 43343.04348 9.968900e+05 74668.93 3.246475e+03 59.150 2276.75 23 5.915000e+01 1360.45 1.071559e+06 9.982504e+05 73308.48 NULL
2015 Dept Of Health/Mental Hygiene Community Coordinator 57478.30000 2.873915e+06 112828.36 2.256567e+03 0.000 2688.00 50 0.000000e+00 0.00 2.986743e+06 2.873915e+06 112828.36 NULL
2015 Dept Of Health/Mental Hygiene Community Service Aide 26018.67057 2.601867e+05 533.46 5.334600e+01 1.120 8.25 10 1.120000e+00 11.20 2.607202e+05 2.601979e+05 522.26 NULL
2015 Dept Of Health/Mental Hygiene Computer Aide-Non-Spvr 42614.20018 2.343781e+06 73722.97 1.340418e+03 37.960 2009.50 55 3.796000e+01 2087.80 2.417504e+06 2.345869e+06 71635.17 NULL
2015 Dept Of Health/Mental Hygiene Computer Associate 63160.55645 3.915954e+06 95528.37 1.540780e+03 5.755 2202.00 62 5.755000e+00 356.81 4.011483e+06 3.916311e+06 95171.56 NULL
2015 Dept Of Health/Mental Hygiene Computer Operations Manager 80000.00000 8.000000e+04 64.17 6.417000e+01 64.170 2.00 1 6.417000e+01 64.17 8.006417e+04 8.006417e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Computer Programmer Analyst 56629.37500 4.530350e+05 89.38 1.117250e+01 0.000 0.00 8 0.000000e+00 0.00 4.531244e+05 4.530350e+05 89.38 NULL
2015 Dept Of Health/Mental Hygiene Computer Service Technician 44883.51493 8.079033e+05 14223.44 7.901911e+02 10.585 360.25 18 1.058500e+01 190.53 8.221267e+05 8.080938e+05 14032.91 NULL
2015 Dept Of Health/Mental Hygiene Computer Specialist 92010.00000 6.624720e+06 110305.49 1.532021e+03 0.000 1726.75 72 0.000000e+00 0.00 6.735025e+06 6.624720e+06 110305.49 NULL
2015 Dept Of Health/Mental Hygiene Computer Systems Manager 102781.70513 8.016973e+06 26786.48 3.434164e+02 0.000 358.25 78 0.000000e+00 0.00 8.043759e+06 8.016973e+06 26786.48 NULL
2015 Dept Of Health/Mental Hygiene Construction Project Manager 100381.00000 1.003810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.003810e+05 1.003810e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Consultant 69325.92157 3.535622e+06 211743.47 4.151833e+03 165.490 4241.25 51 1.654900e+02 8439.99 3.747365e+06 3.544062e+06 203303.48 NULL
2015 Dept Of Health/Mental Hygiene Consultant Public Health Nurse 72798.00000 2.911920e+05 679.30 1.698250e+02 3.760 10.50 4 3.760000e+00 15.04 2.918713e+05 2.912070e+05 664.26 NULL
2015 Dept Of Health/Mental Hygiene Contract Specialist 61278.25000 4.902260e+05 9531.45 1.191431e+03 0.000 263.50 8 0.000000e+00 0.00 4.997575e+05 4.902260e+05 9531.45 NULL
2015 Dept Of Health/Mental Hygiene Correctional Counselor 46386.13333 6.957920e+05 224.60 1.497333e+01 0.000 18.75 15 0.000000e+00 0.00 6.960166e+05 6.957920e+05 224.60 NULL
2015 Dept Of Health/Mental Hygiene Counsel 195278.00000 1.952780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.952780e+05 1.952780e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Criminalist 57343.89789 1.628567e+07 633754.16 2.231529e+03 94.550 13010.50 284 9.455000e+01 26852.20 1.691942e+07 1.631252e+07 606901.96 NULL
2015 Dept Of Health/Mental Hygiene Criminalist Assistant Director Of Laboratory 109386.21429 1.531407e+06 4250.22 3.035871e+02 0.000 48.00 14 0.000000e+00 0.00 1.535657e+06 1.531407e+06 4250.22 NULL
2015 Dept Of Health/Mental Hygiene Criminalist Deputy Director Of Labatory 83653.00000 1.673060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.673060e+05 1.673060e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Criminalist Director Of Laboratory 145000.00000 2.900000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.900000e+05 2.900000e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Custodian 37769.45734 9.442364e+05 85565.54 3.422622e+03 2087.570 3352.50 25 2.087570e+03 52189.25 1.029802e+06 9.964257e+05 33376.29 NULL
2015 Dept Of Health/Mental Hygiene Customer Information Representative 70891.00000 7.089100e+04 6392.80 6.392800e+03 6392.800 105.25 1 6.392800e+03 6392.80 7.728380e+04 7.728380e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Deputy Commissioner 201892.50000 8.075700e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.075700e+05 8.075700e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Deputy Commissioner For Administation 164145.00000 1.641450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.641450e+05 1.641450e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Deputy Director Of Medicolegal Investigations 121497.00000 2.429940e+05 8846.03 4.423015e+03 4423.015 125.00 2 4.423015e+03 8846.03 2.518400e+05 2.518400e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Director 175624.00000 1.756240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.756240e+05 1.756240e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Director Of Forensic Biology 191653.00000 1.916530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.916530e+05 1.916530e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Director Of Nursing Services 135211.00000 1.352110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.352110e+05 1.352110e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Director Of Public Relations 105180.00000 1.051800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.051800e+05 1.051800e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Director Of Security 78226.00000 7.822600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.822600e+04 7.822600e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Electrician NA NA 52406.23 1.310156e+04 1672.125 727.50 4 1.672125e+03 6688.50 NA NA NA NULL
2015 Dept Of Health/Mental Hygiene Electrician’s Helper NA NA 23815.34 2.381534e+04 23815.340 576.00 1 2.381534e+04 23815.34 NA NA NA NULL
2015 Dept Of Health/Mental Hygiene Environmental Health Technician 35953.00000 1.438120e+05 91.02 2.275500e+01 0.000 3.75 4 0.000000e+00 0.00 1.439030e+05 1.438120e+05 91.02 NULL
2015 Dept Of Health/Mental Hygiene Evidence And Property Control Specialist 54787.94872 2.136730e+06 427408.17 1.095918e+04 3663.640 9752.75 39 3.663640e+03 142881.96 2.564138e+06 2.279612e+06 284526.21 NULL
2015 Dept Of Health/Mental Hygiene Executive Agency Counsel 122810.50000 1.719347e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.719347e+06 1.719347e+06 0.00 NULL
2015 Dept Of Health/Mental Hygiene Executive Secretary 48090.24000 4.809024e+04 17.24 1.724000e+01 17.240 0.00 1 1.724000e+01 17.24 4.810748e+04 4.810748e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Exterminator 34428.47385 8.951403e+05 30355.10 1.167504e+03 2.840 1035.25 26 2.840000e+00 73.84 9.254954e+05 8.952142e+05 30281.26 NULL
2015 Dept Of Health/Mental Hygiene Family Pub Health Nurse 77957.66667 1.403238e+06 395.84 2.199111e+01 8.515 0.00 18 8.515000e+00 153.27 1.403634e+06 1.403391e+06 242.57 NULL
2015 Dept Of Health/Mental Hygiene Forens Mort Tech-Coord Mrt Srv 80581.50000 1.611630e+05 37233.06 1.861653e+04 18616.530 650.00 2 1.861653e+04 37233.06 1.983961e+05 1.983961e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Forensic Mortuary Technician 46653.08333 1.679511e+06 667025.47 1.852849e+04 15485.295 19762.45 36 1.548530e+04 557470.62 2.346536e+06 2.236982e+06 109554.85 NULL
2015 Dept Of Health/Mental Hygiene Health Care Prog Plan/Analyst 52085.44444 4.687690e+05 5.70 6.333333e-01 0.000 0.00 9 0.000000e+00 0.00 4.687747e+05 4.687690e+05 5.70 NULL
2015 Dept Of Health/Mental Hygiene Health Services Manager 104366.81671 2.473494e+07 43176.27 1.821784e+02 0.000 1211.25 237 0.000000e+00 0.00 2.477811e+07 2.473494e+07 43176.27 NULL
2015 Dept Of Health/Mental Hygiene Institutional Aide 35318.28174 8.123205e+05 64529.37 2.805625e+03 1083.100 2703.25 23 1.083100e+03 24911.30 8.768498e+05 8.372318e+05 39618.07 NULL
2015 Dept Of Health/Mental Hygiene Interpreter 54103.66667 1.623110e+05 20.10 6.700000e+00 0.000 0.00 3 0.000000e+00 0.00 1.623311e+05 1.623110e+05 20.10 NULL
2015 Dept Of Health/Mental Hygiene Investigator 48710.35294 8.280760e+05 12281.04 7.224141e+02 1.530 479.07 17 1.530000e+00 26.01 8.403570e+05 8.281020e+05 12255.03 NULL
2015 Dept Of Health/Mental Hygiene Jr Ph Nurse 29631.55889 1.846046e+07 296859.79 4.765005e+02 26.320 8174.50 623 2.632000e+01 16397.36 1.875732e+07 1.847686e+07 280462.43 NULL
2015 Dept Of Health/Mental Hygiene Junior Public Health Nurse 64930.21000 2.142697e+06 49661.84 1.504904e+03 28.960 1016.25 33 2.896000e+01 955.68 2.192359e+06 2.143653e+06 48706.16 NULL
2015 Dept Of Health/Mental Hygiene Laboratory Associate 38690.10100 1.586294e+06 47257.54 1.152623e+03 7.030 4020.50 41 7.030000e+00 288.23 1.633552e+06 1.586582e+06 46969.31 NULL
2015 Dept Of Health/Mental Hygiene Laboratory Helper 32212.39154 4.187611e+05 19936.32 1.533563e+03 0.000 1673.25 13 0.000000e+00 0.00 4.386974e+05 4.187611e+05 19936.32 NULL
2015 Dept Of Health/Mental Hygiene Laboratory Microbiologist 48690.06545 1.996293e+06 115233.88 2.810582e+03 2.800 7921.00 41 2.800000e+00 114.80 2.111527e+06 1.996407e+06 115119.08 NULL
2015 Dept Of Health/Mental Hygiene Legal Secretarial Assistant 59163.00000 5.916300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.916300e+04 5.916300e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Maintenance Worker NA NA 63886.39 4.914338e+03 1081.550 1818.25 13 1.081550e+03 14060.15 NA NA NA NULL
2015 Dept Of Health/Mental Hygiene Management Auditor 68606.33333 6.174570e+05 13798.76 1.533196e+03 88.660 242.25 9 8.866000e+01 797.94 6.312558e+05 6.182549e+05 13000.82 NULL
2015 Dept Of Health/Mental Hygiene Mechanical Engineer 69272.00000 6.927200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.927200e+04 6.927200e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Medical Investigator 40816.26000 8.163252e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.163252e+04 8.163252e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Medical Record Librarian 48233.00000 1.446990e+05 5663.64 1.887880e+03 0.000 222.25 3 0.000000e+00 0.00 1.503626e+05 1.446990e+05 5663.64 NULL
2015 Dept Of Health/Mental Hygiene Medical Specialist 110456.55333 3.313697e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.313697e+05 3.313697e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Medicolegal Investigator 87686.69697 2.893661e+06 399073.22 1.209313e+04 10130.710 6063.00 33 1.013071e+04 334313.43 3.292734e+06 3.227974e+06 64759.79 NULL
2015 Dept Of Health/Mental Hygiene Motor Vehicle Operator 43471.29391 2.782163e+06 326668.11 5.104189e+03 1736.730 11554.00 64 1.736730e+03 111150.72 3.108831e+06 2.893314e+06 215517.39 NULL
2015 Dept Of Health/Mental Hygiene Motor Vehicle Supervisor 51968.28571 3.637780e+05 39917.43 5.702490e+03 879.990 1379.75 7 8.799900e+02 6159.93 4.036954e+05 3.699379e+05 33757.50 NULL
2015 Dept Of Health/Mental Hygiene Nurse Practicioner 74153.32500 3.707666e+05 20.25 4.050000e+00 0.000 16.00 5 0.000000e+00 0.00 3.707869e+05 3.707666e+05 20.25 NULL
2015 Dept Of Health/Mental Hygiene Nurse’s Aide 36946.00000 7.389200e+04 55.58 2.779000e+01 27.790 2.00 2 2.779000e+01 55.58 7.394758e+04 7.394758e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Nutritionist 58520.80000 5.852080e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.852080e+05 5.852080e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Office Machine Aide 36645.77778 3.298120e+05 11126.38 1.236264e+03 49.700 418.00 9 4.970000e+01 447.30 3.409384e+05 3.302593e+05 10679.08 NULL
2015 Dept Of Health/Mental Hygiene Oiler NA NA 51690.54 2.584527e+04 25845.270 768.75 2 2.584527e+04 51690.54 NA NA NA NULL
2015 Dept Of Health/Mental Hygiene Paralegal Aide 47306.00000 4.730600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.730600e+04 4.730600e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Peer Counselor 33114.00000 6.622800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.622800e+04 6.622800e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Personnel Director - Health Care Facilities 133641.00000 1.336410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.336410e+05 1.336410e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Pharmacy Technician 40496.00000 8.099200e+04 33.78 1.689000e+01 16.890 0.00 2 1.689000e+01 33.78 8.102578e+04 8.102578e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Photographer 41544.50000 1.661780e+05 13234.94 3.308735e+03 3737.580 525.75 4 3.308735e+03 13234.94 1.794129e+05 1.794129e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Physicist 76261.00000 7.626100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.626100e+04 7.626100e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Poison Information Specialist 87804.13750 1.492670e+06 82654.57 4.862034e+03 1250.520 1256.25 17 1.250520e+03 21258.84 1.575325e+06 1.513929e+06 61395.73 NULL
2015 Dept Of Health/Mental Hygiene Principal Administrative Associate 53746.27481 1.596264e+07 203703.48 6.858703e+02 0.830 5211.75 297 8.300000e-01 246.51 1.616635e+07 1.596289e+07 203456.97 NULL
2015 Dept Of Health/Mental Hygiene Printing Press Operator NA NA 528.00 8.800000e+01 0.000 0.00 6 0.000000e+00 0.00 NA NA NA NULL
2015 Dept Of Health/Mental Hygiene Procurement Analyst 56996.75590 3.533799e+06 80665.85 1.301062e+03 6.655 2097.50 62 6.655000e+00 412.61 3.614465e+06 3.534211e+06 80253.24 NULL
2015 Dept Of Health/Mental Hygiene Psychiatrist 75817.14000 2.274514e+05 932.58 3.108600e+02 0.000 11.00 3 0.000000e+00 0.00 2.283840e+05 2.274514e+05 932.58 NULL
2015 Dept Of Health/Mental Hygiene Psychologist 80530.00000 8.053000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.053000e+04 8.053000e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Public Health Adviser 37182.88599 2.037622e+07 171812.62 3.135267e+02 0.825 4857.50 548 8.250000e-01 452.10 2.054803e+07 2.037667e+07 171360.52 NULL
2015 Dept Of Health/Mental Hygiene Public Health Assistant 22605.36143 3.232567e+06 5298.26 3.705077e+01 0.000 222.25 143 0.000000e+00 0.00 3.237865e+06 3.232567e+06 5298.26 NULL
2015 Dept Of Health/Mental Hygiene Public Health Education Trainee 43248.00000 4.324800e+04 26.62 2.662000e+01 26.620 0.00 1 2.662000e+01 26.62 4.327462e+04 4.327462e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Public Health Educator 60755.09434 3.220020e+06 8885.14 1.676442e+02 0.000 199.25 53 0.000000e+00 0.00 3.228905e+06 3.220020e+06 8885.14 NULL
2015 Dept Of Health/Mental Hygiene Public Health Epidemiologist 60341.93651 3.801542e+06 71100.65 1.128582e+03 0.640 1027.50 63 6.400000e-01 40.32 3.872643e+06 3.801582e+06 71060.33 NULL
2015 Dept Of Health/Mental Hygiene Public Health Nurse 35011.00803 2.275716e+07 310704.49 4.780069e+02 15.040 8089.75 650 1.504000e+01 9776.00 2.306786e+07 2.276693e+07 300928.49 NULL
2015 Dept Of Health/Mental Hygiene Public Health Sanitarian 51403.05952 1.727143e+07 643466.21 1.915078e+03 70.610 14702.47 336 7.061000e+01 23724.96 1.791489e+07 1.729515e+07 619741.25 NULL
2015 Dept Of Health/Mental Hygiene Public Records Aide 32998.78640 1.979927e+06 16313.54 2.718923e+02 12.490 570.00 60 1.249000e+01 749.40 1.996241e+06 1.980677e+06 15564.14 NULL
2015 Dept Of Health/Mental Hygiene Public Records Officer 44709.00000 4.470900e+04 24.54 2.454000e+01 24.540 0.00 1 2.454000e+01 24.54 4.473354e+04 4.473354e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Research Assistant 54723.42857 3.830640e+05 50.40 7.200000e+00 5.190 0.00 7 5.190000e+00 36.33 3.831144e+05 3.831003e+05 14.07 NULL
2015 Dept Of Health/Mental Hygiene Scientist 68563.57895 1.302708e+06 18114.59 9.533995e+02 0.000 410.25 19 0.000000e+00 0.00 1.320823e+06 1.302708e+06 18114.59 NULL
2015 Dept Of Health/Mental Hygiene Secretary 41413.68157 2.898958e+06 63792.29 9.113184e+02 0.205 2074.75 70 2.050000e-01 14.35 2.962750e+06 2.898972e+06 63777.94 NULL
2015 Dept Of Health/Mental Hygiene Senior Consultant 82763.00000 8.276300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.276300e+04 8.276300e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Senior Executive Secretary 63439.00000 6.343900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.343900e+04 6.343900e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Senior Housekeeper 39717.00000 3.971700e+04 3539.84 3.539840e+03 3539.840 128.75 1 3.539840e+03 3539.84 4.325684e+04 4.325684e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Senior Medical Specialist 49353.72000 1.974149e+05 4199.62 1.049905e+03 0.000 78.00 4 0.000000e+00 0.00 2.016145e+05 1.974149e+05 4199.62 NULL
2015 Dept Of Health/Mental Hygiene Senior Mental Health Worker 37083.50000 1.483340e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.483340e+05 1.483340e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Senior Photographer 52536.00000 2.101440e+05 7287.54 1.821885e+03 2049.690 210.75 4 1.821885e+03 7287.54 2.174315e+05 2.174315e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Senior Stationary Engineer NA NA 46698.97 2.334949e+04 23349.485 501.75 2 2.334949e+04 46698.97 NA NA NA NULL
2015 Dept Of Health/Mental Hygiene Social Worker 54273.74667 4.070531e+06 80303.64 1.070715e+03 0.000 1981.75 75 0.000000e+00 0.00 4.150835e+06 4.070531e+06 80303.64 NULL
2015 Dept Of Health/Mental Hygiene Space Analyst 73376.00000 1.467520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.467520e+05 1.467520e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Spec Consultant 74908.73583 1.797810e+06 3412.17 1.421738e+02 0.000 74.50 24 0.000000e+00 0.00 1.801222e+06 1.797810e+06 3412.17 NULL
2015 Dept Of Health/Mental Hygiene Special Consultant 65977.03846 1.715403e+06 878.40 3.378462e+01 0.000 14.00 26 0.000000e+00 0.00 1.716281e+06 1.715403e+06 878.40 NULL
2015 Dept Of Health/Mental Hygiene Special Officer 39129.07843 1.995583e+06 334286.64 6.554640e+03 3053.780 11847.93 51 3.053780e+03 155742.78 2.329870e+06 2.151326e+06 178543.86 NULL
2015 Dept Of Health/Mental Hygiene Sr Associate Health Program Director 147396.00000 1.473960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.473960e+05 1.473960e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Sr Healthcare Prog Plan Anlyst 57654.64940 4.785336e+06 2293.90 2.763735e+01 0.000 52.50 83 0.000000e+00 0.00 4.787630e+06 4.785336e+06 2293.90 NULL
2015 Dept Of Health/Mental Hygiene Staff Analyst 62187.82702 2.922828e+06 88260.82 1.877890e+03 0.000 1873.50 47 0.000000e+00 0.00 3.011089e+06 2.922828e+06 88260.82 NULL
2015 Dept Of Health/Mental Hygiene Staff Analyst Trainee 38471.76558 5.001330e+05 1809.28 1.391754e+02 0.000 135.00 13 0.000000e+00 0.00 5.019422e+05 5.001330e+05 1809.28 NULL
2015 Dept Of Health/Mental Hygiene Stationary Engineer NA NA 820583.74 4.558799e+04 45956.005 10941.00 18 4.558799e+04 820583.74 NA NA NA NULL
2015 Dept Of Health/Mental Hygiene Statistician 43671.50000 8.734300e+04 105.92 5.296000e+01 52.960 4.50 2 5.296000e+01 105.92 8.744892e+04 8.744892e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Stock Worker 35332.56571 4.946559e+05 18039.84 1.288560e+03 0.350 760.50 14 3.500000e-01 4.90 5.126958e+05 4.946608e+05 18034.94 NULL
2015 Dept Of Health/Mental Hygiene Summer College Intern 2330.86875 1.398521e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.398521e+04 1.398521e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Summer Graduate Intern 5855.84808 1.171170e+05 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.171170e+05 1.171170e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Supervising Computer Service Technician 66134.33333 5.952090e+05 11567.66 1.285296e+03 42.640 321.50 9 4.264000e+01 383.76 6.067767e+05 5.955928e+05 11183.90 NULL
2015 Dept Of Health/Mental Hygiene Supervising Public Health Adviser 56239.75464 4.836619e+06 118517.53 1.378111e+03 24.830 2774.75 86 2.483000e+01 2135.38 4.955136e+06 4.838754e+06 116382.15 NULL
2015 Dept Of Health/Mental Hygiene Supervising Special Officer 48032.66667 4.322940e+05 166776.84 1.853076e+04 18769.640 4899.00 9 1.853076e+04 166776.84 5.990708e+05 5.990708e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Supervisor 44181.56522 1.016176e+06 87335.58 3.797199e+03 154.900 2429.75 23 1.549000e+02 3562.70 1.103512e+06 1.019739e+06 83772.88 NULL
2015 Dept Of Health/Mental Hygiene Supervisor Electrician NA NA 336.28 1.681400e+02 168.140 4.25 2 1.681400e+02 336.28 NA NA NA NULL
2015 Dept Of Health/Mental Hygiene Supervisor I Social Work 63959.00000 2.558360e+05 30.31 7.577500e+00 4.360 0.00 4 4.360000e+00 17.44 2.558663e+05 2.558534e+05 12.87 NULL
2015 Dept Of Health/Mental Hygiene Supervisor Ii Social Work 70622.66667 4.237360e+05 504.37 8.406167e+01 0.000 7.00 6 0.000000e+00 0.00 4.242404e+05 4.237360e+05 504.37 NULL
2015 Dept Of Health/Mental Hygiene Supervisor Iii Social Work 74897.80000 3.744890e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.744890e+05 3.744890e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Supervisor Of Mechanical Installations & Maintenance 78556.33333 2.356690e+05 9978.07 3.326023e+03 4463.290 173.25 3 3.326023e+03 9978.07 2.456471e+05 2.456471e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Supervisor Of Motor Transport 55050.20000 2.752510e+05 41100.20 8.220040e+03 2346.080 1318.75 5 2.346080e+03 11730.40 3.163512e+05 2.869814e+05 29369.80 NULL
2015 Dept Of Health/Mental Hygiene Supervisor Of Office Machine Operations 42702.50000 8.540500e+04 84.27 4.213500e+01 42.135 3.25 2 4.213500e+01 84.27 8.548927e+04 8.548927e+04 0.00 NULL
2015 Dept Of Health/Mental Hygiene Supervisor Of Stock Workers 47516.25000 3.801300e+05 14481.40 1.810175e+03 102.905 427.75 8 1.029050e+02 823.24 3.946114e+05 3.809532e+05 13658.16 NULL
2015 Dept Of Health/Mental Hygiene Supvsng Systems Analyst 58994.00000 2.359760e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.359760e+05 2.359760e+05 0.00 NULL
2015 Dept Of Health/Mental Hygiene Telecommunications Associate 61105.75000 2.444230e+05 14499.09 3.624773e+03 2240.560 301.50 4 2.240560e+03 8962.24 2.589221e+05 2.533852e+05 5536.85 NULL
2015 Dept Of Health/Mental Hygiene X-Ray Technician 48326.67214 6.765734e+05 40116.49 2.865464e+03 13.090 1003.25 14 1.309000e+01 183.26 7.166899e+05 6.767567e+05 39933.23 NULL
2015 Dept Of Info Tech & Telecomm *Certified Database Administrator 123019.00000 2.460380e+05 452.14 2.260700e+02 226.070 1.00 2 2.260700e+02 452.14 2.464901e+05 2.464901e+05 0.00 NULL
2015 Dept Of Info Tech & Telecomm *Certified Wide Area Network Administrator 119937.50000 4.797500e+05 96.01 2.400250e+01 0.000 0.00 4 0.000000e+00 0.00 4.798460e+05 4.797500e+05 96.01 NULL
2015 Dept Of Info Tech & Telecomm Accountant 68141.00000 6.814100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.814100e+04 6.814100e+04 0.00 NULL
2015 Dept Of Info Tech & Telecomm Adm Manager-Non-Mgrl 67424.98529 4.584899e+06 38494.63 5.660975e+02 0.000 850.00 68 0.000000e+00 0.00 4.623394e+06 4.584899e+06 38494.63 NULL
2015 Dept Of Info Tech & Telecomm Administrative Business Promotion Coordinator 111579.28571 7.810550e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.810550e+05 7.810550e+05 0.00 NULL
2015 Dept Of Info Tech & Telecomm Administrative Construction Project Manager 110716.00000 1.107160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.107160e+05 1.107160e+05 0.00 NULL
2015 Dept Of Info Tech & Telecomm Administrative Manager 114741.36364 1.262155e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.262155e+06 1.262155e+06 0.00 NULL
2015 Dept Of Info Tech & Telecomm Administrative Procurement Analyst 102704.75000 4.108190e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.108190e+05 4.108190e+05 0.00 NULL
2015 Dept Of Info Tech & Telecomm Administrative Staff Analyst 99545.57831 8.262283e+06 18638.56 2.245610e+02 0.000 439.75 83 0.000000e+00 0.00 8.280922e+06 8.262283e+06 18638.56 NULL
2015 Dept Of Info Tech & Telecomm Agency Attorney 83127.50000 4.987650e+05 2539.73 4.232883e+02 0.000 53.00 6 0.000000e+00 0.00 5.013047e+05 4.987650e+05 2539.73 NULL
2015 Dept Of Info Tech & Telecomm Agency Chief Contracting Officer 138521.00000 2.770420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.770420e+05 2.770420e+05 0.00 NULL
2015 Dept Of Info Tech & Telecomm Associate Call Center Representative-Non-Spvr 57513.87805 2.358069e+06 20979.89 5.117046e+02 58.320 344.75 41 5.832000e+01 2391.12 2.379049e+06 2.360460e+06 18588.77 NULL
2015 Dept Of Info Tech & Telecomm Associate Investigator 51822.00000 5.182200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.182200e+04 5.182200e+04 0.00 NULL
2015 Dept Of Info Tech & Telecomm Associate Staff Analyst 80707.92308 1.049203e+06 7962.28 6.124831e+02 0.000 201.50 13 0.000000e+00 0.00 1.057165e+06 1.049203e+06 7962.28 NULL
2015 Dept Of Info Tech & Telecomm Attorney At Law 93932.00000 9.393200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.393200e+04 9.393200e+04 0.00 NULL
2015 Dept Of Info Tech & Telecomm Business Promotion Coordinator 52972.60100 5.297260e+05 3833.74 3.833740e+02 0.000 152.50 10 0.000000e+00 0.00 5.335598e+05 5.297260e+05 3833.74 NULL
2015 Dept Of Info Tech & Telecomm Call Center Representative 33313.05117 1.562382e+07 164044.98 3.497761e+02 0.000 6063.75 469 0.000000e+00 0.00 1.578787e+07 1.562382e+07 164044.98 NULL
2015 Dept Of Info Tech & Telecomm Certified It Administrator 108637.65625 3.476405e+06 39713.83 1.241057e+03 6.860 564.50 32 6.860000e+00 219.52 3.516119e+06 3.476625e+06 39494.31 NULL
2015 Dept Of Info Tech & Telecomm Certified It Developer 107562.50000 2.151250e+05 101.68 5.084000e+01 50.840 0.00 2 5.084000e+01 101.68 2.152267e+05 2.152267e+05 0.00 NULL
2015 Dept Of Info Tech & Telecomm Certified Local Area Network Administrator 104938.81818 1.154327e+06 30455.90 2.768718e+03 106.720 447.00 11 1.067200e+02 1173.92 1.184783e+06 1.155501e+06 29281.98 NULL
2015 Dept Of Info Tech & Telecomm Clerical Associate 41155.82776 1.193519e+06 6268.74 2.161634e+02 3.700 215.25 29 3.700000e+00 107.30 1.199788e+06 1.193626e+06 6161.44 NULL
2015 Dept Of Info Tech & Telecomm College Aide - Assignment Levels Ii And Iii 6600.83750 1.320167e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.320167e+04 1.320167e+04 0.00 NULL
2015 Dept Of Info Tech & Telecomm Commissioner Of Dept Of Info Technology & Telecommunications 214413.00000 2.144130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144130e+05 2.144130e+05 0.00 NULL
2015 Dept Of Info Tech & Telecomm Community Assistant 34729.00000 1.389160e+05 178.18 4.454500e+01 0.000 5.00 4 0.000000e+00 0.00 1.390942e+05 1.389160e+05 178.18 NULL
2015 Dept Of Info Tech & Telecomm Community Associate 39003.36711 1.755152e+06 9555.17 2.123371e+02 0.000 291.25 45 0.000000e+00 0.00 1.764707e+06 1.755152e+06 9555.17 NULL
2015 Dept Of Info Tech & Telecomm Community Coordinator 55912.55000 1.118251e+06 19.58 9.790000e-01 0.000 0.00 20 0.000000e+00 0.00 1.118271e+06 1.118251e+06 19.58 NULL
2015 Dept Of Info Tech & Telecomm Computer Aide-Non-Spvr 45692.09091 5.026130e+05 5379.77 4.890700e+02 94.430 127.75 11 9.443000e+01 1038.73 5.079928e+05 5.036517e+05 4341.04 NULL
2015 Dept Of Info Tech & Telecomm Computer Associate 65809.17087 8.357765e+06 114738.18 9.034502e+02 0.480 2389.25 127 4.800000e-01 60.96 8.472503e+06 8.357826e+06 114677.22 NULL
2015 Dept Of Info Tech & Telecomm Computer Operations Manager 122708.07143 1.717913e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.717913e+06 1.717913e+06 0.00 NULL
2015 Dept Of Info Tech & Telecomm Computer Programmer Analyst 59216.40909 1.302761e+06 3797.78 1.726264e+02 0.000 53.25 22 0.000000e+00 0.00 1.306559e+06 1.302761e+06 3797.78 NULL
2015 Dept Of Info Tech & Telecomm Computer Programmer Analyst Trainee 40415.48276 1.172049e+06 9694.93 3.343079e+02 12.280 343.75 29 1.228000e+01 356.12 1.181744e+06 1.172405e+06 9338.81 NULL
2015 Dept Of Info Tech & Telecomm Computer Service Technician 41825.62500 3.346050e+05 11053.12 1.381640e+03 493.815 372.25 8 4.938150e+02 3950.52 3.456581e+05 3.385555e+05 7102.60 NULL
2015 Dept Of Info Tech & Telecomm Computer Specialist 97254.08696 1.565791e+07 136264.47 8.463632e+02 0.000 2209.75 161 0.000000e+00 0.00 1.579417e+07 1.565791e+07 136264.47 NULL
2015 Dept Of Info Tech & Telecomm Computer Systems Manager 116599.92277 3.451358e+07 193.44 6.535135e-01 0.000 0.00 296 0.000000e+00 0.00 3.451377e+07 3.451358e+07 193.44 NULL
2015 Dept Of Info Tech & Telecomm Customer Information Representative 55552.50000 1.111050e+05 2825.57 1.412785e+03 1412.785 50.50 2 1.412785e+03 2825.57 1.139306e+05 1.139306e+05 0.00 NULL
2015 Dept Of Info Tech & Telecomm Deputy Commissioner 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2015 Dept Of Info Tech & Telecomm Director Of Television 55134.83333 3.308090e+05 3946.10 6.576833e+02 0.000 114.00 6 0.000000e+00 0.00 3.347551e+05 3.308090e+05 3946.10 NULL
2015 Dept Of Info Tech & Telecomm Executive Agency Counsel 130159.10000 1.301591e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.301591e+06 1.301591e+06 0.00 NULL
2015 Dept Of Info Tech & Telecomm Film Manager 65992.00000 6.599200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.599200e+04 6.599200e+04 0.00 NULL
2015 Dept Of Info Tech & Telecomm Graphic Artist 45854.00000 1.375620e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.375620e+05 1.375620e+05 0.00 NULL
2015 Dept Of Info Tech & Telecomm Inspector 46519.00000 9.303800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.303800e+04 9.303800e+04 0.00 NULL
2015 Dept Of Info Tech & Telecomm Investigator 45363.00000 4.536300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.536300e+04 4.536300e+04 0.00 NULL
2015 Dept Of Info Tech & Telecomm Labor Relations Analyst Trainee 46764.00000 4.676400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.676400e+04 4.676400e+04 0.00 NULL
2015 Dept Of Info Tech & Telecomm Office Machine Aide 39072.00000 3.907200e+04 2073.55 2.073550e+03 2073.550 107.00 1 2.073550e+03 2073.55 4.114555e+04 4.114555e+04 0.00 NULL
2015 Dept Of Info Tech & Telecomm Principal Administrative Associate 60676.40741 1.638263e+06 12847.00 4.758148e+02 0.000 327.75 27 0.000000e+00 0.00 1.651110e+06 1.638263e+06 12847.00 NULL
2015 Dept Of Info Tech & Telecomm Procurement Analyst 86475.00000 8.647500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.647500e+04 8.647500e+04 0.00 NULL
2015 Dept Of Info Tech & Telecomm Program Producer 59391.08333 7.126930e+05 30760.46 2.563372e+03 0.000 677.00 12 0.000000e+00 0.00 7.434535e+05 7.126930e+05 30760.46 NULL
2015 Dept Of Info Tech & Telecomm Radio And Television Operator 48821.85827 1.269368e+06 37754.96 1.452114e+03 314.005 1089.00 26 3.140050e+02 8164.13 1.307123e+06 1.277532e+06 29590.83 NULL
2015 Dept Of Info Tech & Telecomm Secretary 55066.00000 5.506600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.506600e+04 5.506600e+04 0.00 NULL
2015 Dept Of Info Tech & Telecomm Staff Analyst 57506.66667 1.725200e+05 89.75 2.991667e+01 0.000 2.25 3 0.000000e+00 0.00 1.726098e+05 1.725200e+05 89.75 NULL
2015 Dept Of Info Tech & Telecomm Staff Analyst Trainee 41523.92308 5.398110e+05 311.74 2.398000e+01 0.000 14.25 13 0.000000e+00 0.00 5.401227e+05 5.398110e+05 311.74 NULL
2015 Dept Of Info Tech & Telecomm Summer College Intern 2658.33333 3.190000e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 3.190000e+04 3.190000e+04 0.00 NULL
2015 Dept Of Info Tech & Telecomm Supervising Computer Service Technician 67953.50000 1.359070e+05 761.22 3.806100e+02 380.610 0.00 2 3.806100e+02 761.22 1.366682e+05 1.366682e+05 0.00 NULL
2015 Dept Of Info Tech & Telecomm Supervisor Of Office Machine Operations 45371.50000 9.074300e+04 236.47 1.182350e+02 118.235 3.00 2 1.182350e+02 236.47 9.097947e+04 9.097947e+04 0.00 NULL
2015 Dept Of Info Tech & Telecomm Supervisor Of Radio And Television Operators 71821.83333 4.309310e+05 12341.02 2.056837e+03 817.750 230.00 6 8.177500e+02 4906.50 4.432720e+05 4.358375e+05 7434.52 NULL
2015 Dept Of Info Tech & Telecomm Telecommunication Manager 117649.00000 1.294139e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.294139e+06 1.294139e+06 0.00 NULL
2015 Dept Of Info Tech & Telecomm Telecommunications Associate 67631.93939 4.463708e+06 122065.11 1.849471e+03 199.185 2218.50 66 1.991850e+02 13146.21 4.585773e+06 4.476854e+06 108918.90 NULL
2015 Dept Of Info Tech & Telecomm Televison Equipment Operator 28084.33333 8.425300e+04 5723.32 1.907773e+03 10.800 162.17 3 1.080000e+01 32.40 8.997632e+04 8.428540e+04 5690.92 NULL
2015 Dept Of Parks & Recreation *Principal Park Supervisor 47788.21000 3.823057e+05 16628.59 2.078574e+03 33.385 217.25 8 3.338500e+01 267.08 3.989343e+05 3.825728e+05 16361.51 NULL
2015 Dept Of Parks & Recreation Accountant 73185.00000 7.318500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.318500e+04 7.318500e+04 0.00 NULL
2015 Dept Of Parks & Recreation Adm Manager-Non-Mgrl 61629.07195 1.405143e+07 252002.88 1.105276e+03 0.000 5993.00 228 0.000000e+00 0.00 1.430343e+07 1.405143e+07 252002.88 NULL
2015 Dept Of Parks & Recreation Admin Community Relations Specialist 95836.00000 9.583600e+04 1077.64 1.077640e+03 1077.640 22.50 1 1.077640e+03 1077.64 9.691364e+04 9.691364e+04 0.00 NULL
2015 Dept Of Parks & Recreation Administrative Architect 124259.50000 2.485190e+05 19.68 9.840000e+00 9.840 0.00 2 9.840000e+00 19.68 2.485387e+05 2.485387e+05 0.00 NULL
2015 Dept Of Parks & Recreation Administrative City Planner 96441.50000 1.928830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.928830e+05 1.928830e+05 0.00 NULL
2015 Dept Of Parks & Recreation Administrative Construction Project Manager 127022.00000 1.270220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.270220e+05 1.270220e+05 0.00 NULL
2015 Dept Of Parks & Recreation Administrative Engineer 116033.60000 5.801680e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.801680e+05 5.801680e+05 0.00 NULL
2015 Dept Of Parks & Recreation Administrative Horticulturist 75531.71600 3.021269e+06 24239.46 6.059865e+02 6.145 333.75 40 6.145000e+00 245.80 3.045508e+06 3.021514e+06 23993.66 NULL
2015 Dept Of Parks & Recreation Administrative Landmarks Preservationist 101483.00000 1.014830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.014830e+05 1.014830e+05 0.00 NULL
2015 Dept Of Parks & Recreation Administrative Landscape Architect 113073.00000 2.261460e+05 154.53 7.726500e+01 77.265 0.00 2 7.726500e+01 154.53 2.263005e+05 2.263005e+05 0.00 NULL
2015 Dept Of Parks & Recreation Administrative Manager 91467.20000 4.573360e+05 45.32 9.064000e+00 0.000 0.00 5 0.000000e+00 0.00 4.573813e+05 4.573360e+05 45.32 NULL
2015 Dept Of Parks & Recreation Administrative Parks & Recreation Manager 81887.88833 6.632919e+06 38521.14 4.755696e+02 0.000 569.75 81 0.000000e+00 0.00 6.671440e+06 6.632919e+06 38521.14 NULL
2015 Dept Of Parks & Recreation Administrative Project Manager 98020.21513 3.920809e+06 11133.33 2.783333e+02 0.000 157.50 40 0.000000e+00 0.00 3.931942e+06 3.920809e+06 11133.33 NULL
2015 Dept Of Parks & Recreation Administrative Public Information Specialist 104421.00000 2.088420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.088420e+05 2.088420e+05 0.00 NULL
2015 Dept Of Parks & Recreation Administrative Staff Analyst 98181.09452 1.040720e+07 248165.37 2.341183e+03 0.000 3945.75 106 0.000000e+00 0.00 1.065536e+07 1.040720e+07 248165.37 NULL
2015 Dept Of Parks & Recreation Administrative Supervisor Of Building Maintenance 98333.33333 2.950000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.950000e+05 2.950000e+05 0.00 NULL
2015 Dept Of Parks & Recreation Agency Attorney 75552.45455 1.662154e+06 8027.04 3.648655e+02 0.000 126.00 22 0.000000e+00 0.00 1.670181e+06 1.662154e+06 8027.04 NULL
2015 Dept Of Parks & Recreation Agency Attorney Intern 63000.00000 6.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.300000e+04 6.300000e+04 0.00 NULL
2015 Dept Of Parks & Recreation Agency Chief Contracting Officer 130720.00000 1.307200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.307200e+05 1.307200e+05 0.00 NULL
2015 Dept Of Parks & Recreation Architect 75240.36364 8.276440e+05 10889.46 9.899509e+02 312.660 170.25 11 3.126600e+02 3439.26 8.385335e+05 8.310833e+05 7450.20 NULL
2015 Dept Of Parks & Recreation Assistant Architect 61163.33333 3.669800e+05 406.41 6.773500e+01 0.000 5.50 6 0.000000e+00 0.00 3.673864e+05 3.669800e+05 406.41 NULL
2015 Dept Of Parks & Recreation Assistant Civil Engineer 58416.56793 4.089160e+05 18812.44 2.687491e+03 180.540 447.00 7 1.805400e+02 1263.78 4.277284e+05 4.101798e+05 17548.66 NULL
2015 Dept Of Parks & Recreation Assistant Electrical Engineer 50987.83333 3.059270e+05 3012.43 5.020717e+02 4.430 113.50 6 4.430000e+00 26.58 3.089394e+05 3.059536e+05 2985.85 NULL
2015 Dept Of Parks & Recreation Assistant Environmental Engineer 10751.55840 1.075156e+04 14.68 1.468000e+01 14.680 0.00 1 1.468000e+01 14.68 1.076624e+04 1.076624e+04 0.00 NULL
2015 Dept Of Parks & Recreation Assistant Landscape Architect 56294.06011 2.533233e+06 36536.80 8.119289e+02 12.180 797.50 45 1.218000e+01 548.10 2.569770e+06 2.533781e+06 35988.70 NULL
2015 Dept Of Parks & Recreation Assistant Mechanical Engineer 61069.62500 4.885570e+05 1898.59 2.373237e+02 1.765 34.50 8 1.765000e+00 14.12 4.904556e+05 4.885711e+05 1884.47 NULL
2015 Dept Of Parks & Recreation Assistant Urban Designer 62038.50000 1.240770e+05 888.46 4.442300e+02 444.230 32.50 2 4.442300e+02 888.46 1.249655e+05 1.249655e+05 0.00 NULL
2015 Dept Of Parks & Recreation Associate Park Service Worker 42002.50444 1.814508e+07 1317437.20 3.049623e+03 1173.140 38383.72 432 1.173140e+03 506796.48 1.946252e+07 1.865188e+07 810640.72 NULL
2015 Dept Of Parks & Recreation Associate Project Manager 78489.53704 4.238435e+06 221162.84 4.095608e+03 1327.255 4056.00 54 1.327255e+03 71671.77 4.459598e+06 4.310107e+06 149491.07 NULL
2015 Dept Of Parks & Recreation Associate Public Information Specialist 66764.00000 6.676400e+04 1333.20 1.333200e+03 1333.200 35.50 1 1.333200e+03 1333.20 6.809720e+04 6.809720e+04 0.00 NULL
2015 Dept Of Parks & Recreation Associate Quality Assurance Specialist 72000.00000 2.160000e+05 224.15 7.471667e+01 32.740 9.00 3 3.274000e+01 98.22 2.162241e+05 2.160982e+05 125.93 NULL
2015 Dept Of Parks & Recreation Associate Staff Analyst 65724.27360 1.906004e+06 32770.38 1.130013e+03 0.000 676.25 29 0.000000e+00 0.00 1.938774e+06 1.906004e+06 32770.38 NULL
2015 Dept Of Parks & Recreation Associate Urban Designer 74161.07692 9.640940e+05 32171.98 2.474768e+03 44.310 741.75 13 4.431000e+01 576.03 9.962660e+05 9.646700e+05 31595.95 NULL
2015 Dept Of Parks & Recreation Associate Urban Park Ranger 47898.94095 5.173086e+06 364705.81 3.376906e+03 1720.625 11717.11 108 1.720625e+03 185827.50 5.537791e+06 5.358913e+06 178878.31 NULL
2015 Dept Of Parks & Recreation Auto Mechanic NA NA 98141.36 3.774668e+03 270.565 1664.25 26 2.705650e+02 7034.69 NA NA NA NULL
2015 Dept Of Parks & Recreation Automotive Service Worker 39394.72682 3.939473e+05 4067.88 4.067880e+02 129.310 115.00 10 1.293100e+02 1293.10 3.980151e+05 3.952404e+05 2774.78 NULL
2015 Dept Of Parks & Recreation Blacksmith NA NA 222904.98 1.714654e+04 289.440 2950.50 13 2.894400e+02 3762.72 NA NA NA NULL
2015 Dept Of Parks & Recreation Blacksmith’s Helper NA NA 45566.63 1.139166e+04 2906.910 1043.00 4 2.906910e+03 11627.64 NA NA NA NULL
2015 Dept Of Parks & Recreation Borough Director Of Recreation 110847.00000 4.433880e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.433880e+05 4.433880e+05 0.00 NULL
2015 Dept Of Parks & Recreation Carpenter NA NA 247097.73 8.824919e+03 4317.010 3574.50 28 4.317010e+03 120876.28 NA NA NA NULL
2015 Dept Of Parks & Recreation Cement Mason NA NA 70037.23 5.387479e+03 1375.640 1054.75 13 1.375640e+03 17883.32 NA NA NA NULL
2015 Dept Of Parks & Recreation Certified It Administrator 92310.50000 3.692420e+05 1333.04 3.332600e+02 79.985 19.00 4 7.998500e+01 319.94 3.705750e+05 3.695619e+05 1013.10 NULL
2015 Dept Of Parks & Recreation Certified It Developer 88890.00000 8.889000e+04 4855.93 4.855930e+03 4855.930 96.75 1 4.855930e+03 4855.93 9.374593e+04 9.374593e+04 0.00 NULL
2015 Dept Of Parks & Recreation Chief Dockmaster 66928.00000 6.692800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.692800e+04 6.692800e+04 0.00 NULL
2015 Dept Of Parks & Recreation Chief Lifeguard 24414.72622 4.272577e+06 100635.78 5.750616e+02 5.090 2077.08 175 5.090000e+00 890.75 4.373213e+06 4.273468e+06 99745.03 NULL
2015 Dept Of Parks & Recreation City Park Worker 23860.52298 3.254575e+07 1442810.09 1.057779e+03 176.795 59329.79 1364 1.767950e+02 241148.38 3.398856e+07 3.278690e+07 1201661.71 NULL
2015 Dept Of Parks & Recreation City Planner 67494.22632 1.282390e+06 29398.92 1.547312e+03 20.420 577.25 19 2.042000e+01 387.98 1.311789e+06 1.282778e+06 29010.94 NULL
2015 Dept Of Parks & Recreation City Planning Technician 50000.00000 1.000000e+05 619.21 3.096050e+02 309.605 25.75 2 3.096050e+02 619.21 1.006192e+05 1.006192e+05 0.00 NULL
2015 Dept Of Parks & Recreation City Research Scientist 76542.54286 5.357978e+05 233.47 3.335286e+01 0.000 14.00 7 0.000000e+00 0.00 5.360313e+05 5.357978e+05 233.47 NULL
2015 Dept Of Parks & Recreation City Seasonal Aide 6118.30853 1.559557e+07 414398.83 1.625731e+02 2.970 20451.72 2549 2.970000e+00 7570.53 1.600997e+07 1.560314e+07 406828.30 NULL
2015 Dept Of Parks & Recreation Civil Engineer 83233.80000 4.161690e+05 651.82 1.303640e+02 0.000 8.00 5 0.000000e+00 0.00 4.168208e+05 4.161690e+05 651.82 NULL
2015 Dept Of Parks & Recreation Civil Engineering Intern 50171.66667 1.505150e+05 2943.04 9.810133e+02 0.000 150.50 3 0.000000e+00 0.00 1.534580e+05 1.505150e+05 2943.04 NULL
2015 Dept Of Parks & Recreation Clerical Aide 15601.70244 1.092119e+05 1338.72 1.912457e+02 0.000 74.50 7 0.000000e+00 0.00 1.105506e+05 1.092119e+05 1338.72 NULL
2015 Dept Of Parks & Recreation Clerical Associate 38261.86735 5.433185e+06 119759.64 8.433777e+02 1.365 3646.00 142 1.365000e+00 193.83 5.552945e+06 5.433379e+06 119565.81 NULL
2015 Dept Of Parks & Recreation Climber & Pruner 59206.89519 7.282448e+06 1282261.36 1.042489e+04 7471.490 26832.23 123 7.471490e+03 918993.27 8.564709e+06 8.201441e+06 363268.09 NULL
2015 Dept Of Parks & Recreation College Aide 2148.84833 1.289309e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.289309e+04 1.289309e+04 0.00 NULL
2015 Dept Of Parks & Recreation Commissioner Of Parks & Recreation 214413.00000 2.144130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144130e+05 2.144130e+05 0.00 NULL
2015 Dept Of Parks & Recreation Community Assistant 15567.48050 6.226992e+05 23402.43 5.850607e+02 0.000 1309.25 40 0.000000e+00 0.00 6.461017e+05 6.226992e+05 23402.43 NULL
2015 Dept Of Parks & Recreation Community Associate 31178.20974 1.122416e+07 122994.53 3.416515e+02 1.565 4063.92 360 1.565000e+00 563.40 1.134715e+07 1.122472e+07 122431.13 NULL
2015 Dept Of Parks & Recreation Community Coordinator 56802.84050 1.334867e+07 393651.20 1.675111e+03 13.050 9002.50 235 1.305000e+01 3066.75 1.374232e+07 1.335173e+07 390584.45 NULL
2015 Dept Of Parks & Recreation Community Service Aide 2257.77387 1.219198e+05 334.98 6.203333e+00 0.000 24.00 54 0.000000e+00 0.00 1.222548e+05 1.219198e+05 334.98 NULL
2015 Dept Of Parks & Recreation Computer Aide-Non-Spvr 46729.01931 6.542063e+05 20059.31 1.432808e+03 44.060 486.50 14 4.406000e+01 616.84 6.742656e+05 6.548231e+05 19442.47 NULL
2015 Dept Of Parks & Recreation Computer Associate 69079.51215 3.661214e+06 54769.60 1.033389e+03 266.670 988.50 53 2.666700e+02 14133.51 3.715984e+06 3.675348e+06 40636.09 NULL
2015 Dept Of Parks & Recreation Computer Operations Manager 86076.33333 2.582290e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.582290e+05 2.582290e+05 0.00 NULL
2015 Dept Of Parks & Recreation Computer Programmer Analyst 52872.71280 2.114909e+05 7.31 1.827500e+00 0.400 0.00 4 4.000000e-01 1.60 2.114982e+05 2.114925e+05 5.71 NULL
2015 Dept Of Parks & Recreation Computer Service Technician 33281.82492 9.984547e+04 715.05 2.383500e+02 0.000 21.25 3 0.000000e+00 0.00 1.005605e+05 9.984547e+04 715.05 NULL
2015 Dept Of Parks & Recreation Computer Specialist 83355.66667 2.500670e+05 3191.86 1.063953e+03 0.000 50.75 3 0.000000e+00 0.00 2.532589e+05 2.500670e+05 3191.86 NULL
2015 Dept Of Parks & Recreation Computer Systems Manager 130616.00000 1.306160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.306160e+05 1.306160e+05 0.00 NULL
2015 Dept Of Parks & Recreation Construction Project Manager 70246.10669 5.619689e+06 234598.42 2.932480e+03 556.220 4382.00 80 5.562200e+02 44497.60 5.854287e+06 5.664186e+06 190100.82 NULL
2015 Dept Of Parks & Recreation Construction Project Manager Intern 51876.33333 1.556290e+05 1934.20 6.447333e+02 221.640 90.00 3 2.216400e+02 664.92 1.575632e+05 1.562939e+05 1269.28 NULL
2015 Dept Of Parks & Recreation Cooperative Education Trainee-Seasonal Park Help 1312.89887 1.076577e+05 155.63 1.897927e+00 0.000 14.00 82 0.000000e+00 0.00 1.078133e+05 1.076577e+05 155.63 NULL
2015 Dept Of Parks & Recreation Counsel 166991.00000 1.669910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.669910e+05 1.669910e+05 0.00 NULL
2015 Dept Of Parks & Recreation Deputy Borough Commissioner 128944.00000 7.736640e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.736640e+05 7.736640e+05 0.00 NULL
2015 Dept Of Parks & Recreation Deputy Chief Of Operations 108585.00000 1.411605e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.411605e+06 1.411605e+06 0.00 NULL
2015 Dept Of Parks & Recreation Deputy Commissioner 177796.25000 7.111850e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.111850e+05 7.111850e+05 0.00 NULL
2015 Dept Of Parks & Recreation Director Of Neighborhood Park Restoration 78000.00000 7.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.800000e+04 7.800000e+04 0.00 NULL
2015 Dept Of Parks & Recreation Director Of Puppetry 54466.00000 5.446600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.446600e+04 5.446600e+04 0.00 NULL
2015 Dept Of Parks & Recreation Director Of Regional Joint Interest Park 89191.59259 2.408173e+06 249.51 9.241111e+00 0.000 0.00 27 0.000000e+00 0.00 2.408423e+06 2.408173e+06 249.51 NULL
2015 Dept Of Parks & Recreation Electrician NA NA 302648.37 8.179686e+03 4961.270 4375.75 37 4.961270e+03 183566.99 NA NA NA NULL
2015 Dept Of Parks & Recreation Engineering Technician 46289.56000 1.851582e+05 16647.39 4.161847e+03 2602.165 431.75 4 2.602165e+03 10408.66 2.018056e+05 1.955669e+05 6238.73 NULL
2015 Dept Of Parks & Recreation Environmental Engineer 92445.00000 9.244500e+04 513.69 5.136900e+02 513.690 0.00 1 5.136900e+02 513.69 9.295869e+04 9.295869e+04 0.00 NULL
2015 Dept Of Parks & Recreation Executive Agency Counsel 117252.33333 3.517570e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.517570e+05 3.517570e+05 0.00 NULL
2015 Dept Of Parks & Recreation Exterminator 30002.00000 3.000200e+04 792.35 7.923500e+02 792.350 97.50 1 7.923500e+02 792.35 3.079435e+04 3.079435e+04 0.00 NULL
2015 Dept Of Parks & Recreation Forester 50316.32815 3.169929e+06 157363.62 2.497835e+03 427.700 4193.25 63 4.277000e+02 26945.10 3.327292e+06 3.196874e+06 130418.52 NULL
2015 Dept Of Parks & Recreation Gardener 36245.84074 7.212922e+06 232387.56 1.167777e+03 170.570 8185.84 199 1.705700e+02 33943.43 7.445310e+06 7.246866e+06 198444.13 NULL
2015 Dept Of Parks & Recreation Graphic Artist 76768.00000 7.676800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.676800e+04 7.676800e+04 0.00 NULL
2015 Dept Of Parks & Recreation High Pressure Plant Tender NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2015 Dept Of Parks & Recreation Inspector 70715.00000 1.414300e+05 12178.45 6.089225e+03 6089.225 257.50 2 6.089225e+03 12178.45 1.536085e+05 1.536085e+05 0.00 NULL
2015 Dept Of Parks & Recreation Investigator 53778.11111 4.840030e+05 24286.43 2.698492e+03 27.500 652.25 9 2.750000e+01 247.50 5.082894e+05 4.842505e+05 24038.93 NULL
2015 Dept Of Parks & Recreation Job Training Participant 2664.39536 3.502348e+07 1490316.25 1.133751e+02 0.540 108377.32 13145 5.400000e-01 7098.30 3.651379e+07 3.503058e+07 1483217.95 NULL
2015 Dept Of Parks & Recreation Landmarks Preservationist 62256.28333 3.735377e+05 926.55 1.544250e+02 0.190 21.00 6 1.900000e-01 1.14 3.744642e+05 3.735388e+05 925.41 NULL
2015 Dept Of Parks & Recreation Landscape Architect 80609.93151 5.884525e+06 358382.68 4.909352e+03 1678.820 6506.00 73 1.678820e+03 122553.86 6.242908e+06 6.007079e+06 235828.82 NULL
2015 Dept Of Parks & Recreation Landscape Architect Intern 48000.00000 3.360000e+05 131.36 1.876571e+01 0.000 29.00 7 0.000000e+00 0.00 3.361314e+05 3.360000e+05 131.36 NULL
2015 Dept Of Parks & Recreation Letterer And Sign Painter NA NA 3233.03 3.233030e+03 3233.030 70.00 1 3.233030e+03 3233.03 NA NA NA NULL
2015 Dept Of Parks & Recreation Life Guard 5264.62912 1.012915e+07 23069.55 1.199041e+01 0.000 1014.21 1924 0.000000e+00 0.00 1.015222e+07 1.012915e+07 23069.55 NULL
2015 Dept Of Parks & Recreation Machinist NA NA 5353.33 1.784443e+03 2163.280 182.00 3 1.784443e+03 5353.33 NA NA NA NULL
2015 Dept Of Parks & Recreation Maintenance Worker NA NA 212212.12 2.332001e+03 1248.410 5765.50 91 1.248410e+03 113605.31 NA NA NA NULL
2015 Dept Of Parks & Recreation Marine Maintenance Mechanic 69914.00000 1.398280e+05 5754.20 2.877100e+03 2877.100 150.00 2 2.877100e+03 5754.20 1.455822e+05 1.455822e+05 0.00 NULL
2015 Dept Of Parks & Recreation Mechanical Engineer 80159.33333 2.404780e+05 14172.98 4.724327e+03 2654.720 293.25 3 2.654720e+03 7964.16 2.546510e+05 2.484422e+05 6208.82 NULL
2015 Dept Of Parks & Recreation Nutritionist 282.59250 5.651850e+02 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.651850e+02 5.651850e+02 0.00 NULL
2015 Dept Of Parks & Recreation Office Machine Aide 32493.00000 3.249300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.249300e+04 3.249300e+04 0.00 NULL
2015 Dept Of Parks & Recreation Painter NA NA 235324.22 1.176621e+04 8941.585 4212.50 20 8.941585e+03 178831.70 NA NA NA NULL
2015 Dept Of Parks & Recreation Park Borough Commissioner 156221.83333 9.373310e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.373310e+05 9.373310e+05 0.00 NULL
2015 Dept Of Parks & Recreation Park Services Worker 35910.00000 3.591000e+04 145.42 1.454200e+02 145.420 5.00 1 1.454200e+02 145.42 3.605542e+04 3.605542e+04 0.00 NULL
2015 Dept Of Parks & Recreation Park Supervisor 65201.40133 3.103587e+07 1962091.66 4.122041e+03 2443.270 42941.88 476 2.443270e+03 1162996.52 3.299796e+07 3.219886e+07 799095.14 NULL
2015 Dept Of Parks & Recreation Plasterer NA NA 16479.54 8.239770e+03 8239.770 196.25 2 8.239770e+03 16479.54 NA NA NA NULL
2015 Dept Of Parks & Recreation Playground Associate 9602.19232 4.388202e+06 59370.90 1.299144e+02 0.000 3007.75 457 0.000000e+00 0.00 4.447573e+06 4.388202e+06 59370.90 NULL
2015 Dept Of Parks & Recreation Plumber NA NA 556126.00 1.090443e+04 4423.890 6874.50 51 4.423890e+03 225618.39 NA NA NA NULL
2015 Dept Of Parks & Recreation Plumber’s Helper NA NA 33943.11 6.788622e+03 6451.200 566.25 5 6.451200e+03 32256.00 NA NA NA NULL
2015 Dept Of Parks & Recreation Principal Administrative Associate 54938.26847 4.889506e+06 62357.42 7.006452e+02 0.510 1480.95 89 5.100000e-01 45.39 4.951863e+06 4.889551e+06 62312.03 NULL
2015 Dept Of Parks & Recreation Procurement Analyst 61651.83333 1.109733e+06 37910.95 2.106164e+03 1.045 768.25 18 1.045000e+00 18.81 1.147644e+06 1.109752e+06 37892.14 NULL
2015 Dept Of Parks & Recreation Project Manager 62013.00000 1.488312e+06 20482.24 8.534267e+02 25.275 388.25 24 2.527500e+01 606.60 1.508794e+06 1.488919e+06 19875.64 NULL
2015 Dept Of Parks & Recreation Public Records Officer 51260.50000 1.025210e+05 1335.41 6.677050e+02 667.705 45.25 2 6.677050e+02 1335.41 1.038564e+05 1.038564e+05 0.00 NULL
2015 Dept Of Parks & Recreation Puppeteer 42116.00000 1.263480e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.263480e+05 1.263480e+05 0.00 NULL
2015 Dept Of Parks & Recreation Quality Assurance Specialist 51744.00000 1.552320e+05 5241.57 1.747190e+03 0.000 137.75 3 0.000000e+00 0.00 1.604736e+05 1.552320e+05 5241.57 NULL
2015 Dept Of Parks & Recreation Recreation Director 38077.45251 2.246570e+06 40816.17 6.917995e+02 3.270 1437.97 59 3.270000e+00 192.93 2.287386e+06 2.246763e+06 40623.24 NULL
2015 Dept Of Parks & Recreation Recreation Specialist 14132.48068 4.451731e+06 50495.85 1.603043e+02 0.000 1959.00 315 0.000000e+00 0.00 4.502227e+06 4.451731e+06 50495.85 NULL
2015 Dept Of Parks & Recreation Recreation Supervisor 36608.24076 6.150184e+06 217186.71 1.292778e+03 5.370 5071.25 168 5.370000e+00 902.16 6.367371e+06 6.151087e+06 216284.55 NULL
2015 Dept Of Parks & Recreation Research Assistant 34328.73375 1.373149e+05 891.89 2.229725e+02 3.735 22.50 4 3.735000e+00 14.94 1.382068e+05 1.373299e+05 876.95 NULL
2015 Dept Of Parks & Recreation Secretary 49998.00000 4.999800e+04 4.67 4.670000e+00 4.670 0.00 1 4.670000e+00 4.67 5.000267e+04 5.000267e+04 0.00 NULL
2015 Dept Of Parks & Recreation Senior Photographer 66827.50000 1.336550e+05 1481.61 7.408050e+02 740.805 28.25 2 7.408050e+02 1481.61 1.351366e+05 1.351366e+05 0.00 NULL
2015 Dept Of Parks & Recreation Senior Stationary Engineer NA NA 89024.02 2.225601e+04 18694.905 1183.75 4 1.869490e+04 74779.62 NA NA NA NULL
2015 Dept Of Parks & Recreation Sheet Metal Worker NA NA 15395.52 3.079104e+03 584.640 147.00 5 5.846400e+02 2923.20 NA NA NA NULL
2015 Dept Of Parks & Recreation Staff Analyst 54233.18182 1.193130e+06 28831.56 1.310525e+03 0.000 790.00 22 0.000000e+00 0.00 1.221962e+06 1.193130e+06 28831.56 NULL
2015 Dept Of Parks & Recreation Stationary Engineer NA NA 205574.89 4.282810e+03 590.520 2970.25 48 5.905200e+02 28344.96 NA NA NA NULL
2015 Dept Of Parks & Recreation Steam Fitter NA NA 130891.20 2.617824e+04 22222.200 1374.00 5 2.222220e+04 111111.00 NA NA NA NULL
2015 Dept Of Parks & Recreation Steam Fitter’s Helper NA NA 25626.90 1.281345e+04 12813.450 545.50 2 1.281345e+04 25626.90 NA NA NA NULL
2015 Dept Of Parks & Recreation Stock Worker 24120.40000 4.824080e+04 11.59 5.795000e+00 5.795 0.00 2 5.795000e+00 11.59 4.825239e+04 4.825239e+04 0.00 NULL
2015 Dept Of Parks & Recreation Supervising Computer Service Technician 64880.00000 2.595200e+05 8053.40 2.013350e+03 1362.585 149.25 4 1.362585e+03 5450.34 2.675734e+05 2.649703e+05 2603.06 NULL
2015 Dept Of Parks & Recreation Supervising Dockmaster 61946.80000 3.097340e+05 2122.26 4.244520e+02 86.210 77.25 5 8.621000e+01 431.05 3.118563e+05 3.101650e+05 1691.21 NULL
2015 Dept Of Parks & Recreation Supervisor Carpenter NA NA 75633.83 1.890846e+04 15779.925 1077.00 4 1.577992e+04 63119.70 NA NA NA NULL
2015 Dept Of Parks & Recreation Supervisor Electrician NA NA 59582.67 5.958267e+04 59582.670 747.00 1 5.958267e+04 59582.67 NA NA NA NULL
2015 Dept Of Parks & Recreation Supervisor Of Mechanics NA NA 224114.70 1.867622e+04 4288.660 2656.75 12 4.288660e+03 51463.92 NA NA NA NULL
2015 Dept Of Parks & Recreation Supervisor Of Stock Workers 23334.00000 4.666800e+04 5091.52 2.545760e+03 2545.760 136.75 2 2.545760e+03 5091.52 5.175952e+04 5.175952e+04 0.00 NULL
2015 Dept Of Parks & Recreation Supervisor Painter NA NA 84937.11 2.831237e+04 33018.910 1264.00 3 2.831237e+04 84937.11 NA NA NA NULL
2015 Dept Of Parks & Recreation Supervisor Plumber NA NA 94279.21 3.142640e+04 37304.190 1044.75 3 3.142640e+04 94279.21 NA NA NA NULL
2015 Dept Of Parks & Recreation Surveyor 53129.18005 5.844210e+05 22461.98 2.041998e+03 672.370 599.00 11 6.723700e+02 7396.07 6.068830e+05 5.918171e+05 15065.91 NULL
2015 Dept Of Parks & Recreation Telecommunications Associate 72594.84615 9.437330e+05 171024.76 1.315575e+04 8142.910 2784.50 13 8.142910e+03 105857.83 1.114758e+06 1.049591e+06 65166.93 NULL
2015 Dept Of Parks & Recreation Telephone Service Technician 56758.60000 2.837930e+05 43884.99 8.776998e+03 4307.020 1043.75 5 4.307020e+03 21535.10 3.276780e+05 3.053281e+05 22349.89 NULL
2015 Dept Of Parks & Recreation Urban Park Ranger 31550.57865 1.028549e+07 195477.75 5.996250e+02 139.045 8850.75 326 1.390450e+02 45328.67 1.048097e+07 1.033082e+07 150149.08 NULL
2015 Dept Of Records & Info Service Adm Manager-Non-Mgrl 80716.66667 2.421500e+05 7802.66 2.600887e+03 2.040 100.75 3 2.040000e+00 6.12 2.499527e+05 2.421561e+05 7796.54 NULL
2015 Dept Of Records & Info Service Assistant Commissioner 110243.00000 1.102430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.102430e+05 1.102430e+05 0.00 NULL
2015 Dept Of Records & Info Service Associate Public Records Officer 57929.50000 3.475770e+05 6.62 1.103333e+00 0.000 0.00 6 0.000000e+00 0.00 3.475836e+05 3.475770e+05 6.62 NULL
2015 Dept Of Records & Info Service Associate Staff Analyst 70511.66667 2.115350e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.115350e+05 2.115350e+05 0.00 NULL
2015 Dept Of Records & Info Service Certified It Developer 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2015 Dept Of Records & Info Service Clerical Associate 38396.71429 2.687770e+05 4501.30 6.430429e+02 0.000 74.50 7 0.000000e+00 0.00 2.732783e+05 2.687770e+05 4501.30 NULL
2015 Dept Of Records & Info Service College Aide 5315.23000 5.315230e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.315230e+03 5.315230e+03 0.00 NULL
2015 Dept Of Records & Info Service College Aide - Assignment Levels Ii And Iii 4757.31000 1.427193e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.427193e+04 1.427193e+04 0.00 NULL
2015 Dept Of Records & Info Service Commissioner 149614.00000 1.496140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.496140e+05 1.496140e+05 0.00 NULL
2015 Dept Of Records & Info Service Community Assistant 32876.12500 1.315045e+05 5347.74 1.336935e+03 0.000 124.50 4 0.000000e+00 0.00 1.368522e+05 1.315045e+05 5347.74 NULL
2015 Dept Of Records & Info Service Community Associate 24464.90000 9.785960e+04 8.80 2.200000e+00 0.000 0.00 4 0.000000e+00 0.00 9.786840e+04 9.785960e+04 8.80 NULL
2015 Dept Of Records & Info Service Computer Systems Manager 116274.50000 2.325490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.325490e+05 2.325490e+05 0.00 NULL
2015 Dept Of Records & Info Service Deputy Commissioner 143171.00000 1.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.431710e+05 1.431710e+05 0.00 NULL
2015 Dept Of Records & Info Service Motor Vehicle Operator 44274.00000 4.427400e+04 7159.53 7.159530e+03 7159.530 136.00 1 7.159530e+03 7159.53 5.143353e+04 5.143353e+04 0.00 NULL
2015 Dept Of Records & Info Service Principal Administrative Associate 53629.60000 2.681480e+05 337.56 6.751200e+01 0.000 0.00 5 0.000000e+00 0.00 2.684856e+05 2.681480e+05 337.56 NULL
2015 Dept Of Records & Info Service Procurement Analyst 76308.00000 7.630800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.630800e+04 7.630800e+04 0.00 NULL
2015 Dept Of Records & Info Service Public Records Aide 35278.40173 3.175056e+05 10610.05 1.178894e+03 0.000 243.25 9 0.000000e+00 0.00 3.281157e+05 3.175056e+05 10610.05 NULL
2015 Dept Of Records & Info Service Public Records Officer 27160.18337 1.901213e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.901213e+05 1.901213e+05 0.00 NULL
2015 Dept Of Records & Info Service Research Assistant 49462.33333 1.483870e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.483870e+05 1.483870e+05 0.00 NULL
2015 Dept Of Records & Info Service Staff Analyst 53608.00000 5.360800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.360800e+04 5.360800e+04 0.00 NULL
2015 Dept Of Records & Info Service Stock Worker 34525.73333 1.035772e+05 1665.16 5.550533e+02 57.570 0.00 3 5.757000e+01 172.71 1.052424e+05 1.037499e+05 1492.45 NULL
2015 Dept Of Youth & Comm Dev Srvs Accountant 61074.16667 3.664450e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.664450e+05 3.664450e+05 0.00 NULL
2015 Dept Of Youth & Comm Dev Srvs Adm Manager-Non-Mgrl 69428.30080 2.985417e+06 14147.01 3.290002e+02 0.000 270.00 43 0.000000e+00 0.00 2.999564e+06 2.985417e+06 14147.01 NULL
2015 Dept Of Youth & Comm Dev Srvs Admin Contract Specialist 85600.97403 6.591275e+06 146.47 1.902208e+00 0.000 0.00 77 0.000000e+00 0.00 6.591421e+06 6.591275e+06 146.47 NULL
2015 Dept Of Youth & Comm Dev Srvs Administrative Accountant 90847.00000 9.084700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.084700e+04 9.084700e+04 0.00 NULL
2015 Dept Of Youth & Comm Dev Srvs Administrative Community Relations Specialist 53373.00000 5.337300e+04 0.29 2.900000e-01 0.290 0.00 1 2.900000e-01 0.29 5.337329e+04 5.337329e+04 0.00 NULL
2015 Dept Of Youth & Comm Dev Srvs Administrative Management Auditor 93641.66667 2.809250e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.809250e+05 2.809250e+05 0.00 NULL
2015 Dept Of Youth & Comm Dev Srvs Administrative Manager 133359.40000 6.667970e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.667970e+05 6.667970e+05 0.00 NULL
2015 Dept Of Youth & Comm Dev Srvs Administrative Public Information Specialist 105930.33333 3.177910e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.177910e+05 3.177910e+05 0.00 NULL
2015 Dept Of Youth & Comm Dev Srvs Administrative Staff Analyst 93075.70175 5.305315e+06 5002.37 8.776088e+01 0.000 89.50 57 0.000000e+00 0.00 5.310317e+06 5.305315e+06 5002.37 NULL
2015 Dept Of Youth & Comm Dev Srvs Agency Attorney 85279.33333 5.116760e+05 37.90 6.316667e+00 0.000 0.00 6 0.000000e+00 0.00 5.117139e+05 5.116760e+05 37.90 NULL
2015 Dept Of Youth & Comm Dev Srvs Agency Chief Contracting Officer 134714.00000 1.347140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.347140e+05 1.347140e+05 0.00 NULL
2015 Dept Of Youth & Comm Dev Srvs Associate Contract Specialist 62945.77551 6.168686e+06 26660.75 2.720485e+02 0.000 581.75 98 0.000000e+00 0.00 6.195347e+06 6.168686e+06 26660.75 NULL
2015 Dept Of Youth & Comm Dev Srvs Associate Staff Analyst 75561.00000 7.556100e+05 3516.43 3.516430e+02 0.000 83.25 10 0.000000e+00 0.00 7.591264e+05 7.556100e+05 3516.43 NULL
2015 Dept Of Youth & Comm Dev Srvs Certified It Developer 96763.25000 3.870530e+05 41773.82 1.044345e+04 9627.225 499.00 4 9.627225e+03 38508.90 4.288268e+05 4.255619e+05 3264.92 NULL
2015 Dept Of Youth & Comm Dev Srvs City Attendant 33207.00000 3.320700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.320700e+04 3.320700e+04 0.00 NULL
2015 Dept Of Youth & Comm Dev Srvs Clerical Associate 43132.30000 4.313230e+05 1853.05 1.853050e+02 0.000 79.25 10 0.000000e+00 0.00 4.331760e+05 4.313230e+05 1853.05 NULL
2015 Dept Of Youth & Comm Dev Srvs College Aide 11237.06250 6.742238e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.742238e+04 6.742238e+04 0.00 NULL
2015 Dept Of Youth & Comm Dev Srvs Commissioner Of Community Development 200847.00000 2.008470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.008470e+05 2.008470e+05 0.00 NULL
2015 Dept Of Youth & Comm Dev Srvs Community Assistant 34940.50000 6.988100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.988100e+04 6.988100e+04 0.00 NULL
2015 Dept Of Youth & Comm Dev Srvs Community Associate 42379.25000 5.085510e+05 1416.52 1.180433e+02 0.000 64.75 12 0.000000e+00 0.00 5.099675e+05 5.085510e+05 1416.52 NULL
2015 Dept Of Youth & Comm Dev Srvs Community Coordinator 57065.68750 9.130510e+05 7810.19 4.881369e+02 0.000 199.50 16 0.000000e+00 0.00 9.208612e+05 9.130510e+05 7810.19 NULL
2015 Dept Of Youth & Comm Dev Srvs Computer Associate 65880.60000 3.294030e+05 2312.73 4.625460e+02 8.610 74.25 5 8.610000e+00 43.05 3.317157e+05 3.294460e+05 2269.68 NULL
2015 Dept Of Youth & Comm Dev Srvs Computer Programmer Analyst 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2015 Dept Of Youth & Comm Dev Srvs Computer Service Technician 58096.00000 5.809600e+04 158.99 1.589900e+02 158.990 5.00 1 1.589900e+02 158.99 5.825499e+04 5.825499e+04 0.00 NULL
2015 Dept Of Youth & Comm Dev Srvs Computer Specialist 94179.73684 1.789415e+06 20104.39 1.058126e+03 140.380 282.75 19 1.403800e+02 2667.22 1.809519e+06 1.792082e+06 17437.17 NULL
2015 Dept Of Youth & Comm Dev Srvs Computer Systems Manager 109566.07692 1.424359e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.424359e+06 1.424359e+06 0.00 NULL
2015 Dept Of Youth & Comm Dev Srvs Contract Specialist 55149.96875 3.529598e+06 6687.43 1.044911e+02 0.000 169.25 64 0.000000e+00 0.00 3.536285e+06 3.529598e+06 6687.43 NULL
2015 Dept Of Youth & Comm Dev Srvs Deputy Commissioner 161449.00000 4.843470e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.843470e+05 4.843470e+05 0.00 NULL
2015 Dept Of Youth & Comm Dev Srvs Executive Agency Counsel 146852.66667 4.405580e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.405580e+05 4.405580e+05 0.00 NULL
2015 Dept Of Youth & Comm Dev Srvs Field Supervisor 6536.22780 4.052461e+05 1491.04 2.404903e+01 0.000 115.00 62 0.000000e+00 0.00 4.067372e+05 4.052461e+05 1491.04 NULL
2015 Dept Of Youth & Comm Dev Srvs Graphic Artist 55000.00000 5.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.500000e+04 5.500000e+04 0.00 NULL
2015 Dept Of Youth & Comm Dev Srvs Management Auditor 57798.80000 5.779880e+05 6841.32 6.841320e+02 0.000 139.25 10 0.000000e+00 0.00 5.848293e+05 5.779880e+05 6841.32 NULL
2015 Dept Of Youth & Comm Dev Srvs Motor Vehicle Operator 43520.33333 1.305610e+05 8005.78 2.668593e+03 287.930 276.75 3 2.879300e+02 863.79 1.385668e+05 1.314248e+05 7141.99 NULL
2015 Dept Of Youth & Comm Dev Srvs Principal Administrative Associate 59294.71429 8.301260e+05 438.48 3.132000e+01 0.000 10.50 14 0.000000e+00 0.00 8.305645e+05 8.301260e+05 438.48 NULL
2015 Dept Of Youth & Comm Dev Srvs Procurement Analyst 52254.38462 6.793070e+05 2138.70 1.645154e+02 0.000 58.25 13 0.000000e+00 0.00 6.814457e+05 6.793070e+05 2138.70 NULL
2015 Dept Of Youth & Comm Dev Srvs Secretary 40088.00000 1.202640e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.202640e+05 1.202640e+05 0.00 NULL
2015 Dept Of Youth & Comm Dev Srvs Secretary To Commissioner 68862.50000 1.377250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.377250e+05 1.377250e+05 0.00 NULL
2015 Dept Of Youth & Comm Dev Srvs Senior Field Supervisor 19799.97083 2.375996e+05 85.00 7.083333e+00 0.000 30.00 12 0.000000e+00 0.00 2.376846e+05 2.375996e+05 85.00 NULL
2015 Dept Of Youth & Comm Dev Srvs Staff Analyst 61572.83333 3.694370e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.694370e+05 3.694370e+05 0.00 NULL
2015 Dept Of Youth & Comm Dev Srvs Summer Graduate Intern 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2015 Dept Of Youth & Comm Dev Srvs Supervisor Of Motor Transport 60270.00000 6.027000e+04 20095.88 2.009588e+04 20095.880 415.75 1 2.009588e+04 20095.88 8.036588e+04 8.036588e+04 0.00 NULL
2015 Dept Of Youth & Comm Dev Srvs Youth Coordinator 56087.10000 5.608710e+05 3007.75 3.007750e+02 0.000 73.50 10 0.000000e+00 0.00 5.638788e+05 5.608710e+05 3007.75 NULL
2015 Dept. Of Design & Construction ?Associate Engineering Technician 50451.00000 5.045100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.045100e+04 5.045100e+04 0.00 NULL
2015 Dept. Of Design & Construction Accountant 59298.08333 7.115770e+05 15027.25 1.252271e+03 281.485 419.00 12 2.814850e+02 3377.82 7.266042e+05 7.149548e+05 11649.43 NULL
2015 Dept. Of Design & Construction Adm Manager-Non-Mgrl 62785.33333 1.883560e+05 772.30 2.574333e+02 82.110 29.75 3 8.211000e+01 246.33 1.891283e+05 1.886023e+05 525.97 NULL
2015 Dept. Of Design & Construction Administrative Accountant 100549.00000 2.010980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.010980e+05 2.010980e+05 0.00 NULL
2015 Dept. Of Design & Construction Administrative Architect 118769.91176 4.038177e+06 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 4.038177e+06 4.038177e+06 0.00 NULL
2015 Dept. Of Design & Construction Administrative City Planner 112073.00000 1.120730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.120730e+05 1.120730e+05 0.00 NULL
2015 Dept. Of Design & Construction Administrative Community Relations Specialist 78654.00000 7.865400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.865400e+04 7.865400e+04 0.00 NULL
2015 Dept. Of Design & Construction Administrative Construction Project Manager 102820.60000 1.542309e+06 6990.05 4.660033e+02 0.000 49.50 15 0.000000e+00 0.00 1.549299e+06 1.542309e+06 6990.05 NULL
2015 Dept. Of Design & Construction Administrative Engineer 125116.08621 7.256733e+06 7515.81 1.295829e+02 0.000 108.00 58 0.000000e+00 0.00 7.264249e+06 7.256733e+06 7515.81 NULL
2015 Dept. Of Design & Construction Administrative Graphic Artist 85772.37150 4.288619e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.288619e+05 4.288619e+05 0.00 NULL
2015 Dept. Of Design & Construction Administrative Landscape Architect 118800.33333 3.564010e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.564010e+05 3.564010e+05 0.00 NULL
2015 Dept. Of Design & Construction Administrative Procurement Analyst 108650.60000 5.432530e+05 5428.27 1.085654e+03 0.000 92.75 5 0.000000e+00 0.00 5.486813e+05 5.432530e+05 5428.27 NULL
2015 Dept. Of Design & Construction Administrative Project Manager 99554.46065 9.159010e+06 40163.42 4.365589e+02 0.000 607.50 92 0.000000e+00 0.00 9.199174e+06 9.159010e+06 40163.42 NULL
2015 Dept. Of Design & Construction Administrative Public Information Specialist 117352.66667 3.520580e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.520580e+05 3.520580e+05 0.00 NULL
2015 Dept. Of Design & Construction Administrative Staff Analyst 95612.80769 4.971866e+06 74490.84 1.432516e+03 0.000 1411.25 52 0.000000e+00 0.00 5.046357e+06 4.971866e+06 74490.84 NULL
2015 Dept. Of Design & Construction Administrative Supervisor Of Building Maintenance 81033.00000 8.103300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.103300e+04 8.103300e+04 0.00 NULL
2015 Dept. Of Design & Construction Agency Attorney 71136.96000 4.979587e+05 4.34 6.200000e-01 0.000 0.00 7 0.000000e+00 0.00 4.979631e+05 4.979587e+05 4.34 NULL
2015 Dept. Of Design & Construction Agency Chief Contracting Officer 153241.00000 1.532410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.532410e+05 1.532410e+05 0.00 NULL
2015 Dept. Of Design & Construction Architect 83154.13310 2.411470e+06 14136.24 4.874566e+02 0.000 290.75 29 0.000000e+00 0.00 2.425606e+06 2.411470e+06 14136.24 NULL
2015 Dept. Of Design & Construction Architectural Intern 52326.50000 1.046530e+05 161.11 8.055500e+01 80.555 0.00 2 8.055500e+01 161.11 1.048141e+05 1.048141e+05 0.00 NULL
2015 Dept. Of Design & Construction Asbestos Hazard Investigator 62172.20000 3.108610e+05 446.32 8.926400e+01 0.000 10.25 5 0.000000e+00 0.00 3.113073e+05 3.108610e+05 446.32 NULL
2015 Dept. Of Design & Construction Assistant Architect 64204.50000 3.852270e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.852270e+05 3.852270e+05 0.00 NULL
2015 Dept. Of Design & Construction Assistant Chemical Engineer 58964.00000 5.896400e+04 2916.78 2.916780e+03 2916.780 80.50 1 2.916780e+03 2916.78 6.188078e+04 6.188078e+04 0.00 NULL
2015 Dept. Of Design & Construction Assistant Civil Engineer 63304.21250 5.064337e+06 262481.61 3.281020e+03 1589.485 6215.75 80 1.589485e+03 127158.80 5.326819e+06 5.191496e+06 135322.81 NULL
2015 Dept. Of Design & Construction Assistant Electrical Engineer 59400.60000 2.970030e+05 3716.15 7.432300e+02 11.610 141.75 5 1.161000e+01 58.05 3.007192e+05 2.970610e+05 3658.10 NULL
2015 Dept. Of Design & Construction Assistant Landscape Architect 73824.00000 7.382400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.382400e+04 7.382400e+04 0.00 NULL
2015 Dept. Of Design & Construction Assistant Mechanical Engineer 60365.33333 3.621920e+05 25770.18 4.295030e+03 3401.755 574.00 6 3.401755e+03 20410.53 3.879622e+05 3.826025e+05 5359.65 NULL
2015 Dept. Of Design & Construction Assistant Urban Designer 61374.25000 2.454970e+05 2136.05 5.340125e+02 9.425 51.50 4 9.425000e+00 37.70 2.476330e+05 2.455347e+05 2098.35 NULL
2015 Dept. Of Design & Construction Associate Inspector 68856.00000 6.885600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.885600e+04 6.885600e+04 0.00 NULL
2015 Dept. Of Design & Construction Associate Investigator 61068.20000 3.053410e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.053410e+05 3.053410e+05 0.00 NULL
2015 Dept. Of Design & Construction Associate Project Manager 77872.63636 9.422589e+06 433289.70 3.580907e+03 355.040 7903.25 121 3.550400e+02 42959.84 9.855879e+06 9.465549e+06 390329.86 NULL
2015 Dept. Of Design & Construction Associate Public Health Sanitarian 86540.00000 8.654000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.654000e+04 8.654000e+04 0.00 NULL
2015 Dept. Of Design & Construction Associate Public Information Specialist 68529.00000 6.852900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.852900e+04 6.852900e+04 0.00 NULL
2015 Dept. Of Design & Construction Associate Quality Assurance Specialist 64491.66667 1.934750e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.934750e+05 1.934750e+05 0.00 NULL
2015 Dept. Of Design & Construction Associate Staff Analyst 70741.21739 1.627048e+06 15757.67 6.851161e+02 0.000 406.50 23 0.000000e+00 0.00 1.642806e+06 1.627048e+06 15757.67 NULL
2015 Dept. Of Design & Construction Associate Urban Designer 75956.00000 1.291252e+06 16932.10 9.960059e+02 0.000 316.50 17 0.000000e+00 0.00 1.308184e+06 1.291252e+06 16932.10 NULL
2015 Dept. Of Design & Construction Certified It Developer 83099.00000 8.309900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.309900e+04 8.309900e+04 0.00 NULL
2015 Dept. Of Design & Construction Certified Local Area Network Administrator 112787.00000 1.127870e+05 34.46 3.446000e+01 34.460 0.00 1 3.446000e+01 34.46 1.128215e+05 1.128215e+05 0.00 NULL
2015 Dept. Of Design & Construction City Planner 71345.00000 2.140350e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.140350e+05 2.140350e+05 0.00 NULL
2015 Dept. Of Design & Construction Civil Engineer 83281.89655 7.245525e+06 418050.17 4.805174e+03 320.140 7150.00 87 3.201400e+02 27852.18 7.663575e+06 7.273377e+06 390197.99 NULL
2015 Dept. Of Design & Construction Civil Engineering Intern 51479.07500 4.118326e+06 40334.25 5.041781e+02 2.935 1235.50 80 2.935000e+00 234.80 4.158660e+06 4.118561e+06 40099.45 NULL
2015 Dept. Of Design & Construction Clerical Associate 45128.24390 1.850258e+06 10233.36 2.495941e+02 0.000 402.50 41 0.000000e+00 0.00 1.860491e+06 1.850258e+06 10233.36 NULL
2015 Dept. Of Design & Construction College Aide 5103.90395 9.697418e+04 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 9.697418e+04 9.697418e+04 0.00 NULL
2015 Dept. Of Design & Construction College Aide - Assignment Levels Ii And Iii 4172.44500 4.172445e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.172445e+03 4.172445e+03 0.00 NULL
2015 Dept. Of Design & Construction Commissioner Of Design & Construction 214413.00000 2.144130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144130e+05 2.144130e+05 0.00 NULL
2015 Dept. Of Design & Construction Community Assistant 34244.50000 6.848900e+04 111.04 5.552000e+01 55.520 4.75 2 5.552000e+01 111.04 6.860004e+04 6.860004e+04 0.00 NULL
2015 Dept. Of Design & Construction Community Associate 35492.35000 3.549235e+05 8357.89 8.357890e+02 0.000 230.50 10 0.000000e+00 0.00 3.632814e+05 3.549235e+05 8357.89 NULL
2015 Dept. Of Design & Construction Community Coordinator 58415.25000 7.009830e+05 929.79 7.748250e+01 0.000 31.00 12 0.000000e+00 0.00 7.019128e+05 7.009830e+05 929.79 NULL
2015 Dept. Of Design & Construction Community Service Aide 30087.50000 6.017500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.017500e+04 6.017500e+04 0.00 NULL
2015 Dept. Of Design & Construction Computer Aide-Non-Spvr 50851.28571 3.559590e+05 693.42 9.906000e+01 0.000 18.00 7 0.000000e+00 0.00 3.566524e+05 3.559590e+05 693.42 NULL
2015 Dept. Of Design & Construction Computer Associate 71015.25000 1.136244e+06 18315.32 1.144707e+03 0.000 417.50 16 0.000000e+00 0.00 1.154559e+06 1.136244e+06 18315.32 NULL
2015 Dept. Of Design & Construction Computer Operations Manager 112995.33333 3.389860e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.389860e+05 3.389860e+05 0.00 NULL
2015 Dept. Of Design & Construction Computer Programmer Analyst 55791.00000 1.673730e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.673730e+05 1.673730e+05 0.00 NULL
2015 Dept. Of Design & Construction Computer Service Technician 46884.00000 9.376800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.376800e+04 9.376800e+04 0.00 NULL
2015 Dept. Of Design & Construction Computer Specialist 97472.50000 1.754505e+06 28097.47 1.560971e+03 0.000 450.00 18 0.000000e+00 0.00 1.782602e+06 1.754505e+06 28097.47 NULL
2015 Dept. Of Design & Construction Computer Systems Manager 121743.50000 7.304610e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.304610e+05 7.304610e+05 0.00 NULL
2015 Dept. Of Design & Construction Construction Project Manager 74451.88165 1.034881e+07 348018.77 2.503732e+03 45.700 6651.75 139 4.570000e+01 6352.30 1.069683e+07 1.035516e+07 341666.47 NULL
2015 Dept. Of Design & Construction Construction Project Manager Intern 50659.09091 5.572500e+05 5.76 5.236364e-01 0.000 0.00 11 0.000000e+00 0.00 5.572558e+05 5.572500e+05 5.76 NULL
2015 Dept. Of Design & Construction Deputy Commissioner 188235.00000 1.882350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.882350e+05 1.882350e+05 0.00 NULL
2015 Dept. Of Design & Construction Electrical Engineer 79745.50000 1.594910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.594910e+05 1.594910e+05 0.00 NULL
2015 Dept. Of Design & Construction Engineering Technician 55957.04878 2.294239e+06 65040.48 1.586353e+03 2.070 1644.00 41 2.070000e+00 84.87 2.359279e+06 2.294324e+06 64955.61 NULL
2015 Dept. Of Design & Construction Estimator 61285.10000 6.128510e+05 7083.42 7.083420e+02 0.000 170.50 10 0.000000e+00 0.00 6.199344e+05 6.128510e+05 7083.42 NULL
2015 Dept. Of Design & Construction Executive Agency Counsel 145592.28571 1.019146e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.019146e+06 1.019146e+06 0.00 NULL
2015 Dept. Of Design & Construction Geologist 69086.37500 5.526910e+05 10.04 1.255000e+00 0.000 0.00 8 0.000000e+00 0.00 5.527010e+05 5.526910e+05 10.04 NULL
2015 Dept. Of Design & Construction Graphic Artist 64138.75000 2.565550e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.565550e+05 2.565550e+05 0.00 NULL
2015 Dept. Of Design & Construction Highway Transportation Specialist 82277.00000 8.227700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.227700e+04 8.227700e+04 0.00 NULL
2015 Dept. Of Design & Construction Highways And Sewers Inspector 57039.00000 2.851950e+05 11147.87 2.229574e+03 0.000 240.00 5 0.000000e+00 0.00 2.963429e+05 2.851950e+05 11147.87 NULL
2015 Dept. Of Design & Construction Investigator 58095.50000 1.161910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.161910e+05 1.161910e+05 0.00 NULL
2015 Dept. Of Design & Construction Investigator Empl Disc 46744.14286 3.272090e+05 935.14 1.335914e+02 0.000 42.75 7 0.000000e+00 0.00 3.281441e+05 3.272090e+05 935.14 NULL
2015 Dept. Of Design & Construction Landscape Architect 81728.77778 7.355590e+05 12887.42 1.431936e+03 0.000 300.75 9 0.000000e+00 0.00 7.484464e+05 7.355590e+05 12887.42 NULL
2015 Dept. Of Design & Construction Management Auditor 61106.40000 3.055320e+05 3237.69 6.475380e+02 0.000 76.25 5 0.000000e+00 0.00 3.087697e+05 3.055320e+05 3237.69 NULL
2015 Dept. Of Design & Construction Mechanical Engineer 84340.60000 8.434060e+05 13768.26 1.376826e+03 0.000 251.75 10 0.000000e+00 0.00 8.571743e+05 8.434060e+05 13768.26 NULL
2015 Dept. Of Design & Construction Motor Vehicle Operator 44102.00000 8.820400e+04 10.22 5.110000e+00 5.110 0.00 2 5.110000e+00 10.22 8.821422e+04 8.821422e+04 0.00 NULL
2015 Dept. Of Design & Construction Motor Vehicle Supervisor 50367.00000 1.007340e+05 19604.13 9.802065e+03 9802.065 543.50 2 9.802065e+03 19604.13 1.203381e+05 1.203381e+05 0.00 NULL
2015 Dept. Of Design & Construction Principal Administrative Associate 58568.34615 3.045554e+06 46999.49 9.038363e+02 0.000 1304.25 52 0.000000e+00 0.00 3.092553e+06 3.045554e+06 46999.49 NULL
2015 Dept. Of Design & Construction Principal Title Examiner 61164.00000 6.116400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.116400e+04 6.116400e+04 0.00 NULL
2015 Dept. Of Design & Construction Procurement Analyst 61484.64706 2.090478e+06 27296.24 8.028306e+02 0.000 763.00 34 0.000000e+00 0.00 2.117774e+06 2.090478e+06 27296.24 NULL
2015 Dept. Of Design & Construction Project Manager 63653.14286 1.782288e+06 31947.29 1.140975e+03 0.540 656.25 28 5.400000e-01 15.12 1.814235e+06 1.782303e+06 31932.17 NULL
2015 Dept. Of Design & Construction Project Manager Intern# 46111.80000 4.611180e+05 1249.80 1.249800e+02 59.070 46.75 10 5.907000e+01 590.70 4.623678e+05 4.617087e+05 659.10 NULL
2015 Dept. Of Design & Construction Public Records Aide 36350.36841 9.814599e+05 10065.14 3.727830e+02 0.000 393.75 27 0.000000e+00 0.00 9.915251e+05 9.814599e+05 10065.14 NULL
2015 Dept. Of Design & Construction Public Records Officer 55857.00000 5.585700e+04 3.36 3.360000e+00 3.360 0.00 1 3.360000e+00 3.36 5.586036e+04 5.586036e+04 0.00 NULL
2015 Dept. Of Design & Construction Quality Assurance Specialist 61333.00000 6.133300e+04 1.31 1.310000e+00 1.310 0.00 1 1.310000e+00 1.31 6.133431e+04 6.133431e+04 0.00 NULL
2015 Dept. Of Design & Construction Research Assistant 48253.50000 9.650700e+04 3.53 1.765000e+00 1.765 0.00 2 1.765000e+00 3.53 9.651053e+04 9.651053e+04 0.00 NULL
2015 Dept. Of Design & Construction Secretary 46775.50000 7.484080e+05 288.98 1.806125e+01 0.000 37.50 16 0.000000e+00 0.00 7.486970e+05 7.484080e+05 288.98 NULL
2015 Dept. Of Design & Construction Secretary To The Commissioner Of Ddc 70112.00000 7.011200e+04 18740.06 1.874006e+04 18740.060 378.50 1 1.874006e+04 18740.06 8.885206e+04 8.885206e+04 0.00 NULL
2015 Dept. Of Design & Construction Senior Estimator 76956.79070 3.309142e+06 86010.65 2.000248e+03 0.000 1420.50 43 0.000000e+00 0.00 3.395153e+06 3.309142e+06 86010.65 NULL
2015 Dept. Of Design & Construction Space Analyst 75500.00000 7.550000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.550000e+04 7.550000e+04 0.00 NULL
2015 Dept. Of Design & Construction Special Assistant To The Commissioner 152250.00000 1.522500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.522500e+05 1.522500e+05 0.00 NULL
2015 Dept. Of Design & Construction Staff Analyst 60446.76923 1.571616e+06 19934.69 7.667188e+02 0.000 584.75 26 0.000000e+00 0.00 1.591551e+06 1.571616e+06 19934.69 NULL
2015 Dept. Of Design & Construction Staff Analyst Trainee 42229.50000 1.689180e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.689180e+05 1.689180e+05 0.00 NULL
2015 Dept. Of Design & Construction Statistician 54857.00000 5.485700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.485700e+04 5.485700e+04 0.00 NULL
2015 Dept. Of Design & Construction Stock Worker 43877.33333 1.316320e+05 12745.52 4.248507e+03 4883.580 451.00 3 4.248507e+03 12745.52 1.443775e+05 1.443775e+05 0.00 NULL
2015 Dept. Of Design & Construction Summer College Intern 2159.34019 1.360384e+05 0.00 0.000000e+00 0.000 0.00 63 0.000000e+00 0.00 1.360384e+05 1.360384e+05 0.00 NULL
2015 Dept. Of Design & Construction Summer Graduate Intern 2560.99825 2.560998e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 2.560998e+04 2.560998e+04 0.00 NULL
2015 Dept. Of Design & Construction Supervising Computer Service Technician 73685.00000 7.368500e+04 1455.22 1.455220e+03 1455.220 26.00 1 1.455220e+03 1455.22 7.514022e+04 7.514022e+04 0.00 NULL
2015 Dept. Of Design & Construction Supervisor Of Electrical Installations & Maintenance 73372.77778 6.603550e+05 14127.24 1.569693e+03 2.700 242.00 9 2.700000e+00 24.30 6.744822e+05 6.603793e+05 14102.94 NULL
2015 Dept. Of Design & Construction Supervisor Of Mechanical Installations & Maintenance 81849.00000 1.636980e+05 1005.39 5.026950e+02 502.695 19.25 2 5.026950e+02 1005.39 1.647034e+05 1.647034e+05 0.00 NULL
2015 Dept. Of Design & Construction Surveyor 67089.75758 2.213962e+06 49753.64 1.507686e+03 19.060 983.50 33 1.906000e+01 628.98 2.263716e+06 2.214591e+06 49124.66 NULL
2015 Dept. Of Homeless Services *Certified Applications Developer 114250.00000 1.142500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.142500e+05 1.142500e+05 0.00 NULL
2015 Dept. Of Homeless Services *Certified Wide Area Network Administrator 88382.33333 2.651470e+05 1937.95 6.459833e+02 4.000 35.00 3 4.000000e+00 12.00 2.670850e+05 2.651590e+05 1925.95 NULL
2015 Dept. Of Homeless Services Adm Manager-Non-Mgrl 69491.33333 4.169480e+05 14046.50 2.341083e+03 449.075 315.50 6 4.490750e+02 2694.45 4.309945e+05 4.196425e+05 11352.05 NULL
2015 Dept. Of Homeless Services Admin Contract Specialist 92532.50000 5.551950e+05 972.12 1.620200e+02 0.000 0.00 6 0.000000e+00 0.00 5.561671e+05 5.551950e+05 972.12 NULL
2015 Dept. Of Homeless Services Administrative Construction Project Manager 102868.25000 4.114730e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.114730e+05 4.114730e+05 0.00 NULL
2015 Dept. Of Homeless Services Administrative Director Of Social Services 102229.54762 1.288092e+07 72241.43 5.733447e+02 0.000 1282.25 126 0.000000e+00 0.00 1.295316e+07 1.288092e+07 72241.43 NULL
2015 Dept. Of Homeless Services Administrative Labor Relations Analyst 79007.00000 7.900700e+04 25.38 2.538000e+01 25.380 0.00 1 2.538000e+01 25.38 7.903238e+04 7.903238e+04 0.00 NULL
2015 Dept. Of Homeless Services Administrative Procurement Analyst 86278.66667 2.588360e+05 2454.94 8.183133e+02 0.000 46.50 3 0.000000e+00 0.00 2.612909e+05 2.588360e+05 2454.94 NULL
2015 Dept. Of Homeless Services Administrative Public Information Specialist 117002.66667 3.510080e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.510080e+05 3.510080e+05 0.00 NULL
2015 Dept. Of Homeless Services Administrative Staff Analyst 84198.94615 1.094586e+07 293319.21 2.256302e+03 0.000 5587.25 130 0.000000e+00 0.00 1.123918e+07 1.094586e+07 293319.21 NULL
2015 Dept. Of Homeless Services Administrative Supervisor Of Building Maintenance 130237.66667 7.814260e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.814260e+05 7.814260e+05 0.00 NULL
2015 Dept. Of Homeless Services Agency Attorney 75971.77778 2.051238e+06 42277.52 1.565834e+03 21.580 713.00 27 2.158000e+01 582.66 2.093516e+06 2.051821e+06 41694.86 NULL
2015 Dept. Of Homeless Services Agency Attorney Intern 54884.00000 5.488400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.488400e+04 5.488400e+04 0.00 NULL
2015 Dept. Of Homeless Services Agency Chief Contracting Officer 126875.00000 1.268750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.268750e+05 1.268750e+05 0.00 NULL
2015 Dept. Of Homeless Services Agency Medical Director 149391.00000 1.493910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.493910e+05 1.493910e+05 0.00 NULL
2015 Dept. Of Homeless Services Agency Security Director 121284.00000 1.212840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.212840e+05 1.212840e+05 0.00 NULL
2015 Dept. Of Homeless Services Assistant Superintendent Of Welfare Shelters 61182.68493 4.466336e+06 781867.45 1.071051e+04 8516.960 16816.50 73 8.516960e+03 621738.08 5.248203e+06 5.088074e+06 160129.37 NULL
2015 Dept. Of Homeless Services Associate Contract Specialist 61035.00000 6.103500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.103500e+04 6.103500e+04 0.00 NULL
2015 Dept. Of Homeless Services Associate Fraud Investigator 62885.28788 4.150429e+06 732354.10 1.109627e+04 10058.980 15264.00 66 1.005898e+04 663892.68 4.882783e+06 4.814322e+06 68461.42 NULL
2015 Dept. Of Homeless Services Associate Investigator 67592.00000 6.759200e+04 6404.62 6.404620e+03 6404.620 171.00 1 6.404620e+03 6404.62 7.399662e+04 7.399662e+04 0.00 NULL
2015 Dept. Of Homeless Services Associate Project Manager 75361.00000 3.768050e+05 23809.33 4.761866e+03 2537.140 590.50 5 2.537140e+03 12685.70 4.006143e+05 3.894907e+05 11123.63 NULL
2015 Dept. Of Homeless Services Associate Public Information Specialist 68191.00000 6.819100e+04 40.05 4.005000e+01 40.050 0.00 1 4.005000e+01 40.05 6.823105e+04 6.823105e+04 0.00 NULL
2015 Dept. Of Homeless Services Associate Staff Analyst 70069.54545 3.853825e+06 145724.33 2.649533e+03 235.360 2832.25 55 2.353600e+02 12944.80 3.999549e+06 3.866770e+06 132779.53 NULL
2015 Dept. Of Homeless Services Attorney At Law 102614.00000 1.026140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.026140e+05 1.026140e+05 0.00 NULL
2015 Dept. Of Homeless Services Bookkeeper 59516.00000 5.951600e+04 3090.17 3.090170e+03 3090.170 44.25 1 3.090170e+03 3090.17 6.260617e+04 6.260617e+04 0.00 NULL
2015 Dept. Of Homeless Services Carpenter NA NA 378144.34 1.990233e+04 19395.230 6036.25 19 1.939523e+04 368509.37 NA NA NA NULL
2015 Dept. Of Homeless Services Caseworker 41345.60185 4.465325e+06 230541.55 2.134644e+03 206.355 6975.88 108 2.063550e+02 22286.34 4.695867e+06 4.487611e+06 208255.21 NULL
2015 Dept. Of Homeless Services Cement Mason NA NA 173290.18 2.475574e+04 25348.190 2606.50 7 2.475574e+04 173290.18 NA NA NA NULL
2015 Dept. Of Homeless Services Certified It Administrator 83099.00000 8.309900e+04 0.00 0.000000e+00 0.000 17.25 1 0.000000e+00 0.00 8.309900e+04 8.309900e+04 0.00 NULL
2015 Dept. Of Homeless Services Certified It Developer 108151.00000 1.081510e+05 4246.40 4.246400e+03 4246.400 56.00 1 4.246400e+03 4246.40 1.123974e+05 1.123974e+05 0.00 NULL
2015 Dept. Of Homeless Services Certified Local Area Network Administrator 87144.00000 8.714400e+05 6991.54 6.991540e+02 200.460 258.50 10 2.004600e+02 2004.60 8.784315e+05 8.734446e+05 4986.94 NULL
2015 Dept. Of Homeless Services City Laborer 68361.12000 2.050834e+05 27817.65 9.272550e+03 2932.720 759.75 3 2.932720e+03 8798.16 2.329010e+05 2.138815e+05 19019.49 NULL
2015 Dept. Of Homeless Services City Service Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2015 Dept. Of Homeless Services Clerical Associate 41970.70000 2.098535e+06 122121.66 2.442433e+03 235.105 3323.25 50 2.351050e+02 11755.25 2.220657e+06 2.110290e+06 110366.41 NULL
2015 Dept. Of Homeless Services Commissioner Of Homeless Services 214413.00000 2.144130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144130e+05 2.144130e+05 0.00 NULL
2015 Dept. Of Homeless Services Community Assistant 33857.52795 5.451062e+06 523405.12 3.250963e+03 2072.800 21142.68 161 2.072800e+03 333720.80 5.974467e+06 5.784783e+06 189684.32 NULL
2015 Dept. Of Homeless Services Community Associate 36269.64706 4.932672e+06 339599.77 2.497057e+03 548.235 11959.30 136 5.482350e+02 74559.96 5.272272e+06 5.007232e+06 265039.81 NULL
2015 Dept. Of Homeless Services Community Coordinator 53506.14286 8.614489e+06 587196.98 3.647186e+03 859.950 15272.50 161 8.599500e+02 138451.95 9.201686e+06 8.752941e+06 448745.03 NULL
2015 Dept. Of Homeless Services Computer Aide-Non-Spvr 56383.00000 5.638300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.638300e+04 5.638300e+04 0.00 NULL
2015 Dept. Of Homeless Services Computer Associate 66449.66667 1.993490e+05 4015.17 1.338390e+03 1092.410 157.75 3 1.092410e+03 3277.23 2.033642e+05 2.026262e+05 737.94 NULL
2015 Dept. Of Homeless Services Computer Operations Manager 108414.00000 3.252420e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.252420e+05 3.252420e+05 0.00 NULL
2015 Dept. Of Homeless Services Computer Specialist 92481.62500 7.398530e+05 1068.82 1.336025e+02 5.470 47.50 8 5.470000e+00 43.76 7.409218e+05 7.398968e+05 1025.06 NULL
2015 Dept. Of Homeless Services Computer Systems Manager 120308.55556 1.082777e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.082777e+06 1.082777e+06 0.00 NULL
2015 Dept. Of Homeless Services Confidential Agency Investigator 129425.00000 1.294250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.294250e+05 1.294250e+05 0.00 NULL
2015 Dept. Of Homeless Services Construction Project Manager 75836.00000 2.275080e+05 30907.12 1.030237e+04 9045.060 563.75 3 9.045060e+03 27135.18 2.584151e+05 2.546432e+05 3771.94 NULL
2015 Dept. Of Homeless Services Contract Specialist 58446.00000 1.753380e+05 25810.71 8.603570e+03 6174.570 565.00 3 6.174570e+03 18523.71 2.011487e+05 1.938617e+05 7287.00 NULL
2015 Dept. Of Homeless Services Counselor 52983.28571 3.708830e+05 13425.26 1.917894e+03 814.480 478.25 7 8.144800e+02 5701.36 3.843083e+05 3.765844e+05 7723.90 NULL
2015 Dept. Of Homeless Services Deputy Commisioner 191108.50000 3.822170e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.822170e+05 3.822170e+05 0.00 NULL
2015 Dept. Of Homeless Services Director Of Eeo 93214.00000 9.321400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.321400e+04 9.321400e+04 0.00 NULL
2015 Dept. Of Homeless Services Electrical Engineer 83468.00000 8.346800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.346800e+04 8.346800e+04 0.00 NULL
2015 Dept. Of Homeless Services Electrician NA NA 286245.78 1.683799e+04 16905.010 3891.00 17 1.683799e+04 286245.78 NA NA NA NULL
2015 Dept. Of Homeless Services Electrician’s Helper NA NA 12741.17 4.247057e+03 3078.900 284.75 3 3.078900e+03 9236.70 NA NA NA NULL
2015 Dept. Of Homeless Services Executive Agency Counsel 115622.66667 6.937360e+05 41.16 6.860000e+00 0.000 0.00 6 0.000000e+00 0.00 6.937772e+05 6.937360e+05 41.16 NULL
2015 Dept. Of Homeless Services Executive Assistant To The Commissioner 163429.00000 1.634290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.634290e+05 1.634290e+05 0.00 NULL
2015 Dept. Of Homeless Services Fraud Investigator 45052.49306 6.487559e+06 789267.92 5.481027e+03 1601.610 21220.67 144 1.601610e+03 230631.84 7.276827e+06 6.718191e+06 558636.08 NULL
2015 Dept. Of Homeless Services General Counsel 155341.00000 3.106820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.106820e+05 3.106820e+05 0.00 NULL
2015 Dept. Of Homeless Services Housekeeper 38418.50000 2.305110e+05 17352.26 2.892043e+03 1435.085 618.00 6 1.435085e+03 8610.51 2.478633e+05 2.391215e+05 8741.75 NULL
2015 Dept. Of Homeless Services Human Resources Technician 34337.00000 3.433700e+04 371.35 3.713500e+02 371.350 18.50 1 3.713500e+02 371.35 3.470835e+04 3.470835e+04 0.00 NULL
2015 Dept. Of Homeless Services Investigator Empl Disc 59524.00000 2.380960e+05 10510.00 2.627500e+03 3213.735 283.25 4 2.627500e+03 10510.00 2.486060e+05 2.486060e+05 0.00 NULL
2015 Dept. Of Homeless Services Locksmith NA NA 14390.84 7.195420e+03 7195.420 436.00 2 7.195420e+03 14390.84 NA NA NA NULL
2015 Dept. Of Homeless Services Maintenance Worker NA NA 72843.85 8.093761e+03 8800.450 2016.50 9 8.093761e+03 72843.85 NA NA NA NULL
2015 Dept. Of Homeless Services Management Auditor 68113.20000 3.405660e+05 17.89 3.578000e+00 0.000 0.00 5 0.000000e+00 0.00 3.405839e+05 3.405660e+05 17.89 NULL
2015 Dept. Of Homeless Services Mechanical Engineer 80081.00000 8.008100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.008100e+04 8.008100e+04 0.00 NULL
2015 Dept. Of Homeless Services Motor Vehicle Operator 41216.11765 2.102022e+06 380580.31 7.462359e+03 5727.170 12409.12 51 5.727170e+03 292085.67 2.482602e+06 2.394108e+06 88494.64 NULL
2015 Dept. Of Homeless Services Motor Vehicle Supervisor 51221.00000 4.609890e+05 82146.35 9.127372e+03 9410.980 2118.00 9 9.127372e+03 82146.35 5.431353e+05 5.431353e+05 0.00 NULL
2015 Dept. Of Homeless Services Oiler NA NA 29824.80 3.728100e+03 3086.520 465.00 8 3.086520e+03 24692.16 NA NA NA NULL
2015 Dept. Of Homeless Services Plumber NA NA 272863.20 1.605078e+04 17023.700 3193.75 17 1.605078e+04 272863.20 NA NA NA NULL
2015 Dept. Of Homeless Services Plumber’s Helper NA NA 63861.84 1.277237e+04 12718.720 967.75 5 1.271872e+04 63593.60 NA NA NA NULL
2015 Dept. Of Homeless Services Principal Administrative Associate 53938.54630 5.825363e+06 282387.07 2.614695e+03 334.590 7105.87 108 3.345900e+02 36135.72 6.107750e+06 5.861499e+06 246251.35 NULL
2015 Dept. Of Homeless Services Procurement Analyst 56076.62500 4.486130e+05 3195.11 3.993888e+02 21.730 129.25 8 2.173000e+01 173.84 4.518081e+05 4.487868e+05 3021.27 NULL
2015 Dept. Of Homeless Services Recreation Director 40374.00000 4.037400e+05 18404.65 1.840465e+03 924.940 706.25 10 9.249400e+02 9249.40 4.221447e+05 4.129894e+05 9155.25 NULL
2015 Dept. Of Homeless Services Research Assistant 46075.00000 4.607500e+04 2393.34 2.393340e+03 2393.340 75.50 1 2.393340e+03 2393.34 4.846834e+04 4.846834e+04 0.00 NULL
2015 Dept. Of Homeless Services Secretary 47421.57143 3.319510e+05 17016.39 2.430913e+03 13.210 415.75 7 1.321000e+01 92.47 3.489674e+05 3.320435e+05 16923.92 NULL
2015 Dept. Of Homeless Services Secretary Of Comm 77911.00000 7.791100e+04 12154.20 1.215420e+04 12154.200 258.75 1 1.215420e+04 12154.20 9.006520e+04 9.006520e+04 0.00 NULL
2015 Dept. Of Homeless Services Senior Stationary Engineer NA NA 47508.63 4.750863e+04 47508.630 562.75 1 4.750863e+04 47508.63 NA NA NA NULL
2015 Dept. Of Homeless Services Sheet Metal Worker NA NA 78049.44 3.902472e+04 39024.720 801.00 2 3.902472e+04 78049.44 NA NA NA NULL
2015 Dept. Of Homeless Services Social Worker 20982.95834 5.245740e+05 30272.15 1.210886e+03 0.000 631.00 25 0.000000e+00 0.00 5.548461e+05 5.245740e+05 30272.15 NULL
2015 Dept. Of Homeless Services Space Analyst 62398.70588 1.060778e+06 77386.94 4.552173e+03 1357.410 1759.52 17 1.357410e+03 23075.97 1.138165e+06 1.083854e+06 54310.97 NULL
2015 Dept. Of Homeless Services Special Officer 35888.60502 1.571921e+07 834991.15 1.906372e+03 1467.160 31013.29 438 1.467160e+03 642616.08 1.655420e+07 1.636183e+07 192375.07 NULL
2015 Dept. Of Homeless Services Staff Analyst 59803.75862 1.734309e+06 43946.22 1.515387e+03 0.000 1005.75 29 0.000000e+00 0.00 1.778255e+06 1.734309e+06 43946.22 NULL
2015 Dept. Of Homeless Services Stationary Engineer NA NA 9780.53 4.890265e+03 4890.265 132.50 2 4.890265e+03 9780.53 NA NA NA NULL
2015 Dept. Of Homeless Services Stock Worker 31727.14286 2.220900e+05 4256.47 6.080671e+02 112.940 213.00 7 1.129400e+02 790.58 2.263465e+05 2.228806e+05 3465.89 NULL
2015 Dept. Of Homeless Services Summer College Intern 2557.01472 1.278507e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.278507e+04 1.278507e+04 0.00 NULL
2015 Dept. Of Homeless Services Summer Graduate Intern 5238.58755 4.190870e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.190870e+04 4.190870e+04 0.00 NULL
2015 Dept. Of Homeless Services Superintendent Of Adult Institutions 66593.33333 9.989000e+05 115450.35 7.696690e+03 6778.420 2339.50 15 6.778420e+03 101676.30 1.114350e+06 1.100576e+06 13774.05 NULL
2015 Dept. Of Homeless Services Supervising Special Officer 49361.69307 4.985531e+06 423340.72 4.191492e+03 3325.220 11846.16 101 3.325220e+03 335847.22 5.408872e+06 5.321378e+06 87493.50 NULL
2015 Dept. Of Homeless Services Supervisor Bricklayer NA NA 14814.89 1.481489e+04 14814.890 239.00 1 1.481489e+04 14814.89 NA NA NA NULL
2015 Dept. Of Homeless Services Supervisor Carpenter NA NA 96920.52 3.230684e+04 33443.220 1435.75 3 3.230684e+04 96920.52 NA NA NA NULL
2015 Dept. Of Homeless Services Supervisor Electrician NA NA 98550.65 3.285022e+04 32500.720 1259.00 3 3.250072e+04 97502.16 NA NA NA NULL
2015 Dept. Of Homeless Services Supervisor I 53177.59375 1.701683e+06 152619.40 4.769356e+03 3050.025 3838.50 32 3.050025e+03 97600.80 1.854302e+06 1.799284e+06 55018.60 NULL
2015 Dept. Of Homeless Services Supervisor Ii 60518.46667 9.077770e+05 97341.32 6.489421e+03 2854.910 1974.00 15 2.854910e+03 42823.65 1.005118e+06 9.506007e+05 54517.67 NULL
2015 Dept. Of Homeless Services Supervisor Ii Social Work 63760.00000 1.211440e+06 35756.68 1.881931e+03 299.010 837.00 19 2.990100e+02 5681.19 1.247197e+06 1.217121e+06 30075.49 NULL
2015 Dept. Of Homeless Services Supervisor Of Electrical Installations & Maintenance 67464.00000 6.746400e+04 338.89 3.388900e+02 338.890 0.00 1 3.388900e+02 338.89 6.780289e+04 6.780289e+04 0.00 NULL
2015 Dept. Of Homeless Services Supervisor Of Mechanics NA NA 131879.32 3.296983e+04 30121.085 1899.50 4 3.012108e+04 120484.34 NA NA NA NULL
2015 Dept. Of Homeless Services Supervisor Of Motor Transport 68213.00000 6.821300e+04 35841.27 3.584127e+04 35841.270 841.75 1 3.584127e+04 35841.27 1.040543e+05 1.040543e+05 0.00 NULL
2015 Dept. Of Homeless Services Supervisor Of Stock Workers 52484.66667 1.574540e+05 26962.65 8.987550e+03 7761.650 743.25 3 7.761650e+03 23284.95 1.844166e+05 1.807390e+05 3677.70 NULL
2015 Dept. Of Homeless Services Supervisor Plumber NA NA 101041.52 3.368051e+04 33362.760 1110.25 3 3.336276e+04 100088.28 NA NA NA NULL
2015 Dept. Of Homeless Services Telecommunication Manager 90487.00000 9.048700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.048700e+04 9.048700e+04 0.00 NULL
2015 Dept. Of Homeless Services Telecommunications Associate 78641.00000 7.864100e+04 14.08 1.408000e+01 14.080 45.00 1 1.408000e+01 14.08 7.865508e+04 7.865508e+04 0.00 NULL
2015 District Attorney Kings County Accountant 62680.50000 1.253610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.253610e+05 1.253610e+05 0.00 NULL
2015 District Attorney Kings County Adm Manager-Non-Mgrl 81612.27451 4.162226e+06 4166.60 8.169804e+01 0.000 100.25 51 0.000000e+00 0.00 4.166393e+06 4.162226e+06 4166.60 NULL
2015 District Attorney Kings County Administrative Manager 110615.87500 8.849270e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.849270e+05 8.849270e+05 0.00 NULL
2015 District Attorney Kings County Administrative Staff Analyst 104795.00000 5.239750e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.239750e+05 5.239750e+05 0.00 NULL
2015 District Attorney Kings County Agency Chief Contracting Officer 116725.00000 1.167250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.167250e+05 1.167250e+05 0.00 NULL
2015 District Attorney Kings County Assistant District Attorney 86820.52632 4.948770e+07 8.94 1.568420e-02 0.000 0.00 570 0.000000e+00 0.00 4.948771e+07 4.948770e+07 8.94 NULL
2015 District Attorney Kings County Clerical Associate 40089.71429 5.612560e+05 1271.00 9.078571e+01 0.000 36.00 14 0.000000e+00 0.00 5.625270e+05 5.612560e+05 1271.00 NULL
2015 District Attorney Kings County Community Assistant 32065.10972 3.463032e+06 74791.19 6.925110e+02 0.000 3038.25 108 0.000000e+00 0.00 3.537823e+06 3.463032e+06 74791.19 NULL
2015 District Attorney Kings County Community Associate 39690.92647 1.353461e+07 29136.08 8.544305e+01 0.000 829.75 341 0.000000e+00 0.00 1.356374e+07 1.353461e+07 29136.08 NULL
2015 District Attorney Kings County Community Coordinator 59148.66055 3.489771e+06 16210.75 2.747585e+02 0.000 405.50 59 0.000000e+00 0.00 3.505982e+06 3.489771e+06 16210.75 NULL
2015 District Attorney Kings County Community Service Aide 25518.23333 7.655470e+05 1934.50 6.448333e+01 0.000 113.75 30 0.000000e+00 0.00 7.674815e+05 7.655470e+05 1934.50 NULL
2015 District Attorney Kings County Computer Associate 69682.50000 1.393650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.393650e+05 1.393650e+05 0.00 NULL
2015 District Attorney Kings County Computer Programmer Analyst 60604.00000 6.060400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.060400e+04 6.060400e+04 0.00 NULL
2015 District Attorney Kings County Computer Specialist 93484.00000 9.348400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.348400e+04 9.348400e+04 0.00 NULL
2015 District Attorney Kings County Computer Systems Manager 130160.50000 2.603210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.603210e+05 2.603210e+05 0.00 NULL
2015 District Attorney Kings County Director Of Public Information 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2015 District Attorney Kings County District Attorney 190000.00000 1.900000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.900000e+05 1.900000e+05 0.00 NULL
2015 District Attorney Kings County Executive Assistant 72912.50000 2.916500e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.916500e+05 2.916500e+05 0.00 NULL
2015 District Attorney Kings County Maintenance Worker NA NA 1019.46 1.019460e+03 1019.460 26.00 1 1.019460e+03 1019.46 NA NA NA NULL
2015 District Attorney Kings County Media Services Technician 50685.80000 5.068580e+05 42268.63 4.226863e+03 2215.005 1188.75 10 2.215005e+03 22150.05 5.491266e+05 5.290081e+05 20118.58 NULL
2015 District Attorney Kings County Office Assistant 34275.00000 3.427500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.427500e+04 3.427500e+04 0.00 NULL
2015 District Attorney Kings County Paralegal Aide 42905.75000 6.864920e+05 945.60 5.910000e+01 0.000 26.75 16 0.000000e+00 0.00 6.874376e+05 6.864920e+05 945.60 NULL
2015 District Attorney Kings County Principal Accountant Investigator 119359.50000 2.387190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.387190e+05 2.387190e+05 0.00 NULL
2015 District Attorney Kings County Principal Administrative Associate 60707.32000 1.517683e+06 1818.19 7.272760e+01 0.000 32.25 25 0.000000e+00 0.00 1.519501e+06 1.517683e+06 1818.19 NULL
2015 District Attorney Kings County Procurement Analyst 64050.00000 6.405000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.405000e+04 6.405000e+04 0.00 NULL
2015 District Attorney Kings County Rackets Investigator 57557.00000 1.151140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.151140e+05 1.151140e+05 0.00 NULL
2015 District Attorney Kings County Reporter/ Stenographer 48953.46029 1.272790e+06 12.10 4.653846e-01 0.000 0.00 26 0.000000e+00 0.00 1.272802e+06 1.272790e+06 12.10 NULL
2015 District Attorney Kings County Secretary 43206.33333 2.592380e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.592380e+05 2.592380e+05 0.00 NULL
2015 District Attorney Kings County Secretary To District Attorney 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2015 District Attorney Kings County Social Worker 53895.62000 5.389562e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.389562e+05 5.389562e+05 0.00 NULL
2015 District Attorney Kings County Special Assistant To The District Attorney 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2015 District Attorney Kings County Special Officer 30260.00000 6.052000e+04 994.56 4.972800e+02 497.280 57.75 2 4.972800e+02 994.56 6.151456e+04 6.151456e+04 0.00 NULL
2015 District Attorney Kings County Strategic Initiative Specialist 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2015 District Attorney Kings County Supervising Accountant Investigator 76320.91667 9.158510e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 9.158510e+05 9.158510e+05 0.00 NULL
2015 District Attorney Kings County Supervising Computer Service Technician 75529.00000 7.552900e+04 35.10 3.510000e+01 35.100 0.00 1 3.510000e+01 35.10 7.556410e+04 7.556410e+04 0.00 NULL
2015 District Attorney Kings County Supervising Rackets Investigator 72000.00000 7.200000e+04 9646.57 9.646570e+03 9646.570 140.50 1 9.646570e+03 9646.57 8.164657e+04 8.164657e+04 0.00 NULL
2015 District Attorney Qns County Adm Manager-Non-Mgrl 80321.83333 4.819310e+05 8924.98 1.487497e+03 909.645 162.00 6 9.096450e+02 5457.87 4.908560e+05 4.873889e+05 3467.11 NULL
2015 District Attorney Qns County Administrative Manager 114471.00000 2.289420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.289420e+05 2.289420e+05 0.00 NULL
2015 District Attorney Qns County Administrative Public Information Specialist 82972.00000 8.297200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.297200e+04 8.297200e+04 0.00 NULL
2015 District Attorney Qns County Administrative Staff Analyst 139649.50000 2.792990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.792990e+05 2.792990e+05 0.00 NULL
2015 District Attorney Qns County Agency Chief Contracting Officer 107388.00000 1.073880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.073880e+05 1.073880e+05 0.00 NULL
2015 District Attorney Qns County Assistant District Attorney 98350.62444 3.186560e+07 23.38 7.216050e-02 0.000 0.00 324 0.000000e+00 0.00 3.186563e+07 3.186560e+07 23.38 NULL
2015 District Attorney Qns County Associate Project Manager 104552.00000 1.045520e+05 1599.49 1.599490e+03 1599.490 18.25 1 1.599490e+03 1599.49 1.061515e+05 1.061515e+05 0.00 NULL
2015 District Attorney Qns County Certified Applications Developer 91619.00000 9.161900e+04 152.02 1.520200e+02 152.020 1.00 1 1.520200e+02 152.02 9.177102e+04 9.177102e+04 0.00 NULL
2015 District Attorney Qns County Certified It Administrator 108055.00000 1.080550e+05 2015.46 2.015460e+03 2015.460 31.50 1 2.015460e+03 2015.46 1.100705e+05 1.100705e+05 0.00 NULL
2015 District Attorney Qns County City Seasonal Aide 5615.45467 1.684636e+04 286.02 9.534000e+01 0.000 14.00 3 0.000000e+00 0.00 1.713238e+04 1.684636e+04 286.02 NULL
2015 District Attorney Qns County Clerical Associate 47460.35294 1.613652e+06 24982.17 7.347697e+02 0.000 579.75 34 0.000000e+00 0.00 1.638634e+06 1.613652e+06 24982.17 NULL
2015 District Attorney Qns County Community Assistant 33737.71429 9.446560e+05 25112.75 8.968839e+02 0.980 1107.25 28 9.800000e-01 27.44 9.697688e+05 9.446834e+05 25085.31 NULL
2015 District Attorney Qns County Community Associate 38260.53333 6.045164e+06 123484.09 7.815449e+02 4.690 4251.75 158 4.690000e+00 741.02 6.168648e+06 6.045905e+06 122743.07 NULL
2015 District Attorney Qns County Community Coordinator 65976.94118 1.121608e+06 13810.40 8.123765e+02 0.000 334.00 17 0.000000e+00 0.00 1.135418e+06 1.121608e+06 13810.40 NULL
2015 District Attorney Qns County Community Service Aide 28651.64516 8.882010e+05 41402.98 1.335580e+03 20.110 2090.50 31 2.011000e+01 623.41 9.296040e+05 8.888244e+05 40779.57 NULL
2015 District Attorney Qns County Computer Associate 88675.00000 8.867500e+04 924.34 9.243400e+02 924.340 21.00 1 9.243400e+02 924.34 8.959934e+04 8.959934e+04 0.00 NULL
2015 District Attorney Qns County Computer Specialist 87740.00000 8.774000e+04 452.26 4.522600e+02 452.260 7.50 1 4.522600e+02 452.26 8.819226e+04 8.819226e+04 0.00 NULL
2015 District Attorney Qns County Director Of Public Information 146724.00000 1.467240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.467240e+05 1.467240e+05 0.00 NULL
2015 District Attorney Qns County District Attorney 190000.00000 1.900000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.900000e+05 1.900000e+05 0.00 NULL
2015 District Attorney Qns County Interpreter 46064.00000 4.606400e+04 0.49 4.900000e-01 0.490 0.00 1 4.900000e-01 0.49 4.606449e+04 4.606449e+04 0.00 NULL
2015 District Attorney Qns County Paralegal Aide 48599.58824 8.261930e+05 34559.66 2.032921e+03 0.420 1062.25 17 4.200000e-01 7.14 8.607527e+05 8.262001e+05 34552.52 NULL
2015 District Attorney Qns County Principal Administrative Associate 61705.38889 1.110697e+06 40598.51 2.255473e+03 0.000 1059.50 18 0.000000e+00 0.00 1.151296e+06 1.110697e+06 40598.51 NULL
2015 District Attorney Qns County Private Secretary 96210.00000 9.621000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.621000e+04 9.621000e+04 0.00 NULL
2015 District Attorney Qns County Reporter/ Stenographer 59535.45000 1.190709e+06 9189.55 4.594775e+02 2.970 151.50 20 2.970000e+00 59.40 1.199899e+06 1.190768e+06 9130.15 NULL
2015 District Attorney Qns County Secretary 52390.22222 4.715120e+05 4166.17 4.629078e+02 0.000 102.00 9 0.000000e+00 0.00 4.756782e+05 4.715120e+05 4166.17 NULL
2015 District Attorney Qns County Special Assistant To Da 123622.14286 8.653550e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.653550e+05 8.653550e+05 0.00 NULL
2015 District Attorney Qns County Staff Analyst 83741.00000 8.374100e+04 98.70 9.870000e+01 98.700 2.00 1 9.870000e+01 98.70 8.383970e+04 8.383970e+04 0.00 NULL
2015 District Attorney Richmond Cou Administrative Manager 91628.00000 9.162800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.162800e+04 9.162800e+04 0.00 NULL
2015 District Attorney Richmond Cou Administrative Public Information Specialist 83183.00000 1.663660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.663660e+05 1.663660e+05 0.00 NULL
2015 District Attorney Richmond Cou Administrative Staff Analyst 101462.80417 6.087768e+05 13173.22 2.195537e+03 0.000 192.75 6 0.000000e+00 0.00 6.219500e+05 6.087768e+05 13173.22 NULL
2015 District Attorney Richmond Cou Assistant District Attorney 88890.18868 4.711180e+06 0.00 0.000000e+00 0.000 0.00 53 0.000000e+00 0.00 4.711180e+06 4.711180e+06 0.00 NULL
2015 District Attorney Richmond Cou Chief Investigator 98855.00000 9.885500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.885500e+04 9.885500e+04 0.00 NULL
2015 District Attorney Richmond Cou Clerical Associate 47213.43000 6.137746e+05 24920.57 1.916967e+03 46.350 718.50 13 4.635000e+01 602.55 6.386952e+05 6.143771e+05 24318.02 NULL
2015 District Attorney Richmond Cou Community Assistant 31378.23125 6.275646e+04 1958.69 9.793450e+02 979.345 121.50 2 9.793450e+02 1958.69 6.471515e+04 6.471515e+04 0.00 NULL
2015 District Attorney Richmond Cou Community Associate 45439.84615 5.907180e+05 11005.14 8.465492e+02 1.270 300.50 13 1.270000e+00 16.51 6.017231e+05 5.907345e+05 10988.63 NULL
2015 District Attorney Richmond Cou Community Coordinator 66128.33333 1.983850e+05 9077.23 3.025743e+03 4296.500 201.00 3 3.025743e+03 9077.23 2.074622e+05 2.074622e+05 0.00 NULL
2015 District Attorney Richmond Cou Computer Programmer Analyst 45174.00000 4.517400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.517400e+04 4.517400e+04 0.00 NULL
2015 District Attorney Richmond Cou Computer Systems Manager 86798.00000 8.679800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.679800e+04 8.679800e+04 0.00 NULL
2015 District Attorney Richmond Cou District Attorney 190000.00000 1.900000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.900000e+05 1.900000e+05 0.00 NULL
2015 District Attorney Richmond Cou Paralegal Aide 50555.20000 2.527760e+05 34179.21 6.835842e+03 1.470 916.25 5 1.470000e+00 7.35 2.869552e+05 2.527834e+05 34171.86 NULL
2015 District Attorney Richmond Cou Principal Administrative Associate 62284.50000 2.491380e+05 3164.08 7.910200e+02 1.375 64.50 4 1.375000e+00 5.50 2.523021e+05 2.491435e+05 3158.58 NULL
2015 District Attorney Richmond Cou Program Producer 55369.26000 5.536926e+04 3018.04 3.018040e+03 3018.040 64.50 1 3.018040e+03 3018.04 5.838730e+04 5.838730e+04 0.00 NULL
2015 District Attorney Richmond Cou Reporter/ Stenographer 50637.88250 2.025515e+05 0.50 1.250000e-01 0.000 0.00 4 0.000000e+00 0.00 2.025520e+05 2.025515e+05 0.50 NULL
2015 District Attorney Richmond Cou Secretary 41534.00000 8.306800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.306800e+04 8.306800e+04 0.00 NULL
2015 District Attorney Richmond Cou Senior Detective Investigator 62575.42857 4.380280e+05 18487.75 2.641107e+03 1979.790 368.00 7 1.979790e+03 13858.53 4.565158e+05 4.518865e+05 4629.22 NULL
2015 District Attorney Richmond Cou Social Worker 57094.66667 1.712840e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.712840e+05 1.712840e+05 0.00 NULL
2015 District Attorney-Manhattan Administrative Staff Analyst 119988.80769 6.239418e+06 46725.07 8.985590e+02 0.000 880.75 52 0.000000e+00 0.00 6.286143e+06 6.239418e+06 46725.07 NULL
2015 District Attorney-Manhattan Assistant District Attorney 101141.51786 5.663925e+07 0.00 0.000000e+00 0.000 0.00 560 0.000000e+00 0.00 5.663925e+07 5.663925e+07 0.00 NULL
2015 District Attorney-Manhattan Assistant Media Services Technican 41854.00000 1.255620e+05 5535.96 1.845320e+03 721.140 197.25 3 7.211400e+02 2163.42 1.310980e+05 1.277254e+05 3372.54 NULL
2015 District Attorney-Manhattan Carpenter NA NA 169271.00 3.385420e+04 35099.440 2580.50 5 3.385420e+04 169271.00 NA NA NA NULL
2015 District Attorney-Manhattan Chief Office Assistant 44441.00000 4.444100e+04 1093.01 1.093010e+03 1093.010 37.50 1 1.093010e+03 1093.01 4.553401e+04 4.553401e+04 0.00 NULL
2015 District Attorney-Manhattan City Custodial Assistant 33890.90000 6.778180e+05 32063.92 1.603196e+03 850.295 1141.50 20 8.502950e+02 17005.90 7.098819e+05 6.948239e+05 15058.02 NULL
2015 District Attorney-Manhattan City Laborer NA NA 71755.17 1.195919e+04 9093.440 1352.50 6 9.093440e+03 54560.64 NA NA NA NULL
2015 District Attorney-Manhattan Clerical Associate 48406.58072 1.258571e+06 38791.81 1.491993e+03 1.545 1069.50 26 1.545000e+00 40.17 1.297363e+06 1.258611e+06 38751.64 NULL
2015 District Attorney-Manhattan College Aide 174.23649 2.578700e+04 0.00 0.000000e+00 0.000 0.00 148 0.000000e+00 0.00 2.578700e+04 2.578700e+04 0.00 NULL
2015 District Attorney-Manhattan Community Assistant 32290.68739 1.614534e+06 50331.82 1.006636e+03 19.290 2022.75 50 1.929000e+01 964.50 1.664866e+06 1.615499e+06 49367.32 NULL
2015 District Attorney-Manhattan Community Associate 42415.04104 2.892706e+07 456872.42 6.699009e+02 0.000 16574.22 682 0.000000e+00 0.00 2.938393e+07 2.892706e+07 456872.42 NULL
2015 District Attorney-Manhattan Community Coordinator 72155.40266 1.024607e+07 369378.17 2.601255e+03 41.890 7790.00 142 4.189000e+01 5948.38 1.061545e+07 1.025202e+07 363429.79 NULL
2015 District Attorney-Manhattan Community Service Aide 35766.00000 3.576600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.576600e+04 3.576600e+04 0.00 NULL
2015 District Attorney-Manhattan Computer Associate 76879.00000 7.687900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.687900e+04 7.687900e+04 0.00 NULL
2015 District Attorney-Manhattan County Detective 46450.44444 4.180540e+05 39567.73 4.396414e+03 2029.470 1213.00 9 2.029470e+03 18265.23 4.576217e+05 4.363192e+05 21302.50 NULL
2015 District Attorney-Manhattan District Attorney 190000.00000 1.900000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.900000e+05 1.900000e+05 0.00 NULL
2015 District Attorney-Manhattan Electrician NA NA 35182.04 3.518204e+04 35182.040 490.75 1 3.518204e+04 35182.04 NA NA NA NULL
2015 District Attorney-Manhattan Electrician’s Helper NA NA 19523.09 1.952309e+04 19523.090 407.50 1 1.952309e+04 19523.09 NA NA NA NULL
2015 District Attorney-Manhattan Engineering Technician 56428.00000 1.128560e+05 965.95 4.829750e+02 482.975 23.50 2 4.829750e+02 965.95 1.138219e+05 1.138219e+05 0.00 NULL
2015 District Attorney-Manhattan High Pressure Plant Tender NA NA 15036.29 1.503629e+04 15036.290 319.00 1 1.503629e+04 15036.29 NA NA NA NULL
2015 District Attorney-Manhattan Interpreter 57099.20000 2.854960e+05 2378.86 4.757720e+02 10.020 44.50 5 1.002000e+01 50.10 2.878749e+05 2.855461e+05 2328.76 NULL
2015 District Attorney-Manhattan Management Auditor 95555.00000 9.555500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.555500e+04 9.555500e+04 0.00 NULL
2015 District Attorney-Manhattan Media Services Technician 48395.87500 3.871670e+05 123518.63 1.543983e+04 11595.125 2840.00 8 1.159512e+04 92761.00 5.106856e+05 4.799280e+05 30757.63 NULL
2015 District Attorney-Manhattan Office Assistant 49980.00000 1.999200e+05 15762.97 3.940742e+03 3860.800 452.00 4 3.860800e+03 15443.20 2.156830e+05 2.153632e+05 319.77 NULL
2015 District Attorney-Manhattan Painter NA NA 18617.37 6.205790e+03 7285.220 341.75 3 6.205790e+03 18617.37 NA NA NA NULL
2015 District Attorney-Manhattan Paralegal Aide 57680.00000 1.153600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.153600e+05 1.153600e+05 0.00 NULL
2015 District Attorney-Manhattan Photographer 57582.00000 1.151640e+05 23185.86 1.159293e+04 11592.930 630.50 2 1.159293e+04 23185.86 1.383499e+05 1.383499e+05 0.00 NULL
2015 District Attorney-Manhattan Principal Accountant Investigator 107002.84211 2.033054e+06 123.84 6.517895e+00 0.000 0.00 19 0.000000e+00 0.00 2.033178e+06 2.033054e+06 123.84 NULL
2015 District Attorney-Manhattan Principal Administrative Associate 70321.27273 7.735340e+05 18334.13 1.666739e+03 0.000 386.25 11 0.000000e+00 0.00 7.918681e+05 7.735340e+05 18334.13 NULL
2015 District Attorney-Manhattan Reporter/ Stenographer 71068.31034 2.060981e+06 48.37 1.667931e+00 0.000 0.00 29 0.000000e+00 0.00 2.061029e+06 2.060981e+06 48.37 NULL
2015 District Attorney-Manhattan Secretary 68365.00000 4.785550e+05 27226.35 3.889479e+03 1816.250 580.00 7 1.816250e+03 12713.75 5.057813e+05 4.912688e+05 14512.60 NULL
2015 District Attorney-Manhattan Senior Accountant Investigator 61028.98231 7.933768e+05 11149.82 8.576785e+02 0.000 290.75 13 0.000000e+00 0.00 8.045266e+05 7.933768e+05 11149.82 NULL
2015 District Attorney-Manhattan Senior Secretary 55685.14286 3.897960e+05 216.87 3.098143e+01 4.410 4.00 7 4.410000e+00 30.87 3.900129e+05 3.898269e+05 186.00 NULL
2015 District Attorney-Manhattan Special Assistant To Da 164500.00000 3.290000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.290000e+05 3.290000e+05 0.00 NULL
2015 District Attorney-Manhattan Special Officer 35009.33333 4.201120e+05 2584.15 2.153458e+02 157.845 111.25 12 1.578450e+02 1894.14 4.226962e+05 4.220061e+05 690.01 NULL
2015 District Attorney-Manhattan Supervising Accountant Investigator 68696.00000 6.869600e+04 23913.60 2.391360e+04 23913.600 531.50 1 2.391360e+04 23913.60 9.260960e+04 9.260960e+04 0.00 NULL
2015 District Attorney-Manhattan Supervisor Electrician NA NA 33410.57 3.341057e+04 33410.570 401.50 1 3.341057e+04 33410.57 NA NA NA NULL
2015 District Attorney-Special Narc Administrative Manager 175426.50000 3.508530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.508530e+05 3.508530e+05 0.00 NULL
2015 District Attorney-Special Narc Administrative Staff Analyst 141166.66667 4.235000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.235000e+05 4.235000e+05 0.00 NULL
2015 District Attorney-Special Narc Assistant District Attorney 94736.62963 1.278944e+07 0.00 0.000000e+00 0.000 0.00 135 0.000000e+00 0.00 1.278944e+07 1.278944e+07 0.00 NULL
2015 District Attorney-Special Narc Associate Chief Rackets Investigator 100666.66667 3.020000e+05 4901.42 1.633807e+03 0.000 65.00 3 0.000000e+00 0.00 3.069014e+05 3.020000e+05 4901.42 NULL
2015 District Attorney-Special Narc Chief Rackets Investigator 155814.00000 1.558140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.558140e+05 1.558140e+05 0.00 NULL
2015 District Attorney-Special Narc Clerical Associate 70118.50000 5.609480e+05 379.50 4.743750e+01 0.465 9.00 8 4.650000e-01 3.72 5.613275e+05 5.609517e+05 375.78 NULL
2015 District Attorney-Special Narc College Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2015 District Attorney-Special Narc Community Assistant 40332.50000 8.066500e+04 252.61 1.263050e+02 126.305 15.75 2 1.263050e+02 252.61 8.091761e+04 8.091761e+04 0.00 NULL
2015 District Attorney-Special Narc Community Associate 49678.42857 2.434243e+06 13263.93 2.706924e+02 0.000 399.50 49 0.000000e+00 0.00 2.447507e+06 2.434243e+06 13263.93 NULL
2015 District Attorney-Special Narc Community Coordinator 80783.84615 1.050190e+06 20748.91 1.596070e+03 0.000 321.25 13 0.000000e+00 0.00 1.070939e+06 1.050190e+06 20748.91 NULL
2015 District Attorney-Special Narc Computer Operations Manager 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2015 District Attorney-Special Narc Confidential Secy 89337.00000 8.933700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.933700e+04 8.933700e+04 0.00 NULL
2015 District Attorney-Special Narc Director Of Public Information 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2015 District Attorney-Special Narc Paralegal Aide 71685.00000 1.433700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.433700e+05 1.433700e+05 0.00 NULL
2015 District Attorney-Special Narc Rackets Investigator 54750.00000 1.095000e+05 5948.41 2.974205e+03 2974.205 156.50 2 2.974205e+03 5948.41 1.154484e+05 1.154484e+05 0.00 NULL
2015 District Attorney-Special Narc Reporter/ Stenographer 72655.50000 4.359330e+05 304.26 5.071000e+01 24.835 1.25 6 2.483500e+01 149.01 4.362373e+05 4.360820e+05 155.25 NULL
2015 District Attorney-Special Narc Secretary 69532.00000 2.085960e+05 0.67 2.233333e-01 0.000 0.00 3 0.000000e+00 0.00 2.085967e+05 2.085960e+05 0.67 NULL
2015 District Attorney-Special Narc Senior Rackets Investigator 72589.66667 1.306614e+06 29593.57 1.644087e+03 601.400 565.25 18 6.014000e+02 10825.20 1.336208e+06 1.317439e+06 18768.37 NULL
2015 District Attorney-Special Narc Special Assistant District Attorney 189000.00000 1.890000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.890000e+05 1.890000e+05 0.00 NULL
2015 District Attorney-Special Narc Supervising Rackets Investigator 81534.00000 8.153400e+04 7277.36 7.277360e+03 7277.360 136.00 1 7.277360e+03 7277.36 8.881136e+04 8.881136e+04 0.00 NULL
2015 Doe Custodial Payrol Custodian Engineer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 955 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2015 Equal Employ Practices Comm Administrative Manager 125478.00000 1.254780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.254780e+05 1.254780e+05 0.00 NULL
2015 Equal Employ Practices Comm City Research Scientist 78663.00000 7.866300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.866300e+04 7.866300e+04 0.00 NULL
2015 Equal Employ Practices Comm College Aide 7931.00000 7.931000e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.931000e+03 7.931000e+03 0.00 NULL
2015 Equal Employ Practices Comm Community Coordinator 53130.80000 2.656540e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.656540e+05 2.656540e+05 0.00 NULL
2015 Equal Employ Practices Comm Executive Agency Counsel 104512.00000 1.045120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.045120e+05 1.045120e+05 0.00 NULL
2015 Equal Employ Practices Comm Executive Secretary 51750.00000 5.175000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.175000e+04 5.175000e+04 0.00 NULL
2015 Equal Employ Practices Comm Research Assistant 44048.00000 4.404800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.404800e+04 4.404800e+04 0.00 NULL
2015 Financial Info Svcs Agency *Certified Wide Area Network Administrator 108108.00000 1.081080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081080e+05 1.081080e+05 0.00 NULL
2015 Financial Info Svcs Agency Accountant 59000.00000 5.900000e+04 722.56 7.225600e+02 722.560 23.25 1 7.225600e+02 722.56 5.972256e+04 5.972256e+04 0.00 NULL
2015 Financial Info Svcs Agency Adm Manager-Non-Mgrl 75001.38462 9.750180e+05 805.28 6.194462e+01 0.000 12.50 13 0.000000e+00 0.00 9.758233e+05 9.750180e+05 805.28 NULL
2015 Financial Info Svcs Agency Admin Contract Specialist 115985.00000 2.319700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.319700e+05 2.319700e+05 0.00 NULL
2015 Financial Info Svcs Agency Administrative Manager 121304.50000 2.426090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.426090e+05 2.426090e+05 0.00 NULL
2015 Financial Info Svcs Agency Administrative Staff Analyst 103214.11500 1.444998e+06 0.00 0.000000e+00 0.000 4.50 14 0.000000e+00 0.00 1.444998e+06 1.444998e+06 0.00 NULL
2015 Financial Info Svcs Agency Agency Attorney 75265.92800 3.763296e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.763296e+05 3.763296e+05 0.00 NULL
2015 Financial Info Svcs Agency Agency Chief Contracting Officer 121318.00000 1.213180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.213180e+05 1.213180e+05 0.00 NULL
2015 Financial Info Svcs Agency Associate Staff Analyst 76732.37500 6.138590e+05 111.82 1.397750e+01 0.000 2.75 8 0.000000e+00 0.00 6.139708e+05 6.138590e+05 111.82 NULL
2015 Financial Info Svcs Agency Certified It Administrator 122042.00000 1.220420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.220420e+05 1.220420e+05 0.00 NULL
2015 Financial Info Svcs Agency City Attendant 33332.00000 3.333200e+04 981.04 9.810400e+02 981.040 52.75 1 9.810400e+02 981.04 3.431304e+04 3.431304e+04 0.00 NULL
2015 Financial Info Svcs Agency City Custodial Assistant 31649.50000 1.265980e+05 10380.21 2.595052e+03 1788.445 432.75 4 1.788445e+03 7153.78 1.369782e+05 1.337518e+05 3226.43 NULL
2015 Financial Info Svcs Agency Clerical Associate 38859.63333 3.497367e+05 635.33 7.059222e+01 0.000 17.50 9 0.000000e+00 0.00 3.503720e+05 3.497367e+05 635.33 NULL
2015 Financial Info Svcs Agency College Aide - Assignment Levels Ii And Iii 11989.14400 1.198914e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.198914e+04 1.198914e+04 0.00 NULL
2015 Financial Info Svcs Agency Community Assistant 33568.33333 1.007050e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.007050e+05 1.007050e+05 0.00 NULL
2015 Financial Info Svcs Agency Community Associate 48944.18600 2.447209e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.447209e+05 2.447209e+05 0.00 NULL
2015 Financial Info Svcs Agency Community Coordinator 54858.00000 5.485800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.485800e+04 5.485800e+04 0.00 NULL
2015 Financial Info Svcs Agency Computer Aide-Non-Spvr 47151.25000 1.886050e+05 7847.04 1.961760e+03 1365.680 182.50 4 1.365680e+03 5462.72 1.964520e+05 1.940677e+05 2384.32 NULL
2015 Financial Info Svcs Agency Computer Associate 68889.34722 4.960033e+06 206907.18 2.873711e+03 129.915 4389.75 72 1.299150e+02 9353.88 5.166940e+06 4.969387e+06 197553.30 NULL
2015 Financial Info Svcs Agency Computer Operations Manager 109429.33333 3.282880e+05 27.14 9.046667e+00 0.000 0.00 3 0.000000e+00 0.00 3.283151e+05 3.282880e+05 27.14 NULL
2015 Financial Info Svcs Agency Computer Programmer Analyst 58889.50000 2.355580e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.355580e+05 2.355580e+05 0.00 NULL
2015 Financial Info Svcs Agency Computer Programmer Analyst Trainee 36171.00000 3.617100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.617100e+04 3.617100e+04 0.00 NULL
2015 Financial Info Svcs Agency Computer Specialist 97085.62637 8.834792e+06 9779.26 1.074644e+02 0.000 103.00 91 0.000000e+00 0.00 8.844571e+06 8.834792e+06 9779.26 NULL
2015 Financial Info Svcs Agency Computer Systems Manager 120874.77522 2.731770e+07 29.43 1.302212e-01 0.000 0.00 226 0.000000e+00 0.00 2.731773e+07 2.731770e+07 29.43 NULL
2015 Financial Info Svcs Agency Executive Agency Counsel 157306.50000 6.292260e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.292260e+05 6.292260e+05 0.00 NULL
2015 Financial Info Svcs Agency Executive Director 209796.50000 4.195930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.195930e+05 4.195930e+05 0.00 NULL
2015 Financial Info Svcs Agency Motor Vehicle Operator 44021.00000 4.402100e+04 4.54 4.540000e+00 4.540 0.00 1 4.540000e+00 4.54 4.402554e+04 4.402554e+04 0.00 NULL
2015 Financial Info Svcs Agency Principal Administrative Associate 55478.75000 4.438300e+05 924.81 1.156012e+02 0.000 21.75 8 0.000000e+00 0.00 4.447548e+05 4.438300e+05 924.81 NULL
2015 Financial Info Svcs Agency Procurement Analyst 73419.25000 2.936770e+05 37.47 9.367500e+00 0.000 1.00 4 0.000000e+00 0.00 2.937145e+05 2.936770e+05 37.47 NULL
2015 Financial Info Svcs Agency Secretary 48743.00000 9.748600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.748600e+04 9.748600e+04 0.00 NULL
2015 Financial Info Svcs Agency Staff Analyst 56272.25000 2.250890e+05 825.50 2.063750e+02 0.000 20.25 4 0.000000e+00 0.00 2.259145e+05 2.250890e+05 825.50 NULL
2015 Financial Info Svcs Agency Staff Analyst Trainee 38203.50000 7.640700e+04 265.03 1.325150e+02 132.515 12.75 2 1.325150e+02 265.03 7.667203e+04 7.667203e+04 0.00 NULL
2015 Financial Info Svcs Agency Supervising Computer Service Technician 73469.00000 7.346900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.346900e+04 7.346900e+04 0.00 NULL
2015 Financial Info Svcs Agency Supervisor Of Office Machine Operations 44562.50000 8.912500e+04 2091.96 1.045980e+03 1045.980 89.50 2 1.045980e+03 2091.96 9.121696e+04 9.121696e+04 0.00 NULL
2015 Financial Info Svcs Agency Supervisor Of Stock Workers 69480.00000 6.948000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.948000e+04 6.948000e+04 0.00 NULL
2015 Financial Info Svcs Agency Telecommunications Associate 83020.00000 8.302000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.302000e+04 8.302000e+04 0.00 NULL
2015 Fire Department *Certified Applications Developer 94763.50000 1.895270e+05 14358.82 7.179410e+03 7179.410 149.75 2 7.179410e+03 14358.82 2.038858e+05 2.038858e+05 0.00 NULL
2015 Fire Department *Senior Systems Analyst 67632.00000 6.763200e+04 2858.70 2.858700e+03 2858.700 62.00 1 2.858700e+03 2858.70 7.049070e+04 7.049070e+04 0.00 NULL
2015 Fire Department Accountant 66531.66667 1.995950e+05 14061.85 4.687283e+03 404.160 223.75 3 4.041600e+02 1212.48 2.136569e+05 2.008075e+05 12849.37 NULL
2015 Fire Department Adm Manager-Non-Mgrl 67980.96721 4.146839e+06 212536.68 3.484208e+03 1510.630 4794.00 61 1.510630e+03 92148.43 4.359376e+06 4.238987e+06 120388.25 NULL
2015 Fire Department Admin Community Relations Specialist 96959.00000 9.695900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.695900e+04 9.695900e+04 0.00 NULL
2015 Fire Department Admin Tests & Meas Spec 127138.00000 1.271380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.271380e+05 1.271380e+05 0.00 NULL
2015 Fire Department Administrative Accountant 148757.00000 1.487570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.487570e+05 1.487570e+05 0.00 NULL
2015 Fire Department Administrative Architect 112954.50000 2.259090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.259090e+05 2.259090e+05 0.00 NULL
2015 Fire Department Administrative Blasting Inspector 116212.00000 1.162120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.162120e+05 1.162120e+05 0.00 NULL
2015 Fire Department Administrative Community Relations Specialist 138589.00000 1.385890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.385890e+05 1.385890e+05 0.00 NULL
2015 Fire Department Administrative Construction Project Manager 119400.50000 2.388010e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.388010e+05 2.388010e+05 0.00 NULL
2015 Fire Department Administrative Engineer 116005.00000 3.480150e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.480150e+05 3.480150e+05 0.00 NULL
2015 Fire Department Administrative Fire Protection Inspector 92044.28571 6.443100e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.443100e+05 6.443100e+05 0.00 NULL
2015 Fire Department Administrative Graphic Artist 79510.00000 7.951000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.951000e+04 7.951000e+04 0.00 NULL
2015 Fire Department Administrative Inspector 101647.00000 1.016470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.016470e+05 1.016470e+05 0.00 NULL
2015 Fire Department Administrative Investigator 107799.00000 4.311960e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.311960e+05 4.311960e+05 0.00 NULL
2015 Fire Department Administrative Labor Relations Analyst 118726.00000 2.374520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.374520e+05 2.374520e+05 0.00 NULL
2015 Fire Department Administrative Management Auditor 145842.00000 1.458420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.458420e+05 1.458420e+05 0.00 NULL
2015 Fire Department Administrative Printing Services Manager 113947.00000 1.139470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.139470e+05 1.139470e+05 0.00 NULL
2015 Fire Department Administrative Procurement Analyst 117623.66667 3.528710e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.528710e+05 3.528710e+05 0.00 NULL
2015 Fire Department Administrative Project Manager 89146.45455 9.806110e+05 1.76 1.600000e-01 0.000 0.00 11 0.000000e+00 0.00 9.806128e+05 9.806110e+05 1.76 NULL
2015 Fire Department Administrative Public Information Specialist 108288.00000 2.165760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.165760e+05 2.165760e+05 0.00 NULL
2015 Fire Department Administrative Quality Assurance Specialist 61309.77000 6.130977e+04 4456.18 4.456180e+03 4456.180 119.00 1 4.456180e+03 4456.18 6.576595e+04 6.576595e+04 0.00 NULL
2015 Fire Department Administrative Retirement Benefits Specialist 104471.00000 1.044710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.044710e+05 1.044710e+05 0.00 NULL
2015 Fire Department Administrative Staff Analyst 88828.79200 7.550447e+06 105744.05 1.244048e+03 0.000 2268.25 85 0.000000e+00 0.00 7.656191e+06 7.550447e+06 105744.05 NULL
2015 Fire Department Administrative Storekeeper 117246.00000 1.172460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.172460e+05 1.172460e+05 0.00 NULL
2015 Fire Department Administrative Supervisor Of Building Maintenance 107469.00000 2.149380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.149380e+05 2.149380e+05 0.00 NULL
2015 Fire Department Administrator Of Medical Affairs 188345.00000 1.883450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.883450e+05 1.883450e+05 0.00 NULL
2015 Fire Department Agency Attorney 83702.74105 1.590352e+06 31753.52 1.671238e+03 163.120 506.25 19 1.631200e+02 3099.28 1.622106e+06 1.593451e+06 28654.24 NULL
2015 Fire Department Agency Chief Contracting Officer 146879.00000 1.468790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.468790e+05 1.468790e+05 0.00 NULL
2015 Fire Department Agency Deputy Medical Director 160201.20000 8.010060e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.010060e+05 8.010060e+05 0.00 NULL
2015 Fire Department Assistant Architect 50328.00000 5.032800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.032800e+04 5.032800e+04 0.00 NULL
2015 Fire Department Assistant Chemical Engineer 63923.00000 1.917690e+05 3485.05 1.161683e+03 17.860 81.00 3 1.786000e+01 53.58 1.952540e+05 1.918226e+05 3431.47 NULL
2015 Fire Department Assistant Chief Fire Marshal 186161.00000 1.861610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.861610e+05 1.861610e+05 0.00 NULL
2015 Fire Department Assistant Chief Of Department 206306.07692 2.681979e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 2.681979e+06 2.681979e+06 0.00 NULL
2015 Fire Department Assistant Civil Engineer 57877.00000 5.787700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.787700e+04 5.787700e+04 0.00 NULL
2015 Fire Department Assistant Commissioner 146454.75000 1.171638e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.171638e+06 1.171638e+06 0.00 NULL
2015 Fire Department Assistant Mechanical Engineer 54102.50000 1.082050e+05 3.94 1.970000e+00 1.970 0.00 2 1.970000e+00 3.94 1.082089e+05 1.082089e+05 0.00 NULL
2015 Fire Department Assistant Retirement Benefits Examiner 48507.00000 4.850700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.850700e+04 4.850700e+04 0.00 NULL
2015 Fire Department Associate Fire Protection Inspector 56807.29808 1.181592e+07 2599152.75 1.249593e+04 9551.060 61877.87 208 9.551060e+03 1986620.48 1.441507e+07 1.380254e+07 612532.27 NULL
2015 Fire Department Associate Inspector 59862.60000 1.496565e+06 539266.38 2.157066e+04 16876.560 12786.70 25 1.687656e+04 421914.00 2.035831e+06 1.918479e+06 117352.38 NULL
2015 Fire Department Associate Investigator 51793.00000 5.179300e+04 14983.26 1.498326e+04 14983.260 316.00 1 1.498326e+04 14983.26 6.677626e+04 6.677626e+04 0.00 NULL
2015 Fire Department Associate Project Manager 78800.83333 9.456100e+05 22607.91 1.883993e+03 500.370 448.25 12 5.003700e+02 6004.44 9.682179e+05 9.516144e+05 16603.47 NULL
2015 Fire Department Associate Retirement Benefits Examiner 54323.00000 3.259380e+05 8673.96 1.445660e+03 146.085 181.25 6 1.460850e+02 876.51 3.346120e+05 3.268145e+05 7797.45 NULL
2015 Fire Department Associate Staff Analyst 73981.59190 1.553613e+06 94514.54 4.500692e+03 0.000 1642.00 21 0.000000e+00 0.00 1.648128e+06 1.553613e+06 94514.54 NULL
2015 Fire Department Attending Physician 32872.66540 2.629813e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 2.629813e+05 2.629813e+05 0.00 NULL
2015 Fire Department Attorney At Law 78563.00000 7.856300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.856300e+04 7.856300e+04 0.00 NULL
2015 Fire Department Auto Machinist NA NA 274742.42 3.434280e+04 33749.040 5046.75 8 3.374904e+04 269992.32 NA NA NA NULL
2015 Fire Department Auto Mechanic NA NA 2766770.66 2.344721e+04 21254.550 52577.00 118 2.125455e+04 2508036.90 NA NA NA NULL
2015 Fire Department Automotive Service Worker 41111.19048 8.633350e+05 169790.09 8.085242e+03 5916.910 6166.25 21 5.916910e+03 124255.11 1.033125e+06 9.875901e+05 45534.98 NULL
2015 Fire Department Battalion Chief 146955.54408 5.834135e+07 94660.16 2.384387e+02 0.000 0.00 397 0.000000e+00 0.00 5.843601e+07 5.834135e+07 94660.16 NULL
2015 Fire Department Bio-Medical Equipment Technician 47555.00000 4.755500e+04 13937.07 1.393707e+04 13937.070 416.50 1 1.393707e+04 13937.07 6.149207e+04 6.149207e+04 0.00 NULL
2015 Fire Department Blacksmith’s Helper NA NA 30662.57 3.066257e+04 30662.570 591.00 1 3.066257e+04 30662.57 NA NA NA NULL
2015 Fire Department Captain 112553.00274 8.216369e+07 19081005.79 2.613836e+04 23117.595 205952.79 730 2.311760e+04 16875844.35 1.012447e+08 9.903954e+07 2205161.44 NULL
2015 Fire Department Carpenter NA NA 325323.66 2.168824e+04 22320.160 4891.75 15 2.168824e+04 325323.66 NA NA NA NULL
2015 Fire Department Case - Management Nurse 65753.01105 1.315060e+06 15148.16 7.574080e+02 221.655 286.00 20 2.216550e+02 4433.10 1.330208e+06 1.319493e+06 10715.06 NULL
2015 Fire Department Cashier 40080.96500 8.016193e+04 5126.81 2.563405e+03 2563.405 198.25 2 2.563405e+03 5126.81 8.528874e+04 8.528874e+04 0.00 NULL
2015 Fire Department Cement Mason NA NA 39944.14 1.997207e+04 19972.070 494.00 2 1.997207e+04 39944.14 NA NA NA NULL
2015 Fire Department Certified It Administrator 90286.20000 4.514310e+05 92652.02 1.853040e+04 6044.050 1217.25 5 6.044050e+03 30220.25 5.440830e+05 4.816512e+05 62431.77 NULL
2015 Fire Department Certified It Developer 86621.50000 1.732430e+05 7144.94 3.572470e+03 3572.470 136.25 2 3.572470e+03 7144.94 1.803879e+05 1.803879e+05 0.00 NULL
2015 Fire Department Chaplain 27853.33333 2.506800e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 2.506800e+05 2.506800e+05 0.00 NULL
2015 Fire Department Chemical Engineer 81513.66667 2.445410e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.445410e+05 2.445410e+05 0.00 NULL
2015 Fire Department Chief Fire Marshal 203399.00000 2.033990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.033990e+05 2.033990e+05 0.00 NULL
2015 Fire Department Chief Of Department 205696.50000 4.113930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.113930e+05 4.113930e+05 0.00 NULL
2015 Fire Department City Laborer NA NA 190012.24 1.583435e+04 4913.130 3843.25 12 4.913130e+03 58957.56 NA NA NA NULL
2015 Fire Department City Medical Specialist 45337.49577 1.133437e+06 56494.92 2.259797e+03 0.000 819.50 25 0.000000e+00 0.00 1.189932e+06 1.133437e+06 56494.92 NULL
2015 Fire Department City Research Scientist 83555.00000 1.671100e+05 21.47 1.073500e+01 10.735 0.00 2 1.073500e+01 21.47 1.671315e+05 1.671315e+05 0.00 NULL
2015 Fire Department Civil Engineer 91783.00000 9.178300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.178300e+04 9.178300e+04 0.00 NULL
2015 Fire Department Clerical Aide 34788.00000 3.478800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.478800e+04 3.478800e+04 0.00 NULL
2015 Fire Department Clerical Associate 43491.71693 5.479956e+06 258867.49 2.054504e+03 22.560 7898.25 126 2.256000e+01 2842.56 5.738824e+06 5.482799e+06 256024.93 NULL
2015 Fire Department Commissioner 209796.50000 4.195930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.195930e+05 4.195930e+05 0.00 NULL
2015 Fire Department Communication Electrician NA NA 1725427.32 3.750929e+04 40247.090 27934.50 46 3.750929e+04 1725427.32 NA NA NA NULL
2015 Fire Department Community Associate 41742.08888 4.174209e+05 17366.60 1.736660e+03 430.295 567.50 10 4.302950e+02 4302.95 4.347875e+05 4.217238e+05 13063.65 NULL
2015 Fire Department Community Coordinator 55418.62500 1.773396e+06 118425.99 3.700812e+03 597.110 2960.00 32 5.971100e+02 19107.52 1.891822e+06 1.792504e+06 99318.47 NULL
2015 Fire Department Computer Associate 68342.13107 1.913580e+06 506750.53 1.809823e+04 5570.215 9551.00 28 5.570215e+03 155966.02 2.420330e+06 2.069546e+06 350784.51 NULL
2015 Fire Department Computer Programmer Analyst 52338.00000 5.233800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.233800e+04 5.233800e+04 0.00 NULL
2015 Fire Department Computer Service Technician 45025.00000 4.502500e+04 30967.64 3.096764e+04 30967.640 833.50 1 3.096764e+04 30967.64 7.599264e+04 7.599264e+04 0.00 NULL
2015 Fire Department Computer Specialist 90478.37271 4.342962e+06 194386.83 4.049726e+03 729.245 3176.75 48 7.292450e+02 35003.76 4.537349e+06 4.377966e+06 159383.07 NULL
2015 Fire Department Computer Systems Manager 120947.92857 1.693271e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.693271e+06 1.693271e+06 0.00 NULL
2015 Fire Department Construction Project Manager 68704.00000 6.870400e+04 9116.70 9.116700e+03 9116.700 221.75 1 9.116700e+03 9116.70 7.782070e+04 7.782070e+04 0.00 NULL
2015 Fire Department Counsel 163179.00000 1.631790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.631790e+05 1.631790e+05 0.00 NULL
2015 Fire Department Deputy Assistant Chief Of Department 201730.43750 3.227687e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 3.227687e+06 3.227687e+06 0.00 NULL
2015 Fire Department Deputy Chief 165193.35065 1.271989e+07 0.00 0.000000e+00 0.000 0.00 77 0.000000e+00 0.00 1.271989e+07 1.271989e+07 0.00 NULL
2015 Fire Department Deputy Commissioner 198712.66667 1.192276e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.192276e+06 1.192276e+06 0.00 NULL
2015 Fire Department Director 117000.00000 1.170000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.170000e+05 1.170000e+05 0.00 NULL
2015 Fire Department Electrical Engineering Intern 52000.00000 5.200000e+04 1577.53 1.577530e+03 1577.530 60.50 1 1.577530e+03 1577.53 5.357753e+04 5.357753e+04 0.00 NULL
2015 Fire Department Electrician NA NA 862362.98 5.389769e+04 57348.375 11890.50 16 5.389769e+04 862362.98 NA NA NA NULL
2015 Fire Department Emergency Medical Specialist-Emt 40018.94457 1.039692e+08 16034575.19 6.171892e+03 4163.840 487584.77 2598 4.163840e+03 10817656.32 1.200038e+08 1.147869e+08 5216918.87 NULL
2015 Fire Department Emergency Medical Specialist-Paramedic 54450.33333 5.161892e+07 9668825.22 1.019918e+04 8756.830 222456.70 948 8.756830e+03 8301474.84 6.128774e+07 5.992039e+07 1367350.38 NULL
2015 Fire Department Employee Assistance Program Specialist 47592.94655 8.566730e+05 3329.80 1.849889e+02 29.230 86.25 18 2.923000e+01 526.14 8.600028e+05 8.571992e+05 2803.66 NULL
2015 Fire Department Engineering Technician 43209.00000 4.320900e+04 1059.53 1.059530e+03 1059.530 67.28 1 1.059530e+03 1059.53 4.426853e+04 4.426853e+04 0.00 NULL
2015 Fire Department Executive Agency Counsel 135907.84615 1.766802e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.766802e+06 1.766802e+06 0.00 NULL
2015 Fire Department Executive Program Specialist 101306.00000 1.013060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.013060e+05 1.013060e+05 0.00 NULL
2015 Fire Department Fingerprint Technician Trainee 27254.00000 2.725400e+04 1844.16 1.844160e+03 1844.160 119.50 1 1.844160e+03 1844.16 2.909816e+04 2.909816e+04 0.00 NULL
2015 Fire Department Fire Alarm Dispatcher 50407.11561 8.720431e+06 2050629.64 1.185335e+04 12113.320 46873.60 173 1.185335e+04 2050629.64 1.077106e+07 1.077106e+07 0.00 NULL
2015 Fire Department Fire Marshal 85667.00000 8.138365e+06 4724027.27 4.972660e+04 45245.120 68049.62 95 4.524512e+04 4298286.40 1.286239e+07 1.243665e+07 425740.87 NULL
2015 Fire Department Fire Medical Officer 136551.14815 3.686881e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 3.686881e+06 3.686881e+06 0.00 NULL
2015 Fire Department Fire Protection Inspector 43824.25833 5.258911e+06 555598.73 4.629989e+03 2595.935 18256.37 120 2.595935e+03 311512.20 5.814510e+06 5.570423e+06 244086.53 NULL
2015 Fire Department Firefighter 70662.23071 5.650859e+08 218922123.53 2.737553e+04 28883.180 3747101.84 7997 2.737553e+04 218922123.53 7.840080e+08 7.840080e+08 0.00 NULL
2015 Fire Department First Deputy Commissioner 211243.00000 2.112430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.112430e+05 2.112430e+05 0.00 NULL
2015 Fire Department Head Nurse 74074.80000 3.703740e+05 2509.96 5.019920e+02 35.700 49.00 5 3.570000e+01 178.50 3.728840e+05 3.705525e+05 2331.46 NULL
2015 Fire Department Health Services Manager 117718.00000 1.177180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.177180e+05 1.177180e+05 0.00 NULL
2015 Fire Department Industrial Hygienist 62340.00000 6.234000e+04 9.52 9.520000e+00 9.520 0.00 1 9.520000e+00 9.52 6.234952e+04 6.234952e+04 0.00 NULL
2015 Fire Department Inspector 44470.00000 4.447000e+04 25189.91 2.518991e+04 25189.910 773.50 1 2.518991e+04 25189.91 6.965991e+04 6.965991e+04 0.00 NULL
2015 Fire Department Institutional Aide 34700.40000 3.470040e+05 25205.66 2.520566e+03 67.160 911.25 10 6.716000e+01 671.60 3.722097e+05 3.476756e+05 24534.06 NULL
2015 Fire Department Investigator 44847.83279 7.624132e+05 73454.54 4.320855e+03 1719.810 2190.27 17 1.719810e+03 29236.77 8.358677e+05 7.916499e+05 44217.77 NULL
2015 Fire Department Investigator Empl Disc 54502.44444 4.905220e+05 30972.63 3.441403e+03 184.250 536.50 9 1.842500e+02 1658.25 5.214946e+05 4.921802e+05 29314.38 NULL
2015 Fire Department Lieutenant 95560.05109 1.701925e+08 37266462.88 2.092446e+04 18253.320 466607.50 1781 1.825332e+04 32509162.92 2.074589e+08 2.027016e+08 4757299.96 NULL
2015 Fire Department Locksmith NA NA 27300.21 1.365010e+04 13650.105 787.75 2 1.365010e+04 27300.21 NA NA NA NULL
2015 Fire Department Machinist NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2015 Fire Department Maintenance Worker NA NA 29320.49 1.466025e+04 14660.245 778.75 2 1.466025e+04 29320.49 NA NA NA NULL
2015 Fire Department Manager Of Radio Repair Operations 109530.00000 2.190600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.190600e+05 2.190600e+05 0.00 NULL
2015 Fire Department Marine Engineer 87266.80952 1.832603e+06 1645802.94 7.837157e+04 76760.020 23192.61 21 7.676002e+04 1611960.42 3.478406e+06 3.444563e+06 33842.52 NULL
2015 Fire Department Marine Maintenance Mechanic 67233.00000 4.033980e+05 47617.95 7.936325e+03 10133.460 1211.25 6 7.936325e+03 47617.95 4.510160e+05 4.510160e+05 0.00 NULL
2015 Fire Department Mechanical Engineering Intern 50889.25000 2.035570e+05 22.29 5.572500e+00 2.475 0.00 4 2.475000e+00 9.90 2.035793e+05 2.035669e+05 12.39 NULL
2015 Fire Department Medical Record Librarian 58730.00000 5.873000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.873000e+04 5.873000e+04 0.00 NULL
2015 Fire Department Metal Work Mechanic 84906.00000 8.490600e+04 28271.24 2.827124e+04 28271.240 445.75 1 2.827124e+04 28271.24 1.131772e+05 1.131772e+05 0.00 NULL
2015 Fire Department Motor Vehicle Operator 43874.99394 1.184625e+06 145886.85 5.403217e+03 4903.070 4166.50 27 4.903070e+03 132382.89 1.330512e+06 1.317008e+06 13503.96 NULL
2015 Fire Department Motor Vehicle Supervisor 53614.33333 1.608430e+05 67567.43 2.252248e+04 21497.060 1430.25 3 2.149706e+04 64491.18 2.284104e+05 2.253342e+05 3076.25 NULL
2015 Fire Department Oiler NA NA 282191.16 5.643823e+04 63082.920 4218.50 5 5.643823e+04 282191.16 NA NA NA NULL
2015 Fire Department Painter NA NA 24793.13 2.479313e+04 24793.130 509.25 1 2.479313e+04 24793.13 NA NA NA NULL
2015 Fire Department Physician 75548.23917 3.021930e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.021930e+05 3.021930e+05 0.00 NULL
2015 Fire Department Physician’s Assistant 82221.00000 8.222100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.222100e+04 8.222100e+04 0.00 NULL
2015 Fire Department Pilot 90914.52941 1.545547e+06 674330.87 3.966652e+04 40827.250 8785.74 17 3.966652e+04 674330.87 2.219878e+06 2.219878e+06 0.00 NULL
2015 Fire Department Planner: Production Cntrl & Scheduling 54098.66667 1.622960e+05 47635.37 1.587846e+04 17415.520 1153.00 3 1.587846e+04 47635.37 2.099314e+05 2.099314e+05 0.00 NULL
2015 Fire Department Plasterer NA NA 23623.47 2.362347e+04 23623.470 361.50 1 2.362347e+04 23623.47 NA NA NA NULL
2015 Fire Department Plumber NA NA 470682.90 3.620638e+04 32368.080 4909.75 13 3.236808e+04 420785.04 NA NA NA NULL
2015 Fire Department Principal Administrative Associate 56515.91708 7.290553e+06 351820.17 2.727288e+03 109.140 9210.50 129 1.091400e+02 14079.06 7.642373e+06 7.304632e+06 337741.11 NULL
2015 Fire Department Procurement Analyst 53393.07643 1.548399e+06 63864.41 2.202221e+03 64.220 1890.00 29 6.422000e+01 1862.38 1.612264e+06 1.550262e+06 62002.03 NULL
2015 Fire Department Program Producer 63550.13060 1.906504e+05 5800.86 1.933620e+03 706.220 144.25 3 7.062200e+02 2118.66 1.964513e+05 1.927691e+05 3682.20 NULL
2015 Fire Department Project Manager Intern# 52033.25000 2.081330e+05 6560.42 1.640105e+03 176.100 220.25 4 1.761000e+02 704.40 2.146934e+05 2.088374e+05 5856.02 NULL
2015 Fire Department Public Records Officer 46494.00000 1.394820e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.394820e+05 1.394820e+05 0.00 NULL
2015 Fire Department Radio Repair Mechanic NA NA 586628.39 2.346514e+04 23036.880 9598.50 25 2.303688e+04 575922.00 NA NA NA NULL
2015 Fire Department Research Assistant 54295.03390 4.886553e+05 2428.30 2.698111e+02 3.690 75.75 9 3.690000e+00 33.21 4.910836e+05 4.886885e+05 2395.09 NULL
2015 Fire Department Roofer NA NA 5219.14 5.219140e+03 5219.140 96.50 1 5.219140e+03 5219.14 NA NA NA NULL
2015 Fire Department Rubber Tire Repairer NA NA 128942.90 1.611786e+04 14269.410 3758.00 8 1.426941e+04 114155.28 NA NA NA NULL
2015 Fire Department Secretary To The Deputy Commissioner 62547.00000 6.254700e+04 59.02 5.902000e+01 59.020 1.25 1 5.902000e+01 59.02 6.260602e+04 6.260602e+04 0.00 NULL
2015 Fire Department Secretary To The Fire Commissioner 112000.00000 1.120000e+05 33464.55 3.346455e+04 33464.550 504.75 1 3.346455e+04 33464.55 1.454645e+05 1.454645e+05 0.00 NULL
2015 Fire Department Senior Photographer 65178.76540 6.517877e+04 4089.91 4.089910e+03 4089.910 100.75 1 4.089910e+03 4089.91 6.926868e+04 6.926868e+04 0.00 NULL
2015 Fire Department Senior Stationary Engineer NA NA 136081.79 6.804090e+04 68040.895 1703.75 2 6.804090e+04 136081.79 NA NA NA NULL
2015 Fire Department Senior Supervisor Communication Electrician NA NA 41350.75 4.135075e+04 41350.750 583.00 1 4.135075e+04 41350.75 NA NA NA NULL
2015 Fire Department Sheet Metal Worker NA NA 106112.16 1.061122e+05 106112.160 1093.25 1 1.061122e+05 106112.16 NA NA NA NULL
2015 Fire Department Spvsg Fad-Dep Dir Dsptch Dtail 98559.00000 2.956770e+05 6667.08 2.222360e+03 0.000 81.00 3 0.000000e+00 0.00 3.023441e+05 2.956770e+05 6667.08 NULL
2015 Fire Department Spvsg Fad-Dir Dsptch Op Detail 109517.50000 2.190350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.190350e+05 2.190350e+05 0.00 NULL
2015 Fire Department Staff Analyst 60637.94408 6.670174e+05 44020.37 4.001852e+03 0.210 1110.75 11 2.100000e-01 2.31 7.110378e+05 6.670197e+05 44018.06 NULL
2015 Fire Department Staff Analyst Trainee 41739.94251 7.513190e+05 17299.31 9.610728e+02 0.000 660.00 18 0.000000e+00 0.00 7.686183e+05 7.513190e+05 17299.31 NULL
2015 Fire Department Statistician 50916.52312 2.036661e+05 1422.76 3.556900e+02 4.495 70.00 4 4.495000e+00 17.98 2.050889e+05 2.036841e+05 1404.78 NULL
2015 Fire Department Steam Fitter NA NA 33504.24 3.350424e+04 33504.240 348.50 1 3.350424e+04 33504.24 NA NA NA NULL
2015 Fire Department Stock Worker 31788.66667 9.536600e+04 37043.14 1.234771e+04 3537.660 1486.00 3 3.537660e+03 10612.98 1.324091e+05 1.059790e+05 26430.16 NULL
2015 Fire Department Summer College Intern 3084.92359 2.776431e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 2.776431e+04 2.776431e+04 0.00 NULL
2015 Fire Department Summer Graduate Intern 3642.86880 3.642869e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.642869e+03 3.642869e+03 0.00 NULL
2015 Fire Department Supervising Blasting Inspector 67393.85714 4.717570e+05 288208.05 4.117258e+04 53312.260 5644.41 7 4.117258e+04 288208.05 7.599651e+05 7.599651e+05 0.00 NULL
2015 Fire Department Supervising Communication Electrician NA NA 431687.06 5.396088e+04 63324.395 6346.00 8 5.396088e+04 431687.06 NA NA NA NULL
2015 Fire Department Supervising Computer Service Technician 62349.50000 1.246990e+05 32748.42 1.637421e+04 16374.210 733.75 2 1.637421e+04 32748.42 1.574474e+05 1.574474e+05 0.00 NULL
2015 Fire Department Supervising Emergency Medical Service Specialist 64097.23540 3.403563e+07 8571470.46 1.614213e+04 14872.250 168696.88 531 1.487225e+04 7897164.75 4.260710e+07 4.193280e+07 674305.71 NULL
2015 Fire Department Supervising Emergency Medical Service Specialist-Dpty Chiefs 95593.76316 3.632563e+06 53795.61 1.415674e+03 0.000 917.75 38 0.000000e+00 0.00 3.686359e+06 3.632563e+06 53795.61 NULL
2015 Fire Department Supervising Fire Alarm Dispatcher 67584.67568 2.500633e+06 724721.84 1.958708e+04 19523.550 12291.25 37 1.952355e+04 722371.35 3.225355e+06 3.223004e+06 2350.49 NULL
2015 Fire Department Supervising Fire Marshal 111550.26316 4.238910e+06 1723114.36 4.534511e+04 39738.420 19702.57 38 3.973842e+04 1510059.96 5.962024e+06 5.748970e+06 213054.40 NULL
2015 Fire Department Supervisor Carpenter NA NA 127016.00 6.350800e+04 63508.000 1834.00 2 6.350800e+04 127016.00 NA NA NA NULL
2015 Fire Department Supervisor Electrician NA NA 151505.02 7.575251e+04 75752.510 1917.75 2 7.575251e+04 151505.02 NA NA NA NULL
2015 Fire Department Supervisor Of Electrical Installations & Maintenance 71723.14286 5.020620e+05 89303.12 1.275759e+04 4900.100 1609.50 7 4.900100e+03 34300.70 5.913651e+05 5.363627e+05 55002.42 NULL
2015 Fire Department Supervisor Of Ironwork 105601.00000 1.056010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.056010e+05 1.056010e+05 0.00 NULL
2015 Fire Department Supervisor Of Mechanics NA NA 1365882.74 4.139039e+04 41706.380 18499.75 33 4.139039e+04 1365882.74 NA NA NA NULL
2015 Fire Department Supervisor Of Radio Repair Operations 77116.00000 7.711600e+04 726.13 7.261300e+02 726.130 0.00 1 7.261300e+02 726.13 7.784213e+04 7.784213e+04 0.00 NULL
2015 Fire Department Supervisor Of Stock Workers 48894.87500 1.173477e+06 330985.09 1.379105e+04 10834.080 8977.50 24 1.083408e+04 260017.92 1.504462e+06 1.433495e+06 70967.17 NULL
2015 Fire Department Supervisor Plumber NA NA 154606.99 5.153566e+04 46538.340 1675.75 3 4.653834e+04 139615.02 NA NA NA NULL
2015 Fire Department Telecommunication Manager 133033.00000 1.330330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.330330e+05 1.330330e+05 0.00 NULL
2015 Fire Department Telecommunications Associate 66223.11600 6.622312e+05 56545.03 5.654503e+03 2456.055 1013.75 10 2.456055e+03 24560.55 7.187762e+05 6.867917e+05 31984.48 NULL
2015 Fire Department Tests And Measurement Specialist 67315.00000 2.019450e+05 1500.59 5.001967e+02 437.470 45.00 3 4.374700e+02 1312.41 2.034456e+05 2.032574e+05 188.18 NULL
2015 Fire Department Welder NA NA 55408.11 2.770406e+04 27704.055 722.25 2 2.770406e+04 55408.11 NA NA NA NULL
2015 Fire Department Wiper 79275.00000 1.426950e+06 399978.93 2.222105e+04 22032.145 6518.01 18 2.203215e+04 396578.61 1.826929e+06 1.823529e+06 3400.32 NULL
2015 Guttman Community College Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 NA NA NA NULL
2015 Guttman Community College Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 NA NA NA NULL
2015 Guttman Community College Administrator 138000.00000 1.380000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.380000e+05 1.380000e+05 0.00 NULL
2015 Guttman Community College Assistant College Security Director 81780.00000 8.178000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.178000e+04 8.178000e+04 0.00 NULL
2015 Guttman Community College Assistant Dean 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2015 Guttman Community College Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 NA NA NA NULL
2015 Guttman Community College Assistant To Heo 50042.71429 7.005980e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 7.005980e+05 7.005980e+05 0.00 NULL
2015 Guttman Community College Associate Dean 134000.00000 1.340000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.340000e+05 1.340000e+05 0.00 NULL
2015 Guttman Community College Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 NA NA NA NULL
2015 Guttman Community College Campus Peace Officer 39377.50000 7.875500e+04 21862.27 1.093114e+04 10931.135 836.50 2 1.093114e+04 21862.27 1.006173e+05 1.006173e+05 0.00 NULL
2015 Guttman Community College Campus Public Safety Sergeant 50147.00000 1.002940e+05 37970.56 1.898528e+04 18985.280 1060.75 2 1.898528e+04 37970.56 1.382646e+05 1.382646e+05 0.00 NULL
2015 Guttman Community College Campus Security Assistant 28909.75000 1.156390e+05 29214.42 7.303605e+03 8916.295 1522.50 4 7.303605e+03 29214.42 1.448534e+05 1.448534e+05 0.00 NULL
2015 Guttman Community College Clinical Professor 81645.00000 8.164500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.164500e+04 8.164500e+04 0.00 NULL
2015 Guttman Community College College Assistant 4667.72581 5.741303e+05 0.00 0.000000e+00 0.000 0.00 123 0.000000e+00 0.00 5.741303e+05 5.741303e+05 0.00 NULL
2015 Guttman Community College College Lab Technician 48909.00000 4.890900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.890900e+04 4.890900e+04 0.00 NULL
2015 Guttman Community College College Security Specialist 56488.00000 5.648800e+04 40356.82 4.035682e+04 40356.820 1039.00 1 4.035682e+04 40356.82 9.684482e+04 9.684482e+04 0.00 NULL
2015 Guttman Community College Computer Systems Manager 101000.00000 1.010000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.010000e+05 1.010000e+05 0.00 NULL
2015 Guttman Community College Continuing Education Teacher 9890.50000 9.890500e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.890500e+03 9.890500e+03 0.00 NULL
2015 Guttman Community College Dean 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2015 Guttman Community College Higher Education Assistant 63046.57143 1.765304e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 1.765304e+06 1.765304e+06 0.00 NULL
2015 Guttman Community College Higher Education Associate 79695.83333 1.434525e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.434525e+06 1.434525e+06 0.00 NULL
2015 Guttman Community College Higher Education Officer 108918.50000 1.742696e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.742696e+06 1.742696e+06 0.00 NULL
2015 Guttman Community College Instructor NA NA 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 NA NA NA NULL
2015 Guttman Community College It Assistant 46528.00000 9.305600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.305600e+04 9.305600e+04 0.00 NULL
2015 Guttman Community College It Associate 76042.50000 1.520850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.520850e+05 1.520850e+05 0.00 NULL
2015 Guttman Community College It Senior Associate 78703.66667 2.361110e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.361110e+05 2.361110e+05 0.00 NULL
2015 Guttman Community College It Support Assistant 1141.12000 1.141120e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.141120e+03 1.141120e+03 0.00 NULL
2015 Guttman Community College Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2015 Guttman Community College Non-Teaching Adjunct I 5889.44884 1.649046e+05 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 1.649046e+05 1.649046e+05 0.00 NULL
2015 Guttman Community College Non-Teaching Adjunct Ii 6221.24350 3.110622e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.110622e+04 3.110622e+04 0.00 NULL
2015 Guttman Community College Non-Teaching Adjunct Iii 5031.16200 7.546743e+04 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 7.546743e+04 7.546743e+04 0.00 NULL
2015 Guttman Community College Non-Teaching Adjunct Iv 3192.30333 1.915382e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.915382e+04 1.915382e+04 0.00 NULL
2015 Guttman Community College Non-Teaching Adjunct V 10387.37625 8.309901e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.309901e+04 8.309901e+04 0.00 NULL
2015 Guttman Community College President 210000.00000 2.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.100000e+05 2.100000e+05 0.00 NULL
2015 Guttman Community College Professor NA NA 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 NA NA NA NULL
2015 Guttman Community College Student Aide 1775.67708 7.457844e+04 0.00 0.000000e+00 0.000 0.00 42 0.000000e+00 0.00 7.457844e+04 7.457844e+04 0.00 NULL
2015 Guttman Community College Vice President 185332.50000 3.706650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.706650e+05 3.706650e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt *Certified Wide Area Network Administrator 116163.00000 1.161630e+05 1154.32 1.154320e+03 1154.320 35.00 1 1.154320e+03 1154.32 1.173173e+05 1.173173e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Accountant 61109.50000 1.344409e+06 3854.43 1.752014e+02 0.000 99.50 22 0.000000e+00 0.00 1.348263e+06 1.344409e+06 3854.43 NULL
2015 Housing Preservation & Dvlpmnt Adm Manager-Non-Mgrl 66661.76085 3.133103e+06 19583.74 4.166753e+02 6.490 442.50 47 6.490000e+00 305.03 3.152686e+06 3.133408e+06 19278.71 NULL
2015 Housing Preservation & Dvlpmnt Administrative Accountant 92060.00000 9.206000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.206000e+04 9.206000e+04 0.00 NULL
2015 Housing Preservation & Dvlpmnt Administrative Architect 95976.50000 1.919530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.919530e+05 1.919530e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Administrative City Planner 103294.66667 9.296520e+05 -1592.78 -1.769756e+02 0.000 0.00 9 -1.769756e+02 -1592.78 9.280592e+05 9.280592e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Administrative Community Relations Specialist 104534.00000 1.045340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.045340e+05 1.045340e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Administrative Engineer 106779.00000 3.203370e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.203370e+05 3.203370e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Administrative Housing Development Specialist 101384.17553 1.926299e+06 230.35 1.212368e+01 0.000 0.00 19 0.000000e+00 0.00 1.926530e+06 1.926299e+06 230.35 NULL
2015 Housing Preservation & Dvlpmnt Administrative Inspector 93117.76923 1.210531e+06 2866.83 2.205254e+02 0.000 47.75 13 0.000000e+00 0.00 1.213398e+06 1.210531e+06 2866.83 NULL
2015 Housing Preservation & Dvlpmnt Administrative Management Auditor 101590.00000 1.015900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.015900e+05 1.015900e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Administrative Manager 142824.00000 4.284720e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.284720e+05 4.284720e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Administrative Procurement Analyst 102530.00000 3.075900e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.075900e+05 3.075900e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Administrative Project Director 112177.68000 2.804442e+06 1223.27 4.893080e+01 0.000 0.00 25 0.000000e+00 0.00 2.805665e+06 2.804442e+06 1223.27 NULL
2015 Housing Preservation & Dvlpmnt Administrative Project Manager 111048.77778 9.994390e+05 3.09 3.433333e-01 0.000 0.00 9 0.000000e+00 0.00 9.994421e+05 9.994390e+05 3.09 NULL
2015 Housing Preservation & Dvlpmnt Administrative Public Information Specialist 123254.00000 1.232540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.232540e+05 1.232540e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Administrative Real Property Manager 84096.55556 7.568690e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.568690e+05 7.568690e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Administrative Staff Analyst 89632.46296 9.680306e+06 84876.57 7.858942e+02 0.000 1455.75 108 0.000000e+00 0.00 9.765183e+06 9.680306e+06 84876.57 NULL
2015 Housing Preservation & Dvlpmnt Administrative Supervisor Of Building Maintenance 93798.00000 9.379800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.379800e+04 9.379800e+04 0.00 NULL
2015 Housing Preservation & Dvlpmnt Agency Attorney 79587.93949 4.695688e+06 10836.04 1.836617e+02 0.000 201.25 59 0.000000e+00 0.00 4.706524e+06 4.695688e+06 10836.04 NULL
2015 Housing Preservation & Dvlpmnt Agency Attorney Intern 56739.50000 2.269580e+05 7.47 1.867500e+00 0.000 0.00 4 0.000000e+00 0.00 2.269655e+05 2.269580e+05 7.47 NULL
2015 Housing Preservation & Dvlpmnt Agency Chief Contracting Officer 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Appraiser 65772.83333 3.946370e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.946370e+05 3.946370e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Architect 68705.00000 6.870500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.870500e+04 6.870500e+04 0.00 NULL
2015 Housing Preservation & Dvlpmnt Assistant Architect 62271.44444 1.120886e+06 1285.23 7.140167e+01 0.000 33.00 18 0.000000e+00 0.00 1.122171e+06 1.120886e+06 1285.23 NULL
2015 Housing Preservation & Dvlpmnt Assistant Commissioner 131528.00000 9.206960e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.206960e+05 9.206960e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Assistant Electrical Engineer 65200.00000 1.304000e+05 166.83 8.341500e+01 83.415 3.75 2 8.341500e+01 166.83 1.305668e+05 1.305668e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Assistant Mechanical Engineer 58776.25000 2.351050e+05 1075.01 2.687525e+02 2.125 24.75 4 2.125000e+00 8.50 2.361800e+05 2.351135e+05 1066.51 NULL
2015 Housing Preservation & Dvlpmnt Associate Housing Development Specialist 78771.14333 3.781015e+06 7219.46 1.504054e+02 0.000 97.00 48 0.000000e+00 0.00 3.788234e+06 3.781015e+06 7219.46 NULL
2015 Housing Preservation & Dvlpmnt Associate Inspector 65908.67925 3.493160e+06 164857.29 3.110515e+03 2426.630 3447.42 53 2.426630e+03 128611.39 3.658017e+06 3.621771e+06 36245.90 NULL
2015 Housing Preservation & Dvlpmnt Associate Investigator 60445.50000 1.208910e+05 31.84 1.592000e+01 15.920 0.00 2 1.592000e+01 31.84 1.209228e+05 1.209228e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Associate Project Manager 81588.40000 8.158840e+05 33984.20 3.398420e+03 53.525 599.75 10 5.352500e+01 535.25 8.498682e+05 8.164192e+05 33448.95 NULL
2015 Housing Preservation & Dvlpmnt Associate Quality Assurance Specialist 61223.33333 1.836700e+05 7.57 2.523333e+00 1.140 0.00 3 1.140000e+00 3.42 1.836776e+05 1.836734e+05 4.15 NULL
2015 Housing Preservation & Dvlpmnt Associate Real Property Manager 60578.73438 3.877039e+06 13949.45 2.179602e+02 0.000 299.00 64 0.000000e+00 0.00 3.890988e+06 3.877039e+06 13949.45 NULL
2015 Housing Preservation & Dvlpmnt Associate Rehabilitation Specialist 63410.00000 1.268200e+05 2191.31 1.095655e+03 1095.655 47.25 2 1.095655e+03 2191.31 1.290113e+05 1.290113e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Associate Staff Analyst 75628.75655 3.176408e+06 16902.42 4.024386e+02 0.000 405.25 42 0.000000e+00 0.00 3.193310e+06 3.176408e+06 16902.42 NULL
2015 Housing Preservation & Dvlpmnt Attorney At Law 89457.27353 1.520774e+06 4.15 2.441176e-01 0.000 0.00 17 0.000000e+00 0.00 1.520778e+06 1.520774e+06 4.15 NULL
2015 Housing Preservation & Dvlpmnt Bookkeeper 50148.30000 5.014830e+05 287.45 2.874500e+01 0.000 0.00 10 0.000000e+00 0.00 5.017705e+05 5.014830e+05 287.45 NULL
2015 Housing Preservation & Dvlpmnt Certified It Administrator 86436.50000 1.728730e+05 28.12 1.406000e+01 14.060 0.00 2 1.406000e+01 28.12 1.729011e+05 1.729011e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt City Planner 77554.06667 3.489933e+06 22665.77 5.036838e+02 0.000 489.75 45 0.000000e+00 0.00 3.512599e+06 3.489933e+06 22665.77 NULL
2015 Housing Preservation & Dvlpmnt City Planning Technician 46067.00000 9.213400e+04 62.70 3.135000e+01 31.350 0.00 2 3.135000e+01 62.70 9.219670e+04 9.219670e+04 0.00 NULL
2015 Housing Preservation & Dvlpmnt City Research Scientist 86951.66667 2.608550e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.608550e+05 2.608550e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Civil Engineer 80280.50000 1.605610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.605610e+05 1.605610e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Clerical Aide 31711.48733 9.513446e+04 311.25 1.037500e+02 14.900 0.00 3 1.490000e+01 44.70 9.544571e+04 9.517916e+04 266.55 NULL
2015 Housing Preservation & Dvlpmnt Clerical Associate 40210.67718 8.564874e+06 29895.50 1.403545e+02 0.000 991.30 213 0.000000e+00 0.00 8.594770e+06 8.564874e+06 29895.50 NULL
2015 Housing Preservation & Dvlpmnt Commissioner Of Housing Preservation & Development 209796.50000 4.195930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.195930e+05 4.195930e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Community Assistant 33452.43648 2.408575e+06 19470.42 2.704225e+02 0.000 702.75 72 0.000000e+00 0.00 2.428046e+06 2.408575e+06 19470.42 NULL
2015 Housing Preservation & Dvlpmnt Community Associate 42015.45787 1.189037e+07 44974.33 1.589199e+02 0.000 1396.75 283 0.000000e+00 0.00 1.193535e+07 1.189037e+07 44974.33 NULL
2015 Housing Preservation & Dvlpmnt Community Coordinator 59785.90541 8.848314e+06 77138.31 5.212048e+02 0.000 1808.75 148 0.000000e+00 0.00 8.925452e+06 8.848314e+06 77138.31 NULL
2015 Housing Preservation & Dvlpmnt Community Service Aide 27641.13564 3.040525e+05 3905.76 3.550691e+02 0.000 149.75 11 0.000000e+00 0.00 3.079583e+05 3.040525e+05 3905.76 NULL
2015 Housing Preservation & Dvlpmnt Computer Aide-Non-Spvr 47700.66667 1.431020e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.431020e+05 1.431020e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Computer Associate 73631.33333 1.767152e+06 29005.78 1.208574e+03 0.000 625.75 24 0.000000e+00 0.00 1.796158e+06 1.767152e+06 29005.78 NULL
2015 Housing Preservation & Dvlpmnt Computer Operations Manager 115099.16667 6.905950e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.905950e+05 6.905950e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Computer Programmer Analyst 66627.50000 1.332550e+05 15.62 7.810000e+00 7.810 0.00 2 7.810000e+00 15.62 1.332706e+05 1.332706e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Computer Specialist 93657.68000 2.341442e+06 5167.67 2.067068e+02 0.000 68.25 25 0.000000e+00 0.00 2.346610e+06 2.341442e+06 5167.67 NULL
2015 Housing Preservation & Dvlpmnt Computer Systems Manager 122271.00000 1.222710e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.222710e+06 1.222710e+06 0.00 NULL
2015 Housing Preservation & Dvlpmnt Construction Project Manager 68298.45662 1.495736e+07 425934.03 1.944904e+03 33.640 8027.98 219 3.364000e+01 7367.16 1.538330e+07 1.496473e+07 418566.87 NULL
2015 Housing Preservation & Dvlpmnt Deputy Commissioner 180653.00000 1.264571e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.264571e+06 1.264571e+06 0.00 NULL
2015 Housing Preservation & Dvlpmnt Deputy Counsel 113920.50000 2.278410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.278410e+05 2.278410e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Deputy General Counsel 141956.25000 5.678250e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.678250e+05 5.678250e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Electrical Engineer 82689.00000 8.268900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.268900e+04 8.268900e+04 0.00 NULL
2015 Housing Preservation & Dvlpmnt Electrician NA NA 38440.50 3.844050e+04 38440.500 581.50 1 3.844050e+04 38440.50 NA NA NA NULL
2015 Housing Preservation & Dvlpmnt Eligibility Specialist 38277.00000 3.827700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.827700e+04 3.827700e+04 0.00 NULL
2015 Housing Preservation & Dvlpmnt Executive Agency Counsel 128996.91667 1.547963e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.547963e+06 1.547963e+06 0.00 NULL
2015 Housing Preservation & Dvlpmnt Executive Assistant To The Deputy Commissioner 95618.00000 9.561800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.561800e+04 9.561800e+04 0.00 NULL
2015 Housing Preservation & Dvlpmnt Executive Director 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt General Counsel 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Graphic Artist 74105.00000 7.410500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.410500e+04 7.410500e+04 0.00 NULL
2015 Housing Preservation & Dvlpmnt Housing Development Specialist 68157.03371 6.065976e+06 88844.09 9.982482e+02 0.000 1648.75 89 0.000000e+00 0.00 6.154820e+06 6.065976e+06 88844.09 NULL
2015 Housing Preservation & Dvlpmnt Housing Development Specialist Trainee 46478.80000 2.323940e+05 91.01 1.820200e+01 0.000 3.25 5 0.000000e+00 0.00 2.324850e+05 2.323940e+05 91.01 NULL
2015 Housing Preservation & Dvlpmnt Industrial Hygienist 61392.00000 6.139200e+04 511.64 5.116400e+02 511.640 11.00 1 5.116400e+02 511.64 6.190364e+04 6.190364e+04 0.00 NULL
2015 Housing Preservation & Dvlpmnt Inspector 54849.34641 1.678390e+07 441738.01 1.443588e+03 352.025 11391.65 306 3.520250e+02 107719.65 1.722564e+07 1.689162e+07 334018.36 NULL
2015 Housing Preservation & Dvlpmnt Investigator 50916.66667 1.527500e+05 17.41 5.803333e+00 0.000 0.00 3 0.000000e+00 0.00 1.527674e+05 1.527500e+05 17.41 NULL
2015 Housing Preservation & Dvlpmnt Investigator Empl Disc 47523.40000 4.752340e+05 28037.30 2.803730e+03 431.540 842.50 10 4.315400e+02 4315.40 5.032713e+05 4.795494e+05 23721.90 NULL
2015 Housing Preservation & Dvlpmnt Lead Abatement Worker 43041.54545 4.734570e+05 236.25 2.147727e+01 0.000 2.75 11 0.000000e+00 0.00 4.736932e+05 4.734570e+05 236.25 NULL
2015 Housing Preservation & Dvlpmnt Legislative Assistant 93845.50000 1.876910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.876910e+05 1.876910e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Management Auditor 67927.00000 8.830510e+05 683.47 5.257462e+01 0.000 5.50 13 0.000000e+00 0.00 8.837345e+05 8.830510e+05 683.47 NULL
2015 Housing Preservation & Dvlpmnt Mechanical Engineer 68741.00000 6.874100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.874100e+04 6.874100e+04 0.00 NULL
2015 Housing Preservation & Dvlpmnt Multiple Dwelling Specialist 64111.50000 2.564460e+05 896.86 2.242150e+02 208.465 24.03 4 2.084650e+02 833.86 2.573429e+05 2.572799e+05 63.00 NULL
2015 Housing Preservation & Dvlpmnt Paralegal Aide 51797.00000 5.179700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.179700e+04 5.179700e+04 0.00 NULL
2015 Housing Preservation & Dvlpmnt Principal Administrative Associate 54689.87027 1.011763e+07 64053.81 3.462368e+02 0.000 1571.72 185 0.000000e+00 0.00 1.018168e+07 1.011763e+07 64053.81 NULL
2015 Housing Preservation & Dvlpmnt Principal Appraiser 107156.00000 1.071560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.071560e+05 1.071560e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Procurement Analyst 59080.56250 9.452890e+05 1700.88 1.063050e+02 0.000 46.25 16 0.000000e+00 0.00 9.469899e+05 9.452890e+05 1700.88 NULL
2015 Housing Preservation & Dvlpmnt Project Manager 61638.33333 1.849150e+05 399.20 1.330667e+02 0.000 9.00 3 0.000000e+00 0.00 1.853142e+05 1.849150e+05 399.20 NULL
2015 Housing Preservation & Dvlpmnt Quality Assurance Specialist 48435.07143 6.780910e+05 4714.48 3.367486e+02 1.710 127.00 14 1.710000e+00 23.94 6.828055e+05 6.781149e+05 4690.54 NULL
2015 Housing Preservation & Dvlpmnt Real Property Manager 52237.46296 2.820823e+06 9863.67 1.826606e+02 0.000 223.75 54 0.000000e+00 0.00 2.830687e+06 2.820823e+06 9863.67 NULL
2015 Housing Preservation & Dvlpmnt Repair Crew Chief 37193.85714 2.603570e+05 6609.15 9.441643e+02 404.820 277.00 7 4.048200e+02 2833.74 2.669662e+05 2.631907e+05 3775.41 NULL
2015 Housing Preservation & Dvlpmnt Repair Crew Worker 33199.00000 3.319900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.319900e+04 3.319900e+04 0.00 NULL
2015 Housing Preservation & Dvlpmnt Repair Shop Manager 69004.00000 6.900400e+04 10725.41 1.072541e+04 10725.410 231.75 1 1.072541e+04 10725.41 7.972941e+04 7.972941e+04 0.00 NULL
2015 Housing Preservation & Dvlpmnt Secretary 39895.72727 1.316559e+06 2757.82 8.357030e+01 0.000 88.25 33 0.000000e+00 0.00 1.319317e+06 1.316559e+06 2757.82 NULL
2015 Housing Preservation & Dvlpmnt Secretary Of Comm 81442.00000 8.144200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.144200e+04 8.144200e+04 0.00 NULL
2015 Housing Preservation & Dvlpmnt Senior Estimator 71966.66667 2.159000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.159000e+05 2.159000e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Senior Intergroup Relations Officer 46668.00000 4.666800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.666800e+04 4.666800e+04 0.00 NULL
2015 Housing Preservation & Dvlpmnt Senior Repair Crew Chief 57656.33333 1.729690e+05 48734.90 1.624497e+04 18649.600 1162.50 3 1.624497e+04 48734.90 2.217039e+05 2.217039e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Special Assistant To The Commissioner 135909.00000 1.359090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.359090e+05 1.359090e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Sr Community Organization Specialist- Urban Renewal 72849.00000 7.284900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.284900e+04 7.284900e+04 0.00 NULL
2015 Housing Preservation & Dvlpmnt Staff Analyst 60111.21429 8.415570e+05 0.00 0.000000e+00 0.000 6.75 14 0.000000e+00 0.00 8.415570e+05 8.415570e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Staff Analyst Trainee 45760.25000 1.830410e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.830410e+05 1.830410e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Supervising Computer Service Technician 64935.00000 6.493500e+04 718.95 7.189500e+02 718.950 7.00 1 7.189500e+02 718.95 6.565395e+04 6.565395e+04 0.00 NULL
2015 Housing Preservation & Dvlpmnt Supervising Demolition Inspector 68519.00000 2.055570e+05 21931.56 7.310520e+03 8485.300 406.25 3 7.310520e+03 21931.56 2.274886e+05 2.274886e+05 0.00 NULL
2015 Housing Preservation & Dvlpmnt Supervisor Of Electrical Installations & Maintenance 69885.41667 8.386250e+05 22473.04 1.872753e+03 3.865 455.25 12 3.865000e+00 46.38 8.610980e+05 8.386714e+05 22426.66 NULL
2015 Housing Preservation & Dvlpmnt Supervisor Of Mechanical Installations & Maintenance 70174.75000 1.122796e+06 20481.52 1.280095e+03 0.000 364.50 16 0.000000e+00 0.00 1.143278e+06 1.122796e+06 20481.52 NULL
2015 Housing Preservation & Dvlpmnt Supervisor Of Stock Workers 51633.50000 1.032670e+05 3341.28 1.670640e+03 1670.640 112.75 2 1.670640e+03 3341.28 1.066083e+05 1.066083e+05 0.00 NULL
2015 Hra/Dept Of Social Services *Certified Database Administrator 101488.00000 1.014880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.014880e+05 1.014880e+05 0.00 NULL
2015 Hra/Dept Of Social Services *Community Liaison Worker 41256.00000 4.125600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.125600e+04 4.125600e+04 0.00 NULL
2015 Hra/Dept Of Social Services *Custodial Assistant 33484.83333 2.009090e+05 10969.33 1.828222e+03 393.875 324.75 6 3.938750e+02 2363.25 2.118783e+05 2.032722e+05 8606.08 NULL
2015 Hra/Dept Of Social Services ?*Elevator Operator 36615.00000 3.661500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.661500e+04 3.661500e+04 0.00 NULL
2015 Hra/Dept Of Social Services Accountant 56630.26667 1.698908e+06 16636.11 5.545370e+02 0.000 449.00 30 0.000000e+00 0.00 1.715544e+06 1.698908e+06 16636.11 NULL
2015 Hra/Dept Of Social Services Adm Manager-Non-Mgrl 67124.37931 3.893214e+06 100731.89 1.736757e+03 1.940 2318.50 58 1.940000e+00 112.52 3.993946e+06 3.893327e+06 100619.37 NULL
2015 Hra/Dept Of Social Services Admin Contract Specialist 100509.75000 8.040780e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.040780e+05 8.040780e+05 0.00 NULL
2015 Hra/Dept Of Social Services Admin Job Opor Spec-Managerial 107438.77778 2.900847e+06 18594.50 6.886852e+02 0.000 317.25 27 0.000000e+00 0.00 2.919442e+06 2.900847e+06 18594.50 NULL
2015 Hra/Dept Of Social Services Admin Job Opportunity Spec Nm 77030.15000 7.703015e+06 559473.71 5.594737e+03 2361.235 10221.00 100 2.361235e+03 236123.50 8.262489e+06 7.939138e+06 323350.21 NULL
2015 Hra/Dept Of Social Services Administrative Accountant 91914.10000 9.191410e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 9.191410e+05 9.191410e+05 0.00 NULL
2015 Hra/Dept Of Social Services Administrative Architect 104183.00000 3.125490e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.125490e+05 3.125490e+05 0.00 NULL
2015 Hra/Dept Of Social Services Administrative City Planner 70535.00000 7.053500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.053500e+04 7.053500e+04 0.00 NULL
2015 Hra/Dept Of Social Services Administrative Community Relations Specialist 171336.00000 1.713360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.713360e+05 1.713360e+05 0.00 NULL
2015 Hra/Dept Of Social Services Administrative Construction Project Manager 106475.50000 2.129510e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.129510e+05 2.129510e+05 0.00 NULL
2015 Hra/Dept Of Social Services Administrative Director Of Social Services 90330.19403 1.210425e+07 4177.12 3.117254e+01 0.000 85.25 134 0.000000e+00 0.00 1.210842e+07 1.210425e+07 4177.12 NULL
2015 Hra/Dept Of Social Services Administrative Engineer 104880.66667 3.146420e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.146420e+05 3.146420e+05 0.00 NULL
2015 Hra/Dept Of Social Services Administrative Investigator 84654.97222 3.047579e+06 210.02 5.833889e+00 0.000 0.00 36 0.000000e+00 0.00 3.047789e+06 3.047579e+06 210.02 NULL
2015 Hra/Dept Of Social Services Administrative Management Auditor 89867.30000 8.986730e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 8.986730e+05 8.986730e+05 0.00 NULL
2015 Hra/Dept Of Social Services Administrative Manager 100294.80000 5.014740e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.014740e+05 5.014740e+05 0.00 NULL
2015 Hra/Dept Of Social Services Administrative Printing Services Manager 87617.00000 2.628510e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.628510e+05 2.628510e+05 0.00 NULL
2015 Hra/Dept Of Social Services Administrative Procurement Analyst 90783.25000 1.089399e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.089399e+06 1.089399e+06 0.00 NULL
2015 Hra/Dept Of Social Services Administrative Public Information Specialist 87360.14286 6.115210e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.115210e+05 6.115210e+05 0.00 NULL
2015 Hra/Dept Of Social Services Administrative Space Analyst 88927.50000 8.892750e+05 724.35 7.243500e+01 0.000 14.00 10 0.000000e+00 0.00 8.899993e+05 8.892750e+05 724.35 NULL
2015 Hra/Dept Of Social Services Administrative Staff Analyst 89482.24016 3.955115e+07 245203.53 5.547591e+02 0.000 4674.25 442 0.000000e+00 0.00 3.979635e+07 3.955115e+07 245203.53 NULL
2015 Hra/Dept Of Social Services Administrative Storekeeper 97002.66667 2.910080e+05 10.72 3.573333e+00 0.000 0.00 3 0.000000e+00 0.00 2.910187e+05 2.910080e+05 10.72 NULL
2015 Hra/Dept Of Social Services Administrative Supervisor Of Building Maintenance 112736.16667 6.764170e+05 6641.03 1.106838e+03 0.000 92.25 6 0.000000e+00 0.00 6.830580e+05 6.764170e+05 6641.03 NULL
2015 Hra/Dept Of Social Services Agency Attorney 74008.97087 7.622924e+06 44404.14 4.311082e+02 0.000 800.75 103 0.000000e+00 0.00 7.667328e+06 7.622924e+06 44404.14 NULL
2015 Hra/Dept Of Social Services Agency Attorney Intern 59273.00000 5.334570e+05 4005.93 4.451033e+02 0.000 111.25 9 0.000000e+00 0.00 5.374629e+05 5.334570e+05 4005.93 NULL
2015 Hra/Dept Of Social Services Agency Chief Contracting Officer 158118.00000 1.581180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.581180e+05 1.581180e+05 0.00 NULL
2015 Hra/Dept Of Social Services Architect 70713.50000 1.414270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.414270e+05 1.414270e+05 0.00 NULL
2015 Hra/Dept Of Social Services Assistant Accountant 47841.00000 4.784100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.784100e+04 4.784100e+04 0.00 NULL
2015 Hra/Dept Of Social Services Assistant Administrator Of Public Affairs 153773.00000 1.537730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.537730e+05 1.537730e+05 0.00 NULL
2015 Hra/Dept Of Social Services Assistant Architect 67363.00000 6.736300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.736300e+04 6.736300e+04 0.00 NULL
2015 Hra/Dept Of Social Services Assistant Commissioner 136358.00000 5.454320e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.454320e+05 5.454320e+05 0.00 NULL
2015 Hra/Dept Of Social Services Assistant Deputy Commissioner Ss 108883.00000 3.266490e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.266490e+05 3.266490e+05 0.00 NULL
2015 Hra/Dept Of Social Services Assistant Mechanical Engineer 63801.50000 1.276030e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.276030e+05 1.276030e+05 0.00 NULL
2015 Hra/Dept Of Social Services Assistant Printing Press Operator 53088.75000 2.123550e+05 62.30 1.557500e+01 9.315 0.00 4 9.315000e+00 37.26 2.124173e+05 2.123923e+05 25.04 NULL
2015 Hra/Dept Of Social Services Assistant Superintendent Of Welfare Shelters 59647.71429 8.350680e+05 206464.10 1.474744e+04 21698.290 4056.25 14 1.474744e+04 206464.10 1.041532e+06 1.041532e+06 0.00 NULL
2015 Hra/Dept Of Social Services Associate Commissioner For Adult Services 186577.00000 1.865770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.865770e+05 1.865770e+05 0.00 NULL
2015 Hra/Dept Of Social Services Associate Commissioner For Employment Service 145804.50000 2.916090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.916090e+05 2.916090e+05 0.00 NULL
2015 Hra/Dept Of Social Services Associate Contract Specialist 61195.11111 5.507560e+05 868.64 9.651556e+01 0.000 22.50 9 0.000000e+00 0.00 5.516246e+05 5.507560e+05 868.64 NULL
2015 Hra/Dept Of Social Services Associate Fraud Investigator 63175.06093 1.762584e+07 198032.30 7.097932e+02 17.880 4412.25 279 1.788000e+01 4988.52 1.782387e+07 1.763083e+07 193043.78 NULL
2015 Hra/Dept Of Social Services Associate Investigator 65942.00000 6.594200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.594200e+04 6.594200e+04 0.00 NULL
2015 Hra/Dept Of Social Services Associate Job Opportunity Specialist 56437.28927 5.209162e+07 4812243.97 5.213699e+03 2952.740 113042.13 923 2.952740e+03 2725379.02 5.690386e+07 5.481700e+07 2086864.95 NULL
2015 Hra/Dept Of Social Services Associate Labor Relations Analyst 80588.80000 4.029440e+05 58.97 1.179400e+01 4.940 0.00 5 4.940000e+00 24.70 4.030030e+05 4.029687e+05 34.27 NULL
2015 Hra/Dept Of Social Services Associate Project Manager 77834.33333 2.335030e+05 17507.85 5.835950e+03 0.000 252.25 3 0.000000e+00 0.00 2.510109e+05 2.335030e+05 17507.85 NULL
2015 Hra/Dept Of Social Services Associate Public Information Specialist 36743.00000 3.674300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.674300e+04 3.674300e+04 0.00 NULL
2015 Hra/Dept Of Social Services Associate Staff Analyst 68969.43096 1.648369e+07 82575.85 3.455056e+02 0.000 1778.75 239 0.000000e+00 0.00 1.656627e+07 1.648369e+07 82575.85 NULL
2015 Hra/Dept Of Social Services Attorney At Law 79789.73333 1.196846e+06 1952.64 1.301760e+02 0.000 32.00 15 0.000000e+00 0.00 1.198799e+06 1.196846e+06 1952.64 NULL
2015 Hra/Dept Of Social Services Bookbinder 33110.00000 3.311000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.311000e+04 3.311000e+04 0.00 NULL
2015 Hra/Dept Of Social Services Bookkeeper 42109.60736 6.863866e+06 364431.51 2.235776e+03 40.340 12455.50 163 4.034000e+01 6575.42 7.228298e+06 6.870441e+06 357856.09 NULL
2015 Hra/Dept Of Social Services Carpenter NA NA 42168.74 2.635546e+03 3159.525 608.00 16 2.635546e+03 42168.74 NA NA NA NULL
2015 Hra/Dept Of Social Services Caseworker 42071.78042 7.606578e+07 1270686.47 7.028133e+02 0.900 36993.98 1808 9.000000e-01 1627.20 7.733647e+07 7.606741e+07 1269059.27 NULL
2015 Hra/Dept Of Social Services Cement Mason NA NA 890.12 2.225300e+02 80.920 6.00 4 8.092000e+01 323.68 NA NA NA NULL
2015 Hra/Dept Of Social Services Certified It Administrator 93644.34375 2.996619e+06 250068.59 7.814643e+03 30.430 3383.75 32 3.043000e+01 973.76 3.246688e+06 2.997593e+06 249094.83 NULL
2015 Hra/Dept Of Social Services Certified It Developer 95933.62500 7.674690e+05 32160.41 4.020051e+03 1717.315 471.50 8 1.717315e+03 13738.52 7.996294e+05 7.812075e+05 18421.89 NULL
2015 Hra/Dept Of Social Services Certified Local Area Network Administrator 94345.57143 6.604190e+05 92939.49 1.327707e+04 13640.240 1288.75 7 1.327707e+04 92939.49 7.533585e+05 7.533585e+05 0.00 NULL
2015 Hra/Dept Of Social Services Chief Of Staff 155824.00000 1.558240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.558240e+05 1.558240e+05 0.00 NULL
2015 Hra/Dept Of Social Services City Custodial Assistant 32497.00000 1.949820e+05 2855.99 4.759983e+02 25.700 101.75 6 2.570000e+01 154.20 1.978380e+05 1.951362e+05 2701.79 NULL
2015 Hra/Dept Of Social Services City Laborer NA NA 48756.98 3.482641e+03 3332.275 900.75 14 3.332275e+03 46651.85 NA NA NA NULL
2015 Hra/Dept Of Social Services City Medical Director 186443.00000 1.864430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.864430e+05 1.864430e+05 0.00 NULL
2015 Hra/Dept Of Social Services City Planner 76877.00000 7.687700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.687700e+04 7.687700e+04 0.00 NULL
2015 Hra/Dept Of Social Services City Research Scientist 79166.72500 3.166669e+06 845.31 2.113275e+01 0.000 7.00 40 0.000000e+00 0.00 3.167514e+06 3.166669e+06 845.31 NULL
2015 Hra/Dept Of Social Services Civil Engineer 87101.00000 8.710100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.710100e+04 8.710100e+04 0.00 NULL
2015 Hra/Dept Of Social Services Clerical Aide 30058.93333 4.508840e+05 5184.46 3.456307e+02 0.000 224.75 15 0.000000e+00 0.00 4.560685e+05 4.508840e+05 5184.46 NULL
2015 Hra/Dept Of Social Services Clerical Associate 35328.04375 5.090771e+07 1203926.08 8.354796e+02 2.270 44720.30 1441 2.270000e+00 3271.07 5.211164e+07 5.091098e+07 1200655.01 NULL
2015 Hra/Dept Of Social Services Community Assistant 24236.09543 2.835623e+06 86827.96 7.421193e+02 165.900 4333.25 117 1.659000e+02 19410.30 2.922451e+06 2.855033e+06 67417.66 NULL
2015 Hra/Dept Of Social Services Community Associate 30460.75325 8.468089e+06 354655.05 1.275738e+03 765.830 14703.75 278 7.658300e+02 212900.74 8.822744e+06 8.680990e+06 141754.31 NULL
2015 Hra/Dept Of Social Services Community Coordinator 52488.95322 7.138498e+06 202126.66 1.486225e+03 24.835 5565.25 136 2.483500e+01 3377.56 7.340624e+06 7.141875e+06 198749.10 NULL
2015 Hra/Dept Of Social Services Computer Aide-Non-Spvr 42052.88889 7.569520e+05 18620.52 1.034473e+03 0.000 563.00 18 0.000000e+00 0.00 7.755725e+05 7.569520e+05 18620.52 NULL
2015 Hra/Dept Of Social Services Computer Associate 66165.50000 1.482107e+07 320564.33 1.431091e+03 1.585 6714.00 224 1.585000e+00 355.04 1.514164e+07 1.482143e+07 320209.29 NULL
2015 Hra/Dept Of Social Services Computer Operations Manager 98156.53571 6.870958e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.870958e+05 6.870958e+05 0.00 NULL
2015 Hra/Dept Of Social Services Computer Programmer Analyst 54887.14286 7.684200e+05 289.60 2.068571e+01 0.000 6.50 14 0.000000e+00 0.00 7.687096e+05 7.684200e+05 289.60 NULL
2015 Hra/Dept Of Social Services Computer Programmer Analyst Trainee 41597.00000 8.319400e+04 9288.47 4.644235e+03 4644.235 274.00 2 4.644235e+03 9288.47 9.248247e+04 9.248247e+04 0.00 NULL
2015 Hra/Dept Of Social Services Computer Service Technician 43947.16667 5.273660e+05 13807.07 1.150589e+03 0.000 434.50 12 0.000000e+00 0.00 5.411731e+05 5.273660e+05 13807.07 NULL
2015 Hra/Dept Of Social Services Computer Specialist 90413.94090 3.824510e+07 1179839.55 2.789219e+03 0.000 18174.00 423 0.000000e+00 0.00 3.942494e+07 3.824510e+07 1179839.55 NULL
2015 Hra/Dept Of Social Services Computer Systems Manager 111305.81443 1.079666e+07 8278.23 8.534258e+01 0.000 101.00 97 0.000000e+00 0.00 1.080494e+07 1.079666e+07 8278.23 NULL
2015 Hra/Dept Of Social Services Construction Project Manager 68351.00000 4.101060e+05 4400.92 7.334867e+02 222.525 85.50 6 2.225250e+02 1335.15 4.145069e+05 4.114412e+05 3065.77 NULL
2015 Hra/Dept Of Social Services Consultant 66890.18182 7.357920e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.357920e+05 7.357920e+05 0.00 NULL
2015 Hra/Dept Of Social Services Contract Specialist 48520.00000 3.881600e+05 3.53 4.412500e-01 0.000 0.00 8 0.000000e+00 0.00 3.881635e+05 3.881600e+05 3.53 NULL
2015 Hra/Dept Of Social Services Custodian 38448.25472 4.075515e+06 565424.74 5.334196e+03 5576.970 18722.25 106 5.334196e+03 565424.74 4.640940e+06 4.640940e+06 0.00 NULL
2015 Hra/Dept Of Social Services Deputy Asst Admin For Personnel Adm & Labor Rel 162400.00000 1.624000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.624000e+05 1.624000e+05 0.00 NULL
2015 Hra/Dept Of Social Services Deputy Commissioner 161770.00000 1.617700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.617700e+05 1.617700e+05 0.00 NULL
2015 Hra/Dept Of Social Services Deputy Director Of Administration 133700.06667 2.005501e+06 86.56 5.770667e+00 0.000 0.00 15 0.000000e+00 0.00 2.005588e+06 2.005501e+06 86.56 NULL
2015 Hra/Dept Of Social Services Deputy Director Of Labor Relations 104345.00000 1.043450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.043450e+05 1.043450e+05 0.00 NULL
2015 Hra/Dept Of Social Services Deputy Director Of Security 80222.66667 2.406680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.406680e+05 2.406680e+05 0.00 NULL
2015 Hra/Dept Of Social Services Dir Of Home Care Services/Family And Adult Services 139464.00000 1.394640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.394640e+05 1.394640e+05 0.00 NULL
2015 Hra/Dept Of Social Services Director Of Admin 184052.50000 3.681050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.681050e+05 3.681050e+05 0.00 NULL
2015 Hra/Dept Of Social Services Director Of Community Participation Programs 73813.00000 7.381300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.381300e+04 7.381300e+04 0.00 NULL
2015 Hra/Dept Of Social Services Director Of Compliance & Legislative Development 89471.50000 1.789430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.789430e+05 1.789430e+05 0.00 NULL
2015 Hra/Dept Of Social Services Director Of Eeo/Contract Compliance 115359.00000 1.153590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.153590e+05 1.153590e+05 0.00 NULL
2015 Hra/Dept Of Social Services Director Of Fiscal Operations 127422.00000 1.274220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.274220e+05 1.274220e+05 0.00 NULL
2015 Hra/Dept Of Social Services Director Of Food Stamp Program 148566.00000 1.485660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.485660e+05 1.485660e+05 0.00 NULL
2015 Hra/Dept Of Social Services Director Of Information Services 191445.00000 3.828900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.828900e+05 3.828900e+05 0.00 NULL
2015 Hra/Dept Of Social Services Director Of Labor Relations 145958.00000 1.459580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.459580e+05 1.459580e+05 0.00 NULL
2015 Hra/Dept Of Social Services Director Of Legislative Coordination 118200.00000 1.182000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.182000e+05 1.182000e+05 0.00 NULL
2015 Hra/Dept Of Social Services Director Of Management Planning Ss 144793.00000 2.895860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.895860e+05 2.895860e+05 0.00 NULL
2015 Hra/Dept Of Social Services Director Of Policy Analysis 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2015 Hra/Dept Of Social Services Director Of Security 89153.00000 8.915300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.915300e+04 8.915300e+04 0.00 NULL
2015 Hra/Dept Of Social Services Electrical Engineer 81848.00000 8.184800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.184800e+04 8.184800e+04 0.00 NULL
2015 Hra/Dept Of Social Services Electrician NA NA 17860.50 1.623682e+03 1617.000 237.00 11 1.617000e+03 17787.00 NA NA NA NULL
2015 Hra/Dept Of Social Services Electrician’s Helper NA NA 8047.15 1.149593e+03 863.030 172.50 7 8.630300e+02 6041.21 NA NA NA NULL
2015 Hra/Dept Of Social Services Eligibility Specialist 37911.32672 1.170702e+08 3268597.37 1.058484e+03 17.310 113795.50 3088 1.731000e+01 53453.28 1.203388e+08 1.171236e+08 3215144.09 NULL
2015 Hra/Dept Of Social Services Exec Asst To The Deputy Commissioner 93602.33333 2.808070e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.808070e+05 2.808070e+05 0.00 NULL
2015 Hra/Dept Of Social Services Executive Agency Counsel 121865.53125 3.899697e+06 1743.69 5.449031e+01 0.000 21.25 32 0.000000e+00 0.00 3.901441e+06 3.899697e+06 1743.69 NULL
2015 Hra/Dept Of Social Services Executive Asst-Domestic Violence-Hra 56026.60000 2.801330e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.801330e+05 2.801330e+05 0.00 NULL
2015 Hra/Dept Of Social Services Executive Deputy Administrator 157169.00000 1.571690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.571690e+05 1.571690e+05 0.00 NULL
2015 Hra/Dept Of Social Services First Deputy Commissioner 195100.00000 1.951000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.951000e+05 1.951000e+05 0.00 NULL
2015 Hra/Dept Of Social Services Fraud Investigator 47499.49422 3.700211e+07 361605.13 4.641914e+02 4.200 10728.75 779 4.200000e+00 3271.80 3.736371e+07 3.700538e+07 358333.33 NULL
2015 Hra/Dept Of Social Services Gardener 61262.00000 6.126200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.126200e+04 6.126200e+04 0.00 NULL
2015 Hra/Dept Of Social Services General Counsel 185694.00000 3.713880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.713880e+05 3.713880e+05 0.00 NULL
2015 Hra/Dept Of Social Services Graphic Artist 52621.00000 3.683470e+05 423.86 6.055143e+01 0.000 11.25 7 0.000000e+00 0.00 3.687709e+05 3.683470e+05 423.86 NULL
2015 Hra/Dept Of Social Services Head Nurse 73027.04545 1.606595e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 1.606595e+06 1.606595e+06 0.00 NULL
2015 Hra/Dept Of Social Services Homemaker 33029.00000 3.302900e+04 6255.54 6.255540e+03 6255.540 258.50 1 6.255540e+03 6255.54 3.928454e+04 3.928454e+04 0.00 NULL
2015 Hra/Dept Of Social Services Human Resources Administrator 214413.00000 2.144130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144130e+05 2.144130e+05 0.00 NULL
2015 Hra/Dept Of Social Services Human Resources Technician 32438.50000 6.487700e+04 2.28 1.140000e+00 1.140 0.00 2 1.140000e+00 2.28 6.487928e+04 6.487928e+04 0.00 NULL
2015 Hra/Dept Of Social Services Institutional Aide 35230.66667 1.056920e+05 14274.31 4.758103e+03 4041.720 530.00 3 4.041720e+03 12125.16 1.199663e+05 1.178172e+05 2149.15 NULL
2015 Hra/Dept Of Social Services Investigator 59093.40000 2.954670e+05 109.99 2.199800e+01 2.400 2.50 5 2.400000e+00 12.00 2.955770e+05 2.954790e+05 97.99 NULL
2015 Hra/Dept Of Social Services Job Opportunity Specialist 42057.18619 7.431505e+07 4815735.66 2.725374e+03 479.910 151396.67 1767 4.799100e+02 848000.97 7.913078e+07 7.516305e+07 3967734.69 NULL
2015 Hra/Dept Of Social Services Labor Relations Analyst 64177.00000 6.417700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.417700e+04 6.417700e+04 0.00 NULL
2015 Hra/Dept Of Social Services Locksmith NA NA 1171.33 5.856650e+02 585.665 30.00 2 5.856650e+02 1171.33 NA NA NA NULL
2015 Hra/Dept Of Social Services Maintenance Worker NA NA 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2015 Hra/Dept Of Social Services Management Auditor 61571.39474 2.339713e+06 220.35 5.798684e+00 0.000 0.00 38 0.000000e+00 0.00 2.339933e+06 2.339713e+06 220.35 NULL
2015 Hra/Dept Of Social Services Management Auditor Trainee 43059.50000 8.611900e+04 751.94 3.759700e+02 375.970 30.00 2 3.759700e+02 751.94 8.687094e+04 8.687094e+04 0.00 NULL
2015 Hra/Dept Of Social Services Mechanical Engineer 86645.20000 4.332260e+05 6582.88 1.316576e+03 0.000 77.00 5 0.000000e+00 0.00 4.398089e+05 4.332260e+05 6582.88 NULL
2015 Hra/Dept Of Social Services Medical Specialist 74440.00000 2.233200e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.233200e+05 2.233200e+05 0.00 NULL
2015 Hra/Dept Of Social Services Motor Vehicle Operator 43690.40000 2.184520e+05 17566.40 3.513280e+03 1642.960 513.75 5 1.642960e+03 8214.80 2.360184e+05 2.266668e+05 9351.60 NULL
2015 Hra/Dept Of Social Services Motor Vehicle Supervisor 53436.80000 2.671840e+05 41820.58 8.364116e+03 2637.780 936.25 5 2.637780e+03 13188.90 3.090046e+05 2.803729e+05 28631.68 NULL
2015 Hra/Dept Of Social Services Office Machine Aide 32664.04167 7.839370e+05 9934.75 4.139479e+02 0.000 395.50 24 0.000000e+00 0.00 7.938718e+05 7.839370e+05 9934.75 NULL
2015 Hra/Dept Of Social Services Oiler NA NA 18501.78 4.625445e+03 3953.520 248.25 4 3.953520e+03 15814.08 NA NA NA NULL
2015 Hra/Dept Of Social Services Painter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2015 Hra/Dept Of Social Services Paralegal Aide 41211.29167 9.890710e+05 20746.65 8.644438e+02 0.000 500.00 24 0.000000e+00 0.00 1.009818e+06 9.890710e+05 20746.65 NULL
2015 Hra/Dept Of Social Services Plumber NA NA 38873.09 3.887309e+03 3588.780 159.50 10 3.588780e+03 35887.80 NA NA NA NULL
2015 Hra/Dept Of Social Services Principal Administrative Associate 52076.20434 8.155134e+07 3005697.72 1.919347e+03 29.375 79496.50 1566 2.937500e+01 46001.25 8.455703e+07 8.159734e+07 2959696.47 NULL
2015 Hra/Dept Of Social Services Printing Press Operator NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2015 Hra/Dept Of Social Services Procurement Analyst 51193.05556 1.842950e+06 4358.03 1.210564e+02 0.000 99.50 36 0.000000e+00 0.00 1.847308e+06 1.842950e+06 4358.03 NULL
2015 Hra/Dept Of Social Services Psychiatrist 131960.85143 1.847452e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.847452e+06 1.847452e+06 0.00 NULL
2015 Hra/Dept Of Social Services Real Property Manager 59331.00000 5.933100e+04 1239.01 1.239010e+03 1239.010 43.75 1 1.239010e+03 1239.01 6.057001e+04 6.057001e+04 0.00 NULL
2015 Hra/Dept Of Social Services Research Assistant 48710.87500 3.896870e+05 317.81 3.972625e+01 0.000 8.25 8 0.000000e+00 0.00 3.900048e+05 3.896870e+05 317.81 NULL
2015 Hra/Dept Of Social Services Safety Specialist 45699.00000 4.569900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.569900e+04 4.569900e+04 0.00 NULL
2015 Hra/Dept Of Social Services Secretary 37293.65306 1.827389e+06 54436.43 1.110948e+03 10.320 1750.00 49 1.032000e+01 505.68 1.881825e+06 1.827895e+06 53930.75 NULL
2015 Hra/Dept Of Social Services Secretary To The Commissioner 85060.00000 8.506000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.506000e+04 8.506000e+04 0.00 NULL
2015 Hra/Dept Of Social Services Senior Consultant 74177.94118 1.261025e+06 17.46 1.027059e+00 0.000 0.00 17 0.000000e+00 0.00 1.261042e+06 1.261025e+06 17.46 NULL
2015 Hra/Dept Of Social Services Senior Stationary Engineer NA NA 36667.69 1.222256e+04 14256.180 434.50 3 1.222256e+04 36667.69 NA NA NA NULL
2015 Hra/Dept Of Social Services Sheet Metal Worker NA NA 13349.28 4.449760e+03 6674.640 137.00 3 4.449760e+03 13349.28 NA NA NA NULL
2015 Hra/Dept Of Social Services Social Worker 52189.29412 3.548872e+06 66197.53 9.734931e+02 0.000 1694.00 68 0.000000e+00 0.00 3.615070e+06 3.548872e+06 66197.53 NULL
2015 Hra/Dept Of Social Services Space Analyst 64082.26923 1.666139e+06 58585.91 2.253304e+03 5.450 1493.50 26 5.450000e+00 141.70 1.724725e+06 1.666281e+06 58444.21 NULL
2015 Hra/Dept Of Social Services Special Officer 39244.79747 3.100339e+06 134490.10 1.702406e+03 771.730 4820.25 79 7.717300e+02 60966.67 3.234829e+06 3.161306e+06 73523.43 NULL
2015 Hra/Dept Of Social Services Staff Analyst 58739.24845 9.457019e+06 195630.73 1.215098e+03 0.000 4828.25 161 0.000000e+00 0.00 9.652650e+06 9.457019e+06 195630.73 NULL
2015 Hra/Dept Of Social Services Staff Analyst Trainee 39920.00000 1.197600e+05 3.19 1.063333e+00 0.000 0.00 3 0.000000e+00 0.00 1.197632e+05 1.197600e+05 3.19 NULL
2015 Hra/Dept Of Social Services Staff Nurse 67196.63889 2.419079e+06 775.52 2.154222e+01 0.000 30.50 36 0.000000e+00 0.00 2.419855e+06 2.419079e+06 775.52 NULL
2015 Hra/Dept Of Social Services Stationary Engineer NA NA 29507.97 7.376993e+03 7400.060 361.75 4 7.376993e+03 29507.97 NA NA NA NULL
2015 Hra/Dept Of Social Services Stock Worker 34836.85714 2.438580e+05 19067.07 2.723867e+03 0.000 698.00 7 0.000000e+00 0.00 2.629251e+05 2.438580e+05 19067.07 NULL
2015 Hra/Dept Of Social Services Summer Graduate Intern 4234.95120 4.234951e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.234951e+03 4.234951e+03 0.00 NULL
2015 Hra/Dept Of Social Services Superintendent Of Adult Institutions 80664.00000 8.066400e+04 16932.08 1.693208e+04 16932.080 289.25 1 1.693208e+04 16932.08 9.759608e+04 9.759608e+04 0.00 NULL
2015 Hra/Dept Of Social Services Supervising Computer Service Technician 63019.98250 7.562398e+05 52487.68 4.373973e+03 21.390 1037.25 12 2.139000e+01 256.68 8.087275e+05 7.564965e+05 52231.00 NULL
2015 Hra/Dept Of Social Services Supervising Special Officer 49525.00000 2.426725e+06 128968.60 2.632012e+03 727.410 3639.50 49 7.274100e+02 35643.09 2.555694e+06 2.462368e+06 93325.51 NULL
2015 Hra/Dept Of Social Services Supervisor 68464.00000 6.846400e+04 416.45 4.164500e+02 416.450 0.00 1 4.164500e+02 416.45 6.888045e+04 6.888045e+04 0.00 NULL
2015 Hra/Dept Of Social Services Supervisor Carpenter NA NA 14514.54 4.838180e+03 3840.050 197.00 3 3.840050e+03 11520.15 NA NA NA NULL
2015 Hra/Dept Of Social Services Supervisor Electrician NA NA 27950.91 9.316970e+03 8426.830 347.75 3 8.426830e+03 25280.49 NA NA NA NULL
2015 Hra/Dept Of Social Services Supervisor I 52117.09289 2.637125e+07 499174.47 9.865108e+02 6.175 11453.00 506 6.175000e+00 3124.55 2.687042e+07 2.637437e+07 496049.92 NULL
2015 Hra/Dept Of Social Services Supervisor I Social Work 57529.15152 1.898462e+06 28637.92 8.678158e+02 0.000 581.50 33 0.000000e+00 0.00 1.927100e+06 1.898462e+06 28637.92 NULL
2015 Hra/Dept Of Social Services Supervisor Ii 61150.88000 1.223018e+07 389996.69 1.949983e+03 113.200 7975.50 200 1.132000e+02 22640.00 1.262017e+07 1.225282e+07 367356.69 NULL
2015 Hra/Dept Of Social Services Supervisor Ii Social Work 68110.18182 7.492120e+05 13540.02 1.230911e+03 0.000 252.25 11 0.000000e+00 0.00 7.627520e+05 7.492120e+05 13540.02 NULL
2015 Hra/Dept Of Social Services Supervisor Iii 67588.84507 4.798808e+06 85427.54 1.203205e+03 3.680 1690.50 71 3.680000e+00 261.28 4.884236e+06 4.799069e+06 85166.26 NULL
2015 Hra/Dept Of Social Services Supervisor Iii Social Work 73732.62500 5.898610e+05 22260.63 2.782579e+03 0.000 384.75 8 0.000000e+00 0.00 6.121216e+05 5.898610e+05 22260.63 NULL
2015 Hra/Dept Of Social Services Supervisor Of Electrical Installations & Maintenance 68741.00000 1.374820e+05 6557.22 3.278610e+03 3278.610 136.50 2 3.278610e+03 6557.22 1.440392e+05 1.440392e+05 0.00 NULL
2015 Hra/Dept Of Social Services Supervisor Of Motor Transport 63097.00000 6.309700e+04 2442.44 2.442440e+03 2442.440 52.00 1 2.442440e+03 2442.44 6.553944e+04 6.553944e+04 0.00 NULL
2015 Hra/Dept Of Social Services Supervisor Of Nurses 84763.11111 7.628680e+05 306.58 3.406444e+01 0.000 6.00 9 0.000000e+00 0.00 7.631746e+05 7.628680e+05 306.58 NULL
2015 Hra/Dept Of Social Services Supervisor Of Office Machine Operations 41207.39130 9.477700e+05 75228.48 3.270803e+03 12.670 2399.75 23 1.267000e+01 291.41 1.022998e+06 9.480614e+05 74937.07 NULL
2015 Hra/Dept Of Social Services Supervisor Of Stock Workers 48153.71429 3.370760e+05 15.88 2.268571e+00 0.000 0.00 7 0.000000e+00 0.00 3.370919e+05 3.370760e+05 15.88 NULL
2015 Hra/Dept Of Social Services Supervisor Plumber NA NA 48391.01 1.613034e+04 5217.110 450.00 3 5.217110e+03 15651.33 NA NA NA NULL
2015 Hra/Dept Of Social Services Telecommunications Associate 69330.00000 3.466500e+05 15431.10 3.086220e+03 18.970 305.50 5 1.897000e+01 94.85 3.620811e+05 3.467448e+05 15336.25 NULL
2015 Hra/Dept Of Social Services Title Examiner 40523.00000 4.052300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.052300e+04 4.052300e+04 0.00 NULL
2015 Human Rights Commission Adm Manager-Non-Mgrl 79000.00000 7.900000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.900000e+04 7.900000e+04 0.00 NULL
2015 Human Rights Commission Administrative Public Information Specialist 110080.00000 2.201600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.201600e+05 2.201600e+05 0.00 NULL
2015 Human Rights Commission Agency Attorney 64082.04348 1.473887e+06 808.16 3.513739e+01 0.000 11.00 23 0.000000e+00 0.00 1.474695e+06 1.473887e+06 808.16 NULL
2015 Human Rights Commission Associate Human Rights Specialist 67364.46154 8.757380e+05 3524.46 2.711123e+02 11.480 64.50 13 1.148000e+01 149.24 8.792625e+05 8.758872e+05 3375.22 NULL
2015 Human Rights Commission Associate Staff Analyst 80151.00000 8.015100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.015100e+04 8.015100e+04 0.00 NULL
2015 Human Rights Commission Attorney At Law 79490.00000 1.589800e+05 2.36 1.180000e+00 1.180 0.00 2 1.180000e+00 2.36 1.589824e+05 1.589824e+05 0.00 NULL
2015 Human Rights Commission Chairman Commission On Human Rights 200847.00000 4.016940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.016940e+05 4.016940e+05 0.00 NULL
2015 Human Rights Commission Clerical Associate 46245.50000 9.249100e+04 1297.99 6.489950e+02 648.995 56.00 2 6.489950e+02 1297.99 9.378899e+04 9.378899e+04 0.00 NULL
2015 Human Rights Commission College Aide 6282.50000 6.282500e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.282500e+03 6.282500e+03 0.00 NULL
2015 Human Rights Commission College Aide - Assignment Levels Ii And Iii 1541.43000 1.541430e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.541430e+03 1.541430e+03 0.00 NULL
2015 Human Rights Commission Community Associate 41744.25000 1.669770e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.669770e+05 1.669770e+05 0.00 NULL
2015 Human Rights Commission Community Coordinator 67049.00000 6.704900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.704900e+04 6.704900e+04 0.00 NULL
2015 Human Rights Commission Computer Associate 51950.00000 5.195000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.195000e+04 5.195000e+04 0.00 NULL
2015 Human Rights Commission Computer Operations Manager 110673.00000 1.106730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.106730e+05 1.106730e+05 0.00 NULL
2015 Human Rights Commission Counsel 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2015 Human Rights Commission Dep Commissioner For Community Relations 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2015 Human Rights Commission Deputy Commissioner For Law Enforcement 190565.00000 1.905650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.905650e+05 1.905650e+05 0.00 NULL
2015 Human Rights Commission Executive Director 113109.00000 1.131090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.131090e+05 1.131090e+05 0.00 NULL
2015 Human Rights Commission Graphic Artist 24389.83125 2.438983e+04 66.03 6.603000e+01 66.030 5.25 1 6.603000e+01 66.03 2.445586e+04 2.445586e+04 0.00 NULL
2015 Human Rights Commission Hearing Director 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2015 Human Rights Commission Human Rights Specialist 50479.70588 8.581550e+05 1299.07 7.641588e+01 0.000 80.25 17 0.000000e+00 0.00 8.594541e+05 8.581550e+05 1299.07 NULL
2015 Human Rights Commission Principal Administrative Associate 51092.75000 2.043710e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.043710e+05 2.043710e+05 0.00 NULL
2015 Human Rights Commission Prinicipal Human Rights Specialist 71485.25000 2.859410e+05 22.27 5.567500e+00 0.000 4.50 4 0.000000e+00 0.00 2.859633e+05 2.859410e+05 22.27 NULL
2015 Human Rights Commission Secretary 41585.00000 1.247550e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.247550e+05 1.247550e+05 0.00 NULL
2015 Human Rights Commission Supervising Human Rights Specialist 64975.00000 1.299500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.299500e+05 1.299500e+05 0.00 NULL
2015 Hunter College High School Administrator 181210.00000 1.812100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.812100e+05 1.812100e+05 0.00 NULL
2015 Hunter College High School Assistant Principal 105320.58333 1.263847e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.263847e+06 1.263847e+06 0.00 NULL
2015 Hunter College High School Assistant Teacher 21636.80000 4.327360e+05 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 4.327360e+05 4.327360e+05 0.00 NULL
2015 Hunter College High School Assistant To Heo 55734.50000 1.114690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.114690e+05 1.114690e+05 0.00 NULL
2015 Hunter College High School Coach NA NA 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 NA NA NA NULL
2015 Hunter College High School College Accountant 42147.00000 4.214700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.214700e+04 4.214700e+04 0.00 NULL
2015 Hunter College High School College Assistant 7804.60435 2.107243e+05 136.50 5.055556e+00 0.000 6.50 27 0.000000e+00 0.00 2.108608e+05 2.107243e+05 136.50 NULL
2015 Hunter College High School Computer Systems Manager 88814.00000 8.881400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.881400e+04 8.881400e+04 0.00 NULL
2015 Hunter College High School Cuny Administrator Assistant 45673.00000 1.826920e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.826920e+05 1.826920e+05 0.00 NULL
2015 Hunter College High School Cuny Custodial Assistant 29962.00000 8.988600e+04 4107.60 1.369200e+03 1804.460 206.00 3 1.369200e+03 4107.60 9.399360e+04 9.399360e+04 0.00 NULL
2015 Hunter College High School Cuny Office Assistant 32662.00000 3.266200e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 3.266200e+05 3.266200e+05 0.00 NULL
2015 Hunter College High School Education & Vocat Counselor 77645.66667 4.658740e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.658740e+05 4.658740e+05 0.00 NULL
2015 Hunter College High School Hccs Sr College Lab Tech 53856.00000 1.615680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.615680e+05 1.615680e+05 0.00 NULL
2015 Hunter College High School High School Elem Counselor 80045.00000 8.004500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.004500e+04 8.004500e+04 0.00 NULL
2015 Hunter College High School Higher Education Assistant 70520.00000 2.115600e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.115600e+05 2.115600e+05 0.00 NULL
2015 Hunter College High School Higher Education Officer 111217.50000 2.224350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.224350e+05 2.224350e+05 0.00 NULL
2015 Hunter College High School It Associate 60417.00000 6.041700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.041700e+04 6.041700e+04 0.00 NULL
2015 Hunter College High School It Senior Associate 76389.00000 1.527780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.527780e+05 1.527780e+05 0.00 NULL
2015 Hunter College High School It Support Assistant 42611.81098 1.704472e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.704472e+05 1.704472e+05 0.00 NULL
2015 Hunter College High School Oiler 96549.00000 9.654900e+04 21657.66 2.165766e+04 21657.660 272.25 1 2.165766e+04 21657.66 1.182067e+05 1.182067e+05 0.00 NULL
2015 Hunter College High School Principal 145493.00000 1.454930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.454930e+05 1.454930e+05 0.00 NULL
2015 Hunter College High School Substitute Principal 97735.00000 9.773500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.773500e+04 9.773500e+04 0.00 NULL
2015 Hunter College High School Substitute Teacher 28302.30319 2.575510e+06 0.00 0.000000e+00 0.000 0.00 91 0.000000e+00 0.00 2.575510e+06 2.575510e+06 0.00 NULL
2015 Hunter College High School Teacher NA NA 0.00 0.000000e+00 0.000 0.00 100 0.000000e+00 0.00 NA NA NA NULL
2015 Hunter College High School Teacher Of Library 68901.00000 6.890100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.890100e+04 6.890100e+04 0.00 NULL
2015 Independent Budget Office Adm Manager-Non-Mgrl 67327.00000 6.732700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.732700e+04 6.732700e+04 0.00 NULL
2015 Independent Budget Office Administrative Staff Analyst 106830.00000 3.204900e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.204900e+05 3.204900e+05 0.00 NULL
2015 Independent Budget Office Agency Chief Contracting Officer 98301.00000 9.830100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.830100e+04 9.830100e+04 0.00 NULL
2015 Independent Budget Office Assistant Budget Analyst 42001.55884 2.100078e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.100078e+05 2.100078e+05 0.00 NULL
2015 Independent Budget Office Budget Analyst 90625.54545 2.990643e+06 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 2.990643e+06 2.990643e+06 0.00 NULL
2015 Independent Budget Office Certified It Administrator 67000.00000 6.700000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.700000e+04 6.700000e+04 0.00 NULL
2015 Independent Budget Office Director Of Independent Budget Office 192900.00000 1.929000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.929000e+05 1.929000e+05 0.00 NULL
2015 Independent Budget Office Executive Agency Counsel 56482.00500 5.648200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.648200e+04 5.648200e+04 0.00 NULL
2015 Independent Budget Office Principal Administrative Associate 76441.00000 7.644100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.644100e+04 7.644100e+04 0.00 NULL
2015 Independent Budget Office Summer College Intern 1727.00000 1.727000e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.727000e+03 1.727000e+03 0.00 NULL
2015 Landmarks Preservation Comm Administrative Landmarks Preservationist 87598.47944 7.883863e+05 4.06 4.511111e-01 0.000 0.00 9 0.000000e+00 0.00 7.883904e+05 7.883863e+05 4.06 NULL
2015 Landmarks Preservation Comm Administrative Staff Analyst 77968.66667 2.339060e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.339060e+05 2.339060e+05 0.00 NULL
2015 Landmarks Preservation Comm Associate Landmarks Preservationist 74202.00000 7.420200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.420200e+04 7.420200e+04 0.00 NULL
2015 Landmarks Preservation Comm Associate Staff Analyst 77899.00000 7.789900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.789900e+04 7.789900e+04 0.00 NULL
2015 Landmarks Preservation Comm Attorney At Law 80539.00000 8.053900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.053900e+04 8.053900e+04 0.00 NULL
2015 Landmarks Preservation Comm Chair-Landmarks Preservation Commission 196522.50000 3.930450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.930450e+05 3.930450e+05 0.00 NULL
2015 Landmarks Preservation Comm Clerical Associate 45104.33333 1.353130e+05 2.63 8.766667e-01 0.000 0.00 3 0.000000e+00 0.00 1.353156e+05 1.353130e+05 2.63 NULL
2015 Landmarks Preservation Comm Community Associate 39749.80000 1.987490e+05 1.58 3.160000e-01 0.000 0.00 5 0.000000e+00 0.00 1.987506e+05 1.987490e+05 1.58 NULL
2015 Landmarks Preservation Comm Community Coordinator 55877.00000 1.117540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.117540e+05 1.117540e+05 0.00 NULL
2015 Landmarks Preservation Comm Computer Systems Manager 106575.00000 1.065750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.065750e+05 1.065750e+05 0.00 NULL
2015 Landmarks Preservation Comm Counsel 136055.00000 1.360550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.360550e+05 1.360550e+05 0.00 NULL
2015 Landmarks Preservation Comm Director Urban Archaeology - Lpc 77809.00000 7.780900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.780900e+04 7.780900e+04 0.00 NULL
2015 Landmarks Preservation Comm Executive Director 132046.50000 2.640930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.640930e+05 2.640930e+05 0.00 NULL
2015 Landmarks Preservation Comm Landmarks Preservationist 51716.36414 2.792684e+06 910.10 1.685370e+01 0.000 21.75 54 0.000000e+00 0.00 2.793594e+06 2.792684e+06 910.10 NULL
2015 Landmarks Preservation Comm Legal Secretarial Assistant 42953.00000 4.295300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.295300e+04 4.295300e+04 0.00 NULL
2015 Landmarks Preservation Comm Motor Vehicle Operator 35236.00000 3.523600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.523600e+04 3.523600e+04 0.00 NULL
2015 Landmarks Preservation Comm Principal Administrative Associate 57837.00000 5.783700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.783700e+04 5.783700e+04 0.00 NULL
2015 Landmarks Preservation Comm Public Relations Adviser 64974.00000 1.299480e+05 0.86 4.300000e-01 0.430 0.00 2 4.300000e-01 0.86 1.299489e+05 1.299489e+05 0.00 NULL
2015 Landmarks Preservation Comm Secretary To The Chair, Landmarks Preservation Commission 75837.00000 7.583700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.583700e+04 7.583700e+04 0.00 NULL
2015 Landmarks Preservation Comm Staff Analyst 53446.00000 5.344600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.344600e+04 5.344600e+04 0.00 NULL
2015 Landmarks Preservation Comm Summer Graduate Intern 1429.87680 1.429877e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.429877e+03 1.429877e+03 0.00 NULL
2015 Landmarks Preservation Comm Urban Archeologist 35454.57430 7.090915e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.090915e+04 7.090915e+04 0.00 NULL
2015 Law Department *Certified Applications Developer 99012.00000 9.901200e+04 1754.21 1.754210e+03 1754.210 37.50 1 1.754210e+03 1754.21 1.007662e+05 1.007662e+05 0.00 NULL
2015 Law Department Accountant 76217.00000 7.621700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.621700e+04 7.621700e+04 0.00 NULL
2015 Law Department Administrative Accountant 106821.25000 4.272850e+05 58.82 1.470500e+01 0.000 0.00 4 0.000000e+00 0.00 4.273438e+05 4.272850e+05 58.82 NULL
2015 Law Department Administrative Public Information Specialist 113924.33333 3.417730e+05 41.05 1.368333e+01 0.000 0.00 3 0.000000e+00 0.00 3.418140e+05 3.417730e+05 41.05 NULL
2015 Law Department Administrative Staff Analyst 104089.75000 4.163590e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.163590e+05 4.163590e+05 0.00 NULL
2015 Law Department Administrative Supervisor Of Building Maintenance 100000.00000 1.000000e+05 15949.29 1.594929e+04 15949.290 285.75 1 1.594929e+04 15949.29 1.159493e+05 1.159493e+05 0.00 NULL
2015 Law Department Assistant Corporation Counsel 95902.36587 8.353096e+07 0.00 0.000000e+00 0.000 0.00 871 0.000000e+00 0.00 8.353096e+07 8.353096e+07 0.00 NULL
2015 Law Department Associate Public Information Specialist 45337.50000 9.067500e+04 62.50 3.125000e+01 31.250 2.50 2 3.125000e+01 62.50 9.073750e+04 9.073750e+04 0.00 NULL
2015 Law Department Associate Quality Assurance Specialist 67017.00000 4.691190e+05 59788.52 8.541217e+03 2945.900 1371.00 7 2.945900e+03 20621.30 5.289075e+05 4.897403e+05 39167.22 NULL
2015 Law Department Associate Staff Analyst 73400.04388 8.808005e+05 21295.25 1.774604e+03 0.000 419.75 12 0.000000e+00 0.00 9.020958e+05 8.808005e+05 21295.25 NULL
2015 Law Department Attorney At Law 81668.00000 3.266720e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.266720e+05 3.266720e+05 0.00 NULL
2015 Law Department Bookkeeper 44431.00000 4.887410e+05 3953.65 3.594227e+02 0.000 163.75 11 0.000000e+00 0.00 4.926947e+05 4.887410e+05 3953.65 NULL
2015 Law Department Certified It Administrator 87407.50000 1.748150e+05 0.00 0.000000e+00 0.000 4.00 2 0.000000e+00 0.00 1.748150e+05 1.748150e+05 0.00 NULL
2015 Law Department City Assessor 78957.25000 3.158290e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.158290e+05 3.158290e+05 0.00 NULL
2015 Law Department City Custodial Assistant 37718.33333 1.131550e+05 31434.67 1.047822e+04 6482.450 983.50 3 6.482450e+03 19447.35 1.445897e+05 1.326024e+05 11987.32 NULL
2015 Law Department Claim Specialist 42535.94855 4.125987e+06 79895.97 8.236698e+02 0.000 2105.50 97 0.000000e+00 0.00 4.205883e+06 4.125987e+06 79895.97 NULL
2015 Law Department Clerical Associate 28689.25803 7.688721e+06 277154.17 1.034157e+03 0.000 9771.75 268 0.000000e+00 0.00 7.965875e+06 7.688721e+06 277154.17 NULL
2015 Law Department College Aide 3419.54497 5.471272e+04 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 5.471272e+04 5.471272e+04 0.00 NULL
2015 Law Department College Aide - Assignment Levels Ii And Iii 5206.24125 2.082497e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.082497e+04 2.082497e+04 0.00 NULL
2015 Law Department Community Associate 45000.00000 4.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.500000e+04 4.500000e+04 0.00 NULL
2015 Law Department Community Coordinator 37024.50000 7.404900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.404900e+04 7.404900e+04 0.00 NULL
2015 Law Department Computer Aide-Non-Spvr 26979.27279 2.697927e+05 17099.91 1.709991e+03 1.075 569.50 10 1.075000e+00 10.75 2.868926e+05 2.698035e+05 17089.16 NULL
2015 Law Department Computer Associate 68008.00391 9.521121e+05 5766.66 4.119043e+02 3.155 132.00 14 3.155000e+00 44.17 9.578787e+05 9.521562e+05 5722.49 NULL
2015 Law Department Computer Operations Manager 101797.00000 1.017970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.017970e+05 1.017970e+05 0.00 NULL
2015 Law Department Computer Service Technician 35121.60437 2.458512e+05 30220.75 4.317250e+03 4124.350 836.50 7 4.124350e+03 28870.45 2.760720e+05 2.747217e+05 1350.30 NULL
2015 Law Department Computer Specialist 92984.50000 5.579070e+05 103.62 1.727000e+01 0.000 1.00 6 0.000000e+00 0.00 5.580106e+05 5.579070e+05 103.62 NULL
2015 Law Department Computer Systems Manager 141342.00000 8.480520e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.480520e+05 8.480520e+05 0.00 NULL
2015 Law Department Corporation Counsel 214413.00000 2.144130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144130e+05 2.144130e+05 0.00 NULL
2015 Law Department Custodian 47997.08780 2.399854e+05 79841.29 1.596826e+04 17561.220 1992.75 5 1.596826e+04 79841.29 3.198267e+05 3.198267e+05 0.00 NULL
2015 Law Department Department Librarian 38712.37500 3.871238e+04 26.47 2.647000e+01 26.470 5.00 1 2.647000e+01 26.47 3.873885e+04 3.873885e+04 0.00 NULL
2015 Law Department Deputy Director Of Admin Worker’s Comp Benefits 83990.00000 1.679800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.679800e+05 1.679800e+05 0.00 NULL
2015 Law Department Deputy Director Of Administration 166779.00000 1.667790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.667790e+05 1.667790e+05 0.00 NULL
2015 Law Department Deputy Operation Support Manager 122627.00000 2.452540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.452540e+05 2.452540e+05 0.00 NULL
2015 Law Department Dir Of Administration, Worker’s Comp Benefits 110719.00000 1.107190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.107190e+05 1.107190e+05 0.00 NULL
2015 Law Department Director Of Administration 174426.00000 1.744260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.744260e+05 1.744260e+05 0.00 NULL
2015 Law Department Field Investigation Specialist 51295.00000 5.129500e+04 62.92 6.292000e+01 62.920 0.00 1 6.292000e+01 62.92 5.135792e+04 5.135792e+04 0.00 NULL
2015 Law Department First Assistant Corporation Counsel 214501.00000 2.145010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.145010e+05 2.145010e+05 0.00 NULL
2015 Law Department Graphic Artist 23386.18150 2.338618e+04 184.70 1.847000e+02 184.700 7.25 1 1.847000e+02 184.70 2.357088e+04 2.357088e+04 0.00 NULL
2015 Law Department Legal Secretarial Assistant 47181.04913 2.170328e+06 95656.03 2.079479e+03 8.445 2876.00 46 8.445000e+00 388.47 2.265984e+06 2.170717e+06 95267.56 NULL
2015 Law Department Management Auditor 56982.00000 5.698200e+04 4750.95 4.750950e+03 4750.950 108.00 1 4.750950e+03 4750.95 6.173295e+04 6.173295e+04 0.00 NULL
2015 Law Department Medicolegal Analyst 66418.50000 1.328370e+05 18232.40 9.116200e+03 9116.200 410.00 2 9.116200e+03 18232.40 1.510694e+05 1.510694e+05 0.00 NULL
2015 Law Department Motor Vehicle Operator 29847.86149 2.686308e+05 45155.67 5.017297e+03 2358.960 1415.00 9 2.358960e+03 21230.64 3.137864e+05 2.898614e+05 23925.03 NULL
2015 Law Department Office Machine Aide 37174.00000 3.717400e+04 5.12 5.120000e+00 5.120 0.00 1 5.120000e+00 5.12 3.717912e+04 3.717912e+04 0.00 NULL
2015 Law Department Paralegal Aide 42409.77593 1.212920e+07 253774.81 8.873245e+02 7.275 8019.75 286 7.275000e+00 2080.65 1.238297e+07 1.213128e+07 251694.16 NULL
2015 Law Department Principal Administrative Associate 49600.62738 1.041613e+06 76457.38 3.640828e+03 13.970 1830.00 21 1.397000e+01 293.37 1.118071e+06 1.041907e+06 76164.01 NULL
2015 Law Department Principal Title Examiner 61650.00000 3.082500e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.082500e+05 3.082500e+05 0.00 NULL
2015 Law Department Procurement Analyst 63459.50000 1.269190e+05 9.97 4.985000e+00 4.985 0.00 2 4.985000e+00 9.97 1.269290e+05 1.269290e+05 0.00 NULL
2015 Law Department Public Records Aide 35683.91318 3.925230e+05 40282.72 3.662065e+03 331.900 1460.50 11 3.319000e+02 3650.90 4.328058e+05 3.961739e+05 36631.82 NULL
2015 Law Department Research Assistant 51291.00000 5.129100e+04 254.48 2.544800e+02 254.480 0.00 1 2.544800e+02 254.48 5.154548e+04 5.154548e+04 0.00 NULL
2015 Law Department Secretary 40266.42857 2.818650e+05 140.79 2.011286e+01 0.420 0.00 7 4.200000e-01 2.94 2.820058e+05 2.818679e+05 137.85 NULL
2015 Law Department Secretary To The Corporation Counsel 89621.00000 8.962100e+04 1.17 1.170000e+00 1.170 0.00 1 1.170000e+00 1.17 8.962217e+04 8.962217e+04 0.00 NULL
2015 Law Department Secretary To The First Assistant Corporation Counsel 67256.00000 6.725600e+04 1.42 1.420000e+00 1.420 3.00 1 1.420000e+00 1.42 6.725742e+04 6.725742e+04 0.00 NULL
2015 Law Department Senior Student Legal Specialist 47321.80000 2.366090e+05 128.32 2.566400e+01 0.000 9.00 5 0.000000e+00 0.00 2.367373e+05 2.366090e+05 128.32 NULL
2015 Law Department Senior Title Examiner 49563.00000 4.956300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.956300e+04 4.956300e+04 0.00 NULL
2015 Law Department Staff Analyst 58122.70778 5.231044e+05 3388.48 3.764978e+02 31.270 98.50 9 3.127000e+01 281.43 5.264928e+05 5.233858e+05 3107.05 NULL
2015 Law Department Stenographer To The Corporation Counsel 63263.00000 6.326300e+04 3.00 3.000000e+00 3.000 0.00 1 3.000000e+00 3.00 6.326600e+04 6.326600e+04 0.00 NULL
2015 Law Department Student Legal Specialist 31724.54750 1.268982e+05 42.60 1.065000e+01 0.000 2.00 4 0.000000e+00 0.00 1.269408e+05 1.268982e+05 42.60 NULL
2015 Law Department Summer Graduate Intern 2139.24197 1.839748e+05 0.00 0.000000e+00 0.000 0.00 86 0.000000e+00 0.00 1.839748e+05 1.839748e+05 0.00 NULL
2015 Law Department Supervising Computer Service Technician 70655.50000 5.652440e+05 98357.37 1.229467e+04 11320.575 1767.25 8 1.132058e+04 90564.60 6.636014e+05 6.558086e+05 7792.77 NULL
2015 Law Department Supervisor Of Office Machine Operations 42988.40000 2.149420e+05 16927.33 3.385466e+03 4.920 428.50 5 4.920000e+00 24.60 2.318693e+05 2.149666e+05 16902.73 NULL
2015 Law Department Worker’s Compensation Benefits Examiner 40139.69063 3.813271e+06 112622.98 1.185505e+03 1.740 3755.50 95 1.740000e+00 165.30 3.925894e+06 3.813436e+06 112457.68 NULL
2015 Manhattan Community Board #1 Administrative Staff Analyst 37010.02000 3.701002e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.701002e+04 3.701002e+04 0.00 NULL
2015 Manhattan Community Board #1 Community Assistant 33936.00000 3.393600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.393600e+04 3.393600e+04 0.00 NULL
2015 Manhattan Community Board #1 Community Associate 33496.00000 1.004880e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.004880e+05 1.004880e+05 0.00 NULL
2015 Manhattan Community Board #1 Community Coordinator 58865.00000 5.886500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.886500e+04 5.886500e+04 0.00 NULL
2015 Manhattan Community Board #1 District Manager 84832.00000 8.483200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.483200e+04 8.483200e+04 0.00 NULL
2015 Manhattan Community Board #10 Assistant District Manager 45675.00000 4.567500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.567500e+04 4.567500e+04 0.00 NULL
2015 Manhattan Community Board #10 Community Assistant 31465.00000 3.146500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.146500e+04 3.146500e+04 0.00 NULL
2015 Manhattan Community Board #10 Community Associate 33932.00000 3.393200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.393200e+04 3.393200e+04 0.00 NULL
2015 Manhattan Community Board #10 District Manager 76633.00000 7.663300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.663300e+04 7.663300e+04 0.00 NULL
2015 Manhattan Community Board #11 Assistant District Manager 49000.00000 4.900000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.900000e+04 4.900000e+04 0.00 NULL
2015 Manhattan Community Board #11 Community Associate 43263.00000 4.326300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.326300e+04 4.326300e+04 0.00 NULL
2015 Manhattan Community Board #11 District Manager 78953.00000 1.579060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.579060e+05 1.579060e+05 0.00 NULL
2015 Manhattan Community Board #12 City Seasonal Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2015 Manhattan Community Board #12 Community Assistant 36079.00000 3.607900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.607900e+04 3.607900e+04 0.00 NULL
2015 Manhattan Community Board #12 Community Coordinator 58218.00000 5.821800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.821800e+04 5.821800e+04 0.00 NULL
2015 Manhattan Community Board #12 District Manager 83359.00000 8.335900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.335900e+04 8.335900e+04 0.00 NULL
2015 Manhattan Community Board #2 Community Assistant 33530.50000 6.706100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.706100e+04 6.706100e+04 0.00 NULL
2015 Manhattan Community Board #2 Community Associate 39012.00000 3.901200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.901200e+04 3.901200e+04 0.00 NULL
2015 Manhattan Community Board #2 Community Coordinator 54858.00000 5.485800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.485800e+04 5.485800e+04 0.00 NULL
2015 Manhattan Community Board #2 District Manager 78381.00000 7.838100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.838100e+04 7.838100e+04 0.00 NULL
2015 Manhattan Community Board #3 Assistant District Manager 48130.00000 4.813000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.813000e+04 4.813000e+04 0.00 NULL
2015 Manhattan Community Board #3 Community Associate 39566.50000 7.913300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.913300e+04 7.913300e+04 0.00 NULL
2015 Manhattan Community Board #3 District Manager 76077.00000 7.607700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.607700e+04 7.607700e+04 0.00 NULL
2015 Manhattan Community Board #4 Community Associate 40000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2015 Manhattan Community Board #4 Community Coordinator 59880.00000 5.988000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.988000e+04 5.988000e+04 0.00 NULL
2015 Manhattan Community Board #4 District Manager 87726.13000 1.754523e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.754523e+05 1.754523e+05 0.00 NULL
2015 Manhattan Community Board #5 Assistant District Manager 55921.00000 5.592100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.592100e+04 5.592100e+04 0.00 NULL
2015 Manhattan Community Board #5 Community Associate 40051.00000 1.201530e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.201530e+05 1.201530e+05 0.00 NULL
2015 Manhattan Community Board #5 District Manager 94118.00000 9.411800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.411800e+04 9.411800e+04 0.00 NULL
2015 Manhattan Community Board #6 Community Assistant 33613.00000 3.361300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.361300e+04 3.361300e+04 0.00 NULL
2015 Manhattan Community Board #6 Community Associate 43612.00000 1.308360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.308360e+05 1.308360e+05 0.00 NULL
2015 Manhattan Community Board #6 District Manager 84575.00000 8.457500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.457500e+04 8.457500e+04 0.00 NULL
2015 Manhattan Community Board #7 Adm Manager-Non-Mgrl 66115.76000 6.611576e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.611576e+04 6.611576e+04 0.00 NULL
2015 Manhattan Community Board #7 Community Associate 34796.00000 3.479600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.479600e+04 3.479600e+04 0.00 NULL
2015 Manhattan Community Board #7 District Manager 91215.00000 9.121500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.121500e+04 9.121500e+04 0.00 NULL
2015 Manhattan Community Board #8 Community Assistant 32976.00000 6.595200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.595200e+04 6.595200e+04 0.00 NULL
2015 Manhattan Community Board #8 Community Associate 39199.00000 7.839800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.839800e+04 7.839800e+04 0.00 NULL
2015 Manhattan Community Board #8 District Manager 73782.00000 7.378200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.378200e+04 7.378200e+04 0.00 NULL
2015 Manhattan Community Board #9 Community Assistant 33779.64000 6.755928e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.755928e+04 6.755928e+04 0.00 NULL
2015 Manhattan Community Board #9 District Manager 84309.00000 8.430900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.430900e+04 8.430900e+04 0.00 NULL
2015 Municipal Water Fin Authority Budget Analyst 92078.53333 1.381178e+06 6641.39 4.427593e+02 0.000 168.25 15 0.000000e+00 0.00 1.387819e+06 1.381178e+06 6641.39 NULL
2015 Municipal Water Fin Authority Statistical Secretary 59672.00000 5.967200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.967200e+04 5.967200e+04 0.00 NULL
2015 Nyc Employees Retirement Sys Accountant 61154.28571 8.561600e+05 62684.74 4.477481e+03 3737.315 1328.25 14 3.737315e+03 52322.41 9.188447e+05 9.084824e+05 10362.33 NULL
2015 Nyc Employees Retirement Sys Actuarial Specialist Level I 61300.00000 1.226000e+05 53.45 2.672500e+01 26.725 1.50 2 2.672500e+01 53.45 1.226534e+05 1.226534e+05 0.00 NULL
2015 Nyc Employees Retirement Sys Administrative Accountant 124792.00000 1.247920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.247920e+05 1.247920e+05 0.00 NULL
2015 Nyc Employees Retirement Sys Administrative Graphic Artist 89921.00000 8.992100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.992100e+04 8.992100e+04 0.00 NULL
2015 Nyc Employees Retirement Sys Administrative Labor Relations Analyst 116725.00000 1.167250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.167250e+05 1.167250e+05 0.00 NULL
2015 Nyc Employees Retirement Sys Administrative Management Auditor 120928.00000 1.209280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.209280e+05 1.209280e+05 0.00 NULL
2015 Nyc Employees Retirement Sys Administrative Procurement Analyst 135727.00000 1.357270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.357270e+05 1.357270e+05 0.00 NULL
2015 Nyc Employees Retirement Sys Administrative Public Information Specialist 121589.66667 3.647690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.647690e+05 3.647690e+05 0.00 NULL
2015 Nyc Employees Retirement Sys Administrative Retirement Benefits Specialist 102488.20833 2.459717e+06 8689.80 3.620750e+02 0.000 151.00 24 0.000000e+00 0.00 2.468407e+06 2.459717e+06 8689.80 NULL
2015 Nyc Employees Retirement Sys Administrative Staff Analyst 136746.00000 4.102380e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.102380e+05 4.102380e+05 0.00 NULL
2015 Nyc Employees Retirement Sys Administrative Supervisor Of Building Maintenance 102504.00000 1.025040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.025040e+05 1.025040e+05 0.00 NULL
2015 Nyc Employees Retirement Sys Agency Attorney 77775.00000 2.333250e+05 997.96 3.326533e+02 230.850 25.50 3 2.308500e+02 692.55 2.343230e+05 2.340175e+05 305.41 NULL
2015 Nyc Employees Retirement Sys Assistant Retirement Benefits Examiner 42705.58696 3.928914e+06 190866.69 2.074638e+03 59.275 5690.75 92 5.927500e+01 5453.30 4.119781e+06 3.934367e+06 185413.39 NULL
2015 Nyc Employees Retirement Sys Associate Public Information Specialist 55013.00000 5.501300e+04 2656.73 2.656730e+03 2656.730 2.75 1 2.656730e+03 2656.73 5.766973e+04 5.766973e+04 0.00 NULL
2015 Nyc Employees Retirement Sys Associate Retirement Benefits Examiner 54189.99265 7.369839e+06 850593.02 6.254360e+03 2525.535 20620.50 136 2.525535e+03 343472.76 8.220432e+06 7.713312e+06 507120.26 NULL
2015 Nyc Employees Retirement Sys Associate Staff Analyst 87554.50000 3.502180e+05 3996.58 9.991450e+02 0.000 91.50 4 0.000000e+00 0.00 3.542146e+05 3.502180e+05 3996.58 NULL
2015 Nyc Employees Retirement Sys Bookkeeper 49224.33333 1.476730e+05 4027.73 1.342577e+03 12.170 173.50 3 1.217000e+01 36.51 1.517007e+05 1.477095e+05 3991.22 NULL
2015 Nyc Employees Retirement Sys Certified It Administrator 88075.73333 1.321136e+06 32373.41 2.158227e+03 857.470 551.00 15 8.574700e+02 12862.05 1.353509e+06 1.333998e+06 19511.36 NULL
2015 Nyc Employees Retirement Sys Certified It Developer 90155.00000 2.704650e+05 5299.23 1.766410e+03 1874.390 82.00 3 1.766410e+03 5299.23 2.757642e+05 2.757642e+05 0.00 NULL
2015 Nyc Employees Retirement Sys Clerical Aide 30887.33333 9.266200e+04 7075.94 2.358647e+03 88.170 365.00 3 8.817000e+01 264.51 9.973794e+04 9.292651e+04 6811.43 NULL
2015 Nyc Employees Retirement Sys Clerical Associate 37552.36207 2.178037e+06 157576.37 2.716834e+03 162.050 5466.75 58 1.620500e+02 9398.90 2.335613e+06 2.187436e+06 148177.47 NULL
2015 Nyc Employees Retirement Sys Community Assistant 34778.20000 1.738910e+05 15494.09 3.098818e+03 2602.280 778.50 5 2.602280e+03 13011.40 1.893851e+05 1.869024e+05 2482.69 NULL
2015 Nyc Employees Retirement Sys Computer Aide-Non-Spvr 46785.00000 4.678500e+04 0.49 4.900000e-01 0.490 0.00 1 4.900000e-01 0.49 4.678549e+04 4.678549e+04 0.00 NULL
2015 Nyc Employees Retirement Sys Computer Associate 75809.76471 1.288766e+06 23463.89 1.380229e+03 86.280 489.25 17 8.628000e+01 1466.76 1.312230e+06 1.290233e+06 21997.13 NULL
2015 Nyc Employees Retirement Sys Computer Programmer Analyst 62122.00000 6.212200e+04 3.46 3.460000e+00 3.460 0.00 1 3.460000e+00 3.46 6.212546e+04 6.212546e+04 0.00 NULL
2015 Nyc Employees Retirement Sys Computer Service Technician 47679.50000 9.535900e+04 3394.53 1.697265e+03 1697.265 119.25 2 1.697265e+03 3394.53 9.875353e+04 9.875353e+04 0.00 NULL
2015 Nyc Employees Retirement Sys Computer Specialist 93370.26316 1.774035e+06 16770.79 8.826732e+02 3.440 311.00 19 3.440000e+00 65.36 1.790806e+06 1.774100e+06 16705.43 NULL
2015 Nyc Employees Retirement Sys Computer Systems Manager 135018.38462 1.755239e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.755239e+06 1.755239e+06 0.00 NULL
2015 Nyc Employees Retirement Sys Confidential Strategy Planner 124329.00000 1.243290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.243290e+05 1.243290e+05 0.00 NULL
2015 Nyc Employees Retirement Sys Customer Information Representative 24129.35806 6.273633e+05 26708.26 1.027241e+03 95.825 1504.50 26 9.582500e+01 2491.45 6.540716e+05 6.298548e+05 24216.81 NULL
2015 Nyc Employees Retirement Sys Deputy Director 174257.00000 1.742570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.742570e+05 1.742570e+05 0.00 NULL
2015 Nyc Employees Retirement Sys Deputy Executive Director 186312.00000 1.863120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.863120e+05 1.863120e+05 0.00 NULL
2015 Nyc Employees Retirement Sys Executive Agency Counsel 129783.00000 3.893490e+05 2546.49 8.488300e+02 12.870 33.00 3 1.287000e+01 38.61 3.918955e+05 3.893876e+05 2507.88 NULL
2015 Nyc Employees Retirement Sys Executive Director 214411.00000 2.144110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144110e+05 2.144110e+05 0.00 NULL
2015 Nyc Employees Retirement Sys Management Auditor 57376.00000 3.442560e+05 13.86 2.310000e+00 0.000 0.00 6 0.000000e+00 0.00 3.442699e+05 3.442560e+05 13.86 NULL
2015 Nyc Employees Retirement Sys Office Machine Aide 9114.58185 5.104166e+05 30925.92 5.522486e+02 37.220 2098.50 56 3.722000e+01 2084.32 5.413425e+05 5.125009e+05 28841.60 NULL
2015 Nyc Employees Retirement Sys Principal Administrative Associate 60499.62500 1.451991e+06 76849.33 3.202055e+03 368.045 1749.00 24 3.680450e+02 8833.08 1.528840e+06 1.460824e+06 68016.25 NULL
2015 Nyc Employees Retirement Sys Secretary 40225.00000 4.022500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.022500e+04 4.022500e+04 0.00 NULL
2015 Nyc Employees Retirement Sys Secretary To The Executive Director Of Retirement System 82100.00000 8.210000e+04 0.00 0.000000e+00 0.000 1.25 1 0.000000e+00 0.00 8.210000e+04 8.210000e+04 0.00 NULL
2015 Nyc Employees Retirement Sys Supervising Computer Service Technician 65994.00000 1.979820e+05 6765.63 2.255210e+03 1977.300 158.00 3 1.977300e+03 5931.90 2.047476e+05 2.039139e+05 833.73 NULL
2015 Nyc Employees Retirement Sys Telecommunications Associate 73841.50000 1.476830e+05 2880.36 1.440180e+03 1440.180 44.50 2 1.440180e+03 2880.36 1.505634e+05 1.505634e+05 0.00 NULL
2015 Nyc Housing Authority *Administrative Attorney 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2015 Nyc Housing Authority *Certified Wide Area Network Administrator 105871.00000 1.058710e+05 367.15 3.671500e+02 367.150 0.00 1 3.671500e+02 367.15 1.062381e+05 1.062381e+05 0.00 NULL
2015 Nyc Housing Authority *Procurment Analyst Level Iii, Oj 70402.00000 7.040200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.040200e+04 7.040200e+04 0.00 NULL
2015 Nyc Housing Authority Accountant 56437.66038 2.991196e+06 1191.53 2.248170e+01 0.000 3.75 53 0.000000e+00 0.00 2.992388e+06 2.991196e+06 1191.53 NULL
2015 Nyc Housing Authority Adm Manager-Non-Mgrl 67452.26761 4.789111e+06 25155.69 3.543055e+02 0.000 589.75 71 0.000000e+00 0.00 4.814267e+06 4.789111e+06 25155.69 NULL
2015 Nyc Housing Authority Admin Community Relations Specialist 76303.60606 2.518019e+06 12509.79 3.790845e+02 0.000 333.75 33 0.000000e+00 0.00 2.530529e+06 2.518019e+06 12509.79 NULL
2015 Nyc Housing Authority Admin Contract Specialist 121754.71429 8.522830e+05 26.13 3.732857e+00 0.000 0.00 7 0.000000e+00 0.00 8.523091e+05 8.522830e+05 26.13 NULL
2015 Nyc Housing Authority Administrative Accountant 92765.12500 2.226363e+06 88.48 3.686667e+00 0.000 2.00 24 0.000000e+00 0.00 2.226451e+06 2.226363e+06 88.48 NULL
2015 Nyc Housing Authority Administrative Architect 114772.42857 8.034070e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.034070e+05 8.034070e+05 0.00 NULL
2015 Nyc Housing Authority Administrative Business Promotion Coordinator 101617.33333 3.048520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.048520e+05 3.048520e+05 0.00 NULL
2015 Nyc Housing Authority Administrative Community Relations Specialist 113409.00000 1.247499e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.247499e+06 1.247499e+06 0.00 NULL
2015 Nyc Housing Authority Administrative Construction Project Manager 101020.90476 2.121439e+06 82.98 3.951429e+00 0.000 0.00 21 0.000000e+00 0.00 2.121522e+06 2.121439e+06 82.98 NULL
2015 Nyc Housing Authority Administrative Engineer 121456.00000 1.578928e+06 71.84 5.526154e+00 0.000 0.00 13 0.000000e+00 0.00 1.579000e+06 1.578928e+06 71.84 NULL
2015 Nyc Housing Authority Administrative Graphic Artist 87843.00000 8.784300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.784300e+04 8.784300e+04 0.00 NULL
2015 Nyc Housing Authority Administrative Housing Development Specialist 112923.40000 1.129234e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.129234e+06 1.129234e+06 0.00 NULL
2015 Nyc Housing Authority Administrative Housing Manager 110615.95238 4.645870e+06 1081.30 2.574524e+01 0.000 22.75 42 0.000000e+00 0.00 4.646951e+06 4.645870e+06 1081.30 NULL
2015 Nyc Housing Authority Administrative Housing Superintendent 108378.08696 7.478088e+06 12336.50 1.787899e+02 0.000 187.50 69 0.000000e+00 0.00 7.490424e+06 7.478088e+06 12336.50 NULL
2015 Nyc Housing Authority Administrative Inspector 107375.80952 2.254892e+06 447.99 2.133286e+01 0.000 3.50 21 0.000000e+00 0.00 2.255340e+06 2.254892e+06 447.99 NULL
2015 Nyc Housing Authority Administrative Labor Relations Analyst 100044.00000 5.002200e+05 19515.65 3.903130e+03 0.000 570.00 5 0.000000e+00 0.00 5.197357e+05 5.002200e+05 19515.65 NULL
2015 Nyc Housing Authority Administrative Landscape Architect 94612.00000 1.892240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.892240e+05 1.892240e+05 0.00 NULL
2015 Nyc Housing Authority Administrative Management Auditor 100883.00000 2.017660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.017660e+05 2.017660e+05 0.00 NULL
2015 Nyc Housing Authority Administrative Printing Services Manager 90981.00000 9.098100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.098100e+04 9.098100e+04 0.00 NULL
2015 Nyc Housing Authority Administrative Procurement Analyst 82758.14286 5.793070e+05 487.27 6.961000e+01 0.000 0.00 7 0.000000e+00 0.00 5.797943e+05 5.793070e+05 487.27 NULL
2015 Nyc Housing Authority Administrative Project Manager 113638.16667 1.363658e+06 1.38 1.150000e-01 0.000 0.00 12 0.000000e+00 0.00 1.363659e+06 1.363658e+06 1.38 NULL
2015 Nyc Housing Authority Administrative Public Information Specialist 94908.71429 1.328722e+06 14.14 1.010000e+00 0.000 0.00 14 0.000000e+00 0.00 1.328736e+06 1.328722e+06 14.14 NULL
2015 Nyc Housing Authority Administrative Quality Assurance Specialist 76102.00000 7.610200e+04 1.40 1.400000e+00 1.400 0.00 1 1.400000e+00 1.40 7.610340e+04 7.610340e+04 0.00 NULL
2015 Nyc Housing Authority Administrative Real Property Manager 108376.75000 4.335070e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.335070e+05 4.335070e+05 0.00 NULL
2015 Nyc Housing Authority Administrative Space Analyst 96584.40000 4.829220e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.829220e+05 4.829220e+05 0.00 NULL
2015 Nyc Housing Authority Administrative Staff Analyst 100140.84507 2.133000e+07 96480.51 4.529601e+02 0.000 1853.00 213 0.000000e+00 0.00 2.142648e+07 2.133000e+07 96480.51 NULL
2015 Nyc Housing Authority Administrative Storekeeper 99208.75000 3.968350e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.968350e+05 3.968350e+05 0.00 NULL
2015 Nyc Housing Authority Administrative Supervisor Of Building Maintenance 97373.45455 1.071108e+06 925.98 8.418000e+01 0.000 0.00 11 0.000000e+00 0.00 1.072034e+06 1.071108e+06 925.98 NULL
2015 Nyc Housing Authority Agency Attorney 76649.66176 5.212177e+06 0.00 0.000000e+00 0.000 0.00 68 0.000000e+00 0.00 5.212177e+06 5.212177e+06 0.00 NULL
2015 Nyc Housing Authority Architect 82122.81818 9.033510e+05 8883.50 8.075909e+02 2.800 136.00 11 2.800000e+00 30.80 9.122345e+05 9.033818e+05 8852.70 NULL
2015 Nyc Housing Authority Asbestos Handler 76036.38889 1.368655e+06 42524.26 2.362459e+03 1471.805 702.25 18 1.471805e+03 26492.49 1.411179e+06 1.395147e+06 16031.77 NULL
2015 Nyc Housing Authority Asbestos Handler Supervisor 79318.00000 3.965900e+05 27382.01 5.476402e+03 2665.120 433.75 5 2.665120e+03 13325.60 4.239720e+05 4.099156e+05 14056.41 NULL
2015 Nyc Housing Authority Asbestos Hazard Investigator 65985.33333 3.959120e+05 7261.54 1.210257e+03 899.480 81.50 6 8.994800e+02 5396.88 4.031735e+05 4.013089e+05 1864.66 NULL
2015 Nyc Housing Authority Assistant Architect 61353.84615 7.976000e+05 158.14 1.216462e+01 0.000 3.00 13 0.000000e+00 0.00 7.977581e+05 7.976000e+05 158.14 NULL
2015 Nyc Housing Authority Assistant Caretaker 34021.69106 4.184668e+06 32785.72 2.665506e+02 0.000 1706.75 123 0.000000e+00 0.00 4.217454e+06 4.184668e+06 32785.72 NULL
2015 Nyc Housing Authority Assistant Civil Engineer 64890.40000 3.244520e+05 208.67 4.173400e+01 33.030 1.00 5 3.303000e+01 165.15 3.246607e+05 3.246172e+05 43.52 NULL
2015 Nyc Housing Authority Assistant Electrical Engineer 59750.00000 1.195000e+05 139.95 6.997500e+01 69.975 2.50 2 6.997500e+01 139.95 1.196399e+05 1.196399e+05 0.00 NULL
2015 Nyc Housing Authority Assistant Housing Manager 64396.09709 1.326560e+07 248496.15 1.206292e+03 0.000 5623.00 206 0.000000e+00 0.00 1.351409e+07 1.326560e+07 248496.15 NULL
2015 Nyc Housing Authority Assistant Landscape Architect 73532.00000 7.353200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.353200e+04 7.353200e+04 0.00 NULL
2015 Nyc Housing Authority Assistant Mechanical Engineer 63895.00000 1.277900e+05 0.33 1.650000e-01 0.165 0.00 2 1.650000e-01 0.33 1.277903e+05 1.277903e+05 0.00 NULL
2015 Nyc Housing Authority Assistant Printing Press Operator 52967.75000 4.237420e+05 524.78 6.559750e+01 5.125 12.00 8 5.125000e+00 41.00 4.242668e+05 4.237830e+05 483.78 NULL
2015 Nyc Housing Authority Assistant Resident Building Supt 64522.28634 1.464656e+07 1813079.15 7.987133e+03 6310.840 41268.75 227 6.310840e+03 1432560.68 1.645964e+07 1.607912e+07 380518.47 NULL
2015 Nyc Housing Authority Assoc Inspector 76870.66667 4.612240e+05 928.62 1.547700e+02 92.640 17.50 6 9.264000e+01 555.84 4.621526e+05 4.617798e+05 372.78 NULL
2015 Nyc Housing Authority Associate Contract Specialist 61618.00000 6.161800e+04 0.40 4.000000e-01 0.400 0.00 1 4.000000e-01 0.40 6.161840e+04 6.161840e+04 0.00 NULL
2015 Nyc Housing Authority Associate Fraud Investigator 82566.00000 8.256600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.256600e+04 8.256600e+04 0.00 NULL
2015 Nyc Housing Authority Associate Housing Development Specialist 85190.00000 5.111400e+05 4292.93 7.154883e+02 13.710 71.75 6 1.371000e+01 82.26 5.154329e+05 5.112223e+05 4210.67 NULL
2015 Nyc Housing Authority Associate Inspector 69674.00000 6.967400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.967400e+04 6.967400e+04 0.00 NULL
2015 Nyc Housing Authority Associate Investigator 56381.90909 6.202010e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 6.202010e+05 6.202010e+05 0.00 NULL
2015 Nyc Housing Authority Associate Labor Relations Analyst 78283.00000 1.565660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.565660e+05 1.565660e+05 0.00 NULL
2015 Nyc Housing Authority Associate Operations Communications Specialist 54060.00000 5.406000e+04 26.15 2.615000e+01 26.150 0.00 1 2.615000e+01 26.15 5.408615e+04 5.408615e+04 0.00 NULL
2015 Nyc Housing Authority Associate Project Manager 78191.44000 1.954786e+06 3629.67 1.451868e+02 2.650 46.50 25 2.650000e+00 66.25 1.958416e+06 1.954852e+06 3563.42 NULL
2015 Nyc Housing Authority Associate Public Information Specialist 55684.75000 2.227390e+05 224.95 5.623750e+01 0.000 0.00 4 0.000000e+00 0.00 2.229640e+05 2.227390e+05 224.95 NULL
2015 Nyc Housing Authority Associate Public Records Officer 62517.00000 6.251700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.251700e+04 6.251700e+04 0.00 NULL
2015 Nyc Housing Authority Associate Quality Assurance Specialist 61246.00000 6.124600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.124600e+04 6.124600e+04 0.00 NULL
2015 Nyc Housing Authority Associate Real Property Manager 66965.00000 6.696500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.696500e+04 6.696500e+04 0.00 NULL
2015 Nyc Housing Authority Associate Staff Analyst 71133.85938 4.552567e+06 35091.95 5.483117e+02 0.000 654.00 64 0.000000e+00 0.00 4.587659e+06 4.552567e+06 35091.95 NULL
2015 Nyc Housing Authority Associate Urban Designer 67689.00000 6.768900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.768900e+04 6.768900e+04 0.00 NULL
2015 Nyc Housing Authority Attorney At Law 79750.20000 7.975020e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.975020e+05 7.975020e+05 0.00 NULL
2015 Nyc Housing Authority Auto Mechanic NA NA 19445.77 4.861443e+03 3783.430 288.50 4 3.783430e+03 15133.72 NA NA NA NULL
2015 Nyc Housing Authority Automotive Service Worker 45170.00000 1.806800e+05 2165.71 5.414275e+02 54.990 86.50 4 5.499000e+01 219.96 1.828457e+05 1.809000e+05 1945.75 NULL
2015 Nyc Housing Authority Bookkeeper 45789.96774 1.419489e+06 1530.67 4.937645e+01 0.000 45.25 31 0.000000e+00 0.00 1.421020e+06 1.419489e+06 1530.67 NULL
2015 Nyc Housing Authority Bricklayer NA NA 438541.28 6.545392e+03 4434.010 8652.75 67 4.434010e+03 297078.67 NA NA NA NULL
2015 Nyc Housing Authority Business Promotion Coordinator 51318.50000 1.026370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.026370e+05 1.026370e+05 0.00 NULL
2015 Nyc Housing Authority Caretaker 37536.23052 1.286367e+08 21405515.49 6.246138e+03 6345.510 764803.50 3427 6.246138e+03 21405515.49 1.500422e+08 1.500422e+08 0.00 NULL
2015 Nyc Housing Authority Carpenter NA NA 2224471.01 8.792376e+03 6110.590 36733.50 253 6.110590e+03 1545979.27 NA NA NA NULL
2015 Nyc Housing Authority Cashier 40319.00000 8.063800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.063800e+04 8.063800e+04 0.00 NULL
2015 Nyc Housing Authority Certified It Administrator 96691.69231 1.256992e+06 79902.41 6.146339e+03 992.220 1050.00 13 9.922200e+02 12898.86 1.336894e+06 1.269891e+06 67003.55 NULL
2015 Nyc Housing Authority Certified It Developer 81871.00000 8.187100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.187100e+04 8.187100e+04 0.00 NULL
2015 Nyc Housing Authority Certified Local Area Network Administrator 95083.66667 2.852510e+05 9711.06 3.237020e+03 2191.730 135.75 3 2.191730e+03 6575.19 2.949621e+05 2.918262e+05 3135.87 NULL
2015 Nyc Housing Authority Chair 219450.00000 2.194500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.194500e+05 2.194500e+05 0.00 NULL
2015 Nyc Housing Authority Chief Caretaker 45691.00000 1.325039e+06 241173.10 8.316314e+03 7399.510 8315.25 29 7.399510e+03 214585.79 1.566212e+06 1.539625e+06 26587.31 NULL
2015 Nyc Housing Authority Chief Of Housing Community Activities 79530.50000 3.181220e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.181220e+05 3.181220e+05 0.00 NULL
2015 Nyc Housing Authority City Planner 60857.80000 3.042890e+05 1557.28 3.114560e+02 0.000 35.75 5 0.000000e+00 0.00 3.058463e+05 3.042890e+05 1557.28 NULL
2015 Nyc Housing Authority City Planning Technician 48013.66667 1.440410e+05 41.94 1.398000e+01 14.490 0.00 3 1.398000e+01 41.94 1.440829e+05 1.440829e+05 0.00 NULL
2015 Nyc Housing Authority City Research Scientist 77832.50000 3.113300e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.113300e+05 3.113300e+05 0.00 NULL
2015 Nyc Housing Authority City Seasonal Aide 17157.05128 7.360375e+06 69.31 1.615618e-01 0.000 6.50 429 0.000000e+00 0.00 7.360444e+06 7.360375e+06 69.31 NULL
2015 Nyc Housing Authority City Security Aide 7980.28571 7.820680e+05 0.00 0.000000e+00 0.000 0.00 98 0.000000e+00 0.00 7.820680e+05 7.820680e+05 0.00 NULL
2015 Nyc Housing Authority City Service Aide 14330.03571 2.006205e+06 4417.60 3.155429e+01 0.000 314.25 140 0.000000e+00 0.00 2.010623e+06 2.006205e+06 4417.60 NULL
2015 Nyc Housing Authority Civil Engineer 82137.45455 9.035120e+05 2934.35 2.667591e+02 211.470 4.00 11 2.114700e+02 2326.17 9.064463e+05 9.058382e+05 608.18 NULL
2015 Nyc Housing Authority Claim Specialist 56361.62500 4.508930e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.508930e+05 4.508930e+05 0.00 NULL
2015 Nyc Housing Authority Clerical Aide 30241.00000 6.048200e+05 127.06 6.353000e+00 0.000 4.50 20 0.000000e+00 0.00 6.049471e+05 6.048200e+05 127.06 NULL
2015 Nyc Housing Authority Clerical Associate 38642.69697 6.376045e+06 28114.24 1.703893e+02 0.000 858.00 165 0.000000e+00 0.00 6.404159e+06 6.376045e+06 28114.24 NULL
2015 Nyc Housing Authority College Aide 20987.50000 4.197500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.197500e+04 4.197500e+04 0.00 NULL
2015 Nyc Housing Authority Community Assistant 32552.27500 1.302091e+06 19251.66 4.812915e+02 29.740 821.75 40 2.974000e+01 1189.60 1.321343e+06 1.303281e+06 18062.06 NULL
2015 Nyc Housing Authority Community Associate 39616.11392 6.259346e+06 56424.55 3.571174e+02 3.475 1819.50 158 3.475000e+00 549.05 6.315771e+06 6.259895e+06 55875.50 NULL
2015 Nyc Housing Authority Community Coordinator 57794.04186 1.242572e+07 228704.09 1.063740e+03 10.700 5402.50 215 1.070000e+01 2300.50 1.265442e+07 1.242802e+07 226403.59 NULL
2015 Nyc Housing Authority Community Service Aide 12180.83696 1.120637e+06 4811.55 5.229946e+01 0.000 214.25 92 0.000000e+00 0.00 1.125449e+06 1.120637e+06 4811.55 NULL
2015 Nyc Housing Authority Computer Aide-Non-Spvr 45807.33333 1.374220e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.374220e+05 1.374220e+05 0.00 NULL
2015 Nyc Housing Authority Computer Associate 66885.96875 2.140351e+06 12230.05 3.821891e+02 0.000 307.75 32 0.000000e+00 0.00 2.152581e+06 2.140351e+06 12230.05 NULL
2015 Nyc Housing Authority Computer Operations Manager 91163.42857 6.381440e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.381440e+05 6.381440e+05 0.00 NULL
2015 Nyc Housing Authority Computer Programmer Analyst Trainee 41597.00000 4.159700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.159700e+04 4.159700e+04 0.00 NULL
2015 Nyc Housing Authority Computer Service Technician 49865.50000 1.994620e+05 4129.31 1.032328e+03 472.675 125.00 4 4.726750e+02 1890.70 2.035913e+05 2.013527e+05 2238.61 NULL
2015 Nyc Housing Authority Computer Specialist 90930.03614 7.547193e+06 149619.31 1.802642e+03 22.380 2227.25 83 2.238000e+01 1857.54 7.696812e+06 7.549051e+06 147761.77 NULL
2015 Nyc Housing Authority Computer Systems Manager 116355.90000 4.654236e+06 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 4.654236e+06 4.654236e+06 0.00 NULL
2015 Nyc Housing Authority Confidential Investigator 59687.23684 2.268115e+06 38177.03 1.004659e+03 64.760 989.50 38 6.476000e+01 2460.88 2.306292e+06 2.270576e+06 35716.15 NULL
2015 Nyc Housing Authority Construction Project Manager 72071.31579 9.585485e+06 47863.36 3.598749e+02 20.290 863.75 133 2.029000e+01 2698.57 9.633348e+06 9.588184e+06 45164.79 NULL
2015 Nyc Housing Authority Contract Specialist 69655.00000 6.965500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.965500e+04 6.965500e+04 0.00 NULL
2015 Nyc Housing Authority Controller 144834.00000 1.448340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.448340e+05 1.448340e+05 0.00 NULL
2015 Nyc Housing Authority Customer Information Representative 36963.28902 6.394649e+06 41638.92 2.406874e+02 2.770 1502.50 173 2.770000e+00 479.21 6.436288e+06 6.395128e+06 41159.71 NULL
2015 Nyc Housing Authority Dep Dir Of Audit & Prog Analysis 108758.00000 1.087580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.087580e+05 1.087580e+05 0.00 NULL
2015 Nyc Housing Authority Dep Dir Of Program Planning 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2015 Nyc Housing Authority Dep Dir Research & Pol Develp 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2015 Nyc Housing Authority Dep Director Of Personnel & Lr 115545.00000 2.310900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.310900e+05 2.310900e+05 0.00 NULL
2015 Nyc Housing Authority Deputy Counsel Intern 66035.66667 3.962140e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.962140e+05 3.962140e+05 0.00 NULL
2015 Nyc Housing Authority Deputy Director Of Equal Opportunity 102601.00000 1.026010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.026010e+05 1.026010e+05 0.00 NULL
2015 Nyc Housing Authority Deputy Director Of Housing Applicants 112690.00000 1.126900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.126900e+05 1.126900e+05 0.00 NULL
2015 Nyc Housing Authority Deputy Director Of Management 114099.00000 1.140990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.140990e+05 1.140990e+05 0.00 NULL
2015 Nyc Housing Authority Deputy Director Of Methods & Analysis 106498.00000 1.064980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.064980e+05 1.064980e+05 0.00 NULL
2015 Nyc Housing Authority Deputy Executive Director 190713.00000 3.814260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.814260e+05 3.814260e+05 0.00 NULL
2015 Nyc Housing Authority Deputy Inspector General 97994.71429 6.859630e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.859630e+05 6.859630e+05 0.00 NULL
2015 Nyc Housing Authority Dir Of Audit & Prog Analysis 138563.00000 1.385630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.385630e+05 1.385630e+05 0.00 NULL
2015 Nyc Housing Authority Dir Of Personnel & Labor Rels 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2015 Nyc Housing Authority Director Of Equal Opportunity 124340.00000 1.243400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.243400e+05 1.243400e+05 0.00 NULL
2015 Nyc Housing Authority Director Of Housing Applicantions 143926.00000 1.439260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.439260e+05 1.439260e+05 0.00 NULL
2015 Nyc Housing Authority Director Of Leased Housing 141332.00000 1.413320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.413320e+05 1.413320e+05 0.00 NULL
2015 Nyc Housing Authority Director Of Research & Policy Development 129672.00000 1.296720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.296720e+05 1.296720e+05 0.00 NULL
2015 Nyc Housing Authority Director Of Security 136931.00000 1.369310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.369310e+05 1.369310e+05 0.00 NULL
2015 Nyc Housing Authority Electrical Engineer 75904.33333 2.277130e+05 186.71 6.223667e+01 0.800 0.00 3 8.000000e-01 2.40 2.278997e+05 2.277154e+05 184.31 NULL
2015 Nyc Housing Authority Electrician NA NA 1092106.48 1.733502e+04 14773.500 15420.50 63 1.477350e+04 930730.50 NA NA NA NULL
2015 Nyc Housing Authority Electrician’s Helper NA NA 615853.54 9.331114e+03 7103.640 13825.00 66 7.103640e+03 468840.24 NA NA NA NULL
2015 Nyc Housing Authority Elevator Mechanic NA NA 3386682.51 1.435035e+04 15767.145 45673.00 236 1.435035e+04 3386682.51 NA NA NA NULL
2015 Nyc Housing Authority Elevator Mechanic Helper NA NA 2130126.72 9.726606e+03 11324.500 42473.75 219 9.726606e+03 2130126.72 NA NA NA NULL
2015 Nyc Housing Authority Emergency Service Aide 35475.03158 3.370128e+06 141499.19 1.489465e+03 558.610 6887.75 95 5.586100e+02 53067.95 3.511627e+06 3.423196e+06 88431.24 NULL
2015 Nyc Housing Authority Engineering Technician 58700.00000 1.761000e+05 7.24 2.413333e+00 0.000 0.00 3 0.000000e+00 0.00 1.761072e+05 1.761000e+05 7.24 NULL
2015 Nyc Housing Authority Estimator 64391.00000 6.439100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.439100e+04 6.439100e+04 0.00 NULL
2015 Nyc Housing Authority Executive Agency Counsel 112390.23077 4.383219e+06 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 4.383219e+06 4.383219e+06 0.00 NULL
2015 Nyc Housing Authority Executive Director 201903.00000 2.019030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.019030e+05 2.019030e+05 0.00 NULL
2015 Nyc Housing Authority Fraud Investigator 55659.00000 5.565900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.565900e+04 5.565900e+04 0.00 NULL
2015 Nyc Housing Authority Glazier NA NA 224542.30 8.636242e+03 5041.400 3226.75 26 5.041400e+03 131076.40 NA NA NA NULL
2015 Nyc Housing Authority Graphic Artist 46232.00000 1.386960e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.386960e+05 1.386960e+05 0.00 NULL
2015 Nyc Housing Authority Hearing Examiner 113578.00000 3.407340e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.407340e+05 3.407340e+05 0.00 NULL
2015 Nyc Housing Authority Heating Plant Technician 45232.48571 1.424823e+07 816208.24 2.591137e+03 1370.350 26101.00 315 1.370350e+03 431660.25 1.506444e+07 1.467989e+07 384547.99 NULL
2015 Nyc Housing Authority High Pressure Plant Tender NA NA 5345.53 1.781843e+03 140.670 114.00 3 1.406700e+02 422.01 NA NA NA NULL
2015 Nyc Housing Authority Housing Assistant 51964.52416 4.947023e+07 307910.55 3.234355e+02 0.000 8552.50 952 0.000000e+00 0.00 4.977814e+07 4.947023e+07 307910.55 NULL
2015 Nyc Housing Authority Housing Caretaker 51286.34749 1.328316e+07 3020253.05 1.166121e+04 12126.240 79478.25 259 1.166121e+04 3020253.05 1.630342e+07 1.630342e+07 0.00 NULL
2015 Nyc Housing Authority Housing Development Specialist 72136.42857 5.049550e+05 580.25 8.289286e+01 0.000 10.00 7 0.000000e+00 0.00 5.055352e+05 5.049550e+05 580.25 NULL
2015 Nyc Housing Authority Housing Exterminator 43295.68354 6.840718e+06 42756.98 2.706138e+02 0.000 1290.75 158 0.000000e+00 0.00 6.883475e+06 6.840718e+06 42756.98 NULL
2015 Nyc Housing Authority Housing Manager 82780.26396 1.630771e+07 543324.79 2.757994e+03 1124.620 10496.50 197 1.124620e+03 221550.14 1.685104e+07 1.652926e+07 321774.65 NULL
2015 Nyc Housing Authority Housing Stock Worker 46777.37931 1.356544e+06 1920.20 6.621379e+01 0.000 30.75 29 0.000000e+00 0.00 1.358464e+06 1.356544e+06 1920.20 NULL
2015 Nyc Housing Authority Industrial Hygienist 56825.00000 2.841250e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.841250e+05 2.841250e+05 0.00 NULL
2015 Nyc Housing Authority Inspector 64135.40000 3.206770e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.206770e+05 3.206770e+05 0.00 NULL
2015 Nyc Housing Authority Inspector General 137851.00000 2.757020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.757020e+05 2.757020e+05 0.00 NULL
2015 Nyc Housing Authority Interpreter 47742.00000 3.341940e+05 109.23 1.560429e+01 4.050 0.00 7 4.050000e+00 28.35 3.343032e+05 3.342223e+05 80.88 NULL
2015 Nyc Housing Authority Interpreter/Translator 49352.00000 9.870400e+04 8.57 4.285000e+00 4.285 0.00 2 4.285000e+00 8.57 9.871257e+04 9.871257e+04 0.00 NULL
2015 Nyc Housing Authority Investigator 48702.56522 1.120159e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 1.120159e+06 1.120159e+06 0.00 NULL
2015 Nyc Housing Authority Labor Relations Analyst 63361.66667 3.801700e+05 36055.37 6.009228e+03 1917.495 910.25 6 1.917495e+03 11504.97 4.162254e+05 3.916750e+05 24550.40 NULL
2015 Nyc Housing Authority Labor Relations Analyst Trainee 42556.13333 6.383420e+05 1905.10 1.270067e+02 0.000 62.75 15 0.000000e+00 0.00 6.402471e+05 6.383420e+05 1905.10 NULL
2015 Nyc Housing Authority Landscape Architect 77150.00000 1.543000e+05 2305.32 1.152660e+03 1152.660 88.50 2 1.152660e+03 2305.32 1.566053e+05 1.566053e+05 0.00 NULL
2015 Nyc Housing Authority Lead Abatement Worker 46480.68421 1.766266e+06 34606.99 9.107103e+02 505.775 836.50 38 5.057750e+02 19219.45 1.800873e+06 1.785485e+06 15387.54 NULL
2015 Nyc Housing Authority Legal Secretarial Assistant 38858.00000 7.771600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.771600e+04 7.771600e+04 0.00 NULL
2015 Nyc Housing Authority Machinist NA NA 1765.30 5.884333e+02 766.710 33.00 3 5.884333e+02 1765.30 NA NA NA NULL
2015 Nyc Housing Authority Maintenance Worker NA NA 4073332.45 3.420094e+03 1737.110 109496.50 1191 1.737110e+03 2068898.01 NA NA NA NULL
2015 Nyc Housing Authority Management Auditor 59741.08333 7.168930e+05 112.60 9.383333e+00 0.000 0.00 12 0.000000e+00 0.00 7.170056e+05 7.168930e+05 112.60 NULL
2015 Nyc Housing Authority Masons Helper NA NA 223038.97 4.130351e+03 2936.975 5935.00 54 2.936975e+03 158596.65 NA NA NA NULL
2015 Nyc Housing Authority Mechanical Engineer 80873.75000 6.469900e+05 712.09 8.901125e+01 12.295 11.00 8 1.229500e+01 98.36 6.477021e+05 6.470884e+05 613.73 NULL
2015 Nyc Housing Authority Media Services Technician 54865.00000 5.486500e+04 1.30 1.300000e+00 1.300 0.00 1 1.300000e+00 1.30 5.486630e+04 5.486630e+04 0.00 NULL
2015 Nyc Housing Authority Motor Grader Operator NA NA 26408.52 1.320426e+04 13204.260 383.25 2 1.320426e+04 26408.52 NA NA NA NULL
2015 Nyc Housing Authority Motor Vehicle Operator 43195.10714 1.209463e+06 121873.21 4.352615e+03 168.330 3486.50 28 1.683300e+02 4713.24 1.331336e+06 1.214176e+06 117159.97 NULL
2015 Nyc Housing Authority Motor Vehicle Supervisor 54928.50000 1.098570e+05 1222.60 6.113000e+02 611.300 24.00 2 6.113000e+02 1222.60 1.110796e+05 1.110796e+05 0.00 NULL
2015 Nyc Housing Authority Office Machine Aide 29897.00000 2.989700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.989700e+04 2.989700e+04 0.00 NULL
2015 Nyc Housing Authority Oil Burner Specialist 62122.00000 1.242440e+05 4609.28 2.304640e+03 2304.640 126.75 2 2.304640e+03 4609.28 1.288533e+05 1.288533e+05 0.00 NULL
2015 Nyc Housing Authority Painter NA NA 648103.51 2.842559e+03 1233.750 12662.25 228 1.233750e+03 281295.00 NA NA NA NULL
2015 Nyc Housing Authority Plasterer NA NA 2946859.83 1.016159e+04 9457.480 41338.50 290 9.457480e+03 2742669.20 NA NA NA NULL
2015 Nyc Housing Authority Plumber NA NA 3715703.30 3.911267e+04 38924.540 41149.75 95 3.892454e+04 3697831.30 NA NA NA NULL
2015 Nyc Housing Authority Plumber’s Helper NA NA 2487703.39 2.512832e+04 23990.400 38094.75 99 2.399040e+04 2375049.60 NA NA NA NULL
2015 Nyc Housing Authority Principal Administrative Associate 55108.91000 5.510891e+06 14136.15 1.413615e+02 0.000 370.75 100 0.000000e+00 0.00 5.525027e+06 5.510891e+06 14136.15 NULL
2015 Nyc Housing Authority Printing Press Operator NA NA 343.20 3.432000e+02 343.200 6.50 1 3.432000e+02 343.20 NA NA NA NULL
2015 Nyc Housing Authority Procurement Analyst 57393.15094 3.041837e+06 51129.20 9.647019e+02 0.000 1207.75 53 0.000000e+00 0.00 3.092966e+06 3.041837e+06 51129.20 NULL
2015 Nyc Housing Authority Project Manager 65891.66667 1.976750e+05 548.61 1.828700e+02 81.470 0.00 3 8.147000e+01 244.41 1.982236e+05 1.979194e+05 304.20 NULL
2015 Nyc Housing Authority Public Records Officer 53045.00000 5.304500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.304500e+04 5.304500e+04 0.00 NULL
2015 Nyc Housing Authority Quality Assurance Specialist 52134.25000 2.085370e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.085370e+05 2.085370e+05 0.00 NULL
2015 Nyc Housing Authority Real Property Manager 53058.00000 5.305800e+04 13.03 1.303000e+01 13.030 0.00 1 1.303000e+01 13.03 5.307103e+04 5.307103e+04 0.00 NULL
2015 Nyc Housing Authority Recreation Director 47736.00000 9.547200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.547200e+04 9.547200e+04 0.00 NULL
2015 Nyc Housing Authority Research Assistant 50242.40000 7.536360e+05 1190.16 7.934400e+01 0.000 39.75 15 0.000000e+00 0.00 7.548262e+05 7.536360e+05 1190.16 NULL
2015 Nyc Housing Authority Resident Building Superintendent 80402.19111 1.809049e+07 1347075.99 5.987004e+03 4202.010 27190.00 225 4.202010e+03 945452.25 1.943757e+07 1.903595e+07 401623.74 NULL
2015 Nyc Housing Authority Roofer NA NA 11724.75 3.908250e+02 0.000 281.50 30 0.000000e+00 0.00 NA NA NA NULL
2015 Nyc Housing Authority Secretary 38586.65419 2.577588e+07 54165.01 8.108534e+01 0.000 1552.00 668 0.000000e+00 0.00 2.583005e+07 2.577588e+07 54165.01 NULL
2015 Nyc Housing Authority Secretary Of The Authority 151328.00000 1.513280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.513280e+05 1.513280e+05 0.00 NULL
2015 Nyc Housing Authority Secretary To Deputy Executive Director 65018.40000 3.250920e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.250920e+05 3.250920e+05 0.00 NULL
2015 Nyc Housing Authority Secretary To Member 67912.00000 6.791200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.791200e+04 6.791200e+04 0.00 NULL
2015 Nyc Housing Authority Senior Estimator 71706.62500 1.147306e+06 760.33 4.752063e+01 0.000 0.00 16 0.000000e+00 0.00 1.148066e+06 1.147306e+06 760.33 NULL
2015 Nyc Housing Authority Senior Intergroup Relations Officer 49500.00000 1.485000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.485000e+05 1.485000e+05 0.00 NULL
2015 Nyc Housing Authority Senior Photographer 59293.00000 5.929300e+04 39.47 3.947000e+01 39.470 0.00 1 3.947000e+01 39.47 5.933247e+04 5.933247e+04 0.00 NULL
2015 Nyc Housing Authority Social Worker 51002.47059 8.670420e+05 232.67 1.368647e+01 0.000 6.00 17 0.000000e+00 0.00 8.672747e+05 8.670420e+05 232.67 NULL
2015 Nyc Housing Authority Space Analyst 68015.50000 1.360310e+05 14.22 7.110000e+00 7.110 0.00 2 7.110000e+00 14.22 1.360452e+05 1.360452e+05 0.00 NULL
2015 Nyc Housing Authority Special Assistant To Deputy Executive Director 72000.00000 7.200000e+04 7457.32 7.457320e+03 7457.320 259.50 1 7.457320e+03 7457.32 7.945732e+04 7.945732e+04 0.00 NULL
2015 Nyc Housing Authority Special Officer 43942.00000 2.636520e+05 32654.70 5.442450e+03 3917.465 1005.00 6 3.917465e+03 23504.79 2.963067e+05 2.871568e+05 9149.91 NULL
2015 Nyc Housing Authority Staff Analyst 60845.31915 2.859730e+06 6726.11 1.431087e+02 0.000 151.75 47 0.000000e+00 0.00 2.866456e+06 2.859730e+06 6726.11 NULL
2015 Nyc Housing Authority Staff Analyst Trainee 45246.38462 5.882030e+05 8089.65 6.222808e+02 0.000 280.50 13 0.000000e+00 0.00 5.962927e+05 5.882030e+05 8089.65 NULL
2015 Nyc Housing Authority Statistician 55247.00000 1.104940e+05 8196.16 4.098080e+03 4098.080 276.00 2 4.098080e+03 8196.16 1.186902e+05 1.186902e+05 0.00 NULL
2015 Nyc Housing Authority Summer Graduate Intern 31228.60000 3.122860e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 3.122860e+05 3.122860e+05 0.00 NULL
2015 Nyc Housing Authority Supervising Computer Service Technician 62340.00000 2.493600e+05 4779.12 1.194780e+03 984.950 115.75 4 9.849500e+02 3939.80 2.541391e+05 2.532998e+05 839.32 NULL
2015 Nyc Housing Authority Supervising Housing Groundskeeper 53982.00769 7.017661e+06 1544060.43 1.187739e+04 12253.945 39246.00 130 1.187739e+04 1544060.43 8.561721e+06 8.561721e+06 0.00 NULL
2015 Nyc Housing Authority Supervising Special Officer 49740.00000 1.492200e+05 19168.77 6.389590e+03 6435.520 570.00 3 6.389590e+03 19168.77 1.683888e+05 1.683888e+05 0.00 NULL
2015 Nyc Housing Authority Supervisor Bricklayer NA NA 175292.68 1.460772e+04 11687.125 2860.00 12 1.168712e+04 140245.50 NA NA NA NULL
2015 Nyc Housing Authority Supervisor Carpenter NA NA 411104.08 2.418259e+04 21991.770 6242.75 17 2.199177e+04 373860.09 NA NA NA NULL
2015 Nyc Housing Authority Supervisor Electrician NA NA 333831.03 3.034828e+04 32817.340 4391.25 11 3.034828e+04 333831.03 NA NA NA NULL
2015 Nyc Housing Authority Supervisor Elevator Mechanic NA NA 563553.93 1.878513e+04 22043.870 6489.25 30 1.878513e+04 563553.93 NA NA NA NULL
2015 Nyc Housing Authority Supervisor Glazier NA NA 39045.60 1.952280e+04 19522.800 573.00 2 1.952280e+04 39045.60 NA NA NA NULL
2015 Nyc Housing Authority Supervisor I Social Work 57857.25000 2.314290e+05 773.78 1.934450e+02 74.070 21.25 4 7.407000e+01 296.28 2.322028e+05 2.317253e+05 477.50 NULL
2015 Nyc Housing Authority Supervisor Ii Social Work 66998.00000 1.004970e+06 144.53 9.635333e+00 0.000 0.00 15 0.000000e+00 0.00 1.005115e+06 1.004970e+06 144.53 NULL
2015 Nyc Housing Authority Supervisor Of Electrical Installations & Maintenance 72414.20000 3.620710e+05 419.27 8.385400e+01 14.890 3.00 5 1.489000e+01 74.45 3.624903e+05 3.621455e+05 344.82 NULL
2015 Nyc Housing Authority Supervisor Of Elevator Maintenance 118123.00000 3.543690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.543690e+05 3.543690e+05 0.00 NULL
2015 Nyc Housing Authority Supervisor Of Housing Stock Workers 61940.08696 1.424622e+06 90299.66 3.926072e+03 236.540 1574.25 23 2.365400e+02 5440.42 1.514922e+06 1.430062e+06 84859.24 NULL
2015 Nyc Housing Authority Supervisor Of Mechanical Installations & Maintenance 70914.97222 2.552939e+06 19286.01 5.357225e+02 75.845 278.00 36 7.584500e+01 2730.42 2.572225e+06 2.555669e+06 16555.59 NULL
2015 Nyc Housing Authority Supervisor Of Mechanics 102263.00000 1.022630e+05 6244.48 6.244480e+03 6244.480 85.00 1 6.244480e+03 6244.48 1.085075e+05 1.085075e+05 0.00 NULL
2015 Nyc Housing Authority Supervisor Of Office Machine Operations 37324.00000 7.464800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.464800e+04 7.464800e+04 0.00 NULL
2015 Nyc Housing Authority Supervisor Painter NA NA 139991.55 2.744932e+03 1320.000 2416.25 51 1.320000e+03 67320.00 NA NA NA NULL
2015 Nyc Housing Authority Supervisor Plasterer NA NA 615020.13 2.277852e+04 22314.300 8275.50 27 2.231430e+04 602486.10 NA NA NA NULL
2015 Nyc Housing Authority Supervisor Plumber NA NA 868122.75 5.425767e+04 44762.610 9152.75 16 4.476261e+04 716201.76 NA NA NA NULL
2015 Nyc Housing Authority Supervisor Roofer NA NA 6834.69 1.366938e+03 1653.300 157.00 5 1.366938e+03 6834.69 NA NA NA NULL
2015 Nyc Housing Authority Supv Of Housing Exterminator 53569.50000 4.285560e+05 17860.92 2.232615e+03 2051.485 463.75 8 2.051485e+03 16411.88 4.464169e+05 4.449679e+05 1449.04 NULL
2015 Nyc Housing Authority Supv Of Housing Exterminators 76125.00000 7.612500e+04 4695.73 4.695730e+03 4695.730 108.25 1 4.695730e+03 4695.73 8.082073e+04 8.082073e+04 0.00 NULL
2015 Nyc Housing Authority Telecommunication Manager 100204.00000 1.002040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.002040e+05 1.002040e+05 0.00 NULL
2015 Nyc Housing Authority Telecommunications Associate 70641.88889 6.357770e+05 4835.67 5.372967e+02 320.110 85.75 9 3.201100e+02 2880.99 6.406127e+05 6.386580e+05 1954.68 NULL
2015 Nyc Housing Authority Welder NA NA 58670.38 5.867038e+03 5338.260 836.50 10 5.338260e+03 53382.60 NA NA NA NULL
2015 Nyc Housing Authority Worker’s Compensation Benefits Examiner 48707.00000 9.741400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.741400e+04 9.741400e+04 0.00 NULL
2015 Nyc Police Pension Fund Accountant 74171.83333 4.450310e+05 2794.51 4.657517e+02 283.620 51.50 6 2.836200e+02 1701.72 4.478255e+05 4.467327e+05 1092.79 NULL
2015 Nyc Police Pension Fund Administrative Accountant 134845.33333 4.045360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.045360e+05 4.045360e+05 0.00 NULL
2015 Nyc Police Pension Fund Administrative Manager 93531.00000 9.353100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.353100e+04 9.353100e+04 0.00 NULL
2015 Nyc Police Pension Fund Administrative Retirement Benefits Specialist 114023.45455 1.254258e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.254258e+06 1.254258e+06 0.00 NULL
2015 Nyc Police Pension Fund Administrative Staff Analyst 127435.40000 6.371770e+05 82.84 1.656800e+01 0.000 1.50 5 0.000000e+00 0.00 6.372598e+05 6.371770e+05 82.84 NULL
2015 Nyc Police Pension Fund Assistant Retirement Benefits Examiner 50164.87500 4.013190e+05 10042.56 1.255320e+03 10.550 262.25 8 1.055000e+01 84.40 4.113616e+05 4.014034e+05 9958.16 NULL
2015 Nyc Police Pension Fund Associate Retirement Benefits Examiner 66191.94737 1.257647e+06 37642.12 1.981164e+03 65.210 747.25 19 6.521000e+01 1238.99 1.295289e+06 1.258886e+06 36403.13 NULL
2015 Nyc Police Pension Fund Associate Staff Analyst 86456.00000 8.645600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.645600e+04 8.645600e+04 0.00 NULL
2015 Nyc Police Pension Fund Certified Local Area Network Administrator 102341.00000 1.023410e+05 17876.70 1.787670e+04 17876.700 259.00 1 1.787670e+04 17876.70 1.202177e+05 1.202177e+05 0.00 NULL
2015 Nyc Police Pension Fund Clerical Associate 49634.39375 7.941503e+05 26102.09 1.631381e+03 434.785 804.75 16 4.347850e+02 6956.56 8.202524e+05 8.011069e+05 19145.53 NULL
2015 Nyc Police Pension Fund College Aide 4123.35938 1.319475e+05 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 1.319475e+05 1.319475e+05 0.00 NULL
2015 Nyc Police Pension Fund Community Assistant 34072.82637 4.088739e+05 9548.10 7.956750e+02 186.755 382.75 12 1.867550e+02 2241.06 4.184220e+05 4.111150e+05 7307.04 NULL
2015 Nyc Police Pension Fund Community Associate 43316.56573 1.472763e+06 46072.32 1.355068e+03 293.645 1503.25 34 2.936450e+02 9983.93 1.518836e+06 1.482747e+06 36088.39 NULL
2015 Nyc Police Pension Fund Community Coordinator 69783.87500 5.582710e+05 16391.11 2.048889e+03 9.775 412.75 8 9.775000e+00 78.20 5.746621e+05 5.583492e+05 16312.91 NULL
2015 Nyc Police Pension Fund Computer Associate 87208.00000 8.720800e+04 8838.39 8.838390e+03 8838.390 143.00 1 8.838390e+03 8838.39 9.604639e+04 9.604639e+04 0.00 NULL
2015 Nyc Police Pension Fund Computer Programmer Analyst 62000.00000 6.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.200000e+04 6.200000e+04 0.00 NULL
2015 Nyc Police Pension Fund Computer Specialist 111253.40000 5.562670e+05 24458.33 4.891666e+03 0.000 305.00 5 0.000000e+00 0.00 5.807253e+05 5.562670e+05 24458.33 NULL
2015 Nyc Police Pension Fund Computer Systems Manager 173682.25000 6.947290e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.947290e+05 6.947290e+05 0.00 NULL
2015 Nyc Police Pension Fund Deputy Director 185380.00000 3.707600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.707600e+05 3.707600e+05 0.00 NULL
2015 Nyc Police Pension Fund Executive Agency Counsel 97617.00000 9.761700e+04 898.98 8.989800e+02 898.980 11.25 1 8.989800e+02 898.98 9.851598e+04 9.851598e+04 0.00 NULL
2015 Nyc Police Pension Fund Executive Director 200847.00000 2.008470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.008470e+05 2.008470e+05 0.00 NULL
2015 Nyc Police Pension Fund Management Auditor 66089.50000 1.321790e+05 29.78 1.489000e+01 14.890 0.00 2 1.489000e+01 29.78 1.322088e+05 1.322088e+05 0.00 NULL
2015 Nyc Police Pension Fund Paralegal Aide 48019.00000 4.801900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.801900e+04 4.801900e+04 0.00 NULL
2015 Nyc Police Pension Fund Principal Administrative Associate 63301.75000 5.064140e+05 23928.55 2.991069e+03 1653.530 581.75 8 1.653530e+03 13228.24 5.303426e+05 5.196422e+05 10700.31 NULL
2015 Nyc Police Pension Fund Secretary To The Executive Director 158098.00000 1.580980e+05 1235.96 1.235960e+03 1235.960 9.53 1 1.235960e+03 1235.96 1.593340e+05 1.593340e+05 0.00 NULL
2015 Nyc Police Pension Fund Summer Graduate Intern 1899.75000 1.899750e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.899750e+03 1.899750e+03 0.00 NULL
2015 Nyc Police Pension Fund Supervisor Of Office Machine Operations 58870.00000 1.177400e+05 7517.14 3.758570e+03 3758.570 186.00 2 3.758570e+03 7517.14 1.252571e+05 1.252571e+05 0.00 NULL
2015 Off Of Payroll Administration Accountant 62415.00000 3.120750e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.120750e+05 3.120750e+05 0.00 NULL
2015 Off Of Payroll Administration Adm Manager-Non-Mgrl 87433.66667 2.623010e+05 28.59 9.530000e+00 0.000 0.00 3 0.000000e+00 0.00 2.623296e+05 2.623010e+05 28.59 NULL
2015 Off Of Payroll Administration Admin Contract Specialist 112595.00000 1.125950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.125950e+05 1.125950e+05 0.00 NULL
2015 Off Of Payroll Administration Administrative Accountant 110503.33333 6.630200e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.630200e+05 6.630200e+05 0.00 NULL
2015 Off Of Payroll Administration Administrative Procurement Analyst 113917.00000 1.139170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.139170e+05 1.139170e+05 0.00 NULL
2015 Off Of Payroll Administration Administrative Staff Analyst 101999.73684 1.937995e+06 1480.44 7.791789e+01 0.000 34.50 19 0.000000e+00 0.00 1.939475e+06 1.937995e+06 1480.44 NULL
2015 Off Of Payroll Administration Agency Attorney 104079.50000 2.081590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.081590e+05 2.081590e+05 0.00 NULL
2015 Off Of Payroll Administration Associate Executive Director 193884.00000 1.938840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.938840e+05 1.938840e+05 0.00 NULL
2015 Off Of Payroll Administration Associate Staff Analyst 73763.50000 8.851620e+05 164.84 1.373667e+01 0.000 4.00 12 0.000000e+00 0.00 8.853268e+05 8.851620e+05 164.84 NULL
2015 Off Of Payroll Administration Bookkeeper 37532.66667 1.125980e+05 564.58 1.881933e+02 0.000 16.00 3 0.000000e+00 0.00 1.131626e+05 1.125980e+05 564.58 NULL
2015 Off Of Payroll Administration Certified It Developer 109413.00000 1.094130e+05 17.19 1.719000e+01 17.190 0.00 1 1.719000e+01 17.19 1.094302e+05 1.094302e+05 0.00 NULL
2015 Off Of Payroll Administration Clerical Associate 39897.21414 1.117122e+06 10942.21 3.907932e+02 0.000 369.50 28 0.000000e+00 0.00 1.128064e+06 1.117122e+06 10942.21 NULL
2015 Off Of Payroll Administration Community Associate 51777.00000 2.071080e+05 104.10 2.602500e+01 0.000 3.75 4 0.000000e+00 0.00 2.072121e+05 2.071080e+05 104.10 NULL
2015 Off Of Payroll Administration Computer Aide-Non-Spvr 41579.00000 4.157900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.157900e+04 4.157900e+04 0.00 NULL
2015 Off Of Payroll Administration Computer Associate 66817.45000 1.336349e+06 6525.70 3.262850e+02 3.110 137.50 20 3.110000e+00 62.20 1.342875e+06 1.336411e+06 6463.50 NULL
2015 Off Of Payroll Administration Computer Programmer Analyst 62122.00000 1.242440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.242440e+05 1.242440e+05 0.00 NULL
2015 Off Of Payroll Administration Computer Specialist 92038.66667 1.932812e+06 7865.12 3.745295e+02 0.000 115.50 21 0.000000e+00 0.00 1.940677e+06 1.932812e+06 7865.12 NULL
2015 Off Of Payroll Administration Computer Systems Manager 122364.20000 2.447284e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 2.447284e+06 2.447284e+06 0.00 NULL
2015 Off Of Payroll Administration Custodian 53777.00000 5.377700e+04 2043.63 2.043630e+03 2043.630 49.00 1 2.043630e+03 2043.63 5.582063e+04 5.582063e+04 0.00 NULL
2015 Off Of Payroll Administration Deputy Executive Director 193960.00000 1.939600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.939600e+05 1.939600e+05 0.00 NULL
2015 Off Of Payroll Administration Executive Agency Counsel 182307.00000 1.823070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.823070e+05 1.823070e+05 0.00 NULL
2015 Off Of Payroll Administration Management Auditor 69380.16667 4.162810e+05 5782.75 9.637917e+02 0.000 156.50 6 0.000000e+00 0.00 4.220638e+05 4.162810e+05 5782.75 NULL
2015 Off Of Payroll Administration Principal Administrative Associate 59297.91304 1.363852e+06 11813.83 5.136448e+02 0.000 326.00 23 0.000000e+00 0.00 1.375666e+06 1.363852e+06 11813.83 NULL
2015 Off Of Payroll Administration Public Records Aide 44884.00000 4.488400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.488400e+04 4.488400e+04 0.00 NULL
2015 Off Of Payroll Administration Staff Analyst 59376.50000 5.937650e+05 4091.19 4.091190e+02 0.000 92.25 10 0.000000e+00 0.00 5.978562e+05 5.937650e+05 4091.19 NULL
2015 Office Of Collective Bargainin Administrative Staff Analyst 118000.00000 1.180000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.180000e+05 1.180000e+05 0.00 NULL
2015 Office Of Collective Bargainin Certified Local Area Network Administrator 80257.00000 8.025700e+04 10.28 1.028000e+01 10.280 0.00 1 1.028000e+01 10.28 8.026728e+04 8.026728e+04 0.00 NULL
2015 Office Of Collective Bargainin Clerical Associate 42238.00000 4.223800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.223800e+04 4.223800e+04 0.00 NULL
2015 Office Of Collective Bargainin Computer Systems Manager 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2015 Office Of Collective Bargainin Deputy Director 143521.00000 1.435210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.435210e+05 1.435210e+05 0.00 NULL
2015 Office Of Collective Bargainin Director Of Information And Research 118000.00000 1.180000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.180000e+05 1.180000e+05 0.00 NULL
2015 Office Of Collective Bargainin Director Of The Office Of Collective Bargaining 214413.00000 2.144130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144130e+05 2.144130e+05 0.00 NULL
2015 Office Of Collective Bargainin Executive Assistant To The Director 93000.00000 9.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.300000e+04 9.300000e+04 0.00 NULL
2015 Office Of Collective Bargainin Labor Relations Trial Examiner 101832.14286 7.128250e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.128250e+05 7.128250e+05 0.00 NULL
2015 Office Of Collective Bargainin Principal Administrative Associate 60764.00000 6.076400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.076400e+04 6.076400e+04 0.00 NULL
2015 Office Of Collective Bargainin Secretary To The Deputy Chair 42330.00000 8.466000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.466000e+04 8.466000e+04 0.00 NULL
2015 Office Of Collective Bargainin Secy To The Director Of Collective Bargaining 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2015 Office Of Collective Bargainin Staff Analyst 60000.00000 6.000000e+04 966.36 9.663600e+02 966.360 0.00 1 9.663600e+02 966.36 6.096636e+04 6.096636e+04 0.00 NULL
2015 Office Of Emergency Management Adm Manager-Non-Mgrl 84920.00000 8.492000e+04 1533.84 1.533840e+03 1533.840 32.00 1 1.533840e+03 1533.84 8.645384e+04 8.645384e+04 0.00 NULL
2015 Office Of Emergency Management Administration Public Record Officer 81569.00000 8.156900e+04 102.06 1.020600e+02 102.060 0.00 1 1.020600e+02 102.06 8.167106e+04 8.167106e+04 0.00 NULL
2015 Office Of Emergency Management Administrative Manager 182997.00000 1.829970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.829970e+05 1.829970e+05 0.00 NULL
2015 Office Of Emergency Management Administrative Procurement Analyst 98271.00000 9.827100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.827100e+04 9.827100e+04 0.00 NULL
2015 Office Of Emergency Management Administrative Public Information Specialist 99347.00000 9.934700e+04 4685.45 4.685450e+03 4685.450 80.25 1 4.685450e+03 4685.45 1.040324e+05 1.040324e+05 0.00 NULL
2015 Office Of Emergency Management Administrative Staff Analyst 131730.33333 3.951910e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.951910e+05 3.951910e+05 0.00 NULL
2015 Office Of Emergency Management Agency Attorney 79753.33333 2.392600e+05 3891.69 1.297230e+03 216.580 76.50 3 2.165800e+02 649.74 2.431517e+05 2.399097e+05 3241.95 NULL
2015 Office Of Emergency Management Assistant Urban Designer 73863.00000 7.386300e+04 106.10 1.061000e+02 106.100 0.00 1 1.061000e+02 106.10 7.396910e+04 7.396910e+04 0.00 NULL
2015 Office Of Emergency Management Associate Public Information Specialist 60124.00000 1.202480e+05 5.82 2.910000e+00 2.910 0.00 2 2.910000e+00 5.82 1.202538e+05 1.202538e+05 0.00 NULL
2015 Office Of Emergency Management Certified It Administrator 118173.00000 1.181730e+05 2210.36 2.210360e+03 2210.360 21.00 1 2.210360e+03 2210.36 1.203834e+05 1.203834e+05 0.00 NULL
2015 Office Of Emergency Management Commissioner Of Emergency Management 209796.50000 4.195930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.195930e+05 4.195930e+05 0.00 NULL
2015 Office Of Emergency Management Community Associate 51500.00000 1.545000e+05 10334.80 3.444933e+03 4025.530 356.50 3 3.444933e+03 10334.80 1.648348e+05 1.648348e+05 0.00 NULL
2015 Office Of Emergency Management Community Coordinator 54679.89125 4.374391e+05 24854.71 3.106839e+03 90.395 580.75 8 9.039500e+01 723.16 4.622938e+05 4.381623e+05 24131.55 NULL
2015 Office Of Emergency Management Computer Systems Manager 111207.00000 2.224140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.224140e+05 2.224140e+05 0.00 NULL
2015 Office Of Emergency Management Deputy Commissioner 165664.00000 1.656640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.656640e+05 1.656640e+05 0.00 NULL
2015 Office Of Emergency Management Emergency Preparedness Manager 98229.35593 5.795532e+06 24502.44 4.152956e+02 0.000 377.75 59 0.000000e+00 0.00 5.820034e+06 5.795532e+06 24502.44 NULL
2015 Office Of Emergency Management Emergency Preparedness Specialist 65316.52714 6.727602e+06 395983.77 3.844503e+03 2010.140 8852.50 103 2.010140e+03 207044.42 7.123586e+06 6.934647e+06 188939.35 NULL
2015 Office Of Emergency Management Executive Agency Counsel 136889.00000 2.737780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.737780e+05 2.737780e+05 0.00 NULL
2015 Office Of Emergency Management First Deputy Commissioner 203922.00000 2.039220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.039220e+05 2.039220e+05 0.00 NULL
2015 Office Of Emergency Management Public Records Officer 50750.00000 5.075000e+04 1930.34 1.930340e+03 1930.340 48.75 1 1.930340e+03 1930.34 5.268034e+04 5.268034e+04 0.00 NULL
2015 Office Of Emergency Management Secretary To The Commissioner 86603.00000 8.660300e+04 918.84 9.188400e+02 918.840 6.00 1 9.188400e+02 918.84 8.752184e+04 8.752184e+04 0.00 NULL
2015 Office Of Labor Relations Accountant 62223.00000 2.488920e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.488920e+05 2.488920e+05 0.00 NULL
2015 Office Of Labor Relations Administrative Manager 93588.16667 5.615290e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.615290e+05 5.615290e+05 0.00 NULL
2015 Office Of Labor Relations Administrative Staff Analyst 125871.85714 8.811030e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.811030e+05 8.811030e+05 0.00 NULL
2015 Office Of Labor Relations Agency Chief Contracting Officer 81012.00000 8.101200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.101200e+04 8.101200e+04 0.00 NULL
2015 Office Of Labor Relations Assistant Commissioner Of Labor Relations 148060.80000 7.403040e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.403040e+05 7.403040e+05 0.00 NULL
2015 Office Of Labor Relations Associate Counsel 136860.00000 1.368600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.368600e+05 1.368600e+05 0.00 NULL
2015 Office Of Labor Relations Associate Labor Relations Analyst 77544.00000 7.754400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.754400e+04 7.754400e+04 0.00 NULL
2015 Office Of Labor Relations Associate Staff Analyst 68466.00000 2.053980e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.053980e+05 2.053980e+05 0.00 NULL
2015 Office Of Labor Relations Bookkeeper 51160.00000 5.116000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.116000e+04 5.116000e+04 0.00 NULL
2015 Office Of Labor Relations Clerical Associate 40874.58333 4.904950e+05 0.36 3.000000e-02 0.000 0.00 12 0.000000e+00 0.00 4.904954e+05 4.904950e+05 0.36 NULL
2015 Office Of Labor Relations Commissioner Of Labor Relations 214413.00000 2.144130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144130e+05 2.144130e+05 0.00 NULL
2015 Office Of Labor Relations Community Assistant 31460.61000 2.831455e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 2.831455e+05 2.831455e+05 0.00 NULL
2015 Office Of Labor Relations Community Associate 42384.12500 3.390730e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 3.390730e+05 3.390730e+05 0.00 NULL
2015 Office Of Labor Relations Computer Associate 86955.00000 8.695500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.695500e+04 8.695500e+04 0.00 NULL
2015 Office Of Labor Relations Computer Specialist 79509.88500 7.950988e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.950988e+04 7.950988e+04 0.00 NULL
2015 Office Of Labor Relations Computer Systems Manager 129098.50000 2.581970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.581970e+05 2.581970e+05 0.00 NULL
2015 Office Of Labor Relations Counsel 181678.00000 1.816780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.816780e+05 1.816780e+05 0.00 NULL
2015 Office Of Labor Relations Customer Information Representative 35574.00000 3.557400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.557400e+04 3.557400e+04 0.00 NULL
2015 Office Of Labor Relations Deputy Assistant Counsel 81481.62500 6.518530e+05 1.64 2.050000e-01 0.000 0.00 8 0.000000e+00 0.00 6.518546e+05 6.518530e+05 1.64 NULL
2015 Office Of Labor Relations Deputy Commissioner Of Labor Relations 188392.00000 5.651760e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.651760e+05 5.651760e+05 0.00 NULL
2015 Office Of Labor Relations Director Employee Assistance Program 119610.00000 1.196100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.196100e+05 1.196100e+05 0.00 NULL
2015 Office Of Labor Relations Employee Assistance Program Specialist 48079.93247 5.769592e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 5.769592e+05 5.769592e+05 0.00 NULL
2015 Office Of Labor Relations Employee Health Benefits Program Director 192926.00000 1.929260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.929260e+05 1.929260e+05 0.00 NULL
2015 Office Of Labor Relations Executive Agency Counsel 142086.00000 1.420860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.420860e+05 1.420860e+05 0.00 NULL
2015 Office Of Labor Relations Insurance Advisor 67946.26700 2.038388e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.038388e+05 2.038388e+05 0.00 NULL
2015 Office Of Labor Relations Labor Relations Analyst 60492.80000 3.024640e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.024640e+05 3.024640e+05 0.00 NULL
2015 Office Of Labor Relations Legal Secretarial Assistant 37245.00000 3.724500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.724500e+04 3.724500e+04 0.00 NULL
2015 Office Of Labor Relations Management Auditor Trainee 40055.00000 1.201650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.201650e+05 1.201650e+05 0.00 NULL
2015 Office Of Labor Relations Principal Administrative Associate 57021.41703 8.553213e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 8.553213e+05 8.553213e+05 0.00 NULL
2015 Office Of Labor Relations Secretary 41157.00000 2.057850e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.057850e+05 2.057850e+05 0.00 NULL
2015 Office Of Labor Relations Secretary To The Commissioner Of Labor Relations 88825.00000 8.882500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.882500e+04 8.882500e+04 0.00 NULL
2015 Office Of Labor Relations Secretary To The First Deputy Commissioner 54823.00000 5.482300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.482300e+04 5.482300e+04 0.00 NULL
2015 Office Of Labor Relations Staff Analyst 61617.00000 6.161700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.161700e+04 6.161700e+04 0.00 NULL
2015 Office Of Labor Relations Supervising Computer Service Technician 80094.00000 8.009400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.009400e+04 8.009400e+04 0.00 NULL
2015 Office Of Labor Relations Supervisor Of Office Machine Operations 56134.00000 5.613400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.613400e+04 5.613400e+04 0.00 NULL
2015 Office Of Labor Relations Tests And Measurement Specialist 76416.00000 7.641600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.641600e+04 7.641600e+04 0.00 NULL
2015 Office Of Management & Budget Adm Manager-Non-Mgrl 73403.00000 7.340300e+04 60.05 6.005000e+01 60.050 0.00 1 6.005000e+01 60.05 7.346305e+04 7.346305e+04 0.00 NULL
2015 Office Of Management & Budget Administrative Manager 160743.00000 1.607430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.607430e+05 1.607430e+05 0.00 NULL
2015 Office Of Management & Budget Administrative Project Manager 172550.00000 1.725500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.725500e+05 1.725500e+05 0.00 NULL
2015 Office Of Management & Budget Administrative Staff Analyst 144258.00000 1.586838e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.586838e+06 1.586838e+06 0.00 NULL
2015 Office Of Management & Budget Associate Staff Analyst 69842.00000 6.984200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.984200e+04 6.984200e+04 0.00 NULL
2015 Office Of Management & Budget Budget Analyst 77839.25226 3.082434e+07 612082.71 1.545663e+03 79.760 15329.25 396 7.976000e+01 31584.96 3.143643e+07 3.085593e+07 580497.75 NULL
2015 Office Of Management & Budget College Aide 6934.43600 3.467218e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.467218e+04 3.467218e+04 0.00 NULL
2015 Office Of Management & Budget Community Associate 33589.00000 3.358900e+04 1851.15 1.851150e+03 1851.150 90.25 1 1.851150e+03 1851.15 3.544015e+04 3.544015e+04 0.00 NULL
2015 Office Of Management & Budget Computer Operations Manager 117231.00000 1.172310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.172310e+05 1.172310e+05 0.00 NULL
2015 Office Of Management & Budget Computer Specialist 72508.00000 7.250800e+04 458.32 4.583200e+02 458.320 8.25 1 4.583200e+02 458.32 7.296632e+04 7.296632e+04 0.00 NULL
2015 Office Of Management & Budget Computer Systems Manager 146719.60000 7.335980e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.335980e+05 7.335980e+05 0.00 NULL
2015 Office Of Management & Budget Deputy Director Of Management & Budget 191533.25000 7.661330e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.661330e+05 7.661330e+05 0.00 NULL
2015 Office Of Management & Budget Deputy General Counsel 134307.00000 1.343070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.343070e+05 1.343070e+05 0.00 NULL
2015 Office Of Management & Budget Director Of Financing Policy Coordination 196560.00000 1.965600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.965600e+05 1.965600e+05 0.00 NULL
2015 Office Of Management & Budget Director Of Management & Budget 214413.00000 2.144130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144130e+05 2.144130e+05 0.00 NULL
2015 Office Of Management & Budget Director Of Public Affairs 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2015 Office Of Management & Budget Executive Agency Counsel 180393.00000 3.607860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.607860e+05 3.607860e+05 0.00 NULL
2015 Office Of Management & Budget Executive Assistant To The Director Of Management & Budget 203922.00000 2.039220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.039220e+05 2.039220e+05 0.00 NULL
2015 Office Of Management & Budget Statistical Secretary 58491.66667 1.228325e+06 12008.19 5.718186e+02 0.000 307.50 21 0.000000e+00 0.00 1.240333e+06 1.228325e+06 12008.19 NULL
2015 Office Of Management & Budget Summer Graduate Intern 3062.44800 1.531224e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.531224e+04 1.531224e+04 0.00 NULL
2015 Office Of Management & Budget Supervisor Of Office Machine Operations 43915.00000 4.391500e+04 2816.26 2.816260e+03 2816.260 92.75 1 2.816260e+03 2816.26 4.673126e+04 4.673126e+04 0.00 NULL
2015 Office Of The Actuary Actuarial Specialist Level I 64857.91304 1.491732e+06 106427.99 4.627304e+03 3542.520 2361.50 23 3.542520e+03 81477.96 1.598160e+06 1.573210e+06 24950.03 NULL
2015 Office Of The Actuary Actuarial Specialist Level Ii, Oj 103922.00000 2.078440e+05 8549.12 4.274560e+03 4274.560 150.00 2 4.274560e+03 8549.12 2.163931e+05 2.163931e+05 0.00 NULL
2015 Office Of The Actuary Administrative Actuary 174577.50000 1.047465e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.047465e+06 1.047465e+06 0.00 NULL
2015 Office Of The Actuary Administrative Staff Analyst 107587.00000 1.075870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.075870e+05 1.075870e+05 0.00 NULL
2015 Office Of The Actuary Certified Local Area Network Administrator 83099.00000 8.309900e+04 5235.11 5.235110e+03 5235.110 109.50 1 5.235110e+03 5235.11 8.833411e+04 8.833411e+04 0.00 NULL
2015 Office Of The Actuary Chief Actuary 260378.50000 5.207570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.207570e+05 5.207570e+05 0.00 NULL
2015 Office Of The Actuary Clerical Associate 43676.00000 4.367600e+04 16.86 1.686000e+01 16.860 0.00 1 1.686000e+01 16.86 4.369286e+04 4.369286e+04 0.00 NULL
2015 Office Of The Actuary College Aide 1525.65000 3.051300e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.051300e+03 3.051300e+03 0.00 NULL
2015 Office Of The Actuary Procurement Analyst 46475.00000 4.647500e+04 54.83 5.483000e+01 54.830 2.00 1 5.483000e+01 54.83 4.652983e+04 4.652983e+04 0.00 NULL
2015 Office Of The Actuary Secretary 52798.00000 5.279800e+04 11420.02 1.142002e+04 11420.020 311.00 1 1.142002e+04 11420.02 6.421802e+04 6.421802e+04 0.00 NULL
2015 Office Of The Actuary Secretary To The Chief Actuary 67975.00000 6.797500e+04 25963.66 2.596366e+04 25963.660 533.50 1 2.596366e+04 25963.66 9.393866e+04 9.393866e+04 0.00 NULL
2015 Office Of The Comptroller ?Public Relations Assistant 45450.00000 4.545000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.545000e+04 4.545000e+04 0.00 NULL
2015 Office Of The Comptroller Accountant 53334.69306 5.866816e+06 88191.24 8.017385e+02 0.000 1852.00 110 0.000000e+00 0.00 5.955007e+06 5.866816e+06 88191.24 NULL
2015 Office Of The Comptroller Adm Manager-Non-Mgrl 66654.16176 4.532483e+06 7607.94 1.118815e+02 0.000 162.75 68 0.000000e+00 0.00 4.540091e+06 4.532483e+06 7607.94 NULL
2015 Office Of The Comptroller Administrative Accountant 108767.88000 2.719197e+06 2971.13 1.188452e+02 0.000 82.25 25 0.000000e+00 0.00 2.722168e+06 2.719197e+06 2971.13 NULL
2015 Office Of The Comptroller Administrative Architect 134779.00000 1.347790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.347790e+05 1.347790e+05 0.00 NULL
2015 Office Of The Comptroller Administrative Assistant To The Comptroller 162850.00000 1.628500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.628500e+05 1.628500e+05 0.00 NULL
2015 Office Of The Comptroller Administrative Claim Examiner 86876.39937 2.780045e+06 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 2.780045e+06 2.780045e+06 0.00 NULL
2015 Office Of The Comptroller Administrative Engineer 106453.19150 2.129064e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 2.129064e+06 2.129064e+06 0.00 NULL
2015 Office Of The Comptroller Administrative Graphic Artist 71050.00000 7.105000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.105000e+04 7.105000e+04 0.00 NULL
2015 Office Of The Comptroller Administrative Management Auditor 111658.75000 1.339905e+06 8.90 7.416667e-01 0.000 0.00 12 0.000000e+00 0.00 1.339914e+06 1.339905e+06 8.90 NULL
2015 Office Of The Comptroller Administrative Manager 102765.40426 4.829974e+06 0.40 8.510600e-03 0.000 0.00 47 0.000000e+00 0.00 4.829974e+06 4.829974e+06 0.40 NULL
2015 Office Of The Comptroller Administrative Procurement Analyst 89273.45455 9.820080e+05 6039.66 5.490600e+02 0.000 222.25 11 0.000000e+00 0.00 9.880477e+05 9.820080e+05 6039.66 NULL
2015 Office Of The Comptroller Administrative Project Manager 101662.00000 6.099720e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.099720e+05 6.099720e+05 0.00 NULL
2015 Office Of The Comptroller Administrative Public Information Specialist 84495.11111 7.604560e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.604560e+05 7.604560e+05 0.00 NULL
2015 Office Of The Comptroller Administrative Staff Analyst 110642.13793 6.417244e+06 78.23 1.348793e+00 0.000 1.75 58 0.000000e+00 0.00 6.417322e+06 6.417244e+06 78.23 NULL
2015 Office Of The Comptroller Administrative Supervisor Of Building Maintenance 76000.00000 7.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.600000e+04 7.600000e+04 0.00 NULL
2015 Office Of The Comptroller Agency Attorney 79991.83333 4.799510e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.799510e+05 4.799510e+05 0.00 NULL
2015 Office Of The Comptroller Assistant Budget Analyst 67233.00000 6.723300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.723300e+04 6.723300e+04 0.00 NULL
2015 Office Of The Comptroller Assistant Civil Engineer 63000.00000 6.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.300000e+04 6.300000e+04 0.00 NULL
2015 Office Of The Comptroller Assistant Secretary To The Comptroller 49720.00000 9.944000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.944000e+04 9.944000e+04 0.00 NULL
2015 Office Of The Comptroller Assistant To The Comptroller 183957.00000 1.839570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.839570e+05 1.839570e+05 0.00 NULL
2015 Office Of The Comptroller Associate Investigator 56805.00000 5.680500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.680500e+04 5.680500e+04 0.00 NULL
2015 Office Of The Comptroller Associate Project Manager 85576.81818 9.413450e+05 6343.46 5.766782e+02 0.000 77.25 11 0.000000e+00 0.00 9.476885e+05 9.413450e+05 6343.46 NULL
2015 Office Of The Comptroller Associate Public Information Specialist 60924.75000 2.436990e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.436990e+05 2.436990e+05 0.00 NULL
2015 Office Of The Comptroller Associate Staff Analyst 73498.91667 8.819870e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 8.819870e+05 8.819870e+05 0.00 NULL
2015 Office Of The Comptroller Bookkeeper 40947.43289 7.780012e+05 32.58 1.714737e+00 0.000 0.00 19 0.000000e+00 0.00 7.780338e+05 7.780012e+05 32.58 NULL
2015 Office Of The Comptroller Budget Analyst 63364.00000 3.168200e+05 4400.03 8.800060e+02 44.720 118.25 5 4.472000e+01 223.60 3.212200e+05 3.170436e+05 4176.43 NULL
2015 Office Of The Comptroller Business Promotion Coordinator 52958.33333 4.766250e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.766250e+05 4.766250e+05 0.00 NULL
2015 Office Of The Comptroller City Custodial Assistant 36933.50000 2.216010e+05 25597.85 4.266308e+03 1737.385 937.50 6 1.737385e+03 10424.31 2.471989e+05 2.320253e+05 15173.54 NULL
2015 Office Of The Comptroller Claim Specialist 57489.71053 2.184609e+06 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 2.184609e+06 2.184609e+06 0.00 NULL
2015 Office Of The Comptroller Clerical Aide 22451.66000 4.490332e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.490332e+04 4.490332e+04 0.00 NULL
2015 Office Of The Comptroller Clerical Associate 44016.66667 2.112800e+06 8240.04 1.716675e+02 0.000 212.28 48 0.000000e+00 0.00 2.121040e+06 2.112800e+06 8240.04 NULL
2015 Office Of The Comptroller College Aide - Assignment Levels Ii And Iii 5448.31429 3.813820e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.813820e+04 3.813820e+04 0.00 NULL
2015 Office Of The Comptroller Community Assistant 23158.00000 6.947400e+04 0.83 2.766667e-01 0.000 0.00 3 0.000000e+00 0.00 6.947483e+04 6.947400e+04 0.83 NULL
2015 Office Of The Comptroller Community Associate 44471.36364 4.891850e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 4.891850e+05 4.891850e+05 0.00 NULL
2015 Office Of The Comptroller Community Coordinator 57917.25000 2.316690e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.316690e+05 2.316690e+05 0.00 NULL
2015 Office Of The Comptroller Community Service Aide 14948.50000 2.989700e+04 8708.76 4.354380e+03 4354.380 397.25 2 4.354380e+03 8708.76 3.860576e+04 3.860576e+04 0.00 NULL
2015 Office Of The Comptroller Comptroller 185000.00000 1.850000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.850000e+05 1.850000e+05 0.00 NULL
2015 Office Of The Comptroller Computer Aide-Non-Spvr 46394.54545 5.103400e+05 12479.38 1.134489e+03 0.000 316.25 11 0.000000e+00 0.00 5.228194e+05 5.103400e+05 12479.38 NULL
2015 Office Of The Comptroller Computer Associate 66094.27273 7.270370e+05 28124.37 2.556761e+03 0.000 505.00 11 0.000000e+00 0.00 7.551614e+05 7.270370e+05 28124.37 NULL
2015 Office Of The Comptroller Computer Operations Manager 163299.50000 3.265990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.265990e+05 3.265990e+05 0.00 NULL
2015 Office Of The Comptroller Computer Programmer Analyst 55703.00000 1.671090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.671090e+05 1.671090e+05 0.00 NULL
2015 Office Of The Comptroller Computer Service Technician 43036.00000 8.607200e+04 657.62 3.288100e+02 328.810 11.50 2 3.288100e+02 657.62 8.672962e+04 8.672962e+04 0.00 NULL
2015 Office Of The Comptroller Computer Specialist 86302.90909 9.493320e+05 1669.94 1.518127e+02 0.000 30.25 11 0.000000e+00 0.00 9.510019e+05 9.493320e+05 1669.94 NULL
2015 Office Of The Comptroller Computer Systems Manager 111660.06667 1.674901e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.674901e+06 1.674901e+06 0.00 NULL
2015 Office Of The Comptroller Confidential Assistant To The Comptroller 123065.00000 1.230650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.230650e+05 1.230650e+05 0.00 NULL
2015 Office Of The Comptroller Confidential Investigator 60278.00000 2.411120e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.411120e+05 2.411120e+05 0.00 NULL
2015 Office Of The Comptroller Confidential Strategy Planner 70389.25000 2.815570e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.815570e+05 2.815570e+05 0.00 NULL
2015 Office Of The Comptroller Construction Project Manager 92954.00000 9.295400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.295400e+04 9.295400e+04 0.00 NULL
2015 Office Of The Comptroller Construction Project Manager Intern 52889.50000 1.057790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.057790e+05 1.057790e+05 0.00 NULL
2015 Office Of The Comptroller Custodian 60394.00000 1.811820e+05 25444.19 8.481397e+03 5943.780 451.00 3 5.943780e+03 17831.34 2.066262e+05 1.990133e+05 7612.85 NULL
2015 Office Of The Comptroller Director Of Audits 193314.00000 1.933140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.933140e+05 1.933140e+05 0.00 NULL
2015 Office Of The Comptroller Economist 58172.06250 9.307530e+05 12.24 7.650000e-01 0.000 0.00 16 0.000000e+00 0.00 9.307652e+05 9.307530e+05 12.24 NULL
2015 Office Of The Comptroller Executive Agency Counsel 128070.28571 3.585968e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 3.585968e+06 3.585968e+06 0.00 NULL
2015 Office Of The Comptroller Executive Assistant To The Comptroller 146454.00000 2.929080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.929080e+05 2.929080e+05 0.00 NULL
2015 Office Of The Comptroller First Deputy Comptroller 200874.00000 2.008740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.008740e+05 2.008740e+05 0.00 NULL
2015 Office Of The Comptroller Fraud Investigator 66111.00000 1.322220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.322220e+05 1.322220e+05 0.00 NULL
2015 Office Of The Comptroller Graphic Artist 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2015 Office Of The Comptroller Investment Analyst 55909.20000 1.956822e+06 43482.01 1.242343e+03 14.780 1167.00 35 1.478000e+01 517.30 2.000304e+06 1.957339e+06 42964.71 NULL
2015 Office Of The Comptroller Management Auditor 66478.76506 4.653514e+06 57681.96 8.240280e+02 0.000 1130.75 70 0.000000e+00 0.00 4.711196e+06 4.653514e+06 57681.96 NULL
2015 Office Of The Comptroller Management Auditor Trainee 43820.35000 8.764070e+05 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 8.764070e+05 8.764070e+05 0.00 NULL
2015 Office Of The Comptroller Office Machine Aide 28387.94633 8.516384e+04 2.81 9.366667e-01 0.000 0.00 3 0.000000e+00 0.00 8.516665e+04 8.516384e+04 2.81 NULL
2015 Office Of The Comptroller Pension Investment Advisor 230226.00000 2.302260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.302260e+05 2.302260e+05 0.00 NULL
2015 Office Of The Comptroller Principal Administrative Associate 56437.09721 1.862424e+06 26151.10 7.924576e+02 0.000 705.50 33 0.000000e+00 0.00 1.888575e+06 1.862424e+06 26151.10 NULL
2015 Office Of The Comptroller Principal Investment Officer 202968.00000 2.029680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.029680e+05 2.029680e+05 0.00 NULL
2015 Office Of The Comptroller Procurement Analyst 57984.00000 6.958080e+05 14004.02 1.167002e+03 0.000 360.00 12 0.000000e+00 0.00 7.098120e+05 6.958080e+05 14004.02 NULL
2015 Office Of The Comptroller Public Records Aide 23999.36847 9.599747e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 9.599747e+04 9.599747e+04 0.00 NULL
2015 Office Of The Comptroller Public Records Officer 62697.00000 6.269700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.269700e+04 6.269700e+04 0.00 NULL
2015 Office Of The Comptroller Radio And Television Operator 56947.00000 5.694700e+04 3255.86 3.255860e+03 3255.860 84.75 1 3.255860e+03 3255.86 6.020286e+04 6.020286e+04 0.00 NULL
2015 Office Of The Comptroller Research And Liaison Coordinator 111313.00000 1.224443e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.224443e+06 1.224443e+06 0.00 NULL
2015 Office Of The Comptroller Research Assistant 44839.38250 1.345181e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.345181e+05 1.345181e+05 0.00 NULL
2015 Office Of The Comptroller Second Deputy Comptroller 189653.00000 1.896530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.896530e+05 1.896530e+05 0.00 NULL
2015 Office Of The Comptroller Secretary 38721.00000 2.710470e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.710470e+05 2.710470e+05 0.00 NULL
2015 Office Of The Comptroller Secretary To The Comptroller 47506.00000 4.750600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.750600e+04 4.750600e+04 0.00 NULL
2015 Office Of The Comptroller Staff Analyst 58092.60000 2.904630e+05 13057.33 2.611466e+03 0.000 334.75 5 0.000000e+00 0.00 3.035203e+05 2.904630e+05 13057.33 NULL
2015 Office Of The Comptroller Staff Analyst Trainee 45166.13357 6.323259e+05 7349.26 5.249471e+02 0.000 179.75 14 0.000000e+00 0.00 6.396751e+05 6.323259e+05 7349.26 NULL
2015 Office Of The Comptroller Statistician 62875.00000 1.257500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.257500e+05 1.257500e+05 0.00 NULL
2015 Office Of The Comptroller Strategic Initiative Specialist 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2015 Office Of The Comptroller Summer College Intern 2003.87650 4.007753e+04 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 4.007753e+04 4.007753e+04 0.00 NULL
2015 Office Of The Comptroller Summer Graduate Intern 2524.33353 4.291367e+04 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 4.291367e+04 4.291367e+04 0.00 NULL
2015 Office Of The Comptroller Supervising Computer Service Technician 75991.00000 7.599100e+04 5231.22 5.231220e+03 5231.220 81.50 1 5.231220e+03 5231.22 8.122222e+04 8.122222e+04 0.00 NULL
2015 Office Of The Comptroller Supervisor Of Motor Transport 56253.50000 1.125070e+05 1483.04 7.415200e+02 741.520 35.50 2 7.415200e+02 1483.04 1.139900e+05 1.139900e+05 0.00 NULL
2015 Office Of The Comptroller Telecommunications Associate 81593.00000 8.159300e+04 3.86 3.860000e+00 3.860 0.00 1 3.860000e+00 3.86 8.159686e+04 8.159686e+04 0.00 NULL
2015 Office Of The Mayor Administrative Assistant To The Mayor 76000.00000 7.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.600000e+04 7.600000e+04 0.00 NULL
2015 Office Of The Mayor Administrative Business Promotion Coordinator 107748.50000 2.154970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.154970e+05 2.154970e+05 0.00 NULL
2015 Office Of The Mayor Administrative Manager 114269.75000 4.570790e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.570790e+05 4.570790e+05 0.00 NULL
2015 Office Of The Mayor Administrative Printing Services Manager 88366.00000 8.836600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.836600e+04 8.836600e+04 0.00 NULL
2015 Office Of The Mayor Administrative Public Information Specialist 86860.00000 8.686000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.686000e+04 8.686000e+04 0.00 NULL
2015 Office Of The Mayor Administrative Staff Analyst 123778.66667 1.114008e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.114008e+06 1.114008e+06 0.00 NULL
2015 Office Of The Mayor Assistant Housekeeper 74011.00000 7.401100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.401100e+04 7.401100e+04 0.00 NULL
2015 Office Of The Mayor Assistant Legislative Representative 86614.75000 6.929180e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.929180e+05 6.929180e+05 0.00 NULL
2015 Office Of The Mayor Assistant To The Deputy Mayor 181104.18182 1.992146e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.992146e+06 1.992146e+06 0.00 NULL
2015 Office Of The Mayor Assistant To The Mayor 165956.33333 9.957380e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.957380e+05 9.957380e+05 0.00 NULL
2015 Office Of The Mayor Associate Staff Analyst 75295.00000 7.529500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.529500e+04 7.529500e+04 0.00 NULL
2015 Office Of The Mayor Asst Dir Of Intergvnmental Reltns For The Albany Office 169783.50000 3.395670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.395670e+05 3.395670e+05 0.00 NULL
2015 Office Of The Mayor Asst Dir Of Intergvnmentl Relatns For The Washngtn Off 156863.00000 1.568630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.568630e+05 1.568630e+05 0.00 NULL
2015 Office Of The Mayor Asst Director Of Intergovermental Rel For City Legist Affs 167320.00000 1.673200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.673200e+05 1.673200e+05 0.00 NULL
2015 Office Of The Mayor Calendar Assistant 83325.00000 8.332500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.332500e+04 8.332500e+04 0.00 NULL
2015 Office Of The Mayor Clerical Associate 42664.83333 2.559890e+05 19061.82 3.176970e+03 2.425 418.00 6 2.425000e+00 14.55 2.750508e+05 2.560035e+05 19047.27 NULL
2015 Office Of The Mayor Commissioner, Un & Consular Corps Diplomatic Relations 200847.00000 2.008470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.008470e+05 2.008470e+05 0.00 NULL
2015 Office Of The Mayor Community Assistant 35784.00000 3.578400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.578400e+04 3.578400e+04 0.00 NULL
2015 Office Of The Mayor Community Associate 44035.50000 8.807100e+04 3.47 1.735000e+00 1.735 0.00 2 1.735000e+00 3.47 8.807447e+04 8.807447e+04 0.00 NULL
2015 Office Of The Mayor Computer Operations Manager 100453.66667 6.027220e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.027220e+05 6.027220e+05 0.00 NULL
2015 Office Of The Mayor Computer Systems Manager 146093.00000 1.460930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.460930e+05 1.460930e+05 0.00 NULL
2015 Office Of The Mayor Cook 102011.00000 1.020110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020110e+05 1.020110e+05 0.00 NULL
2015 Office Of The Mayor Coordinator Of Veterans’ Affairs 103430.00000 1.034300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.034300e+05 1.034300e+05 0.00 NULL
2015 Office Of The Mayor Deputy Director 172550.00000 1.725500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.725500e+05 1.725500e+05 0.00 NULL
2015 Office Of The Mayor Deputy Mayor 219790.00000 8.791600e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.791600e+05 8.791600e+05 0.00 NULL
2015 Office Of The Mayor Director Correspondence Services 110413.00000 1.104130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.104130e+05 1.104130e+05 0.00 NULL
2015 Office Of The Mayor Director Of Community Assistance Unit 200847.00000 2.008470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.008470e+05 2.008470e+05 0.00 NULL
2015 Office Of The Mayor Director Of Intergovernmental Relations 209000.00000 2.090000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.090000e+05 2.090000e+05 0.00 NULL
2015 Office Of The Mayor Director Of Scheduling 96733.00000 9.673300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.673300e+04 9.673300e+04 0.00 NULL
2015 Office Of The Mayor Director, Nyc Art Commission 172550.00000 1.725500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.725500e+05 1.725500e+05 0.00 NULL
2015 Office Of The Mayor Director, Office Of Operations 192406.50000 3.848130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.848130e+05 3.848130e+05 0.00 NULL
2015 Office Of The Mayor Executive Administrator Of Gracie Mansion 155174.00000 3.103480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.103480e+05 3.103480e+05 0.00 NULL
2015 Office Of The Mayor Executive Agency Counsel 124806.76471 2.121715e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.121715e+06 2.121715e+06 0.00 NULL
2015 Office Of The Mayor Executive Assistant-Midtown Enforcement 66076.01500 6.607601e+04 177.49 1.774900e+02 177.490 4.00 1 1.774900e+02 177.49 6.625351e+04 6.625351e+04 0.00 NULL
2015 Office Of The Mayor First Deputy Mayor 256819.00000 2.568190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.568190e+05 2.568190e+05 0.00 NULL
2015 Office Of The Mayor Fiscal Responsibility Officer 70985.00000 7.098500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.098500e+04 7.098500e+04 0.00 NULL
2015 Office Of The Mayor Legislative Aide 53886.00000 5.388600e+04 2493.09 2.493090e+03 2493.090 93.00 1 2.493090e+03 2493.09 5.637909e+04 5.637909e+04 0.00 NULL
2015 Office Of The Mayor Mayor 225000.00000 2.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.250000e+05 2.250000e+05 0.00 NULL
2015 Office Of The Mayor Mayoral Office Assistant 39672.21400 4.562305e+06 92274.67 8.023884e+02 33.030 3455.00 115 3.303000e+01 3798.45 4.654579e+06 4.566103e+06 88476.22 NULL
2015 Office Of The Mayor Mayoral Program Coordinator 61463.20000 1.536580e+06 26683.27 1.067331e+03 64.430 782.75 25 6.443000e+01 1610.75 1.563263e+06 1.538191e+06 25072.52 NULL
2015 Office Of The Mayor Press And Speech Aide 68171.00000 6.817100e+04 156.58 1.565800e+02 156.580 0.00 1 1.565800e+02 156.58 6.832758e+04 6.832758e+04 0.00 NULL
2015 Office Of The Mayor Press Officer 110555.42857 1.547776e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.547776e+06 1.547776e+06 0.00 NULL
2015 Office Of The Mayor Principal Administrative Associate 49159.00000 4.915900e+04 30.14 3.014000e+01 30.140 0.00 1 3.014000e+01 30.14 4.918914e+04 4.918914e+04 0.00 NULL
2015 Office Of The Mayor Project Planner 75259.40000 3.762970e+05 15240.60 3.048120e+03 848.840 334.25 5 8.488400e+02 4244.20 3.915376e+05 3.805412e+05 10996.40 NULL
2015 Office Of The Mayor Publishing Associate 61547.50000 1.230950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.230950e+05 1.230950e+05 0.00 NULL
2015 Office Of The Mayor Research Projects Coord 86565.21079 1.211913e+07 562.66 4.019000e+00 0.000 3.50 140 0.000000e+00 0.00 1.211969e+07 1.211913e+07 562.66 NULL
2015 Office Of The Mayor Research Projects Coordinator 60731.25000 4.858500e+05 14980.92 1.872615e+03 336.390 380.75 8 3.363900e+02 2691.12 5.008309e+05 4.885411e+05 12289.80 NULL
2015 Office Of The Mayor Secretary 63895.00000 3.194750e+05 16388.10 3.277620e+03 3517.320 414.00 5 3.277620e+03 16388.10 3.358631e+05 3.358631e+05 0.00 NULL
2015 Office Of The Mayor Senior Service Inspector 55282.00000 5.528200e+04 87.37 8.737000e+01 87.370 2.25 1 8.737000e+01 87.37 5.536937e+04 5.536937e+04 0.00 NULL
2015 Office Of The Mayor Service Inspector 38855.50000 2.331330e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.331330e+05 2.331330e+05 0.00 NULL
2015 Office Of The Mayor Special Assistant 94409.04680 2.048676e+07 24406.10 1.124705e+02 0.000 683.75 217 0.000000e+00 0.00 2.051117e+07 2.048676e+07 24406.10 NULL
2015 Office Of The Mayor Sr Project Planner 94559.00000 1.891180e+05 220.47 1.102350e+02 110.235 0.00 2 1.102350e+02 220.47 1.893385e+05 1.893385e+05 0.00 NULL
2015 Office Of The Mayor Staff Assistant 52014.34875 5.201435e+05 21991.23 2.199123e+03 1105.985 692.50 10 1.105985e+03 11059.85 5.421347e+05 5.312033e+05 10931.38 NULL
2015 Personnel Monitors Monitor 456.80769 1.166230e+06 19140.10 7.497101e+00 0.000 1371.67 2553 0.000000e+00 0.00 1.185370e+06 1.166230e+06 19140.10 NULL
2015 Police Department *Adm School Security Manager-U 70176.00000 2.807040e+05 41809.86 1.045247e+04 12195.070 858.75 4 1.045247e+04 41809.86 3.225139e+05 3.225139e+05 0.00 NULL
2015 Police Department *Admin Schl Secur Mgr-Mgl 140341.00000 1.403410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.403410e+05 1.403410e+05 0.00 NULL
2015 Police Department *Administrative Attorney 167899.00000 1.678990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.678990e+05 1.678990e+05 0.00 NULL
2015 Police Department *Certified Applications Developer 100284.00000 2.005680e+05 35017.27 1.750863e+04 17508.635 390.25 2 1.750863e+04 35017.27 2.355853e+05 2.355853e+05 0.00 NULL
2015 Police Department *Certified Database Administrator 99012.00000 9.901200e+04 3073.27 3.073270e+03 3073.270 21.00 1 3.073270e+03 3073.27 1.020853e+05 1.020853e+05 0.00 NULL
2015 Police Department *Certified Wide Area Network Administrator 109983.00000 3.299490e+05 30378.03 1.012601e+04 1544.450 374.50 3 1.544450e+03 4633.35 3.603270e+05 3.345823e+05 25744.68 NULL
2015 Police Department *Custodial Assistant 33328.73684 6.332460e+05 1093.66 5.756105e+01 0.000 36.75 19 0.000000e+00 0.00 6.343397e+05 6.332460e+05 1093.66 NULL
2015 Police Department *Surgeon 131361.00000 1.313610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.313610e+05 1.313610e+05 0.00 NULL
2015 Police Department ?Assistant Advocate 71407.00000 7.140700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.140700e+04 7.140700e+04 0.00 NULL
2015 Police Department Accountant 55647.22222 1.001650e+06 103893.90 5.771883e+03 1093.555 2394.50 18 1.093555e+03 19683.99 1.105544e+06 1.021334e+06 84209.91 NULL
2015 Police Department Adm Manager-Non-Mgrl 69863.00000 6.986300e+05 49965.60 4.996560e+03 99.935 947.00 10 9.993500e+01 999.35 7.485956e+05 6.996293e+05 48966.25 NULL
2015 Police Department Adm Traffic Enfrcmnt Agent-Director Of Parking Enfrcmnt Dist 133849.00000 2.676980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.676980e+05 2.676980e+05 0.00 NULL
2015 Police Department Admin Contract Specialist 112946.66667 1.016520e+06 8619.02 9.576689e+02 0.000 158.25 9 0.000000e+00 0.00 1.025139e+06 1.016520e+06 8619.02 NULL
2015 Police Department Admin Traffic Enf Agnt-Union 63023.04167 1.512553e+06 569182.63 2.371594e+04 24099.055 12545.50 24 2.371594e+04 569182.63 2.081736e+06 2.081736e+06 0.00 NULL
2015 Police Department Admin Traffic Enfrcmnt Agent 109220.50000 2.184410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.184410e+05 2.184410e+05 0.00 NULL
2015 Police Department Administrative Accountant 97335.42857 6.813480e+05 1219.09 1.741557e+02 0.000 16.75 7 0.000000e+00 0.00 6.825671e+05 6.813480e+05 1219.09 NULL
2015 Police Department Administrative Graphic Artist 90034.00000 9.003400e+04 10239.10 1.023910e+04 10239.100 180.50 1 1.023910e+04 10239.10 1.002731e+05 1.002731e+05 0.00 NULL
2015 Police Department Administrative Investigator 90546.00000 9.054600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.054600e+04 9.054600e+04 0.00 NULL
2015 Police Department Administrative Labor Relations Analyst 207086.00000 2.070860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.070860e+05 2.070860e+05 0.00 NULL
2015 Police Department Administrative Printing Services Manager 110886.00000 2.217720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.217720e+05 2.217720e+05 0.00 NULL
2015 Police Department Administrative Procurement Analyst 82888.60000 4.144430e+05 93806.92 1.876138e+04 21443.490 1971.25 5 1.876138e+04 93806.92 5.082499e+05 5.082499e+05 0.00 NULL
2015 Police Department Administrative Project Manager 116611.75000 4.664470e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.664470e+05 4.664470e+05 0.00 NULL
2015 Police Department Administrative Psychologist 107146.66667 3.214400e+05 2.35 7.833333e-01 0.000 0.00 3 0.000000e+00 0.00 3.214423e+05 3.214400e+05 2.35 NULL
2015 Police Department Administrative Public Health Sanitarian 107189.00000 1.071890e+05 55.65 5.565000e+01 55.650 0.00 1 5.565000e+01 55.65 1.072446e+05 1.072446e+05 0.00 NULL
2015 Police Department Administrative Staff Analyst 96246.48936 9.047170e+06 459962.92 4.893223e+03 377.665 8255.25 94 3.776650e+02 35500.51 9.507133e+06 9.082671e+06 424462.41 NULL
2015 Police Department Agency Attorney 82475.32000 6.185649e+06 628726.31 8.383017e+03 1522.380 9788.50 75 1.522380e+03 114178.50 6.814375e+06 6.299828e+06 514547.81 NULL
2015 Police Department Agency Attorney Interne 56942.25000 2.277690e+05 2455.80 6.139500e+02 0.000 76.50 4 0.000000e+00 0.00 2.302248e+05 2.277690e+05 2455.80 NULL
2015 Police Department Agency Chief Contracting Officer 151481.00000 1.514810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.514810e+05 1.514810e+05 0.00 NULL
2015 Police Department Architect 78319.75000 3.132790e+05 10514.80 2.628700e+03 537.075 179.75 4 5.370750e+02 2148.30 3.237938e+05 3.154273e+05 8366.50 NULL
2015 Police Department Assistant Advocate-Pd 90773.07143 1.270823e+06 20058.91 1.432779e+03 1290.330 379.00 14 1.290330e+03 18064.62 1.290882e+06 1.288888e+06 1994.29 NULL
2015 Police Department Assistant Architect 64828.50000 1.296570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.296570e+05 1.296570e+05 0.00 NULL
2015 Police Department Assistant Chemical Engineer 68704.00000 6.870400e+04 48.14 4.814000e+01 48.140 0.00 1 4.814000e+01 48.14 6.875214e+04 6.875214e+04 0.00 NULL
2015 Police Department Assistant Commissioner 159648.00000 4.789440e+05 618.47 2.061567e+02 0.000 0.00 3 0.000000e+00 0.00 4.795625e+05 4.789440e+05 618.47 NULL
2015 Police Department Assistant Counsel-Pd 94621.87500 7.569750e+05 204029.61 2.550370e+04 25306.395 2888.00 8 2.530640e+04 202451.16 9.610046e+05 9.594262e+05 1578.45 NULL
2015 Police Department Assistant Deputy Commissioner 116468.50000 2.329370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.329370e+05 2.329370e+05 0.00 NULL
2015 Police Department Assistant Mechanical Engineer 69335.00000 6.933500e+04 20452.03 2.045203e+04 20452.030 343.50 1 2.045203e+04 20452.03 8.978703e+04 8.978703e+04 0.00 NULL
2015 Police Department Assistant To Police Commissionor 182700.00000 1.827000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.827000e+05 1.827000e+05 0.00 NULL
2015 Police Department Assoc Spvr Of School Security 63183.51351 2.337790e+06 492557.83 1.331237e+04 14842.100 10944.25 37 1.331237e+04 492557.83 2.830348e+06 2.830348e+06 0.00 NULL
2015 Police Department Assoc Supvr Of Schl Sec 87711.50000 3.508460e+05 10910.51 2.727628e+03 0.000 177.00 4 0.000000e+00 0.00 3.617565e+05 3.508460e+05 10910.51 NULL
2015 Police Department Associate Fingerprint Technician 39428.93750 1.261726e+06 34455.22 1.076726e+03 0.335 917.00 32 3.350000e-01 10.72 1.296181e+06 1.261737e+06 34444.50 NULL
2015 Police Department Associate Investigator 44555.34248 2.851542e+06 281176.16 4.393377e+03 606.735 6427.75 64 6.067350e+02 38831.04 3.132718e+06 2.890373e+06 242345.12 NULL
2015 Police Department Associate Parking Control Specialist 52389.14286 3.667240e+05 121590.17 1.737002e+04 19386.660 3325.25 7 1.737002e+04 121590.17 4.883142e+05 4.883142e+05 0.00 NULL
2015 Police Department Associate Project Manager 87315.83333 5.238950e+05 34598.99 5.766498e+03 878.780 452.75 6 8.787800e+02 5272.68 5.584940e+05 5.291677e+05 29326.31 NULL
2015 Police Department Associate Public Information Specialist 55966.00000 1.119320e+05 495.70 2.478500e+02 247.850 14.00 2 2.478500e+02 495.70 1.124277e+05 1.124277e+05 0.00 NULL
2015 Police Department Associate Quality Assurance Specialist 67359.00000 6.735900e+04 18228.59 1.822859e+04 18228.590 414.75 1 1.822859e+04 18228.59 8.558759e+04 8.558759e+04 0.00 NULL
2015 Police Department Associate Staff Analyst 69503.67606 4.934761e+06 298222.32 4.200314e+03 215.480 6008.00 71 2.154800e+02 15299.08 5.232983e+06 4.950060e+06 282923.24 NULL
2015 Police Department Associate Traffic Enforcement Agent 45347.58974 2.122267e+07 6544564.50 1.398411e+04 13987.885 200758.18 468 1.398411e+04 6544564.50 2.776724e+07 2.776724e+07 0.00 NULL
2015 Police Department Attorney At Law 89989.33333 5.399360e+05 87270.86 1.454514e+04 663.875 1084.50 6 6.638750e+02 3983.25 6.272069e+05 5.439192e+05 83287.61 NULL
2015 Police Department Auto Body Worker 50155.30000 1.003106e+06 31555.74 1.577787e+03 1555.390 986.50 20 1.555390e+03 31107.80 1.034662e+06 1.034214e+06 447.94 NULL
2015 Police Department Auto Mechanic NA NA 875146.92 5.029580e+03 3655.565 16793.25 174 3.655565e+03 636068.31 NA NA NA NULL
2015 Police Department Automotive Service Worker 37730.39130 1.735598e+06 105269.54 2.288468e+03 1414.740 4283.00 46 1.414740e+03 65078.04 1.840868e+06 1.800676e+06 40191.50 NULL
2015 Police Department Bookbinder 43490.66667 1.304720e+05 3066.39 1.022130e+03 954.710 115.75 3 9.547100e+02 2864.13 1.335384e+05 1.333361e+05 202.26 NULL
2015 Police Department Bookkeeper 44971.20000 2.923128e+06 120550.03 1.854616e+03 62.780 3625.00 65 6.278000e+01 4080.70 3.043678e+06 2.927209e+06 116469.33 NULL
2015 Police Department Capt Det Chief Of Department 205510.00000 6.165300e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.165300e+05 6.165300e+05 0.00 NULL
2015 Police Department Capt Det Chief Of The Housing Bureau 208105.00000 2.081050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.081050e+05 2.081050e+05 0.00 NULL
2015 Police Department Capt Det Chief Of The Transit Bureau 208105.00000 2.081050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.081050e+05 2.081050e+05 0.00 NULL
2015 Police Department Captain 140747.01786 6.305466e+07 707785.90 1.579879e+03 0.000 7311.62 448 0.000000e+00 0.00 6.376245e+07 6.305466e+07 707785.90 NULL
2015 Police Department Captain Chief Of Counterterrorism 208105.00000 2.081050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.081050e+05 2.081050e+05 0.00 NULL
2015 Police Department Captain D/A Deputy Chief Inspector 176123.33824 1.197639e+07 0.00 0.000000e+00 0.000 0.00 68 0.000000e+00 0.00 1.197639e+07 1.197639e+07 0.00 NULL
2015 Police Department Captain D/A Deputy Inspector 158796.25263 3.017129e+07 191.55 1.008158e+00 0.000 0.00 190 0.000000e+00 0.00 3.017148e+07 3.017129e+07 191.55 NULL
2015 Police Department Captain D/A Inspector 167054.60317 2.104888e+07 31779.56 2.522187e+02 0.000 0.00 126 0.000000e+00 0.00 2.108066e+07 2.104888e+07 31779.56 NULL
2015 Police Department Captain Detailed As Assistant Chief Inspector 206884.30769 5.378992e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 5.378992e+06 5.378992e+06 0.00 NULL
2015 Police Department Captain Detailed As Chief Of Detectives 203552.50000 4.071050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.071050e+05 4.071050e+05 0.00 NULL
2015 Police Department Captain Detailed As Chief Of Organized Crime Control 203552.50000 4.071050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.071050e+05 4.071050e+05 0.00 NULL
2015 Police Department Captain Detailed As Chief Of Patrol 205070.00000 6.152100e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.152100e+05 6.152100e+05 0.00 NULL
2015 Police Department Captain-Chief Of Community Affairs 208105.00000 2.081050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.081050e+05 2.081050e+05 0.00 NULL
2015 Police Department Captain-Chief Of Intelligence 208105.00000 2.081050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.081050e+05 2.081050e+05 0.00 NULL
2015 Police Department Captain-Chief Of Staff 208105.00000 2.081050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.081050e+05 2.081050e+05 0.00 NULL
2015 Police Department Captain: Chief Of Transportation Bureau 208105.00000 2.081050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.081050e+05 2.081050e+05 0.00 NULL
2015 Police Department Carpenter NA NA 561186.10 2.550846e+04 31454.875 9007.50 22 2.550846e+04 561186.10 NA NA NA NULL
2015 Police Department Case Management Nurse 70321.86957 1.617403e+06 105119.40 4.570409e+03 4337.070 1724.25 23 4.337070e+03 99752.61 1.722522e+06 1.717156e+06 5366.79 NULL
2015 Police Department Cashier 45333.00000 2.719980e+05 30606.23 5.101038e+03 14.675 761.00 6 1.467500e+01 88.05 3.026042e+05 2.720860e+05 30518.18 NULL
2015 Police Department Certified It Administrator 93218.77273 2.050813e+06 346794.47 1.576339e+04 16957.150 5172.33 22 1.576339e+04 346794.47 2.397607e+06 2.397607e+06 0.00 NULL
2015 Police Department Certified It Developer 88068.25000 3.522730e+05 39958.54 9.989635e+03 8800.365 601.00 4 8.800365e+03 35201.46 3.922315e+05 3.874745e+05 4757.08 NULL
2015 Police Department Certified Local Area Network Administrator 98358.33333 2.950750e+05 58055.48 1.935183e+04 19618.010 811.50 3 1.935183e+04 58055.48 3.531305e+05 3.531305e+05 0.00 NULL
2015 Police Department Chaplain 33012.14286 2.310850e+05 3774.39 5.391986e+02 0.000 130.75 7 0.000000e+00 0.00 2.348594e+05 2.310850e+05 3774.39 NULL
2015 Police Department City Attendant 33139.00000 3.313900e+04 21088.63 2.108863e+04 21088.630 761.50 1 2.108863e+04 21088.63 5.422763e+04 5.422763e+04 0.00 NULL
2015 Police Department City Custodial Assistant 31419.80485 1.087125e+07 665303.93 1.922844e+03 0.000 28011.62 346 0.000000e+00 0.00 1.153656e+07 1.087125e+07 665303.93 NULL
2015 Police Department City Dentist 43820.15620 4.382016e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.382016e+04 4.382016e+04 0.00 NULL
2015 Police Department City Laborer NA NA 150359.38 1.252995e+04 8514.500 3184.00 12 8.514500e+03 102174.00 NA NA NA NULL
2015 Police Department City Medical Specialist 521.17500 5.211750e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.211750e+02 5.211750e+02 0.00 NULL
2015 Police Department City Planner 87125.50000 1.742510e+05 10224.38 5.112190e+03 5112.190 171.50 2 5.112190e+03 10224.38 1.844754e+05 1.844754e+05 0.00 NULL
2015 Police Department City Research Scientist 77087.50000 1.541750e+05 1602.90 8.014500e+02 801.450 30.00 2 8.014500e+02 1602.90 1.557779e+05 1.557779e+05 0.00 NULL
2015 Police Department Civilianization Manager-Pd 90311.00000 9.031100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.031100e+04 9.031100e+04 0.00 NULL
2015 Police Department Clerical Aide 14011.12250 5.604449e+04 821.18 2.052950e+02 205.295 3.50 4 2.052950e+02 821.18 5.686567e+04 5.686567e+04 0.00 NULL
2015 Police Department Clerical Associate 39568.02601 3.719394e+06 260400.18 2.770215e+03 221.630 8040.00 94 2.216300e+02 20833.22 3.979795e+06 3.740228e+06 239566.96 NULL
2015 Police Department College Aide 4724.30800 3.307016e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.307016e+04 3.307016e+04 0.00 NULL
2015 Police Department Community Assistant 31754.28571 2.222800e+05 25387.24 3.626749e+03 0.000 909.25 7 0.000000e+00 0.00 2.476672e+05 2.222800e+05 25387.24 NULL
2015 Police Department Community Associate 40836.25000 1.633450e+05 11949.54 2.987385e+03 3287.830 455.50 4 2.987385e+03 11949.54 1.752945e+05 1.752945e+05 0.00 NULL
2015 Police Department Community Coordinator 54989.00000 1.099780e+05 3686.35 1.843175e+03 1843.175 102.75 2 1.843175e+03 3686.35 1.136644e+05 1.136644e+05 0.00 NULL
2015 Police Department Compositor NA NA 57623.35 1.920778e+04 15347.640 855.50 3 1.534764e+04 46042.92 NA NA NA NULL
2015 Police Department Computer Aide-Non-Spvr 41564.00000 4.156400e+04 4698.84 4.698840e+03 4698.840 140.50 1 4.698840e+03 4698.84 4.626284e+04 4.626284e+04 0.00 NULL
2015 Police Department Computer Associate 67005.02759 9.715729e+06 807140.45 5.566486e+03 2689.300 16107.50 145 2.689300e+03 389948.50 1.052287e+07 1.010568e+07 417191.95 NULL
2015 Police Department Computer Operations Manager 133168.54545 1.464854e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.464854e+06 1.464854e+06 0.00 NULL
2015 Police Department Computer Programmer Analyst 56004.88889 5.040440e+05 24109.93 2.678881e+03 708.190 528.50 9 7.081900e+02 6373.71 5.281539e+05 5.104177e+05 17736.22 NULL
2015 Police Department Computer Specialist 95062.57447 4.467941e+06 459253.24 9.771346e+03 6432.070 6565.25 47 6.432070e+03 302307.29 4.927194e+06 4.770248e+06 156945.95 NULL
2015 Police Department Computer Systems Manager 132901.87500 1.063215e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.063215e+06 1.063215e+06 0.00 NULL
2015 Police Department Counsel To The Police Commissioner 208105.00000 2.081050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.081050e+05 2.081050e+05 0.00 NULL
2015 Police Department Criminalist 66441.33182 1.461709e+07 1732590.94 7.875413e+03 6488.310 32496.82 220 6.488310e+03 1427428.20 1.634968e+07 1.604452e+07 305162.74 NULL
2015 Police Department Criminalist Assistant Director Of Laboratory 113636.28571 7.954540e+05 5392.02 7.702886e+02 0.000 0.00 7 0.000000e+00 0.00 8.008460e+05 7.954540e+05 5392.02 NULL
2015 Police Department Criminalist Deputy Director Of Labatory 144956.00000 1.449560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.449560e+05 1.449560e+05 0.00 NULL
2015 Police Department Criminalist Director Of Laboratory 150588.00000 1.505880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.505880e+05 1.505880e+05 0.00 NULL
2015 Police Department Custodian 35454.53125 1.134545e+06 198942.77 6.216962e+03 4484.245 7677.62 32 4.484245e+03 143495.84 1.333488e+06 1.278041e+06 55446.93 NULL
2015 Police Department Deputy Chief Surgeon 139817.00000 6.990850e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.990850e+05 6.990850e+05 0.00 NULL
2015 Police Department Deputy Commissioner 199078.00000 1.592624e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.592624e+06 1.592624e+06 0.00 NULL
2015 Police Department Director Employee Management Division 152082.00000 1.520820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.520820e+05 1.520820e+05 0.00 NULL
2015 Police Department Director Management Information Systems 135259.00000 1.352590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.352590e+05 1.352590e+05 0.00 NULL
2015 Police Department Director Of Department Advocates Office 180737.00000 3.614740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.614740e+05 3.614740e+05 0.00 NULL
2015 Police Department Director Of Internal Affairs - Pd 208105.00000 2.081050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.081050e+05 2.081050e+05 0.00 NULL
2015 Police Department Director Of Motor Transport 136606.00000 1.366060e+05 3022.25 3.022250e+03 3022.250 31.75 1 3.022250e+03 3022.25 1.396282e+05 1.396282e+05 0.00 NULL
2015 Police Department Director Of Photographic Services-Pd 73512.00000 7.351200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.351200e+04 7.351200e+04 0.00 NULL
2015 Police Department Director Of Psychological Services 126280.00000 1.262800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.262800e+05 1.262800e+05 0.00 NULL
2015 Police Department Director Of Support Services-Pd 197297.00000 1.972970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.972970e+05 1.972970e+05 0.00 NULL
2015 Police Department Director Of Technology Development-Pd 156864.00000 3.137280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.137280e+05 3.137280e+05 0.00 NULL
2015 Police Department Electrician NA NA 826216.74 2.581927e+04 29795.065 11529.50 32 2.581927e+04 826216.74 NA NA NA NULL
2015 Police Department Electrician’s Helper NA NA 21062.82 2.106282e+04 21062.820 476.00 1 2.106282e+04 21062.82 NA NA NA NULL
2015 Police Department Elevator Mechanic NA NA 61011.27 3.050563e+04 30505.635 967.50 2 3.050563e+04 61011.27 NA NA NA NULL
2015 Police Department Employee Assistance Program Specialist 52180.00000 5.218000e+04 742.71 7.427100e+02 742.710 31.50 1 7.427100e+02 742.71 5.292271e+04 5.292271e+04 0.00 NULL
2015 Police Department Evidence And Property Control Specialist 51034.57143 3.929662e+06 107789.83 1.399868e+03 12.390 3070.50 77 1.239000e+01 954.03 4.037452e+06 3.930616e+06 106835.80 NULL
2015 Police Department Executive Agency Counsel 129607.14182 4.277036e+06 6524.70 1.977182e+02 0.000 84.75 33 0.000000e+00 0.00 4.283560e+06 4.277036e+06 6524.70 NULL
2015 Police Department Fingerprint Technician Trainee 27075.00000 8.122500e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 8.122500e+04 8.122500e+04 0.00 NULL
2015 Police Department First Deputy Commissioner 207280.33333 6.218410e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.218410e+05 6.218410e+05 0.00 NULL
2015 Police Department Fitness Instructor 51001.11111 9.180200e+05 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 9.180200e+05 9.180200e+05 0.00 NULL
2015 Police Department Glazier NA NA 63590.80 3.179540e+04 31795.400 922.50 2 3.179540e+04 63590.80 NA NA NA NULL
2015 Police Department Graphic Artist 59661.00000 1.789830e+05 13354.75 4.451583e+03 340.190 404.50 3 3.401900e+02 1020.57 1.923378e+05 1.800036e+05 12334.18 NULL
2015 Police Department Highway Transportation Specialist 96492.00000 9.649200e+04 600.17 6.001700e+02 600.170 10.75 1 6.001700e+02 600.17 9.709217e+04 9.709217e+04 0.00 NULL
2015 Police Department Horseshoer NA NA 7565.12 2.521707e+03 2633.620 190.75 3 2.521707e+03 7565.12 NA NA NA NULL
2015 Police Department Hostler 35346.48517 1.025048e+06 84618.30 2.917872e+03 2953.560 3326.00 29 2.917872e+03 84618.30 1.109666e+06 1.109666e+06 0.00 NULL
2015 Police Department Intelligence Research Manager-Pd 133169.00000 7.990140e+05 2432.66 4.054433e+02 9.590 33.25 6 9.590000e+00 57.54 8.014467e+05 7.990715e+05 2375.12 NULL
2015 Police Department Intelligence Research Specialist-Pd 85389.19659 4.696406e+06 589876.01 1.072502e+04 5353.760 9707.50 55 5.353760e+03 294456.80 5.286282e+06 4.990863e+06 295419.21 NULL
2015 Police Department Investigator 42506.26415 2.252832e+06 271169.92 5.116414e+03 4789.870 7835.25 53 4.789870e+03 253863.11 2.524002e+06 2.506695e+06 17306.81 NULL
2015 Police Department Investigator Trainee 38145.83333 4.577500e+05 70063.98 5.838665e+03 6252.635 2497.00 12 5.838665e+03 70063.98 5.278140e+05 5.278140e+05 0.00 NULL
2015 Police Department Lieutenant 113654.35588 2.050325e+08 41044761.38 2.275209e+04 22715.595 448279.18 1804 2.271560e+04 40978933.38 2.460772e+08 2.460114e+08 65828.00 NULL
2015 Police Department Lieutenant D/A Commander Of Detective Squad 125040.23295 2.200708e+07 5198983.66 2.953968e+04 36055.740 51620.23 176 2.953968e+04 5198983.66 2.720606e+07 2.720606e+07 0.00 NULL
2015 Police Department Lieutenant D/A Special Assignment 124821.87857 1.747506e+07 3717908.02 2.655649e+04 30302.550 36977.25 140 2.655649e+04 3717908.02 2.119297e+07 2.119297e+07 0.00 NULL
2015 Police Department Locksmith NA NA 28585.62 1.429281e+04 14292.810 769.75 2 1.429281e+04 28585.62 NA NA NA NULL
2015 Police Department Maintenance Worker NA NA 742840.22 1.811805e+04 18738.620 19942.75 41 1.811805e+04 742840.22 NA NA NA NULL
2015 Police Department Management Auditor 61807.62500 9.889220e+05 45049.93 2.815621e+03 0.000 886.00 16 0.000000e+00 0.00 1.033972e+06 9.889220e+05 45049.93 NULL
2015 Police Department Management Auditor Trainee 38303.00000 3.830300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.830300e+04 3.830300e+04 0.00 NULL
2015 Police Department Manager Of Radio Repair Operations 112002.00000 1.120020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.120020e+05 1.120020e+05 0.00 NULL
2015 Police Department Marine Maintenance Mechanic 63091.00000 1.261820e+05 379.76 1.898800e+02 189.880 11.50 2 1.898800e+02 379.76 1.265618e+05 1.265618e+05 0.00 NULL
2015 Police Department Mechanical Engineer 93827.50000 1.876550e+05 64643.91 3.232196e+04 32321.955 937.75 2 3.232196e+04 64643.91 2.522989e+05 2.522989e+05 0.00 NULL
2015 Police Department Mechanical Engineering Intern 45333.00000 4.533300e+04 0.00 0.000000e+00 0.000 4.50 1 0.000000e+00 0.00 4.533300e+04 4.533300e+04 0.00 NULL
2015 Police Department Media Services Technician 48776.57143 3.414360e+05 16737.17 2.391024e+03 0.000 403.75 7 0.000000e+00 0.00 3.581732e+05 3.414360e+05 16737.17 NULL
2015 Police Department Motor Vehicle Operator 41569.48438 2.660447e+06 135541.12 2.117830e+03 813.175 4077.25 64 8.131750e+02 52043.20 2.795988e+06 2.712490e+06 83497.92 NULL
2015 Police Department Motor Vehicle Supervisor 52256.40000 2.612820e+05 18451.60 3.690320e+03 166.400 484.00 5 1.664000e+02 832.00 2.797336e+05 2.621140e+05 17619.60 NULL
2015 Police Department Nutritionist 72291.00000 7.229100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.229100e+04 7.229100e+04 0.00 NULL
2015 Police Department Office Machine Aide 35490.00000 1.064700e+05 3.38 1.126667e+00 0.000 0.00 3 0.000000e+00 0.00 1.064734e+05 1.064700e+05 3.38 NULL
2015 Police Department Oiler NA NA 467021.84 2.122827e+04 24096.820 7182.25 22 2.122827e+04 467021.84 NA NA NA NULL
2015 Police Department Operations Communications Specialist 40540.50000 1.621620e+05 19072.00 4.768000e+03 209.825 579.00 4 2.098250e+02 839.30 1.812340e+05 1.630013e+05 18232.70 NULL
2015 Police Department P.o. Da Det Gr3 88868.76951 3.153953e+08 80909941.85 2.279795e+04 26588.670 1150470.54 3549 2.279795e+04 80909941.85 3.963052e+08 3.963052e+08 0.00 NULL
2015 Police Department P.o. Det Spec 88395.91005 7.566690e+07 18272471.39 2.134635e+04 24265.880 261793.23 856 2.134635e+04 18272471.39 9.393937e+07 9.393937e+07 0.00 NULL
2015 Police Department Painter NA NA 282635.93 2.569418e+04 31516.890 5358.00 11 2.569418e+04 282635.93 NA NA NA NULL
2015 Police Department Paralegal Aide 40123.87500 3.209910e+05 3347.63 4.184538e+02 0.000 64.50 8 0.000000e+00 0.00 3.243386e+05 3.209910e+05 3347.63 NULL
2015 Police Department Parking Control Specialist 39675.95652 9.125470e+05 144105.14 6.265441e+03 5328.100 4903.25 23 5.328100e+03 122546.30 1.056652e+06 1.035093e+06 21558.84 NULL
2015 Police Department Photographer 43412.87500 1.041909e+06 31829.46 1.326227e+03 366.945 1080.50 24 3.669450e+02 8806.68 1.073738e+06 1.050716e+06 23022.78 NULL
2015 Police Department Plumber NA NA 382987.31 2.946056e+04 33288.240 4202.75 13 2.946056e+04 382987.31 NA NA NA NULL
2015 Police Department Plumber’s Helper NA NA 39538.70 1.976935e+04 19769.350 738.00 2 1.976935e+04 39538.70 NA NA NA NULL
2015 Police Department Police Administrative Aide 36235.66904 6.098463e+07 1338155.25 7.951012e+02 0.000 48570.83 1683 0.000000e+00 0.00 6.232279e+07 6.098463e+07 1338155.25 NULL
2015 Police Department Police Attendant 37113.07692 1.447410e+06 145261.69 3.724659e+03 326.000 4865.60 39 3.260000e+02 12714.00 1.592672e+06 1.460124e+06 132547.69 NULL
2015 Police Department Police Cadet 14868.02975 2.453225e+06 0.00 0.000000e+00 0.000 0.00 165 0.000000e+00 0.00 2.453225e+06 2.453225e+06 0.00 NULL
2015 Police Department Police Communications Technician 42923.73431 6.769073e+07 4610402.15 2.923527e+03 1237.980 146700.91 1577 1.237980e+03 1952294.46 7.230113e+07 6.964302e+07 2658107.69 NULL
2015 Police Department Police Officer 65428.14861 1.547965e+09 299975049.65 1.267911e+04 11257.120 5692684.86 23659 1.125712e+04 266332202.08 1.847940e+09 1.814297e+09 33642847.57 NULL
2015 Police Department Police Officer D/A Detective 1st Gr 115447.01404 6.580480e+07 14512882.96 2.546120e+04 32325.950 156441.25 570 2.546120e+04 14512882.96 8.031768e+07 8.031768e+07 0.00 NULL
2015 Police Department Police Officer D/A Detective 2nd Gr 100659.82645 1.339782e+08 33420187.04 2.510908e+04 31737.430 409243.48 1331 2.510908e+04 33420187.04 1.673984e+08 1.673984e+08 0.00 NULL
2015 Police Department Police Officer, Special Assignment 78883.00000 3.944150e+05 48206.29 9.641258e+03 5142.630 726.85 5 5.142630e+03 25713.15 4.426213e+05 4.201282e+05 22493.14 NULL
2015 Police Department Police Surgeon 129458.43333 3.883753e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 3.883753e+06 3.883753e+06 0.00 NULL
2015 Police Department Precinct Community Relations Aide 22289.50583 1.337370e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.337370e+05 1.337370e+05 0.00 NULL
2015 Police Department Precinct Receptionist 18392.50414 4.046351e+05 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 4.046351e+05 4.046351e+05 0.00 NULL
2015 Police Department Principal Administrative Associate 54012.51642 1.809419e+07 900417.46 2.687813e+03 4.610 23492.00 335 4.610000e+00 1544.35 1.899461e+07 1.809574e+07 898873.11 NULL
2015 Police Department Principal Fingerprint Technician 46772.33333 2.806340e+05 290.12 4.835333e+01 14.600 10.00 6 1.460000e+01 87.60 2.809241e+05 2.807216e+05 202.52 NULL
2015 Police Department Principal Police Communication Technician 66284.35484 4.109630e+06 837053.01 1.350085e+04 12602.260 16440.75 62 1.260226e+04 781340.12 4.946683e+06 4.890970e+06 55712.89 NULL
2015 Police Department Printing Press Operator NA NA 193805.65 1.384326e+04 14075.575 4008.25 14 1.384326e+04 193805.65 NA NA NA NULL
2015 Police Department Procurement Analyst 54016.88462 1.404439e+06 170928.42 6.574170e+03 2919.930 4624.25 26 2.919930e+03 75918.18 1.575367e+06 1.480357e+06 95010.24 NULL
2015 Police Department Project Manager Intern# 45441.00000 4.544100e+04 19583.78 1.958378e+04 19583.780 518.25 1 1.958378e+04 19583.78 6.502478e+04 6.502478e+04 0.00 NULL
2015 Police Department Psychologist 64796.81467 2.073498e+06 146298.37 4.571824e+03 840.360 3055.75 32 8.403600e+02 26891.52 2.219796e+06 2.100390e+06 119406.85 NULL
2015 Police Department Public Health Assistant 32486.00000 6.497200e+04 247.61 1.238050e+02 123.805 21.50 2 1.238050e+02 247.61 6.521961e+04 6.521961e+04 0.00 NULL
2015 Police Department Public Records Officer 40169.75000 1.606790e+05 3608.80 9.022000e+02 912.840 145.00 4 9.022000e+02 3608.80 1.642878e+05 1.642878e+05 0.00 NULL
2015 Police Department Radio Repair Mechanic NA NA 767489.40 9.967395e+03 10424.250 12547.00 77 9.967395e+03 767489.40 NA NA NA NULL
2015 Police Department Research Assistant 58366.00000 5.836600e+04 1594.35 1.594350e+03 1594.350 36.00 1 1.594350e+03 1594.35 5.996035e+04 5.996035e+04 0.00 NULL
2015 Police Department Roofer NA NA 14605.40 1.460540e+04 14605.400 247.50 1 1.460540e+04 14605.40 NA NA NA NULL
2015 Police Department School Crossing Guard 9814.91800 2.825715e+07 907.90 3.153526e-01 0.000 102.25 2879 0.000000e+00 0.00 2.825806e+07 2.825715e+07 907.90 NULL
2015 Police Department School Safety Agent 37257.38566 2.135966e+08 43212559.70 7.537513e+03 6550.370 1578470.93 5733 6.550370e+03 37553271.21 2.568092e+08 2.511499e+08 5659288.49 NULL
2015 Police Department Secretary 40262.20408 1.972848e+06 66332.95 1.353734e+03 0.000 1975.25 49 0.000000e+00 0.00 2.039181e+06 1.972848e+06 66332.95 NULL
2015 Police Department Secretary Of The Department 205552.50000 4.111050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.111050e+05 4.111050e+05 0.00 NULL
2015 Police Department Secretary To The Commissioner 92764.00000 1.855280e+05 35085.04 1.754252e+04 17542.520 596.50 2 1.754252e+04 35085.04 2.206130e+05 2.206130e+05 0.00 NULL
2015 Police Department Secretary To The First Deputy Commissioner-Pd 93661.00000 9.366100e+04 22313.05 2.231305e+04 22313.050 391.50 1 2.231305e+04 22313.05 1.159741e+05 1.159741e+05 0.00 NULL
2015 Police Department Senior Office Appliance Maintainer 37040.00000 3.704000e+04 3675.06 3.675060e+03 3675.060 137.75 1 3.675060e+03 3675.06 4.071506e+04 4.071506e+04 0.00 NULL
2015 Police Department Senior Photographer 50187.55556 4.516880e+05 43927.60 4.880844e+03 6317.700 1269.75 9 4.880844e+03 43927.60 4.956156e+05 4.956156e+05 0.00 NULL
2015 Police Department Senior Police Administrative Aide 44606.26422 4.625670e+07 1329868.42 1.282419e+03 0.490 39561.42 1037 4.900000e-01 508.13 4.758656e+07 4.625720e+07 1329360.29 NULL
2015 Police Department Senior Stationary Engineer NA NA 43906.94 2.195347e+04 21953.470 602.25 2 2.195347e+04 43906.94 NA NA NA NULL
2015 Police Department Sergeant 95427.94375 4.597718e+08 82089838.46 1.703816e+04 15200.790 1072583.35 4818 1.520079e+04 73237406.22 5.418617e+08 5.330092e+08 8852432.24 NULL
2015 Police Department Sergeantd/A Special Assignment 112572.28155 3.478484e+07 6383770.68 2.065945e+04 22085.520 70394.47 309 2.065945e+04 6383770.68 4.116861e+07 4.116861e+07 0.00 NULL
2015 Police Department Sergeantd/A Supervisor Detective Squad 112620.03696 5.180522e+07 12238184.63 2.660475e+04 33548.180 133790.57 460 2.660475e+04 12238184.63 6.404340e+07 6.404340e+07 0.00 NULL
2015 Police Department Sheet Metal Worker NA NA 159363.12 3.187262e+04 31570.560 1726.00 5 3.157056e+04 157852.80 NA NA NA NULL
2015 Police Department Special Officer 44373.00000 8.874600e+04 9009.53 4.504765e+03 4504.765 289.50 2 4.504765e+03 9009.53 9.775553e+04 9.775553e+04 0.00 NULL
2015 Police Department Staff Analyst 57989.47619 1.217779e+06 100331.95 4.777712e+03 737.670 2477.25 21 7.376700e+02 15491.07 1.318111e+06 1.233270e+06 84840.88 NULL
2015 Police Department Staff Analyst Trainee 43834.57143 1.227368e+06 23980.01 8.564289e+02 18.980 1018.50 28 1.898000e+01 531.44 1.251348e+06 1.227899e+06 23448.57 NULL
2015 Police Department Staff Nurse 79000.00000 7.900000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.900000e+04 7.900000e+04 0.00 NULL
2015 Police Department Stationary Engineer NA NA 355827.79 2.223924e+04 21975.385 4918.00 16 2.197538e+04 351606.16 NA NA NA NULL
2015 Police Department Steam Fitter NA NA 310695.66 3.106957e+04 32527.440 3244.00 10 3.106957e+04 310695.66 NA NA NA NULL
2015 Police Department Stenographer To Each Deputy Commissioner 52723.40000 2.636170e+05 19482.40 3.896480e+03 0.000 472.00 5 0.000000e+00 0.00 2.830994e+05 2.636170e+05 19482.40 NULL
2015 Police Department Stenographic Specialist 48626.50000 9.725300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.725300e+04 9.725300e+04 0.00 NULL
2015 Police Department Stock Worker 33163.28261 1.525511e+06 81933.06 1.781153e+03 342.165 3838.00 46 3.421650e+02 15739.59 1.607444e+06 1.541251e+06 66193.47 NULL
2015 Police Department Summer College Intern 2515.00343 1.332952e+05 0.00 0.000000e+00 0.000 0.00 53 0.000000e+00 0.00 1.332952e+05 1.332952e+05 0.00 NULL
2015 Police Department Summer Graduate Intern 4066.95636 8.947304e+04 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 8.947304e+04 8.947304e+04 0.00 NULL
2015 Police Department Supervising Chief Surgeon 208105.00000 2.081050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.081050e+05 2.081050e+05 0.00 NULL
2015 Police Department Supervising Police Communications Technician 58530.46893 1.035989e+07 1628247.42 9.199138e+03 6348.820 38155.00 177 6.348820e+03 1123741.14 1.198814e+07 1.148363e+07 504506.28 NULL
2015 Police Department Supervisor 68481.20000 3.424060e+05 187532.01 3.750640e+04 38070.570 3543.25 5 3.750640e+04 187532.01 5.299380e+05 5.299380e+05 0.00 NULL
2015 Police Department Supervisor Carpenter NA NA 51382.99 2.569149e+04 25691.495 803.50 2 2.569149e+04 51382.99 NA NA NA NULL
2015 Police Department Supervisor Electrician NA NA 120700.64 2.414013e+04 32718.230 1580.00 5 2.414013e+04 120700.64 NA NA NA NULL
2015 Police Department Supervisor Elevator Mechanic NA NA 35171.64 3.517164e+04 35171.640 478.50 1 3.517164e+04 35171.64 NA NA NA NULL
2015 Police Department Supervisor Glazier NA NA 32799.80 3.279980e+04 32799.800 459.50 1 3.279980e+04 32799.80 NA NA NA NULL
2015 Police Department Supervisor Locksmith NA NA 19409.97 1.940997e+04 19409.970 494.25 1 1.940997e+04 19409.97 NA NA NA NULL
2015 Police Department Supervisor Of Mechanical Installations & Maintenance 68704.00000 6.870400e+04 35116.44 3.511644e+04 35116.440 672.50 1 3.511644e+04 35116.44 1.038204e+05 1.038204e+05 0.00 NULL
2015 Police Department Supervisor Of Mechanics 105235.34783 4.840826e+06 395502.65 8.597884e+03 9356.545 5453.25 46 8.597884e+03 395502.65 5.236329e+06 5.236329e+06 0.00 NULL
2015 Police Department Supervisor Of Office Machine Operations 40389.00000 8.077800e+04 12088.87 6.044435e+03 6044.435 356.00 2 6.044435e+03 12088.87 9.286687e+04 9.286687e+04 0.00 NULL
2015 Police Department Supervisor Of Radio Repair Operations 78415.00000 2.352450e+05 50161.86 1.672062e+04 23227.960 863.50 3 1.672062e+04 50161.86 2.854069e+05 2.854069e+05 0.00 NULL
2015 Police Department Supervisor Of School Security 60843.39744 9.491570e+06 1660898.26 1.064678e+04 11066.165 37623.88 156 1.064678e+04 1660898.26 1.115247e+07 1.115247e+07 0.00 NULL
2015 Police Department Supervisor Of Stock Workers 43637.60000 4.363760e+05 39987.43 3.998743e+03 1042.490 1183.25 10 1.042490e+03 10424.90 4.763634e+05 4.468009e+05 29562.53 NULL
2015 Police Department Supervisor Painter NA NA 33984.12 3.398412e+04 33984.120 530.00 1 3.398412e+04 33984.12 NA NA NA NULL
2015 Police Department Supervisor Plumber NA NA 71115.66 3.555783e+04 35557.830 749.50 2 3.555783e+04 71115.66 NA NA NA NULL
2015 Police Department Supervisor Roofer NA NA 34511.40 3.451140e+04 34511.400 578.00 1 3.451140e+04 34511.40 NA NA NA NULL
2015 Police Department Supervisor Sheet Metal Worker NA NA 32661.72 3.266172e+04 32661.720 338.00 1 3.266172e+04 32661.72 NA NA NA NULL
2015 Police Department Supervisor Thermostat Repair NA NA 32065.11 3.206511e+04 32065.110 339.50 1 3.206511e+04 32065.11 NA NA NA NULL
2015 Police Department Surgeon Detailed As Deputy Chief Surgeon 143075.00000 1.430750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.430750e+05 1.430750e+05 0.00 NULL
2015 Police Department Telecommunications Associate 67085.50000 1.341710e+05 64.23 3.211500e+01 32.115 0.00 2 3.211500e+01 64.23 1.342352e+05 1.342352e+05 0.00 NULL
2015 Police Department Telephone Service Technician 61025.00000 1.830750e+05 28451.74 9.483913e+03 10130.660 727.25 3 9.483913e+03 28451.74 2.115267e+05 2.115267e+05 0.00 NULL
2015 Police Department Tests And Measurement Specialist 76109.00000 7.610900e+04 10039.95 1.003995e+04 10039.950 177.50 1 1.003995e+04 10039.95 8.614895e+04 8.614895e+04 0.00 NULL
2015 Police Department Thermostat Repairer NA NA 126182.43 3.154561e+04 31574.365 1442.75 4 3.154561e+04 126182.43 NA NA NA NULL
2015 Police Department Traffic Enforc Agent 41934.30539 1.400606e+07 3951716.34 1.183149e+04 11718.555 124387.19 334 1.171856e+04 3913997.37 1.795777e+07 1.792006e+07 37718.97 NULL
2015 Police Department Traffic Enforcement Agent 33635.12496 9.663371e+07 20487366.41 7.131001e+03 4649.050 837629.35 2873 4.649050e+03 13356720.65 1.171211e+08 1.099904e+08 7130645.76 NULL
2015 Police Department Welder NA NA 69492.03 3.474601e+04 34746.015 916.00 2 3.474601e+04 69492.03 NA NA NA NULL
2015 Public Administrator-Bronx Community Associate 42465.33333 2.547920e+05 2.82 4.700000e-01 0.000 0.00 6 0.000000e+00 0.00 2.547948e+05 2.547920e+05 2.82 NULL
2015 Public Administrator-Bronx Decedent Property Agent 45459.00000 4.545900e+04 1.56 1.560000e+00 1.560 0.00 1 1.560000e+00 1.56 4.546056e+04 4.546056e+04 0.00 NULL
2015 Public Administrator-Bronx Deputy Public Administator 104400.00000 1.044000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.044000e+05 1.044000e+05 0.00 NULL
2015 Public Administrator-Bronx Principal Administrative Associate 55366.00000 5.536600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.536600e+04 5.536600e+04 0.00 NULL
2015 Public Administrator-Bronx Public Administrator 156600.00000 1.566000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.566000e+05 1.566000e+05 0.00 NULL
2015 Public Administrator-Kings Community Assistant 34395.00000 6.879000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.879000e+04 6.879000e+04 0.00 NULL
2015 Public Administrator-Kings Community Associate 39158.71429 2.741110e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.741110e+05 2.741110e+05 0.00 NULL
2015 Public Administrator-Kings Community Coordinator 53879.66667 1.616390e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.616390e+05 1.616390e+05 0.00 NULL
2015 Public Administrator-Kings Decedent Property Agent 45012.33333 1.350370e+05 0.96 3.200000e-01 0.000 0.00 3 0.000000e+00 0.00 1.350380e+05 1.350370e+05 0.96 NULL
2015 Public Administrator-Kings Deputy Public Administator 104400.00000 1.044000e+05 228.57 2.285700e+02 228.570 4.00 1 2.285700e+02 228.57 1.046286e+05 1.046286e+05 0.00 NULL
2015 Public Administrator-Kings Public Administrator 156600.00000 3.132000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.132000e+05 3.132000e+05 0.00 NULL
2015 Public Administrator-New York Accountant 57157.00000 5.715700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.715700e+04 5.715700e+04 0.00 NULL
2015 Public Administrator-New York Clerical Associate 37674.50000 1.506980e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.506980e+05 1.506980e+05 0.00 NULL
2015 Public Administrator-New York Decedent Property Agent 39731.00000 1.589240e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.589240e+05 1.589240e+05 0.00 NULL
2015 Public Administrator-New York Deputy Public Administator 104400.00000 1.044000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.044000e+05 1.044000e+05 0.00 NULL
2015 Public Administrator-New York Principal Administrative Associate 55279.00000 5.527900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.527900e+04 5.527900e+04 0.00 NULL
2015 Public Administrator-New York Public Administrator 156600.00000 1.566000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.566000e+05 1.566000e+05 0.00 NULL
2015 Public Administrator-Queens Decedent Property Agent 41923.83333 2.515430e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.515430e+05 2.515430e+05 0.00 NULL
2015 Public Administrator-Queens Deputy Public Administator 104922.00000 1.049220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.049220e+05 1.049220e+05 0.00 NULL
2015 Public Administrator-Queens Public Administrator 156600.00000 1.566000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.566000e+05 1.566000e+05 0.00 NULL
2015 Public Administrator-Queens Secretary 29581.50000 5.916300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.916300e+04 5.916300e+04 0.00 NULL
2015 Public Administrator-Richmond Deputy Public Administator 104400.00000 1.044000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.044000e+05 1.044000e+05 0.00 NULL
2015 Public Administrator-Richmond Public Administrator 156600.00000 1.566000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.566000e+05 1.566000e+05 0.00 NULL
2015 Public Administrator-Richmond Secretary To Public Administrator 55248.33333 1.657450e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.657450e+05 1.657450e+05 0.00 NULL
2015 Public Advocate Assistant To The Public Advocate 44189.41463 1.811766e+06 0.00 0.000000e+00 0.000 0.00 41 0.000000e+00 0.00 1.811766e+06 1.811766e+06 0.00 NULL
2015 Public Advocate Associate Staff Analyst 73511.75000 2.940470e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.940470e+05 2.940470e+05 0.00 NULL
2015 Public Advocate Counsel To The Public Advocate 115114.75000 4.604590e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.604590e+05 4.604590e+05 0.00 NULL
2015 Public Advocate Director Of Communications 91288.00000 1.825760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.825760e+05 1.825760e+05 0.00 NULL
2015 Public Advocate Director Of The Ombudsman Program 80043.00000 2.401290e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.401290e+05 2.401290e+05 0.00 NULL
2015 Public Advocate Executive Assistant And Counsel To The Public Advocate 88212.33333 2.646370e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.646370e+05 2.646370e+05 0.00 NULL
2015 Public Advocate Executive Secretary To The Public Advocate 44500.00000 1.335000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.335000e+05 1.335000e+05 0.00 NULL
2015 Public Advocate First Assistant To The Public Advocate 127167.00000 2.543340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.543340e+05 2.543340e+05 0.00 NULL
2015 Public Advocate Legislative Information Officer 81469.60000 8.146960e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 8.146960e+05 8.146960e+05 0.00 NULL
2015 Public Advocate Office Assistant 34350.93000 1.030528e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.030528e+05 1.030528e+05 0.00 NULL
2015 Public Advocate Office Manager 65230.00000 3.261500e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.261500e+05 3.261500e+05 0.00 NULL
2015 Public Advocate Program Research Analyst To The Public Advocate 20200.00000 2.020000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.020000e+04 2.020000e+04 0.00 NULL
2015 Public Advocate Public Advocate 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2015 Public Advocate Research Analyst To The Public Advocate 57955.00000 5.795500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.795500e+04 5.795500e+04 0.00 NULL
2015 Public Service Corps College Aide 2014.26027 8.459893e+05 0.00 0.000000e+00 0.000 0.00 420 0.000000e+00 0.00 8.459893e+05 8.459893e+05 0.00 NULL
2015 Queens Community Board #1 Community Assistant 30000.00000 3.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.000000e+04 3.000000e+04 0.00 NULL
2015 Queens Community Board #1 Community Associate 3742.20000 3.742200e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.742200e+03 3.742200e+03 0.00 NULL
2015 Queens Community Board #1 Community Coordinator 54858.00000 5.485800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.485800e+04 5.485800e+04 0.00 NULL
2015 Queens Community Board #1 District Manager 94044.00000 9.404400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.404400e+04 9.404400e+04 0.00 NULL
2015 Queens Community Board #10 Community Associate 40004.00000 8.000800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.000800e+04 8.000800e+04 0.00 NULL
2015 Queens Community Board #10 Community Coordinator 6717.90000 6.717900e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.717900e+03 6.717900e+03 0.00 NULL
2015 Queens Community Board #10 District Manager 82067.00000 8.206700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.206700e+04 8.206700e+04 0.00 NULL
2015 Queens Community Board #11 Community Associate 42226.00000 4.222600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.222600e+04 4.222600e+04 0.00 NULL
2015 Queens Community Board #11 Community Coordinator 55906.00000 5.590600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.590600e+04 5.590600e+04 0.00 NULL
2015 Queens Community Board #11 District Manager 93232.00000 9.323200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.323200e+04 9.323200e+04 0.00 NULL
2015 Queens Community Board #12 City Seasonal Aide 15901.00000 1.590100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.590100e+04 1.590100e+04 0.00 NULL
2015 Queens Community Board #12 Community Assistant 36148.00000 3.614800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.614800e+04 3.614800e+04 0.00 NULL
2015 Queens Community Board #12 Community Service Aide 30357.00000 3.035700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.035700e+04 3.035700e+04 0.00 NULL
2015 Queens Community Board #12 District Manager 104849.00000 1.048490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.048490e+05 1.048490e+05 0.00 NULL
2015 Queens Community Board #13 Community Associate 30507.00000 3.050700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.050700e+04 3.050700e+04 0.00 NULL
2015 Queens Community Board #13 Community Coordinator 57439.00000 5.743900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.743900e+04 5.743900e+04 0.00 NULL
2015 Queens Community Board #13 District Manager 85478.00000 8.547800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.547800e+04 8.547800e+04 0.00 NULL
2015 Queens Community Board #14 Community Coordinator 63257.00000 6.325700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.325700e+04 6.325700e+04 0.00 NULL
2015 Queens Community Board #14 Community Service Aide 12795.00000 1.279500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.279500e+04 1.279500e+04 0.00 NULL
2015 Queens Community Board #14 District Manager 113773.00000 1.137730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.137730e+05 1.137730e+05 0.00 NULL
2015 Queens Community Board #2 Community Assistant 33468.00000 3.346800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.346800e+04 3.346800e+04 0.00 NULL
2015 Queens Community Board #2 Community Associate 52945.00000 5.294500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.294500e+04 5.294500e+04 0.00 NULL
2015 Queens Community Board #2 Community Service Aide 15639.37500 1.563938e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.563938e+04 1.563938e+04 0.00 NULL
2015 Queens Community Board #2 District Manager 93252.00000 9.325200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.325200e+04 9.325200e+04 0.00 NULL
2015 Queens Community Board #3 Community Assistant 30703.00000 3.070300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.070300e+04 3.070300e+04 0.00 NULL
2015 Queens Community Board #3 Community Associate 40976.00000 4.097600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.097600e+04 4.097600e+04 0.00 NULL
2015 Queens Community Board #3 Community Service Aide 28683.00000 2.868300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.868300e+04 2.868300e+04 0.00 NULL
2015 Queens Community Board #3 District Manager 90231.00000 9.023100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.023100e+04 9.023100e+04 0.00 NULL
2015 Queens Community Board #4 Community Assistant 34148.00000 6.829600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.829600e+04 6.829600e+04 0.00 NULL
2015 Queens Community Board #4 Community Coordinator 71530.00000 7.153000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.153000e+04 7.153000e+04 0.00 NULL
2015 Queens Community Board #4 District Manager 82901.00000 8.290100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.290100e+04 8.290100e+04 0.00 NULL
2015 Queens Community Board #5 Community Associate 38051.56167 1.141547e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.141547e+05 1.141547e+05 0.00 NULL
2015 Queens Community Board #5 District Manager 75336.00000 7.533600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.533600e+04 7.533600e+04 0.00 NULL
2015 Queens Community Board #6 Community Associate 49889.00000 4.988900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.988900e+04 4.988900e+04 0.00 NULL
2015 Queens Community Board #6 Community Service Aide 17085.00000 1.708500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.708500e+04 1.708500e+04 0.00 NULL
2015 Queens Community Board #6 District Manager 96607.00000 9.660700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.660700e+04 9.660700e+04 0.00 NULL
2015 Queens Community Board #6 Secretary 34520.00000 3.452000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.452000e+04 3.452000e+04 0.00 NULL
2015 Queens Community Board #7 Community Assistant 35291.00000 7.058200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.058200e+04 7.058200e+04 0.00 NULL
2015 Queens Community Board #7 Community Associate 48624.00000 4.862400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.862400e+04 4.862400e+04 0.00 NULL
2015 Queens Community Board #7 Community Service Aide 16333.00000 1.633300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.633300e+04 1.633300e+04 0.00 NULL
2015 Queens Community Board #7 District Manager 103699.00000 1.036990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.036990e+05 1.036990e+05 0.00 NULL
2015 Queens Community Board #8 Community Assistant 29138.60000 1.456930e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.456930e+05 1.456930e+05 0.00 NULL
2015 Queens Community Board #8 Community Associate 45538.00000 4.553800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.553800e+04 4.553800e+04 0.00 NULL
2015 Queens Community Board #8 District Manager 91115.00000 9.111500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.111500e+04 9.111500e+04 0.00 NULL
2015 Queens Community Board #9 Community Associate 38869.00000 3.886900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.886900e+04 3.886900e+04 0.00 NULL
2015 Queens Community Board #9 Community Service Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2015 Queens Community Board #9 District Manager 81082.50000 1.621650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.621650e+05 1.621650e+05 0.00 NULL
2015 Staten Island Community Bd #1 Community Associate 53062.50000 1.061250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.061250e+05 1.061250e+05 0.00 NULL
2015 Staten Island Community Bd #1 District Manager 84614.17000 8.461417e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.461417e+04 8.461417e+04 0.00 NULL
2015 Staten Island Community Bd #2 Community Assistant 22396.44000 2.239644e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.239644e+04 2.239644e+04 0.00 NULL
2015 Staten Island Community Bd #2 Community Associate 22925.21000 2.292521e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.292521e+04 2.292521e+04 0.00 NULL
2015 Staten Island Community Bd #2 Community Coordinator 32355.84000 3.235584e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.235584e+04 3.235584e+04 0.00 NULL
2015 Staten Island Community Bd #2 District Manager 87402.15000 8.740215e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.740215e+04 8.740215e+04 0.00 NULL
2015 Staten Island Community Bd #3 Community Coordinator 55188.00000 1.103760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.103760e+05 1.103760e+05 0.00 NULL
2015 Staten Island Community Bd #3 District Manager 87035.00000 8.703500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.703500e+04 8.703500e+04 0.00 NULL
2015 Tax Commission *Administrative Attorney 138395.00000 1.383950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.383950e+05 1.383950e+05 0.00 NULL
2015 Tax Commission *Certified Database Administrator 91747.00000 9.174700e+04 4794.27 4.794270e+03 4794.270 77.00 1 4.794270e+03 4794.27 9.654127e+04 9.654127e+04 0.00 NULL
2015 Tax Commission Adm Manager-Non-Mgrl 67538.00000 1.350760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.350760e+05 1.350760e+05 0.00 NULL
2015 Tax Commission Administrative Assessor 15038.12000 1.503812e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503812e+04 1.503812e+04 0.00 NULL
2015 Tax Commission Agency Attorney 66626.24750 2.665050e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.665050e+05 2.665050e+05 0.00 NULL
2015 Tax Commission Assistant Counsel 117038.00000 1.170380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.170380e+05 1.170380e+05 0.00 NULL
2015 Tax Commission Associate Staff Analyst 73260.00000 7.326000e+04 0.00 0.000000e+00 0.000 1.00 1 0.000000e+00 0.00 7.326000e+04 7.326000e+04 0.00 NULL
2015 Tax Commission City Assessor 87850.16667 1.054202e+06 207814.91 1.731791e+04 11541.525 3064.75 12 1.154152e+04 138498.30 1.262017e+06 1.192700e+06 69316.61 NULL
2015 Tax Commission Clerical Associate 54379.00000 5.437900e+04 11.86 1.186000e+01 11.860 0.00 1 1.186000e+01 11.86 5.439086e+04 5.439086e+04 0.00 NULL
2015 Tax Commission College Aide 2795.14923 3.633694e+04 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 3.633694e+04 3.633694e+04 0.00 NULL
2015 Tax Commission Commissioner 79366.20000 3.968310e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.968310e+05 3.968310e+05 0.00 NULL
2015 Tax Commission Community Assistant 41000.15000 4.100015e+04 1486.25 1.486250e+03 1486.250 64.00 1 1.486250e+03 1486.25 4.248640e+04 4.248640e+04 0.00 NULL
2015 Tax Commission Computer Associate 69092.66667 2.072780e+05 6312.60 2.104200e+03 1430.750 130.00 3 1.430750e+03 4292.25 2.135906e+05 2.115702e+05 2020.35 NULL
2015 Tax Commission Computer Specialist 102909.00000 1.029090e+05 8015.91 8.015910e+03 8015.910 105.50 1 8.015910e+03 8015.91 1.109249e+05 1.109249e+05 0.00 NULL
2015 Tax Commission Computer Systems Manager 127381.00000 1.273810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.273810e+05 1.273810e+05 0.00 NULL
2015 Tax Commission Executive Agency Counsel 142513.00000 1.425130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.425130e+05 1.425130e+05 0.00 NULL
2015 Tax Commission Executive Assistant To The President Of The Tax Commission 117970.00000 1.179700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.179700e+05 1.179700e+05 0.00 NULL
2015 Tax Commission Paralegal Aide 49000.00000 4.900000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.900000e+04 4.900000e+04 0.00 NULL
2015 Tax Commission President 200847.00000 2.008470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.008470e+05 2.008470e+05 0.00 NULL
2015 Tax Commission Principal Administrative Associate 63298.00000 3.164900e+05 7843.09 1.568618e+03 0.000 158.50 5 0.000000e+00 0.00 3.243331e+05 3.164900e+05 7843.09 NULL
2015 Tax Commission Secretary 42000.00000 4.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.200000e+04 4.200000e+04 0.00 NULL
2015 Tax Commission Secretary Of The Tax Commission 72500.00000 7.250000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.250000e+04 7.250000e+04 0.00 NULL
2015 Tax Commission Secretary To The President 72500.00000 7.250000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.250000e+04 7.250000e+04 0.00 NULL
2015 Taxi & Limousine Commission *Certified Database Administrator 89076.00000 8.907600e+04 52.89 5.289000e+01 52.890 0.00 1 5.289000e+01 52.89 8.912889e+04 8.912889e+04 0.00 NULL
2015 Taxi & Limousine Commission Accountant 69214.00000 2.768560e+05 46.06 1.151500e+01 0.000 0.00 4 0.000000e+00 0.00 2.769021e+05 2.768560e+05 46.06 NULL
2015 Taxi & Limousine Commission Adm Manager-Non-Mgrl 67788.00000 6.778800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.778800e+04 6.778800e+04 0.00 NULL
2015 Taxi & Limousine Commission Administratiive Taxi & Limousine Inspector 108908.62500 8.712690e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.712690e+05 8.712690e+05 0.00 NULL
2015 Taxi & Limousine Commission Administrative City Planner 84770.00000 8.477000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.477000e+04 8.477000e+04 0.00 NULL
2015 Taxi & Limousine Commission Administrative Manager 127746.00000 1.277460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.277460e+05 1.277460e+05 0.00 NULL
2015 Taxi & Limousine Commission Administrative Procurement Analyst 96693.00000 9.669300e+04 1.86 1.860000e+00 1.860 0.00 1 1.860000e+00 1.86 9.669486e+04 9.669486e+04 0.00 NULL
2015 Taxi & Limousine Commission Administrative Project Manager 87087.00000 8.708700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.708700e+04 8.708700e+04 0.00 NULL
2015 Taxi & Limousine Commission Administrative Public Information Specialist 139140.00000 2.782800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.782800e+05 2.782800e+05 0.00 NULL
2015 Taxi & Limousine Commission Administrative Staff Analyst 100110.59091 2.202433e+06 27080.27 1.230921e+03 0.000 455.25 22 0.000000e+00 0.00 2.229513e+06 2.202433e+06 27080.27 NULL
2015 Taxi & Limousine Commission Agency Attorney 66310.51724 1.923005e+06 56790.53 1.958294e+03 10.880 1322.50 29 1.088000e+01 315.52 1.979796e+06 1.923321e+06 56475.01 NULL
2015 Taxi & Limousine Commission Agency Attorney Intern 52705.37173 1.001402e+06 10890.50 5.731842e+02 0.000 349.00 19 0.000000e+00 0.00 1.012293e+06 1.001402e+06 10890.50 NULL
2015 Taxi & Limousine Commission Associate Fingerprint Technician 35689.00000 3.568900e+04 148.01 1.480100e+02 148.010 20.75 1 1.480100e+02 148.01 3.583701e+04 3.583701e+04 0.00 NULL
2015 Taxi & Limousine Commission Associate Public Information Specialist 65221.00000 6.522100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.522100e+04 6.522100e+04 0.00 NULL
2015 Taxi & Limousine Commission Associate Staff Analyst 74655.00000 1.493100e+05 134.68 6.734000e+01 67.340 1.50 2 6.734000e+01 134.68 1.494447e+05 1.494447e+05 0.00 NULL
2015 Taxi & Limousine Commission Associate Taxi & Limousine Inspector 51230.53247 3.944751e+06 251654.97 3.268246e+03 1216.790 6963.50 77 1.216790e+03 93692.83 4.196406e+06 4.038444e+06 157962.14 NULL
2015 Taxi & Limousine Commission Cashier 33754.02222 3.037862e+05 5565.35 6.183722e+02 150.130 219.25 9 1.501300e+02 1351.17 3.093515e+05 3.051374e+05 4214.18 NULL
2015 Taxi & Limousine Commission Certified It Administrator 100580.50000 2.011610e+05 12.34 6.170000e+00 6.170 0.00 2 6.170000e+00 12.34 2.011733e+05 2.011733e+05 0.00 NULL
2015 Taxi & Limousine Commission Chairman 196522.50000 3.930450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.930450e+05 3.930450e+05 0.00 NULL
2015 Taxi & Limousine Commission City Planner 52339.50000 1.046790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.046790e+05 1.046790e+05 0.00 NULL
2015 Taxi & Limousine Commission Clerical Aide 20287.58075 2.028758e+05 825.71 8.257100e+01 0.385 46.00 10 3.850000e-01 3.85 2.037015e+05 2.028797e+05 821.86 NULL
2015 Taxi & Limousine Commission Clerical Associate 40849.98418 2.001649e+06 93279.53 1.903664e+03 43.990 3343.50 49 4.399000e+01 2155.51 2.094929e+06 2.003805e+06 91124.02 NULL
2015 Taxi & Limousine Commission College Aide 3425.60000 5.480960e+04 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 5.480960e+04 5.480960e+04 0.00 NULL
2015 Taxi & Limousine Commission Community Assistant 28916.61985 1.908497e+06 25486.16 3.861539e+02 16.815 1297.75 66 1.681500e+01 1109.79 1.933983e+06 1.909607e+06 24376.37 NULL
2015 Taxi & Limousine Commission Community Associate 38948.38229 4.323270e+06 154704.06 1.393730e+03 136.880 5832.00 111 1.368800e+02 15193.68 4.477974e+06 4.338464e+06 139510.38 NULL
2015 Taxi & Limousine Commission Community Coordinator 60409.88889 1.087378e+06 24612.85 1.367381e+03 9.590 534.00 18 9.590000e+00 172.62 1.111991e+06 1.087551e+06 24440.23 NULL
2015 Taxi & Limousine Commission Computer Aide-Non-Spvr 91978.32500 9.197832e+04 17350.43 1.735043e+04 17350.430 1015.50 1 1.735043e+04 17350.43 1.093288e+05 1.093288e+05 0.00 NULL
2015 Taxi & Limousine Commission Computer Associate 65664.27188 7.879713e+05 77669.02 6.472418e+03 1261.710 3183.25 12 1.261710e+03 15140.52 8.656403e+05 8.031118e+05 62528.50 NULL
2015 Taxi & Limousine Commission Computer Specialist 89082.91667 1.068995e+06 1333.59 1.111325e+02 0.000 24.50 12 0.000000e+00 0.00 1.070329e+06 1.068995e+06 1333.59 NULL
2015 Taxi & Limousine Commission Computer Systems Manager 121917.16667 7.315030e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.315030e+05 7.315030e+05 0.00 NULL
2015 Taxi & Limousine Commission Customer Information Representative 32988.00000 3.298800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.298800e+04 3.298800e+04 0.00 NULL
2015 Taxi & Limousine Commission Executive Agency Counsel 107343.62500 8.587490e+05 85.93 1.074125e+01 0.000 0.00 8 0.000000e+00 0.00 8.588349e+05 8.587490e+05 85.93 NULL
2015 Taxi & Limousine Commission Executive Assistant 102000.00000 1.020000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020000e+05 1.020000e+05 0.00 NULL
2015 Taxi & Limousine Commission Hearing Officer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2015 Taxi & Limousine Commission Investigator 50425.50000 3.025530e+05 22109.26 3.684877e+03 553.695 642.50 6 5.536950e+02 3322.17 3.246623e+05 3.058752e+05 18787.09 NULL
2015 Taxi & Limousine Commission Maintenance Worker NA NA 11643.97 5.821985e+03 5821.985 295.00 2 5.821985e+03 11643.97 NA NA NA NULL
2015 Taxi & Limousine Commission Operations Communications Specialist 29141.82431 2.622764e+05 5933.94 6.593267e+02 76.190 234.75 9 7.619000e+01 685.71 2.682104e+05 2.629621e+05 5248.23 NULL
2015 Taxi & Limousine Commission Principal Administrative Associate 60102.87500 1.442469e+06 117037.44 4.876560e+03 2030.220 2848.25 24 2.030220e+03 48725.28 1.559506e+06 1.491194e+06 68312.16 NULL
2015 Taxi & Limousine Commission Procurement Analyst 65172.00000 6.517200e+04 187.28 1.872800e+02 187.280 9.00 1 1.872800e+02 187.28 6.535928e+04 6.535928e+04 0.00 NULL
2015 Taxi & Limousine Commission Research Assistant 48082.00000 4.808200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.808200e+04 4.808200e+04 0.00 NULL
2015 Taxi & Limousine Commission Secretary 37866.40000 1.893320e+05 105.96 2.119200e+01 0.000 1.25 5 0.000000e+00 0.00 1.894380e+05 1.893320e+05 105.96 NULL
2015 Taxi & Limousine Commission Secretary To The Chairman 56666.00000 5.666600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.666600e+04 5.666600e+04 0.00 NULL
2015 Taxi & Limousine Commission Staff Analyst 56335.00000 5.633500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.633500e+04 5.633500e+04 0.00 NULL
2015 Taxi & Limousine Commission Stock Worker 37884.66844 1.515387e+05 5672.10 1.418025e+03 645.925 239.75 4 6.459250e+02 2583.70 1.572108e+05 1.541224e+05 3088.40 NULL
2015 Taxi & Limousine Commission Supervisor Of Stock Workers 43529.66667 1.305890e+05 10572.70 3.524233e+03 3014.740 325.75 3 3.014740e+03 9044.22 1.411617e+05 1.396332e+05 1528.48 NULL
2015 Taxi & Limousine Commission Taxi And Limousine Inspector 37481.29956 8.508255e+06 436596.60 1.923333e+03 430.800 16133.00 227 4.308000e+02 97791.60 8.944852e+06 8.606047e+06 338805.00 NULL
2015 Teachers Retirement System *Certified Applications Developer 94383.00000 9.438300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.438300e+04 9.438300e+04 0.00 NULL
2015 Teachers Retirement System Accountant 57722.16667 6.926660e+05 5588.48 4.657067e+02 0.000 149.50 12 0.000000e+00 0.00 6.982545e+05 6.926660e+05 5588.48 NULL
2015 Teachers Retirement System Adm Manager-Non-Mgrl 69206.65217 1.591753e+06 12385.27 5.384900e+02 0.980 202.00 23 9.800000e-01 22.54 1.604138e+06 1.591776e+06 12362.73 NULL
2015 Teachers Retirement System Administrative Accountant 92814.98667 5.568899e+05 229.75 3.829167e+01 0.000 0.00 6 0.000000e+00 0.00 5.571197e+05 5.568899e+05 229.75 NULL
2015 Teachers Retirement System Administrative Management Auditor 116099.00000 2.321980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.321980e+05 2.321980e+05 0.00 NULL
2015 Teachers Retirement System Administrative Manager 102376.66667 6.142600e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.142600e+05 6.142600e+05 0.00 NULL
2015 Teachers Retirement System Administrative Public Information Specialist 79670.00000 7.967000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.967000e+04 7.967000e+04 0.00 NULL
2015 Teachers Retirement System Administrative Retirement Benefits Specialist 101325.36000 2.533134e+06 165.63 6.625200e+00 0.000 0.00 25 0.000000e+00 0.00 2.533300e+06 2.533134e+06 165.63 NULL
2015 Teachers Retirement System Agency Attorney 75708.50000 1.514170e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.514170e+05 1.514170e+05 0.00 NULL
2015 Teachers Retirement System Agency Attorney Intern 54884.00000 5.488400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.488400e+04 5.488400e+04 0.00 NULL
2015 Teachers Retirement System Assistant Executive Director 158547.66667 4.756430e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.756430e+05 4.756430e+05 0.00 NULL
2015 Teachers Retirement System Assistant Retirement Benefits Examiner 48158.16667 5.778980e+05 2571.84 2.143200e+02 0.000 59.00 12 0.000000e+00 0.00 5.804698e+05 5.778980e+05 2571.84 NULL
2015 Teachers Retirement System Associate Public Information Specialist 54096.00000 1.081920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.081920e+05 1.081920e+05 0.00 NULL
2015 Teachers Retirement System Associate Public Records Officer 72035.00000 7.203500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.203500e+04 7.203500e+04 0.00 NULL
2015 Teachers Retirement System Associate Retirement Benefits Examiner 52364.99281 7.278734e+06 105740.73 7.607247e+02 0.000 2442.50 139 0.000000e+00 0.00 7.384475e+06 7.278734e+06 105740.73 NULL
2015 Teachers Retirement System Associate Staff Analyst 71179.40000 3.558970e+05 389.70 7.794000e+01 0.000 8.75 5 0.000000e+00 0.00 3.562867e+05 3.558970e+05 389.70 NULL
2015 Teachers Retirement System Bookkeeper 43839.00000 3.945510e+05 10.00 1.111111e+00 0.000 0.00 9 0.000000e+00 0.00 3.945610e+05 3.945510e+05 10.00 NULL
2015 Teachers Retirement System Certified It Developer 107659.00000 1.076590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.076590e+05 1.076590e+05 0.00 NULL
2015 Teachers Retirement System Clerical Associate 44438.36000 1.110959e+06 13826.62 5.530648e+02 111.940 236.75 25 1.119400e+02 2798.50 1.124786e+06 1.113758e+06 11028.12 NULL
2015 Teachers Retirement System College Aide 7365.22917 4.419138e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.419138e+04 4.419138e+04 0.00 NULL
2015 Teachers Retirement System College Aide - Assignment Levels Ii And Iii 13605.13125 2.721026e+04 0.00 0.000000e+00 0.000 19.25 2 0.000000e+00 0.00 2.721026e+04 2.721026e+04 0.00 NULL
2015 Teachers Retirement System Community Assistant 37201.00000 3.720100e+04 70.79 7.079000e+01 70.790 3.00 1 7.079000e+01 70.79 3.727179e+04 3.727179e+04 0.00 NULL
2015 Teachers Retirement System Computer Associate 64823.58951 9.075303e+05 2327.65 1.662607e+02 4.280 44.25 14 4.280000e+00 59.92 9.098579e+05 9.075902e+05 2267.73 NULL
2015 Teachers Retirement System Computer Operations Manager 118136.00000 1.181360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.181360e+05 1.181360e+05 0.00 NULL
2015 Teachers Retirement System Computer Service Technician 58605.00000 5.860500e+04 5.00 5.000000e+00 5.000 0.00 1 5.000000e+00 5.00 5.861000e+04 5.861000e+04 0.00 NULL
2015 Teachers Retirement System Computer Specialist 98492.70588 3.348752e+06 965.63 2.840088e+01 0.000 48.25 34 0.000000e+00 0.00 3.349718e+06 3.348752e+06 965.63 NULL
2015 Teachers Retirement System Computer Systems Manager 135949.25490 6.933412e+06 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 6.933412e+06 6.933412e+06 0.00 NULL
2015 Teachers Retirement System Customer Information Representative 46091.33333 2.765480e+05 2196.61 3.661017e+02 0.000 39.50 6 0.000000e+00 0.00 2.787446e+05 2.765480e+05 2196.61 NULL
2015 Teachers Retirement System Deputy Executive Director 198693.00000 1.986930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.986930e+05 1.986930e+05 0.00 NULL
2015 Teachers Retirement System Executive Agency Counsel 141512.50000 2.830250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.830250e+05 2.830250e+05 0.00 NULL
2015 Teachers Retirement System Executive Director 214568.00000 2.145680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.145680e+05 2.145680e+05 0.00 NULL
2015 Teachers Retirement System Graphic Artist 64466.00000 6.446600e+04 3.86 3.860000e+00 3.860 0.00 1 3.860000e+00 3.86 6.446986e+04 6.446986e+04 0.00 NULL
2015 Teachers Retirement System Investment Analyst 70707.75000 2.828310e+05 1778.00 4.445000e+02 0.000 40.00 4 0.000000e+00 0.00 2.846090e+05 2.828310e+05 1778.00 NULL
2015 Teachers Retirement System Management Auditor 55636.66667 1.669100e+05 6636.99 2.212330e+03 3.600 169.75 3 3.600000e+00 10.80 1.735470e+05 1.669208e+05 6626.19 NULL
2015 Teachers Retirement System Office Machine Aide 40298.00000 4.029800e+05 5808.10 5.808100e+02 546.965 72.50 10 5.469650e+02 5469.65 4.087881e+05 4.084497e+05 338.45 NULL
2015 Teachers Retirement System Principal Administrative Associate 58792.13714 8.230899e+05 6570.33 4.693093e+02 0.000 176.00 14 0.000000e+00 0.00 8.296602e+05 8.230899e+05 6570.33 NULL
2015 Teachers Retirement System Public Records Aide 44239.00000 4.423900e+04 9.52 9.520000e+00 9.520 0.00 1 9.520000e+00 9.52 4.424852e+04 4.424852e+04 0.00 NULL
2015 Teachers Retirement System Staff Analyst 56849.50000 2.273980e+05 2252.62 5.631550e+02 0.000 59.00 4 0.000000e+00 0.00 2.296506e+05 2.273980e+05 2252.62 NULL
2015 Teachers Retirement System Stock Worker 33332.00000 6.666400e+04 289.39 1.446950e+02 144.695 11.00 2 1.446950e+02 289.39 6.695339e+04 6.695339e+04 0.00 NULL
2015 Teachers Retirement System Summer College Intern 1865.05667 2.797585e+04 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 2.797585e+04 2.797585e+04 0.00 NULL
2015 Teachers Retirement System Summer Graduate Intern 3857.00000 7.714000e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.714000e+03 7.714000e+03 0.00 NULL
2015 Teachers Retirement System Supervisor Of Office Machine Operations 39976.00000 7.995200e+04 319.10 1.595500e+02 159.550 0.00 2 1.595500e+02 319.10 8.027110e+04 8.027110e+04 0.00 NULL
2015 Teachers Retirement System Supervisor Of Stock Workers 45397.00000 4.539700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.539700e+04 4.539700e+04 0.00 NULL
2016 Admin For Children’s Svcs *Certified Database Administrator 100602.50000 2.012050e+05 439.71 2.198550e+02 219.855 10.00 2 2.198550e+02 439.71 2.016447e+05 2.016447e+05 0.00 NULL
2016 Admin For Children’s Svcs Accountant 59745.07692 7.766860e+05 447.97 3.445923e+01 0.000 11.50 13 0.000000e+00 0.00 7.771340e+05 7.766860e+05 447.97 NULL
2016 Admin For Children’s Svcs Adm Manager-Non-Mgrl 64771.50000 5.181720e+05 4128.46 5.160575e+02 42.300 119.25 8 4.230000e+01 338.40 5.223005e+05 5.185104e+05 3790.06 NULL
2016 Admin For Children’s Svcs Admin Contract Specialist 97472.50000 1.949450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.949450e+05 1.949450e+05 0.00 NULL
2016 Admin For Children’s Svcs Administrative Accountant 91049.00000 9.104900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.104900e+04 9.104900e+04 0.00 NULL
2016 Admin For Children’s Svcs Administrative Construction Project Manager 114225.00000 1.142250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.142250e+05 1.142250e+05 0.00 NULL
2016 Admin For Children’s Svcs Administrative Director Of Residential Child Care 76317.14286 1.602660e+06 13528.01 6.441910e+02 0.000 366.25 21 0.000000e+00 0.00 1.616188e+06 1.602660e+06 13528.01 NULL
2016 Admin For Children’s Svcs Administrative Director Of Social Services 97834.32305 2.935030e+07 35520.07 1.184002e+02 0.000 742.50 300 0.000000e+00 0.00 2.938582e+07 2.935030e+07 35520.07 NULL
2016 Admin For Children’s Svcs Administrative Engineer 84833.50000 1.696670e+05 163.84 8.192000e+01 81.920 3.50 2 8.192000e+01 163.84 1.698308e+05 1.698308e+05 0.00 NULL
2016 Admin For Children’s Svcs Administrative Juvenile Counselor 73555.00000 7.355500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.355500e+04 7.355500e+04 0.00 NULL
2016 Admin For Children’s Svcs Administrative Project Manager 92913.40000 4.645670e+05 35443.61 7.088722e+03 1514.330 634.50 5 1.514330e+03 7571.65 5.000106e+05 4.721387e+05 27871.96 NULL
2016 Admin For Children’s Svcs Administrative Public Health Nurse 133327.00000 1.333270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.333270e+05 1.333270e+05 0.00 NULL
2016 Admin For Children’s Svcs Administrative Public Information Specialist 179008.00000 1.790080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.790080e+05 1.790080e+05 0.00 NULL
2016 Admin For Children’s Svcs Administrative Real Property Manager 132915.00000 1.329150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.329150e+05 1.329150e+05 0.00 NULL
2016 Admin For Children’s Svcs Administrative Staff Analyst 86059.10786 2.487108e+07 419165.07 1.450398e+03 0.000 7012.00 289 0.000000e+00 0.00 2.529025e+07 2.487108e+07 419165.07 NULL
2016 Admin For Children’s Svcs Agency Attorney 73412.08590 2.040856e+07 31250.60 1.124122e+02 0.000 590.00 278 0.000000e+00 0.00 2.043981e+07 2.040856e+07 31250.60 NULL
2016 Admin For Children’s Svcs Agency Attorney Interne 56668.46341 2.323407e+06 1125.41 2.744902e+01 0.000 27.75 41 0.000000e+00 0.00 2.324532e+06 2.323407e+06 1125.41 NULL
2016 Admin For Children’s Svcs Architect 85871.00000 3.434840e+05 921.99 2.304975e+02 161.310 72.50 4 1.613100e+02 645.24 3.444060e+05 3.441292e+05 276.75 NULL
2016 Admin For Children’s Svcs Assistant Architect 59324.00000 5.932400e+04 1536.66 1.536660e+03 1536.660 31.00 1 1.536660e+03 1536.66 6.086066e+04 6.086066e+04 0.00 NULL
2016 Admin For Children’s Svcs Assistant Commissioner 130525.00000 1.305250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.305250e+05 1.305250e+05 0.00 NULL
2016 Admin For Children’s Svcs Associate Inspector 64249.00000 1.284980e+05 9653.36 4.826680e+03 4826.680 206.75 2 4.826680e+03 9653.36 1.381514e+05 1.381514e+05 0.00 NULL
2016 Admin For Children’s Svcs Associate Juvenile Counselor 56048.23913 2.578219e+06 1246309.86 2.709369e+04 21012.190 28046.22 46 2.101219e+04 966560.74 3.824529e+06 3.544780e+06 279749.12 NULL
2016 Admin For Children’s Svcs Associate Project Manager 79777.75000 3.191110e+05 71293.62 1.782340e+04 10597.405 1254.25 4 1.059741e+04 42389.62 3.904046e+05 3.615006e+05 28904.00 NULL
2016 Admin For Children’s Svcs Associate Staff Analyst 76389.82292 7.333423e+06 62542.74 6.514869e+02 0.000 1149.00 96 0.000000e+00 0.00 7.395966e+06 7.333423e+06 62542.74 NULL
2016 Admin For Children’s Svcs Attorney At Law 84225.21429 1.179153e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.179153e+06 1.179153e+06 0.00 NULL
2016 Admin For Children’s Svcs Bookkeeper 40730.33333 2.443820e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.443820e+05 2.443820e+05 0.00 NULL
2016 Admin For Children’s Svcs Carpenter NA NA 79746.18 7.974618e+04 79746.180 1209.00 1 7.974618e+04 79746.18 NA NA NA NULL
2016 Admin For Children’s Svcs Caseworker 43618.15686 2.224526e+06 20699.15 4.058657e+02 0.000 650.25 51 0.000000e+00 0.00 2.245225e+06 2.224526e+06 20699.15 NULL
2016 Admin For Children’s Svcs Certified Applications Developer 98389.00000 9.838900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.838900e+04 9.838900e+04 0.00 NULL
2016 Admin For Children’s Svcs Certified It Developer 85529.66667 2.565890e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.565890e+05 2.565890e+05 0.00 NULL
2016 Admin For Children’s Svcs Certified Local Area Network Administrator 91830.66667 2.754920e+05 3346.78 1.115593e+03 1284.980 58.00 3 1.115593e+03 3346.78 2.788388e+05 2.788388e+05 0.00 NULL
2016 Admin For Children’s Svcs Chaplain 56743.00000 5.674300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.674300e+04 5.674300e+04 0.00 NULL
2016 Admin For Children’s Svcs Child And Family Specialist 79263.51948 1.830987e+07 297330.06 1.287143e+03 0.000 6314.00 231 0.000000e+00 0.00 1.860720e+07 1.830987e+07 297330.06 NULL
2016 Admin For Children’s Svcs Child Protective Specialist 52324.19189 1.147993e+08 13883377.06 6.327884e+03 4394.040 370925.71 2194 4.394040e+03 9640523.76 1.286827e+08 1.244398e+08 4242853.30 NULL
2016 Admin For Children’s Svcs Child Protective Specialist Supervisor 75474.12702 3.743517e+07 6261128.77 1.262324e+04 10110.040 115868.75 496 1.011004e+04 5014579.84 4.369630e+07 4.244975e+07 1246548.93 NULL
2016 Admin For Children’s Svcs Child Welfare Specialist 54532.19512 1.117910e+07 367552.63 1.792940e+03 0.000 9402.50 205 0.000000e+00 0.00 1.154665e+07 1.117910e+07 367552.63 NULL
2016 Admin For Children’s Svcs Child Welfare Specialist Supervisor 69629.32773 8.285890e+06 325551.85 2.735730e+03 0.000 6606.75 119 0.000000e+00 0.00 8.611442e+06 8.285890e+06 325551.85 NULL
2016 Admin For Children’s Svcs Children’s Counselor 44370.77577 8.430447e+05 155558.94 8.187313e+03 4592.070 4784.00 19 4.592070e+03 87249.33 9.986037e+05 9.302941e+05 68309.61 NULL
2016 Admin For Children’s Svcs City Laborer NA NA 284165.16 3.552064e+04 37425.435 5912.25 8 3.552064e+04 284165.16 NA NA NA NULL
2016 Admin For Children’s Svcs City Medical Director 110989.66667 3.329690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.329690e+05 3.329690e+05 0.00 NULL
2016 Admin For Children’s Svcs City Research Scientist 92746.85714 6.492280e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.492280e+05 6.492280e+05 0.00 NULL
2016 Admin For Children’s Svcs Clerical Aide 34327.00000 6.865400e+04 103.12 5.156000e+01 51.560 2.25 2 5.156000e+01 103.12 6.875712e+04 6.875712e+04 0.00 NULL
2016 Admin For Children’s Svcs Clerical Associate 37870.82353 7.725648e+06 325856.77 1.597337e+03 0.000 11068.25 204 0.000000e+00 0.00 8.051505e+06 7.725648e+06 325856.77 NULL
2016 Admin For Children’s Svcs College Aide 2986.70167 1.792021e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.792021e+04 1.792021e+04 0.00 NULL
2016 Admin For Children’s Svcs Commissioner Of Children’s Services 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Admin For Children’s Svcs Community Assistant 33977.68008 2.106616e+06 136255.96 2.197677e+03 0.000 5693.50 62 0.000000e+00 0.00 2.242872e+06 2.106616e+06 136255.96 NULL
2016 Admin For Children’s Svcs Community Associate 44390.00000 2.263890e+06 77762.09 1.524747e+03 0.000 2713.75 51 0.000000e+00 0.00 2.341652e+06 2.263890e+06 77762.09 NULL
2016 Admin For Children’s Svcs Community Coordinator 59548.85542 1.482766e+07 134268.63 5.392314e+02 0.000 3871.00 249 0.000000e+00 0.00 1.496193e+07 1.482766e+07 134268.63 NULL
2016 Admin For Children’s Svcs Computer Aide-Non-Spvr 46534.11111 1.675228e+06 12843.41 3.567614e+02 0.000 325.75 36 0.000000e+00 0.00 1.688071e+06 1.675228e+06 12843.41 NULL
2016 Admin For Children’s Svcs Computer Associate 66850.44444 1.804962e+06 2666.27 9.875074e+01 0.000 49.50 27 0.000000e+00 0.00 1.807628e+06 1.804962e+06 2666.27 NULL
2016 Admin For Children’s Svcs Computer Programmer Analyst 63502.66667 1.905080e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.905080e+05 1.905080e+05 0.00 NULL
2016 Admin For Children’s Svcs Computer Service Technician 43241.22222 3.891710e+05 682.82 7.586889e+01 0.000 26.00 9 0.000000e+00 0.00 3.898538e+05 3.891710e+05 682.82 NULL
2016 Admin For Children’s Svcs Computer Specialist 93069.50000 2.047529e+06 4316.41 1.962005e+02 0.000 71.75 22 0.000000e+00 0.00 2.051845e+06 2.047529e+06 4316.41 NULL
2016 Admin For Children’s Svcs Computer Systems Manager 101948.31034 2.956501e+06 4.90 1.689655e-01 0.000 0.00 29 0.000000e+00 0.00 2.956506e+06 2.956501e+06 4.90 NULL
2016 Admin For Children’s Svcs Confidential Agency Investigator 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2016 Admin For Children’s Svcs Congreg Care Spec - Acs 50883.67647 1.730045e+06 367324.73 1.080367e+04 5326.070 10581.00 34 5.326070e+03 181086.38 2.097370e+06 1.911131e+06 186238.35 NULL
2016 Admin For Children’s Svcs Congreg Care Spec- Djj 48394.09091 1.597005e+06 408244.03 1.237103e+04 9313.340 10708.36 33 9.313340e+03 307340.22 2.005249e+06 1.904345e+06 100903.81 NULL
2016 Admin For Children’s Svcs Construction Project Manager 79844.75000 6.387580e+05 194128.02 2.426600e+04 15235.500 3204.25 8 1.523550e+04 121884.00 8.328860e+05 7.606420e+05 72244.02 NULL
2016 Admin For Children’s Svcs Consultant 69181.66667 1.245270e+06 1032.38 5.735444e+01 0.000 24.50 18 0.000000e+00 0.00 1.246302e+06 1.245270e+06 1032.38 NULL
2016 Admin For Children’s Svcs Contract Specialist 43159.00000 4.315900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.315900e+04 4.315900e+04 0.00 NULL
2016 Admin For Children’s Svcs Cook 40021.66667 2.401300e+05 61801.65 1.030027e+04 8765.565 2250.25 6 8.765565e+03 52593.39 3.019317e+05 2.927234e+05 9208.26 NULL
2016 Admin For Children’s Svcs Custodial Assistant 37565.66667 1.126970e+05 60623.08 2.020769e+04 8434.550 2140.25 3 8.434550e+03 25303.65 1.733201e+05 1.380006e+05 35319.43 NULL
2016 Admin For Children’s Svcs Custodian 38976.71429 2.728370e+05 108570.36 1.551005e+04 10009.870 4166.50 7 1.000987e+04 70069.09 3.814074e+05 3.429061e+05 38501.27 NULL
2016 Admin For Children’s Svcs Deputy General Counsel 144706.00000 1.447060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.447060e+05 1.447060e+05 0.00 NULL
2016 Admin For Children’s Svcs Deputy Superintendent 73194.00000 3.659700e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.659700e+05 3.659700e+05 0.00 NULL
2016 Admin For Children’s Svcs Director Of Field Operations 97542.64088 1.765522e+07 94594.46 5.226213e+02 0.000 1560.75 181 0.000000e+00 0.00 1.774981e+07 1.765522e+07 94594.46 NULL
2016 Admin For Children’s Svcs Director Of Program Planning 97691.00000 9.769100e+04 766.45 7.664500e+02 766.450 12.75 1 7.664500e+02 766.45 9.845745e+04 9.845745e+04 0.00 NULL
2016 Admin For Children’s Svcs Director Of Security 76640.00000 7.664000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.664000e+04 7.664000e+04 0.00 NULL
2016 Admin For Children’s Svcs Electrician NA NA 70327.25 7.032725e+04 70327.250 995.50 1 7.032725e+04 70327.25 NA NA NA NULL
2016 Admin For Children’s Svcs Eligibility Specialist 45920.00000 9.184000e+04 2592.68 1.296340e+03 1296.340 80.25 2 1.296340e+03 2592.68 9.443268e+04 9.443268e+04 0.00 NULL
2016 Admin For Children’s Svcs Executive Agency Counsel 119932.54545 5.277032e+06 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 5.277032e+06 5.277032e+06 0.00 NULL
2016 Admin For Children’s Svcs Executive Assistant To The Executive Deputy Adm 122846.00000 1.228460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.228460e+05 1.228460e+05 0.00 NULL
2016 Admin For Children’s Svcs Food Service Manager 65521.00000 6.552100e+04 10482.30 1.048230e+04 10482.300 272.00 1 1.048230e+04 10482.30 7.600330e+04 7.600330e+04 0.00 NULL
2016 Admin For Children’s Svcs Graphic Artist 51179.00000 5.117900e+04 26.07 2.607000e+01 26.070 0.00 1 2.607000e+01 26.07 5.120507e+04 5.120507e+04 0.00 NULL
2016 Admin For Children’s Svcs Home Aide 32739.00000 3.273900e+04 10412.24 1.041224e+04 10412.240 450.25 1 1.041224e+04 10412.24 4.315124e+04 4.315124e+04 0.00 NULL
2016 Admin For Children’s Svcs Homemaker 33199.83333 1.991990e+05 15253.07 2.542178e+03 1214.080 637.75 6 1.214080e+03 7284.48 2.144521e+05 2.064835e+05 7968.59 NULL
2016 Admin For Children’s Svcs Institutional Aide 35157.62963 9.492560e+05 191551.48 7.094499e+03 2597.010 7446.25 27 2.597010e+03 70119.27 1.140807e+06 1.019375e+06 121432.21 NULL
2016 Admin For Children’s Svcs Juvenile Counselor 42411.40952 1.335959e+07 3820795.68 1.212951e+04 8568.610 114834.89 315 8.568610e+03 2699112.15 1.718039e+07 1.605871e+07 1121683.53 NULL
2016 Admin For Children’s Svcs Management Auditor 64128.50000 1.282570e+05 107.05 5.352500e+01 53.525 2.50 2 5.352500e+01 107.05 1.283641e+05 1.283641e+05 0.00 NULL
2016 Admin For Children’s Svcs Motor Vehicle Operator 45125.35294 7.671310e+05 391863.07 2.305077e+04 20229.180 11940.73 17 2.022918e+04 343896.06 1.158994e+06 1.111027e+06 47967.01 NULL
2016 Admin For Children’s Svcs Motor Vehicle Supervisor 52413.00000 1.048260e+05 106496.32 5.324816e+04 53248.160 2752.50 2 5.324816e+04 106496.32 2.113223e+05 2.113223e+05 0.00 NULL
2016 Admin For Children’s Svcs Office Machine Aide 35887.00000 3.588700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.588700e+04 3.588700e+04 0.00 NULL
2016 Admin For Children’s Svcs Ombudsman 65848.00000 6.584800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.584800e+04 6.584800e+04 0.00 NULL
2016 Admin For Children’s Svcs Painter NA NA 3303.88 3.303880e+03 3303.880 47.50 1 3.303880e+03 3303.88 NA NA NA NULL
2016 Admin For Children’s Svcs Paralegal Aide 40236.76471 6.840250e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 6.840250e+05 6.840250e+05 0.00 NULL
2016 Admin For Children’s Svcs Plumber NA NA 104612.72 3.487091e+04 33514.130 720.00 3 3.351413e+04 100542.39 NA NA NA NULL
2016 Admin For Children’s Svcs Principal Administrative Associate 54017.60382 1.588118e+07 375605.16 1.277569e+03 0.000 10017.75 294 0.000000e+00 0.00 1.625678e+07 1.588118e+07 375605.16 NULL
2016 Admin For Children’s Svcs Procurement Analyst 56416.46154 7.334140e+05 2018.44 1.552646e+02 0.000 64.75 13 0.000000e+00 0.00 7.354324e+05 7.334140e+05 2018.44 NULL
2016 Admin For Children’s Svcs Program Evaluator 72827.35000 5.826188e+06 926.78 1.158475e+01 0.000 14.75 80 0.000000e+00 0.00 5.827115e+06 5.826188e+06 926.78 NULL
2016 Admin For Children’s Svcs Project Manager 70566.00000 7.056600e+04 8169.06 8.169060e+03 8169.060 167.75 1 8.169060e+03 8169.06 7.873506e+04 7.873506e+04 0.00 NULL
2016 Admin For Children’s Svcs Protection Agent 61780.79365 7.784380e+06 1041.03 8.262143e+00 0.000 24.00 126 0.000000e+00 0.00 7.785421e+06 7.784380e+06 1041.03 NULL
2016 Admin For Children’s Svcs Recreation Director 43169.00000 4.316900e+04 1953.03 1.953030e+03 1953.030 54.00 1 1.953030e+03 1953.03 4.512203e+04 4.512203e+04 0.00 NULL
2016 Admin For Children’s Svcs Recreation Supervisor 53406.00000 5.340600e+04 9026.69 9.026690e+03 9026.690 253.75 1 9.026690e+03 9026.69 6.243269e+04 6.243269e+04 0.00 NULL
2016 Admin For Children’s Svcs Research Assistant 46768.57143 3.273800e+05 18185.53 2.597933e+03 0.000 514.25 7 0.000000e+00 0.00 3.455655e+05 3.273800e+05 18185.53 NULL
2016 Admin For Children’s Svcs Secretary 43250.84615 5.622610e+05 325.00 2.500000e+01 0.000 19.73 13 0.000000e+00 0.00 5.625860e+05 5.622610e+05 325.00 NULL
2016 Admin For Children’s Svcs Secretary Of Comm 67417.00000 6.741700e+04 133.33 1.333300e+02 133.330 4.00 1 1.333300e+02 133.33 6.755033e+04 6.755033e+04 0.00 NULL
2016 Admin For Children’s Svcs Sheet Metal Worker NA NA 74782.12 7.478212e+04 74782.120 685.50 1 7.478212e+04 74782.12 NA NA NA NULL
2016 Admin For Children’s Svcs Space Analyst 71743.75000 2.869750e+05 75474.51 1.886863e+04 16529.370 1602.50 4 1.652937e+04 66117.48 3.624495e+05 3.530925e+05 9357.03 NULL
2016 Admin For Children’s Svcs Special Officer 40609.72727 4.020363e+06 749527.77 7.570988e+03 6629.420 23931.22 99 6.629420e+03 656312.58 4.769891e+06 4.676676e+06 93215.19 NULL
2016 Admin For Children’s Svcs Staff Analyst 62064.18182 2.730824e+06 21205.16 4.819355e+02 0.000 522.25 44 0.000000e+00 0.00 2.752029e+06 2.730824e+06 21205.16 NULL
2016 Admin For Children’s Svcs Staff Analyst Trainee 40565.33333 6.084800e+05 7.81 5.206667e-01 0.000 0.00 15 0.000000e+00 0.00 6.084878e+05 6.084800e+05 7.81 NULL
2016 Admin For Children’s Svcs Staff Nurse 69415.33333 6.247380e+05 4082.13 4.535700e+02 0.000 83.00 9 0.000000e+00 0.00 6.288201e+05 6.247380e+05 4082.13 NULL
2016 Admin For Children’s Svcs Summer College Intern 2713.68251 1.682483e+05 0.00 0.000000e+00 0.000 0.00 62 0.000000e+00 0.00 1.682483e+05 1.682483e+05 0.00 NULL
2016 Admin For Children’s Svcs Summer Graduate Intern 8316.00000 8.316000e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.316000e+03 8.316000e+03 0.00 NULL
2016 Admin For Children’s Svcs Superintendent 100356.33333 3.010690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.010690e+05 3.010690e+05 0.00 NULL
2016 Admin For Children’s Svcs Supervising Computer Service Technician 61805.75000 2.472230e+05 104.91 2.622750e+01 0.000 5.50 4 0.000000e+00 0.00 2.473279e+05 2.472230e+05 104.91 NULL
2016 Admin For Children’s Svcs Supervising Special Officer 50226.97059 1.707717e+06 378397.22 1.112933e+04 8810.960 10159.75 34 8.810960e+03 299572.64 2.086114e+06 2.007290e+06 78824.58 NULL
2016 Admin For Children’s Svcs Supervisor Carpenter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2016 Admin For Children’s Svcs Supervisor I 54122.93750 8.659670e+05 8202.44 5.126525e+02 0.000 254.75 16 0.000000e+00 0.00 8.741694e+05 8.659670e+05 8202.44 NULL
2016 Admin For Children’s Svcs Supervisor I Social Work 75910.00000 7.591000e+04 2783.42 2.783420e+03 2783.420 70.00 1 2.783420e+03 2783.42 7.869342e+04 7.869342e+04 0.00 NULL
2016 Admin For Children’s Svcs Supervisor Ii 62906.93548 1.950115e+06 42807.21 1.380878e+03 0.000 1153.25 31 0.000000e+00 0.00 1.992922e+06 1.950115e+06 42807.21 NULL
2016 Admin For Children’s Svcs Supervisor Iii 70314.00000 7.734540e+05 18868.77 1.715343e+03 0.000 423.75 11 0.000000e+00 0.00 7.923228e+05 7.734540e+05 18868.77 NULL
2016 Admin For Children’s Svcs Supervisor Iii Social Work 77177.50000 1.543550e+05 198.84 9.942000e+01 99.420 0.00 2 9.942000e+01 198.84 1.545538e+05 1.545538e+05 0.00 NULL
2016 Admin For Children’s Svcs Supervisor Of Child Care 62434.87500 4.994790e+05 176013.27 2.200166e+04 24417.755 3745.50 8 2.200166e+04 176013.27 6.754923e+05 6.754923e+05 0.00 NULL
2016 Admin For Children’s Svcs Supervisor Of Mechanical Installations & Maintenance 72894.50000 1.457890e+05 13797.74 6.898870e+03 6898.870 214.50 2 6.898870e+03 13797.74 1.595867e+05 1.595867e+05 0.00 NULL
2016 Admin For Children’s Svcs Supervisor Of Mechanics NA NA 7604.18 3.802090e+03 3802.090 0.00 2 3.802090e+03 7604.18 NA NA NA NULL
2016 Admin For Children’s Svcs Supervisor Of Nurses 78434.77778 7.059130e+05 0.00 0.000000e+00 0.000 1.75 9 0.000000e+00 0.00 7.059130e+05 7.059130e+05 0.00 NULL
2016 Admin For Children’s Svcs Telecommunications Associate 68660.70000 6.866070e+05 40873.20 4.087320e+03 1445.615 732.00 10 1.445615e+03 14456.15 7.274802e+05 7.010632e+05 26417.05 NULL
2016 Admin Trials And Hearings Adm Manager-Non-Mgrl 70471.27778 1.268483e+06 583.04 3.239111e+01 0.000 19.25 18 0.000000e+00 0.00 1.269066e+06 1.268483e+06 583.04 NULL
2016 Admin Trials And Hearings Administrative Accountant 93000.00000 1.860000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.860000e+05 1.860000e+05 0.00 NULL
2016 Admin Trials And Hearings Administrative Law Judge 138156.18182 1.519718e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.519718e+06 1.519718e+06 0.00 NULL
2016 Admin Trials And Hearings Administrative Manager 92250.00000 9.225000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.225000e+04 9.225000e+04 0.00 NULL
2016 Admin Trials And Hearings Administrative Staff Analyst 109266.08333 1.311193e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.311193e+06 1.311193e+06 0.00 NULL
2016 Admin Trials And Hearings Agency Attorney 87243.66667 2.355579e+06 99.64 3.690370e+00 0.000 0.00 27 0.000000e+00 0.00 2.355679e+06 2.355579e+06 99.64 NULL
2016 Admin Trials And Hearings Agency Attorney Interne 30636.59938 1.225464e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.225464e+05 1.225464e+05 0.00 NULL
2016 Admin Trials And Hearings Agency Chief Contracting Officer 101399.00000 1.013990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.013990e+05 1.013990e+05 0.00 NULL
2016 Admin Trials And Hearings Associate Staff Analyst 78319.33333 4.699160e+05 56.95 9.491667e+00 0.000 0.00 6 0.000000e+00 0.00 4.699730e+05 4.699160e+05 56.95 NULL
2016 Admin Trials And Hearings Attorney At Law 88957.75000 3.558310e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.558310e+05 3.558310e+05 0.00 NULL
2016 Admin Trials And Hearings Bookkeeper 45072.00000 9.014400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.014400e+04 9.014400e+04 0.00 NULL
2016 Admin Trials And Hearings Certified It Developer 112180.00000 1.121800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.121800e+05 1.121800e+05 0.00 NULL
2016 Admin Trials And Hearings Chief Administrative Law Judge 205868.00000 2.058680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.058680e+05 2.058680e+05 0.00 NULL
2016 Admin Trials And Hearings City Laborer NA NA 1538.78 7.693900e+02 769.390 28.50 2 7.693900e+02 1538.78 NA NA NA NULL
2016 Admin Trials And Hearings Clerical Aide 30644.00000 6.128800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.128800e+04 6.128800e+04 0.00 NULL
2016 Admin Trials And Hearings Clerical Associate 36952.81419 1.515065e+06 0.00 0.000000e+00 0.000 0.00 41 0.000000e+00 0.00 1.515065e+06 1.515065e+06 0.00 NULL
2016 Admin Trials And Hearings College Aide 4784.81417 7.177221e+04 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 7.177221e+04 7.177221e+04 0.00 NULL
2016 Admin Trials And Hearings College Aide - Assignment Levels Ii And Iii 2327.66000 2.327660e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.327660e+03 2.327660e+03 0.00 NULL
2016 Admin Trials And Hearings Community Assistant 30377.32328 5.467918e+05 225.36 1.252000e+01 0.000 11.00 18 0.000000e+00 0.00 5.470172e+05 5.467918e+05 225.36 NULL
2016 Admin Trials And Hearings Community Associate 40591.83011 1.542490e+06 1773.59 4.667342e+01 0.000 69.50 38 0.000000e+00 0.00 1.544263e+06 1.542490e+06 1773.59 NULL
2016 Admin Trials And Hearings Community Coordinator 62282.46154 8.096720e+05 1098.12 8.447077e+01 0.000 29.50 13 0.000000e+00 0.00 8.107701e+05 8.096720e+05 1098.12 NULL
2016 Admin Trials And Hearings Community Service Aide 21591.89537 1.317106e+06 2444.78 4.007836e+01 0.000 93.25 61 0.000000e+00 0.00 1.319550e+06 1.317106e+06 2444.78 NULL
2016 Admin Trials And Hearings Computer Aide-Non-Spvr 55202.00000 5.520200e+04 13694.83 1.369483e+04 13694.830 285.50 1 1.369483e+04 13694.83 6.889683e+04 6.889683e+04 0.00 NULL
2016 Admin Trials And Hearings Computer Associate 65378.50000 2.615140e+05 5815.62 1.453905e+03 1403.770 154.00 4 1.403770e+03 5615.08 2.673296e+05 2.671291e+05 200.54 NULL
2016 Admin Trials And Hearings Computer Service Technician 31589.85600 1.579493e+05 12277.59 2.455518e+03 1836.450 435.75 5 1.836450e+03 9182.25 1.702269e+05 1.671315e+05 3095.34 NULL
2016 Admin Trials And Hearings Computer Specialist 95328.00000 4.766400e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.766400e+05 4.766400e+05 0.00 NULL
2016 Admin Trials And Hearings Computer Systems Manager 131329.33333 7.879760e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.879760e+05 7.879760e+05 0.00 NULL
2016 Admin Trials And Hearings Confidential Secretary Of Administrative Law Judge 58360.50000 1.167210e+05 78.74 3.937000e+01 39.370 2.75 2 3.937000e+01 78.74 1.167997e+05 1.167997e+05 0.00 NULL
2016 Admin Trials And Hearings Executive Agency Counsel 111370.00000 3.341100e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 3.341100e+06 3.341100e+06 0.00 NULL
2016 Admin Trials And Hearings Hearing Officer 27121.79970 9.085803e+06 0.00 0.000000e+00 0.000 0.00 335 0.000000e+00 0.00 9.085803e+06 9.085803e+06 0.00 NULL
2016 Admin Trials And Hearings Maintenance Worker NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2016 Admin Trials And Hearings Member Of The Environmental Control Board - Oath 52.96775 2.118710e+02 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.118710e+02 2.118710e+02 0.00 NULL
2016 Admin Trials And Hearings Principal Administrative Associate 54609.23077 7.099200e+05 231.81 1.783154e+01 0.000 7.00 13 0.000000e+00 0.00 7.101518e+05 7.099200e+05 231.81 NULL
2016 Admin Trials And Hearings Procurement Analyst 61892.00000 1.237840e+05 720.90 3.604500e+02 360.450 11.00 2 3.604500e+02 720.90 1.245049e+05 1.245049e+05 0.00 NULL
2016 Admin Trials And Hearings Public Records Aide 37903.25000 3.032260e+05 179.07 2.238375e+01 0.000 7.00 8 0.000000e+00 0.00 3.034051e+05 3.032260e+05 179.07 NULL
2016 Admin Trials And Hearings Secretary 37789.50000 1.511580e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.511580e+05 1.511580e+05 0.00 NULL
2016 Admin Trials And Hearings Staff Analyst 58551.20000 2.927560e+05 57.10 1.142000e+01 2.080 0.00 5 2.080000e+00 10.40 2.928131e+05 2.927664e+05 46.70 NULL
2016 Admin Trials And Hearings Staff Analyst Trainee 40089.66667 1.202690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.202690e+05 1.202690e+05 0.00 NULL
2016 Admin Trials And Hearings Supervising Computer Service Technician 65167.00000 6.516700e+04 9365.45 9.365450e+03 9365.450 239.25 1 9.365450e+03 9365.45 7.453245e+04 7.453245e+04 0.00 NULL
2016 Board Of Correction Administrative Staff Analyst 69275.00000 1.385500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.385500e+05 1.385500e+05 0.00 NULL
2016 Board Of Correction Associate Staff Analyst 72316.00000 7.231600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.231600e+04 7.231600e+04 0.00 NULL
2016 Board Of Correction City Research Scientist 79636.66667 2.389100e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.389100e+05 2.389100e+05 0.00 NULL
2016 Board Of Correction Community Coordinator 56229.00000 1.124580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.124580e+05 1.124580e+05 0.00 NULL
2016 Board Of Correction Computer Specialist 102791.00000 1.027910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.027910e+05 1.027910e+05 0.00 NULL
2016 Board Of Correction Correctional Standards Review Specialist 63788.80000 6.378880e+05 158.39 1.583900e+01 0.000 4.50 10 0.000000e+00 0.00 6.380464e+05 6.378880e+05 158.39 NULL
2016 Board Of Correction Counsel 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2016 Board Of Correction Director Of Correctional Standards Review 80082.00000 8.008200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.008200e+04 8.008200e+04 0.00 NULL
2016 Board Of Correction Executive Director 164000.00000 1.640000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.640000e+05 1.640000e+05 0.00 NULL
2016 Board Of Correction Secretary 51831.00000 5.183100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.183100e+04 5.183100e+04 0.00 NULL
2016 Board Of Election Administrative Assistant 48165.25000 4.045881e+06 851272.12 1.013419e+04 8672.860 26270.97 84 8.672860e+03 728520.24 4.897153e+06 4.774401e+06 122751.88 NULL
2016 Board Of Election Administrative Associate 62743.79167 3.011702e+06 798248.76 1.663018e+04 13507.355 17972.00 48 1.350735e+04 648353.04 3.809951e+06 3.660055e+06 149895.72 NULL
2016 Board Of Election Administrative Manager 152413.50000 3.048270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.048270e+05 3.048270e+05 0.00 NULL
2016 Board Of Election Assistance Finance Officer 61006.00000 1.220120e+05 14174.02 7.087010e+03 7087.010 346.25 2 7.087010e+03 14174.02 1.361860e+05 1.361860e+05 0.00 NULL
2016 Board Of Election Associate Staff Analyst 79279.71429 1.109916e+06 165523.66 1.182312e+04 9775.470 3196.42 14 9.775470e+03 136856.58 1.275440e+06 1.246773e+06 28667.08 NULL
2016 Board Of Election Chief Clerk 133250.00000 5.330000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.330000e+05 5.330000e+05 0.00 NULL
2016 Board Of Election Clerk To The Board 34426.24561 3.924592e+06 872360.83 7.652288e+03 7280.590 37660.00 114 7.280590e+03 829987.26 4.796953e+06 4.754579e+06 42373.57 NULL
2016 Board Of Election Commissioner 26672.72727 2.934000e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 2.934000e+05 2.934000e+05 0.00 NULL
2016 Board Of Election Computer Operator 46640.50000 9.328100e+04 20685.10 1.034255e+04 10342.550 632.75 2 1.034255e+04 20685.10 1.139661e+05 1.139661e+05 0.00 NULL
2016 Board Of Election Computer Specialist 120304.25000 4.812170e+05 124027.63 3.100691e+04 26394.245 1956.50 4 2.639424e+04 105576.98 6.052446e+05 5.867940e+05 18450.65 NULL
2016 Board Of Election Computer System Manager 124910.00000 3.747300e+05 12288.67 4.096223e+03 0.000 260.50 3 0.000000e+00 0.00 3.870187e+05 3.747300e+05 12288.67 NULL
2016 Board Of Election Coordinator, Election Day Operations 103905.00000 1.039050e+05 12169.51 1.216951e+04 12169.510 175.25 1 1.216951e+04 12169.51 1.160745e+05 1.160745e+05 0.00 NULL
2016 Board Of Election Coordinator, Voter Registration Activities 90942.00000 9.094200e+04 26872.11 2.687211e+04 26872.110 457.25 1 2.687211e+04 26872.11 1.178141e+05 1.178141e+05 0.00 NULL
2016 Board Of Election Counsel 153856.00000 3.077120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.077120e+05 3.077120e+05 0.00 NULL
2016 Board Of Election Counsel To The Board 52429.66667 1.572890e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.572890e+05 1.572890e+05 0.00 NULL
2016 Board Of Election Deputy Chief Clerk 122267.85714 8.558750e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.558750e+05 8.558750e+05 0.00 NULL
2016 Board Of Election Deputy Executive Director 187062.00000 1.870620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.870620e+05 1.870620e+05 0.00 NULL
2016 Board Of Election Director Of Equipment 71122.50000 2.844900e+05 51870.70 1.296767e+04 10798.575 970.25 4 1.079858e+04 43194.30 3.363607e+05 3.276843e+05 8676.40 NULL
2016 Board Of Election Director, Public Affairs And Communication 112331.00000 1.123310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.123310e+05 1.123310e+05 0.00 NULL
2016 Board Of Election Executive Director 203155.00000 2.031550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.031550e+05 2.031550e+05 0.00 NULL
2016 Board Of Election Finance Officer 106263.00000 1.062630e+05 7176.25 7.176250e+03 7176.250 112.25 1 7.176250e+03 7176.25 1.134392e+05 1.134392e+05 0.00 NULL
2016 Board Of Election Financial Clerk 33312.88222 3.431227e+06 684259.75 6.643299e+03 5446.520 30081.26 103 5.446520e+03 560991.56 4.115487e+06 3.992218e+06 123268.19 NULL
2016 Board Of Election Project Coordinator 92958.60000 9.295860e+05 304731.69 3.047317e+04 25185.955 4596.50 10 2.518596e+04 251859.55 1.234318e+06 1.181446e+06 52872.14 NULL
2016 Board Of Election Senior Adminisrator 107687.00000 1.076870e+05 10423.45 1.042345e+04 10423.450 168.25 1 1.042345e+04 10423.45 1.181104e+05 1.181104e+05 0.00 NULL
2016 Board Of Election Senior Computer Programmer 77061.87500 6.164950e+05 213527.87 2.669098e+04 13013.610 4132.92 8 1.301361e+04 104108.88 8.300229e+05 7.206039e+05 109418.99 NULL
2016 Board Of Election Senior Systems Analysts 105745.00000 1.057450e+05 19524.61 1.952461e+04 19524.610 355.00 1 1.952461e+04 19524.61 1.252696e+05 1.252696e+05 0.00 NULL
2016 Board Of Election Stenographic/Secretarial Associate 49114.00000 4.911400e+04 2816.74 2.816740e+03 2816.740 91.50 1 2.816740e+03 2816.74 5.193074e+04 5.193074e+04 0.00 NULL
2016 Board Of Election Temporary Clerk 13201.40418 5.544590e+06 1137927.65 2.709352e+03 1935.725 72259.09 420 1.935725e+03 813004.50 6.682517e+06 6.357594e+06 324923.15 NULL
2016 Board Of Election Trainer Assistant 46763.97546 2.244671e+06 514088.50 1.071018e+04 11178.280 15999.25 48 1.071018e+04 514088.50 2.758759e+06 2.758759e+06 0.00 NULL
2016 Board Of Election Voting Machine Technician 34707.29000 3.470729e+06 735943.14 7.359431e+03 8196.250 32591.50 100 7.359431e+03 735943.14 4.206672e+06 4.206672e+06 0.00 NULL
2016 Board Of Election Poll Workers Election Trainer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 474 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2016 Board Of Election Poll Workers Election Worker 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 28851 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2016 Borough President-Bronx Administrative Architect 74014.00000 7.401400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.401400e+04 7.401400e+04 0.00 NULL
2016 Borough President-Bronx Administrative Business Promotion Coordinator 98548.00000 2.956440e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.956440e+05 2.956440e+05 0.00 NULL
2016 Borough President-Bronx Administrative City Planner 98795.50000 1.975910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.975910e+05 1.975910e+05 0.00 NULL
2016 Borough President-Bronx Administrative Education Officer 103706.00000 1.037060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.037060e+05 1.037060e+05 0.00 NULL
2016 Borough President-Bronx Administrative Manager 109702.33000 2.194047e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.194047e+05 2.194047e+05 0.00 NULL
2016 Borough President-Bronx Assistant To The President 47831.25000 1.913250e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.913250e+05 1.913250e+05 0.00 NULL
2016 Borough President-Bronx Associate Staff Analyst 83729.00000 8.372900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.372900e+04 8.372900e+04 0.00 NULL
2016 Borough President-Bronx Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2016 Borough President-Bronx City Planning Technician 43632.00000 4.363200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.363200e+04 4.363200e+04 0.00 NULL
2016 Borough President-Bronx Clerical Associate 49886.00000 9.977200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.977200e+04 9.977200e+04 0.00 NULL
2016 Borough President-Bronx Community Assistant 37094.00000 3.709400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.709400e+04 3.709400e+04 0.00 NULL
2016 Borough President-Bronx Community Associate 50687.00000 4.054960e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.054960e+05 4.054960e+05 0.00 NULL
2016 Borough President-Bronx Community Coordinator 64614.05556 1.163053e+06 47391.20 2.632844e+03 0.000 868.50 18 0.000000e+00 0.00 1.210444e+06 1.163053e+06 47391.20 NULL
2016 Borough President-Bronx Community Planning Board Coordinator 46792.00000 4.679200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.679200e+04 4.679200e+04 0.00 NULL
2016 Borough President-Bronx Community Service Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2016 Borough President-Bronx Computer Systems Manager 67444.00000 6.744400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.744400e+04 6.744400e+04 0.00 NULL
2016 Borough President-Bronx Deputy Borough President 163873.00000 1.638730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.638730e+05 1.638730e+05 0.00 NULL
2016 Borough President-Bronx Director Of Community Planning Boards 108651.00000 1.086510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.086510e+05 1.086510e+05 0.00 NULL
2016 Borough President-Bronx Executive Assistant 173535.00000 1.735350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.735350e+05 1.735350e+05 0.00 NULL
2016 Borough President-Bronx Principal Administrative Associate 54437.00000 5.443700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.443700e+04 5.443700e+04 0.00 NULL
2016 Borough President-Bronx Public Information Officer 101402.00000 1.014020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.014020e+05 1.014020e+05 0.00 NULL
2016 Borough President-Bronx Research And Liaison Coordinator 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2016 Borough President-Bronx Research Liaison Adn Governmental Coordinator 91036.50000 1.820730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.820730e+05 1.820730e+05 0.00 NULL
2016 Borough President-Bronx Secretary To Assistant To President 94665.00000 9.466500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.466500e+04 9.466500e+04 0.00 NULL
2016 Borough President-Bronx Secretary To The Deputy Boro President 71225.00000 7.122500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.122500e+04 7.122500e+04 0.00 NULL
2016 Borough President-Bronx Secretary To The Excutive Assistant 71336.00000 7.133600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.133600e+04 7.133600e+04 0.00 NULL
2016 Borough President-Bronx Secretary To The President 114777.00000 1.147770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.147770e+05 1.147770e+05 0.00 NULL
2016 Borough President-Bronx Special Assistant To The Borough President 93604.25000 3.744170e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.744170e+05 3.744170e+05 0.00 NULL
2016 Borough President-Brooklyn Adm Manager-Non-Mgrl 68199.00000 6.819900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.819900e+04 6.819900e+04 0.00 NULL
2016 Borough President-Brooklyn Administrative Engineer 44520.00000 4.452000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.452000e+04 4.452000e+04 0.00 NULL
2016 Borough President-Brooklyn Administrative Graphic Artist 68034.00000 6.803400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.803400e+04 6.803400e+04 0.00 NULL
2016 Borough President-Brooklyn Administrative Housing Development Specialist 149674.00000 1.496740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.496740e+05 1.496740e+05 0.00 NULL
2016 Borough President-Brooklyn Administrative Staff Analyst 87281.00000 8.728100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.728100e+04 8.728100e+04 0.00 NULL
2016 Borough President-Brooklyn Assistant To The President 73204.95143 1.024869e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.024869e+06 1.024869e+06 0.00 NULL
2016 Borough President-Brooklyn Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2016 Borough President-Brooklyn Chauffeur-Attendant 54400.00000 1.088000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.088000e+05 1.088000e+05 0.00 NULL
2016 Borough President-Brooklyn City Planner 95864.00000 1.917280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.917280e+05 1.917280e+05 0.00 NULL
2016 Borough President-Brooklyn Clerical Associate 54631.50000 1.092630e+05 0.00 0.000000e+00 0.000 24.50 2 0.000000e+00 0.00 1.092630e+05 1.092630e+05 0.00 NULL
2016 Borough President-Brooklyn Community Assistant 33800.00000 3.380000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.380000e+04 3.380000e+04 0.00 NULL
2016 Borough President-Brooklyn Community Associate 41682.10467 5.001853e+05 1270.87 1.059058e+02 0.000 220.25 12 0.000000e+00 0.00 5.014561e+05 5.001853e+05 1270.87 NULL
2016 Borough President-Brooklyn Community Coordinator 58034.10181 1.276750e+06 781.92 3.554182e+01 0.000 108.50 22 0.000000e+00 0.00 1.277532e+06 1.276750e+06 781.92 NULL
2016 Borough President-Brooklyn Community Service Aide 26536.00000 5.307200e+04 0.00 0.000000e+00 0.000 16.75 2 0.000000e+00 0.00 5.307200e+04 5.307200e+04 0.00 NULL
2016 Borough President-Brooklyn Counsel To The Borough President 109239.00000 1.092390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.092390e+05 1.092390e+05 0.00 NULL
2016 Borough President-Brooklyn Deputy Borough President 145653.00000 1.456530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.456530e+05 1.456530e+05 0.00 NULL
2016 Borough President-Brooklyn Director Of Community Planning Boards 83153.00000 8.315300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.315300e+04 8.315300e+04 0.00 NULL
2016 Borough President-Brooklyn Executive Agency Counsel 145451.00000 1.454510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.454510e+05 1.454510e+05 0.00 NULL
2016 Borough President-Brooklyn Executive Assistant 155954.00000 1.559540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.559540e+05 1.559540e+05 0.00 NULL
2016 Borough President-Brooklyn Principal Administrative Associate 58025.00000 5.802500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.802500e+04 5.802500e+04 0.00 NULL
2016 Borough President-Brooklyn Program Producer 68716.00000 6.871600e+04 1685.91 1.685910e+03 1685.910 32.00 1 1.685910e+03 1685.91 7.040191e+04 7.040191e+04 0.00 NULL
2016 Borough President-Brooklyn Public Information Officer 96878.00000 9.687800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.687800e+04 9.687800e+04 0.00 NULL
2016 Borough President-Brooklyn Research & Liaison Coordinator 64588.81000 2.583552e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.583552e+05 2.583552e+05 0.00 NULL
2016 Borough President-Brooklyn Special Assistant To The Borough President 145653.00000 1.456530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.456530e+05 1.456530e+05 0.00 NULL
2016 Borough President-Manhattan Adm Manager-Non-Mgrl 28072.05125 5.614410e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.614410e+04 5.614410e+04 0.00 NULL
2016 Borough President-Manhattan Admin Contract Specialist 53162.37500 1.063248e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.063248e+05 1.063248e+05 0.00 NULL
2016 Borough President-Manhattan Administrative City Planner 63575.50000 3.814530e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.814530e+05 3.814530e+05 0.00 NULL
2016 Borough President-Manhattan Administrative Manager 81060.33333 4.863620e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.863620e+05 4.863620e+05 0.00 NULL
2016 Borough President-Manhattan Administrative Public Information Specialist 98835.50000 1.976710e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.976710e+05 1.976710e+05 0.00 NULL
2016 Borough President-Manhattan Administrative Staff Analyst 83601.64000 2.508049e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.508049e+05 2.508049e+05 0.00 NULL
2016 Borough President-Manhattan Assistant To The President 73063.66667 2.191910e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.191910e+05 2.191910e+05 0.00 NULL
2016 Borough President-Manhattan Borough President 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2016 Borough President-Manhattan Chauffeur Attendant 62972.50000 1.259450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.259450e+05 1.259450e+05 0.00 NULL
2016 Borough President-Manhattan Community Associate 46574.81143 3.260237e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.260237e+05 3.260237e+05 0.00 NULL
2016 Borough President-Manhattan Community Coordinator 59117.00429 8.276381e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 8.276381e+05 8.276381e+05 0.00 NULL
2016 Borough President-Manhattan Community Planning Board Coordinator 51895.66667 3.113740e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.113740e+05 3.113740e+05 0.00 NULL
2016 Borough President-Manhattan Computer Operations Manager 73448.00000 7.344800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.344800e+04 7.344800e+04 0.00 NULL
2016 Borough President-Manhattan Deputy Borough President 145652.00000 1.456520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.456520e+05 1.456520e+05 0.00 NULL
2016 Borough President-Manhattan Executive Assistant 145652.00000 1.456520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.456520e+05 1.456520e+05 0.00 NULL
2016 Borough President-Manhattan General Counsel 163339.00000 1.633390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.633390e+05 1.633390e+05 0.00 NULL
2016 Borough President-Manhattan Principal Administrative Associate 59801.00000 5.980100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.980100e+04 5.980100e+04 0.00 NULL
2016 Borough President-Manhattan Public Information Officer 74907.00000 7.490700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.490700e+04 7.490700e+04 0.00 NULL
2016 Borough President-Queens Administrative Staff Analyst 95922.50000 1.918450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.918450e+05 1.918450e+05 0.00 NULL
2016 Borough President-Queens Agency Attorney Interne 56256.00000 5.625600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.625600e+04 5.625600e+04 0.00 NULL
2016 Borough President-Queens Assistant Civil Engineer 72243.00000 7.224300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.224300e+04 7.224300e+04 0.00 NULL
2016 Borough President-Queens Assistant To The President 47500.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2016 Borough President-Queens Associate Staff Analyst 80371.66667 2.411150e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.411150e+05 2.411150e+05 0.00 NULL
2016 Borough President-Queens Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2016 Borough President-Queens Cashier 32060.00000 3.206000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.206000e+04 3.206000e+04 0.00 NULL
2016 Borough President-Queens Chauffeur-Attendant 57760.50000 1.155210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.155210e+05 1.155210e+05 0.00 NULL
2016 Borough President-Queens City Planner 58769.00000 5.876900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.876900e+04 5.876900e+04 0.00 NULL
2016 Borough President-Queens Clerical Associate 50362.00000 1.007240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.007240e+05 1.007240e+05 0.00 NULL
2016 Borough President-Queens Community Assistant 28544.00000 8.563200e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 8.563200e+04 8.563200e+04 0.00 NULL
2016 Borough President-Queens Community Associate 46758.47368 8.884110e+05 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 8.884110e+05 8.884110e+05 0.00 NULL
2016 Borough President-Queens Community Coordinator 63107.25000 5.048580e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.048580e+05 5.048580e+05 0.00 NULL
2016 Borough President-Queens Computer Systems Manager 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2016 Borough President-Queens Counsel To The Borough President 122500.00000 2.450000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.450000e+05 2.450000e+05 0.00 NULL
2016 Borough President-Queens Deputy Borough President 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2016 Borough President-Queens Director Borough President’s Office Of Administration Queens 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2016 Borough President-Queens Engineering Technician 62918.00000 2.516720e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.516720e+05 2.516720e+05 0.00 NULL
2016 Borough President-Queens Executive Assistant 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2016 Borough President-Queens Fiscal And Policy Analyst 58000.00000 5.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.800000e+04 5.800000e+04 0.00 NULL
2016 Borough President-Queens Principal Administrative Associate 68269.66667 2.048090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.048090e+05 2.048090e+05 0.00 NULL
2016 Borough President-Queens Public Information Officer 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2016 Borough President-Queens Research And Liaison Specialist 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2016 Borough President-Queens Secretary 37567.00000 3.756700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.756700e+04 3.756700e+04 0.00 NULL
2016 Borough President-Queens Secretary To The President 78000.00000 7.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.800000e+04 7.800000e+04 0.00 NULL
2016 Borough President-Queens Special Assistant To The Borough President 90200.00000 4.510000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.510000e+05 4.510000e+05 0.00 NULL
2016 Borough President-Staten Is Administrative Architect 147650.00000 1.476500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.476500e+05 1.476500e+05 0.00 NULL
2016 Borough President-Staten Is Administrative Staff Analyst 105225.00000 2.104500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.104500e+05 2.104500e+05 0.00 NULL
2016 Borough President-Staten Is Assistant To The President 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2016 Borough President-Staten Is Asst Project Planner 48823.72727 5.370610e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.370610e+05 5.370610e+05 0.00 NULL
2016 Borough President-Staten Is Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2016 Borough President-Staten Is Clerical Associate 54563.00000 5.456300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.456300e+04 5.456300e+04 0.00 NULL
2016 Borough President-Staten Is Community Associate 54443.75000 2.177750e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.177750e+05 2.177750e+05 0.00 NULL
2016 Borough President-Staten Is Community Coordinator 64858.16319 5.188653e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.188653e+05 5.188653e+05 0.00 NULL
2016 Borough President-Staten Is Confidential Assistant To Boro President 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2016 Borough President-Staten Is Counsel To The Borough President 74101.86000 7.410186e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.410186e+04 7.410186e+04 0.00 NULL
2016 Borough President-Staten Is Deputy Borough President 148820.00000 1.488200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.488200e+05 1.488200e+05 0.00 NULL
2016 Borough President-Staten Is Director Of Community Planning Boards - Mgl Assign 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2016 Borough President-Staten Is Engineering Technician 55070.00000 5.507000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.507000e+04 5.507000e+04 0.00 NULL
2016 Borough President-Staten Is Executive Assistant 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2016 Borough President-Staten Is Project Planner 52116.46833 3.126988e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.126988e+05 3.126988e+05 0.00 NULL
2016 Borough President-Staten Is Public Information Officer 103500.00000 1.035000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.035000e+05 1.035000e+05 0.00 NULL
2016 Borough President-Staten Is Secretary 61500.00000 1.230000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.230000e+05 1.230000e+05 0.00 NULL
2016 Borough President-Staten Is Special Assistant To The Borough President 55580.49960 5.558050e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.558050e+04 5.558050e+04 0.00 NULL
2016 Borough President-Staten Is Staff Analyst 65074.00000 6.507400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.507400e+04 6.507400e+04 0.00 NULL
2016 Borough President-Staten Is Surveyor 92815.00000 9.281500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.281500e+04 9.281500e+04 0.00 NULL
2016 Bronx Community Board #1 Community Coordinator 75889.00000 7.588900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.588900e+04 7.588900e+04 0.00 NULL
2016 Bronx Community Board #1 District Manager 124426.00000 1.244260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.244260e+05 1.244260e+05 0.00 NULL
2016 Bronx Community Board #10 Clerical Associate 25557.63053 7.667289e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.667289e+04 7.667289e+04 0.00 NULL
2016 Bronx Community Board #10 Community Assistant 15774.82500 3.154965e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.154965e+04 3.154965e+04 0.00 NULL
2016 Bronx Community Board #10 District Manager 92989.00000 9.298900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.298900e+04 9.298900e+04 0.00 NULL
2016 Bronx Community Board #11 Administrative Manager 26539.24000 2.653924e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.653924e+04 2.653924e+04 0.00 NULL
2016 Bronx Community Board #11 Community Associate 39841.00000 3.984100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.984100e+04 3.984100e+04 0.00 NULL
2016 Bronx Community Board #11 Community Coordinator 55562.30000 5.556230e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.556230e+04 5.556230e+04 0.00 NULL
2016 Bronx Community Board #11 District Manager 76363.00000 7.636300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.636300e+04 7.636300e+04 0.00 NULL
2016 Bronx Community Board #12 Community Associate 57655.00000 5.765500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.765500e+04 5.765500e+04 0.00 NULL
2016 Bronx Community Board #12 Community Service Aide 31872.00000 3.187200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.187200e+04 3.187200e+04 0.00 NULL
2016 Bronx Community Board #12 District Manager 98402.00000 1.968040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.968040e+05 1.968040e+05 0.00 NULL
2016 Bronx Community Board #2 Community Assistant 33800.00000 3.380000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.380000e+04 3.380000e+04 0.00 NULL
2016 Bronx Community Board #2 Community Associate 52788.00000 5.278800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.278800e+04 5.278800e+04 0.00 NULL
2016 Bronx Community Board #2 District Manager 117434.00000 1.174340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.174340e+05 1.174340e+05 0.00 NULL
2016 Bronx Community Board #3 Adm Manager-Non-Mgrl 82877.00000 8.287700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.287700e+04 8.287700e+04 0.00 NULL
2016 Bronx Community Board #3 District Manager 121583.00000 1.215830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.215830e+05 1.215830e+05 0.00 NULL
2016 Bronx Community Board #4 Community Associate 55420.00000 1.108400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.108400e+05 1.108400e+05 0.00 NULL
2016 Bronx Community Board #4 District Manager 90620.00000 1.812400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.812400e+05 1.812400e+05 0.00 NULL
2016 Bronx Community Board #5 Adm Manager-Non-Mgrl 80798.00000 8.079800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.079800e+04 8.079800e+04 0.00 NULL
2016 Bronx Community Board #5 Community Assistant 33800.00000 3.380000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.380000e+04 3.380000e+04 0.00 NULL
2016 Bronx Community Board #5 District Manager 101656.00000 1.016560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.016560e+05 1.016560e+05 0.00 NULL
2016 Bronx Community Board #6 Community Assistant 19108.68000 1.910868e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.910868e+04 1.910868e+04 0.00 NULL
2016 Bronx Community Board #6 Community Coordinator 75391.00000 7.539100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.539100e+04 7.539100e+04 0.00 NULL
2016 Bronx Community Board #6 District Manager 119006.00000 1.190060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.190060e+05 1.190060e+05 0.00 NULL
2016 Bronx Community Board #7 Community Associate 48521.00000 9.704200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.704200e+04 9.704200e+04 0.00 NULL
2016 Bronx Community Board #7 District Manager 73260.00000 1.465200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.465200e+05 1.465200e+05 0.00 NULL
2016 Bronx Community Board #8 Community Associate 47406.50000 9.481300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.481300e+04 9.481300e+04 0.00 NULL
2016 Bronx Community Board #8 District Manager 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2016 Bronx Community Board #9 Community Associate 49881.00000 4.988100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.988100e+04 4.988100e+04 0.00 NULL
2016 Bronx Community Board #9 Community Service Aide 19824.42000 1.982442e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.982442e+04 1.982442e+04 0.00 NULL
2016 Bronx Community Board #9 District Manager 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2016 Bronx District Attorney Accountant 80988.00000 8.098800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.098800e+04 8.098800e+04 0.00 NULL
2016 Bronx District Attorney Adm Manager 67398.00000 3.369900e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.369900e+05 3.369900e+05 0.00 NULL
2016 Bronx District Attorney Administrative Accountant 134100.00000 1.341000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.341000e+05 1.341000e+05 0.00 NULL
2016 Bronx District Attorney Administrative Chief 199900.00000 1.999000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.999000e+05 1.999000e+05 0.00 NULL
2016 Bronx District Attorney Administrative Community Relations Specialist 128150.00000 1.281500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.281500e+05 1.281500e+05 0.00 NULL
2016 Bronx District Attorney Administrative Staff Analyst 100196.25000 4.007850e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.007850e+05 4.007850e+05 0.00 NULL
2016 Bronx District Attorney Assistant District Attorney 84183.52421 3.998717e+07 1329.60 2.799158e+00 0.000 57.25 475 0.000000e+00 0.00 3.998850e+07 3.998717e+07 1329.60 NULL
2016 Bronx District Attorney Associate Staff Analyst 88091.50000 1.761830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.761830e+05 1.761830e+05 0.00 NULL
2016 Bronx District Attorney Certified It Administrator 105060.00000 3.151800e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.151800e+05 3.151800e+05 0.00 NULL
2016 Bronx District Attorney Certified It Developer 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2016 Bronx District Attorney Chief Rackets Investigator 150200.00000 1.502000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.502000e+05 1.502000e+05 0.00 NULL
2016 Bronx District Attorney Clerical Associate 41906.20455 1.843873e+06 107629.70 2.446130e+03 0.000 3671.75 44 0.000000e+00 0.00 1.951503e+06 1.843873e+06 107629.70 NULL
2016 Bronx District Attorney Community Assistant 33052.09735 3.734887e+06 172511.80 1.526653e+03 0.000 7744.50 113 0.000000e+00 0.00 3.907399e+06 3.734887e+06 172511.80 NULL
2016 Bronx District Attorney Community Associate 41072.21573 5.832255e+06 265747.66 1.871462e+03 0.000 9541.50 142 0.000000e+00 0.00 6.098002e+06 5.832255e+06 265747.66 NULL
2016 Bronx District Attorney Community Coordinator 61604.75862 1.786538e+06 86499.13 2.982729e+03 147.780 2439.00 29 1.477800e+02 4285.62 1.873037e+06 1.790824e+06 82213.51 NULL
2016 Bronx District Attorney Community Service Aide 27619.78481 2.181963e+06 107384.43 1.359297e+03 344.170 6168.75 79 3.441700e+02 27189.43 2.289347e+06 2.209152e+06 80195.00 NULL
2016 Bronx District Attorney Computer Associate 84310.33333 2.529310e+05 2531.48 8.438267e+02 0.000 58.00 3 0.000000e+00 0.00 2.554625e+05 2.529310e+05 2531.48 NULL
2016 Bronx District Attorney Deputy Chief Rackets Investigator 122300.00000 1.223000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.223000e+05 1.223000e+05 0.00 NULL
2016 Bronx District Attorney Director Of Public Information 119700.00000 2.394000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.394000e+05 2.394000e+05 0.00 NULL
2016 Bronx District Attorney District Attorney 201400.00000 4.028000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.028000e+05 4.028000e+05 0.00 NULL
2016 Bronx District Attorney Interpreter 49979.30000 4.997930e+05 50033.18 5.003318e+03 1472.010 2730.50 10 1.472010e+03 14720.10 5.498262e+05 5.145131e+05 35313.08 NULL
2016 Bronx District Attorney Media Services Technician 52490.00000 5.249000e+04 11215.07 1.121507e+04 11215.070 262.50 1 1.121507e+04 11215.07 6.370507e+04 6.370507e+04 0.00 NULL
2016 Bronx District Attorney Paralegal Aide 48393.50000 9.678700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.678700e+04 9.678700e+04 0.00 NULL
2016 Bronx District Attorney Principal Accountant Investigator 105300.00000 3.159000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.159000e+05 3.159000e+05 0.00 NULL
2016 Bronx District Attorney Principal Administrative Associate 65888.20000 6.588820e+05 5594.68 5.594680e+02 0.000 120.75 10 0.000000e+00 0.00 6.644767e+05 6.588820e+05 5594.68 NULL
2016 Bronx District Attorney Private Secretary 99250.00000 9.925000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.925000e+04 9.925000e+04 0.00 NULL
2016 Bronx District Attorney Procurement Analyst 74723.00000 7.472300e+04 797.73 7.977300e+02 797.730 15.25 1 7.977300e+02 797.73 7.552073e+04 7.552073e+04 0.00 NULL
2016 Bronx District Attorney Rackets Investigator 49653.14815 1.340635e+06 22699.03 8.407048e+02 700.790 635.25 27 7.007900e+02 18921.33 1.363334e+06 1.359556e+06 3777.70 NULL
2016 Bronx District Attorney Reporter/ Stenographer 59902.33700 1.198047e+06 36854.39 1.842719e+03 255.890 1006.50 20 2.558900e+02 5117.80 1.234901e+06 1.203165e+06 31736.59 NULL
2016 Bronx District Attorney Secretary 44289.16667 2.657350e+05 12093.51 2.015585e+03 0.000 458.00 6 0.000000e+00 0.00 2.778285e+05 2.657350e+05 12093.51 NULL
2016 Bronx District Attorney Senior Accountant Investigator 67400.00000 6.740000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.740000e+04 6.740000e+04 0.00 NULL
2016 Bronx District Attorney Senior Rackets Investigator 60416.50000 1.691662e+06 24889.06 8.888950e+02 576.580 489.75 28 5.765800e+02 16144.24 1.716551e+06 1.707806e+06 8744.82 NULL
2016 Bronx District Attorney Special Assistant To The District Attorney 141530.00000 7.076500e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.076500e+05 7.076500e+05 0.00 NULL
2016 Bronx District Attorney Special Officer 45154.66667 1.354640e+05 352.21 1.174033e+02 133.830 10.75 3 1.174033e+02 352.21 1.358162e+05 1.358162e+05 0.00 NULL
2016 Bronx District Attorney Supervising Rackets Investigator 81143.00000 4.057150e+05 4049.50 8.099000e+02 140.330 57.50 5 1.403300e+02 701.65 4.097645e+05 4.064167e+05 3347.85 NULL
2016 Brooklyn Community Board #1 Assistant District Manager 56902.00000 5.690200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.690200e+04 5.690200e+04 0.00 NULL
2016 Brooklyn Community Board #1 Community Associate 29767.20000 2.976720e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.976720e+04 2.976720e+04 0.00 NULL
2016 Brooklyn Community Board #1 District Manager 119713.00000 1.197130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.197130e+05 1.197130e+05 0.00 NULL
2016 Brooklyn Community Board #10 Community Assistant 20072.50000 2.007250e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.007250e+04 2.007250e+04 0.00 NULL
2016 Brooklyn Community Board #10 Community Coordinator 68824.00000 6.882400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.882400e+04 6.882400e+04 0.00 NULL
2016 Brooklyn Community Board #10 District Manager 113825.00000 1.138250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.138250e+05 1.138250e+05 0.00 NULL
2016 Brooklyn Community Board #11 Community Assistant 24207.25000 2.420725e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.420725e+04 2.420725e+04 0.00 NULL
2016 Brooklyn Community Board #11 Community Coordinator 60147.00000 6.014700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.014700e+04 6.014700e+04 0.00 NULL
2016 Brooklyn Community Board #11 District Manager 92917.00000 9.291700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.291700e+04 9.291700e+04 0.00 NULL
2016 Brooklyn Community Board #12 Community Assistant 35501.50000 7.100300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.100300e+04 7.100300e+04 0.00 NULL
2016 Brooklyn Community Board #12 District Manager 96388.00000 9.638800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.638800e+04 9.638800e+04 0.00 NULL
2016 Brooklyn Community Board #13 Community Coordinator 66397.00000 6.639700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.639700e+04 6.639700e+04 0.00 NULL
2016 Brooklyn Community Board #13 Community Service Aide 26536.00000 2.653600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.653600e+04 2.653600e+04 0.00 NULL
2016 Brooklyn Community Board #13 District Manager 79773.50000 1.595470e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.595470e+05 1.595470e+05 0.00 NULL
2016 Brooklyn Community Board #13 Secretary 45820.80000 4.582080e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.582080e+04 4.582080e+04 0.00 NULL
2016 Brooklyn Community Board #14 Community Associate 51692.72000 1.033854e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.033854e+05 1.033854e+05 0.00 NULL
2016 Brooklyn Community Board #14 District Manager 101094.00000 1.010940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.010940e+05 1.010940e+05 0.00 NULL
2016 Brooklyn Community Board #15 Community Assistant 33800.00000 3.380000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.380000e+04 3.380000e+04 0.00 NULL
2016 Brooklyn Community Board #15 Community Associate 52327.00000 5.232700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.232700e+04 5.232700e+04 0.00 NULL
2016 Brooklyn Community Board #15 District Manager 55051.00000 5.505100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.505100e+04 5.505100e+04 0.00 NULL
2016 Brooklyn Community Board #16 Community Assistant 25817.07000 5.163414e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.163414e+04 5.163414e+04 0.00 NULL
2016 Brooklyn Community Board #16 District Manager 109254.00000 1.092540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.092540e+05 1.092540e+05 0.00 NULL
2016 Brooklyn Community Board #17 Community Assistant 35030.50000 7.006100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.006100e+04 7.006100e+04 0.00 NULL
2016 Brooklyn Community Board #17 Community Coordinator 56229.00000 5.622900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.622900e+04 5.622900e+04 0.00 NULL
2016 Brooklyn Community Board #17 District Manager 78598.00000 7.859800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.859800e+04 7.859800e+04 0.00 NULL
2016 Brooklyn Community Board #18 Community Assistant 33801.00000 3.380100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.380100e+04 3.380100e+04 0.00 NULL
2016 Brooklyn Community Board #18 Community Service Aide 30516.00000 3.051600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.051600e+04 3.051600e+04 0.00 NULL
2016 Brooklyn Community Board #18 District Manager 145983.00000 1.459830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.459830e+05 1.459830e+05 0.00 NULL
2016 Brooklyn Community Board #2 Community Associate 34644.00000 3.464400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.464400e+04 3.464400e+04 0.00 NULL
2016 Brooklyn Community Board #2 Community Coordinator 60124.00000 6.012400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.012400e+04 6.012400e+04 0.00 NULL
2016 Brooklyn Community Board #2 District Manager 97420.00000 9.742000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.742000e+04 9.742000e+04 0.00 NULL
2016 Brooklyn Community Board #3 Assistant District Manager 58803.00000 5.880300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.880300e+04 5.880300e+04 0.00 NULL
2016 Brooklyn Community Board #3 Community Assistant 37849.00000 3.784900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.784900e+04 3.784900e+04 0.00 NULL
2016 Brooklyn Community Board #3 District Manager 79008.00000 7.900800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.900800e+04 7.900800e+04 0.00 NULL
2016 Brooklyn Community Board #4 Community Associate 50274.50000 1.005490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.005490e+05 1.005490e+05 0.00 NULL
2016 Brooklyn Community Board #4 District Manager 85636.00000 8.563600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.563600e+04 8.563600e+04 0.00 NULL
2016 Brooklyn Community Board #5 Community Associate 37800.50000 7.560100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.560100e+04 7.560100e+04 0.00 NULL
2016 Brooklyn Community Board #5 Community Service Aide 17945.58000 1.794558e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.794558e+04 1.794558e+04 0.00 NULL
2016 Brooklyn Community Board #5 District Manager 106387.00000 1.063870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.063870e+05 1.063870e+05 0.00 NULL
2016 Brooklyn Community Board #6 Assistant District Manager 45346.00000 9.069200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.069200e+04 9.069200e+04 0.00 NULL
2016 Brooklyn Community Board #6 Community Associate 43116.00000 4.311600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.311600e+04 4.311600e+04 0.00 NULL
2016 Brooklyn Community Board #6 District Manager 112743.00000 1.127430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.127430e+05 1.127430e+05 0.00 NULL
2016 Brooklyn Community Board #7 Community Associate 44549.00000 4.454900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.454900e+04 4.454900e+04 0.00 NULL
2016 Brooklyn Community Board #7 Community Coordinator 62448.00000 6.244800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.244800e+04 6.244800e+04 0.00 NULL
2016 Brooklyn Community Board #7 District Manager 93115.00000 9.311500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.311500e+04 9.311500e+04 0.00 NULL
2016 Brooklyn Community Board #8 Community Assistant 33800.00000 3.380000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.380000e+04 3.380000e+04 0.00 NULL
2016 Brooklyn Community Board #8 Community Coordinator 57782.00000 5.778200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.778200e+04 5.778200e+04 0.00 NULL
2016 Brooklyn Community Board #8 District Manager 89217.00000 8.921700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.921700e+04 8.921700e+04 0.00 NULL
2016 Brooklyn Community Board #9 Community Associate 40542.98940 4.054299e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.054299e+04 4.054299e+04 0.00 NULL
2016 Brooklyn Community Board #9 District Manager 138978.00000 1.389780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.389780e+05 1.389780e+05 0.00 NULL
2016 Business Integrity Commission Adm Manager-Non-Mgrl 64886.00000 6.488600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.488600e+04 6.488600e+04 0.00 NULL
2016 Business Integrity Commission Administrative Community Relations Specialist 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2016 Business Integrity Commission Administrative Investigator 111930.00000 1.119300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.119300e+05 1.119300e+05 0.00 NULL
2016 Business Integrity Commission Administrative Staff Analyst 100964.66667 1.211576e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.211576e+06 1.211576e+06 0.00 NULL
2016 Business Integrity Commission Agency Attorney 82000.00000 8.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.200000e+04 8.200000e+04 0.00 NULL
2016 Business Integrity Commission Associate Fraud Investigator 66825.25000 2.673010e+05 24229.03 6.057257e+03 5779.890 575.00 4 5.779890e+03 23119.56 2.915300e+05 2.904206e+05 1109.47 NULL
2016 Business Integrity Commission Associate Staff Analyst 90762.00000 9.076200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.076200e+04 9.076200e+04 0.00 NULL
2016 Business Integrity Commission Chair 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Business Integrity Commission Clerical Associate 51024.00000 1.530720e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.530720e+05 1.530720e+05 0.00 NULL
2016 Business Integrity Commission Community Assistant 33210.00000 3.321000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.321000e+04 3.321000e+04 0.00 NULL
2016 Business Integrity Commission Community Associate 46013.86207 1.334402e+06 15142.65 5.221603e+02 0.000 460.75 29 0.000000e+00 0.00 1.349545e+06 1.334402e+06 15142.65 NULL
2016 Business Integrity Commission Community Coordinator 68694.50000 2.747780e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.747780e+05 2.747780e+05 0.00 NULL
2016 Business Integrity Commission Computer Associate 64075.00000 1.281500e+05 2712.90 1.356450e+03 1356.450 91.75 2 1.356450e+03 2712.90 1.308629e+05 1.308629e+05 0.00 NULL
2016 Business Integrity Commission Computer Programmer Analyst 64296.00000 6.429600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.429600e+04 6.429600e+04 0.00 NULL
2016 Business Integrity Commission Computer Systems Manager 104572.00000 1.045720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.045720e+05 1.045720e+05 0.00 NULL
2016 Business Integrity Commission Executive Agency Counsel 106056.54545 1.166622e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.166622e+06 1.166622e+06 0.00 NULL
2016 Business Integrity Commission Management Auditor 80451.00000 8.045100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.045100e+04 8.045100e+04 0.00 NULL
2016 Business Integrity Commission Market Agent 50094.75000 6.011370e+05 13459.38 1.121615e+03 590.115 496.25 12 5.901150e+02 7081.38 6.145964e+05 6.082184e+05 6378.00 NULL
2016 Business Integrity Commission Principal Administrative Associate 55815.00000 5.581500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.581500e+04 5.581500e+04 0.00 NULL
2016 Campaign Finance Board Admin Asst-Campaign Fin Board 63824.79518 8.935471e+05 17598.30 1.257021e+03 42.035 350.00 14 4.203500e+01 588.49 9.111454e+05 8.941356e+05 17009.81 NULL
2016 Campaign Finance Board Administrative Accountant 128918.50000 2.578370e+05 344.44 1.722200e+02 172.220 0.00 2 1.722200e+02 344.44 2.581814e+05 2.581814e+05 0.00 NULL
2016 Campaign Finance Board Administrative Staff Analyst 137214.00000 8.232840e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.232840e+05 8.232840e+05 0.00 NULL
2016 Campaign Finance Board Analyst 64037.24269 4.546644e+06 88148.47 1.241528e+03 52.480 1723.75 71 5.248000e+01 3726.08 4.634793e+06 4.550370e+06 84422.39 NULL
2016 Campaign Finance Board Associate Staff Analyst 102298.00000 1.022980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.022980e+05 1.022980e+05 0.00 NULL
2016 Campaign Finance Board Attorney-Campaign Fin Board 96297.22222 8.666750e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.666750e+05 8.666750e+05 0.00 NULL
2016 Campaign Finance Board College Aide 7140.05100 3.570025e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.570025e+04 3.570025e+04 0.00 NULL
2016 Campaign Finance Board College Aide - Assignment Levels Ii And Iii 14101.74000 1.410174e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.410174e+04 1.410174e+04 0.00 NULL
2016 Campaign Finance Board Computer Systems Manager 148878.00000 1.488780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.488780e+05 1.488780e+05 0.00 NULL
2016 Campaign Finance Board Director Of Public Relations 116714.00000 1.167140e+05 35.68 3.568000e+01 35.680 0.00 1 3.568000e+01 35.68 1.167497e+05 1.167497e+05 0.00 NULL
2016 Campaign Finance Board Executive Agency Counsel 186347.00000 1.863470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.863470e+05 1.863470e+05 0.00 NULL
2016 Campaign Finance Board Executive Director 216099.00000 2.160990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.160990e+05 2.160990e+05 0.00 NULL
2016 Campaign Finance Board Secretary To The Executive Director 102500.00000 1.025000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.025000e+05 1.025000e+05 0.00 NULL
2016 Campaign Finance Board Summer College Intern 2083.49960 6.250499e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.250499e+03 6.250499e+03 0.00 NULL
2016 Campaign Finance Board Systems Administrator-Cam Fin Bd 83279.13294 1.415745e+06 9722.27 5.718982e+02 0.000 320.25 17 0.000000e+00 0.00 1.425468e+06 1.415745e+06 9722.27 NULL
2016 City Clerk Administrative Manager 162510.00000 1.625100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.625100e+05 1.625100e+05 0.00 NULL
2016 City Clerk Assistant Administrator 75033.00000 7.503300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.503300e+04 7.503300e+04 0.00 NULL
2016 City Clerk Associate Investigator 55044.00000 1.100880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.100880e+05 1.100880e+05 0.00 NULL
2016 City Clerk Chief Of Staff 96660.00000 9.666000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.666000e+04 9.666000e+04 0.00 NULL
2016 City Clerk City Clerk & Clerk Of Council 215295.00000 2.152950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.152950e+05 2.152950e+05 0.00 NULL
2016 City Clerk Clerical Associate 38911.10256 1.517533e+06 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 1.517533e+06 1.517533e+06 0.00 NULL
2016 City Clerk College Aide 6284.56604 7.541479e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.541479e+04 7.541479e+04 0.00 NULL
2016 City Clerk Community Assistant 35673.00000 7.134600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.134600e+04 7.134600e+04 0.00 NULL
2016 City Clerk Community Associate 49936.50000 9.987300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.987300e+04 9.987300e+04 0.00 NULL
2016 City Clerk Community Coordinator 74103.50000 2.964140e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.964140e+05 2.964140e+05 0.00 NULL
2016 City Clerk Deputy City Clerk 117664.83333 7.059890e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.059890e+05 7.059890e+05 0.00 NULL
2016 City Clerk Executive Agency Counsel 146091.00000 1.460910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.460910e+05 1.460910e+05 0.00 NULL
2016 City Clerk Executive Assistant To The City Clerk 80587.00000 8.058700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.058700e+04 8.058700e+04 0.00 NULL
2016 City Clerk Executive Assistant To The First Deputy Clerk 45460.00000 4.546000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.546000e+04 4.546000e+04 0.00 NULL
2016 City Clerk Executive Secretary To City Clerk 73665.00000 7.366500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.366500e+04 7.366500e+04 0.00 NULL
2016 City Clerk Principal Administrative Associate 61018.00000 1.220360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.220360e+05 1.220360e+05 0.00 NULL
2016 City Clerk Public Records Officer 47670.66667 2.860240e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.860240e+05 2.860240e+05 0.00 NULL
2016 City Clerk Secretary 30644.00000 3.064400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.064400e+04 3.064400e+04 0.00 NULL
2016 City Clerk Special Advisor To City Clerk 88063.23240 8.806323e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.806323e+04 8.806323e+04 0.00 NULL
2016 City Council Assistant Director Of Administration 125707.33333 7.542440e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.542440e+05 7.542440e+05 0.00 NULL
2016 City Council Assistant Director Of Finance 102500.00000 1.025000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.025000e+05 1.025000e+05 0.00 NULL
2016 City Council Assistant Director Of Legal Services 106563.00000 4.262520e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.262520e+05 4.262520e+05 0.00 NULL
2016 City Council Assistant Sergeant At Arms 42367.54545 4.660430e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 4.660430e+05 4.660430e+05 0.00 NULL
2016 City Council Chief Of Staff 222209.00000 2.222090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.222090e+05 2.222090e+05 0.00 NULL
2016 City Council Communication Assistant 70991.40000 3.549570e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.549570e+05 3.549570e+05 0.00 NULL
2016 City Council Council Member 85244.31818 7.501500e+06 0.00 0.000000e+00 0.000 0.00 88 0.000000e+00 0.00 7.501500e+06 7.501500e+06 0.00 NULL
2016 City Council Councilmanic Aide 40985.03181 2.061547e+07 0.00 0.000000e+00 0.000 0.00 503 0.000000e+00 0.00 2.061547e+07 2.061547e+07 0.00 NULL
2016 City Council Deputy Administration Assistant 85556.00000 8.555600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.555600e+04 8.555600e+04 0.00 NULL
2016 City Council Deputy Chief Of Staff 166875.00000 3.337500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.337500e+05 3.337500e+05 0.00 NULL
2016 City Council Deputy Director 110943.54545 1.220379e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.220379e+06 1.220379e+06 0.00 NULL
2016 City Council Deputy Director- Finance 140016.50000 5.600660e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.600660e+05 5.600660e+05 0.00 NULL
2016 City Council Deputy Director-Legal Division 141875.00000 2.837500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.837500e+05 2.837500e+05 0.00 NULL
2016 City Council Deputy Unit Chief 95132.00000 1.902640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.902640e+05 1.902640e+05 0.00 NULL
2016 City Council Director 123425.90000 1.234259e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.234259e+06 1.234259e+06 0.00 NULL
2016 City Council Director Legal Division/Gen Counsel& Spec Counsel 194750.00000 1.947500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.947500e+05 1.947500e+05 0.00 NULL
2016 City Council Director Of Council Services Bureau 177587.00000 3.551740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.551740e+05 3.551740e+05 0.00 NULL
2016 City Council Director Of Finance 180000.00000 1.800000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.800000e+05 1.800000e+05 0.00 NULL
2016 City Council Director Of Land Use Division 164000.00000 1.640000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.640000e+05 1.640000e+05 0.00 NULL
2016 City Council Director-Office Of Communications 153750.00000 1.537500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.537500e+05 1.537500e+05 0.00 NULL
2016 City Council Director-Office Of Policy 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2016 City Council Executive Legislative Coordinator 166376.00000 3.327520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.327520e+05 3.327520e+05 0.00 NULL
2016 City Council Executive Legislative Secretary 60608.00000 6.060800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.060800e+04 6.060800e+04 0.00 NULL
2016 City Council Legislative Administrative Assistant 51486.21429 7.208070e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 7.208070e+05 7.208070e+05 0.00 NULL
2016 City Council Legislative Administrative Manager 90547.16667 5.432830e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.432830e+05 5.432830e+05 0.00 NULL
2016 City Council Legislative Analyst 66625.00000 6.662500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.662500e+04 6.662500e+04 0.00 NULL
2016 City Council Legislative Assistant 52891.10272 3.755268e+06 0.00 0.000000e+00 0.000 0.00 71 0.000000e+00 0.00 3.755268e+06 3.755268e+06 0.00 NULL
2016 City Council Legislative Attorney 70648.00000 7.064800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.064800e+04 7.064800e+04 0.00 NULL
2016 City Council Legislative Clerk 24322.39554 5.594151e+05 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 5.594151e+05 5.594151e+05 0.00 NULL
2016 City Council Legislative Computer Support Specialist 67392.00000 4.717440e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.717440e+05 4.717440e+05 0.00 NULL
2016 City Council Legislative Coordinator 64199.63636 7.061960e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.061960e+05 7.061960e+05 0.00 NULL
2016 City Council Legislative Counsel 86286.74074 4.659484e+06 0.00 0.000000e+00 0.000 0.00 54 0.000000e+00 0.00 4.659484e+06 4.659484e+06 0.00 NULL
2016 City Council Legislative Financial Analyst 56175.00000 7.864500e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 7.864500e+05 7.864500e+05 0.00 NULL
2016 City Council Legislative Intern 4920.84417 1.476253e+05 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 1.476253e+05 1.476253e+05 0.00 NULL
2016 City Council Legislative Investigator 53812.50000 1.076250e+05 0.91 4.550000e-01 0.455 0.00 2 4.550000e-01 0.91 1.076259e+05 1.076259e+05 0.00 NULL
2016 City Council Legislative Messenger 37736.66667 1.132100e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.132100e+05 1.132100e+05 0.00 NULL
2016 City Council Legislative Policy Analyst 58156.78261 1.337606e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 1.337606e+06 1.337606e+06 0.00 NULL
2016 City Council Legislative Project Manager 81605.50000 4.896330e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.896330e+05 4.896330e+05 0.00 NULL
2016 City Council Legislative Support Service Coord 45216.00000 1.356480e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.356480e+05 1.356480e+05 0.00 NULL
2016 City Council Legislative Systems Manager 122502.00000 1.225020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.225020e+05 1.225020e+05 0.00 NULL
2016 City Council Minority Leader 74250.00000 1.485000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.485000e+05 1.485000e+05 0.00 NULL
2016 City Council Principal Legislative Financial Analyst 79754.16667 4.785250e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.785250e+05 4.785250e+05 0.00 NULL
2016 City Council Senior Legislative Financial Analyst 69178.00000 6.226020e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 6.226020e+05 6.226020e+05 0.00 NULL
2016 City Council Senior Legislative Policy Analyst 68556.75000 5.484540e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.484540e+05 5.484540e+05 0.00 NULL
2016 City Council Sergeant At Arms 92250.00000 9.225000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.225000e+04 9.225000e+04 0.00 NULL
2016 City Council Speaker/Majority Leader 164500.00000 1.645000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.645000e+05 1.645000e+05 0.00 NULL
2016 City Council Special Advisor To The Director 103242.20000 5.162110e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.162110e+05 5.162110e+05 0.00 NULL
2016 Civil Service Commission Adm Manager-Non-Mgrl 86948.00000 8.694800e+04 5232.01 5.232010e+03 5232.010 106.25 1 5.232010e+03 5232.01 9.218001e+04 9.218001e+04 0.00 NULL
2016 Civil Service Commission Agency Attorney 74053.00000 1.481060e+05 2280.00 1.140000e+03 1140.000 27.50 2 1.140000e+03 2280.00 1.503860e+05 1.503860e+05 0.00 NULL
2016 Civil Service Commission Chairman 1426.38900 1.426389e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.426389e+03 1.426389e+03 0.00 NULL
2016 Civil Service Commission College Aide 4991.62500 4.991625e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.991625e+03 4.991625e+03 0.00 NULL
2016 Civil Service Commission Commissioner 1379.69750 2.759395e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.759395e+03 2.759395e+03 0.00 NULL
2016 Civil Service Commission Community Associate 43881.33333 1.316440e+05 224.86 7.495333e+01 5.920 2.00 3 5.920000e+00 17.76 1.318689e+05 1.316618e+05 207.10 NULL
2016 Civil Service Commission Secretary Of The Commission 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2016 Civilian Complaint Review Bd Adm Manager-Non-Mgrl 73831.00000 1.476620e+05 2079.46 1.039730e+03 1039.730 22.25 2 1.039730e+03 2079.46 1.497415e+05 1.497415e+05 0.00 NULL
2016 Civilian Complaint Review Bd Administrative Public Information Specialist 94216.00000 1.884320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.884320e+05 1.884320e+05 0.00 NULL
2016 Civilian Complaint Review Bd Administrative Staff Analyst 90213.00000 9.021300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.021300e+04 9.021300e+04 0.00 NULL
2016 Civilian Complaint Review Bd Agency Attorney 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 9.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2016 Civilian Complaint Review Bd Clerical Associate 40469.30000 1.214079e+05 4795.33 1.598443e+03 22.640 158.75 3 2.264000e+01 67.92 1.262032e+05 1.214758e+05 4727.41 NULL
2016 Civilian Complaint Review Bd Community Associate 37920.09719 6.067216e+05 13239.71 8.274819e+02 460.115 571.25 16 4.601150e+02 7361.84 6.199613e+05 6.140834e+05 5877.87 NULL
2016 Civilian Complaint Review Bd Community Coordinator 51821.11600 2.591056e+05 12989.62 2.597924e+03 0.000 394.25 5 0.000000e+00 0.00 2.720952e+05 2.591056e+05 12989.62 NULL
2016 Civilian Complaint Review Bd Computer Operations Manager 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2016 Civilian Complaint Review Bd Computer Specialist 84619.50000 1.692390e+05 17330.37 8.665185e+03 8665.185 335.75 2 8.665185e+03 17330.37 1.865694e+05 1.865694e+05 0.00 NULL
2016 Civilian Complaint Review Bd Computer Systems Manager 87500.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2016 Civilian Complaint Review Bd Deputy Assistant Director 94784.66667 8.530620e+05 8379.80 9.310889e+02 0.000 100.75 9 0.000000e+00 0.00 8.614418e+05 8.530620e+05 8379.80 NULL
2016 Civilian Complaint Review Bd Deputy Executive Director 138122.00000 6.906100e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.906100e+05 6.906100e+05 0.00 NULL
2016 Civilian Complaint Review Bd Executive Agency Counsel 92850.43750 1.485607e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.485607e+06 1.485607e+06 0.00 NULL
2016 Civilian Complaint Review Bd Executive Director 220000.00000 2.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.200000e+05 2.200000e+05 0.00 NULL
2016 Civilian Complaint Review Bd Investigative Manager 90881.05882 1.544978e+06 14263.59 8.390347e+02 0.000 241.00 17 0.000000e+00 0.00 1.559242e+06 1.544978e+06 14263.59 NULL
2016 Civilian Complaint Review Bd Investigator 48035.22314 5.812262e+06 248869.30 2.056771e+03 536.900 8038.50 121 5.369000e+02 64964.90 6.061131e+06 5.877227e+06 183904.40 NULL
2016 Civilian Complaint Review Bd Member, Civilian Complaint Review Board 388.14444 3.493300e+03 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 3.493300e+03 3.493300e+03 0.00 NULL
2016 Civilian Complaint Review Bd Principal Administrative Associate 53088.00000 5.308800e+04 5570.76 5.570760e+03 5570.760 163.50 1 5.570760e+03 5570.76 5.865876e+04 5.865876e+04 0.00 NULL
2016 Civilian Complaint Review Bd Secretary 50078.00000 1.001560e+05 14523.16 7.261580e+03 7261.580 307.75 2 7.261580e+03 14523.16 1.146792e+05 1.146792e+05 0.00 NULL
2016 Civilian Complaint Review Bd Strategic Initiative Specialist 69000.00000 2.070000e+05 10315.03 3.438343e+03 2304.000 244.25 3 2.304000e+03 6912.00 2.173150e+05 2.139120e+05 3403.03 NULL
2016 Civilian Complaint Review Bd Summer Graduate Intern 3889.62000 3.889620e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.889620e+03 3.889620e+03 0.00 NULL
2016 Civilian Complaint Review Bd Supervisor Of Investigators 80000.00000 2.400000e+05 11797.16 3.932387e+03 4736.250 313.00 3 3.932387e+03 11797.16 2.517972e+05 2.517972e+05 0.00 NULL
2016 Community College (Bronx) ?Assistant Purchasing Agent 37981.00000 1.519240e+05 291.06 7.276500e+01 0.000 0.00 4 0.000000e+00 0.00 1.522151e+05 1.519240e+05 291.06 NULL
2016 Community College (Bronx) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 145 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Bronx) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Bronx) Adjunct College Lab Tech 5260.60457 3.051151e+05 0.00 0.000000e+00 0.000 0.00 58 0.000000e+00 0.00 3.051151e+05 3.051151e+05 0.00 NULL
2016 Community College (Bronx) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 444 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Bronx) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Bronx) Adjunct Senior College Lab Tech 15247.96000 1.524796e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.524796e+04 1.524796e+04 0.00 NULL
2016 Community College (Bronx) Administrator 152972.00000 6.118880e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.118880e+05 6.118880e+05 0.00 NULL
2016 Community College (Bronx) Administrator Supt Campus B/G 96518.50000 1.930370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.930370e+05 1.930370e+05 0.00 NULL
2016 Community College (Bronx) Assistant Administrator 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2016 Community College (Bronx) Assistant College Security Director 85000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2016 Community College (Bronx) Assistant Dean 117249.00000 1.172490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.172490e+05 1.172490e+05 0.00 NULL
2016 Community College (Bronx) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 149 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Bronx) Assistant To Heo 56824.37500 2.727570e+06 3158.21 6.579604e+01 0.000 59.83 48 0.000000e+00 0.00 2.730728e+06 2.727570e+06 3158.21 NULL
2016 Community College (Bronx) Assistant Vice President 140000.00000 4.200000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.200000e+05 4.200000e+05 0.00 NULL
2016 Community College (Bronx) Associate Dean 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2016 Community College (Bronx) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 106 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Bronx) Auto Mechanic NA NA 8116.20 4.058100e+03 4058.100 124.75 2 4.058100e+03 8116.20 NA NA NA NULL
2016 Community College (Bronx) Business Data And Reporting Analyst 37902.20000 1.895110e+05 150.08 3.001600e+01 0.000 8.00 5 0.000000e+00 0.00 1.896611e+05 1.895110e+05 150.08 NULL
2016 Community College (Bronx) Campus Peace Officer 38423.56667 1.152707e+06 187514.36 6.250479e+03 4064.310 6439.13 30 4.064310e+03 121929.30 1.340221e+06 1.274636e+06 65585.06 NULL
2016 Community College (Bronx) Campus Public Safety Sergeant 50361.28571 7.050580e+05 170198.60 1.215704e+04 10435.375 4608.58 14 1.043538e+04 146095.25 8.752566e+05 8.511532e+05 24103.35 NULL
2016 Community College (Bronx) Campus Security Assistant 22058.83985 1.102942e+06 137288.82 2.745776e+03 1459.370 6817.99 50 1.459370e+03 72968.50 1.240231e+06 1.175910e+06 64320.32 NULL
2016 Community College (Bronx) Carpenter NA NA 54527.15 1.817572e+04 19216.030 424.50 3 1.817572e+04 54527.15 NA NA NA NULL
2016 Community College (Bronx) Cement Mason NA NA 29445.53 2.944553e+04 29445.530 259.50 1 2.944553e+04 29445.53 NA NA NA NULL
2016 Community College (Bronx) Chief Administrative Supt Campus B/G 114878.00000 1.148780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.148780e+05 1.148780e+05 0.00 NULL
2016 Community College (Bronx) Chief College Lab Technician 71699.75000 2.867990e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.867990e+05 2.867990e+05 0.00 NULL
2016 Community College (Bronx) City Laborer NA NA 12130.18 1.213018e+04 12130.180 236.00 1 1.213018e+04 12130.18 NA NA NA NULL
2016 Community College (Bronx) College Accountant 48315.00000 1.449450e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.449450e+05 1.449450e+05 0.00 NULL
2016 Community College (Bronx) College Accounting Assistant 38355.40000 1.917770e+05 1782.49 3.564980e+02 124.320 76.75 5 1.243200e+02 621.60 1.935595e+05 1.923986e+05 1160.89 NULL
2016 Community College (Bronx) College Assistant 5591.45972 2.885193e+06 2450.47 4.748973e+00 0.000 97.00 516 0.000000e+00 0.00 2.887644e+06 2.885193e+06 2450.47 NULL
2016 Community College (Bronx) College Graph Designer 53952.00000 5.395200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.395200e+04 5.395200e+04 0.00 NULL
2016 Community College (Bronx) College Lab Technician 44880.55750 7.180889e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 7.180889e+05 7.180889e+05 0.00 NULL
2016 Community College (Bronx) College Print Shop Assistant 28090.00000 2.809000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.809000e+04 2.809000e+04 0.00 NULL
2016 Community College (Bronx) College Print Shop Associate 37920.00000 7.584000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.584000e+04 7.584000e+04 0.00 NULL
2016 Community College (Bronx) College Security Director 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2016 Community College (Bronx) Computer Systems Manager 102500.00000 4.100000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.100000e+05 4.100000e+05 0.00 NULL
2016 Community College (Bronx) Continuing Education Teacher 14658.52952 1.289951e+06 0.00 0.000000e+00 0.000 0.00 88 0.000000e+00 0.00 1.289951e+06 1.289951e+06 0.00 NULL
2016 Community College (Bronx) Cuny Administrator Assistant 45938.83333 8.268990e+05 27288.62 1.516034e+03 0.000 784.50 18 0.000000e+00 0.00 8.541876e+05 8.268990e+05 27288.62 NULL
2016 Community College (Bronx) Cuny Office Assistant 31887.69767 2.742342e+06 25950.60 3.017512e+02 0.000 1083.17 86 0.000000e+00 0.00 2.768293e+06 2.742342e+06 25950.60 NULL
2016 Community College (Bronx) Custodial Assistant 28867.63482 1.616588e+06 17204.97 3.072316e+02 91.690 795.25 56 9.169000e+01 5134.64 1.633793e+06 1.621722e+06 12070.33 NULL
2016 Community College (Bronx) Custodial Supervisor 31918.16667 1.915090e+05 3827.84 6.379733e+02 433.115 159.75 6 4.331150e+02 2598.69 1.953368e+05 1.941077e+05 1229.15 NULL
2016 Community College (Bronx) Dean 145177.50000 5.807100e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.807100e+05 5.807100e+05 0.00 NULL
2016 Community College (Bronx) Disability Accommodations Specialist 50994.00000 5.099400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.099400e+04 5.099400e+04 0.00 NULL
2016 Community College (Bronx) Electrician NA NA 41962.43 5.994633e+03 2070.270 593.25 7 2.070270e+03 14491.89 NA NA NA NULL
2016 Community College (Bronx) Eoc Accounting Assistant 37317.00000 3.731700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.731700e+04 3.731700e+04 0.00 NULL
2016 Community College (Bronx) Eoc Adjunct Lecturer 7049.18867 1.057378e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.057378e+05 1.057378e+05 0.00 NULL
2016 Community College (Bronx) Eoc Administrative Assistant 51879.00000 5.187900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.187900e+04 5.187900e+04 0.00 NULL
2016 Community College (Bronx) Eoc Assistant To Heo 53570.18000 5.357018e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.357018e+05 5.357018e+05 0.00 NULL
2016 Community College (Bronx) Eoc College Lab Technician 56862.50000 1.137250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.137250e+05 1.137250e+05 0.00 NULL
2016 Community College (Bronx) Eoc Custodial Supervisor 32228.00000 3.222800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.222800e+04 3.222800e+04 0.00 NULL
2016 Community College (Bronx) Eoc Higher Education Assistant 74133.00000 7.413300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.413300e+04 7.413300e+04 0.00 NULL
2016 Community College (Bronx) Eoc Higher Education Associate 82636.33333 2.479090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.479090e+05 2.479090e+05 0.00 NULL
2016 Community College (Bronx) Eoc Lecturer 74907.00000 1.498140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.498140e+05 1.498140e+05 0.00 NULL
2016 Community College (Bronx) Eoc Office Assistant 29784.66667 1.787080e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.787080e+05 1.787080e+05 0.00 NULL
2016 Community College (Bronx) High Pressure Plant Tender NA NA 88791.83 8.879183e+03 2837.755 1572.50 10 2.837755e+03 28377.55 NA NA NA NULL
2016 Community College (Bronx) Higher Education Assistant 68430.49254 4.584843e+06 7948.44 1.186334e+02 0.000 118.75 67 0.000000e+00 0.00 4.592791e+06 4.584843e+06 7948.44 NULL
2016 Community College (Bronx) Higher Education Associate 86155.67500 3.446227e+06 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 3.446227e+06 3.446227e+06 0.00 NULL
2016 Community College (Bronx) Higher Education Officer 107177.50000 3.429680e+06 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 3.429680e+06 3.429680e+06 0.00 NULL
2016 Community College (Bronx) Instructor 51294.87500 4.103590e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.103590e+05 4.103590e+05 0.00 NULL
2016 Community College (Bronx) It Assistant 49305.30769 6.409690e+05 7238.40 5.568000e+02 0.000 74.50 13 0.000000e+00 0.00 6.482074e+05 6.409690e+05 7238.40 NULL
2016 Community College (Bronx) It Associate 70475.00000 4.933250e+05 5842.48 8.346400e+02 188.120 31.00 7 1.881200e+02 1316.84 4.991675e+05 4.946418e+05 4525.64 NULL
2016 Community College (Bronx) It Senior Associate 95578.00000 1.911560e+05 1792.44 8.962200e+02 896.220 25.00 2 8.962200e+02 1792.44 1.929484e+05 1.929484e+05 0.00 NULL
2016 Community College (Bronx) It Support Assistant 23094.39289 8.775869e+05 2478.92 6.523474e+01 0.000 124.00 38 0.000000e+00 0.00 8.800658e+05 8.775869e+05 2478.92 NULL
2016 Community College (Bronx) Laborer NA NA 90616.25 1.006847e+04 10566.850 1746.75 9 1.006847e+04 90616.25 NA NA NA NULL
2016 Community College (Bronx) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 106 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Bronx) Lecturer/Doctoral Schedule 66067.00000 6.606700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.606700e+04 6.606700e+04 0.00 NULL
2016 Community College (Bronx) Locksmith NA NA 2022.80 1.011400e+03 1011.400 60.50 2 1.011400e+03 2022.80 NA NA NA NULL
2016 Community College (Bronx) Mail/Message Services Worker 30600.66667 9.180200e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.180200e+04 9.180200e+04 0.00 NULL
2016 Community College (Bronx) Maintenance Worker NA NA 36950.62 3.079218e+03 1387.990 886.75 12 1.387990e+03 16655.88 NA NA NA NULL
2016 Community College (Bronx) Media Services Technician 45520.50000 9.104100e+04 10773.05 5.386525e+03 5386.525 290.50 2 5.386525e+03 10773.05 1.018141e+05 1.018141e+05 0.00 NULL
2016 Community College (Bronx) Motor Vehicle Operator 36535.00000 7.307000e+04 9953.19 4.976595e+03 4976.595 423.17 2 4.976595e+03 9953.19 8.302319e+04 8.302319e+04 0.00 NULL
2016 Community College (Bronx) Non-Teaching Adjunct I 774.56000 7.745600e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.745600e+02 7.745600e+02 0.00 NULL
2016 Community College (Bronx) Non-Teaching Adjunct Ii 3290.31687 6.054183e+05 0.00 0.000000e+00 0.000 0.00 184 0.000000e+00 0.00 6.054183e+05 6.054183e+05 0.00 NULL
2016 Community College (Bronx) Non-Teaching Adjunct Iii 799.04193 5.593293e+04 0.00 0.000000e+00 0.000 0.00 70 0.000000e+00 0.00 5.593293e+04 5.593293e+04 0.00 NULL
2016 Community College (Bronx) Non-Teaching Adjunct Iv 959.90529 3.359668e+04 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 3.359668e+04 3.359668e+04 0.00 NULL
2016 Community College (Bronx) Non-Teaching Adjunct V 4544.73468 1.408868e+05 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 1.408868e+05 1.408868e+05 0.00 NULL
2016 Community College (Bronx) Oiler NA NA 10805.44 1.080544e+04 10805.440 203.50 1 1.080544e+04 10805.44 NA NA NA NULL
2016 Community College (Bronx) Painter NA NA 23137.20 3.856200e+03 4490.945 455.50 6 3.856200e+03 23137.20 NA NA NA NULL
2016 Community College (Bronx) Plumber NA NA 106909.22 2.672731e+04 19609.370 710.00 4 1.960937e+04 78437.48 NA NA NA NULL
2016 Community College (Bronx) Plumber’s Helper NA NA 31287.32 1.042911e+04 12048.080 311.75 3 1.042911e+04 31287.32 NA NA NA NULL
2016 Community College (Bronx) President 260000.00000 5.200000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.200000e+05 5.200000e+05 0.00 NULL
2016 Community College (Bronx) Principal Custodial Supervisor 54977.00000 5.497700e+04 4247.38 4.247380e+03 4247.380 106.00 1 4.247380e+03 4247.38 5.922438e+04 5.922438e+04 0.00 NULL
2016 Community College (Bronx) Professor NA NA 0.00 0.000000e+00 0.000 0.00 113 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Bronx) Project Manager 78369.50000 1.567390e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.567390e+05 1.567390e+05 0.00 NULL
2016 Community College (Bronx) Senior College Lab Tech 60520.45455 6.657250e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 6.657250e+05 6.657250e+05 0.00 NULL
2016 Community College (Bronx) Senior Custodial Supervisor 35154.66667 1.054640e+05 2582.30 8.607667e+02 1070.710 125.50 3 8.607667e+02 2582.30 1.080463e+05 1.080463e+05 0.00 NULL
2016 Community College (Bronx) Senior Stationary Engineer NA NA 56981.54 2.849077e+04 28490.770 684.25 2 2.849077e+04 56981.54 NA NA NA NULL
2016 Community College (Bronx) Senior Vice President 196250.00000 3.925000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.925000e+05 3.925000e+05 0.00 NULL
2016 Community College (Bronx) Stationary Engineer NA NA 106865.73 1.526653e+04 16165.500 1432.25 7 1.526653e+04 106865.73 NA NA NA NULL
2016 Community College (Bronx) Steam Fitter NA NA 46593.26 2.329663e+04 23296.630 383.50 2 2.329663e+04 46593.26 NA NA NA NULL
2016 Community College (Bronx) Stock Worker 31379.80000 1.568990e+05 27.66 5.532000e+00 0.000 1.50 5 0.000000e+00 0.00 1.569267e+05 1.568990e+05 27.66 NULL
2016 Community College (Bronx) Student Aide 1728.92571 1.331273e+05 164.06 2.130649e+00 0.000 12.50 77 0.000000e+00 0.00 1.332913e+05 1.331273e+05 164.06 NULL
2016 Community College (Bronx) Supervisor Carpenter NA NA 21428.81 2.142881e+04 21428.810 0.00 1 2.142881e+04 21428.81 NA NA NA NULL
2016 Community College (Bronx) Supervisor Electrician NA NA 24680.52 2.468052e+04 24680.520 289.75 1 2.468052e+04 24680.52 NA NA NA NULL
2016 Community College (Bronx) Supervisor Painter NA NA 300.00 3.000000e+02 300.000 5.00 1 3.000000e+02 300.00 NA NA NA NULL
2016 Community College (Bronx) Thermostat Repairer NA NA 32972.65 1.648633e+04 16486.325 230.50 2 1.648633e+04 32972.65 NA NA NA NULL
2016 Community College (Bronx) Vice President 158483.75000 6.339350e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.339350e+05 6.339350e+05 0.00 NULL
2016 Community College (Hostos) ?Assistant Purchasing Agent 37981.00000 7.596200e+04 2291.97 1.145985e+03 1145.985 100.75 2 1.145985e+03 2291.97 7.825397e+04 7.825397e+04 0.00 NULL
2016 Community College (Hostos) ?Purchasing Agent 51970.00000 5.197000e+04 250.56 2.505600e+02 250.560 0.00 1 2.505600e+02 250.56 5.222056e+04 5.222056e+04 0.00 NULL
2016 Community College (Hostos) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 118 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Hostos) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Hostos) Adjunct College Lab Tech 8003.45875 6.402767e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.402767e+04 6.402767e+04 0.00 NULL
2016 Community College (Hostos) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 208 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Hostos) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Hostos) Adjunct Senior College Lab Tech 2525.60000 2.525600e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.525600e+03 2.525600e+03 0.00 NULL
2016 Community College (Hostos) Administrator 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2016 Community College (Hostos) Administrator Supt Campus B/G 78000.00000 7.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.800000e+04 7.800000e+04 0.00 NULL
2016 Community College (Hostos) Assistant Administrator 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2016 Community College (Hostos) Assistant College Security Director 71065.50000 1.421310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.421310e+05 1.421310e+05 0.00 NULL
2016 Community College (Hostos) Assistant Dean 108333.33333 3.250000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.250000e+05 3.250000e+05 0.00 NULL
2016 Community College (Hostos) Assistant Principal Custodial Supervisor 39399.00000 7.879800e+04 3041.23 1.520615e+03 1520.615 89.75 2 1.520615e+03 3041.23 8.183923e+04 8.183923e+04 0.00 NULL
2016 Community College (Hostos) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 116 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Hostos) Assistant To Heo 43009.35417 2.064449e+06 1166.38 2.429958e+01 0.000 26.50 48 0.000000e+00 0.00 2.065615e+06 2.064449e+06 1166.38 NULL
2016 Community College (Hostos) Assistant Vice President 138333.33333 4.150000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.150000e+05 4.150000e+05 0.00 NULL
2016 Community College (Hostos) Associate Administrator 123000.00000 1.230000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.230000e+05 1.230000e+05 0.00 NULL
2016 Community College (Hostos) Associate Dean 118000.00000 2.360000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.360000e+05 2.360000e+05 0.00 NULL
2016 Community College (Hostos) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 49 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Hostos) Campus Peace Officer 37425.43478 8.607850e+05 267534.10 1.163192e+04 11007.260 10144.75 23 1.100726e+04 253166.98 1.128319e+06 1.113952e+06 14367.12 NULL
2016 Community College (Hostos) Campus Public Safety Sergeant 50147.00000 4.011760e+05 71586.35 8.948294e+03 8339.075 1906.50 8 8.339075e+03 66712.60 4.727623e+05 4.678886e+05 4873.75 NULL
2016 Community College (Hostos) Campus Security Assistant 26945.05263 5.119560e+05 95802.10 5.042216e+03 4708.030 4795.00 19 4.708030e+03 89452.57 6.077581e+05 6.014086e+05 6349.53 NULL
2016 Community College (Hostos) Carpenter NA NA 10971.37 1.097137e+04 10971.370 26.50 1 1.097137e+04 10971.37 NA NA NA NULL
2016 Community College (Hostos) Chief Administrator Supt Campus B/G 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2016 Community College (Hostos) City Laborer NA NA 34418.09 1.147270e+04 11626.800 695.25 3 1.147270e+04 34418.09 NA NA NA NULL
2016 Community College (Hostos) College Accountant 47778.00000 9.555600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.555600e+04 9.555600e+04 0.00 NULL
2016 Community College (Hostos) College Accounting Assistant 38898.00000 1.166940e+05 704.55 2.348500e+02 0.000 29.75 3 0.000000e+00 0.00 1.173986e+05 1.166940e+05 704.55 NULL
2016 Community College (Hostos) College Assistant 5041.55136 2.435069e+06 579.38 1.199545e+00 0.000 25.75 483 0.000000e+00 0.00 2.435649e+06 2.435069e+06 579.38 NULL
2016 Community College (Hostos) College Graph Designer 54752.00000 5.475200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.475200e+04 5.475200e+04 0.00 NULL
2016 Community College (Hostos) College Lab Technician 54271.75000 4.341740e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.341740e+05 4.341740e+05 0.00 NULL
2016 Community College (Hostos) College Print Shop Assistant 32770.00000 3.277000e+04 10694.20 1.069420e+04 10694.200 483.75 1 1.069420e+04 10694.20 4.346420e+04 4.346420e+04 0.00 NULL
2016 Community College (Hostos) College Security Director 112546.00000 1.125460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.125460e+05 1.125460e+05 0.00 NULL
2016 Community College (Hostos) College Security Specialist 52816.00000 1.056320e+05 13842.62 6.921310e+03 6921.310 355.50 2 6.921310e+03 13842.62 1.194746e+05 1.194746e+05 0.00 NULL
2016 Community College (Hostos) Computer Systems Manager 71000.00000 7.100000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.100000e+04 7.100000e+04 0.00 NULL
2016 Community College (Hostos) Continuing Education Teacher NA NA 0.00 0.000000e+00 0.000 0.00 160 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Hostos) Cuny Administrator Assistant 47715.20000 4.771520e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.771520e+05 4.771520e+05 0.00 NULL
2016 Community College (Hostos) Cuny Office Assistant 33394.40741 1.803298e+06 4441.53 8.225056e+01 0.000 206.25 54 0.000000e+00 0.00 1.807740e+06 1.803298e+06 4441.53 NULL
2016 Community College (Hostos) Custodial Assistant 28425.77273 1.250734e+06 41335.59 9.394452e+02 152.390 2182.75 44 1.523900e+02 6705.16 1.292070e+06 1.257439e+06 34630.43 NULL
2016 Community College (Hostos) Custodial Supervisor 30653.50000 1.226140e+05 9353.57 2.338392e+03 2252.595 386.75 4 2.252595e+03 9010.38 1.319676e+05 1.316244e+05 343.19 NULL
2016 Community College (Hostos) Disability Accommodations Specialist 31414.76290 1.570738e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.570738e+05 1.570738e+05 0.00 NULL
2016 Community College (Hostos) Distinguished Lecturer 93500.00000 1.870000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.870000e+05 1.870000e+05 0.00 NULL
2016 Community College (Hostos) Distinguished Professor 137681.00000 1.376810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.376810e+05 1.376810e+05 0.00 NULL
2016 Community College (Hostos) Electrician NA NA 32355.50 1.617775e+04 16177.750 584.50 2 1.617775e+04 32355.50 NA NA NA NULL
2016 Community College (Hostos) Electrician’s Helper NA NA 1539.46 1.539460e+03 1539.460 33.00 1 1.539460e+03 1539.46 NA NA NA NULL
2016 Community College (Hostos) High Pressure Plant Tender NA NA 55143.33 9.190555e+03 11173.555 1031.00 6 9.190555e+03 55143.33 NA NA NA NULL
2016 Community College (Hostos) Higher Education Assistant 55339.21348 4.925190e+06 121.73 1.367753e+00 0.000 2.00 89 0.000000e+00 0.00 4.925312e+06 4.925190e+06 121.73 NULL
2016 Community College (Hostos) Higher Education Associate 84642.40000 2.962484e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 2.962484e+06 2.962484e+06 0.00 NULL
2016 Community College (Hostos) Higher Education Officer 103639.08571 3.627368e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 3.627368e+06 3.627368e+06 0.00 NULL
2016 Community College (Hostos) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Hostos) It Assistant 37824.69132 6.430198e+05 820.86 4.828588e+01 0.000 17.00 17 0.000000e+00 0.00 6.438406e+05 6.430198e+05 820.86 NULL
2016 Community College (Hostos) It Associate 67186.75000 2.687470e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.687470e+05 2.687470e+05 0.00 NULL
2016 Community College (Hostos) It Senior Associate 86111.33333 2.583340e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.583340e+05 2.583340e+05 0.00 NULL
2016 Community College (Hostos) It Support Assistant 37434.22222 3.369080e+05 1192.24 1.324711e+02 0.000 51.25 9 0.000000e+00 0.00 3.381002e+05 3.369080e+05 1192.24 NULL
2016 Community College (Hostos) Lead Theatre Technician 7595.75786 1.595109e+05 13086.07 6.231462e+02 103.500 463.25 21 1.035000e+02 2173.50 1.725970e+05 1.616844e+05 10912.57 NULL
2016 Community College (Hostos) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 45 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Hostos) Lecturer/Doctoral Schedule 65441.00000 1.963230e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.963230e+05 1.963230e+05 0.00 NULL
2016 Community College (Hostos) Locksmith NA NA 270.95 2.709500e+02 270.950 8.00 1 2.709500e+02 270.95 NA NA NA NULL
2016 Community College (Hostos) Mail/Message Services Worker 37763.50000 7.552700e+04 9799.51 4.899755e+03 4899.755 410.00 2 4.899755e+03 9799.51 8.532651e+04 8.532651e+04 0.00 NULL
2016 Community College (Hostos) Maintenance Worker NA NA 11805.49 1.686499e+03 439.560 233.50 7 4.395600e+02 3076.92 NA NA NA NULL
2016 Community College (Hostos) Non-Teaching Adjunct I 2497.02177 1.498213e+05 0.00 0.000000e+00 0.000 0.00 60 0.000000e+00 0.00 1.498213e+05 1.498213e+05 0.00 NULL
2016 Community College (Hostos) Non-Teaching Adjunct Ii 3025.80275 3.025803e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 3.025803e+04 3.025803e+04 0.00 NULL
2016 Community College (Hostos) Non-Teaching Adjunct Iii 1238.00147 7.180409e+04 0.00 0.000000e+00 0.000 0.00 58 0.000000e+00 0.00 7.180409e+04 7.180409e+04 0.00 NULL
2016 Community College (Hostos) Non-Teaching Adjunct Iv 1693.44250 1.354754e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.354754e+04 1.354754e+04 0.00 NULL
2016 Community College (Hostos) Non-Teaching Adjunct V 3801.10018 5.321540e+04 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 5.321540e+04 5.321540e+04 0.00 NULL
2016 Community College (Hostos) Oiler NA NA 34021.08 1.701054e+04 17010.540 463.50 2 1.701054e+04 34021.08 NA NA NA NULL
2016 Community College (Hostos) Painter NA NA 669.38 3.346900e+02 334.690 12.75 2 3.346900e+02 669.38 NA NA NA NULL
2016 Community College (Hostos) Plumber NA NA 15583.87 1.558387e+04 15583.870 69.00 1 1.558387e+04 15583.87 NA NA NA NULL
2016 Community College (Hostos) Plumber’s Helper NA NA 8152.33 4.076165e+03 4076.165 50.25 2 4.076165e+03 8152.33 NA NA NA NULL
2016 Community College (Hostos) President 220000.00000 2.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.200000e+05 2.200000e+05 0.00 NULL
2016 Community College (Hostos) Principal Custodial Supervisor 56932.00000 5.693200e+04 7931.91 7.931910e+03 7931.910 239.25 1 7.931910e+03 7931.91 6.486391e+04 6.486391e+04 0.00 NULL
2016 Community College (Hostos) Professor NA NA 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Hostos) Senior College Lab Tech 59388.66667 3.563320e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.563320e+05 3.563320e+05 0.00 NULL
2016 Community College (Hostos) Senior Stationary Engineer NA NA 16209.93 1.620993e+04 16209.930 208.25 1 1.620993e+04 16209.93 NA NA NA NULL
2016 Community College (Hostos) Senior Vice President 188511.00000 1.885110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.885110e+05 1.885110e+05 0.00 NULL
2016 Community College (Hostos) Staff Nurse 63766.21250 1.275324e+05 190.05 9.502500e+01 95.025 3.00 2 9.502500e+01 190.05 1.277225e+05 1.277225e+05 0.00 NULL
2016 Community College (Hostos) Stationary Engineer NA NA 86622.00 2.165550e+04 20575.955 1180.50 4 2.057596e+04 82303.82 NA NA NA NULL
2016 Community College (Hostos) Stock Worker 32647.00000 9.794100e+04 50.31 1.677000e+01 8.510 7.50 3 8.510000e+00 25.53 9.799131e+04 9.796653e+04 24.78 NULL
2016 Community College (Hostos) Supervisor Thermostat Repair NA NA 64838.67 6.483867e+04 64838.670 405.50 1 6.483867e+04 64838.67 NA NA NA NULL
2016 Community College (Hostos) Thermostat Repairer NA NA 1544.00 1.544000e+03 1544.000 0.00 1 1.544000e+03 1544.00 NA NA NA NULL
2016 Community College (Hostos) Vice President 151212.25000 6.048490e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.048490e+05 6.048490e+05 0.00 NULL
2016 Community College (Kingsboro) ?Purchasing Agent 55604.80000 2.780240e+05 6705.73 1.341146e+03 436.520 164.00 5 4.365200e+02 2182.60 2.847297e+05 2.802066e+05 4523.13 NULL
2016 Community College (Kingsboro) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 120 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Kingsboro) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Kingsboro) Adjunct College Lab Tech 9090.05581 1.236248e+06 0.00 0.000000e+00 0.000 0.00 136 0.000000e+00 0.00 1.236248e+06 1.236248e+06 0.00 NULL
2016 Community College (Kingsboro) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 725 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Kingsboro) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Kingsboro) Administrator 149401.50000 2.988030e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.988030e+05 2.988030e+05 0.00 NULL
2016 Community College (Kingsboro) Administrator Supt Campus B/G 91556.75000 3.662270e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.662270e+05 3.662270e+05 0.00 NULL
2016 Community College (Kingsboro) Assistant Administrator 121500.00000 1.215000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.215000e+05 1.215000e+05 0.00 NULL
2016 Community College (Kingsboro) Assistant College Security Director 77450.00000 1.549000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.549000e+05 1.549000e+05 0.00 NULL
2016 Community College (Kingsboro) Assistant Principal Custodial Supervisor 39399.00000 3.939900e+04 3609.80 3.609800e+03 3609.800 125.00 1 3.609800e+03 3609.80 4.300880e+04 4.300880e+04 0.00 NULL
2016 Community College (Kingsboro) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 228 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Kingsboro) Assistant To Heo 47924.04615 3.115063e+06 10625.18 1.634643e+02 0.000 280.75 65 0.000000e+00 0.00 3.125688e+06 3.115063e+06 10625.18 NULL
2016 Community College (Kingsboro) Assistant Vice President 140768.50000 2.815370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.815370e+05 2.815370e+05 0.00 NULL
2016 Community College (Kingsboro) Associate Administrator 128392.33333 3.851770e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.851770e+05 3.851770e+05 0.00 NULL
2016 Community College (Kingsboro) Associate Dean 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2016 Community College (Kingsboro) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 118 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Kingsboro) Auto Mechanic NA NA 3816.12 1.272040e+03 1721.710 65.50 3 1.272040e+03 3816.12 NA NA NA NULL
2016 Community College (Kingsboro) Campus Peace Officer 37111.00000 8.906640e+05 67852.56 2.827190e+03 2411.750 2644.25 24 2.411750e+03 57882.00 9.585166e+05 9.485460e+05 9970.56 NULL
2016 Community College (Kingsboro) Campus Public Safety Sergeant 50147.00000 6.017640e+05 87134.56 7.261213e+03 4914.855 2597.25 12 4.914855e+03 58978.26 6.888986e+05 6.607423e+05 28156.30 NULL
2016 Community College (Kingsboro) Campus Security Assistant 29388.72727 6.465520e+05 52896.29 2.404377e+03 1511.290 2878.00 22 1.511290e+03 33248.38 6.994483e+05 6.798004e+05 19647.91 NULL
2016 Community College (Kingsboro) Carpenter NA NA 86379.14 2.879305e+04 38982.130 656.50 3 2.879305e+04 86379.14 NA NA NA NULL
2016 Community College (Kingsboro) Chief College Lab Technician 59203.31200 2.960166e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.960166e+05 2.960166e+05 0.00 NULL
2016 Community College (Kingsboro) City Laborer NA NA 110088.41 8.468339e+03 9085.360 2065.00 13 8.468339e+03 110088.41 NA NA NA NULL
2016 Community College (Kingsboro) College Accountant 51585.66667 1.547570e+05 446.89 1.489633e+02 0.000 9.50 3 0.000000e+00 0.00 1.552039e+05 1.547570e+05 446.89 NULL
2016 Community College (Kingsboro) College Accounting Assistant 38981.50000 1.559260e+05 3409.88 8.524700e+02 313.940 157.00 4 3.139400e+02 1255.76 1.593359e+05 1.571818e+05 2154.12 NULL
2016 Community College (Kingsboro) College Assistant 6265.28342 3.734109e+06 1019.54 1.710638e+00 0.000 47.00 596 0.000000e+00 0.00 3.735128e+06 3.734109e+06 1019.54 NULL
2016 Community College (Kingsboro) College Graph Designer 46914.00000 4.691400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.691400e+04 4.691400e+04 0.00 NULL
2016 Community College (Kingsboro) College Interior Designer 50573.00000 5.057300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.057300e+04 5.057300e+04 0.00 NULL
2016 Community College (Kingsboro) College Lab Technician 40467.72296 1.092629e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 1.092629e+06 1.092629e+06 0.00 NULL
2016 Community College (Kingsboro) College Print Shop Assistant 32770.00000 9.831000e+04 241.12 8.037333e+01 0.000 9.00 3 0.000000e+00 0.00 9.855112e+04 9.831000e+04 241.12 NULL
2016 Community College (Kingsboro) College Print Shop Associate 42950.66667 1.288520e+05 800.48 2.668267e+02 362.690 14.00 3 2.668267e+02 800.48 1.296525e+05 1.296525e+05 0.00 NULL
2016 Community College (Kingsboro) College Print Shop Coordinator 53842.00000 5.384200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.384200e+04 5.384200e+04 0.00 NULL
2016 Community College (Kingsboro) College Security Director 114291.00000 1.142910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.142910e+05 1.142910e+05 0.00 NULL
2016 Community College (Kingsboro) College Security Specialist 62379.50000 1.247590e+05 10897.93 5.448965e+03 5448.965 257.75 2 5.448965e+03 10897.93 1.356569e+05 1.356569e+05 0.00 NULL
2016 Community College (Kingsboro) Computer Operator Manager 92013.66667 2.760410e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.760410e+05 2.760410e+05 0.00 NULL
2016 Community College (Kingsboro) Computer Systems Manager 84586.00000 1.691720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.691720e+05 1.691720e+05 0.00 NULL
2016 Community College (Kingsboro) Continuing Education Teacher NA NA 0.00 0.000000e+00 0.000 0.00 361 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Kingsboro) Cuny Administrator Assistant 45752.05556 8.235370e+05 13261.50 7.367500e+02 0.000 531.75 18 0.000000e+00 0.00 8.367985e+05 8.235370e+05 13261.50 NULL
2016 Community College (Kingsboro) Cuny Broadcast Associate 51742.00000 1.034840e+05 7204.00 3.602000e+03 3602.000 69.50 2 3.602000e+03 7204.00 1.106880e+05 1.106880e+05 0.00 NULL
2016 Community College (Kingsboro) Cuny Office Assistant 32706.91935 2.027829e+06 11229.10 1.811145e+02 0.000 599.75 62 0.000000e+00 0.00 2.039058e+06 2.027829e+06 11229.10 NULL
2016 Community College (Kingsboro) Custodial Assistant 28808.89351 2.275903e+06 58060.79 7.349467e+02 304.780 2652.00 79 3.047800e+02 24077.62 2.333963e+06 2.299980e+06 33983.17 NULL
2016 Community College (Kingsboro) Custodial Supervisor 32525.00000 1.626250e+05 8195.15 1.639030e+03 634.410 305.00 5 6.344100e+02 3172.05 1.708201e+05 1.657970e+05 5023.10 NULL
2016 Community College (Kingsboro) Dean 137500.00000 2.750000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.750000e+05 2.750000e+05 0.00 NULL
2016 Community College (Kingsboro) Disability Accommodations Specialist 26357.60250 5.271521e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.271521e+04 5.271521e+04 0.00 NULL
2016 Community College (Kingsboro) Distinguished Lecturer 75256.00000 3.010240e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.010240e+05 3.010240e+05 0.00 NULL
2016 Community College (Kingsboro) Electrician NA NA 40026.88 2.001344e+04 20013.440 514.25 2 2.001344e+04 40026.88 NA NA NA NULL
2016 Community College (Kingsboro) Electrician’s Helper NA NA 8550.30 4.275150e+03 4275.150 169.00 2 4.275150e+03 8550.30 NA NA NA NULL
2016 Community College (Kingsboro) Facilities Coordinator 60852.50000 1.217050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.217050e+05 1.217050e+05 0.00 NULL
2016 Community College (Kingsboro) High Pressure Plant Tender NA NA 27636.96 2.512451e+03 1807.580 444.50 11 1.807580e+03 19883.38 NA NA NA NULL
2016 Community College (Kingsboro) Higher Education Assistant 61299.31343 4.107054e+06 7671.46 1.144994e+02 0.000 136.75 67 0.000000e+00 0.00 4.114725e+06 4.107054e+06 7671.46 NULL
2016 Community College (Kingsboro) Higher Education Associate 79051.58730 4.980250e+06 0.00 0.000000e+00 0.000 0.00 63 0.000000e+00 0.00 4.980250e+06 4.980250e+06 0.00 NULL
2016 Community College (Kingsboro) Higher Education Officer 100024.10417 4.801157e+06 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 4.801157e+06 4.801157e+06 0.00 NULL
2016 Community College (Kingsboro) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Kingsboro) It Assistant 49460.87500 7.913740e+05 3589.45 2.243406e+02 0.000 127.50 16 0.000000e+00 0.00 7.949634e+05 7.913740e+05 3589.45 NULL
2016 Community College (Kingsboro) It Associate 67457.60000 3.372880e+05 1849.89 3.699780e+02 0.000 48.50 5 0.000000e+00 0.00 3.391379e+05 3.372880e+05 1849.89 NULL
2016 Community College (Kingsboro) It Senior Associate 87500.50000 1.750010e+05 2560.57 1.280285e+03 1280.285 52.00 2 1.280285e+03 2560.57 1.775616e+05 1.775616e+05 0.00 NULL
2016 Community College (Kingsboro) It Support Assistant 37038.18182 4.074200e+05 1674.19 1.521991e+02 80.580 94.50 11 8.058000e+01 886.38 4.090942e+05 4.083064e+05 787.81 NULL
2016 Community College (Kingsboro) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 176 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Kingsboro) Lecturer/Doctoral Schedule 73497.66667 2.204930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.204930e+05 2.204930e+05 0.00 NULL
2016 Community College (Kingsboro) Locksmith NA NA 500.03 2.500150e+02 250.015 16.00 2 2.500150e+02 500.03 NA NA NA NULL
2016 Community College (Kingsboro) Mail/Message Services Worker 31232.00000 1.561600e+05 625.21 1.250420e+02 0.000 30.00 5 0.000000e+00 0.00 1.567852e+05 1.561600e+05 625.21 NULL
2016 Community College (Kingsboro) Maintenance Worker NA NA 56535.66 5.139605e+03 5318.890 1458.00 11 5.139605e+03 56535.66 NA NA NA NULL
2016 Community College (Kingsboro) Media Services Technician 58392.00000 5.839200e+04 14199.19 1.419919e+04 14199.190 367.75 1 1.419919e+04 14199.19 7.259119e+04 7.259119e+04 0.00 NULL
2016 Community College (Kingsboro) Non-Teaching Adjunct I 6247.79936 3.011439e+06 0.00 0.000000e+00 0.000 0.00 482 0.000000e+00 0.00 3.011439e+06 3.011439e+06 0.00 NULL
2016 Community College (Kingsboro) Non-Teaching Adjunct Ii 591.58167 3.549490e+03 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.549490e+03 3.549490e+03 0.00 NULL
2016 Community College (Kingsboro) Non-Teaching Adjunct Iii 2796.94015 1.873950e+05 0.00 0.000000e+00 0.000 0.00 67 0.000000e+00 0.00 1.873950e+05 1.873950e+05 0.00 NULL
2016 Community College (Kingsboro) Non-Teaching Adjunct Iv 5818.47140 1.454618e+05 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.454618e+05 1.454618e+05 0.00 NULL
2016 Community College (Kingsboro) Non-Teaching Adjunct V 6870.03304 1.923609e+05 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 1.923609e+05 1.923609e+05 0.00 NULL
2016 Community College (Kingsboro) Oiler NA NA 13969.90 4.656633e+03 5098.030 181.50 3 4.656633e+03 13969.90 NA NA NA NULL
2016 Community College (Kingsboro) Painter NA NA 26145.00 1.307250e+04 13072.500 507.00 2 1.307250e+04 26145.00 NA NA NA NULL
2016 Community College (Kingsboro) Plumber NA NA 33375.17 1.112506e+04 10751.750 170.00 3 1.075175e+04 32255.25 NA NA NA NULL
2016 Community College (Kingsboro) President 220000.00000 2.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.200000e+05 2.200000e+05 0.00 NULL
2016 Community College (Kingsboro) Professor NA NA 0.00 0.000000e+00 0.000 0.00 121 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Kingsboro) Project Manager 75547.00000 7.554700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.554700e+04 7.554700e+04 0.00 NULL
2016 Community College (Kingsboro) Senior College Lab Tech 57581.73684 1.094053e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.094053e+06 1.094053e+06 0.00 NULL
2016 Community College (Kingsboro) Senior Custodial Supervisor 35101.00000 3.510100e+04 1412.05 1.412050e+03 1412.050 55.75 1 1.412050e+03 1412.05 3.651305e+04 3.651305e+04 0.00 NULL
2016 Community College (Kingsboro) Senior Stationary Engineer NA NA 4164.20 2.082100e+03 2082.100 51.00 2 2.082100e+03 4164.20 NA NA NA NULL
2016 Community College (Kingsboro) Sign Language Interpreter 4893.10297 1.957241e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.957241e+04 1.957241e+04 0.00 NULL
2016 Community College (Kingsboro) Sr College Laboratory Tech 3747.19700 1.873599e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.873599e+04 1.873599e+04 0.00 NULL
2016 Community College (Kingsboro) Staff Nurse 16766.53690 2.347315e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.347315e+05 2.347315e+05 0.00 NULL
2016 Community College (Kingsboro) Stationary Engineer NA NA 31642.11 5.273685e+03 4810.280 434.50 6 4.810280e+03 28861.68 NA NA NA NULL
2016 Community College (Kingsboro) Stock Worker 28453.00000 8.535900e+04 398.48 1.328267e+02 118.390 0.00 3 1.183900e+02 355.17 8.575748e+04 8.571417e+04 43.31 NULL
2016 Community College (Kingsboro) Student Aide 1677.55522 6.324383e+05 0.00 0.000000e+00 0.000 0.00 377 0.000000e+00 0.00 6.324383e+05 6.324383e+05 0.00 NULL
2016 Community College (Kingsboro) Supervisor Of Stock Workers 42624.00000 4.262400e+04 454.95 4.549500e+02 454.950 0.00 1 4.549500e+02 454.95 4.307895e+04 4.307895e+04 0.00 NULL
2016 Community College (Kingsboro) Thermostat Repairer NA NA 4064.35 4.064350e+03 4064.350 21.00 1 4.064350e+03 4064.35 NA NA NA NULL
2016 Community College (Kingsboro) University Architect 95893.00000 9.589300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.589300e+04 9.589300e+04 0.00 NULL
2016 Community College (Kingsboro) University Assistant Architect 62862.00000 6.286200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.286200e+04 6.286200e+04 0.00 NULL
2016 Community College (Kingsboro) Vice President 165532.00000 1.158724e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.158724e+06 1.158724e+06 0.00 NULL
2016 Community College (Laguardia) ?Purchasing Agent 52773.80000 2.638690e+05 4238.71 8.477420e+02 580.910 118.00 5 5.809100e+02 2904.55 2.681077e+05 2.667735e+05 1334.16 NULL
2016 Community College (Laguardia) Adjunct Assistant Professor 12171.62044 3.152450e+06 0.00 0.000000e+00 0.000 0.00 259 0.000000e+00 0.00 3.152450e+06 3.152450e+06 0.00 NULL
2016 Community College (Laguardia) Adjunct Associate Professor 11146.02750 3.120888e+05 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 3.120888e+05 3.120888e+05 0.00 NULL
2016 Community College (Laguardia) Adjunct College Lab Tech 8408.24699 6.558433e+05 0.00 0.000000e+00 0.000 0.00 78 0.000000e+00 0.00 6.558433e+05 6.558433e+05 0.00 NULL
2016 Community College (Laguardia) Adjunct Lecturer 12540.09096 9.768731e+06 0.00 0.000000e+00 0.000 0.00 779 0.000000e+00 0.00 9.768731e+06 9.768731e+06 0.00 NULL
2016 Community College (Laguardia) Adjunct Professor 15124.06800 2.268610e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 2.268610e+05 2.268610e+05 0.00 NULL
2016 Community College (Laguardia) Adjunct Senior College Lab Tech 23517.37500 2.351738e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.351738e+04 2.351738e+04 0.00 NULL
2016 Community College (Laguardia) Administrator 148785.00000 4.463550e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.463550e+05 4.463550e+05 0.00 NULL
2016 Community College (Laguardia) Administrator Supt Campus B/G 77174.50000 1.543490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.543490e+05 1.543490e+05 0.00 NULL
2016 Community College (Laguardia) Assistant College Security Director 71500.00000 1.430000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.430000e+05 1.430000e+05 0.00 NULL
2016 Community College (Laguardia) Assistant Dean 120375.00000 4.815000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.815000e+05 4.815000e+05 0.00 NULL
2016 Community College (Laguardia) Assistant Professor 48701.71782 1.027606e+07 0.00 0.000000e+00 0.000 0.00 211 0.000000e+00 0.00 1.027606e+07 1.027606e+07 0.00 NULL
2016 Community College (Laguardia) Assistant To Heo 49027.64516 4.559571e+06 2306.18 2.479763e+01 0.000 43.50 93 0.000000e+00 0.00 4.561877e+06 4.559571e+06 2306.18 NULL
2016 Community College (Laguardia) Associate Administrator 135012.40000 6.750620e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.750620e+05 6.750620e+05 0.00 NULL
2016 Community College (Laguardia) Associate Dean 138200.00000 8.292000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.292000e+05 8.292000e+05 0.00 NULL
2016 Community College (Laguardia) Associate Professor 58176.24449 9.075494e+06 0.00 0.000000e+00 0.000 0.00 156 0.000000e+00 0.00 9.075494e+06 9.075494e+06 0.00 NULL
2016 Community College (Laguardia) Business Data And Reporting Analyst 46528.00000 4.652800e+04 1222.57 1.222570e+03 1222.570 32.00 1 1.222570e+03 1222.57 4.775057e+04 4.775057e+04 0.00 NULL
2016 Community College (Laguardia) Campus Peace Officer 37200.17241 1.078805e+06 107803.97 3.717378e+03 3208.610 4203.00 29 3.208610e+03 93049.69 1.186609e+06 1.171855e+06 14754.28 NULL
2016 Community College (Laguardia) Campus Public Safety Sergeant 50361.28571 3.525290e+05 48459.84 6.922834e+03 7740.730 1330.25 7 6.922834e+03 48459.84 4.009888e+05 4.009888e+05 0.00 NULL
2016 Community College (Laguardia) Campus Security Assistant 29986.88571 1.049541e+06 101162.43 2.890355e+03 2590.350 4563.50 35 2.590350e+03 90662.25 1.150703e+06 1.140203e+06 10500.18 NULL
2016 Community College (Laguardia) Chief Administrative Supt Campus B/G 116500.00000 1.165000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.165000e+05 1.165000e+05 0.00 NULL
2016 Community College (Laguardia) Chief College Lab Technician 65158.01778 5.864222e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.864222e+05 5.864222e+05 0.00 NULL
2016 Community College (Laguardia) College Accountant 40934.75000 1.637390e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.637390e+05 1.637390e+05 0.00 NULL
2016 Community College (Laguardia) College Accounting Assistant 42190.66667 2.531440e+05 3482.07 5.803450e+02 27.680 145.25 6 2.768000e+01 166.08 2.566261e+05 2.533101e+05 3315.99 NULL
2016 Community College (Laguardia) College Assistant 6000.06707 5.580062e+06 5337.93 5.739710e+00 0.000 172.00 930 0.000000e+00 0.00 5.585400e+06 5.580062e+06 5337.93 NULL
2016 Community College (Laguardia) College Graph Designer 57329.00000 5.732900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.732900e+04 5.732900e+04 0.00 NULL
2016 Community College (Laguardia) College Lab Technician 34398.09032 1.066341e+06 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 1.066341e+06 1.066341e+06 0.00 NULL
2016 Community College (Laguardia) College Print Shop Assistant 30996.50000 6.199300e+04 277.73 1.388650e+02 138.865 66.00 2 1.388650e+02 277.73 6.227073e+04 6.227073e+04 0.00 NULL
2016 Community College (Laguardia) College Print Shop Coordinator 53842.00000 5.384200e+04 5210.69 5.210690e+03 5210.690 224.50 1 5.210690e+03 5210.69 5.905269e+04 5.905269e+04 0.00 NULL
2016 Community College (Laguardia) College Security Director 102000.00000 1.020000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020000e+05 1.020000e+05 0.00 NULL
2016 Community College (Laguardia) College Security Specialist 57598.00000 1.727940e+05 59263.55 1.975452e+04 20265.510 1392.25 3 1.975452e+04 59263.55 2.320575e+05 2.320575e+05 0.00 NULL
2016 Community College (Laguardia) Computer Systems Manager 119200.00000 5.960000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.960000e+05 5.960000e+05 0.00 NULL
2016 Community College (Laguardia) Continuing Education Teacher 12779.56050 2.619810e+06 0.00 0.000000e+00 0.000 0.00 205 0.000000e+00 0.00 2.619810e+06 2.619810e+06 0.00 NULL
2016 Community College (Laguardia) Cuny Administrator Assistant 47573.39130 1.094188e+06 6860.13 2.982665e+02 0.000 258.00 23 0.000000e+00 0.00 1.101048e+06 1.094188e+06 6860.13 NULL
2016 Community College (Laguardia) Cuny Broadcast Associate 41693.00000 1.667720e+05 39718.79 9.929698e+03 9886.900 1446.50 4 9.886900e+03 39547.60 2.064908e+05 2.063196e+05 171.19 NULL
2016 Community College (Laguardia) Cuny Office Assistant 33682.73239 2.391474e+06 13819.11 1.946354e+02 0.000 758.00 71 0.000000e+00 0.00 2.405293e+06 2.391474e+06 13819.11 NULL
2016 Community College (Laguardia) Custodial Assistant 22710.65398 1.498903e+06 139420.36 2.112430e+03 427.115 6665.75 66 4.271150e+02 28189.59 1.638324e+06 1.527093e+06 111230.77 NULL
2016 Community College (Laguardia) Custodial Supervisor 37427.50000 7.485500e+04 29180.23 1.459011e+04 14590.115 1018.00 2 1.459011e+04 29180.23 1.040352e+05 1.040352e+05 0.00 NULL
2016 Community College (Laguardia) Facilities Coordinator 50835.00000 2.033400e+05 1531.07 3.827675e+02 0.000 34.50 4 0.000000e+00 0.00 2.048711e+05 2.033400e+05 1531.07 NULL
2016 Community College (Laguardia) Higher Education Assistant 62692.60630 7.961961e+06 3057.77 2.407693e+01 0.000 5.00 127 0.000000e+00 0.00 7.965019e+06 7.961961e+06 3057.77 NULL
2016 Community College (Laguardia) Higher Education Associate 81899.72727 8.108073e+06 6065.15 6.126414e+01 0.000 58.00 99 0.000000e+00 0.00 8.114138e+06 8.108073e+06 6065.15 NULL
2016 Community College (Laguardia) Higher Education Officer 105955.50877 6.039464e+06 0.00 0.000000e+00 0.000 0.00 57 0.000000e+00 0.00 6.039464e+06 6.039464e+06 0.00 NULL
2016 Community College (Laguardia) Instructor 53683.86250 8.589418e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 8.589418e+05 8.589418e+05 0.00 NULL
2016 Community College (Laguardia) It Assistant 46918.22598 1.313710e+06 24079.64 8.599871e+02 311.510 647.00 28 3.115100e+02 8722.28 1.337790e+06 1.322433e+06 15357.36 NULL
2016 Community College (Laguardia) It Associate 66798.38095 1.402766e+06 27805.24 1.324059e+03 0.000 536.00 21 0.000000e+00 0.00 1.430571e+06 1.402766e+06 27805.24 NULL
2016 Community College (Laguardia) It Senior Associate 86513.70000 8.651370e+05 6025.83 6.025830e+02 25.875 21.00 10 2.587500e+01 258.75 8.711628e+05 8.653958e+05 5767.08 NULL
2016 Community College (Laguardia) It Support Assistant 35587.84892 9.964598e+05 4683.55 1.672696e+02 0.000 119.00 28 0.000000e+00 0.00 1.001143e+06 9.964598e+05 4683.55 NULL
2016 Community College (Laguardia) Lecturer 44477.46402 4.536701e+06 0.00 0.000000e+00 0.000 0.00 102 0.000000e+00 0.00 4.536701e+06 4.536701e+06 0.00 NULL
2016 Community College (Laguardia) Lecturer/Doctoral Schedule 71725.00000 2.151750e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.151750e+05 2.151750e+05 0.00 NULL
2016 Community College (Laguardia) Mail/Message Services Worker 33443.72727 3.678810e+05 37489.81 3.408165e+03 1858.840 1605.75 11 1.858840e+03 20447.24 4.053708e+05 3.883282e+05 17042.57 NULL
2016 Community College (Laguardia) Media Services Technician 53305.00000 5.330500e+04 22271.26 2.227126e+04 22271.260 600.50 1 2.227126e+04 22271.26 7.557626e+04 7.557626e+04 0.00 NULL
2016 Community College (Laguardia) Non-Teaching Adjunct I 3022.62970 4.292134e+05 0.00 0.000000e+00 0.000 0.00 142 0.000000e+00 0.00 4.292134e+05 4.292134e+05 0.00 NULL
2016 Community College (Laguardia) Non-Teaching Adjunct Ii 1349.08742 8.634160e+04 0.00 0.000000e+00 0.000 0.00 64 0.000000e+00 0.00 8.634160e+04 8.634160e+04 0.00 NULL
2016 Community College (Laguardia) Non-Teaching Adjunct Iii 3076.12700 2.153289e+05 0.00 0.000000e+00 0.000 0.00 70 0.000000e+00 0.00 2.153289e+05 2.153289e+05 0.00 NULL
2016 Community College (Laguardia) Non-Teaching Adjunct Iv 4291.83985 1.459226e+05 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 1.459226e+05 1.459226e+05 0.00 NULL
2016 Community College (Laguardia) Non-Teaching Adjunct V 4151.71571 5.812402e+04 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 5.812402e+04 5.812402e+04 0.00 NULL
2016 Community College (Laguardia) President 219834.00000 2.198340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.198340e+05 2.198340e+05 0.00 NULL
2016 Community College (Laguardia) Professor 68407.28315 1.073994e+07 0.00 0.000000e+00 0.000 0.00 157 0.000000e+00 0.00 1.073994e+07 1.073994e+07 0.00 NULL
2016 Community College (Laguardia) Senior College Lab Tech 61124.83333 7.334980e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.334980e+05 7.334980e+05 0.00 NULL
2016 Community College (Laguardia) Senior Vice President 181000.00000 1.810000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.810000e+05 1.810000e+05 0.00 NULL
2016 Community College (Laguardia) Sign Language Interpreter 26826.71912 4.560542e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 4.560542e+05 4.560542e+05 0.00 NULL
2016 Community College (Laguardia) Sr College Laboratory Tech 2336.18000 4.672360e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.672360e+03 4.672360e+03 0.00 NULL
2016 Community College (Laguardia) Staff Nurse 78003.00000 7.800300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.800300e+04 7.800300e+04 0.00 NULL
2016 Community College (Laguardia) Supervisor Of Stock Workers 36323.00000 3.632300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.632300e+04 3.632300e+04 0.00 NULL
2016 Community College (Laguardia) University Assistant Architect 51815.33333 1.554460e+05 3130.98 1.043660e+03 1261.510 93.75 3 1.043660e+03 3130.98 1.585770e+05 1.585770e+05 0.00 NULL
2016 Community College (Laguardia) University Assistant Engineer 59246.00000 1.184920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.184920e+05 1.184920e+05 0.00 NULL
2016 Community College (Laguardia) Vice President 166346.80000 8.317340e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.317340e+05 8.317340e+05 0.00 NULL
2016 Community College (Manhattan) ?Assistant Purchasing Agent 35796.00000 1.431840e+05 290.52 7.263000e+01 83.160 10.50 4 7.263000e+01 290.52 1.434745e+05 1.434745e+05 0.00 NULL
2016 Community College (Manhattan) ?Purchasing Agent 50830.50000 1.016610e+05 1110.94 5.554700e+02 555.470 50.75 2 5.554700e+02 1110.94 1.027719e+05 1.027719e+05 0.00 NULL
2016 Community College (Manhattan) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 289 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Manhattan) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Manhattan) Adjunct College Lab Tech 6230.79842 5.109255e+05 0.00 0.000000e+00 0.000 0.00 82 0.000000e+00 0.00 5.109255e+05 5.109255e+05 0.00 NULL
2016 Community College (Manhattan) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 1231 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Manhattan) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Manhattan) Adjunct Senior College Lab Tech 4540.06212 1.498220e+05 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 1.498220e+05 1.498220e+05 0.00 NULL
2016 Community College (Manhattan) Administrator 122000.00000 1.220000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.220000e+05 1.220000e+05 0.00 NULL
2016 Community College (Manhattan) Administrator Supt Campus B/G 94886.00000 3.795440e+05 4143.53 1.035882e+03 0.000 0.00 4 0.000000e+00 0.00 3.836875e+05 3.795440e+05 4143.53 NULL
2016 Community College (Manhattan) Assistant Administrator 119500.00000 2.390000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.390000e+05 2.390000e+05 0.00 NULL
2016 Community College (Manhattan) Assistant College Security Director 63503.33333 1.905100e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.905100e+05 1.905100e+05 0.00 NULL
2016 Community College (Manhattan) Assistant Dean 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2016 Community College (Manhattan) Assistant Principal Custodial Supervisor 39399.00000 7.879800e+04 23093.70 1.154685e+04 11546.850 724.83 2 1.154685e+04 23093.70 1.018917e+05 1.018917e+05 0.00 NULL
2016 Community College (Manhattan) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 363 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Manhattan) Assistant To Heo 46547.84444 4.189306e+06 14589.29 1.621032e+02 0.000 333.75 90 0.000000e+00 0.00 4.203895e+06 4.189306e+06 14589.29 NULL
2016 Community College (Manhattan) Assistant Vice President 134140.00000 1.341400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.341400e+05 1.341400e+05 0.00 NULL
2016 Community College (Manhattan) Associate Administrator 123000.00000 2.460000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.460000e+05 2.460000e+05 0.00 NULL
2016 Community College (Manhattan) Associate Dean 142390.50000 2.847810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.847810e+05 2.847810e+05 0.00 NULL
2016 Community College (Manhattan) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 161 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Manhattan) Campus Peace Officer 39007.59459 1.443281e+06 225260.67 6.088126e+03 5423.350 8283.15 37 5.423350e+03 200663.95 1.668542e+06 1.643945e+06 24596.72 NULL
2016 Community College (Manhattan) Campus Public Safety Sergeant 50147.00000 7.020580e+05 51965.36 3.711811e+03 3427.810 1566.83 14 3.427810e+03 47989.34 7.540234e+05 7.500473e+05 3976.02 NULL
2016 Community College (Manhattan) Campus Security Assistant 28787.00251 1.237841e+06 222368.35 5.171357e+03 4452.570 11090.42 43 4.452570e+03 191460.51 1.460209e+06 1.429302e+06 30907.84 NULL
2016 Community College (Manhattan) Carpenter NA NA 85543.51 7.776683e+03 8138.800 627.50 11 7.776683e+03 85543.51 NA NA NA NULL
2016 Community College (Manhattan) Chief Administrator Supt Campus B/G 140902.00000 1.409020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.409020e+05 1.409020e+05 0.00 NULL
2016 Community College (Manhattan) City Laborer NA NA 50378.77 7.196967e+03 8123.610 1424.25 7 7.196967e+03 50378.77 NA NA NA NULL
2016 Community College (Manhattan) College Accountant 42147.00000 4.214700e+04 224.56 2.245600e+02 224.560 0.50 1 2.245600e+02 224.56 4.237156e+04 4.237156e+04 0.00 NULL
2016 Community College (Manhattan) College Accounting Assistant 39773.53846 5.170560e+05 7038.62 5.414323e+02 0.000 260.75 13 0.000000e+00 0.00 5.240946e+05 5.170560e+05 7038.62 NULL
2016 Community College (Manhattan) College Assistant 4694.55070 4.614743e+06 105079.66 1.068969e+02 0.000 9874.09 983 0.000000e+00 0.00 4.719823e+06 4.614743e+06 105079.66 NULL
2016 Community College (Manhattan) College Graph Designer 46914.00000 4.691400e+04 1672.33 1.672330e+03 1672.330 68.00 1 1.672330e+03 1672.33 4.858633e+04 4.858633e+04 0.00 NULL
2016 Community College (Manhattan) College Lab Technician 46750.93333 1.122022e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 1.122022e+06 1.122022e+06 0.00 NULL
2016 Community College (Manhattan) College Print Shop Assistant 25936.00000 1.556160e+05 2188.38 3.647300e+02 370.710 143.25 6 3.647300e+02 2188.38 1.578044e+05 1.578044e+05 0.00 NULL
2016 Community College (Manhattan) College Print Shop Coordinator 53842.00000 5.384200e+04 3128.97 3.128970e+03 3128.970 108.75 1 3.128970e+03 3128.97 5.697097e+04 5.697097e+04 0.00 NULL
2016 Community College (Manhattan) College Security Director 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2016 Community College (Manhattan) College Security Specialist 60648.00000 6.064800e+04 15724.71 1.572471e+04 15724.710 380.83 1 1.572471e+04 15724.71 7.637271e+04 7.637271e+04 0.00 NULL
2016 Community College (Manhattan) Computer Operator Manager 129650.00000 1.296500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.296500e+05 1.296500e+05 0.00 NULL
2016 Community College (Manhattan) Computer Systems Manager 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2016 Community College (Manhattan) Continuing Education Teacher NA NA 0.00 0.000000e+00 0.000 0.00 171 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Manhattan) Cuny Administrator Assistant 48656.80000 4.865680e+05 2093.22 2.093220e+02 0.000 77.50 10 0.000000e+00 0.00 4.886612e+05 4.865680e+05 2093.22 NULL
2016 Community College (Manhattan) Cuny Broadcast Associate 53020.00000 5.302000e+04 72.55 7.255000e+01 72.550 2.50 1 7.255000e+01 72.55 5.309255e+04 5.309255e+04 0.00 NULL
2016 Community College (Manhattan) Cuny Office Assistant 32770.78161 2.851058e+06 23821.77 2.738134e+02 0.000 1176.25 87 0.000000e+00 0.00 2.874880e+06 2.851058e+06 23821.77 NULL
2016 Community College (Manhattan) Custodial Assistant 23939.12737 2.920574e+06 241602.03 1.980345e+03 784.265 12166.25 122 7.842650e+02 95680.33 3.162176e+06 3.016254e+06 145921.70 NULL
2016 Community College (Manhattan) Custodial Supervisor 32112.66667 2.890140e+05 55328.30 6.147589e+03 6556.280 2314.91 9 6.147589e+03 55328.30 3.443423e+05 3.443423e+05 0.00 NULL
2016 Community College (Manhattan) Dean 149540.60000 7.477030e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.477030e+05 7.477030e+05 0.00 NULL
2016 Community College (Manhattan) Disability Accommodations Specialist 39407.00000 3.940700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.940700e+04 3.940700e+04 0.00 NULL
2016 Community College (Manhattan) Electrician NA NA 49671.90 8.278650e+03 5597.305 740.75 6 5.597305e+03 33583.83 NA NA NA NULL
2016 Community College (Manhattan) Electrician’s Helper NA NA 26287.35 8.762450e+03 8606.970 601.25 3 8.606970e+03 25820.91 NA NA NA NULL
2016 Community College (Manhattan) Eoc Accountant 37317.00000 7.463400e+04 377.86 1.889300e+02 188.930 18.50 2 1.889300e+02 377.86 7.501186e+04 7.501186e+04 0.00 NULL
2016 Community College (Manhattan) Eoc Adjunct College Lab Tech 8812.34250 8.812343e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.812343e+03 8.812343e+03 0.00 NULL
2016 Community College (Manhattan) Eoc Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 47 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Manhattan) Eoc Administrative Assistant 45507.00000 4.550700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.550700e+04 4.550700e+04 0.00 NULL
2016 Community College (Manhattan) Eoc Assistant 371.00000 3.710000e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.710000e+02 3.710000e+02 0.00 NULL
2016 Community College (Manhattan) Eoc Assistant To Heo 55454.28571 3.881800e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.881800e+05 3.881800e+05 0.00 NULL
2016 Community College (Manhattan) Eoc College Lab Technician 49798.50000 9.959700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.959700e+04 9.959700e+04 0.00 NULL
2016 Community College (Manhattan) Eoc Higher Education Assistant 75049.25000 3.001970e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.001970e+05 3.001970e+05 0.00 NULL
2016 Community College (Manhattan) Eoc Higher Education Associate 79833.66667 2.395010e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.395010e+05 2.395010e+05 0.00 NULL
2016 Community College (Manhattan) Eoc Higher Education Officer 97244.50000 1.944890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.944890e+05 1.944890e+05 0.00 NULL
2016 Community College (Manhattan) Eoc Lecturer 69870.22727 7.685725e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.685725e+05 7.685725e+05 0.00 NULL
2016 Community College (Manhattan) Eoc Lecturer/ Doctral Schedule 75542.50000 1.510850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.510850e+05 1.510850e+05 0.00 NULL
2016 Community College (Manhattan) Eoc Mail/Message Services Worker 29882.50000 5.976500e+04 31.06 1.553000e+01 15.530 2.00 2 1.553000e+01 31.06 5.979606e+04 5.979606e+04 0.00 NULL
2016 Community College (Manhattan) Eoc Office Assistant 32790.07692 4.262710e+05 1204.36 9.264308e+01 34.480 67.25 13 3.448000e+01 448.24 4.274754e+05 4.267192e+05 756.12 NULL
2016 Community College (Manhattan) Facilities Coordinator 53938.00000 5.393800e+04 1435.52 1.435520e+03 1435.520 39.50 1 1.435520e+03 1435.52 5.537352e+04 5.537352e+04 0.00 NULL
2016 Community College (Manhattan) Higher Education Assistant 62122.28814 7.330430e+06 4048.49 3.430924e+01 0.000 67.50 118 0.000000e+00 0.00 7.334478e+06 7.330430e+06 4048.49 NULL
2016 Community College (Manhattan) Higher Education Associate 80417.70000 4.825062e+06 918.27 1.530450e+01 0.000 15.50 60 0.000000e+00 0.00 4.825980e+06 4.825062e+06 918.27 NULL
2016 Community College (Manhattan) Higher Education Officer 107166.72500 4.286669e+06 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 4.286669e+06 4.286669e+06 0.00 NULL
2016 Community College (Manhattan) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 66 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Manhattan) It Assistant 48896.93636 1.075733e+06 2256.46 1.025664e+02 0.000 65.50 22 0.000000e+00 0.00 1.077989e+06 1.075733e+06 2256.46 NULL
2016 Community College (Manhattan) It Associate 61402.25000 2.456090e+05 572.92 1.432300e+02 17.100 16.75 4 1.710000e+01 68.40 2.461819e+05 2.456774e+05 504.52 NULL
2016 Community College (Manhattan) It Senior Associate 83015.85714 5.811110e+05 706.00 1.008571e+02 0.000 4.00 7 0.000000e+00 0.00 5.818170e+05 5.811110e+05 706.00 NULL
2016 Community College (Manhattan) It Support Assistant 28847.28970 8.654187e+05 1313.70 4.379000e+01 0.000 53.75 30 0.000000e+00 0.00 8.667324e+05 8.654187e+05 1313.70 NULL
2016 Community College (Manhattan) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 108 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Manhattan) Lecturer/Doctoral Schedule 69838.00000 6.983800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.983800e+04 6.983800e+04 0.00 NULL
2016 Community College (Manhattan) Locksmith NA NA 4212.51 2.106255e+03 2106.255 90.75 2 2.106255e+03 4212.51 NA NA NA NULL
2016 Community College (Manhattan) Mail/Message Services Worker 31957.40000 1.597870e+05 442.06 8.841200e+01 0.000 12.25 5 0.000000e+00 0.00 1.602291e+05 1.597870e+05 442.06 NULL
2016 Community College (Manhattan) Maintenance Worker NA NA 24183.12 4.030520e+03 4430.790 621.25 6 4.030520e+03 24183.12 NA NA NA NULL
2016 Community College (Manhattan) Non-Teaching Adjunct I NA NA 0.00 0.000000e+00 0.000 0.00 112 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Manhattan) Non-Teaching Adjunct Ii NA NA 0.00 0.000000e+00 0.000 0.00 156 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Manhattan) Non-Teaching Adjunct Iii 1068.22807 1.303238e+05 0.00 0.000000e+00 0.000 0.00 122 0.000000e+00 0.00 1.303238e+05 1.303238e+05 0.00 NULL
2016 Community College (Manhattan) Non-Teaching Adjunct Iv 2103.26786 5.889150e+04 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 5.889150e+04 5.889150e+04 0.00 NULL
2016 Community College (Manhattan) Non-Teaching Adjunct V 4926.27220 1.231568e+05 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.231568e+05 1.231568e+05 0.00 NULL
2016 Community College (Manhattan) Oiler NA NA 169874.20 1.132495e+04 12692.880 2441.50 15 1.132495e+04 169874.20 NA NA NA NULL
2016 Community College (Manhattan) Painter NA NA 19690.79 3.938158e+03 3923.700 438.50 5 3.923700e+03 19618.50 NA NA NA NULL
2016 Community College (Manhattan) Plumber NA NA 88425.82 2.947527e+04 35413.100 539.25 3 2.947527e+04 88425.82 NA NA NA NULL
2016 Community College (Manhattan) Plumber’s Helper NA NA 23664.46 5.916115e+03 3045.105 212.50 4 3.045105e+03 12180.42 NA NA NA NULL
2016 Community College (Manhattan) President 222251.00000 2.222510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.222510e+05 2.222510e+05 0.00 NULL
2016 Community College (Manhattan) Principal Custodial Supervisor 51727.50000 1.034550e+05 10834.38 5.417190e+03 5417.190 258.25 2 5.417190e+03 10834.38 1.142894e+05 1.142894e+05 0.00 NULL
2016 Community College (Manhattan) Professor NA NA 0.00 0.000000e+00 0.000 0.00 170 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Manhattan) Project Manager 54079.00000 5.407900e+04 610.50 6.105000e+02 610.500 18.50 1 6.105000e+02 610.50 5.468950e+04 5.468950e+04 0.00 NULL
2016 Community College (Manhattan) Research Assistant 47841.00000 4.784100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.784100e+04 4.784100e+04 0.00 NULL
2016 Community College (Manhattan) Senior College Lab Tech 62900.50000 8.806070e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 8.806070e+05 8.806070e+05 0.00 NULL
2016 Community College (Manhattan) Senior Custodial Supervisor 33052.00000 6.610400e+04 12563.94 6.281970e+03 6281.970 557.92 2 6.281970e+03 12563.94 7.866794e+04 7.866794e+04 0.00 NULL
2016 Community College (Manhattan) Senior Stationary Engineer NA NA 76257.83 2.541928e+04 12869.010 942.50 3 1.286901e+04 38607.03 NA NA NA NULL
2016 Community College (Manhattan) Senior Vice President 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2016 Community College (Manhattan) Sign Language Interpreter 18692.46250 7.476985e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.476985e+04 7.476985e+04 0.00 NULL
2016 Community College (Manhattan) Staff Nurse 84744.00000 8.474400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.474400e+04 8.474400e+04 0.00 NULL
2016 Community College (Manhattan) Stationary Engineer NA NA 131003.45 1.310034e+04 12683.890 1767.25 10 1.268389e+04 126838.90 NA NA NA NULL
2016 Community College (Manhattan) Stock Worker 30551.00000 9.165300e+04 844.45 2.814833e+02 100.330 40.75 3 1.003300e+02 300.99 9.249745e+04 9.195399e+04 543.46 NULL
2016 Community College (Manhattan) Supervisor Of Stock Workers 42624.00000 4.262400e+04 1668.13 1.668130e+03 1668.130 60.00 1 1.668130e+03 1668.13 4.429213e+04 4.429213e+04 0.00 NULL
2016 Community College (Manhattan) Thermostat Repairer NA NA 26340.18 1.317009e+04 13170.090 305.50 2 1.317009e+04 26340.18 NA NA NA NULL
2016 Community College (Manhattan) Vice President 179079.00000 8.953950e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.953950e+05 8.953950e+05 0.00 NULL
2016 Community College (Queensboro) ?Assistant Purchasing Agent 37981.00000 3.798100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.798100e+04 3.798100e+04 0.00 NULL
2016 Community College (Queensboro) ?Purchasing Agent 50542.00000 5.054200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.054200e+04 5.054200e+04 0.00 NULL
2016 Community College (Queensboro) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 115 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Queensboro) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Queensboro) Adjunct College Lab Tech 7701.12489 6.545956e+05 0.00 0.000000e+00 0.000 0.00 85 0.000000e+00 0.00 6.545956e+05 6.545956e+05 0.00 NULL
2016 Community College (Queensboro) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 490 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Queensboro) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Queensboro) Adjunct Senior College Lab Tech 7080.86687 5.664693e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.664693e+04 5.664693e+04 0.00 NULL
2016 Community College (Queensboro) Administrator 134236.00000 1.342360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.342360e+05 1.342360e+05 0.00 NULL
2016 Community College (Queensboro) Administrator Supt Campus B/G 85267.39000 2.558022e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.558022e+05 2.558022e+05 0.00 NULL
2016 Community College (Queensboro) Assistant Administrator 119397.50000 4.775900e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.775900e+05 4.775900e+05 0.00 NULL
2016 Community College (Queensboro) Assistant College Security Director 80941.50000 1.618830e+05 120.66 6.033000e+01 60.330 0.00 2 6.033000e+01 120.66 1.620037e+05 1.620037e+05 0.00 NULL
2016 Community College (Queensboro) Assistant Dean 115333.33333 3.460000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.460000e+05 3.460000e+05 0.00 NULL
2016 Community College (Queensboro) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 279 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Queensboro) Assistant To Heo 42876.52632 2.443962e+06 0.00 0.000000e+00 0.000 0.00 57 0.000000e+00 0.00 2.443962e+06 2.443962e+06 0.00 NULL
2016 Community College (Queensboro) Associate Administrator 137390.50000 2.747810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.747810e+05 2.747810e+05 0.00 NULL
2016 Community College (Queensboro) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 164 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Queensboro) Auto Mechanic NA NA 441.93 4.419300e+02 441.930 3.50 1 4.419300e+02 441.93 NA NA NA NULL
2016 Community College (Queensboro) Campus Peace Officer 38316.06897 1.111166e+06 134840.00 4.649655e+03 4400.490 4911.83 29 4.400490e+03 127614.21 1.246006e+06 1.238780e+06 7225.79 NULL
2016 Community College (Queensboro) Campus Public Safety Sergeant 50147.00000 4.513230e+05 47248.65 5.249850e+03 5656.840 1338.75 9 5.249850e+03 47248.65 4.985717e+05 4.985717e+05 0.00 NULL
2016 Community College (Queensboro) Campus Security Assistant 26455.60000 5.291120e+05 38527.05 1.926352e+03 1094.040 2149.13 20 1.094040e+03 21880.80 5.676391e+05 5.509928e+05 16646.25 NULL
2016 Community College (Queensboro) Carpenter NA NA 131820.65 2.636413e+04 13277.590 1149.00 5 1.327759e+04 66387.95 NA NA NA NULL
2016 Community College (Queensboro) Chief Administrative Supt Campus B/G 130388.00000 1.303880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.303880e+05 1.303880e+05 0.00 NULL
2016 Community College (Queensboro) Chief College Lab Technician 38307.99350 3.830799e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 3.830799e+05 3.830799e+05 0.00 NULL
2016 Community College (Queensboro) City Laborer NA NA 205038.65 2.929124e+04 29302.380 4001.75 7 2.929124e+04 205038.65 NA NA NA NULL
2016 Community College (Queensboro) College Accountant 53937.25000 2.157490e+05 1540.16 3.850400e+02 367.345 60.50 4 3.673450e+02 1469.38 2.172892e+05 2.172184e+05 70.78 NULL
2016 Community College (Queensboro) College Accounting Assistant 39696.00000 7.939200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.939200e+04 7.939200e+04 0.00 NULL
2016 Community College (Queensboro) College Assistant 4950.53354 3.935674e+06 0.00 0.000000e+00 0.000 0.00 795 0.000000e+00 0.00 3.935674e+06 3.935674e+06 0.00 NULL
2016 Community College (Queensboro) College Graph Designer 53952.00000 5.395200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.395200e+04 5.395200e+04 0.00 NULL
2016 Community College (Queensboro) College Lab Technician 43776.64160 1.094416e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.094416e+06 1.094416e+06 0.00 NULL
2016 Community College (Queensboro) College Print Shop Assistant 32872.00000 3.287200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.287200e+04 3.287200e+04 0.00 NULL
2016 Community College (Queensboro) College Print Shop Associate 38553.50000 7.710700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.710700e+04 7.710700e+04 0.00 NULL
2016 Community College (Queensboro) College Print Shop Coordinator 53842.00000 5.384200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.384200e+04 5.384200e+04 0.00 NULL
2016 Community College (Queensboro) College Security Director 103000.00000 1.030000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030000e+05 1.030000e+05 0.00 NULL
2016 Community College (Queensboro) Computer Systems Manager 118500.00000 2.370000e+05 23075.62 1.153781e+04 11537.810 328.50 2 1.153781e+04 23075.62 2.600756e+05 2.600756e+05 0.00 NULL
2016 Community College (Queensboro) Continuing Education Teacher 8126.24808 1.771522e+06 0.00 0.000000e+00 0.000 0.00 218 0.000000e+00 0.00 1.771522e+06 1.771522e+06 0.00 NULL
2016 Community College (Queensboro) Cuny Administrator Assistant 47303.22581 1.466400e+06 1064.20 3.432903e+01 0.000 48.50 31 0.000000e+00 0.00 1.467464e+06 1.466400e+06 1064.20 NULL
2016 Community College (Queensboro) Cuny Broadcast Associate 45788.00000 4.578800e+04 1246.85 1.246850e+03 1246.850 48.50 1 1.246850e+03 1246.85 4.703485e+04 4.703485e+04 0.00 NULL
2016 Community College (Queensboro) Cuny Office Assistant 33382.02740 2.436888e+06 2036.47 2.789685e+01 0.000 101.50 73 0.000000e+00 0.00 2.438924e+06 2.436888e+06 2036.47 NULL
2016 Community College (Queensboro) Custodial Assistant 27697.71445 1.578770e+06 355352.53 6.234255e+03 1872.640 16283.25 57 1.872640e+03 106740.48 1.934122e+06 1.685510e+06 248612.05 NULL
2016 Community College (Queensboro) Custodial Supervisor 31277.33333 2.814960e+05 27863.34 3.095927e+03 2558.570 1186.67 9 2.558570e+03 23027.13 3.093593e+05 3.045231e+05 4836.21 NULL
2016 Community College (Queensboro) Dean 131250.00000 5.250000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.250000e+05 5.250000e+05 0.00 NULL
2016 Community College (Queensboro) Disability Accommodations Specialist 21685.00214 1.517950e+05 27.91 3.987143e+00 0.000 1.00 7 0.000000e+00 0.00 1.518229e+05 1.517950e+05 27.91 NULL
2016 Community College (Queensboro) Electrician NA NA 89492.39 1.118655e+04 4661.130 1171.25 8 4.661130e+03 37289.04 NA NA NA NULL
2016 Community College (Queensboro) Facilities Coordinator 53938.00000 5.393800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.393800e+04 5.393800e+04 0.00 NULL
2016 Community College (Queensboro) High Pressure Plant Tender NA NA 93147.29 9.314729e+03 4734.960 1798.25 10 4.734960e+03 47349.60 NA NA NA NULL
2016 Community College (Queensboro) Higher Education Assistant 62863.06667 4.714730e+06 0.00 0.000000e+00 0.000 0.00 75 0.000000e+00 0.00 4.714730e+06 4.714730e+06 0.00 NULL
2016 Community College (Queensboro) Higher Education Associate 82653.92157 4.215350e+06 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 4.215350e+06 4.215350e+06 0.00 NULL
2016 Community College (Queensboro) Higher Education Officer 104984.77273 4.619330e+06 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 4.619330e+06 4.619330e+06 0.00 NULL
2016 Community College (Queensboro) Higher Education Officer/Asst Administrator 124034.00000 1.240340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.240340e+05 1.240340e+05 0.00 NULL
2016 Community College (Queensboro) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Queensboro) It Assistant 52776.00000 5.277600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.277600e+04 5.277600e+04 0.00 NULL
2016 Community College (Queensboro) It Associate 61532.00000 4.307240e+05 338.97 4.842429e+01 0.000 7.00 7 0.000000e+00 0.00 4.310630e+05 4.307240e+05 338.97 NULL
2016 Community College (Queensboro) It Senior Associate 88572.54545 9.742980e+05 38172.20 3.470200e+03 1532.770 688.50 11 1.532770e+03 16860.47 1.012470e+06 9.911585e+05 21311.73 NULL
2016 Community College (Queensboro) It Support Assistant 16150.39750 2.422560e+05 1855.28 1.236853e+02 0.000 67.50 15 0.000000e+00 0.00 2.441112e+05 2.422560e+05 1855.28 NULL
2016 Community College (Queensboro) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 165 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Queensboro) Lecturer/Doctoral Schedule 70500.33333 2.115010e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.115010e+05 2.115010e+05 0.00 NULL
2016 Community College (Queensboro) Locksmith NA NA 3071.14 3.071140e+03 3071.140 66.50 1 3.071140e+03 3071.14 NA NA NA NULL
2016 Community College (Queensboro) Mail/Message Services Worker 33374.00000 1.001220e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.001220e+05 1.001220e+05 0.00 NULL
2016 Community College (Queensboro) Maintenance Worker NA NA 67175.86 8.396983e+03 6226.345 1659.25 8 6.226345e+03 49810.76 NA NA NA NULL
2016 Community College (Queensboro) Motor Vehicle Operator 40652.00000 8.130400e+04 7447.24 3.723620e+03 3723.620 248.50 2 3.723620e+03 7447.24 8.875124e+04 8.875124e+04 0.00 NULL
2016 Community College (Queensboro) Non-Teaching Adjunct I 6789.91278 8.962685e+05 0.00 0.000000e+00 0.000 0.00 132 0.000000e+00 0.00 8.962685e+05 8.962685e+05 0.00 NULL
2016 Community College (Queensboro) Non-Teaching Adjunct Iii 6021.20571 8.429688e+04 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 8.429688e+04 8.429688e+04 0.00 NULL
2016 Community College (Queensboro) Non-Teaching Adjunct Iv 2227.05000 8.908200e+03 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.908200e+03 8.908200e+03 0.00 NULL
2016 Community College (Queensboro) Non-Teaching Adjunct V 875.82000 1.751640e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.751640e+03 1.751640e+03 0.00 NULL
2016 Community College (Queensboro) Oiler NA NA 6312.48 2.104160e+03 554.880 86.00 3 5.548800e+02 1664.64 NA NA NA NULL
2016 Community College (Queensboro) Painter NA NA 47998.13 2.399906e+04 23999.065 865.75 2 2.399906e+04 47998.13 NA NA NA NULL
2016 Community College (Queensboro) Plasterer NA NA 33925.35 3.392535e+04 33925.350 448.00 1 3.392535e+04 33925.35 NA NA NA NULL
2016 Community College (Queensboro) Plumber NA NA 29059.95 2.905995e+04 29059.950 210.00 1 2.905995e+04 29059.95 NA NA NA NULL
2016 Community College (Queensboro) President 215000.00000 2.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.150000e+05 2.150000e+05 0.00 NULL
2016 Community College (Queensboro) Professor NA NA 0.00 0.000000e+00 0.000 0.00 120 0.000000e+00 0.00 NA NA NA NULL
2016 Community College (Queensboro) Senior College Lab Tech 61083.95652 1.404931e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 1.404931e+06 1.404931e+06 0.00 NULL
2016 Community College (Queensboro) Senior Custodial Supervisor 35119.50000 7.023900e+04 51313.79 2.565690e+04 25656.895 1987.00 2 2.565690e+04 51313.79 1.215528e+05 1.215528e+05 0.00 NULL
2016 Community College (Queensboro) Senior Stationary Engineer NA NA 12868.82 1.286882e+04 12868.820 161.50 1 1.286882e+04 12868.82 NA NA NA NULL
2016 Community College (Queensboro) Senior Vice President 198000.00000 1.980000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.980000e+05 1.980000e+05 0.00 NULL
2016 Community College (Queensboro) Sr College Laboratory Tech 5359.50611 4.823556e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.823556e+04 4.823556e+04 0.00 NULL
2016 Community College (Queensboro) Staff Nurse 63839.49000 1.276790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.276790e+05 1.276790e+05 0.00 NULL
2016 Community College (Queensboro) Stationary Engineer NA NA 183453.80 2.620769e+04 30312.160 2332.00 7 2.620769e+04 183453.80 NA NA NA NULL
2016 Community College (Queensboro) Steam Fitter NA NA 1316.80 1.316800e+03 1316.800 0.00 1 1.316800e+03 1316.80 NA NA NA NULL
2016 Community College (Queensboro) Stock Worker 30551.00000 3.055100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.055100e+04 3.055100e+04 0.00 NULL
2016 Community College (Queensboro) Supervisor Of Stock Workers 51429.00000 5.142900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.142900e+04 5.142900e+04 0.00 NULL
2016 Community College (Queensboro) Thermostat Repairer NA NA 56851.99 5.685199e+04 56851.990 424.50 1 5.685199e+04 56851.99 NA NA NA NULL
2016 Community College (Queensboro) University Architect 66136.00000 6.613600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.613600e+04 6.613600e+04 0.00 NULL
2016 Community College (Queensboro) University Engineer 87784.00000 8.778400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.778400e+04 8.778400e+04 0.00 NULL
2016 Community College (Queensboro) Vice President 166000.00000 9.960000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.960000e+05 9.960000e+05 0.00 NULL
2016 Community College (Queensboro) NA 54478.00000 1.089560e+05 32324.17 1.616208e+04 16162.085 824.25 2 1.616208e+04 32324.17 1.412802e+05 1.412802e+05 0.00 NULL
2016 Conflicts Of Interest Board Agency Attorney 72050.75000 2.882030e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.882030e+05 2.882030e+05 0.00 NULL
2016 Conflicts Of Interest Board Agency Chief Contracting Officer 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2016 Conflicts Of Interest Board Community Associate 48500.00000 9.700000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.700000e+04 9.700000e+04 0.00 NULL
2016 Conflicts Of Interest Board Community Coordinator 57614.50000 1.152290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.152290e+05 1.152290e+05 0.00 NULL
2016 Conflicts Of Interest Board Computer Operations Manager 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2016 Conflicts Of Interest Board Confidential Investigator 66858.50000 1.337170e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.337170e+05 1.337170e+05 0.00 NULL
2016 Conflicts Of Interest Board Counsel 202207.00000 4.044140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.044140e+05 4.044140e+05 0.00 NULL
2016 Conflicts Of Interest Board Executive Agency Counsel 143078.00000 7.153900e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.153900e+05 7.153900e+05 0.00 NULL
2016 Conflicts Of Interest Board It Service Management Specialist 101103.50000 2.022070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.022070e+05 2.022070e+05 0.00 NULL
2016 Conflicts Of Interest Board Principal Administrative Associate 55419.00000 1.108380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.108380e+05 1.108380e+05 0.00 NULL
2016 Conflicts Of Interest Board Secretary To Conflicts Of Interest Board 55000.00000 5.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.500000e+04 5.500000e+04 0.00 NULL
2016 Consumer Affairs Adm Manager-Non-Mgrl 88670.00000 1.773400e+05 43.64 2.182000e+01 21.820 0.00 2 2.182000e+01 43.64 1.773836e+05 1.773836e+05 0.00 NULL
2016 Consumer Affairs Admin Contract Specialist 94393.20000 4.719660e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.719660e+05 4.719660e+05 0.00 NULL
2016 Consumer Affairs Administrative Director Of Social Services 107625.00000 2.152500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.152500e+05 2.152500e+05 0.00 NULL
2016 Consumer Affairs Administrative Labor Relations Analyst 112750.00000 1.127500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.127500e+05 1.127500e+05 0.00 NULL
2016 Consumer Affairs Administrative Procurement Analyst 83738.00000 8.373800e+04 7.99 7.990000e+00 7.990 0.00 1 7.990000e+00 7.99 8.374599e+04 8.374599e+04 0.00 NULL
2016 Consumer Affairs Administrative Public Information Specialist 104003.16667 6.240190e+05 649.21 1.082017e+02 0.000 1.00 6 0.000000e+00 0.00 6.246682e+05 6.240190e+05 649.21 NULL
2016 Consumer Affairs Administrative Staff Analyst 81121.23529 1.379061e+06 2477.51 1.457359e+02 27.350 46.25 17 2.735000e+01 464.95 1.381539e+06 1.379526e+06 2012.56 NULL
2016 Consumer Affairs Agency Attorney 77809.96154 2.023059e+06 11436.47 4.398642e+02 0.000 237.25 26 0.000000e+00 0.00 2.034495e+06 2.023059e+06 11436.47 NULL
2016 Consumer Affairs Agency Attorney Interne 62128.00000 1.242560e+05 8400.49 4.200245e+03 4200.245 206.75 2 4.200245e+03 8400.49 1.326565e+05 1.326565e+05 0.00 NULL
2016 Consumer Affairs Assistant To The Commissioner 99470.00000 9.947000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.947000e+04 9.947000e+04 0.00 NULL
2016 Consumer Affairs Associate Inspector 69915.41176 1.188562e+06 1752.00 1.030588e+02 0.000 45.50 17 0.000000e+00 0.00 1.190314e+06 1.188562e+06 1752.00 NULL
2016 Consumer Affairs Attorney At Law 94557.00000 1.891140e+05 238.90 1.194500e+02 119.450 0.00 2 1.194500e+02 238.90 1.893529e+05 1.893529e+05 0.00 NULL
2016 Consumer Affairs Cashier 39802.00000 3.980200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.980200e+04 3.980200e+04 0.00 NULL
2016 Consumer Affairs City Research Scientist 70000.00000 7.000000e+04 292.14 2.921400e+02 292.140 6.25 1 2.921400e+02 292.14 7.029214e+04 7.029214e+04 0.00 NULL
2016 Consumer Affairs Clerical Associate 41405.04545 9.109110e+05 9389.91 4.268141e+02 0.000 318.50 22 0.000000e+00 0.00 9.203009e+05 9.109110e+05 9389.91 NULL
2016 Consumer Affairs Commissioner 205868.00000 2.058680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.058680e+05 2.058680e+05 0.00 NULL
2016 Consumer Affairs Community Assistant 31618.00000 2.213260e+05 14016.14 2.002306e+03 0.000 500.00 7 0.000000e+00 0.00 2.353421e+05 2.213260e+05 14016.14 NULL
2016 Consumer Affairs Community Associate 42367.16667 6.609278e+06 97222.03 6.232181e+02 43.790 3644.00 156 4.379000e+01 6831.24 6.706500e+06 6.616109e+06 90390.79 NULL
2016 Consumer Affairs Community Coordinator 60549.59740 4.662319e+06 45795.36 5.947449e+02 0.000 1224.00 77 0.000000e+00 0.00 4.708114e+06 4.662319e+06 45795.36 NULL
2016 Consumer Affairs Computer Associate 70453.77778 6.340840e+05 4344.37 4.827078e+02 130.520 92.00 9 1.305200e+02 1174.68 6.384284e+05 6.352587e+05 3169.69 NULL
2016 Consumer Affairs Computer Programmer Analyst 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2016 Consumer Affairs Computer Specialist 101470.60000 1.014706e+06 6224.65 6.224650e+02 0.000 159.75 10 0.000000e+00 0.00 1.020931e+06 1.014706e+06 6224.65 NULL
2016 Consumer Affairs Computer Systems Manager 110082.16667 6.604930e+05 2056.87 3.428117e+02 0.000 27.50 6 0.000000e+00 0.00 6.625499e+05 6.604930e+05 2056.87 NULL
2016 Consumer Affairs Counsel 180112.50000 3.602250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.602250e+05 3.602250e+05 0.00 NULL
2016 Consumer Affairs Customer Information Representative 35000.00000 3.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.500000e+04 3.500000e+04 0.00 NULL
2016 Consumer Affairs Deputy Commissioner 162440.66667 4.873220e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.873220e+05 4.873220e+05 0.00 NULL
2016 Consumer Affairs Director Of Consumer Information 134000.00000 1.340000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.340000e+05 1.340000e+05 0.00 NULL
2016 Consumer Affairs Executive Agency Counsel 116992.83333 1.403914e+06 693.47 5.778917e+01 0.000 0.00 12 0.000000e+00 0.00 1.404607e+06 1.403914e+06 693.47 NULL
2016 Consumer Affairs Executive Assistant To The Commissioner 112750.00000 1.127500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.127500e+05 1.127500e+05 0.00 NULL
2016 Consumer Affairs General Inspector 58103.00000 5.810300e+04 393.83 3.938300e+02 393.830 8.50 1 3.938300e+02 393.83 5.849683e+04 5.849683e+04 0.00 NULL
2016 Consumer Affairs Graphic Artist 53103.50000 1.062070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.062070e+05 1.062070e+05 0.00 NULL
2016 Consumer Affairs Inspector 46814.18182 2.574780e+06 39603.06 7.200556e+02 0.000 1291.00 55 0.000000e+00 0.00 2.614383e+06 2.574780e+06 39603.06 NULL
2016 Consumer Affairs Paralegal Aide 49494.50000 9.898900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.898900e+04 9.898900e+04 0.00 NULL
2016 Consumer Affairs Principal Administrative Associate 57714.66667 3.462880e+05 19121.68 3.186947e+03 32.760 513.50 6 3.276000e+01 196.56 3.654097e+05 3.464846e+05 18925.12 NULL
2016 Consumer Affairs Secretary 39628.50000 7.925700e+04 3621.03 1.810515e+03 1810.515 121.00 2 1.810515e+03 3621.03 8.287803e+04 8.287803e+04 0.00 NULL
2016 Consumer Affairs Secretary Of The Department 123514.00000 1.235140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.235140e+05 1.235140e+05 0.00 NULL
2016 Cultural Affairs Adm Manager-Non-Mgrl 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2016 Cultural Affairs Administrative Project Manager 137915.00000 1.379150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.379150e+05 1.379150e+05 0.00 NULL
2016 Cultural Affairs Administrative Staff Analyst 97410.33333 2.922310e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.922310e+05 2.922310e+05 0.00 NULL
2016 Cultural Affairs Agency Attorney 81250.00000 1.625000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.625000e+05 1.625000e+05 0.00 NULL
2016 Cultural Affairs Agency Chief Contracting Officer 118872.00000 1.188720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.188720e+05 1.188720e+05 0.00 NULL
2016 Cultural Affairs Arts Program Specialist 47533.75000 1.901350e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.901350e+05 1.901350e+05 0.00 NULL
2016 Cultural Affairs Assistant Commissioner 116602.33333 3.498070e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.498070e+05 3.498070e+05 0.00 NULL
2016 Cultural Affairs Associate Arts Programs Specialist 57638.31647 7.492981e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 7.492981e+05 7.492981e+05 0.00 NULL
2016 Cultural Affairs Associate Staff Analyst 70989.00000 7.098900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.098900e+04 7.098900e+04 0.00 NULL
2016 Cultural Affairs City Laborer 54839.50000 1.096790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.096790e+05 1.096790e+05 0.00 NULL
2016 Cultural Affairs Commissioner Of Cultural Affairs 205868.00000 2.058680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.058680e+05 2.058680e+05 0.00 NULL
2016 Cultural Affairs Community Assistant 36254.01060 3.625401e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.625401e+04 3.625401e+04 0.00 NULL
2016 Cultural Affairs Community Associate 42724.77120 8.544954e+05 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 8.544954e+05 8.544954e+05 0.00 NULL
2016 Cultural Affairs Community Coordinator 67431.06983 8.091728e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 8.091728e+05 8.091728e+05 0.00 NULL
2016 Cultural Affairs Computer Associate 86463.00000 8.646300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.646300e+04 8.646300e+04 0.00 NULL
2016 Cultural Affairs Computer Systems Manager 113105.00000 1.131050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.131050e+05 1.131050e+05 0.00 NULL
2016 Cultural Affairs Deputy Commissioner 149814.00000 1.498140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.498140e+05 1.498140e+05 0.00 NULL
2016 Cultural Affairs Executive Agency Counsel 162914.00000 3.258280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.258280e+05 3.258280e+05 0.00 NULL
2016 Cultural Affairs Executive Director Of Materials For The Arts 97968.00000 9.796800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.796800e+04 9.796800e+04 0.00 NULL
2016 Cultural Affairs Principal Administrative Associate 64991.50000 1.299830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.299830e+05 1.299830e+05 0.00 NULL
2016 Cultural Affairs Secretary 21438.27010 2.143827e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.143827e+04 2.143827e+04 0.00 NULL
2016 Cultural Affairs Secretary To The Commissioner 50750.00000 5.075000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.075000e+04 5.075000e+04 0.00 NULL
2016 Cultural Affairs Staff Analyst 69627.00000 1.392540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.392540e+05 1.392540e+05 0.00 NULL
2016 Cuny Central Office Assistant College Security Director 70000.00000 7.000000e+04 18.01 1.801000e+01 18.010 0.50 1 1.801000e+01 18.01 7.001801e+04 7.001801e+04 0.00 NULL
2016 Cuny Central Office Assistant To Heo 43923.66667 2.635420e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.635420e+05 2.635420e+05 0.00 NULL
2016 Cuny Central Office Campus Peace Officer 40723.00000 4.072300e+04 4754.13 4.754130e+03 4754.130 207.50 1 4.754130e+03 4754.13 4.547713e+04 4.547713e+04 0.00 NULL
2016 Cuny Central Office Higher Education Assistant 66488.00000 1.329760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.329760e+05 1.329760e+05 0.00 NULL
2016 Cuny Central Office Higher Education Associate 69677.00000 1.393540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.393540e+05 1.393540e+05 0.00 NULL
2016 Cuny Central Office Higher Education Officer 102253.00000 1.022530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.022530e+05 1.022530e+05 0.00 NULL
2016 Department For The Aging Accountant 57869.50000 1.157390e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.157390e+05 1.157390e+05 0.00 NULL
2016 Department For The Aging Administrative Program Officer 111648.20135 2.567909e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 2.567909e+06 2.567909e+06 0.00 NULL
2016 Department For The Aging Administrative Accountant 98638.00000 9.863800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.863800e+04 9.863800e+04 0.00 NULL
2016 Department For The Aging Administrative Director Of Social Services 130539.00000 2.610780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.610780e+05 2.610780e+05 0.00 NULL
2016 Department For The Aging Administrative Project Manager 105124.00000 1.051240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.051240e+05 1.051240e+05 0.00 NULL
2016 Department For The Aging Administrative Public Information Specialist 79597.00000 7.959700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.959700e+04 7.959700e+04 0.00 NULL
2016 Department For The Aging Administrative Staff Analyst 84355.67212 2.783737e+06 41.89 1.269394e+00 0.000 0.00 33 0.000000e+00 0.00 2.783779e+06 2.783737e+06 41.89 NULL
2016 Department For The Aging Agency Chief Contracting Officer 133494.00000 1.334940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.334940e+05 1.334940e+05 0.00 NULL
2016 Department For The Aging Architect 70648.50000 1.412970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.412970e+05 1.412970e+05 0.00 NULL
2016 Department For The Aging Associate Staff Analyst 71280.58333 8.553670e+05 28.26 2.355000e+00 0.000 0.00 12 0.000000e+00 0.00 8.553953e+05 8.553670e+05 28.26 NULL
2016 Department For The Aging Attorney At Law 85717.00000 8.571700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.571700e+04 8.571700e+04 0.00 NULL
2016 Department For The Aging Bookkeeper 55334.33333 1.660030e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.660030e+05 1.660030e+05 0.00 NULL
2016 Department For The Aging Clerical Associate 38688.71715 2.321323e+05 147.34 2.455667e+01 0.000 0.00 6 0.000000e+00 0.00 2.322796e+05 2.321323e+05 147.34 NULL
2016 Department For The Aging College Aide 7073.62500 1.414725e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.414725e+04 1.414725e+04 0.00 NULL
2016 Department For The Aging Commissioner 205868.00000 2.058680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.058680e+05 2.058680e+05 0.00 NULL
2016 Department For The Aging Community Assistant 28438.92951 3.697061e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 3.697061e+05 3.697061e+05 0.00 NULL
2016 Department For The Aging Community Associate 46522.46095 1.953943e+06 18296.78 4.356376e+02 0.000 531.50 42 0.000000e+00 0.00 1.972240e+06 1.953943e+06 18296.78 NULL
2016 Department For The Aging Community Coordinator 58666.32045 3.226648e+06 77.20 1.403636e+00 0.000 0.00 55 0.000000e+00 0.00 3.226725e+06 3.226648e+06 77.20 NULL
2016 Department For The Aging Community Service Aide 6147.85126 2.815716e+06 0.00 0.000000e+00 0.000 0.00 458 0.000000e+00 0.00 2.815716e+06 2.815716e+06 0.00 NULL
2016 Department For The Aging Counsel 166475.00000 1.664750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.664750e+05 1.664750e+05 0.00 NULL
2016 Department For The Aging Custodial Assistant 35830.00000 3.583000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.583000e+04 3.583000e+04 0.00 NULL
2016 Department For The Aging Deputy Commissioner 165617.00000 1.656170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.656170e+05 1.656170e+05 0.00 NULL
2016 Department For The Aging Director Of Administration 161100.00000 1.611000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.611000e+05 1.611000e+05 0.00 NULL
2016 Department For The Aging Director Of Community Programs 132681.00000 1.326810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.326810e+05 1.326810e+05 0.00 NULL
2016 Department For The Aging Director Of Direct Service Programs 150793.00000 1.507930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.507930e+05 1.507930e+05 0.00 NULL
2016 Department For The Aging Director Of Research Planning And Policy Analysis 128750.00000 1.287500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287500e+05 1.287500e+05 0.00 NULL
2016 Department For The Aging Executive Agency Counsel 89449.26133 2.683478e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.683478e+05 2.683478e+05 0.00 NULL
2016 Department For The Aging Foster Grandparent 2425.53288 9.653621e+05 0.00 0.000000e+00 0.000 0.00 398 0.000000e+00 0.00 9.653621e+05 9.653621e+05 0.00 NULL
2016 Department For The Aging Housing Development Specialist 59324.00000 5.932400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.932400e+04 5.932400e+04 0.00 NULL
2016 Department For The Aging Management Auditor 66786.33333 8.014360e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 8.014360e+05 8.014360e+05 0.00 NULL
2016 Department For The Aging Nutrition Consultant 63581.91667 7.629830e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.629830e+05 7.629830e+05 0.00 NULL
2016 Department For The Aging Photographer 26057.54250 2.605754e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.605754e+04 2.605754e+04 0.00 NULL
2016 Department For The Aging Principal Administrative Associate 57614.60870 1.325136e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 1.325136e+06 1.325136e+06 0.00 NULL
2016 Department For The Aging Principal Nutrition Consultant 76139.66667 2.284190e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.284190e+05 2.284190e+05 0.00 NULL
2016 Department For The Aging Procurement Analyst 74275.00000 1.485500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.485500e+05 1.485500e+05 0.00 NULL
2016 Department For The Aging Program Officer 64005.65930 2.752243e+06 0.00 0.000000e+00 0.000 0.00 43 0.000000e+00 0.00 2.752243e+06 2.752243e+06 0.00 NULL
2016 Department For The Aging Secretary 41281.82933 3.715365e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 3.715365e+05 3.715365e+05 0.00 NULL
2016 Department For The Aging Space Analyst 71000.00000 7.100000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.100000e+04 7.100000e+04 0.00 NULL
2016 Department For The Aging Summer College Intern 2466.00000 1.233000e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.233000e+04 1.233000e+04 0.00 NULL
2016 Department For The Aging Summer Graduate Intern 2492.00000 9.968000e+03 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 9.968000e+03 9.968000e+03 0.00 NULL
2016 Department For The Aging Supervisor Ii 75916.00000 7.591600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.591600e+04 7.591600e+04 0.00 NULL
2016 Department For The Aging Supervisor Iii 68227.63786 3.411382e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.411382e+05 3.411382e+05 0.00 NULL
2016 Department Of Buildings Accountant 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2016 Department Of Buildings Adm Manager-Non-Mgrl 71415.90372 6.141768e+06 582653.16 6.775037e+03 2995.440 13020.75 86 2.995440e+03 257607.84 6.724421e+06 6.399376e+06 325045.32 NULL
2016 Department Of Buildings Admin Inspector 98766.88235 3.358074e+06 159152.55 4.680957e+03 919.560 2597.50 34 9.195600e+02 31265.04 3.517227e+06 3.389339e+06 127887.51 NULL
2016 Department Of Buildings Administration Public Record Officer 97432.00000 9.743200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.743200e+04 9.743200e+04 0.00 NULL
2016 Department Of Buildings Administrative Architect 122990.06379 3.566712e+06 100608.61 3.469262e+03 0.000 1660.25 29 0.000000e+00 0.00 3.667320e+06 3.566712e+06 100608.61 NULL
2016 Department Of Buildings Administrative Borough Superintendent 114124.37500 9.129950e+05 14555.19 1.819399e+03 0.000 192.75 8 0.000000e+00 0.00 9.275502e+05 9.129950e+05 14555.19 NULL
2016 Department Of Buildings Administrative City Planner 105000.00000 2.100000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.100000e+05 2.100000e+05 0.00 NULL
2016 Department Of Buildings Administrative Engineer 118805.45652 5.465051e+06 34365.51 7.470763e+02 0.000 668.75 46 0.000000e+00 0.00 5.499417e+06 5.465051e+06 34365.51 NULL
2016 Department Of Buildings Administrative Inspector 124084.88235 2.109443e+06 322.57 1.897471e+01 0.000 0.00 17 0.000000e+00 0.00 2.109766e+06 2.109443e+06 322.57 NULL
2016 Department Of Buildings Administrative Investigator 74460.00000 7.446000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.446000e+04 7.446000e+04 0.00 NULL
2016 Department Of Buildings Administrative Manager 117657.14286 1.647200e+06 31902.79 2.278771e+03 0.000 414.25 14 0.000000e+00 0.00 1.679103e+06 1.647200e+06 31902.79 NULL
2016 Department Of Buildings Administrative Procurement Analyst 99670.00000 9.967000e+04 381.87 3.818700e+02 381.870 7.00 1 3.818700e+02 381.87 1.000519e+05 1.000519e+05 0.00 NULL
2016 Department Of Buildings Administrative Project Manager 117535.25000 4.701410e+05 17992.75 4.498188e+03 4171.500 296.50 4 4.171500e+03 16686.00 4.881338e+05 4.868270e+05 1306.75 NULL
2016 Department Of Buildings Administrative Public Information Specialist 143913.00000 4.317390e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.317390e+05 4.317390e+05 0.00 NULL
2016 Department Of Buildings Administrative Staff Analyst 89153.89796 4.368541e+06 160266.48 3.270744e+03 2.040 2544.00 49 2.040000e+00 99.96 4.528807e+06 4.368641e+06 160166.52 NULL
2016 Department Of Buildings Agency Attorney 78886.45750 2.524367e+06 10873.97 3.398116e+02 0.000 203.00 32 0.000000e+00 0.00 2.535241e+06 2.524367e+06 10873.97 NULL
2016 Department Of Buildings Agency Attorney Interne 61734.50000 4.938760e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.938760e+05 4.938760e+05 0.00 NULL
2016 Department Of Buildings Agency Chief Contracting Officer 114655.00000 1.146550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.146550e+05 1.146550e+05 0.00 NULL
2016 Department Of Buildings Architect 87986.04762 1.847707e+06 216242.06 1.029724e+04 9661.700 3786.25 21 9.661700e+03 202895.70 2.063949e+06 2.050603e+06 13346.36 NULL
2016 Department Of Buildings Assistant Architect 71295.73333 1.069436e+06 121844.64 8.122976e+03 803.310 2296.50 15 8.033100e+02 12049.65 1.191281e+06 1.081486e+06 109794.99 NULL
2016 Department Of Buildings Assistant Civil Engineer 69977.66667 4.198660e+05 57258.93 9.543155e+03 9643.800 1174.00 6 9.543155e+03 57258.93 4.771249e+05 4.771249e+05 0.00 NULL
2016 Department Of Buildings Assistant Commissioner For Labor Relations & Admin 169713.00000 1.697130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.697130e+05 1.697130e+05 0.00 NULL
2016 Department Of Buildings Assistant Commissioner Of Operations 169455.00000 1.694550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.694550e+05 1.694550e+05 0.00 NULL
2016 Department Of Buildings Assistant Electrical Engineer 74825.00000 7.482500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.482500e+04 7.482500e+04 0.00 NULL
2016 Department Of Buildings Assistant Mechanical Engineer 77350.00000 7.735000e+04 58499.22 5.849922e+04 58499.220 899.50 1 5.849922e+04 58499.22 1.358492e+05 1.358492e+05 0.00 NULL
2016 Department Of Buildings Assistant Plan Examiner 67317.77011 5.856646e+06 259295.80 2.980411e+03 62.250 5493.00 87 6.225000e+01 5415.75 6.115942e+06 5.862062e+06 253880.05 NULL
2016 Department Of Buildings Associate Inspector 75364.47414 1.492217e+07 3232042.14 1.632345e+04 7601.520 54422.75 198 7.601520e+03 1505100.96 1.815421e+07 1.642727e+07 1726941.18 NULL
2016 Department Of Buildings Associate Investigator 64223.50000 1.284470e+05 26462.70 1.323135e+04 13231.350 1026.33 2 1.323135e+04 26462.70 1.549097e+05 1.549097e+05 0.00 NULL
2016 Department Of Buildings Associate Project Manager 87136.14286 6.099530e+05 28351.46 4.050209e+03 831.390 574.25 7 8.313900e+02 5819.73 6.383045e+05 6.157727e+05 22531.73 NULL
2016 Department Of Buildings Associate Staff Analyst 78891.40000 7.889140e+05 3955.75 3.955750e+02 0.000 50.25 10 0.000000e+00 0.00 7.928698e+05 7.889140e+05 3955.75 NULL
2016 Department Of Buildings Bookkeeper 53000.00000 5.300000e+04 2473.03 2.473030e+03 2473.030 83.75 1 2.473030e+03 2473.03 5.547303e+04 5.547303e+04 0.00 NULL
2016 Department Of Buildings City Planning Technician 53000.00000 5.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.300000e+04 5.300000e+04 0.00 NULL
2016 Department Of Buildings Civil Engineer 95534.28571 1.337480e+06 289408.60 2.067204e+04 6046.895 4314.00 14 6.046895e+03 84656.53 1.626889e+06 1.422137e+06 204752.07 NULL
2016 Department Of Buildings Civil Engineering Intern 56145.27273 6.175980e+05 17438.18 1.585289e+03 820.050 523.00 11 8.200500e+02 9020.55 6.350362e+05 6.266186e+05 8417.63 NULL
2016 Department Of Buildings Clerical Associate 43955.55262 6.197733e+06 355982.98 2.524702e+03 232.640 11481.73 141 2.326400e+02 32802.24 6.553716e+06 6.230535e+06 323180.74 NULL
2016 Department Of Buildings College Aide 5950.09884 5.117085e+05 0.00 0.000000e+00 0.000 0.00 86 0.000000e+00 0.00 5.117085e+05 5.117085e+05 0.00 NULL
2016 Department Of Buildings College Aide - Assignment Levels Ii And Iii 17808.84340 7.123537e+04 1651.69 4.129225e+02 410.090 213.00 4 4.100900e+02 1640.36 7.288706e+04 7.287573e+04 11.33 NULL
2016 Department Of Buildings Commissioner Of Buildings 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Department Of Buildings Community Assistant 33094.00000 4.964100e+05 12591.62 8.394413e+02 142.100 572.25 15 1.421000e+02 2131.50 5.090016e+05 4.985415e+05 10460.12 NULL
2016 Department Of Buildings Community Associate 43357.44099 1.647583e+06 209482.33 5.512693e+03 1669.375 7457.20 38 1.669375e+03 63436.25 1.857065e+06 1.711019e+06 146046.08 NULL
2016 Department Of Buildings Community Coordinator 68231.91667 8.187830e+05 33708.00 2.809000e+03 381.915 794.50 12 3.819150e+02 4582.98 8.524910e+05 8.233660e+05 29125.02 NULL
2016 Department Of Buildings Computer Aide-Non-Spvr 47956.00000 4.795600e+04 3095.62 3.095620e+03 3095.620 84.50 1 3.095620e+03 3095.62 5.105162e+04 5.105162e+04 0.00 NULL
2016 Department Of Buildings Computer Associate 78757.25000 6.300580e+05 32624.16 4.078020e+03 3201.935 723.25 8 3.201935e+03 25615.48 6.626822e+05 6.556735e+05 7008.68 NULL
2016 Department Of Buildings Computer Service Technician 51031.00000 5.103100e+04 3888.58 3.888580e+03 3888.580 123.50 1 3.888580e+03 3888.58 5.491958e+04 5.491958e+04 0.00 NULL
2016 Department Of Buildings Computer Specialist 102488.07143 1.434833e+06 21478.78 1.534199e+03 0.000 332.75 14 0.000000e+00 0.00 1.456312e+06 1.434833e+06 21478.78 NULL
2016 Department Of Buildings Computer Systems Manager 107596.04545 2.367113e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 2.367113e+06 2.367113e+06 0.00 NULL
2016 Department Of Buildings Deputy Commissioner 187268.00000 3.745360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.745360e+05 3.745360e+05 0.00 NULL
2016 Department Of Buildings Director Nyc Loft Board 126734.00000 1.267340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.267340e+05 1.267340e+05 0.00 NULL
2016 Department Of Buildings Electrical Engineer 106515.00000 1.065150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.065150e+05 1.065150e+05 0.00 NULL
2016 Department Of Buildings Engineering Technician 62447.00000 6.244700e+04 528.07 5.280700e+02 528.070 11.50 1 5.280700e+02 528.07 6.297507e+04 6.297507e+04 0.00 NULL
2016 Department Of Buildings Estimator 62395.33333 1.871860e+05 25703.32 8.567773e+03 10298.420 629.00 3 8.567773e+03 25703.32 2.128893e+05 2.128893e+05 0.00 NULL
2016 Department Of Buildings Executive Agency Counsel 129007.37500 2.064118e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.064118e+06 2.064118e+06 0.00 NULL
2016 Department Of Buildings Executive Inspector 192942.00000 1.929420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.929420e+05 1.929420e+05 0.00 NULL
2016 Department Of Buildings Inspector 61406.75661 2.100111e+07 1333862.60 3.900183e+03 188.845 31060.07 342 1.888450e+02 64584.99 2.233497e+07 2.106570e+07 1269277.61 NULL
2016 Department Of Buildings Investigator 45980.33333 1.379410e+05 4973.34 1.657780e+03 1051.530 133.75 3 1.051530e+03 3154.59 1.429143e+05 1.410956e+05 1818.75 NULL
2016 Department Of Buildings Investigator Empl Disc 55304.12500 1.769732e+06 108042.31 3.376322e+03 0.000 2533.50 32 0.000000e+00 0.00 1.877774e+06 1.769732e+06 108042.31 NULL
2016 Department Of Buildings Mechanical Engineer 86050.09091 9.465510e+05 150788.64 1.370806e+04 8036.690 2438.25 11 8.036690e+03 88403.59 1.097340e+06 1.034955e+06 62385.05 NULL
2016 Department Of Buildings Multiple Dwelling Specialist 67722.50000 2.708900e+05 6990.36 1.747590e+03 0.000 172.75 4 0.000000e+00 0.00 2.778804e+05 2.708900e+05 6990.36 NULL
2016 Department Of Buildings Plan Examiner 80538.66667 3.141008e+06 355612.81 9.118277e+03 3150.270 6362.25 39 3.150270e+03 122860.53 3.496621e+06 3.263869e+06 232752.28 NULL
2016 Department Of Buildings Principal Administrative Associate 58502.78811 4.329206e+06 193786.28 2.618734e+03 0.000 4836.75 74 0.000000e+00 0.00 4.522993e+06 4.329206e+06 193786.28 NULL
2016 Department Of Buildings Principal Multiple Dwelling Specialist 97733.50000 1.954670e+05 27134.85 1.356742e+04 13567.425 313.00 2 1.356742e+04 27134.85 2.226019e+05 2.226019e+05 0.00 NULL
2016 Department Of Buildings Procurement Analyst 82559.50000 1.651190e+05 2722.15 1.361075e+03 1361.075 56.25 2 1.361075e+03 2722.15 1.678411e+05 1.678411e+05 0.00 NULL
2016 Department Of Buildings Public Records Aide 40185.40000 2.009270e+05 8089.66 1.617932e+03 0.000 264.75 5 0.000000e+00 0.00 2.090167e+05 2.009270e+05 8089.66 NULL
2016 Department Of Buildings Research Assistant 51279.50000 1.025590e+05 2616.65 1.308325e+03 1308.325 85.75 2 1.308325e+03 2616.65 1.051756e+05 1.051756e+05 0.00 NULL
2016 Department Of Buildings Secretary 47296.75000 7.567480e+05 102080.24 6.380015e+03 764.015 2912.75 16 7.640150e+02 12224.24 8.588282e+05 7.689722e+05 89856.00 NULL
2016 Department Of Buildings Secretary To Commissioner Of Bldgs 93517.00000 9.351700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.351700e+04 9.351700e+04 0.00 NULL
2016 Department Of Buildings Secretary To Department 187268.00000 1.872680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.872680e+05 1.872680e+05 0.00 NULL
2016 Department Of Buildings Secretary To The Deputy Commissioner 93634.00000 9.363400e+04 9712.04 9.712040e+03 9712.040 189.75 1 9.712040e+03 9712.04 1.033460e+05 1.033460e+05 0.00 NULL
2016 Department Of Buildings Senior Estimator 80336.00000 8.033600e+04 851.24 8.512400e+02 851.240 18.00 1 8.512400e+02 851.24 8.118724e+04 8.118724e+04 0.00 NULL
2016 Department Of Buildings Staff Analyst 67086.00000 3.354300e+05 16572.33 3.314466e+03 126.700 373.25 5 1.267000e+02 633.50 3.520023e+05 3.360635e+05 15938.83 NULL
2016 Department Of Buildings Stock Worker 40472.00000 4.047200e+04 7200.36 7.200360e+03 7200.360 242.50 1 7.200360e+03 7200.36 4.767236e+04 4.767236e+04 0.00 NULL
2016 Department Of Buildings Summer College Intern 2741.06625 3.837493e+04 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 3.837493e+04 3.837493e+04 0.00 NULL
2016 Department Of Buildings Summer Graduate Intern 5475.22417 1.642567e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.642567e+04 1.642567e+04 0.00 NULL
2016 Department Of Buildings Supervising Computer Service Technician 79278.00000 7.927800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.927800e+04 7.927800e+04 0.00 NULL
2016 Department Of Business Serv. Adm Manager-Non-Mgrl 68765.31930 1.925429e+06 99.89 3.567500e+00 0.000 2.50 28 0.000000e+00 0.00 1.925529e+06 1.925429e+06 99.89 NULL
2016 Department Of Business Serv. Admin Contract Specialist 94723.00000 3.788920e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.788920e+05 3.788920e+05 0.00 NULL
2016 Department Of Business Serv. Administrative Accountant 129215.00000 1.292150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.292150e+05 1.292150e+05 0.00 NULL
2016 Department Of Business Serv. Administrative Architect 123000.00000 1.230000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.230000e+05 1.230000e+05 0.00 NULL
2016 Department Of Business Serv. Administrative Business Promotion Coordinator 92191.67857 5.162734e+06 0.00 0.000000e+00 0.000 0.00 56 0.000000e+00 0.00 5.162734e+06 5.162734e+06 0.00 NULL
2016 Department Of Business Serv. Administrative Manager 101114.50000 2.022290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.022290e+05 2.022290e+05 0.00 NULL
2016 Department Of Business Serv. Administrative Procurement Analyst 105839.00000 1.058390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.058390e+05 1.058390e+05 0.00 NULL
2016 Department Of Business Serv. Administrative Public Information Specialist 122175.00000 3.665250e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.665250e+05 3.665250e+05 0.00 NULL
2016 Department Of Business Serv. Administrative Staff Analyst 90323.41231 1.174204e+06 4.60 3.538462e-01 0.000 0.00 13 0.000000e+00 0.00 1.174209e+06 1.174204e+06 4.60 NULL
2016 Department Of Business Serv. Agency Attorney 78487.25000 3.139490e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.139490e+05 3.139490e+05 0.00 NULL
2016 Department Of Business Serv. Agency Chief Contracting Officer 129139.00000 1.291390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.291390e+05 1.291390e+05 0.00 NULL
2016 Department Of Business Serv. Assistant Commissioner 121256.81818 1.333825e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.333825e+06 1.333825e+06 0.00 NULL
2016 Department Of Business Serv. Associate Contract Specialist 65255.83194 5.220467e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.220467e+05 5.220467e+05 0.00 NULL
2016 Department Of Business Serv. Associate Staff Analyst 79843.83333 4.790630e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.790630e+05 4.790630e+05 0.00 NULL
2016 Department Of Business Serv. Business Promotion Coordinator 58176.37777 4.305052e+06 7080.17 9.567797e+01 0.000 186.00 74 0.000000e+00 0.00 4.312132e+06 4.305052e+06 7080.17 NULL
2016 Department Of Business Serv. Certified It Developer 107463.00000 1.074630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074630e+05 1.074630e+05 0.00 NULL
2016 Department Of Business Serv. Chief Dockmaster 74963.00000 7.496300e+04 9.41 9.410000e+00 9.410 0.00 1 9.410000e+00 9.41 7.497241e+04 7.497241e+04 0.00 NULL
2016 Department Of Business Serv. Clerical Associate 44245.55714 3.097189e+05 47.82 6.831429e+00 0.000 0.00 7 0.000000e+00 0.00 3.097667e+05 3.097189e+05 47.82 NULL
2016 Department Of Business Serv. College Aide 3737.84583 2.242708e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.242708e+04 2.242708e+04 0.00 NULL
2016 Department Of Business Serv. Commissioner Of Business Services 203357.50000 4.067150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.067150e+05 4.067150e+05 0.00 NULL
2016 Department Of Business Serv. Community Associate 48426.04121 9.685208e+05 21633.60 1.081680e+03 0.000 544.00 20 0.000000e+00 0.00 9.901544e+05 9.685208e+05 21633.60 NULL
2016 Department Of Business Serv. Community Coordinator 58091.66857 1.219925e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.219925e+06 1.219925e+06 0.00 NULL
2016 Department Of Business Serv. Computer Operations Manager 93194.00000 9.319400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.319400e+04 9.319400e+04 0.00 NULL
2016 Department Of Business Serv. Computer Service Technician 46356.15250 4.635615e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.635615e+04 4.635615e+04 0.00 NULL
2016 Department Of Business Serv. Computer Specialist 80119.00000 2.403570e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.403570e+05 2.403570e+05 0.00 NULL
2016 Department Of Business Serv. Computer Systems Manager 95214.00000 9.521400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.521400e+04 9.521400e+04 0.00 NULL
2016 Department Of Business Serv. Contract Reviewer 55692.01039 2.339064e+06 0.00 0.000000e+00 0.000 0.00 42 0.000000e+00 0.00 2.339064e+06 2.339064e+06 0.00 NULL
2016 Department Of Business Serv. Contract Specialist 59152.00000 1.183040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.183040e+05 1.183040e+05 0.00 NULL
2016 Department Of Business Serv. Custodial Assistant 34004.75760 3.400476e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.400476e+04 3.400476e+04 0.00 NULL
2016 Department Of Business Serv. Deputy Commissioner 175218.66667 1.576968e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.576968e+06 1.576968e+06 0.00 NULL
2016 Department Of Business Serv. Executive Agency Counsel 149315.00000 1.493150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.493150e+05 1.493150e+05 0.00 NULL
2016 Department Of Business Serv. Principal Administrative Associate 65602.01692 8.528262e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 8.528262e+05 8.528262e+05 0.00 NULL
2016 Department Of Business Serv. Procurement Analyst 65468.00000 6.546800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.546800e+04 6.546800e+04 0.00 NULL
2016 Department Of Business Serv. Staff Analyst 63741.00000 1.912230e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.912230e+05 1.912230e+05 0.00 NULL
2016 Department Of Business Serv. Summer College Intern 4834.95000 1.933980e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.933980e+04 1.933980e+04 0.00 NULL
2016 Department Of Business Serv. Summer Graduate Intern 3715.87667 2.229526e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.229526e+04 2.229526e+04 0.00 NULL
2016 Department Of Business Serv. Telecommunications Associate 52364.00000 5.236400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.236400e+04 5.236400e+04 0.00 NULL
2016 Department Of City Planning Adm Manager-Non-Mgrl 65162.20000 3.258110e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.258110e+05 3.258110e+05 0.00 NULL
2016 Department Of City Planning Administrative City Planner 112225.32432 4.152337e+06 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 4.152337e+06 4.152337e+06 0.00 NULL
2016 Department Of City Planning Administrative Labor Relations Analyst 104000.00000 2.080000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.080000e+05 2.080000e+05 0.00 NULL
2016 Department Of City Planning Administrative Procurement Analyst 93000.00000 9.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.300000e+04 9.300000e+04 0.00 NULL
2016 Department Of City Planning Administrative Space Analyst 74000.00000 7.400000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.400000e+04 7.400000e+04 0.00 NULL
2016 Department Of City Planning Administrative Staff Analyst 86185.00000 4.309250e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.309250e+05 4.309250e+05 0.00 NULL
2016 Department Of City Planning Agency Attorney 89308.00000 4.465400e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.465400e+05 4.465400e+05 0.00 NULL
2016 Department Of City Planning Agency Attorney Interne 64211.50000 1.284230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.284230e+05 1.284230e+05 0.00 NULL
2016 Department Of City Planning Assistant Architect 63261.00000 6.326100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.326100e+04 6.326100e+04 0.00 NULL
2016 Department Of City Planning Assistant Highway Transportation Specialist 54290.40000 2.714520e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.714520e+05 2.714520e+05 0.00 NULL
2016 Department Of City Planning Assistant Urban Designer 61645.33333 3.698720e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.698720e+05 3.698720e+05 0.00 NULL
2016 Department Of City Planning Associate Staff Analyst 80061.00000 4.803660e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.803660e+05 4.803660e+05 0.00 NULL
2016 Department Of City Planning Associate Urban Designer 80934.37500 6.474750e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.474750e+05 6.474750e+05 0.00 NULL
2016 Department Of City Planning Certified Local Area Network Administrator 95685.00000 9.568500e+04 8979.23 8.979230e+03 8979.230 129.50 1 8.979230e+03 8979.23 1.046642e+05 1.046642e+05 0.00 NULL
2016 Department Of City Planning Chairman 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Department Of City Planning City Planner 68455.12729 9.720628e+06 2.68 1.887320e-02 0.000 0.00 142 0.000000e+00 0.00 9.720631e+06 9.720628e+06 2.68 NULL
2016 Department Of City Planning City Planning Technician 41224.61344 6.595938e+05 917.39 5.733687e+01 0.000 30.00 16 0.000000e+00 0.00 6.605112e+05 6.595938e+05 917.39 NULL
2016 Department Of City Planning Clerical Associate 44737.93610 3.579035e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 3.579035e+05 3.579035e+05 0.00 NULL
2016 Department Of City Planning College Aide 1649.20000 3.298400e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.298400e+03 3.298400e+03 0.00 NULL
2016 Department Of City Planning Commissioner 56619.16667 6.794300e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 6.794300e+05 6.794300e+05 0.00 NULL
2016 Department Of City Planning Commissioner Designated As Vice Chairman 66749.00000 6.674900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.674900e+04 6.674900e+04 0.00 NULL
2016 Department Of City Planning Community Associate 47000.00000 9.400000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.400000e+04 9.400000e+04 0.00 NULL
2016 Department Of City Planning Community Coordinator 51019.47950 2.550974e+05 10329.32 2.065864e+03 0.000 220.50 5 0.000000e+00 0.00 2.654267e+05 2.550974e+05 10329.32 NULL
2016 Department Of City Planning Computer Aide-Non-Spvr 56539.00000 5.653900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.653900e+04 5.653900e+04 0.00 NULL
2016 Department Of City Planning Computer Associate 64434.94659 7.087844e+05 2601.10 2.364636e+02 0.000 63.50 11 0.000000e+00 0.00 7.113855e+05 7.087844e+05 2601.10 NULL
2016 Department Of City Planning Computer Operations Manager 89632.33333 2.688970e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.688970e+05 2.688970e+05 0.00 NULL
2016 Department Of City Planning Computer Programmer Analyst 62473.98000 1.249480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.249480e+05 1.249480e+05 0.00 NULL
2016 Department Of City Planning Computer Service Technician 61044.00000 6.104400e+04 1381.45 1.381450e+03 1381.450 29.00 1 1.381450e+03 1381.45 6.242545e+04 6.242545e+04 0.00 NULL
2016 Department Of City Planning Computer Specialist 86199.58357 1.206794e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.206794e+06 1.206794e+06 0.00 NULL
2016 Department Of City Planning Computer Systems Manager 112593.25000 4.503730e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.503730e+05 4.503730e+05 0.00 NULL
2016 Department Of City Planning Counsel 198302.00000 1.983020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.983020e+05 1.983020e+05 0.00 NULL
2016 Department Of City Planning Deputy Executive Director 187582.00000 1.875820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.875820e+05 1.875820e+05 0.00 NULL
2016 Department Of City Planning Director Of Public Information 122930.00000 1.229300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.229300e+05 1.229300e+05 0.00 NULL
2016 Department Of City Planning Executive Agency Counsel 119112.50000 2.382250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.382250e+05 2.382250e+05 0.00 NULL
2016 Department Of City Planning Executive Assistant For Planning 117081.00000 1.170810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.170810e+05 1.170810e+05 0.00 NULL
2016 Department Of City Planning Executive Assistant To The Chairman 71516.50000 1.430330e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.430330e+05 1.430330e+05 0.00 NULL
2016 Department Of City Planning Executive Director 200985.00000 2.009850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.009850e+05 2.009850e+05 0.00 NULL
2016 Department Of City Planning Graphic Artist 72219.00000 7.221900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.221900e+04 7.221900e+04 0.00 NULL
2016 Department Of City Planning Highway Transportation Specialist 92617.00000 1.852340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.852340e+05 1.852340e+05 0.00 NULL
2016 Department Of City Planning Motor Vehicle Supervisor 52397.00000 5.239700e+04 40847.54 4.084754e+04 40847.540 1059.75 1 4.084754e+04 40847.54 9.324454e+04 9.324454e+04 0.00 NULL
2016 Department Of City Planning Office Machine Aide 43170.00000 4.317000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.317000e+04 4.317000e+04 0.00 NULL
2016 Department Of City Planning Principal Administrative Associate 61018.48067 9.152772e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 9.152772e+05 9.152772e+05 0.00 NULL
2016 Department Of City Planning Public Service Interne 4375.35875 8.750718e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.750718e+03 8.750718e+03 0.00 NULL
2016 Department Of City Planning Secretary 53281.00000 5.328100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.328100e+04 5.328100e+04 0.00 NULL
2016 Department Of City Planning Secretary To The Chairman 72275.00000 7.227500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.227500e+04 7.227500e+04 0.00 NULL
2016 Department Of City Planning Staff Analyst 60327.87840 6.032788e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.032788e+04 6.032788e+04 0.00 NULL
2016 Department Of City Planning Telecommunications Associate 69000.00000 6.900000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.900000e+04 6.900000e+04 0.00 NULL
2016 Department Of Correction *Adm Dir Fleet Maintenance - Nm 129039.00000 1.290390e+05 3244.50 3.244500e+03 3244.500 39.00 1 3.244500e+03 3244.50 1.322835e+05 1.322835e+05 0.00 NULL
2016 Department Of Correction Accountant 46000.00000 4.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.600000e+04 4.600000e+04 0.00 NULL
2016 Department Of Correction Adm Manager-Non-Mgrl 67528.73684 2.566092e+06 261549.28 6.882876e+03 931.210 5656.75 38 9.312100e+02 35385.98 2.827641e+06 2.601478e+06 226163.30 NULL
2016 Department Of Correction Admin Construction Project Manager 106129.00000 1.061290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.061290e+05 1.061290e+05 0.00 NULL
2016 Department Of Correction Admin Inspector 96471.00000 9.647100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.647100e+04 9.647100e+04 0.00 NULL
2016 Department Of Correction Administrative Architect 136271.00000 2.725420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.725420e+05 2.725420e+05 0.00 NULL
2016 Department Of Correction Administrative Construction Project Manager 139231.00000 1.392310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.392310e+05 1.392310e+05 0.00 NULL
2016 Department Of Correction Administrative Director Of Social Services 93673.83333 1.686129e+06 11344.65 6.302583e+02 0.000 253.75 18 0.000000e+00 0.00 1.697474e+06 1.686129e+06 11344.65 NULL
2016 Department Of Correction Administrative Engineer 123856.66667 3.715700e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.715700e+05 3.715700e+05 0.00 NULL
2016 Department Of Correction Administrative Investigator 91303.37500 7.304270e+05 34315.14 4.289392e+03 1310.445 611.25 8 1.310445e+03 10483.56 7.647421e+05 7.409106e+05 23831.58 NULL
2016 Department Of Correction Administrative Management Auditor 120092.00000 1.200920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200920e+05 1.200920e+05 0.00 NULL
2016 Department Of Correction Administrative Manager 175000.00000 1.050000e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.050000e+06 1.050000e+06 0.00 NULL
2016 Department Of Correction Administrative Procurement Analyst 96530.71429 6.757150e+05 34547.51 4.935359e+03 0.000 577.25 7 0.000000e+00 0.00 7.102625e+05 6.757150e+05 34547.51 NULL
2016 Department Of Correction Administrative Project Manager 116781.25000 4.671250e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.671250e+05 4.671250e+05 0.00 NULL
2016 Department Of Correction Administrative Psychologist 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2016 Department Of Correction Administrative Public Health Sanitarian 118643.00000 2.372860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.372860e+05 2.372860e+05 0.00 NULL
2016 Department Of Correction Administrative Public Information Specialist 103437.12500 8.274970e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.274970e+05 8.274970e+05 0.00 NULL
2016 Department Of Correction Administrative Staff Analyst 106591.28713 1.076572e+07 655897.30 6.494033e+03 31.250 10782.75 101 3.125000e+01 3156.25 1.142162e+07 1.076888e+07 652741.05 NULL
2016 Department Of Correction Administrative Storekeeper 120896.00000 1.208960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.208960e+05 1.208960e+05 0.00 NULL
2016 Department Of Correction Administrative Supervisor Of Building Maintenance 138116.00000 2.762320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.762320e+05 2.762320e+05 0.00 NULL
2016 Department Of Correction Agency Attorney 95665.63636 3.156966e+06 17022.47 5.158324e+02 0.000 279.25 33 0.000000e+00 0.00 3.173988e+06 3.156966e+06 17022.47 NULL
2016 Department Of Correction Agency Attorney Interne 27808.52623 1.112341e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.112341e+05 1.112341e+05 0.00 NULL
2016 Department Of Correction Architect 97936.00000 1.958720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.958720e+05 1.958720e+05 0.00 NULL
2016 Department Of Correction Asbestos Handler Supervisor 81301.00000 1.626020e+05 70393.07 3.519654e+04 35196.535 1132.25 2 3.519654e+04 70393.07 2.329951e+05 2.329951e+05 0.00 NULL
2016 Department Of Correction Assistant Laundry Supervisor 39123.00000 3.912300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.912300e+04 3.912300e+04 0.00 NULL
2016 Department Of Correction Associate Contract Specialist 60389.00000 6.038900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.038900e+04 6.038900e+04 0.00 NULL
2016 Department Of Correction Associate Correctional Counselor 58197.42553 2.735279e+06 22519.52 4.791387e+02 0.000 652.50 47 0.000000e+00 0.00 2.757799e+06 2.735279e+06 22519.52 NULL
2016 Department Of Correction Associate Investigator 57128.98335 9.140637e+05 104194.81 6.512176e+03 1817.735 2424.75 16 1.817735e+03 29083.76 1.018259e+06 9.431475e+05 75111.05 NULL
2016 Department Of Correction Associate Project Manager 84551.75000 3.382070e+05 1109.28 2.773200e+02 0.000 21.25 4 0.000000e+00 0.00 3.393163e+05 3.382070e+05 1109.28 NULL
2016 Department Of Correction Associate Public Health Sanitarian 69806.66667 2.094200e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.094200e+05 2.094200e+05 0.00 NULL
2016 Department Of Correction Associate Staff Analyst 83016.50000 2.324462e+06 51321.02 1.832894e+03 0.000 873.25 28 0.000000e+00 0.00 2.375783e+06 2.324462e+06 51321.02 NULL
2016 Department Of Correction Attorney At Law 90808.00000 9.080800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.080800e+04 9.080800e+04 0.00 NULL
2016 Department Of Correction Auto Body Worker 55251.00000 1.105020e+05 83928.41 4.196421e+04 41964.205 2020.25 2 4.196421e+04 83928.41 1.944304e+05 1.944304e+05 0.00 NULL
2016 Department Of Correction Auto Mechanic NA NA 349918.68 2.186992e+04 20522.010 6016.50 16 2.052201e+04 328352.16 NA NA NA NULL
2016 Department Of Correction Automotive Service Worker 34792.66667 3.131340e+05 10097.55 1.121950e+03 0.000 377.50 9 0.000000e+00 0.00 3.232315e+05 3.131340e+05 10097.55 NULL
2016 Department Of Correction Baker 36658.60000 1.832930e+05 634.14 1.268280e+02 40.510 70.50 5 4.051000e+01 202.55 1.839271e+05 1.834955e+05 431.59 NULL
2016 Department Of Correction Bookkeeper 34671.00000 3.467100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.467100e+04 3.467100e+04 0.00 NULL
2016 Department Of Correction Bricklayer NA NA 323636.51 5.393942e+04 53065.125 4901.75 6 5.306512e+04 318390.75 NA NA NA NULL
2016 Department Of Correction Captain 92174.84914 8.065299e+07 34090832.90 3.896095e+04 36040.890 477105.86 875 3.604089e+04 31535778.75 1.147438e+08 1.121888e+08 2555054.15 NULL
2016 Department Of Correction Carpenter NA NA 677125.54 2.708502e+04 10599.500 6657.50 25 1.059950e+04 264987.50 NA NA NA NULL
2016 Department Of Correction Case Management Nurse 56902.48489 3.983174e+05 13780.57 1.968653e+03 0.000 270.25 7 0.000000e+00 0.00 4.120980e+05 3.983174e+05 13780.57 NULL
2016 Department Of Correction Cashier 36873.93939 1.216840e+06 163182.34 4.944919e+03 1733.290 5462.75 33 1.733290e+03 57198.57 1.380022e+06 1.274039e+06 105983.77 NULL
2016 Department Of Correction Cement Mason NA NA 5584.02 2.792010e+03 2792.010 30.75 2 2.792010e+03 5584.02 NA NA NA NULL
2016 Department Of Correction Certified It Administrator 95836.66667 2.875100e+05 72366.19 2.412206e+04 4954.050 1012.50 3 4.954050e+03 14862.15 3.598762e+05 3.023722e+05 57504.04 NULL
2016 Department Of Correction Chaplain 43206.48221 1.252988e+06 11700.53 4.034666e+02 0.000 352.25 29 0.000000e+00 0.00 1.264689e+06 1.252988e+06 11700.53 NULL
2016 Department Of Correction City Elevator Operator 37129.33333 1.113880e+05 9816.66 3.272220e+03 2144.390 379.50 3 2.144390e+03 6433.17 1.212047e+05 1.178212e+05 3383.49 NULL
2016 Department Of Correction City Medical Specialist 46277.52450 1.851101e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.851101e+05 1.851101e+05 0.00 NULL
2016 Department Of Correction Civil Engineer 85950.00000 8.595000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.595000e+04 8.595000e+04 0.00 NULL
2016 Department Of Correction Clerical Associate 43667.27586 2.532702e+06 211131.26 3.640194e+03 215.240 6674.00 58 2.152400e+02 12483.92 2.743833e+06 2.545186e+06 198647.34 NULL
2016 Department Of Correction College Aide 8083.80600 8.083806e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.083806e+03 8.083806e+03 0.00 NULL
2016 Department Of Correction Commissary Manager 35929.50000 2.874360e+05 22657.72 2.832215e+03 1642.885 910.50 8 1.642885e+03 13143.08 3.100937e+05 3.005791e+05 9514.64 NULL
2016 Department Of Correction Commissioner 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Department Of Correction Community Assistant 36566.00000 3.656600e+04 3524.32 3.524320e+03 3524.320 212.00 1 3.524320e+03 3524.32 4.009032e+04 4.009032e+04 0.00 NULL
2016 Department Of Correction Community Associate 42909.63085 3.432770e+05 17355.53 2.169441e+03 1310.470 555.50 8 1.310470e+03 10483.76 3.606326e+05 3.537608e+05 6871.77 NULL
2016 Department Of Correction Community Coordinator 51070.92878 3.115327e+06 56134.37 9.202356e+02 0.000 1614.75 61 0.000000e+00 0.00 3.171461e+06 3.115327e+06 56134.37 NULL
2016 Department Of Correction Computer Aide-Non-Spvr 47205.33333 1.416160e+05 25796.76 8.598920e+03 10825.240 682.50 3 8.598920e+03 25796.76 1.674128e+05 1.674128e+05 0.00 NULL
2016 Department Of Correction Computer Associate 68514.77778 1.233266e+06 92390.34 5.132797e+03 807.115 2046.00 18 8.071150e+02 14528.07 1.325656e+06 1.247794e+06 77862.27 NULL
2016 Department Of Correction Computer Operations Manager 132954.25000 5.318170e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.318170e+05 5.318170e+05 0.00 NULL
2016 Department Of Correction Computer Service Technician 51791.00000 5.179100e+04 12974.10 1.297410e+04 12974.100 358.00 1 1.297410e+04 12974.10 6.476510e+04 6.476510e+04 0.00 NULL
2016 Department Of Correction Computer Specialist 93357.62963 2.520656e+06 75984.06 2.814224e+03 0.000 1175.25 27 0.000000e+00 0.00 2.596640e+06 2.520656e+06 75984.06 NULL
2016 Department Of Correction Computer Systems Manager 126703.07692 1.647140e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.647140e+06 1.647140e+06 0.00 NULL
2016 Department Of Correction Confidential Agency Investigator 120630.20167 7.237812e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.237812e+05 7.237812e+05 0.00 NULL
2016 Department Of Correction Construction Project Manager 93700.00000 2.811000e+05 2317.68 7.725600e+02 0.000 58.75 3 0.000000e+00 0.00 2.834177e+05 2.811000e+05 2317.68 NULL
2016 Department Of Correction Contract Specialist 71183.00000 7.118300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.118300e+04 7.118300e+04 0.00 NULL
2016 Department Of Correction Cook 37501.52795 6.037746e+06 662515.16 4.115001e+03 1483.470 23468.90 161 1.483470e+03 238838.67 6.700261e+06 6.276585e+06 423676.49 NULL
2016 Department Of Correction Correction Administrative Aide 30627.85693 6.125571e+05 4809.77 2.404885e+02 0.000 175.19 20 0.000000e+00 0.00 6.173669e+05 6.125571e+05 4809.77 NULL
2016 Department Of Correction Correction Officer 67409.10236 7.323325e+08 223900589.06 2.060941e+04 15375.815 4026385.38 10864 1.537582e+04 167042854.16 9.562331e+08 8.993753e+08 56857734.90 NULL
2016 Department Of Correction Correctional Standards Review Specialist 65814.52632 1.250476e+06 180647.65 9.507771e+03 0.000 3980.50 19 0.000000e+00 0.00 1.431124e+06 1.250476e+06 180647.65 NULL
2016 Department Of Correction Counselor 51492.00000 1.029840e+05 657.42 3.287100e+02 328.710 20.25 2 3.287100e+02 657.42 1.036414e+05 1.036414e+05 0.00 NULL
2016 Department Of Correction Deputy Commissioner 181937.50000 3.638750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.638750e+05 3.638750e+05 0.00 NULL
2016 Department Of Correction Dietary Aide 35355.71429 2.474900e+05 44782.69 6.397527e+03 1610.490 1648.25 7 1.610490e+03 11273.43 2.922727e+05 2.587634e+05 33509.26 NULL
2016 Department Of Correction Dietitian 50578.41667 6.069410e+05 56.43 4.702500e+00 0.000 0.00 12 0.000000e+00 0.00 6.069974e+05 6.069410e+05 56.43 NULL
2016 Department Of Correction Director Of Correctional Standards Review 140000.00000 4.200000e+05 514.40 1.714667e+02 0.000 16.50 3 0.000000e+00 0.00 4.205144e+05 4.200000e+05 514.40 NULL
2016 Department Of Correction Electrical Engineer 85950.00000 8.595000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.595000e+04 8.595000e+04 0.00 NULL
2016 Department Of Correction Electrician NA NA 2104488.87 5.845802e+04 59516.645 29081.00 36 5.845802e+04 2104488.87 NA NA NA NULL
2016 Department Of Correction Electrician’s Helper NA NA 627444.45 2.163602e+04 22065.450 13909.50 29 2.163602e+04 627444.45 NA NA NA NULL
2016 Department Of Correction Executive Agency Counsel 132518.66667 1.590224e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.590224e+06 1.590224e+06 0.00 NULL
2016 Department Of Correction Executive Assistant To The Commissioner 208075.00000 2.080750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.080750e+05 2.080750e+05 0.00 NULL
2016 Department Of Correction Executive Director Of Food Services 133569.00000 1.335690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.335690e+05 1.335690e+05 0.00 NULL
2016 Department Of Correction Executive Program Specialist 112750.00000 1.127500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.127500e+05 1.127500e+05 0.00 NULL
2016 Department Of Correction Exterminator 36743.77778 3.306940e+05 59328.57 6.592063e+03 654.580 2223.75 9 6.545800e+02 5891.22 3.900226e+05 3.365852e+05 53437.35 NULL
2016 Department Of Correction Film Manager 72500.00000 1.450000e+05 158.73 7.936500e+01 79.365 4.00 2 7.936500e+01 158.73 1.451587e+05 1.451587e+05 0.00 NULL
2016 Department Of Correction Food Service Administrator 77706.75000 3.108270e+05 133303.27 3.332582e+04 24558.190 2494.25 4 2.455819e+04 98232.76 4.441303e+05 4.090598e+05 35070.51 NULL
2016 Department Of Correction Food Service Manager 56678.80000 5.667880e+05 75878.44 7.587844e+03 5228.130 2041.50 10 5.228130e+03 52281.30 6.426664e+05 6.190693e+05 23597.14 NULL
2016 Department Of Correction Fraud Investigator 60443.00000 1.208860e+05 14042.20 7.021100e+03 7021.100 314.25 2 7.021100e+03 14042.20 1.349282e+05 1.349282e+05 0.00 NULL
2016 Department Of Correction Health Services Manager 99735.00000 9.973500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.973500e+04 9.973500e+04 0.00 NULL
2016 Department Of Correction High Pressure Plant Tender NA NA 319877.42 2.907977e+04 38532.810 6217.50 11 2.907977e+04 319877.42 NA NA NA NULL
2016 Department Of Correction Industrial Hygienist 62000.00000 6.200000e+04 322.39 3.223900e+02 322.390 8.00 1 3.223900e+02 322.39 6.232239e+04 6.232239e+04 0.00 NULL
2016 Department Of Correction Inspector 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2016 Department Of Correction Institutional Aide 36209.88889 6.517780e+05 71547.35 3.974853e+03 1463.760 2846.48 18 1.463760e+03 26347.68 7.233253e+05 6.781257e+05 45199.67 NULL
2016 Department Of Correction Investigator 51510.38404 3.554216e+06 394453.47 5.716717e+03 3614.280 10754.75 69 3.614280e+03 249385.32 3.948670e+06 3.803602e+06 145068.15 NULL
2016 Department Of Correction Legal Coordinator 56002.61290 1.736081e+06 460540.51 1.485615e+04 3810.810 10130.75 31 3.810810e+03 118135.11 2.196622e+06 1.854216e+06 342405.40 NULL
2016 Department Of Correction Licensed Barber 34428.81818 3.787170e+05 36042.50 3.276591e+03 0.000 1490.25 11 0.000000e+00 0.00 4.147595e+05 3.787170e+05 36042.50 NULL
2016 Department Of Correction Locksmith NA NA 201796.70 1.187039e+04 5007.840 4221.50 17 5.007840e+03 85133.28 NA NA NA NULL
2016 Department Of Correction Machinist NA NA 165912.45 3.318249e+04 19819.220 2948.25 5 1.981922e+04 99096.10 NA NA NA NULL
2016 Department Of Correction Maintenance Worker NA NA 690322.70 1.170038e+04 7713.970 15770.75 59 7.713970e+03 455124.23 NA NA NA NULL
2016 Department Of Correction Management Auditor 81279.66667 2.438390e+05 23147.34 7.715780e+03 0.000 421.75 3 0.000000e+00 0.00 2.669863e+05 2.438390e+05 23147.34 NULL
2016 Department Of Correction Marine Engineer 68630.37750 2.745215e+05 193687.02 4.842175e+04 48000.940 3489.75 4 4.800094e+04 192003.76 4.682085e+05 4.665253e+05 1683.26 NULL
2016 Department Of Correction Marine Oiler 54998.09050 1.649943e+05 69533.73 2.317791e+04 25731.070 1510.50 3 2.317791e+04 69533.73 2.345280e+05 2.345280e+05 0.00 NULL
2016 Department Of Correction Masons Helper NA NA 53334.67 5.333467e+04 53334.670 983.50 1 5.333467e+04 53334.67 NA NA NA NULL
2016 Department Of Correction Mate 57875.00000 5.787500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.787500e+04 5.787500e+04 0.00 NULL
2016 Department Of Correction Medical Officer 102926.85177 1.132195e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.132195e+06 1.132195e+06 0.00 NULL
2016 Department Of Correction Motor Vehicle Operator 43777.34884 1.882426e+06 455649.07 1.059649e+04 9062.660 13519.75 43 9.062660e+03 389694.38 2.338075e+06 2.272120e+06 65954.69 NULL
2016 Department Of Correction Motor Vehicle Supervisor 52556.50000 1.051130e+05 14667.71 7.333855e+03 7333.855 347.75 2 7.333855e+03 14667.71 1.197807e+05 1.197807e+05 0.00 NULL
2016 Department Of Correction Office Machine Aide 33050.22500 6.610045e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.610045e+04 6.610045e+04 0.00 NULL
2016 Department Of Correction Oiler NA NA 2224796.81 3.903152e+04 38474.420 20425.25 57 3.847442e+04 2193041.94 NA NA NA NULL
2016 Department Of Correction Paralegal Aide 30070.59200 3.007059e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.007059e+04 3.007059e+04 0.00 NULL
2016 Department Of Correction Plumber NA NA 2657567.83 4.152450e+04 38443.560 12267.00 64 3.844356e+04 2460387.84 NA NA NA NULL
2016 Department Of Correction Plumber’s Helper NA NA 663753.43 2.655014e+04 26791.130 4806.00 25 2.655014e+04 663753.43 NA NA NA NULL
2016 Department Of Correction Principal Administrative Associate 56770.27865 5.052555e+06 427415.64 4.802423e+03 0.000 10951.50 89 0.000000e+00 0.00 5.479970e+06 5.052555e+06 427415.64 NULL
2016 Department Of Correction Printing Press Operator NA NA 42359.10 4.235910e+04 42359.100 783.50 1 4.235910e+04 42359.10 NA NA NA NULL
2016 Department Of Correction Procurement Analyst 60797.29565 1.398338e+06 3900.75 1.695978e+02 0.000 106.25 23 0.000000e+00 0.00 1.402239e+06 1.398338e+06 3900.75 NULL
2016 Department Of Correction Program Specialist Correction 64375.01226 8.883752e+06 727306.08 5.270334e+03 652.410 16111.75 138 6.524100e+02 90032.58 9.611058e+06 8.973784e+06 637273.50 NULL
2016 Department Of Correction Psychologist 65345.73860 5.227659e+05 22104.00 2.763000e+03 404.625 282.50 8 4.046250e+02 3237.00 5.448699e+05 5.260029e+05 18867.00 NULL
2016 Department Of Correction Public Health Sanitarian 55797.83333 3.347870e+05 6287.16 1.047860e+03 624.520 157.75 6 6.245200e+02 3747.12 3.410742e+05 3.385341e+05 2540.04 NULL
2016 Department Of Correction Public Records Aide 35722.00000 7.144400e+04 5158.98 2.579490e+03 2579.490 195.75 2 2.579490e+03 5158.98 7.660298e+04 7.660298e+04 0.00 NULL
2016 Department Of Correction Quality Assurance Specialist 65111.00000 6.511100e+04 5230.61 5.230610e+03 5230.610 143.75 1 5.230610e+03 5230.61 7.034161e+04 7.034161e+04 0.00 NULL
2016 Department Of Correction Radio Repair Mechanic NA NA 21629.64 7.209880e+03 1456.640 303.50 3 1.456640e+03 4369.92 NA NA NA NULL
2016 Department Of Correction Roofer NA NA 37711.57 1.257052e+04 12830.220 797.00 3 1.257052e+04 37711.57 NA NA NA NULL
2016 Department Of Correction Rubber Tire Repairer NA NA 6939.91 3.469955e+03 3469.955 128.75 2 3.469955e+03 6939.91 NA NA NA NULL
2016 Department Of Correction Secretary 37146.00000 1.114380e+05 16.65 5.550000e+00 0.000 1.00 3 0.000000e+00 0.00 1.114546e+05 1.114380e+05 16.65 NULL
2016 Department Of Correction Senior Baker 43361.20000 2.168060e+05 2202.41 4.404820e+02 402.530 84.50 5 4.025300e+02 2012.65 2.190084e+05 2.188186e+05 189.76 NULL
2016 Department Of Correction Senior Institutional Trades Instructor 39250.66667 1.177520e+05 59120.39 1.970680e+04 25604.250 1930.00 3 1.970680e+04 59120.39 1.768724e+05 1.768724e+05 0.00 NULL
2016 Department Of Correction Senior Stationary Engineer NA NA 1217733.01 1.014778e+05 116111.995 9252.50 12 1.014778e+05 1217733.01 NA NA NA NULL
2016 Department Of Correction Sheet Metal Worker NA NA 129623.05 3.240576e+04 31644.510 1180.00 4 3.164451e+04 126578.04 NA NA NA NULL
2016 Department Of Correction Social Worker 52088.92500 1.041779e+05 5281.81 2.640905e+03 2640.905 147.75 2 2.640905e+03 5281.81 1.094597e+05 1.094597e+05 0.00 NULL
2016 Department Of Correction Staff Analyst 56212.79437 7.307663e+05 28371.36 2.182412e+03 430.470 877.00 13 4.304700e+02 5596.11 7.591377e+05 7.363624e+05 22775.25 NULL
2016 Department Of Correction Staff Nurse 74428.68125 3.721434e+05 18035.18 3.607036e+03 893.390 304.50 5 8.933900e+02 4466.95 3.901786e+05 3.766104e+05 13568.23 NULL
2016 Department Of Correction Stationary Engineer NA NA 1374006.34 3.271444e+04 16831.620 10445.00 42 1.683162e+04 706928.04 NA NA NA NULL
2016 Department Of Correction Steam Fitter NA NA 729353.39 7.293534e+04 87952.770 5112.75 10 7.293534e+04 729353.39 NA NA NA NULL
2016 Department Of Correction Steam Fitter’s Helper NA NA 200911.50 4.018230e+04 31233.570 2033.75 5 3.123357e+04 156167.85 NA NA NA NULL
2016 Department Of Correction Stock Worker 35303.33333 2.118200e+05 9598.57 1.599762e+03 499.670 504.75 6 4.996700e+02 2998.02 2.214186e+05 2.148180e+05 6600.55 NULL
2016 Department Of Correction Summer Graduate Intern 2820.76191 1.325758e+05 0.00 0.000000e+00 0.000 0.00 47 0.000000e+00 0.00 1.325758e+05 1.325758e+05 0.00 NULL
2016 Department Of Correction Superintendent Of Laundries 55829.00000 5.582900e+04 12974.14 1.297414e+04 12974.140 320.50 1 1.297414e+04 12974.14 6.880314e+04 6.880314e+04 0.00 NULL
2016 Department Of Correction Supervising Computer Service Technician 81648.00000 2.449440e+05 8579.77 2.859923e+03 2083.380 114.50 3 2.083380e+03 6250.14 2.535238e+05 2.511941e+05 2329.63 NULL
2016 Department Of Correction Supervising Housekeeper 46941.00000 4.694100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.694100e+04 4.694100e+04 0.00 NULL
2016 Department Of Correction Supervisor 45000.00000 4.500000e+04 974.96 9.749600e+02 974.960 36.00 1 9.749600e+02 974.96 4.597496e+04 4.597496e+04 0.00 NULL
2016 Department Of Correction Supervisor Electrician NA NA 80114.71 8.011471e+04 80114.710 1022.50 1 8.011471e+04 80114.71 NA NA NA NULL
2016 Department Of Correction Supervisor Of Electrical Installations & Maintenance 67340.00000 6.734000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.734000e+04 6.734000e+04 0.00 NULL
2016 Department Of Correction Supervisor Of Mechanics NA NA 1100192.90 4.584137e+04 35952.675 12031.00 24 3.595268e+04 862864.20 NA NA NA NULL
2016 Department Of Correction Supervisor Of Stock Workers 45115.55556 4.060400e+05 20005.55 2.222839e+03 1391.060 611.75 9 1.391060e+03 12519.54 4.260455e+05 4.185595e+05 7486.01 NULL
2016 Department Of Correction Supervisor Plumber NA NA 137670.32 6.883516e+04 68835.160 353.25 2 6.883516e+04 137670.32 NA NA NA NULL
2016 Department Of Correction Supervisor Steamfitter NA NA 160623.60 5.354120e+04 16455.440 1006.00 3 1.645544e+04 49366.32 NA NA NA NULL
2016 Department Of Correction Telecommunications Associate 71536.00000 2.146080e+05 94527.99 3.150933e+04 35098.710 1628.00 3 3.150933e+04 94527.99 3.091360e+05 3.091360e+05 0.00 NULL
2016 Department Of Correction Telephone Service Technician 55396.00000 5.539600e+04 9683.46 9.683460e+03 9683.460 206.00 1 9.683460e+03 9683.46 6.507946e+04 6.507946e+04 0.00 NULL
2016 Department Of Correction Thermostat Repairer NA NA 323408.02 6.468160e+04 74253.520 3556.50 5 6.468160e+04 323408.02 NA NA NA NULL
2016 Department Of Correction Tractor Operator NA NA 171329.77 5.710992e+04 60738.600 1762.75 3 5.710992e+04 171329.77 NA NA NA NULL
2016 Department Of Correction Warden 185340.46154 4.818852e+06 -6583.68 -2.532185e+02 0.000 0.00 26 -2.532185e+02 -6583.68 4.812268e+06 4.812268e+06 0.00 NULL
2016 Department Of Correction Warden-Assistant Deputy Warden 109328.48276 1.268210e+07 4955017.56 4.271567e+04 38306.215 58380.25 116 3.830621e+04 4443520.94 1.763712e+07 1.712562e+07 511496.62 NULL
2016 Department Of Correction Warden-Deputy Warden 129373.17073 5.304300e+06 338595.53 8.258428e+03 0.000 3382.00 41 0.000000e+00 0.00 5.642896e+06 5.304300e+06 338595.53 NULL
2016 Department Of Correction Warden-Deputy Warden In Comm 160331.92308 2.084315e+06 316.14 2.431846e+01 0.000 0.00 13 0.000000e+00 0.00 2.084631e+06 2.084315e+06 316.14 NULL
2016 Department Of Correction Welder NA NA 567324.81 4.052320e+04 41314.725 7719.75 14 4.052320e+04 567324.81 NA NA NA NULL
2016 Department Of Correction Worker’s Compensation Benefits Examiner 46656.00000 4.665600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.665600e+04 4.665600e+04 0.00 NULL
2016 Department Of Education Admin *Administrative Attorney 206370.00000 2.063700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.063700e+05 2.063700e+05 0.00 NULL
2016 Department Of Education Admin *School Lunch Helper 27374.00000 2.737400e+04 3735.12 3.735120e+03 3735.120 0.00 1 3.735120e+03 3735.12 3.110912e+04 3.110912e+04 0.00 NULL
2016 Department Of Education Admin Accountant 60976.63889 2.195159e+06 78778.20 2.188283e+03 0.000 2045.50 36 0.000000e+00 0.00 2.273937e+06 2.195159e+06 78778.20 NULL
2016 Department Of Education Admin Adm Manager-Non-Mgrl 70625.40000 3.531270e+05 348.73 6.974600e+01 0.000 17.00 5 0.000000e+00 0.00 3.534757e+05 3.531270e+05 348.73 NULL
2016 Department Of Education Admin Administration Public Record Officer 125956.00000 1.259560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.259560e+05 1.259560e+05 0.00 NULL
2016 Department Of Education Admin Administrative Accountant 107846.27273 1.186309e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.186309e+06 1.186309e+06 0.00 NULL
2016 Department Of Education Admin Administrative Assistant To Community Education Council 39293.07143 5.501030e+05 659.67 4.711929e+01 0.000 11.50 14 0.000000e+00 0.00 5.507627e+05 5.501030e+05 659.67 NULL
2016 Department Of Education Admin Administrative Community Relations Specialist 82001.00000 1.640020e+05 1446.28 7.231400e+02 723.140 22.75 2 7.231400e+02 1446.28 1.654483e+05 1.654483e+05 0.00 NULL
2016 Department Of Education Admin Administrative Education Analyst 103292.62907 4.761790e+07 5264.92 1.142065e+01 0.000 113.62 461 0.000000e+00 0.00 4.762317e+07 4.761790e+07 5264.92 NULL
2016 Department Of Education Admin Administrative Education Officer 99204.61081 5.505856e+07 4353.42 7.844000e+00 0.000 86.50 555 0.000000e+00 0.00 5.506291e+07 5.505856e+07 4353.42 NULL
2016 Department Of Education Admin Administrative Investigator 97909.00000 9.790900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.790900e+04 9.790900e+04 0.00 NULL
2016 Department Of Education Admin Administrative Management Auditor 98383.18182 1.082215e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.082215e+06 1.082215e+06 0.00 NULL
2016 Department Of Education Admin Administrative Manager 102690.16667 1.232282e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.232282e+06 1.232282e+06 0.00 NULL
2016 Department Of Education Admin Administrative Procurement Analyst 90141.37500 2.884524e+06 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 2.884524e+06 2.884524e+06 0.00 NULL
2016 Department Of Education Admin Administrative Public Health Nurse 142131.00000 1.421310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.421310e+05 1.421310e+05 0.00 NULL
2016 Department Of Education Admin Administrative Public Information Specialist 91915.37500 1.470646e+06 47.82 2.988750e+00 0.000 9.25 16 0.000000e+00 0.00 1.470694e+06 1.470646e+06 47.82 NULL
2016 Department Of Education Admin Administrative Quality Assurance Specialist 91474.04762 1.920955e+06 429.50 2.045238e+01 0.000 15.50 21 0.000000e+00 0.00 1.921384e+06 1.920955e+06 429.50 NULL
2016 Department Of Education Admin Administrative Retirement Benefits Specialist 112550.00000 1.125500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.125500e+05 1.125500e+05 0.00 NULL
2016 Department Of Education Admin Administrative School Food Service Manager 100500.88889 1.809016e+06 4114.32 2.285733e+02 0.000 91.75 18 0.000000e+00 0.00 1.813130e+06 1.809016e+06 4114.32 NULL
2016 Department Of Education Admin Administrative Space Analyst 106772.18182 1.174494e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.174494e+06 1.174494e+06 0.00 NULL
2016 Department Of Education Admin Administrative Staff Analyst 100689.52500 2.416549e+07 1.71 7.125000e-03 0.000 0.00 240 0.000000e+00 0.00 2.416549e+07 2.416549e+07 1.71 NULL
2016 Department Of Education Admin Administrative Storekeeper 83909.50000 1.678190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.678190e+05 1.678190e+05 0.00 NULL
2016 Department Of Education Admin Agency Attorney 88905.52866 1.395817e+07 20205.14 1.286952e+02 0.000 258.25 157 0.000000e+00 0.00 1.397837e+07 1.395817e+07 20205.14 NULL
2016 Department Of Education Admin Architect 89564.40000 4.478220e+05 8545.14 1.709028e+03 359.840 144.50 5 3.598400e+02 1799.20 4.563671e+05 4.496212e+05 6745.94 NULL
2016 Department Of Education Admin Area Manager Of School Maintenance 121539.48148 3.281566e+06 11659.48 4.318326e+02 0.000 85.00 27 0.000000e+00 0.00 3.293225e+06 3.281566e+06 11659.48 NULL
2016 Department Of Education Admin Asbestos Handler 77550.77778 6.979570e+05 195894.75 2.176608e+04 21530.140 2553.00 9 2.153014e+04 193771.26 8.938518e+05 8.917283e+05 2123.49 NULL
2016 Department Of Education Admin Asbestos Hazard Investigator 63142.00000 6.314200e+04 12742.15 1.274215e+04 12742.150 255.00 1 1.274215e+04 12742.15 7.588415e+04 7.588415e+04 0.00 NULL
2016 Department Of Education Admin Assistant Accountant 57063.00000 5.706300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.706300e+04 5.706300e+04 0.00 NULL
2016 Department Of Education Admin Assistant Architect 77157.00000 7.715700e+04 940.76 9.407600e+02 940.760 27.75 1 9.407600e+02 940.76 7.809776e+04 7.809776e+04 0.00 NULL
2016 Department Of Education Admin Assistant Civil Engineer 69482.00000 6.948200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.948200e+04 6.948200e+04 0.00 NULL
2016 Department Of Education Admin Assistant Mechanical Engineer 59324.00000 5.932400e+04 9282.76 9.282760e+03 9282.760 110.00 1 9.282760e+03 9282.76 6.860676e+04 6.860676e+04 0.00 NULL
2016 Department Of Education Admin Assistant Retirement Benefits Examiner 53131.33333 1.593940e+05 14430.10 4.810033e+03 811.380 420.00 3 8.113800e+02 2434.14 1.738241e+05 1.618281e+05 11995.96 NULL
2016 Department Of Education Admin Assistant Superintendent Of Schools 172105.00000 1.721050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.721050e+05 1.721050e+05 0.00 NULL
2016 Department Of Education Admin Associate Education Analyst 85193.39286 4.770830e+06 44784.29 7.997195e+02 0.000 791.75 56 0.000000e+00 0.00 4.815614e+06 4.770830e+06 44784.29 NULL
2016 Department Of Education Admin Associate Fingerprint Technician 40474.00000 2.833180e+05 38105.51 5.443644e+03 609.010 1428.25 7 6.090100e+02 4263.07 3.214235e+05 2.875811e+05 33842.44 NULL
2016 Department Of Education Admin Associate Human Rights Specialist 90237.00000 9.023700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.023700e+04 9.023700e+04 0.00 NULL
2016 Department Of Education Admin Associate Investigator 63823.00000 6.382300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.382300e+04 6.382300e+04 0.00 NULL
2016 Department Of Education Admin Associate Project Manager 80236.50000 1.604730e+05 17177.00 8.588500e+03 8588.500 347.00 2 8.588500e+03 17177.00 1.776500e+05 1.776500e+05 0.00 NULL
2016 Department Of Education Admin Associate Public Information Specialist 53271.50000 2.130860e+05 7527.09 1.881773e+03 1177.085 244.75 4 1.177085e+03 4708.34 2.206131e+05 2.177943e+05 2818.75 NULL
2016 Department Of Education Admin Associate Quality Assurance Specialist 61998.69492 3.657923e+06 209738.10 3.554883e+03 1509.570 5410.00 59 1.509570e+03 89064.63 3.867661e+06 3.746988e+06 120673.47 NULL
2016 Department Of Education Admin Associate Real Property Manager 60989.00000 6.098900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.098900e+04 6.098900e+04 0.00 NULL
2016 Department Of Education Admin Associate Retirement Benefits Examiner 55855.50000 2.122509e+06 283760.92 7.467393e+03 3038.080 7544.50 38 3.038080e+03 115447.04 2.406270e+06 2.237956e+06 168313.88 NULL
2016 Department Of Education Admin Associate School Food Service Manager 66525.72340 3.126709e+06 133574.64 2.842014e+03 1968.700 3313.25 47 1.968700e+03 92528.90 3.260284e+06 3.219238e+06 41045.74 NULL
2016 Department Of Education Admin Associate Staff Analyst 77393.75000 6.191500e+05 3759.31 4.699137e+02 0.000 92.00 8 0.000000e+00 0.00 6.229093e+05 6.191500e+05 3759.31 NULL
2016 Department Of Education Admin Attorney At Law 100089.57600 5.004479e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.004479e+05 5.004479e+05 0.00 NULL
2016 Department Of Education Admin Auto Mechanic NA NA 51.86 1.296500e+01 0.555 0.00 4 5.550000e-01 2.22 NA NA NA NULL
2016 Department Of Education Admin Bookkeeper 44776.22414 2.597021e+06 56231.64 9.695110e+02 0.000 1789.75 58 0.000000e+00 0.00 2.653253e+06 2.597021e+06 56231.64 NULL
2016 Department Of Education Admin Bricklayer NA NA 9016.79 2.254198e+03 2420.115 184.50 4 2.254198e+03 9016.79 NA NA NA NULL
2016 Department Of Education Admin Carpenter NA NA 817102.85 7.043990e+03 1853.080 6602.25 116 1.853080e+03 214957.28 NA NA NA NULL
2016 Department Of Education Admin Certified Applications Developer 106288.00000 2.125760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.125760e+05 2.125760e+05 0.00 NULL
2016 Department Of Education Admin Certified It Administrator 102658.66667 5.543568e+06 93855.80 1.738070e+03 306.845 1141.50 54 3.068450e+02 16569.63 5.637424e+06 5.560138e+06 77286.17 NULL
2016 Department Of Education Admin Certified It Developer 99720.75000 1.595532e+06 18316.93 1.144808e+03 0.000 240.00 16 0.000000e+00 0.00 1.613849e+06 1.595532e+06 18316.93 NULL
2016 Department Of Education Admin Certified Wide Area Network Administrator 108288.83333 6.497330e+05 1180.02 1.966700e+02 0.000 15.50 6 0.000000e+00 0.00 6.509130e+05 6.497330e+05 1180.02 NULL
2016 Department Of Education Admin Chauffeur-Attendant 39537.00000 3.953700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.953700e+04 3.953700e+04 0.00 NULL
2016 Department Of Education Admin Chief Administrator Of Impartial Hearings 138359.00000 1.383590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.383590e+05 1.383590e+05 0.00 NULL
2016 Department Of Education Admin Chief Information Technology Officer 187583.00000 1.875830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.875830e+05 1.875830e+05 0.00 NULL
2016 Department Of Education Admin Chief School Business Executive 205805.00000 2.058050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.058050e+05 2.058050e+05 0.00 NULL
2016 Department Of Education Admin City Dentist 14289.08250 2.857817e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.857817e+04 2.857817e+04 0.00 NULL
2016 Department Of Education Admin City Elevator Operator 34969.00000 2.098140e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.098140e+05 2.098140e+05 0.00 NULL
2016 Department Of Education Admin City Laborer NA NA 24076.36 1.852028e+03 2430.950 446.00 13 1.852028e+03 24076.36 NA NA NA NULL
2016 Department Of Education Admin City Medical Specialist 45322.96300 9.064593e+05 8164.10 4.082050e+02 0.000 107.00 20 0.000000e+00 0.00 9.146234e+05 9.064593e+05 8164.10 NULL
2016 Department Of Education Admin City Research Scientist 98364.00000 1.967280e+05 1992.26 9.961300e+02 996.130 60.25 2 9.961300e+02 1992.26 1.987203e+05 1.987203e+05 0.00 NULL
2016 Department Of Education Admin Civil Engineer 92943.00000 3.717720e+05 27812.75 6.953188e+03 3109.180 457.75 4 3.109180e+03 12436.72 3.995848e+05 3.842087e+05 15376.03 NULL
2016 Department Of Education Admin Clerical Aide 32039.98868 5.767198e+05 1236.67 6.870389e+01 0.000 79.00 18 0.000000e+00 0.00 5.779565e+05 5.767198e+05 1236.67 NULL
2016 Department Of Education Admin Clerical Associate 42908.50724 1.643396e+07 212158.40 5.539384e+02 0.000 6999.75 383 0.000000e+00 0.00 1.664612e+07 1.643396e+07 212158.40 NULL
2016 Department Of Education Admin Community Assistant 33832.80198 1.025134e+07 201610.27 6.653804e+02 96.290 7199.75 303 9.629000e+01 29175.87 1.045295e+07 1.028051e+07 172434.40 NULL
2016 Department Of Education Admin Community Associate 43044.67264 9.611875e+07 1953879.68 8.750021e+02 309.950 54239.50 2233 3.099500e+02 692118.35 9.807263e+07 9.681087e+07 1261761.33 NULL
2016 Department Of Education Admin Community Coordinator 57965.30560 3.622832e+07 723267.04 1.157227e+03 207.330 15817.75 625 2.073300e+02 129581.25 3.695158e+07 3.635790e+07 593685.79 NULL
2016 Department Of Education Admin Computer Aide-Non-Spvr 50243.76375 6.029252e+05 42159.95 3.513329e+03 94.590 958.50 12 9.459000e+01 1135.08 6.450851e+05 6.040602e+05 41024.87 NULL
2016 Department Of Education Admin Computer Associate 70383.29126 7.249479e+06 61421.29 5.963232e+02 0.000 1599.50 103 0.000000e+00 0.00 7.310900e+06 7.249479e+06 61421.29 NULL
2016 Department Of Education Admin Computer Programmer Analyst 54149.36364 5.956430e+05 1236.68 1.124255e+02 0.000 44.50 11 0.000000e+00 0.00 5.968797e+05 5.956430e+05 1236.68 NULL
2016 Department Of Education Admin Computer Service Technician 49672.09475 3.725407e+06 59178.89 7.890519e+02 0.000 1805.75 75 0.000000e+00 0.00 3.784586e+06 3.725407e+06 59178.89 NULL
2016 Department Of Education Admin Computer Specialist 99912.39683 1.888344e+07 202214.22 1.069917e+03 0.000 2984.75 189 0.000000e+00 0.00 1.908566e+07 1.888344e+07 202214.22 NULL
2016 Department Of Education Admin Computer Systems Manager 125547.32927 1.029488e+07 1789.14 2.181878e+01 0.000 26.50 82 0.000000e+00 0.00 1.029667e+07 1.029488e+07 1789.14 NULL
2016 Department Of Education Admin Confidential Agency Investigator 88531.50000 1.770630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.770630e+05 1.770630e+05 0.00 NULL
2016 Department Of Education Admin Confidential Investigator 70020.40196 7.142081e+06 0.00 0.000000e+00 0.000 0.00 102 0.000000e+00 0.00 7.142081e+06 7.142081e+06 0.00 NULL
2016 Department Of Education Admin Confidential Strategy Planner 64411.12500 5.152890e+05 3112.96 3.891200e+02 0.000 31.00 8 0.000000e+00 0.00 5.184020e+05 5.152890e+05 3112.96 NULL
2016 Department Of Education Admin Construction Laborer NA NA 83922.51 3.648805e+03 3002.670 1522.50 23 3.002670e+03 69061.41 NA NA NA NULL
2016 Department Of Education Admin Construction Project Manager 73027.16667 1.314489e+06 171041.95 9.502331e+03 2579.485 2894.25 18 2.579485e+03 46430.73 1.485531e+06 1.360920e+06 124611.22 NULL
2016 Department Of Education Admin Cook 37897.62712 2.235960e+06 63962.81 1.084115e+03 196.200 2404.25 59 1.962000e+02 11575.80 2.299923e+06 2.247536e+06 52387.01 NULL
2016 Department Of Education Admin Counsel To The Chancellor 206341.00000 2.063410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.063410e+05 2.063410e+05 0.00 NULL
2016 Department Of Education Admin Customer Information Representative 51266.05618 1.220132e+07 172475.03 7.246850e+02 0.000 5121.25 238 0.000000e+00 0.00 1.237380e+07 1.220132e+07 172475.03 NULL
2016 Department Of Education Admin Deputy Auditor General 157773.00000 3.155460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.155460e+05 3.155460e+05 0.00 NULL
2016 Department Of Education Admin Deputy Chancellor Financial Affairs 191675.00000 1.916750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.916750e+05 1.916750e+05 0.00 NULL
2016 Department Of Education Admin Deputy Executive Director Of Financial Operations 127310.00000 1.273100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.273100e+05 1.273100e+05 0.00 NULL
2016 Department Of Education Admin Deputy Inspector General 129558.00000 2.591160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.591160e+05 2.591160e+05 0.00 NULL
2016 Department Of Education Admin Director 155426.00000 1.554260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.554260e+05 1.554260e+05 0.00 NULL
2016 Department Of Education Admin Director Of Audit And Investigation 147923.00000 1.479230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.479230e+05 1.479230e+05 0.00 NULL
2016 Department Of Education Admin Director Of Equal Opportunity 137203.00000 1.372030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.372030e+05 1.372030e+05 0.00 NULL
2016 Department Of Education Admin District Manager Of Administration And Business Affairs 86899.50000 1.216593e+06 4979.36 3.556686e+02 0.000 103.25 14 0.000000e+00 0.00 1.221572e+06 1.216593e+06 4979.36 NULL
2016 Department Of Education Admin Education Analyst 68275.64286 9.558590e+05 7468.68 5.334771e+02 0.000 92.00 14 0.000000e+00 0.00 9.633277e+05 9.558590e+05 7468.68 NULL
2016 Department Of Education Admin Education Analyst Trainee 29657.11895 9.490278e+05 1231.30 3.847812e+01 0.000 29.50 32 0.000000e+00 0.00 9.502591e+05 9.490278e+05 1231.30 NULL
2016 Department Of Education Admin Education Officer 73850.43913 1.698560e+07 86387.51 3.755979e+02 0.000 2054.75 230 0.000000e+00 0.00 1.707199e+07 1.698560e+07 86387.51 NULL
2016 Department Of Education Admin Educational Management Associate 158541.10000 4.756233e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 4.756233e+06 4.756233e+06 0.00 NULL
2016 Department Of Education Admin Electrician NA NA 1080413.53 1.200459e+04 4942.875 14314.25 90 4.942875e+03 444858.75 NA NA NA NULL
2016 Department Of Education Admin Electrician’s Helper NA NA 2519.10 2.519100e+03 2519.100 58.00 1 2.519100e+03 2519.10 NA NA NA NULL
2016 Department Of Education Admin Equal Rights Compliance Specialist 64020.65217 1.472475e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 1.472475e+06 1.472475e+06 0.00 NULL
2016 Department Of Education Admin Executive Agency Counsel 121524.69643 6.805383e+06 0.00 0.000000e+00 0.000 0.00 56 0.000000e+00 0.00 6.805383e+06 6.805383e+06 0.00 NULL
2016 Department Of Education Admin Executive Assistant To The Chancellor 75033.50000 1.500670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.500670e+05 1.500670e+05 0.00 NULL
2016 Department Of Education Admin Executive Director 193467.00000 3.869340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.869340e+05 3.869340e+05 0.00 NULL
2016 Department Of Education Admin Exterminator 37296.36842 7.086310e+05 9566.10 5.034789e+02 203.210 375.00 19 2.032100e+02 3860.99 7.181971e+05 7.124920e+05 5705.11 NULL
2016 Department Of Education Admin Furniture Maintainer NA NA 2848.42 1.424210e+03 1424.210 80.00 2 1.424210e+03 2848.42 NA NA NA NULL
2016 Department Of Education Admin Glazier NA NA 28610.40 4.087200e+03 4368.000 333.50 7 4.087200e+03 28610.40 NA NA NA NULL
2016 Department Of Education Admin Health Services Manager 92010.52381 1.932221e+06 1043.48 4.968952e+01 0.000 0.00 21 0.000000e+00 0.00 1.933264e+06 1.932221e+06 1043.48 NULL
2016 Department Of Education Admin Industrial Hygienist 67769.50000 1.355390e+05 12395.25 6.197625e+03 6197.625 275.50 2 6.197625e+03 12395.25 1.479342e+05 1.479342e+05 0.00 NULL
2016 Department Of Education Admin Interpreter 49011.35330 9.802271e+04 3168.58 1.584290e+03 1584.290 134.75 2 1.584290e+03 3168.58 1.011913e+05 1.011913e+05 0.00 NULL
2016 Department Of Education Admin Interpreter/Translator 57093.67742 1.769904e+06 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 1.769904e+06 1.769904e+06 0.00 NULL
2016 Department Of Education Admin Investigator 48766.66667 2.926000e+05 1222.15 2.036917e+02 97.830 37.50 6 9.783000e+01 586.98 2.938222e+05 2.931870e+05 635.17 NULL
2016 Department Of Education Admin Investigator Empl Disc 56153.29167 1.347679e+06 15977.11 6.657129e+02 0.000 460.25 24 0.000000e+00 0.00 1.363656e+06 1.347679e+06 15977.11 NULL
2016 Department Of Education Admin Investment Analyst 49992.00000 4.999200e+04 279.31 2.793100e+02 279.310 18.75 1 2.793100e+02 279.31 5.027131e+04 5.027131e+04 0.00 NULL
2016 Department Of Education Admin Investment Trustee - Deferred Compensation 1.00000 1.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+00 1.000000e+00 0.00 NULL
2016 Department Of Education Admin Legal Secretarial Assistant 39829.00000 3.982900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.982900e+04 3.982900e+04 0.00 NULL
2016 Department Of Education Admin Legal Secretarial Assistant Al 2,3,4 Only 45887.50000 9.177500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.177500e+04 9.177500e+04 0.00 NULL
2016 Department Of Education Admin Locksmith NA NA 4247.93 8.495860e+02 0.740 95.00 5 7.400000e-01 3.70 NA NA NA NULL
2016 Department Of Education Admin Machinist NA NA 315979.66 6.195680e+03 1941.560 5699.50 51 1.941560e+03 99019.56 NA NA NA NULL
2016 Department Of Education Admin Machinist’s Helper NA NA 27155.21 4.525868e+03 393.145 487.75 6 3.931450e+02 2358.87 NA NA NA NULL
2016 Department Of Education Admin Maintenance Worker NA NA 2680.85 1.489361e+02 0.000 24.00 18 0.000000e+00 0.00 NA NA NA NULL
2016 Department Of Education Admin Management Auditor 64784.06250 1.036545e+06 25767.15 1.610447e+03 0.000 562.00 16 0.000000e+00 0.00 1.062312e+06 1.036545e+06 25767.15 NULL
2016 Department Of Education Admin Management Auditor Trainee 44970.33333 2.698220e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.698220e+05 2.698220e+05 0.00 NULL
2016 Department Of Education Admin Mechanical Engineer 83725.00000 8.372500e+04 10006.69 1.000669e+04 10006.690 171.75 1 1.000669e+04 10006.69 9.373169e+04 9.373169e+04 0.00 NULL
2016 Department Of Education Admin Mechanical Engineering Intern 46465.00000 9.293000e+04 4245.34 2.122670e+03 2122.670 152.00 2 2.122670e+03 4245.34 9.717534e+04 9.717534e+04 0.00 NULL
2016 Department Of Education Admin Media Services Technician 53642.66667 1.609280e+05 3668.36 1.222787e+03 0.000 0.00 3 0.000000e+00 0.00 1.645964e+05 1.609280e+05 3668.36 NULL
2016 Department Of Education Admin Mental Health Worker 40090.00000 8.018000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.018000e+04 8.018000e+04 0.00 NULL
2016 Department Of Education Admin Motor Vehicle Operator 42451.82353 7.216810e+05 107354.70 6.314982e+03 2392.230 3246.50 17 2.392230e+03 40667.91 8.290357e+05 7.623489e+05 66686.79 NULL
2016 Department Of Education Admin Occupational Therapist 49713.10483 1.127493e+08 129422.71 5.706469e+01 0.000 2103.50 2268 0.000000e+00 0.00 1.128787e+08 1.127493e+08 129422.71 NULL
2016 Department Of Education Admin Office Machine Aide 40551.62500 3.244130e+05 27935.38 3.491923e+03 191.355 1064.25 8 1.913550e+02 1530.84 3.523484e+05 3.259438e+05 26404.54 NULL
2016 Department Of Education Admin Painter NA NA 14170.74 1.771342e+03 31.240 193.50 8 3.124000e+01 249.92 NA NA NA NULL
2016 Department Of Education Admin Physical Therapist 48754.78389 5.285019e+07 22258.52 2.053369e+01 0.000 366.00 1084 0.000000e+00 0.00 5.287244e+07 5.285019e+07 22258.52 NULL
2016 Department Of Education Admin Plasterer NA NA 126986.82 7.936676e+03 7709.415 1496.50 16 7.709415e+03 123350.64 NA NA NA NULL
2016 Department Of Education Admin Plumber NA NA 640166.37 9.016428e+03 2926.980 4616.25 71 2.926980e+03 207815.58 NA NA NA NULL
2016 Department Of Education Admin Plumber’s Helper NA NA 3674.63 9.186575e+02 320.420 8.00 4 3.204200e+02 1281.68 NA NA NA NULL
2016 Department Of Education Admin Principal Administrative Associate 57763.05156 1.392090e+07 228660.04 9.487968e+02 0.000 5681.50 241 0.000000e+00 0.00 1.414956e+07 1.392090e+07 228660.04 NULL
2016 Department Of Education Admin Principal School-Neighborhood Worker 50574.00000 5.057400e+04 2244.73 2.244730e+03 2244.730 61.00 1 2.244730e+03 2244.73 5.281873e+04 5.281873e+04 0.00 NULL
2016 Department Of Education Admin Procurement Analyst 59828.05634 4.247792e+06 101761.95 1.433267e+03 0.000 3034.25 71 0.000000e+00 0.00 4.349554e+06 4.247792e+06 101761.95 NULL
2016 Department Of Education Admin Program Producer 69214.00000 6.921400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.921400e+04 6.921400e+04 0.00 NULL
2016 Department Of Education Admin Public Records Aide 42052.00000 2.102600e+05 24495.55 4.899110e+03 3408.980 773.00 5 3.408980e+03 17044.90 2.347555e+05 2.273049e+05 7450.65 NULL
2016 Department Of Education Admin Quality Assurance Specialist 46863.05556 8.435350e+05 16069.56 8.927533e+02 0.000 537.25 18 0.000000e+00 0.00 8.596046e+05 8.435350e+05 16069.56 NULL
2016 Department Of Education Admin Radio Repair Mechanic NA NA 90915.60 5.682225e+03 1353.850 1044.50 16 1.353850e+03 21661.60 NA NA NA NULL
2016 Department Of Education Admin Research Assistant 53821.53333 8.073230e+05 7696.21 5.130807e+02 0.000 210.25 15 0.000000e+00 0.00 8.150192e+05 8.073230e+05 7696.21 NULL
2016 Department Of Education Admin Roofer NA NA 25794.66 1.517333e+03 21.460 438.00 17 2.146000e+01 364.82 NA NA NA NULL
2016 Department Of Education Admin School Business Manager 73250.20370 1.186653e+07 285004.23 1.759285e+03 0.000 5808.75 162 0.000000e+00 0.00 1.215154e+07 1.186653e+07 285004.23 NULL
2016 Department Of Education Admin School Computer Technology Specialist 47482.06234 1.310505e+07 377406.41 1.367415e+03 0.000 10178.48 276 0.000000e+00 0.00 1.348246e+07 1.310505e+07 377406.41 NULL
2016 Department Of Education Admin School Equipment Maintainer 41269.50000 8.253900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.253900e+04 8.253900e+04 0.00 NULL
2016 Department Of Education Admin School Food Service Manager 50943.46453 2.226229e+07 249663.75 5.713129e+02 86.490 8081.25 437 8.649000e+01 37796.13 2.251196e+07 2.230009e+07 211867.62 NULL
2016 Department Of Education Admin School Lunch Aide 29710.99137 2.409561e+07 1731058.26 2.134474e+03 1706.020 24724.00 811 1.706020e+03 1383582.22 2.582667e+07 2.547920e+07 347476.04 NULL
2016 Department Of Education Admin School Lunch Assistant 37876.30769 3.446744e+06 91017.08 1.000188e+03 92.580 3681.00 91 9.258000e+01 8424.78 3.537761e+06 3.455169e+06 82592.30 NULL
2016 Department Of Education Admin School Lunch Loader And Handler 48098.96774 1.491068e+06 109520.84 3.532930e+03 1014.870 3135.75 31 1.014870e+03 31460.97 1.600589e+06 1.522529e+06 78059.87 NULL
2016 Department Of Education Admin School Plant Manager 116374.85714 5.702368e+06 150.99 3.081429e+00 0.000 0.00 49 0.000000e+00 0.00 5.702519e+06 5.702368e+06 150.99 NULL
2016 Department Of Education Admin School-Neighborhood Worker 38627.66667 1.158830e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.158830e+05 1.158830e+05 0.00 NULL
2016 Department Of Education Admin Secretary 44271.18264 3.984406e+06 47769.85 5.307761e+02 0.000 1643.75 90 0.000000e+00 0.00 4.032176e+06 3.984406e+06 47769.85 NULL
2016 Department Of Education Admin Secretary To Community School Board 46847.04167 1.124329e+06 1750.70 7.294583e+01 0.000 44.75 24 0.000000e+00 0.00 1.126080e+06 1.124329e+06 1750.70 NULL
2016 Department Of Education Admin Secretary To The Chancellor 66595.00000 6.659500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.659500e+04 6.659500e+04 0.00 NULL
2016 Department Of Education Admin Secretary To The Counsel To The Chancellor 88518.00000 8.851800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.851800e+04 8.851800e+04 0.00 NULL
2016 Department Of Education Admin Secretary To The Deputy Chancellor 78752.50000 1.575050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.575050e+05 1.575050e+05 0.00 NULL
2016 Department Of Education Admin Secretary To The Special Commissioner Investigation Nyc Sch 82179.00000 8.217900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.217900e+04 8.217900e+04 0.00 NULL
2016 Department Of Education Admin Senior Estimator 80565.00000 8.056500e+04 2859.91 2.859910e+03 2859.910 60.75 1 2.859910e+03 2859.91 8.342491e+04 8.342491e+04 0.00 NULL
2016 Department Of Education Admin Senior Occupational Therapist 62666.25000 2.506650e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.506650e+05 2.506650e+05 0.00 NULL
2016 Department Of Education Admin Senior Physical Therapist 64040.00000 6.404000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.404000e+04 6.404000e+04 0.00 NULL
2016 Department Of Education Admin Senior School Lunch Aide 34562.43885 9.608358e+06 248244.84 8.929671e+02 131.920 10432.25 278 1.319200e+02 36673.76 9.856603e+06 9.645032e+06 211571.08 NULL
2016 Department Of Education Admin Senior School-Neighborhood Worker 46202.50000 1.848100e+05 7537.67 1.884418e+03 812.910 168.25 4 8.129100e+02 3251.64 1.923477e+05 1.880616e+05 4286.03 NULL
2016 Department Of Education Admin Service Inspector 42778.00000 1.711120e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.711120e+05 1.711120e+05 0.00 NULL
2016 Department Of Education Admin Sign Language Interpreter 77881.56135 1.791276e+06 24078.82 1.046905e+03 930.130 480.75 23 9.301300e+02 21392.99 1.815355e+06 1.812669e+06 2685.83 NULL
2016 Department Of Education Admin Special Assistant To The Chancellor 108961.26667 1.634419e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.634419e+06 1.634419e+06 0.00 NULL
2016 Department Of Education Admin Staff Analyst 58213.66667 1.746410e+05 4.15 1.383333e+00 0.000 0.00 3 0.000000e+00 0.00 1.746451e+05 1.746410e+05 4.15 NULL
2016 Department Of Education Admin Staff Analyst Trainee 43809.00000 4.380900e+04 7021.33 7.021330e+03 7021.330 213.50 1 7.021330e+03 7021.33 5.083033e+04 5.083033e+04 0.00 NULL
2016 Department Of Education Admin Staff Audiologist 65053.00000 6.505300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.505300e+04 6.505300e+04 0.00 NULL
2016 Department Of Education Admin Staff Nurse 46841.96657 4.342250e+07 2604781.06 2.809904e+03 64.120 41047.30 927 6.412000e+01 59439.24 4.602728e+07 4.348194e+07 2545341.82 NULL
2016 Department Of Education Admin Statistician 57342.00000 5.734200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.734200e+04 5.734200e+04 0.00 NULL
2016 Department Of Education Admin Steam Fitter NA NA 521085.08 1.085594e+04 6629.880 3911.50 48 6.629880e+03 318234.24 NA NA NA NULL
2016 Department Of Education Admin Steam Fitter’s Helper NA NA 32625.95 4.660850e+03 721.450 330.50 7 7.214500e+02 5050.15 NA NA NA NULL
2016 Department Of Education Admin Stock Worker 36827.03319 6.260596e+05 12300.25 7.235441e+02 0.000 656.50 17 0.000000e+00 0.00 6.383598e+05 6.260596e+05 12300.25 NULL
2016 Department Of Education Admin Strategi Initiative Specialist 55000.00000 5.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.500000e+04 5.500000e+04 0.00 NULL
2016 Department Of Education Admin Strategic Initiative Specialist 84337.00000 1.686740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.686740e+05 1.686740e+05 0.00 NULL
2016 Department Of Education Admin Substance Abuse Prevention & Intervention Specialist 55605.23474 1.768246e+07 39467.05 1.241102e+02 0.000 1046.25 318 0.000000e+00 0.00 1.772193e+07 1.768246e+07 39467.05 NULL
2016 Department Of Education Admin Supervising Computer Service Technician 68579.41209 2.468859e+06 63049.70 1.751381e+03 94.655 1296.25 36 9.465500e+01 3407.58 2.531909e+06 2.472266e+06 59642.12 NULL
2016 Department Of Education Admin Supervising Therapist 43210.22363 2.462983e+06 2684.34 4.709368e+01 0.000 12.75 57 0.000000e+00 0.00 2.465667e+06 2.462983e+06 2684.34 NULL
2016 Department Of Education Admin Supervisor 64032.25000 2.561290e+05 13858.03 3.464508e+03 2626.000 297.25 4 2.626000e+03 10504.00 2.699870e+05 2.666330e+05 3354.03 NULL
2016 Department Of Education Admin Supervisor Bricklayer NA NA 17004.00 1.700400e+04 17004.000 315.25 1 1.700400e+04 17004.00 NA NA NA NULL
2016 Department Of Education Admin Supervisor Carpenter NA NA 138847.85 1.157065e+04 11132.680 986.25 12 1.113268e+04 133592.16 NA NA NA NULL
2016 Department Of Education Admin Supervisor Electrician NA NA 219428.51 2.438095e+04 15285.330 2559.00 9 1.528533e+04 137567.97 NA NA NA NULL
2016 Department Of Education Admin Supervisor Of Electrical Installations & Maintenance 71018.90000 1.420378e+06 155237.87 7.761894e+03 6143.795 3413.75 20 6.143795e+03 122875.90 1.575616e+06 1.543254e+06 32361.97 NULL
2016 Department Of Education Admin Supervisor Of Mechanical Installations & Maintenance 73974.70000 1.479494e+06 203043.59 1.015218e+04 8649.345 3764.25 20 8.649345e+03 172986.90 1.682538e+06 1.652481e+06 30056.69 NULL
2016 Department Of Education Admin Supervisor Of Mechanics NA NA 203367.40 8.842061e+03 7363.950 2273.50 23 7.363950e+03 169370.85 NA NA NA NULL
2016 Department Of Education Admin Supervisor Of Nurses 52330.57814 1.569917e+06 22272.05 7.424017e+02 0.000 39.50 30 0.000000e+00 0.00 1.592189e+06 1.569917e+06 22272.05 NULL
2016 Department Of Education Admin Supervisor Of Office Machine Operations 41254.40000 2.062720e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.062720e+05 2.062720e+05 0.00 NULL
2016 Department Of Education Admin Supervisor Of Stock Workers 57574.00000 1.151480e+05 385.39 1.926950e+02 192.695 11.75 2 1.926950e+02 385.39 1.155334e+05 1.155334e+05 0.00 NULL
2016 Department Of Education Admin Supervisor Painter NA NA 32666.43 1.088881e+04 9750.260 428.00 3 9.750260e+03 29250.78 NA NA NA NULL
2016 Department Of Education Admin Supervisor Plasterer NA NA 36623.82 1.831191e+04 18311.910 384.00 2 1.831191e+04 36623.82 NA NA NA NULL
2016 Department Of Education Admin Supervisor Plumber NA NA 169734.99 2.121687e+04 18612.320 1182.00 8 1.861232e+04 148898.56 NA NA NA NULL
2016 Department Of Education Admin Supervisor Roofer NA NA 35332.43 8.833108e+03 4485.205 545.00 4 4.485205e+03 17940.82 NA NA NA NULL
2016 Department Of Education Admin Supervisor Steamfitter NA NA 24724.24 3.532034e+03 1099.250 125.00 7 1.099250e+03 7694.75 NA NA NA NULL
2016 Department Of Education Admin Telecommunication Manager 108401.66667 3.252050e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.252050e+05 3.252050e+05 0.00 NULL
2016 Department Of Education Admin Telecommunications Associate 74584.61111 1.342523e+06 7620.62 4.233678e+02 0.000 166.50 18 0.000000e+00 0.00 1.350144e+06 1.342523e+06 7620.62 NULL
2016 Department Of Education Admin Thermostat Repairer NA NA 57805.02 4.446540e+03 332.000 383.50 13 3.320000e+02 4316.00 NA NA NA NULL
2016 Department Of Education Admin Transportation Inspector 42666.00000 4.266600e+04 5704.48 5.704480e+03 5704.480 223.00 1 5.704480e+03 5704.48 4.837048e+04 4.837048e+04 0.00 NULL
2016 Department Of Finance Accountant 61058.50000 4.884680e+05 3972.54 4.965675e+02 0.000 105.75 8 0.000000e+00 0.00 4.924405e+05 4.884680e+05 3972.54 NULL
2016 Department Of Finance Adm Manager-Non-Mgrl 73180.26027 5.342159e+06 69115.90 9.467932e+02 0.000 1567.00 73 0.000000e+00 0.00 5.411275e+06 5.342159e+06 69115.90 NULL
2016 Department Of Finance Admin Contract Specialist 108500.00000 2.170000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.170000e+05 2.170000e+05 0.00 NULL
2016 Department Of Finance Administrative Accountant 103046.75000 4.121870e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.121870e+05 4.121870e+05 0.00 NULL
2016 Department Of Finance Administrative Assessor 128710.00000 1.029680e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.029680e+06 1.029680e+06 0.00 NULL
2016 Department Of Finance Administrative City Planner 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2016 Department Of Finance Administrative Deputy Register 107829.00000 3.234870e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.234870e+05 3.234870e+05 0.00 NULL
2016 Department Of Finance Administrative Investigator 119801.33333 3.594040e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.594040e+05 3.594040e+05 0.00 NULL
2016 Department Of Finance Administrative Labor Relations Analyst 121009.00000 6.050450e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.050450e+05 6.050450e+05 0.00 NULL
2016 Department Of Finance Administrative Management Auditor 114441.00000 1.144410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.144410e+05 1.144410e+05 0.00 NULL
2016 Department Of Finance Administrative Manager 103699.00000 3.110970e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.110970e+05 3.110970e+05 0.00 NULL
2016 Department Of Finance Administrative Procurement Analyst 87316.33333 2.619490e+05 684.42 2.281400e+02 0.000 13.25 3 0.000000e+00 0.00 2.626334e+05 2.619490e+05 684.42 NULL
2016 Department Of Finance Administrative Public Information Specialist 108883.66667 3.266510e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.266510e+05 3.266510e+05 0.00 NULL
2016 Department Of Finance Administrative Space Analyst 92749.00000 9.274900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.274900e+04 9.274900e+04 0.00 NULL
2016 Department Of Finance Administrative Staff Analyst 98739.99324 1.461352e+07 34161.95 2.308240e+02 0.000 692.25 148 0.000000e+00 0.00 1.464768e+07 1.461352e+07 34161.95 NULL
2016 Department Of Finance Administrative Storekeeper 102932.50000 2.058650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.058650e+05 2.058650e+05 0.00 NULL
2016 Department Of Finance Administrative Supervisor Of Building Maintenance 103803.00000 1.038030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.038030e+05 1.038030e+05 0.00 NULL
2016 Department Of Finance Administrative Tax Auditor 109911.50000 4.176637e+06 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 4.176637e+06 4.176637e+06 0.00 NULL
2016 Department Of Finance Agency Attorney 85473.36364 1.880414e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 1.880414e+06 1.880414e+06 0.00 NULL
2016 Department Of Finance Agency Attorney Interne 63716.50000 1.274330e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.274330e+05 1.274330e+05 0.00 NULL
2016 Department Of Finance Agency Chief Contracting Officer 116075.50000 2.321510e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.321510e+05 2.321510e+05 0.00 NULL
2016 Department Of Finance Assistant City Assessor 38464.58824 1.961694e+06 12564.28 2.463584e+02 0.000 461.50 51 0.000000e+00 0.00 1.974258e+06 1.961694e+06 12564.28 NULL
2016 Department Of Finance Assistant Commissioner 159233.00000 4.776990e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.776990e+05 4.776990e+05 0.00 NULL
2016 Department Of Finance Associate Fraud Investigator 66379.21739 1.526722e+06 90747.16 3.945529e+03 407.540 2012.25 23 4.075400e+02 9373.42 1.617469e+06 1.536095e+06 81373.74 NULL
2016 Department Of Finance Associate Staff Analyst 82183.38889 2.958602e+06 15129.76 4.202711e+02 0.000 272.50 36 0.000000e+00 0.00 2.973732e+06 2.958602e+06 15129.76 NULL
2016 Department Of Finance Asst Commissioner 159244.00000 1.592440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.592440e+05 1.592440e+05 0.00 NULL
2016 Department Of Finance Attorney At Law 98693.50000 1.381709e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.381709e+06 1.381709e+06 0.00 NULL
2016 Department Of Finance Cashier 42645.00000 2.132250e+05 146.11 2.922200e+01 0.150 6.75 5 1.500000e-01 0.75 2.133711e+05 2.132258e+05 145.36 NULL
2016 Department Of Finance Certified It Administrator 104384.00000 4.175360e+05 2578.30 6.445750e+02 464.285 48.75 4 4.642850e+02 1857.14 4.201143e+05 4.193931e+05 721.16 NULL
2016 Department Of Finance Certified Local Area Network Administrator 90621.50000 1.812430e+05 12381.90 6.190950e+03 6190.950 218.50 2 6.190950e+03 12381.90 1.936249e+05 1.936249e+05 0.00 NULL
2016 Department Of Finance Chief Review Assessor 130047.00000 1.300470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300470e+05 1.300470e+05 0.00 NULL
2016 Department Of Finance City Assessor 73005.79808 7.592603e+06 253138.49 2.434024e+03 927.585 4762.50 104 9.275850e+02 96468.84 7.845741e+06 7.689072e+06 156669.65 NULL
2016 Department Of Finance City Collector 174815.00000 1.748150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.748150e+05 1.748150e+05 0.00 NULL
2016 Department Of Finance City Laborer NA NA 63663.18 4.547370e+03 957.650 1133.00 14 9.576500e+02 13407.10 NA NA NA NULL
2016 Department Of Finance City Planning Technician 42554.33333 1.276630e+05 106.97 3.565667e+01 0.000 3.75 3 0.000000e+00 0.00 1.277700e+05 1.276630e+05 106.97 NULL
2016 Department Of Finance City Register 160633.00000 1.606330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.606330e+05 1.606330e+05 0.00 NULL
2016 Department Of Finance City Research Scientist 81127.07143 1.135779e+06 4676.28 3.340200e+02 0.000 80.75 14 0.000000e+00 0.00 1.140455e+06 1.135779e+06 4676.28 NULL
2016 Department Of Finance City Tax Auditor 62067.90448 2.079275e+07 50991.59 1.522137e+02 0.000 1230.25 335 0.000000e+00 0.00 2.084374e+07 2.079275e+07 50991.59 NULL
2016 Department Of Finance Clerical Aide 35153.70588 1.195226e+06 750.16 2.206353e+01 0.000 44.00 34 0.000000e+00 0.00 1.195976e+06 1.195226e+06 750.16 NULL
2016 Department Of Finance Clerical Associate 40500.05096 1.271702e+07 18851.23 6.003576e+01 0.000 732.50 314 0.000000e+00 0.00 1.273587e+07 1.271702e+07 18851.23 NULL
2016 Department Of Finance College Aide 5202.30406 6.242765e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 6.242765e+04 6.242765e+04 0.00 NULL
2016 Department Of Finance Commissioner Of Finance 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Department Of Finance Community Assistant 34763.66667 1.042910e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.042910e+05 1.042910e+05 0.00 NULL
2016 Department Of Finance Community Associate 47560.88889 4.280480e+05 11874.84 1.319427e+03 442.490 432.75 9 4.424900e+02 3982.41 4.399228e+05 4.320304e+05 7892.43 NULL
2016 Department Of Finance Community Coordinator 67944.00000 1.358880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.358880e+05 1.358880e+05 0.00 NULL
2016 Department Of Finance Community Service Aide 32063.00000 3.206300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.206300e+04 3.206300e+04 0.00 NULL
2016 Department Of Finance Computer Aide-Non-Spvr 49526.00000 1.981040e+05 92.49 2.312250e+01 0.000 3.50 4 0.000000e+00 0.00 1.981965e+05 1.981040e+05 92.49 NULL
2016 Department Of Finance Computer Associate 68881.97561 2.824161e+06 22679.42 5.531566e+02 0.000 525.00 41 0.000000e+00 0.00 2.846840e+06 2.824161e+06 22679.42 NULL
2016 Department Of Finance Computer Programmer Analyst 66630.85714 4.664160e+05 820.53 1.172186e+02 0.000 21.50 7 0.000000e+00 0.00 4.672365e+05 4.664160e+05 820.53 NULL
2016 Department Of Finance Computer Specialist 97152.66667 9.618114e+06 53964.02 5.450911e+02 0.000 969.75 99 0.000000e+00 0.00 9.672078e+06 9.618114e+06 53964.02 NULL
2016 Department Of Finance Computer Systems Manager 123751.09449 1.571639e+07 0.00 0.000000e+00 0.000 0.00 127 0.000000e+00 0.00 1.571639e+07 1.571639e+07 0.00 NULL
2016 Department Of Finance Counsel 182066.00000 1.820660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.820660e+05 1.820660e+05 0.00 NULL
2016 Department Of Finance Deputy City Sheriff - Non-Spvr 66831.66883 1.029208e+07 1439349.98 9.346428e+03 4653.110 26151.81 154 4.653110e+03 716578.94 1.173143e+07 1.100866e+07 722771.04 NULL
2016 Department Of Finance Deputy Commissioner 191098.75000 7.643950e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.643950e+05 7.643950e+05 0.00 NULL
2016 Department Of Finance Director Of Public Information 117979.00000 1.179790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.179790e+05 1.179790e+05 0.00 NULL
2016 Department Of Finance Examiner Of Accounts 55825.00000 5.582500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.582500e+04 5.582500e+04 0.00 NULL
2016 Department Of Finance Exec Asst To The Commissioner Of Finance 62423.00000 6.242300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.242300e+04 6.242300e+04 0.00 NULL
2016 Department Of Finance Executive Agency Counsel 135262.10526 2.569980e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.569980e+06 2.569980e+06 0.00 NULL
2016 Department Of Finance Executive Program Specialist 179375.00000 1.793750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.793750e+05 1.793750e+05 0.00 NULL
2016 Department Of Finance Fraud Investigator 48290.00000 4.829000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.829000e+04 4.829000e+04 0.00 NULL
2016 Department Of Finance Graphic Artist 90513.00000 9.051300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.051300e+04 9.051300e+04 0.00 NULL
2016 Department Of Finance Hearing Officer 50925.04220 6.111005e+06 0.00 0.000000e+00 0.000 0.00 120 0.000000e+00 0.00 6.111005e+06 6.111005e+06 0.00 NULL
2016 Department Of Finance Investigator 50506.33333 1.515190e+05 1676.25 5.587500e+02 0.000 61.75 3 0.000000e+00 0.00 1.531952e+05 1.515190e+05 1676.25 NULL
2016 Department Of Finance Investigator Empl Disc 75033.00000 7.503300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.503300e+04 7.503300e+04 0.00 NULL
2016 Department Of Finance Labor Relations Analyst 52533.00000 5.253300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.253300e+04 5.253300e+04 0.00 NULL
2016 Department Of Finance Management Auditor 69922.50000 2.796900e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.796900e+05 2.796900e+05 0.00 NULL
2016 Department Of Finance Mortgage Tax Examiner 59425.00000 5.942500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.942500e+04 5.942500e+04 0.00 NULL
2016 Department Of Finance Motor Vehicle Operator 37776.50000 1.511060e+05 1363.45 3.408625e+02 0.000 46.50 4 0.000000e+00 0.00 1.524695e+05 1.511060e+05 1363.45 NULL
2016 Department Of Finance Motor Vehicle Supervisor 52397.00000 5.239700e+04 5438.32 5.438320e+03 5438.320 143.00 1 5.438320e+03 5438.32 5.783532e+04 5.783532e+04 0.00 NULL
2016 Department Of Finance Principal Administrative Associate 57182.82955 1.509627e+07 239824.89 9.084276e+02 0.000 5994.00 264 0.000000e+00 0.00 1.533609e+07 1.509627e+07 239824.89 NULL
2016 Department Of Finance Procurement Analyst 64576.66667 3.874600e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.874600e+05 3.874600e+05 0.00 NULL
2016 Department Of Finance Public Records Aide 37827.00000 3.782700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.782700e+04 3.782700e+04 0.00 NULL
2016 Department Of Finance Research Assistant 54120.00000 5.412000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.412000e+04 5.412000e+04 0.00 NULL
2016 Department Of Finance Secretary 46498.50000 2.789910e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.789910e+05 2.789910e+05 0.00 NULL
2016 Department Of Finance Secretary Of Comm 84270.00000 8.427000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.427000e+04 8.427000e+04 0.00 NULL
2016 Department Of Finance Secretary To Deputy Commissioner 61946.50000 1.238930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.238930e+05 1.238930e+05 0.00 NULL
2016 Department Of Finance Senior Estimator 79398.00000 2.381940e+05 9164.04 3.054680e+03 2763.380 171.50 3 2.763380e+03 8290.14 2.473580e+05 2.464841e+05 873.90 NULL
2016 Department Of Finance Senior Photographer 55345.00000 5.534500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.534500e+04 5.534500e+04 0.00 NULL
2016 Department Of Finance Space Analyst 66625.00000 6.662500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.662500e+04 6.662500e+04 0.00 NULL
2016 Department Of Finance Staff Analyst 63899.78571 1.789194e+06 12797.50 4.570536e+02 0.000 268.25 28 0.000000e+00 0.00 1.801992e+06 1.789194e+06 12797.50 NULL
2016 Department Of Finance Staff Analyst Trainee 39636.50000 7.927300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.927300e+04 7.927300e+04 0.00 NULL
2016 Department Of Finance Summer College Intern 1989.86188 2.387834e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 2.387834e+04 2.387834e+04 0.00 NULL
2016 Department Of Finance Summer Graduate Intern 2338.19190 1.870554e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.870554e+04 1.870554e+04 0.00 NULL
2016 Department Of Finance Supervising Computer Service Technician 63889.00000 6.388900e+04 1439.28 1.439280e+03 1439.280 31.50 1 1.439280e+03 1439.28 6.532828e+04 6.532828e+04 0.00 NULL
2016 Department Of Finance Supervising Deputy Sheriff - Al 1 Only 40 Hr 101482.58824 1.725204e+06 236017.39 1.388338e+04 4515.790 2970.00 17 4.515790e+03 76768.43 1.961221e+06 1.801972e+06 159248.96 NULL
2016 Department Of Finance Supervising Special Officer 53346.00000 3.200760e+05 16519.62 2.753270e+03 399.555 429.75 6 3.995550e+02 2397.33 3.365956e+05 3.224733e+05 14122.29 NULL
2016 Department Of Finance Tax Map Cartographer 64918.00000 1.947540e+05 3130.94 1.043647e+03 0.000 69.75 3 0.000000e+00 0.00 1.978849e+05 1.947540e+05 3130.94 NULL
2016 Department Of Finance Telecommunications Associate 45132.00000 4.513200e+04 512.23 5.122300e+02 512.230 16.25 1 5.122300e+02 512.23 4.564423e+04 4.564423e+04 0.00 NULL
2016 Department Of Investigation Adm Manager-Non-Mgrl 71431.62500 5.714530e+05 6020.61 7.525762e+02 281.755 160.00 8 2.817550e+02 2254.04 5.774736e+05 5.737070e+05 3766.57 NULL
2016 Department Of Investigation Administrative Manager 117380.50000 2.347610e+05 1396.36 6.981800e+02 698.180 25.75 2 6.981800e+02 1396.36 2.361574e+05 2.361574e+05 0.00 NULL
2016 Department Of Investigation Administrative Public Information Specialist 120000.00000 3.600000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.600000e+05 3.600000e+05 0.00 NULL
2016 Department Of Investigation Administrative Staff Analyst 110866.66667 9.978000e+05 3670.62 4.078467e+02 0.000 72.75 9 0.000000e+00 0.00 1.001471e+06 9.978000e+05 3670.62 NULL
2016 Department Of Investigation Assistant Commissioner 190000.00000 1.900000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.900000e+05 1.900000e+05 0.00 NULL
2016 Department Of Investigation Associate Inspector 67980.00000 6.798000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.798000e+04 6.798000e+04 0.00 NULL
2016 Department Of Investigation Associate Staff Analyst 95178.50000 1.903570e+05 9.19 4.595000e+00 4.595 0.00 2 4.595000e+00 9.19 1.903662e+05 1.903662e+05 0.00 NULL
2016 Department Of Investigation Certified It Administrator 97375.00000 9.737500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.737500e+04 9.737500e+04 0.00 NULL
2016 Department Of Investigation Clerical Associate 47503.85714 3.325270e+05 1008.63 1.440900e+02 38.110 34.25 7 3.811000e+01 266.77 3.335356e+05 3.327938e+05 741.86 NULL
2016 Department Of Investigation Commissioner 214413.00000 2.144130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.144130e+05 2.144130e+05 0.00 NULL
2016 Department Of Investigation Community Assistant 26939.91800 1.077597e+05 2690.28 6.725700e+02 381.915 163.75 4 3.819150e+02 1527.66 1.104500e+05 1.092873e+05 1162.62 NULL
2016 Department Of Investigation Community Associate 43305.56000 1.082639e+06 28857.64 1.154306e+03 21.890 1294.25 25 2.189000e+01 547.25 1.111497e+06 1.083186e+06 28310.39 NULL
2016 Department Of Investigation Community Coordinator 61225.00000 1.836750e+05 3613.91 1.204637e+03 116.290 109.25 3 1.162900e+02 348.87 1.872889e+05 1.840239e+05 3265.04 NULL
2016 Department Of Investigation Computer Associate 67634.33333 4.058060e+05 2637.83 4.396383e+02 0.000 61.00 6 0.000000e+00 0.00 4.084438e+05 4.058060e+05 2637.83 NULL
2016 Department Of Investigation Computer Specialist 100672.80000 5.033640e+05 12494.39 2.498878e+03 0.000 177.00 5 0.000000e+00 0.00 5.158584e+05 5.033640e+05 12494.39 NULL
2016 Department Of Investigation Computer Systems Manager 118895.83333 7.133750e+05 121.53 2.025500e+01 0.000 0.00 6 0.000000e+00 0.00 7.134965e+05 7.133750e+05 121.53 NULL
2016 Department Of Investigation Confidential Investigator 59155.04938 4.791559e+06 241854.70 2.985860e+03 1025.730 6967.50 81 1.025730e+03 83084.13 5.033414e+06 4.874643e+06 158770.57 NULL
2016 Department Of Investigation Confidential Secretary To The Deputy Commissioner 54717.66667 1.641530e+05 1109.69 3.698967e+02 58.070 41.25 3 5.807000e+01 174.21 1.652627e+05 1.643272e+05 935.48 NULL
2016 Department Of Investigation Deputy Commissioner 202000.00000 2.020000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.020000e+05 2.020000e+05 0.00 NULL
2016 Department Of Investigation Deputy Inspector General 107361.70000 2.147234e+06 16141.59 8.070795e+02 0.000 300.00 20 0.000000e+00 0.00 2.163376e+06 2.147234e+06 16141.59 NULL
2016 Department Of Investigation Examiner Of Accounts 80128.33333 2.403850e+05 12488.92 4.162973e+03 4069.680 259.25 3 4.069680e+03 12209.04 2.528739e+05 2.525940e+05 279.88 NULL
2016 Department Of Investigation Examining Attorney 97872.57895 1.859579e+06 6376.99 3.356311e+02 0.000 108.75 19 0.000000e+00 0.00 1.865956e+06 1.859579e+06 6376.99 NULL
2016 Department Of Investigation Executive Director 150359.00000 1.503590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503590e+05 1.503590e+05 0.00 NULL
2016 Department Of Investigation Inspector General 129105.38462 3.356740e+06 9635.01 3.705773e+02 0.000 182.00 26 0.000000e+00 0.00 3.366375e+06 3.356740e+06 9635.01 NULL
2016 Department Of Investigation Office Machine Aide 40888.00000 4.088800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.088800e+04 4.088800e+04 0.00 NULL
2016 Department Of Investigation Principal Administrative Associate 65900.36364 7.249040e+05 10055.60 9.141455e+02 294.370 277.50 11 2.943700e+02 3238.07 7.349596e+05 7.281421e+05 6817.53 NULL
2016 Department Of Investigation Procurement Analyst 67930.50000 1.358610e+05 169.68 8.484000e+01 84.840 7.00 2 8.484000e+01 169.68 1.360307e+05 1.360307e+05 0.00 NULL
2016 Department Of Investigation Secretary 49166.66667 1.475000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.475000e+05 1.475000e+05 0.00 NULL
2016 Department Of Investigation Special Commissioner Of Investigation-Nyc School Dist. Doi 207721.00000 2.077210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.077210e+05 2.077210e+05 0.00 NULL
2016 Department Of Investigation Special Investigator 71553.50495 7.226904e+06 337573.70 3.342314e+03 1151.980 7810.25 101 1.151980e+03 116349.98 7.564478e+06 7.343254e+06 221223.72 NULL
2016 Department Of Investigation Stock Worker 34165.00000 3.416500e+04 54.72 5.472000e+01 54.720 2.00 1 5.472000e+01 54.72 3.421972e+04 3.421972e+04 0.00 NULL
2016 Department Of Juvenile Justice Associate Juvenile Counselor 49528.00000 9.905600e+04 3450.31 1.725155e+03 1725.155 0.00 2 1.725155e+03 3450.31 1.025063e+05 1.025063e+05 0.00 NULL
2016 Department Of Juvenile Justice Institutional Aide 33792.00000 6.758400e+04 1774.38 8.871900e+02 887.190 0.00 2 8.871900e+02 1774.38 6.935838e+04 6.935838e+04 0.00 NULL
2016 Department Of Juvenile Justice Juvenile Counselor 40244.05333 3.018304e+06 37231.07 4.964143e+02 357.320 0.00 75 3.573200e+02 26799.00 3.055535e+06 3.045103e+06 10432.07 NULL
2016 Department Of Juvenile Justice Plumber NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2016 Department Of Juvenile Justice Supervisor Ii 61775.00000 6.177500e+04 0.46 4.600000e-01 0.460 0.00 1 4.600000e-01 0.46 6.177546e+04 6.177546e+04 0.00 NULL
2016 Department Of Probation Adm Manager-Non-Mgrl 67081.66667 6.037350e+05 7780.41 8.644900e+02 0.000 214.00 9 0.000000e+00 0.00 6.115154e+05 6.037350e+05 7780.41 NULL
2016 Department Of Probation Admin Contract Specialist 55000.00000 5.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.500000e+04 5.500000e+04 0.00 NULL
2016 Department Of Probation Administrative Director Of Social Services 134062.50000 2.681250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.681250e+05 2.681250e+05 0.00 NULL
2016 Department Of Probation Administrative Probation Officer 90831.71429 3.814932e+06 0.00 0.000000e+00 0.000 0.00 42 0.000000e+00 0.00 3.814932e+06 3.814932e+06 0.00 NULL
2016 Department Of Probation Administrative Procurement Analyst 77267.00000 7.726700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.726700e+04 7.726700e+04 0.00 NULL
2016 Department Of Probation Administrative Public Information Specialist 82576.50000 1.651530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.651530e+05 1.651530e+05 0.00 NULL
2016 Department Of Probation Administrative Staff Analyst 92793.20000 1.855864e+06 9542.84 4.771420e+02 0.000 226.50 20 0.000000e+00 0.00 1.865407e+06 1.855864e+06 9542.84 NULL
2016 Department Of Probation Agency Attorney 79860.14286 5.590210e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.590210e+05 5.590210e+05 0.00 NULL
2016 Department Of Probation Agency Chief Contracting Officer 112750.00000 1.127500e+05 5.19 5.190000e+00 5.190 0.00 1 5.190000e+00 5.19 1.127552e+05 1.127552e+05 0.00 NULL
2016 Department Of Probation Assistant Director Of Administration 92491.00000 9.249100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.249100e+04 9.249100e+04 0.00 NULL
2016 Department Of Probation Associate Staff Analyst 86243.12500 6.899450e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.899450e+05 6.899450e+05 0.00 NULL
2016 Department Of Probation Attorney At Law 84265.00000 3.370600e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.370600e+05 3.370600e+05 0.00 NULL
2016 Department Of Probation Bookkeeper 45072.00000 4.507200e+04 878.52 8.785200e+02 878.520 44.00 1 8.785200e+02 878.52 4.595052e+04 4.595052e+04 0.00 NULL
2016 Department Of Probation City Attendant 37517.00000 3.751700e+04 5860.82 5.860820e+03 5860.820 209.50 1 5.860820e+03 5860.82 4.337782e+04 4.337782e+04 0.00 NULL
2016 Department Of Probation City Laborer NA NA 0.00 0.000000e+00 0.000 5.50 1 0.000000e+00 0.00 NA NA NA NULL
2016 Department Of Probation City Research Scientist 89571.50000 1.791430e+05 18959.39 9.479695e+03 9479.695 393.75 2 9.479695e+03 18959.39 1.981024e+05 1.981024e+05 0.00 NULL
2016 Department Of Probation Clerical Associate 37899.10417 1.819157e+06 8735.19 1.819831e+02 0.000 348.50 48 0.000000e+00 0.00 1.827892e+06 1.819157e+06 8735.19 NULL
2016 Department Of Probation College Aide 4237.81720 2.966472e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.966472e+04 2.966472e+04 0.00 NULL
2016 Department Of Probation Community Associate 43024.05000 8.604810e+05 8657.67 4.328835e+02 2.620 314.00 20 2.620000e+00 52.40 8.691387e+05 8.605334e+05 8605.27 NULL
2016 Department Of Probation Community Coordinator 77070.50000 4.624230e+05 1149.37 1.915617e+02 0.000 24.00 6 0.000000e+00 0.00 4.635724e+05 4.624230e+05 1149.37 NULL
2016 Department Of Probation Community Service Aide 27098.53846 3.522810e+05 355.87 2.737462e+01 0.000 27.00 13 0.000000e+00 0.00 3.526369e+05 3.522810e+05 355.87 NULL
2016 Department Of Probation Computer Associate 77523.00000 7.752300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.752300e+04 7.752300e+04 0.00 NULL
2016 Department Of Probation Computer Specialist 92749.57143 6.492470e+05 73314.82 1.047355e+04 2014.670 1060.00 7 2.014670e+03 14102.69 7.225618e+05 6.633497e+05 59212.13 NULL
2016 Department Of Probation Computer Systems Manager 122656.00000 1.226560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.226560e+05 1.226560e+05 0.00 NULL
2016 Department Of Probation Counsel 162929.00000 1.629290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.629290e+05 1.629290e+05 0.00 NULL
2016 Department Of Probation Custodian 71763.00000 7.176300e+04 679.57 6.795700e+02 679.570 9.00 1 6.795700e+02 679.57 7.244257e+04 7.244257e+04 0.00 NULL
2016 Department Of Probation Deputy Director Of Probation 174041.33333 5.221240e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.221240e+05 5.221240e+05 0.00 NULL
2016 Department Of Probation Director Of Probation 205868.00000 2.058680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.058680e+05 2.058680e+05 0.00 NULL
2016 Department Of Probation Executive Agency Counsel 126566.66667 3.797000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.797000e+05 3.797000e+05 0.00 NULL
2016 Department Of Probation Executive Director 114475.00000 1.144750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.144750e+05 1.144750e+05 0.00 NULL
2016 Department Of Probation Executive Director Of Administration 143521.50000 2.870430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.870430e+05 2.870430e+05 0.00 NULL
2016 Department Of Probation Executive Program Specialist 112550.00000 1.125500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.125500e+05 1.125500e+05 0.00 NULL
2016 Department Of Probation Principal Administrative Associate 52395.17073 2.148202e+06 22516.76 5.491893e+02 0.000 633.00 41 0.000000e+00 0.00 2.170719e+06 2.148202e+06 22516.76 NULL
2016 Department Of Probation Probation Assistant 27177.20000 1.358860e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.358860e+05 1.358860e+05 0.00 NULL
2016 Department Of Probation Probation Officer 58526.05253 3.119439e+07 262045.31 4.916422e+02 0.000 6267.50 533 0.000000e+00 0.00 3.145643e+07 3.119439e+07 262045.31 NULL
2016 Department Of Probation Probation Officer Trainee 43255.93750 6.920950e+05 11517.91 7.198694e+02 131.855 325.50 16 1.318550e+02 2109.68 7.036129e+05 6.942047e+05 9408.23 NULL
2016 Department Of Probation Procurement Analyst 53426.66667 1.602800e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.602800e+05 1.602800e+05 0.00 NULL
2016 Department Of Probation Recreation Director 37539.00000 3.753900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.753900e+04 3.753900e+04 0.00 NULL
2016 Department Of Probation Secretary 38000.33333 1.254011e+06 12763.12 3.867612e+02 0.000 447.50 33 0.000000e+00 0.00 1.266774e+06 1.254011e+06 12763.12 NULL
2016 Department Of Probation Senior Consultant 82000.00000 8.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.200000e+04 8.200000e+04 0.00 NULL
2016 Department Of Probation Senior Mental Health Worker 27438.67495 3.292641e+05 1150.23 9.585250e+01 0.000 63.25 12 0.000000e+00 0.00 3.304143e+05 3.292641e+05 1150.23 NULL
2016 Department Of Probation Staff Analyst 61403.87500 4.912310e+05 11.45 1.431250e+00 0.000 0.00 8 0.000000e+00 0.00 4.912425e+05 4.912310e+05 11.45 NULL
2016 Department Of Probation Staff Analyst Trainee 40400.00000 4.040000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.040000e+04 4.040000e+04 0.00 NULL
2016 Department Of Probation Stock Worker 34165.00000 3.416500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.416500e+04 3.416500e+04 0.00 NULL
2016 Department Of Probation Summer College Intern 2846.72775 5.693456e+04 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 5.693456e+04 5.693456e+04 0.00 NULL
2016 Department Of Probation Supervising Computer Service Technician 66797.50000 1.335950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.335950e+05 1.335950e+05 0.00 NULL
2016 Department Of Probation Supervising Probation Officer 72768.76871 1.069701e+07 127665.43 8.684723e+02 0.000 2371.25 147 0.000000e+00 0.00 1.082467e+07 1.069701e+07 127665.43 NULL
2016 Department Of Sanitation Accountant 54276.50000 2.171060e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.171060e+05 2.171060e+05 0.00 NULL
2016 Department Of Sanitation Adm Manager-Non-Mgrl 76447.90909 2.522781e+06 117321.03 3.555183e+03 92.490 2273.75 33 9.249000e+01 3052.17 2.640102e+06 2.525833e+06 114268.86 NULL
2016 Department Of Sanitation Admin Construction Project Manager 88968.00000 8.896800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.896800e+04 8.896800e+04 0.00 NULL
2016 Department Of Sanitation Administrative Accountant 97113.00000 9.711300e+04 -104.52 -1.045200e+02 -104.520 0.00 1 -1.045200e+02 -104.52 9.700848e+04 9.700848e+04 0.00 NULL
2016 Department Of Sanitation Administrative Architect 97354.00000 1.947080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.947080e+05 1.947080e+05 0.00 NULL
2016 Department Of Sanitation Administrative Business Promotion Coordinator 88369.00000 1.767380e+05 1945.99 9.729950e+02 972.995 30.00 2 9.729950e+02 1945.99 1.786840e+05 1.786840e+05 0.00 NULL
2016 Department Of Sanitation Administrative City Planner 133060.50000 2.661210e+05 17506.80 8.753400e+03 8753.400 226.00 2 8.753400e+03 17506.80 2.836278e+05 2.836278e+05 0.00 NULL
2016 Department Of Sanitation Administrative Construction Project Manager 117185.00000 5.859250e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.859250e+05 5.859250e+05 0.00 NULL
2016 Department Of Sanitation Administrative Engineer 144463.62500 1.155709e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.155709e+06 1.155709e+06 0.00 NULL
2016 Department Of Sanitation Administrative Management Auditor 122428.00000 1.224280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.224280e+05 1.224280e+05 0.00 NULL
2016 Department Of Sanitation Administrative Manager 116666.20000 5.833310e+05 17.01 3.402000e+00 0.000 0.00 5 0.000000e+00 0.00 5.833480e+05 5.833310e+05 17.01 NULL
2016 Department Of Sanitation Administrative Procurement Analyst 95332.00000 9.533200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.533200e+04 9.533200e+04 0.00 NULL
2016 Department Of Sanitation Administrative Project Manager 134483.71429 9.413860e+05 217.89 3.112714e+01 0.000 4.25 7 0.000000e+00 0.00 9.416039e+05 9.413860e+05 217.89 NULL
2016 Department Of Sanitation Administrative Public Information Specialist 135979.60000 6.798980e+05 4200.11 8.400220e+02 0.000 90.25 5 0.000000e+00 0.00 6.840981e+05 6.798980e+05 4200.11 NULL
2016 Department Of Sanitation Administrative Sanitation Enforcement Agent 88811.00000 8.881100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.881100e+04 8.881100e+04 0.00 NULL
2016 Department Of Sanitation Administrative Staff Analyst 89923.75312 6.924129e+06 143916.65 1.869047e+03 0.770 2199.25 77 7.700000e-01 59.29 7.068046e+06 6.924188e+06 143857.36 NULL
2016 Department Of Sanitation Administrative Supervisor Of Building Maintenance 88432.00000 8.843200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.843200e+04 8.843200e+04 0.00 NULL
2016 Department Of Sanitation Agency Attorney 93043.11111 8.373880e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.373880e+05 8.373880e+05 0.00 NULL
2016 Department Of Sanitation Agency Chief Contracting Officer 122500.00000 1.225000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.225000e+05 1.225000e+05 0.00 NULL
2016 Department Of Sanitation Architect 84104.00000 8.410400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.410400e+04 8.410400e+04 0.00 NULL
2016 Department Of Sanitation Assistant Architect 58717.00000 1.174340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.174340e+05 1.174340e+05 0.00 NULL
2016 Department Of Sanitation Assistant Civil Engineer 59792.33333 3.587540e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.587540e+05 3.587540e+05 0.00 NULL
2016 Department Of Sanitation Assistant Electrical Engineer 65787.50000 1.315750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.315750e+05 1.315750e+05 0.00 NULL
2016 Department Of Sanitation Assistant Mechanical Engineer 60181.50000 1.203630e+05 4424.48 2.212240e+03 2212.240 103.50 2 2.212240e+03 4424.48 1.247875e+05 1.247875e+05 0.00 NULL
2016 Department Of Sanitation Associate Director-Operational Services 95307.00000 9.530700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.530700e+04 9.530700e+04 0.00 NULL
2016 Department Of Sanitation Associate Project Manager 81353.70000 8.135370e+05 9010.48 9.010480e+02 0.000 168.50 10 0.000000e+00 0.00 8.225475e+05 8.135370e+05 9010.48 NULL
2016 Department Of Sanitation Associate Public Information Specialist 74878.50000 1.497570e+05 6227.33 3.113665e+03 3113.665 113.75 2 3.113665e+03 6227.33 1.559843e+05 1.559843e+05 0.00 NULL
2016 Department Of Sanitation Associate Public Records Officer 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2016 Department Of Sanitation Associate Quality Assurance Specialist 71771.00000 7.177100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.177100e+04 7.177100e+04 0.00 NULL
2016 Department Of Sanitation Associate Retirement Benefits Examiner 53211.00000 5.321100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.321100e+04 5.321100e+04 0.00 NULL
2016 Department Of Sanitation Associate Sanitation Enforcement Agent 45359.37288 2.676203e+06 219402.96 3.718694e+03 3155.990 6332.45 59 3.155990e+03 186203.41 2.895606e+06 2.862406e+06 33199.55 NULL
2016 Department Of Sanitation Associate Staff Analyst 77789.46429 2.178105e+06 54806.90 1.957389e+03 76.210 996.75 28 7.621000e+01 2133.88 2.232912e+06 2.180239e+06 52673.02 NULL
2016 Department Of Sanitation Attorney At Law 93310.60000 4.665530e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.665530e+05 4.665530e+05 0.00 NULL
2016 Department Of Sanitation Auto Machinist NA NA 218475.31 7.282510e+03 7753.040 3495.87 30 7.282510e+03 218475.31 NA NA NA NULL
2016 Department Of Sanitation Auto Mechanic NA NA 5119463.33 7.539710e+03 7592.190 83166.97 679 7.539710e+03 5119463.33 NA NA NA NULL
2016 Department Of Sanitation Automotive Service Worker 38217.48780 1.566917e+06 95940.11 2.340003e+03 1611.200 3358.75 41 1.611200e+03 66059.20 1.662857e+06 1.632976e+06 29880.91 NULL
2016 Department Of Sanitation Blacksmith NA NA 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2016 Department Of Sanitation Boiler Maker NA NA 17728.20 1.772820e+04 17728.200 259.00 1 1.772820e+04 17728.20 NA NA NA NULL
2016 Department Of Sanitation Bookkeeper 46505.81250 7.440930e+05 2060.51 1.287819e+02 0.000 64.00 16 0.000000e+00 0.00 7.461535e+05 7.440930e+05 2060.51 NULL
2016 Department Of Sanitation Carpenter NA NA 176773.68 9.820760e+03 2101.600 1667.25 18 2.101600e+03 37828.80 NA NA NA NULL
2016 Department Of Sanitation Carriage Upholsterer NA NA 6862.02 3.431010e+03 3431.010 136.00 2 3.431010e+03 6862.02 NA NA NA NULL
2016 Department Of Sanitation Case Mgmt Nurse 88781.50000 1.775630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.775630e+05 1.775630e+05 0.00 NULL
2016 Department Of Sanitation Cement Mason NA NA 36090.22 3.609022e+03 782.660 394.50 10 7.826600e+02 7826.60 NA NA NA NULL
2016 Department Of Sanitation Certified It Administrator 117272.50000 4.690900e+05 134587.83 3.364696e+04 32639.015 2207.75 4 3.263901e+04 130556.06 6.036778e+05 5.996461e+05 4031.77 NULL
2016 Department Of Sanitation Certified It Developer 113329.57143 7.933070e+05 0.00 0.000000e+00 0.000 9.00 7 0.000000e+00 0.00 7.933070e+05 7.933070e+05 0.00 NULL
2016 Department Of Sanitation Certified Local Area Network Administrator 101569.00000 1.015690e+05 53329.42 5.332942e+04 53329.420 920.50 1 5.332942e+04 53329.42 1.548984e+05 1.548984e+05 0.00 NULL
2016 Department Of Sanitation Chaplain 26583.75000 1.063350e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.063350e+05 1.063350e+05 0.00 NULL
2016 Department Of Sanitation Chauffer Attendant 47014.00000 4.701400e+04 2174.93 2.174930e+03 2174.930 80.43 1 2.174930e+03 2174.93 4.918893e+04 4.918893e+04 0.00 NULL
2016 Department Of Sanitation City Attendant 31985.35938 2.047063e+06 77027.80 1.203559e+03 188.095 3443.87 64 1.880950e+02 12038.08 2.124091e+06 2.059101e+06 64989.72 NULL
2016 Department Of Sanitation City Clinician 103829.95000 1.038299e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.038299e+05 1.038299e+05 0.00 NULL
2016 Department Of Sanitation City Deputy Medical Director 168125.00000 1.681250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.681250e+05 1.681250e+05 0.00 NULL
2016 Department Of Sanitation City Laborer NA NA 131600.32 6.580016e+03 4966.195 2519.75 20 4.966195e+03 99323.90 NA NA NA NULL
2016 Department Of Sanitation City Medical Specialist 72132.06658 5.770565e+05 5.70 7.125000e-01 0.000 0.00 8 0.000000e+00 0.00 5.770622e+05 5.770565e+05 5.70 NULL
2016 Department Of Sanitation City Planner 68985.50000 2.759420e+05 1466.38 3.665950e+02 132.245 30.75 4 1.322450e+02 528.98 2.774084e+05 2.764710e+05 937.40 NULL
2016 Department Of Sanitation City Research Scientist 90316.75000 3.612670e+05 32764.46 8.191115e+03 4071.800 509.75 4 4.071800e+03 16287.20 3.940315e+05 3.775542e+05 16477.26 NULL
2016 Department Of Sanitation City Seasonal Aide 365.37291 1.890074e+06 127685.59 2.468308e+01 0.000 6248.75 5173 0.000000e+00 0.00 2.017760e+06 1.890074e+06 127685.59 NULL
2016 Department Of Sanitation Civil Engineer 99247.50000 3.969900e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.969900e+05 3.969900e+05 0.00 NULL
2016 Department Of Sanitation Clerical Aide 30031.68000 7.507920e+05 80434.83 3.217393e+03 2396.490 4071.98 25 2.396490e+03 59912.25 8.312268e+05 8.107042e+05 20522.58 NULL
2016 Department Of Sanitation Clerical Associate 39136.13333 1.056676e+07 1022256.74 3.786136e+03 2345.975 36190.53 270 2.345975e+03 633413.25 1.158901e+07 1.120017e+07 388843.49 NULL
2016 Department Of Sanitation College Aide 7080.33179 5.239446e+05 0.00 0.000000e+00 0.000 0.00 74 0.000000e+00 0.00 5.239446e+05 5.239446e+05 0.00 NULL
2016 Department Of Sanitation Commissioner Of Sanitation 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Department Of Sanitation Community Assistant 32850.67694 4.927602e+05 7300.89 4.867260e+02 0.000 286.02 15 0.000000e+00 0.00 5.000610e+05 4.927602e+05 7300.89 NULL
2016 Department Of Sanitation Community Associate 43048.44737 1.635841e+06 42290.59 1.112910e+03 453.790 1299.13 38 4.537900e+02 17244.02 1.678132e+06 1.653085e+06 25046.57 NULL
2016 Department Of Sanitation Community Coordinator 57964.91489 2.724351e+06 100118.78 2.130187e+03 730.950 2524.00 47 7.309500e+02 34354.65 2.824470e+06 2.758706e+06 65764.13 NULL
2016 Department Of Sanitation Computer Aide-Non-Spvr 47721.00000 1.431630e+05 16969.16 5.656387e+03 5779.670 434.25 3 5.656387e+03 16969.16 1.601322e+05 1.601322e+05 0.00 NULL
2016 Department Of Sanitation Computer Associate 67334.77273 1.481365e+06 86985.28 3.953876e+03 1648.870 1980.02 22 1.648870e+03 36275.14 1.568350e+06 1.517640e+06 50710.14 NULL
2016 Department Of Sanitation Computer Programmer Analyst 73660.00000 7.366000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.366000e+04 7.366000e+04 0.00 NULL
2016 Department Of Sanitation Computer Service Technician 43684.40000 2.184220e+05 11253.70 2.250740e+03 1183.430 364.37 5 1.183430e+03 5917.15 2.296757e+05 2.243391e+05 5336.55 NULL
2016 Department Of Sanitation Computer Specialist 95722.04878 3.924604e+06 353040.92 8.610754e+03 369.450 6214.25 41 3.694500e+02 15147.45 4.277645e+06 3.939751e+06 337893.47 NULL
2016 Department Of Sanitation Computer Systems Manager 137625.87805 5.642661e+06 8965.29 2.186656e+02 0.000 239.75 41 0.000000e+00 0.00 5.651626e+06 5.642661e+06 8965.29 NULL
2016 Department Of Sanitation Construction Laborer NA NA 78598.29 7.859829e+03 6700.430 1436.00 10 6.700430e+03 67004.30 NA NA NA NULL
2016 Department Of Sanitation Construction Project Manager 80888.00000 7.279920e+05 322.81 3.586778e+01 0.000 7.25 9 0.000000e+00 0.00 7.283148e+05 7.279920e+05 322.81 NULL
2016 Department Of Sanitation Counselor 75531.00000 7.553100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.553100e+04 7.553100e+04 0.00 NULL
2016 Department Of Sanitation Custodial Assistant 38337.33333 1.150120e+05 6204.01 2.068003e+03 493.050 198.35 3 4.930500e+02 1479.15 1.212160e+05 1.164911e+05 4724.86 NULL
2016 Department Of Sanitation Custodian 35371.00000 3.537100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.537100e+04 3.537100e+04 0.00 NULL
2016 Department Of Sanitation Dep Dir Mtr Eq Mntc 135127.50000 2.702550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.702550e+05 2.702550e+05 0.00 NULL
2016 Department Of Sanitation Deputy Commissioner 202085.33333 6.062560e+05 18.47 6.156667e+00 0.000 0.00 3 0.000000e+00 0.00 6.062745e+05 6.062560e+05 18.47 NULL
2016 Department Of Sanitation Deputy Director Of Motor Equipment Maintenance 129039.00000 3.871170e+05 6720.75 2.240250e+03 2224.800 67.00 3 2.224800e+03 6674.40 3.938378e+05 3.937914e+05 46.35 NULL
2016 Department Of Sanitation Director Of Building Management 151611.00000 1.516110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.516110e+05 1.516110e+05 0.00 NULL
2016 Department Of Sanitation Director Of Motor Equipment Maintenance 199183.00000 1.991830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.991830e+05 1.991830e+05 0.00 NULL
2016 Department Of Sanitation Director Of Motor Equipment Maintenance-Nm 151297.50000 3.025950e+05 370.80 1.854000e+02 185.400 0.00 2 1.854000e+02 370.80 3.029658e+05 3.029658e+05 0.00 NULL
2016 Department Of Sanitation Economist 64149.00000 6.414900e+04 151.04 1.510400e+02 151.040 3.50 1 1.510400e+02 151.04 6.430004e+04 6.430004e+04 0.00 NULL
2016 Department Of Sanitation Electrical Engineer 92871.00000 9.287100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.287100e+04 9.287100e+04 0.00 NULL
2016 Department Of Sanitation Electrician NA NA 485251.43 8.366404e+03 7464.990 7625.45 58 7.464990e+03 432969.42 NA NA NA NULL
2016 Department Of Sanitation Estimator 59324.00000 5.932400e+04 800.02 8.000200e+02 800.020 17.03 1 8.000200e+02 800.02 6.012402e+04 6.012402e+04 0.00 NULL
2016 Department Of Sanitation Executive Agency Counsel 131153.25000 5.246130e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.246130e+05 5.246130e+05 0.00 NULL
2016 Department Of Sanitation Executive Assistant To The Commissioner 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2016 Department Of Sanitation General Superintendent 127520.12847 3.672580e+07 3586665.50 1.245370e+04 12228.935 40506.23 288 1.222893e+04 3521933.28 4.031246e+07 4.024773e+07 64732.22 NULL
2016 Department Of Sanitation Graphic Artist 69734.80000 3.486740e+05 3295.26 6.590520e+02 172.410 74.25 5 1.724100e+02 862.05 3.519693e+05 3.495360e+05 2433.21 NULL
2016 Department Of Sanitation High Pressure Plant Tender NA NA 50266.05 5.026605e+03 4886.040 833.00 10 4.886040e+03 48860.40 NA NA NA NULL
2016 Department Of Sanitation Incinerator Facility Manager 101225.00000 1.012250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.012250e+05 1.012250e+05 0.00 NULL
2016 Department Of Sanitation Investigator 51627.45455 5.679020e+05 277.70 2.524545e+01 0.000 8.75 11 0.000000e+00 0.00 5.681797e+05 5.679020e+05 277.70 NULL
2016 Department Of Sanitation Job Training Participant 7859.45357 1.163199e+06 810.01 5.473040e+00 0.000 40.00 148 0.000000e+00 0.00 1.164009e+06 1.163199e+06 810.01 NULL
2016 Department Of Sanitation Laboratory Associate 44504.00000 4.450400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.450400e+04 4.450400e+04 0.00 NULL
2016 Department Of Sanitation Laboratory Microbiologist 51826.00000 5.182600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.182600e+04 5.182600e+04 0.00 NULL
2016 Department Of Sanitation Letterer And Sign Painter NA NA 8079.37 4.039685e+03 4039.685 170.50 2 4.039685e+03 8079.37 NA NA NA NULL
2016 Department Of Sanitation Machinist NA NA 108359.75 5.417988e+03 5569.635 1651.83 20 5.417988e+03 108359.75 NA NA NA NULL
2016 Department Of Sanitation Machinist’s Helper NA NA 979.66 4.898300e+02 489.830 16.00 2 4.898300e+02 979.66 NA NA NA NULL
2016 Department Of Sanitation Maintenance Worker NA NA 26588.21 9.847485e+02 811.670 648.50 27 8.116700e+02 21915.09 NA NA NA NULL
2016 Department Of Sanitation Management Auditor 76904.33333 2.307130e+05 50.55 1.685000e+01 0.000 1.00 3 0.000000e+00 0.00 2.307635e+05 2.307130e+05 50.55 NULL
2016 Department Of Sanitation Mechanical Engineer 86912.00000 2.607360e+05 57.63 1.921000e+01 0.000 1.00 3 0.000000e+00 0.00 2.607936e+05 2.607360e+05 57.63 NULL
2016 Department Of Sanitation Medical Director 175099.00000 1.750990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750990e+05 1.750990e+05 0.00 NULL
2016 Department Of Sanitation Medical Record Librarian 45477.30000 4.547730e+05 2576.96 2.576960e+02 0.000 86.25 10 0.000000e+00 0.00 4.573500e+05 4.547730e+05 2576.96 NULL
2016 Department Of Sanitation Metal Work Mechanic 83322.20370 4.499399e+06 405003.45 7.500064e+03 7483.485 6596.75 54 7.483485e+03 404108.19 4.904402e+06 4.903507e+06 895.26 NULL
2016 Department Of Sanitation Motor Vehicle Operator 43516.00000 2.610960e+05 13429.42 2.238237e+03 1982.775 427.99 6 1.982775e+03 11896.65 2.745254e+05 2.729927e+05 1532.77 NULL
2016 Department Of Sanitation Motor Vehicle Supervisor 52397.00000 5.239700e+04 11476.98 1.147698e+04 11476.980 283.50 1 1.147698e+04 11476.98 6.387398e+04 6.387398e+04 0.00 NULL
2016 Department Of Sanitation Office Machine Aide 36504.75000 1.460190e+05 2382.90 5.957250e+02 178.720 94.05 4 1.787200e+02 714.88 1.484019e+05 1.467339e+05 1668.02 NULL
2016 Department Of Sanitation Oiler NA NA 36917.66 9.229415e+03 3991.055 295.00 4 3.991055e+03 15964.22 NA NA NA NULL
2016 Department Of Sanitation Painter NA NA 35502.31 7.100462e+03 7973.990 637.00 5 7.100462e+03 35502.31 NA NA NA NULL
2016 Department Of Sanitation Photographer 52947.00000 5.294700e+04 4226.41 4.226410e+03 4226.410 126.35 1 4.226410e+03 4226.41 5.717341e+04 5.717341e+04 0.00 NULL
2016 Department Of Sanitation Plumber NA NA 170544.65 1.003204e+04 7384.520 1184.50 17 7.384520e+03 125536.84 NA NA NA NULL
2016 Department Of Sanitation Principal Administrative Associate 53664.24615 3.488176e+06 289074.56 4.447301e+03 1626.860 7736.34 65 1.626860e+03 105745.90 3.777251e+06 3.593922e+06 183328.66 NULL
2016 Department Of Sanitation Procurement Analyst 52228.52381 1.096799e+06 36633.70 1.744462e+03 539.400 1086.50 21 5.394000e+02 11327.40 1.133433e+06 1.108126e+06 25306.30 NULL
2016 Department Of Sanitation Project Manager 63132.25000 2.525290e+05 1445.95 3.614875e+02 14.120 34.00 4 1.412000e+01 56.48 2.539750e+05 2.525855e+05 1389.47 NULL
2016 Department Of Sanitation Research Assistant 52858.50000 2.114340e+05 10087.75 2.521938e+03 6.725 228.25 4 6.725000e+00 26.90 2.215218e+05 2.114609e+05 10060.85 NULL
2016 Department Of Sanitation Rubber Tire Repairer NA NA 26863.51 1.580206e+03 417.480 587.75 17 4.174800e+02 7097.16 NA NA NA NULL
2016 Department Of Sanitation Sanitation Compliance Agent 36046.22222 3.244160e+05 20.10 2.233333e+00 0.000 1.00 9 0.000000e+00 0.00 3.244361e+05 3.244160e+05 20.10 NULL
2016 Department Of Sanitation Sanitation Enforcement Agent 35377.71237 1.057794e+07 392621.86 1.313117e+03 325.280 13537.50 299 3.252800e+02 97258.72 1.097056e+07 1.067519e+07 295363.14 NULL
2016 Department Of Sanitation Sanitation Worker 64591.30519 4.757796e+08 71839582.67 9.752862e+03 9147.685 1435170.53 7366 9.147685e+03 67381847.71 5.476191e+08 5.431614e+08 4457734.96 NULL
2016 Department Of Sanitation Secretary 45968.22222 4.137140e+05 13063.01 1.451446e+03 305.150 407.00 9 3.051500e+02 2746.35 4.267770e+05 4.164603e+05 10316.66 NULL
2016 Department Of Sanitation Secretary To The Commissioner 80864.00000 8.086400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.086400e+04 8.086400e+04 0.00 NULL
2016 Department Of Sanitation Senior Automotive Specialist 94813.00000 9.481300e+04 1119.68 1.119680e+03 1119.680 20.55 1 1.119680e+03 1119.68 9.593268e+04 9.593268e+04 0.00 NULL
2016 Department Of Sanitation Senior Estimator 81958.60000 4.097930e+05 110.17 2.203400e+01 0.000 0.00 5 0.000000e+00 0.00 4.099032e+05 4.097930e+05 110.17 NULL
2016 Department Of Sanitation Senior Stationary Engineer NA NA 169108.90 2.818482e+04 29960.930 1128.00 6 2.818482e+04 169108.90 NA NA NA NULL
2016 Department Of Sanitation Sheet Metal Worker NA NA 82419.66 8.241966e+03 7219.215 807.00 10 7.219215e+03 72192.15 NA NA NA NULL
2016 Department Of Sanitation Staff Analyst 61421.71936 1.105591e+06 22232.16 1.235120e+03 0.305 495.00 18 3.050000e-01 5.49 1.127823e+06 1.105596e+06 22226.67 NULL
2016 Department Of Sanitation Staff Analyst Trainee 43809.00000 8.761800e+04 9187.69 4.593845e+03 4593.845 347.65 2 4.593845e+03 9187.69 9.680569e+04 9.680569e+04 0.00 NULL
2016 Department Of Sanitation Staff Nurse 75897.00000 3.035880e+05 90.14 2.253500e+01 0.000 4.67 4 0.000000e+00 0.00 3.036781e+05 3.035880e+05 90.14 NULL
2016 Department Of Sanitation Stationary Engineer NA NA 477865.86 1.137776e+04 9299.815 4384.25 42 9.299815e+03 390592.23 NA NA NA NULL
2016 Department Of Sanitation Statistician 52269.00000 5.226900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.226900e+04 5.226900e+04 0.00 NULL
2016 Department Of Sanitation Steam Fitter NA NA 250249.86 2.502499e+04 23043.250 1668.50 10 2.304325e+04 230432.50 NA NA NA NULL
2016 Department Of Sanitation Steam Fitter’s Helper NA NA 3686.15 3.686150e+03 3686.150 32.00 1 3.686150e+03 3686.15 NA NA NA NULL
2016 Department Of Sanitation Stock Worker 36302.25000 2.904180e+05 35314.81 4.414351e+03 4425.230 1543.03 8 4.414351e+03 35314.81 3.257328e+05 3.257328e+05 0.00 NULL
2016 Department Of Sanitation Summer College Intern 2847.74767 7.404144e+04 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 7.404144e+04 7.404144e+04 0.00 NULL
2016 Department Of Sanitation Summer Graduate Intern 5555.24535 7.221819e+04 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 7.221819e+04 7.221819e+04 0.00 NULL
2016 Department Of Sanitation Supervising Computer Service Technician 63787.00000 1.275740e+05 5464.39 2.732195e+03 2732.195 109.00 2 2.732195e+03 5464.39 1.330384e+05 1.330384e+05 0.00 NULL
2016 Department Of Sanitation Supervisor 87819.41176 9.853338e+07 18449146.67 1.644309e+04 14872.475 262047.50 1122 1.487248e+04 16686916.95 1.169825e+08 1.152203e+08 1762229.72 NULL
2016 Department Of Sanitation Supervisor Carpenter NA NA 71781.92 3.589096e+04 35890.960 637.25 2 3.589096e+04 71781.92 NA NA NA NULL
2016 Department Of Sanitation Supervisor Electrician NA NA 53073.84 1.769128e+04 22768.240 659.50 3 1.769128e+04 53073.84 NA NA NA NULL
2016 Department Of Sanitation Supervisor Of Ironwork 105601.00000 2.112020e+05 36717.18 1.835859e+04 18358.590 488.50 2 1.835859e+04 36717.18 2.479192e+05 2.479192e+05 0.00 NULL
2016 Department Of Sanitation Supervisor Of Mechanics 107596.94667 8.069771e+06 919318.72 1.225758e+04 14473.970 12230.75 75 1.225758e+04 919318.72 8.989090e+06 8.989090e+06 0.00 NULL
2016 Department Of Sanitation Supervisor Of Office Machine Operations 42468.80000 2.123440e+05 394.56 7.891200e+01 0.000 15.75 5 0.000000e+00 0.00 2.127386e+05 2.123440e+05 394.56 NULL
2016 Department Of Sanitation Supervisor Of Stock Workers 50914.77778 9.164660e+05 212017.13 1.177873e+04 10496.490 6062.67 18 1.049649e+04 188936.82 1.128483e+06 1.105403e+06 23080.31 NULL
2016 Department Of Sanitation Supervisor Painter NA NA 7671.00 3.835500e+03 3835.500 112.00 2 3.835500e+03 7671.00 NA NA NA NULL
2016 Department Of Sanitation Supervisor Plumber NA NA 109151.44 3.638381e+04 36162.320 719.00 3 3.616232e+04 108486.96 NA NA NA NULL
2016 Department Of Sanitation Supervisor Sheet Metal Worker NA NA 19588.57 1.958857e+04 19588.570 220.25 1 1.958857e+04 19588.57 NA NA NA NULL
2016 Department Of Sanitation Supervisor Steamfitter NA NA 35852.25 1.792612e+04 17926.125 300.00 2 1.792612e+04 35852.25 NA NA NA NULL
2016 Department Of Sanitation Telecommunications Associate 60813.25000 2.432530e+05 43436.80 1.085920e+04 3434.230 813.50 4 3.434230e+03 13736.92 2.866898e+05 2.569899e+05 29699.88 NULL
2016 Department Of Sanitation Thermostat Repairer NA NA 36190.80 7.238160e+03 6290.590 263.00 5 6.290590e+03 31452.95 NA NA NA NULL
2016 Department Of Sanitation Tractor Operator NA NA 15056.42 5.018807e+03 5931.320 148.50 3 5.018807e+03 15056.42 NA NA NA NULL
2016 Department Of Sanitation Welder NA NA 68629.65 8.578706e+03 7686.625 917.75 8 7.686625e+03 61493.00 NA NA NA NULL
2016 Department Of Transportation ?Supervisor Of Bridge Operations 47823.50000 9.564700e+04 10206.56 5.103280e+03 5103.280 190.00 2 5.103280e+03 10206.56 1.058536e+05 1.058536e+05 0.00 NULL
2016 Department Of Transportation Accountant 52127.88235 1.772348e+06 47992.70 1.411550e+03 0.000 1131.00 34 0.000000e+00 0.00 1.820341e+06 1.772348e+06 47992.70 NULL
2016 Department Of Transportation Adm Manager-Non-Mgrl 72881.47107 8.818658e+06 692295.32 5.721449e+03 1603.160 13879.25 121 1.603160e+03 193982.36 9.510953e+06 9.012640e+06 498312.96 NULL
2016 Department Of Transportation Admin Community Relations Specialist 110550.85714 7.738560e+05 108857.05 1.555101e+04 14954.350 1373.75 7 1.495435e+04 104680.45 8.827131e+05 8.785364e+05 4176.60 NULL
2016 Department Of Transportation Admin Contract Specialist 122048.00000 1.220480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.220480e+05 1.220480e+05 0.00 NULL
2016 Department Of Transportation Admin Inspector 110017.00000 9.901530e+05 15280.14 1.697793e+03 1217.870 202.00 9 1.217870e+03 10960.83 1.005433e+06 1.001114e+06 4319.31 NULL
2016 Department Of Transportation Administrative Accountant 123665.33333 3.709960e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.709960e+05 3.709960e+05 0.00 NULL
2016 Department Of Transportation Administrative City Planner 121970.33333 1.097733e+06 14658.12 1.628680e+03 0.000 237.50 9 0.000000e+00 0.00 1.112391e+06 1.097733e+06 14658.12 NULL
2016 Department Of Transportation Administrative Community Relations Specialist 131334.00000 1.313340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.313340e+05 1.313340e+05 0.00 NULL
2016 Department Of Transportation Administrative Director Of Marine Maintenance 140686.00000 1.406860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.406860e+05 1.406860e+05 0.00 NULL
2016 Department Of Transportation Administrative Engineer 125379.37097 7.773521e+06 70455.65 1.136381e+03 0.000 1109.50 62 0.000000e+00 0.00 7.843977e+06 7.773521e+06 70455.65 NULL
2016 Department Of Transportation Administrative Graphic Artist 101930.00000 1.019300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.019300e+05 1.019300e+05 0.00 NULL
2016 Department Of Transportation Administrative Inspector 132932.00000 1.329320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.329320e+05 1.329320e+05 0.00 NULL
2016 Department Of Transportation Administrative Investigator 102076.50000 2.041530e+05 3780.05 1.890025e+03 1890.025 9.00 2 1.890025e+03 3780.05 2.079330e+05 2.079330e+05 0.00 NULL
2016 Department Of Transportation Administrative Management Auditor 101509.33333 3.045280e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.045280e+05 3.045280e+05 0.00 NULL
2016 Department Of Transportation Administrative Manager 113518.50000 9.081480e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.081480e+05 9.081480e+05 0.00 NULL
2016 Department Of Transportation Administrative Procurement Analyst 101234.55556 9.111110e+05 123196.38 1.368849e+04 12527.230 1888.25 9 1.252723e+04 112745.07 1.034307e+06 1.023856e+06 10451.31 NULL
2016 Department Of Transportation Administrative Project Manager 125681.31111 5.655659e+06 55155.66 1.225681e+03 0.000 722.25 45 0.000000e+00 0.00 5.710815e+06 5.655659e+06 55155.66 NULL
2016 Department Of Transportation Administrative Public Information Specialist 154500.00000 3.090000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.090000e+05 3.090000e+05 0.00 NULL
2016 Department Of Transportation Administrative Real Property Manager 179375.00000 1.793750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.793750e+05 1.793750e+05 0.00 NULL
2016 Department Of Transportation Administrative Staff Analyst 106663.31522 9.813025e+06 423573.95 4.604065e+03 84.655 6501.75 92 8.465500e+01 7788.26 1.023660e+07 9.820813e+06 415785.69 NULL
2016 Department Of Transportation Administrative Superintendent Of Bridge Operations 98611.00000 9.861100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.861100e+04 9.861100e+04 0.00 NULL
2016 Department Of Transportation Administrative Superintendent Of Highway Operations 119983.87500 2.879613e+06 25854.10 1.077254e+03 0.000 407.25 24 0.000000e+00 0.00 2.905467e+06 2.879613e+06 25854.10 NULL
2016 Department Of Transportation Administrative Transportation Coordinator 126762.14286 2.662005e+06 59602.81 2.838229e+03 76.800 639.50 21 7.680000e+01 1612.80 2.721608e+06 2.663618e+06 57990.01 NULL
2016 Department Of Transportation Agency Attorney 83287.88889 1.499182e+06 6919.26 3.844033e+02 0.000 130.00 18 0.000000e+00 0.00 1.506101e+06 1.499182e+06 6919.26 NULL
2016 Department Of Transportation Agency Chief Contracting Officer 167024.00000 1.670240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.670240e+05 1.670240e+05 0.00 NULL
2016 Department Of Transportation Apprentice Inspector 35762.26733 3.611989e+06 299051.56 2.960907e+03 849.050 10831.42 101 8.490500e+02 85754.05 3.911041e+06 3.697743e+06 213297.51 NULL
2016 Department Of Transportation Area Supervisor 100736.61818 5.540514e+06 2592323.04 4.713315e+04 44589.490 32960.75 55 4.458949e+04 2452421.95 8.132837e+06 7.992936e+06 139901.09 NULL
2016 Department Of Transportation Assistant Accountant 51063.00000 5.106300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.106300e+04 5.106300e+04 0.00 NULL
2016 Department Of Transportation Assistant Captain 63014.00000 8.821960e+05 475177.45 3.394125e+04 37734.160 7378.50 14 3.394125e+04 475177.45 1.357373e+06 1.357373e+06 0.00 NULL
2016 Department Of Transportation Assistant City Highway Repairer 30177.22092 1.548091e+07 1592617.11 3.104517e+03 1310.280 48395.66 513 1.310280e+03 672173.64 1.707353e+07 1.615309e+07 920443.47 NULL
2016 Department Of Transportation Assistant Civil Engineer 63058.34091 5.549134e+06 435544.36 4.949368e+03 1121.800 9759.50 88 1.121800e+03 98718.40 5.984678e+06 5.647852e+06 336825.96 NULL
2016 Department Of Transportation Assistant Commissioner 159775.00000 3.195500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.195500e+05 3.195500e+05 0.00 NULL
2016 Department Of Transportation Assistant Director 110179.00000 1.101790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.101790e+05 1.101790e+05 0.00 NULL
2016 Department Of Transportation Assistant Electrical Engineer 63613.51724 1.844792e+06 262970.14 9.067936e+03 4741.170 5835.50 29 4.741170e+03 137493.93 2.107762e+06 1.982286e+06 125476.21 NULL
2016 Department Of Transportation Assistant Highway Transportation Specialist 47999.44444 1.727980e+06 36065.55 1.001821e+03 0.000 1237.00 36 0.000000e+00 0.00 1.764046e+06 1.727980e+06 36065.55 NULL
2016 Department Of Transportation Assistant Mechanical Engineer 65898.88889 5.930900e+05 32967.41 3.663046e+03 1263.180 632.00 9 1.263180e+03 11368.62 6.260574e+05 6.044586e+05 21598.79 NULL
2016 Department Of Transportation Assistant Printing Press Operator 50396.00000 1.007920e+05 3004.58 1.502290e+03 1502.290 81.00 2 1.502290e+03 3004.58 1.037966e+05 1.037966e+05 0.00 NULL
2016 Department Of Transportation Assistant To The Deputy Commissioner 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2016 Department Of Transportation Assistant Urban Designer 60254.46920 2.410179e+05 4544.07 1.136017e+03 733.525 143.75 4 7.335250e+02 2934.10 2.455619e+05 2.439520e+05 1609.97 NULL
2016 Department Of Transportation Associate Inspector 70188.32432 2.596968e+06 511711.72 1.383005e+04 9544.510 9357.75 37 9.544510e+03 353146.87 3.108680e+06 2.950115e+06 158564.85 NULL
2016 Department Of Transportation Associate Investigator 60932.71429 4.265290e+05 47571.93 6.795990e+03 3021.900 1023.25 7 3.021900e+03 21153.30 4.741009e+05 4.476823e+05 26418.63 NULL
2016 Department Of Transportation Associate Operations Communications Specialist 55018.00000 1.650540e+05 39342.49 1.311416e+04 13339.700 893.00 3 1.311416e+04 39342.49 2.043965e+05 2.043965e+05 0.00 NULL
2016 Department Of Transportation Associate Project Manager 79598.87671 5.810718e+06 633998.80 8.684915e+03 6188.590 11862.00 73 6.188590e+03 451767.07 6.444717e+06 6.262485e+06 182231.73 NULL
2016 Department Of Transportation Associate Quality Assurance Specialist 61625.25000 2.465010e+05 64434.75 1.610869e+04 14677.830 1449.25 4 1.467783e+04 58711.32 3.109358e+05 3.052123e+05 5723.43 NULL
2016 Department Of Transportation Associate Staff Analyst 80649.60727 7.984311e+06 489444.56 4.943884e+03 53.260 7791.25 99 5.326000e+01 5272.74 8.473756e+06 7.989584e+06 484171.82 NULL
2016 Department Of Transportation Associate Urban Designer 99589.00000 1.991780e+05 3476.00 1.738000e+03 1738.000 72.50 2 1.738000e+03 3476.00 2.026540e+05 2.026540e+05 0.00 NULL
2016 Department Of Transportation Auto Machinist NA NA 86338.78 4.316939e+04 43169.390 1365.50 2 4.316939e+04 86338.78 NA NA NA NULL
2016 Department Of Transportation Auto Body Worker 50951.00000 1.019020e+05 12004.21 6.002105e+03 6002.105 239.50 2 6.002105e+03 12004.21 1.139062e+05 1.139062e+05 0.00 NULL
2016 Department Of Transportation Auto Mechanic NA NA 1914522.04 1.439490e+04 14875.580 30282.00 133 1.439490e+04 1914522.04 NA NA NA NULL
2016 Department Of Transportation Automotive Service Worker 37452.23529 6.366880e+05 49824.93 2.930878e+03 737.700 1817.75 17 7.377000e+02 12540.90 6.865129e+05 6.492289e+05 37284.03 NULL
2016 Department Of Transportation Blacksmith NA NA 81055.26 2.026381e+04 20601.495 1126.00 4 2.026381e+04 81055.26 NA NA NA NULL
2016 Department Of Transportation Blacksmith’s Helper NA NA 15629.76 1.562976e+04 15629.760 272.00 1 1.562976e+04 15629.76 NA NA NA NULL
2016 Department Of Transportation Boiler Maker NA NA 224261.73 2.491797e+04 27261.630 2998.00 9 2.491797e+04 224261.73 NA NA NA NULL
2016 Department Of Transportation Bookkeeper 44590.00000 4.013100e+05 15787.13 1.754126e+03 27.620 540.25 9 2.762000e+01 248.58 4.170971e+05 4.015586e+05 15538.55 NULL
2016 Department Of Transportation Borough Commissioner 135376.25000 5.415050e+05 1416.40 3.541000e+02 0.000 0.00 4 0.000000e+00 0.00 5.429214e+05 5.415050e+05 1416.40 NULL
2016 Department Of Transportation Bricklayer NA NA 196200.16 2.452502e+04 28103.045 2977.75 8 2.452502e+04 196200.16 NA NA NA NULL
2016 Department Of Transportation Bridge Operator 42292.65169 3.764046e+06 1269616.73 1.426536e+04 12446.710 39092.77 89 1.244671e+04 1107757.19 5.033663e+06 4.871803e+06 161859.54 NULL
2016 Department Of Transportation Bridge Painter NA NA 211706.00 6.615812e+03 6842.000 2191.25 32 6.615812e+03 211706.00 NA NA NA NULL
2016 Department Of Transportation Bridge Repairer And Riveter NA NA 2261357.42 3.768929e+04 40043.815 14836.96 60 3.768929e+04 2261357.42 NA NA NA NULL
2016 Department Of Transportation Captain 70926.00000 1.418520e+06 930504.22 4.652521e+04 46963.080 13274.50 20 4.652521e+04 930504.22 2.349024e+06 2.349024e+06 0.00 NULL
2016 Department Of Transportation Carpenter NA NA 793865.63 3.608480e+04 32659.470 4914.50 22 3.265947e+04 718508.34 NA NA NA NULL
2016 Department Of Transportation Cement Mason NA NA 941210.17 4.706051e+04 48365.175 9059.50 20 4.706051e+04 941210.17 NA NA NA NULL
2016 Department Of Transportation Certified It Administrator 110764.44444 9.968800e+05 186554.71 2.072830e+04 29724.690 2361.50 9 2.072830e+04 186554.71 1.183435e+06 1.183435e+06 0.00 NULL
2016 Department Of Transportation Certified It Developer 110140.20000 5.507010e+05 49236.93 9.847386e+03 4619.120 681.00 5 4.619120e+03 23095.60 5.999379e+05 5.737966e+05 26141.33 NULL
2016 Department Of Transportation Certified Wide Area Network Administrator 102791.00000 1.027910e+05 926.67 9.266700e+02 926.670 9.50 1 9.266700e+02 926.67 1.037177e+05 1.037177e+05 0.00 NULL
2016 Department Of Transportation Chief Marine Engineer 68789.00000 1.788514e+06 1700008.90 6.538496e+04 65861.640 25810.25 26 6.538496e+04 1700008.90 3.488523e+06 3.488523e+06 0.00 NULL
2016 Department Of Transportation Chief Of Staff 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2016 Department Of Transportation City Attendant 33321.83996 1.699414e+06 126218.17 2.474866e+03 843.410 5134.00 51 8.434100e+02 43013.91 1.825632e+06 1.742428e+06 83204.26 NULL
2016 Department Of Transportation City Debris Remover 39753.69825 3.975370e+05 65201.24 6.520124e+03 7256.390 2166.25 10 6.520124e+03 65201.24 4.627382e+05 4.627382e+05 0.00 NULL
2016 Department Of Transportation City Laborer NA NA 352240.55 1.601093e+04 16034.355 6379.75 22 1.601093e+04 352240.55 NA NA NA NULL
2016 Department Of Transportation City Parking Equipment Service Worker 38234.84211 4.358772e+06 803074.35 7.044512e+03 6870.590 26299.71 114 6.870590e+03 783247.26 5.161846e+06 5.142019e+06 19827.09 NULL
2016 Department Of Transportation City Planner 73970.24319 8.210697e+06 380036.05 3.423748e+03 913.300 7618.50 111 9.133000e+02 101376.30 8.590733e+06 8.312073e+06 278659.75 NULL
2016 Department Of Transportation City Planning Technician 43206.66667 1.036960e+06 36136.01 1.505667e+03 138.230 1241.75 24 1.382300e+02 3317.52 1.073096e+06 1.040278e+06 32818.49 NULL
2016 Department Of Transportation City Research Scientist 87412.00000 6.992960e+05 31827.50 3.978438e+03 415.255 513.25 8 4.152550e+02 3322.04 7.311235e+05 7.026180e+05 28505.46 NULL
2016 Department Of Transportation City Tax Auditor 50005.00000 5.000500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000500e+04 5.000500e+04 0.00 NULL
2016 Department Of Transportation Civil Engineer 89043.79464 9.972905e+06 797401.80 7.119659e+03 2009.795 12738.25 112 2.009795e+03 225097.04 1.077031e+07 1.019800e+07 572304.76 NULL
2016 Department Of Transportation Civil Engineering Intern 53533.72414 1.552478e+06 16766.75 5.781638e+02 0.000 607.25 29 0.000000e+00 0.00 1.569245e+06 1.552478e+06 16766.75 NULL
2016 Department Of Transportation Clerical Aide 37132.00000 3.713200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.713200e+04 3.713200e+04 0.00 NULL
2016 Department Of Transportation Clerical Associate 41499.86110 1.178596e+07 608966.75 2.144249e+03 108.725 20769.98 284 1.087250e+02 30877.90 1.239493e+07 1.181684e+07 578088.85 NULL
2016 Department Of Transportation Climber & Pruner 61356.57143 4.294960e+05 106092.08 1.515601e+04 14472.920 2418.00 7 1.447292e+04 101310.44 5.355881e+05 5.308064e+05 4781.64 NULL
2016 Department Of Transportation College Aide 5267.11556 5.688485e+05 0.00 0.000000e+00 0.000 0.00 108 0.000000e+00 0.00 5.688485e+05 5.688485e+05 0.00 NULL
2016 Department Of Transportation College Aide - Assignment Levels Ii And Iii 5311.78267 1.593535e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.593535e+04 1.593535e+04 0.00 NULL
2016 Department Of Transportation Commissioner Of Transportation 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Department Of Transportation Community Assistant 36097.50431 6.497551e+05 49107.48 2.728193e+03 13.665 2096.50 18 1.366500e+01 245.97 6.988626e+05 6.500010e+05 48861.51 NULL
2016 Department Of Transportation Community Associate 41122.95753 2.179517e+06 101949.74 1.923580e+03 156.420 3516.00 53 1.564200e+02 8290.26 2.281466e+06 2.187807e+06 93659.48 NULL
2016 Department Of Transportation Community Coordinator 60399.96747 4.227998e+06 221089.95 3.158428e+03 1064.270 5130.25 70 1.064270e+03 74498.90 4.449088e+06 4.302497e+06 146591.05 NULL
2016 Department Of Transportation Community Service Aide 29609.57390 5.921915e+04 1673.90 8.369500e+02 836.950 73.75 2 8.369500e+02 1673.90 6.089305e+04 6.089305e+04 0.00 NULL
2016 Department Of Transportation Computer Aide-Non-Spvr 47883.17233 2.872990e+05 8432.05 1.405342e+03 152.880 273.75 6 1.528800e+02 917.28 2.957311e+05 2.882163e+05 7514.77 NULL
2016 Department Of Transportation Computer Associate 67086.85321 2.012606e+06 120696.44 4.023215e+03 894.410 2770.75 30 8.944100e+02 26832.30 2.133302e+06 2.039438e+06 93864.14 NULL
2016 Department Of Transportation Computer Programmer Analyst 61853.20000 3.092660e+05 62.40 1.248000e+01 0.000 4.25 5 0.000000e+00 0.00 3.093284e+05 3.092660e+05 62.40 NULL
2016 Department Of Transportation Computer Service Technician 46151.00000 4.615100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.615100e+04 4.615100e+04 0.00 NULL
2016 Department Of Transportation Computer Specialist 98093.36000 2.452334e+06 108563.78 4.342551e+03 0.000 1549.50 25 0.000000e+00 0.00 2.560898e+06 2.452334e+06 108563.78 NULL
2016 Department Of Transportation Computer Systems Manager 142016.37500 1.136131e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.136131e+06 1.136131e+06 0.00 NULL
2016 Department Of Transportation Confidential Strategy Planner 81101.90000 8.110190e+05 82980.55 8.298055e+03 8546.610 1546.00 10 8.298055e+03 82980.55 8.939996e+05 8.939996e+05 0.00 NULL
2016 Department Of Transportation Construction Project Manager 72747.20000 2.546152e+06 523572.22 1.495921e+04 12590.590 9786.25 35 1.259059e+04 440670.65 3.069724e+06 2.986823e+06 82901.57 NULL
2016 Department Of Transportation Construction Project Manager Intern 51084.75000 2.043390e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.043390e+05 2.043390e+05 0.00 NULL
2016 Department Of Transportation Counsel 214557.00000 2.145570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.145570e+05 2.145570e+05 0.00 NULL
2016 Department Of Transportation Crane Operator Ampes NA NA 381559.84 6.359331e+04 64024.475 3313.00 6 6.359331e+04 381559.84 NA NA NA NULL
2016 Department Of Transportation Custodial Assistant 38198.57275 1.145957e+05 7028.66 2.342887e+03 1076.140 256.25 3 1.076140e+03 3228.42 1.216244e+05 1.178241e+05 3800.24 NULL
2016 Department Of Transportation Customer Information Representative 44970.27733 1.349108e+05 88.90 2.963333e+01 0.000 3.50 3 0.000000e+00 0.00 1.349997e+05 1.349108e+05 88.90 NULL
2016 Department Of Transportation Deckhand 52354.97244 1.329816e+07 5261324.93 2.071388e+04 18930.580 90832.00 254 1.893058e+04 4808367.32 1.855949e+07 1.810653e+07 452957.61 NULL
2016 Department Of Transportation Deputy Commissioner 195302.66667 5.859080e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.859080e+05 5.859080e+05 0.00 NULL
2016 Department Of Transportation Deputy Director 132561.00000 1.325610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.325610e+05 1.325610e+05 0.00 NULL
2016 Department Of Transportation Director Of Public Relations 134000.00000 1.340000e+05 382.39 3.823900e+02 382.390 0.00 1 3.823900e+02 382.39 1.343824e+05 1.343824e+05 0.00 NULL
2016 Department Of Transportation Dockbuilder NA NA 400031.52 3.077166e+04 35405.950 3148.75 13 3.077166e+04 400031.52 NA NA NA NULL
2016 Department Of Transportation Electrical Engineer 85446.00000 2.563380e+05 75763.38 2.525446e+04 22533.580 1223.25 3 2.253358e+04 67600.74 3.321014e+05 3.239387e+05 8162.64 NULL
2016 Department Of Transportation Electrical Engineering Intern 46466.00000 4.646600e+04 0.00 0.000000e+00 0.000 4.50 1 0.000000e+00 0.00 4.646600e+04 4.646600e+04 0.00 NULL
2016 Department Of Transportation Electrician NA NA 1847168.71 2.677056e+04 24953.250 24756.25 69 2.495325e+04 1721774.25 NA NA NA NULL
2016 Department Of Transportation Electrician’s Helper NA NA 87828.88 1.756578e+04 16129.940 2022.75 5 1.612994e+04 80649.70 NA NA NA NULL
2016 Department Of Transportation Engineering Technician 53938.66667 3.236320e+05 37423.25 6.237208e+03 55.265 847.50 6 5.526500e+01 331.59 3.610552e+05 3.239636e+05 37091.66 NULL
2016 Department Of Transportation Environmental Engineer 93660.00000 9.366000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.366000e+04 9.366000e+04 0.00 NULL
2016 Department Of Transportation Estimator 55455.00000 1.109100e+05 162.36 8.118000e+01 81.180 15.00 2 8.118000e+01 162.36 1.110724e+05 1.110724e+05 0.00 NULL
2016 Department Of Transportation Executive Agency Counsel 130989.45455 1.440884e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.440884e+06 1.440884e+06 0.00 NULL
2016 Department Of Transportation Ferry Terminal Supervisor 71582.92857 1.002161e+06 357533.58 2.553811e+04 23877.780 6258.00 14 2.387778e+04 334288.92 1.359695e+06 1.336450e+06 23244.66 NULL
2016 Department Of Transportation First Deputy Commissioner 217060.00000 2.170600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.170600e+05 2.170600e+05 0.00 NULL
2016 Department Of Transportation Fraud Investigator 51675.00000 5.167500e+04 2541.08 2.541080e+03 2541.080 53.75 1 2.541080e+03 2541.08 5.421608e+04 5.421608e+04 0.00 NULL
2016 Department Of Transportation Gardener 55480.00000 1.664400e+05 36796.36 1.226545e+04 14398.640 997.50 3 1.226545e+04 36796.36 2.032364e+05 2.032364e+05 0.00 NULL
2016 Department Of Transportation Gasoline Roller Engineer NA NA 1522964.48 1.791723e+04 16161.510 18629.56 85 1.616151e+04 1373728.35 NA NA NA NULL
2016 Department Of Transportation Graphic Artist 60529.33333 1.815880e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.815880e+05 1.815880e+05 0.00 NULL
2016 Department Of Transportation High Pressure Plant Tender NA NA 286411.94 3.182355e+04 27655.730 5658.75 9 2.765573e+04 248901.57 NA NA NA NULL
2016 Department Of Transportation Highway Repairer NA NA 7678367.92 1.391009e+04 11882.630 131971.98 552 1.188263e+04 6559211.76 NA NA NA NULL
2016 Department Of Transportation Highway Transportation Specialist 67826.38560 1.200527e+07 2035382.25 1.149933e+04 8974.540 42233.25 177 8.974540e+03 1588493.58 1.404065e+07 1.359376e+07 446888.67 NULL
2016 Department Of Transportation Highways And Sewers Inspector 59108.19008 7.152091e+06 1005958.89 8.313710e+03 4570.080 22090.65 121 4.570080e+03 552979.68 8.158050e+06 7.705071e+06 452979.21 NULL
2016 Department Of Transportation Industrial Hygienist 60478.09091 6.652590e+05 19851.57 1.804688e+03 177.600 472.75 11 1.776000e+02 1953.60 6.851106e+05 6.672126e+05 17897.97 NULL
2016 Department Of Transportation Investigator 45997.00000 5.059670e+05 16093.74 1.463067e+03 1206.380 606.75 11 1.206380e+03 13270.18 5.220607e+05 5.192372e+05 2823.56 NULL
2016 Department Of Transportation Investigator Empl Disc 44399.50000 8.879900e+04 2169.94 1.084970e+03 1084.970 64.50 2 1.084970e+03 2169.94 9.096894e+04 9.096894e+04 0.00 NULL
2016 Department Of Transportation Laborer NA NA 1669.74 1.669740e+03 1669.740 28.00 1 1.669740e+03 1669.74 NA NA NA NULL
2016 Department Of Transportation Landscape Architect 83726.00000 8.372600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.372600e+04 8.372600e+04 0.00 NULL
2016 Department Of Transportation Letterer And Sign Painter NA NA 85625.75 7.135479e+03 5136.385 2140.25 12 5.136385e+03 61636.62 NA NA NA NULL
2016 Department Of Transportation Machinist NA NA 286704.31 1.911362e+04 24061.460 4685.75 15 1.911362e+04 286704.31 NA NA NA NULL
2016 Department Of Transportation Management Auditor 68897.00000 9.645580e+05 23896.48 1.706891e+03 0.000 485.00 14 0.000000e+00 0.00 9.884545e+05 9.645580e+05 23896.48 NULL
2016 Department Of Transportation Marine Electronics Technician 90028.00000 3.601120e+05 48026.70 1.200667e+04 6095.805 732.50 4 6.095805e+03 24383.22 4.081387e+05 3.844952e+05 23643.48 NULL
2016 Department Of Transportation Marine Engineer 64231.28571 1.348857e+06 1053352.06 5.015962e+04 52622.650 17023.00 21 5.015962e+04 1053352.06 2.402209e+06 2.402209e+06 0.00 NULL
2016 Department Of Transportation Marine Oiler 53065.25974 4.086025e+06 2598249.15 3.374350e+04 39023.900 47075.25 77 3.374350e+04 2598249.15 6.684274e+06 6.684274e+06 0.00 NULL
2016 Department Of Transportation Masons Helper NA NA 17052.68 8.526340e+03 8526.340 347.50 2 8.526340e+03 17052.68 NA NA NA NULL
2016 Department Of Transportation Mate 57254.69136 4.637630e+06 2461979.66 3.039481e+04 30322.830 43122.50 81 3.032283e+04 2456149.23 7.099610e+06 7.093779e+06 5830.43 NULL
2016 Department Of Transportation Mechanical Engineer 94237.80000 4.711890e+05 24359.05 4.871810e+03 2593.370 394.25 5 2.593370e+03 12966.85 4.955480e+05 4.841558e+05 11392.20 NULL
2016 Department Of Transportation Motor Grader Operator NA NA 594662.75 2.378651e+04 24222.240 7617.65 25 2.378651e+04 594662.75 NA NA NA NULL
2016 Department Of Transportation Motor Vehicle Operator 42097.00000 4.209700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.209700e+04 4.209700e+04 0.00 NULL
2016 Department Of Transportation Office Machine Aide 33950.20000 3.395020e+05 5933.57 5.933570e+02 0.000 327.50 10 0.000000e+00 0.00 3.454356e+05 3.395020e+05 5933.57 NULL
2016 Department Of Transportation Oiler NA NA 651734.28 3.430180e+04 25822.820 3866.75 19 2.582282e+04 490633.58 NA NA NA NULL
2016 Department Of Transportation Operations Communications Specialist 44595.58824 7.581250e+05 70574.51 4.151442e+03 3583.600 2184.00 17 3.583600e+03 60921.20 8.286995e+05 8.190462e+05 9653.31 NULL
2016 Department Of Transportation Painter NA NA 27547.41 5.509482e+03 8234.060 390.75 5 5.509482e+03 27547.41 NA NA NA NULL
2016 Department Of Transportation Paralegal Aide 44781.50000 8.956300e+04 2786.43 1.393215e+03 1393.215 93.50 2 1.393215e+03 2786.43 9.234943e+04 9.234943e+04 0.00 NULL
2016 Department Of Transportation Plumber NA NA 290046.36 2.636785e+04 16131.830 1924.25 11 1.613183e+04 177450.13 NA NA NA NULL
2016 Department Of Transportation Principal Administrative Associate 60245.80137 8.374166e+06 479304.68 3.448235e+03 261.520 12167.65 139 2.615200e+02 36351.28 8.853471e+06 8.410518e+06 442953.40 NULL
2016 Department Of Transportation Procurement Analyst 59788.12905 2.750254e+06 186743.96 4.059651e+03 177.110 4815.75 46 1.771100e+02 8147.06 2.936998e+06 2.758401e+06 178596.90 NULL
2016 Department Of Transportation Project Manager 66449.25000 2.657970e+05 42828.32 1.070708e+04 9402.850 876.50 4 9.402850e+03 37611.40 3.086253e+05 3.034084e+05 5216.92 NULL
2016 Department Of Transportation Project Manager Intern# 52165.80000 2.608290e+05 882.43 1.764860e+02 0.000 27.50 5 0.000000e+00 0.00 2.617114e+05 2.608290e+05 882.43 NULL
2016 Department Of Transportation Public Records Aide 35452.94667 2.127177e+05 541.73 9.028833e+01 0.000 42.00 6 0.000000e+00 0.00 2.132594e+05 2.127177e+05 541.73 NULL
2016 Department Of Transportation Quality Assurance Specialist 44850.00000 8.970000e+04 6158.37 3.079185e+03 3079.185 250.75 2 3.079185e+03 6158.37 9.585837e+04 9.585837e+04 0.00 NULL
2016 Department Of Transportation Quality Assurance Specialist Trainee 26909.03190 8.072710e+04 11317.18 3.772393e+03 2534.090 618.25 3 2.534090e+03 7602.27 9.204428e+04 8.832937e+04 3714.91 NULL
2016 Department Of Transportation Radio Repair Mechanic NA NA 674.25 3.371250e+02 337.125 10.00 2 3.371250e+02 674.25 NA NA NA NULL
2016 Department Of Transportation Research Assistant 50911.78236 9.164121e+05 18554.80 1.030822e+03 0.000 459.50 18 0.000000e+00 0.00 9.349669e+05 9.164121e+05 18554.80 NULL
2016 Department Of Transportation Rigger NA NA 585385.96 5.321691e+04 71331.900 3514.75 11 5.321691e+04 585385.96 NA NA NA NULL
2016 Department Of Transportation Roofer NA NA 542.04 5.420400e+02 542.040 0.00 1 5.420400e+02 542.04 NA NA NA NULL
2016 Department Of Transportation Rubber Tire Repairer NA NA 14933.62 3.733405e+03 1166.355 292.75 4 1.166355e+03 4665.42 NA NA NA NULL
2016 Department Of Transportation Secretary 42093.26576 1.010238e+06 28185.93 1.174414e+03 0.000 1033.75 24 0.000000e+00 0.00 1.038424e+06 1.010238e+06 28185.93 NULL
2016 Department Of Transportation Senior Photographer 62525.00000 6.252500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.252500e+04 6.252500e+04 0.00 NULL
2016 Department Of Transportation Senior Service Inspector 43481.20000 2.174060e+05 24550.68 4.910136e+03 4461.090 713.50 5 4.461090e+03 22305.45 2.419567e+05 2.397115e+05 2245.23 NULL
2016 Department Of Transportation Service Inspector 34362.71429 2.405390e+05 7006.36 1.000909e+03 70.480 277.25 7 7.048000e+01 493.36 2.475454e+05 2.410324e+05 6513.00 NULL
2016 Department Of Transportation Sheet Metal Worker NA NA 175879.65 3.517593e+04 38484.950 1616.50 5 3.517593e+04 175879.65 NA NA NA NULL
2016 Department Of Transportation Ship Carpenter NA NA 473958.26 6.770832e+04 76082.150 2491.25 7 6.770832e+04 473958.26 NA NA NA NULL
2016 Department Of Transportation Staff Analyst 63342.63158 2.407020e+06 126814.48 3.337223e+03 12.360 2723.25 38 1.236000e+01 469.68 2.533834e+06 2.407490e+06 126344.80 NULL
2016 Department Of Transportation Staff Analyst Trainee 41754.09306 3.757868e+05 21234.78 2.359420e+03 393.570 876.25 9 3.935700e+02 3542.13 3.970216e+05 3.793290e+05 17692.65 NULL
2016 Department Of Transportation Steam Fitter NA NA 520366.93 3.716907e+04 42119.685 3940.00 14 3.716907e+04 520366.93 NA NA NA NULL
2016 Department Of Transportation Steam Fitter’s Helper NA NA 6096.30 6.096300e+03 6096.300 0.00 1 6.096300e+03 6096.30 NA NA NA NULL
2016 Department Of Transportation Stock Worker 37669.78571 5.273770e+05 49995.84 3.571131e+03 830.645 1730.50 14 8.306450e+02 11629.03 5.773728e+05 5.390060e+05 38366.81 NULL
2016 Department Of Transportation Strategic Initiative Specialist 85039.00000 2.551170e+05 3564.35 1.188117e+03 872.330 99.25 3 8.723300e+02 2616.99 2.586814e+05 2.577340e+05 947.36 NULL
2016 Department Of Transportation Summer College Intern 2469.72075 1.061980e+05 0.00 0.000000e+00 0.000 0.00 43 0.000000e+00 0.00 1.061980e+05 1.061980e+05 0.00 NULL
2016 Department Of Transportation Summer Graduate Intern 3765.53001 8.284166e+04 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 8.284166e+04 8.284166e+04 0.00 NULL
2016 Department Of Transportation Supervising Computer Service Technician 69562.00000 1.391240e+05 33002.06 1.650103e+04 16501.030 603.50 2 1.650103e+04 33002.06 1.721261e+05 1.721261e+05 0.00 NULL
2016 Department Of Transportation Supervisor 70806.00000 1.416120e+05 25515.35 1.275767e+04 12757.675 420.50 2 1.275767e+04 25515.35 1.671274e+05 1.671274e+05 0.00 NULL
2016 Department Of Transportation Supervisor Boiler Maker NA NA 60055.76 6.005576e+04 60055.760 714.25 1 6.005576e+04 60055.76 NA NA NA NULL
2016 Department Of Transportation Supervisor Bricklayer NA NA 250647.48 6.266187e+04 63767.270 3166.75 4 6.266187e+04 250647.48 NA NA NA NULL
2016 Department Of Transportation Supervisor Bridge Painter NA NA 116469.49 1.164695e+04 9086.090 1092.50 10 9.086090e+03 90860.90 NA NA NA NULL
2016 Department Of Transportation Supervisor Bridge Repairer And Riveter NA NA 354294.88 8.857372e+04 95390.160 2403.75 4 8.857372e+04 354294.88 NA NA NA NULL
2016 Department Of Transportation Supervisor Carpenter NA NA 289714.94 5.794299e+04 45431.510 1740.50 5 4.543151e+04 227157.55 NA NA NA NULL
2016 Department Of Transportation Supervisor Dockbuilder NA NA 123079.61 6.153981e+04 61539.805 1055.50 2 6.153981e+04 123079.61 NA NA NA NULL
2016 Department Of Transportation Supervisor Electrician NA NA 544315.65 4.535964e+04 47910.420 6606.75 12 4.535964e+04 544315.65 NA NA NA NULL
2016 Department Of Transportation Supervisor Highway Repairer NA NA 4106886.63 2.256531e+04 21038.825 53439.75 182 2.103883e+04 3829066.15 NA NA NA NULL
2016 Department Of Transportation Supervisor Of Electrical Installations & Maintenance 70006.25806 2.170194e+06 431259.39 1.391159e+04 10878.630 8489.75 31 1.087863e+04 337237.53 2.601453e+06 2.507432e+06 94021.86 NULL
2016 Department Of Transportation Supervisor Of Mechanics NA NA 882110.62 3.150395e+04 28759.445 10925.25 28 2.875944e+04 805264.46 NA NA NA NULL
2016 Department Of Transportation Supervisor Of Office Machine Operations 43960.00000 8.792000e+04 827.76 4.138800e+02 413.880 41.00 2 4.138800e+02 827.76 8.874776e+04 8.874776e+04 0.00 NULL
2016 Department Of Transportation Supervisor Of Stock Workers 48206.50000 2.892390e+05 53329.99 8.888332e+03 9500.090 1458.75 6 8.888332e+03 53329.99 3.425690e+05 3.425690e+05 0.00 NULL
2016 Department Of Transportation Supervisor Of Traffic Device Maintainers 65657.14286 4.596000e+06 1210635.52 1.729479e+04 18454.665 24846.43 70 1.729479e+04 1210635.52 5.806636e+06 5.806636e+06 0.00 NULL
2016 Department Of Transportation Supervisor Painter NA NA 50265.04 2.513252e+04 25132.520 687.75 2 2.513252e+04 50265.04 NA NA NA NULL
2016 Department Of Transportation Supervisor Plumber NA NA 172888.94 5.762965e+04 36134.580 1178.50 3 3.613458e+04 108403.74 NA NA NA NULL
2016 Department Of Transportation Supervisor Sheet Metal Worker NA NA 80315.24 8.031524e+04 80315.240 707.00 1 8.031524e+04 80315.24 NA NA NA NULL
2016 Department Of Transportation Supervisor Ship Carpenter NA NA 117533.93 1.175339e+05 117533.930 673.50 1 1.175339e+05 117533.93 NA NA NA NULL
2016 Department Of Transportation Supervisor Steamfitter NA NA 87764.41 8.776441e+04 87764.410 572.00 1 8.776441e+04 87764.41 NA NA NA NULL
2016 Department Of Transportation Telecommunications Associate 84157.71429 5.891040e+05 182527.29 2.607533e+04 31845.150 2843.00 7 2.607533e+04 182527.29 7.716313e+05 7.716313e+05 0.00 NULL
2016 Department Of Transportation Tractor Operator NA NA 682705.34 2.968284e+04 21850.300 6570.50 23 2.185030e+04 502556.90 NA NA NA NULL
2016 Department Of Transportation Traffic Control Inspector 47750.49367 3.772289e+06 559576.12 7.083242e+03 6326.480 17620.70 79 6.326480e+03 499791.92 4.331865e+06 4.272081e+06 59784.20 NULL
2016 Department Of Transportation Traffic Device Maintainer 55786.33755 1.322136e+07 2136048.06 9.012861e+03 8681.920 51642.59 237 8.681920e+03 2057615.04 1.535741e+07 1.527898e+07 78433.02 NULL
2016 Department Of Transportation Welder NA NA 50076.16 2.503808e+04 25038.080 648.00 2 2.503808e+04 50076.16 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs *Watchperson 43522.00000 8.704400e+04 14751.92 7.375960e+03 7375.960 489.75 2 7.375960e+03 14751.92 1.017959e+05 1.017959e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Accountant 64572.25000 5.165780e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.165780e+05 5.165780e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Adm Manager-Non-Mgrl 67155.29412 3.424920e+06 71334.11 1.398708e+03 0.000 1293.00 51 0.000000e+00 0.00 3.496254e+06 3.424920e+06 71334.11 NULL
2016 Dept Of Citywide Admin Svcs Admin Construction Project Manager 89400.83333 5.364050e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.364050e+05 5.364050e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Admin Inspector 100870.50000 2.017410e+05 63.90 3.195000e+01 31.950 1.00 2 3.195000e+01 63.90 2.018049e+05 2.018049e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Admin Tests & Meas Spec 101268.71429 7.088810e+05 659.94 9.427714e+01 0.000 0.00 7 0.000000e+00 0.00 7.095409e+05 7.088810e+05 659.94 NULL
2016 Dept Of Citywide Admin Svcs Administrative Accountant 125059.00000 5.002360e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.002360e+05 5.002360e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Administrative Architect 122184.00000 3.665520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.665520e+05 3.665520e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Administrative Business Promotion Coordinator 105078.00000 2.101560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.101560e+05 2.101560e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Administrative City Planner 122697.00000 3.680910e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.680910e+05 3.680910e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Administrative Construction Project Manager 130265.00000 3.907950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.907950e+05 3.907950e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Administrative Engineer 117617.00000 7.057020e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.057020e+05 7.057020e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Administrative Graphic Artist 84241.00000 8.424100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.424100e+04 8.424100e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs Administrative Inspector 110965.00000 2.219300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.219300e+05 2.219300e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Administrative Investigator 73459.25000 2.938370e+05 471.80 1.179500e+02 0.000 0.00 4 0.000000e+00 0.00 2.943088e+05 2.938370e+05 471.80 NULL
2016 Dept Of Citywide Admin Svcs Administrative Management Auditor 103752.00000 1.037520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.037520e+05 1.037520e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Administrative Manager 99170.12500 7.933610e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.933610e+05 7.933610e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Administrative Procurement Analyst 77713.56757 2.875402e+06 17956.50 4.853108e+02 0.000 354.75 37 0.000000e+00 0.00 2.893358e+06 2.875402e+06 17956.50 NULL
2016 Dept Of Citywide Admin Svcs Administrative Project Manager 116528.40000 5.826420e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.826420e+05 5.826420e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Administrative Public Information Specialist 110535.40000 5.526770e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.526770e+05 5.526770e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Administrative Quality Assurance Specialist 85634.00000 4.281700e+05 19200.22 3.840044e+03 0.000 335.75 5 0.000000e+00 0.00 4.473702e+05 4.281700e+05 19200.22 NULL
2016 Dept Of Citywide Admin Svcs Administrative Real Property Manager 88663.00000 8.866300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.866300e+04 8.866300e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs Administrative Staff Analyst 99532.49333 1.492987e+07 142123.32 9.474888e+02 0.000 2274.75 150 0.000000e+00 0.00 1.507200e+07 1.492987e+07 142123.32 NULL
2016 Dept Of Citywide Admin Svcs Agency Attorney 93935.37500 1.502966e+06 151.24 9.452500e+00 0.000 0.00 16 0.000000e+00 0.00 1.503117e+06 1.502966e+06 151.24 NULL
2016 Dept Of Citywide Admin Svcs Appraiser 80592.00000 2.417760e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.417760e+05 2.417760e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Architect 90555.90909 9.961150e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 9.961150e+05 9.961150e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Asbestos Handler 73011.75000 2.920470e+05 46829.37 1.170734e+04 8108.890 851.25 4 8.108890e+03 32435.56 3.388764e+05 3.244826e+05 14393.81 NULL
2016 Dept Of Citywide Admin Svcs Assistant Architect 66877.33333 4.012640e+05 11726.92 1.954487e+03 513.535 251.00 6 5.135350e+02 3081.21 4.129909e+05 4.043452e+05 8645.71 NULL
2016 Dept Of Citywide Admin Svcs Assistant Civil Engineer 75802.00000 1.516040e+05 1255.96 6.279800e+02 627.980 21.00 2 6.279800e+02 1255.96 1.528600e+05 1.528600e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Assistant Commissioner 154600.00000 4.638000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.638000e+05 4.638000e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Assistant Electrical Engineer 59324.00000 5.932400e+04 1285.99 1.285990e+03 1285.990 10.50 1 1.285990e+03 1285.99 6.060999e+04 6.060999e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs Assistant Mechanical Engineer 65965.33333 1.978960e+05 2111.73 7.039100e+02 736.140 47.75 3 7.039100e+02 2111.73 2.000077e+05 2.000077e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Assistant Printing Press Operator 55490.00000 1.109800e+05 5563.18 2.781590e+03 2781.590 123.75 2 2.781590e+03 5563.18 1.165432e+05 1.165432e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Associate Chemist 60975.00000 6.097500e+04 9490.69 9.490690e+03 9490.690 220.50 1 9.490690e+03 9490.69 7.046569e+04 7.046569e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs Associate Investigator 57843.00000 2.892150e+05 2187.04 4.374080e+02 0.000 0.00 5 0.000000e+00 0.00 2.914020e+05 2.892150e+05 2187.04 NULL
2016 Dept Of Citywide Admin Svcs Associate Project Manager 86544.26667 1.298164e+06 41800.20 2.786680e+03 0.000 605.00 15 0.000000e+00 0.00 1.339964e+06 1.298164e+06 41800.20 NULL
2016 Dept Of Citywide Admin Svcs Associate Quality Assurance Specialist 66754.80000 3.337740e+05 20745.85 4.149170e+03 3527.440 459.75 5 3.527440e+03 17637.20 3.545198e+05 3.514112e+05 3108.65 NULL
2016 Dept Of Citywide Admin Svcs Associate Staff Analyst 78061.54839 4.839816e+06 181356.25 2.925101e+03 628.765 2586.75 62 6.287650e+02 38983.43 5.021172e+06 4.878799e+06 142372.82 NULL
2016 Dept Of Citywide Admin Svcs Attorney At Law 102037.66667 3.061130e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.061130e+05 3.061130e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Auto Mechanic NA NA 3849.92 1.924960e+03 1924.960 56.50 2 1.924960e+03 3849.92 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Automotive Specialist 87239.00000 8.723900e+04 8.00 8.000000e+00 8.000 0.00 1 8.000000e+00 8.00 8.724700e+04 8.724700e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs Bookkeeper 40068.00000 1.602720e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.602720e+05 1.602720e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Bricklayer NA NA 63185.72 6.318572e+04 63185.720 943.50 1 6.318572e+04 63185.72 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Business Promotion Coordinator 73351.42857 5.134600e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.134600e+05 5.134600e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Carpenter NA NA 1108428.09 5.542140e+04 61796.325 10932.25 20 5.542140e+04 1108428.09 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Certified It Administrator 131021.00000 2.620420e+05 33539.98 1.676999e+04 16769.990 365.50 2 1.676999e+04 33539.98 2.955820e+05 2.955820e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Certified It Developer 92250.00000 9.225000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.225000e+04 9.225000e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs Chairman 205868.00000 2.058680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.058680e+05 2.058680e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Chauffeur-Attendant 53866.36111 1.939189e+06 647028.73 1.797302e+04 18254.625 16968.25 36 1.797302e+04 647028.73 2.586218e+06 2.586218e+06 0.00 NULL
2016 Dept Of Citywide Admin Svcs Chief Of Staff 199875.00000 1.998750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.998750e+05 1.998750e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs City Laborer NA NA 314215.84 1.653768e+04 3575.530 6371.50 19 3.575530e+03 67935.07 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs City Planner 72699.16667 8.723900e+05 14476.78 1.206398e+03 0.000 289.25 12 0.000000e+00 0.00 8.868668e+05 8.723900e+05 14476.78 NULL
2016 Dept Of Citywide Admin Svcs City Planning Technician 51614.00000 5.161400e+04 196.37 1.963700e+02 196.370 7.00 1 1.963700e+02 196.37 5.181037e+04 5.181037e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs City Research Scientist 78017.00000 4.681020e+05 1159.67 1.932783e+02 0.000 0.00 6 0.000000e+00 0.00 4.692617e+05 4.681020e+05 1159.67 NULL
2016 Dept Of Citywide Admin Svcs City Security Aide 44188.50000 8.837700e+04 39145.22 1.957261e+04 19572.610 1202.50 2 1.957261e+04 39145.22 1.275222e+05 1.275222e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Clerical Associate 41945.43609 3.649253e+06 129687.70 1.490663e+03 0.000 4746.00 87 0.000000e+00 0.00 3.778941e+06 3.649253e+06 129687.70 NULL
2016 Dept Of Citywide Admin Svcs Clock Repairer 5116.57500 5.116575e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.116575e+03 5.116575e+03 0.00 NULL
2016 Dept Of Citywide Admin Svcs College Aide 9488.72553 1.613083e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.613083e+05 1.613083e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Commissioner 161978.20000 8.098910e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.098910e+05 8.098910e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Commissioner Of Citywide Administrative Services 219773.00000 4.395460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.395460e+05 4.395460e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Community Assistant 35024.24138 1.015703e+06 41631.64 1.435574e+03 0.000 1784.75 29 0.000000e+00 0.00 1.057335e+06 1.015703e+06 41631.64 NULL
2016 Dept Of Citywide Admin Svcs Community Associate 45140.86034 2.663311e+06 97314.63 1.649401e+03 302.410 2822.75 59 3.024100e+02 17842.19 2.760625e+06 2.681153e+06 79472.44 NULL
2016 Dept Of Citywide Admin Svcs Community Coordinator 60103.46405 1.262173e+06 77750.84 3.702421e+03 61.710 1512.75 21 6.171000e+01 1295.91 1.339924e+06 1.263469e+06 76454.93 NULL
2016 Dept Of Citywide Admin Svcs Community Service Aide 32332.25000 1.293290e+05 2549.85 6.374625e+02 0.000 145.50 4 0.000000e+00 0.00 1.318789e+05 1.293290e+05 2549.85 NULL
2016 Dept Of Citywide Admin Svcs Computer Aide-Non-Spvr 56051.00000 1.121020e+05 7006.24 3.503120e+03 3503.120 170.25 2 3.503120e+03 7006.24 1.191082e+05 1.191082e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Computer Associate 72047.00000 1.224799e+06 45641.65 2.684803e+03 1057.400 935.00 17 1.057400e+03 17975.80 1.270441e+06 1.242775e+06 27665.85 NULL
2016 Dept Of Citywide Admin Svcs Computer Operations Manager 120954.00000 1.209540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.209540e+05 1.209540e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Computer Programmer Analyst 62459.33333 1.873780e+05 12631.95 4.210650e+03 554.600 173.00 3 5.546000e+02 1663.80 2.000100e+05 1.890418e+05 10968.15 NULL
2016 Dept Of Citywide Admin Svcs Computer Specialist 93379.05263 3.548404e+06 117748.95 3.098657e+03 160.230 1986.50 38 1.602300e+02 6088.74 3.666153e+06 3.554493e+06 111660.21 NULL
2016 Dept Of Citywide Admin Svcs Computer Systems Manager 123626.56440 3.090664e+06 1265.93 5.063720e+01 0.000 0.00 25 0.000000e+00 0.00 3.091930e+06 3.090664e+06 1265.93 NULL
2016 Dept Of Citywide Admin Svcs Confidential Strategy Planner 73029.40000 7.302940e+05 6551.34 6.551340e+02 0.000 128.25 10 0.000000e+00 0.00 7.368453e+05 7.302940e+05 6551.34 NULL
2016 Dept Of Citywide Admin Svcs Construction Project Manager 73283.66667 6.595530e+05 106355.67 1.181730e+04 6890.070 2002.25 9 6.890070e+03 62010.63 7.659087e+05 7.215636e+05 44345.04 NULL
2016 Dept Of Citywide Admin Svcs Counsel 133929.00000 1.339290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339290e+05 1.339290e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Custodial Assistant 32500.59448 1.504778e+07 3204604.19 6.921391e+03 4255.500 136519.58 463 4.255500e+03 1970296.50 1.825238e+07 1.701807e+07 1234307.69 NULL
2016 Dept Of Citywide Admin Svcs Custodian 39146.08956 8.925308e+06 2998800.37 1.315263e+04 10503.240 104915.03 228 1.050324e+04 2394738.72 1.192411e+07 1.132005e+07 604061.65 NULL
2016 Dept Of Citywide Admin Svcs Deputy Assistant Commissioner 84697.82759 2.456237e+06 15591.22 5.376283e+02 0.000 72.25 29 0.000000e+00 0.00 2.471828e+06 2.456237e+06 15591.22 NULL
2016 Dept Of Citywide Admin Svcs Deputy Commissioner 186960.40000 9.348020e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.348020e+05 9.348020e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Deputy Commissioner For City Personnel Services 193213.00000 1.932130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.932130e+05 1.932130e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Director Of Energy Conservation 133743.00000 1.337430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.337430e+05 1.337430e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Director Of Purchase 193213.00000 1.932130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.932130e+05 1.932130e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Director Of Security 104342.00000 1.043420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.043420e+05 1.043420e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Director Of Stores 127318.00000 1.273180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.273180e+05 1.273180e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Director Of The City Record 144706.00000 1.447060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.447060e+05 1.447060e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Director,Citywide Occupational Safety & Health Program 111850.00000 1.118500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.118500e+05 1.118500e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Electrical Engineer 84683.00000 1.693660e+05 16916.76 8.458380e+03 8458.380 251.75 2 8.458380e+03 16916.76 1.862828e+05 1.862828e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Electrician NA NA 605823.84 3.563670e+04 23409.760 8471.00 17 2.340976e+04 397965.92 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Electrician’s Helper NA NA 28164.96 2.816496e+04 28164.960 686.75 1 2.816496e+04 28164.96 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Elevator Mechanic NA NA 776733.55 2.219239e+04 24051.880 11961.00 35 2.219239e+04 776733.55 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Elevator Mechanic Helper NA NA 6372.75 1.593188e+03 1696.500 228.50 4 1.593188e+03 6372.75 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Engineering Technician 57092.00000 5.709200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.709200e+04 5.709200e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs Estimator 75795.00000 1.515900e+05 3.28 1.640000e+00 1.640 8.75 2 1.640000e+00 3.28 1.515933e+05 1.515933e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Exec Asst To The Deputy Com For Citywide Personnel Svcs-Dcas 93634.00000 9.363400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.363400e+04 9.363400e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs Executive Agency Counsel 124998.71917 1.874981e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.874981e+06 1.874981e+06 0.00 NULL
2016 Dept Of Citywide Admin Svcs Executive Assistant To The Commissioner 82500.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Executive Director Of Standards And Appeals 141625.00000 2.832500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.832500e+05 2.832500e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Executive Program Specialist 99824.00000 9.982400e+04 26.19 2.619000e+01 26.190 0.00 1 2.619000e+01 26.19 9.985019e+04 9.985019e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs First Deputy Commissioner 205000.00000 2.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.050000e+05 2.050000e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs General Counsel 193213.00000 1.932130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.932130e+05 1.932130e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Graphic Artist 51762.50000 2.070500e+05 33129.06 8.282265e+03 3369.125 705.75 4 3.369125e+03 13476.50 2.401791e+05 2.205265e+05 19652.56 NULL
2016 Dept Of Citywide Admin Svcs High Pressure Plant Tender NA NA 455041.70 7.459700e+03 5060.460 8942.00 61 5.060460e+03 308688.06 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Industrial Hygienist 68129.00000 6.812900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.812900e+04 6.812900e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs Inspector 51398.00000 5.139800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.139800e+04 5.139800e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs Investigator 40303.75000 1.612150e+05 19.49 4.872500e+00 0.000 0.00 4 0.000000e+00 0.00 1.612345e+05 1.612150e+05 19.49 NULL
2016 Dept Of Citywide Admin Svcs Landscape Architect 84304.00000 8.430400e+04 98.76 9.876000e+01 98.760 2.00 1 9.876000e+01 98.76 8.440276e+04 8.440276e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs Locksmith NA NA 3478.40 3.478400e+03 3478.400 0.00 1 3.478400e+03 3478.40 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Machinist NA NA 16146.43 1.614643e+04 16146.430 245.50 1 1.614643e+04 16146.43 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Maintenance Worker NA NA 1105112.96 2.085119e+04 18900.230 24698.25 53 1.890023e+04 1001712.19 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Management Auditor 55670.00000 5.567000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.567000e+04 5.567000e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs Mechanical Engineer 106438.25000 4.257530e+05 1733.67 4.334175e+02 0.000 23.50 4 0.000000e+00 0.00 4.274867e+05 4.257530e+05 1733.67 NULL
2016 Dept Of Citywide Admin Svcs Media Services Technician 51623.00000 5.162300e+04 3448.74 3.448740e+03 3448.740 132.50 1 3.448740e+03 3448.74 5.507174e+04 5.507174e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs Motor Vehicle Operator 48948.00000 4.894800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.894800e+04 4.894800e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs Motor Vehicle Supervisor 52397.00000 5.239700e+04 6737.80 6.737800e+03 6737.800 179.00 1 6.737800e+03 6737.80 5.913480e+04 5.913480e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs New York City Fellow 40286.48933 6.042973e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 6.042973e+05 6.042973e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs New York City Urban Fellow 23487.67000 7.046301e+05 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 7.046301e+05 7.046301e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Nycaps Process Analyst 73191.75000 5.855340e+05 201.68 2.521000e+01 21.515 0.00 8 2.151500e+01 172.12 5.857357e+05 5.857061e+05 29.56 NULL
2016 Dept Of Citywide Admin Svcs Nycaps Process Analyst Manager 133988.00000 1.339880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339880e+05 1.339880e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Office Machine Aide 40524.50000 8.104900e+04 686.13 3.430650e+02 343.065 26.00 2 3.430650e+02 686.13 8.173513e+04 8.173513e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs Oiler NA NA 746021.93 1.657827e+04 10220.850 7174.25 45 1.022085e+04 459938.25 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Painter NA NA 218718.74 4.374375e+04 41053.590 3868.00 5 4.105359e+04 205267.95 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Plasterer NA NA 158184.21 5.272807e+04 55222.150 2012.00 3 5.272807e+04 158184.21 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Plumber NA NA 602124.00 3.763275e+04 42454.445 4801.00 16 3.763275e+04 602124.00 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Plumber’s Helper NA NA 39812.46 1.990623e+04 19906.230 492.75 2 1.990623e+04 39812.46 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Principal Administrative Associate 59584.36055 6.494695e+06 278897.17 2.558690e+03 399.670 6530.50 109 3.996700e+02 43564.03 6.773592e+06 6.538259e+06 235333.14 NULL
2016 Dept Of Citywide Admin Svcs Principal Appraiser 124845.00000 1.248450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.248450e+05 1.248450e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Procurement Analyst 62252.66667 9.337900e+05 6391.44 4.260960e+02 0.000 25.00 15 0.000000e+00 0.00 9.401814e+05 9.337900e+05 6391.44 NULL
2016 Dept Of Citywide Admin Svcs Public Records Officer 56375.00000 1.691250e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.691250e+05 1.691250e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Quality Assurance Specialist 54297.43750 8.687590e+05 36694.32 2.293395e+03 2263.130 1136.00 16 2.263130e+03 36210.08 9.054533e+05 9.049691e+05 484.24 NULL
2016 Dept Of Citywide Admin Svcs Radio And Television Operator 47587.33333 1.427620e+05 7404.11 2.468037e+03 1023.460 232.50 3 1.023460e+03 3070.38 1.501661e+05 1.458324e+05 4333.73 NULL
2016 Dept Of Citywide Admin Svcs Real Property Manager 53525.00000 2.141000e+05 880.42 2.201050e+02 115.455 7.00 4 1.154550e+02 461.82 2.149804e+05 2.145618e+05 418.60 NULL
2016 Dept Of Citywide Admin Svcs Secretary 43427.88235 7.382740e+05 18379.52 1.081148e+03 511.250 429.50 17 5.112500e+02 8691.25 7.566535e+05 7.469652e+05 9688.27 NULL
2016 Dept Of Citywide Admin Svcs Secretary Of Comm 60202.00000 6.020200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.020200e+04 6.020200e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs Secretary To The Deputy Commissioner 79275.00000 1.585500e+05 2889.15 1.444575e+03 1444.575 15.00 2 1.444575e+03 2889.15 1.614391e+05 1.614391e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Senior Estimator 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs Senior Salvage Appraiser 62210.00000 6.221000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221000e+04 6.221000e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs Senior Stationary Engineer NA NA 1258120.53 3.068587e+04 26802.240 9605.25 41 2.680224e+04 1098891.84 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Sheet Metal Worker NA NA 69261.07 2.308702e+04 21915.190 700.00 3 2.191519e+04 65745.57 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Special Examiner 14156.28999 4.388450e+05 296.85 9.575807e+00 0.000 0.00 31 0.000000e+00 0.00 4.391418e+05 4.388450e+05 296.85 NULL
2016 Dept Of Citywide Admin Svcs Special Officer 44250.05263 8.407510e+05 114833.94 6.043892e+03 2431.630 4157.23 19 2.431630e+03 46200.97 9.555849e+05 8.869520e+05 68632.97 NULL
2016 Dept Of Citywide Admin Svcs Staff Analyst 60092.21323 2.223412e+06 28023.06 7.573800e+02 3.160 475.75 37 3.160000e+00 116.92 2.251435e+06 2.223529e+06 27906.14 NULL
2016 Dept Of Citywide Admin Svcs Staff Analyst Trainee 39062.66667 1.171880e+05 1686.31 5.621033e+02 0.000 75.00 3 0.000000e+00 0.00 1.188743e+05 1.171880e+05 1686.31 NULL
2016 Dept Of Citywide Admin Svcs Stationary Engineer NA NA 4571135.53 3.361129e+04 29376.150 36893.50 136 2.937615e+04 3995156.40 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Steam Fitter NA NA 707882.94 4.719220e+04 40608.220 5102.50 15 4.060822e+04 609123.30 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Steam Fitter’s Helper NA NA 104374.83 3.479161e+04 39581.840 909.25 3 3.479161e+04 104374.83 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Stenographic Specialist 14391.26610 1.439127e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.439127e+04 1.439127e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs Stock Worker 34076.75000 4.089210e+05 15227.57 1.268964e+03 1273.795 646.50 12 1.268964e+03 15227.57 4.241486e+05 4.241486e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Summer College Intern 2641.84320 6.604608e+04 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 6.604608e+04 6.604608e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs Summer Graduate Intern 3018.70833 1.811225e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.811225e+04 1.811225e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs Supervising Special Officer 62712.84615 8.152670e+05 294855.31 2.268118e+04 21895.340 6808.00 13 2.189534e+04 284639.42 1.110122e+06 1.099906e+06 10215.89 NULL
2016 Dept Of Citywide Admin Svcs Supervisor NA NA 61277.84 6.127784e+04 61277.840 1221.25 1 6.127784e+04 61277.84 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Supervisor Bricklayer NA NA 98741.09 9.874109e+04 98741.090 1280.00 1 9.874109e+04 98741.09 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Supervisor Carpenter NA NA 197833.16 9.891658e+04 98916.580 1838.75 2 9.891658e+04 197833.16 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Supervisor Electrician NA NA 136273.81 6.813690e+04 68136.905 1753.50 2 6.813690e+04 136273.81 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Supervisor Elevator Mechanic NA NA 218471.08 4.369422e+04 44014.360 2961.00 5 4.369422e+04 218471.08 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Supervisor Locksmith NA NA 44500.60 4.450060e+04 44500.600 885.00 1 4.450060e+04 44500.60 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Supervisor Of Electrical Installations & Maintenance 78719.00000 7.871900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.871900e+04 7.871900e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs Supervisor Of Mechanics NA NA 95517.61 3.183920e+04 5245.020 970.00 3 5.245020e+03 15735.06 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Supervisor Of Motor Transport 58745.00000 5.874500e+04 9280.95 9.280950e+03 9280.950 220.00 1 9.280950e+03 9280.95 6.802595e+04 6.802595e+04 0.00 NULL
2016 Dept Of Citywide Admin Svcs Supervisor Of Radio And Television Operators 70580.50000 1.411610e+05 29607.16 1.480358e+04 14803.580 587.50 2 1.480358e+04 29607.16 1.707682e+05 1.707682e+05 0.00 NULL
2016 Dept Of Citywide Admin Svcs Supervisor Of Stock Workers 47755.87500 3.820470e+05 48615.60 6.076950e+03 4792.625 1434.00 8 4.792625e+03 38341.00 4.306626e+05 4.203880e+05 10274.60 NULL
2016 Dept Of Citywide Admin Svcs Supervisor Painter NA NA 59849.47 5.984947e+04 59849.470 881.00 1 5.984947e+04 59849.47 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Supervisor Plumber NA NA 199072.29 9.953615e+04 99536.145 1237.75 2 9.953615e+04 199072.29 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Supervisor Sheet Metal Worker NA NA 108629.04 1.086290e+05 108629.040 965.75 1 1.086290e+05 108629.04 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Supervisor Steamfitter NA NA 128547.00 1.285470e+05 128547.000 968.50 1 1.285470e+05 128547.00 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Supervisor Thermostat Repair NA NA 58895.24 5.889524e+04 58895.240 431.75 1 5.889524e+04 58895.24 NA NA NA NULL
2016 Dept Of Citywide Admin Svcs Tests And Measurement Specialist 64451.52500 2.578061e+06 138950.62 3.473765e+03 1779.470 2531.50 40 1.779470e+03 71178.80 2.717012e+06 2.649240e+06 67771.82 NULL
2016 Dept Of Citywide Admin Svcs Thermostat Repairer NA NA 96703.63 8.058636e+03 9040.160 709.50 12 8.058636e+03 96703.63 NA NA NA NULL
2016 Dept Of Ed Hrly Support Staff Coop Education Trainee Computer Tech Aide/Jr 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2016 Dept Of Ed Hrly Support Staff Coop Education Trainee Computer Tech Aide/Sr 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2016 Dept Of Ed Hrly Support Staff Coop Trainee Typist 0.00000 0.000000e+00 972.95 4.884287e-01 0.000 0.00 1992 0.000000e+00 0.00 9.729500e+02 0.000000e+00 972.95 NULL
2016 Dept Of Ed Hrly Support Staff F/T Dc 37 Family Para 0.00000 0.000000e+00 97326.58 5.651950e+01 0.000 0.00 1722 0.000000e+00 0.00 9.732658e+04 0.000000e+00 97326.58 NULL
2016 Dept Of Ed Hrly Support Staff F/T Film Inspection Asst. 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2016 Dept Of Ed Hrly Support Staff F/T Group Leader 0.00000 0.000000e+00 137953.07 1.149609e+04 4393.775 0.00 12 4.393775e+03 52725.30 1.379531e+05 5.272530e+04 85227.77 NULL
2016 Dept Of Ed Hrly Support Staff F/T Health Service Aide 0.00000 0.000000e+00 17157.24 1.065667e+02 0.000 0.00 161 0.000000e+00 0.00 1.715724e+04 0.000000e+00 17157.24 NULL
2016 Dept Of Ed Hrly Support Staff F/T School Aide 0.00000 0.000000e+00 1777312.86 2.155364e+02 0.000 0.00 8246 0.000000e+00 0.00 1.777313e+06 0.000000e+00 1777312.86 NULL
2016 Dept Of Ed Hrly Support Staff F/T School Guard 0.00000 0.000000e+00 24670.51 7.048717e+02 0.000 0.00 35 0.000000e+00 0.00 2.467051e+04 0.000000e+00 24670.51 NULL
2016 Dept Of Ed Hrly Support Staff F/T School Lunch Helper 0.00000 0.000000e+00 152805.18 3.636487e+01 0.000 0.00 4202 0.000000e+00 0.00 1.528052e+05 0.000000e+00 152805.18 NULL
2016 Dept Of Ed Hrly Support Staff F/T School Safety Officer 0.00000 0.000000e+00 173360.72 4.953163e+03 3228.190 0.00 35 3.228190e+03 112986.65 1.733607e+05 1.129866e+05 60374.07 NULL
2016 Dept Of Ed Hrly Support Staff F/T Sr. School Lunch Helper 0.00000 0.000000e+00 295033.63 1.194468e+02 0.000 0.00 2470 0.000000e+00 0.00 2.950336e+05 0.000000e+00 295033.63 NULL
2016 Dept Of Ed Hrly Support Staff Student Aide 0.00000 0.000000e+00 7694.05 2.737122e+00 0.000 0.00 2811 0.000000e+00 0.00 7.694050e+03 0.000000e+00 7694.05 NULL
2016 Dept Of Ed Hrly Support Staff Student Aide Vocational 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2016 Dept Of Ed Hrly Support Staff Substitute Health Svc. Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2016 Dept Of Ed Hrly Support Staff Substitute Recreation Assistant 0.00000 0.000000e+00 823.50 1.004268e+01 0.000 0.00 82 0.000000e+00 0.00 8.235000e+02 0.000000e+00 823.50 NULL
2016 Dept Of Ed Hrly Support Staff Substitute School Aide 0.00000 0.000000e+00 13952.79 6.285041e+01 0.000 0.00 222 0.000000e+00 0.00 1.395279e+04 0.000000e+00 13952.79 NULL
2016 Dept Of Ed Hrly Support Staff Substitute School Guard 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2016 Dept Of Ed Hrly Support Staff Substitute School Lunch Helper 0.00000 0.000000e+00 380.31 5.797409e-01 0.000 0.00 656 0.000000e+00 0.00 3.803100e+02 0.000000e+00 380.31 NULL
2016 Dept Of Ed Hrly Support Staff Substitute Sr. School Lunch Helper 0.00000 0.000000e+00 4195.69 8.068635e+00 0.000 0.00 520 0.000000e+00 0.00 4.195690e+03 0.000000e+00 4195.69 NULL
2016 Dept Of Ed Hrly Support Staff Supervising School Aide 0.00000 0.000000e+00 352701.76 7.568707e+02 0.000 0.00 466 0.000000e+00 0.00 3.527018e+05 0.000000e+00 352701.76 NULL
2016 Dept Of Ed Hrly Support Staff NA NA NA 1621.92 5.406400e+02 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2016 Dept Of Ed Para Professionals Adult Ed-30 H 37425.14286 1.309880e+06 12781.55 3.651871e+02 0.000 0.00 35 0.000000e+00 0.00 1.322662e+06 1.309880e+06 12781.55 NULL
2016 Dept Of Ed Para Professionals Adult Ed-35 H 43258.33333 1.297750e+05 3309.39 1.103130e+03 0.000 0.00 3 0.000000e+00 0.00 1.330844e+05 1.297750e+05 3309.39 NULL
2016 Dept Of Ed Para Professionals Annual Ed Para 32926.12801 8.523916e+08 1560688.11 6.028616e+01 0.000 0.00 25888 0.000000e+00 0.00 8.539523e+08 8.523916e+08 1560688.11 NULL
2016 Dept Of Ed Para Professionals Pre-Ses Ed Para 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 66 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2016 Dept Of Ed Para Professionals Substitute Ed Para NA NA 0.00 0.000000e+00 0.000 0.00 6440 0.000000e+00 0.00 NA NA NA NULL
2016 Dept Of Ed Para Professionals Teacher Aide 23774.61069 3.114474e+06 7872.95 6.009886e+01 0.000 0.00 131 0.000000e+00 0.00 3.122347e+06 3.114474e+06 7872.95 NULL
2016 Dept Of Ed Para Professionals NA 29910.50000 5.982100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.982100e+04 5.982100e+04 0.00 NULL
2016 Dept Of Ed Pedagogical 12 Month Special Education Asst. Principal 122102.12698 3.076974e+07 0.00 0.000000e+00 0.000 0.00 252 0.000000e+00 0.00 3.076974e+07 3.076974e+07 0.00 NULL
2016 Dept Of Ed Pedagogical 12 Month Special Education Supervisor 124212.62069 3.602166e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 3.602166e+06 3.602166e+06 0.00 NULL
2016 Dept Of Ed Pedagogical Adult Educat Teach - Reg Sub 34836.18182 3.831980e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 3.831980e+05 3.831980e+05 0.00 NULL
2016 Dept Of Ed Pedagogical Adult Education Teacher 93422.61364 1.644238e+07 0.00 0.000000e+00 0.000 0.00 176 0.000000e+00 0.00 1.644238e+07 1.644238e+07 0.00 NULL
2016 Dept Of Ed Pedagogical Adult Educator Assistant Coord 83979.00000 1.679580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.679580e+05 1.679580e+05 0.00 NULL
2016 Dept Of Ed Pedagogical Aspiring Principal 110205.00000 1.653075e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.653075e+06 1.653075e+06 0.00 NULL
2016 Dept Of Ed Pedagogical Assistant Principal 112362.33938 4.645059e+08 0.00 0.000000e+00 0.000 0.00 4134 0.000000e+00 0.00 4.645059e+08 4.645059e+08 0.00 NULL
2016 Dept Of Ed Pedagogical Assistant Principal Assigned 118314.50000 9.465160e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.465160e+05 9.465160e+05 0.00 NULL
2016 Dept Of Ed Pedagogical Assistant Superintendent 151883.56863 3.098425e+07 0.00 0.000000e+00 0.000 0.00 204 0.000000e+00 0.00 3.098425e+07 3.098425e+07 0.00 NULL
2016 Dept Of Ed Pedagogical Chancellor 227737.00000 2.277370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277370e+05 2.277370e+05 0.00 NULL
2016 Dept Of Ed Pedagogical Community Supertindent 169988.42308 8.839398e+06 0.00 0.000000e+00 0.000 0.00 52 0.000000e+00 0.00 8.839398e+06 8.839398e+06 0.00 NULL
2016 Dept Of Ed Pedagogical Cse Chairperson 132203.61111 2.379665e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.379665e+06 2.379665e+06 0.00 NULL
2016 Dept Of Ed Pedagogical Deputy Chancellor 219367.00000 2.193670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.193670e+05 2.193670e+05 0.00 NULL
2016 Dept Of Ed Pedagogical Deputy Community Superintendent 155399.00000 1.553990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.553990e+05 1.553990e+05 0.00 NULL
2016 Dept Of Ed Pedagogical Deputy Regional Superintendent 194963.33333 5.848900e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.848900e+05 5.848900e+05 0.00 NULL
2016 Dept Of Ed Pedagogical Director 125760.58824 2.137930e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.137930e+06 2.137930e+06 0.00 NULL
2016 Dept Of Ed Pedagogical Educational Administrator Csa 116108.24645 1.349178e+08 0.00 0.000000e+00 0.000 0.00 1162 0.000000e+00 0.00 1.349178e+08 1.349178e+08 0.00 NULL
2016 Dept Of Ed Pedagogical Educational Administrator Uft 125489.50000 7.529370e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.529370e+05 7.529370e+05 0.00 NULL
2016 Dept Of Ed Pedagogical Guidance Counselor 89210.20464 2.925203e+08 0.00 0.000000e+00 0.000 0.00 3279 0.000000e+00 0.00 2.925203e+08 2.925203e+08 0.00 NULL
2016 Dept Of Ed Pedagogical Guidance Counselor Assigned A 100088.17647 1.701499e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.701499e+06 1.701499e+06 0.00 NULL
2016 Dept Of Ed Pedagogical Guidance Counselor-Reg Sub 58756.00000 3.525360e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.525360e+05 3.525360e+05 0.00 NULL
2016 Dept Of Ed Pedagogical Lab Specialist/Assistant 76191.61475 9.295377e+06 0.00 0.000000e+00 0.000 0.00 122 0.000000e+00 0.00 9.295377e+06 9.295377e+06 0.00 NULL
2016 Dept Of Ed Pedagogical Local Instructional Supervisor 180550.45455 1.986055e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.986055e+06 1.986055e+06 0.00 NULL
2016 Dept Of Ed Pedagogical New Principal Intern 84575.00000 8.457500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.457500e+04 8.457500e+04 0.00 NULL
2016 Dept Of Ed Pedagogical Principal 143614.51154 3.172445e+08 0.00 0.000000e+00 0.000 0.00 2209 0.000000e+00 0.00 3.172445e+08 3.172445e+08 0.00 NULL
2016 Dept Of Ed Pedagogical Principal Assigned 151689.34615 3.943923e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 3.943923e+06 3.943923e+06 0.00 NULL
2016 Dept Of Ed Pedagogical Psychologist In Train - Reg Sub 45308.00000 9.967760e+05 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 9.967760e+05 9.967760e+05 0.00 NULL
2016 Dept Of Ed Pedagogical Regional Instructional Superintendent 209117.00000 2.091170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.091170e+05 2.091170e+05 0.00 NULL
2016 Dept Of Ed Pedagogical School Medical Inspector 78424.00000 2.352720e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.352720e+05 2.352720e+05 0.00 NULL
2016 Dept Of Ed Pedagogical School Psychiatrist 83320.00000 8.332000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.332000e+04 8.332000e+04 0.00 NULL
2016 Dept Of Ed Pedagogical School Psycholgist 90210.88741 1.354065e+08 0.00 0.000000e+00 0.000 0.00 1501 0.000000e+00 0.00 1.354065e+08 1.354065e+08 0.00 NULL
2016 Dept Of Ed Pedagogical School Psychologist - Reg Sub 60168.83333 3.610130e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.610130e+05 3.610130e+05 0.00 NULL
2016 Dept Of Ed Pedagogical School Secretary 57695.70308 1.912036e+08 0.00 0.000000e+00 0.000 0.00 3314 0.000000e+00 0.00 1.912036e+08 1.912036e+08 0.00 NULL
2016 Dept Of Ed Pedagogical School Secretary-Reg Sub 39093.98684 5.942286e+06 0.00 0.000000e+00 0.000 0.00 152 0.000000e+00 0.00 5.942286e+06 5.942286e+06 0.00 NULL
2016 Dept Of Ed Pedagogical School Social Worker 91597.33473 1.526928e+08 0.00 0.000000e+00 0.000 0.00 1667 0.000000e+00 0.00 1.526928e+08 1.526928e+08 0.00 NULL
2016 Dept Of Ed Pedagogical School Social Worker - Reg Sub 67909.20000 3.395460e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.395460e+05 3.395460e+05 0.00 NULL
2016 Dept Of Ed Pedagogical Supervisor 112023.28788 7.393537e+06 0.00 0.000000e+00 0.000 0.00 66 0.000000e+00 0.00 7.393537e+06 7.393537e+06 0.00 NULL
2016 Dept Of Ed Pedagogical Supervisor Assigned 128093.03704 3.458512e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 3.458512e+06 3.458512e+06 0.00 NULL
2016 Dept Of Ed Pedagogical Teach Asst Vocation - Reg Sub 47502.46667 2.137611e+06 0.00 0.000000e+00 0.000 0.00 45 0.000000e+00 0.00 2.137611e+06 2.137611e+06 0.00 NULL
2016 Dept Of Ed Pedagogical Teacher 82124.47073 5.025196e+09 0.00 0.000000e+00 0.000 0.00 61190 0.000000e+00 0.00 5.025196e+09 5.025196e+09 0.00 NULL
2016 Dept Of Ed Pedagogical Teacher Assigned A 93979.73753 4.332466e+07 0.00 0.000000e+00 0.000 0.00 461 0.000000e+00 0.00 4.332466e+07 4.332466e+07 0.00 NULL
2016 Dept Of Ed Pedagogical Teacher Assistant - Reg Sub 22500.00000 1.147500e+06 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 1.147500e+06 1.147500e+06 0.00 NULL
2016 Dept Of Ed Pedagogical Teacher Attendance 86449.48000 3.457979e+07 0.00 0.000000e+00 0.000 0.00 400 0.000000e+00 0.00 3.457979e+07 3.457979e+07 0.00 NULL
2016 Dept Of Ed Pedagogical Teacher Attendance-Reg Sub 57181.00000 1.143620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.143620e+05 1.143620e+05 0.00 NULL
2016 Dept Of Ed Pedagogical Teacher Resource Room 105606.00000 2.112120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.112120e+05 2.112120e+05 0.00 NULL
2016 Dept Of Ed Pedagogical Teacher Special Education 76490.22618 1.883036e+09 0.00 0.000000e+00 0.000 0.00 24618 0.000000e+00 0.00 1.883036e+09 1.883036e+09 0.00 NULL
2016 Dept Of Ed Pedagogical Teacher Special Education-Reg Sub 54035.15902 1.766950e+07 0.00 0.000000e+00 0.000 0.00 327 0.000000e+00 0.00 1.766950e+07 1.766950e+07 0.00 NULL
2016 Dept Of Ed Pedagogical Teacher Trainer 97302.00000 1.946040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.946040e+05 1.946040e+05 0.00 NULL
2016 Dept Of Ed Pedagogical Teacher-Reg Sub 60096.45328 3.022852e+07 0.00 0.000000e+00 0.000 0.00 503 0.000000e+00 0.00 3.022852e+07 3.022852e+07 0.00 NULL
2016 Dept Of Ed Per Diem Teachers Assistant Principal NA NA 0.00 0.000000e+00 0.000 0.00 105 0.000000e+00 0.00 NA NA NA NULL
2016 Dept Of Ed Per Diem Teachers Guidance Counselor NA NA 0.00 0.000000e+00 0.000 0.00 173 0.000000e+00 0.00 NA NA NA NULL
2016 Dept Of Ed Per Diem Teachers Lab Specialist/Assistant NA NA 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2016 Dept Of Ed Per Diem Teachers Principal NA NA 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 NA NA NA NULL
2016 Dept Of Ed Per Diem Teachers School Psychologist NA NA 0.00 0.000000e+00 0.000 0.00 86 0.000000e+00 0.00 NA NA NA NULL
2016 Dept Of Ed Per Diem Teachers School Social Worker NA NA 0.00 0.000000e+00 0.000 0.00 70 0.000000e+00 0.00 NA NA NA NULL
2016 Dept Of Ed Per Diem Teachers Secretary NA NA 0.00 0.000000e+00 0.000 0.00 185 0.000000e+00 0.00 NA NA NA NULL
2016 Dept Of Ed Per Diem Teachers Supervisor NA NA 0.00 0.000000e+00 0.000 0.00 136 0.000000e+00 0.00 NA NA NA NULL
2016 Dept Of Ed Per Diem Teachers Teacher-General Ed NA NA 0.00 0.000000e+00 0.000 0.00 11264 0.000000e+00 0.00 NA NA NA NULL
2016 Dept Of Ed Per Diem Teachers Teacher-Special Ed NA NA 0.00 0.000000e+00 0.000 0.00 242 0.000000e+00 0.00 NA NA NA NULL
2016 Dept Of Ed Per Session Teacher School Secretary Per Session NA NA 0.00 0.000000e+00 0.000 0.00 965 0.000000e+00 0.00 NA NA NA NULL
2016 Dept Of Ed Per Session Teacher Supervisor Per Session NA NA 0.00 0.000000e+00 0.000 0.00 942 0.000000e+00 0.00 NA NA NA NULL
2016 Dept Of Ed Per Session Teacher Teacher- Per Session NA NA 0.00 0.000000e+00 0.000 0.00 72791 0.000000e+00 0.00 NA NA NA NULL
2016 Dept Of Environment Protection *Research Scientist 98682.00000 9.868200e+04 1123.05 1.123050e+03 1123.050 16.00 1 1.123050e+03 1123.05 9.980505e+04 9.980505e+04 0.00 NULL
2016 Dept Of Environment Protection Accountant 60059.00000 1.801770e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.801770e+05 1.801770e+05 0.00 NULL
2016 Dept Of Environment Protection Adm Manager-Non-Mgrl 83274.29630 2.248406e+06 152031.71 5.630804e+03 697.490 2738.25 27 6.974900e+02 18832.23 2.400438e+06 2.267238e+06 133199.48 NULL
2016 Dept Of Environment Protection Admin Community Relations Specialist 112371.00000 1.123710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.123710e+05 1.123710e+05 0.00 NULL
2016 Dept Of Environment Protection Admin Dir Of Laboratory 103300.00000 3.099000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.099000e+05 3.099000e+05 0.00 NULL
2016 Dept Of Environment Protection Administrative Accountant 101419.86400 3.042596e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.042596e+05 3.042596e+05 0.00 NULL
2016 Dept Of Environment Protection Administrative Architect 126297.00000 1.262970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.262970e+05 1.262970e+05 0.00 NULL
2016 Dept Of Environment Protection Administrative City Planner 118024.58333 1.416295e+06 109.07 9.089167e+00 0.000 0.00 12 0.000000e+00 0.00 1.416404e+06 1.416295e+06 109.07 NULL
2016 Dept Of Environment Protection Administrative Construction Project Manager 123704.00000 1.237040e+05 4480.50 4.480500e+03 4480.500 56.50 1 4.480500e+03 4480.50 1.281845e+05 1.281845e+05 0.00 NULL
2016 Dept Of Environment Protection Administrative Director Of Laboratory 127534.68750 2.040555e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.040555e+06 2.040555e+06 0.00 NULL
2016 Dept Of Environment Protection Administrative Engineer 128270.58654 2.668028e+07 88245.71 4.242582e+02 0.000 1383.25 208 0.000000e+00 0.00 2.676853e+07 2.668028e+07 88245.71 NULL
2016 Dept Of Environment Protection Administrative Landscape Architect 127234.00000 1.272340e+05 1537.63 1.537630e+03 1537.630 24.25 1 1.537630e+03 1537.63 1.287716e+05 1.287716e+05 0.00 NULL
2016 Dept Of Environment Protection Administrative Manager 133576.80000 6.678840e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.678840e+05 6.678840e+05 0.00 NULL
2016 Dept Of Environment Protection Administrative Procurement Analyst 102731.00000 1.027310e+06 41749.83 4.174983e+03 1.025 694.00 10 1.025000e+00 10.25 1.069060e+06 1.027320e+06 41739.58 NULL
2016 Dept Of Environment Protection Administrative Project Manager 119693.82857 1.256785e+07 31681.02 3.017240e+02 0.000 486.25 105 0.000000e+00 0.00 1.259953e+07 1.256785e+07 31681.02 NULL
2016 Dept Of Environment Protection Administrative Public Health Sanitarian 115928.62500 9.274290e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.274290e+05 9.274290e+05 0.00 NULL
2016 Dept Of Environment Protection Administrative Public Information Specialist 114841.00000 8.038870e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.038870e+05 8.038870e+05 0.00 NULL
2016 Dept Of Environment Protection Administrative Quality Assurance Specialist 89170.80000 4.458540e+05 64052.75 1.281055e+04 2827.600 973.25 5 2.827600e+03 14138.00 5.099068e+05 4.599920e+05 49914.75 NULL
2016 Dept Of Environment Protection Administrative Real Property Manager 121504.50000 2.430090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.430090e+05 2.430090e+05 0.00 NULL
2016 Dept Of Environment Protection Administrative Staff Analyst 102317.23529 1.217575e+07 642268.30 5.397213e+03 23.650 9001.50 119 2.365000e+01 2814.35 1.281802e+07 1.217857e+07 639453.95 NULL
2016 Dept Of Environment Protection Administrative Storekeeper 105603.00000 2.112060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.112060e+05 2.112060e+05 0.00 NULL
2016 Dept Of Environment Protection Agency Attorney 85664.66667 3.597916e+06 33860.55 8.062036e+02 0.000 660.00 42 0.000000e+00 0.00 3.631777e+06 3.597916e+06 33860.55 NULL
2016 Dept Of Environment Protection Agency Security Director 107106.00000 1.071060e+05 63.19 6.319000e+01 63.190 0.00 1 6.319000e+01 63.19 1.071692e+05 1.071692e+05 0.00 NULL
2016 Dept Of Environment Protection Air Pollution Inspector 44812.80488 1.837325e+06 530672.06 1.294322e+04 11754.420 15803.73 41 1.175442e+04 481931.22 2.367997e+06 2.319256e+06 48740.84 NULL
2016 Dept Of Environment Protection Apprentice 39573.80000 2.176559e+06 177780.63 3.232375e+03 2486.280 7620.25 55 2.486280e+03 136745.40 2.354340e+06 2.313304e+06 41035.23 NULL
2016 Dept Of Environment Protection Architect 91806.00000 3.672240e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.672240e+05 3.672240e+05 0.00 NULL
2016 Dept Of Environment Protection Assistant Architect 63835.87500 5.106870e+05 865.92 1.082400e+02 0.000 31.25 8 0.000000e+00 0.00 5.115529e+05 5.106870e+05 865.92 NULL
2016 Dept Of Environment Protection Assistant Chemical Engineer 63518.80952 1.333895e+06 148449.65 7.069031e+03 2024.730 3558.50 21 2.024730e+03 42519.33 1.482345e+06 1.376414e+06 105930.32 NULL
2016 Dept Of Environment Protection Assistant Civil Engineer 63351.13208 6.715220e+06 551205.99 5.200057e+03 1337.450 12961.25 106 1.337450e+03 141769.70 7.266426e+06 6.856990e+06 409436.29 NULL
2016 Dept Of Environment Protection Assistant Commissioner 150389.50000 3.007790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.007790e+05 3.007790e+05 0.00 NULL
2016 Dept Of Environment Protection Assistant Electrical Engineer 62867.30000 2.514692e+06 143424.84 3.585621e+03 1731.405 3950.50 40 1.731405e+03 69256.20 2.658117e+06 2.583948e+06 74168.64 NULL
2016 Dept Of Environment Protection Assistant Environmental Engineer 62132.97368 2.361053e+06 110913.17 2.918768e+03 122.180 3003.00 38 1.221800e+02 4642.84 2.471966e+06 2.365696e+06 106270.33 NULL
2016 Dept Of Environment Protection Assistant Mechanical Engineer 62161.88406 4.289170e+06 296636.60 4.299081e+03 1590.270 8007.50 69 1.590270e+03 109728.63 4.585807e+06 4.398899e+06 186907.97 NULL
2016 Dept Of Environment Protection Assoc Water Use Inspector-Mgrl 113846.00000 1.138460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.138460e+05 1.138460e+05 0.00 NULL
2016 Dept Of Environment Protection Associate Air Pollution Inspr 57795.50000 9.247280e+05 346138.84 2.163368e+04 22944.730 8127.25 16 2.163368e+04 346138.84 1.270867e+06 1.270867e+06 0.00 NULL
2016 Dept Of Environment Protection Associate Chemist 65467.85350 1.027845e+07 838573.92 5.341235e+03 825.660 26358.25 157 8.256600e+02 129628.62 1.111703e+07 1.040808e+07 708945.30 NULL
2016 Dept Of Environment Protection Associate Commissioner 168962.00000 1.689620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.689620e+05 1.689620e+05 0.00 NULL
2016 Dept Of Environment Protection Associate Investigator 58423.00000 1.168460e+05 355.42 1.777100e+02 177.710 12.25 2 1.777100e+02 355.42 1.172014e+05 1.172014e+05 0.00 NULL
2016 Dept Of Environment Protection Associate Laboratory Microbiologist 67063.23810 1.408328e+06 45923.18 2.186818e+03 459.520 1163.25 21 4.595200e+02 9649.92 1.454251e+06 1.417978e+06 36273.26 NULL
2016 Dept Of Environment Protection Associate Project Manager 79721.48113 2.056814e+07 947275.43 3.671610e+03 306.110 17842.00 258 3.061100e+02 78976.38 2.151542e+07 2.064712e+07 868299.05 NULL
2016 Dept Of Environment Protection Associate Public Health Sanitarian 68498.62857 2.397452e+06 76428.15 2.183661e+03 338.150 1482.50 35 3.381500e+02 11835.25 2.473880e+06 2.409287e+06 64592.90 NULL
2016 Dept Of Environment Protection Associate Public Information Specialist 22864.61070 2.286461e+04 139.59 1.395900e+02 139.590 5.50 1 1.395900e+02 139.59 2.300420e+04 2.300420e+04 0.00 NULL
2016 Dept Of Environment Protection Associate Public Records Officer 69516.50000 1.390330e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.390330e+05 1.390330e+05 0.00 NULL
2016 Dept Of Environment Protection Associate Quality Assurance Specialist 66133.00000 4.629310e+05 40875.53 5.839361e+03 724.560 959.00 7 7.245600e+02 5071.92 5.038065e+05 4.680029e+05 35803.61 NULL
2016 Dept Of Environment Protection Associate Staff Analyst 79481.71429 6.676464e+06 126770.04 1.509167e+03 1.400 2181.50 84 1.400000e+00 117.60 6.803234e+06 6.676582e+06 126652.44 NULL
2016 Dept Of Environment Protection Associate Water Use Inpector 59643.54545 3.936474e+06 841777.43 1.275420e+04 14192.180 19025.67 66 1.275420e+04 841777.43 4.778251e+06 4.778251e+06 0.00 NULL
2016 Dept Of Environment Protection Attorney At Law 98846.50000 3.953860e+05 9672.33 2.418082e+03 0.000 146.50 4 0.000000e+00 0.00 4.050583e+05 3.953860e+05 9672.33 NULL
2016 Dept Of Environment Protection Auto Mechanic NA NA 59425.81 1.238038e+03 144.135 950.75 48 1.441350e+02 6918.48 NA NA NA NULL
2016 Dept Of Environment Protection Automotive Service Worker 37809.75000 1.512390e+05 226.36 5.659000e+01 57.545 0.00 4 5.659000e+01 226.36 1.514654e+05 1.514654e+05 0.00 NULL
2016 Dept Of Environment Protection Bookkeeper 54119.00000 5.411900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.411900e+04 5.411900e+04 0.00 NULL
2016 Dept Of Environment Protection Bricklayer NA NA 15176.18 7.588090e+03 7588.090 214.75 2 7.588090e+03 15176.18 NA NA NA NULL
2016 Dept Of Environment Protection Captain 84624.90909 9.308740e+05 254885.61 2.317142e+04 26457.290 3670.75 11 2.317142e+04 254885.61 1.185760e+06 1.185760e+06 0.00 NULL
2016 Dept Of Environment Protection Carpenter NA NA 131111.29 1.191921e+04 12195.660 1241.00 11 1.191921e+04 131111.29 NA NA NA NULL
2016 Dept Of Environment Protection Certified It Administrator 107515.50000 4.300620e+05 20879.73 5.219932e+03 3722.610 337.75 4 3.722610e+03 14890.44 4.509417e+05 4.449524e+05 5989.29 NULL
2016 Dept Of Environment Protection Certified Local Area Network Administrator 119896.00000 1.198960e+05 34415.91 3.441591e+04 34415.910 385.50 1 3.441591e+04 34415.91 1.543119e+05 1.543119e+05 0.00 NULL
2016 Dept Of Environment Protection Certified Wide Area Network Administrator 118051.00000 1.180510e+05 2635.14 2.635140e+03 2635.140 32.25 1 2.635140e+03 2635.14 1.206861e+05 1.206861e+05 0.00 NULL
2016 Dept Of Environment Protection Chemical Engineer 85663.22222 7.709690e+05 34802.12 3.866902e+03 541.730 647.75 9 5.417300e+02 4875.57 8.057711e+05 7.758446e+05 29926.55 NULL
2016 Dept Of Environment Protection Chemical Engineering Intern 52650.00000 1.053000e+05 1540.54 7.702700e+02 770.270 40.00 2 7.702700e+02 1540.54 1.068405e+05 1.068405e+05 0.00 NULL
2016 Dept Of Environment Protection Chief Engineer 203481.00000 2.034810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.034810e+05 2.034810e+05 0.00 NULL
2016 Dept Of Environment Protection Chief Marine Engineer 78810.66667 7.092960e+05 308931.39 3.432571e+04 35032.860 4750.75 9 3.432571e+04 308931.39 1.018227e+06 1.018227e+06 0.00 NULL
2016 Dept Of Environment Protection City Attendant 29364.00000 2.936400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.936400e+04 2.936400e+04 0.00 NULL
2016 Dept Of Environment Protection City Laborer NA NA 87345.84 5.459115e+03 1583.800 1633.75 16 1.583800e+03 25340.80 NA NA NA NULL
2016 Dept Of Environment Protection City Medical Specialist 54325.60000 5.432560e+04 173.30 1.733000e+02 173.300 0.00 1 1.733000e+02 173.30 5.449890e+04 5.449890e+04 0.00 NULL
2016 Dept Of Environment Protection City Park Worker 22818.47036 4.563694e+05 242.45 1.212250e+01 0.000 0.00 20 0.000000e+00 0.00 4.566119e+05 4.563694e+05 242.45 NULL
2016 Dept Of Environment Protection City Planner 68870.81081 2.548220e+06 81991.09 2.215975e+03 0.000 1793.00 37 0.000000e+00 0.00 2.630211e+06 2.548220e+06 81991.09 NULL
2016 Dept Of Environment Protection City Planning Technician 43625.86667 6.543880e+05 15567.93 1.037862e+03 0.000 565.75 15 0.000000e+00 0.00 6.699559e+05 6.543880e+05 15567.93 NULL
2016 Dept Of Environment Protection City Research Scientist 84574.26979 6.512219e+06 258007.23 3.350743e+03 0.000 4663.50 77 0.000000e+00 0.00 6.770226e+06 6.512219e+06 258007.23 NULL
2016 Dept Of Environment Protection City Seasonal Aide 8367.66048 5.020596e+04 5906.01 9.843350e+02 281.755 303.50 6 2.817550e+02 1690.53 5.611197e+04 5.189649e+04 4215.48 NULL
2016 Dept Of Environment Protection Civil Engineer 87312.42105 4.976808e+06 227811.06 3.996685e+03 0.000 3724.50 57 0.000000e+00 0.00 5.204619e+06 4.976808e+06 227811.06 NULL
2016 Dept Of Environment Protection Civil Engineering Intern 52039.39394 1.717300e+06 17476.39 5.295876e+02 28.460 588.75 33 2.846000e+01 939.18 1.734776e+06 1.718239e+06 16537.21 NULL
2016 Dept Of Environment Protection Claim Specialist 39741.60000 1.987080e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.987080e+05 1.987080e+05 0.00 NULL
2016 Dept Of Environment Protection Clerical Aide 24001.63975 4.800328e+04 14.23 7.115000e+00 7.115 1.00 2 7.115000e+00 14.23 4.801751e+04 4.801751e+04 0.00 NULL
2016 Dept Of Environment Protection Clerical Associate 36792.52052 1.556324e+07 1092454.68 2.582635e+03 0.000 37063.75 423 0.000000e+00 0.00 1.665569e+07 1.556324e+07 1092454.68 NULL
2016 Dept Of Environment Protection College Aide 5782.30533 6.938766e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 6.938766e+04 6.938766e+04 0.00 NULL
2016 Dept Of Environment Protection College Aide - Assignment Levels Ii And Iii 11308.99600 1.130900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.130900e+04 1.130900e+04 0.00 NULL
2016 Dept Of Environment Protection Commissioner Of Environmental Protection 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Dept Of Environment Protection Community Assistant 33630.80713 1.109817e+06 44627.91 1.352361e+03 53.120 2053.50 33 5.312000e+01 1752.96 1.154445e+06 1.111570e+06 42874.95 NULL
2016 Dept Of Environment Protection Community Associate 48914.53686 3.081616e+06 165672.26 2.629718e+03 631.190 5675.25 63 6.311900e+02 39764.97 3.247288e+06 3.121381e+06 125907.29 NULL
2016 Dept Of Environment Protection Community Coordinator 64764.04918 3.950607e+06 224618.18 3.682265e+03 29.590 5269.00 61 2.959000e+01 1804.99 4.175225e+06 3.952412e+06 222813.19 NULL
2016 Dept Of Environment Protection Community Service Aide 30945.80000 1.547290e+05 4937.75 9.875500e+02 87.680 251.50 5 8.768000e+01 438.40 1.596668e+05 1.551674e+05 4499.35 NULL
2016 Dept Of Environment Protection Computer Aide-Non-Spvr 49236.41667 5.908370e+05 38142.73 3.178561e+03 0.000 1082.00 12 0.000000e+00 0.00 6.289797e+05 5.908370e+05 38142.73 NULL
2016 Dept Of Environment Protection Computer Associate 71219.38806 4.771699e+06 175124.48 2.613798e+03 0.000 3560.25 67 0.000000e+00 0.00 4.946823e+06 4.771699e+06 175124.48 NULL
2016 Dept Of Environment Protection Computer Operations Manager 132598.00000 1.325980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.325980e+05 1.325980e+05 0.00 NULL
2016 Dept Of Environment Protection Computer Programmer Analyst 57294.60996 1.317776e+06 29065.26 1.263707e+03 0.000 779.50 23 0.000000e+00 0.00 1.346841e+06 1.317776e+06 29065.26 NULL
2016 Dept Of Environment Protection Computer Programmer Analyst Trainee 42637.00000 4.263700e+04 75.85 7.585000e+01 75.850 3.25 1 7.585000e+01 75.85 4.271285e+04 4.271285e+04 0.00 NULL
2016 Dept Of Environment Protection Computer Service Technician 52289.05623 2.091562e+05 18298.31 4.574578e+03 2910.080 552.25 4 2.910080e+03 11640.32 2.274545e+05 2.207965e+05 6657.99 NULL
2016 Dept Of Environment Protection Computer Specialist 98114.84229 8.143532e+06 390974.15 4.710532e+03 738.570 6350.00 83 7.385700e+02 61301.31 8.534506e+06 8.204833e+06 329672.84 NULL
2016 Dept Of Environment Protection Computer Systems Manager 124939.72727 1.374337e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.374337e+06 1.374337e+06 0.00 NULL
2016 Dept Of Environment Protection Construction Laborer NA NA 3296471.89 1.049832e+04 9244.355 60314.75 314 9.244355e+03 2902727.47 NA NA NA NULL
2016 Dept Of Environment Protection Construction Project Manager 69979.74359 2.729210e+06 289299.73 7.417942e+03 2499.850 5613.50 39 2.499850e+03 97494.15 3.018510e+06 2.826704e+06 191805.58 NULL
2016 Dept Of Environment Protection Construction Project Manager Intern 53867.09677 1.669880e+06 182064.88 5.873061e+03 1829.220 5093.00 31 1.829220e+03 56705.82 1.851945e+06 1.726586e+06 125359.06 NULL
2016 Dept Of Environment Protection Counsel 195688.50000 3.913770e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.913770e+05 3.913770e+05 0.00 NULL
2016 Dept Of Environment Protection Crane Operator Ampes NA NA 53579.05 5.357905e+04 53579.050 424.00 1 5.357905e+04 53579.05 NA NA NA NULL
2016 Dept Of Environment Protection Custodial Assistant 33583.00000 6.716600e+04 318.90 1.594500e+02 159.450 12.00 2 1.594500e+02 318.90 6.748490e+04 6.748490e+04 0.00 NULL
2016 Dept Of Environment Protection Custodian 30532.17877 1.251819e+06 33808.50 8.245976e+02 91.110 1501.75 41 9.111000e+01 3735.51 1.285628e+06 1.255555e+06 30072.99 NULL
2016 Dept Of Environment Protection Customer Information Representative 61645.17732 4.315162e+05 53774.50 7.682071e+03 8019.360 1279.00 7 7.682071e+03 53774.50 4.852907e+05 4.852907e+05 0.00 NULL
2016 Dept Of Environment Protection Deputy Commissioner 201408.50000 8.056340e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.056340e+05 8.056340e+05 0.00 NULL
2016 Dept Of Environment Protection Director For Equal Employment Opportunity 135260.00000 1.352600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.352600e+05 1.352600e+05 0.00 NULL
2016 Dept Of Environment Protection Director Of Noise Abatement 166438.00000 1.664380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.664380e+05 1.664380e+05 0.00 NULL
2016 Dept Of Environment Protection Director Of Technical Services 134982.00000 1.349820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.349820e+05 1.349820e+05 0.00 NULL
2016 Dept Of Environment Protection District Supervisor 91413.69565 2.102515e+06 667886.38 2.903854e+04 31601.480 9951.25 23 2.903854e+04 667886.38 2.770401e+06 2.770401e+06 0.00 NULL
2016 Dept Of Environment Protection Electrical Engineer 83258.94118 1.415402e+06 126002.83 7.411931e+03 2960.440 2105.00 17 2.960440e+03 50327.48 1.541405e+06 1.465729e+06 75675.35 NULL
2016 Dept Of Environment Protection Electrical Engineering Intern 53300.00000 5.330000e+04 6728.12 6.728120e+03 6728.120 201.00 1 6.728120e+03 6728.12 6.002812e+04 6.002812e+04 0.00 NULL
2016 Dept Of Environment Protection Electrician NA NA 995568.48 1.309959e+04 10492.130 13505.75 76 1.049213e+04 797401.88 NA NA NA NULL
2016 Dept Of Environment Protection Electrician’s Helper NA NA 334248.36 8.570471e+03 7079.140 7202.00 39 7.079140e+03 276086.46 NA NA NA NULL
2016 Dept Of Environment Protection Engineering Technician 52877.45161 3.278402e+06 315192.65 5.083752e+03 4062.535 9358.75 62 4.062535e+03 251877.17 3.593595e+06 3.530279e+06 63315.48 NULL
2016 Dept Of Environment Protection Environmental Engineer 87129.37500 6.970350e+05 67564.83 8.445604e+03 1615.490 1121.75 8 1.615490e+03 12923.92 7.645998e+05 7.099589e+05 54640.91 NULL
2016 Dept Of Environment Protection Environmental Engineering Intern 52000.00000 5.200000e+04 1458.67 1.458670e+03 1458.670 46.75 1 1.458670e+03 1458.67 5.345867e+04 5.345867e+04 0.00 NULL
2016 Dept Of Environment Protection Environmental Police Officer 55303.33882 1.681222e+07 1387093.03 4.562806e+03 1588.450 26887.43 304 1.588450e+03 482888.80 1.819931e+07 1.729510e+07 904204.23 NULL
2016 Dept Of Environment Protection Environmental Police Officer-Managerial 121816.75000 9.745340e+05 18153.83 2.269229e+03 971.195 63.05 8 9.711950e+02 7769.56 9.926878e+05 9.823036e+05 10384.27 NULL
2016 Dept Of Environment Protection Executive Agency Counsel 136587.60000 2.048814e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 2.048814e+06 2.048814e+06 0.00 NULL
2016 Dept Of Environment Protection Executive Asst To The Commissioner 95469.00000 9.546900e+04 17.24 1.724000e+01 17.240 0.00 1 1.724000e+01 17.24 9.548624e+04 9.548624e+04 0.00 NULL
2016 Dept Of Environment Protection Executive Chief Of Staff 88432.00000 8.843200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.843200e+04 8.843200e+04 0.00 NULL
2016 Dept Of Environment Protection Executive Deputy Commissioner 216037.00000 2.160370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.160370e+05 2.160370e+05 0.00 NULL
2016 Dept Of Environment Protection Executive Program Specialist 125083.50000 2.501670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.501670e+05 2.501670e+05 0.00 NULL
2016 Dept Of Environment Protection First Asst Marine Engineer 75002.00000 3.000080e+05 74977.09 1.874427e+04 18658.930 1159.50 4 1.865893e+04 74635.72 3.749851e+05 3.746437e+05 341.37 NULL
2016 Dept Of Environment Protection Gardener 58742.66667 3.524560e+05 201.59 3.359833e+01 0.000 18.00 6 0.000000e+00 0.00 3.526576e+05 3.524560e+05 201.59 NULL
2016 Dept Of Environment Protection Geologist 62912.00000 6.291200e+05 165.33 1.653300e+01 0.000 4.00 10 0.000000e+00 0.00 6.292853e+05 6.291200e+05 165.33 NULL
2016 Dept Of Environment Protection Industrial Hygienist 55571.17544 3.167557e+06 372681.09 6.538265e+03 1791.970 13031.75 57 1.791970e+03 102142.29 3.540238e+06 3.269699e+06 270538.80 NULL
2016 Dept Of Environment Protection Instrumental Specialist 57999.89062 3.711993e+06 120891.37 1.888928e+03 434.555 3046.00 64 4.345550e+02 27811.52 3.832884e+06 3.739805e+06 93079.85 NULL
2016 Dept Of Environment Protection Instrumental Specialist Trainee 33790.00000 1.351600e+05 665.79 1.664475e+02 73.980 42.00 4 7.398000e+01 295.92 1.358258e+05 1.354559e+05 369.87 NULL
2016 Dept Of Environment Protection Interpreter 22457.09500 6.737129e+04 7500.56 2.500187e+03 481.910 243.75 3 4.819100e+02 1445.73 7.487185e+04 6.881701e+04 6054.83 NULL
2016 Dept Of Environment Protection Investigator 37491.00000 3.749100e+04 8642.19 8.642190e+03 8642.190 369.75 1 8.642190e+03 8642.19 4.613319e+04 4.613319e+04 0.00 NULL
2016 Dept Of Environment Protection Investigator Empl Disc 71750.00000 7.175000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.175000e+04 7.175000e+04 0.00 NULL
2016 Dept Of Environment Protection Laboratory Associate 44483.40000 2.224170e+05 6482.75 1.296550e+03 750.720 237.75 5 7.507200e+02 3753.60 2.288998e+05 2.261706e+05 2729.15 NULL
2016 Dept Of Environment Protection Laboratory Helper 38631.80000 1.931590e+05 3587.89 7.175780e+02 739.720 153.50 5 7.175780e+02 3587.89 1.967469e+05 1.967469e+05 0.00 NULL
2016 Dept Of Environment Protection Laboratory Microbiologist 50421.87500 8.067500e+05 6529.98 4.081237e+02 201.175 209.00 16 2.011750e+02 3218.80 8.132800e+05 8.099688e+05 3311.18 NULL
2016 Dept Of Environment Protection Machinist NA NA 428014.37 7.379558e+03 5635.910 7151.50 58 5.635910e+03 326882.78 NA NA NA NULL
2016 Dept Of Environment Protection Machinist’s Helper NA NA 35868.20 1.708010e+03 534.410 771.75 21 5.344100e+02 11222.61 NA NA NA NULL
2016 Dept Of Environment Protection Management Auditor 67113.00000 1.342260e+05 6123.04 3.061520e+03 3061.520 159.50 2 3.061520e+03 6123.04 1.403490e+05 1.403490e+05 0.00 NULL
2016 Dept Of Environment Protection Manager, Water Supply 113070.50000 2.261410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.261410e+05 2.261410e+05 0.00 NULL
2016 Dept Of Environment Protection Marine Electronics Technician 90028.00000 9.002800e+04 1576.36 1.576360e+03 1576.360 24.00 1 1.576360e+03 1576.36 9.160436e+04 9.160436e+04 0.00 NULL
2016 Dept Of Environment Protection Marine Oiler 61543.22222 5.538890e+05 156594.64 1.739940e+04 21498.070 3284.75 9 1.739940e+04 156594.64 7.104836e+05 7.104836e+05 0.00 NULL
2016 Dept Of Environment Protection Mariner 61919.70000 1.238394e+06 347251.35 1.736257e+04 18658.200 6985.75 20 1.736257e+04 347251.35 1.585645e+06 1.585645e+06 0.00 NULL
2016 Dept Of Environment Protection Mate 68702.93750 1.099247e+06 329466.25 2.059164e+04 18776.125 6128.00 16 1.877612e+04 300418.00 1.428713e+06 1.399665e+06 29048.25 NULL
2016 Dept Of Environment Protection Mechanical Engineer 82793.71875 2.649399e+06 113595.03 3.549845e+03 205.845 1946.50 32 2.058450e+02 6587.04 2.762994e+06 2.655986e+06 107007.99 NULL
2016 Dept Of Environment Protection Mechanical Engineering Intern 51166.62500 4.093330e+05 348.66 4.358250e+01 0.000 23.75 8 0.000000e+00 0.00 4.096817e+05 4.093330e+05 348.66 NULL
2016 Dept Of Environment Protection Motor Vehicle Operator 43274.00000 8.654800e+05 139138.94 6.956947e+03 5064.315 4115.00 20 5.064315e+03 101286.30 1.004619e+06 9.667663e+05 37852.64 NULL
2016 Dept Of Environment Protection Motor Vehicle Supervisor 51660.00000 2.066400e+05 30657.55 7.664387e+03 7906.970 856.50 4 7.664387e+03 30657.55 2.372975e+05 2.372975e+05 0.00 NULL
2016 Dept Of Environment Protection Oiler NA NA 1112573.87 1.135279e+04 4642.520 11083.25 98 4.642520e+03 454966.96 NA NA NA NULL
2016 Dept Of Environment Protection Painter NA NA 3708.33 1.854165e+03 1854.165 68.00 2 1.854165e+03 3708.33 NA NA NA NULL
2016 Dept Of Environment Protection Paralegal Aide 42014.50000 8.402900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.402900e+04 8.402900e+04 0.00 NULL
2016 Dept Of Environment Protection Photographer 50808.00000 5.080800e+04 401.05 4.010500e+02 401.050 8.50 1 4.010500e+02 401.05 5.120905e+04 5.120905e+04 0.00 NULL
2016 Dept Of Environment Protection Physicist 71146.00000 1.422920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.422920e+05 1.422920e+05 0.00 NULL
2016 Dept Of Environment Protection Pipe Caulker NA NA 27367.77 2.736777e+04 27367.770 0.00 1 2.736777e+04 27367.77 NA NA NA NULL
2016 Dept Of Environment Protection Plumber NA NA 227246.29 1.082125e+04 10581.680 1532.50 21 1.058168e+04 222215.28 NA NA NA NULL
2016 Dept Of Environment Protection Plumber’s Helper NA NA 86486.68 7.207223e+03 6250.015 1074.00 12 6.250015e+03 75000.18 NA NA NA NULL
2016 Dept Of Environment Protection Port Marine Engineer 82786.00000 1.655720e+05 23938.55 1.196927e+04 11969.275 418.00 2 1.196927e+04 23938.55 1.895105e+05 1.895105e+05 0.00 NULL
2016 Dept Of Environment Protection Principal Administrative Associate 59124.13367 1.886060e+07 942375.67 2.954156e+03 0.000 23336.50 319 0.000000e+00 0.00 1.980297e+07 1.886060e+07 942375.67 NULL
2016 Dept Of Environment Protection Procurement Analyst 57882.13208 3.067753e+06 104678.86 1.975073e+03 0.000 3073.00 53 0.000000e+00 0.00 3.172432e+06 3.067753e+06 104678.86 NULL
2016 Dept Of Environment Protection Project Manager 62560.45455 1.376330e+06 29524.16 1.342007e+03 0.000 711.00 22 0.000000e+00 0.00 1.405854e+06 1.376330e+06 29524.16 NULL
2016 Dept Of Environment Protection Project Manager Intern# 52269.57895 9.931220e+05 38429.46 2.022603e+03 29.170 1155.00 19 2.917000e+01 554.23 1.031551e+06 9.936762e+05 37875.23 NULL
2016 Dept Of Environment Protection Public Health Epidemiologist 58396.50000 1.167930e+05 529.36 2.646800e+02 264.680 32.00 2 2.646800e+02 529.36 1.173224e+05 1.173224e+05 0.00 NULL
2016 Dept Of Environment Protection Public Health Sanitarian 54685.47059 9.296530e+05 35246.99 2.073352e+03 0.000 867.00 17 0.000000e+00 0.00 9.649000e+05 9.296530e+05 35246.99 NULL
2016 Dept Of Environment Protection Public Records Aide 39534.11111 3.558070e+05 55591.67 6.176852e+03 4653.050 2043.25 9 4.653050e+03 41877.45 4.113987e+05 3.976845e+05 13714.22 NULL
2016 Dept Of Environment Protection Public Records Officer 48552.00000 9.710400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.710400e+04 9.710400e+04 0.00 NULL
2016 Dept Of Environment Protection Quality Assurance Specialist 55733.33333 1.672000e+05 29883.65 9.961217e+03 10005.710 842.25 3 9.961217e+03 29883.65 1.970836e+05 1.970836e+05 0.00 NULL
2016 Dept Of Environment Protection Quality Assurance Specialist Trainee 34003.00000 3.400300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.400300e+04 3.400300e+04 0.00 NULL
2016 Dept Of Environment Protection Radio Repair Mechanic NA NA 4441.38 4.441380e+03 4441.380 69.00 1 4.441380e+03 4441.38 NA NA NA NULL
2016 Dept Of Environment Protection Research Assistant 47491.66667 1.424750e+05 2291.49 7.638300e+02 268.890 72.75 3 2.688900e+02 806.67 1.447665e+05 1.432817e+05 1484.82 NULL
2016 Dept Of Environment Protection Scientist 60227.22973 4.456815e+06 125014.73 1.689388e+03 252.295 3322.92 74 2.522950e+02 18669.83 4.581830e+06 4.475485e+06 106344.90 NULL
2016 Dept Of Environment Protection Secretary 48254.11111 4.342870e+05 16850.68 1.872298e+03 0.000 549.00 9 0.000000e+00 0.00 4.511377e+05 4.342870e+05 16850.68 NULL
2016 Dept Of Environment Protection Secretary To The Commissioner 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2016 Dept Of Environment Protection Secretary To The Exec Deputy Commissioner 59678.00000 1.193560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.193560e+05 1.193560e+05 0.00 NULL
2016 Dept Of Environment Protection Senior Adviser To The Commissioner 172550.00000 1.725500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.725500e+05 1.725500e+05 0.00 NULL
2016 Dept Of Environment Protection Senior Sewage Treatment Worker NA NA 2383533.31 1.001485e+04 7590.890 42594.50 238 7.590890e+03 1806631.82 NA NA NA NULL
2016 Dept Of Environment Protection Senior Stationary Engineer NA NA 1699981.28 3.207512e+04 33763.380 22373.25 53 3.207512e+04 1699981.28 NA NA NA NULL
2016 Dept Of Environment Protection Sewage Treatment Worker NA NA 6000472.19 7.344519e+03 3650.850 113582.60 817 3.650850e+03 2982744.45 NA NA NA NULL
2016 Dept Of Environment Protection Staff Analyst 61538.68182 2.707702e+06 84321.23 1.916392e+03 0.000 1863.50 44 0.000000e+00 0.00 2.792023e+06 2.707702e+06 84321.23 NULL
2016 Dept Of Environment Protection Staff Analyst Trainee 43551.14286 6.097160e+05 3796.79 2.711993e+02 0.000 125.50 14 0.000000e+00 0.00 6.135128e+05 6.097160e+05 3796.79 NULL
2016 Dept Of Environment Protection Stationary Engineer NA NA 3594776.98 2.054158e+04 12033.280 66099.00 175 1.203328e+04 2105824.00 NA NA NA NULL
2016 Dept Of Environment Protection Statistician 79548.00000 7.954800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.954800e+04 7.954800e+04 0.00 NULL
2016 Dept Of Environment Protection Stock Worker 25495.06895 1.019803e+05 22255.67 5.563917e+03 5093.625 1098.00 4 5.093625e+03 20374.50 1.242359e+05 1.223548e+05 1881.17 NULL
2016 Dept Of Environment Protection Strategic Initiative Specialist 74030.24600 7.403025e+05 20003.97 2.000397e+03 0.000 419.25 10 0.000000e+00 0.00 7.603064e+05 7.403025e+05 20003.97 NULL
2016 Dept Of Environment Protection Summer College Intern 1942.16430 1.514888e+05 0.00 0.000000e+00 0.000 0.00 78 0.000000e+00 0.00 1.514888e+05 1.514888e+05 0.00 NULL
2016 Dept Of Environment Protection Summer Graduate Intern 2664.10589 4.795391e+04 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 4.795391e+04 4.795391e+04 0.00 NULL
2016 Dept Of Environment Protection Superintendent Of Water And Sewer Systems 115655.47368 2.197454e+06 3073.13 1.617437e+02 0.000 48.50 19 0.000000e+00 0.00 2.200527e+06 2.197454e+06 3073.13 NULL
2016 Dept Of Environment Protection Supervising Special Officer 50479.00000 5.047900e+04 15998.79 1.599879e+04 15998.790 463.75 1 1.599879e+04 15998.79 6.647779e+04 6.647779e+04 0.00 NULL
2016 Dept Of Environment Protection Supervisor 78216.89767 1.681663e+07 3019031.43 1.404201e+04 9170.400 49948.67 215 9.170400e+03 1971636.00 1.983566e+07 1.878827e+07 1047395.43 NULL
2016 Dept Of Environment Protection Supervisor Bricklayer NA NA 17201.27 1.720127e+04 17201.270 220.25 1 1.720127e+04 17201.27 NA NA NA NULL
2016 Dept Of Environment Protection Supervisor Carpenter NA NA 31089.73 3.108973e+04 31089.730 275.50 1 3.108973e+04 31089.73 NA NA NA NULL
2016 Dept Of Environment Protection Supervisor Electrician NA NA 594473.52 2.377894e+04 19702.280 7370.75 25 1.970228e+04 492557.00 NA NA NA NULL
2016 Dept Of Environment Protection Supervisor Of Mechanics 108790.92857 1.523073e+06 252466.39 1.803331e+04 18011.780 3334.00 14 1.801178e+04 252164.92 1.775539e+06 1.775238e+06 301.47 NULL
2016 Dept Of Environment Protection Supervisor Of Motor Transport 64618.00000 6.461800e+04 39198.33 3.919833e+04 39198.330 839.75 1 3.919833e+04 39198.33 1.038163e+05 1.038163e+05 0.00 NULL
2016 Dept Of Environment Protection Supervisor Of Stock Workers 42812.00000 1.498420e+06 153212.20 4.377491e+03 2639.840 5332.25 35 2.639840e+03 92394.40 1.651632e+06 1.590814e+06 60817.80 NULL
2016 Dept Of Environment Protection Supervisor Painter NA NA 2380.32 2.380320e+03 2380.320 34.00 1 2.380320e+03 2380.32 NA NA NA NULL
2016 Dept Of Environment Protection Supervisor Plumber NA NA 127990.26 2.133171e+04 23789.730 742.00 6 2.133171e+04 127990.26 NA NA NA NULL
2016 Dept Of Environment Protection Surveyor 69798.22222 6.281840e+05 768.36 8.537333e+01 0.000 16.00 9 0.000000e+00 0.00 6.289524e+05 6.281840e+05 768.36 NULL
2016 Dept Of Environment Protection Telecommunication Manager 133640.00000 1.336400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.336400e+05 1.336400e+05 0.00 NULL
2016 Dept Of Environment Protection Telecommunications Associate 73495.00000 7.349500e+05 71942.58 7.194258e+03 1957.425 1501.75 10 1.957425e+03 19574.25 8.068926e+05 7.545242e+05 52368.33 NULL
2016 Dept Of Environment Protection Third Assistant Marine Engineer 68893.37500 5.511470e+05 134682.09 1.683526e+04 19696.330 2589.75 8 1.683526e+04 134682.09 6.858291e+05 6.858291e+05 0.00 NULL
2016 Dept Of Environment Protection Tractor Operator NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2016 Dept Of Environment Protection Water Use Inspector 46736.64151 2.477042e+06 337818.58 6.373935e+03 2456.840 10564.68 53 2.456840e+03 130212.52 2.814861e+06 2.607255e+06 207606.06 NULL
2016 Dept Of Environment Protection Watershed Maintainer 49844.06250 1.276008e+07 899219.15 3.512575e+03 1057.640 25054.25 256 1.057640e+03 270755.84 1.365930e+07 1.303084e+07 628463.31 NULL
2016 Dept Of Environment Protection Welder NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2016 Dept Of Health/Mental Hygiene * Attending Dentist 115771.00000 2.315420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.315420e+05 2.315420e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene *Asist Systms Analyst 61546.00000 1.230920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.230920e+05 1.230920e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene *Assist Coordinating Manager 50927.33333 4.583460e+05 114.43 1.271444e+01 0.000 4.00 9 0.000000e+00 0.00 4.584604e+05 4.583460e+05 114.43 NULL
2016 Dept Of Health/Mental Hygiene *Associate Director Health Program 110513.33333 3.315400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.315400e+05 3.315400e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene *Associate Executive Director 116655.50000 6.999330e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.999330e+05 6.999330e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene *Coordinating Manager 65981.39130 1.517572e+06 19328.28 8.403600e+02 0.000 336.50 23 0.000000e+00 0.00 1.536900e+06 1.517572e+06 19328.28 NULL
2016 Dept Of Health/Mental Hygiene *Dir Of Fiscal Affairs 96516.00000 9.651600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.651600e+04 9.651600e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene *Director Of Health Care Program Planning/Analysis 97018.60000 4.850930e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.850930e+05 4.850930e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene *Personnel Program Developement Specialist 79813.50000 1.596270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.596270e+05 1.596270e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene *Senior Staff Officer 73995.00000 7.399500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.399500e+04 7.399500e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene *Senior Systems Analyst 52238.85714 3.656720e+05 129.01 1.843000e+01 0.270 0.00 7 2.700000e-01 1.89 3.658010e+05 3.656739e+05 127.12 NULL
2016 Dept Of Health/Mental Hygiene *Sr Management Consultant 82745.60000 2.068640e+06 316.60 1.266400e+01 0.000 5.00 25 0.000000e+00 0.00 2.068957e+06 2.068640e+06 316.60 NULL
2016 Dept Of Health/Mental Hygiene *Sr Systems Analyst - Edp 53309.00000 5.330900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.330900e+04 5.330900e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene *Supvsng Systems Analyst 59940.33333 1.798210e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.798210e+05 1.798210e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene *Systems Analyst 46637.84615 6.062920e+05 711.18 5.470615e+01 0.000 24.75 13 0.000000e+00 0.00 6.070032e+05 6.062920e+05 711.18 NULL
2016 Dept Of Health/Mental Hygiene ?*Community Liaison Worker 49278.00000 9.855600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.855600e+04 9.855600e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene ?*Dentist 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2016 Dept Of Health/Mental Hygiene ?Pharmacy Technician 40496.00000 8.099200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.099200e+04 8.099200e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene ?Senior Automotive Service Worker 45841.00000 4.584100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.584100e+04 4.584100e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Accountant 59242.74286 2.073496e+06 30196.97 8.627706e+02 0.000 664.75 35 0.000000e+00 0.00 2.103693e+06 2.073496e+06 30196.97 NULL
2016 Dept Of Health/Mental Hygiene Adm Manager-Non-Mgrl 69387.64286 1.942854e+06 22527.14 8.045407e+02 0.000 552.00 28 0.000000e+00 0.00 1.965381e+06 1.942854e+06 22527.14 NULL
2016 Dept Of Health/Mental Hygiene Admin Community Relations Specialist 91452.26429 6.401658e+05 13847.97 1.978281e+03 0.000 214.75 7 0.000000e+00 0.00 6.540138e+05 6.401658e+05 13847.97 NULL
2016 Dept Of Health/Mental Hygiene Admin Contract Specialist 105645.63158 4.014534e+06 993.44 2.614316e+01 0.000 12.50 38 0.000000e+00 0.00 4.015527e+06 4.014534e+06 993.44 NULL
2016 Dept Of Health/Mental Hygiene Administrative Accountant 118530.50000 2.370610e+05 1399.85 6.999250e+02 699.925 21.75 2 6.999250e+02 1399.85 2.384609e+05 2.384609e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Administrative Director Of Social Services 94496.57143 6.614760e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.614760e+05 6.614760e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Administrative Investigator 144502.00000 1.445020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.445020e+05 1.445020e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Administrative Labor Relations Analyst 100156.00000 3.004680e+05 10.21 3.403333e+00 0.000 0.00 3 0.000000e+00 0.00 3.004782e+05 3.004680e+05 10.21 NULL
2016 Dept Of Health/Mental Hygiene Administrative Management Auditor 89728.00000 5.383680e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.383680e+05 5.383680e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Administrative Manager 155785.00000 1.557850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.557850e+05 1.557850e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Administrative Printing Services Manager 114416.00000 1.144160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.144160e+05 1.144160e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Administrative Procurement Analyst 79900.00000 7.191000e+05 47852.17 5.316908e+03 290.110 757.00 9 2.901100e+02 2610.99 7.669522e+05 7.217110e+05 45241.18 NULL
2016 Dept Of Health/Mental Hygiene Administrative Psychologist 147516.50000 2.950330e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.950330e+05 2.950330e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Administrative Public Health Nurse 107809.30435 2.479614e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 2.479614e+06 2.479614e+06 0.00 NULL
2016 Dept Of Health/Mental Hygiene Administrative Public Health Sanitarian 112359.33333 1.011234e+06 6835.24 7.594711e+02 0.000 107.50 9 0.000000e+00 0.00 1.018069e+06 1.011234e+06 6835.24 NULL
2016 Dept Of Health/Mental Hygiene Administrative Public Information Specialist 95282.78261 2.191504e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 2.191504e+06 2.191504e+06 0.00 NULL
2016 Dept Of Health/Mental Hygiene Administrative Space Analyst 127747.00000 1.277470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.277470e+05 1.277470e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Administrative Staff Analyst 83932.18702 2.232596e+07 173550.61 6.524459e+02 0.000 3430.75 266 0.000000e+00 0.00 2.249951e+07 2.232596e+07 173550.61 NULL
2016 Dept Of Health/Mental Hygiene Administrative Storekeeper 85487.00000 1.709740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.709740e+05 1.709740e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Administrative Supervisor Of Building Maintenance 107008.00000 6.420480e+05 39763.55 6.627258e+03 0.000 154.25 6 0.000000e+00 0.00 6.818116e+05 6.420480e+05 39763.55 NULL
2016 Dept Of Health/Mental Hygiene Agency Attorney 82369.15257 2.141598e+06 117.05 4.501923e+00 0.000 3.00 26 0.000000e+00 0.00 2.141715e+06 2.141598e+06 117.05 NULL
2016 Dept Of Health/Mental Hygiene Agency Attorney Interne 61998.25000 2.479930e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.479930e+05 2.479930e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Agency Chief Contracting Officer 153230.00000 3.064600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.064600e+05 3.064600e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Agency Deputy Medical Director 147280.50000 5.891220e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.891220e+05 5.891220e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Agency Medical Director 178420.85185 4.817363e+06 89.24 3.305185e+00 0.000 0.00 27 0.000000e+00 0.00 4.817452e+06 4.817363e+06 89.24 NULL
2016 Dept Of Health/Mental Hygiene Architect 95427.60000 4.771380e+05 17411.13 3.482226e+03 0.000 222.75 5 0.000000e+00 0.00 4.945491e+05 4.771380e+05 17411.13 NULL
2016 Dept Of Health/Mental Hygiene Architectural Intern 46666.00000 4.666600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.666600e+04 4.666600e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Assistant Architect 66264.50000 1.325290e+05 -90.79 -4.539500e+01 -45.395 0.00 2 -4.539500e+01 -90.79 1.324382e+05 1.324382e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Assistant Commissioner 172714.00000 1.727140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.727140e+05 1.727140e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Assistant Director Health Program 70940.00000 7.094000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.094000e+04 7.094000e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Assistant Printing Press Operator 54259.84125 1.085197e+05 283.94 1.419700e+02 141.970 7.50 2 1.419700e+02 283.94 1.088036e+05 1.088036e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Associate Chemist 61425.00000 3.685500e+05 20972.12 3.495353e+03 381.450 900.75 6 3.814500e+02 2288.70 3.895221e+05 3.708387e+05 18683.42 NULL
2016 Dept Of Health/Mental Hygiene Associate Contract Specialist 73666.75000 2.946670e+05 11.36 2.840000e+00 0.000 0.00 4 0.000000e+00 0.00 2.946784e+05 2.946670e+05 11.36 NULL
2016 Dept Of Health/Mental Hygiene Associate Correctional Counselor 57683.00000 1.730490e+05 2616.42 8.721400e+02 0.000 33.50 3 0.000000e+00 0.00 1.756654e+05 1.730490e+05 2616.42 NULL
2016 Dept Of Health/Mental Hygiene Associate Director Of Nursing Services 105257.00000 1.052570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.052570e+05 1.052570e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Associate Investigator 62061.00000 6.206100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.206100e+04 6.206100e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Associate Laboratory Microbiologist 66030.95556 2.971393e+06 280146.24 6.225472e+03 1247.460 11989.75 45 1.247460e+03 56135.70 3.251539e+06 3.027529e+06 224010.54 NULL
2016 Dept Of Health/Mental Hygiene Associate Project Manager 93029.33333 2.790880e+05 12945.04 4.315013e+03 5190.260 186.75 3 4.315013e+03 12945.04 2.920330e+05 2.920330e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Associate Public Health Sanitarian 67670.32520 8.323450e+06 632634.30 5.143368e+03 1028.750 15315.75 123 1.028750e+03 126536.25 8.956084e+06 8.449986e+06 506098.05 NULL
2016 Dept Of Health/Mental Hygiene Associate Public Information Specialist 63880.00000 1.916400e+05 5179.46 1.726487e+03 2394.120 111.00 3 1.726487e+03 5179.46 1.968195e+05 1.968195e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Associate Staff Analyst 79448.71500 9.216051e+06 88784.00 7.653793e+02 0.000 1333.25 116 0.000000e+00 0.00 9.304835e+06 9.216051e+06 88784.00 NULL
2016 Dept Of Health/Mental Hygiene Asst Commissioner 200160.00000 2.001600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.001600e+05 2.001600e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Asst Pb Hlth Adv 32838.04270 1.050817e+06 20359.00 6.362188e+02 0.000 760.50 32 0.000000e+00 0.00 1.071176e+06 1.050817e+06 20359.00 NULL
2016 Dept Of Health/Mental Hygiene Attending Physician 147662.00000 1.476620e+05 91.15 9.115000e+01 91.150 0.00 1 9.115000e+01 91.15 1.477531e+05 1.477531e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Attorney At Law 109178.50000 2.183570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.183570e+05 2.183570e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Auto Mechanic NA NA 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2016 Dept Of Health/Mental Hygiene Bookbinder 40967.00000 4.096700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.096700e+04 4.096700e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Bookkeeper 53518.40000 2.675920e+05 3685.94 7.371880e+02 0.000 163.50 5 0.000000e+00 0.00 2.712779e+05 2.675920e+05 3685.94 NULL
2016 Dept Of Health/Mental Hygiene Carpenter NA NA 13581.69 1.358169e+04 13581.690 80.50 1 1.358169e+04 13581.69 NA NA NA NULL
2016 Dept Of Health/Mental Hygiene Caseworker 44282.95000 8.856590e+05 9773.68 4.886840e+02 0.000 189.00 20 0.000000e+00 0.00 8.954327e+05 8.856590e+05 9773.68 NULL
2016 Dept Of Health/Mental Hygiene Certified It Administrator 92096.33600 1.841927e+06 136718.24 6.835912e+03 597.725 2118.25 20 5.977250e+02 11954.50 1.978645e+06 1.853881e+06 124763.74 NULL
2016 Dept Of Health/Mental Hygiene Certified It Developer 98434.77778 8.859130e+05 6909.75 7.677500e+02 0.000 119.00 9 0.000000e+00 0.00 8.928228e+05 8.859130e+05 6909.75 NULL
2016 Dept Of Health/Mental Hygiene Certified Local Area Network Administrator 88483.00000 8.848300e+04 3368.50 3.368500e+03 3368.500 0.00 1 3.368500e+03 3368.50 9.185150e+04 9.185150e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Chief City Medical Examiner 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene City Clinician 72093.56946 1.946526e+06 61138.40 2.264385e+03 23.520 865.00 27 2.352000e+01 635.04 2.007665e+06 1.947161e+06 60503.36 NULL
2016 Dept Of Health/Mental Hygiene City Laborer NA NA 207982.05 9.903907e+03 7198.730 4046.25 21 7.198730e+03 151173.33 NA NA NA NULL
2016 Dept Of Health/Mental Hygiene City Medical Examiner 172839.71154 8.987665e+06 82465.12 1.585868e+03 0.000 784.75 52 0.000000e+00 0.00 9.070130e+06 8.987665e+06 82465.12 NULL
2016 Dept Of Health/Mental Hygiene City Medical Specialist 90497.32535 1.131217e+07 265029.26 2.120234e+03 2.840 4464.92 125 2.840000e+00 355.00 1.157719e+07 1.131252e+07 264674.26 NULL
2016 Dept Of Health/Mental Hygiene City Mortuary Technician 40270.24000 1.006756e+06 158781.32 6.351253e+03 3006.070 5493.75 25 3.006070e+03 75151.75 1.165537e+06 1.081908e+06 83629.57 NULL
2016 Dept Of Health/Mental Hygiene City Pest Control Aide 27003.04816 5.400610e+05 16390.88 8.195440e+02 0.000 780.75 20 0.000000e+00 0.00 5.564518e+05 5.400610e+05 16390.88 NULL
2016 Dept Of Health/Mental Hygiene City Research Scientist 80444.65596 4.553168e+07 532687.15 9.411434e+02 0.000 12536.25 566 0.000000e+00 0.00 4.606436e+07 4.553168e+07 532687.15 NULL
2016 Dept Of Health/Mental Hygiene City Veterinarian 45415.73800 2.270787e+05 406.01 8.120200e+01 0.000 7.00 5 0.000000e+00 0.00 2.274847e+05 2.270787e+05 406.01 NULL
2016 Dept Of Health/Mental Hygiene Civil Engineer 70983.00000 7.098300e+04 46.37 4.637000e+01 46.370 0.00 1 4.637000e+01 46.37 7.102937e+04 7.102937e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Clerical Aide 29034.36364 3.193780e+05 2700.25 2.454773e+02 0.000 160.25 11 0.000000e+00 0.00 3.220782e+05 3.193780e+05 2700.25 NULL
2016 Dept Of Health/Mental Hygiene Clerical Associate 40470.39106 9.348660e+06 265965.99 1.151368e+03 0.000 9134.00 231 0.000000e+00 0.00 9.614626e+06 9.348660e+06 265965.99 NULL
2016 Dept Of Health/Mental Hygiene College Aide 5492.65581 9.062882e+05 0.00 0.000000e+00 0.000 0.00 165 0.000000e+00 0.00 9.062882e+05 9.062882e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene College Aide - Assignment Levels Ii And Iii 10055.06123 1.106057e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.106057e+05 1.106057e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Commissioner Of Health 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Community Assistant 34645.52444 6.236194e+05 7317.48 4.065267e+02 0.000 308.75 18 0.000000e+00 0.00 6.309369e+05 6.236194e+05 7317.48 NULL
2016 Dept Of Health/Mental Hygiene Community Associate 44313.65000 8.862730e+05 69457.33 3.472867e+03 36.030 2316.50 20 3.603000e+01 720.60 9.557303e+05 8.869936e+05 68736.73 NULL
2016 Dept Of Health/Mental Hygiene Community Coordinator 60823.56542 6.508122e+06 222080.41 2.075518e+03 0.000 5101.25 107 0.000000e+00 0.00 6.730202e+06 6.508122e+06 222080.41 NULL
2016 Dept Of Health/Mental Hygiene Community Service Aide 29484.77500 3.833021e+05 736.97 5.669000e+01 0.000 95.00 13 0.000000e+00 0.00 3.840390e+05 3.833021e+05 736.97 NULL
2016 Dept Of Health/Mental Hygiene Computer Aide-Non-Spvr 46090.83426 1.613179e+06 29893.20 8.540914e+02 0.000 1045.75 35 0.000000e+00 0.00 1.643072e+06 1.613179e+06 29893.20 NULL
2016 Dept Of Health/Mental Hygiene Computer Associate 65412.88312 5.036792e+06 134984.36 1.753044e+03 0.000 3123.25 77 0.000000e+00 0.00 5.171776e+06 5.036792e+06 134984.36 NULL
2016 Dept Of Health/Mental Hygiene Computer Operations Manager 92729.75000 3.709190e+05 2.36 5.900000e-01 0.000 0.00 4 0.000000e+00 0.00 3.709214e+05 3.709190e+05 2.36 NULL
2016 Dept Of Health/Mental Hygiene Computer Programmer Analyst 55846.00000 5.026140e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.026140e+05 5.026140e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Computer Service Technician 44401.48475 8.880297e+05 10613.55 5.306775e+02 21.815 322.00 20 2.181500e+01 436.30 8.986432e+05 8.884660e+05 10177.25 NULL
2016 Dept Of Health/Mental Hygiene Computer Specialist 94946.78947 5.411967e+06 73690.57 1.292817e+03 0.000 769.50 57 0.000000e+00 0.00 5.485658e+06 5.411967e+06 73690.57 NULL
2016 Dept Of Health/Mental Hygiene Computer Systems Manager 103665.63333 9.329907e+06 180.21 2.002333e+00 0.000 3.00 90 0.000000e+00 0.00 9.330087e+06 9.329907e+06 180.21 NULL
2016 Dept Of Health/Mental Hygiene Consultant 68894.80357 3.858109e+06 192058.87 3.429623e+03 84.575 3951.25 56 8.457500e+01 4736.20 4.050168e+06 3.862845e+06 187322.67 NULL
2016 Dept Of Health/Mental Hygiene Consultant Public Health Nurse 75916.00000 1.518320e+05 757.58 3.787900e+02 378.790 14.50 2 3.787900e+02 757.58 1.525896e+05 1.525896e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Contract Specialist 59651.71429 4.175620e+05 1538.38 2.197686e+02 0.000 15.50 7 0.000000e+00 0.00 4.191004e+05 4.175620e+05 1538.38 NULL
2016 Dept Of Health/Mental Hygiene Correctional Counselor 45620.50000 8.211690e+05 639.29 3.551611e+01 0.000 12.50 18 0.000000e+00 0.00 8.218083e+05 8.211690e+05 639.29 NULL
2016 Dept Of Health/Mental Hygiene Counsel 200160.00000 2.001600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.001600e+05 2.001600e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Counselor 60049.00000 6.004900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.004900e+04 6.004900e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Criminalist 67334.98049 1.380367e+07 548545.59 2.675832e+03 464.910 12608.75 205 4.649100e+02 95306.55 1.435222e+07 1.389898e+07 453239.04 NULL
2016 Dept Of Health/Mental Hygiene Criminalist Assistant Director Of Laboratory 114107.52941 1.939828e+06 3104.02 1.825894e+02 0.000 33.25 17 0.000000e+00 0.00 1.942932e+06 1.939828e+06 3104.02 NULL
2016 Dept Of Health/Mental Hygiene Criminalist Deputy Director Of Labatory 168310.00000 3.366200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.366200e+05 3.366200e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Criminalist Director Of Laboratory 140750.00000 4.222500e+05 1036.26 3.454200e+02 0.000 16.50 3 0.000000e+00 0.00 4.232863e+05 4.222500e+05 1036.26 NULL
2016 Dept Of Health/Mental Hygiene Custodial Assistant 31810.96128 1.622359e+06 97701.22 1.915710e+03 1099.360 3988.50 51 1.099360e+03 56067.36 1.720060e+06 1.678426e+06 41633.86 NULL
2016 Dept Of Health/Mental Hygiene Custodian 37507.55752 8.251663e+05 62275.47 2.830703e+03 2391.320 2185.25 22 2.391320e+03 52609.04 8.874417e+05 8.777753e+05 9666.43 NULL
2016 Dept Of Health/Mental Hygiene Customer Information Representative 46759.02571 3.273132e+05 2539.10 3.627286e+02 0.000 91.00 7 0.000000e+00 0.00 3.298523e+05 3.273132e+05 2539.10 NULL
2016 Dept Of Health/Mental Hygiene Dental Hygienist 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Deputy Chief City Medical Examiner 218203.00000 6.546090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.546090e+05 6.546090e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Deputy Commissioner 205190.00000 6.155700e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.155700e+05 6.155700e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Deputy Commissioner For Administation 168249.00000 1.682490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.682490e+05 1.682490e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Deputy Director Of Medicolegal Investigations 115071.50000 2.301430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.301430e+05 2.301430e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Director 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Director Of Forensic Biology 196444.00000 1.964440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.964440e+05 1.964440e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Director Of Nursing Services 135211.00000 1.352110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.352110e+05 1.352110e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Director Of Public Relations 116434.00000 1.164340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.164340e+05 1.164340e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Director Of Security 86596.00000 8.659600e+04 20.64 2.064000e+01 20.640 0.00 1 2.064000e+01 20.64 8.661664e+04 8.661664e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Electrician NA NA 39481.78 1.974089e+04 19740.890 533.00 2 1.974089e+04 39481.78 NA NA NA NULL
2016 Dept Of Health/Mental Hygiene Electrician’s Helper NA NA 8394.88 8.394880e+03 8394.880 89.25 1 8.394880e+03 8394.88 NA NA NA NULL
2016 Dept Of Health/Mental Hygiene Environmental Health Technician 38725.00000 3.872500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.872500e+04 3.872500e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Evidence And Property Control Specialist 57357.60526 2.179589e+06 345541.01 9.093184e+03 1911.310 8150.75 38 1.911310e+03 72629.78 2.525130e+06 2.252219e+06 272911.23 NULL
2016 Dept Of Health/Mental Hygiene Executive Agency Counsel 125616.53846 1.633015e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.633015e+06 1.633015e+06 0.00 NULL
2016 Dept Of Health/Mental Hygiene Executive Program Specialist 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Executive Secretary 49760.27500 4.976028e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.976028e+04 4.976028e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Exterminator 38060.18375 1.217926e+06 53923.65 1.685114e+03 0.000 2708.50 32 0.000000e+00 0.00 1.271850e+06 1.217926e+06 53923.65 NULL
2016 Dept Of Health/Mental Hygiene Family Pub Health Nurse 79925.34783 1.838283e+06 7312.41 3.179309e+02 0.000 205.00 23 0.000000e+00 0.00 1.845595e+06 1.838283e+06 7312.41 NULL
2016 Dept Of Health/Mental Hygiene Forensic Mortuary Technician 47093.35135 1.742454e+06 653237.57 1.765507e+04 14499.810 18558.50 37 1.449981e+04 536492.97 2.395692e+06 2.278947e+06 116744.60 NULL
2016 Dept Of Health/Mental Hygiene Forensic Mortuary Technician-Coord Of Mortuary Services 86375.00000 1.727500e+05 14495.46 7.247730e+03 7247.730 240.75 2 7.247730e+03 14495.46 1.872455e+05 1.872455e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Graphic Artist 53772.33333 1.613170e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.613170e+05 1.613170e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Health Care Prog Plan/Analyst 53395.22222 4.805570e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.805570e+05 4.805570e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Health Services Manager 104991.07985 2.761265e+07 36939.00 1.404525e+02 0.000 493.50 263 0.000000e+00 0.00 2.764959e+07 2.761265e+07 36939.00 NULL
2016 Dept Of Health/Mental Hygiene Institutional Aide 35925.75500 6.107378e+05 216626.09 1.274271e+04 15197.070 9184.00 17 1.274271e+04 216626.09 8.273639e+05 8.273639e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Investigator 51845.46640 1.296137e+06 66775.24 2.671010e+03 0.000 1753.75 25 0.000000e+00 0.00 1.362912e+06 1.296137e+06 66775.24 NULL
2016 Dept Of Health/Mental Hygiene Jr Phnurse 27450.72771 1.874885e+07 414779.62 6.072908e+02 0.000 11026.00 683 0.000000e+00 0.00 1.916363e+07 1.874885e+07 414779.62 NULL
2016 Dept Of Health/Mental Hygiene Junior Public Health Nurse 66271.60693 1.921877e+06 40118.74 1.383405e+03 0.000 665.75 29 0.000000e+00 0.00 1.961995e+06 1.921877e+06 40118.74 NULL
2016 Dept Of Health/Mental Hygiene Laboratory Associate 38873.87549 1.982568e+06 71483.71 1.401641e+03 2.630 4237.00 51 2.630000e+00 134.13 2.054051e+06 1.982702e+06 71349.58 NULL
2016 Dept Of Health/Mental Hygiene Laboratory Helper 34151.75000 4.098210e+05 29318.56 2.443213e+03 103.150 1647.75 12 1.031500e+02 1237.80 4.391396e+05 4.110588e+05 28080.76 NULL
2016 Dept Of Health/Mental Hygiene Laboratory Microbiologist 49534.44367 2.129981e+06 71859.78 1.671158e+03 23.480 2942.00 43 2.348000e+01 1009.64 2.201841e+06 2.130991e+06 70850.14 NULL
2016 Dept Of Health/Mental Hygiene Legal Secretarial Assistant Al 2,3,4 Only 60665.00000 6.066500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.066500e+04 6.066500e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Maintenance Worker NA NA 140705.92 6.395724e+03 1444.300 2593.00 22 1.444300e+03 31774.60 NA NA NA NULL
2016 Dept Of Health/Mental Hygiene Management Auditor 68890.25000 5.511220e+05 1785.24 2.231550e+02 0.150 40.50 8 1.500000e-01 1.20 5.529072e+05 5.511232e+05 1784.04 NULL
2016 Dept Of Health/Mental Hygiene Mechanical Engineer 71112.00000 7.111200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.111200e+04 7.111200e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Medical Investigator 37743.42000 7.548684e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.548684e+04 7.548684e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Medical Record Librarian 52235.00000 5.223500e+04 35501.10 3.550110e+04 35501.100 872.75 1 3.550110e+04 35501.10 8.773610e+04 8.773610e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Medical Specialist 84650.08125 3.386003e+05 61.84 1.546000e+01 2.860 0.00 4 2.860000e+00 11.44 3.386622e+05 3.386118e+05 50.40 NULL
2016 Dept Of Health/Mental Hygiene Medicolegal Investigator 88846.72973 3.287329e+06 497004.60 1.343256e+04 10867.850 7461.00 37 1.086785e+04 402110.45 3.784334e+06 3.689439e+06 94894.15 NULL
2016 Dept Of Health/Mental Hygiene Motor Vehicle Operator 43489.22713 2.217951e+06 407694.90 7.994018e+03 2722.660 11904.32 51 2.722660e+03 138855.66 2.625645e+06 2.356806e+06 268839.24 NULL
2016 Dept Of Health/Mental Hygiene Motor Vehicle Supervisor 52903.00000 2.645150e+05 42228.23 8.445646e+03 2419.000 1192.75 5 2.419000e+03 12095.00 3.067432e+05 2.766100e+05 30133.23 NULL
2016 Dept Of Health/Mental Hygiene Nurse Practicioner 81450.07429 5.701505e+05 13798.08 1.971154e+03 0.000 198.75 7 0.000000e+00 0.00 5.839486e+05 5.701505e+05 13798.08 NULL
2016 Dept Of Health/Mental Hygiene Nurse’s Aide 37889.50000 7.577900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.577900e+04 7.577900e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Nutritionist 59678.22222 5.371040e+05 63.12 7.013333e+00 0.000 2.00 9 0.000000e+00 0.00 5.371671e+05 5.371040e+05 63.12 NULL
2016 Dept Of Health/Mental Hygiene Office Machine Aide 38171.62500 3.053730e+05 6095.48 7.619350e+02 0.000 283.50 8 0.000000e+00 0.00 3.114685e+05 3.053730e+05 6095.48 NULL
2016 Dept Of Health/Mental Hygiene Oiler NA NA 115213.53 3.840451e+04 33212.880 1248.50 3 3.321288e+04 99638.64 NA NA NA NULL
2016 Dept Of Health/Mental Hygiene Paralegal Aide 51091.00000 5.109100e+04 696.70 6.967000e+02 696.700 24.00 1 6.967000e+02 696.70 5.178770e+04 5.178770e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Peer Counselor 33942.00000 6.788400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.788400e+04 6.788400e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Photographer 45443.00000 1.363290e+05 17867.12 5.955707e+03 3796.340 660.50 3 3.796340e+03 11389.02 1.541961e+05 1.477180e+05 6478.10 NULL
2016 Dept Of Health/Mental Hygiene Physicist 78276.00000 7.827600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.827600e+04 7.827600e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Poison Information Specialist 88931.66099 1.689702e+06 62582.89 3.293836e+03 170.320 905.25 19 1.703200e+02 3236.08 1.752284e+06 1.692938e+06 59346.81 NULL
2016 Dept Of Health/Mental Hygiene Principal Administrative Associate 56061.11911 1.446377e+07 230216.41 8.923117e+02 0.000 6090.25 258 0.000000e+00 0.00 1.469399e+07 1.446377e+07 230216.41 NULL
2016 Dept Of Health/Mental Hygiene Printing Press Operator NA NA 128.29 1.832714e+01 16.400 0.00 7 1.640000e+01 114.80 NA NA NA NULL
2016 Dept Of Health/Mental Hygiene Procurement Analyst 57680.09671 4.556728e+06 98178.77 1.242769e+03 0.000 2359.75 79 0.000000e+00 0.00 4.654906e+06 4.556728e+06 98178.77 NULL
2016 Dept Of Health/Mental Hygiene Psychiatrist 75282.66667 2.258480e+05 414.89 1.382967e+02 82.520 0.00 3 8.252000e+01 247.56 2.262629e+05 2.260956e+05 167.33 NULL
2016 Dept Of Health/Mental Hygiene Psychologist 82265.00000 1.645300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.645300e+05 1.645300e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Public Health Adviser 39474.06350 2.056599e+07 78607.47 1.508781e+02 0.000 2606.75 521 0.000000e+00 0.00 2.064459e+07 2.056599e+07 78607.47 NULL
2016 Dept Of Health/Mental Hygiene Public Health Assistant 25989.84900 3.508630e+06 7054.78 5.225763e+01 0.000 324.50 135 0.000000e+00 0.00 3.515684e+06 3.508630e+06 7054.78 NULL
2016 Dept Of Health/Mental Hygiene Public Health Educator 60509.62000 3.025481e+06 2374.62 4.749240e+01 0.000 81.75 50 0.000000e+00 0.00 3.027856e+06 3.025481e+06 2374.62 NULL
2016 Dept Of Health/Mental Hygiene Public Health Epidemiologist 62278.80000 3.113940e+06 17512.08 3.502416e+02 0.000 406.25 50 0.000000e+00 0.00 3.131452e+06 3.113940e+06 17512.08 NULL
2016 Dept Of Health/Mental Hygiene Public Health Nurse 32745.36498 2.459177e+07 364525.28 4.853865e+02 0.000 9493.00 751 0.000000e+00 0.00 2.495629e+07 2.459177e+07 364525.28 NULL
2016 Dept Of Health/Mental Hygiene Public Health Sanitarian 51414.86196 1.676124e+07 845778.43 2.594412e+03 30.610 22204.96 326 3.061000e+01 9978.86 1.760702e+07 1.677122e+07 835799.57 NULL
2016 Dept Of Health/Mental Hygiene Public Records Aide 38329.49391 1.494850e+06 12466.92 3.196646e+02 0.000 555.00 39 0.000000e+00 0.00 1.507317e+06 1.494850e+06 12466.92 NULL
2016 Dept Of Health/Mental Hygiene Public Records Officer 45827.00000 4.582700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.582700e+04 4.582700e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Research Assistant 54486.40000 2.724320e+05 1.25 2.500000e-01 0.000 0.00 5 0.000000e+00 0.00 2.724332e+05 2.724320e+05 1.25 NULL
2016 Dept Of Health/Mental Hygiene Research Assistant Behav Sci 37492.00000 3.749200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.749200e+04 3.749200e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Scientist 67241.77273 1.479319e+06 82458.65 3.748120e+03 0.000 1923.25 22 0.000000e+00 0.00 1.561778e+06 1.479319e+06 82458.65 NULL
2016 Dept Of Health/Mental Hygiene Secretary 43989.25750 2.639355e+06 75189.72 1.253162e+03 0.000 2118.50 60 0.000000e+00 0.00 2.714545e+06 2.639355e+06 75189.72 NULL
2016 Dept Of Health/Mental Hygiene Senior Consultant 82416.00000 1.648320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.648320e+05 1.648320e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Senior Executive Secretary 63439.00000 6.343900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.343900e+04 6.343900e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Senior Housekeeper 39717.00000 3.971700e+04 132.08 1.320800e+02 132.080 0.00 1 1.320800e+02 132.08 3.984908e+04 3.984908e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Senior Medical Specialist 54167.37752 2.708369e+05 4852.86 9.705720e+02 20.370 46.50 5 2.037000e+01 101.85 2.756897e+05 2.709387e+05 4751.01 NULL
2016 Dept Of Health/Mental Hygiene Senior Mental Health Worker 38515.50000 1.540620e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.540620e+05 1.540620e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Senior Photographer 53855.50000 2.154220e+05 8446.15 2.111537e+03 2105.690 310.50 4 2.105690e+03 8422.76 2.238681e+05 2.238448e+05 23.39 NULL
2016 Dept Of Health/Mental Hygiene Senior Stationary Engineer NA NA 85245.56 8.524556e+04 85245.560 620.00 1 8.524556e+04 85245.56 NA NA NA NULL
2016 Dept Of Health/Mental Hygiene Social Worker 56427.88136 3.329245e+06 18618.30 3.155644e+02 0.000 277.50 59 0.000000e+00 0.00 3.347863e+06 3.329245e+06 18618.30 NULL
2016 Dept Of Health/Mental Hygiene Space Analyst 75228.50000 1.504570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.504570e+05 1.504570e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Spec Consultant 76204.53250 1.524091e+06 329.14 1.645700e+01 0.000 0.00 20 0.000000e+00 0.00 1.524420e+06 1.524091e+06 329.14 NULL
2016 Dept Of Health/Mental Hygiene Special Consultant 68009.18841 4.692634e+06 9733.56 1.410661e+02 0.000 186.00 69 0.000000e+00 0.00 4.702368e+06 4.692634e+06 9733.56 NULL
2016 Dept Of Health/Mental Hygiene Special Officer 38781.64384 2.831060e+06 364814.78 4.997463e+03 2121.080 11303.75 73 2.121080e+03 154838.84 3.195875e+06 2.985899e+06 209975.94 NULL
2016 Dept Of Health/Mental Hygiene Sr Associate Health Program Director 147396.00000 1.473960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.473960e+05 1.473960e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Sr Healthcare Prog Plan Anlyst 61327.07000 5.764745e+06 948.76 1.009319e+01 0.000 4.00 94 0.000000e+00 0.00 5.765693e+06 5.764745e+06 948.76 NULL
2016 Dept Of Health/Mental Hygiene Staff Analyst 65896.08163 3.228908e+06 75540.69 1.541647e+03 0.000 1296.00 49 0.000000e+00 0.00 3.304449e+06 3.228908e+06 75540.69 NULL
2016 Dept Of Health/Mental Hygiene Staff Analyst Trainee 40065.13125 2.003257e+05 2851.55 5.703100e+02 172.030 104.75 5 1.720300e+02 860.15 2.031772e+05 2.011858e+05 1991.40 NULL
2016 Dept Of Health/Mental Hygiene Stationary Engineer NA NA 1350843.51 4.221386e+04 27982.495 10753.50 32 2.798249e+04 895439.84 NA NA NA NULL
2016 Dept Of Health/Mental Hygiene Statistician 52917.50000 1.058350e+05 18.20 9.100000e+00 9.100 0.75 2 9.100000e+00 18.20 1.058532e+05 1.058532e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Stock Worker 35170.14000 6.330625e+05 17407.47 9.670817e+02 18.245 746.00 18 1.824500e+01 328.41 6.504700e+05 6.333909e+05 17079.06 NULL
2016 Dept Of Health/Mental Hygiene Summer College Intern 1819.02237 2.000925e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 2.000925e+04 2.000925e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Summer Graduate Intern 4268.39296 9.817304e+04 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 9.817304e+04 9.817304e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Supervising Computer Service Technician 68116.26286 4.768138e+05 9322.19 1.331741e+03 0.000 134.50 7 0.000000e+00 0.00 4.861360e+05 4.768138e+05 9322.19 NULL
2016 Dept Of Health/Mental Hygiene Supervising Public Health Adviser 57780.28848 5.315787e+06 96833.91 1.052543e+03 0.000 2589.00 92 0.000000e+00 0.00 5.412620e+06 5.315787e+06 96833.91 NULL
2016 Dept Of Health/Mental Hygiene Supervising Special Officer 51563.55556 4.640720e+05 131606.51 1.462295e+04 11573.440 3418.25 9 1.157344e+04 104160.96 5.956785e+05 5.682330e+05 27445.55 NULL
2016 Dept Of Health/Mental Hygiene Supervisor 45721.41667 1.097314e+06 153839.18 6.409966e+03 250.470 4801.25 24 2.504700e+02 6011.28 1.251153e+06 1.103325e+06 147827.90 NULL
2016 Dept Of Health/Mental Hygiene Supervisor Electrician NA NA 1661.64 8.308200e+02 830.820 68.50 2 8.308200e+02 1661.64 NA NA NA NULL
2016 Dept Of Health/Mental Hygiene Supervisor I Social Work 67306.00000 1.346120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.346120e+05 1.346120e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Supervisor Ii Social Work 75589.50000 7.558950e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.558950e+05 7.558950e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Supervisor Iii Social Work 80160.33333 2.404810e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.404810e+05 2.404810e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Supervisor Of Mechanical Installations & Maintenance 86013.50000 1.720270e+05 24213.38 1.210669e+04 12106.690 431.25 2 1.210669e+04 24213.38 1.962404e+05 1.962404e+05 0.00 NULL
2016 Dept Of Health/Mental Hygiene Supervisor Of Motor Transport 57687.28571 4.038110e+05 114738.44 1.639121e+04 8771.920 2649.25 7 8.771920e+03 61403.44 5.185494e+05 4.652144e+05 53335.00 NULL
2016 Dept Of Health/Mental Hygiene Supervisor Of Office Machine Operations 43796.00000 8.759200e+04 240.94 1.204700e+02 120.470 12.00 2 1.204700e+02 240.94 8.783294e+04 8.783294e+04 0.00 NULL
2016 Dept Of Health/Mental Hygiene Supervisor Of Stock Workers 48300.00000 2.898000e+05 9688.65 1.614775e+03 371.245 293.25 6 3.712450e+02 2227.47 2.994887e+05 2.920275e+05 7461.18 NULL
2016 Dept Of Health/Mental Hygiene Telecommunications Associate 64926.00000 2.597040e+05 6987.16 1.746790e+03 689.075 151.25 4 6.890750e+02 2756.30 2.666912e+05 2.624603e+05 4230.86 NULL
2016 Dept Of Health/Mental Hygiene X-Ray Technician 54066.35369 5.947299e+05 16054.40 1.459491e+03 0.000 437.25 11 0.000000e+00 0.00 6.107843e+05 5.947299e+05 16054.40 NULL
2016 Dept Of Info Tech & Telecomm *Certified Database Administrator 126094.50000 2.521890e+05 73.15 3.657500e+01 36.575 1.00 2 3.657500e+01 73.15 2.522621e+05 2.522621e+05 0.00 NULL
2016 Dept Of Info Tech & Telecomm Adm Manager-Non-Mgrl 73292.42857 3.078282e+06 35981.60 8.567048e+02 0.000 715.00 42 0.000000e+00 0.00 3.114264e+06 3.078282e+06 35981.60 NULL
2016 Dept Of Info Tech & Telecomm Admin Construction Project Manager 133250.00000 1.332500e+05 4138.98 4.138980e+03 4138.980 43.00 1 4.138980e+03 4138.98 1.373890e+05 1.373890e+05 0.00 NULL
2016 Dept Of Info Tech & Telecomm Administrative Business Promotion Coordinator 116351.61111 2.094329e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.094329e+06 2.094329e+06 0.00 NULL
2016 Dept Of Info Tech & Telecomm Administrative Construction Project Manager 129396.66667 3.881900e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.881900e+05 3.881900e+05 0.00 NULL
2016 Dept Of Info Tech & Telecomm Administrative Manager 114730.20000 5.736510e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.736510e+05 5.736510e+05 0.00 NULL
2016 Dept Of Info Tech & Telecomm Administrative Procurement Analyst 104796.11111 1.886330e+06 3311.54 1.839744e+02 0.000 59.25 18 0.000000e+00 0.00 1.889642e+06 1.886330e+06 3311.54 NULL
2016 Dept Of Info Tech & Telecomm Administrative Public Information Specialist 106974.00000 5.348700e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.348700e+05 5.348700e+05 0.00 NULL
2016 Dept Of Info Tech & Telecomm Administrative Staff Analyst 98947.77027 7.322135e+06 24694.94 3.337154e+02 0.000 521.75 74 0.000000e+00 0.00 7.346830e+06 7.322135e+06 24694.94 NULL
2016 Dept Of Info Tech & Telecomm Agency Attorney 71847.00000 4.310820e+05 1425.31 2.375517e+02 0.000 46.00 6 0.000000e+00 0.00 4.325073e+05 4.310820e+05 1425.31 NULL
2016 Dept Of Info Tech & Telecomm Agency Chief Contracting Officer 133250.00000 1.332500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.332500e+05 1.332500e+05 0.00 NULL
2016 Dept Of Info Tech & Telecomm Associate Call Center Representative-Non-Spvr 60004.60656 3.660281e+06 48060.09 7.878703e+02 108.510 1333.50 61 1.085100e+02 6619.11 3.708341e+06 3.666900e+06 41440.98 NULL
2016 Dept Of Info Tech & Telecomm Associate Investigator 53138.00000 5.313800e+04 474.09 4.740900e+02 474.090 12.00 1 4.740900e+02 474.09 5.361209e+04 5.361209e+04 0.00 NULL
2016 Dept Of Info Tech & Telecomm Associate Staff Analyst 84343.04762 1.771204e+06 12556.97 5.979510e+02 0.000 227.75 21 0.000000e+00 0.00 1.783761e+06 1.771204e+06 12556.97 NULL
2016 Dept Of Info Tech & Telecomm Attorney At Law 96280.00000 9.628000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.628000e+04 9.628000e+04 0.00 NULL
2016 Dept Of Info Tech & Telecomm Business Promotion Coordinator 64303.35950 1.286067e+06 18489.79 9.244895e+02 0.000 280.00 20 0.000000e+00 0.00 1.304557e+06 1.286067e+06 18489.79 NULL
2016 Dept Of Info Tech & Telecomm Call Center Representative 34560.79667 1.036824e+07 77155.89 2.571863e+02 0.000 3450.75 300 0.000000e+00 0.00 1.044539e+07 1.036824e+07 77155.89 NULL
2016 Dept Of Info Tech & Telecomm Certified It Administrator 115926.06897 3.361856e+06 67192.49 2.316982e+03 132.280 896.50 29 1.322800e+02 3836.12 3.429048e+06 3.365692e+06 63356.37 NULL
2016 Dept Of Info Tech & Telecomm Certified It Developer 110167.66667 3.305030e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.305030e+05 3.305030e+05 0.00 NULL
2016 Dept Of Info Tech & Telecomm Certified Local Area Network Administrator 108003.11111 9.720280e+05 6027.78 6.697533e+02 0.000 67.75 9 0.000000e+00 0.00 9.780558e+05 9.720280e+05 6027.78 NULL
2016 Dept Of Info Tech & Telecomm Certified Wide Area Network Administrator 122936.00000 4.917440e+05 398.86 9.971500e+01 0.000 6.00 4 0.000000e+00 0.00 4.921429e+05 4.917440e+05 398.86 NULL
2016 Dept Of Info Tech & Telecomm Clerical Aide 37113.00000 3.711300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.711300e+04 3.711300e+04 0.00 NULL
2016 Dept Of Info Tech & Telecomm Clerical Associate 45355.93385 1.179254e+06 12950.04 4.980785e+02 0.000 405.25 26 0.000000e+00 0.00 1.192204e+06 1.179254e+06 12950.04 NULL
2016 Dept Of Info Tech & Telecomm College Aide 5055.45000 2.022180e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.022180e+04 2.022180e+04 0.00 NULL
2016 Dept Of Info Tech & Telecomm College Aide - Assignment Levels Ii And Iii 1272.22250 2.544445e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.544445e+03 2.544445e+03 0.00 NULL
2016 Dept Of Info Tech & Telecomm Commissioner Of Dept Of Info Technology & Telecommunications 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Dept Of Info Tech & Telecomm Community Assistant 35275.66667 1.058270e+05 31.29 1.043000e+01 0.000 1.50 3 0.000000e+00 0.00 1.058583e+05 1.058270e+05 31.29 NULL
2016 Dept Of Info Tech & Telecomm Community Associate 49042.36788 1.618398e+06 9522.55 2.885621e+02 0.000 315.75 33 0.000000e+00 0.00 1.627921e+06 1.618398e+06 9522.55 NULL
2016 Dept Of Info Tech & Telecomm Community Coordinator 59513.60000 5.951360e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.951360e+05 5.951360e+05 0.00 NULL
2016 Dept Of Info Tech & Telecomm Computer Aide-Non-Spvr 46987.60000 4.698760e+05 11619.89 1.161989e+03 168.385 297.75 10 1.683850e+02 1683.85 4.814959e+05 4.715598e+05 9936.04 NULL
2016 Dept Of Info Tech & Telecomm Computer Associate 71367.63905 1.206113e+07 197355.04 1.167781e+03 0.000 4853.25 169 0.000000e+00 0.00 1.225849e+07 1.206113e+07 197355.04 NULL
2016 Dept Of Info Tech & Telecomm Computer Operations Manager 121296.20000 2.425924e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 2.425924e+06 2.425924e+06 0.00 NULL
2016 Dept Of Info Tech & Telecomm Computer Programmer Analyst 59981.06897 1.739451e+06 3781.89 1.304100e+02 0.000 73.00 29 0.000000e+00 0.00 1.743233e+06 1.739451e+06 3781.89 NULL
2016 Dept Of Info Tech & Telecomm Computer Programmer Analyst Trainee 41464.31250 6.634290e+05 4264.89 2.665556e+02 0.000 170.00 16 0.000000e+00 0.00 6.676939e+05 6.634290e+05 4264.89 NULL
2016 Dept Of Info Tech & Telecomm Computer Service Technician 43387.85714 3.037150e+05 7518.77 1.074110e+03 703.640 250.50 7 7.036400e+02 4925.48 3.112338e+05 3.086405e+05 2593.29 NULL
2016 Dept Of Info Tech & Telecomm Computer Specialist 103256.67606 2.199367e+07 245354.82 1.151901e+03 0.000 4076.25 213 0.000000e+00 0.00 2.223903e+07 2.199367e+07 245354.82 NULL
2016 Dept Of Info Tech & Telecomm Computer Systems Manager 122805.38351 3.217501e+07 0.00 0.000000e+00 0.000 0.00 262 0.000000e+00 0.00 3.217501e+07 3.217501e+07 0.00 NULL
2016 Dept Of Info Tech & Telecomm Confidential Strategy Planner 78251.00000 1.565020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.565020e+05 1.565020e+05 0.00 NULL
2016 Dept Of Info Tech & Telecomm Customer Information Representative 54497.00000 1.634910e+05 478.52 1.595067e+02 0.000 17.50 3 0.000000e+00 0.00 1.639695e+05 1.634910e+05 478.52 NULL
2016 Dept Of Info Tech & Telecomm Deputy Commissioner 150333.33333 4.510000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.510000e+05 4.510000e+05 0.00 NULL
2016 Dept Of Info Tech & Telecomm Director Of Television 52430.25000 2.097210e+05 3840.37 9.600925e+02 213.405 85.00 4 2.134050e+02 853.62 2.135614e+05 2.105746e+05 2986.75 NULL
2016 Dept Of Info Tech & Telecomm Executive Agency Counsel 133849.23077 1.740040e+06 1673.40 1.287231e+02 0.000 24.75 13 0.000000e+00 0.00 1.741713e+06 1.740040e+06 1673.40 NULL
2016 Dept Of Info Tech & Telecomm Film Manager 67642.00000 6.764200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.764200e+04 6.764200e+04 0.00 NULL
2016 Dept Of Info Tech & Telecomm Graphic Artist 54270.50000 1.085410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.085410e+05 1.085410e+05 0.00 NULL
2016 Dept Of Info Tech & Telecomm Inspector 47682.00000 9.536400e+04 91.41 4.570500e+01 45.705 3.50 2 4.570500e+01 91.41 9.545541e+04 9.545541e+04 0.00 NULL
2016 Dept Of Info Tech & Telecomm Investigator 46497.00000 4.649700e+04 0.00 0.000000e+00 0.000 1.25 1 0.000000e+00 0.00 4.649700e+04 4.649700e+04 0.00 NULL
2016 Dept Of Info Tech & Telecomm Labor Relations Analyst 56652.00000 5.665200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.665200e+04 5.665200e+04 0.00 NULL
2016 Dept Of Info Tech & Telecomm Office Machine Aide 43170.00000 4.317000e+04 2660.37 2.660370e+03 2660.370 93.00 1 2.660370e+03 2660.37 4.583037e+04 4.583037e+04 0.00 NULL
2016 Dept Of Info Tech & Telecomm Principal Administrative Associate 66058.63636 1.453290e+06 18479.52 8.399782e+02 0.000 427.50 22 0.000000e+00 0.00 1.471770e+06 1.453290e+06 18479.52 NULL
2016 Dept Of Info Tech & Telecomm Procurement Analyst 87777.00000 8.777700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.777700e+04 8.777700e+04 0.00 NULL
2016 Dept Of Info Tech & Telecomm Program Producer 67908.07143 9.507130e+05 9827.36 7.019543e+02 0.000 140.00 14 0.000000e+00 0.00 9.605404e+05 9.507130e+05 9827.36 NULL
2016 Dept Of Info Tech & Telecomm Radio And Television Operator 50035.25500 1.200846e+06 40161.13 1.673380e+03 408.740 1170.33 24 4.087400e+02 9809.76 1.241007e+06 1.210656e+06 30351.37 NULL
2016 Dept Of Info Tech & Telecomm Secretary 56463.00000 5.646300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.646300e+04 5.646300e+04 0.00 NULL
2016 Dept Of Info Tech & Telecomm Staff Analyst 61970.00000 1.859100e+05 4.10 1.366667e+00 0.000 0.00 3 0.000000e+00 0.00 1.859141e+05 1.859100e+05 4.10 NULL
2016 Dept Of Info Tech & Telecomm Staff Analyst Trainee 42163.70588 7.167830e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 7.167830e+05 7.167830e+05 0.00 NULL
2016 Dept Of Info Tech & Telecomm Summer College Intern 2419.92353 4.113870e+04 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 4.113870e+04 4.113870e+04 0.00 NULL
2016 Dept Of Info Tech & Telecomm Supervising Computer Service Technician 63947.00000 6.394700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.394700e+04 6.394700e+04 0.00 NULL
2016 Dept Of Info Tech & Telecomm Supervisor Of Office Machine Operations 46520.50000 9.304100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.304100e+04 9.304100e+04 0.00 NULL
2016 Dept Of Info Tech & Telecomm Supervisor Of Radio And Television Operators 73627.33333 4.417640e+05 7412.58 1.235430e+03 41.900 194.00 6 4.190000e+01 251.40 4.491766e+05 4.420154e+05 7161.18 NULL
2016 Dept Of Info Tech & Telecomm Telecommunication Manager 117333.80000 1.173338e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.173338e+06 1.173338e+06 0.00 NULL
2016 Dept Of Info Tech & Telecomm Telecommunications Associate 71058.10714 3.979254e+06 176827.34 3.157631e+03 950.580 3333.00 56 9.505800e+02 53232.48 4.156081e+06 4.032486e+06 123594.86 NULL
2016 Dept Of Parks & Recreation *Principal Park Supervisor 78153.00000 1.563060e+05 10903.87 5.451935e+03 5451.935 216.25 2 5.451935e+03 10903.87 1.672099e+05 1.672099e+05 0.00 NULL
2016 Dept Of Parks & Recreation ?Senior Automotive Service Worker 41005.00000 4.100500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.100500e+04 4.100500e+04 0.00 NULL
2016 Dept Of Parks & Recreation Accountant 72721.66667 2.181650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.181650e+05 2.181650e+05 0.00 NULL
2016 Dept Of Parks & Recreation Adm Manager-Non-Mgrl 65840.96590 4.016299e+06 106850.88 1.751654e+03 0.000 2238.75 61 0.000000e+00 0.00 4.123150e+06 4.016299e+06 106850.88 NULL
2016 Dept Of Parks & Recreation Admin Community Relations Specialist 92219.07269 5.994240e+06 182003.59 2.800055e+03 598.840 3282.25 65 5.988400e+02 38924.60 6.176243e+06 6.033164e+06 143078.99 NULL
2016 Dept Of Parks & Recreation Admin Landmarks Preservationist 104020.00000 1.040200e+05 4220.28 4.220280e+03 4220.280 79.25 1 4.220280e+03 4220.28 1.082403e+05 1.082403e+05 0.00 NULL
2016 Dept Of Parks & Recreation Administrative Architect 120625.00000 3.618750e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.618750e+05 3.618750e+05 0.00 NULL
2016 Dept Of Parks & Recreation Administrative City Planner 115923.66667 3.477710e+05 3898.23 1.299410e+03 27.460 65.50 3 2.746000e+01 82.38 3.516692e+05 3.478534e+05 3815.85 NULL
2016 Dept Of Parks & Recreation Administrative Community Relations Specialist 125144.00000 3.754320e+05 223.66 7.455333e+01 0.000 0.00 3 0.000000e+00 0.00 3.756557e+05 3.754320e+05 223.66 NULL
2016 Dept Of Parks & Recreation Administrative Construction Project Manager 130198.00000 1.301980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.301980e+05 1.301980e+05 0.00 NULL
2016 Dept Of Parks & Recreation Administrative Engineer 107533.80000 5.376690e+05 5595.49 1.119098e+03 360.240 93.00 5 3.602400e+02 1801.20 5.432645e+05 5.394702e+05 3794.29 NULL
2016 Dept Of Parks & Recreation Administrative Horticulturist 78403.82051 3.057749e+06 1264.42 3.242103e+01 0.000 29.00 39 0.000000e+00 0.00 3.059013e+06 3.057749e+06 1264.42 NULL
2016 Dept Of Parks & Recreation Administrative Landscape Architect 115900.00000 2.318000e+05 736.86 3.684300e+02 368.430 12.50 2 3.684300e+02 736.86 2.325369e+05 2.325369e+05 0.00 NULL
2016 Dept Of Parks & Recreation Administrative Manager 105771.66667 6.346300e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.346300e+05 6.346300e+05 0.00 NULL
2016 Dept Of Parks & Recreation Administrative Parks & Recreation Manager 84599.82333 5.583588e+06 22974.32 3.480958e+02 0.000 395.00 66 0.000000e+00 0.00 5.606563e+06 5.583588e+06 22974.32 NULL
2016 Dept Of Parks & Recreation Administrative Project Manager 102874.77132 3.909241e+06 25165.37 6.622466e+02 0.000 448.50 38 0.000000e+00 0.00 3.934407e+06 3.909241e+06 25165.37 NULL
2016 Dept Of Parks & Recreation Administrative Public Information Specialist 116345.33333 3.490360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.490360e+05 3.490360e+05 0.00 NULL
2016 Dept Of Parks & Recreation Administrative Staff Analyst 101295.29700 5.064765e+06 137812.54 2.756251e+03 41.845 2151.25 50 4.184500e+01 2092.25 5.202577e+06 5.066857e+06 135720.29 NULL
2016 Dept Of Parks & Recreation Administrative Supervisor Of Building Maintenance 102500.00000 2.050000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.050000e+05 2.050000e+05 0.00 NULL
2016 Dept Of Parks & Recreation Agency Attorney 80058.17647 1.360989e+06 9696.61 5.703888e+02 0.000 161.00 17 0.000000e+00 0.00 1.370686e+06 1.360989e+06 9696.61 NULL
2016 Dept Of Parks & Recreation Agency Chief Contracting Officer 134494.00000 2.689880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.689880e+05 2.689880e+05 0.00 NULL
2016 Dept Of Parks & Recreation Architect 85710.81818 9.428190e+05 586.05 5.327727e+01 0.000 5.50 11 0.000000e+00 0.00 9.434051e+05 9.428190e+05 586.05 NULL
2016 Dept Of Parks & Recreation Assistant Architect 59625.00000 2.385000e+05 256.34 6.408500e+01 0.000 9.00 4 0.000000e+00 0.00 2.387563e+05 2.385000e+05 256.34 NULL
2016 Dept Of Parks & Recreation Assistant Civil Engineer 51348.33333 3.080900e+05 38152.74 6.358790e+03 52.525 859.25 6 5.252500e+01 315.15 3.462427e+05 3.084052e+05 37837.59 NULL
2016 Dept Of Parks & Recreation Assistant Commissioner 153290.50000 3.065810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.065810e+05 3.065810e+05 0.00 NULL
2016 Dept Of Parks & Recreation Assistant Electrical Engineer 63702.00000 3.185100e+05 10601.65 2.120330e+03 371.540 254.00 5 3.715400e+02 1857.70 3.291117e+05 3.203677e+05 8743.95 NULL
2016 Dept Of Parks & Recreation Assistant Environmental Engineer 10532.29390 1.053229e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.053229e+04 1.053229e+04 0.00 NULL
2016 Dept Of Parks & Recreation Assistant Landscape Architect 59709.69565 2.746646e+06 38983.11 8.474589e+02 0.000 899.00 46 0.000000e+00 0.00 2.785629e+06 2.746646e+06 38983.11 NULL
2016 Dept Of Parks & Recreation Assistant Mechanical Engineer 60595.71429 4.241700e+05 8019.82 1.145689e+03 0.000 166.75 7 0.000000e+00 0.00 4.321898e+05 4.241700e+05 8019.82 NULL
2016 Dept Of Parks & Recreation Assistant To The Commissioner Of Parks And Recreation 141576.00000 1.415760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.415760e+05 1.415760e+05 0.00 NULL
2016 Dept Of Parks & Recreation Associate Labor Relations Analyst 75000.00000 7.500000e+04 2744.69 2.744690e+03 2744.690 77.25 1 2.744690e+03 2744.69 7.774469e+04 7.774469e+04 0.00 NULL
2016 Dept Of Parks & Recreation Associate Park Service Worker 44483.49352 1.525784e+07 1509268.81 4.400201e+03 2093.950 41325.41 343 2.093950e+03 718224.85 1.676711e+07 1.597606e+07 791043.96 NULL
2016 Dept Of Parks & Recreation Associate Project Manager 79148.29896 5.936122e+06 225512.02 3.006827e+03 492.820 3872.25 75 4.928200e+02 36961.50 6.161634e+06 5.973084e+06 188550.52 NULL
2016 Dept Of Parks & Recreation Associate Quality Assurance Specialist 70540.83333 4.232450e+05 10231.65 1.705275e+03 1450.005 210.25 6 1.450005e+03 8700.03 4.334767e+05 4.319450e+05 1531.62 NULL
2016 Dept Of Parks & Recreation Associate Staff Analyst 69904.32888 2.027226e+06 27283.49 9.408100e+02 2.030 573.25 29 2.030000e+00 58.87 2.054509e+06 2.027284e+06 27224.62 NULL
2016 Dept Of Parks & Recreation Associate Urban Designer 77129.09091 8.484200e+05 45655.50 4.150500e+03 1266.390 896.75 11 1.266390e+03 13930.29 8.940755e+05 8.623503e+05 31725.21 NULL
2016 Dept Of Parks & Recreation Associate Urban Park Ranger 52777.70010 6.386102e+06 493974.87 4.082437e+03 2235.650 13285.03 121 2.235650e+03 270513.65 6.880077e+06 6.656615e+06 223461.22 NULL
2016 Dept Of Parks & Recreation Auto Mechanic NA NA 77040.96 2.027394e+03 7.005 1302.75 38 7.005000e+00 266.19 NA NA NA NULL
2016 Dept Of Parks & Recreation Automotive Service Worker 36731.66621 4.775117e+05 706.69 5.436077e+01 9.690 14.00 13 9.690000e+00 125.97 4.782184e+05 4.776376e+05 580.72 NULL
2016 Dept Of Parks & Recreation Blacksmith NA NA 117846.47 9.065113e+03 2713.500 1613.75 13 2.713500e+03 35275.50 NA NA NA NULL
2016 Dept Of Parks & Recreation Blacksmith’s Helper NA NA 12311.59 6.155795e+03 6155.795 271.50 2 6.155795e+03 12311.59 NA NA NA NULL
2016 Dept Of Parks & Recreation Borough Director Of Recreation 125000.00000 6.250000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.250000e+05 6.250000e+05 0.00 NULL
2016 Dept Of Parks & Recreation Carpenter NA NA 498544.40 1.060733e+04 5125.170 4847.50 47 5.125170e+03 240882.99 NA NA NA NULL
2016 Dept Of Parks & Recreation Cement Mason NA NA 139321.65 6.966083e+03 5747.490 1777.00 20 5.747490e+03 114949.80 NA NA NA NULL
2016 Dept Of Parks & Recreation Certified It Administrator 98468.66667 2.954060e+05 2252.48 7.508267e+02 576.810 38.50 3 5.768100e+02 1730.43 2.976585e+05 2.971364e+05 522.05 NULL
2016 Dept Of Parks & Recreation Certified It Developer 91112.00000 9.111200e+04 4907.91 4.907910e+03 4907.910 71.50 1 4.907910e+03 4907.91 9.601991e+04 9.601991e+04 0.00 NULL
2016 Dept Of Parks & Recreation Chief Dockmaster 68601.00000 6.860100e+04 171.21 1.712100e+02 171.210 0.00 1 1.712100e+02 171.21 6.877221e+04 6.877221e+04 0.00 NULL
2016 Dept Of Parks & Recreation Chief Lifeguard 27095.03106 3.413974e+06 109264.61 8.671794e+02 125.965 2323.50 126 1.259650e+02 15871.59 3.523239e+06 3.429846e+06 93393.02 NULL
2016 Dept Of Parks & Recreation City Park Worker 27474.95710 3.167863e+07 1878463.41 1.629196e+03 642.670 72853.06 1153 6.426700e+02 740998.51 3.355709e+07 3.241962e+07 1137464.90 NULL
2016 Dept Of Parks & Recreation City Planner 71935.75818 1.582587e+06 49462.79 2.248309e+03 84.775 781.00 22 8.477500e+01 1865.05 1.632049e+06 1.584452e+06 47597.74 NULL
2016 Dept Of Parks & Recreation City Planning Technician 51250.00000 1.025000e+05 143.68 7.184000e+01 71.840 0.00 2 7.184000e+01 143.68 1.026437e+05 1.026437e+05 0.00 NULL
2016 Dept Of Parks & Recreation City Research Scientist 85741.54545 9.431570e+05 26239.42 2.385402e+03 0.000 408.00 11 0.000000e+00 0.00 9.693964e+05 9.431570e+05 26239.42 NULL
2016 Dept Of Parks & Recreation City Seasonal Aide 10546.28635 1.232861e+07 440913.22 3.771713e+02 47.290 20681.58 1169 4.729000e+01 55282.01 1.276952e+07 1.238389e+07 385631.21 NULL
2016 Dept Of Parks & Recreation Civil Engineer 89425.00000 2.682750e+05 478.69 1.595633e+02 0.000 8.00 3 0.000000e+00 0.00 2.687537e+05 2.682750e+05 478.69 NULL
2016 Dept Of Parks & Recreation Civil Engineering Intern 49200.00000 4.920000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.920000e+04 4.920000e+04 0.00 NULL
2016 Dept Of Parks & Recreation Clerical Aide 25383.83019 1.015353e+05 2227.96 5.569900e+02 175.235 140.75 4 1.752350e+02 700.94 1.037633e+05 1.022363e+05 1527.02 NULL
2016 Dept Of Parks & Recreation Clerical Associate 43831.53291 4.470816e+06 102885.33 1.008680e+03 0.000 2888.75 102 0.000000e+00 0.00 4.573702e+06 4.470816e+06 102885.33 NULL
2016 Dept Of Parks & Recreation Climber & Pruner 61037.74803 7.751794e+06 1149868.72 9.054084e+03 7003.280 25742.07 127 7.003280e+03 889416.56 8.901663e+06 8.641211e+06 260452.16 NULL
2016 Dept Of Parks & Recreation College Aide 2434.50000 1.217250e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.217250e+04 1.217250e+04 0.00 NULL
2016 Dept Of Parks & Recreation Commissioner Of Parks & Recreation 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Dept Of Parks & Recreation Community Assistant 13992.83510 5.737062e+05 21454.70 5.232854e+02 0.000 887.50 41 0.000000e+00 0.00 5.951609e+05 5.737062e+05 21454.70 NULL
2016 Dept Of Parks & Recreation Community Associate 35527.53945 1.090695e+07 182625.84 5.948724e+02 37.370 6133.61 307 3.737000e+01 11472.59 1.108958e+07 1.091843e+07 171153.25 NULL
2016 Dept Of Parks & Recreation Community Coordinator 62385.75329 2.401852e+07 685041.49 1.779329e+03 26.760 15979.92 385 2.676000e+01 10302.60 2.470356e+07 2.402882e+07 674738.89 NULL
2016 Dept Of Parks & Recreation Community Service Aide 5550.49925 2.053685e+05 5110.32 1.381168e+02 0.000 290.50 37 0.000000e+00 0.00 2.104788e+05 2.053685e+05 5110.32 NULL
2016 Dept Of Parks & Recreation Computer Aide-Non-Spvr 45290.45331 4.981950e+05 19576.50 1.779682e+03 28.730 562.00 11 2.873000e+01 316.03 5.177715e+05 4.985110e+05 19260.47 NULL
2016 Dept Of Parks & Recreation Computer Associate 65767.70599 4.011830e+06 87977.11 1.442248e+03 0.000 1748.50 61 0.000000e+00 0.00 4.099807e+06 4.011830e+06 87977.11 NULL
2016 Dept Of Parks & Recreation Computer Operations Manager 88228.33333 2.646850e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.646850e+05 2.646850e+05 0.00 NULL
2016 Dept Of Parks & Recreation Computer Programmer Analyst 54341.06173 1.630232e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.630232e+05 1.630232e+05 0.00 NULL
2016 Dept Of Parks & Recreation Computer Service Technician 51996.00000 5.199600e+04 2854.52 2.854520e+03 2854.520 105.00 1 2.854520e+03 2854.52 5.485052e+04 5.485052e+04 0.00 NULL
2016 Dept Of Parks & Recreation Computer Specialist 86589.50000 3.463580e+05 2134.58 5.336450e+02 0.000 44.00 4 0.000000e+00 0.00 3.484926e+05 3.463580e+05 2134.58 NULL
2016 Dept Of Parks & Recreation Computer Systems Manager 133881.00000 1.338810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.338810e+05 1.338810e+05 0.00 NULL
2016 Dept Of Parks & Recreation Construction Project Manager 72223.63480 5.416773e+06 259695.78 3.462610e+03 783.090 4923.50 75 7.830900e+02 58731.75 5.676468e+06 5.475504e+06 200964.03 NULL
2016 Dept Of Parks & Recreation Construction Project Manager Intern 53817.50000 2.152700e+05 172.83 4.320750e+01 29.010 24.75 4 2.901000e+01 116.04 2.154428e+05 2.153860e+05 56.79 NULL
2016 Dept Of Parks & Recreation Cooperative Education Trainee-Seasonal Park Help 1989.25220 9.946261e+04 0.00 0.000000e+00 0.000 0.00 50 0.000000e+00 0.00 9.946261e+04 9.946261e+04 0.00 NULL
2016 Dept Of Parks & Recreation Counsel 171166.00000 1.711660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.711660e+05 1.711660e+05 0.00 NULL
2016 Dept Of Parks & Recreation Deputy Borough Commissioner 132126.00000 1.057008e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.057008e+06 1.057008e+06 0.00 NULL
2016 Dept Of Parks & Recreation Deputy Chief Of Operations 111045.00000 1.443585e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.443585e+06 1.443585e+06 0.00 NULL
2016 Dept Of Parks & Recreation Deputy Commissioner 186613.33333 5.598400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.598400e+05 5.598400e+05 0.00 NULL
2016 Dept Of Parks & Recreation Director Of Community Involvement 99000.00000 9.900000e+04 517.24 5.172400e+02 517.240 7.00 1 5.172400e+02 517.24 9.951724e+04 9.951724e+04 0.00 NULL
2016 Dept Of Parks & Recreation Director Of Neighborhood Park Restoration 87590.00000 4.379500e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.379500e+05 4.379500e+05 0.00 NULL
2016 Dept Of Parks & Recreation Director Of Puppetry 55828.00000 5.582800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.582800e+04 5.582800e+04 0.00 NULL
2016 Dept Of Parks & Recreation Director Of Regional Joint Interest Park 92753.38793 2.689848e+06 5094.10 1.756586e+02 0.000 103.00 29 0.000000e+00 0.00 2.694942e+06 2.689848e+06 5094.10 NULL
2016 Dept Of Parks & Recreation Director Of Urban Park Ranger Program 141443.00000 1.414430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.414430e+05 1.414430e+05 0.00 NULL
2016 Dept Of Parks & Recreation Dockmaster 47150.00000 4.715000e+04 1407.77 1.407770e+03 1407.770 50.00 1 1.407770e+03 1407.77 4.855777e+04 4.855777e+04 0.00 NULL
2016 Dept Of Parks & Recreation Electrician NA NA 354708.05 9.334422e+03 7588.885 4797.25 38 7.588885e+03 288377.63 NA NA NA NULL
2016 Dept Of Parks & Recreation Engineering Technician 48569.66667 1.457090e+05 2882.65 9.608833e+02 24.080 66.50 3 2.408000e+01 72.24 1.485916e+05 1.457812e+05 2810.41 NULL
2016 Dept Of Parks & Recreation Environmental Engineer 94756.00000 9.475600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.475600e+04 9.475600e+04 0.00 NULL
2016 Dept Of Parks & Recreation Environmental Engineering Intern 53436.00000 1.068720e+05 2818.78 1.409390e+03 1409.390 105.25 2 1.409390e+03 2818.78 1.096908e+05 1.096908e+05 0.00 NULL
2016 Dept Of Parks & Recreation Executive Agency Counsel 124731.50000 4.989260e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.989260e+05 4.989260e+05 0.00 NULL
2016 Dept Of Parks & Recreation Executive Assistant To The Commissioner 151333.00000 1.513330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.513330e+05 1.513330e+05 0.00 NULL
2016 Dept Of Parks & Recreation Exterminator 30752.00000 3.075200e+04 6761.77 6.761770e+03 6761.770 270.50 1 6.761770e+03 6761.77 3.751377e+04 3.751377e+04 0.00 NULL
2016 Dept Of Parks & Recreation Forester 51025.05958 3.877905e+06 188482.39 2.480031e+03 978.730 4940.25 76 9.787300e+02 74383.48 4.066387e+06 3.952288e+06 114098.91 NULL
2016 Dept Of Parks & Recreation Gardener 40414.36177 7.557486e+06 395939.21 2.117322e+03 649.310 12476.08 187 6.493100e+02 121420.97 7.953425e+06 7.678907e+06 274518.24 NULL
2016 Dept Of Parks & Recreation Graphic Artist 6095.32000 6.095320e+03 295.68 2.956800e+02 295.680 22.25 1 2.956800e+02 295.68 6.391000e+03 6.391000e+03 0.00 NULL
2016 Dept Of Parks & Recreation High Pressure Plant Tender NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2016 Dept Of Parks & Recreation Inspector 70715.00000 7.071500e+04 925.32 9.253200e+02 925.320 1.50 1 9.253200e+02 925.32 7.164032e+04 7.164032e+04 0.00 NULL
2016 Dept Of Parks & Recreation Investigator 57368.20000 5.736820e+05 49973.13 4.997313e+03 600.840 1063.00 10 6.008400e+02 6008.40 6.236551e+05 5.796904e+05 43964.73 NULL
2016 Dept Of Parks & Recreation Job Training Participant 5938.99095 3.728499e+07 2017086.92 3.212945e+02 46.000 113665.16 6278 4.600000e+01 288788.00 3.930207e+07 3.757377e+07 1728298.92 NULL
2016 Dept Of Parks & Recreation Labor Relations Analyst 63330.40000 3.166520e+05 23879.54 4.775908e+03 652.700 628.75 5 6.527000e+02 3263.50 3.405315e+05 3.199155e+05 20616.04 NULL
2016 Dept Of Parks & Recreation Landmarks Preservationist 68871.18890 2.754848e+05 889.87 2.224675e+02 140.875 15.00 4 1.408750e+02 563.50 2.763746e+05 2.760483e+05 326.37 NULL
2016 Dept Of Parks & Recreation Landscape Architect 84485.39160 6.167434e+06 313525.44 4.294869e+03 2539.600 4736.50 73 2.539600e+03 185390.80 6.480959e+06 6.352824e+06 128134.64 NULL
2016 Dept Of Parks & Recreation Landscape Architect Intern 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2016 Dept Of Parks & Recreation Letterer And Sign Painter NA NA 2238.47 1.119235e+03 1119.235 41.50 2 1.119235e+03 2238.47 NA NA NA NULL
2016 Dept Of Parks & Recreation Life Guard 8245.06534 1.145240e+07 108456.55 7.808247e+01 25.740 4030.82 1389 2.574000e+01 35752.86 1.156085e+07 1.148815e+07 72703.69 NULL
2016 Dept Of Parks & Recreation Machinist NA NA 12740.87 3.185218e+03 3674.410 181.25 4 3.185218e+03 12740.87 NA NA NA NULL
2016 Dept Of Parks & Recreation Maintenance Worker NA NA 377819.07 3.977043e+03 2995.190 8076.50 95 2.995190e+03 284543.05 NA NA NA NULL
2016 Dept Of Parks & Recreation Manager Of Park License Agreements 144706.00000 1.447060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.447060e+05 1.447060e+05 0.00 NULL
2016 Dept Of Parks & Recreation Marine Maintenance Mechanic 71662.00000 1.433240e+05 6740.86 3.370430e+03 3370.430 92.50 2 3.370430e+03 6740.86 1.500649e+05 1.500649e+05 0.00 NULL
2016 Dept Of Parks & Recreation Mechanical Engineer 93508.33333 2.805250e+05 8497.49 2.832497e+03 1116.220 189.00 3 1.116220e+03 3348.66 2.890225e+05 2.838737e+05 5148.83 NULL
2016 Dept Of Parks & Recreation Mechanical Engineering Intern 56270.00000 5.627000e+04 188.65 1.886500e+02 188.650 5.75 1 1.886500e+02 188.65 5.645865e+04 5.645865e+04 0.00 NULL
2016 Dept Of Parks & Recreation Nutritionist 28.26000 2.826000e+01 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.826000e+01 2.826000e+01 0.00 NULL
2016 Dept Of Parks & Recreation Oiler NA NA 29641.55 7.410387e+03 7877.825 427.50 4 7.410387e+03 29641.55 NA NA NA NULL
2016 Dept Of Parks & Recreation Painter NA NA 288784.08 1.069571e+04 9955.030 5418.00 27 9.955030e+03 268785.81 NA NA NA NULL
2016 Dept Of Parks & Recreation Park Borough Commissioner 160849.60000 8.042480e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.042480e+05 8.042480e+05 0.00 NULL
2016 Dept Of Parks & Recreation Park Services Worker 36828.00000 3.682800e+04 230.02 2.300200e+02 230.020 8.00 1 2.300200e+02 230.02 3.705802e+04 3.705802e+04 0.00 NULL
2016 Dept Of Parks & Recreation Park Supervisor 68475.13192 3.156704e+07 2615992.14 5.674603e+03 3424.780 54693.65 461 3.424780e+03 1578823.58 3.418303e+07 3.314586e+07 1037168.56 NULL
2016 Dept Of Parks & Recreation Plasterer NA NA 16370.63 1.637063e+04 16370.630 142.50 1 1.637063e+04 16370.63 NA NA NA NULL
2016 Dept Of Parks & Recreation Playground Associate 11995.76451 3.802657e+06 74320.92 2.344509e+02 0.000 3479.71 317 0.000000e+00 0.00 3.876978e+06 3.802657e+06 74320.92 NULL
2016 Dept Of Parks & Recreation Plumber NA NA 861111.18 1.076389e+04 5174.870 7075.50 80 5.174870e+03 413989.60 NA NA NA NULL
2016 Dept Of Parks & Recreation Plumber’s Helper NA NA 52512.26 6.564033e+03 5218.275 760.50 8 5.218275e+03 41746.20 NA NA NA NULL
2016 Dept Of Parks & Recreation Principal Administrative Associate 60317.88580 4.161934e+06 61627.87 8.931575e+02 0.000 1453.75 69 0.000000e+00 0.00 4.223562e+06 4.161934e+06 61627.87 NULL
2016 Dept Of Parks & Recreation Procurement Analyst 63845.27778 2.298430e+06 96556.35 2.682121e+03 95.260 2171.50 36 9.526000e+01 3429.36 2.394986e+06 2.301859e+06 93126.99 NULL
2016 Dept Of Parks & Recreation Project Manager 69364.28571 9.711000e+05 54825.62 3.916116e+03 497.380 1025.50 14 4.973800e+02 6963.32 1.025926e+06 9.780633e+05 47862.30 NULL
2016 Dept Of Parks & Recreation Public Records Officer 51438.33333 1.543150e+05 3889.10 1.296367e+03 87.150 120.25 3 8.715000e+01 261.45 1.582041e+05 1.545765e+05 3627.65 NULL
2016 Dept Of Parks & Recreation Puppeteer 43169.00000 1.295070e+05 88.96 2.965333e+01 37.680 3.50 3 2.965333e+01 88.96 1.295960e+05 1.295960e+05 0.00 NULL
2016 Dept Of Parks & Recreation Quality Assurance Specialist 51867.50000 2.074700e+05 978.19 2.445475e+02 280.830 24.00 4 2.445475e+02 978.19 2.084482e+05 2.084482e+05 0.00 NULL
2016 Dept Of Parks & Recreation Recreation Director 41813.84550 2.007065e+06 43653.75 9.094531e+02 211.750 1528.77 48 2.117500e+02 10164.00 2.050718e+06 2.017229e+06 33489.75 NULL
2016 Dept Of Parks & Recreation Recreation Specialist 23248.32593 6.091061e+06 96417.32 3.680050e+02 0.000 3768.22 262 0.000000e+00 0.00 6.187479e+06 6.091061e+06 96417.32 NULL
2016 Dept Of Parks & Recreation Recreation Supervisor 45664.37007 5.753711e+06 204189.97 1.620555e+03 111.630 5221.48 126 1.116300e+02 14065.38 5.957901e+06 5.767776e+06 190124.59 NULL
2016 Dept Of Parks & Recreation Research Assistant 34757.71435 6.951543e+04 1845.69 9.228450e+02 922.845 49.00 2 9.228450e+02 1845.69 7.136112e+04 7.136112e+04 0.00 NULL
2016 Dept Of Parks & Recreation Roofer 0.00000 0.000000e+00 42.63 4.263000e+01 42.630 0.00 1 4.263000e+01 42.63 4.263000e+01 4.263000e+01 0.00 NULL
2016 Dept Of Parks & Recreation Secretary 51268.00000 5.126800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.126800e+04 5.126800e+04 0.00 NULL
2016 Dept Of Parks & Recreation Senior Photographer 68504.50000 1.370090e+05 444.11 2.220550e+02 222.055 13.75 2 2.220550e+02 444.11 1.374531e+05 1.374531e+05 0.00 NULL
2016 Dept Of Parks & Recreation Senior Stationary Engineer NA NA 160428.10 4.010703e+04 37211.675 1233.00 4 3.721168e+04 148846.70 NA NA NA NULL
2016 Dept Of Parks & Recreation Sheet Metal Worker NA NA 13283.69 1.897670e+03 247.720 173.75 7 2.477200e+02 1734.04 NA NA NA NULL
2016 Dept Of Parks & Recreation Staff Analyst 59196.19231 1.539101e+06 44200.46 1.700018e+03 6.575 909.50 26 6.575000e+00 170.95 1.583301e+06 1.539272e+06 44029.51 NULL
2016 Dept Of Parks & Recreation Stationary Engineer NA NA 890154.96 1.328589e+04 581.300 9127.50 67 5.813000e+02 38947.10 NA NA NA NULL
2016 Dept Of Parks & Recreation Steam Fitter NA NA 154961.66 1.937021e+04 18365.035 1209.00 8 1.836503e+04 146920.28 NA NA NA NULL
2016 Dept Of Parks & Recreation Steam Fitter’s Helper NA NA 4193.90 4.193900e+03 4193.900 40.50 1 4.193900e+03 4193.90 NA NA NA NULL
2016 Dept Of Parks & Recreation Stock Worker 22043.00000 4.408600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.408600e+04 4.408600e+04 0.00 NULL
2016 Dept Of Parks & Recreation Supervising Computer Service Technician 66502.00000 2.660080e+05 498.01 1.245025e+02 0.000 23.75 4 0.000000e+00 0.00 2.665060e+05 2.660080e+05 498.01 NULL
2016 Dept Of Parks & Recreation Supervising Dockmaster 63221.00000 3.161050e+05 7014.99 1.402998e+03 745.380 142.00 5 7.453800e+02 3726.90 3.231200e+05 3.198319e+05 3288.09 NULL
2016 Dept Of Parks & Recreation Supervisor Carpenter NA NA 101996.18 2.039924e+04 11660.390 874.75 5 1.166039e+04 58301.95 NA NA NA NULL
2016 Dept Of Parks & Recreation Supervisor Electrician NA NA 35884.35 3.588435e+04 35884.350 448.25 1 3.588435e+04 35884.35 NA NA NA NULL
2016 Dept Of Parks & Recreation Supervisor Of Mechanics NA NA 270716.72 2.082436e+04 3498.850 2863.00 13 3.498850e+03 45485.05 NA NA NA NULL
2016 Dept Of Parks & Recreation Supervisor Of Stock Workers 47847.00000 4.784700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.784700e+04 4.784700e+04 0.00 NULL
2016 Dept Of Parks & Recreation Supervisor Painter NA NA 85008.54 2.125213e+04 11950.840 1331.00 4 1.195084e+04 47803.36 NA NA NA NULL
2016 Dept Of Parks & Recreation Supervisor Plumber NA NA 211684.78 5.292119e+04 53946.060 1647.00 4 5.292119e+04 211684.78 NA NA NA NULL
2016 Dept Of Parks & Recreation Surveyor 63519.42283 5.716748e+05 26576.51 2.952946e+03 2551.130 662.25 9 2.551130e+03 22960.17 5.982513e+05 5.946350e+05 3616.34 NULL
2016 Dept Of Parks & Recreation Telecommunications Associate 72931.41667 8.751770e+05 159739.18 1.331160e+04 2697.955 2179.50 12 2.697955e+03 32375.46 1.034916e+06 9.075525e+05 127363.72 NULL
2016 Dept Of Parks & Recreation Telephone Service Technician 57183.60000 2.859180e+05 62813.62 1.256272e+04 9777.360 1550.00 5 9.777360e+03 48886.80 3.487316e+05 3.348048e+05 13926.82 NULL
2016 Dept Of Parks & Recreation Urban Park Ranger 33741.09014 1.656688e+07 386737.10 7.876519e+02 42.220 12440.25 491 4.222000e+01 20730.02 1.695361e+07 1.658761e+07 366007.08 NULL
2016 Dept Of Records & Info Service Adm Manager-Non-Mgrl 66229.88560 2.649195e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.649195e+05 2.649195e+05 0.00 NULL
2016 Dept Of Records & Info Service Administrative Manager 127305.00000 1.273050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.273050e+05 1.273050e+05 0.00 NULL
2016 Dept Of Records & Info Service Assistant Commissioner 112999.00000 1.129990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.129990e+05 1.129990e+05 0.00 NULL
2016 Dept Of Records & Info Service Associate Public Records Officer 57312.66667 3.438760e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.438760e+05 3.438760e+05 0.00 NULL
2016 Dept Of Records & Info Service Associate Staff Analyst 75020.00000 2.250600e+05 16.63 5.543333e+00 0.000 0.00 3 0.000000e+00 0.00 2.250766e+05 2.250600e+05 16.63 NULL
2016 Dept Of Records & Info Service Certified It Developer 95563.66667 2.866910e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.866910e+05 2.866910e+05 0.00 NULL
2016 Dept Of Records & Info Service Clerical Associate 39533.71429 2.767360e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.767360e+05 2.767360e+05 0.00 NULL
2016 Dept Of Records & Info Service College Aide 4333.24250 1.299973e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.299973e+04 1.299973e+04 0.00 NULL
2016 Dept Of Records & Info Service Commissioner 153354.00000 1.533540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.533540e+05 1.533540e+05 0.00 NULL
2016 Dept Of Records & Info Service Community Assistant 34832.70000 1.393308e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.393308e+05 1.393308e+05 0.00 NULL
2016 Dept Of Records & Info Service Community Associate 26203.31647 7.860995e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.860995e+04 7.860995e+04 0.00 NULL
2016 Dept Of Records & Info Service Community Coordinator 65600.00000 6.560000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.560000e+04 6.560000e+04 0.00 NULL
2016 Dept Of Records & Info Service Computer Programmer Analyst 75683.00000 7.568300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.568300e+04 7.568300e+04 0.00 NULL
2016 Dept Of Records & Info Service Computer Systems Manager 108380.00000 2.167600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.167600e+05 2.167600e+05 0.00 NULL
2016 Dept Of Records & Info Service Motor Vehicle Operator 45401.00000 4.540100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.540100e+04 4.540100e+04 0.00 NULL
2016 Dept Of Records & Info Service Principal Administrative Associate 54989.00000 2.749450e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.749450e+05 2.749450e+05 0.00 NULL
2016 Dept Of Records & Info Service Procurement Analyst 77453.00000 7.745300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.745300e+04 7.745300e+04 0.00 NULL
2016 Dept Of Records & Info Service Public Records Aide 30766.66667 1.846000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.846000e+05 1.846000e+05 0.00 NULL
2016 Dept Of Records & Info Service Public Records Officer 30183.19724 3.320152e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 3.320152e+05 3.320152e+05 0.00 NULL
2016 Dept Of Records & Info Service Research Assistant 52612.50000 1.052250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.052250e+05 1.052250e+05 0.00 NULL
2016 Dept Of Records & Info Service Staff Analyst 56388.00000 1.127760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.127760e+05 1.127760e+05 0.00 NULL
2016 Dept Of Records & Info Service Stock Worker 15575.09265 1.557509e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.557509e+05 1.557509e+05 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Accountant 63372.20000 3.168610e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.168610e+05 3.168610e+05 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Adm Manager-Non-Mgrl 71099.61496 2.701785e+06 11801.92 3.105768e+02 0.000 264.50 38 0.000000e+00 0.00 2.713587e+06 2.701785e+06 11801.92 NULL
2016 Dept Of Youth & Comm Dev Srvs Admin Community Relations Specialist 87399.00000 8.739900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.739900e+04 8.739900e+04 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Admin Contract Specialist 87548.86869 8.667338e+06 48.01 4.849495e-01 0.000 0.00 99 0.000000e+00 0.00 8.667386e+06 8.667338e+06 48.01 NULL
2016 Dept Of Youth & Comm Dev Srvs Administrative Accountant 93118.00000 9.311800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.311800e+04 9.311800e+04 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Administrative Community Relations Specialist 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Administrative Labor Relations Analyst 130000.00000 1.300000e+05 0.48 4.800000e-01 0.480 0.00 1 4.800000e-01 0.48 1.300005e+05 1.300005e+05 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Administrative Management Auditor 102500.00000 3.075000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.075000e+05 3.075000e+05 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Administrative Manager 124024.14286 8.681690e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.681690e+05 8.681690e+05 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Administrative Public Information Specialist 102649.25000 4.105970e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.105970e+05 4.105970e+05 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Administrative Staff Analyst 96866.82346 5.037075e+06 755.07 1.452058e+01 0.000 3.25 52 0.000000e+00 0.00 5.037830e+06 5.037075e+06 755.07 NULL
2016 Dept Of Youth & Comm Dev Srvs Agency Attorney 90820.40000 4.541020e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.541020e+05 4.541020e+05 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Agency Chief Contracting Officer 162000.00000 1.620000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.620000e+05 1.620000e+05 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Associate Contract Specialist 65617.32530 5.446238e+06 22987.31 2.769555e+02 0.000 493.25 83 0.000000e+00 0.00 5.469225e+06 5.446238e+06 22987.31 NULL
2016 Dept Of Youth & Comm Dev Srvs Associate Staff Analyst 78704.66667 9.444560e+05 2428.21 2.023508e+02 0.000 52.00 12 0.000000e+00 0.00 9.468842e+05 9.444560e+05 2428.21 NULL
2016 Dept Of Youth & Comm Dev Srvs Certified It Developer 97925.16667 5.875510e+05 768.35 1.280583e+02 0.000 9.00 6 0.000000e+00 0.00 5.883193e+05 5.875510e+05 768.35 NULL
2016 Dept Of Youth & Comm Dev Srvs City Research Scientist 60438.62095 2.417545e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.417545e+05 2.417545e+05 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Clerical Associate 47280.60000 4.728060e+05 900.19 9.001900e+01 0.000 54.50 10 0.000000e+00 0.00 4.737062e+05 4.728060e+05 900.19 NULL
2016 Dept Of Youth & Comm Dev Srvs College Aide 4711.50000 1.413450e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.413450e+04 1.413450e+04 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs College Aide - Assignment Levels Ii And Iii 11609.42145 9.287537e+04 0.00 0.000000e+00 0.000 3.75 8 0.000000e+00 0.00 9.287537e+04 9.287537e+04 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Commissioner Of Community Development 205868.00000 2.058680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.058680e+05 2.058680e+05 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Community Assistant 35814.00000 7.162800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.162800e+04 7.162800e+04 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Community Associate 46839.57221 7.025936e+05 4777.75 3.185167e+02 0.000 205.75 15 0.000000e+00 0.00 7.073713e+05 7.025936e+05 4777.75 NULL
2016 Dept Of Youth & Comm Dev Srvs Community Coordinator 60839.69231 7.909160e+05 3425.49 2.634992e+02 0.000 112.00 13 0.000000e+00 0.00 7.943415e+05 7.909160e+05 3425.49 NULL
2016 Dept Of Youth & Comm Dev Srvs Computer Associate 72404.62500 5.792370e+05 6879.56 8.599450e+02 0.000 205.25 8 0.000000e+00 0.00 5.861166e+05 5.792370e+05 6879.56 NULL
2016 Dept Of Youth & Comm Dev Srvs Computer Programmer Analyst 71955.00000 7.195500e+04 164.11 1.641100e+02 164.110 4.50 1 1.641100e+02 164.11 7.211911e+04 7.211911e+04 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Computer Service Technician 59548.00000 5.954800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.954800e+04 5.954800e+04 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Computer Specialist 98055.27778 1.764995e+06 4070.52 2.261400e+02 0.000 62.25 18 0.000000e+00 0.00 1.769066e+06 1.764995e+06 4070.52 NULL
2016 Dept Of Youth & Comm Dev Srvs Computer Systems Manager 102534.78947 1.948161e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.948161e+06 1.948161e+06 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Contract Specialist 59002.06383 2.773097e+06 7938.71 1.689087e+02 0.000 211.50 47 0.000000e+00 0.00 2.781036e+06 2.773097e+06 7938.71 NULL
2016 Dept Of Youth & Comm Dev Srvs Deputy Commissioner 173287.50000 3.465750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.465750e+05 3.465750e+05 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Executive Agency Counsel 156467.00000 3.129340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.129340e+05 3.129340e+05 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Field Supervisor 3159.65722 7.899143e+04 189.94 7.597600e+00 0.000 15.00 25 0.000000e+00 0.00 7.918137e+04 7.899143e+04 189.94 NULL
2016 Dept Of Youth & Comm Dev Srvs Graphic Artist 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Management Auditor 65439.66667 7.852760e+05 5464.43 4.553692e+02 0.000 73.00 12 0.000000e+00 0.00 7.907404e+05 7.852760e+05 5464.43 NULL
2016 Dept Of Youth & Comm Dev Srvs Motor Vehicle Operator 52115.00000 5.211500e+04 9038.53 9.038530e+03 9038.530 243.00 1 9.038530e+03 9038.53 6.115353e+04 6.115353e+04 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Photographer 3843.53250 3.843532e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.843532e+03 3.843532e+03 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Principal Administrative Associate 64398.80000 9.659820e+05 824.19 5.494600e+01 0.000 41.25 15 0.000000e+00 0.00 9.668062e+05 9.659820e+05 824.19 NULL
2016 Dept Of Youth & Comm Dev Srvs Procurement Analyst 53682.68182 1.181019e+06 913.73 4.153318e+01 0.000 46.50 22 0.000000e+00 0.00 1.181933e+06 1.181019e+06 913.73 NULL
2016 Dept Of Youth & Comm Dev Srvs Secretary 43198.50000 8.639700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.639700e+04 8.639700e+04 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Secretary To Commissioner 67000.00000 6.700000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.700000e+04 6.700000e+04 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Senior Field Supervisor 20164.57654 6.049373e+05 3648.06 1.216020e+02 0.000 163.50 30 0.000000e+00 0.00 6.085854e+05 6.049373e+05 3648.06 NULL
2016 Dept Of Youth & Comm Dev Srvs Staff Analyst 63109.28571 4.417650e+05 0.29 4.142860e-02 0.000 0.00 7 0.000000e+00 0.00 4.417653e+05 4.417650e+05 0.29 NULL
2016 Dept Of Youth & Comm Dev Srvs Summer College Intern 2517.00000 2.517000e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.517000e+03 2.517000e+03 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Summer Graduate Intern 4795.14000 4.795140e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.795140e+03 4.795140e+03 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Supervisor Of Motor Transport 61789.00000 6.178900e+04 19464.71 1.946471e+04 19464.710 440.25 1 1.946471e+04 19464.71 8.125371e+04 8.125371e+04 0.00 NULL
2016 Dept Of Youth & Comm Dev Srvs Youth Coordinator 56186.00000 7.304180e+05 1655.64 1.273569e+02 0.000 48.75 13 0.000000e+00 0.00 7.320736e+05 7.304180e+05 1655.64 NULL
2016 Dept. Of Design & Construction Accountant 61537.56250 9.846010e+05 25941.49 1.621343e+03 0.000 587.50 16 0.000000e+00 0.00 1.010542e+06 9.846010e+05 25941.49 NULL
2016 Dept. Of Design & Construction Adm Manager-Non-Mgrl 64374.25000 2.574970e+05 3233.94 8.084850e+02 192.515 71.00 4 1.925150e+02 770.06 2.607309e+05 2.582671e+05 2463.88 NULL
2016 Dept. Of Design & Construction Admin Construction Project Manager 106129.53846 1.379684e+06 47511.88 3.654760e+03 2920.280 725.00 13 2.920280e+03 37963.64 1.427196e+06 1.417648e+06 9548.24 NULL
2016 Dept. Of Design & Construction Administrative Accountant 103062.50000 2.061250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.061250e+05 2.061250e+05 0.00 NULL
2016 Dept. Of Design & Construction Administrative Architect 115697.48780 4.743597e+06 12177.51 2.970124e+02 0.000 260.50 41 0.000000e+00 0.00 4.755775e+06 4.743597e+06 12177.51 NULL
2016 Dept. Of Design & Construction Administrative City Planner 114875.00000 1.148750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.148750e+05 1.148750e+05 0.00 NULL
2016 Dept. Of Design & Construction Administrative Community Relations Specialist 133250.00000 1.332500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.332500e+05 1.332500e+05 0.00 NULL
2016 Dept. Of Design & Construction Administrative Construction Project Manager 123269.00000 2.465380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.465380e+05 2.465380e+05 0.00 NULL
2016 Dept. Of Design & Construction Administrative Engineer 126635.77273 8.357961e+06 96827.74 1.467087e+03 0.000 1449.00 66 0.000000e+00 0.00 8.454789e+06 8.357961e+06 96827.74 NULL
2016 Dept. Of Design & Construction Administrative Graphic Artist 91548.40000 4.577420e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.577420e+05 4.577420e+05 0.00 NULL
2016 Dept. Of Design & Construction Administrative Landmarks Preservationist 128125.00000 1.281250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.281250e+05 1.281250e+05 0.00 NULL
2016 Dept. Of Design & Construction Administrative Landscape Architect 122577.75000 4.903110e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.903110e+05 4.903110e+05 0.00 NULL
2016 Dept. Of Design & Construction Administrative Procurement Analyst 102275.37500 8.182030e+05 23874.38 2.984298e+03 141.895 327.25 8 1.418950e+02 1135.16 8.420774e+05 8.193382e+05 22739.22 NULL
2016 Dept. Of Design & Construction Administrative Project Manager 102729.92859 1.201940e+07 119765.31 1.023635e+03 0.000 1773.75 117 0.000000e+00 0.00 1.213917e+07 1.201940e+07 119765.31 NULL
2016 Dept. Of Design & Construction Administrative Public Information Specialist 128513.66667 3.855410e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.855410e+05 3.855410e+05 0.00 NULL
2016 Dept. Of Design & Construction Administrative Staff Analyst 96134.89130 4.422205e+06 69542.08 1.511784e+03 0.000 1087.50 46 0.000000e+00 0.00 4.491747e+06 4.422205e+06 69542.08 NULL
2016 Dept. Of Design & Construction Administrative Supervisor Of Building Maintenance 83059.00000 8.305900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.305900e+04 8.305900e+04 0.00 NULL
2016 Dept. Of Design & Construction Agency Attorney 69871.45428 6.288431e+05 77.96 8.662222e+00 0.000 1.25 9 0.000000e+00 0.00 6.289210e+05 6.288431e+05 77.96 NULL
2016 Dept. Of Design & Construction Agency Attorney Interne 56257.00000 5.625700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.625700e+04 5.625700e+04 0.00 NULL
2016 Dept. Of Design & Construction Agency Chief Contracting Officer 157536.00000 3.150720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.150720e+05 3.150720e+05 0.00 NULL
2016 Dept. Of Design & Construction Architect 88618.00000 1.860978e+06 19812.01 9.434290e+02 0.000 336.00 21 0.000000e+00 0.00 1.880790e+06 1.860978e+06 19812.01 NULL
2016 Dept. Of Design & Construction Asbestos Hazard Investigator 63745.33333 3.824720e+05 40.70 6.783333e+00 0.000 1.00 6 0.000000e+00 0.00 3.825127e+05 3.824720e+05 40.70 NULL
2016 Dept. Of Design & Construction Assistant Architect 71167.66667 4.270060e+05 1748.27 2.913783e+02 0.000 42.50 6 0.000000e+00 0.00 4.287543e+05 4.270060e+05 1748.27 NULL
2016 Dept. Of Design & Construction Assistant Chemical Engineer 60438.00000 6.043800e+04 4537.89 4.537890e+03 4537.890 139.00 1 4.537890e+03 4537.89 6.497589e+04 6.497589e+04 0.00 NULL
2016 Dept. Of Design & Construction Assistant Civil Engineer 64703.46667 4.852760e+06 252818.60 3.370915e+03 1510.900 6131.75 75 1.510900e+03 113317.50 5.105579e+06 4.966078e+06 139501.10 NULL
2016 Dept. Of Design & Construction Assistant Electrical Engineer 59755.20000 2.987760e+05 9575.12 1.915024e+03 0.000 178.25 5 0.000000e+00 0.00 3.083511e+05 2.987760e+05 9575.12 NULL
2016 Dept. Of Design & Construction Assistant Landscape Architect 63404.00000 2.536160e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.536160e+05 2.536160e+05 0.00 NULL
2016 Dept. Of Design & Construction Assistant Mechanical Engineer 62580.50000 2.503220e+05 25070.55 6.267637e+03 7980.685 612.25 4 6.267637e+03 25070.55 2.753925e+05 2.753925e+05 0.00 NULL
2016 Dept. Of Design & Construction Assistant Urban Designer 65000.00000 6.500000e+04 142.31 1.423100e+02 142.310 5.00 1 1.423100e+02 142.31 6.514231e+04 6.514231e+04 0.00 NULL
2016 Dept. Of Design & Construction Associate Inspector 70590.00000 7.059000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.059000e+04 7.059000e+04 0.00 NULL
2016 Dept. Of Design & Construction Associate Investigator 62726.25000 2.509050e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.509050e+05 2.509050e+05 0.00 NULL
2016 Dept. Of Design & Construction Associate Project Manager 78811.96694 9.536248e+06 357734.73 2.956485e+03 0.000 6348.75 121 0.000000e+00 0.00 9.893983e+06 9.536248e+06 357734.73 NULL
2016 Dept. Of Design & Construction Associate Public Health Sanitarian 88704.00000 8.870400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.870400e+04 8.870400e+04 0.00 NULL
2016 Dept. Of Design & Construction Associate Quality Assurance Specialist 67408.00000 1.348160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.348160e+05 1.348160e+05 0.00 NULL
2016 Dept. Of Design & Construction Associate Staff Analyst 77145.53846 2.005784e+06 31814.79 1.223646e+03 0.000 519.25 26 0.000000e+00 0.00 2.037599e+06 2.005784e+06 31814.79 NULL
2016 Dept. Of Design & Construction Associate Urban Designer 78621.87674 2.122791e+06 37682.96 1.395665e+03 0.000 703.25 27 0.000000e+00 0.00 2.160474e+06 2.122791e+06 37682.96 NULL
2016 Dept. Of Design & Construction Certified It Developer 85176.00000 8.517600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.517600e+04 8.517600e+04 0.00 NULL
2016 Dept. Of Design & Construction Certified Local Area Network Administrator 115607.00000 1.156070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.156070e+05 1.156070e+05 0.00 NULL
2016 Dept. Of Design & Construction City Planner 72298.50000 4.337910e+05 5451.73 9.086217e+02 109.725 123.50 6 1.097250e+02 658.35 4.392427e+05 4.344493e+05 4793.38 NULL
2016 Dept. Of Design & Construction Civil Engineer 87257.32099 7.067843e+06 407365.78 5.029207e+03 2112.380 7136.75 81 2.112380e+03 171102.78 7.475209e+06 7.238946e+06 236263.00 NULL
2016 Dept. Of Design & Construction Civil Engineering Intern 50032.96667 4.502967e+06 75315.23 8.368359e+02 0.000 2470.00 90 0.000000e+00 0.00 4.578282e+06 4.502967e+06 75315.23 NULL
2016 Dept. Of Design & Construction Clerical Associate 45812.70348 2.107384e+06 23068.15 5.014815e+02 0.000 825.00 46 0.000000e+00 0.00 2.130453e+06 2.107384e+06 23068.15 NULL
2016 Dept. Of Design & Construction College Aide 3850.02317 1.501509e+05 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 1.501509e+05 1.501509e+05 0.00 NULL
2016 Dept. Of Design & Construction College Aide - Assignment Levels Ii And Iii 8827.37000 1.765474e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.765474e+04 1.765474e+04 0.00 NULL
2016 Dept. Of Design & Construction Commissioner Of Design & Construction 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Dept. Of Design & Construction Community Assistant 35365.33333 1.060960e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.060960e+05 1.060960e+05 0.00 NULL
2016 Dept. Of Design & Construction Community Associate 37126.81359 8.539167e+05 12718.40 5.529739e+02 0.000 486.50 23 0.000000e+00 0.00 8.666351e+05 8.539167e+05 12718.40 NULL
2016 Dept. Of Design & Construction Community Coordinator 55501.44174 1.276533e+06 14322.50 6.227174e+02 0.000 421.25 23 0.000000e+00 0.00 1.290856e+06 1.276533e+06 14322.50 NULL
2016 Dept. Of Design & Construction Community Service Aide 31762.00000 3.176200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.176200e+04 3.176200e+04 0.00 NULL
2016 Dept. Of Design & Construction Computer Aide-Non-Spvr 47781.00000 1.911240e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.911240e+05 1.911240e+05 0.00 NULL
2016 Dept. Of Design & Construction Computer Associate 69839.13133 1.257104e+06 23388.91 1.299384e+03 0.000 553.00 18 0.000000e+00 0.00 1.280493e+06 1.257104e+06 23388.91 NULL
2016 Dept. Of Design & Construction Computer Operations Manager 115820.00000 3.474600e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.474600e+05 3.474600e+05 0.00 NULL
2016 Dept. Of Design & Construction Computer Programmer Analyst 57510.00000 4.600800e+05 1275.74 1.594675e+02 0.000 38.00 8 0.000000e+00 0.00 4.613557e+05 4.600800e+05 1275.74 NULL
2016 Dept. Of Design & Construction Computer Service Technician 44085.00000 1.322550e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.322550e+05 1.322550e+05 0.00 NULL
2016 Dept. Of Design & Construction Computer Specialist 101574.55556 1.828342e+06 22858.20 1.269900e+03 0.000 278.75 18 0.000000e+00 0.00 1.851200e+06 1.828342e+06 22858.20 NULL
2016 Dept. Of Design & Construction Computer Systems Manager 125966.60000 6.298330e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.298330e+05 6.298330e+05 0.00 NULL
2016 Dept. Of Design & Construction Construction Project Manager 77543.51841 9.770483e+06 414944.39 3.293209e+03 336.760 7895.50 126 3.367600e+02 42431.76 1.018543e+07 9.812915e+06 372512.63 NULL
2016 Dept. Of Design & Construction Construction Project Manager Intern 50109.86111 1.803955e+06 21241.00 5.900278e+02 0.000 632.25 36 0.000000e+00 0.00 1.825196e+06 1.803955e+06 21241.00 NULL
2016 Dept. Of Design & Construction Deputy Commissioner 188235.00000 1.882350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.882350e+05 1.882350e+05 0.00 NULL
2016 Dept. Of Design & Construction Electrical Engineer 77841.00000 7.784100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.784100e+04 7.784100e+04 0.00 NULL
2016 Dept. Of Design & Construction Electrical Engineering Intern 46577.00000 4.657700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.657700e+04 4.657700e+04 0.00 NULL
2016 Dept. Of Design & Construction Engineering Technician 57818.93333 1.734568e+06 53275.31 1.775844e+03 0.000 1504.00 30 0.000000e+00 0.00 1.787843e+06 1.734568e+06 53275.31 NULL
2016 Dept. Of Design & Construction Estimator 62670.60000 6.267060e+05 27284.06 2.728406e+03 12.355 591.75 10 1.235500e+01 123.55 6.539901e+05 6.268296e+05 27160.51 NULL
2016 Dept. Of Design & Construction Executive Agency Counsel 155937.14286 1.091560e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.091560e+06 1.091560e+06 0.00 NULL
2016 Dept. Of Design & Construction Executive Program Specialist 169125.00000 1.691250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.691250e+05 1.691250e+05 0.00 NULL
2016 Dept. Of Design & Construction Geologist 69766.62500 5.581330e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.581330e+05 5.581330e+05 0.00 NULL
2016 Dept. Of Design & Construction Graphic Artist 68375.60000 3.418780e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.418780e+05 3.418780e+05 0.00 NULL
2016 Dept. Of Design & Construction Highway Transportation Specialist 84371.00000 8.437100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.437100e+04 8.437100e+04 0.00 NULL
2016 Dept. Of Design & Construction Highways And Sewers Inspector 57872.50000 2.314900e+05 11514.00 2.878500e+03 186.975 285.00 4 1.869750e+02 747.90 2.430040e+05 2.322379e+05 10766.10 NULL
2016 Dept. Of Design & Construction Industrial Hygienist 53089.00000 1.061780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.061780e+05 1.061780e+05 0.00 NULL
2016 Dept. Of Design & Construction Investigator 59920.00000 5.992000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.992000e+04 5.992000e+04 0.00 NULL
2016 Dept. Of Design & Construction Investigator Empl Disc 47002.14286 3.290150e+05 882.22 1.260314e+02 33.330 33.75 7 3.333000e+01 233.31 3.298972e+05 3.292483e+05 648.91 NULL
2016 Dept. Of Design & Construction Landscape Architect 86774.28571 6.074200e+05 10885.85 1.555121e+03 0.000 202.00 7 0.000000e+00 0.00 6.183058e+05 6.074200e+05 10885.85 NULL
2016 Dept. Of Design & Construction Management Auditor 66989.00000 2.679560e+05 2766.90 6.917250e+02 122.020 74.25 4 1.220200e+02 488.08 2.707229e+05 2.684441e+05 2278.82 NULL
2016 Dept. Of Design & Construction Management Auditor Trainee 47215.00000 4.721500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.721500e+04 4.721500e+04 0.00 NULL
2016 Dept. Of Design & Construction Mechanical Engineer 88739.11111 7.986520e+05 21150.30 2.350033e+03 0.000 326.50 9 0.000000e+00 0.00 8.198023e+05 7.986520e+05 21150.30 NULL
2016 Dept. Of Design & Construction Mechanical Engineering Intern 48471.20000 2.423560e+05 3948.43 7.896860e+02 0.000 137.75 5 0.000000e+00 0.00 2.463044e+05 2.423560e+05 3948.43 NULL
2016 Dept. Of Design & Construction Motor Vehicle Operator 45215.00000 9.043000e+04 700.54 3.502700e+02 350.270 20.50 2 3.502700e+02 700.54 9.113054e+04 9.113054e+04 0.00 NULL
2016 Dept. Of Design & Construction Motor Vehicle Supervisor 51636.00000 1.032720e+05 20484.14 1.024207e+04 10242.070 559.50 2 1.024207e+04 20484.14 1.237561e+05 1.237561e+05 0.00 NULL
2016 Dept. Of Design & Construction Office Machine Aide 34143.00000 3.414300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.414300e+04 3.414300e+04 0.00 NULL
2016 Dept. Of Design & Construction Principal Administrative Associate 61732.26000 3.086613e+06 65277.17 1.305543e+03 0.000 1655.25 50 0.000000e+00 0.00 3.151890e+06 3.086613e+06 65277.17 NULL
2016 Dept. Of Design & Construction Principal Title Examiner 58000.00000 1.160000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.160000e+05 1.160000e+05 0.00 NULL
2016 Dept. Of Design & Construction Procurement Analyst 64029.31034 1.856850e+06 46315.64 1.597091e+03 0.000 976.50 29 0.000000e+00 0.00 1.903166e+06 1.856850e+06 46315.64 NULL
2016 Dept. Of Design & Construction Project Manager 67226.37500 5.378110e+05 38206.26 4.775783e+03 4808.095 940.50 8 4.775783e+03 38206.26 5.760173e+05 5.760173e+05 0.00 NULL
2016 Dept. Of Design & Construction Project Manager Intern# 47461.86207 2.752788e+06 11932.23 2.057281e+02 0.000 458.25 58 0.000000e+00 0.00 2.764720e+06 2.752788e+06 11932.23 NULL
2016 Dept. Of Design & Construction Public Records Aide 40424.57143 5.659440e+05 8007.71 5.719793e+02 0.000 301.75 14 0.000000e+00 0.00 5.739517e+05 5.659440e+05 8007.71 NULL
2016 Dept. Of Design & Construction Public Records Officer 57253.00000 5.725300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.725300e+04 5.725300e+04 0.00 NULL
2016 Dept. Of Design & Construction Secretary 49439.53333 7.415930e+05 1911.42 1.274280e+02 0.000 34.75 15 0.000000e+00 0.00 7.435044e+05 7.415930e+05 1911.42 NULL
2016 Dept. Of Design & Construction Secretary To The Commissioner Of Ddc 71865.00000 7.186500e+04 11518.77 1.151877e+04 11518.770 245.50 1 1.151877e+04 11518.77 8.338377e+04 8.338377e+04 0.00 NULL
2016 Dept. Of Design & Construction Senior Estimator 79714.04255 3.746560e+06 106531.81 2.266634e+03 0.000 1954.00 47 0.000000e+00 0.00 3.853092e+06 3.746560e+06 106531.81 NULL
2016 Dept. Of Design & Construction Special Assistant To The Commissioner 152250.00000 1.522500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.522500e+05 1.522500e+05 0.00 NULL
2016 Dept. Of Design & Construction Staff Analyst 63573.97059 2.161515e+06 25766.28 7.578318e+02 0.000 530.42 34 0.000000e+00 0.00 2.187281e+06 2.161515e+06 25766.28 NULL
2016 Dept. Of Design & Construction Staff Analyst Trainee 44709.22222 4.023830e+05 111.12 1.234667e+01 0.000 4.75 9 0.000000e+00 0.00 4.024941e+05 4.023830e+05 111.12 NULL
2016 Dept. Of Design & Construction Stock Worker 41966.25000 1.678650e+05 11256.97 2.814242e+03 2959.785 435.75 4 2.814242e+03 11256.97 1.791220e+05 1.791220e+05 0.00 NULL
2016 Dept. Of Design & Construction Summer College Intern 2376.37444 8.554948e+04 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 8.554948e+04 8.554948e+04 0.00 NULL
2016 Dept. Of Design & Construction Summer Graduate Intern 2111.83125 8.447325e+03 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.447325e+03 8.447325e+03 0.00 NULL
2016 Dept. Of Design & Construction Supervisor Of Electrical Installations & Maintenance 76795.83333 4.607750e+05 19363.90 3.227317e+03 0.000 345.50 6 0.000000e+00 0.00 4.801389e+05 4.607750e+05 19363.90 NULL
2016 Dept. Of Design & Construction Supervisor Of Mechanical Installations & Maintenance 76761.00000 7.676100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.676100e+04 7.676100e+04 0.00 NULL
2016 Dept. Of Design & Construction Surveyor 69871.66667 1.886535e+06 40269.11 1.491449e+03 0.000 761.00 27 0.000000e+00 0.00 1.926804e+06 1.886535e+06 40269.11 NULL
2016 Dept. Of Homeless Services Adm Manager-Non-Mgrl 71228.83333 4.273730e+05 17958.55 2.993092e+03 708.580 388.00 6 7.085800e+02 4251.48 4.453315e+05 4.316245e+05 13707.07 NULL
2016 Dept. Of Homeless Services Admin Community Relations Specialist 99625.00000 3.985000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.985000e+05 3.985000e+05 0.00 NULL
2016 Dept. Of Homeless Services Admin Contract Specialist 97792.00000 6.845440e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.845440e+05 6.845440e+05 0.00 NULL
2016 Dept. Of Homeless Services Administrative Construction Project Manager 104799.50000 4.191980e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.191980e+05 4.191980e+05 0.00 NULL
2016 Dept. Of Homeless Services Administrative Director Of Social Services 102047.69388 1.500101e+07 30466.86 2.072576e+02 0.000 440.25 147 0.000000e+00 0.00 1.503148e+07 1.500101e+07 30466.86 NULL
2016 Dept. Of Homeless Services Administrative Labor Relations Analyst 80982.00000 8.098200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.098200e+04 8.098200e+04 0.00 NULL
2016 Dept. Of Homeless Services Administrative Procurement Analyst 89790.33333 2.693710e+05 3141.28 1.047093e+03 0.000 56.50 3 0.000000e+00 0.00 2.725123e+05 2.693710e+05 3141.28 NULL
2016 Dept. Of Homeless Services Administrative Public Information Specialist 99189.16667 5.951350e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.951350e+05 5.951350e+05 0.00 NULL
2016 Dept. Of Homeless Services Administrative Staff Analyst 87982.95333 1.319744e+07 332483.45 2.216556e+03 6.275 5890.25 150 6.275000e+00 941.25 1.352993e+07 1.319838e+07 331542.20 NULL
2016 Dept. Of Homeless Services Administrative Supervisor Of Building Maintenance 125244.20000 6.262210e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.262210e+05 6.262210e+05 0.00 NULL
2016 Dept. Of Homeless Services Agency Attorney 79339.12500 1.904139e+06 50791.38 2.116307e+03 10.435 828.75 24 1.043500e+01 250.44 1.954930e+06 1.904389e+06 50540.94 NULL
2016 Dept. Of Homeless Services Agency Attorney Interne 55025.50000 1.100510e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.100510e+05 1.100510e+05 0.00 NULL
2016 Dept. Of Homeless Services Agency Security Director 124316.00000 1.243160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.243160e+05 1.243160e+05 0.00 NULL
2016 Dept. Of Homeless Services Assistant Superintendent Of Welfare Shelters 62279.10145 4.297258e+06 945563.79 1.370382e+04 13121.190 20457.50 69 1.312119e+04 905362.11 5.242822e+06 5.202620e+06 40201.68 NULL
2016 Dept. Of Homeless Services Associate Contract Specialist 62561.00000 6.256100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.256100e+04 6.256100e+04 0.00 NULL
2016 Dept. Of Homeless Services Associate Fraud Investigator 64496.00000 4.127744e+06 898037.18 1.403183e+04 14400.590 18899.00 64 1.403183e+04 898037.18 5.025781e+06 5.025781e+06 0.00 NULL
2016 Dept. Of Homeless Services Associate Investigator 69302.00000 6.930200e+04 22458.91 2.245891e+04 22458.910 395.00 1 2.245891e+04 22458.91 9.176091e+04 9.176091e+04 0.00 NULL
2016 Dept. Of Homeless Services Associate Project Manager 81554.50000 6.524360e+05 39517.95 4.939744e+03 0.000 722.00 8 0.000000e+00 0.00 6.919539e+05 6.524360e+05 39517.95 NULL
2016 Dept. Of Homeless Services Associate Staff Analyst 73939.57576 4.880012e+06 157705.43 2.389476e+03 40.615 2982.25 66 4.061500e+01 2680.59 5.037717e+06 4.882693e+06 155024.84 NULL
2016 Dept. Of Homeless Services Asst Commissioner For Planning & Program Dev 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2016 Dept. Of Homeless Services Attorney At Law 105179.00000 1.051790e+05 -1.10 -1.100000e+00 -1.100 0.00 1 -1.100000e+00 -1.10 1.051779e+05 1.051779e+05 0.00 NULL
2016 Dept. Of Homeless Services Bookkeeper 61004.00000 6.100400e+04 761.12 7.611200e+02 761.120 3.00 1 7.611200e+02 761.12 6.176512e+04 6.176512e+04 0.00 NULL
2016 Dept. Of Homeless Services Carpenter NA NA 792535.53 2.476674e+04 18189.585 7240.25 32 1.818958e+04 582066.72 NA NA NA NULL
2016 Dept. Of Homeless Services Caseworker 42361.06593 3.854857e+06 299642.20 3.292771e+03 740.720 9430.00 91 7.407200e+02 67405.52 4.154499e+06 3.922263e+06 232236.68 NULL
2016 Dept. Of Homeless Services Cement Mason NA NA 399023.71 4.987796e+04 55038.410 4485.00 8 4.987796e+04 399023.71 NA NA NA NULL
2016 Dept. Of Homeless Services Certified Applications Developer 117106.00000 1.171060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.171060e+05 1.171060e+05 0.00 NULL
2016 Dept. Of Homeless Services Certified It Administrator 85176.00000 8.517600e+04 2586.89 2.586890e+03 2586.890 21.00 1 2.586890e+03 2586.89 8.776289e+04 8.776289e+04 0.00 NULL
2016 Dept. Of Homeless Services Certified It Developer 110855.00000 1.108550e+05 742.23 7.422300e+02 742.230 11.00 1 7.422300e+02 742.23 1.115972e+05 1.115972e+05 0.00 NULL
2016 Dept. Of Homeless Services Certified Local Area Network Administrator 90017.66667 8.101590e+05 48820.80 5.424533e+03 671.350 596.00 9 6.713500e+02 6042.15 8.589798e+05 8.162012e+05 42778.65 NULL
2016 Dept. Of Homeless Services Certified Wide Area Network Administrator 89616.50000 1.792330e+05 9395.34 4.697670e+03 4697.670 157.00 2 4.697670e+03 9395.34 1.886283e+05 1.886283e+05 0.00 NULL
2016 Dept. Of Homeless Services City Laborer NA NA 189424.15 1.262828e+04 11440.270 4274.50 15 1.144027e+04 171604.05 NA NA NA NULL
2016 Dept. Of Homeless Services Clerical Associate 43872.05263 1.667138e+06 131265.43 3.454353e+03 1239.925 4251.00 38 1.239925e+03 47117.15 1.798403e+06 1.714255e+06 84148.28 NULL
2016 Dept. Of Homeless Services College Aide 11776.08000 1.177608e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.177608e+04 1.177608e+04 0.00 NULL
2016 Dept. Of Homeless Services Commissioner Of Homeless Services 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Dept. Of Homeless Services Community Assistant 34472.62838 5.101949e+06 556676.97 3.761331e+03 2286.330 21438.58 148 2.286330e+03 338376.84 5.658626e+06 5.440326e+06 218300.13 NULL
2016 Dept. Of Homeless Services Community Associate 41473.77711 6.884647e+06 398753.03 2.402127e+03 642.865 14771.88 166 6.428650e+02 106715.59 7.283400e+06 6.991363e+06 292037.44 NULL
2016 Dept. Of Homeless Services Community Coordinator 55413.38800 1.385335e+07 866497.63 3.465991e+03 822.445 23048.25 250 8.224450e+02 205611.25 1.471984e+07 1.405896e+07 660886.38 NULL
2016 Dept. Of Homeless Services Computer Associate 68117.33333 2.043520e+05 18938.60 6.312867e+03 2063.160 370.00 3 2.063160e+03 6189.48 2.232906e+05 2.105415e+05 12749.12 NULL
2016 Dept. Of Homeless Services Computer Operations Manager 110146.00000 3.304380e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.304380e+05 3.304380e+05 0.00 NULL
2016 Dept. Of Homeless Services Computer Specialist 97400.50000 7.792040e+05 5753.82 7.192275e+02 0.000 42.00 8 0.000000e+00 0.00 7.849578e+05 7.792040e+05 5753.82 NULL
2016 Dept. Of Homeless Services Computer Systems Manager 116086.35714 1.625209e+06 378.74 2.705286e+01 0.000 8.00 14 0.000000e+00 0.00 1.625588e+06 1.625209e+06 378.74 NULL
2016 Dept. Of Homeless Services Confidential Agency Investigator 129425.00000 1.294250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.294250e+05 1.294250e+05 0.00 NULL
2016 Dept. Of Homeless Services Construction Project Manager 77744.33333 2.332330e+05 4185.68 1.395227e+03 401.380 49.50 3 4.013800e+02 1204.14 2.374187e+05 2.344371e+05 2981.54 NULL
2016 Dept. Of Homeless Services Contract Specialist 59913.66667 1.797410e+05 19937.93 6.645977e+03 8128.440 541.00 3 6.645977e+03 19937.93 1.996789e+05 1.996789e+05 0.00 NULL
2016 Dept. Of Homeless Services Counselor 53663.20000 2.683160e+05 6012.72 1.202544e+03 309.380 169.75 5 3.093800e+02 1546.90 2.743287e+05 2.698629e+05 4465.82 NULL
2016 Dept. Of Homeless Services Deputy Commisioner 199236.00000 1.992360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.992360e+05 1.992360e+05 0.00 NULL
2016 Dept. Of Homeless Services Director Of Eeo 95544.00000 9.554400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.554400e+04 9.554400e+04 0.00 NULL
2016 Dept. Of Homeless Services Electrician NA NA 609149.70 3.583234e+04 39322.500 8505.25 17 3.583234e+04 609149.70 NA NA NA NULL
2016 Dept. Of Homeless Services Electrician’s Helper NA NA 15231.23 7.615615e+03 7615.615 340.75 2 7.615615e+03 15231.23 NA NA NA NULL
2016 Dept. Of Homeless Services Executive Agency Counsel 113478.00000 5.673900e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.673900e+05 5.673900e+05 0.00 NULL
2016 Dept. Of Homeless Services Executive Assistant To The Commissioner 167515.00000 1.675150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.675150e+05 1.675150e+05 0.00 NULL
2016 Dept. Of Homeless Services Executive Program Specialist 153750.00000 1.537500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.537500e+05 1.537500e+05 0.00 NULL
2016 Dept. Of Homeless Services Fraud Investigator 46570.16667 5.588420e+06 699539.85 5.829499e+03 5207.175 19471.39 120 5.207175e+03 624861.00 6.287960e+06 6.213281e+06 74678.85 NULL
2016 Dept. Of Homeless Services General Counsel 157617.00000 1.576170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.576170e+05 1.576170e+05 0.00 NULL
2016 Dept. Of Homeless Services High Pressure Plant Tender NA NA 277.19 2.771900e+02 277.190 0.00 1 2.771900e+02 277.19 NA NA NA NULL
2016 Dept. Of Homeless Services Housekeeper 39391.00000 1.575640e+05 18781.81 4.695453e+03 4209.790 634.25 4 4.209790e+03 16839.16 1.763458e+05 1.744032e+05 1942.65 NULL
2016 Dept. Of Homeless Services Human Resources Technician 35215.00000 3.521500e+04 1142.14 1.142140e+03 1142.140 72.50 1 1.142140e+03 1142.14 3.635714e+04 3.635714e+04 0.00 NULL
2016 Dept. Of Homeless Services Investigator Empl Disc 59639.50000 1.192790e+05 6756.29 3.378145e+03 3378.145 133.00 2 3.378145e+03 6756.29 1.260353e+05 1.260353e+05 0.00 NULL
2016 Dept. Of Homeless Services Locksmith NA NA 33313.68 1.110456e+04 12767.740 731.50 3 1.110456e+04 33313.68 NA NA NA NULL
2016 Dept. Of Homeless Services Maintenance Worker NA NA 174664.86 8.317374e+03 3393.390 4295.00 21 3.393390e+03 71261.19 NA NA NA NULL
2016 Dept. Of Homeless Services Management Auditor 70432.75000 2.817310e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.817310e+05 2.817310e+05 0.00 NULL
2016 Dept. Of Homeless Services Motor Vehicle Operator 41801.57143 1.755666e+06 299882.39 7.140057e+03 5013.270 9665.72 42 5.013270e+03 210557.34 2.055548e+06 1.966223e+06 89325.05 NULL
2016 Dept. Of Homeless Services Motor Vehicle Supervisor 52524.27273 5.777670e+05 108161.83 9.832894e+03 7297.600 2709.75 11 7.297600e+03 80273.60 6.859288e+05 6.580406e+05 27888.23 NULL
2016 Dept. Of Homeless Services Oiler NA NA 385697.67 2.754983e+04 4279.470 4703.25 14 4.279470e+03 59912.58 NA NA NA NULL
2016 Dept. Of Homeless Services Plumber NA NA 668566.46 2.228555e+04 7184.370 5045.00 30 7.184370e+03 215531.10 NA NA NA NULL
2016 Dept. Of Homeless Services Plumber’s Helper NA NA 98013.21 1.960264e+04 22614.400 1097.00 5 1.960264e+04 98013.21 NA NA NA NULL
2016 Dept. Of Homeless Services Principal Administrative Associate 56699.52525 5.613253e+06 290702.65 2.936390e+03 229.760 7353.00 99 2.297600e+02 22746.24 5.903956e+06 5.635999e+06 267956.41 NULL
2016 Dept. Of Homeless Services Procurement Analyst 57667.16667 3.460030e+05 16006.40 2.667733e+03 1939.075 395.00 6 1.939075e+03 11634.45 3.620094e+05 3.576375e+05 4371.95 NULL
2016 Dept. Of Homeless Services Recreation Director 42020.44444 3.781840e+05 46070.70 5.118967e+03 5270.270 1489.00 9 5.118967e+03 46070.70 4.242547e+05 4.242547e+05 0.00 NULL
2016 Dept. Of Homeless Services Research Assistant 51973.00000 5.197300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.197300e+04 5.197300e+04 0.00 NULL
2016 Dept. Of Homeless Services Secretary 48624.28571 3.403700e+05 15332.37 2.190339e+03 0.000 340.50 7 0.000000e+00 0.00 3.557024e+05 3.403700e+05 15332.37 NULL
2016 Dept. Of Homeless Services Secretary Of Comm 72268.00000 1.445360e+05 11938.17 5.969085e+03 5969.085 260.25 2 5.969085e+03 11938.17 1.564742e+05 1.564742e+05 0.00 NULL
2016 Dept. Of Homeless Services Senior Stationary Engineer NA NA 91460.32 4.573016e+04 45730.160 671.50 2 4.573016e+04 91460.32 NA NA NA NULL
2016 Dept. Of Homeless Services Sheet Metal Worker NA NA 115001.53 3.833384e+04 45735.910 1102.50 3 3.833384e+04 115001.53 NA NA NA NULL
2016 Dept. Of Homeless Services Social Worker 45125.38095 1.895266e+06 40636.12 9.675267e+02 0.000 897.25 42 0.000000e+00 0.00 1.935902e+06 1.895266e+06 40636.12 NULL
2016 Dept. Of Homeless Services Space Analyst 66142.60000 9.921390e+05 113199.78 7.546652e+03 3183.010 2292.20 15 3.183010e+03 47745.15 1.105339e+06 1.039884e+06 65454.63 NULL
2016 Dept. Of Homeless Services Special Officer 36005.51847 2.923648e+07 1356507.84 1.670576e+03 1012.110 51537.12 812 1.012110e+03 821833.32 3.059299e+07 3.005831e+07 534674.52 NULL
2016 Dept. Of Homeless Services Staff Analyst 64386.62500 2.575465e+06 100029.37 2.500734e+03 16.275 2227.25 40 1.627500e+01 651.00 2.675494e+06 2.576116e+06 99378.37 NULL
2016 Dept. Of Homeless Services Stationary Engineer NA NA 38396.62 1.279887e+04 7077.670 388.50 3 7.077670e+03 21233.01 NA NA NA NULL
2016 Dept. Of Homeless Services Stock Worker 33300.25000 1.332010e+05 2732.88 6.832200e+02 476.295 164.75 4 4.762950e+02 1905.18 1.359339e+05 1.351062e+05 827.70 NULL
2016 Dept. Of Homeless Services Summer College Intern 1568.22983 1.411407e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.411407e+04 1.411407e+04 0.00 NULL
2016 Dept. Of Homeless Services Summer Graduate Intern 4942.93835 1.977175e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.977175e+04 1.977175e+04 0.00 NULL
2016 Dept. Of Homeless Services Superintendent Of Adult Institutions 68577.70000 6.857770e+05 87186.71 8.718671e+03 9693.740 1873.50 10 8.718671e+03 87186.71 7.729637e+05 7.729637e+05 0.00 NULL
2016 Dept. Of Homeless Services Supervising Special Officer 52155.46154 8.136252e+06 1154461.57 7.400395e+03 6943.140 31874.23 156 6.943140e+03 1083129.84 9.290714e+06 9.219382e+06 71331.73 NULL
2016 Dept. Of Homeless Services Supervisor Bricklayer NA NA 7770.20 7.770200e+03 7770.200 56.75 1 7.770200e+03 7770.20 NA NA NA NULL
2016 Dept. Of Homeless Services Supervisor Carpenter NA NA 96575.15 1.609586e+04 4134.350 749.50 6 4.134350e+03 24806.10 NA NA NA NULL
2016 Dept. Of Homeless Services Supervisor Electrician NA NA 140071.95 4.669065e+04 50304.040 1779.50 3 4.669065e+04 140071.95 NA NA NA NULL
2016 Dept. Of Homeless Services Supervisor I 54064.78571 1.513814e+06 183930.15 6.568934e+03 3963.160 4449.75 28 3.963160e+03 110968.48 1.697744e+06 1.624782e+06 72961.67 NULL
2016 Dept. Of Homeless Services Supervisor Ii 62364.83333 7.483780e+05 81573.75 6.797812e+03 4807.900 1948.75 12 4.807900e+03 57694.80 8.299518e+05 8.060728e+05 23878.95 NULL
2016 Dept. Of Homeless Services Supervisor Ii Social Work 66867.19048 1.404211e+06 78146.21 3.721248e+03 1640.170 1722.25 21 1.640170e+03 34443.57 1.482357e+06 1.438655e+06 43702.64 NULL
2016 Dept. Of Homeless Services Supervisor Of Mechanics NA NA 285579.48 5.711590e+04 61705.570 2896.00 5 5.711590e+04 285579.48 NA NA NA NULL
2016 Dept. Of Homeless Services Supervisor Of Motor Transport 69938.00000 6.993800e+04 15458.46 1.545846e+04 15458.460 340.50 1 1.545846e+04 15458.46 8.539646e+04 8.539646e+04 0.00 NULL
2016 Dept. Of Homeless Services Supervisor Of Stock Workers 53805.00000 1.614150e+05 30655.95 1.021865e+04 10329.690 854.75 3 1.021865e+04 30655.95 1.920710e+05 1.920710e+05 0.00 NULL
2016 Dept. Of Homeless Services Supervisor Plumber NA NA 259114.32 5.182286e+04 75433.440 1820.00 5 5.182286e+04 259114.32 NA NA NA NULL
2016 Dept. Of Homeless Services Telecommunication Manager 92749.00000 9.274900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.274900e+04 9.274900e+04 0.00 NULL
2016 Dept. Of Homeless Services Telecommunications Associate 80607.00000 8.060700e+04 21156.55 2.115655e+04 21156.550 329.00 1 2.115655e+04 21156.55 1.017636e+05 1.017636e+05 0.00 NULL
2016 District Attorney Kings County Accountant 64434.50000 1.288690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.288690e+05 1.288690e+05 0.00 NULL
2016 District Attorney Kings County Adm Manager-Non-Mgr 82602.33333 3.221491e+06 1383.83 3.548282e+01 0.000 62.25 39 0.000000e+00 0.00 3.222875e+06 3.221491e+06 1383.83 NULL
2016 District Attorney Kings County Administrative Director Of Social Services 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2016 District Attorney Kings County Administrative Manager 119007.00000 9.520560e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.520560e+05 9.520560e+05 0.00 NULL
2016 District Attorney Kings County Administrative Staff Analyst 108897.80000 5.444890e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.444890e+05 5.444890e+05 0.00 NULL
2016 District Attorney Kings County Assistant District Attorney 86653.05755 4.817910e+07 49.07 8.825540e-02 0.000 2.25 556 0.000000e+00 0.00 4.817915e+07 4.817910e+07 49.07 NULL
2016 District Attorney Kings County Claim Specialist 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2016 District Attorney Kings County Clerical Associate 41204.81818 4.532530e+05 7435.69 6.759718e+02 0.000 316.50 11 0.000000e+00 0.00 4.606887e+05 4.532530e+05 7435.69 NULL
2016 District Attorney Kings County Community Assistant 33435.45275 2.808578e+06 70065.28 8.341105e+02 0.000 2849.00 84 0.000000e+00 0.00 2.878643e+06 2.808578e+06 70065.28 NULL
2016 District Attorney Kings County Community Associate 41816.44722 1.154134e+07 56896.73 2.061476e+02 0.000 2075.25 276 0.000000e+00 0.00 1.159824e+07 1.154134e+07 56896.73 NULL
2016 District Attorney Kings County Community Coordinator 61372.45732 3.866465e+06 26429.51 4.195160e+02 0.000 620.25 63 0.000000e+00 0.00 3.892894e+06 3.866465e+06 26429.51 NULL
2016 District Attorney Kings County Community Service Aide 22379.15400 2.237915e+05 440.63 4.406300e+01 0.000 9.50 10 0.000000e+00 0.00 2.242322e+05 2.237915e+05 440.63 NULL
2016 District Attorney Kings County Computer Associate 74080.66667 2.222420e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.222420e+05 2.222420e+05 0.00 NULL
2016 District Attorney Kings County Computer Programmer Analyst 62119.00000 6.211900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.211900e+04 6.211900e+04 0.00 NULL
2016 District Attorney Kings County Computer Specialist 95841.00000 9.584100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.584100e+04 9.584100e+04 0.00 NULL
2016 District Attorney Kings County Computer Systems Manager 132414.50000 2.648290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.648290e+05 2.648290e+05 0.00 NULL
2016 District Attorney Kings County District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2016 District Attorney Kings County Executive Assistant 77813.00000 5.446910e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.446910e+05 5.446910e+05 0.00 NULL
2016 District Attorney Kings County Maintenance Worker NA NA 335.93 1.679650e+02 167.965 7.25 2 1.679650e+02 335.93 NA NA NA NULL
2016 District Attorney Kings County Media Services Technician 50604.66667 4.554420e+05 43525.50 4.836167e+03 2784.520 1201.25 9 2.784520e+03 25060.68 4.989675e+05 4.805027e+05 18464.82 NULL
2016 District Attorney Kings County Office Assistant 35152.00000 3.515200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.515200e+04 3.515200e+04 0.00 NULL
2016 District Attorney Kings County Paralegal Aide 46906.09091 5.159670e+05 83.59 7.599091e+00 0.000 3.00 11 0.000000e+00 0.00 5.160506e+05 5.159670e+05 83.59 NULL
2016 District Attorney Kings County Principal Accountant Investigator 133987.00000 1.339870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339870e+05 1.339870e+05 0.00 NULL
2016 District Attorney Kings County Principal Administrative Associate 63325.00000 1.076525e+06 68.89 4.052353e+00 0.000 2.25 17 0.000000e+00 0.00 1.076594e+06 1.076525e+06 68.89 NULL
2016 District Attorney Kings County Procurement Analyst 65015.00000 6.501500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.501500e+04 6.501500e+04 0.00 NULL
2016 District Attorney Kings County Reporter/ Stenographer 50074.38681 9.013390e+05 0.47 2.611110e-02 0.000 0.00 18 0.000000e+00 0.00 9.013394e+05 9.013390e+05 0.47 NULL
2016 District Attorney Kings County Secretary 45385.20000 2.269260e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.269260e+05 2.269260e+05 0.00 NULL
2016 District Attorney Kings County Social Worker 51718.95333 3.103137e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.103137e+05 3.103137e+05 0.00 NULL
2016 District Attorney Kings County Special Officer 34666.00000 6.933200e+04 3817.26 1.908630e+03 1908.630 154.50 2 1.908630e+03 3817.26 7.314926e+04 7.314926e+04 0.00 NULL
2016 District Attorney Kings County Strategic Initiative Specialist 107625.00000 1.076250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.076250e+05 1.076250e+05 0.00 NULL
2016 District Attorney Kings County Supervising Accountant Investigator 79103.63636 8.701400e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 8.701400e+05 8.701400e+05 0.00 NULL
2016 District Attorney Qns County Adm Manager-Non-Mgrl 83799.71429 5.865980e+05 10179.95 1.454279e+03 1001.020 205.00 7 1.001020e+03 7007.14 5.967779e+05 5.936051e+05 3172.81 NULL
2016 District Attorney Qns County Administrative Manager 117333.00000 2.346660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.346660e+05 2.346660e+05 0.00 NULL
2016 District Attorney Qns County Administrative Public Information Specialist 85632.00000 1.712640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.712640e+05 1.712640e+05 0.00 NULL
2016 District Attorney Qns County Administrative Staff Analyst 143141.00000 2.862820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.862820e+05 2.862820e+05 0.00 NULL
2016 District Attorney Qns County Agency Chief Contracting Officer 110072.00000 1.100720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100720e+05 1.100720e+05 0.00 NULL
2016 District Attorney Qns County Assistant District Attorney 100269.90679 3.338988e+07 332.54 9.986186e-01 0.000 13.50 333 0.000000e+00 0.00 3.339021e+07 3.338988e+07 332.54 NULL
2016 District Attorney Qns County Associate Project Manager 107202.00000 1.072020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.072020e+05 1.072020e+05 0.00 NULL
2016 District Attorney Qns County Certified Applications Developer 93909.00000 9.390900e+04 859.42 8.594200e+02 859.420 13.00 1 8.594200e+02 859.42 9.476842e+04 9.476842e+04 0.00 NULL
2016 District Attorney Qns County Certified It Administrator 110756.00000 1.107560e+05 11361.06 1.136106e+04 11361.060 147.00 1 1.136106e+04 11361.06 1.221171e+05 1.221171e+05 0.00 NULL
2016 District Attorney Qns County Certified It Developer 85000.00000 8.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.500000e+04 8.500000e+04 0.00 NULL
2016 District Attorney Qns County City Seasonal Aide 4119.76973 5.767678e+04 82.55 5.896429e+00 0.000 7.00 14 0.000000e+00 0.00 5.775933e+04 5.767678e+04 82.55 NULL
2016 District Attorney Qns County Clerical Associate 49338.19231 1.282793e+06 51221.25 1.970048e+03 0.000 1333.75 26 0.000000e+00 0.00 1.334014e+06 1.282793e+06 51221.25 NULL
2016 District Attorney Qns County Community Assistant 34269.06667 1.542108e+06 87328.36 1.940630e+03 0.000 3980.25 45 0.000000e+00 0.00 1.629436e+06 1.542108e+06 87328.36 NULL
2016 District Attorney Qns County Community Associate 38885.51129 5.132887e+06 137659.50 1.042875e+03 0.000 4981.75 132 0.000000e+00 0.00 5.270547e+06 5.132887e+06 137659.50 NULL
2016 District Attorney Qns County Community Coordinator 66989.73684 1.272805e+06 30392.84 1.599623e+03 0.000 725.50 19 0.000000e+00 0.00 1.303198e+06 1.272805e+06 30392.84 NULL
2016 District Attorney Qns County Community Service Aide 26428.16667 1.585690e+05 17555.61 2.925935e+03 450.260 988.25 6 4.502600e+02 2701.56 1.761246e+05 1.612706e+05 14854.05 NULL
2016 District Attorney Qns County Computer Associate 88675.00000 8.867500e+04 145.61 1.456100e+02 145.610 0.00 1 1.456100e+02 145.61 8.882061e+04 8.882061e+04 0.00 NULL
2016 District Attorney Qns County Computer Specialist 87467.00000 1.749340e+05 7078.99 3.539495e+03 3539.495 125.00 2 3.539495e+03 7078.99 1.820130e+05 1.820130e+05 0.00 NULL
2016 District Attorney Qns County Director Of Public Information 150392.00000 1.503920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503920e+05 1.503920e+05 0.00 NULL
2016 District Attorney Qns County District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2016 District Attorney Qns County Paralegal Aide 50699.78571 7.097970e+05 30700.82 2.192916e+03 0.000 928.75 14 0.000000e+00 0.00 7.404978e+05 7.097970e+05 30700.82 NULL
2016 District Attorney Qns County Principal Administrative Associate 61784.73333 9.267710e+05 28841.49 1.922766e+03 0.000 728.75 15 0.000000e+00 0.00 9.556125e+05 9.267710e+05 28841.49 NULL
2016 District Attorney Qns County Private Secretary 98615.00000 9.861500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.861500e+04 9.861500e+04 0.00 NULL
2016 District Attorney Qns County Reporter/ Stenographer 67307.88889 1.211542e+06 10610.17 5.894539e+02 0.000 223.00 18 0.000000e+00 0.00 1.222152e+06 1.211542e+06 10610.17 NULL
2016 District Attorney Qns County Secretary 54983.50000 4.398680e+05 14759.37 1.844921e+03 0.000 343.50 8 0.000000e+00 0.00 4.546274e+05 4.398680e+05 14759.37 NULL
2016 District Attorney Qns County Special Assistant To Da 122822.87500 9.825830e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.825830e+05 9.825830e+05 0.00 NULL
2016 District Attorney Qns County Staff Analyst 90151.00000 9.015100e+04 2.94 2.940000e+00 2.940 0.00 1 2.940000e+00 2.94 9.015394e+04 9.015394e+04 0.00 NULL
2016 District Attorney Qns County Supervising Accountant Investigator 84603.00000 2.538090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.538090e+05 2.538090e+05 0.00 NULL
2016 District Attorney Richmond Cou Administrative Public Information Specialist 75734.00000 1.514680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.514680e+05 1.514680e+05 0.00 NULL
2016 District Attorney Richmond Cou Administrative Staff Analyst 89713.32000 3.588533e+05 11.11 2.777500e+00 0.000 0.00 4 0.000000e+00 0.00 3.588644e+05 3.588533e+05 11.11 NULL
2016 District Attorney Richmond Cou Assistant District Attorney 91479.64179 6.129136e+06 3964.80 5.917612e+01 0.000 90.75 67 0.000000e+00 0.00 6.133101e+06 6.129136e+06 3964.80 NULL
2016 District Attorney Richmond Cou Associate Staff Analyst 95068.00000 9.506800e+04 1042.86 1.042860e+03 1042.860 0.00 1 1.042860e+03 1042.86 9.611086e+04 9.611086e+04 0.00 NULL
2016 District Attorney Richmond Cou Chief Investigator 101326.00000 1.013260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.013260e+05 1.013260e+05 0.00 NULL
2016 District Attorney Richmond Cou Clerical Associate 51624.33333 4.646190e+05 24004.37 2.667152e+03 0.000 696.50 9 0.000000e+00 0.00 4.886234e+05 4.646190e+05 24004.37 NULL
2016 District Attorney Richmond Cou Community Assistant 36720.00000 7.344000e+04 845.10 4.225500e+02 422.550 51.00 2 4.225500e+02 845.10 7.428510e+04 7.428510e+04 0.00 NULL
2016 District Attorney Richmond Cou Community Associate 46071.76471 7.832200e+05 10753.07 6.325335e+02 0.000 357.25 17 0.000000e+00 0.00 7.939731e+05 7.832200e+05 10753.07 NULL
2016 District Attorney Richmond Cou Community Coordinator 64560.83333 3.873650e+05 30260.20 5.043367e+03 2119.745 806.25 6 2.119745e+03 12718.47 4.176252e+05 4.000835e+05 17541.73 NULL
2016 District Attorney Richmond Cou Computer Programmer Analyst 46303.00000 4.630300e+04 111.25 1.112500e+02 111.250 4.50 1 1.112500e+02 111.25 4.641425e+04 4.641425e+04 0.00 NULL
2016 District Attorney Richmond Cou Computer Systems Manager 88968.00000 8.896800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.896800e+04 8.896800e+04 0.00 NULL
2016 District Attorney Richmond Cou District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2016 District Attorney Richmond Cou Investigator 46000.00000 4.600000e+04 81.83 8.183000e+01 81.830 3.25 1 8.183000e+01 81.83 4.608183e+04 4.608183e+04 0.00 NULL
2016 District Attorney Richmond Cou Paralegal Aide 52407.00000 5.240700e+04 735.17 7.351700e+02 735.170 19.00 1 7.351700e+02 735.17 5.314217e+04 5.314217e+04 0.00 NULL
2016 District Attorney Richmond Cou Principal Administrative Associate 63564.25000 2.542570e+05 308.37 7.709250e+01 0.015 0.00 4 1.500000e-02 0.06 2.545654e+05 2.542571e+05 308.31 NULL
2016 District Attorney Richmond Cou Program Producer 57054.00500 5.705400e+04 4070.61 4.070610e+03 4070.610 89.50 1 4.070610e+03 4070.61 6.112461e+04 6.112461e+04 0.00 NULL
2016 District Attorney Richmond Cou Reporter/ Stenographer 51940.97750 2.077639e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.077639e+05 2.077639e+05 0.00 NULL
2016 District Attorney Richmond Cou Secretary 44982.00000 4.498200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.498200e+04 4.498200e+04 0.00 NULL
2016 District Attorney Richmond Cou Senior Detective Investigator 66094.66667 5.948520e+05 11290.54 1.254504e+03 1167.430 236.25 9 1.167430e+03 10506.87 6.061425e+05 6.053589e+05 783.67 NULL
2016 District Attorney Richmond Cou Social Worker 58522.00000 1.755660e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.755660e+05 1.755660e+05 0.00 NULL
2016 District Attorney-Manhattan Admin Contract Specialist 120750.00000 2.415000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.415000e+05 2.415000e+05 0.00 NULL
2016 District Attorney-Manhattan Administration Public Record Officer 142500.00000 1.425000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.425000e+05 1.425000e+05 0.00 NULL
2016 District Attorney-Manhattan Administrative Accountant 125814.50000 5.032580e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.032580e+05 5.032580e+05 0.00 NULL
2016 District Attorney-Manhattan Administrative Architect 116000.00000 1.160000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.160000e+05 1.160000e+05 0.00 NULL
2016 District Attorney-Manhattan Administrative Chief 159130.40000 7.956520e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.956520e+05 7.956520e+05 0.00 NULL
2016 District Attorney-Manhattan Administrative Community Relations Specialist 104138.33333 9.372450e+05 10.00 1.111111e+00 0.000 0.00 9 0.000000e+00 0.00 9.372550e+05 9.372450e+05 10.00 NULL
2016 District Attorney-Manhattan Administrative Education Analyst 129987.00000 2.599740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.599740e+05 2.599740e+05 0.00 NULL
2016 District Attorney-Manhattan Administrative Labor Relations Analyst 114000.00000 1.140000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.140000e+05 1.140000e+05 0.00 NULL
2016 District Attorney-Manhattan Administrative Project Manager 126680.00000 1.013440e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.013440e+06 1.013440e+06 0.00 NULL
2016 District Attorney-Manhattan Administrative Staff Analyst 123000.00000 1.230000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.230000e+05 1.230000e+05 0.00 NULL
2016 District Attorney-Manhattan Assistant District Attorney 102373.05026 5.906925e+07 0.00 0.000000e+00 0.000 0.00 577 0.000000e+00 0.00 5.906925e+07 5.906925e+07 0.00 NULL
2016 District Attorney-Manhattan Assistant Media Services Technican 39299.25000 1.571970e+05 10997.38 2.749345e+03 1483.140 444.00 4 1.483140e+03 5932.56 1.681944e+05 1.631296e+05 5064.82 NULL
2016 District Attorney-Manhattan Carpenter NA NA 126324.72 2.526494e+04 23452.120 924.50 5 2.345212e+04 117260.60 NA NA NA NULL
2016 District Attorney-Manhattan Chief Office Assistant 45572.00000 4.557200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.557200e+04 4.557200e+04 0.00 NULL
2016 District Attorney-Manhattan City Custodial Assistant 35006.66667 6.301200e+05 18372.61 1.020701e+03 279.730 627.75 18 2.797300e+02 5035.14 6.484926e+05 6.351551e+05 13337.47 NULL
2016 District Attorney-Manhattan City Laborer NA NA 39421.49 6.570248e+03 3473.555 633.00 6 3.473555e+03 20841.33 NA NA NA NULL
2016 District Attorney-Manhattan Clerical Associate 53313.35028 9.596403e+05 45807.49 2.544861e+03 0.000 1259.00 18 0.000000e+00 0.00 1.005448e+06 9.596403e+05 45807.49 NULL
2016 District Attorney-Manhattan College Aide 263.73000 3.903204e+04 0.00 0.000000e+00 0.000 0.00 148 0.000000e+00 0.00 3.903204e+04 3.903204e+04 0.00 NULL
2016 District Attorney-Manhattan Community Assistant 36718.60963 1.542182e+06 45891.13 1.092646e+03 61.120 1779.50 42 6.112000e+01 2567.04 1.588073e+06 1.544749e+06 43324.09 NULL
2016 District Attorney-Manhattan Community Associate 44275.18072 2.390860e+07 430800.13 7.977780e+02 0.000 14460.87 540 0.000000e+00 0.00 2.433940e+07 2.390860e+07 430800.13 NULL
2016 District Attorney-Manhattan Community Coordinator 76498.38703 9.791794e+06 360789.98 2.818672e+03 91.550 7034.00 128 9.155000e+01 11718.40 1.015258e+07 9.803512e+06 349071.58 NULL
2016 District Attorney-Manhattan Computer Operations Manager 150500.00000 3.010000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.010000e+05 3.010000e+05 0.00 NULL
2016 District Attorney-Manhattan Computer Systems Manager 145000.00000 7.250000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.250000e+05 7.250000e+05 0.00 NULL
2016 District Attorney-Manhattan County Detective 49270.88889 4.434380e+05 49517.03 5.501892e+03 3310.530 1329.75 9 3.310530e+03 29794.77 4.929550e+05 4.732328e+05 19722.26 NULL
2016 District Attorney-Manhattan Director Of Public Information 130000.00000 2.600000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.600000e+05 2.600000e+05 0.00 NULL
2016 District Attorney-Manhattan District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2016 District Attorney-Manhattan Electrician NA NA 35574.18 1.778709e+04 17787.090 437.75 2 1.778709e+04 35574.18 NA NA NA NULL
2016 District Attorney-Manhattan Electrician’s Helper NA NA 8991.82 8.991820e+03 8991.820 173.75 1 8.991820e+03 8991.82 NA NA NA NULL
2016 District Attorney-Manhattan Engineering Technician 57849.00000 1.156980e+05 996.15 4.980750e+02 498.075 27.00 2 4.980750e+02 996.15 1.166941e+05 1.166941e+05 0.00 NULL
2016 District Attorney-Manhattan High Pressure Plant Tender NA NA 14904.45 1.490445e+04 14904.450 264.50 1 1.490445e+04 14904.45 NA NA NA NULL
2016 District Attorney-Manhattan Interpreter 58257.40000 2.912870e+05 8906.40 1.781280e+03 0.000 223.00 5 0.000000e+00 0.00 3.001934e+05 2.912870e+05 8906.40 NULL
2016 District Attorney-Manhattan Management Auditor 98157.00000 9.815700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.815700e+04 9.815700e+04 0.00 NULL
2016 District Attorney-Manhattan Media Services Technician 54238.50000 4.339080e+05 124645.28 1.558066e+04 10075.445 2945.25 8 1.007544e+04 80603.56 5.585533e+05 5.145116e+05 44041.72 NULL
2016 District Attorney-Manhattan Office Assistant 54732.00000 1.641960e+05 15716.38 5.238793e+03 7016.100 419.75 3 5.238793e+03 15716.38 1.799124e+05 1.799124e+05 0.00 NULL
2016 District Attorney-Manhattan Painter NA NA 33747.09 8.436772e+03 6897.230 554.50 4 6.897230e+03 27588.92 NA NA NA NULL
2016 District Attorney-Manhattan Paralegal Aide 72380.00000 7.238000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.238000e+04 7.238000e+04 0.00 NULL
2016 District Attorney-Manhattan Photographer 52695.33333 1.580860e+05 36368.57 1.212286e+04 15461.100 922.25 3 1.212286e+04 36368.57 1.944546e+05 1.944546e+05 0.00 NULL
2016 District Attorney-Manhattan Principal Accountant Investigator 111634.42105 2.121054e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.121054e+06 2.121054e+06 0.00 NULL
2016 District Attorney-Manhattan Principal Administrative Associate 72619.50000 7.261950e+05 10451.07 1.045107e+03 0.000 221.50 10 0.000000e+00 0.00 7.366461e+05 7.261950e+05 10451.07 NULL
2016 District Attorney-Manhattan Reporter/ Stenographer 72342.22222 1.953240e+06 46.51 1.722593e+00 0.000 1.00 27 0.000000e+00 0.00 1.953287e+06 1.953240e+06 46.51 NULL
2016 District Attorney-Manhattan Secretary 73257.14286 5.128000e+05 21402.45 3.057493e+03 336.850 551.00 7 3.368500e+02 2357.95 5.342024e+05 5.151580e+05 19044.50 NULL
2016 District Attorney-Manhattan Senior Accountant Investigator 67463.08773 7.420940e+05 14244.69 1.294972e+03 0.000 317.75 11 0.000000e+00 0.00 7.563387e+05 7.420940e+05 14244.69 NULL
2016 District Attorney-Manhattan Senior Secretary 56971.80000 2.848590e+05 297.70 5.954000e+01 0.000 7.00 5 0.000000e+00 0.00 2.851567e+05 2.848590e+05 297.70 NULL
2016 District Attorney-Manhattan Special Assistant To Da 169666.66667 5.090000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.090000e+05 5.090000e+05 0.00 NULL
2016 District Attorney-Manhattan Special Officer 36018.57143 5.042600e+05 5858.43 4.184593e+02 327.165 220.75 14 3.271650e+02 4580.31 5.101184e+05 5.088403e+05 1278.12 NULL
2016 District Attorney-Manhattan Supervising Accountant Investigator 70413.00000 7.041300e+04 7068.80 7.068800e+03 7068.800 89.50 1 7.068800e+03 7068.80 7.748180e+04 7.748180e+04 0.00 NULL
2016 District Attorney-Manhattan Supervisor Electrician NA NA 5202.48 5.202480e+03 5202.480 56.75 1 5.202480e+03 5202.48 NA NA NA NULL
2016 District Attorney-Special Narc Administrative Manager 177926.50000 3.558530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.558530e+05 3.558530e+05 0.00 NULL
2016 District Attorney-Special Narc Administrative Staff Analyst 137750.00000 2.755000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.755000e+05 2.755000e+05 0.00 NULL
2016 District Attorney-Special Narc Assistant District Attorney 97828.88710 1.213078e+07 0.00 0.000000e+00 0.000 0.00 124 0.000000e+00 0.00 1.213078e+07 1.213078e+07 0.00 NULL
2016 District Attorney-Special Narc Associate Chief Rackets Investigator 106000.00000 3.180000e+05 152.76 5.092000e+01 11.750 0.00 3 1.175000e+01 35.25 3.181528e+05 3.180352e+05 117.51 NULL
2016 District Attorney-Special Narc Chief Rackets Investigator 163814.00000 1.638140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.638140e+05 1.638140e+05 0.00 NULL
2016 District Attorney-Special Narc Clerical Associate 74775.25000 5.982020e+05 586.77 7.334625e+01 0.000 11.00 8 0.000000e+00 0.00 5.987888e+05 5.982020e+05 586.77 NULL
2016 District Attorney-Special Narc College Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2016 District Attorney-Special Narc Community Assistant 37739.00000 1.132170e+05 879.65 2.932167e+02 116.000 89.75 3 1.160000e+02 348.00 1.140966e+05 1.135650e+05 531.65 NULL
2016 District Attorney-Special Narc Community Associate 53247.57895 2.023408e+06 14832.95 3.903408e+02 0.000 455.50 38 0.000000e+00 0.00 2.038241e+06 2.023408e+06 14832.95 NULL
2016 District Attorney-Special Narc Community Coordinator 86491.27273 9.514040e+05 20031.89 1.821081e+03 0.000 258.75 11 0.000000e+00 0.00 9.714359e+05 9.514040e+05 20031.89 NULL
2016 District Attorney-Special Narc Computer Operations Manager 168000.00000 1.680000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.680000e+05 1.680000e+05 0.00 NULL
2016 District Attorney-Special Narc Confidential Secy 96570.00000 9.657000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.657000e+04 9.657000e+04 0.00 NULL
2016 District Attorney-Special Narc Director Of Public Information 143000.00000 1.430000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.430000e+05 1.430000e+05 0.00 NULL
2016 District Attorney-Special Narc Paralegal Aide 77558.00000 1.551160e+05 439.82 2.199100e+02 219.910 6.50 2 2.199100e+02 439.82 1.555558e+05 1.555558e+05 0.00 NULL
2016 District Attorney-Special Narc Rackets Investigator 57599.66667 1.727990e+05 262.13 8.737667e+01 102.500 10.50 3 8.737667e+01 262.13 1.730611e+05 1.730611e+05 0.00 NULL
2016 District Attorney-Special Narc Reporter/ Stenographer 67988.00000 6.118920e+05 9360.44 1.040049e+03 0.000 180.00 9 0.000000e+00 0.00 6.212524e+05 6.118920e+05 9360.44 NULL
2016 District Attorney-Special Narc Secretary 71290.33333 2.138710e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.138710e+05 2.138710e+05 0.00 NULL
2016 District Attorney-Special Narc Senior Rackets Investigator 73581.85000 1.471637e+06 21843.76 1.092188e+03 188.720 521.00 20 1.887200e+02 3774.40 1.493481e+06 1.475411e+06 18069.36 NULL
2016 District Attorney-Special Narc Special Assistant District Attorney 189000.00000 1.890000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.890000e+05 1.890000e+05 0.00 NULL
2016 District Attorney-Special Narc Staff Analyst 100793.00000 1.007930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.007930e+05 1.007930e+05 0.00 NULL
2016 District Attorney-Special Narc Supervising Rackets Investigator 87783.00000 2.633490e+05 18217.38 6.072460e+03 5528.970 307.50 3 5.528970e+03 16586.91 2.815664e+05 2.799359e+05 1630.47 NULL
2016 Doe Custodial Payrol Custodian Engineer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 775 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2016 Equal Employ Practices Comm Administrative Manager 128615.00000 1.286150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.286150e+05 1.286150e+05 0.00 NULL
2016 Equal Employ Practices Comm Agency Attorney 74620.00000 7.462000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.462000e+04 7.462000e+04 0.00 NULL
2016 Equal Employ Practices Comm City Research Scientist 97260.00000 2.917800e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.917800e+05 2.917800e+05 0.00 NULL
2016 Equal Employ Practices Comm College Aide 2247.42375 4.494847e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.494847e+03 4.494847e+03 0.00 NULL
2016 Equal Employ Practices Comm Community Coordinator 53118.82667 1.593565e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.593565e+05 1.593565e+05 0.00 NULL
2016 Equal Employ Practices Comm Executive Agency Counsel 107125.00000 1.071250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.071250e+05 1.071250e+05 0.00 NULL
2016 Equal Employ Practices Comm Executive Secretary 53044.00000 5.304400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.304400e+04 5.304400e+04 0.00 NULL
2016 Equal Employ Practices Comm Research Assistant 44048.00000 4.404800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.404800e+04 4.404800e+04 0.00 NULL
2016 Equal Employ Practices Comm Staff Analyst 66180.00000 6.618000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.618000e+04 6.618000e+04 0.00 NULL
2016 Equal Employ Practices Comm Summer College Intern 1741.64250 1.741642e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.741642e+03 1.741642e+03 0.00 NULL
2016 Financial Info Svcs Agency Accountant 60488.00000 6.048800e+04 3602.27 3.602270e+03 3602.270 114.50 1 3.602270e+03 3602.27 6.409027e+04 6.409027e+04 0.00 NULL
2016 Financial Info Svcs Agency Adm Manager-Non-Mgrl 78825.18182 8.670770e+05 520.47 4.731545e+01 0.000 0.00 11 0.000000e+00 0.00 8.675975e+05 8.670770e+05 520.47 NULL
2016 Financial Info Svcs Agency Admin Contract Specialist 124448.00000 1.244480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.244480e+05 1.244480e+05 0.00 NULL
2016 Financial Info Svcs Agency Administrative Manager 124337.00000 2.486740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.486740e+05 2.486740e+05 0.00 NULL
2016 Financial Info Svcs Agency Administrative Staff Analyst 115849.46154 1.506043e+06 458.37 3.525923e+01 0.000 5.50 13 0.000000e+00 0.00 1.506501e+06 1.506043e+06 458.37 NULL
2016 Financial Info Svcs Agency Agency Attorney 84580.00000 1.691600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.691600e+05 1.691600e+05 0.00 NULL
2016 Financial Info Svcs Agency Agency Chief Contracting Officer 124351.00000 1.243510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.243510e+05 1.243510e+05 0.00 NULL
2016 Financial Info Svcs Agency Associate Staff Analyst 80881.33333 4.852880e+05 18.31 3.051667e+00 2.335 0.00 6 2.335000e+00 14.01 4.853063e+05 4.853020e+05 4.30 NULL
2016 Financial Info Svcs Agency Certified Wide Area Network Administrator 117458.00000 1.174580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.174580e+05 1.174580e+05 0.00 NULL
2016 Financial Info Svcs Agency City Attendant 34165.00000 3.416500e+04 3617.52 3.617520e+03 3617.520 163.75 1 3.617520e+03 3617.52 3.778252e+04 3.778252e+04 0.00 NULL
2016 Financial Info Svcs Agency Clerical Associate 41617.41350 2.080871e+05 1572.43 3.144860e+02 0.000 53.00 5 0.000000e+00 0.00 2.096595e+05 2.080871e+05 1572.43 NULL
2016 Financial Info Svcs Agency College Aide - Assignment Levels Ii And Iii 11590.85397 3.477256e+04 61.08 2.036000e+01 0.000 3.50 3 0.000000e+00 0.00 3.483364e+04 3.477256e+04 61.08 NULL
2016 Financial Info Svcs Agency Community Assistant 33322.66667 9.996800e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.996800e+04 9.996800e+04 0.00 NULL
2016 Financial Info Svcs Agency Community Associate 51125.03917 3.067502e+05 105.37 1.756167e+01 0.000 4.75 6 0.000000e+00 0.00 3.068556e+05 3.067502e+05 105.37 NULL
2016 Financial Info Svcs Agency Community Coordinator 52562.00000 1.051240e+05 861.75 4.308750e+02 430.875 22.00 2 4.308750e+02 861.75 1.059858e+05 1.059858e+05 0.00 NULL
2016 Financial Info Svcs Agency Computer Aide-Non-Spvr 43893.00000 8.778600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.778600e+04 8.778600e+04 0.00 NULL
2016 Financial Info Svcs Agency Computer Associate 71255.23333 4.275314e+06 165593.45 2.759891e+03 1377.035 3664.25 60 1.377035e+03 82622.10 4.440907e+06 4.357936e+06 82971.35 NULL
2016 Financial Info Svcs Agency Computer Operations Manager 129541.00000 2.590820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.590820e+05 2.590820e+05 0.00 NULL
2016 Financial Info Svcs Agency Computer Programmer Analyst 59729.33333 1.791880e+05 64.12 2.137333e+01 0.000 2.00 3 0.000000e+00 0.00 1.792521e+05 1.791880e+05 64.12 NULL
2016 Financial Info Svcs Agency Computer Programmer Analyst Trainee 37075.00000 3.707500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.707500e+04 3.707500e+04 0.00 NULL
2016 Financial Info Svcs Agency Computer Specialist 99416.29487 7.754471e+06 56.76 7.276923e-01 0.000 1.00 78 0.000000e+00 0.00 7.754528e+06 7.754471e+06 56.76 NULL
2016 Financial Info Svcs Agency Computer Systems Manager 123999.59494 2.938790e+07 0.00 0.000000e+00 0.000 0.00 237 0.000000e+00 0.00 2.938790e+07 2.938790e+07 0.00 NULL
2016 Financial Info Svcs Agency Custodial Assistant 34141.66667 1.024250e+05 10541.90 3.513967e+03 2571.070 396.00 3 2.571070e+03 7713.21 1.129669e+05 1.101382e+05 2828.69 NULL
2016 Financial Info Svcs Agency Executive Agency Counsel 158458.87500 6.338355e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.338355e+05 6.338355e+05 0.00 NULL
2016 Financial Info Svcs Agency Executive Director 212476.50000 4.249530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.249530e+05 4.249530e+05 0.00 NULL
2016 Financial Info Svcs Agency Motor Vehicle Operator 45122.00000 4.512200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.512200e+04 4.512200e+04 0.00 NULL
2016 Financial Info Svcs Agency Principal Administrative Associate 60108.71429 4.207610e+05 1466.55 2.095071e+02 0.000 44.00 7 0.000000e+00 0.00 4.222275e+05 4.207610e+05 1466.55 NULL
2016 Financial Info Svcs Agency Procurement Analyst 79125.25000 3.165010e+05 204.01 5.100250e+01 3.915 2.75 4 3.915000e+00 15.66 3.167050e+05 3.165167e+05 188.35 NULL
2016 Financial Info Svcs Agency Secretary 56832.00000 5.683200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.683200e+04 5.683200e+04 0.00 NULL
2016 Financial Info Svcs Agency Staff Analyst 61880.00000 3.094000e+05 307.01 6.140200e+01 3.870 7.50 5 3.870000e+00 19.35 3.097070e+05 3.094193e+05 287.66 NULL
2016 Financial Info Svcs Agency Staff Analyst Trainee 39362.00000 7.872400e+04 8.02 4.010000e+00 4.010 0.00 2 4.010000e+00 8.02 7.873202e+04 7.873202e+04 0.00 NULL
2016 Financial Info Svcs Agency Supervisor Of Office Machine Operations 45688.00000 9.137600e+04 7938.93 3.969465e+03 3969.465 276.00 2 3.969465e+03 7938.93 9.931493e+04 9.931493e+04 0.00 NULL
2016 Financial Info Svcs Agency Supervisor Of Stock Workers 71230.00000 7.123000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.123000e+04 7.123000e+04 0.00 NULL
2016 Financial Info Svcs Agency Telecommunications Associate 80319.50000 1.606390e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.606390e+05 1.606390e+05 0.00 NULL
2016 Fire Department *Plant Maintainer NA NA 1702.23 1.702230e+03 1702.230 0.00 1 1.702230e+03 1702.23 NA NA NA NULL
2016 Fire Department ?Fire Safety Cadet 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2016 Fire Department ?Senior Automotive Service Worker 41020.00000 4.102000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.102000e+04 4.102000e+04 0.00 NULL
2016 Fire Department Accountant 69896.00000 2.096880e+05 10438.62 3.479540e+03 0.000 168.00 3 0.000000e+00 0.00 2.201266e+05 2.096880e+05 10438.62 NULL
2016 Fire Department Adm Manager-Non-Mgrl 71676.27119 4.228900e+06 201385.94 3.413321e+03 1137.500 4672.00 59 1.137500e+03 67112.50 4.430286e+06 4.296012e+06 134273.44 NULL
2016 Fire Department Admin Community Relations Specialist 100873.00000 1.008730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.008730e+05 1.008730e+05 0.00 NULL
2016 Fire Department Admin Tests & Meas Spec 133498.00000 1.334980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.334980e+05 1.334980e+05 0.00 NULL
2016 Fire Department Administrative Architect 117992.00000 1.179920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.179920e+05 1.179920e+05 0.00 NULL
2016 Fire Department Administrative Blasting Inspector 119117.00000 1.191170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.191170e+05 1.191170e+05 0.00 NULL
2016 Fire Department Administrative Community Relations Specialist 142054.00000 1.420540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.420540e+05 1.420540e+05 0.00 NULL
2016 Fire Department Administrative Construction Project Manager 122385.50000 2.447710e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.447710e+05 2.447710e+05 0.00 NULL
2016 Fire Department Administrative Engineer 109665.66667 3.289970e+05 7663.54 2.554513e+03 0.000 165.00 3 0.000000e+00 0.00 3.366605e+05 3.289970e+05 7663.54 NULL
2016 Fire Department Administrative Fire Protection Inspector 96339.62500 7.707170e+05 30199.33 3.774916e+03 0.000 516.25 8 0.000000e+00 0.00 8.009163e+05 7.707170e+05 30199.33 NULL
2016 Fire Department Administrative Graphic Artist 81498.00000 8.149800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.149800e+04 8.149800e+04 0.00 NULL
2016 Fire Department Administrative Inspector 94594.00000 1.891880e+05 18855.08 9.427540e+03 9427.540 320.25 2 9.427540e+03 18855.08 2.080431e+05 2.080431e+05 0.00 NULL
2016 Fire Department Administrative Investigator 110494.00000 4.419760e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.419760e+05 4.419760e+05 0.00 NULL
2016 Fire Department Administrative Labor Relations Analyst 110416.66667 3.312500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.312500e+05 3.312500e+05 0.00 NULL
2016 Fire Department Administrative Management Auditor 149488.00000 1.494880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.494880e+05 1.494880e+05 0.00 NULL
2016 Fire Department Administrative Printing Services Manager 113947.00000 1.139470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.139470e+05 1.139470e+05 0.00 NULL
2016 Fire Department Administrative Procurement Analyst 97805.25000 3.912210e+05 25824.95 6.456238e+03 0.000 656.75 4 0.000000e+00 0.00 4.170460e+05 3.912210e+05 25824.95 NULL
2016 Fire Department Administrative Project Manager 93459.45455 1.028054e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.028054e+06 1.028054e+06 0.00 NULL
2016 Fire Department Administrative Public Information Specialist 110995.50000 2.219910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.219910e+05 2.219910e+05 0.00 NULL
2016 Fire Department Administrative Quality Assurance Specialist 65625.24000 6.562524e+04 5981.62 5.981620e+03 5981.620 123.00 1 5.981620e+03 5981.62 7.160686e+04 7.160686e+04 0.00 NULL
2016 Fire Department Administrative Retirement Benefits Specialist 107083.00000 1.070830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.070830e+05 1.070830e+05 0.00 NULL
2016 Fire Department Administrative Staff Analyst 89762.66733 8.258165e+06 124981.45 1.358494e+03 0.000 2162.75 92 0.000000e+00 0.00 8.383147e+06 8.258165e+06 124981.45 NULL
2016 Fire Department Administrative Storekeeper 129791.00000 1.297910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.297910e+05 1.297910e+05 0.00 NULL
2016 Fire Department Administrative Supervisor Of Building Maintenance 118361.00000 2.367220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.367220e+05 2.367220e+05 0.00 NULL
2016 Fire Department Administrator Of Medical Affairs 193054.00000 1.930540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.930540e+05 1.930540e+05 0.00 NULL
2016 Fire Department Agency Attorney 89174.29940 1.872660e+06 20418.56 9.723124e+02 0.000 325.00 21 0.000000e+00 0.00 1.893079e+06 1.872660e+06 20418.56 NULL
2016 Fire Department Agency Chief Contracting Officer 150551.00000 1.505510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.505510e+05 1.505510e+05 0.00 NULL
2016 Fire Department Agency Deputy Medical Director 164206.20000 8.210310e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.210310e+05 8.210310e+05 0.00 NULL
2016 Fire Department Assistant Architect 51586.00000 5.158600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.158600e+04 5.158600e+04 0.00 NULL
2016 Fire Department Assistant Chemical Engineer 65521.00000 1.965630e+05 462.09 1.540300e+02 0.000 14.00 3 0.000000e+00 0.00 1.970251e+05 1.965630e+05 462.09 NULL
2016 Fire Department Assistant Chief Fire Marshal 190815.00000 1.908150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.908150e+05 1.908150e+05 0.00 NULL
2016 Fire Department Assistant Chief Of Department 211431.18750 3.382899e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 3.382899e+06 3.382899e+06 0.00 NULL
2016 Fire Department Assistant Civil Engineer 59324.00000 5.932400e+04 4447.44 4.447440e+03 4447.440 143.50 1 4.447440e+03 4447.44 6.377144e+04 6.377144e+04 0.00 NULL
2016 Fire Department Assistant Commissioner 147794.90000 1.477949e+06 27.10 2.710000e+00 0.000 0.00 10 0.000000e+00 0.00 1.477976e+06 1.477949e+06 27.10 NULL
2016 Fire Department Assistant Electrical Engineer 60349.00000 6.034900e+04 3937.12 3.937120e+03 3937.120 85.50 1 3.937120e+03 3937.12 6.428612e+04 6.428612e+04 0.00 NULL
2016 Fire Department Assistant Mechanical Engineer 56383.50000 2.255340e+05 7086.01 1.771503e+03 1113.525 309.00 4 1.113525e+03 4454.10 2.326200e+05 2.299881e+05 2631.91 NULL
2016 Fire Department Associate Commissioner 192942.00000 1.929420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.929420e+05 1.929420e+05 0.00 NULL
2016 Fire Department Associate Fingerprint Technician 31499.00000 3.149900e+04 1651.39 1.651390e+03 1651.390 101.50 1 1.651390e+03 1651.39 3.315039e+04 3.315039e+04 0.00 NULL
2016 Fire Department Associate Fire Protection Inspector 56685.93780 1.184736e+07 3236499.16 1.548564e+04 14430.820 75324.13 209 1.443082e+04 3016041.38 1.508386e+07 1.486340e+07 220457.78 NULL
2016 Fire Department Associate Inspector 61317.80769 1.594263e+06 581529.03 2.236650e+04 17036.265 11732.50 26 1.703626e+04 442942.89 2.175792e+06 2.037206e+06 138586.14 NULL
2016 Fire Department Associate Investigator 54416.00000 1.088320e+05 13492.68 6.746340e+03 6746.340 404.25 2 6.746340e+03 13492.68 1.223247e+05 1.223247e+05 0.00 NULL
2016 Fire Department Associate Project Manager 79978.92308 1.039726e+06 38483.78 2.960291e+03 27.490 731.75 13 2.749000e+01 357.37 1.078210e+06 1.040083e+06 38126.41 NULL
2016 Fire Department Associate Retirement Benefits Examiner 57602.60000 2.880130e+05 19567.74 3.913548e+03 4334.990 525.50 5 3.913548e+03 19567.74 3.075807e+05 3.075807e+05 0.00 NULL
2016 Fire Department Associate Staff Analyst 74399.31760 1.859983e+06 77726.37 3.109055e+03 3.260 1199.00 25 3.260000e+00 81.50 1.937709e+06 1.860064e+06 77644.87 NULL
2016 Fire Department Attending Physician 34662.75700 2.773021e+05 1873.04 2.341300e+02 0.320 27.00 8 3.200000e-01 2.56 2.791751e+05 2.773046e+05 1870.48 NULL
2016 Fire Department Auto Machinist NA NA 137046.09 1.957801e+04 10933.960 2098.25 7 1.093396e+04 76537.72 NA NA NA NULL
2016 Fire Department Auto Mechanic NA NA 3292683.12 2.166239e+04 17304.785 56507.00 152 1.730478e+04 2630327.32 NA NA NA NULL
2016 Fire Department Automotive Service Worker 41472.60000 8.294520e+05 96109.14 4.805457e+03 1192.020 3124.50 20 1.192020e+03 23840.40 9.255611e+05 8.532924e+05 72268.74 NULL
2016 Fire Department Battalion Chief 147495.36176 5.708070e+07 1428294.64 3.690684e+03 0.000 13312.30 387 0.000000e+00 0.00 5.850900e+07 5.708070e+07 1428294.64 NULL
2016 Fire Department Bio-Medical Equipment Technician 48744.00000 4.874400e+04 16893.70 1.689370e+04 16893.700 506.25 1 1.689370e+04 16893.70 6.563770e+04 6.563770e+04 0.00 NULL
2016 Fire Department Blacksmith’s Helper NA NA 31096.72 3.109672e+04 31096.720 555.00 1 3.109672e+04 31096.72 NA NA NA NULL
2016 Fire Department Captain 114814.29711 6.762562e+07 19903524.88 3.379206e+04 34725.330 220171.27 589 3.379206e+04 19903524.88 8.752915e+07 8.752915e+07 0.00 NULL
2016 Fire Department Carpenter NA NA 451629.59 2.376998e+04 23568.320 3755.75 19 2.356832e+04 447798.08 NA NA NA NULL
2016 Fire Department Case - Management Nurse 66938.22689 1.338765e+06 17852.82 8.926410e+02 91.630 296.00 20 9.163000e+01 1832.60 1.356617e+06 1.340597e+06 16020.22 NULL
2016 Fire Department Cashier 41442.95030 8.288590e+04 1700.93 8.504650e+02 850.465 92.00 2 8.504650e+02 1700.93 8.458683e+04 8.458683e+04 0.00 NULL
2016 Fire Department Cement Mason NA NA 46051.59 2.302579e+04 23025.795 475.25 2 2.302579e+04 46051.59 NA NA NA NULL
2016 Fire Department Certified Applications Developer 95620.00000 9.562000e+04 17622.05 1.762205e+04 17622.050 279.25 1 1.762205e+04 17622.05 1.132421e+05 1.132421e+05 0.00 NULL
2016 Fire Department Certified It Administrator 91125.20000 4.556260e+05 107840.48 2.156810e+04 3711.180 1566.00 5 3.711180e+03 18555.90 5.634665e+05 4.741819e+05 89284.58 NULL
2016 Fire Department Certified It Developer 88730.00000 8.873000e+04 5502.38 5.502380e+03 5502.380 101.25 1 5.502380e+03 5502.38 9.423238e+04 9.423238e+04 0.00 NULL
2016 Fire Department Chaplain 26088.12500 2.087050e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 2.087050e+05 2.087050e+05 0.00 NULL
2016 Fire Department Chemical Engineer 90224.50000 1.804490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.804490e+05 1.804490e+05 0.00 NULL
2016 Fire Department Chief Fire Marshal 208484.00000 2.084840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.084840e+05 2.084840e+05 0.00 NULL
2016 Fire Department Chief Of Department 215554.00000 2.155540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.155540e+05 2.155540e+05 0.00 NULL
2016 Fire Department City Laborer NA NA 148324.44 1.648049e+04 9073.280 2946.25 9 9.073280e+03 81659.52 NA NA NA NULL
2016 Fire Department City Medical Specialist 44577.92867 1.426494e+06 89476.92 2.796154e+03 142.380 1223.75 32 1.423800e+02 4556.16 1.515971e+06 1.431050e+06 84920.76 NULL
2016 Fire Department City Research Scientist 73574.66667 4.414480e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.414480e+05 4.414480e+05 0.00 NULL
2016 Fire Department Civil Engineer 94153.00000 9.415300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.415300e+04 9.415300e+04 0.00 NULL
2016 Fire Department Clerical Aide 35678.00000 3.567800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.567800e+04 3.567800e+04 0.00 NULL
2016 Fire Department Clerical Associate 44023.07159 5.194722e+06 335641.35 2.844418e+03 153.215 10747.25 118 1.532150e+02 18079.37 5.530364e+06 5.212802e+06 317561.98 NULL
2016 Fire Department Commissioner 212476.50000 4.249530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.249530e+05 4.249530e+05 0.00 NULL
2016 Fire Department Communication Electrician NA NA 1422149.44 2.962811e+04 28803.650 23401.00 48 2.880365e+04 1382575.20 NA NA NA NULL
2016 Fire Department Community Associate 41392.18211 5.380984e+05 14502.35 1.115565e+03 61.620 624.25 13 6.162000e+01 801.06 5.526007e+05 5.388994e+05 13701.29 NULL
2016 Fire Department Community Coordinator 56025.67647 1.904873e+06 221368.15 6.510828e+03 809.915 5836.50 34 8.099150e+02 27537.11 2.126241e+06 1.932410e+06 193831.04 NULL
2016 Fire Department Computer Associate 70392.64437 2.252565e+06 592522.81 1.851634e+04 7753.245 11059.00 32 7.753245e+03 248103.84 2.845087e+06 2.500668e+06 344418.97 NULL
2016 Fire Department Computer Specialist 92011.90000 5.520714e+06 209921.72 3.498695e+03 116.555 3083.25 60 1.165550e+02 6993.30 5.730636e+06 5.527707e+06 202928.42 NULL
2016 Fire Department Computer Systems Manager 123411.29412 2.097992e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.097992e+06 2.097992e+06 0.00 NULL
2016 Fire Department Construction Project Manager 70536.00000 7.053600e+04 677.51 6.775100e+02 677.510 1.50 1 6.775100e+02 677.51 7.121351e+04 7.121351e+04 0.00 NULL
2016 Fire Department Counsel 167258.00000 1.672580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.672580e+05 1.672580e+05 0.00 NULL
2016 Fire Department Deputy Assistant Chief Of Department 205729.58333 2.468755e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 2.468755e+06 2.468755e+06 0.00 NULL
2016 Fire Department Deputy Chief 170405.89189 1.261004e+07 0.00 0.000000e+00 0.000 0.00 74 0.000000e+00 0.00 1.261004e+07 1.261004e+07 0.00 NULL
2016 Fire Department Deputy Commissioner 200283.33333 1.201700e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.201700e+06 1.201700e+06 0.00 NULL
2016 Fire Department Director 119925.00000 1.199250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.199250e+05 1.199250e+05 0.00 NULL
2016 Fire Department Electrical Engineer 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2016 Fire Department Electrician NA NA 481247.80 2.673599e+04 28242.380 6421.25 18 2.673599e+04 481247.80 NA NA NA NULL
2016 Fire Department Emergency Medical Specialist Trainee 27234.00000 2.723400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.723400e+04 2.723400e+04 0.00 NULL
2016 Fire Department Emergency Medical Specialist-Emt 39859.95923 1.134016e+08 16878812.72 5.932799e+03 3653.910 512884.26 2845 3.653910e+03 10395373.95 1.302804e+08 1.237970e+08 6483438.77 NULL
2016 Fire Department Emergency Medical Specialist-Paramedic 54979.78021 5.278059e+07 11891336.88 1.238681e+04 10723.400 270281.11 960 1.072340e+04 10294464.00 6.467193e+07 6.307505e+07 1596872.88 NULL
2016 Fire Department Employee Assistance Program Specialist 52559.50675 7.883926e+05 1605.67 1.070447e+02 0.000 41.50 15 0.000000e+00 0.00 7.899983e+05 7.883926e+05 1605.67 NULL
2016 Fire Department Engineering Technician 44289.00000 4.428900e+04 20352.18 2.035218e+04 20352.180 628.25 1 2.035218e+04 20352.18 6.464118e+04 6.464118e+04 0.00 NULL
2016 Fire Department Executive Agency Counsel 137121.92308 1.782585e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.782585e+06 1.782585e+06 0.00 NULL
2016 Fire Department Executive Program Specialist 116000.00000 1.160000e+05 0.56 5.600000e-01 0.560 0.00 1 5.600000e-01 0.56 1.160006e+05 1.160006e+05 0.00 NULL
2016 Fire Department Fire Alarm Dispatcher 48798.11579 9.271642e+06 2234093.85 1.175839e+04 11764.255 61300.89 190 1.175839e+04 2234093.85 1.150574e+07 1.150574e+07 0.00 NULL
2016 Fire Department Fire Marshal 91384.51825 1.251968e+07 4249025.18 3.101478e+04 28636.950 47988.58 137 2.863695e+04 3923262.15 1.676870e+07 1.644294e+07 325763.03 NULL
2016 Fire Department Fire Medical Officer 139988.00000 3.219724e+06 96.77 4.207391e+00 0.000 0.00 23 0.000000e+00 0.00 3.219821e+06 3.219724e+06 96.77 NULL
2016 Fire Department Fire Protection Inspector 43499.51128 5.785435e+06 927603.28 6.974461e+03 3955.190 28606.08 133 3.955190e+03 526040.27 6.713038e+06 6.311475e+06 401563.01 NULL
2016 Fire Department Firefighter 72128.09431 7.556139e+08 233889007.05 2.232617e+04 23545.945 3376186.20 10476 2.232617e+04 233889007.05 9.895029e+08 9.895029e+08 0.00 NULL
2016 Fire Department First Deputy Commissioner 216524.00000 2.165240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.165240e+05 2.165240e+05 0.00 NULL
2016 Fire Department Head Nurse 76237.50000 3.049500e+05 2423.54 6.058850e+02 794.915 44.00 4 6.058850e+02 2423.54 3.073735e+05 3.073735e+05 0.00 NULL
2016 Fire Department Health Services Manager 93770.00000 9.377000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.377000e+04 9.377000e+04 0.00 NULL
2016 Fire Department Industrial Hygienist 42830.00000 4.283000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.283000e+04 4.283000e+04 0.00 NULL
2016 Fire Department Institutional Aide 35620.44444 3.205840e+05 26899.53 2.988837e+03 0.000 1024.00 9 0.000000e+00 0.00 3.474835e+05 3.205840e+05 26899.53 NULL
2016 Fire Department Investigator 46052.53985 7.828932e+05 60548.16 3.561656e+03 1633.710 1936.48 17 1.633710e+03 27773.07 8.434413e+05 8.106662e+05 32775.09 NULL
2016 Fire Department Investigator Empl Disc 55442.00000 4.989780e+05 35490.78 3.943420e+03 1013.830 924.75 9 1.013830e+03 9124.47 5.344688e+05 5.081025e+05 26366.31 NULL
2016 Fire Department Lieutenant 97269.18119 1.551443e+08 44482730.55 2.788886e+04 27129.480 563254.50 1595 2.712948e+04 43271520.60 1.996271e+08 1.984159e+08 1211209.95 NULL
2016 Fire Department Locksmith NA NA 37424.41 1.247480e+04 17982.890 816.50 3 1.247480e+04 37424.41 NA NA NA NULL
2016 Fire Department Machinist NA NA 11477.19 5.738595e+03 5738.595 246.00 2 5.738595e+03 11477.19 NA NA NA NULL
2016 Fire Department Maintenance Worker NA NA 61261.74 3.063087e+04 30630.870 1466.25 2 3.063087e+04 61261.74 NA NA NA NULL
2016 Fire Department Management Auditor 48911.21083 1.467336e+05 738.80 2.462667e+02 337.010 30.75 3 2.462667e+02 738.80 1.474724e+05 1.474724e+05 0.00 NULL
2016 Fire Department Manager Of Radio Repair Operations 114967.00000 2.299340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.299340e+05 2.299340e+05 0.00 NULL
2016 Fire Department Marine Engineer 91931.81481 2.482159e+06 1393778.30 5.162142e+04 75900.760 16959.85 27 5.162142e+04 1393778.30 3.875937e+06 3.875937e+06 0.00 NULL
2016 Fire Department Marine Maintenance Mechanic 69056.00000 3.452800e+05 59172.22 1.183444e+04 12506.010 1363.50 5 1.183444e+04 59172.22 4.044522e+05 4.044522e+05 0.00 NULL
2016 Fire Department Medical Record Librarian 60218.00000 6.021800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.021800e+04 6.021800e+04 0.00 NULL
2016 Fire Department Metal Work Mechanic 84906.00000 8.490600e+04 6272.35 6.272350e+03 6272.350 61.25 1 6.272350e+03 6272.35 9.117835e+04 9.117835e+04 0.00 NULL
2016 Fire Department Motor Vehicle Operator 43857.74239 9.648703e+05 189487.62 8.613074e+03 5054.805 5690.90 22 5.054805e+03 111205.71 1.154358e+06 1.076076e+06 78281.91 NULL
2016 Fire Department Motor Vehicle Supervisor 53977.50000 2.159100e+05 62846.63 1.571166e+04 17677.020 1727.00 4 1.571166e+04 62846.63 2.787566e+05 2.787566e+05 0.00 NULL
2016 Fire Department Oiler NA NA 247204.57 8.240152e+04 60947.370 2163.50 3 6.094737e+04 182842.11 NA NA NA NULL
2016 Fire Department Painter NA NA 28721.96 1.436098e+04 14360.980 588.00 2 1.436098e+04 28721.96 NA NA NA NULL
2016 Fire Department Physician 65711.31924 3.285566e+05 6.72 1.344000e+00 0.000 0.00 5 0.000000e+00 0.00 3.285633e+05 3.285566e+05 6.72 NULL
2016 Fire Department Physician’s Assistant 84277.00000 8.427700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.427700e+04 8.427700e+04 0.00 NULL
2016 Fire Department Pilot 96000.55000 1.920011e+06 558129.35 2.790647e+04 33493.390 6607.31 20 2.790647e+04 558129.35 2.478140e+06 2.478140e+06 0.00 NULL
2016 Fire Department Planner: Production Cntrl & Scheduling 59900.33333 1.797010e+05 82874.93 2.762498e+04 21444.100 1752.75 3 2.144410e+04 64332.30 2.625759e+05 2.440333e+05 18542.63 NULL
2016 Fire Department Plasterer NA NA 21335.75 2.133575e+04 21335.750 302.00 1 2.133575e+04 21335.75 NA NA NA NULL
2016 Fire Department Plumber NA NA 627089.23 3.300470e+04 33705.300 4405.50 19 3.300470e+04 627089.23 NA NA NA NULL
2016 Fire Department Principal Administrative Associate 58599.12752 6.914697e+06 313243.80 2.654608e+03 149.175 8258.25 118 1.491750e+02 17602.65 7.227941e+06 6.932300e+06 295641.15 NULL
2016 Fire Department Procurement Analyst 52950.05441 1.588502e+06 84338.40 2.811280e+03 486.855 2500.50 30 4.868550e+02 14605.65 1.672840e+06 1.603107e+06 69732.75 NULL
2016 Fire Department Program Producer 67006.09333 2.010183e+05 6823.04 2.274347e+03 2729.700 123.50 3 2.274347e+03 6823.04 2.078413e+05 2.078413e+05 0.00 NULL
2016 Fire Department Project Manager Intern# 53300.00000 3.198000e+05 6747.02 1.124503e+03 420.495 202.50 6 4.204950e+02 2522.97 3.265470e+05 3.223230e+05 4224.05 NULL
2016 Fire Department Public Records Officer 47663.00000 1.429890e+05 38.17 1.272333e+01 0.000 1.75 3 0.000000e+00 0.00 1.430272e+05 1.429890e+05 38.17 NULL
2016 Fire Department Radio Repair Mechanic NA NA 622563.89 1.778754e+04 12375.080 8508.00 35 1.237508e+04 433127.80 NA NA NA NULL
2016 Fire Department Research Assistant 57656.71429 4.035970e+05 2745.39 3.921986e+02 0.000 86.00 7 0.000000e+00 0.00 4.063424e+05 4.035970e+05 2745.39 NULL
2016 Fire Department Roofer NA NA 2807.45 2.807450e+03 2807.450 51.25 1 2.807450e+03 2807.45 NA NA NA NULL
2016 Fire Department Rubber Tire Repairer NA NA 206699.02 2.066990e+04 18026.005 5182.25 10 1.802601e+04 180260.05 NA NA NA NULL
2016 Fire Department Secretary To The Deputy Commissioner 67755.66667 2.032670e+05 4068.57 1.356190e+03 114.560 93.00 3 1.145600e+02 343.68 2.073356e+05 2.036107e+05 3724.89 NULL
2016 Fire Department Secretary To The Fire Commissioner 114800.00000 1.148000e+05 37471.23 3.747123e+04 37471.230 462.00 1 3.747123e+04 37471.23 1.522712e+05 1.522712e+05 0.00 NULL
2016 Fire Department Secretary To The First Deputy Commissioner 83515.00000 8.351500e+04 3166.55 3.166550e+03 3166.550 53.25 1 3.166550e+03 3166.55 8.668155e+04 8.668155e+04 0.00 NULL
2016 Fire Department Senior Photographer 64988.46060 6.498846e+04 2668.24 2.668240e+03 2668.240 64.50 1 2.668240e+03 2668.24 6.765670e+04 6.765670e+04 0.00 NULL
2016 Fire Department Senior Stationary Engineer NA NA 238356.69 7.945223e+04 114120.970 1564.75 3 7.945223e+04 238356.69 NA NA NA NULL
2016 Fire Department Senior Supervisor Communication Electrician NA NA 24037.82 2.403782e+04 24037.820 331.50 1 2.403782e+04 24037.82 NA NA NA NULL
2016 Fire Department Sheet Metal Worker NA NA 128945.90 3.223647e+04 12906.820 1213.00 4 1.290682e+04 51627.28 NA NA NA NULL
2016 Fire Department Special Assistant To The Fire Commissioner 92000.00000 9.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.200000e+04 9.200000e+04 0.00 NULL
2016 Fire Department Spvsg Fad-Dep Dir Dsptch Dtail 102675.33333 3.080260e+05 16727.56 5.575853e+03 0.000 308.50 3 0.000000e+00 0.00 3.247536e+05 3.080260e+05 16727.56 NULL
2016 Fire Department Spvsg Fad-Dir Dsptch Op Detail 109517.50000 2.190350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.190350e+05 2.190350e+05 0.00 NULL
2016 Fire Department Staff Analyst 63415.61915 7.609874e+05 11547.82 9.623183e+02 13.920 279.25 12 1.392000e+01 167.04 7.725352e+05 7.611545e+05 11380.78 NULL
2016 Fire Department Staff Analyst Trainee 47873.44875 1.053216e+06 32547.66 1.479439e+03 0.000 896.75 22 0.000000e+00 0.00 1.085764e+06 1.053216e+06 32547.66 NULL
2016 Fire Department Stationary Engineer NA NA 98188.95 9.818895e+04 98188.950 915.00 1 9.818895e+04 98188.95 NA NA NA NULL
2016 Fire Department Statistician 58515.50000 1.170310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.170310e+05 1.170310e+05 0.00 NULL
2016 Fire Department Steam Fitter NA NA 33569.17 3.356917e+04 33569.170 217.50 1 3.356917e+04 33569.17 NA NA NA NULL
2016 Fire Department Stock Worker 31138.40000 1.556920e+05 14001.85 2.800370e+03 3226.980 747.25 5 2.800370e+03 14001.85 1.696939e+05 1.696939e+05 0.00 NULL
2016 Fire Department Summer College Intern 1551.78950 7.758948e+03 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.758948e+03 7.758948e+03 0.00 NULL
2016 Fire Department Summer Graduate Intern 4343.75000 1.303125e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.303125e+04 1.303125e+04 0.00 NULL
2016 Fire Department Supervising Blasting Inspector 69224.62500 5.537970e+05 291015.04 3.637688e+04 41643.365 5596.67 8 3.637688e+04 291015.04 8.448120e+05 8.448120e+05 0.00 NULL
2016 Fire Department Supervising Communication Electrician NA NA 430596.59 5.382457e+04 60032.930 6512.00 8 5.382457e+04 430596.59 NA NA NA NULL
2016 Fire Department Supervising Computer Service Technician 63889.00000 6.388900e+04 16151.06 1.615106e+04 16151.060 349.75 1 1.615106e+04 16151.06 8.004006e+04 8.004006e+04 0.00 NULL
2016 Fire Department Supervising Emergency Medical Service Specialist 64477.87522 3.720373e+07 9693874.79 1.680048e+04 16288.590 190507.00 577 1.628859e+04 9398516.43 4.689761e+07 4.660225e+07 295358.36 NULL
2016 Fire Department Supervising Emergency Medical Service Specialist-Dpty Chiefs 94740.51282 3.694880e+06 124530.04 3.193078e+03 0.000 2132.75 39 0.000000e+00 0.00 3.819410e+06 3.694880e+06 124530.04 NULL
2016 Fire Department Supervising Fire Alarm Dispatcher 68592.66667 2.469336e+06 606010.98 1.683364e+04 15893.615 13186.25 36 1.589361e+04 572170.14 3.075347e+06 3.041506e+06 33840.84 NULL
2016 Fire Department Supervising Fire Marshal 115289.53333 3.458686e+06 1171417.52 3.904725e+04 37598.495 12700.06 30 3.759850e+04 1127954.85 4.630104e+06 4.586641e+06 43462.67 NULL
2016 Fire Department Supervisor Carpenter NA NA 196675.14 9.833757e+04 98337.570 1698.25 2 9.833757e+04 196675.14 NA NA NA NULL
2016 Fire Department Supervisor Electrician NA NA 128380.72 6.419036e+04 64190.360 1621.50 2 6.419036e+04 128380.72 NA NA NA NULL
2016 Fire Department Supervisor Of Electrical Installations & Maintenance 74024.33333 4.441460e+05 114738.01 1.912300e+04 4758.385 1917.25 6 4.758385e+03 28550.31 5.588840e+05 4.726963e+05 86187.70 NULL
2016 Fire Department Supervisor Of Mechanics NA NA 1596099.48 4.560284e+04 48883.490 20746.75 35 4.560284e+04 1596099.48 NA NA NA NULL
2016 Fire Department Supervisor Of Stock Workers 50896.55000 1.017931e+06 298496.45 1.492482e+04 14787.510 8715.50 20 1.478751e+04 295750.20 1.316427e+06 1.313681e+06 2746.25 NULL
2016 Fire Department Supervisor Plumber NA NA 240741.41 8.024714e+04 100134.830 1386.00 3 8.024714e+04 240741.41 NA NA NA NULL
2016 Fire Department Telecommunication Manager 128433.00000 1.284330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.284330e+05 1.284330e+05 0.00 NULL
2016 Fire Department Telecommunications Associate 80961.35361 7.286522e+05 76638.40 8.515378e+03 4589.810 1439.00 9 4.589810e+03 41308.29 8.052906e+05 7.699605e+05 35330.11 NULL
2016 Fire Department Tests And Measurement Specialist 75326.66667 2.259800e+05 2738.57 9.128567e+02 151.040 74.25 3 1.510400e+02 453.12 2.287186e+05 2.264331e+05 2285.45 NULL
2016 Fire Department Welder NA NA 43936.53 2.196826e+04 21968.265 568.25 2 2.196826e+04 43936.53 NA NA NA NULL
2016 Fire Department Wiper 85455.16667 1.538193e+06 431640.32 2.398002e+04 24538.455 5762.25 18 2.398002e+04 431640.32 1.969833e+06 1.969833e+06 0.00 NULL
2016 Guttman Community College Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 NA NA NA NULL
2016 Guttman Community College Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 52 0.000000e+00 0.00 NA NA NA NULL
2016 Guttman Community College Administrator 138000.00000 1.380000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.380000e+05 1.380000e+05 0.00 NULL
2016 Guttman Community College Assistant College Security Director 81780.00000 8.178000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.178000e+04 8.178000e+04 0.00 NULL
2016 Guttman Community College Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 NA NA NA NULL
2016 Guttman Community College Assistant To Heo 51483.50000 8.237360e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 8.237360e+05 8.237360e+05 0.00 NULL
2016 Guttman Community College Assistant Vice President 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2016 Guttman Community College Associate Dean 127000.00000 2.540000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.540000e+05 2.540000e+05 0.00 NULL
2016 Guttman Community College Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 NA NA NA NULL
2016 Guttman Community College Campus Peace Officer 36602.00000 1.098060e+05 23423.76 7.807920e+03 8533.270 767.75 3 7.807920e+03 23423.76 1.332298e+05 1.332298e+05 0.00 NULL
2016 Guttman Community College Campus Public Safety Sergeant 50147.00000 1.002940e+05 35425.03 1.771251e+04 17712.515 1042.25 2 1.771251e+04 35425.03 1.357190e+05 1.357190e+05 0.00 NULL
2016 Guttman Community College Campus Security Assistant 27890.83333 1.673450e+05 33722.94 5.620490e+03 5968.425 1579.00 6 5.620490e+03 33722.94 2.010679e+05 2.010679e+05 0.00 NULL
2016 Guttman Community College Clinical Professor 81645.00000 8.164500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.164500e+04 8.164500e+04 0.00 NULL
2016 Guttman Community College College Assistant 5256.73561 7.569699e+05 0.00 0.000000e+00 0.000 0.00 144 0.000000e+00 0.00 7.569699e+05 7.569699e+05 0.00 NULL
2016 Guttman Community College College Lab Technician 50393.00000 5.039300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.039300e+04 5.039300e+04 0.00 NULL
2016 Guttman Community College College Security Specialist 56488.00000 5.648800e+04 38895.93 3.889593e+04 38895.930 929.50 1 3.889593e+04 38895.93 9.538393e+04 9.538393e+04 0.00 NULL
2016 Guttman Community College Computer Systems Manager 105000.00000 2.100000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.100000e+05 2.100000e+05 0.00 NULL
2016 Guttman Community College Continuing Education Teacher 14016.95344 1.121356e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.121356e+05 1.121356e+05 0.00 NULL
2016 Guttman Community College Cuny Office Assistant 28790.25000 1.151610e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.151610e+05 1.151610e+05 0.00 NULL
2016 Guttman Community College Dean 147500.00000 2.950000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.950000e+05 2.950000e+05 0.00 NULL
2016 Guttman Community College Disability Accommodations Specialist 14714.95000 5.885980e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.885980e+04 5.885980e+04 0.00 NULL
2016 Guttman Community College Higher Education Assistant 61770.87097 1.914897e+06 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 1.914897e+06 1.914897e+06 0.00 NULL
2016 Guttman Community College Higher Education Associate 82753.31250 1.324053e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.324053e+06 1.324053e+06 0.00 NULL
2016 Guttman Community College Higher Education Officer 111381.93750 1.782111e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.782111e+06 1.782111e+06 0.00 NULL
2016 Guttman Community College Instructor NA NA 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 NA NA NA NULL
2016 Guttman Community College It Assistant 43851.50000 1.754060e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.754060e+05 1.754060e+05 0.00 NULL
2016 Guttman Community College It Associate 91668.00000 9.166800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.166800e+04 9.166800e+04 0.00 NULL
2016 Guttman Community College It Senior Associate 79861.00000 1.597220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.597220e+05 1.597220e+05 0.00 NULL
2016 Guttman Community College It Support Assistant 32571.00000 3.257100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.257100e+04 3.257100e+04 0.00 NULL
2016 Guttman Community College Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2016 Guttman Community College Non-Teaching Adjunct I 4145.75534 1.533929e+05 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 1.533929e+05 1.533929e+05 0.00 NULL
2016 Guttman Community College Non-Teaching Adjunct Ii 13787.32000 4.136196e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.136196e+04 4.136196e+04 0.00 NULL
2016 Guttman Community College Non-Teaching Adjunct Iii 1805.21667 4.332520e+04 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 4.332520e+04 4.332520e+04 0.00 NULL
2016 Guttman Community College Non-Teaching Adjunct Iv 3048.40083 1.829040e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.829040e+04 1.829040e+04 0.00 NULL
2016 Guttman Community College Non-Teaching Adjunct V 2138.52250 8.554090e+03 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.554090e+03 8.554090e+03 0.00 NULL
2016 Guttman Community College President 210000.00000 2.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.100000e+05 2.100000e+05 0.00 NULL
2016 Guttman Community College Professor NA NA 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 NA NA NA NULL
2016 Guttman Community College Student Aide 586.72059 9.974250e+03 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 9.974250e+03 9.974250e+03 0.00 NULL
2016 Guttman Community College Vice President 186000.00000 3.720000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.720000e+05 3.720000e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Accountant 59253.38654 1.125814e+06 9034.83 4.755174e+02 0.000 181.00 19 0.000000e+00 0.00 1.134849e+06 1.125814e+06 9034.83 NULL
2016 Housing Preservation & Dvlpmnt Adm Manager-Non-Mgrl 69383.28864 3.052865e+06 23009.23 5.229370e+02 0.000 598.50 44 0.000000e+00 0.00 3.075874e+06 3.052865e+06 23009.23 NULL
2016 Housing Preservation & Dvlpmnt Admin Community Relations Specialist 103094.00000 2.061880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.061880e+05 2.061880e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Admin Housing Development Spec 98342.68421 1.868511e+06 16567.58 8.719779e+02 0.000 208.50 19 0.000000e+00 0.00 1.885079e+06 1.868511e+06 16567.58 NULL
2016 Housing Preservation & Dvlpmnt Administrative Accountant 94362.00000 9.436200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.436200e+04 9.436200e+04 0.00 NULL
2016 Housing Preservation & Dvlpmnt Administrative Architect 98376.00000 1.967520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.967520e+05 1.967520e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Administrative City Planner 101656.15385 1.321530e+06 242.86 1.868154e+01 0.000 0.00 13 0.000000e+00 0.00 1.321773e+06 1.321530e+06 242.86 NULL
2016 Housing Preservation & Dvlpmnt Administrative Engineer 109448.66667 3.283460e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.283460e+05 3.283460e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Administrative Housing Development Specialist 104680.63409 2.302974e+06 518.19 2.355409e+01 0.000 10.50 22 0.000000e+00 0.00 2.303492e+06 2.302974e+06 518.19 NULL
2016 Housing Preservation & Dvlpmnt Administrative Inspector 94748.53846 1.231731e+06 2962.36 2.278738e+02 0.000 19.00 13 0.000000e+00 0.00 1.234693e+06 1.231731e+06 2962.36 NULL
2016 Housing Preservation & Dvlpmnt Administrative Labor Relations Analyst 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Administrative Management Auditor 109315.00000 2.186300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.186300e+05 2.186300e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Administrative Manager 133546.00000 5.341840e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.341840e+05 5.341840e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Administrative Procurement Analyst 97436.50000 5.846190e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.846190e+05 5.846190e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Administrative Project Director 114383.40000 3.431502e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 3.431502e+06 3.431502e+06 0.00 NULL
2016 Housing Preservation & Dvlpmnt Administrative Project Manager 114917.11111 1.034254e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.034254e+06 1.034254e+06 0.00 NULL
2016 Housing Preservation & Dvlpmnt Administrative Public Information Specialist 98377.00000 1.967540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.967540e+05 1.967540e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Administrative Real Property Manager 87384.12500 6.990730e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.990730e+05 6.990730e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Administrative Staff Analyst 93835.96512 8.069893e+06 31603.79 3.674859e+02 0.000 471.75 86 0.000000e+00 0.00 8.101497e+06 8.069893e+06 31603.79 NULL
2016 Housing Preservation & Dvlpmnt Administrative Supervisor Of Building Maintenance 96143.00000 9.614300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.614300e+04 9.614300e+04 0.00 NULL
2016 Housing Preservation & Dvlpmnt Agency Attorney 84025.23789 4.789439e+06 566.08 9.931228e+00 0.000 19.25 57 0.000000e+00 0.00 4.790005e+06 4.789439e+06 566.08 NULL
2016 Housing Preservation & Dvlpmnt Agency Attorney Interne 55982.20000 2.799110e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.799110e+05 2.799110e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Agency Chief Contracting Officer 128125.00000 1.281250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.281250e+05 1.281250e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Appraiser 65336.66667 3.920200e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.920200e+05 3.920200e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Architect 73696.00000 1.473920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.473920e+05 1.473920e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Assistant Architect 63311.75000 1.012988e+06 4258.52 2.661575e+02 0.000 123.50 16 0.000000e+00 0.00 1.017247e+06 1.012988e+06 4258.52 NULL
2016 Housing Preservation & Dvlpmnt Assistant Commissioner 138592.62500 1.108741e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.108741e+06 1.108741e+06 0.00 NULL
2016 Housing Preservation & Dvlpmnt Assistant Electrical Engineer 63598.00000 6.359800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.359800e+04 6.359800e+04 0.00 NULL
2016 Housing Preservation & Dvlpmnt Assistant Mechanical Engineer 62642.20000 3.132110e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.132110e+05 3.132110e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Associate Housing Development Specialist 86011.76923 2.236306e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 2.236306e+06 2.236306e+06 0.00 NULL
2016 Housing Preservation & Dvlpmnt Associate Inspector 66877.98462 4.347069e+06 184992.57 2.846040e+03 1413.500 3377.00 65 1.413500e+03 91877.50 4.532062e+06 4.438946e+06 93115.07 NULL
2016 Housing Preservation & Dvlpmnt Associate Investigator 61976.50000 1.239530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.239530e+05 1.239530e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Associate Project Manager 84582.80000 8.458280e+05 38741.07 3.874107e+03 0.000 685.50 10 0.000000e+00 0.00 8.845691e+05 8.458280e+05 38741.07 NULL
2016 Housing Preservation & Dvlpmnt Associate Quality Assurance Specialist 62144.66667 1.864340e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.864340e+05 1.864340e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Associate Real Property Manager 61990.86275 3.161534e+06 37149.18 7.284153e+02 0.000 820.50 51 0.000000e+00 0.00 3.198683e+06 3.161534e+06 37149.18 NULL
2016 Housing Preservation & Dvlpmnt Associate Rehabilitation Specialist 65312.00000 1.306240e+05 3800.62 1.900310e+03 1900.310 74.00 2 1.900310e+03 3800.62 1.344246e+05 1.344246e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Associate Staff Analyst 80051.74774 3.602329e+06 17637.73 3.919496e+02 0.000 231.75 45 0.000000e+00 0.00 3.619966e+06 3.602329e+06 17637.73 NULL
2016 Housing Preservation & Dvlpmnt Attorney At Law 91387.41833 1.370811e+06 0.30 2.000000e-02 0.000 0.00 15 0.000000e+00 0.00 1.370812e+06 1.370811e+06 0.30 NULL
2016 Housing Preservation & Dvlpmnt Bookkeeper 51258.66667 4.613280e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.613280e+05 4.613280e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Certified It Administrator 90368.00000 1.807360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.807360e+05 1.807360e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Certified Wide Area Network Administrator 119067.00000 1.190670e+05 7092.56 7.092560e+03 7092.560 75.00 1 7.092560e+03 7092.56 1.261596e+05 1.261596e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt City Planner 76815.41667 4.608925e+06 29797.85 4.966308e+02 0.000 608.25 60 0.000000e+00 0.00 4.638723e+06 4.608925e+06 29797.85 NULL
2016 Housing Preservation & Dvlpmnt City Planning Technician 47219.00000 9.443800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.443800e+04 9.443800e+04 0.00 NULL
2016 Housing Preservation & Dvlpmnt City Research Scientist 81026.33333 2.430790e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.430790e+05 2.430790e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Civil Engineer 82377.00000 1.647540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.647540e+05 1.647540e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Clerical Aide 35889.00000 7.177800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.177800e+04 7.177800e+04 0.00 NULL
2016 Housing Preservation & Dvlpmnt Clerical Associate 41760.61263 7.934516e+06 101543.78 5.344409e+02 0.000 2608.73 190 0.000000e+00 0.00 8.036060e+06 7.934516e+06 101543.78 NULL
2016 Housing Preservation & Dvlpmnt Commissioner Of Housing Preservation & Development 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Community Assistant 36665.52178 1.613283e+06 8649.40 1.965773e+02 0.000 307.73 44 0.000000e+00 0.00 1.621932e+06 1.613283e+06 8649.40 NULL
2016 Housing Preservation & Dvlpmnt Community Associate 42781.71504 1.339068e+07 74178.40 2.369917e+02 0.000 2214.38 313 0.000000e+00 0.00 1.346486e+07 1.339068e+07 74178.40 NULL
2016 Housing Preservation & Dvlpmnt Community Coordinator 62096.03911 1.111519e+07 123976.70 6.926073e+02 0.000 2931.25 179 0.000000e+00 0.00 1.123917e+07 1.111519e+07 123976.70 NULL
2016 Housing Preservation & Dvlpmnt Community Service Aide 28381.68287 3.405802e+05 1638.65 1.365542e+02 0.000 71.25 12 0.000000e+00 0.00 3.422188e+05 3.405802e+05 1638.65 NULL
2016 Housing Preservation & Dvlpmnt Computer Aide-Non-Spvr 56535.00000 5.653500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.653500e+04 5.653500e+04 0.00 NULL
2016 Housing Preservation & Dvlpmnt Computer Associate 77812.38462 2.023122e+06 26138.07 1.005310e+03 0.000 570.00 26 0.000000e+00 0.00 2.049260e+06 2.023122e+06 26138.07 NULL
2016 Housing Preservation & Dvlpmnt Computer Operations Manager 113487.00000 5.674350e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.674350e+05 5.674350e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Computer Programmer Analyst 68303.00000 1.366060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.366060e+05 1.366060e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Computer Specialist 94224.57143 3.957432e+06 15600.34 3.714367e+02 0.000 198.00 42 0.000000e+00 0.00 3.973032e+06 3.957432e+06 15600.34 NULL
2016 Housing Preservation & Dvlpmnt Computer Systems Manager 123894.23077 1.610625e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.610625e+06 1.610625e+06 0.00 NULL
2016 Housing Preservation & Dvlpmnt Construction Project Manager 69303.98796 1.420732e+07 456013.62 2.224457e+03 124.180 8372.75 205 1.241800e+02 25456.90 1.466333e+07 1.423277e+07 430556.72 NULL
2016 Housing Preservation & Dvlpmnt Deputy Commissioner 195545.20000 9.777260e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.777260e+05 9.777260e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Deputy Counsel 125224.00000 2.504480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.504480e+05 2.504480e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Deputy General Counsel 149757.25000 5.990290e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.990290e+05 5.990290e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Electrician NA NA 80225.25 8.022525e+04 80225.250 1113.00 1 8.022525e+04 80225.25 NA NA NA NULL
2016 Housing Preservation & Dvlpmnt Eligibility Specialist 46125.00000 4.612500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.612500e+04 4.612500e+04 0.00 NULL
2016 Housing Preservation & Dvlpmnt Executive Agency Counsel 131717.00000 2.107472e+06 1760.23 1.100144e+02 0.000 22.25 16 0.000000e+00 0.00 2.109232e+06 2.107472e+06 1760.23 NULL
2016 Housing Preservation & Dvlpmnt Executive Assistant To The Deputy Commissioner 95000.00000 9.500000e+04 2749.48 2.749480e+03 2749.480 41.50 1 2.749480e+03 2749.48 9.774948e+04 9.774948e+04 0.00 NULL
2016 Housing Preservation & Dvlpmnt Executive Director 179375.00000 1.793750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.793750e+05 1.793750e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt General Counsel 179375.00000 1.793750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.793750e+05 1.793750e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Housing Development Specialist 70282.03883 7.239050e+06 156208.91 1.516591e+03 0.000 2811.75 103 0.000000e+00 0.00 7.395259e+06 7.239050e+06 156208.91 NULL
2016 Housing Preservation & Dvlpmnt Housing Development Specialist Trainee 40108.00000 4.010800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.010800e+04 4.010800e+04 0.00 NULL
2016 Housing Preservation & Dvlpmnt Industrial Hygienist 62927.00000 6.292700e+04 210.05 2.100500e+02 210.050 4.00 1 2.100500e+02 210.05 6.313705e+04 6.313705e+04 0.00 NULL
2016 Housing Preservation & Dvlpmnt Inspector 55378.40811 2.049001e+07 469350.35 1.268514e+03 134.240 10696.65 370 1.342400e+02 49668.80 2.095936e+07 2.053968e+07 419681.55 NULL
2016 Housing Preservation & Dvlpmnt Investigator 53109.00000 5.310900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.310900e+04 5.310900e+04 0.00 NULL
2016 Housing Preservation & Dvlpmnt Investigator Empl Disc 55492.92308 7.214080e+05 12621.12 9.708554e+02 0.000 384.50 13 0.000000e+00 0.00 7.340291e+05 7.214080e+05 12621.12 NULL
2016 Housing Preservation & Dvlpmnt Lead Abatement Worker 48741.71429 3.411920e+05 46.76 6.680000e+00 0.000 1.25 7 0.000000e+00 0.00 3.412388e+05 3.411920e+05 46.76 NULL
2016 Housing Preservation & Dvlpmnt Legislative Assistant 90794.33333 2.723830e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.723830e+05 2.723830e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Management Auditor 71299.33333 6.416940e+05 9.08 1.008889e+00 0.000 0.00 9 0.000000e+00 0.00 6.417031e+05 6.416940e+05 9.08 NULL
2016 Housing Preservation & Dvlpmnt Mechanical Engineer 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2016 Housing Preservation & Dvlpmnt Multiple Dwelling Specialist 68453.40000 3.422670e+05 727.38 1.454760e+02 73.930 9.75 5 7.393000e+01 369.65 3.429944e+05 3.426367e+05 357.73 NULL
2016 Housing Preservation & Dvlpmnt Paralegal Aide 53112.00000 5.311200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.311200e+04 5.311200e+04 0.00 NULL
2016 Housing Preservation & Dvlpmnt Principal Administrative Associate 57102.43558 9.307697e+06 95402.02 5.852885e+02 0.000 2293.08 163 0.000000e+00 0.00 9.403099e+06 9.307697e+06 95402.02 NULL
2016 Housing Preservation & Dvlpmnt Principal Appraiser 109835.00000 1.098350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.098350e+05 1.098350e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Procurement Analyst 63244.06250 1.011905e+06 8947.86 5.592413e+02 0.000 242.75 16 0.000000e+00 0.00 1.020853e+06 1.011905e+06 8947.86 NULL
2016 Housing Preservation & Dvlpmnt Project Manager 67698.00000 1.353960e+05 744.26 3.721300e+02 372.130 28.75 2 3.721300e+02 744.26 1.361403e+05 1.361403e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Quality Assurance Specialist 52103.50000 2.084140e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.084140e+05 2.084140e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Real Property Manager 54514.71875 1.744471e+06 5186.09 1.620653e+02 0.000 129.25 32 0.000000e+00 0.00 1.749657e+06 1.744471e+06 5186.09 NULL
2016 Housing Preservation & Dvlpmnt Repair Crew Chief 38377.71429 2.686440e+05 6511.12 9.301600e+02 648.510 258.25 7 6.485100e+02 4539.57 2.751551e+05 2.731836e+05 1971.55 NULL
2016 Housing Preservation & Dvlpmnt Repair Shop Manager 70729.00000 7.072900e+04 20550.90 2.055090e+04 20550.900 420.50 1 2.055090e+04 20550.90 9.127990e+04 9.127990e+04 0.00 NULL
2016 Housing Preservation & Dvlpmnt Secretary 41615.21429 1.165226e+06 6487.00 2.316786e+02 0.000 218.75 28 0.000000e+00 0.00 1.171713e+06 1.165226e+06 6487.00 NULL
2016 Housing Preservation & Dvlpmnt Secretary Of Comm 83478.00000 8.347800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.347800e+04 8.347800e+04 0.00 NULL
2016 Housing Preservation & Dvlpmnt Secretary To The Deputy Commissioner 71259.00000 7.125900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.125900e+04 7.125900e+04 0.00 NULL
2016 Housing Preservation & Dvlpmnt Senior Estimator 74074.50000 2.962980e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.962980e+05 2.962980e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Senior Intergroup Relations Officer 47847.00000 4.784700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.784700e+04 4.784700e+04 0.00 NULL
2016 Housing Preservation & Dvlpmnt Senior Repair Crew Chief 59111.33333 1.773340e+05 74826.54 2.494218e+04 24057.850 1785.00 3 2.405785e+04 72173.55 2.521605e+05 2.495075e+05 2652.99 NULL
2016 Housing Preservation & Dvlpmnt Special Assistant To The Commissioner 139307.00000 1.393070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.393070e+05 1.393070e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Staff Analyst 62824.52632 1.193666e+06 17193.98 9.049463e+02 0.000 362.50 19 0.000000e+00 0.00 1.210860e+06 1.193666e+06 17193.98 NULL
2016 Housing Preservation & Dvlpmnt Staff Analyst Trainee 46952.66667 1.408580e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.408580e+05 1.408580e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Strategic Initiative Specialist 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2016 Housing Preservation & Dvlpmnt Supervising Computer Service Technician 69220.00000 6.922000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.922000e+04 6.922000e+04 0.00 NULL
2016 Housing Preservation & Dvlpmnt Supervising Demolition Inspector 70251.66667 2.107550e+05 16107.62 5.369207e+03 6342.210 329.50 3 5.369207e+03 16107.62 2.268626e+05 2.268626e+05 0.00 NULL
2016 Housing Preservation & Dvlpmnt Supervisor Of Electrical Installations & Maintenance 76048.00000 6.083840e+05 23725.03 2.965629e+03 41.325 381.75 8 4.132500e+01 330.60 6.321090e+05 6.087146e+05 23394.43 NULL
2016 Housing Preservation & Dvlpmnt Supervisor Of Mechanical Installations & Maintenance 70771.36364 7.784850e+05 35824.51 3.256774e+03 0.000 644.00 11 0.000000e+00 0.00 8.143095e+05 7.784850e+05 35824.51 NULL
2016 Housing Preservation & Dvlpmnt Supervisor Of Stock Workers 64526.00000 6.452600e+04 5725.18 5.725180e+03 5725.180 150.00 1 5.725180e+03 5725.18 7.025118e+04 7.025118e+04 0.00 NULL
2016 Hra/Dept Of Social Services *Certified Database Administrator 104025.00000 1.040250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.040250e+05 1.040250e+05 0.00 NULL
2016 Hra/Dept Of Social Services Accountant 58451.33333 1.052124e+06 7544.63 4.191461e+02 0.000 179.50 18 0.000000e+00 0.00 1.059669e+06 1.052124e+06 7544.63 NULL
2016 Hra/Dept Of Social Services Adm Manager-Non-Mgrl 66124.14286 4.628690e+06 184242.61 2.632037e+03 31.730 4336.75 70 3.173000e+01 2221.10 4.812933e+06 4.630911e+06 182021.51 NULL
2016 Hra/Dept Of Social Services Admin Community Relations Specialist 77797.16667 4.667830e+05 15037.75 2.506292e+03 1923.925 256.00 6 1.923925e+03 11543.55 4.818208e+05 4.783265e+05 3494.20 NULL
2016 Hra/Dept Of Social Services Admin Construction Project Manager 106975.00000 1.069750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.069750e+05 1.069750e+05 0.00 NULL
2016 Hra/Dept Of Social Services Admin Contract Specialist 98707.88889 8.883710e+05 35.36 3.928889e+00 0.000 0.00 9 0.000000e+00 0.00 8.884064e+05 8.883710e+05 35.36 NULL
2016 Hra/Dept Of Social Services Admin Job Opor Spec-Managerial 116028.22222 3.132762e+06 256.77 9.510000e+00 0.000 0.00 27 0.000000e+00 0.00 3.133019e+06 3.132762e+06 256.77 NULL
2016 Hra/Dept Of Social Services Admin Job Opportunity Spec Nm 79535.50515 7.714944e+06 735339.84 7.580823e+03 5726.960 13678.25 97 5.726960e+03 555515.12 8.450284e+06 8.270459e+06 179824.72 NULL
2016 Hra/Dept Of Social Services Administrative Accountant 89467.70000 8.946770e+05 301.30 3.013000e+01 0.000 0.00 10 0.000000e+00 0.00 8.949783e+05 8.946770e+05 301.30 NULL
2016 Hra/Dept Of Social Services Administrative Architect 110096.50000 2.201930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.201930e+05 2.201930e+05 0.00 NULL
2016 Hra/Dept Of Social Services Administrative City Planner 80231.00000 8.023100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.023100e+04 8.023100e+04 0.00 NULL
2016 Hra/Dept Of Social Services Administrative Community Relations Specialist 175619.00000 1.756190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.756190e+05 1.756190e+05 0.00 NULL
2016 Hra/Dept Of Social Services Administrative Construction Project Manager 111300.00000 1.113000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.113000e+05 1.113000e+05 0.00 NULL
2016 Hra/Dept Of Social Services Administrative Director Of Social Services 91212.60591 1.450280e+07 17619.18 1.108125e+02 0.000 369.25 159 0.000000e+00 0.00 1.452042e+07 1.450280e+07 17619.18 NULL
2016 Hra/Dept Of Social Services Administrative Engineer 107503.00000 3.225090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.225090e+05 3.225090e+05 0.00 NULL
2016 Hra/Dept Of Social Services Administrative Investigator 84092.58824 2.859148e+06 9663.37 2.842168e+02 0.000 174.75 34 0.000000e+00 0.00 2.868811e+06 2.859148e+06 9663.37 NULL
2016 Hra/Dept Of Social Services Administrative Management Auditor 93795.10000 9.379510e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 9.379510e+05 9.379510e+05 0.00 NULL
2016 Hra/Dept Of Social Services Administrative Manager 103606.80000 5.180340e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.180340e+05 5.180340e+05 0.00 NULL
2016 Hra/Dept Of Social Services Administrative Printing Services Manager 97066.00000 3.882640e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.882640e+05 3.882640e+05 0.00 NULL
2016 Hra/Dept Of Social Services Administrative Procurement Analyst 89416.41176 1.520079e+06 572.96 3.370353e+01 0.000 12.50 17 0.000000e+00 0.00 1.520652e+06 1.520079e+06 572.96 NULL
2016 Hra/Dept Of Social Services Administrative Public Information Specialist 102029.57143 7.142070e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.142070e+05 7.142070e+05 0.00 NULL
2016 Hra/Dept Of Social Services Administrative Space Analyst 89278.87500 7.142310e+05 104.48 1.306000e+01 0.000 0.00 8 0.000000e+00 0.00 7.143355e+05 7.142310e+05 104.48 NULL
2016 Hra/Dept Of Social Services Administrative Staff Analyst 93839.42991 4.429221e+07 298608.04 6.326442e+02 0.000 4898.50 472 0.000000e+00 0.00 4.459082e+07 4.429221e+07 298608.04 NULL
2016 Hra/Dept Of Social Services Administrative Storekeeper 99427.66667 2.982830e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.982830e+05 2.982830e+05 0.00 NULL
2016 Hra/Dept Of Social Services Administrative Supervisor Of Building Maintenance 118454.14286 8.291790e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.291790e+05 8.291790e+05 0.00 NULL
2016 Hra/Dept Of Social Services Agency Attorney 76463.30337 6.805234e+06 59224.26 6.654411e+02 0.000 1334.00 89 0.000000e+00 0.00 6.864458e+06 6.805234e+06 59224.26 NULL
2016 Hra/Dept Of Social Services Agency Attorney Interne 60755.00000 4.860400e+05 2290.31 2.862887e+02 91.440 82.50 8 9.144000e+01 731.52 4.883303e+05 4.867715e+05 1558.79 NULL
2016 Hra/Dept Of Social Services Agency Chief Contracting Officer 175037.00000 1.750370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750370e+05 1.750370e+05 0.00 NULL
2016 Hra/Dept Of Social Services Architect 90593.00000 1.811860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.811860e+05 1.811860e+05 0.00 NULL
2016 Hra/Dept Of Social Services Assistant Administrator Of Public Affairs 157617.00000 1.576170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.576170e+05 1.576170e+05 0.00 NULL
2016 Hra/Dept Of Social Services Assistant Architect 69047.00000 6.904700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.904700e+04 6.904700e+04 0.00 NULL
2016 Hra/Dept Of Social Services Assistant Commissioner 142339.25000 5.693570e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.693570e+05 5.693570e+05 0.00 NULL
2016 Hra/Dept Of Social Services Assistant Deputy Commissioner Ss 108641.00000 2.172820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.172820e+05 2.172820e+05 0.00 NULL
2016 Hra/Dept Of Social Services Assistant Mechanical Engineer 59324.00000 5.932400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.932400e+04 5.932400e+04 0.00 NULL
2016 Hra/Dept Of Social Services Assistant Printing Press Operator 54901.00000 1.098020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.098020e+05 1.098020e+05 0.00 NULL
2016 Hra/Dept Of Social Services Assistant Superintendent Of Welfare Shelters 62674.23077 8.147650e+05 192526.18 1.480971e+04 14999.600 4074.00 13 1.480971e+04 192526.18 1.007291e+06 1.007291e+06 0.00 NULL
2016 Hra/Dept Of Social Services Associate Commissioner For Adult Services 195090.00000 1.950900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.950900e+05 1.950900e+05 0.00 NULL
2016 Hra/Dept Of Social Services Associate Commissioner For Employment Service 138375.00000 1.383750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.383750e+05 1.383750e+05 0.00 NULL
2016 Hra/Dept Of Social Services Associate Contract Specialist 62802.12500 5.024170e+05 2585.77 3.232212e+02 0.000 66.75 8 0.000000e+00 0.00 5.050028e+05 5.024170e+05 2585.77 NULL
2016 Hra/Dept Of Social Services Associate Fraud Investigator 65114.30252 1.549720e+07 104616.08 4.395634e+02 0.000 2720.50 238 0.000000e+00 0.00 1.560182e+07 1.549720e+07 104616.08 NULL
2016 Hra/Dept Of Social Services Associate Investigator 67591.00000 6.759100e+04 210.56 2.105600e+02 210.560 5.50 1 2.105600e+02 210.56 6.780156e+04 6.780156e+04 0.00 NULL
2016 Hra/Dept Of Social Services Associate Job Opportunity Specialist 58014.74765 4.942856e+07 5734654.64 6.730815e+03 4667.330 138161.50 852 4.667330e+03 3976565.16 5.516322e+07 5.340513e+07 1758089.48 NULL
2016 Hra/Dept Of Social Services Associate Labor Relations Analyst 80997.40000 4.049870e+05 37.82 7.564000e+00 0.000 0.00 5 0.000000e+00 0.00 4.050248e+05 4.049870e+05 37.82 NULL
2016 Hra/Dept Of Social Services Associate Project Manager 79894.33333 2.396830e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.396830e+05 2.396830e+05 0.00 NULL
2016 Hra/Dept Of Social Services Associate Staff Analyst 73674.86713 2.107101e+07 102600.34 3.587424e+02 0.000 1884.50 286 0.000000e+00 0.00 2.117361e+07 2.107101e+07 102600.34 NULL
2016 Hra/Dept Of Social Services Attorney At Law 81219.10000 8.121910e+05 2049.01 2.049010e+02 0.000 50.25 10 0.000000e+00 0.00 8.142400e+05 8.121910e+05 2049.01 NULL
2016 Hra/Dept Of Social Services Bookbinder 38648.00000 3.864800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.864800e+04 3.864800e+04 0.00 NULL
2016 Hra/Dept Of Social Services Bookkeeper 45463.10744 5.501036e+06 383999.02 3.173546e+03 18.500 12409.75 121 1.850000e+01 2238.50 5.885035e+06 5.503274e+06 381760.52 NULL
2016 Hra/Dept Of Social Services Carpenter NA NA 97418.58 4.428117e+03 3023.535 980.75 22 3.023535e+03 66517.77 NA NA NA NULL
2016 Hra/Dept Of Social Services Caseworker 43028.52281 6.789901e+07 1348162.69 8.543490e+02 0.000 42921.31 1578 0.000000e+00 0.00 6.924717e+07 6.789901e+07 1348162.69 NULL
2016 Hra/Dept Of Social Services Cement Mason NA NA 18779.09 4.694773e+03 4607.385 200.00 4 4.607385e+03 18429.54 NA NA NA NULL
2016 Hra/Dept Of Social Services Certified It Administrator 96697.79310 2.804236e+06 218421.40 7.531772e+03 1587.780 2970.25 29 1.587780e+03 46045.62 3.022657e+06 2.850282e+06 172375.78 NULL
2016 Hra/Dept Of Social Services Certified It Developer 98977.83333 5.938670e+05 62353.27 1.039221e+04 5528.145 824.50 6 5.528145e+03 33168.87 6.562203e+05 6.270359e+05 29184.40 NULL
2016 Hra/Dept Of Social Services Certified Local Area Network Administrator 97347.00000 5.840820e+05 86638.24 1.443971e+04 8566.145 1149.00 6 8.566145e+03 51396.87 6.707202e+05 6.354789e+05 35241.37 NULL
2016 Hra/Dept Of Social Services Chief Of Staff 185275.00000 1.852750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.852750e+05 1.852750e+05 0.00 NULL
2016 Hra/Dept Of Social Services City Laborer NA NA 59804.61 3.737788e+03 3519.550 1112.50 16 3.519550e+03 56312.80 NA NA NA NULL
2016 Hra/Dept Of Social Services City Planner 78870.00000 7.887000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.887000e+04 7.887000e+04 0.00 NULL
2016 Hra/Dept Of Social Services City Research Scientist 80086.20455 3.523793e+06 13751.73 3.125393e+02 0.000 375.00 44 0.000000e+00 0.00 3.537545e+06 3.523793e+06 13751.73 NULL
2016 Hra/Dept Of Social Services Civil Engineer 89393.00000 8.939300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.939300e+04 8.939300e+04 0.00 NULL
2016 Hra/Dept Of Social Services Clerical Aide 30927.83333 1.855670e+05 2291.91 3.819850e+02 0.000 108.25 6 0.000000e+00 0.00 1.878589e+05 1.855670e+05 2291.91 NULL
2016 Hra/Dept Of Social Services Clerical Associate 36431.15038 4.287946e+07 1217889.62 1.034741e+03 0.000 46288.85 1177 0.000000e+00 0.00 4.409735e+07 4.287946e+07 1217889.62 NULL
2016 Hra/Dept Of Social Services Community Assistant 31137.68380 3.580834e+06 155897.17 1.355628e+03 384.220 6621.00 115 3.842200e+02 44185.30 3.736731e+06 3.625019e+06 111711.87 NULL
2016 Hra/Dept Of Social Services Community Associate 38159.56446 1.186762e+07 548297.47 1.763014e+03 839.470 18939.63 311 8.394700e+02 261075.17 1.241592e+07 1.212870e+07 287222.30 NULL
2016 Hra/Dept Of Social Services Community Coordinator 59133.70358 9.638794e+06 370312.99 2.271859e+03 0.000 9131.25 163 0.000000e+00 0.00 1.000911e+07 9.638794e+06 370312.99 NULL
2016 Hra/Dept Of Social Services Computer Aide-Non-Spvr 44983.41667 5.398010e+05 366.74 3.056167e+01 0.000 14.50 12 0.000000e+00 0.00 5.401677e+05 5.398010e+05 366.74 NULL
2016 Hra/Dept Of Social Services Computer Associate 67854.15169 1.404581e+07 289095.25 1.396595e+03 0.000 6158.75 207 0.000000e+00 0.00 1.433490e+07 1.404581e+07 289095.25 NULL
2016 Hra/Dept Of Social Services Computer Operations Manager 99383.92000 6.956874e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.956874e+05 6.956874e+05 0.00 NULL
2016 Hra/Dept Of Social Services Computer Programmer Analyst 57865.00000 5.786500e+05 6939.90 6.939900e+02 0.000 202.75 10 0.000000e+00 0.00 5.855899e+05 5.786500e+05 6939.90 NULL
2016 Hra/Dept Of Social Services Computer Programmer Analyst Trainee 42637.00000 8.527400e+04 3456.89 1.728445e+03 1728.445 125.25 2 1.728445e+03 3456.89 8.873089e+04 8.873089e+04 0.00 NULL
2016 Hra/Dept Of Social Services Computer Service Technician 43122.00923 5.605861e+05 16941.87 1.303221e+03 0.000 642.00 13 0.000000e+00 0.00 5.775280e+05 5.605861e+05 16941.87 NULL
2016 Hra/Dept Of Social Services Computer Specialist 92295.57107 3.636446e+07 1485505.41 3.770318e+03 0.000 22492.25 394 0.000000e+00 0.00 3.784996e+07 3.636446e+07 1485505.41 NULL
2016 Hra/Dept Of Social Services Computer Systems Manager 113573.13043 1.044873e+07 4573.99 4.971728e+01 0.000 65.00 92 0.000000e+00 0.00 1.045330e+07 1.044873e+07 4573.99 NULL
2016 Hra/Dept Of Social Services Confidential Strategy Planner 88056.00000 1.761120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.761120e+05 1.761120e+05 0.00 NULL
2016 Hra/Dept Of Social Services Construction Project Manager 69743.20000 3.487160e+05 170.29 3.405800e+01 0.000 4.00 5 0.000000e+00 0.00 3.488863e+05 3.487160e+05 170.29 NULL
2016 Hra/Dept Of Social Services Consultant 69143.00000 6.914300e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 6.914300e+05 6.914300e+05 0.00 NULL
2016 Hra/Dept Of Social Services Contract Specialist 51876.62500 4.150130e+05 6808.07 8.510087e+02 0.000 185.00 8 0.000000e+00 0.00 4.218211e+05 4.150130e+05 6808.07 NULL
2016 Hra/Dept Of Social Services Custodial Assistant 34474.50000 3.447450e+05 1206.52 1.206520e+02 0.000 33.00 10 0.000000e+00 0.00 3.459515e+05 3.447450e+05 1206.52 NULL
2016 Hra/Dept Of Social Services Custodian 39145.23404 3.679652e+06 577593.24 6.144609e+03 6470.210 20763.75 94 6.144609e+03 577593.24 4.257245e+06 4.257245e+06 0.00 NULL
2016 Hra/Dept Of Social Services Deputy Asst Admin For Personnel Adm & Labor Rel 171175.00000 1.711750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.711750e+05 1.711750e+05 0.00 NULL
2016 Hra/Dept Of Social Services Deputy Commissioner 165814.00000 1.658140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.658140e+05 1.658140e+05 0.00 NULL
2016 Hra/Dept Of Social Services Deputy Director Of Administration 140196.50000 1.962751e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.962751e+06 1.962751e+06 0.00 NULL
2016 Hra/Dept Of Social Services Deputy Director Of Labor Relations 104323.50000 2.086470e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.086470e+05 2.086470e+05 0.00 NULL
2016 Hra/Dept Of Social Services Deputy Director Of Security 82228.33333 2.466850e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.466850e+05 2.466850e+05 0.00 NULL
2016 Hra/Dept Of Social Services Dir Of Home Care Services/Family And Adult Services 142951.00000 1.429510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.429510e+05 1.429510e+05 0.00 NULL
2016 Hra/Dept Of Social Services Dir Of Mgnt System, Planning, Research And Eval 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2016 Hra/Dept Of Social Services Director Of Admin 188654.00000 3.773080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.773080e+05 3.773080e+05 0.00 NULL
2016 Hra/Dept Of Social Services Director Of Community Participation Programs 81711.00000 8.171100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.171100e+04 8.171100e+04 0.00 NULL
2016 Hra/Dept Of Social Services Director Of Compliance & Legislative Development 107625.00000 1.076250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.076250e+05 1.076250e+05 0.00 NULL
2016 Hra/Dept Of Social Services Director Of Eeo/Contract Compliance 126047.00000 1.260470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.260470e+05 1.260470e+05 0.00 NULL
2016 Hra/Dept Of Social Services Director Of Fiscal Operations 130608.00000 1.306080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.306080e+05 1.306080e+05 0.00 NULL
2016 Hra/Dept Of Social Services Director Of Food Stamp Program 152280.00000 1.522800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.522800e+05 1.522800e+05 0.00 NULL
2016 Hra/Dept Of Social Services Director Of Information Services 193793.50000 3.875870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.875870e+05 3.875870e+05 0.00 NULL
2016 Hra/Dept Of Social Services Director Of Labor Relations 149607.00000 1.496070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.496070e+05 1.496070e+05 0.00 NULL
2016 Hra/Dept Of Social Services Director Of Management Planning Ss 138179.00000 1.381790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.381790e+05 1.381790e+05 0.00 NULL
2016 Hra/Dept Of Social Services Director Of Policy Analysis 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2016 Hra/Dept Of Social Services Director Of Security 91382.00000 9.138200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.138200e+04 9.138200e+04 0.00 NULL
2016 Hra/Dept Of Social Services Electrical Engineer 83970.00000 8.397000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.397000e+04 8.397000e+04 0.00 NULL
2016 Hra/Dept Of Social Services Electrician NA NA 16574.25 1.506750e+03 404.250 231.50 11 4.042500e+02 4446.75 NA NA NA NULL
2016 Hra/Dept Of Social Services Electrician’s Helper NA NA 6554.34 1.092390e+03 1189.580 150.50 6 1.092390e+03 6554.34 NA NA NA NULL
2016 Hra/Dept Of Social Services Eligibility Specialist 38734.95106 1.038097e+08 3535691.54 1.319288e+03 0.000 131358.48 2680 0.000000e+00 0.00 1.073454e+08 1.038097e+08 3535691.54 NULL
2016 Hra/Dept Of Social Services Exec Asst To The Deputy Commissioner 83233.33333 2.497000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.497000e+05 2.497000e+05 0.00 NULL
2016 Hra/Dept Of Social Services Executive Agency Counsel 123740.82353 4.207188e+06 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 4.207188e+06 4.207188e+06 0.00 NULL
2016 Hra/Dept Of Social Services Executive Asst-Domestic Violence-Hra 58123.80000 2.906190e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.906190e+05 2.906190e+05 0.00 NULL
2016 Hra/Dept Of Social Services Executive Deputy Administrator 157169.00000 1.571690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.571690e+05 1.571690e+05 0.00 NULL
2016 Hra/Dept Of Social Services Executive Program Specialist 142826.50000 2.856530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.856530e+05 2.856530e+05 0.00 NULL
2016 Hra/Dept Of Social Services Fraud Investigator 49360.10759 3.119559e+07 186651.07 2.953340e+02 0.000 5249.00 632 0.000000e+00 0.00 3.138224e+07 3.119559e+07 186651.07 NULL
2016 Hra/Dept Of Social Services Gardener 62814.00000 6.281400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.281400e+04 6.281400e+04 0.00 NULL
2016 Hra/Dept Of Social Services General Counsel 195086.00000 1.950860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.950860e+05 1.950860e+05 0.00 NULL
2016 Hra/Dept Of Social Services Graphic Artist 56175.75000 4.494060e+05 34.12 4.265000e+00 0.000 0.00 8 0.000000e+00 0.00 4.494401e+05 4.494060e+05 34.12 NULL
2016 Hra/Dept Of Social Services Head Nurse 74138.50000 1.334493e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.334493e+06 1.334493e+06 0.00 NULL
2016 Hra/Dept Of Social Services High Pressure Plant Tender NA NA 482.92 4.829200e+02 482.920 0.00 1 4.829200e+02 482.92 NA NA NA NULL
2016 Hra/Dept Of Social Services Homemaker 33855.00000 3.385500e+04 4356.86 4.356860e+03 4356.860 207.00 1 4.356860e+03 4356.86 3.821186e+04 3.821186e+04 0.00 NULL
2016 Hra/Dept Of Social Services Human Resources Administrator 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Hra/Dept Of Social Services Human Resources Technician 33269.50000 6.653900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.653900e+04 6.653900e+04 0.00 NULL
2016 Hra/Dept Of Social Services Institutional Aide 36131.33333 1.083940e+05 18214.93 6.071643e+03 7213.750 724.75 3 6.071643e+03 18214.93 1.266089e+05 1.266089e+05 0.00 NULL
2016 Hra/Dept Of Social Services Investigator 59740.57143 4.181840e+05 11387.40 1.626771e+03 198.000 392.75 7 1.980000e+02 1386.00 4.295714e+05 4.195700e+05 10001.40 NULL
2016 Hra/Dept Of Social Services Job Opportunity Specialist 42784.28554 7.192038e+07 5900211.23 3.509941e+03 684.120 192044.68 1681 6.841200e+02 1150005.72 7.782060e+07 7.307039e+07 4750205.51 NULL
2016 Hra/Dept Of Social Services Locksmith NA NA 3359.86 1.679930e+03 1679.930 68.75 2 1.679930e+03 3359.86 NA NA NA NULL
2016 Hra/Dept Of Social Services Maintenance Worker NA NA 36.78 9.195000e+00 4.775 0.00 4 4.775000e+00 19.10 NA NA NA NULL
2016 Hra/Dept Of Social Services Management Auditor 63701.90909 2.102163e+06 1947.83 5.902515e+01 0.000 33.25 33 0.000000e+00 0.00 2.104111e+06 2.102163e+06 1947.83 NULL
2016 Hra/Dept Of Social Services Management Auditor Trainee 44970.33333 2.698220e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.698220e+05 2.698220e+05 0.00 NULL
2016 Hra/Dept Of Social Services Mechanical Engineer 91153.66667 2.734610e+05 1876.98 6.256600e+02 0.000 28.00 3 0.000000e+00 0.00 2.753380e+05 2.734610e+05 1876.98 NULL
2016 Hra/Dept Of Social Services Medical Specialist 76605.20000 2.298156e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.298156e+05 2.298156e+05 0.00 NULL
2016 Hra/Dept Of Social Services Motor Vehicle Operator 40188.90000 4.018890e+05 29876.65 2.987665e+03 1346.945 1051.00 10 1.346945e+03 13469.45 4.317657e+05 4.153585e+05 16407.20 NULL
2016 Hra/Dept Of Social Services Motor Vehicle Supervisor 54788.60000 2.739430e+05 50135.22 1.002704e+04 8938.540 1218.75 5 8.938540e+03 44692.70 3.240782e+05 3.186357e+05 5442.52 NULL
2016 Hra/Dept Of Social Services Office Machine Aide 33562.80952 7.048190e+05 12969.02 6.175724e+02 0.000 549.50 21 0.000000e+00 0.00 7.177880e+05 7.048190e+05 12969.02 NULL
2016 Hra/Dept Of Social Services Oiler NA NA 32002.58 4.000323e+03 1467.555 252.00 8 1.467555e+03 11740.44 NA NA NA NULL
2016 Hra/Dept Of Social Services Painter NA NA 176.03 1.760300e+02 176.030 0.00 1 1.760300e+02 176.03 NA NA NA NULL
2016 Hra/Dept Of Social Services Paralegal Aide 42787.31579 8.129590e+05 26596.99 1.399842e+03 0.000 748.00 19 0.000000e+00 0.00 8.395560e+05 8.129590e+05 26596.99 NULL
2016 Hra/Dept Of Social Services Plumber NA NA 104528.70 6.533044e+03 2174.130 436.50 16 2.174130e+03 34786.08 NA NA NA NULL
2016 Hra/Dept Of Social Services Plumber’s Helper NA NA 342.39 3.423900e+02 342.390 0.00 1 3.423900e+02 342.39 NA NA NA NULL
2016 Hra/Dept Of Social Services Principal Administrative Associate 53406.81837 7.674560e+07 3520020.61 2.449562e+03 0.000 96027.62 1437 0.000000e+00 0.00 8.026562e+07 7.674560e+07 3520020.61 NULL
2016 Hra/Dept Of Social Services Printing Press Operator NA NA 50.47 2.523500e+01 25.235 0.00 2 2.523500e+01 50.47 NA NA NA NULL
2016 Hra/Dept Of Social Services Procurement Analyst 51515.97674 2.215187e+06 2860.98 6.653442e+01 0.000 115.25 43 0.000000e+00 0.00 2.218048e+06 2.215187e+06 2860.98 NULL
2016 Hra/Dept Of Social Services Psychiatrist 133470.50000 1.868587e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.868587e+06 1.868587e+06 0.00 NULL
2016 Hra/Dept Of Social Services Real Property Manager 60814.00000 6.081400e+04 657.60 6.576000e+02 657.600 7.00 1 6.576000e+02 657.60 6.147160e+04 6.147160e+04 0.00 NULL
2016 Hra/Dept Of Social Services Research Assistant 51913.00000 3.114780e+05 272.32 4.538667e+01 0.000 7.50 6 0.000000e+00 0.00 3.117503e+05 3.114780e+05 272.32 NULL
2016 Hra/Dept Of Social Services Safety Specialist 46841.00000 4.684100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.684100e+04 4.684100e+04 0.00 NULL
2016 Hra/Dept Of Social Services Secretary 38584.02941 1.311857e+06 73969.55 2.175575e+03 0.000 2743.50 34 0.000000e+00 0.00 1.385827e+06 1.311857e+06 73969.55 NULL
2016 Hra/Dept Of Social Services Secretary To The Commissioner 87187.00000 8.718700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.718700e+04 8.718700e+04 0.00 NULL
2016 Hra/Dept Of Social Services Senior Consultant 75100.00000 1.276700e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.276700e+06 1.276700e+06 0.00 NULL
2016 Hra/Dept Of Social Services Senior Stationary Engineer NA NA 91976.57 2.299414e+04 28518.185 684.00 4 2.299414e+04 91976.57 NA NA NA NULL
2016 Hra/Dept Of Social Services Sheet Metal Worker NA NA 8232.82 2.058205e+03 2051.730 75.00 4 2.051730e+03 8206.92 NA NA NA NULL
2016 Hra/Dept Of Social Services Social Worker 53667.46552 3.112713e+06 90212.46 1.555387e+03 0.000 2470.75 58 0.000000e+00 0.00 3.202925e+06 3.112713e+06 90212.46 NULL
2016 Hra/Dept Of Social Services Space Analyst 67971.00000 1.495362e+06 32191.77 1.463262e+03 63.400 700.00 22 6.340000e+01 1394.80 1.527554e+06 1.496757e+06 30796.97 NULL
2016 Hra/Dept Of Social Services Special Assistant To The Human Resources Administrator 96471.00000 9.647100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.647100e+04 9.647100e+04 0.00 NULL
2016 Hra/Dept Of Social Services Special Officer 41316.56250 3.966390e+06 163197.31 1.699972e+03 704.235 4964.92 96 7.042350e+02 67606.56 4.129587e+06 4.033997e+06 95590.75 NULL
2016 Hra/Dept Of Social Services Staff Analyst 62747.20442 1.135724e+07 241437.35 1.333908e+03 1.010 5304.50 181 1.010000e+00 182.81 1.159868e+07 1.135743e+07 241254.54 NULL
2016 Hra/Dept Of Social Services Staff Analyst Trainee 40136.00000 8.027200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.027200e+04 8.027200e+04 0.00 NULL
2016 Hra/Dept Of Social Services Staff Nurse 69363.08824 2.358345e+06 3730.33 1.097156e+02 0.000 95.25 34 0.000000e+00 0.00 2.362075e+06 2.358345e+06 3730.33 NULL
2016 Hra/Dept Of Social Services Stationary Engineer NA NA 49863.35 8.310558e+03 4830.155 347.00 6 4.830155e+03 28980.93 NA NA NA NULL
2016 Hra/Dept Of Social Services Steam Fitter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2016 Hra/Dept Of Social Services Stock Worker 36530.14286 2.557110e+05 10651.31 1.521616e+03 0.000 406.75 7 0.000000e+00 0.00 2.663623e+05 2.557110e+05 10651.31 NULL
2016 Hra/Dept Of Social Services Superintendent Of Adult Institutions 82701.00000 8.270100e+04 19565.39 1.956539e+04 19565.390 321.75 1 1.956539e+04 19565.39 1.022664e+05 1.022664e+05 0.00 NULL
2016 Hra/Dept Of Social Services Supervising Bookbinder 57657.00000 5.765700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.765700e+04 5.765700e+04 0.00 NULL
2016 Hra/Dept Of Social Services Supervising Computer Service Technician 64935.54000 6.493554e+05 9296.67 9.296670e+02 0.000 153.75 10 0.000000e+00 0.00 6.586521e+05 6.493554e+05 9296.67 NULL
2016 Hra/Dept Of Social Services Supervising Special Officer 52459.21818 2.885257e+06 157651.30 2.866387e+03 465.560 3972.75 55 4.655600e+02 25605.80 3.042908e+06 2.910863e+06 132045.50 NULL
2016 Hra/Dept Of Social Services Supervisor Carpenter NA NA 38837.45 5.548207e+03 1267.140 326.50 7 1.267140e+03 8869.98 NA NA NA NULL
2016 Hra/Dept Of Social Services Supervisor Electrician NA NA 19207.68 9.603840e+03 9603.840 263.25 2 9.603840e+03 19207.68 NA NA NA NULL
2016 Hra/Dept Of Social Services Supervisor I 53468.53226 2.320534e+07 358751.25 8.266158e+02 0.000 9560.00 434 0.000000e+00 0.00 2.356409e+07 2.320534e+07 358751.25 NULL
2016 Hra/Dept Of Social Services Supervisor I Social Work 59186.15152 1.953143e+06 41087.56 1.245078e+03 0.000 972.00 33 0.000000e+00 0.00 1.994231e+06 1.953143e+06 41087.56 NULL
2016 Hra/Dept Of Social Services Supervisor Ii 62713.55952 1.053588e+07 273068.41 1.625407e+03 0.000 5955.75 168 0.000000e+00 0.00 1.080895e+07 1.053588e+07 273068.41 NULL
2016 Hra/Dept Of Social Services Supervisor Ii Social Work 70171.57143 4.912010e+05 23288.36 3.326909e+03 0.000 401.50 7 0.000000e+00 0.00 5.144894e+05 4.912010e+05 23288.36 NULL
2016 Hra/Dept Of Social Services Supervisor Iii 69395.40000 3.816747e+06 83613.39 1.520243e+03 0.000 1653.00 55 0.000000e+00 0.00 3.900360e+06 3.816747e+06 83613.39 NULL
2016 Hra/Dept Of Social Services Supervisor Iii Social Work 76587.77778 6.892900e+05 18944.51 2.104946e+03 0.000 308.50 9 0.000000e+00 0.00 7.082345e+05 6.892900e+05 18944.51 NULL
2016 Hra/Dept Of Social Services Supervisor Of Electrical Installations & Maintenance 70496.00000 1.409920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.409920e+05 1.409920e+05 0.00 NULL
2016 Hra/Dept Of Social Services Supervisor Of Motor Transport 69918.00000 6.991800e+04 3863.90 3.863900e+03 3863.900 86.00 1 3.863900e+03 3863.90 7.378190e+04 7.378190e+04 0.00 NULL
2016 Hra/Dept Of Social Services Supervisor Of Nurses 87936.75000 7.034940e+05 554.04 6.925500e+01 0.000 10.00 8 0.000000e+00 0.00 7.040480e+05 7.034940e+05 554.04 NULL
2016 Hra/Dept Of Social Services Supervisor Of Office Machine Operations 42518.95000 8.503790e+05 101982.01 5.099100e+03 296.515 3275.75 20 2.965150e+02 5930.30 9.523610e+05 8.563093e+05 96051.71 NULL
2016 Hra/Dept Of Social Services Supervisor Of Stock Workers 49767.00000 2.986020e+05 1081.56 1.802600e+02 0.000 39.50 6 0.000000e+00 0.00 2.996836e+05 2.986020e+05 1081.56 NULL
2016 Hra/Dept Of Social Services Supervisor Plumber NA NA 114757.36 2.868934e+04 23209.990 660.50 4 2.320999e+04 92839.96 NA NA NA NULL
2016 Hra/Dept Of Social Services Telecommunications Associate 70411.50000 2.816460e+05 4741.45 1.185362e+03 0.000 115.50 4 0.000000e+00 0.00 2.863875e+05 2.816460e+05 4741.45 NULL
2016 Hra/Dept Of Social Services Title Examiner 41556.00000 4.155600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.155600e+04 4.155600e+04 0.00 NULL
2016 Human Rights Commission Adm Manager-Non-Mgrl 79000.00000 7.900000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.900000e+04 7.900000e+04 0.00 NULL
2016 Human Rights Commission Administrative Public Information Specialist 100970.00000 3.029100e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.029100e+05 3.029100e+05 0.00 NULL
2016 Human Rights Commission Administrative Staff Analyst 95572.50000 1.911450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.911450e+05 1.911450e+05 0.00 NULL
2016 Human Rights Commission Agency Attorney 67909.05556 1.222363e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.222363e+06 1.222363e+06 0.00 NULL
2016 Human Rights Commission Agency Attorney Interne 61704.50000 2.468180e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.468180e+05 2.468180e+05 0.00 NULL
2016 Human Rights Commission Associate Human Rights Specialist 64669.76471 1.099386e+06 1071.77 6.304529e+01 0.000 6.00 17 0.000000e+00 0.00 1.100458e+06 1.099386e+06 1071.77 NULL
2016 Human Rights Commission Associate Staff Analyst 82581.00000 8.258100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.258100e+04 8.258100e+04 0.00 NULL
2016 Human Rights Commission Attorney At Law 81477.00000 1.629540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.629540e+05 1.629540e+05 0.00 NULL
2016 Human Rights Commission Chairman Commission On Human Rights 205868.00000 2.058680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.058680e+05 2.058680e+05 0.00 NULL
2016 Human Rights Commission Clerical Associate 52275.00000 5.227500e+04 5902.45 5.902450e+03 5902.450 216.75 1 5.902450e+03 5902.45 5.817745e+04 5.817745e+04 0.00 NULL
2016 Human Rights Commission College Aide 8110.00000 8.110000e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.110000e+03 8.110000e+03 0.00 NULL
2016 Human Rights Commission Community Associate 42853.50000 1.714140e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.714140e+05 1.714140e+05 0.00 NULL
2016 Human Rights Commission Community Coordinator 66872.50000 1.337450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.337450e+05 1.337450e+05 0.00 NULL
2016 Human Rights Commission Computer Associate 53249.00000 5.324900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.324900e+04 5.324900e+04 0.00 NULL
2016 Human Rights Commission Computer Operations Manager 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2016 Human Rights Commission Computer Specialist 108119.00000 1.081190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081190e+05 1.081190e+05 0.00 NULL
2016 Human Rights Commission Counsel 179375.00000 1.793750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.793750e+05 1.793750e+05 0.00 NULL
2016 Human Rights Commission Dep Commissioner For Community Relations 153750.00000 3.075000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.075000e+05 3.075000e+05 0.00 NULL
2016 Human Rights Commission Deputy Commissioner For Law Enforcement 190565.00000 1.905650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.905650e+05 1.905650e+05 0.00 NULL
2016 Human Rights Commission Executive Agency Counsel 103107.14286 7.217500e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.217500e+05 7.217500e+05 0.00 NULL
2016 Human Rights Commission Executive Director 87187.40000 4.359370e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.359370e+05 4.359370e+05 0.00 NULL
2016 Human Rights Commission Graphic Artist 56375.00000 5.637500e+04 49.52 4.952000e+01 49.520 0.00 1 4.952000e+01 49.52 5.642452e+04 5.642452e+04 0.00 NULL
2016 Human Rights Commission Hearing Director 107625.00000 1.076250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.076250e+05 1.076250e+05 0.00 NULL
2016 Human Rights Commission Human Rights Specialist 51814.61538 6.735900e+05 2238.55 1.721962e+02 0.000 0.00 13 0.000000e+00 0.00 6.758286e+05 6.735900e+05 2238.55 NULL
2016 Human Rights Commission Principal Administrative Associate 54683.25000 2.187330e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.187330e+05 2.187330e+05 0.00 NULL
2016 Human Rights Commission Prinicipal Human Rights Specialist 72191.50000 4.331490e+05 214.80 3.580000e+01 0.000 0.00 6 0.000000e+00 0.00 4.333638e+05 4.331490e+05 214.80 NULL
2016 Human Rights Commission Secretary 42645.00000 1.279350e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.279350e+05 1.279350e+05 0.00 NULL
2016 Human Rights Commission Supervising Human Rights Specialist 66609.50000 1.332190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.332190e+05 1.332190e+05 0.00 NULL
2016 Hunter College High School Administrator 181210.00000 1.812100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.812100e+05 1.812100e+05 0.00 NULL
2016 Hunter College High School Assistant Principal 104998.00000 1.154978e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.154978e+06 1.154978e+06 0.00 NULL
2016 Hunter College High School Assistant Teacher 21615.76190 4.539310e+05 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 4.539310e+05 4.539310e+05 0.00 NULL
2016 Hunter College High School Assistant To Heo 56754.00000 1.135080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.135080e+05 1.135080e+05 0.00 NULL
2016 Hunter College High School Coach NA NA 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 NA NA NA NULL
2016 Hunter College High School College Accountant 42147.00000 4.214700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.214700e+04 4.214700e+04 0.00 NULL
2016 Hunter College High School College Assistant 8236.95343 2.223977e+05 223.50 8.277778e+00 0.000 11.00 27 0.000000e+00 0.00 2.226212e+05 2.223977e+05 223.50 NULL
2016 Hunter College High School Computer Systems Manager 88814.00000 8.881400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.881400e+04 8.881400e+04 0.00 NULL
2016 Hunter College High School Cuny Administrator Assistant 44563.66667 2.673820e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.673820e+05 2.673820e+05 0.00 NULL
2016 Hunter College High School Cuny Office Assistant 34765.71429 2.433600e+05 940.29 1.343271e+02 0.000 38.00 7 0.000000e+00 0.00 2.443003e+05 2.433600e+05 940.29 NULL
2016 Hunter College High School Custodial Assistant 29962.00000 8.988600e+04 8867.17 2.955723e+03 3708.970 425.00 3 2.955723e+03 8867.17 9.875317e+04 9.875317e+04 0.00 NULL
2016 Hunter College High School Education & Vocat Counselor 73864.14286 5.170490e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.170490e+05 5.170490e+05 0.00 NULL
2016 Hunter College High School Hccs Sr College Lab Tech 52537.50000 1.050750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.050750e+05 1.050750e+05 0.00 NULL
2016 Hunter College High School High School Elem Counselor 80045.00000 8.004500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.004500e+04 8.004500e+04 0.00 NULL
2016 Hunter College High School Higher Education Assistant 71774.00000 1.435480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.435480e+05 1.435480e+05 0.00 NULL
2016 Hunter College High School Higher Education Officer 106955.33333 3.208660e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.208660e+05 3.208660e+05 0.00 NULL
2016 Hunter College High School It Associate 60417.00000 6.041700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.041700e+04 6.041700e+04 0.00 NULL
2016 Hunter College High School It Senior Associate 76389.00000 1.527780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.527780e+05 1.527780e+05 0.00 NULL
2016 Hunter College High School It Support Assistant 48386.22667 1.451587e+05 37.80 1.260000e+01 0.000 1.25 3 0.000000e+00 0.00 1.451965e+05 1.451587e+05 37.80 NULL
2016 Hunter College High School Oiler 96549.00000 9.654900e+04 12103.32 1.210332e+04 12103.320 174.50 1 1.210332e+04 12103.32 1.086523e+05 1.086523e+05 0.00 NULL
2016 Hunter College High School Principal 140074.00000 1.400740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400740e+05 1.400740e+05 0.00 NULL
2016 Hunter College High School Substitute Principal 97735.00000 9.773500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.773500e+04 9.773500e+04 0.00 NULL
2016 Hunter College High School Substitute Teacher 26894.94424 2.474335e+06 0.00 0.000000e+00 0.000 0.00 92 0.000000e+00 0.00 2.474335e+06 2.474335e+06 0.00 NULL
2016 Hunter College High School Teacher NA NA 0.00 0.000000e+00 0.000 0.00 93 0.000000e+00 0.00 NA NA NA NULL
2016 Hunter College High School Teacher Of Library 68901.00000 6.890100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.890100e+04 6.890100e+04 0.00 NULL
2016 Independent Budget Office Adm Manager-Non-Mgrl 69010.00000 6.901000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.901000e+04 6.901000e+04 0.00 NULL
2016 Independent Budget Office Administrative Staff Analyst 112254.66667 3.367640e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.367640e+05 3.367640e+05 0.00 NULL
2016 Independent Budget Office Agency Chief Contracting Officer 100759.00000 1.007590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.007590e+05 1.007590e+05 0.00 NULL
2016 Independent Budget Office Assistant Budget Analyst 41924.16750 1.676967e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.676967e+05 1.676967e+05 0.00 NULL
2016 Independent Budget Office Budget Analyst 96147.00000 2.788263e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 2.788263e+06 2.788263e+06 0.00 NULL
2016 Independent Budget Office Director Of Independent Budget Office 197723.00000 1.977230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.977230e+05 1.977230e+05 0.00 NULL
2016 Independent Budget Office Executive Agency Counsel 61880.11500 6.188011e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.188011e+04 6.188011e+04 0.00 NULL
2016 Independent Budget Office Principal Administrative Associate 78375.00000 7.837500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.837500e+04 7.837500e+04 0.00 NULL
2016 Landmarks Preservation Comm Administrative Landmarks Preservationist 92362.65556 8.312639e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.312639e+05 8.312639e+05 0.00 NULL
2016 Landmarks Preservation Comm Administrative Staff Analyst 81055.00000 2.431650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.431650e+05 2.431650e+05 0.00 NULL
2016 Landmarks Preservation Comm Associate Landmarks Preservationist 76165.00000 7.616500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.616500e+04 7.616500e+04 0.00 NULL
2016 Landmarks Preservation Comm Associate Staff Analyst 88077.00000 8.807700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.807700e+04 8.807700e+04 0.00 NULL
2016 Landmarks Preservation Comm Attorney At Law 82552.00000 8.255200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.255200e+04 8.255200e+04 0.00 NULL
2016 Landmarks Preservation Comm Chair-Landmarks Preservation Commission 205868.00000 2.058680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.058680e+05 2.058680e+05 0.00 NULL
2016 Landmarks Preservation Comm Chauffeur-Attendant 36117.00000 3.611700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.611700e+04 3.611700e+04 0.00 NULL
2016 Landmarks Preservation Comm Clerical Associate 49295.50000 9.859100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.859100e+04 9.859100e+04 0.00 NULL
2016 Landmarks Preservation Comm College Aide 6072.27500 1.214455e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.214455e+04 1.214455e+04 0.00 NULL
2016 Landmarks Preservation Comm Community Associate 40304.25000 1.612170e+05 37.92 9.480000e+00 0.000 36.75 4 0.000000e+00 0.00 1.612549e+05 1.612170e+05 37.92 NULL
2016 Landmarks Preservation Comm Community Coordinator 64268.00000 6.426800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.426800e+04 6.426800e+04 0.00 NULL
2016 Landmarks Preservation Comm Computer Systems Manager 109239.00000 1.092390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.092390e+05 1.092390e+05 0.00 NULL
2016 Landmarks Preservation Comm Counsel 146429.00000 1.464290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.464290e+05 1.464290e+05 0.00 NULL
2016 Landmarks Preservation Comm Director Of Public Relations 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2016 Landmarks Preservation Comm Director Of Urban Archaeology 83742.00000 8.374200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.374200e+04 8.374200e+04 0.00 NULL
2016 Landmarks Preservation Comm Executive Director 150362.00000 1.503620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503620e+05 1.503620e+05 0.00 NULL
2016 Landmarks Preservation Comm Landmarks Preservationist 54963.41978 2.748171e+06 481.62 9.632400e+00 0.000 102.75 50 0.000000e+00 0.00 2.748653e+06 2.748171e+06 481.62 NULL
2016 Landmarks Preservation Comm Legal Secretarial Assistant Al 2,3,4 Only 44027.00000 4.402700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.402700e+04 4.402700e+04 0.00 NULL
2016 Landmarks Preservation Comm Motor Vehicle Operator 35676.50000 7.135300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.135300e+04 7.135300e+04 0.00 NULL
2016 Landmarks Preservation Comm Principal Administrative Associate 62270.00000 6.227000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.227000e+04 6.227000e+04 0.00 NULL
2016 Landmarks Preservation Comm Public Relations Adviser 71750.00000 7.175000e+04 88.36 8.836000e+01 88.360 6.25 1 8.836000e+01 88.36 7.183836e+04 7.183836e+04 0.00 NULL
2016 Landmarks Preservation Comm Secretary To The Chair, Landmarks Preservation Commission 77733.00000 7.773300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.773300e+04 7.773300e+04 0.00 NULL
2016 Landmarks Preservation Comm Staff Analyst 57641.00000 5.764100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.764100e+04 5.764100e+04 0.00 NULL
2016 Landmarks Preservation Comm Urban Archeologist 36668.77495 7.333755e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.333755e+04 7.333755e+04 0.00 NULL
2016 Law Department Accountant 78357.00000 7.835700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.835700e+04 7.835700e+04 0.00 NULL
2016 Law Department Administrative Accountant 116662.00000 3.499860e+05 9.24 3.080000e+00 0.000 0.00 3 0.000000e+00 0.00 3.499952e+05 3.499860e+05 9.24 NULL
2016 Law Department Administrative Public Information Specialist 135556.00000 2.711120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.711120e+05 2.711120e+05 0.00 NULL
2016 Law Department Administrative Staff Analyst 103272.66667 6.196360e+05 329.37 5.489500e+01 0.960 0.00 6 9.600000e-01 5.76 6.199654e+05 6.196418e+05 323.61 NULL
2016 Law Department Administrative Supervisor Of Building Maintenance 102500.00000 1.025000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.025000e+05 1.025000e+05 0.00 NULL
2016 Law Department Assistant Corporation Counsel 98983.82534 8.700678e+07 0.00 0.000000e+00 0.000 0.00 879 0.000000e+00 0.00 8.700678e+07 8.700678e+07 0.00 NULL
2016 Law Department Associate Public Information Specialist 45900.00000 9.180000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.180000e+04 9.180000e+04 0.00 NULL
2016 Law Department Associate Quality Assurance Specialist 68023.00000 4.761610e+05 47004.42 6.714917e+03 1695.270 1092.50 7 1.695270e+03 11866.89 5.231654e+05 4.880279e+05 35137.53 NULL
2016 Law Department Associate Staff Analyst 79288.33004 1.110037e+06 20214.07 1.443862e+03 0.000 333.50 14 0.000000e+00 0.00 1.130251e+06 1.110037e+06 20214.07 NULL
2016 Law Department Attorney At Law 79121.00000 7.912100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.912100e+04 7.912100e+04 0.00 NULL
2016 Law Department Bookkeeper 47866.28571 3.350640e+05 8227.40 1.175343e+03 1020.560 343.50 7 1.020560e+03 7143.92 3.432914e+05 3.422079e+05 1083.48 NULL
2016 Law Department Certified Applications Developer 101487.00000 1.014870e+05 1323.56 1.323560e+03 1323.560 12.75 1 1.323560e+03 1323.56 1.028106e+05 1.028106e+05 0.00 NULL
2016 Law Department Certified It Administrator 89592.50000 1.791850e+05 3166.67 1.583335e+03 1583.335 83.00 2 1.583335e+03 3166.67 1.823517e+05 1.823517e+05 0.00 NULL
2016 Law Department City Assessor 89398.50000 1.787970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.787970e+05 1.787970e+05 0.00 NULL
2016 Law Department Claim Specialist 43371.51028 4.727495e+06 75001.22 6.880846e+02 0.000 2501.25 109 0.000000e+00 0.00 4.802496e+06 4.727495e+06 75001.22 NULL
2016 Law Department Clerical Associate 31790.44794 7.502546e+06 258077.59 1.093549e+03 0.000 9666.50 236 0.000000e+00 0.00 7.760623e+06 7.502546e+06 258077.59 NULL
2016 Law Department College Aide 3908.95864 1.250867e+05 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 1.250867e+05 1.250867e+05 0.00 NULL
2016 Law Department College Aide - Assignment Levels Ii And Iii 4363.83040 8.727661e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.727661e+03 8.727661e+03 0.00 NULL
2016 Law Department Community Associate 46125.00000 4.612500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.612500e+04 4.612500e+04 0.00 NULL
2016 Law Department Community Coordinator 75900.00000 7.590000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.590000e+04 7.590000e+04 0.00 NULL
2016 Law Department Computer Aide-Non-Spvr 36573.62484 4.023099e+05 22390.99 2.035545e+03 101.240 826.00 11 1.012400e+02 1113.64 4.247009e+05 4.034235e+05 21277.35 NULL
2016 Law Department Computer Associate 73558.10429 9.562554e+05 33806.67 2.600513e+03 104.340 600.00 13 1.043400e+02 1356.42 9.900620e+05 9.576118e+05 32450.25 NULL
2016 Law Department Computer Operations Manager 104342.00000 1.043420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.043420e+05 1.043420e+05 0.00 NULL
2016 Law Department Computer Service Technician 38661.65419 2.706316e+05 27079.60 3.868514e+03 1175.660 830.75 7 1.175660e+03 8229.62 2.977112e+05 2.788612e+05 18849.98 NULL
2016 Law Department Computer Specialist 95322.33333 5.719340e+05 1231.32 2.052200e+02 192.530 20.50 6 1.925300e+02 1155.18 5.731653e+05 5.730892e+05 76.14 NULL
2016 Law Department Computer Systems Manager 147114.40000 7.355720e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.355720e+05 7.355720e+05 0.00 NULL
2016 Law Department Corporation Counsel 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Law Department Custodial Assistant 38668.00000 1.160040e+05 47805.46 1.593515e+04 18820.700 1685.00 3 1.593515e+04 47805.46 1.638095e+05 1.638095e+05 0.00 NULL
2016 Law Department Custodian 49297.27998 2.464864e+05 75687.29 1.513746e+04 19708.610 2032.25 5 1.513746e+04 75687.29 3.221737e+05 3.221737e+05 0.00 NULL
2016 Law Department Department Librarian 35621.69000 3.562169e+04 105.88 1.058800e+02 105.880 0.00 1 1.058800e+02 105.88 3.572757e+04 3.572757e+04 0.00 NULL
2016 Law Department Deputy Director Of Admin Worker’s Comp Benefits 86090.00000 1.721800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.721800e+05 1.721800e+05 0.00 NULL
2016 Law Department Deputy Director Of Administration 170948.00000 1.709480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.709480e+05 1.709480e+05 0.00 NULL
2016 Law Department Deputy Operation Support Manager 127496.50000 2.549930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.549930e+05 2.549930e+05 0.00 NULL
2016 Law Department Dir Of Administration, Worker’s Comp Benefits 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2016 Law Department Director Of Administration 178787.00000 1.787870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.787870e+05 1.787870e+05 0.00 NULL
2016 Law Department Field Investigation Specialist 52597.00000 5.259700e+04 2038.91 2.038910e+03 2038.910 55.50 1 2.038910e+03 2038.91 5.463591e+04 5.463591e+04 0.00 NULL
2016 Law Department First Assistant Corporation Counsel 217182.50000 4.343650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.343650e+05 4.343650e+05 0.00 NULL
2016 Law Department Graphic Artist 17461.59250 1.746159e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.746159e+04 1.746159e+04 0.00 NULL
2016 Law Department It Service Management Specialist 88088.00000 8.808800e+04 3862.76 3.862760e+03 3862.760 75.75 1 3.862760e+03 3862.76 9.195076e+04 9.195076e+04 0.00 NULL
2016 Law Department Legal Secretarial Assistant 39983.33333 1.199500e+05 993.13 3.310433e+02 0.000 0.00 3 0.000000e+00 0.00 1.209431e+05 1.199500e+05 993.13 NULL
2016 Law Department Legal Secretarial Assistant Al 2,3,4 Only 52152.77973 1.929653e+06 87490.28 2.364602e+03 117.240 2563.50 37 1.172400e+02 4337.88 2.017143e+06 1.933991e+06 83152.40 NULL
2016 Law Department Management Auditor 58545.00000 5.854500e+04 1209.78 1.209780e+03 1209.780 27.00 1 1.209780e+03 1209.78 5.975478e+04 5.975478e+04 0.00 NULL
2016 Law Department Medicolegal Analyst 68079.00000 1.361580e+05 17693.12 8.846560e+03 8846.560 389.25 2 8.846560e+03 17693.12 1.538511e+05 1.538511e+05 0.00 NULL
2016 Law Department Motor Vehicle Operator 35853.91631 2.509774e+05 30350.61 4.335801e+03 2224.190 905.88 7 2.224190e+03 15569.33 2.813280e+05 2.665467e+05 14781.28 NULL
2016 Law Department Paralegal Aide 43512.86428 1.000796e+07 307561.17 1.337222e+03 0.000 8599.50 230 0.000000e+00 0.00 1.031552e+07 1.000796e+07 307561.17 NULL
2016 Law Department Principal Administrative Associate 56578.11765 9.618280e+05 65940.96 3.878880e+03 0.000 1659.00 17 0.000000e+00 0.00 1.027769e+06 9.618280e+05 65940.96 NULL
2016 Law Department Principal Title Examiner 63199.00000 3.159950e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.159950e+05 3.159950e+05 0.00 NULL
2016 Law Department Procurement Analyst 64416.00000 1.288320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.288320e+05 1.288320e+05 0.00 NULL
2016 Law Department Public Records Aide 35558.99937 2.844720e+05 34843.34 4.355417e+03 238.635 1266.75 8 2.386350e+02 1909.08 3.193153e+05 2.863811e+05 32934.26 NULL
2016 Law Department Research Assistant 52616.00000 5.261600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.261600e+04 5.261600e+04 0.00 NULL
2016 Law Department Secretary 43554.50000 1.742180e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.742180e+05 1.742180e+05 0.00 NULL
2016 Law Department Secretary To The Corporation Counsel 91862.00000 9.186200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.186200e+04 9.186200e+04 0.00 NULL
2016 Law Department Secretary To The First Assistant Corporation Counsel 68937.00000 6.893700e+04 110.44 1.104400e+02 110.440 1.00 1 1.104400e+02 110.44 6.904744e+04 6.904744e+04 0.00 NULL
2016 Law Department Senior Student Legal Specialist 46674.60300 3.733968e+05 987.79 1.234737e+02 0.000 83.25 8 0.000000e+00 0.00 3.743846e+05 3.733968e+05 987.79 NULL
2016 Law Department Senior Title Examiner 50802.00000 5.080200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.080200e+04 5.080200e+04 0.00 NULL
2016 Law Department Space Analyst 59324.00000 5.932400e+04 24577.76 2.457776e+04 24577.760 598.25 1 2.457776e+04 24577.76 8.390176e+04 8.390176e+04 0.00 NULL
2016 Law Department Staff Analyst 63265.18214 8.857126e+05 17441.45 1.245818e+03 0.000 385.50 14 0.000000e+00 0.00 9.031540e+05 8.857126e+05 17441.45 NULL
2016 Law Department Stenographer To The Corporation Counsel 64845.00000 6.484500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.484500e+04 6.484500e+04 0.00 NULL
2016 Law Department Summer Graduate Intern 2138.18476 9.835650e+04 0.00 0.000000e+00 0.000 0.00 46 0.000000e+00 0.00 9.835650e+04 9.835650e+04 0.00 NULL
2016 Law Department Supervising Computer Service Technician 59602.94750 1.192059e+05 13960.38 6.980190e+03 6980.190 302.25 2 6.980190e+03 13960.38 1.331663e+05 1.331663e+05 0.00 NULL
2016 Law Department Supervisor Of Office Machine Operations 46232.00000 9.246400e+04 3757.18 1.878590e+03 1878.590 92.25 2 1.878590e+03 3757.18 9.622118e+04 9.622118e+04 0.00 NULL
2016 Law Department Worker’s Compensation Benefits Examiner 40408.41172 3.030631e+06 119440.47 1.592540e+03 0.000 3864.25 75 0.000000e+00 0.00 3.150071e+06 3.030631e+06 119440.47 NULL
2016 Manhattan Community Board #1 Community Associate 34332.00000 3.433200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.433200e+04 3.433200e+04 0.00 NULL
2016 Manhattan Community Board #1 Community Coordinator 61850.00000 1.237000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.237000e+05 1.237000e+05 0.00 NULL
2016 Manhattan Community Board #1 District Manager 86952.00000 8.695200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.695200e+04 8.695200e+04 0.00 NULL
2016 Manhattan Community Board #10 Assistant District Manager 46817.00000 4.681700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.681700e+04 4.681700e+04 0.00 NULL
2016 Manhattan Community Board #10 Community Associate 39841.00000 3.984100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.984100e+04 3.984100e+04 0.00 NULL
2016 Manhattan Community Board #10 District Manager 78548.00000 7.854800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.854800e+04 7.854800e+04 0.00 NULL
2016 Manhattan Community Board #11 Assistant District Manager 50225.00000 5.022500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.022500e+04 5.022500e+04 0.00 NULL
2016 Manhattan Community Board #11 Community Associate 44345.00000 4.434500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.434500e+04 4.434500e+04 0.00 NULL
2016 Manhattan Community Board #11 District Manager 78028.00000 7.802800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.802800e+04 7.802800e+04 0.00 NULL
2016 Manhattan Community Board #12 Community Assistant 36981.00000 3.698100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.698100e+04 3.698100e+04 0.00 NULL
2016 Manhattan Community Board #12 Community Coordinator 59673.00000 5.967300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.967300e+04 5.967300e+04 0.00 NULL
2016 Manhattan Community Board #12 District Manager 85443.00000 8.544300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.544300e+04 8.544300e+04 0.00 NULL
2016 Manhattan Community Board #2 Assistant District Manager 45000.00000 4.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.500000e+04 4.500000e+04 0.00 NULL
2016 Manhattan Community Board #2 Community Assistant 33292.00000 3.329200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.329200e+04 3.329200e+04 0.00 NULL
2016 Manhattan Community Board #2 Community Associate 39987.00000 3.998700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.998700e+04 3.998700e+04 0.00 NULL
2016 Manhattan Community Board #2 Community Coordinator 56229.00000 5.622900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.622900e+04 5.622900e+04 0.00 NULL
2016 Manhattan Community Board #2 District Manager 80340.00000 8.034000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.034000e+04 8.034000e+04 0.00 NULL
2016 Manhattan Community Board #3 Assistant District Manager 49152.50000 9.830500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.830500e+04 9.830500e+04 0.00 NULL
2016 Manhattan Community Board #3 Community Associate 40575.50000 8.115100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.115100e+04 8.115100e+04 0.00 NULL
2016 Manhattan Community Board #3 District Manager 79979.00000 7.997900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.997900e+04 7.997900e+04 0.00 NULL
2016 Manhattan Community Board #4 Community Associate 41000.00000 4.100000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.100000e+04 4.100000e+04 0.00 NULL
2016 Manhattan Community Board #4 Community Coordinator 61377.00000 6.137700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.137700e+04 6.137700e+04 0.00 NULL
2016 Manhattan Community Board #4 District Manager 85311.00000 8.531100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.531100e+04 8.531100e+04 0.00 NULL
2016 Manhattan Community Board #5 Assistant District Manager 59045.00000 5.904500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.904500e+04 5.904500e+04 0.00 NULL
2016 Manhattan Community Board #5 Community Associate 39975.00000 7.995000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.995000e+04 7.995000e+04 0.00 NULL
2016 Manhattan Community Board #5 District Manager 100329.00000 1.003290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.003290e+05 1.003290e+05 0.00 NULL
2016 Manhattan Community Board #6 Community Associate 53658.00000 5.365800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.365800e+04 5.365800e+04 0.00 NULL
2016 Manhattan Community Board #6 District Manager 83344.50000 1.666890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.666890e+05 1.666890e+05 0.00 NULL
2016 Manhattan Community Board #7 Community Associate 35666.00000 3.566600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.566600e+04 3.566600e+04 0.00 NULL
2016 Manhattan Community Board #7 Community Coordinator 67768.76000 6.776876e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.776876e+04 6.776876e+04 0.00 NULL
2016 Manhattan Community Board #7 District Manager 93496.00000 9.349600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.349600e+04 9.349600e+04 0.00 NULL
2016 Manhattan Community Board #8 Community Assistant 33800.00000 6.760000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.760000e+04 6.760000e+04 0.00 NULL
2016 Manhattan Community Board #8 Community Associate 39014.00000 3.901400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.901400e+04 3.901400e+04 0.00 NULL
2016 Manhattan Community Board #8 District Manager 75626.00000 7.562600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.562600e+04 7.562600e+04 0.00 NULL
2016 Manhattan Community Board #9 Community Assistant 34480.50758 6.896102e+04 35.12 1.756000e+01 17.560 1.75 2 1.756000e+01 35.12 6.899614e+04 6.899614e+04 0.00 NULL
2016 Manhattan Community Board #9 District Manager 86417.00000 8.641700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.641700e+04 8.641700e+04 0.00 NULL
2016 Municipal Water Fin Authority Budget Analyst 94235.46154 1.225061e+06 4387.27 3.374823e+02 0.000 121.00 13 0.000000e+00 0.00 1.229448e+06 1.225061e+06 4387.27 NULL
2016 Municipal Water Fin Authority Statistical Secretary 61164.00000 6.116400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.116400e+04 6.116400e+04 0.00 NULL
2016 Nyc Employees Retirement Sys Accountant 62742.27273 6.901650e+05 39154.83 3.559530e+03 2089.880 710.50 11 2.089880e+03 22988.68 7.293198e+05 7.131537e+05 16166.15 NULL
2016 Nyc Employees Retirement Sys Actuarial Specialist Level I 63782.00000 1.275640e+05 109.57 5.478500e+01 54.785 3.00 2 5.478500e+01 109.57 1.276736e+05 1.276736e+05 0.00 NULL
2016 Nyc Employees Retirement Sys Administrative Accountant 127912.00000 1.279120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.279120e+05 1.279120e+05 0.00 NULL
2016 Nyc Employees Retirement Sys Administrative Graphic Artist 94934.00000 9.493400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.493400e+04 9.493400e+04 0.00 NULL
2016 Nyc Employees Retirement Sys Administrative Labor Relations Analyst 130637.50000 2.612750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.612750e+05 2.612750e+05 0.00 NULL
2016 Nyc Employees Retirement Sys Administrative Management Auditor 123951.00000 1.239510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.239510e+05 1.239510e+05 0.00 NULL
2016 Nyc Employees Retirement Sys Administrative Procurement Analyst 139120.00000 1.391200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.391200e+05 1.391200e+05 0.00 NULL
2016 Nyc Employees Retirement Sys Administrative Public Information Specialist 127935.33333 3.838060e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.838060e+05 3.838060e+05 0.00 NULL
2016 Nyc Employees Retirement Sys Administrative Retirement Benefits Specialist 109249.70000 2.184994e+06 249.44 1.247200e+01 0.000 0.00 20 0.000000e+00 0.00 2.185243e+06 2.184994e+06 249.44 NULL
2016 Nyc Employees Retirement Sys Administrative Staff Analyst 123007.50000 7.380450e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.380450e+05 7.380450e+05 0.00 NULL
2016 Nyc Employees Retirement Sys Administrative Supervisor Of Building Maintenance 105067.00000 1.050670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050670e+05 1.050670e+05 0.00 NULL
2016 Nyc Employees Retirement Sys Agency Attorney 76128.80000 3.806440e+05 1086.64 2.173280e+02 158.370 95.25 5 1.583700e+02 791.85 3.817306e+05 3.814358e+05 294.79 NULL
2016 Nyc Employees Retirement Sys Assistant Retirement Benefits Examiner 43878.36364 3.861296e+06 110910.57 1.260347e+03 82.625 4102.75 88 8.262500e+01 7271.00 3.972207e+06 3.868567e+06 103639.57 NULL
2016 Nyc Employees Retirement Sys Associate Retirement Benefits Examiner 56474.29032 7.002812e+06 580280.39 4.679681e+03 2429.450 14615.25 124 2.429450e+03 301251.80 7.583092e+06 7.304064e+06 279028.59 NULL
2016 Nyc Employees Retirement Sys Associate Staff Analyst 91091.50000 3.643660e+05 19548.87 4.887217e+03 594.765 311.00 4 5.947650e+02 2379.06 3.839149e+05 3.667451e+05 17169.81 NULL
2016 Nyc Employees Retirement Sys Bookkeeper 43334.00000 8.666800e+04 4003.55 2.001775e+03 2001.775 163.50 2 2.001775e+03 4003.55 9.067155e+04 9.067155e+04 0.00 NULL
2016 Nyc Employees Retirement Sys Certified It Administrator 92972.26667 1.394584e+06 76972.98 5.131532e+03 2706.000 1300.25 15 2.706000e+03 40590.00 1.471557e+06 1.435174e+06 36382.98 NULL
2016 Nyc Employees Retirement Sys Certified It Developer 102847.00000 2.056940e+05 3201.32 1.600660e+03 1600.660 53.50 2 1.600660e+03 3201.32 2.088953e+05 2.088953e+05 0.00 NULL
2016 Nyc Employees Retirement Sys Clerical Aide 30395.00000 6.079000e+04 138.57 6.928500e+01 69.285 8.00 2 6.928500e+01 138.57 6.092857e+04 6.092857e+04 0.00 NULL
2016 Nyc Employees Retirement Sys Clerical Associate 35022.99170 1.891242e+06 153760.46 2.847416e+03 286.465 5991.50 54 2.864650e+02 15469.11 2.045002e+06 1.906711e+06 138291.35 NULL
2016 Nyc Employees Retirement Sys Community Assistant 34489.85714 2.414290e+05 59979.71 8.568530e+03 9449.940 2656.75 7 8.568530e+03 59979.71 3.014087e+05 3.014087e+05 0.00 NULL
2016 Nyc Employees Retirement Sys Computer Associate 77857.26667 1.167859e+06 44485.90 2.965727e+03 877.820 839.50 15 8.778200e+02 13167.30 1.212345e+06 1.181026e+06 31318.60 NULL
2016 Nyc Employees Retirement Sys Computer Programmer Analyst 63695.00000 6.369500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.369500e+04 6.369500e+04 0.00 NULL
2016 Nyc Employees Retirement Sys Computer Service Technician 48199.00000 9.639800e+04 404.29 2.021450e+02 202.145 0.00 2 2.021450e+02 404.29 9.680229e+04 9.680229e+04 0.00 NULL
2016 Nyc Employees Retirement Sys Computer Specialist 93140.83333 1.676535e+06 23222.53 1.290141e+03 0.000 346.75 18 0.000000e+00 0.00 1.699758e+06 1.676535e+06 23222.53 NULL
2016 Nyc Employees Retirement Sys Computer Systems Manager 138816.06667 2.082241e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 2.082241e+06 2.082241e+06 0.00 NULL
2016 Nyc Employees Retirement Sys Confidential Strategy Planner 127437.00000 1.274370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.274370e+05 1.274370e+05 0.00 NULL
2016 Nyc Employees Retirement Sys Customer Information Representative 25771.35132 4.896557e+05 50451.51 2.655343e+03 916.250 2578.25 19 9.162500e+02 17408.75 5.401072e+05 5.070644e+05 33042.76 NULL
2016 Nyc Employees Retirement Sys Deputy Director 178613.00000 1.786130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.786130e+05 1.786130e+05 0.00 NULL
2016 Nyc Employees Retirement Sys Deputy Executive Director 190970.00000 1.909700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.909700e+05 1.909700e+05 0.00 NULL
2016 Nyc Employees Retirement Sys Executive Agency Counsel 154232.00000 3.084640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.084640e+05 3.084640e+05 0.00 NULL
2016 Nyc Employees Retirement Sys Executive Director 219771.00000 2.197710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197710e+05 2.197710e+05 0.00 NULL
2016 Nyc Employees Retirement Sys Legal Secretarial Assistant Al 2,3,4 Only 63452.00000 6.345200e+04 1004.27 1.004270e+03 1004.270 25.25 1 1.004270e+03 1004.27 6.445627e+04 6.445627e+04 0.00 NULL
2016 Nyc Employees Retirement Sys Management Auditor 59909.50000 2.396380e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.396380e+05 2.396380e+05 0.00 NULL
2016 Nyc Employees Retirement Sys Office Machine Aide 13471.62815 4.041488e+05 15394.05 5.131350e+02 350.540 1524.25 30 3.505400e+02 10516.20 4.195429e+05 4.146650e+05 4877.85 NULL
2016 Nyc Employees Retirement Sys Principal Administrative Associate 63186.91304 1.453299e+06 69946.65 3.041159e+03 239.150 1721.50 23 2.391500e+02 5500.45 1.523246e+06 1.458799e+06 64446.20 NULL
2016 Nyc Employees Retirement Sys Secretary To The Executive Director Of Retirement System 84153.00000 8.415300e+04 1507.13 1.507130e+03 1507.130 33.00 1 1.507130e+03 1507.13 8.566013e+04 8.566013e+04 0.00 NULL
2016 Nyc Employees Retirement Sys Staff Analyst 62974.00000 6.297400e+04 1.65 1.650000e+00 1.650 0.00 1 1.650000e+00 1.65 6.297565e+04 6.297565e+04 0.00 NULL
2016 Nyc Employees Retirement Sys Supervising Computer Service Technician 69531.00000 1.390620e+05 1948.20 9.741000e+02 974.100 33.25 2 9.741000e+02 1948.20 1.410102e+05 1.410102e+05 0.00 NULL
2016 Nyc Employees Retirement Sys Telecommunications Associate 75697.50000 1.513950e+05 2327.03 1.163515e+03 1163.515 40.00 2 1.163515e+03 2327.03 1.537220e+05 1.537220e+05 0.00 NULL
2016 Nyc Housing Authority *Administrative Attorney 122808.00000 1.228080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.228080e+05 1.228080e+05 0.00 NULL
2016 Nyc Housing Authority Accountant 58581.82927 2.401855e+06 368.58 8.989756e+00 0.000 10.75 41 0.000000e+00 0.00 2.402224e+06 2.401855e+06 368.58 NULL
2016 Nyc Housing Authority Adm Manager-Non-Mgrl 69343.38462 4.507320e+06 23183.93 3.566758e+02 0.000 586.75 65 0.000000e+00 0.00 4.530504e+06 4.507320e+06 23183.93 NULL
2016 Nyc Housing Authority Admin Community Relations Specialist 79930.92105 3.037375e+06 22163.01 5.832371e+02 0.000 417.75 38 0.000000e+00 0.00 3.059538e+06 3.037375e+06 22163.01 NULL
2016 Nyc Housing Authority Admin Contract Specialist 130894.71429 9.162630e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.162630e+05 9.162630e+05 0.00 NULL
2016 Nyc Housing Authority Administrative Accountant 104598.56000 2.614964e+06 11.19 4.476000e-01 0.000 0.00 25 0.000000e+00 0.00 2.614975e+06 2.614964e+06 11.19 NULL
2016 Nyc Housing Authority Administrative Architect 117857.14286 8.250000e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.250000e+05 8.250000e+05 0.00 NULL
2016 Nyc Housing Authority Administrative Business Promotion Coordinator 100747.30000 1.007473e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.007473e+06 1.007473e+06 0.00 NULL
2016 Nyc Housing Authority Administrative City Planner 136333.33333 4.090000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.090000e+05 4.090000e+05 0.00 NULL
2016 Nyc Housing Authority Administrative Claim Examiner 139347.00000 1.393470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.393470e+05 1.393470e+05 0.00 NULL
2016 Nyc Housing Authority Administrative Community Relations Specialist 108852.88889 9.796760e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.796760e+05 9.796760e+05 0.00 NULL
2016 Nyc Housing Authority Administrative Construction Project Manager 107041.15000 2.140823e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 2.140823e+06 2.140823e+06 0.00 NULL
2016 Nyc Housing Authority Administrative Engineer 124305.25000 1.491663e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.491663e+06 1.491663e+06 0.00 NULL
2016 Nyc Housing Authority Administrative Graphic Artist 90039.00000 9.003900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.003900e+04 9.003900e+04 0.00 NULL
2016 Nyc Housing Authority Administrative Housing Development Specialist 117204.78571 1.640867e+06 0.00 0.000000e+00 0.000 1.50 14 0.000000e+00 0.00 1.640867e+06 1.640867e+06 0.00 NULL
2016 Nyc Housing Authority Administrative Housing Manager 113405.92500 4.536237e+06 7759.12 1.939780e+02 0.000 61.50 40 0.000000e+00 0.00 4.543996e+06 4.536237e+06 7759.12 NULL
2016 Nyc Housing Authority Administrative Housing Superintendent 112972.57576 7.456190e+06 14083.19 2.133817e+02 0.000 128.25 66 0.000000e+00 0.00 7.470273e+06 7.456190e+06 14083.19 NULL
2016 Nyc Housing Authority Administrative Inspector 111272.94737 2.114186e+06 202.61 1.066368e+01 0.000 0.00 19 0.000000e+00 0.00 2.114389e+06 2.114186e+06 202.61 NULL
2016 Nyc Housing Authority Administrative Labor Relations Analyst 102702.00000 5.135100e+05 -2622.58 -5.245160e+02 0.000 0.00 5 -5.245160e+02 -2622.58 5.108874e+05 5.108874e+05 0.00 NULL
2016 Nyc Housing Authority Administrative Landscape Architect 100096.66667 3.002900e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.002900e+05 3.002900e+05 0.00 NULL
2016 Nyc Housing Authority Administrative Management Auditor 108502.66667 3.255080e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.255080e+05 3.255080e+05 0.00 NULL
2016 Nyc Housing Authority Administrative Printing Services Manager 93256.00000 9.325600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.325600e+04 9.325600e+04 0.00 NULL
2016 Nyc Housing Authority Administrative Procurement Analyst 83833.85714 5.868370e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.868370e+05 5.868370e+05 0.00 NULL
2016 Nyc Housing Authority Administrative Project Manager 114961.25000 2.299225e+06 20493.66 1.024683e+03 0.000 314.00 20 0.000000e+00 0.00 2.319719e+06 2.299225e+06 20493.66 NULL
2016 Nyc Housing Authority Administrative Public Information Specialist 108392.47619 2.276242e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 2.276242e+06 2.276242e+06 0.00 NULL
2016 Nyc Housing Authority Administrative Quality Assurance Specialist 77244.00000 7.724400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.724400e+04 7.724400e+04 0.00 NULL
2016 Nyc Housing Authority Administrative Real Property Manager 127005.00000 1.016040e+06 4.79 5.987500e-01 0.000 0.00 8 0.000000e+00 0.00 1.016045e+06 1.016040e+06 4.79 NULL
2016 Nyc Housing Authority Administrative Space Analyst 99391.60000 4.969580e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.969580e+05 4.969580e+05 0.00 NULL
2016 Nyc Housing Authority Administrative Staff Analyst 97627.20812 1.923256e+07 77877.97 3.953196e+02 0.000 1428.25 197 0.000000e+00 0.00 1.931044e+07 1.923256e+07 77877.97 NULL
2016 Nyc Housing Authority Administrative Storekeeper 101689.25000 4.067570e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.067570e+05 4.067570e+05 0.00 NULL
2016 Nyc Housing Authority Administrative Supervisor Of Building Maintenance 100793.72727 1.108731e+06 25.69 2.335454e+00 0.000 0.00 11 0.000000e+00 0.00 1.108757e+06 1.108731e+06 25.69 NULL
2016 Nyc Housing Authority Agency Attorney 78757.05357 4.410395e+06 0.00 0.000000e+00 0.000 0.00 56 0.000000e+00 0.00 4.410395e+06 4.410395e+06 0.00 NULL
2016 Nyc Housing Authority Architect 84401.00000 7.596090e+05 1763.90 1.959889e+02 0.000 30.50 9 0.000000e+00 0.00 7.613729e+05 7.596090e+05 1763.90 NULL
2016 Nyc Housing Authority Asbestos Handler 76556.75000 1.224908e+06 122323.07 7.645192e+03 5936.980 2281.00 16 5.936980e+03 94991.68 1.347231e+06 1.319900e+06 27331.39 NULL
2016 Nyc Housing Authority Asbestos Handler Supervisor 81313.00000 4.065650e+05 70317.37 1.406347e+04 12043.680 1222.75 5 1.204368e+04 60218.40 4.768824e+05 4.667834e+05 10098.97 NULL
2016 Nyc Housing Authority Asbestos Hazard Investigator 70188.00000 4.211280e+05 39730.55 6.621758e+03 7415.600 797.50 6 6.621758e+03 39730.55 4.608585e+05 4.608585e+05 0.00 NULL
2016 Nyc Housing Authority Assistant Architect 63759.22222 5.738330e+05 348.26 3.869556e+01 0.000 10.25 9 0.000000e+00 0.00 5.741813e+05 5.738330e+05 348.26 NULL
2016 Nyc Housing Authority Assistant Caretaker 39433.86842 4.495461e+06 295974.44 2.596267e+03 1865.785 10999.75 114 1.865785e+03 212699.49 4.791435e+06 4.708160e+06 83274.95 NULL
2016 Nyc Housing Authority Assistant Civil Engineer 70122.33333 2.103670e+05 1203.84 4.012800e+02 0.000 31.00 3 0.000000e+00 0.00 2.115708e+05 2.103670e+05 1203.84 NULL
2016 Nyc Housing Authority Assistant Director Of Intergroup Relations 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2016 Nyc Housing Authority Assistant Electrical Engineer 61244.00000 1.224880e+05 89.20 4.460000e+01 44.600 0.00 2 4.460000e+01 89.20 1.225772e+05 1.225772e+05 0.00 NULL
2016 Nyc Housing Authority Assistant Executive Director 156854.00000 4.705620e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.705620e+05 4.705620e+05 0.00 NULL
2016 Nyc Housing Authority Assistant Housing Manager 68522.56054 1.528053e+07 291324.41 1.306387e+03 42.010 6378.50 223 4.201000e+01 9368.23 1.557186e+07 1.528990e+07 281956.18 NULL
2016 Nyc Housing Authority Assistant Landscape Architect 75370.00000 7.537000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.537000e+04 7.537000e+04 0.00 NULL
2016 Nyc Housing Authority Assistant Mechanical Engineer 65492.50000 1.309850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.309850e+05 1.309850e+05 0.00 NULL
2016 Nyc Housing Authority Assistant Printing Press Operator 55282.00000 2.764100e+05 47.53 9.506000e+00 0.000 0.00 5 0.000000e+00 0.00 2.764575e+05 2.764100e+05 47.53 NULL
2016 Nyc Housing Authority Assistant Resident Building Supt 66353.85878 1.738471e+07 2402628.42 9.170337e+03 7208.760 46636.25 262 7.208760e+03 1888695.12 1.978734e+07 1.927341e+07 513933.30 NULL
2016 Nyc Housing Authority Assistant To The Chairman 55000.00000 5.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.500000e+04 5.500000e+04 0.00 NULL
2016 Nyc Housing Authority Assistant Urban Designer 64000.00000 1.280000e+05 1378.63 6.893150e+02 689.315 34.50 2 6.893150e+02 1378.63 1.293786e+05 1.293786e+05 0.00 NULL
2016 Nyc Housing Authority Assoc Inspector 78450.85714 5.491560e+05 1610.25 2.300357e+02 25.730 25.00 7 2.573000e+01 180.11 5.507662e+05 5.493361e+05 1430.14 NULL
2016 Nyc Housing Authority Associate Contract Specialist 72079.00000 1.441580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.441580e+05 1.441580e+05 0.00 NULL
2016 Nyc Housing Authority Associate Fraud Investigator 84650.00000 8.465000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.465000e+04 8.465000e+04 0.00 NULL
2016 Nyc Housing Authority Associate Housing Development Specialist 89049.16667 5.342950e+05 0.00 0.000000e+00 0.000 1.00 6 0.000000e+00 0.00 5.342950e+05 5.342950e+05 0.00 NULL
2016 Nyc Housing Authority Associate Inspector 74485.33333 2.234560e+05 403.65 1.345500e+02 0.000 8.75 3 0.000000e+00 0.00 2.238596e+05 2.234560e+05 403.65 NULL
2016 Nyc Housing Authority Associate Investigator 59049.44444 5.314450e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.314450e+05 5.314450e+05 0.00 NULL
2016 Nyc Housing Authority Associate Labor Relations Analyst 78179.00000 1.563580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.563580e+05 1.563580e+05 0.00 NULL
2016 Nyc Housing Authority Associate Operations Communications Specialist 55412.00000 5.541200e+04 366.52 3.665200e+02 366.520 9.75 1 3.665200e+02 366.52 5.577852e+04 5.577852e+04 0.00 NULL
2016 Nyc Housing Authority Associate Project Manager 80675.85185 2.178248e+06 5946.08 2.202252e+02 0.000 114.50 27 0.000000e+00 0.00 2.184194e+06 2.178248e+06 5946.08 NULL
2016 Nyc Housing Authority Associate Public Information Specialist 53204.00000 5.320400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.320400e+04 5.320400e+04 0.00 NULL
2016 Nyc Housing Authority Associate Quality Assurance Specialist 62169.00000 6.216900e+04 33.69 3.369000e+01 33.690 1.00 1 3.369000e+01 33.69 6.220269e+04 6.220269e+04 0.00 NULL
2016 Nyc Housing Authority Associate Real Property Manager 68639.00000 6.863900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.863900e+04 6.863900e+04 0.00 NULL
2016 Nyc Housing Authority Associate Staff Analyst 75941.78750 6.075343e+06 32039.19 4.004899e+02 0.000 625.50 80 0.000000e+00 0.00 6.107382e+06 6.075343e+06 32039.19 NULL
2016 Nyc Housing Authority Attorney At Law 82552.00000 4.953120e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.953120e+05 4.953120e+05 0.00 NULL
2016 Nyc Housing Authority Auto Body Worker 55521.00000 5.552100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.552100e+04 5.552100e+04 0.00 NULL
2016 Nyc Housing Authority Auto Mechanic NA NA 6117.40 1.223480e+03 1411.180 92.75 5 1.223480e+03 6117.40 NA NA NA NULL
2016 Nyc Housing Authority Automotive Service Worker 43477.66667 2.608660e+05 4027.01 6.711683e+02 97.710 139.25 6 9.771000e+01 586.26 2.648930e+05 2.614523e+05 3440.75 NULL
2016 Nyc Housing Authority Bookkeeper 47349.03571 1.325773e+06 1610.40 5.751429e+01 0.000 50.75 28 0.000000e+00 0.00 1.327383e+06 1.325773e+06 1610.40 NULL
2016 Nyc Housing Authority Bricklayer NA NA 1001995.61 1.616122e+04 8369.480 15964.75 62 8.369480e+03 518907.76 NA NA NA NULL
2016 Nyc Housing Authority Business Promotion Coordinator 56621.25000 2.264850e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.264850e+05 2.264850e+05 0.00 NULL
2016 Nyc Housing Authority Caretaker 38091.53585 1.561753e+08 23300072.93 5.682945e+03 5849.925 714706.25 4100 5.682945e+03 23300072.93 1.794754e+08 1.794754e+08 0.00 NULL
2016 Nyc Housing Authority Carpenter NA NA 5602160.66 1.482053e+04 6743.570 46522.25 378 6.743570e+03 2549069.46 NA NA NA NULL
2016 Nyc Housing Authority Cashier 46134.00000 4.613400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.613400e+04 4.613400e+04 0.00 NULL
2016 Nyc Housing Authority Certified It Administrator 99252.20000 9.925220e+05 87999.75 8.799975e+03 1817.385 1194.50 10 1.817385e+03 18173.85 1.080522e+06 1.010696e+06 69825.90 NULL
2016 Nyc Housing Authority Certified Local Area Network Administrator 97460.66667 2.923820e+05 15168.84 5.056280e+03 1866.430 190.75 3 1.866430e+03 5599.29 3.075508e+05 2.979813e+05 9569.55 NULL
2016 Nyc Housing Authority Certified Wide Area Network Administrator 108518.00000 1.085180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.085180e+05 1.085180e+05 0.00 NULL
2016 Nyc Housing Authority Chair 224936.00000 2.249360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.249360e+05 2.249360e+05 0.00 NULL
2016 Nyc Housing Authority Chief Caretaker 46833.00000 1.358157e+06 254295.35 8.768805e+03 8081.380 7768.00 29 8.081380e+03 234360.02 1.612452e+06 1.592517e+06 19935.33 NULL
2016 Nyc Housing Authority Chief Of Housing Community Activities 81358.33333 2.440750e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.440750e+05 2.440750e+05 0.00 NULL
2016 Nyc Housing Authority City Attendant 29364.00000 2.936400e+04 73.83 7.383000e+01 73.830 3.50 1 7.383000e+01 73.83 2.943783e+04 2.943783e+04 0.00 NULL
2016 Nyc Housing Authority City Planner 68967.33333 4.138040e+05 300.36 5.006000e+01 0.000 7.75 6 0.000000e+00 0.00 4.141044e+05 4.138040e+05 300.36 NULL
2016 Nyc Housing Authority City Planning Technician 52030.66667 1.560920e+05 90.56 3.018667e+01 0.000 3.50 3 0.000000e+00 0.00 1.561826e+05 1.560920e+05 90.56 NULL
2016 Nyc Housing Authority City Research Scientist 80542.66667 2.416280e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.416280e+05 2.416280e+05 0.00 NULL
2016 Nyc Housing Authority City Seasonal Aide 17873.55269 7.632007e+06 116.80 2.735363e-01 0.000 0.00 427 0.000000e+00 0.00 7.632124e+06 7.632007e+06 116.80 NULL
2016 Nyc Housing Authority City Security Aide 13543.98113 1.435662e+06 8905.10 8.401038e+01 0.000 443.25 106 0.000000e+00 0.00 1.444567e+06 1.435662e+06 8905.10 NULL
2016 Nyc Housing Authority City Service Aide 19703.12719 4.492313e+06 2439.42 1.069921e+01 0.000 168.75 228 0.000000e+00 0.00 4.494752e+06 4.492313e+06 2439.42 NULL
2016 Nyc Housing Authority Civil Engineer 84719.83333 1.016638e+06 106.72 8.893333e+00 0.000 2.00 12 0.000000e+00 0.00 1.016745e+06 1.016638e+06 106.72 NULL
2016 Nyc Housing Authority Claim Specialist 57077.66667 3.424660e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.424660e+05 3.424660e+05 0.00 NULL
2016 Nyc Housing Authority Clerical Aide 30372.66667 4.555900e+05 1333.08 8.887200e+01 0.000 63.25 15 0.000000e+00 0.00 4.569231e+05 4.555900e+05 1333.08 NULL
2016 Nyc Housing Authority Clerical Associate 40120.31538 5.215641e+06 31275.63 2.405818e+02 0.000 1111.25 130 0.000000e+00 0.00 5.246917e+06 5.215641e+06 31275.63 NULL
2016 Nyc Housing Authority College Aide 26817.20000 1.340860e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.340860e+05 1.340860e+05 0.00 NULL
2016 Nyc Housing Authority Community Assistant 33486.30435 7.701850e+05 509.35 2.214565e+01 0.000 29.50 23 0.000000e+00 0.00 7.706943e+05 7.701850e+05 509.35 NULL
2016 Nyc Housing Authority Community Associate 40558.28070 4.623644e+06 16012.84 1.404635e+02 0.000 505.50 114 0.000000e+00 0.00 4.639657e+06 4.623644e+06 16012.84 NULL
2016 Nyc Housing Authority Community Coordinator 58677.97484 9.329798e+06 43618.60 2.743308e+02 0.000 1067.00 159 0.000000e+00 0.00 9.373417e+06 9.329798e+06 43618.60 NULL
2016 Nyc Housing Authority Community Service Aide 14035.38028 9.965120e+05 14133.37 1.990615e+02 0.000 1011.50 71 0.000000e+00 0.00 1.010645e+06 9.965120e+05 14133.37 NULL
2016 Nyc Housing Authority Computer Aide-Non-Spvr 42663.00000 4.266300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.266300e+04 4.266300e+04 0.00 NULL
2016 Nyc Housing Authority Computer Associate 69047.50000 1.795235e+06 27564.06 1.060156e+03 0.000 587.75 26 0.000000e+00 0.00 1.822799e+06 1.795235e+06 27564.06 NULL
2016 Nyc Housing Authority Computer Operations Manager 93442.42857 6.540970e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.540970e+05 6.540970e+05 0.00 NULL
2016 Nyc Housing Authority Computer Service Technician 48862.33333 1.465870e+05 2225.81 7.419367e+02 111.160 75.50 3 1.111600e+02 333.48 1.488128e+05 1.469205e+05 1892.33 NULL
2016 Nyc Housing Authority Computer Specialist 92818.40541 6.868562e+06 183861.08 2.484609e+03 0.000 2745.50 74 0.000000e+00 0.00 7.052423e+06 6.868562e+06 183861.08 NULL
2016 Nyc Housing Authority Computer Systems Manager 120174.10526 4.566616e+06 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 4.566616e+06 4.566616e+06 0.00 NULL
2016 Nyc Housing Authority Confidential Investigator 60543.81081 2.240121e+06 34308.32 9.272519e+02 18.220 919.50 37 1.822000e+01 674.14 2.274429e+06 2.240795e+06 33634.18 NULL
2016 Nyc Housing Authority Construction Project Manager 74146.30841 7.933655e+06 42486.38 3.970690e+02 0.000 857.75 107 0.000000e+00 0.00 7.976141e+06 7.933655e+06 42486.38 NULL
2016 Nyc Housing Authority Contract Specialist 49579.00000 4.957900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.957900e+04 4.957900e+04 0.00 NULL
2016 Nyc Housing Authority Controller 148455.00000 1.484550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.484550e+05 1.484550e+05 0.00 NULL
2016 Nyc Housing Authority Counsel 138409.00000 1.384090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.384090e+05 1.384090e+05 0.00 NULL
2016 Nyc Housing Authority Customer Information Representative 39342.99180 4.799845e+06 71454.78 5.856949e+02 0.000 2446.00 122 0.000000e+00 0.00 4.871300e+06 4.799845e+06 71454.78 NULL
2016 Nyc Housing Authority Dep Dir Of Audit & Prog Analysis 123000.00000 1.230000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.230000e+05 1.230000e+05 0.00 NULL
2016 Nyc Housing Authority Dep Dir Of Program Planning 117875.00000 1.178750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.178750e+05 1.178750e+05 0.00 NULL
2016 Nyc Housing Authority Dep Dir Research & Pol Develp 107625.00000 1.076250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.076250e+05 1.076250e+05 0.00 NULL
2016 Nyc Housing Authority Dep Director Of Personnel & Lr 116622.33333 3.498670e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.498670e+05 3.498670e+05 0.00 NULL
2016 Nyc Housing Authority Deputy Controller 145653.00000 1.456530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.456530e+05 1.456530e+05 0.00 NULL
2016 Nyc Housing Authority Deputy Counsel Intern 66353.00000 2.654120e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.654120e+05 2.654120e+05 0.00 NULL
2016 Nyc Housing Authority Deputy Director Of Equal Opportunity 105166.00000 1.051660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.051660e+05 1.051660e+05 0.00 NULL
2016 Nyc Housing Authority Deputy Director Of Housing Applicants 115507.00000 1.155070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.155070e+05 1.155070e+05 0.00 NULL
2016 Nyc Housing Authority Deputy Director Of Management 116951.00000 1.169510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.169510e+05 1.169510e+05 0.00 NULL
2016 Nyc Housing Authority Deputy Director Of Methods & Analysis 109160.00000 1.091600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.091600e+05 1.091600e+05 0.00 NULL
2016 Nyc Housing Authority Deputy Executive Director 191250.25000 7.650010e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.650010e+05 7.650010e+05 0.00 NULL
2016 Nyc Housing Authority Deputy Inspector General 97421.00000 5.845260e+05 70.75 1.179167e+01 0.000 0.00 6 0.000000e+00 0.00 5.845968e+05 5.845260e+05 70.75 NULL
2016 Nyc Housing Authority Dir Of Audit & Prog Analysis 144013.50000 2.880270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.880270e+05 2.880270e+05 0.00 NULL
2016 Nyc Housing Authority Dir Of Materials Management 144315.50000 2.886310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.886310e+05 2.886310e+05 0.00 NULL
2016 Nyc Housing Authority Dir Of Personnel & Labor Rels 158875.00000 1.588750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.588750e+05 1.588750e+05 0.00 NULL
2016 Nyc Housing Authority Director Of Equal Opportunity 127449.00000 1.274490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.274490e+05 1.274490e+05 0.00 NULL
2016 Nyc Housing Authority Director Of General Services 138875.00000 1.388750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.388750e+05 1.388750e+05 0.00 NULL
2016 Nyc Housing Authority Director Of Housing Applicantions 147524.00000 1.475240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.475240e+05 1.475240e+05 0.00 NULL
2016 Nyc Housing Authority Director Of Leased Housing 131011.00000 2.620220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.620220e+05 2.620220e+05 0.00 NULL
2016 Nyc Housing Authority Director Of Methods & Analysis 144374.00000 1.443740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.443740e+05 1.443740e+05 0.00 NULL
2016 Nyc Housing Authority Director Of Plant Operations & Maintenance 144432.00000 1.444320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.444320e+05 1.444320e+05 0.00 NULL
2016 Nyc Housing Authority Director Of Program Planning 141450.00000 1.414500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.414500e+05 1.414500e+05 0.00 NULL
2016 Nyc Housing Authority Director Of Public & Community Relations 122847.00000 1.228470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.228470e+05 1.228470e+05 0.00 NULL
2016 Nyc Housing Authority Director Of Research & Policy Development 132914.00000 1.329140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.329140e+05 1.329140e+05 0.00 NULL
2016 Nyc Housing Authority Director Of Security 140354.00000 1.403540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.403540e+05 1.403540e+05 0.00 NULL
2016 Nyc Housing Authority Economist 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2016 Nyc Housing Authority Electrical Engineer 83073.00000 1.661460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.661460e+05 1.661460e+05 0.00 NULL
2016 Nyc Housing Authority Electrician NA NA 1784868.98 2.833125e+04 25853.680 24491.50 63 2.585368e+04 1628781.84 NA NA NA NULL
2016 Nyc Housing Authority Electrician’s Helper NA NA 1015558.54 1.721286e+04 16401.460 21475.50 59 1.640146e+04 967686.14 NA NA NA NULL
2016 Nyc Housing Authority Elevator Mechanic NA NA 3814835.55 1.630272e+04 16150.315 51091.50 234 1.615032e+04 3779173.71 NA NA NA NULL
2016 Nyc Housing Authority Elevator Mechanic Helper NA NA 2523288.50 1.179107e+04 12618.625 50303.00 214 1.179107e+04 2523288.50 NA NA NA NULL
2016 Nyc Housing Authority Emergency Service Aide 36319.29245 3.849845e+06 187126.66 1.765346e+03 888.500 7437.00 106 8.885000e+02 94181.00 4.036972e+06 3.944026e+06 92945.66 NULL
2016 Nyc Housing Authority Engineering Technician 59764.66667 1.792940e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.792940e+05 1.792940e+05 0.00 NULL
2016 Nyc Housing Authority Executive Agency Counsel 114762.91892 4.246228e+06 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 4.246228e+06 4.246228e+06 0.00 NULL
2016 Nyc Housing Authority Executive Director 206014.00000 4.120280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.120280e+05 4.120280e+05 0.00 NULL
2016 Nyc Housing Authority Executive Program Specialist 131300.00000 2.626000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.626000e+05 2.626000e+05 0.00 NULL
2016 Nyc Housing Authority Fraud Investigator 57498.00000 1.149960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.149960e+05 1.149960e+05 0.00 NULL
2016 Nyc Housing Authority Glazier NA NA 243435.14 9.362890e+03 6115.200 3214.50 26 6.115200e+03 158995.20 NA NA NA NULL
2016 Nyc Housing Authority Graphic Artist 47388.00000 1.421640e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.421640e+05 1.421640e+05 0.00 NULL
2016 Nyc Housing Authority Hearing Examiner 116417.00000 3.492510e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.492510e+05 3.492510e+05 0.00 NULL
2016 Nyc Housing Authority Heating Plant Technician 46635.61685 1.716191e+07 1218513.04 3.311177e+03 1809.820 35213.50 368 1.809820e+03 666013.76 1.838042e+07 1.782792e+07 552499.28 NULL
2016 Nyc Housing Authority High Pressure Plant Tender NA NA 27674.77 6.918693e+03 5931.530 550.25 4 5.931530e+03 23726.12 NA NA NA NULL
2016 Nyc Housing Authority Housing Assistant 52768.03159 5.846698e+07 452446.62 4.083453e+02 0.000 11769.25 1108 0.000000e+00 0.00 5.891943e+07 5.846698e+07 452446.62 NULL
2016 Nyc Housing Authority Housing Caretaker 52555.21284 1.555634e+07 3089891.54 1.043882e+04 11937.300 68917.00 296 1.043882e+04 3089891.54 1.864623e+07 1.864623e+07 0.00 NULL
2016 Nyc Housing Authority Housing Development Specialist 61500.00000 1.230000e+05 20883.14 1.044157e+04 10441.570 482.75 2 1.044157e+04 20883.14 1.438831e+05 1.438831e+05 0.00 NULL
2016 Nyc Housing Authority Housing Development Specialist Trainee 46124.00000 4.612400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.612400e+04 4.612400e+04 0.00 NULL
2016 Nyc Housing Authority Housing Exterminator 46249.50000 7.584918e+06 123688.48 7.541980e+02 109.165 3239.00 164 1.091650e+02 17903.06 7.708606e+06 7.602821e+06 105785.42 NULL
2016 Nyc Housing Authority Housing Manager 84535.54936 1.969678e+07 809188.69 3.472913e+03 1031.120 14008.50 233 1.031120e+03 240250.96 2.050597e+07 1.993703e+07 568937.73 NULL
2016 Nyc Housing Authority Housing Stock Worker 47343.22581 1.467640e+06 10558.69 3.406029e+02 85.470 254.50 31 8.547000e+01 2649.57 1.478199e+06 1.470290e+06 7909.12 NULL
2016 Nyc Housing Authority Industrial Hygienist 60497.33333 3.629840e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.629840e+05 3.629840e+05 0.00 NULL
2016 Nyc Housing Authority Inspector 64460.00000 5.156800e+05 185.20 2.315000e+01 8.320 1.50 8 8.320000e+00 66.56 5.158652e+05 5.157466e+05 118.64 NULL
2016 Nyc Housing Authority Inspector General 143626.00000 1.436260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.436260e+05 1.436260e+05 0.00 NULL
2016 Nyc Housing Authority Interpreter 49799.28571 3.485950e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.485950e+05 3.485950e+05 0.00 NULL
2016 Nyc Housing Authority Interpreter/Translator 51342.00000 1.026840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.026840e+05 1.026840e+05 0.00 NULL
2016 Nyc Housing Authority Investigator 50542.80000 7.581420e+05 74.80 4.986667e+00 0.000 0.00 15 0.000000e+00 0.00 7.582168e+05 7.581420e+05 74.80 NULL
2016 Nyc Housing Authority Labor Relations Analyst 63191.12500 5.055290e+05 34809.84 4.351230e+03 128.805 746.75 8 1.288050e+02 1030.44 5.403388e+05 5.065594e+05 33779.40 NULL
2016 Nyc Housing Authority Labor Relations Analyst Trainee 47104.26667 7.065640e+05 5838.70 3.892467e+02 0.000 235.75 15 0.000000e+00 0.00 7.124027e+05 7.065640e+05 5838.70 NULL
2016 Nyc Housing Authority Landscape Architect 79173.50000 1.583470e+05 4695.44 2.347720e+03 2347.720 66.75 2 2.347720e+03 4695.44 1.630424e+05 1.630424e+05 0.00 NULL
2016 Nyc Housing Authority Lead Abatement Worker 47067.17143 1.647351e+06 74866.99 2.139057e+03 331.090 2129.50 35 3.310900e+02 11588.15 1.722218e+06 1.658939e+06 63278.84 NULL
2016 Nyc Housing Authority Legal Secretarial Assistant 39829.00000 7.965800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.965800e+04 7.965800e+04 0.00 NULL
2016 Nyc Housing Authority Machinist NA NA 5392.03 1.797343e+03 2188.020 100.50 3 1.797343e+03 5392.03 NA NA NA NULL
2016 Nyc Housing Authority Maintenance Worker NA NA 9914188.97 7.178993e+03 5749.480 227048.75 1381 5.749480e+03 7940031.88 NA NA NA NULL
2016 Nyc Housing Authority Management Auditor 66317.46154 8.621270e+05 4089.84 3.146031e+02 0.000 72.00 13 0.000000e+00 0.00 8.662168e+05 8.621270e+05 4089.84 NULL
2016 Nyc Housing Authority Masons Helper NA NA 446916.67 7.705460e+03 4912.380 8584.50 58 4.912380e+03 284918.04 NA NA NA NULL
2016 Nyc Housing Authority Mechanical Engineer 87129.00000 3.485160e+05 3563.76 8.909400e+02 0.000 67.50 4 0.000000e+00 0.00 3.520798e+05 3.485160e+05 3563.76 NULL
2016 Nyc Housing Authority Media Services Technician 56237.00000 5.623700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.623700e+04 5.623700e+04 0.00 NULL
2016 Nyc Housing Authority Motor Grader Operator NA NA 26731.75 1.336588e+04 13365.875 360.50 2 1.336588e+04 26731.75 NA NA NA NULL
2016 Nyc Housing Authority Motor Vehicle Operator 45073.38095 9.465410e+05 81608.45 3.886117e+03 238.910 2394.25 21 2.389100e+02 5017.11 1.028149e+06 9.515581e+05 76591.34 NULL
2016 Nyc Housing Authority Motor Vehicle Supervisor 56311.50000 1.126230e+05 1305.24 6.526200e+02 652.620 33.00 2 6.526200e+02 1305.24 1.139282e+05 1.139282e+05 0.00 NULL
2016 Nyc Housing Authority Office Machine Aide 30664.00000 3.066400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.066400e+04 3.066400e+04 0.00 NULL
2016 Nyc Housing Authority Oil Burner Specialist 62746.33333 1.882390e+05 61906.67 2.063556e+04 23567.070 1426.75 3 2.063556e+04 61906.67 2.501457e+05 2.501457e+05 0.00 NULL
2016 Nyc Housing Authority Painter NA NA 2383245.98 8.303993e+03 2697.700 37144.50 287 2.697700e+03 774239.90 NA NA NA NULL
2016 Nyc Housing Authority Plasterer NA NA 4922327.70 1.452014e+04 11429.360 49403.75 339 1.142936e+04 3874553.04 NA NA NA NULL
2016 Nyc Housing Authority Plumber NA NA 8346031.04 5.795855e+04 50741.640 52878.50 144 5.074164e+04 7306796.16 NA NA NA NULL
2016 Nyc Housing Authority Plumber’s Helper NA NA 3463114.29 2.885929e+04 26898.695 39302.25 120 2.689869e+04 3227843.40 NA NA NA NULL
2016 Nyc Housing Authority Principal Administrative Associate 57848.08235 4.917087e+06 19985.61 2.351248e+02 0.000 569.50 85 0.000000e+00 0.00 4.937073e+06 4.917087e+06 19985.61 NULL
2016 Nyc Housing Authority Printing Press Operator NA NA 50.61 5.061000e+01 50.610 0.00 1 5.061000e+01 50.61 NA NA NA NULL
2016 Nyc Housing Authority Procurement Analyst 58606.92000 2.930346e+06 55407.66 1.108153e+03 0.000 1279.75 50 0.000000e+00 0.00 2.985754e+06 2.930346e+06 55407.66 NULL
2016 Nyc Housing Authority Procurment Analyst Level Iii 72162.00000 7.216200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.216200e+04 7.216200e+04 0.00 NULL
2016 Nyc Housing Authority Project Manager 67539.00000 2.026170e+05 724.40 2.414667e+02 0.000 25.25 3 0.000000e+00 0.00 2.033414e+05 2.026170e+05 724.40 NULL
2016 Nyc Housing Authority Public Records Officer 54391.00000 5.439100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.439100e+04 5.439100e+04 0.00 NULL
2016 Nyc Housing Authority Quality Assurance Specialist 51886.00000 1.037720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.037720e+05 1.037720e+05 0.00 NULL
2016 Nyc Housing Authority Real Property Manager 53058.00000 5.305800e+04 13.82 1.382000e+01 13.820 0.00 1 1.382000e+01 13.82 5.307182e+04 5.307182e+04 0.00 NULL
2016 Nyc Housing Authority Recreation Director 47020.00000 4.702000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.702000e+04 4.702000e+04 0.00 NULL
2016 Nyc Housing Authority Research Assistant 51863.75000 8.298200e+05 3059.38 1.912113e+02 0.000 67.50 16 0.000000e+00 0.00 8.328794e+05 8.298200e+05 3059.38 NULL
2016 Nyc Housing Authority Resident Building Superintendent 82409.02308 2.142635e+07 1799698.21 6.921916e+03 4178.225 30501.25 260 4.178225e+03 1086338.50 2.322604e+07 2.251268e+07 713359.71 NULL
2016 Nyc Housing Authority Roofer NA NA 83203.80 2.447171e+03 539.745 1414.25 34 5.397450e+02 18351.33 NA NA NA NULL
2016 Nyc Housing Authority Secretary 39812.37201 2.161812e+07 138288.55 2.546750e+02 0.000 4520.75 543 0.000000e+00 0.00 2.175641e+07 2.161812e+07 138288.55 NULL
2016 Nyc Housing Authority Secretary Of The Authority 155111.00000 1.551110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.551110e+05 1.551110e+05 0.00 NULL
2016 Nyc Housing Authority Secretary To Deputy Executive Director 67159.80000 3.357990e+05 237.85 4.757000e+01 0.000 0.00 5 0.000000e+00 0.00 3.360368e+05 3.357990e+05 237.85 NULL
2016 Nyc Housing Authority Secretary To Member 69610.00000 6.961000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.961000e+04 6.961000e+04 0.00 NULL
2016 Nyc Housing Authority Senior Estimator 76388.27273 8.402710e+05 1260.77 1.146155e+02 0.000 24.75 11 0.000000e+00 0.00 8.415318e+05 8.402710e+05 1260.77 NULL
2016 Nyc Housing Authority Senior Intergroup Relations Officer 50738.00000 1.014760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.014760e+05 1.014760e+05 0.00 NULL
2016 Nyc Housing Authority Senior Photographer 60788.00000 6.078800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.078800e+04 6.078800e+04 0.00 NULL
2016 Nyc Housing Authority Social Worker 52092.84615 6.772070e+05 67.49 5.191539e+00 0.000 2.00 13 0.000000e+00 0.00 6.772745e+05 6.772070e+05 67.49 NULL
2016 Nyc Housing Authority Space Analyst 68702.00000 6.870200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.870200e+04 6.870200e+04 0.00 NULL
2016 Nyc Housing Authority Special Assistant To Deputy Executive Director 73800.00000 7.380000e+04 -2524.45 -2.524450e+03 -2524.450 12.50 1 -2.524450e+03 -2524.45 7.127555e+04 7.127555e+04 0.00 NULL
2016 Nyc Housing Authority Special Asst To Exec Dir 145038.00000 1.450380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450380e+05 1.450380e+05 0.00 NULL
2016 Nyc Housing Authority Special Officer 39154.20000 1.957710e+05 26547.95 5.309590e+03 4706.730 837.25 5 4.706730e+03 23533.65 2.223190e+05 2.193046e+05 3014.30 NULL
2016 Nyc Housing Authority Staff Analyst 63733.41667 3.824005e+06 7658.18 1.276363e+02 0.000 170.75 60 0.000000e+00 0.00 3.831663e+06 3.824005e+06 7658.18 NULL
2016 Nyc Housing Authority Staff Analyst Trainee 46426.56250 7.428250e+05 417.73 2.610813e+01 0.810 1.00 16 8.100000e-01 12.96 7.432427e+05 7.428380e+05 404.77 NULL
2016 Nyc Housing Authority Stationary Engineer NA NA 20104.08 5.290547e+02 387.105 0.00 38 3.871050e+02 14709.99 NA NA NA NULL
2016 Nyc Housing Authority Statistician 51756.33333 1.552690e+05 11696.60 3.898867e+03 0.000 367.25 3 0.000000e+00 0.00 1.669656e+05 1.552690e+05 11696.60 NULL
2016 Nyc Housing Authority Summer Graduate Intern 27524.80000 1.376240e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.376240e+05 1.376240e+05 0.00 NULL
2016 Nyc Housing Authority Supervising Computer Service Technician 63898.25000 2.555930e+05 2946.92 7.367300e+02 818.525 62.50 4 7.367300e+02 2946.92 2.585399e+05 2.585399e+05 0.00 NULL
2016 Nyc Housing Authority Supervising Housing Groundskeeper 56582.73684 7.525504e+06 1587755.62 1.193801e+04 13268.810 34376.00 133 1.193801e+04 1587755.62 9.113260e+06 9.113260e+06 0.00 NULL
2016 Nyc Housing Authority Supervising Special Officer 50479.00000 1.514370e+05 21056.51 7.018837e+03 9125.480 516.25 3 7.018837e+03 21056.51 1.724935e+05 1.724935e+05 0.00 NULL
2016 Nyc Housing Authority Supervisor Bricklayer NA NA 300917.38 3.009174e+04 29082.645 4368.25 10 2.908265e+04 290826.45 NA NA NA NULL
2016 Nyc Housing Authority Supervisor Carpenter NA NA 978213.56 4.446425e+04 43695.790 7503.00 22 4.369579e+04 961307.38 NA NA NA NULL
2016 Nyc Housing Authority Supervisor Electrician NA NA 617640.36 5.614912e+04 55788.440 7858.25 11 5.578844e+04 613672.84 NA NA NA NULL
2016 Nyc Housing Authority Supervisor Elevator Mechanic NA NA 681073.33 2.432405e+04 26215.590 7972.00 28 2.432405e+04 681073.33 NA NA NA NULL
2016 Nyc Housing Authority Supervisor Glazier NA NA 72743.00 3.637150e+04 36371.500 931.50 2 3.637150e+04 72743.00 NA NA NA NULL
2016 Nyc Housing Authority Supervisor I Social Work 59303.75000 2.372150e+05 133.55 3.338750e+01 0.000 4.00 4 0.000000e+00 0.00 2.373485e+05 2.372150e+05 133.55 NULL
2016 Nyc Housing Authority Supervisor Ii Social Work 69056.00000 8.286720e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 8.286720e+05 8.286720e+05 0.00 NULL
2016 Nyc Housing Authority Supervisor Of Electrical Installations & Maintenance 76773.66667 2.303210e+05 870.79 2.902633e+02 433.730 16.75 3 2.902633e+02 870.79 2.311918e+05 2.311918e+05 0.00 NULL
2016 Nyc Housing Authority Supervisor Of Elevator Maintenance 118675.33333 3.560260e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.560260e+05 3.560260e+05 0.00 NULL
2016 Nyc Housing Authority Supervisor Of Housing Stock Workers 63179.66667 1.705851e+06 90811.10 3.363374e+03 131.340 1642.00 27 1.313400e+02 3546.18 1.796662e+06 1.709397e+06 87264.92 NULL
2016 Nyc Housing Authority Supervisor Of Mechanical Installations & Maintenance 72558.14815 1.959070e+06 26038.96 9.644059e+02 0.000 471.00 27 0.000000e+00 0.00 1.985109e+06 1.959070e+06 26038.96 NULL
2016 Nyc Housing Authority Supervisor Of Mechanics 102263.00000 1.022630e+05 23178.04 2.317804e+04 23178.040 326.50 1 2.317804e+04 23178.04 1.254410e+05 1.254410e+05 0.00 NULL
2016 Nyc Housing Authority Supervisor Of Office Machine Operations 38298.00000 7.659600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.659600e+04 7.659600e+04 0.00 NULL
2016 Nyc Housing Authority Supervisor Painter NA NA 515675.06 8.453690e+03 3689.870 6876.50 61 3.689870e+03 225082.07 NA NA NA NULL
2016 Nyc Housing Authority Supervisor Plasterer NA NA 959817.56 3.199392e+04 30426.140 9311.25 30 3.042614e+04 912784.20 NA NA NA NULL
2016 Nyc Housing Authority Supervisor Plumber NA NA 1846636.05 8.393800e+04 78791.070 11168.00 22 7.879107e+04 1733403.54 NA NA NA NULL
2016 Nyc Housing Authority Supervisor Roofer NA NA 35070.31 4.383789e+03 830.595 589.75 8 8.305950e+02 6644.76 NA NA NA NULL
2016 Nyc Housing Authority Supv Of Housing Exterminator 55196.00000 3.863720e+05 45612.60 6.516086e+03 3775.270 1027.25 7 3.775270e+03 26426.89 4.319846e+05 4.127989e+05 19185.71 NULL
2016 Nyc Housing Authority Supv Of Housing Exterminators 78028.00000 7.802800e+04 12269.04 1.226904e+04 12269.040 215.75 1 1.226904e+04 12269.04 9.029704e+04 9.029704e+04 0.00 NULL
2016 Nyc Housing Authority Telecommunication Manager 102709.00000 1.027090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.027090e+05 1.027090e+05 0.00 NULL
2016 Nyc Housing Authority Telecommunications Associate 72972.11111 6.567490e+05 6635.87 7.373189e+02 138.180 134.75 9 1.381800e+02 1243.62 6.633849e+05 6.579926e+05 5392.25 NULL
2016 Nyc Housing Authority Welder NA NA 129809.32 1.622617e+04 17377.740 1718.75 8 1.622617e+04 129809.32 NA NA NA NULL
2016 Nyc Housing Authority Worker’s Compensation Benefits Examiner 50203.50000 1.004070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.004070e+05 1.004070e+05 0.00 NULL
2016 Nyc Police Pension Fund Accountant 76561.40000 3.828070e+05 18477.07 3.695414e+03 0.000 361.75 5 0.000000e+00 0.00 4.012841e+05 3.828070e+05 18477.07 NULL
2016 Nyc Police Pension Fund Administrative Accountant 141550.00000 4.246500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.246500e+05 4.246500e+05 0.00 NULL
2016 Nyc Police Pension Fund Administrative Manager 95869.00000 9.586900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.586900e+04 9.586900e+04 0.00 NULL
2016 Nyc Police Pension Fund Administrative Retirement Benefits Specialist 115113.83333 1.381366e+06 4152.45 3.460375e+02 0.000 53.00 12 0.000000e+00 0.00 1.385518e+06 1.381366e+06 4152.45 NULL
2016 Nyc Police Pension Fund Administrative Staff Analyst 131960.20000 6.598010e+05 361.25 7.225000e+01 0.000 7.00 5 0.000000e+00 0.00 6.601622e+05 6.598010e+05 361.25 NULL
2016 Nyc Police Pension Fund Agency Attorney 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2016 Nyc Police Pension Fund Agency Attorney Interne 56257.00000 5.625700e+04 292.52 2.925200e+02 292.520 8.25 1 2.925200e+02 292.52 5.654952e+04 5.654952e+04 0.00 NULL
2016 Nyc Police Pension Fund Assistant Retirement Benefits Examiner 52334.12500 4.186730e+05 22646.04 2.830755e+03 478.665 722.50 8 4.786650e+02 3829.32 4.413190e+05 4.225023e+05 18816.72 NULL
2016 Nyc Police Pension Fund Associate Retirement Benefits Examiner 70584.29412 1.199933e+06 24786.29 1.458017e+03 10.830 540.25 17 1.083000e+01 184.11 1.224719e+06 1.200117e+06 24602.18 NULL
2016 Nyc Police Pension Fund Associate Staff Analyst 92766.00000 9.276600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.276600e+04 9.276600e+04 0.00 NULL
2016 Nyc Police Pension Fund Certified Local Area Network Administrator 104900.00000 1.049000e+05 17552.88 1.755288e+04 17552.880 244.50 1 1.755288e+04 17552.88 1.224529e+05 1.224529e+05 0.00 NULL
2016 Nyc Police Pension Fund Clerical Associate 53582.64667 9.644876e+05 34845.24 1.935847e+03 238.780 976.75 18 2.387800e+02 4298.04 9.993329e+05 9.687857e+05 30547.20 NULL
2016 Nyc Police Pension Fund College Aide 3084.39189 1.141225e+05 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 1.141225e+05 1.141225e+05 0.00 NULL
2016 Nyc Police Pension Fund Community Assistant 33999.08333 3.059918e+05 6636.34 7.373711e+02 74.000 276.75 9 7.400000e+01 666.00 3.126281e+05 3.066578e+05 5970.34 NULL
2016 Nyc Police Pension Fund Community Associate 45550.93690 1.320977e+06 52812.05 1.821105e+03 447.800 1760.50 29 4.478000e+02 12986.20 1.373789e+06 1.333963e+06 39825.85 NULL
2016 Nyc Police Pension Fund Community Coordinator 69261.33333 4.155680e+05 7684.96 1.280827e+03 0.000 214.25 6 0.000000e+00 0.00 4.232530e+05 4.155680e+05 7684.96 NULL
2016 Nyc Police Pension Fund Computer Associate 89388.00000 8.938800e+04 12080.30 1.208030e+04 12080.300 202.75 1 1.208030e+04 12080.30 1.014683e+05 1.014683e+05 0.00 NULL
2016 Nyc Police Pension Fund Computer Programmer Analyst 61302.00000 1.226040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.226040e+05 1.226040e+05 0.00 NULL
2016 Nyc Police Pension Fund Computer Specialist 108879.00000 6.532740e+05 25470.13 4.245022e+03 0.000 305.50 6 0.000000e+00 0.00 6.787441e+05 6.532740e+05 25470.13 NULL
2016 Nyc Police Pension Fund Computer Systems Manager 156819.20000 7.840960e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.840960e+05 7.840960e+05 0.00 NULL
2016 Nyc Police Pension Fund Deputy Director 195014.50000 3.900290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.900290e+05 3.900290e+05 0.00 NULL
2016 Nyc Police Pension Fund Executive Agency Counsel 120307.00000 1.203070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.203070e+05 1.203070e+05 0.00 NULL
2016 Nyc Police Pension Fund Executive Director 205868.00000 2.058680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.058680e+05 2.058680e+05 0.00 NULL
2016 Nyc Police Pension Fund Management Auditor 67922.50000 1.358450e+05 8604.56 4.302280e+03 4302.280 191.25 2 4.302280e+03 8604.56 1.444496e+05 1.444496e+05 0.00 NULL
2016 Nyc Police Pension Fund Paralegal Aide 49303.00000 9.860600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.860600e+04 9.860600e+04 0.00 NULL
2016 Nyc Police Pension Fund Principal Administrative Associate 62240.14286 4.356810e+05 24236.80 3.462400e+03 3778.130 516.25 7 3.462400e+03 24236.80 4.599178e+05 4.599178e+05 0.00 NULL
2016 Nyc Police Pension Fund Secretary To The Executive Director 182300.00000 1.823000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.823000e+05 1.823000e+05 0.00 NULL
2016 Nyc Police Pension Fund Supervisor Of Office Machine Operations 60382.50000 1.207650e+05 5657.67 2.828835e+03 2828.835 121.00 2 2.828835e+03 5657.67 1.264227e+05 1.264227e+05 0.00 NULL
2016 Off Of Payroll Administration Accountant 66834.00000 2.005020e+05 154.51 5.150333e+01 0.000 3.50 3 0.000000e+00 0.00 2.006565e+05 2.005020e+05 154.51 NULL
2016 Off Of Payroll Administration Adm Manager-Non-Mgrl 84896.00000 8.489600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.489600e+04 8.489600e+04 0.00 NULL
2016 Off Of Payroll Administration Admin Contract Specialist 124354.00000 1.243540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.243540e+05 1.243540e+05 0.00 NULL
2016 Off Of Payroll Administration Administrative Accountant 111678.66667 6.700720e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.700720e+05 6.700720e+05 0.00 NULL
2016 Off Of Payroll Administration Administrative Procurement Analyst 115630.00000 1.156300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.156300e+05 1.156300e+05 0.00 NULL
2016 Off Of Payroll Administration Administrative Staff Analyst 100934.05263 1.917747e+06 525.68 2.766737e+01 0.000 10.00 19 0.000000e+00 0.00 1.918273e+06 1.917747e+06 525.68 NULL
2016 Off Of Payroll Administration Associate Executive Director 198731.00000 1.987310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.987310e+05 1.987310e+05 0.00 NULL
2016 Off Of Payroll Administration Associate Staff Analyst 77686.28571 1.087608e+06 231.09 1.650643e+01 0.000 5.25 14 0.000000e+00 0.00 1.087839e+06 1.087608e+06 231.09 NULL
2016 Off Of Payroll Administration Bookkeeper 61550.00000 6.155000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.155000e+04 6.155000e+04 0.00 NULL
2016 Off Of Payroll Administration Certified It Developer 112148.00000 1.121480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.121480e+05 1.121480e+05 0.00 NULL
2016 Off Of Payroll Administration Clerical Associate 44724.04545 9.839290e+05 14043.43 6.383377e+02 0.000 379.50 22 0.000000e+00 0.00 9.979724e+05 9.839290e+05 14043.43 NULL
2016 Off Of Payroll Administration Community Assistant 35923.00000 7.184600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.184600e+04 7.184600e+04 0.00 NULL
2016 Off Of Payroll Administration Community Associate 53071.50000 2.122860e+05 422.09 1.055225e+02 0.000 12.50 4 0.000000e+00 0.00 2.127081e+05 2.122860e+05 422.09 NULL
2016 Off Of Payroll Administration Computer Aide-Non-Spvr 42618.00000 4.261800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.261800e+04 4.261800e+04 0.00 NULL
2016 Off Of Payroll Administration Computer Associate 71309.05000 1.426181e+06 8795.73 4.397865e+02 0.000 185.75 20 0.000000e+00 0.00 1.434977e+06 1.426181e+06 8795.73 NULL
2016 Off Of Payroll Administration Computer Programmer Analyst 66755.00000 6.675500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.675500e+04 6.675500e+04 0.00 NULL
2016 Off Of Payroll Administration Computer Specialist 99440.87500 1.591054e+06 12848.31 8.030194e+02 0.000 177.75 16 0.000000e+00 0.00 1.603902e+06 1.591054e+06 12848.31 NULL
2016 Off Of Payroll Administration Computer Systems Manager 121463.52381 2.550734e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 2.550734e+06 2.550734e+06 0.00 NULL
2016 Off Of Payroll Administration Custodian 55121.00000 5.512100e+04 4379.53 4.379530e+03 4379.530 110.50 1 4.379530e+03 4379.53 5.950053e+04 5.950053e+04 0.00 NULL
2016 Off Of Payroll Administration Deputy Executive Director 198809.00000 1.988090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.988090e+05 1.988090e+05 0.00 NULL
2016 Off Of Payroll Administration Executive Agency Counsel 118039.00000 1.180390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.180390e+05 1.180390e+05 0.00 NULL
2016 Off Of Payroll Administration Executive Director 199875.00000 1.998750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.998750e+05 1.998750e+05 0.00 NULL
2016 Off Of Payroll Administration Management Auditor 69687.00000 2.787480e+05 4372.18 1.093045e+03 0.000 102.75 4 0.000000e+00 0.00 2.831202e+05 2.787480e+05 4372.18 NULL
2016 Off Of Payroll Administration Principal Administrative Associate 63365.56522 1.457408e+06 10886.51 4.733265e+02 0.000 252.25 23 0.000000e+00 0.00 1.468295e+06 1.457408e+06 10886.51 NULL
2016 Off Of Payroll Administration Staff Analyst 63963.25000 7.675590e+05 334.38 2.786500e+01 0.000 6.00 12 0.000000e+00 0.00 7.678934e+05 7.675590e+05 334.38 NULL
2016 Office Of Collective Bargainin Administrative Staff Analyst 133000.00000 1.330000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.330000e+05 1.330000e+05 0.00 NULL
2016 Office Of Collective Bargainin Clerical Associate 43294.00000 4.329400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.329400e+04 4.329400e+04 0.00 NULL
2016 Office Of Collective Bargainin College Aide 5483.55000 5.483550e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.483550e+03 5.483550e+03 0.00 NULL
2016 Office Of Collective Bargainin Community Associate 45000.00000 4.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.500000e+04 4.500000e+04 0.00 NULL
2016 Office Of Collective Bargainin Computer Systems Manager 96650.00000 9.665000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.665000e+04 9.665000e+04 0.00 NULL
2016 Office Of Collective Bargainin Deputy Director 170000.00000 3.400000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.400000e+05 3.400000e+05 0.00 NULL
2016 Office Of Collective Bargainin Director Of Information And Research 133000.00000 1.330000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.330000e+05 1.330000e+05 0.00 NULL
2016 Office Of Collective Bargainin Director Of The Office Of Collective Bargaining 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Office Of Collective Bargainin Executive Assistant To The Director 109000.00000 1.090000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.090000e+05 1.090000e+05 0.00 NULL
2016 Office Of Collective Bargainin Labor Relations Trial Examiner 118000.00000 5.900000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.900000e+05 5.900000e+05 0.00 NULL
2016 Office Of Collective Bargainin Secretary To The Deputy Chair 46888.50000 9.377700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.377700e+04 9.377700e+04 0.00 NULL
2016 Office Of Collective Bargainin Secy To The Director Of Collective Bargaining 74750.00000 7.475000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.475000e+04 7.475000e+04 0.00 NULL
2016 Office Of Collective Bargainin Staff Analyst 68767.00000 6.876700e+04 39.46 3.946000e+01 39.460 0.00 1 3.946000e+01 39.46 6.880646e+04 6.880646e+04 0.00 NULL
2016 Office Of Emergency Management Adm Manager-Non-Mgrl 84920.00000 8.492000e+04 232.40 2.324000e+02 232.400 0.00 1 2.324000e+02 232.40 8.515240e+04 8.515240e+04 0.00 NULL
2016 Office Of Emergency Management Administration Public Record Officer 83608.00000 8.360800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.360800e+04 8.360800e+04 0.00 NULL
2016 Office Of Emergency Management Administrative Public Information Specialist 101831.00000 1.018310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.018310e+05 1.018310e+05 0.00 NULL
2016 Office Of Emergency Management Administrative Staff Analyst 109333.50000 2.186670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.186670e+05 2.186670e+05 0.00 NULL
2016 Office Of Emergency Management Agency Attorney 68390.00000 1.367800e+05 2411.26 1.205630e+03 1205.630 57.00 2 1.205630e+03 2411.26 1.391913e+05 1.391913e+05 0.00 NULL
2016 Office Of Emergency Management Certified It Administrator 121127.00000 1.211270e+05 5323.65 5.323650e+03 5323.650 78.00 1 5.323650e+03 5323.65 1.264506e+05 1.264506e+05 0.00 NULL
2016 Office Of Emergency Management Commissioner Of Emergency Management 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Office Of Emergency Management Community Associate 43523.75000 1.740950e+05 5539.41 1.384852e+03 263.325 153.25 4 2.633250e+02 1053.30 1.796344e+05 1.751483e+05 4486.11 NULL
2016 Office Of Emergency Management Community Coordinator 59911.90750 2.396476e+05 24950.55 6.237637e+03 4492.645 574.50 4 4.492645e+03 17970.58 2.645982e+05 2.576182e+05 6979.97 NULL
2016 Office Of Emergency Management Computer Systems Manager 113987.00000 2.279740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.279740e+05 2.279740e+05 0.00 NULL
2016 Office Of Emergency Management Deputy Commissioner 169806.00000 1.698060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.698060e+05 1.698060e+05 0.00 NULL
2016 Office Of Emergency Management Emergency Preparedness Manager 101746.75633 6.104805e+06 10263.13 1.710522e+02 0.000 234.50 60 0.000000e+00 0.00 6.115069e+06 6.104805e+06 10263.13 NULL
2016 Office Of Emergency Management Emergency Preparedness Specialist 65441.10002 6.674992e+06 390096.68 3.824477e+03 2285.510 8904.75 102 2.285510e+03 233122.02 7.065089e+06 6.908114e+06 156974.66 NULL
2016 Office Of Emergency Management Executive Agency Counsel 140311.00000 2.806220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.806220e+05 2.806220e+05 0.00 NULL
2016 Office Of Emergency Management First Deputy Commissioner 209020.00000 2.090200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.090200e+05 2.090200e+05 0.00 NULL
2016 Office Of Emergency Management Secretary To The Commissioner 88768.00000 8.876800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.876800e+04 8.876800e+04 0.00 NULL
2016 Office Of Emergency Management Staff Analyst 56560.00000 5.656000e+04 10.75 1.075000e+01 10.750 0.00 1 1.075000e+01 10.75 5.657075e+04 5.657075e+04 0.00 NULL
2016 Office Of Labor Relations Accountant 66478.25000 2.659130e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.659130e+05 2.659130e+05 0.00 NULL
2016 Office Of Labor Relations Administrative Labor Relations Analyst 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2016 Office Of Labor Relations Administrative Manager 98474.66667 5.908480e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.908480e+05 5.908480e+05 0.00 NULL
2016 Office Of Labor Relations Administrative Staff Analyst 130058.00000 9.104060e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.104060e+05 9.104060e+05 0.00 NULL
2016 Office Of Labor Relations Agency Attorney 85638.00000 1.712760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.712760e+05 1.712760e+05 0.00 NULL
2016 Office Of Labor Relations Agency Chief Contracting Officer 83037.00000 8.303700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.303700e+04 8.303700e+04 0.00 NULL
2016 Office Of Labor Relations Assistant Commissioner Of Labor Relations 150032.16667 9.001930e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.001930e+05 9.001930e+05 0.00 NULL
2016 Office Of Labor Relations Associate Counsel 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2016 Office Of Labor Relations Associate Labor Relations Analyst 79483.00000 7.948300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.948300e+04 7.948300e+04 0.00 NULL
2016 Office Of Labor Relations Associate Staff Analyst 73389.00000 2.201670e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.201670e+05 2.201670e+05 0.00 NULL
2016 Office Of Labor Relations Clerical Associate 42473.60000 4.247360e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.247360e+05 4.247360e+05 0.00 NULL
2016 Office Of Labor Relations Commissioner Of Labor Relations 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Office Of Labor Relations Community Assistant 35514.54418 3.551454e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 3.551454e+05 3.551454e+05 0.00 NULL
2016 Office Of Labor Relations Community Associate 42727.66667 5.127320e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 5.127320e+05 5.127320e+05 0.00 NULL
2016 Office Of Labor Relations Computer Associate 82799.00000 2.483970e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.483970e+05 2.483970e+05 0.00 NULL
2016 Office Of Labor Relations Computer Specialist 92096.00000 9.209600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.209600e+04 9.209600e+04 0.00 NULL
2016 Office Of Labor Relations Computer Systems Manager 132326.00000 2.646520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.646520e+05 2.646520e+05 0.00 NULL
2016 Office Of Labor Relations Counsel 186220.00000 1.862200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.862200e+05 1.862200e+05 0.00 NULL
2016 Office Of Labor Relations Customer Information Representative 37900.00000 3.790000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.790000e+04 3.790000e+04 0.00 NULL
2016 Office Of Labor Relations Deputy Assistant Counsel 78704.60000 7.870460e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.870460e+05 7.870460e+05 0.00 NULL
2016 Office Of Labor Relations Deputy Commissioner Of Labor Relations 206704.00000 4.134080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.134080e+05 4.134080e+05 0.00 NULL
2016 Office Of Labor Relations Director Employee Assistance Program 122600.00000 1.226000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.226000e+05 1.226000e+05 0.00 NULL
2016 Office Of Labor Relations Employee Assistance Program Specialist 51363.06657 6.163568e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 6.163568e+05 6.163568e+05 0.00 NULL
2016 Office Of Labor Relations Employee Health Benefits Program Director 197749.00000 1.977490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.977490e+05 1.977490e+05 0.00 NULL
2016 Office Of Labor Relations Executive Agency Counsel 145638.00000 1.456380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.456380e+05 1.456380e+05 0.00 NULL
2016 Office Of Labor Relations Insurance Advisor 66460.28600 2.658411e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.658411e+05 2.658411e+05 0.00 NULL
2016 Office Of Labor Relations Labor Relations Analyst 62473.00000 3.748380e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.748380e+05 3.748380e+05 0.00 NULL
2016 Office Of Labor Relations Labor Relations Analyst Trainee 44345.50000 8.869100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.869100e+04 8.869100e+04 0.00 NULL
2016 Office Of Labor Relations Management Auditor 55623.00000 5.562300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.562300e+04 5.562300e+04 0.00 NULL
2016 Office Of Labor Relations Principal Administrative Associate 58486.76446 8.188147e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 8.188147e+05 8.188147e+05 0.00 NULL
2016 Office Of Labor Relations Secretary 40887.00000 1.226610e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.226610e+05 1.226610e+05 0.00 NULL
2016 Office Of Labor Relations Secretary To The Commissioner Of Labor Relations 91046.00000 9.104600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.104600e+04 9.104600e+04 0.00 NULL
2016 Office Of Labor Relations Secretary To The First Deputy Commissioner 65806.00000 6.580600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.580600e+04 6.580600e+04 0.00 NULL
2016 Office Of Labor Relations Staff Analyst 66383.00000 6.638300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.638300e+04 6.638300e+04 0.00 NULL
2016 Office Of Labor Relations Supervisor Of Office Machine Operations 57537.00000 5.753700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.753700e+04 5.753700e+04 0.00 NULL
2016 Office Of Labor Relations Tests And Measurement Specialist 81793.00000 8.179300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.179300e+04 8.179300e+04 0.00 NULL
2016 Office Of Management & Budget Administrative Manager 164762.00000 1.647620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.647620e+05 1.647620e+05 0.00 NULL
2016 Office Of Management & Budget Administrative Project Manager 176864.00000 1.768640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.768640e+05 1.768640e+05 0.00 NULL
2016 Office Of Management & Budget Administrative Staff Analyst 148111.18182 1.629223e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.629223e+06 1.629223e+06 0.00 NULL
2016 Office Of Management & Budget Budget Analyst 78817.17249 3.010816e+07 550551.76 1.441235e+03 0.000 13654.50 382 0.000000e+00 0.00 3.065871e+07 3.010816e+07 550551.76 NULL
2016 Office Of Management & Budget College Aide 4776.76429 3.343735e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.343735e+04 3.343735e+04 0.00 NULL
2016 Office Of Management & Budget Community Associate 34429.00000 3.442900e+04 1949.55 1.949550e+03 1949.550 69.25 1 1.949550e+03 1949.55 3.637855e+04 3.637855e+04 0.00 NULL
2016 Office Of Management & Budget Computer Operations Manager 120162.00000 1.201620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.201620e+05 1.201620e+05 0.00 NULL
2016 Office Of Management & Budget Computer Specialist 74321.00000 7.432100e+04 906.13 9.061300e+02 906.130 15.25 1 9.061300e+02 906.13 7.522713e+04 7.522713e+04 0.00 NULL
2016 Office Of Management & Budget Computer Systems Manager 150388.00000 7.519400e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.519400e+05 7.519400e+05 0.00 NULL
2016 Office Of Management & Budget Deputy Director Of Management & Budget 201474.00000 4.029480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.029480e+05 4.029480e+05 0.00 NULL
2016 Office Of Management & Budget Deputy General Counsel 137665.00000 1.376650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.376650e+05 1.376650e+05 0.00 NULL
2016 Office Of Management & Budget Director Of Financing Policy Coordination 201474.00000 2.014740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.014740e+05 2.014740e+05 0.00 NULL
2016 Office Of Management & Budget Director Of Management & Budget 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Office Of Management & Budget Director Of Public Affairs 107625.00000 1.076250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.076250e+05 1.076250e+05 0.00 NULL
2016 Office Of Management & Budget Executive Agency Counsel 184903.00000 3.698060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.698060e+05 3.698060e+05 0.00 NULL
2016 Office Of Management & Budget Executive Assistant To The Director Of Management & Budget 209020.00000 2.090200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.090200e+05 2.090200e+05 0.00 NULL
2016 Office Of Management & Budget Statistical Secretary 59846.16667 1.077231e+06 8536.13 4.742294e+02 0.000 294.00 18 0.000000e+00 0.00 1.085767e+06 1.077231e+06 8536.13 NULL
2016 Office Of Management & Budget Summer College Intern 2266.05000 9.064200e+03 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 9.064200e+03 9.064200e+03 0.00 NULL
2016 Office Of Management & Budget Summer Graduate Intern 4333.30000 2.166650e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.166650e+04 2.166650e+04 0.00 NULL
2016 Office Of Management & Budget Supervisor Of Office Machine Operations 45013.00000 4.501300e+04 2633.82 2.633820e+03 2633.820 79.00 1 2.633820e+03 2633.82 4.764682e+04 4.764682e+04 0.00 NULL
2016 Office Of The Actuary Actuarial Specialist Level I 68186.60000 1.363732e+06 118413.00 5.920650e+03 5147.120 2492.25 20 5.147120e+03 102942.40 1.482145e+06 1.466674e+06 15470.60 NULL
2016 Office Of The Actuary Actuarial Specialist Level Ii, Oj 109020.00000 2.180400e+05 9596.65 4.798325e+03 4798.325 155.50 2 4.798325e+03 9596.65 2.276366e+05 2.276366e+05 0.00 NULL
2016 Office Of The Actuary Administrative Actuary 179508.57143 1.256560e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.256560e+06 1.256560e+06 0.00 NULL
2016 Office Of The Actuary Administrative Staff Analyst 110277.00000 1.102770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.102770e+05 1.102770e+05 0.00 NULL
2016 Office Of The Actuary Certified Local Area Network Administrator 85176.00000 8.517600e+04 5790.45 5.790450e+03 5790.450 121.00 1 5.790450e+03 5790.45 9.096645e+04 9.096645e+04 0.00 NULL
2016 Office Of The Actuary Chief Actuary 281875.00000 2.818750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.818750e+05 2.818750e+05 0.00 NULL
2016 Office Of The Actuary Clerical Associate 46000.00000 4.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.600000e+04 4.600000e+04 0.00 NULL
2016 Office Of The Actuary College Aide 1421.35000 2.842700e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.842700e+03 2.842700e+03 0.00 NULL
2016 Office Of The Actuary Executive Agency Counsel 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2016 Office Of The Actuary Procurement Analyst 47177.00000 4.717700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.717700e+04 4.717700e+04 0.00 NULL
2016 Office Of The Actuary Secretary 52069.00000 1.041380e+05 8342.87 4.171435e+03 4171.435 205.25 2 4.171435e+03 8342.87 1.124809e+05 1.124809e+05 0.00 NULL
2016 Office Of The Actuary Secretary To The Chief Actuary 72000.00000 7.200000e+04 30810.85 3.081085e+04 30810.850 589.75 1 3.081085e+04 30810.85 1.028109e+05 1.028109e+05 0.00 NULL
2016 Office Of The Comptroller Accountant 56061.53778 5.325846e+06 51799.77 5.452607e+02 0.000 1116.75 95 0.000000e+00 0.00 5.377646e+06 5.325846e+06 51799.77 NULL
2016 Office Of The Comptroller Adm Manager-Non-Mgrl 68535.97959 3.358263e+06 16828.67 3.434422e+02 0.000 397.50 49 0.000000e+00 0.00 3.375092e+06 3.358263e+06 16828.67 NULL
2016 Office Of The Comptroller Administration Public Record Officer 70691.00000 7.069100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.069100e+04 7.069100e+04 0.00 NULL
2016 Office Of The Comptroller Administrative Accountant 113469.15385 2.950198e+06 99.68 3.833846e+00 0.000 1.50 26 0.000000e+00 0.00 2.950298e+06 2.950198e+06 99.68 NULL
2016 Office Of The Comptroller Administrative Architect 134779.00000 1.347790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.347790e+05 1.347790e+05 0.00 NULL
2016 Office Of The Comptroller Administrative City Planner 115674.66667 3.470240e+05 18.53 6.176667e+00 0.000 0.00 3 0.000000e+00 0.00 3.470425e+05 3.470240e+05 18.53 NULL
2016 Office Of The Comptroller Administrative Claim Examiner 87715.32757 3.245467e+06 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 3.245467e+06 3.245467e+06 0.00 NULL
2016 Office Of The Comptroller Administrative Community Relations Specialist 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2016 Office Of The Comptroller Administrative Engineer 106917.50000 2.031432e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.031432e+06 2.031432e+06 0.00 NULL
2016 Office Of The Comptroller Administrative Graphic Artist 72826.00000 7.282600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.282600e+04 7.282600e+04 0.00 NULL
2016 Office Of The Comptroller Administrative Labor Relations Analyst 97490.00000 9.749000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.749000e+04 9.749000e+04 0.00 NULL
2016 Office Of The Comptroller Administrative Management Auditor 120136.23529 2.042316e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.042316e+06 2.042316e+06 0.00 NULL
2016 Office Of The Comptroller Administrative Manager 127487.41463 5.226984e+06 0.00 0.000000e+00 0.000 0.00 41 0.000000e+00 0.00 5.226984e+06 5.226984e+06 0.00 NULL
2016 Office Of The Comptroller Administrative Procurement Analyst 91652.73333 1.374791e+06 27231.62 1.815441e+03 0.000 626.25 15 0.000000e+00 0.00 1.402023e+06 1.374791e+06 27231.62 NULL
2016 Office Of The Comptroller Administrative Project Manager 102777.00000 9.249930e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.249930e+05 9.249930e+05 0.00 NULL
2016 Office Of The Comptroller Administrative Public Information Specialist 72526.42857 5.076850e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.076850e+05 5.076850e+05 0.00 NULL
2016 Office Of The Comptroller Administrative Staff Analyst 124581.88333 7.474913e+06 855.25 1.425417e+01 0.000 17.25 60 0.000000e+00 0.00 7.475768e+06 7.474913e+06 855.25 NULL
2016 Office Of The Comptroller Administrative Supervisor Of Building Maintenance 77900.00000 7.790000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.790000e+04 7.790000e+04 0.00 NULL
2016 Office Of The Comptroller Agency Attorney 82817.66667 2.484530e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.484530e+05 2.484530e+05 0.00 NULL
2016 Office Of The Comptroller Assistant Budget Analyst 56322.25000 2.252890e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.252890e+05 2.252890e+05 0.00 NULL
2016 Office Of The Comptroller Assistant Secretary To The Comptroller 50963.00000 1.019260e+05 59.82 2.991000e+01 29.910 2.00 2 2.991000e+01 59.82 1.019858e+05 1.019858e+05 0.00 NULL
2016 Office Of The Comptroller Assistant To The Comptroller 188556.00000 1.885560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.885560e+05 1.885560e+05 0.00 NULL
2016 Office Of The Comptroller Associate Project Manager 88887.33333 7.999860e+05 6421.34 7.134822e+02 0.000 119.75 9 0.000000e+00 0.00 8.064073e+05 7.999860e+05 6421.34 NULL
2016 Office Of The Comptroller Associate Staff Analyst 77688.29412 1.320701e+06 500.13 2.941941e+01 0.000 10.50 17 0.000000e+00 0.00 1.321201e+06 1.320701e+06 500.13 NULL
2016 Office Of The Comptroller Bookkeeper 46499.32690 4.649933e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.649933e+05 4.649933e+05 0.00 NULL
2016 Office Of The Comptroller Budget Analyst 72641.57143 5.084910e+05 3881.50 5.545000e+02 0.000 107.25 7 0.000000e+00 0.00 5.123725e+05 5.084910e+05 3881.50 NULL
2016 Office Of The Comptroller Business Promotion Coordinator 57740.66667 6.928880e+05 0.00 0.000000e+00 0.000 7.50 12 0.000000e+00 0.00 6.928880e+05 6.928880e+05 0.00 NULL
2016 Office Of The Comptroller Claim Specialist 59216.37838 2.191006e+06 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 2.191006e+06 2.191006e+06 0.00 NULL
2016 Office Of The Comptroller Clerical Aide 13743.32400 2.748665e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.748665e+04 2.748665e+04 0.00 NULL
2016 Office Of The Comptroller Clerical Associate 44706.63889 1.609439e+06 4337.96 1.204989e+02 0.000 133.33 36 0.000000e+00 0.00 1.613777e+06 1.609439e+06 4337.96 NULL
2016 Office Of The Comptroller College Aide 8661.64000 3.464656e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.464656e+04 3.464656e+04 0.00 NULL
2016 Office Of The Comptroller Community Assistant 35615.50000 7.123100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.123100e+04 7.123100e+04 0.00 NULL
2016 Office Of The Comptroller Community Associate 46363.81818 5.100020e+05 319.30 2.902727e+01 0.000 12.50 11 0.000000e+00 0.00 5.103213e+05 5.100020e+05 319.30 NULL
2016 Office Of The Comptroller Community Coordinator 58928.00000 2.357120e+05 100.40 2.510000e+01 0.000 0.00 4 0.000000e+00 0.00 2.358124e+05 2.357120e+05 100.40 NULL
2016 Office Of The Comptroller Community Service Aide 29897.00000 2.989700e+04 286.37 2.863700e+02 286.370 0.00 1 2.863700e+02 286.37 3.018337e+04 3.018337e+04 0.00 NULL
2016 Office Of The Comptroller Comptroller 209050.00000 2.090500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.090500e+05 2.090500e+05 0.00 NULL
2016 Office Of The Comptroller Computer Aide-Non-Spvr 45913.75000 5.509650e+05 10763.40 8.969500e+02 36.460 309.25 12 3.646000e+01 437.52 5.617284e+05 5.514025e+05 10325.88 NULL
2016 Office Of The Comptroller Computer Associate 69204.40000 6.920440e+05 20278.18 2.027818e+03 98.765 373.25 10 9.876500e+01 987.65 7.123222e+05 6.930317e+05 19290.53 NULL
2016 Office Of The Comptroller Computer Operations Manager 167382.00000 3.347640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.347640e+05 3.347640e+05 0.00 NULL
2016 Office Of The Comptroller Computer Programmer Analyst 61686.40000 3.084320e+05 466.19 9.323800e+01 0.000 12.00 5 0.000000e+00 0.00 3.088982e+05 3.084320e+05 466.19 NULL
2016 Office Of The Comptroller Computer Service Technician 51018.50000 1.020370e+05 565.63 2.828150e+02 282.815 16.75 2 2.828150e+02 565.63 1.026026e+05 1.026026e+05 0.00 NULL
2016 Office Of The Comptroller Computer Specialist 89730.83333 1.076770e+06 108.88 9.073333e+00 0.000 1.00 12 0.000000e+00 0.00 1.076879e+06 1.076770e+06 108.88 NULL
2016 Office Of The Comptroller Computer Systems Manager 111114.62500 1.777834e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.777834e+06 1.777834e+06 0.00 NULL
2016 Office Of The Comptroller Confidential Assistant To The Comptroller 126142.00000 1.261420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.261420e+05 1.261420e+05 0.00 NULL
2016 Office Of The Comptroller Confidential Investigator 64947.75000 2.597910e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.597910e+05 2.597910e+05 0.00 NULL
2016 Office Of The Comptroller Confidential Strategy Planner 71028.80000 3.551440e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.551440e+05 3.551440e+05 0.00 NULL
2016 Office Of The Comptroller Construction Project Manager 95353.00000 9.535300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.535300e+04 9.535300e+04 0.00 NULL
2016 Office Of The Comptroller Construction Project Manager Intern 53808.00000 5.380800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.380800e+04 5.380800e+04 0.00 NULL
2016 Office Of The Comptroller Custodial Assistant 30101.20472 2.408096e+05 42597.98 5.324748e+03 2938.995 1765.25 8 2.938995e+03 23511.96 2.834076e+05 2.643216e+05 19086.02 NULL
2016 Office Of The Comptroller Custodian 61301.33333 1.839040e+05 5944.03 1.981343e+03 1495.380 161.00 3 1.495380e+03 4486.14 1.898480e+05 1.883901e+05 1457.89 NULL
2016 Office Of The Comptroller Director Of Audits 198147.00000 1.981470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.981470e+05 1.981470e+05 0.00 NULL
2016 Office Of The Comptroller Economist 62677.87500 5.014230e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.014230e+05 5.014230e+05 0.00 NULL
2016 Office Of The Comptroller Executive Agency Counsel 131223.73333 3.936712e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 3.936712e+06 3.936712e+06 0.00 NULL
2016 Office Of The Comptroller Executive Assistant To The Comptroller 150115.50000 3.002310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.002310e+05 3.002310e+05 0.00 NULL
2016 Office Of The Comptroller First Deputy Comptroller 205896.00000 2.058960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.058960e+05 2.058960e+05 0.00 NULL
2016 Office Of The Comptroller Fraud Investigator 63887.00000 2.555480e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.555480e+05 2.555480e+05 0.00 NULL
2016 Office Of The Comptroller Investment Analyst 58173.12500 1.396155e+06 7406.90 3.086208e+02 0.000 124.50 24 0.000000e+00 0.00 1.403562e+06 1.396155e+06 7406.90 NULL
2016 Office Of The Comptroller Management Auditor 73042.09477 4.236441e+06 31052.47 5.353874e+02 0.000 557.50 58 0.000000e+00 0.00 4.267494e+06 4.236441e+06 31052.47 NULL
2016 Office Of The Comptroller Management Auditor Trainee 46107.50000 1.844300e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.844300e+05 1.844300e+05 0.00 NULL
2016 Office Of The Comptroller Office Machine Aide 30588.98667 9.176696e+04 375.90 1.253000e+02 0.000 20.75 3 0.000000e+00 0.00 9.214286e+04 9.176696e+04 375.90 NULL
2016 Office Of The Comptroller Pension Investment Advisor 350000.00000 3.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.500000e+05 3.500000e+05 0.00 NULL
2016 Office Of The Comptroller Principal Administrative Associate 57003.66209 1.596103e+06 21317.17 7.613275e+02 0.000 530.00 28 0.000000e+00 0.00 1.617420e+06 1.596103e+06 21317.17 NULL
2016 Office Of The Comptroller Principal Investment Officer 208042.00000 2.080420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.080420e+05 2.080420e+05 0.00 NULL
2016 Office Of The Comptroller Procurement Analyst 62960.90000 6.296090e+05 12529.10 1.252910e+03 0.000 283.50 10 0.000000e+00 0.00 6.421381e+05 6.296090e+05 12529.10 NULL
2016 Office Of The Comptroller Public Records Aide 28968.72900 2.896873e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.896873e+04 2.896873e+04 0.00 NULL
2016 Office Of The Comptroller Radio And Television Operator 58371.00000 5.837100e+04 109.49 1.094900e+02 109.490 0.00 1 1.094900e+02 109.49 5.848049e+04 5.848049e+04 0.00 NULL
2016 Office Of The Comptroller Research And Liaison Coordinator 105657.26667 1.584859e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.584859e+06 1.584859e+06 0.00 NULL
2016 Office Of The Comptroller Research Assistant 47189.00000 4.718900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.718900e+04 4.718900e+04 0.00 NULL
2016 Office Of The Comptroller Second Deputy Comptroller 199394.00000 1.993940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.993940e+05 1.993940e+05 0.00 NULL
2016 Office Of The Comptroller Secretary 44535.25000 1.781410e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.781410e+05 1.781410e+05 0.00 NULL
2016 Office Of The Comptroller Secretary To The Comptroller 48694.00000 4.869400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.869400e+04 4.869400e+04 0.00 NULL
2016 Office Of The Comptroller Special Deputy Comptroller 207757.00000 2.077570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.077570e+05 2.077570e+05 0.00 NULL
2016 Office Of The Comptroller Staff Analyst 61684.00000 3.701040e+05 12774.76 2.129127e+03 0.000 224.75 6 0.000000e+00 0.00 3.828788e+05 3.701040e+05 12774.76 NULL
2016 Office Of The Comptroller Staff Analyst Trainee 45924.12500 7.347860e+05 615.58 3.847375e+01 0.000 28.00 16 0.000000e+00 0.00 7.354016e+05 7.347860e+05 615.58 NULL
2016 Office Of The Comptroller Statistician 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2016 Office Of The Comptroller Strategic Initiative Specialist 180000.00000 1.800000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.800000e+05 1.800000e+05 0.00 NULL
2016 Office Of The Comptroller Summer College Intern 1907.92417 6.868527e+04 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 6.868527e+04 6.868527e+04 0.00 NULL
2016 Office Of The Comptroller Summer Graduate Intern 2356.74000 2.592414e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 2.592414e+04 2.592414e+04 0.00 NULL
2016 Office Of The Comptroller Supervising Computer Service Technician 77891.00000 7.789100e+04 2150.04 2.150040e+03 2150.040 44.00 1 2.150040e+03 2150.04 8.004104e+04 8.004104e+04 0.00 NULL
2016 Office Of The Comptroller Supervisor Of Motor Transport 51415.00000 1.542450e+05 2135.33 7.117767e+02 242.820 71.25 3 2.428200e+02 728.46 1.563803e+05 1.549735e+05 1406.87 NULL
2016 Office Of The Comptroller Telecommunications Associate 83653.00000 8.365300e+04 608.68 6.086800e+02 608.680 10.00 1 6.086800e+02 608.68 8.426168e+04 8.426168e+04 0.00 NULL
2016 Office Of The Mayor Administrative Assistant To The Mayor 77900.00000 7.790000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.790000e+04 7.790000e+04 0.00 NULL
2016 Office Of The Mayor Administrative Printing Services Manager 90575.00000 9.057500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.057500e+04 9.057500e+04 0.00 NULL
2016 Office Of The Mayor Assistant Legislative Representative 91082.00000 1.001902e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.001902e+06 1.001902e+06 0.00 NULL
2016 Office Of The Mayor Assistant To The Deputy Mayor 185970.77778 1.673737e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.673737e+06 1.673737e+06 0.00 NULL
2016 Office Of The Mayor Assistant To The Mayor 162134.60000 8.106730e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.106730e+05 8.106730e+05 0.00 NULL
2016 Office Of The Mayor Associate Staff Analyst 74090.50000 1.481810e+05 1.54 7.700000e-01 0.770 0.00 2 7.700000e-01 1.54 1.481825e+05 1.481825e+05 0.00 NULL
2016 Office Of The Mayor Asst Dir Of Intergvnmental Reltns For The Albany Office 184367.00000 1.843670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.843670e+05 1.843670e+05 0.00 NULL
2016 Office Of The Mayor Asst Director Of Intergovermental Rel For City Legist Affs 171503.00000 1.715030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.715030e+05 1.715030e+05 0.00 NULL
2016 Office Of The Mayor Clerical Associate 48369.00000 1.934760e+05 8469.35 2.117338e+03 0.000 202.75 4 0.000000e+00 0.00 2.019454e+05 1.934760e+05 8469.35 NULL
2016 Office Of The Mayor Commissioner, Un & Consular Corps Diplomatic Relations 205868.00000 2.058680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.058680e+05 2.058680e+05 0.00 NULL
2016 Office Of The Mayor Community Associate 48981.00000 4.898100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.898100e+04 4.898100e+04 0.00 NULL
2016 Office Of The Mayor Computer Operations Manager 105335.40000 5.266770e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.266770e+05 5.266770e+05 0.00 NULL
2016 Office Of The Mayor Computer Systems Manager 149745.00000 1.497450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.497450e+05 1.497450e+05 0.00 NULL
2016 Office Of The Mayor Cook 107500.00000 2.150000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.150000e+05 2.150000e+05 0.00 NULL
2016 Office Of The Mayor Deputy Mayor 227737.00000 9.109480e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 9.109480e+05 9.109480e+05 0.00 NULL
2016 Office Of The Mayor Director Correspondence Services 118838.00000 1.188380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.188380e+05 1.188380e+05 0.00 NULL
2016 Office Of The Mayor Director Of Community Assistance Unit 205868.00000 2.058680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.058680e+05 2.058680e+05 0.00 NULL
2016 Office Of The Mayor Director Of Intergovernmental Relations 214225.00000 2.142250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.142250e+05 2.142250e+05 0.00 NULL
2016 Office Of The Mayor Director, Nyc Art Commission 176864.00000 1.768640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.768640e+05 1.768640e+05 0.00 NULL
2016 Office Of The Mayor Director, Office Of Operations 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Office Of The Mayor Executive Administrator Of Gracie Mansion 214225.00000 2.142250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.142250e+05 2.142250e+05 0.00 NULL
2016 Office Of The Mayor Executive Agency Counsel 128818.40000 1.932276e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.932276e+06 1.932276e+06 0.00 NULL
2016 Office Of The Mayor Executive Assistant-Midtown Enforcement 67701.94125 6.770194e+04 119.43 1.194300e+02 119.430 2.75 1 1.194300e+02 119.43 6.782137e+04 6.782137e+04 0.00 NULL
2016 Office Of The Mayor First Deputy Mayor 263239.00000 2.632390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.632390e+05 2.632390e+05 0.00 NULL
2016 Office Of The Mayor Legislative Aide 55233.00000 5.523300e+04 3507.48 3.507480e+03 3507.480 96.75 1 3.507480e+03 3507.48 5.874048e+04 5.874048e+04 0.00 NULL
2016 Office Of The Mayor Mayor 225000.00000 2.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.250000e+05 2.250000e+05 0.00 NULL
2016 Office Of The Mayor Mayoral Office Assistant 43124.55330 3.924334e+06 70026.51 7.695221e+02 221.670 2878.92 91 2.216700e+02 20171.97 3.994361e+06 3.944506e+06 49854.54 NULL
2016 Office Of The Mayor Mayoral Program Coordinator 62202.00000 1.368444e+06 24217.65 1.100802e+03 225.735 804.50 22 2.257350e+02 4966.17 1.392662e+06 1.373410e+06 19251.48 NULL
2016 Office Of The Mayor Press Officer 123529.16667 1.482350e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.482350e+06 1.482350e+06 0.00 NULL
2016 Office Of The Mayor Project Planner 76259.50000 3.050380e+05 5426.74 1.356685e+03 441.750 118.25 4 4.417500e+02 1767.00 3.104647e+05 3.068050e+05 3659.74 NULL
2016 Office Of The Mayor Research Projects Coord 93133.23077 1.452878e+07 3613.13 2.316109e+01 0.000 93.75 156 0.000000e+00 0.00 1.453240e+07 1.452878e+07 3613.13 NULL
2016 Office Of The Mayor Research Projects Coordinator 62351.45455 6.858660e+05 18366.68 1.669698e+03 1240.790 618.00 11 1.240790e+03 13648.69 7.042327e+05 6.995147e+05 4717.99 NULL
2016 Office Of The Mayor Secretary 72807.25000 2.912290e+05 15198.27 3.799568e+03 3847.820 377.75 4 3.799568e+03 15198.27 3.064273e+05 3.064273e+05 0.00 NULL
2016 Office Of The Mayor Senior Service Inspector 56664.00000 5.666400e+04 583.46 5.834600e+02 583.460 15.00 1 5.834600e+02 583.46 5.724746e+04 5.724746e+04 0.00 NULL
2016 Office Of The Mayor Service Inspector 40856.60000 2.042830e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.042830e+05 2.042830e+05 0.00 NULL
2016 Office Of The Mayor Special Assistant 98723.12588 2.606291e+07 30377.45 1.150661e+02 0.000 626.25 264 0.000000e+00 0.00 2.609328e+07 2.606291e+07 30377.45 NULL
2016 Office Of The Mayor Sr Project Planner 96923.00000 1.938460e+05 0.00 0.000000e+00 0.000 4.50 2 0.000000e+00 0.00 1.938460e+05 1.938460e+05 0.00 NULL
2016 Office Of The Mayor Staff Assistant 56010.70000 5.601070e+05 21950.48 2.195048e+03 1474.700 677.50 10 1.474700e+03 14747.00 5.820575e+05 5.748540e+05 7203.48 NULL
2016 Personnel Monitors Monitor 832.72866 1.173315e+06 9209.18 6.535969e+00 0.000 451.50 1409 0.000000e+00 0.00 1.182524e+06 1.173315e+06 9209.18 NULL
2016 Police Department *Admin Schl Secur Mgr-Mgl 143850.00000 1.438500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.438500e+05 1.438500e+05 0.00 NULL
2016 Police Department *Administrative Attorney 172096.00000 1.720960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.720960e+05 1.720960e+05 0.00 NULL
2016 Police Department *Attorney At Law 93882.20000 4.694110e+05 61061.12 1.221222e+04 3482.340 763.75 5 3.482340e+03 17411.70 5.304721e+05 4.868227e+05 43649.42 NULL
2016 Police Department *Certified Applications Developer 101537.50000 2.030750e+05 513.90 2.569500e+02 256.950 7.50 2 2.569500e+02 513.90 2.035889e+05 2.035889e+05 0.00 NULL
2016 Police Department *Certified Local Area Network Administrator 100817.33333 3.024520e+05 41235.14 1.374505e+04 13768.320 574.75 3 1.374505e+04 41235.14 3.436871e+05 3.436871e+05 0.00 NULL
2016 Police Department *Certified Wide Area Network Administrator 112732.66667 3.381980e+05 36104.87 1.203496e+04 1125.220 426.25 3 1.125220e+03 3375.66 3.743029e+05 3.415737e+05 32729.21 NULL
2016 Police Department *Surgeon 132675.00000 1.326750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.326750e+05 1.326750e+05 0.00 NULL
2016 Police Department ?Senior Automotive Service Worker 41020.00000 4.102000e+04 30.42 3.042000e+01 30.420 0.00 1 3.042000e+01 30.42 4.105042e+04 4.105042e+04 0.00 NULL
2016 Police Department Accountant 57185.72727 1.258086e+06 135528.83 6.160401e+03 804.780 3033.00 22 8.047800e+02 17705.16 1.393615e+06 1.275791e+06 117823.67 NULL
2016 Police Department Adm Manager-Non-Mgrl From M1/M2 75899.36364 8.348930e+05 56709.96 5.155451e+03 2375.690 1137.50 11 2.375690e+03 26132.59 8.916030e+05 8.610256e+05 30577.37 NULL
2016 Police Department Adm School Security Manager 75351.77778 6.781660e+05 46601.89 5.177988e+03 203.500 767.25 9 2.035000e+02 1831.50 7.247679e+05 6.799975e+05 44770.39 NULL
2016 Police Department Admin Contract Specialist 126550.75000 1.518609e+06 50107.74 4.175645e+03 526.710 734.25 12 5.267100e+02 6320.52 1.568717e+06 1.524930e+06 43787.22 NULL
2016 Police Department Admin Traffic Enf Agnt-Union 70894.75862 2.055948e+06 589897.42 2.034129e+04 23407.550 10502.50 29 2.034129e+04 589897.42 2.645845e+06 2.645845e+06 0.00 NULL
2016 Police Department Admin Traffic Enfrcmnt Agent 113005.00000 2.260100e+05 387.14 1.935700e+02 193.570 0.00 2 1.935700e+02 387.14 2.263971e+05 2.263971e+05 0.00 NULL
2016 Police Department Administrative Accountant 93215.42857 6.525080e+05 106.92 1.527429e+01 0.000 0.00 7 0.000000e+00 0.00 6.526149e+05 6.525080e+05 106.92 NULL
2016 Police Department Administrative Architect 102000.00000 1.020000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020000e+05 1.020000e+05 0.00 NULL
2016 Police Department Administrative Graphic Artist 92285.00000 9.228500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.228500e+04 9.228500e+04 0.00 NULL
2016 Police Department Administrative Investigator 92810.00000 9.281000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.281000e+04 9.281000e+04 0.00 NULL
2016 Police Department Administrative Labor Relations Analyst 212263.00000 2.122630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.122630e+05 2.122630e+05 0.00 NULL
2016 Police Department Administrative Management Auditor 123000.00000 1.230000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.230000e+05 1.230000e+05 0.00 NULL
2016 Police Department Administrative Printing Services Manager 113658.00000 4.546320e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.546320e+05 4.546320e+05 0.00 NULL
2016 Police Department Administrative Procurement Analyst 84197.85714 5.893850e+05 167103.67 2.387195e+04 21787.530 3345.00 7 2.178753e+04 152512.71 7.564887e+05 7.418977e+05 14590.96 NULL
2016 Police Department Administrative Project Manager 120580.88889 1.085228e+06 30419.96 3.379996e+03 0.000 516.75 9 0.000000e+00 0.00 1.115648e+06 1.085228e+06 30419.96 NULL
2016 Police Department Administrative Psychologist 109825.33333 3.294760e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.294760e+05 3.294760e+05 0.00 NULL
2016 Police Department Administrative Public Health Sanitarian 109869.00000 1.098690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.098690e+05 1.098690e+05 0.00 NULL
2016 Police Department Administrative Public Information Specialist 126627.14286 8.863900e+05 14059.01 2.008430e+03 0.000 146.75 7 0.000000e+00 0.00 9.004490e+05 8.863900e+05 14059.01 NULL
2016 Police Department Administrative Staff Analyst 97386.40909 8.570004e+06 499491.13 5.676036e+03 528.420 7675.50 88 5.284200e+02 46500.96 9.069495e+06 8.616505e+06 452990.17 NULL
2016 Police Department Administrative Supervisor Of Building Maintenance 105000.00000 2.100000e+05 46860.06 2.343003e+04 23430.030 847.00 2 2.343003e+04 46860.06 2.568601e+05 2.568601e+05 0.00 NULL
2016 Police Department Agency Attorney 83421.10000 6.673688e+06 541948.26 6.774353e+03 2091.530 8922.00 80 2.091530e+03 167322.40 7.215636e+06 6.841010e+06 374625.86 NULL
2016 Police Department Agency Attorney Interne 57944.60000 2.897230e+05 9968.93 1.993786e+03 0.000 276.25 5 0.000000e+00 0.00 2.996919e+05 2.897230e+05 9968.93 NULL
2016 Police Department Agency Chief Contracting Officer 155268.00000 1.552680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.552680e+05 1.552680e+05 0.00 NULL
2016 Police Department Architect 80322.50000 1.606450e+05 1446.78 7.233900e+02 723.390 14.75 2 7.233900e+02 1446.78 1.620918e+05 1.620918e+05 0.00 NULL
2016 Police Department Assistant Advocate-Pd 96141.53333 1.442123e+06 21774.64 1.451643e+03 273.910 388.00 15 2.739100e+02 4108.65 1.463898e+06 1.446232e+06 17665.99 NULL
2016 Police Department Assistant Architect 50328.00000 5.032800e+04 8381.10 8.381100e+03 8381.100 274.00 1 8.381100e+03 8381.10 5.870910e+04 5.870910e+04 0.00 NULL
2016 Police Department Assistant Chemical Engineer 70422.00000 1.408440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.408440e+05 1.408440e+05 0.00 NULL
2016 Police Department Assistant Commissioner 165602.00000 4.968060e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.968060e+05 4.968060e+05 0.00 NULL
2016 Police Department Assistant Counsel-Pd 99186.44444 8.926780e+05 149915.67 1.665730e+04 20088.040 2126.75 9 1.665730e+04 149915.67 1.042594e+06 1.042594e+06 0.00 NULL
2016 Police Department Assistant Deputy Commissioner 102937.00000 1.029370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.029370e+05 1.029370e+05 0.00 NULL
2016 Police Department Assistant Mechanical Engineer 71068.00000 7.106800e+04 12835.81 1.283581e+04 12835.810 294.50 1 1.283581e+04 12835.81 8.390381e+04 8.390381e+04 0.00 NULL
2016 Police Department Assistant To Police Commissionor 213308.00000 2.133080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.133080e+05 2.133080e+05 0.00 NULL
2016 Police Department Assoc Spvr Of School Security 69333.87805 2.842689e+06 455936.97 1.112041e+04 10619.200 9010.50 41 1.061920e+04 435387.20 3.298626e+06 3.278076e+06 20549.77 NULL
2016 Police Department Assoc Supvr Of Schl Sec 90679.20000 4.533960e+05 1022.73 2.045460e+02 6.040 0.00 5 6.040000e+00 30.20 4.544187e+05 4.534262e+05 992.53 NULL
2016 Police Department Associate Fingerprint Technician 39656.20000 9.914050e+05 10828.39 4.331356e+02 94.380 362.50 25 9.438000e+01 2359.50 1.002233e+06 9.937645e+05 8468.89 NULL
2016 Police Department Associate Investigator 47477.67261 3.181004e+06 368198.86 5.495505e+03 4209.730 9039.75 67 4.209730e+03 282051.91 3.549203e+06 3.463056e+06 86146.95 NULL
2016 Police Department Associate Parking Control Specialist 56852.16667 6.822260e+05 173055.02 1.442125e+04 11971.730 3957.75 12 1.197173e+04 143660.76 8.552810e+05 8.258868e+05 29394.26 NULL
2016 Police Department Associate Project Manager 99384.40000 4.969220e+05 81641.89 1.632838e+04 11416.540 1126.00 5 1.141654e+04 57082.70 5.785639e+05 5.540047e+05 24559.19 NULL
2016 Police Department Associate Public Information Specialist 49995.00000 4.999500e+04 4334.88 4.334880e+03 4334.880 140.25 1 4.334880e+03 4334.88 5.432988e+04 5.432988e+04 0.00 NULL
2016 Police Department Associate Quality Assurance Specialist 68374.00000 6.837400e+04 21451.72 2.145172e+04 21451.720 449.00 1 2.145172e+04 21451.72 8.982572e+04 8.982572e+04 0.00 NULL
2016 Police Department Associate Staff Analyst 73308.60563 5.204911e+06 214016.65 3.014319e+03 213.040 4016.25 71 2.130400e+02 15125.84 5.418928e+06 5.220037e+06 198890.81 NULL
2016 Police Department Associate Traffic Enforcement Agent 48577.15181 2.015952e+07 6867431.66 1.654803e+04 17040.240 199323.46 415 1.654803e+04 6867431.66 2.702695e+07 2.702695e+07 0.00 NULL
2016 Police Department Auto Body Worker 51314.37037 1.385488e+06 89326.20 3.308378e+03 3853.120 2381.00 27 3.308378e+03 89326.20 1.474814e+06 1.474814e+06 0.00 NULL
2016 Police Department Auto Mechanic NA NA 1348023.52 6.099654e+03 4266.730 22453.50 221 4.266730e+03 942947.33 NA NA NA NULL
2016 Police Department Automotive Service Worker 39263.05769 2.041679e+06 123299.56 2.371145e+03 1064.400 4365.50 52 1.064400e+03 55348.80 2.164979e+06 2.097028e+06 67950.76 NULL
2016 Police Department Bookbinder 44144.66667 1.324340e+05 4117.67 1.372557e+03 428.230 121.00 3 4.282300e+02 1284.69 1.365517e+05 1.337187e+05 2832.98 NULL
2016 Police Department Bookkeeper 47005.18644 2.773306e+06 123218.92 2.088456e+03 18.510 3625.25 59 1.851000e+01 1092.09 2.896525e+06 2.774398e+06 122126.83 NULL
2016 Police Department Capt Det Chief Of Department 209355.00000 4.187100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.187100e+05 4.187100e+05 0.00 NULL
2016 Police Department Capt Det Chief Of Internal Affairs 199000.00000 1.990000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.990000e+05 1.990000e+05 0.00 NULL
2016 Police Department Capt Det Chief Of The Housing Bureau 213308.00000 2.133080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.133080e+05 2.133080e+05 0.00 NULL
2016 Police Department Capt Det Chief Of The Transit Bureau 213308.00000 2.133080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.133080e+05 2.133080e+05 0.00 NULL
2016 Police Department Captain 142998.81306 6.349147e+07 1043704.00 2.350685e+03 0.000 13160.58 444 0.000000e+00 0.00 6.453518e+07 6.349147e+07 1043704.00 NULL
2016 Police Department Captain D/A Deputy Chief Inspector 177520.75581 1.526678e+07 35362.84 4.111958e+02 0.000 0.00 86 0.000000e+00 0.00 1.530215e+07 1.526678e+07 35362.84 NULL
2016 Police Department Captain D/A Deputy Inspector 160046.94196 3.585052e+07 52732.09 2.354111e+02 0.000 103.51 224 0.000000e+00 0.00 3.590325e+07 3.585052e+07 52732.09 NULL
2016 Police Department Captain D/A Inspector 168572.50610 2.764589e+07 28512.54 1.738570e+02 0.000 0.00 164 0.000000e+00 0.00 2.767440e+07 2.764589e+07 28512.54 NULL
2016 Police Department Captain Detailed As Assistant Chief Inspector 211987.65789 8.055531e+06 1491.47 3.924921e+01 0.000 0.00 38 0.000000e+00 0.00 8.057022e+06 8.055531e+06 1491.47 NULL
2016 Police Department Captain Detailed As Chief Of Detectives 213308.00000 2.133080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.133080e+05 2.133080e+05 0.00 NULL
2016 Police Department Captain Detailed As Chief Of Organized Crime Control 213308.00000 2.133080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.133080e+05 2.133080e+05 0.00 NULL
2016 Police Department Captain Detailed As Chief Of Patrol 207129.50000 8.285180e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.285180e+05 8.285180e+05 0.00 NULL
2016 Police Department Captain Detailed As Chief Of Personnel 213308.00000 2.133080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.133080e+05 2.133080e+05 0.00 NULL
2016 Police Department Captain-Chief Of Community Affairs 213308.00000 2.133080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.133080e+05 2.133080e+05 0.00 NULL
2016 Police Department Captain-Chief Of Intelligence 213308.00000 2.133080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.133080e+05 2.133080e+05 0.00 NULL
2016 Police Department Captain-Managerial Details 213308.00000 4.266160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.266160e+05 4.266160e+05 0.00 NULL
2016 Police Department Captain: Chief Of Transportation Bureau 213308.00000 2.133080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.133080e+05 2.133080e+05 0.00 NULL
2016 Police Department Carpenter NA NA 994096.90 3.823450e+04 44229.700 9859.50 26 3.823450e+04 994096.90 NA NA NA NULL
2016 Police Department Case Management Nurse 72990.28571 1.021864e+06 111750.09 7.982149e+03 7398.430 1871.75 14 7.398430e+03 103578.02 1.133614e+06 1.125442e+06 8172.07 NULL
2016 Police Department Cashier 40736.75000 1.629470e+05 11702.70 2.925675e+03 2925.675 646.50 4 2.925675e+03 11702.70 1.746497e+05 1.746497e+05 0.00 NULL
2016 Police Department Certified It Administrator 97617.88889 1.757122e+06 304550.29 1.691946e+04 19208.800 4621.75 18 1.691946e+04 304550.29 2.061672e+06 2.061672e+06 0.00 NULL
2016 Police Department Certified It Developer 90269.75000 3.610790e+05 24988.78 6.247195e+03 1358.850 405.75 4 1.358850e+03 5435.40 3.860678e+05 3.665144e+05 19553.38 NULL
2016 Police Department Chaplain 32926.87500 2.634150e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 2.634150e+05 2.634150e+05 0.00 NULL
2016 Police Department City Attendant 33987.00000 6.797400e+04 34600.32 1.730016e+04 17300.160 1257.50 2 1.730016e+04 34600.32 1.025743e+05 1.025743e+05 0.00 NULL
2016 Police Department City Dentist 65195.55000 6.519555e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.519555e+04 6.519555e+04 0.00 NULL
2016 Police Department City Laborer NA NA 243334.27 1.871802e+04 19748.200 5342.50 13 1.871802e+04 243334.27 NA NA NA NULL
2016 Police Department City Medical Specialist 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2016 Police Department City Research Scientist 83363.66667 2.500910e+05 4840.20 1.613400e+03 2420.100 89.50 3 1.613400e+03 4840.20 2.549312e+05 2.549312e+05 0.00 NULL
2016 Police Department Clerical Aide 32465.49547 1.623275e+05 5226.86 1.045372e+03 431.840 213.25 5 4.318400e+02 2159.20 1.675543e+05 1.644867e+05 3067.66 NULL
2016 Police Department Clerical Associate 40911.53952 2.536515e+06 215180.74 3.470657e+03 1509.270 6956.50 62 1.509270e+03 93574.74 2.751696e+06 2.630090e+06 121606.00 NULL
2016 Police Department College Aide 11105.35140 5.552676e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.552676e+04 5.552676e+04 0.00 NULL
2016 Police Department Commissioner 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2016 Police Department Community Assistant 34445.85714 2.411210e+05 31789.35 4.541336e+03 248.140 1224.00 7 2.481400e+02 1736.98 2.729103e+05 2.428580e+05 30052.37 NULL
2016 Police Department Community Associate 40111.50000 2.406690e+05 13694.98 2.282497e+03 1558.960 540.00 6 1.558960e+03 9353.76 2.543640e+05 2.500228e+05 4341.22 NULL
2016 Police Department Community Coordinator 55164.00000 2.206560e+05 7837.36 1.959340e+03 1686.410 280.75 4 1.686410e+03 6745.64 2.284934e+05 2.274016e+05 1091.72 NULL
2016 Police Department Compositor NA NA 67419.03 1.685476e+04 16852.315 930.00 4 1.685231e+04 67409.26 NA NA NA NULL
2016 Police Department Computer Aide-Non-Spvr 42603.00000 4.260300e+04 1365.30 1.365300e+03 1365.300 49.00 1 1.365300e+03 1365.30 4.396830e+04 4.396830e+04 0.00 NULL
2016 Police Department Computer Associate 69563.43478 9.599754e+06 849422.65 6.155237e+03 3068.125 17420.33 138 3.068125e+03 423401.25 1.044918e+07 1.002316e+07 426021.40 NULL
2016 Police Department Computer Operations Manager 139206.08333 1.670473e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.670473e+06 1.670473e+06 0.00 NULL
2016 Police Department Computer Programmer Analyst 52133.00000 4.691970e+05 25303.54 2.811504e+03 278.740 729.00 9 2.787400e+02 2508.66 4.945005e+05 4.717057e+05 22794.88 NULL
2016 Police Department Computer Specialist 96561.33333 4.924628e+06 560036.56 1.098111e+04 7927.370 8771.00 51 7.927370e+03 404295.87 5.484665e+06 5.328924e+06 155740.69 NULL
2016 Police Department Computer Systems Manager 143412.00000 1.147296e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.147296e+06 1.147296e+06 0.00 NULL
2016 Police Department Counsel To The Police Commissioner 213308.00000 2.133080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.133080e+05 2.133080e+05 0.00 NULL
2016 Police Department Criminalist 69295.53804 1.275038e+07 1726823.48 9.384910e+03 7612.745 33876.25 184 7.612745e+03 1400745.08 1.447720e+07 1.415112e+07 326078.40 NULL
2016 Police Department Criminalist Assistant Director Of Laboratory 116266.83333 6.976010e+05 19112.09 3.185348e+03 0.000 279.25 6 0.000000e+00 0.00 7.167131e+05 6.976010e+05 19112.09 NULL
2016 Police Department Criminalist Deputy Director Of Labatory 148580.00000 1.485800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.485800e+05 1.485800e+05 0.00 NULL
2016 Police Department Criminalist Director Of Laboratory 154353.00000 1.543530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.543530e+05 1.543530e+05 0.00 NULL
2016 Police Department Custodial Assistant 32736.23579 9.984552e+06 669444.43 2.194900e+03 0.000 28398.83 305 0.000000e+00 0.00 1.065400e+07 9.984552e+06 669444.43 NULL
2016 Police Department Custodian 36159.78571 1.012474e+06 217578.89 7.770675e+03 7071.125 8544.75 28 7.071125e+03 197991.50 1.230053e+06 1.210466e+06 19587.39 NULL
2016 Police Department Deputy Chief Surgeon 142315.83333 8.538950e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.538950e+05 8.538950e+05 0.00 NULL
2016 Police Department Deputy Commissioner 213308.00000 1.493156e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.493156e+06 1.493156e+06 0.00 NULL
2016 Police Department Director 84457.00000 8.445700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.445700e+04 8.445700e+04 0.00 NULL
2016 Police Department Director Employee Management Division 155884.00000 1.558840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.558840e+05 1.558840e+05 0.00 NULL
2016 Police Department Director Management Information Systems 166368.00000 1.663680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.663680e+05 1.663680e+05 0.00 NULL
2016 Police Department Director Of Department Advocates Office 213308.00000 2.133080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.133080e+05 2.133080e+05 0.00 NULL
2016 Police Department Director Of Internal Affairs - Pd 213308.00000 2.133080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.133080e+05 2.133080e+05 0.00 NULL
2016 Police Department Director Of Motor Transport 136606.00000 1.366060e+05 1842.49 1.842490e+03 1842.490 14.50 1 1.842490e+03 1842.49 1.384485e+05 1.384485e+05 0.00 NULL
2016 Police Department Director Of Photographic Services-Pd 75350.00000 7.535000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.535000e+04 7.535000e+04 0.00 NULL
2016 Police Department Director Of Psychological Services 129437.00000 1.294370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.294370e+05 1.294370e+05 0.00 NULL
2016 Police Department Director Of Support Services-Pd 213308.00000 4.266160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.266160e+05 4.266160e+05 0.00 NULL
2016 Police Department Director Of Technology Development-Pd 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2016 Police Department Director Of Training 180000.00000 1.800000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.800000e+05 1.800000e+05 0.00 NULL
2016 Police Department Electrician NA NA 1298917.23 3.608103e+04 38063.820 18187.50 36 3.608103e+04 1298917.23 NA NA NA NULL
2016 Police Department Electrician’s Helper NA NA 41157.65 4.115765e+04 41157.650 904.25 1 4.115765e+04 41157.65 NA NA NA NULL
2016 Police Department Elevator Mechanic NA NA 94554.86 4.727743e+04 47277.430 1469.50 2 4.727743e+04 94554.86 NA NA NA NULL
2016 Police Department Employee Assistance Program Specialist 53485.00000 5.348500e+04 1079.21 1.079210e+03 1079.210 25.50 1 1.079210e+03 1079.21 5.456421e+04 5.456421e+04 0.00 NULL
2016 Police Department Evidence And Property Control Specialist 52324.27273 3.453402e+06 159238.93 2.412711e+03 0.000 4413.25 66 0.000000e+00 0.00 3.612641e+06 3.453402e+06 159238.93 NULL
2016 Police Department Executive Agency Counsel 135412.37500 4.333196e+06 16741.51 5.231722e+02 0.000 212.50 32 0.000000e+00 0.00 4.349938e+06 4.333196e+06 16741.51 NULL
2016 Police Department Fingerprint Technician Trainee 28411.00000 4.261650e+05 242.26 1.615067e+01 0.000 14.00 15 0.000000e+00 0.00 4.264073e+05 4.261650e+05 242.26 NULL
2016 Police Department Fitness Instructor 53673.78947 1.019802e+06 0.00 0.000000e+00 0.000 46.00 19 0.000000e+00 0.00 1.019802e+06 1.019802e+06 0.00 NULL
2016 Police Department Glazier NA NA 119107.04 5.955352e+04 59553.520 1676.25 2 5.955352e+04 119107.04 NA NA NA NULL
2016 Police Department Graphic Artist 56024.71429 3.921730e+05 33632.96 4.804709e+03 0.000 900.25 7 0.000000e+00 0.00 4.258060e+05 3.921730e+05 33632.96 NULL
2016 Police Department Horseshoer NA NA 23816.30 3.969383e+03 4407.260 513.50 6 3.969383e+03 23816.30 NA NA NA NULL
2016 Police Department Hostler 36806.59066 6.993252e+05 89732.65 4.722771e+03 5576.290 3406.68 19 4.722771e+03 89732.65 7.890579e+05 7.890579e+05 0.00 NULL
2016 Police Department Intelligence Research Manager-Pd 139360.83333 8.361650e+05 18874.67 3.145778e+03 0.000 210.75 6 0.000000e+00 0.00 8.550397e+05 8.361650e+05 18874.67 NULL
2016 Police Department Intelligence Research Specialist-Pd 86968.99727 4.261481e+06 543538.30 1.109262e+04 10277.850 9624.00 49 1.027785e+04 503614.65 4.805019e+06 4.765096e+06 39923.65 NULL
2016 Police Department Investigator 43586.36735 2.135732e+06 261685.86 5.340528e+03 5313.220 8037.25 49 5.313220e+03 260347.78 2.397418e+06 2.396080e+06 1338.08 NULL
2016 Police Department Investigator Trainee 38829.40000 3.882940e+05 49612.80 4.961280e+03 5431.560 1980.25 10 4.961280e+03 49612.80 4.379068e+05 4.379068e+05 0.00 NULL
2016 Police Department Lieutenant 115536.56038 2.076192e+08 36425713.71 2.027029e+04 18882.160 393509.04 1797 1.888216e+04 33931241.52 2.440449e+08 2.415504e+08 2494472.19 NULL
2016 Police Department Lieutenant D/A Commander Of Detective Squad 125772.31064 2.955649e+07 7173754.70 3.052662e+04 39194.470 72940.38 235 3.052662e+04 7173754.70 3.673025e+07 3.673025e+07 0.00 NULL
2016 Police Department Lieutenant D/A Special Assignment 125229.04478 2.517104e+07 5271190.93 2.622483e+04 29965.860 53824.06 201 2.622483e+04 5271190.93 3.044223e+07 3.044223e+07 0.00 NULL
2016 Police Department Locksmith NA NA 37096.11 1.854806e+04 18548.055 819.50 2 1.854806e+04 37096.11 NA NA NA NULL
2016 Police Department Maintenance Worker NA NA 864259.69 1.964227e+04 20532.745 19948.75 44 1.964227e+04 864259.69 NA NA NA NULL
2016 Police Department Management Auditor 65870.26316 1.251535e+06 49480.42 2.604233e+03 0.470 1114.00 19 4.700000e-01 8.93 1.301015e+06 1.251544e+06 49471.49 NULL
2016 Police Department Management Auditor Trainee 47215.00000 4.721500e+04 8823.98 8.823980e+03 8823.980 321.25 1 8.823980e+03 8823.98 5.603898e+04 5.603898e+04 0.00 NULL
2016 Police Department Manager Of Radio Repair Operations 130176.00000 2.603520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.603520e+05 2.603520e+05 0.00 NULL
2016 Police Department Marine Maintenance Mechanic 64668.00000 2.586720e+05 93.10 2.327500e+01 23.275 0.00 4 2.327500e+01 93.10 2.587651e+05 2.587651e+05 0.00 NULL
2016 Police Department Mechanical Engineer 101194.00000 2.023880e+05 71102.52 3.555126e+04 35551.260 1037.25 2 3.555126e+04 71102.52 2.734905e+05 2.734905e+05 0.00 NULL
2016 Police Department Mechanical Engineering Intern 46466.00000 4.646600e+04 14277.75 1.427775e+04 14277.750 472.50 1 1.427775e+04 14277.75 6.074375e+04 6.074375e+04 0.00 NULL
2016 Police Department Media Services Technician 49383.00000 2.962980e+05 12799.62 2.133270e+03 0.000 322.00 6 0.000000e+00 0.00 3.090976e+05 2.962980e+05 12799.62 NULL
2016 Police Department Motor Vehicle Operator 43346.62500 1.733865e+06 145608.02 3.640200e+03 3565.530 4475.92 40 3.565530e+03 142621.20 1.879473e+06 1.876486e+06 2986.82 NULL
2016 Police Department Motor Vehicle Supervisor 51801.00000 2.590050e+05 51040.72 1.020814e+04 10002.370 1356.75 5 1.000237e+04 50011.85 3.100457e+05 3.090168e+05 1028.87 NULL
2016 Police Department Nutritionist 74118.00000 7.411800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.411800e+04 7.411800e+04 0.00 NULL
2016 Police Department Office Machine Aide 35072.75000 1.402910e+05 68.22 1.705500e+01 0.000 3.50 4 0.000000e+00 0.00 1.403592e+05 1.402910e+05 68.22 NULL
2016 Police Department Oiler NA NA 1024385.62 3.012899e+04 30317.500 9336.50 34 3.012899e+04 1024385.62 NA NA NA NULL
2016 Police Department Operations Communications Specialist 41997.00000 4.199700e+04 21055.59 2.105559e+04 21055.590 563.00 1 2.105559e+04 21055.59 6.305259e+04 6.305259e+04 0.00 NULL
2016 Police Department P.o. Da Det Gr3 89672.83084 3.360938e+08 87194610.15 2.326430e+04 27756.160 1208659.21 3748 2.326430e+04 87194610.15 4.232884e+08 4.232884e+08 0.00 NULL
2016 Police Department P.o. Det Spec 89337.85471 8.915918e+07 21420888.46 2.146382e+04 24755.700 297341.54 998 2.146382e+04 21420888.46 1.105801e+08 1.105801e+08 0.00 NULL
2016 Police Department Painter NA NA 582337.49 3.639609e+04 41892.330 10442.00 16 3.639609e+04 582337.49 NA NA NA NULL
2016 Police Department Paralegal Aide 43595.10000 4.359510e+05 11681.03 1.168103e+03 330.685 392.75 10 3.306850e+02 3306.85 4.476320e+05 4.392578e+05 8374.18 NULL
2016 Police Department Parking Control Specialist 42014.83333 1.008356e+06 106691.67 4.445486e+03 329.265 3210.87 24 3.292650e+02 7902.36 1.115048e+06 1.016258e+06 98789.31 NULL
2016 Police Department Photographer 45151.38095 9.481790e+05 67478.94 3.213283e+03 1376.020 2268.50 21 1.376020e+03 28896.42 1.015658e+06 9.770754e+05 38582.52 NULL
2016 Police Department Plumber NA NA 982976.05 4.680838e+04 50762.120 7652.25 21 4.680838e+04 982976.05 NA NA NA NULL
2016 Police Department Plumber’s Helper NA NA 94730.35 2.368259e+04 17863.595 1283.75 4 1.786360e+04 71454.38 NA NA NA NULL
2016 Police Department Police Administrative Aide 37088.98005 5.392738e+07 1394438.81 9.590363e+02 0.000 50963.95 1454 0.000000e+00 0.00 5.532182e+07 5.392738e+07 1394438.81 NULL
2016 Police Department Police Attendant 35571.90476 1.494020e+06 240256.44 5.720391e+03 4963.625 9680.60 42 4.963625e+03 208472.25 1.734276e+06 1.702492e+06 31784.19 NULL
2016 Police Department Police Cadet 15145.11062 3.922584e+06 0.00 0.000000e+00 0.000 0.00 259 0.000000e+00 0.00 3.922584e+06 3.922584e+06 0.00 NULL
2016 Police Department Police Communications Technician 45104.08946 5.647032e+07 4870127.09 3.889878e+03 2271.580 163480.04 1252 2.271580e+03 2844018.16 6.134045e+07 5.931434e+07 2026108.93 NULL
2016 Police Department Police Officer 66107.47071 1.950303e+09 292194036.89 9.904211e+03 7309.865 4912861.89 29502 7.309865e+03 215655637.23 2.242497e+09 2.165958e+09 76538399.66 NULL
2016 Police Department Police Officer D/A Detective 1st Gr 116236.70949 7.962215e+07 16536663.72 2.414111e+04 31164.630 179424.37 685 2.414111e+04 16536663.72 9.615881e+07 9.615881e+07 0.00 NULL
2016 Police Department Police Officer D/A Detective 2nd Gr 101389.83941 1.502597e+08 35092941.38 2.367945e+04 29957.070 437252.20 1482 2.367945e+04 35092941.38 1.853527e+08 1.853527e+08 0.00 NULL
2016 Police Department Police Officer, Special Assignment 79807.50000 4.788450e+05 38608.02 6.434670e+03 1678.810 501.30 6 1.678810e+03 10072.86 5.174530e+05 4.889179e+05 28535.16 NULL
2016 Police Department Police Surgeon 131221.25000 3.674195e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 3.674195e+06 3.674195e+06 0.00 NULL
2016 Police Department Precinct Community Relations Aide 23939.64200 1.196982e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.196982e+05 1.196982e+05 0.00 NULL
2016 Police Department Precinct Receptionist 20926.16313 3.348186e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 3.348186e+05 3.348186e+05 0.00 NULL
2016 Police Department Principal Administrative Associate 55261.30968 1.713101e+07 889556.81 2.869538e+03 0.000 22389.14 310 0.000000e+00 0.00 1.802056e+07 1.713101e+07 889556.81 NULL
2016 Police Department Principal Fingerprint Technician 47456.00000 1.898240e+05 1147.56 2.868900e+02 26.140 40.00 4 2.614000e+01 104.56 1.909716e+05 1.899286e+05 1043.00 NULL
2016 Police Department Principal Police Communication Technician 67417.47761 4.516971e+06 762571.35 1.138166e+04 12980.020 15617.12 67 1.138166e+04 762571.35 5.279542e+06 5.279542e+06 0.00 NULL
2016 Police Department Printing Press Operator NA NA 183881.55 1.081656e+04 12761.340 3594.00 17 1.081656e+04 183881.55 NA NA NA NULL
2016 Police Department Procurement Analyst 56143.39130 1.291298e+06 178745.71 7.771553e+03 5055.420 4980.00 23 5.055420e+03 116274.66 1.470044e+06 1.407573e+06 62471.05 NULL
2016 Police Department Program Producer 37729.00000 3.772900e+04 239.29 2.392900e+02 239.290 18.00 1 2.392900e+02 239.29 3.796829e+04 3.796829e+04 0.00 NULL
2016 Police Department Project Manager Intern# 45441.00000 4.544100e+04 1450.24 1.450240e+03 1450.240 44.00 1 1.450240e+03 1450.24 4.689124e+04 4.689124e+04 0.00 NULL
2016 Police Department Psychologist 68944.46841 1.516778e+06 192254.13 8.738824e+03 2219.040 3663.73 22 2.219040e+03 48818.88 1.709032e+06 1.565597e+06 143435.25 NULL
2016 Police Department Public Health Assistant 33298.00000 6.659600e+04 668.07 3.340350e+02 334.035 29.25 2 3.340350e+02 668.07 6.726407e+04 6.726407e+04 0.00 NULL
2016 Police Department Public Records Officer 39849.50000 1.593980e+05 528.94 1.322350e+02 132.235 23.00 4 1.322350e+02 528.94 1.599269e+05 1.599269e+05 0.00 NULL
2016 Police Department Radio Repair Mechanic NA NA 1189534.28 1.252141e+04 11158.440 16163.75 95 1.115844e+04 1060051.80 NA NA NA NULL
2016 Police Department Recreation Director 55147.00000 5.514700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.514700e+04 5.514700e+04 0.00 NULL
2016 Police Department Research Assistant 59886.00000 5.988600e+04 5175.39 5.175390e+03 5175.390 150.50 1 5.175390e+03 5175.39 6.506139e+04 6.506139e+04 0.00 NULL
2016 Police Department Roofer NA NA 122571.04 3.064276e+04 31797.390 2263.50 4 3.064276e+04 122571.04 NA NA NA NULL
2016 Police Department School Crossing Guard 11671.38679 2.923682e+07 3910.13 1.560930e+00 0.000 299.75 2505 0.000000e+00 0.00 2.924073e+07 2.923682e+07 3910.13 NULL
2016 Police Department School Safety Agent 38584.19648 2.387976e+08 43611603.80 7.046632e+03 5565.090 1536892.49 6189 5.565090e+03 34442342.01 2.824092e+08 2.732399e+08 9169261.79 NULL
2016 Police Department Secretary 42702.02564 1.665379e+06 107601.74 2.759019e+03 196.170 3324.75 39 1.961700e+02 7650.63 1.772981e+06 1.673030e+06 99951.11 NULL
2016 Police Department Secretary Of The Department 213308.00000 2.133080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.133080e+05 2.133080e+05 0.00 NULL
2016 Police Department Secretary To The Commissioner 102690.00000 1.026900e+05 21052.06 2.105206e+04 21052.060 349.00 1 2.105206e+04 21052.06 1.237421e+05 1.237421e+05 0.00 NULL
2016 Police Department Secretary To The First Deputy Commissioner-Pd 103683.00000 2.073660e+05 44789.06 2.239453e+04 22394.530 686.00 2 2.239453e+04 44789.06 2.521551e+05 2.521551e+05 0.00 NULL
2016 Police Department Senior Office Appliance Maintainer 37986.00000 7.597200e+04 2026.00 1.013000e+03 1013.000 105.00 2 1.013000e+03 2026.00 7.799800e+04 7.799800e+04 0.00 NULL
2016 Police Department Senior Photographer 50898.90000 5.089890e+05 58770.71 5.877071e+03 6319.745 1765.25 10 5.877071e+03 58770.71 5.677597e+05 5.677597e+05 0.00 NULL
2016 Police Department Senior Police Administrative Aide 45833.53444 4.125018e+07 1455701.62 1.617446e+03 0.000 44791.92 900 0.000000e+00 0.00 4.270588e+07 4.125018e+07 1455701.62 NULL
2016 Police Department Senior Stationary Engineer NA NA 111574.07 3.719136e+04 33739.260 799.00 3 3.373926e+04 101217.78 NA NA NA NULL
2016 Police Department Sergeant 97456.26031 4.866966e+08 78462974.03 1.571145e+04 13081.665 990047.05 4994 1.308167e+04 65329835.01 5.651595e+08 5.520264e+08 13133139.02 NULL
2016 Police Department Sergeant D/A Special Assignment 113367.31830 4.273948e+07 7993246.22 2.120224e+04 20667.250 89335.33 377 2.066725e+04 7791553.25 5.073273e+07 5.053103e+07 201692.97 NULL
2016 Police Department Sergeant D/A Supervisor Detective Squad 113659.31319 6.205798e+07 14335820.48 2.625608e+04 33671.250 159134.11 546 2.625608e+04 14335820.48 7.639381e+07 7.639381e+07 0.00 NULL
2016 Police Department Sheet Metal Worker NA NA 424321.60 6.061737e+04 65138.450 4802.00 7 6.061737e+04 424321.60 NA NA NA NULL
2016 Police Department Special Officer 45482.00000 1.364460e+05 7643.44 2.547813e+03 1682.920 219.00 3 1.682920e+03 5048.76 1.440894e+05 1.414948e+05 2594.68 NULL
2016 Police Department Staff Analyst 62644.80000 2.192568e+06 130422.52 3.726358e+03 90.370 2801.50 35 9.037000e+01 3162.95 2.322991e+06 2.195731e+06 127259.57 NULL
2016 Police Department Staff Analyst Trainee 44251.12500 3.540090e+05 10722.70 1.340338e+03 89.845 345.25 8 8.984500e+01 718.76 3.647317e+05 3.547278e+05 10003.94 NULL
2016 Police Department Stationary Engineer NA NA 854431.84 3.560133e+04 36234.105 7587.25 24 3.560133e+04 854431.84 NA NA NA NULL
2016 Police Department Statistician 41057.00000 4.105700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.105700e+04 4.105700e+04 0.00 NULL
2016 Police Department Steam Fitter NA NA 810099.00 6.231531e+04 69981.370 6473.83 13 6.231531e+04 810099.00 NA NA NA NULL
2016 Police Department Stenographer To Each Deputy Commissioner 60080.00000 1.201600e+05 4966.29 2.483145e+03 2483.145 111.25 2 2.483145e+03 4966.29 1.251263e+05 1.251263e+05 0.00 NULL
2016 Police Department Stenographic Specialist 49853.50000 9.970700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.970700e+04 9.970700e+04 0.00 NULL
2016 Police Department Stock Worker 34095.42500 1.363817e+06 91105.51 2.277638e+03 516.075 4348.50 40 5.160750e+02 20643.00 1.454923e+06 1.384460e+06 70462.51 NULL
2016 Police Department Summer College Intern 2393.77871 7.660092e+04 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 7.660092e+04 7.660092e+04 0.00 NULL
2016 Police Department Summer Graduate Intern 4118.46250 4.942155e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 4.942155e+04 4.942155e+04 0.00 NULL
2016 Police Department Supervising Chief Surgeon 213308.00000 2.133080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.133080e+05 2.133080e+05 0.00 NULL
2016 Police Department Supervising Police Communications Technician 59414.25862 1.033808e+07 1764986.66 1.014360e+04 8919.925 41428.48 174 8.919925e+03 1552066.95 1.210307e+07 1.189015e+07 212919.71 NULL
2016 Police Department Supervisor 70903.50000 1.418070e+05 85440.96 4.272048e+04 42720.480 1667.75 2 4.272048e+04 85440.96 2.272480e+05 2.272480e+05 0.00 NULL
2016 Police Department Supervisor Carpenter NA NA 119101.55 3.970052e+04 29215.330 1075.00 3 2.921533e+04 87645.99 NA NA NA NULL
2016 Police Department Supervisor Electrician NA NA 96296.00 3.209867e+04 28247.900 1243.25 3 2.824790e+04 84743.70 NA NA NA NULL
2016 Police Department Supervisor Elevator Mechanic NA NA 57153.92 5.715392e+04 57153.920 815.00 1 5.715392e+04 57153.92 NA NA NA NULL
2016 Police Department Supervisor Glazier NA NA 67469.60 6.746960e+04 67469.600 918.00 1 6.746960e+04 67469.60 NA NA NA NULL
2016 Police Department Supervisor Locksmith NA NA 27174.46 2.717446e+04 27174.460 532.50 1 2.717446e+04 27174.46 NA NA NA NULL
2016 Police Department Supervisor Of Mechanical Installations & Maintenance 70422.00000 7.042200e+04 39274.39 3.927439e+04 39274.390 761.00 1 3.927439e+04 39274.39 1.096964e+05 1.096964e+05 0.00 NULL
2016 Police Department Supervisor Of Mechanics 103782.20000 4.670199e+06 411550.03 9.145556e+03 9163.200 5260.00 45 9.145556e+03 411550.03 5.081749e+06 5.081749e+06 0.00 NULL
2016 Police Department Supervisor Of Office Machine Operations 44355.00000 4.435500e+04 11724.30 1.172430e+04 11724.300 380.25 1 1.172430e+04 11724.30 5.607930e+04 5.607930e+04 0.00 NULL
2016 Police Department Supervisor Of Radio Repair Operations 80262.00000 8.026200e+04 20780.62 2.078062e+04 20780.620 351.00 1 2.078062e+04 20780.62 1.010426e+05 1.010426e+05 0.00 NULL
2016 Police Department Supervisor Of School Security 62301.42466 9.096008e+06 1436874.99 9.841610e+03 10049.790 32128.45 146 9.841610e+03 1436874.99 1.053288e+07 1.053288e+07 0.00 NULL
2016 Police Department Supervisor Of Stock Workers 41529.37500 3.322350e+05 30801.30 3.850162e+03 4338.405 1245.25 8 3.850162e+03 30801.30 3.630363e+05 3.630363e+05 0.00 NULL
2016 Police Department Supervisor Painter NA NA 65828.46 3.291423e+04 32914.230 1162.00 2 3.291423e+04 65828.46 NA NA NA NULL
2016 Police Department Supervisor Plumber NA NA 210218.86 5.255471e+04 63757.520 1407.50 4 5.255471e+04 210218.86 NA NA NA NULL
2016 Police Department Supervisor Roofer NA NA 52824.28 5.282428e+04 52824.280 828.50 1 5.282428e+04 52824.28 NA NA NA NULL
2016 Police Department Supervisor Sheet Metal Worker NA NA 69432.61 6.943261e+04 69432.610 638.00 1 6.943261e+04 69432.61 NA NA NA NULL
2016 Police Department Supervisor Thermostat Repair NA NA 68283.42 6.828342e+04 68283.420 449.50 1 6.828342e+04 68283.42 NA NA NA NULL
2016 Police Department Surgeon Detailed As Deputy Chief Surgeon 144506.00000 1.445060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.445060e+05 1.445060e+05 0.00 NULL
2016 Police Department Telecommunications Associate 55309.25000 2.212370e+05 13831.33 3.457832e+03 41.885 206.25 4 4.188500e+01 167.54 2.350683e+05 2.214045e+05 13663.79 NULL
2016 Police Department Telephone Service Technician 60552.75000 2.422110e+05 55520.20 1.388005e+04 13790.255 1373.00 4 1.379025e+04 55161.02 2.977312e+05 2.973720e+05 359.18 NULL
2016 Police Department Thermostat Repairer NA NA 533715.30 5.930170e+04 61556.520 4691.00 9 5.930170e+04 533715.30 NA NA NA NULL
2016 Police Department Traffic Enforc Agent 44656.88636 1.571922e+07 4965852.55 1.410754e+04 12983.365 132215.24 352 1.298336e+04 4570144.48 2.068508e+07 2.028937e+07 395708.07 NULL
2016 Police Department Traffic Enforcement Agent 36197.68790 1.142399e+08 25209469.30 7.987791e+03 4370.520 888078.91 3156 4.370520e+03 13793361.12 1.394494e+08 1.280333e+08 11416108.18 NULL
2016 Police Department Welder NA NA 130484.49 6.524225e+04 65242.245 1809.75 2 6.524225e+04 130484.49 NA NA NA NULL
2016 Public Administrator-Bronx Community Associate 43106.75000 1.724270e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.724270e+05 1.724270e+05 0.00 NULL
2016 Public Administrator-Bronx Decedent Property Agent 46595.00000 4.659500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.659500e+04 4.659500e+04 0.00 NULL
2016 Public Administrator-Bronx Deputy Public Administator 115800.00000 1.158000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.158000e+05 1.158000e+05 0.00 NULL
2016 Public Administrator-Bronx Principal Administrative Associate 56773.00000 5.677300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.677300e+04 5.677300e+04 0.00 NULL
2016 Public Administrator-Bronx Public Administrator 173700.00000 1.737000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.737000e+05 1.737000e+05 0.00 NULL
2016 Public Administrator-Kings Community Assistant 33267.00000 6.653400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.653400e+04 6.653400e+04 0.00 NULL
2016 Public Administrator-Kings Community Associate 38616.00000 1.930800e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.930800e+05 1.930800e+05 0.00 NULL
2016 Public Administrator-Kings Community Coordinator 47150.00000 4.715000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.715000e+04 4.715000e+04 0.00 NULL
2016 Public Administrator-Kings Decedent Property Agent 46137.66667 1.384130e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.384130e+05 1.384130e+05 0.00 NULL
2016 Public Administrator-Kings Deputy Public Administator 115800.00000 1.158000e+05 457.14 4.571400e+02 457.140 8.00 1 4.571400e+02 457.14 1.162571e+05 1.162571e+05 0.00 NULL
2016 Public Administrator-Kings Public Administrator 173700.00000 1.737000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.737000e+05 1.737000e+05 0.00 NULL
2016 Public Administrator-New York Accountant 58811.00000 5.881100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.881100e+04 5.881100e+04 0.00 NULL
2016 Public Administrator-New York Clerical Associate 37843.00000 1.135290e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.135290e+05 1.135290e+05 0.00 NULL
2016 Public Administrator-New York Decedent Property Agent 43690.33333 1.310710e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.310710e+05 1.310710e+05 0.00 NULL
2016 Public Administrator-New York Deputy Public Administator 115800.00000 1.158000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.158000e+05 1.158000e+05 0.00 NULL
2016 Public Administrator-New York Principal Administrative Associate 56684.00000 5.668400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.668400e+04 5.668400e+04 0.00 NULL
2016 Public Administrator-New York Public Administrator 165150.00000 3.303000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.303000e+05 3.303000e+05 0.00 NULL
2016 Public Administrator-Queens Decedent Property Agent 43148.00000 2.157400e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.157400e+05 2.157400e+05 0.00 NULL
2016 Public Administrator-Queens Deputy Public Administator 115800.00000 1.158000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.158000e+05 1.158000e+05 0.00 NULL
2016 Public Administrator-Queens Public Administrator 173700.00000 1.737000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.737000e+05 1.737000e+05 0.00 NULL
2016 Public Administrator-Queens Secretary 30750.00000 3.075000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.075000e+04 3.075000e+04 0.00 NULL
2016 Public Administrator-Richmond Deputy Public Administator 115800.00000 1.158000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.158000e+05 1.158000e+05 0.00 NULL
2016 Public Administrator-Richmond Public Administrator 173700.00000 3.474000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.474000e+05 3.474000e+05 0.00 NULL
2016 Public Administrator-Richmond Secretary To Public Administrator 61630.00000 1.848900e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.848900e+05 1.848900e+05 0.00 NULL
2016 Public Advocate Assistant To The Public Advocate 42274.08793 1.225949e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 1.225949e+06 1.225949e+06 0.00 NULL
2016 Public Advocate Counsel To The Public Advocate 130047.00000 2.600940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.600940e+05 2.600940e+05 0.00 NULL
2016 Public Advocate Director Of Communications 97375.00000 9.737500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.737500e+04 9.737500e+04 0.00 NULL
2016 Public Advocate Director Of The Ombudsman Program 83230.00000 1.664600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.664600e+05 1.664600e+05 0.00 NULL
2016 Public Advocate Executive Assistant And Counsel To The Public Advocate 96804.50000 1.936090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.936090e+05 1.936090e+05 0.00 NULL
2016 Public Advocate Executive Secretary To The Public Advocate 50166.66667 1.505000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.505000e+05 1.505000e+05 0.00 NULL
2016 Public Advocate First Assistant To The Public Advocate 144371.00000 1.443710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.443710e+05 1.443710e+05 0.00 NULL
2016 Public Advocate Legislative Attorney 85375.00000 1.707500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.707500e+05 1.707500e+05 0.00 NULL
2016 Public Advocate Legislative Information Officer 92826.50000 3.713060e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.713060e+05 3.713060e+05 0.00 NULL
2016 Public Advocate Office Assistant 57790.17500 1.155804e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.155804e+05 1.155804e+05 0.00 NULL
2016 Public Advocate Office Manager 66454.60000 3.322730e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.322730e+05 3.322730e+05 0.00 NULL
2016 Public Advocate Program Research Analyst To The Public Advocate 40000.00000 4.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.000000e+04 4.000000e+04 0.00 NULL
2016 Public Advocate Public Advocate 184800.00000 1.848000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.848000e+05 1.848000e+05 0.00 NULL
2016 Public Service Corps College Aide 2106.01397 8.676778e+05 0.00 0.000000e+00 0.000 0.00 412 0.000000e+00 0.00 8.676778e+05 8.676778e+05 0.00 NULL
2016 Queens Community Board #1 Community Assistant 30000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2016 Queens Community Board #1 Community Associate 271.25000 2.712500e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.712500e+02 2.712500e+02 0.00 NULL
2016 Queens Community Board #1 Community Service Aide 10654.83500 2.130967e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.130967e+04 2.130967e+04 0.00 NULL
2016 Queens Community Board #1 District Manager 84272.00000 1.685440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.685440e+05 1.685440e+05 0.00 NULL
2016 Queens Community Board #10 Community Associate 41823.50000 8.364700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.364700e+04 8.364700e+04 0.00 NULL
2016 Queens Community Board #10 Community Coordinator 7824.96000 7.824960e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.824960e+03 7.824960e+03 0.00 NULL
2016 Queens Community Board #10 District Manager 86642.00000 8.664200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.664200e+04 8.664200e+04 0.00 NULL
2016 Queens Community Board #11 Community Associate 44582.00000 4.458200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.458200e+04 4.458200e+04 0.00 NULL
2016 Queens Community Board #11 Community Coordinator 58624.00000 5.862400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.862400e+04 5.862400e+04 0.00 NULL
2016 Queens Community Board #11 District Manager 96863.00000 9.686300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.686300e+04 9.686300e+04 0.00 NULL
2016 Queens Community Board #11 Secretary 25868.00000 2.586800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.586800e+04 2.586800e+04 0.00 NULL
2016 Queens Community Board #12 Community Assistant 37052.00000 3.705200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.705200e+04 3.705200e+04 0.00 NULL
2016 Queens Community Board #12 Community Service Aide 31116.00000 3.111600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.111600e+04 3.111600e+04 0.00 NULL
2016 Queens Community Board #12 District Manager 107470.00000 1.074700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074700e+05 1.074700e+05 0.00 NULL
2016 Queens Community Board #13 Community Coordinator 58719.50000 1.174390e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.174390e+05 1.174390e+05 0.00 NULL
2016 Queens Community Board #13 District Manager 92739.00000 1.854780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.854780e+05 1.854780e+05 0.00 NULL
2016 Queens Community Board #14 Community Coordinator 66155.00000 6.615500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.615500e+04 6.615500e+04 0.00 NULL
2016 Queens Community Board #14 Community Service Aide 13115.00000 1.311500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.311500e+04 1.311500e+04 0.00 NULL
2016 Queens Community Board #14 District Manager 118949.00000 1.189490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.189490e+05 1.189490e+05 0.00 NULL
2016 Queens Community Board #2 Community Assistant 34305.00000 3.430500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.430500e+04 3.430500e+04 0.00 NULL
2016 Queens Community Board #2 Community Associate 56069.00000 5.606900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.606900e+04 5.606900e+04 0.00 NULL
2016 Queens Community Board #2 Community Service Aide 16231.71000 1.623171e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.623171e+04 1.623171e+04 0.00 NULL
2016 Queens Community Board #2 District Manager 97983.00000 9.798300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.798300e+04 9.798300e+04 0.00 NULL
2016 Queens Community Board #3 Community Associate 42000.00000 4.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.200000e+04 4.200000e+04 0.00 NULL
2016 Queens Community Board #3 Community Service Aide 19486.66667 5.846000e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.846000e+04 5.846000e+04 0.00 NULL
2016 Queens Community Board #3 District Manager 92487.00000 9.248700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.248700e+04 9.248700e+04 0.00 NULL
2016 Queens Community Board #4 Community Assistant 37830.00000 3.783000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.783000e+04 3.783000e+04 0.00 NULL
2016 Queens Community Board #4 Community Coordinator 75900.00000 7.590000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.590000e+04 7.590000e+04 0.00 NULL
2016 Queens Community Board #4 District Manager 88774.00000 8.877400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.877400e+04 8.877400e+04 0.00 NULL
2016 Queens Community Board #5 Community Associate 39829.22500 1.194877e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.194877e+05 1.194877e+05 0.00 NULL
2016 Queens Community Board #5 District Manager 81852.00000 8.185200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.185200e+04 8.185200e+04 0.00 NULL
2016 Queens Community Board #6 Community Associate 57136.00000 5.713600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.713600e+04 5.713600e+04 0.00 NULL
2016 Queens Community Board #6 Community Service Aide 18506.00000 3.701200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.701200e+04 3.701200e+04 0.00 NULL
2016 Queens Community Board #6 District Manager 99022.00000 9.902200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.902200e+04 9.902200e+04 0.00 NULL
2016 Queens Community Board #6 Secretary 35383.00000 3.538300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.538300e+04 3.538300e+04 0.00 NULL
2016 Queens Community Board #7 Assistant District Manager 40000.00000 4.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.000000e+04 4.000000e+04 0.00 NULL
2016 Queens Community Board #7 Community Assistant 35878.00000 3.587800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.587800e+04 3.587800e+04 0.00 NULL
2016 Queens Community Board #7 Community Service Aide 23393.00000 2.339300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.339300e+04 2.339300e+04 0.00 NULL
2016 Queens Community Board #7 District Manager 106291.00000 1.062910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.062910e+05 1.062910e+05 0.00 NULL
2016 Queens Community Board #8 Community Assistant 29802.66667 8.940800e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 8.940800e+04 8.940800e+04 0.00 NULL
2016 Queens Community Board #8 Community Associate 39841.00000 3.984100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.984100e+04 3.984100e+04 0.00 NULL
2016 Queens Community Board #8 District Manager 104646.00000 1.046460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.046460e+05 1.046460e+05 0.00 NULL
2016 Queens Community Board #9 Community Assistant 34030.00000 3.403000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.403000e+04 3.403000e+04 0.00 NULL
2016 Queens Community Board #9 Community Associate 39841.00000 3.984100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.984100e+04 3.984100e+04 0.00 NULL
2016 Queens Community Board #9 Community Service Aide 18468.00000 1.846800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.846800e+04 1.846800e+04 0.00 NULL
2016 Queens Community Board #9 District Manager 67500.00000 6.750000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.750000e+04 6.750000e+04 0.00 NULL
2016 Staten Island Community Bd #1 Community Associate 46635.00000 9.327000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.327000e+04 9.327000e+04 0.00 NULL
2016 Staten Island Community Bd #1 Community Coordinator 58548.00000 5.854800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.854800e+04 5.854800e+04 0.00 NULL
2016 Staten Island Community Bd #1 District Manager 86729.00000 8.672900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.672900e+04 8.672900e+04 0.00 NULL
2016 Staten Island Community Bd #2 Community Assistant 23039.99460 2.303999e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.303999e+04 2.303999e+04 0.00 NULL
2016 Staten Island Community Bd #2 Community Associate 23112.18000 2.311218e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.311218e+04 2.311218e+04 0.00 NULL
2016 Staten Island Community Bd #2 Community Coordinator 33975.19080 3.397519e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.397519e+04 3.397519e+04 0.00 NULL
2016 Staten Island Community Bd #2 District Manager 89587.00000 8.958700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.958700e+04 8.958700e+04 0.00 NULL
2016 Staten Island Community Bd #3 Community Coordinator 56577.50000 1.131550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.131550e+05 1.131550e+05 0.00 NULL
2016 Staten Island Community Bd #3 District Manager 89211.00000 8.921100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.921100e+04 8.921100e+04 0.00 NULL
2016 Tax Commission *Administrative Attorney 141855.00000 1.418550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.418550e+05 1.418550e+05 0.00 NULL
2016 Tax Commission *Certified Database Administrator 94041.00000 9.404100e+04 3883.07 3.883070e+03 3883.070 49.25 1 3.883070e+03 3883.07 9.792407e+04 9.792407e+04 0.00 NULL
2016 Tax Commission Adm Manager-Non-Mgrl 69226.50000 1.384530e+05 502.31 2.511550e+02 251.155 13.50 2 2.511550e+02 502.31 1.389553e+05 1.389553e+05 0.00 NULL
2016 Tax Commission Administrative Assessor 16270.46000 1.627046e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.627046e+04 1.627046e+04 0.00 NULL
2016 Tax Commission Agency Attorney 78439.31400 3.921966e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.921966e+05 3.921966e+05 0.00 NULL
2016 Tax Commission Assistant Counsel 119964.00000 1.199640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.199640e+05 1.199640e+05 0.00 NULL
2016 Tax Commission Associate Staff Analyst 84791.00000 1.695820e+05 1970.18 9.850900e+02 985.090 42.50 2 9.850900e+02 1970.18 1.715522e+05 1.715522e+05 0.00 NULL
2016 Tax Commission City Assessor 90046.41667 1.080557e+06 173969.84 1.449749e+04 10145.535 2484.50 12 1.014553e+04 121746.42 1.254527e+06 1.202303e+06 52223.42 NULL
2016 Tax Commission Clerical Associate 55738.00000 5.573800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.573800e+04 5.573800e+04 0.00 NULL
2016 Tax Commission College Aide 9921.33068 1.091346e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.091346e+05 1.091346e+05 0.00 NULL
2016 Tax Commission Commissioner 70418.00000 4.225080e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.225080e+05 4.225080e+05 0.00 NULL
2016 Tax Commission Community Assistant 45887.50000 4.588750e+04 25.00 2.500000e+01 25.000 1.00 1 2.500000e+01 25.00 4.591250e+04 4.591250e+04 0.00 NULL
2016 Tax Commission Computer Associate 70826.66667 2.124800e+05 6723.58 2.241193e+03 2485.400 131.00 3 2.241193e+03 6723.58 2.192036e+05 2.192036e+05 0.00 NULL
2016 Tax Commission Computer Specialist 105502.00000 1.055020e+05 5675.54 5.675540e+03 5675.540 67.00 1 5.675540e+03 5675.54 1.111775e+05 1.111775e+05 0.00 NULL
2016 Tax Commission Computer Systems Manager 130566.00000 1.305660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.305660e+05 1.305660e+05 0.00 NULL
2016 Tax Commission Executive Agency Counsel 146076.00000 1.460760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.460760e+05 1.460760e+05 0.00 NULL
2016 Tax Commission Executive Assistant To The President Of The Tax Commission 130566.00000 1.305660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.305660e+05 1.305660e+05 0.00 NULL
2016 Tax Commission Paralegal Aide 50225.00000 5.022500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.022500e+04 5.022500e+04 0.00 NULL
2016 Tax Commission President 203357.50000 4.067150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.067150e+05 4.067150e+05 0.00 NULL
2016 Tax Commission Principal Administrative Associate 61097.00000 2.443880e+05 6057.19 1.514297e+03 0.000 128.00 4 0.000000e+00 0.00 2.504452e+05 2.443880e+05 6057.19 NULL
2016 Tax Commission Secretary 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2016 Tax Commission Secretary Of The Tax Commission 74313.00000 7.431300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.431300e+04 7.431300e+04 0.00 NULL
2016 Tax Commission Secretary To The President 74313.00000 7.431300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.431300e+04 7.431300e+04 0.00 NULL
2016 Taxi & Limousine Commission *Certified Database Administrator 91303.00000 9.130300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.130300e+04 9.130300e+04 0.00 NULL
2016 Taxi & Limousine Commission Accountant 73863.66667 2.215910e+05 1522.47 5.074900e+02 91.640 29.50 3 9.164000e+01 274.92 2.231135e+05 2.218659e+05 1247.55 NULL
2016 Taxi & Limousine Commission Adm Manager-Non-Mgrl 67547.75000 2.701910e+05 10365.53 2.591383e+03 2984.240 263.00 4 2.591383e+03 10365.53 2.805565e+05 2.805565e+05 0.00 NULL
2016 Taxi & Limousine Commission Admin Contract Specialist 93000.00000 9.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.300000e+04 9.300000e+04 0.00 NULL
2016 Taxi & Limousine Commission Administratiive Taxi & Limousine Inspector 123657.12500 9.892570e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.892570e+05 9.892570e+05 0.00 NULL
2016 Taxi & Limousine Commission Administrative City Planner 118507.00000 3.555210e+05 1144.11 3.813700e+02 0.000 19.75 3 0.000000e+00 0.00 3.566651e+05 3.555210e+05 1144.11 NULL
2016 Taxi & Limousine Commission Administrative Manager 130940.00000 1.309400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.309400e+05 1.309400e+05 0.00 NULL
2016 Taxi & Limousine Commission Administrative Procurement Analyst 128066.33333 3.841990e+05 53.88 1.796000e+01 0.000 1.00 3 0.000000e+00 0.00 3.842529e+05 3.841990e+05 53.88 NULL
2016 Taxi & Limousine Commission Administrative Project Manager 83088.00000 2.492640e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.492640e+05 2.492640e+05 0.00 NULL
2016 Taxi & Limousine Commission Administrative Public Information Specialist 142618.50000 2.852370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.852370e+05 2.852370e+05 0.00 NULL
2016 Taxi & Limousine Commission Administrative Quality Assurance Specialist 139393.33333 4.181800e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.181800e+05 4.181800e+05 0.00 NULL
2016 Taxi & Limousine Commission Administrative Staff Analyst 91304.53846 1.186959e+06 2326.06 1.789277e+02 7.740 8.75 13 7.740000e+00 100.62 1.189285e+06 1.187060e+06 2225.44 NULL
2016 Taxi & Limousine Commission Agency Attorney 67109.25926 1.811950e+06 45659.36 1.691087e+03 73.850 1012.75 27 7.385000e+01 1993.95 1.857609e+06 1.813944e+06 43665.41 NULL
2016 Taxi & Limousine Commission Agency Attorney Interne 56429.44000 1.410736e+06 8149.45 3.259780e+02 0.000 220.75 25 0.000000e+00 0.00 1.418885e+06 1.410736e+06 8149.45 NULL
2016 Taxi & Limousine Commission Associate Fingerprint Technician 36224.00000 3.622400e+04 322.31 3.223100e+02 322.310 0.00 1 3.223100e+02 322.31 3.654631e+04 3.654631e+04 0.00 NULL
2016 Taxi & Limousine Commission Associate Staff Analyst 80660.00000 3.226400e+05 108.95 2.723750e+01 0.000 0.00 4 0.000000e+00 0.00 3.227490e+05 3.226400e+05 108.95 NULL
2016 Taxi & Limousine Commission Associate Taxi & Limousine Inspector 54591.91667 4.585721e+06 279138.38 3.323076e+03 1045.715 6673.50 84 1.045715e+03 87840.06 4.864859e+06 4.673561e+06 191298.32 NULL
2016 Taxi & Limousine Commission Bookkeeper 46000.00000 4.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.600000e+04 4.600000e+04 0.00 NULL
2016 Taxi & Limousine Commission Cashier 31906.71889 2.871605e+05 1660.56 1.845067e+02 0.000 52.50 9 0.000000e+00 0.00 2.888210e+05 2.871605e+05 1660.56 NULL
2016 Taxi & Limousine Commission Certified It Administrator 93267.66667 5.596060e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.596060e+05 5.596060e+05 0.00 NULL
2016 Taxi & Limousine Commission Chairman 205868.00000 2.058680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.058680e+05 2.058680e+05 0.00 NULL
2016 Taxi & Limousine Commission City Planner 57400.00000 5.740000e+04 294.53 2.945300e+02 294.530 8.25 1 2.945300e+02 294.53 5.769453e+04 5.769453e+04 0.00 NULL
2016 Taxi & Limousine Commission Clerical Aide 32060.00000 9.618000e+04 210.23 7.007667e+01 0.000 11.25 3 0.000000e+00 0.00 9.639023e+04 9.618000e+04 210.23 NULL
2016 Taxi & Limousine Commission Clerical Associate 43262.07395 1.643959e+06 85537.85 2.250996e+03 878.335 2692.00 38 8.783350e+02 33376.73 1.729497e+06 1.677336e+06 52161.12 NULL
2016 Taxi & Limousine Commission College Aide 3598.88000 5.398320e+04 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 5.398320e+04 5.398320e+04 0.00 NULL
2016 Taxi & Limousine Commission Community Assistant 29618.86719 2.221415e+06 42931.10 5.724147e+02 92.610 1744.55 75 9.261000e+01 6945.75 2.264346e+06 2.228361e+06 35985.35 NULL
2016 Taxi & Limousine Commission Community Associate 41393.83431 4.015202e+06 137843.41 1.421066e+03 370.720 4903.75 97 3.707200e+02 35959.84 4.153045e+06 4.051162e+06 101883.57 NULL
2016 Taxi & Limousine Commission Community Coordinator 60577.82353 2.059646e+06 23500.25 6.911838e+02 0.000 599.75 34 0.000000e+00 0.00 2.083146e+06 2.059646e+06 23500.25 NULL
2016 Taxi & Limousine Commission Computer Aide-Non-Spvr 15612.46500 3.122493e+04 577.68 2.888400e+02 288.840 13.00 2 2.888400e+02 577.68 3.180261e+04 3.180261e+04 0.00 NULL
2016 Taxi & Limousine Commission Computer Associate 66799.01889 6.011912e+05 29155.45 3.239494e+03 3251.120 659.25 9 3.239494e+03 29155.45 6.303466e+05 6.303466e+05 0.00 NULL
2016 Taxi & Limousine Commission Computer Specialist 94057.85714 6.584050e+05 13191.52 1.884503e+03 1560.300 179.00 7 1.560300e+03 10922.10 6.715965e+05 6.693271e+05 2269.42 NULL
2016 Taxi & Limousine Commission Computer Systems Manager 122528.50000 7.351710e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.351710e+05 7.351710e+05 0.00 NULL
2016 Taxi & Limousine Commission Customer Information Representative 32988.00000 3.298800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.298800e+04 3.298800e+04 0.00 NULL
2016 Taxi & Limousine Commission Executive Agency Counsel 113029.00000 1.130290e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.130290e+06 1.130290e+06 0.00 NULL
2016 Taxi & Limousine Commission Executive Assistant 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2016 Taxi & Limousine Commission Hearing Officer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2016 Taxi & Limousine Commission Investigator 53431.50000 2.137260e+05 5576.34 1.394085e+03 1026.215 120.00 4 1.026215e+03 4104.86 2.193023e+05 2.178309e+05 1471.48 NULL
2016 Taxi & Limousine Commission Maintenance Worker NA NA 5715.58 1.905193e+03 2322.660 108.75 3 1.905193e+03 5715.58 NA NA NA NULL
2016 Taxi & Limousine Commission Operations Communications Specialist 29627.79978 2.962780e+05 3862.53 3.862530e+02 290.605 164.00 10 2.906050e+02 2906.05 3.001405e+05 2.991840e+05 956.48 NULL
2016 Taxi & Limousine Commission Principal Administrative Associate 61053.05556 1.098955e+06 42627.05 2.368169e+03 696.280 1004.00 18 6.962800e+02 12533.04 1.141582e+06 1.111488e+06 30094.01 NULL
2016 Taxi & Limousine Commission Procurement Analyst 71442.00000 7.144200e+04 1000.94 1.000940e+03 1000.940 22.25 1 1.000940e+03 1000.94 7.244294e+04 7.244294e+04 0.00 NULL
2016 Taxi & Limousine Commission Research Assistant 49284.00000 4.928400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.928400e+04 4.928400e+04 0.00 NULL
2016 Taxi & Limousine Commission Secretary 39916.33333 1.197490e+05 104.16 3.472000e+01 0.000 3.75 3 0.000000e+00 0.00 1.198532e+05 1.197490e+05 104.16 NULL
2016 Taxi & Limousine Commission Secretary To The Chairman 56666.00000 5.666600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.666600e+04 5.666600e+04 0.00 NULL
2016 Taxi & Limousine Commission Staff Analyst 60255.00000 6.025500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.025500e+04 6.025500e+04 0.00 NULL
2016 Taxi & Limousine Commission Staff Analyst Trainee 52308.50000 1.046170e+05 23.62 1.181000e+01 11.810 1.00 2 1.181000e+01 23.62 1.046406e+05 1.046406e+05 0.00 NULL
2016 Taxi & Limousine Commission Stock Worker 38366.40625 7.673281e+04 7058.03 3.529015e+03 3529.015 275.25 2 3.529015e+03 7058.03 8.379084e+04 8.379084e+04 0.00 NULL
2016 Taxi & Limousine Commission Supervisor Of Stock Workers 46656.66667 1.399700e+05 6339.50 2.113167e+03 1376.710 222.00 3 1.376710e+03 4130.13 1.463095e+05 1.441001e+05 2209.37 NULL
2016 Taxi & Limousine Commission Taxi And Limousine Inspector 39627.94175 1.224503e+07 376619.90 1.218835e+03 68.720 12000.75 309 6.872000e+01 21234.48 1.262165e+07 1.226627e+07 355385.42 NULL
2016 Taxi & Limousine Commission Telecommunications Associate 101524.00000 1.015240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.015240e+05 1.015240e+05 0.00 NULL
2016 Teachers Retirement System Accountant 61429.30000 6.142930e+05 2525.54 2.525540e+02 0.000 66.75 10 0.000000e+00 0.00 6.168185e+05 6.142930e+05 2525.54 NULL
2016 Teachers Retirement System Adm Manager-Non-Mgrl 74818.37500 5.985470e+05 2552.30 3.190375e+02 0.000 109.25 8 0.000000e+00 0.00 6.010993e+05 5.985470e+05 2552.30 NULL
2016 Teachers Retirement System Administrative Accountant 94401.57143 6.608110e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.608110e+05 6.608110e+05 0.00 NULL
2016 Teachers Retirement System Administrative Labor Relations Analyst 85659.25000 3.426370e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.426370e+05 3.426370e+05 0.00 NULL
2016 Teachers Retirement System Administrative Management Auditor 119001.50000 2.380030e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.380030e+05 2.380030e+05 0.00 NULL
2016 Teachers Retirement System Administrative Manager 112608.00000 2.252160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.252160e+05 2.252160e+05 0.00 NULL
2016 Teachers Retirement System Administrative Project Manager 90039.00000 9.003900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.003900e+04 9.003900e+04 0.00 NULL
2016 Teachers Retirement System Administrative Public Information Specialist 87378.00000 8.737800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.737800e+04 8.737800e+04 0.00 NULL
2016 Teachers Retirement System Administrative Retirement Benefits Specialist 99116.56000 2.477914e+06 3451.52 1.380608e+02 0.000 60.50 25 0.000000e+00 0.00 2.481366e+06 2.477914e+06 3451.52 NULL
2016 Teachers Retirement System Agency Attorney 75100.00000 1.502000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.502000e+05 1.502000e+05 0.00 NULL
2016 Teachers Retirement System Assistant Executive Director 162511.33333 4.875340e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.875340e+05 4.875340e+05 0.00 NULL
2016 Teachers Retirement System Assistant Retirement Benefits Examiner 49387.88889 4.444910e+05 1641.57 1.823967e+02 0.000 88.00 9 0.000000e+00 0.00 4.461326e+05 4.444910e+05 1641.57 NULL
2016 Teachers Retirement System Associate Public Information Specialist 57632.33333 1.728970e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.728970e+05 1.728970e+05 0.00 NULL
2016 Teachers Retirement System Associate Quality Assurance Specialist 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2016 Teachers Retirement System Associate Retirement Benefits Examiner 55466.90551 7.044297e+06 89389.99 7.038582e+02 0.000 2368.75 127 0.000000e+00 0.00 7.133687e+06 7.044297e+06 89389.99 NULL
2016 Teachers Retirement System Associate Staff Analyst 75632.25000 3.025290e+05 2055.83 5.139575e+02 415.345 70.00 4 4.153450e+02 1661.38 3.045848e+05 3.041904e+05 394.45 NULL
2016 Teachers Retirement System Bookkeeper 45366.00000 3.629280e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 3.629280e+05 3.629280e+05 0.00 NULL
2016 Teachers Retirement System Certified Applications Developer 96743.00000 9.674300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.674300e+04 9.674300e+04 0.00 NULL
2016 Teachers Retirement System Certified It Developer 110350.00000 1.103500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.103500e+05 1.103500e+05 0.00 NULL
2016 Teachers Retirement System Clerical Associate 45993.57143 9.658650e+05 8700.19 4.142948e+02 0.000 285.25 21 0.000000e+00 0.00 9.745652e+05 9.658650e+05 8700.19 NULL
2016 Teachers Retirement System College Aide 5743.02500 2.871512e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.871512e+04 2.871512e+04 0.00 NULL
2016 Teachers Retirement System College Aide - Assignment Levels Ii And Iii 22053.99250 4.410799e+04 813.91 4.069550e+02 406.955 40.00 2 4.069550e+02 813.91 4.492189e+04 4.492189e+04 0.00 NULL
2016 Teachers Retirement System Community Assistant 38131.00000 3.813100e+04 40.09 4.009000e+01 40.090 2.00 1 4.009000e+01 40.09 3.817109e+04 3.817109e+04 0.00 NULL
2016 Teachers Retirement System Community Associate 38397.00000 1.151910e+05 0.00 0.000000e+00 0.000 1.00 3 0.000000e+00 0.00 1.151910e+05 1.151910e+05 0.00 NULL
2016 Teachers Retirement System Community Coordinator 52000.00000 5.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.200000e+04 5.200000e+04 0.00 NULL
2016 Teachers Retirement System Computer Associate 70705.90000 7.070590e+05 4168.52 4.168520e+02 0.000 85.00 10 0.000000e+00 0.00 7.112275e+05 7.070590e+05 4168.52 NULL
2016 Teachers Retirement System Computer Operations Manager 121089.00000 1.210890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.210890e+05 1.210890e+05 0.00 NULL
2016 Teachers Retirement System Computer Service Technician 60090.00000 6.009000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.009000e+04 6.009000e+04 0.00 NULL
2016 Teachers Retirement System Computer Specialist 101103.54545 3.336417e+06 10461.82 3.170248e+02 0.000 158.25 33 0.000000e+00 0.00 3.346879e+06 3.336417e+06 10461.82 NULL
2016 Teachers Retirement System Computer Systems Manager 140472.20755 7.445027e+06 29.10 5.490566e-01 0.000 0.00 53 0.000000e+00 0.00 7.445056e+06 7.445027e+06 29.10 NULL
2016 Teachers Retirement System Customer Information Representative 57002.00000 4.560160e+05 1436.18 1.795225e+02 0.000 63.00 8 0.000000e+00 0.00 4.574522e+05 4.560160e+05 1436.18 NULL
2016 Teachers Retirement System Deputy Executive Director 203660.00000 2.036600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.036600e+05 2.036600e+05 0.00 NULL
2016 Teachers Retirement System Executive Agency Counsel 145050.00000 2.901000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.901000e+05 2.901000e+05 0.00 NULL
2016 Teachers Retirement System Executive Director 219932.00000 2.199320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.199320e+05 2.199320e+05 0.00 NULL
2016 Teachers Retirement System Graphic Artist 63659.00000 1.273180e+05 1114.17 5.570850e+02 557.085 34.50 2 5.570850e+02 1114.17 1.284322e+05 1.284322e+05 0.00 NULL
2016 Teachers Retirement System Investment Analyst 72595.25000 2.903810e+05 565.80 1.414500e+02 0.000 12.00 4 0.000000e+00 0.00 2.909468e+05 2.903810e+05 565.80 NULL
2016 Teachers Retirement System Management Auditor 65559.00000 1.311180e+05 5478.36 2.739180e+03 2739.180 121.50 2 2.739180e+03 5478.36 1.365964e+05 1.365964e+05 0.00 NULL
2016 Teachers Retirement System Office Machine Aide 40918.25000 3.273460e+05 295.37 3.692125e+01 0.000 11.75 8 0.000000e+00 0.00 3.276414e+05 3.273460e+05 295.37 NULL
2016 Teachers Retirement System Principal Administrative Associate 63209.32800 9.481399e+05 4833.35 3.222233e+02 0.000 143.75 15 0.000000e+00 0.00 9.529733e+05 9.481399e+05 4833.35 NULL
2016 Teachers Retirement System Staff Analyst 60348.25000 2.413930e+05 121.07 3.026750e+01 0.000 0.00 4 0.000000e+00 0.00 2.415141e+05 2.413930e+05 121.07 NULL
2016 Teachers Retirement System Stock Worker 34165.00000 3.416500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.416500e+04 3.416500e+04 0.00 NULL
2016 Teachers Retirement System Summer College Intern 2011.62500 2.413950e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 2.413950e+04 2.413950e+04 0.00 NULL
2016 Teachers Retirement System Supervisor Of Office Machine Operations 40975.50000 8.195100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.195100e+04 8.195100e+04 0.00 NULL
2016 Teachers Retirement System Supervisor Of Stock Workers 44156.00000 8.831200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.831200e+04 8.831200e+04 0.00 NULL
2017 Admin For Children’s Svcs *Certified Applications Developer 101341.00000 1.013410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.013410e+05 1.013410e+05 0.00 NULL
2017 Admin For Children’s Svcs *Certified Database Administrator 103620.50000 2.072410e+05 2010.13 1.005065e+03 1005.065 30.50 2 1.005065e+03 2010.13 2.092511e+05 2.092511e+05 0.00 NULL
2017 Admin For Children’s Svcs *Certified Local Area Network Administrator 94593.33333 2.837800e+05 14007.51 4.669170e+03 3569.320 195.50 3 3.569320e+03 10707.96 2.977875e+05 2.944880e+05 3299.55 NULL
2017 Admin For Children’s Svcs *Custodial Assistant 38463.00000 3.846300e+04 44097.04 4.409704e+04 44097.040 1357.00 1 4.409704e+04 44097.04 8.256004e+04 8.256004e+04 0.00 NULL
2017 Admin For Children’s Svcs Accountant 62181.00000 8.705340e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 8.705340e+05 8.705340e+05 0.00 NULL
2017 Admin For Children’s Svcs Adm Manager-Non-Mgrl 67665.35000 4.059921e+06 192908.11 3.215135e+03 0.000 4531.75 60 0.000000e+00 0.00 4.252829e+06 4.059921e+06 192908.11 NULL
2017 Admin For Children’s Svcs Admin Community Relations Specialist 82128.88000 4.106444e+06 234052.06 4.681041e+03 0.000 3744.25 50 0.000000e+00 0.00 4.340496e+06 4.106444e+06 234052.06 NULL
2017 Admin For Children’s Svcs Admin Construction Project Manager 115000.00000 1.150000e+05 41999.89 4.199989e+04 41999.890 528.50 1 4.199989e+04 41999.89 1.569999e+05 1.569999e+05 0.00 NULL
2017 Admin For Children’s Svcs Admin Contract Specialist 103530.60000 5.176530e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.176530e+05 5.176530e+05 0.00 NULL
2017 Admin For Children’s Svcs Administrative Accountant 93780.00000 9.378000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.378000e+04 9.378000e+04 0.00 NULL
2017 Admin For Children’s Svcs Administrative Architect 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2017 Admin For Children’s Svcs Administrative Construction Project Manager 122358.00000 1.223580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.223580e+05 1.223580e+05 0.00 NULL
2017 Admin For Children’s Svcs Administrative Director Of Residential Child Care 81528.08696 1.875146e+06 18335.26 7.971852e+02 0.000 196.50 23 0.000000e+00 0.00 1.893481e+06 1.875146e+06 18335.26 NULL
2017 Admin For Children’s Svcs Administrative Director Of Social Services 97819.71194 3.501946e+07 41994.65 1.173035e+02 0.000 814.25 358 0.000000e+00 0.00 3.506145e+07 3.501946e+07 41994.65 NULL
2017 Admin For Children’s Svcs Administrative Engineer 87378.50000 1.747570e+05 8077.13 4.038565e+03 4038.565 151.50 2 4.038565e+03 8077.13 1.828341e+05 1.828341e+05 0.00 NULL
2017 Admin For Children’s Svcs Administrative Juvenile Counselor 73555.00000 7.355500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.355500e+04 7.355500e+04 0.00 NULL
2017 Admin For Children’s Svcs Administrative Management Auditor 93661.25000 3.746450e+05 47.02 1.175500e+01 0.000 0.00 4 0.000000e+00 0.00 3.746920e+05 3.746450e+05 47.02 NULL
2017 Admin For Children’s Svcs Administrative Procurement Analyst 102341.00000 4.093640e+05 484.63 1.211575e+02 0.000 9.50 4 0.000000e+00 0.00 4.098486e+05 4.093640e+05 484.63 NULL
2017 Admin For Children’s Svcs Administrative Project Manager 97549.00000 2.926470e+05 50400.67 1.680022e+04 6646.770 691.75 3 6.646770e+03 19940.31 3.430477e+05 3.125873e+05 30460.36 NULL
2017 Admin For Children’s Svcs Administrative Public Health Nurse 114581.75000 4.583270e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.583270e+05 4.583270e+05 0.00 NULL
2017 Admin For Children’s Svcs Administrative Public Information Specialist 93750.00000 3.750000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.750000e+05 3.750000e+05 0.00 NULL
2017 Admin For Children’s Svcs Administrative Real Property Manager 136902.00000 1.369020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.369020e+05 1.369020e+05 0.00 NULL
2017 Admin For Children’s Svcs Administrative Staff Analyst 96957.56000 1.211970e+07 161549.22 1.292394e+03 0.000 2641.75 125 0.000000e+00 0.00 1.228124e+07 1.211970e+07 161549.22 NULL
2017 Admin For Children’s Svcs Agency Attorney 77039.80610 2.180227e+07 61463.36 2.171850e+02 0.000 1041.75 283 0.000000e+00 0.00 2.186373e+07 2.180227e+07 61463.36 NULL
2017 Admin For Children’s Svcs Agency Attorney Interne 58005.72881 3.422338e+06 2533.35 4.293814e+01 0.000 71.75 59 0.000000e+00 0.00 3.424871e+06 3.422338e+06 2533.35 NULL
2017 Admin For Children’s Svcs Agency Chief Contracting Officer 155872.00000 1.558720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.558720e+05 1.558720e+05 0.00 NULL
2017 Admin For Children’s Svcs Architect 87619.25000 3.504770e+05 59134.01 1.478350e+04 1708.225 1022.50 4 1.708225e+03 6832.90 4.096110e+05 3.573099e+05 52301.11 NULL
2017 Admin For Children’s Svcs Assistant Architect 61104.00000 6.110400e+04 916.78 9.167800e+02 916.780 24.50 1 9.167800e+02 916.78 6.202078e+04 6.202078e+04 0.00 NULL
2017 Admin For Children’s Svcs Assistant Commissioner 134441.00000 1.344410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.344410e+05 1.344410e+05 0.00 NULL
2017 Admin For Children’s Svcs Assistant Commissioner For Facilities Operations 140837.00000 1.408370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.408370e+05 1.408370e+05 0.00 NULL
2017 Admin For Children’s Svcs Assistant Commissioner For Management Acd-Doss 195440.00000 1.954400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.954400e+05 1.954400e+05 0.00 NULL
2017 Admin For Children’s Svcs Associate Inspector 64554.00000 6.455400e+04 920.41 9.204100e+02 920.410 16.00 1 9.204100e+02 920.41 6.547441e+04 6.547441e+04 0.00 NULL
2017 Admin For Children’s Svcs Associate Juvenile Counselor 57692.15556 2.596147e+06 1464029.11 3.253398e+04 31186.300 30476.25 45 3.118630e+04 1403383.50 4.060176e+06 3.999530e+06 60645.61 NULL
2017 Admin For Children’s Svcs Associate Project Manager 80643.00000 8.064300e+04 50566.66 5.056666e+04 50566.660 704.50 1 5.056666e+04 50566.66 1.312097e+05 1.312097e+05 0.00 NULL
2017 Admin For Children’s Svcs Associate Staff Analyst 80180.00000 6.414400e+06 188020.38 2.350255e+03 0.000 3114.75 80 0.000000e+00 0.00 6.602420e+06 6.414400e+06 188020.38 NULL
2017 Admin For Children’s Svcs Asst Commissioner For Non-Secure Detention Juvenile Justice 152744.00000 1.527440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.527440e+05 1.527440e+05 0.00 NULL
2017 Admin For Children’s Svcs Attorney At Law 89405.00000 1.251670e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.251670e+06 1.251670e+06 0.00 NULL
2017 Admin For Children’s Svcs Bookkeeper 42844.83333 2.570690e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.570690e+05 2.570690e+05 0.00 NULL
2017 Admin For Children’s Svcs Carpenter NA NA 92193.22 4.609661e+04 46096.610 1334.00 2 4.609661e+04 92193.22 NA NA NA NULL
2017 Admin For Children’s Svcs Caseworker 45294.04167 2.174114e+06 51896.06 1.081168e+03 0.000 1368.50 48 0.000000e+00 0.00 2.226010e+06 2.174114e+06 51896.06 NULL
2017 Admin For Children’s Svcs Certified It Administrator 95907.00000 9.590700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.590700e+04 9.590700e+04 0.00 NULL
2017 Admin For Children’s Svcs Certified It Developer 88095.33333 2.642860e+05 153.48 5.116000e+01 0.000 3.00 3 0.000000e+00 0.00 2.644395e+05 2.642860e+05 153.48 NULL
2017 Admin For Children’s Svcs Chaplain 58445.00000 5.844500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.844500e+04 5.844500e+04 0.00 NULL
2017 Admin For Children’s Svcs Child And Family Specialist 79953.55894 2.102779e+07 907363.88 3.450053e+03 74.420 16878.60 263 7.442000e+01 19572.46 2.193515e+07 2.104736e+07 887791.42 NULL
2017 Admin For Children’s Svcs Child Protective Specialist 53100.05976 1.297234e+08 21483556.63 8.793924e+03 5810.350 527615.37 2443 5.810350e+03 14194685.05 1.512070e+08 1.439181e+08 7288871.58 NULL
2017 Admin For Children’s Svcs Child Protective Specialist Supervisor 76770.19856 4.253069e+07 10689726.44 1.929554e+04 16690.920 182068.08 554 1.669092e+04 9246769.68 5.322042e+07 5.177746e+07 1442956.76 NULL
2017 Admin For Children’s Svcs Child Welfare Specialist 55528.53333 1.166099e+07 906479.30 4.316568e+03 0.000 21362.05 210 0.000000e+00 0.00 1.256747e+07 1.166099e+07 906479.30 NULL
2017 Admin For Children’s Svcs Child Welfare Specialist Supervisor 72090.94531 9.227641e+06 550272.86 4.299007e+03 0.000 10592.50 128 0.000000e+00 0.00 9.777914e+06 9.227641e+06 550272.86 NULL
2017 Admin For Children’s Svcs Children’s Counselor 48820.66614 3.905653e+05 66920.08 8.365010e+03 1904.415 1764.00 8 1.904415e+03 15235.32 4.574854e+05 4.058006e+05 51684.76 NULL
2017 Admin For Children’s Svcs City Custodial Assistant 39173.00000 3.917300e+04 606.24 6.062400e+02 606.240 14.00 1 6.062400e+02 606.24 3.977924e+04 3.977924e+04 0.00 NULL
2017 Admin For Children’s Svcs City Laborer NA NA 276772.41 3.459655e+04 28033.485 4851.40 8 2.803349e+04 224267.88 NA NA NA NULL
2017 Admin For Children’s Svcs City Medical Director 162873.30000 6.514932e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.514932e+05 6.514932e+05 0.00 NULL
2017 Admin For Children’s Svcs City Research Scientist 86585.53846 1.125612e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.125612e+06 1.125612e+06 0.00 NULL
2017 Admin For Children’s Svcs Clerical Aide 33100.33333 9.930100e+04 1077.34 3.591133e+02 34.790 53.00 3 3.479000e+01 104.37 1.003783e+05 9.940537e+04 972.97 NULL
2017 Admin For Children’s Svcs Clerical Associate 38213.15383 7.986549e+06 484522.18 2.318288e+03 0.000 14934.25 209 0.000000e+00 0.00 8.471071e+06 7.986549e+06 484522.18 NULL
2017 Admin For Children’s Svcs Commissioner Of Children’s Services 226366.00000 4.527320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.527320e+05 4.527320e+05 0.00 NULL
2017 Admin For Children’s Svcs Community Assistant 35217.71059 2.077845e+06 199664.98 3.384152e+03 0.000 7578.50 59 0.000000e+00 0.00 2.277510e+06 2.077845e+06 199664.98 NULL
2017 Admin For Children’s Svcs Community Associate 45188.81192 3.208406e+06 203623.47 2.867936e+03 26.210 6154.21 71 2.621000e+01 1860.91 3.412029e+06 3.210267e+06 201762.56 NULL
2017 Admin For Children’s Svcs Community Coordinator 61361.41639 1.871523e+07 427831.69 1.402727e+03 0.000 10688.00 305 0.000000e+00 0.00 1.914306e+07 1.871523e+07 427831.69 NULL
2017 Admin For Children’s Svcs Computer Aide-Non-Spvr 46008.32495 1.518275e+06 7072.93 2.143312e+02 0.000 214.50 33 0.000000e+00 0.00 1.525348e+06 1.518275e+06 7072.93 NULL
2017 Admin For Children’s Svcs Computer Associate 71151.16216 2.632593e+06 17762.43 4.800657e+02 0.000 354.25 37 0.000000e+00 0.00 2.650355e+06 2.632593e+06 17762.43 NULL
2017 Admin For Children’s Svcs Computer Programmer Analyst 67682.25000 2.707290e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.707290e+05 2.707290e+05 0.00 NULL
2017 Admin For Children’s Svcs Computer Service Technician 44358.55556 3.992270e+05 553.16 6.146222e+01 24.900 18.50 9 2.490000e+01 224.10 3.997802e+05 3.994511e+05 329.06 NULL
2017 Admin For Children’s Svcs Computer Specialist 95713.25714 3.349964e+06 17401.74 4.971926e+02 0.000 283.75 35 0.000000e+00 0.00 3.367366e+06 3.349964e+06 17401.74 NULL
2017 Admin For Children’s Svcs Computer Systems Manager 105873.13158 4.023179e+06 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 4.023179e+06 4.023179e+06 0.00 NULL
2017 Admin For Children’s Svcs Confidential Agency Investigator 144200.00000 1.442000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.442000e+05 1.442000e+05 0.00 NULL
2017 Admin For Children’s Svcs Confidential Strategy Planner 88442.00000 8.844200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.844200e+04 8.844200e+04 0.00 NULL
2017 Admin For Children’s Svcs Congreg Care Spec - Acs 44285.26374 4.029959e+06 867926.23 9.537651e+03 5191.310 27040.08 91 5.191310e+03 472409.21 4.897885e+06 4.502368e+06 395517.02 NULL
2017 Admin For Children’s Svcs Congreg Care Spec- Djj 49907.04000 1.247676e+06 216523.54 8.660942e+03 2798.150 5897.37 25 2.798150e+03 69953.75 1.464200e+06 1.317630e+06 146569.79 NULL
2017 Admin For Children’s Svcs Construction Project Manager 81548.88889 7.339400e+05 255865.79 2.842953e+04 13274.010 3558.00 9 1.327401e+04 119466.09 9.898058e+05 8.534061e+05 136399.70 NULL
2017 Admin For Children’s Svcs Consultant 71558.35294 1.216492e+06 159.24 9.367059e+00 0.000 4.00 17 0.000000e+00 0.00 1.216651e+06 1.216492e+06 159.24 NULL
2017 Admin For Children’s Svcs Contract Specialist 44454.00000 4.445400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.445400e+04 4.445400e+04 0.00 NULL
2017 Admin For Children’s Svcs Cook 40107.83333 2.406470e+05 72396.89 1.206615e+04 10637.330 2407.75 6 1.063733e+04 63823.98 3.130439e+05 3.044710e+05 8572.91 NULL
2017 Admin For Children’s Svcs Custodian 40476.62500 3.238130e+05 138511.85 1.731398e+04 12219.625 4930.25 8 1.221962e+04 97757.00 4.623248e+05 4.215700e+05 40754.85 NULL
2017 Admin For Children’s Svcs Deputy Asst Commissioner For Program Dev & Anal 190035.00000 1.900350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.900350e+05 1.900350e+05 0.00 NULL
2017 Admin For Children’s Svcs Deputy Commissioner 185952.50000 3.719050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.719050e+05 3.719050e+05 0.00 NULL
2017 Admin For Children’s Svcs Deputy Director Of Administration 109885.00000 2.197700e+05 1588.26 7.941300e+02 794.130 26.50 2 7.941300e+02 1588.26 2.213583e+05 2.213583e+05 0.00 NULL
2017 Admin For Children’s Svcs Deputy General Counsel 160970.00000 1.609700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.609700e+05 1.609700e+05 0.00 NULL
2017 Admin For Children’s Svcs Deputy Superintendent 74725.50000 4.483530e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.483530e+05 4.483530e+05 0.00 NULL
2017 Admin For Children’s Svcs Director Of Field Operations 99259.79695 1.955418e+07 182156.18 9.246507e+02 0.000 3008.00 197 0.000000e+00 0.00 1.973634e+07 1.955418e+07 182156.18 NULL
2017 Admin For Children’s Svcs Director Of Program Planning 114709.00000 1.147090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.147090e+05 1.147090e+05 0.00 NULL
2017 Admin For Children’s Svcs Director Of Security 113000.00000 1.130000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.130000e+05 1.130000e+05 0.00 NULL
2017 Admin For Children’s Svcs Electrician NA NA 83836.75 4.191838e+04 41918.375 968.00 2 4.191838e+04 83836.75 NA NA NA NULL
2017 Admin For Children’s Svcs Eligibility Specialist 47322.00000 9.464400e+04 11174.02 5.587010e+03 5587.010 295.00 2 5.587010e+03 11174.02 1.058180e+05 1.058180e+05 0.00 NULL
2017 Admin For Children’s Svcs Executive Agency Counsel 125210.63043 5.759689e+06 264.42 5.748261e+00 0.000 0.50 46 0.000000e+00 0.00 5.759953e+06 5.759689e+06 264.42 NULL
2017 Admin For Children’s Svcs Executive Assistant To The Executive Deputy Adm 127518.00000 1.275180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.275180e+05 1.275180e+05 0.00 NULL
2017 Admin For Children’s Svcs Food Service Manager 67502.00000 6.750200e+04 9014.99 9.014990e+03 9014.990 186.25 1 9.014990e+03 9014.99 7.651699e+04 7.651699e+04 0.00 NULL
2017 Admin For Children’s Svcs Graphic Artist 52714.00000 5.271400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.271400e+04 5.271400e+04 0.00 NULL
2017 Admin For Children’s Svcs Home Aide 33745.00000 3.374500e+04 2479.71 2.479710e+03 2479.710 86.25 1 2.479710e+03 2479.71 3.622471e+04 3.622471e+04 0.00 NULL
2017 Admin For Children’s Svcs Homemaker 34990.00000 1.749500e+05 4309.64 8.619280e+02 747.000 178.50 5 7.470000e+02 3735.00 1.792596e+05 1.786850e+05 574.64 NULL
2017 Admin For Children’s Svcs Institutional Aide 36346.34615 9.450050e+05 211824.29 8.147088e+03 3763.300 7683.75 26 3.763300e+03 97845.80 1.156829e+06 1.042851e+06 113978.49 NULL
2017 Admin For Children’s Svcs Investigator 74296.00000 1.485920e+05 218.73 1.093650e+02 109.365 5.00 2 1.093650e+02 218.73 1.488107e+05 1.488107e+05 0.00 NULL
2017 Admin For Children’s Svcs Juvenile Counselor 43762.96970 1.155342e+07 3910744.85 1.481343e+04 11270.900 109217.04 264 1.127090e+04 2975517.60 1.546417e+07 1.452894e+07 935227.25 NULL
2017 Admin For Children’s Svcs Management Auditor 66503.20000 3.325160e+05 103.56 2.071200e+01 0.000 2.50 5 0.000000e+00 0.00 3.326196e+05 3.325160e+05 103.56 NULL
2017 Admin For Children’s Svcs Motor Vehicle Operator 44207.00000 9.283470e+05 527409.51 2.511474e+04 20745.650 15187.13 21 2.074565e+04 435658.65 1.455757e+06 1.364006e+06 91750.86 NULL
2017 Admin For Children’s Svcs Motor Vehicle Supervisor 53997.50000 1.079950e+05 47325.90 2.366295e+04 23662.950 987.00 2 2.366295e+04 47325.90 1.553209e+05 1.553209e+05 0.00 NULL
2017 Admin For Children’s Svcs Nutritionist 71902.00000 7.190200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.190200e+04 7.190200e+04 0.00 NULL
2017 Admin For Children’s Svcs Office Machine Aide 33784.50000 6.756900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.756900e+04 6.756900e+04 0.00 NULL
2017 Admin For Children’s Svcs Ombudsman 67857.00000 6.785700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.785700e+04 6.785700e+04 0.00 NULL
2017 Admin For Children’s Svcs Painter NA NA 88533.08 2.951103e+04 30512.060 1579.25 3 2.951103e+04 88533.08 NA NA NA NULL
2017 Admin For Children’s Svcs Paralegal Aide 40805.00000 8.569050e+05 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 8.569050e+05 8.569050e+05 0.00 NULL
2017 Admin For Children’s Svcs Plumber NA NA 95585.64 2.389641e+04 29847.920 936.50 4 2.389641e+04 95585.64 NA NA NA NULL
2017 Admin For Children’s Svcs Principal Administrative Associate 54849.20957 1.541263e+07 408194.68 1.452650e+03 0.000 10476.50 281 0.000000e+00 0.00 1.582082e+07 1.541263e+07 408194.68 NULL
2017 Admin For Children’s Svcs Procurement Analyst 59219.66667 7.106360e+05 2173.63 1.811358e+02 0.000 78.50 12 0.000000e+00 0.00 7.128096e+05 7.106360e+05 2173.63 NULL
2017 Admin For Children’s Svcs Program Evaluator 74897.11111 6.740740e+06 85215.40 9.468378e+02 0.000 2137.50 90 0.000000e+00 0.00 6.825955e+06 6.740740e+06 85215.40 NULL
2017 Admin For Children’s Svcs Project Manager 72683.00000 7.268300e+04 2370.37 2.370370e+03 2370.370 35.00 1 2.370370e+03 2370.37 7.505337e+04 7.505337e+04 0.00 NULL
2017 Admin For Children’s Svcs Protection Agent 63206.14667 9.480922e+06 331195.75 2.207972e+03 0.000 7923.58 150 0.000000e+00 0.00 9.812118e+06 9.480922e+06 331195.75 NULL
2017 Admin For Children’s Svcs Recreation Director 44464.00000 4.446400e+04 624.66 6.246600e+02 624.660 16.25 1 6.246600e+02 624.66 4.508866e+04 4.508866e+04 0.00 NULL
2017 Admin For Children’s Svcs Recreation Supervisor 55008.00000 5.500800e+04 10879.74 1.087974e+04 10879.740 256.00 1 1.087974e+04 10879.74 6.588774e+04 6.588774e+04 0.00 NULL
2017 Admin For Children’s Svcs Research Assistant 47680.66667 2.860840e+05 29195.74 4.865957e+03 0.000 719.25 6 0.000000e+00 0.00 3.152797e+05 2.860840e+05 29195.74 NULL
2017 Admin For Children’s Svcs Secretary 45120.00000 4.963200e+05 5205.55 4.732318e+02 0.000 212.25 11 0.000000e+00 0.00 5.015255e+05 4.963200e+05 5205.55 NULL
2017 Admin For Children’s Svcs Secretary Of Comm 69440.00000 6.944000e+04 361.06 3.610600e+02 361.060 12.00 1 3.610600e+02 361.06 6.980106e+04 6.980106e+04 0.00 NULL
2017 Admin For Children’s Svcs Sheet Metal Worker NA NA 63419.25 6.341925e+04 63419.250 606.00 1 6.341925e+04 63419.25 NA NA NA NULL
2017 Admin For Children’s Svcs Space Analyst 76197.60000 3.809880e+05 128248.78 2.564976e+04 24187.420 2261.25 5 2.418742e+04 120937.10 5.092368e+05 5.019251e+05 7311.68 NULL
2017 Admin For Children’s Svcs Special Officer 42849.72619 3.599377e+06 1002228.58 1.193129e+04 10856.985 31015.43 84 1.085699e+04 911986.74 4.601606e+06 4.511364e+06 90241.84 NULL
2017 Admin For Children’s Svcs Staff Analyst 64953.66667 2.338332e+06 73853.59 2.051489e+03 0.000 1616.25 36 0.000000e+00 0.00 2.412186e+06 2.338332e+06 73853.59 NULL
2017 Admin For Children’s Svcs Staff Analyst Trainee 43039.17647 7.316660e+05 337.59 1.985824e+01 0.000 1.75 17 0.000000e+00 0.00 7.320036e+05 7.316660e+05 337.59 NULL
2017 Admin For Children’s Svcs Staff Nurse 71932.20000 7.193220e+05 17523.34 1.752334e+03 681.005 374.00 10 6.810050e+02 6810.05 7.368453e+05 7.261321e+05 10713.29 NULL
2017 Admin For Children’s Svcs Strategic Initiative Specialist 74778.00000 7.477800e+04 2322.73 2.322730e+03 2322.730 45.25 1 2.322730e+03 2322.73 7.710073e+04 7.710073e+04 0.00 NULL
2017 Admin For Children’s Svcs Summer College Intern 3008.54548 1.744956e+05 0.00 0.000000e+00 0.000 0.00 58 0.000000e+00 0.00 1.744956e+05 1.744956e+05 0.00 NULL
2017 Admin For Children’s Svcs Summer Graduate Intern 5354.27200 2.677136e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.677136e+04 2.677136e+04 0.00 NULL
2017 Admin For Children’s Svcs Superintendent 108733.33333 3.262000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.262000e+05 3.262000e+05 0.00 NULL
2017 Admin For Children’s Svcs Supervising Computer Service Technician 63660.25000 2.546410e+05 1515.94 3.789850e+02 346.375 42.75 4 3.463750e+02 1385.50 2.561569e+05 2.560265e+05 130.44 NULL
2017 Admin For Children’s Svcs Supervising Special Officer 52655.81818 1.158428e+06 409758.30 1.862538e+04 16158.610 10305.75 22 1.615861e+04 355489.42 1.568186e+06 1.513917e+06 54268.88 NULL
2017 Admin For Children’s Svcs Supervisor I 57242.61111 1.030367e+06 36749.95 2.041664e+03 0.000 857.75 18 0.000000e+00 0.00 1.067117e+06 1.030367e+06 36749.95 NULL
2017 Admin For Children’s Svcs Supervisor I Social Work 61358.28571 4.295080e+05 10975.99 1.567999e+03 0.000 281.25 7 0.000000e+00 0.00 4.404840e+05 4.295080e+05 10975.99 NULL
2017 Admin For Children’s Svcs Supervisor Ii 65265.37500 2.088492e+06 191214.84 5.975464e+03 0.000 3704.75 32 0.000000e+00 0.00 2.279707e+06 2.088492e+06 191214.84 NULL
2017 Admin For Children’s Svcs Supervisor Ii Social Work 71128.00000 1.422560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.422560e+05 1.422560e+05 0.00 NULL
2017 Admin For Children’s Svcs Supervisor Iii 71531.90000 7.153190e+05 106056.33 1.060563e+04 0.000 1892.75 10 0.000000e+00 0.00 8.213753e+05 7.153190e+05 106056.33 NULL
2017 Admin For Children’s Svcs Supervisor Iii Social Work 83715.00000 8.371500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.371500e+04 8.371500e+04 0.00 NULL
2017 Admin For Children’s Svcs Supervisor Of Child Care 64314.00000 5.145120e+05 146587.79 1.832347e+04 14171.025 3066.75 8 1.417102e+04 113368.20 6.610998e+05 6.278802e+05 33219.59 NULL
2017 Admin For Children’s Svcs Supervisor Of Mechanical Installations & Maintenance 80054.00000 2.401620e+05 5238.33 1.746110e+03 494.690 101.50 3 4.946900e+02 1484.07 2.454003e+05 2.416461e+05 3754.26 NULL
2017 Admin For Children’s Svcs Supervisor Of Nurses 80281.72727 8.830990e+05 8492.22 7.720200e+02 0.000 179.25 11 0.000000e+00 0.00 8.915912e+05 8.830990e+05 8492.22 NULL
2017 Admin For Children’s Svcs Telecommunications Associate 70949.36364 7.804430e+05 36370.21 3.306383e+03 2472.950 497.25 11 2.472950e+03 27202.45 8.168132e+05 8.076454e+05 9167.76 NULL
2017 Admin Trials And Hearings Adm Manager-Non-Mgrl 69953.53846 9.093960e+05 355.74 2.736462e+01 0.000 0.00 13 0.000000e+00 0.00 9.097517e+05 9.093960e+05 355.74 NULL
2017 Admin Trials And Hearings Admin Community Relations Specialist 91390.80000 4.569540e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.569540e+05 4.569540e+05 0.00 NULL
2017 Admin Trials And Hearings Admin Contract Specialist 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2017 Admin Trials And Hearings Administrative Accountant 95790.00000 1.915800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.915800e+05 1.915800e+05 0.00 NULL
2017 Admin Trials And Hearings Administrative Community Relations Specialist 90267.00000 1.805340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.805340e+05 1.805340e+05 0.00 NULL
2017 Admin Trials And Hearings Administrative Labor Relations Analyst 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2017 Admin Trials And Hearings Administrative Law Judge 141635.66667 1.699628e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.699628e+06 1.699628e+06 0.00 NULL
2017 Admin Trials And Hearings Administrative Public Information Specialist 138020.00000 1.380200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.380200e+05 1.380200e+05 0.00 NULL
2017 Admin Trials And Hearings Administrative Space Analyst 108429.00000 1.084290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.084290e+05 1.084290e+05 0.00 NULL
2017 Admin Trials And Hearings Administrative Staff Analyst 109510.00000 1.095100e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.095100e+06 1.095100e+06 0.00 NULL
2017 Admin Trials And Hearings Agency Attorney 87173.48387 2.702378e+06 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 2.702378e+06 2.702378e+06 0.00 NULL
2017 Admin Trials And Hearings Agency Attorney Interne 37927.19738 1.137816e+05 105.85 3.528333e+01 0.000 3.25 3 0.000000e+00 0.00 1.138874e+05 1.137816e+05 105.85 NULL
2017 Admin Trials And Hearings Agency Chief Contracting Officer 104441.00000 1.044410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.044410e+05 1.044410e+05 0.00 NULL
2017 Admin Trials And Hearings Associate Public Information Specialist 42000.00000 4.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.200000e+04 4.200000e+04 0.00 NULL
2017 Admin Trials And Hearings Associate Staff Analyst 78853.50000 1.577070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.577070e+05 1.577070e+05 0.00 NULL
2017 Admin Trials And Hearings Attorney At Law 91626.75000 3.665070e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.665070e+05 3.665070e+05 0.00 NULL
2017 Admin Trials And Hearings Bookkeeper 46424.00000 9.284800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.284800e+04 9.284800e+04 0.00 NULL
2017 Admin Trials And Hearings Certified It Developer 115545.00000 1.155450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.155450e+05 1.155450e+05 0.00 NULL
2017 Admin Trials And Hearings Chief Administrative Law Judge 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2017 Admin Trials And Hearings City Laborer NA NA 508.50 1.695000e+02 79.290 7.25 3 7.929000e+01 237.87 NA NA NA NULL
2017 Admin Trials And Hearings Clerical Aide 24238.56747 7.271570e+04 37.73 1.257667e+01 0.000 0.00 3 0.000000e+00 0.00 7.275343e+04 7.271570e+04 37.73 NULL
2017 Admin Trials And Hearings Clerical Associate 39028.99074 1.366015e+06 32.58 9.308571e-01 0.000 1.00 35 0.000000e+00 0.00 1.366047e+06 1.366015e+06 32.58 NULL
2017 Admin Trials And Hearings College Aide 4447.73864 4.892512e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 4.892512e+04 4.892512e+04 0.00 NULL
2017 Admin Trials And Hearings Community Assistant 28057.80226 5.892138e+05 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 5.892138e+05 5.892138e+05 0.00 NULL
2017 Admin Trials And Hearings Community Associate 42839.03038 1.713561e+06 2047.48 5.118700e+01 0.000 85.75 40 0.000000e+00 0.00 1.715609e+06 1.713561e+06 2047.48 NULL
2017 Admin Trials And Hearings Community Coordinator 60646.45714 2.122626e+06 587.14 1.677543e+01 0.000 14.25 35 0.000000e+00 0.00 2.123213e+06 2.122626e+06 587.14 NULL
2017 Admin Trials And Hearings Community Service Aide 20653.60162 1.135948e+06 187.88 3.416000e+00 0.000 12.50 55 0.000000e+00 0.00 1.136136e+06 1.135948e+06 187.88 NULL
2017 Admin Trials And Hearings Computer Aide-Non-Spvr 52535.00000 5.253500e+04 1075.15 1.075150e+03 1075.150 0.00 1 1.075150e+03 1075.15 5.361015e+04 5.361015e+04 0.00 NULL
2017 Admin Trials And Hearings Computer Associate 67351.75000 2.694070e+05 3361.27 8.403175e+02 821.700 78.25 4 8.217000e+02 3286.80 2.727683e+05 2.726938e+05 74.47 NULL
2017 Admin Trials And Hearings Computer Service Technician 32096.94088 2.567755e+05 24838.91 3.104864e+03 621.645 748.75 8 6.216450e+02 4973.16 2.816144e+05 2.617487e+05 19865.75 NULL
2017 Admin Trials And Hearings Computer Specialist 98207.20000 4.910360e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.910360e+05 4.910360e+05 0.00 NULL
2017 Admin Trials And Hearings Computer Systems Manager 129857.42857 9.090020e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.090020e+05 9.090020e+05 0.00 NULL
2017 Admin Trials And Hearings Confidential Secretary Of Administrative Law Judge 60111.50000 1.202230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.202230e+05 1.202230e+05 0.00 NULL
2017 Admin Trials And Hearings Executive Agency Counsel 115474.76667 3.464243e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 3.464243e+06 3.464243e+06 0.00 NULL
2017 Admin Trials And Hearings Hearing Officer 33835.30808 9.879910e+06 0.00 0.000000e+00 0.000 0.00 292 0.000000e+00 0.00 9.879910e+06 9.879910e+06 0.00 NULL
2017 Admin Trials And Hearings Maintenance Worker NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2017 Admin Trials And Hearings Member Of The Environmental Control Board - Oath 39.57260 1.978630e+02 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.978630e+02 1.978630e+02 0.00 NULL
2017 Admin Trials And Hearings Principal Administrative Associate 57086.85714 7.992160e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 7.992160e+05 7.992160e+05 0.00 NULL
2017 Admin Trials And Hearings Procurement Analyst 63439.50000 1.268790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.268790e+05 1.268790e+05 0.00 NULL
2017 Admin Trials And Hearings Public Records Aide 39637.75000 3.171020e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 3.171020e+05 3.171020e+05 0.00 NULL
2017 Admin Trials And Hearings Secretary 40873.00000 1.226190e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.226190e+05 1.226190e+05 0.00 NULL
2017 Admin Trials And Hearings Staff Analyst 66434.50000 2.657380e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.657380e+05 2.657380e+05 0.00 NULL
2017 Admin Trials And Hearings Supervising Computer Service Technician 67122.00000 6.712200e+04 19213.60 1.921360e+04 19213.600 378.50 1 1.921360e+04 19213.60 8.633560e+04 8.633560e+04 0.00 NULL
2017 Board Of Correction City Research Scientist 83383.50000 1.667670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.667670e+05 1.667670e+05 0.00 NULL
2017 Board Of Correction Community Coordinator 57916.00000 1.158320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.158320e+05 1.158320e+05 0.00 NULL
2017 Board Of Correction Computer Specialist 116175.00000 1.161750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.161750e+05 1.161750e+05 0.00 NULL
2017 Board Of Correction Correctional Standards Review Specialist 64147.63636 7.056240e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.056240e+05 7.056240e+05 0.00 NULL
2017 Board Of Correction Counsel 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2017 Board Of Correction Deputy Executive Director 142000.00000 1.420000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.420000e+05 1.420000e+05 0.00 NULL
2017 Board Of Correction Director Of Correctional Standards Review 154500.00000 1.545000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.545000e+05 1.545000e+05 0.00 NULL
2017 Board Of Correction Executive Agency Counsel 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2017 Board Of Correction Executive Director 168920.00000 1.689200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.689200e+05 1.689200e+05 0.00 NULL
2017 Board Of Correction Secretary 53410.00000 5.341000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.341000e+04 5.341000e+04 0.00 NULL
2017 Board Of Correction Secretary To The Board Of Correction 65457.00000 6.545700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.545700e+04 6.545700e+04 0.00 NULL
2017 Board Of Election Administrative Assistant 51292.05333 3.846904e+06 1052839.51 1.403786e+04 13286.410 27948.75 75 1.328641e+04 996480.75 4.899744e+06 4.843385e+06 56358.76 NULL
2017 Board Of Election Administrative Associate 64930.18519 3.506230e+06 1109110.81 2.053909e+04 16258.095 21064.00 54 1.625809e+04 877937.13 4.615341e+06 4.384167e+06 231173.68 NULL
2017 Board Of Election Administrative Manager 162862.00000 3.257240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.257240e+05 3.257240e+05 0.00 NULL
2017 Board Of Election Assistance Finance Officer 64136.00000 1.282720e+05 15114.07 7.557035e+03 7557.035 344.50 2 7.557035e+03 15114.07 1.433861e+05 1.433861e+05 0.00 NULL
2017 Board Of Election Associate Staff Analyst 84906.18182 9.339680e+05 273358.97 2.485082e+04 16741.230 4171.00 11 1.674123e+04 184153.53 1.207327e+06 1.118122e+06 89205.44 NULL
2017 Board Of Election Chief Clerk 135083.50000 5.403340e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.403340e+05 5.403340e+05 0.00 NULL
2017 Board Of Election Clerk To The Board 35975.16663 3.525566e+06 1000496.04 1.020914e+04 10127.390 37125.75 98 1.012739e+04 992484.22 4.526062e+06 4.518051e+06 8011.82 NULL
2017 Board Of Election Commissioner 29800.00000 3.576000e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 3.576000e+05 3.576000e+05 0.00 NULL
2017 Board Of Election Computer Operator 47353.50000 9.470700e+04 22559.41 1.127970e+04 11279.705 712.50 2 1.127970e+04 22559.41 1.172664e+05 1.172664e+05 0.00 NULL
2017 Board Of Election Computer Specialist 123913.25000 4.956530e+05 123730.77 3.093269e+04 30703.140 2013.00 4 3.070314e+04 122812.56 6.193838e+05 6.184656e+05 918.21 NULL
2017 Board Of Election Computer System Manager 128657.33333 3.859720e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.859720e+05 3.859720e+05 0.00 NULL
2017 Board Of Election Coordinator, Election Day Operations 107652.00000 1.076520e+05 15148.34 1.514834e+04 15148.340 189.50 1 1.514834e+04 15148.34 1.228003e+05 1.228003e+05 0.00 NULL
2017 Board Of Election Coordinator, Voter Registration Activities 93670.00000 9.367000e+04 29834.76 2.983476e+04 29834.760 398.67 1 2.983476e+04 29834.76 1.235048e+05 1.235048e+05 0.00 NULL
2017 Board Of Election Counsel 158472.00000 3.169440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.169440e+05 3.169440e+05 0.00 NULL
2017 Board Of Election Counsel To The Board 56265.00000 1.125300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.125300e+05 1.125300e+05 0.00 NULL
2017 Board Of Election Deputy Chief Clerk 125634.20000 6.281710e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.281710e+05 6.281710e+05 0.00 NULL
2017 Board Of Election Deputy Executive Director 192674.00000 1.926740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.926740e+05 1.926740e+05 0.00 NULL
2017 Board Of Election Director Of Equipment 75093.66667 2.252810e+05 53236.90 1.774563e+04 15982.490 984.00 3 1.598249e+04 47947.47 2.785179e+05 2.732285e+05 5289.43 NULL
2017 Board Of Election Director Of Training 79310.00000 1.586200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.586200e+05 1.586200e+05 0.00 NULL
2017 Board Of Election Director, Public Affairs And Communication 115701.00000 1.157010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.157010e+05 1.157010e+05 0.00 NULL
2017 Board Of Election Executive Director 209250.00000 2.092500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.092500e+05 2.092500e+05 0.00 NULL
2017 Board Of Election Finance Officer 115193.00000 1.151930e+05 7725.24 7.725240e+03 7725.240 95.50 1 7.725240e+03 7725.24 1.229182e+05 1.229182e+05 0.00 NULL
2017 Board Of Election Financial Clerk 37156.54916 5.239073e+06 1189994.08 8.439674e+03 8031.540 45217.75 141 8.031540e+03 1132447.14 6.429068e+06 6.371521e+06 57546.94 NULL
2017 Board Of Election Project Coordinator 92704.20000 1.390563e+06 348891.44 2.325943e+04 20195.930 5349.50 15 2.019593e+04 302938.95 1.739454e+06 1.693502e+06 45952.49 NULL
2017 Board Of Election Senior Adminisrator 110918.00000 1.109180e+05 9343.32 9.343320e+03 9343.320 118.75 1 9.343320e+03 9343.32 1.202613e+05 1.202613e+05 0.00 NULL
2017 Board Of Election Senior Computer Programmer 78126.88889 7.031420e+05 193867.52 2.154084e+04 11517.830 3953.00 9 1.151783e+04 103660.47 8.970095e+05 8.068025e+05 90207.05 NULL
2017 Board Of Election Senior Systems Analysts 108917.00000 2.178340e+05 201627.56 1.008138e+05 100813.780 2735.75 2 1.008138e+05 201627.56 4.194616e+05 4.194616e+05 0.00 NULL
2017 Board Of Election Stenographic/Secretarial Associate 50587.00000 5.058700e+04 7419.94 7.419940e+03 7419.940 216.00 1 7.419940e+03 7419.94 5.800694e+04 5.800694e+04 0.00 NULL
2017 Board Of Election Temporary Clerk 19234.62174 5.943498e+06 1467787.42 4.750121e+03 4248.210 75270.25 309 4.248210e+03 1312696.89 7.411286e+06 7.256195e+06 155090.53 NULL
2017 Board Of Election Trainer Assistant 50423.69732 2.874151e+06 752770.30 1.320650e+04 11720.100 19428.75 57 1.172010e+04 668045.70 3.626921e+06 3.542196e+06 84724.60 NULL
2017 Board Of Election Voting Machine Technician 35968.94495 3.920615e+06 1104797.24 1.013575e+04 9883.260 38633.00 109 9.883260e+03 1077275.34 5.025412e+06 4.997890e+06 27521.90 NULL
2017 Board Of Election Poll Workers Election Trainer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 429 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2017 Board Of Election Poll Workers Election Worker 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 38509 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2017 Borough President-Bronx Administrative Architect 74014.00000 7.401400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.401400e+04 7.401400e+04 0.00 NULL
2017 Borough President-Bronx Administrative Business Promotion Coordinator 114492.67083 3.434780e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.434780e+05 3.434780e+05 0.00 NULL
2017 Borough President-Bronx Administrative City Planner 105964.50000 2.119290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.119290e+05 2.119290e+05 0.00 NULL
2017 Borough President-Bronx Administrative Education Officer 106818.00000 1.068180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.068180e+05 1.068180e+05 0.00 NULL
2017 Borough President-Bronx Administrative Manager 76858.00000 7.685800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.685800e+04 7.685800e+04 0.00 NULL
2017 Borough President-Bronx Administrative Staff Analyst 103191.50000 2.063830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.063830e+05 2.063830e+05 0.00 NULL
2017 Borough President-Bronx Assistant To The President 52271.00000 2.090840e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.090840e+05 2.090840e+05 0.00 NULL
2017 Borough President-Bronx Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2017 Borough President-Bronx Clerical Associate 51406.50000 1.028130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.028130e+05 1.028130e+05 0.00 NULL
2017 Borough President-Bronx Community Assistant 38207.00000 3.820700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.820700e+04 3.820700e+04 0.00 NULL
2017 Borough President-Bronx Community Associate 53034.10000 5.303410e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.303410e+05 5.303410e+05 0.00 NULL
2017 Borough President-Bronx Community Coordinator 67388.35962 8.760487e+05 36102.12 2.777086e+03 0.000 612.50 13 0.000000e+00 0.00 9.121508e+05 8.760487e+05 36102.12 NULL
2017 Borough President-Bronx Community Planning Board Coordinator 48196.00000 4.819600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.819600e+04 4.819600e+04 0.00 NULL
2017 Borough President-Bronx Computer Systems Manager 69467.00000 6.946700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.946700e+04 6.946700e+04 0.00 NULL
2017 Borough President-Bronx Deputy Borough President 168789.00000 1.687890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.687890e+05 1.687890e+05 0.00 NULL
2017 Borough President-Bronx Director Of Community Planning Boards 111911.00000 1.119110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.119110e+05 1.119110e+05 0.00 NULL
2017 Borough President-Bronx Executive Assistant 178741.00000 1.787410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.787410e+05 1.787410e+05 0.00 NULL
2017 Borough President-Bronx Principal Administrative Associate 65446.50000 1.308930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.308930e+05 1.308930e+05 0.00 NULL
2017 Borough President-Bronx Public Information Officer 104444.00000 1.044440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.044440e+05 1.044440e+05 0.00 NULL
2017 Borough President-Bronx Research And Liaison Coordinator 70298.00000 7.029800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.029800e+04 7.029800e+04 0.00 NULL
2017 Borough President-Bronx Research Liaison Adn Governmental Coordinator 95442.00000 1.908840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.908840e+05 1.908840e+05 0.00 NULL
2017 Borough President-Bronx Secretary To Assistant To President 97505.00000 9.750500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.750500e+04 9.750500e+04 0.00 NULL
2017 Borough President-Bronx Secretary To The Deputy Boro President 73362.00000 7.336200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.336200e+04 7.336200e+04 0.00 NULL
2017 Borough President-Bronx Secretary To The Excutive Assistant 73476.00000 7.347600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.347600e+04 7.347600e+04 0.00 NULL
2017 Borough President-Bronx Special Assistant To The Borough President 89715.66667 2.691470e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.691470e+05 2.691470e+05 0.00 NULL
2017 Borough President-Brooklyn Administrative Engineer 42744.50000 4.274450e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.274450e+04 4.274450e+04 0.00 NULL
2017 Borough President-Brooklyn Administrative Graphic Artist 68034.00000 6.803400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.803400e+04 6.803400e+04 0.00 NULL
2017 Borough President-Brooklyn Administrative Housing Development Specialist 149674.00000 1.496740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.496740e+05 1.496740e+05 0.00 NULL
2017 Borough President-Brooklyn Assistant To The President 75233.51111 1.354203e+06 4902.13 2.723406e+02 0.000 12.00 18 0.000000e+00 0.00 1.359105e+06 1.354203e+06 4902.13 NULL
2017 Borough President-Brooklyn Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2017 Borough President-Brooklyn Chauffeur-Attendant 73275.00000 7.327500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.327500e+04 7.327500e+04 0.00 NULL
2017 Borough President-Brooklyn City Planner 98740.00000 1.974800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.974800e+05 1.974800e+05 0.00 NULL
2017 Borough President-Brooklyn Clerical Associate 56294.50000 1.125890e+05 4244.11 2.122055e+03 2122.055 87.50 2 2.122055e+03 4244.11 1.168331e+05 1.168331e+05 0.00 NULL
2017 Borough President-Brooklyn Community Assistant 34814.00000 3.481400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.481400e+04 3.481400e+04 0.00 NULL
2017 Borough President-Brooklyn Community Associate 44458.20167 5.334984e+05 11022.67 9.185558e+02 650.925 179.25 12 6.509250e+02 7811.10 5.445211e+05 5.413095e+05 3211.57 NULL
2017 Borough President-Brooklyn Community Coordinator 61792.66500 1.235853e+06 4280.68 2.140340e+02 179.195 90.00 20 1.791950e+02 3583.90 1.240134e+06 1.239437e+06 696.78 NULL
2017 Borough President-Brooklyn Community Service Aide 29832.00000 5.966400e+04 468.66 2.343300e+02 234.330 19.25 2 2.343300e+02 468.66 6.013266e+04 6.013266e+04 0.00 NULL
2017 Borough President-Brooklyn Counsel To The Borough President 114239.00000 1.142390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.142390e+05 1.142390e+05 0.00 NULL
2017 Borough President-Brooklyn Deputy Borough President 145653.00000 1.456530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.456530e+05 1.456530e+05 0.00 NULL
2017 Borough President-Brooklyn Director Of Community Planning Boards 88153.00000 8.815300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.815300e+04 8.815300e+04 0.00 NULL
2017 Borough President-Brooklyn Executive Agency Counsel 145451.00000 1.454510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.454510e+05 1.454510e+05 0.00 NULL
2017 Borough President-Brooklyn Executive Assistant 155954.00000 1.559540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.559540e+05 1.559540e+05 0.00 NULL
2017 Borough President-Brooklyn Principal Administrative Associate 59794.00000 5.979400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.979400e+04 5.979400e+04 0.00 NULL
2017 Borough President-Brooklyn Program Producer 70801.00000 7.080100e+04 2596.69 2.596690e+03 2596.690 37.50 1 2.596690e+03 2596.69 7.339769e+04 7.339769e+04 0.00 NULL
2017 Borough President-Brooklyn Public Information Officer 101878.00000 1.018780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.018780e+05 1.018780e+05 0.00 NULL
2017 Borough President-Brooklyn Research & Liaison Coordinator 62190.11520 1.865703e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.865703e+05 1.865703e+05 0.00 NULL
2017 Borough President-Brooklyn Special Assistant To The Borough President 145653.00000 1.456530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.456530e+05 1.456530e+05 0.00 NULL
2017 Borough President-Manhattan Admin Contract Specialist 72100.00000 7.210000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.210000e+04 7.210000e+04 0.00 NULL
2017 Borough President-Manhattan Administrative City Planner 68338.20000 3.416910e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.416910e+05 3.416910e+05 0.00 NULL
2017 Borough President-Manhattan Administrative Public Information Specialist 92033.66667 2.761010e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.761010e+05 2.761010e+05 0.00 NULL
2017 Borough President-Manhattan Administrative Staff Analyst 50721.50000 1.014430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.014430e+05 1.014430e+05 0.00 NULL
2017 Borough President-Manhattan Assistant To The President 85531.66667 2.565950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.565950e+05 2.565950e+05 0.00 NULL
2017 Borough President-Manhattan Borough President 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2017 Borough President-Manhattan Chauffeur Attendant 64861.50000 1.297230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.297230e+05 1.297230e+05 0.00 NULL
2017 Borough President-Manhattan Community Associate 44670.16000 3.573613e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 3.573613e+05 3.573613e+05 0.00 NULL
2017 Borough President-Manhattan Community Coordinator 61021.12118 1.037359e+06 48.38 2.845882e+00 0.000 1.50 17 0.000000e+00 0.00 1.037407e+06 1.037359e+06 48.38 NULL
2017 Borough President-Manhattan Community Planning Board Coordinator 55427.33333 3.325640e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.325640e+05 3.325640e+05 0.00 NULL
2017 Borough President-Manhattan Computer Operations Manager 75651.00000 7.565100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.565100e+04 7.565100e+04 0.00 NULL
2017 Borough President-Manhattan Counsel To The Borough President 90877.00000 9.087700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.087700e+04 9.087700e+04 0.00 NULL
2017 Borough President-Manhattan Deputy Borough President 150021.00000 1.500210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500210e+05 1.500210e+05 0.00 NULL
2017 Borough President-Manhattan Director Of Community Planning Boards 90877.00000 9.087700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.087700e+04 9.087700e+04 0.00 NULL
2017 Borough President-Manhattan Executive Assistant 145010.50000 2.900210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.900210e+05 2.900210e+05 0.00 NULL
2017 Borough President-Manhattan General Counsel 168239.00000 1.682390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.682390e+05 1.682390e+05 0.00 NULL
2017 Borough President-Manhattan Housing Consultant 75011.00000 7.501100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.501100e+04 7.501100e+04 0.00 NULL
2017 Borough President-Manhattan Principal Administrative Associate 61595.00000 6.159500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.159500e+04 6.159500e+04 0.00 NULL
2017 Borough President-Manhattan Public Information Officer 82154.00000 8.215400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.215400e+04 8.215400e+04 0.00 NULL
2017 Borough President-Manhattan Secretary To The President 89455.50000 1.789110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.789110e+05 1.789110e+05 0.00 NULL
2017 Borough President-Queens Administrative Staff Analyst 109465.00000 1.094650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.094650e+05 1.094650e+05 0.00 NULL
2017 Borough President-Queens Agency Attorney Interne 57944.00000 5.794400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.794400e+04 5.794400e+04 0.00 NULL
2017 Borough President-Queens Assistant Civil Engineer 74509.00000 7.450900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.450900e+04 7.450900e+04 0.00 NULL
2017 Borough President-Queens Assistant To The President 67500.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2017 Borough President-Queens Associate Staff Analyst 78335.00000 7.833500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.833500e+04 7.833500e+04 0.00 NULL
2017 Borough President-Queens Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2017 Borough President-Queens Cashier 33022.00000 3.302200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.302200e+04 3.302200e+04 0.00 NULL
2017 Borough President-Queens Chauffeur-Attendant 61840.33333 1.855210e+05 1901.06 6.336867e+02 0.000 37.00 3 0.000000e+00 0.00 1.874221e+05 1.855210e+05 1901.06 NULL
2017 Borough President-Queens City Planner 60560.00000 6.056000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.056000e+04 6.056000e+04 0.00 NULL
2017 Borough President-Queens Clerical Associate 48016.00000 4.801600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.801600e+04 4.801600e+04 0.00 NULL
2017 Borough President-Queens Community Assistant 29175.00000 5.835000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.835000e+04 5.835000e+04 0.00 NULL
2017 Borough President-Queens Community Associate 51046.05263 9.698750e+05 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 9.698750e+05 9.698750e+05 0.00 NULL
2017 Borough President-Queens Community Coordinator 65870.90000 6.587090e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 6.587090e+05 6.587090e+05 0.00 NULL
2017 Borough President-Queens Computer Systems Manager 92000.00000 9.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.200000e+04 9.200000e+04 0.00 NULL
2017 Borough President-Queens Counsel To The Borough President 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2017 Borough President-Queens Deputy Borough President 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2017 Borough President-Queens Director Borough President’s Office Of Administration Queens 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2017 Borough President-Queens Engineering Technician 64287.75000 2.571510e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.571510e+05 2.571510e+05 0.00 NULL
2017 Borough President-Queens Executive Assistant 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2017 Borough President-Queens Fiscal And Policy Analyst 58000.00000 5.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.800000e+04 5.800000e+04 0.00 NULL
2017 Borough President-Queens Principal Administrative Associate 71699.00000 2.150970e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.150970e+05 2.150970e+05 0.00 NULL
2017 Borough President-Queens Public Information Officer 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2017 Borough President-Queens Research And Liaison Specialist 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2017 Borough President-Queens Secretary 37567.00000 3.756700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.756700e+04 3.756700e+04 0.00 NULL
2017 Borough President-Queens Secretary To The President 85000.00000 8.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.500000e+04 8.500000e+04 0.00 NULL
2017 Borough President-Queens Special Assistant To The Borough President 88333.33333 5.300000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.300000e+05 5.300000e+05 0.00 NULL
2017 Borough President-Staten Is Administrative Architect 147650.00000 1.476500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.476500e+05 1.476500e+05 0.00 NULL
2017 Borough President-Staten Is Assistant To The President 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2017 Borough President-Staten Is Asst Project Planner 45058.45942 4.956431e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 4.956431e+05 4.956431e+05 0.00 NULL
2017 Borough President-Staten Is Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2017 Borough President-Staten Is Clerical Associate 56224.00000 5.622400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.622400e+04 5.622400e+04 0.00 NULL
2017 Borough President-Staten Is Community Associate 55051.66667 1.651550e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.651550e+05 1.651550e+05 0.00 NULL
2017 Borough President-Staten Is Community Coordinator 68038.77778 6.123490e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 6.123490e+05 6.123490e+05 0.00 NULL
2017 Borough President-Staten Is Confidential Assistant To Boro President 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2017 Borough President-Staten Is Counsel To The Borough President 71225.23500 7.122524e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.122524e+04 7.122524e+04 0.00 NULL
2017 Borough President-Staten Is Deputy Borough President 148820.00000 1.488200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.488200e+05 1.488200e+05 0.00 NULL
2017 Borough President-Staten Is Director Of Community Planning Boards - Mgl Assign 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2017 Borough President-Staten Is Engineering Technician 59246.00000 5.924600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.924600e+04 5.924600e+04 0.00 NULL
2017 Borough President-Staten Is Executive Assistant 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2017 Borough President-Staten Is Project Planner 56051.18400 3.923583e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.923583e+05 3.923583e+05 0.00 NULL
2017 Borough President-Staten Is Public Information Officer 103500.00000 1.035000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.035000e+05 1.035000e+05 0.00 NULL
2017 Borough President-Staten Is Secretary 63250.00000 1.265000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.265000e+05 1.265000e+05 0.00 NULL
2017 Borough President-Staten Is Special Assistant To The Borough President 73282.05390 7.328205e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.328205e+04 7.328205e+04 0.00 NULL
2017 Borough President-Staten Is Staff Analyst 67137.00000 6.713700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.713700e+04 6.713700e+04 0.00 NULL
2017 Borough President-Staten Is Surveyor 95599.00000 9.559900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.559900e+04 9.559900e+04 0.00 NULL
2017 Bronx Community Board #1 Community Coordinator 78190.00000 7.819000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.819000e+04 7.819000e+04 0.00 NULL
2017 Bronx Community Board #1 District Manager 135159.00000 1.351590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.351590e+05 1.351590e+05 0.00 NULL
2017 Bronx Community Board #10 Clerical Associate 26380.22333 7.914067e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.914067e+04 7.914067e+04 0.00 NULL
2017 Bronx Community Board #10 Community Assistant 20995.90750 4.199182e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.199182e+04 4.199182e+04 0.00 NULL
2017 Bronx Community Board #10 District Manager 81494.50000 1.629890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.629890e+05 1.629890e+05 0.00 NULL
2017 Bronx Community Board #11 Administrative Business Promotion Coordinator 25962.30000 2.596230e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.596230e+04 2.596230e+04 0.00 NULL
2017 Bronx Community Board #11 Community Associate 22980.50000 4.596100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.596100e+04 4.596100e+04 0.00 NULL
2017 Bronx Community Board #11 Community Coordinator 53317.18500 5.331718e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.331718e+04 5.331718e+04 0.00 NULL
2017 Bronx Community Board #11 District Manager 80654.00000 8.065400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.065400e+04 8.065400e+04 0.00 NULL
2017 Bronx Community Board #12 Community Coordinator 66538.00000 6.653800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.653800e+04 6.653800e+04 0.00 NULL
2017 Bronx Community Board #12 Community Service Aide 31872.00000 3.187200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.187200e+04 3.187200e+04 0.00 NULL
2017 Bronx Community Board #12 District Manager 99325.00000 9.932500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.932500e+04 9.932500e+04 0.00 NULL
2017 Bronx Community Board #2 Community Assistant 34814.00000 3.481400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.481400e+04 3.481400e+04 0.00 NULL
2017 Bronx Community Board #2 Community Associate 54372.00000 5.437200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.437200e+04 5.437200e+04 0.00 NULL
2017 Bronx Community Board #2 District Manager 98000.00000 9.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.800000e+04 9.800000e+04 0.00 NULL
2017 Bronx Community Board #3 District Manager 130730.00000 1.307300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.307300e+05 1.307300e+05 0.00 NULL
2017 Bronx Community Board #3 Principal Administrative Associate 83500.00000 8.350000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.350000e+04 8.350000e+04 0.00 NULL
2017 Bronx Community Board #4 Community Associate 57107.00000 1.142140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.142140e+05 1.142140e+05 0.00 NULL
2017 Bronx Community Board #4 District Manager 92700.00000 9.270000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.270000e+04 9.270000e+04 0.00 NULL
2017 Bronx Community Board #5 Adm Manager-Non-Mgrl 80798.00000 8.079800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.079800e+04 8.079800e+04 0.00 NULL
2017 Bronx Community Board #5 Community Associate 41036.00000 4.103600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.103600e+04 4.103600e+04 0.00 NULL
2017 Bronx Community Board #5 District Manager 101656.00000 1.016560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.016560e+05 1.016560e+05 0.00 NULL
2017 Bronx Community Board #6 Community Assistant 37109.00000 3.710900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.710900e+04 3.710900e+04 0.00 NULL
2017 Bronx Community Board #6 Community Coordinator 77677.00000 7.767700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.767700e+04 7.767700e+04 0.00 NULL
2017 Bronx Community Board #6 District Manager 103278.00000 2.065560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.065560e+05 2.065560e+05 0.00 NULL
2017 Bronx Community Board #7 City Seasonal Aide 27405.00000 2.740500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.740500e+04 2.740500e+04 0.00 NULL
2017 Bronx Community Board #7 Community Associate 51131.00000 1.022620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.022620e+05 1.022620e+05 0.00 NULL
2017 Bronx Community Board #7 District Manager 73000.00000 7.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.300000e+04 7.300000e+04 0.00 NULL
2017 Bronx Community Board #8 Community Associate 48828.50000 9.765700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.765700e+04 9.765700e+04 0.00 NULL
2017 Bronx Community Board #8 District Manager 75000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2017 Bronx Community Board #9 College Aide 12311.07500 2.462215e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.462215e+04 2.462215e+04 0.00 NULL
2017 Bronx Community Board #9 Community Associate 51377.00000 5.137700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.137700e+04 5.137700e+04 0.00 NULL
2017 Bronx Community Board #9 District Manager 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2017 Bronx District Attorney Accountant 83418.00000 8.341800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.341800e+04 8.341800e+04 0.00 NULL
2017 Bronx District Attorney Adm Manager-Non-Mgrl From M1/M2 69657.20000 3.482860e+05 2863.86 5.727720e+02 0.000 64.00 5 0.000000e+00 0.00 3.511499e+05 3.482860e+05 2863.86 NULL
2017 Bronx District Attorney Administrative Accountant 138200.00000 1.382000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.382000e+05 1.382000e+05 0.00 NULL
2017 Bronx District Attorney Administrative Community Relations Specialist 132050.00000 1.320500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.320500e+05 1.320500e+05 0.00 NULL
2017 Bronx District Attorney Administrative Staff Analyst 95100.00000 1.902000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.902000e+05 1.902000e+05 0.00 NULL
2017 Bronx District Attorney Agency Chief Contracting Officer 199900.00000 1.999000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.999000e+05 1.999000e+05 0.00 NULL
2017 Bronx District Attorney Assistant District Attorney 86404.10615 4.639900e+07 700.87 1.305158e+00 0.000 20.25 537 0.000000e+00 0.00 4.639971e+07 4.639900e+07 700.87 NULL
2017 Bronx District Attorney Associate Staff Analyst 85069.00000 8.506900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.506900e+04 8.506900e+04 0.00 NULL
2017 Bronx District Attorney Certified It Administrator 108227.66667 3.246830e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.246830e+05 3.246830e+05 0.00 NULL
2017 Bronx District Attorney Certified It Developer 81200.00000 1.624000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.624000e+05 1.624000e+05 0.00 NULL
2017 Bronx District Attorney Chief Rackets Investigator 154800.00000 1.548000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.548000e+05 1.548000e+05 0.00 NULL
2017 Bronx District Attorney City Tax Auditor 59964.00000 5.996400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.996400e+04 5.996400e+04 0.00 NULL
2017 Bronx District Attorney Clerical Associate 43145.73333 1.941558e+06 126748.06 2.816624e+03 0.000 3692.00 45 0.000000e+00 0.00 2.068306e+06 1.941558e+06 126748.06 NULL
2017 Bronx District Attorney Community Assistant 33609.07143 4.705270e+06 264955.81 1.892542e+03 0.000 10728.30 140 0.000000e+00 0.00 4.970226e+06 4.705270e+06 264955.81 NULL
2017 Bronx District Attorney Community Associate 41891.72119 8.922937e+06 292125.30 1.371480e+03 0.000 9505.50 213 0.000000e+00 0.00 9.215062e+06 8.922937e+06 292125.30 NULL
2017 Bronx District Attorney Community Coordinator 62780.09677 1.946183e+06 126824.24 4.091105e+03 407.390 3000.00 31 4.073900e+02 12629.09 2.073007e+06 1.958812e+06 114195.15 NULL
2017 Bronx District Attorney Community Service Aide 27414.20000 1.918994e+06 147972.54 2.113893e+03 270.245 7528.75 70 2.702450e+02 18917.15 2.066967e+06 1.937911e+06 129055.39 NULL
2017 Bronx District Attorney Computer Associate 86641.75000 3.465670e+05 6494.95 1.623737e+03 0.000 92.00 4 0.000000e+00 0.00 3.530620e+05 3.465670e+05 6494.95 NULL
2017 Bronx District Attorney Deputy Chief Rackets Investigator 126000.00000 1.260000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.260000e+05 1.260000e+05 0.00 NULL
2017 Bronx District Attorney Director Of Public Information 103000.00000 1.030000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030000e+05 1.030000e+05 0.00 NULL
2017 Bronx District Attorney District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2017 Bronx District Attorney Interpreter 50939.33333 7.640900e+05 24619.26 1.641284e+03 1488.890 898.00 15 1.488890e+03 22333.35 7.887093e+05 7.864233e+05 2285.91 NULL
2017 Bronx District Attorney Media Services Technician 52490.00000 5.249000e+04 10183.86 1.018386e+04 10183.860 230.25 1 1.018386e+04 10183.86 6.267386e+04 6.267386e+04 0.00 NULL
2017 Bronx District Attorney Paralegal Aide 49869.00000 9.973800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.973800e+04 9.973800e+04 0.00 NULL
2017 Bronx District Attorney Principal Accountant Investigator 103875.00000 4.155000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.155000e+05 4.155000e+05 0.00 NULL
2017 Bronx District Attorney Principal Administrative Associate 65637.13333 9.845570e+05 26682.44 1.778829e+03 235.430 709.00 15 2.354300e+02 3531.45 1.011239e+06 9.880884e+05 23150.99 NULL
2017 Bronx District Attorney Private Secretary 102250.00000 1.022500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.022500e+05 1.022500e+05 0.00 NULL
2017 Bronx District Attorney Procurement Analyst 80500.00000 8.050000e+04 1106.24 1.106240e+03 1106.240 19.00 1 1.106240e+03 1106.24 8.160624e+04 8.160624e+04 0.00 NULL
2017 Bronx District Attorney Rackets Investigator 48831.64516 1.513781e+06 68297.37 2.203141e+03 1026.010 1806.50 31 1.026010e+03 31806.31 1.582078e+06 1.545587e+06 36491.06 NULL
2017 Bronx District Attorney Reporter/ Stenographer 61502.52616 1.230051e+06 41062.89 2.053144e+03 364.775 879.25 20 3.647750e+02 7295.50 1.271113e+06 1.237346e+06 33767.39 NULL
2017 Bronx District Attorney Secretary 50322.25000 2.012890e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.012890e+05 2.012890e+05 0.00 NULL
2017 Bronx District Attorney Senior Rackets Investigator 61080.00000 1.343760e+06 92681.89 4.212813e+03 2304.775 1983.75 22 2.304775e+03 50705.05 1.436442e+06 1.394465e+06 41976.84 NULL
2017 Bronx District Attorney Special Assistant To The District Attorney 133271.42857 9.329000e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.329000e+05 9.329000e+05 0.00 NULL
2017 Bronx District Attorney Special Officer 40012.55556 3.601130e+05 16880.54 1.875616e+03 310.380 526.00 9 3.103800e+02 2793.42 3.769935e+05 3.629064e+05 14087.12 NULL
2017 Bronx District Attorney Supervising Rackets Investigator 81444.00000 3.257760e+05 16574.15 4.143538e+03 4178.275 284.25 4 4.143538e+03 16574.15 3.423502e+05 3.423502e+05 0.00 NULL
2017 Brooklyn Community Board #1 Assistant District Manager 58609.00000 5.860900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.860900e+04 5.860900e+04 0.00 NULL
2017 Brooklyn Community Board #1 Community Associate 35172.36000 3.517236e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.517236e+04 3.517236e+04 0.00 NULL
2017 Brooklyn Community Board #1 District Manager 123304.00000 1.233040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.233040e+05 1.233040e+05 0.00 NULL
2017 Brooklyn Community Board #10 Community Assistant 15828.37700 1.582838e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.582838e+04 1.582838e+04 0.00 NULL
2017 Brooklyn Community Board #10 Community Coordinator 72484.00000 7.248400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.248400e+04 7.248400e+04 0.00 NULL
2017 Brooklyn Community Board #10 District Manager 119878.00000 1.198780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.198780e+05 1.198780e+05 0.00 NULL
2017 Brooklyn Community Board #11 Community Assistant 13927.95000 2.785590e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.785590e+04 2.785590e+04 0.00 NULL
2017 Brooklyn Community Board #11 Community Coordinator 61975.00000 6.197500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.197500e+04 6.197500e+04 0.00 NULL
2017 Brooklyn Community Board #11 District Manager 95705.00000 9.570500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.570500e+04 9.570500e+04 0.00 NULL
2017 Brooklyn Community Board #12 Community Assistant 37446.50000 7.489300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.489300e+04 7.489300e+04 0.00 NULL
2017 Brooklyn Community Board #12 Community Service Aide 2363.68000 2.363680e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.363680e+03 2.363680e+03 0.00 NULL
2017 Brooklyn Community Board #12 District Manager 109208.00000 1.092080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.092080e+05 1.092080e+05 0.00 NULL
2017 Brooklyn Community Board #13 Community Associate 35683.00000 3.568300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.568300e+04 3.568300e+04 0.00 NULL
2017 Brooklyn Community Board #13 Community Service Aide 30065.00000 3.006500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.006500e+04 3.006500e+04 0.00 NULL
2017 Brooklyn Community Board #13 District Manager 84064.50000 1.681290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.681290e+05 1.681290e+05 0.00 NULL
2017 Brooklyn Community Board #13 Secretary 37562.27430 3.756227e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.756227e+04 3.756227e+04 0.00 NULL
2017 Brooklyn Community Board #14 Community Coordinator 56482.61000 1.129652e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.129652e+05 1.129652e+05 0.00 NULL
2017 Brooklyn Community Board #14 District Manager 104127.00000 1.041270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.041270e+05 1.041270e+05 0.00 NULL
2017 Brooklyn Community Board #15 Community Assistant 34814.00000 3.481400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.481400e+04 3.481400e+04 0.00 NULL
2017 Brooklyn Community Board #15 Community Associate 53897.00000 5.389700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.389700e+04 5.389700e+04 0.00 NULL
2017 Brooklyn Community Board #15 District Manager 58927.00000 5.892700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.892700e+04 5.892700e+04 0.00 NULL
2017 Brooklyn Community Board #16 Community Assistant 27822.52510 5.564505e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.564505e+04 5.564505e+04 0.00 NULL
2017 Brooklyn Community Board #16 District Manager 112532.00000 1.125320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.125320e+05 1.125320e+05 0.00 NULL
2017 Brooklyn Community Board #17 Community Assistant 36093.50000 7.218700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.218700e+04 7.218700e+04 0.00 NULL
2017 Brooklyn Community Board #17 Community Coordinator 57916.00000 5.791600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.791600e+04 5.791600e+04 0.00 NULL
2017 Brooklyn Community Board #17 District Manager 80956.00000 8.095600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.095600e+04 8.095600e+04 0.00 NULL
2017 Brooklyn Community Board #18 Community Assistant 34815.00000 3.481500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.481500e+04 3.481500e+04 0.00 NULL
2017 Brooklyn Community Board #18 Community Service Aide 31431.00000 3.143100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.143100e+04 3.143100e+04 0.00 NULL
2017 Brooklyn Community Board #18 District Manager 150362.00000 1.503620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503620e+05 1.503620e+05 0.00 NULL
2017 Brooklyn Community Board #2 Community Associate 41036.00000 4.103600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.103600e+04 4.103600e+04 0.00 NULL
2017 Brooklyn Community Board #2 Community Coordinator 61928.00000 6.192800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.192800e+04 6.192800e+04 0.00 NULL
2017 Brooklyn Community Board #2 District Manager 105360.00000 1.053600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.053600e+05 1.053600e+05 0.00 NULL
2017 Brooklyn Community Board #3 Assistant District Manager 60567.00000 6.056700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.056700e+04 6.056700e+04 0.00 NULL
2017 Brooklyn Community Board #3 Community Assistant 38984.00000 3.898400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.898400e+04 3.898400e+04 0.00 NULL
2017 Brooklyn Community Board #3 District Manager 81378.00000 8.137800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.137800e+04 8.137800e+04 0.00 NULL
2017 Brooklyn Community Board #4 Community Associate 56932.50000 1.138650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.138650e+05 1.138650e+05 0.00 NULL
2017 Brooklyn Community Board #4 District Manager 75318.00000 1.506360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.506360e+05 1.506360e+05 0.00 NULL
2017 Brooklyn Community Board #5 Community Associate 41036.00000 4.103600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.103600e+04 4.103600e+04 0.00 NULL
2017 Brooklyn Community Board #5 Community Coordinator 50362.00000 5.036200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.036200e+04 5.036200e+04 0.00 NULL
2017 Brooklyn Community Board #5 Community Service Aide 18426.24700 1.842625e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.842625e+04 1.842625e+04 0.00 NULL
2017 Brooklyn Community Board #5 District Manager 95693.50000 1.913870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.913870e+05 1.913870e+05 0.00 NULL
2017 Brooklyn Community Board #6 Assistant District Manager 47114.00000 4.711400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.711400e+04 4.711400e+04 0.00 NULL
2017 Brooklyn Community Board #6 Community Associate 46630.00000 4.663000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.663000e+04 4.663000e+04 0.00 NULL
2017 Brooklyn Community Board #6 District Manager 121931.00000 1.219310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.219310e+05 1.219310e+05 0.00 NULL
2017 Brooklyn Community Board #7 Community Associate 45909.00000 4.590900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.590900e+04 4.590900e+04 0.00 NULL
2017 Brooklyn Community Board #7 Community Coordinator 64345.00000 6.434500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.434500e+04 6.434500e+04 0.00 NULL
2017 Brooklyn Community Board #7 District Manager 95908.00000 9.590800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.590800e+04 9.590800e+04 0.00 NULL
2017 Brooklyn Community Board #8 Community Assistant 34814.00000 3.481400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.481400e+04 3.481400e+04 0.00 NULL
2017 Brooklyn Community Board #8 Community Coordinator 59539.00000 5.953900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.953900e+04 5.953900e+04 0.00 NULL
2017 Brooklyn Community Board #8 District Manager 91894.00000 9.189400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.189400e+04 9.189400e+04 0.00 NULL
2017 Brooklyn Community Board #9 Community Assistant 30273.00000 3.027300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.027300e+04 3.027300e+04 0.00 NULL
2017 Brooklyn Community Board #9 District Manager 138978.00000 1.389780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.389780e+05 1.389780e+05 0.00 NULL
2017 Business Integrity Commission Adm Manager-Non-Mgrl 70855.00000 7.085500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.085500e+04 7.085500e+04 0.00 NULL
2017 Business Integrity Commission Administrative Accountant 106000.00000 1.060000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.060000e+05 1.060000e+05 0.00 NULL
2017 Business Integrity Commission Administrative Community Relations Specialist 98825.00000 1.976500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.976500e+05 1.976500e+05 0.00 NULL
2017 Business Integrity Commission Administrative Investigator 115288.00000 1.152880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.152880e+05 1.152880e+05 0.00 NULL
2017 Business Integrity Commission Administrative Staff Analyst 116158.71429 8.131110e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.131110e+05 8.131110e+05 0.00 NULL
2017 Business Integrity Commission Agency Attorney 84431.50000 1.688630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.688630e+05 1.688630e+05 0.00 NULL
2017 Business Integrity Commission Associate Fraud Investigator 72356.33333 4.341380e+05 22975.76 3.829293e+03 3184.375 505.50 6 3.184375e+03 19106.25 4.571138e+05 4.532442e+05 3869.51 NULL
2017 Business Integrity Commission Associate Staff Analyst 93596.00000 9.359600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.359600e+04 9.359600e+04 0.00 NULL
2017 Business Integrity Commission Chair 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2017 Business Integrity Commission Clerical Associate 53463.33333 1.603900e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.603900e+05 1.603900e+05 0.00 NULL
2017 Business Integrity Commission Community Assistant 35916.00000 3.591600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.591600e+04 3.591600e+04 0.00 NULL
2017 Business Integrity Commission Community Associate 47287.17143 1.655051e+06 14804.21 4.229774e+02 0.000 474.50 35 0.000000e+00 0.00 1.669855e+06 1.655051e+06 14804.21 NULL
2017 Business Integrity Commission Community Coordinator 70755.25000 2.830210e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.830210e+05 2.830210e+05 0.00 NULL
2017 Business Integrity Commission Computer Associate 63674.00000 6.367400e+04 10718.43 1.071843e+04 10718.430 281.50 1 1.071843e+04 10718.43 7.439243e+04 7.439243e+04 0.00 NULL
2017 Business Integrity Commission Computer Programmer Analyst 66249.00000 6.624900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.624900e+04 6.624900e+04 0.00 NULL
2017 Business Integrity Commission Computer Systems Manager 87550.00000 8.755000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.755000e+04 8.755000e+04 0.00 NULL
2017 Business Integrity Commission Executive Agency Counsel 112558.77778 1.013029e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.013029e+06 1.013029e+06 0.00 NULL
2017 Business Integrity Commission Management Auditor 67504.00000 1.350080e+05 1628.36 8.141800e+02 814.180 40.50 2 8.141800e+02 1628.36 1.366364e+05 1.366364e+05 0.00 NULL
2017 Business Integrity Commission Market Agent 51822.75000 6.218730e+05 21626.00 1.802167e+03 357.870 556.00 12 3.578700e+02 4294.44 6.434990e+05 6.261674e+05 17331.56 NULL
2017 Business Integrity Commission Principal Administrative Associate 57517.00000 5.751700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.751700e+04 5.751700e+04 0.00 NULL
2017 Campaign Finance Board Admin Asst-Campaign Fin Board 50447.08827 7.062592e+05 9878.45 7.056036e+02 637.400 266.00 14 6.374000e+02 8923.60 7.161377e+05 7.151828e+05 954.85 NULL
2017 Campaign Finance Board Administrative Accountant 123600.00000 1.236000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.236000e+05 1.236000e+05 0.00 NULL
2017 Campaign Finance Board Analyst 65749.74275 4.536732e+06 148958.62 2.158821e+03 59.200 3479.50 69 5.920000e+01 4084.80 4.685691e+06 4.540817e+06 144873.82 NULL
2017 Campaign Finance Board Associate Staff Analyst 105529.00000 1.055290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.055290e+05 1.055290e+05 0.00 NULL
2017 Campaign Finance Board Attorney-Campaign Fin Board 93523.00000 7.481840e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.481840e+05 7.481840e+05 0.00 NULL
2017 Campaign Finance Board College Aide 2384.05455 2.622460e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 2.622460e+04 2.622460e+04 0.00 NULL
2017 Campaign Finance Board College Aide - Assignment Levels Ii And Iii 13344.38000 2.668876e+04 130.32 6.516000e+01 65.160 9.00 2 6.516000e+01 130.32 2.681908e+04 2.681908e+04 0.00 NULL
2017 Campaign Finance Board Computer Systems Manager 159231.00000 3.184620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.184620e+05 3.184620e+05 0.00 NULL
2017 Campaign Finance Board Deputy Executive Director Campaign Finance Board 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2017 Campaign Finance Board Director Of Public Relations 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2017 Campaign Finance Board Executive Agency Counsel 171682.00000 5.150460e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.150460e+05 5.150460e+05 0.00 NULL
2017 Campaign Finance Board Executive Director 244840.00000 2.448400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.448400e+05 2.448400e+05 0.00 NULL
2017 Campaign Finance Board Secretary To The Executive Director 105575.00000 1.055750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.055750e+05 1.055750e+05 0.00 NULL
2017 Campaign Finance Board Systems Administrator-Cam Fin Bd 88325.88818 1.943170e+06 19917.63 9.053468e+02 0.000 536.00 22 0.000000e+00 0.00 1.963087e+06 1.943170e+06 19917.63 NULL
2017 City Clerk Administrative Management Auditor 167385.00000 1.673850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.673850e+05 1.673850e+05 0.00 NULL
2017 City Clerk Assistant Administrator 77284.00000 7.728400e+04 290.82 2.908200e+02 290.820 5.75 1 2.908200e+02 290.82 7.757482e+04 7.757482e+04 0.00 NULL
2017 City Clerk Associate Investigator 55454.00000 1.663620e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.663620e+05 1.663620e+05 0.00 NULL
2017 City Clerk Chief Of Staff 99560.00000 9.956000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.956000e+04 9.956000e+04 0.00 NULL
2017 City Clerk City Clerk & Clerk Of Council 221754.00000 2.217540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.217540e+05 2.217540e+05 0.00 NULL
2017 City Clerk Clerical Associate 40299.06667 1.813458e+06 2958.14 6.573644e+01 0.000 105.32 45 0.000000e+00 0.00 1.816416e+06 1.813458e+06 2958.14 NULL
2017 City Clerk College Aide 7435.18750 8.178706e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 8.178706e+04 8.178706e+04 0.00 NULL
2017 City Clerk Community Assistant 40000.00000 4.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.000000e+04 4.000000e+04 0.00 NULL
2017 City Clerk Community Associate 51446.50000 1.028930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.028930e+05 1.028930e+05 0.00 NULL
2017 City Clerk Community Coordinator 77618.75000 3.104750e+05 0.00 0.000000e+00 0.000 9.75 4 0.000000e+00 0.00 3.104750e+05 3.104750e+05 0.00 NULL
2017 City Clerk Deputy City Clerk 121194.83333 7.271690e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.271690e+05 7.271690e+05 0.00 NULL
2017 City Clerk Executive Agency Counsel 150474.00000 1.504740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.504740e+05 1.504740e+05 0.00 NULL
2017 City Clerk Executive Assistant To The City Clerk 83005.00000 8.300500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.300500e+04 8.300500e+04 0.00 NULL
2017 City Clerk Executive Assistant To The First Deputy Clerk 46824.00000 4.682400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.682400e+04 4.682400e+04 0.00 NULL
2017 City Clerk Executive Secretary To City Clerk 75875.00000 7.587500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.587500e+04 7.587500e+04 0.00 NULL
2017 City Clerk Paralegal Aide 35012.00000 3.501200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.501200e+04 3.501200e+04 0.00 NULL
2017 City Clerk Principal Administrative Associate 62876.50000 1.257530e+05 406.17 2.030850e+02 203.085 7.75 2 2.030850e+02 406.17 1.261592e+05 1.261592e+05 0.00 NULL
2017 City Clerk Public Records Officer 48212.60000 2.410630e+05 190.48 3.809600e+01 0.000 7.25 5 0.000000e+00 0.00 2.412535e+05 2.410630e+05 190.48 NULL
2017 City Clerk Secretary 31563.00000 3.156300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.156300e+04 3.156300e+04 0.00 NULL
2017 City Clerk Special Advisor To City Clerk 79545.90600 7.954591e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.954591e+04 7.954591e+04 0.00 NULL
2017 City Council Assistant Director Of Administration 132038.85714 9.242720e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.242720e+05 9.242720e+05 0.00 NULL
2017 City Council Assistant Director Of Finance 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2017 City Council Assistant Director Of Legal Services 108163.00000 5.408150e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.408150e+05 5.408150e+05 0.00 NULL
2017 City Council Assistant Sergeant At Arms 44481.25000 5.337750e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 5.337750e+05 5.337750e+05 0.00 NULL
2017 City Council Chief Of Staff 228875.00000 2.288750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.288750e+05 2.288750e+05 0.00 NULL
2017 City Council Communication Assistant 63474.14286 4.443190e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.443190e+05 4.443190e+05 0.00 NULL
2017 City Council Council Member 148500.00000 7.425000e+06 0.00 0.000000e+00 0.000 0.00 50 0.000000e+00 0.00 7.425000e+06 7.425000e+06 0.00 NULL
2017 City Council Councilmanic Aide 43340.32054 2.258031e+07 0.00 0.000000e+00 0.000 0.00 521 0.000000e+00 0.00 2.258031e+07 2.258031e+07 0.00 NULL
2017 City Council Deputy Chief Of Staff 179181.50000 3.583630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.583630e+05 3.583630e+05 0.00 NULL
2017 City Council Deputy Director 115496.53846 1.501455e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.501455e+06 1.501455e+06 0.00 NULL
2017 City Council Deputy Director- Finance 156672.50000 6.266900e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.266900e+05 6.266900e+05 0.00 NULL
2017 City Council Deputy Director-Legal Division 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2017 City Council Deputy Unit Chief 100296.00000 1.002960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.002960e+05 1.002960e+05 0.00 NULL
2017 City Council Director 131150.27273 1.442653e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.442653e+06 1.442653e+06 0.00 NULL
2017 City Council Director Legal Division/Gen Counsel& Spec Counsel 187796.50000 3.755930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.755930e+05 3.755930e+05 0.00 NULL
2017 City Council Director Of Council Services Bureau 175100.00000 1.751000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.751000e+05 1.751000e+05 0.00 NULL
2017 City Council Director Of Finance 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2017 City Council Director Of Land Use Division 168920.00000 1.689200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.689200e+05 1.689200e+05 0.00 NULL
2017 City Council Director-Office Of Communications 146681.50000 2.933630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.933630e+05 2.933630e+05 0.00 NULL
2017 City Council Executive Legislative Coordinator 171367.50000 3.427350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.427350e+05 3.427350e+05 0.00 NULL
2017 City Council Legislative Administrative Assistant 55882.80000 8.382420e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 8.382420e+05 8.382420e+05 0.00 NULL
2017 City Council Legislative Administrative Manager 86654.33333 5.199260e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.199260e+05 5.199260e+05 0.00 NULL
2017 City Council Legislative Analyst 34312.00000 6.862400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.862400e+04 6.862400e+04 0.00 NULL
2017 City Council Legislative Assistant 56985.75182 3.761060e+06 0.00 0.000000e+00 0.000 0.00 66 0.000000e+00 0.00 3.761060e+06 3.761060e+06 0.00 NULL
2017 City Council Legislative Clerk 23484.29559 3.992330e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 3.992330e+05 3.992330e+05 0.00 NULL
2017 City Council Legislative Computer Support Specialist 68864.87500 5.509190e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.509190e+05 5.509190e+05 0.00 NULL
2017 City Council Legislative Coordinator 68807.33333 8.256880e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 8.256880e+05 8.256880e+05 0.00 NULL
2017 City Council Legislative Counsel 90041.13725 4.592098e+06 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 4.592098e+06 4.592098e+06 0.00 NULL
2017 City Council Legislative Financial Analyst 59382.00000 7.719660e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 7.719660e+05 7.719660e+05 0.00 NULL
2017 City Council Legislative Intern 4267.59000 1.066898e+05 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.066898e+05 1.066898e+05 0.00 NULL
2017 City Council Legislative Investigator 49721.00000 1.491630e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.491630e+05 1.491630e+05 0.00 NULL
2017 City Council Legislative Messenger 35683.00000 7.136600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.136600e+04 7.136600e+04 0.00 NULL
2017 City Council Legislative Policy Analyst 60442.55556 1.087966e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.087966e+06 1.087966e+06 0.00 NULL
2017 City Council Legislative Project Manager 77278.42857 5.409490e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.409490e+05 5.409490e+05 0.00 NULL
2017 City Council Legislative Support Service Coord 46572.66667 1.397180e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.397180e+05 1.397180e+05 0.00 NULL
2017 City Council Legislative Systems Manager 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2017 City Council Minority Leader 148500.00000 1.485000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.485000e+05 1.485000e+05 0.00 NULL
2017 City Council Principal Legislative Financial Analyst 89612.50000 7.169000e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.169000e+05 7.169000e+05 0.00 NULL
2017 City Council Senior Legislative Financial Analyst 72921.42857 5.104500e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.104500e+05 5.104500e+05 0.00 NULL
2017 City Council Senior Legislative Policy Analyst 70891.90909 7.798110e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.798110e+05 7.798110e+05 0.00 NULL
2017 City Council Sergeant At Arms 95018.00000 9.501800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.501800e+04 9.501800e+04 0.00 NULL
2017 City Council Speaker/Majority Leader 164500.00000 1.645000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.645000e+05 1.645000e+05 0.00 NULL
2017 City Council Special Advisor To The Director 103428.40000 5.171420e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.171420e+05 5.171420e+05 0.00 NULL
2017 Civil Service Commission Agency Attorney 76275.00000 3.051000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.051000e+05 3.051000e+05 0.00 NULL
2017 Civil Service Commission Chairman 1469.19180 1.469192e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.469192e+03 1.469192e+03 0.00 NULL
2017 Civil Service Commission Commissioner 1325.65625 5.302625e+03 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.302625e+03 5.302625e+03 0.00 NULL
2017 Civil Service Commission Community Associate 45197.66667 1.355930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.355930e+05 1.355930e+05 0.00 NULL
2017 Civil Service Commission Executive Agency Counsel 133900.00000 1.339000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339000e+05 1.339000e+05 0.00 NULL
2017 Civil Service Commission Secretary Of The Commission 96721.12000 9.672112e+04 3890.58 3.890580e+03 3890.580 52.25 1 3.890580e+03 3890.58 1.006117e+05 1.006117e+05 0.00 NULL
2017 Civilian Complaint Review Bd Adm Manager-Non-Mgrl 93387.00000 9.338700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.338700e+04 9.338700e+04 0.00 NULL
2017 Civilian Complaint Review Bd Administrative Public Information Specialist 110500.00000 2.210000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.210000e+05 2.210000e+05 0.00 NULL
2017 Civilian Complaint Review Bd Administrative Staff Analyst 97850.00000 9.785000e+04 49152.88 4.915288e+04 49152.880 700.50 1 4.915288e+04 49152.88 1.470029e+05 1.470029e+05 0.00 NULL
2017 Civilian Complaint Review Bd Agency Attorney 77250.00000 7.725000e+04 1022.37 1.022370e+03 1022.370 12.50 1 1.022370e+03 1022.37 7.827237e+04 7.827237e+04 0.00 NULL
2017 Civilian Complaint Review Bd Certified It Administrator 90000.00000 9.000000e+04 13411.58 1.341158e+04 13411.580 231.25 1 1.341158e+04 13411.58 1.034116e+05 1.034116e+05 0.00 NULL
2017 Civilian Complaint Review Bd Clerical Associate 50252.16875 2.010087e+05 8098.31 2.024578e+03 785.815 200.25 4 7.858150e+02 3143.26 2.091070e+05 2.041519e+05 4955.05 NULL
2017 Civilian Complaint Review Bd Community Assistant 2622.37500 5.244750e+03 285.75 1.428750e+02 142.875 12.25 2 1.428750e+02 285.75 5.530500e+03 5.530500e+03 0.00 NULL
2017 Civilian Complaint Review Bd Community Associate 43409.33333 3.906840e+05 4666.99 5.185544e+02 339.080 129.00 9 3.390800e+02 3051.72 3.953510e+05 3.937357e+05 1615.27 NULL
2017 Civilian Complaint Review Bd Community Coordinator 66774.39833 4.006464e+05 5141.36 8.568933e+02 0.000 143.50 6 0.000000e+00 0.00 4.057878e+05 4.006464e+05 5141.36 NULL
2017 Civilian Complaint Review Bd Computer Operations Manager 113300.00000 1.133000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133000e+05 1.133000e+05 0.00 NULL
2017 Civilian Complaint Review Bd Computer Specialist 92310.00000 9.231000e+04 4695.19 4.695190e+03 4695.190 72.25 1 4.695190e+03 4695.19 9.700519e+04 9.700519e+04 0.00 NULL
2017 Civilian Complaint Review Bd Computer Systems Manager 95125.00000 1.902500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.902500e+05 1.902500e+05 0.00 NULL
2017 Civilian Complaint Review Bd Deputy Assistant Director 103278.76923 1.342624e+06 6433.76 4.949046e+02 0.000 213.50 13 0.000000e+00 0.00 1.349058e+06 1.342624e+06 6433.76 NULL
2017 Civilian Complaint Review Bd Deputy Executive Director 155880.00000 1.091160e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.091160e+06 1.091160e+06 0.00 NULL
2017 Civilian Complaint Review Bd Executive Agency Counsel 102071.78947 1.939364e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.939364e+06 1.939364e+06 0.00 NULL
2017 Civilian Complaint Review Bd Executive Director 210800.00000 4.216000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.216000e+05 4.216000e+05 0.00 NULL
2017 Civilian Complaint Review Bd Investigative Manager 95383.41176 1.621518e+06 4904.94 2.885259e+02 0.000 115.25 17 0.000000e+00 0.00 1.626423e+06 1.621518e+06 4904.94 NULL
2017 Civilian Complaint Review Bd Investigator 52949.65421 5.665613e+06 222405.09 2.078552e+03 828.530 6501.67 107 8.285300e+02 88652.71 5.888018e+06 5.754266e+06 133752.38 NULL
2017 Civilian Complaint Review Bd Member, Civilian Complaint Review Board 166.42455 1.830670e+03 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.830670e+03 1.830670e+03 0.00 NULL
2017 Civilian Complaint Review Bd Principal Administrative Associate 58000.00000 5.800000e+04 2456.74 2.456740e+03 2456.740 49.00 1 2.456740e+03 2456.74 6.045674e+04 6.045674e+04 0.00 NULL
2017 Civilian Complaint Review Bd Procurement Analyst 70246.00000 7.024600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.024600e+04 7.024600e+04 0.00 NULL
2017 Civilian Complaint Review Bd Secretary 58000.00000 1.160000e+05 12570.82 6.285410e+03 6285.410 251.25 2 6.285410e+03 12570.82 1.285708e+05 1.285708e+05 0.00 NULL
2017 Civilian Complaint Review Bd Strategic Initiative Specialist 70666.66667 2.120000e+05 11157.28 3.719093e+03 4829.960 219.75 3 3.719093e+03 11157.28 2.231573e+05 2.231573e+05 0.00 NULL
2017 Civilian Complaint Review Bd Summer College Intern 852.00000 8.520000e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.520000e+02 8.520000e+02 0.00 NULL
2017 Civilian Complaint Review Bd Summer Graduate Intern 1624.00000 4.872000e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.872000e+03 4.872000e+03 0.00 NULL
2017 Civilian Complaint Review Bd Supervisor Of Investigators 82400.00000 2.472000e+05 3052.69 1.017563e+03 988.420 61.00 3 9.884200e+02 2965.26 2.502527e+05 2.501653e+05 87.43 NULL
2017 Community College (Bronx) ?Assistant Purchasing Agent 40984.75000 3.278780e+05 68.90 8.612500e+00 0.000 0.00 8 0.000000e+00 0.00 3.279469e+05 3.278780e+05 68.90 NULL
2017 Community College (Bronx) ?Purchasing Agent 50688.00000 1.013760e+05 33.18 1.659000e+01 16.590 0.00 2 1.659000e+01 33.18 1.014092e+05 1.014092e+05 0.00 NULL
2017 Community College (Bronx) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 289 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Bronx) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Bronx) Adjunct College Lab Tech 3364.54741 3.633711e+05 0.00 0.000000e+00 0.000 0.00 108 0.000000e+00 0.00 3.633711e+05 3.633711e+05 0.00 NULL
2017 Community College (Bronx) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 941 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Bronx) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Bronx) Adjunct Senior College Lab Tech 8903.12500 1.780625e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.780625e+04 1.780625e+04 0.00 NULL
2017 Community College (Bronx) Administrator 155629.33333 4.668880e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.668880e+05 4.668880e+05 0.00 NULL
2017 Community College (Bronx) Administrator Supt Campus B/G 93500.00000 9.350000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.350000e+04 9.350000e+04 0.00 NULL
2017 Community College (Bronx) Assistant Administrator 130000.00000 2.600000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.600000e+05 2.600000e+05 0.00 NULL
2017 Community College (Bronx) Assistant College Security Director 85000.00000 1.700000e+05 4846.78 2.423390e+03 2423.390 0.00 2 2.423390e+03 4846.78 1.748468e+05 1.748468e+05 0.00 NULL
2017 Community College (Bronx) Assistant Dean 117249.00000 1.172490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.172490e+05 1.172490e+05 0.00 NULL
2017 Community College (Bronx) Assistant Principal Custodial Supervisor 43006.00000 4.300600e+04 14.11 1.411000e+01 14.110 0.00 1 1.411000e+01 14.11 4.302011e+04 4.302011e+04 0.00 NULL
2017 Community College (Bronx) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 215 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Bronx) Assistant To Heo 60687.45902 3.701935e+06 626.39 1.026869e+01 0.000 1.50 61 0.000000e+00 0.00 3.702561e+06 3.701935e+06 626.39 NULL
2017 Community College (Bronx) Assistant Vice President 140000.00000 4.200000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.200000e+05 4.200000e+05 0.00 NULL
2017 Community College (Bronx) Associate Dean 140000.00000 4.200000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.200000e+05 4.200000e+05 0.00 NULL
2017 Community College (Bronx) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 123 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Bronx) Auto Mechanic NA NA 12252.47 6.126235e+03 6126.235 210.75 2 6.126235e+03 12252.47 NA NA NA NULL
2017 Community College (Bronx) Business Data And Reporting Analyst 45422.12500 3.633770e+05 275.04 3.438000e+01 15.150 12.00 8 1.515000e+01 121.20 3.636520e+05 3.634982e+05 153.84 NULL
2017 Community College (Bronx) Campus Peace Officer 40821.91379 2.367671e+06 204631.56 3.528130e+03 1617.210 4982.85 58 1.617210e+03 93798.18 2.572303e+06 2.461469e+06 110833.38 NULL
2017 Community College (Bronx) Campus Public Safety Sergeant 55179.54545 6.069750e+05 115673.20 1.051575e+04 9813.940 2031.08 11 9.813940e+03 107953.34 7.226482e+05 7.149283e+05 7719.86 NULL
2017 Community College (Bronx) Campus Security Assistant 20602.57569 1.648206e+06 82414.11 1.030176e+03 189.485 2726.83 80 1.894850e+02 15158.80 1.730620e+06 1.663365e+06 67255.31 NULL
2017 Community College (Bronx) Carpenter NA NA 50123.17 8.353862e+03 3672.415 495.75 6 3.672415e+03 22034.49 NA NA NA NULL
2017 Community College (Bronx) Cement Mason NA NA 24155.30 2.415530e+04 24155.300 274.00 1 2.415530e+04 24155.30 NA NA NA NULL
2017 Community College (Bronx) Chief Administrative Supt Campus B/G 112000.00000 1.120000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.120000e+05 1.120000e+05 0.00 NULL
2017 Community College (Bronx) Chief College Lab Technician 80033.75000 3.201350e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.201350e+05 3.201350e+05 0.00 NULL
2017 Community College (Bronx) Clip Instructor 45522.00000 4.096980e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.096980e+05 4.096980e+05 0.00 NULL
2017 Community College (Bronx) College Accountant 55363.33333 3.321800e+05 1343.48 2.239133e+02 3.970 33.50 6 3.970000e+00 23.82 3.335235e+05 3.322038e+05 1319.66 NULL
2017 Community College (Bronx) College Accounting Assistant 43898.42857 3.072890e+05 732.17 1.045957e+02 6.300 13.00 7 6.300000e+00 44.10 3.080212e+05 3.073331e+05 688.07 NULL
2017 Community College (Bronx) College Assistant 3179.99716 3.319917e+06 3226.76 3.090766e+00 0.000 140.00 1044 0.000000e+00 0.00 3.323144e+06 3.319917e+06 3226.76 NULL
2017 Community College (Bronx) College Graph Designer 53897.50000 1.077950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.077950e+05 1.077950e+05 0.00 NULL
2017 Community College (Bronx) College Lab Technician 49397.73120 1.234943e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.234943e+06 1.234943e+06 0.00 NULL
2017 Community College (Bronx) College Print Shop Assistant 31015.00000 6.203000e+04 1241.49 6.207450e+02 620.745 18.50 2 6.207450e+02 1241.49 6.327149e+04 6.327149e+04 0.00 NULL
2017 Community College (Bronx) College Print Shop Associate 41791.00000 8.358200e+04 4.75 2.375000e+00 2.375 0.00 2 2.375000e+00 4.75 8.358675e+04 8.358675e+04 0.00 NULL
2017 Community College (Bronx) College Security Director 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2017 Community College (Bronx) College Security Specialist 61225.28571 4.285770e+05 84044.57 1.200637e+04 12691.400 1589.17 7 1.200637e+04 84044.57 5.126216e+05 5.126216e+05 0.00 NULL
2017 Community College (Bronx) Computer Systems Manager 99104.60000 4.955230e+05 1726.33 3.452660e+02 0.000 0.00 5 0.000000e+00 0.00 4.972493e+05 4.955230e+05 1726.33 NULL
2017 Community College (Bronx) Continuing Education Teacher 7934.67537 1.277483e+06 0.00 0.000000e+00 0.000 0.00 161 0.000000e+00 0.00 1.277483e+06 1.277483e+06 0.00 NULL
2017 Community College (Bronx) Cuny Administrator Assistant 50617.10000 1.012342e+06 30386.71 1.519335e+03 7.550 566.50 20 7.550000e+00 151.00 1.042729e+06 1.012493e+06 30235.71 NULL
2017 Community College (Bronx) Cuny Custodial Assistant 30459.63792 2.345392e+06 41148.09 5.343908e+02 139.730 1507.50 77 1.397300e+02 10759.21 2.386540e+06 2.356151e+06 30388.88 NULL
2017 Community College (Bronx) Cuny Office Assistant 34079.81761 5.418691e+06 33381.65 2.099475e+02 0.000 1119.00 159 0.000000e+00 0.00 5.452073e+06 5.418691e+06 33381.65 NULL
2017 Community College (Bronx) Cuny Start Instructor 55597.62500 4.447810e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.447810e+05 4.447810e+05 0.00 NULL
2017 Community College (Bronx) Custodial Supervisor 35843.16667 2.150590e+05 6356.65 1.059442e+03 417.355 207.50 6 4.173550e+02 2504.13 2.214156e+05 2.175631e+05 3852.52 NULL
2017 Community College (Bronx) Dean 148142.00000 7.407100e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.407100e+05 7.407100e+05 0.00 NULL
2017 Community College (Bronx) Disability Accommodations Specialist 54812.00000 1.096240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.096240e+05 1.096240e+05 0.00 NULL
2017 Community College (Bronx) Electrician NA NA 116503.77 1.664340e+04 21112.900 1542.75 7 1.664340e+04 116503.77 NA NA NA NULL
2017 Community College (Bronx) Eoc Accounting Assistant 41204.00000 4.120400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.120400e+04 4.120400e+04 0.00 NULL
2017 Community College (Bronx) Eoc Adjunct Lecturer 4046.11339 1.132912e+05 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 1.132912e+05 1.132912e+05 0.00 NULL
2017 Community College (Bronx) Eoc Administrative Assistant 51186.50000 1.023730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.023730e+05 1.023730e+05 0.00 NULL
2017 Community College (Bronx) Eoc Assistant To Heo 59793.75000 4.783500e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.783500e+05 4.783500e+05 0.00 NULL
2017 Community College (Bronx) Eoc College Lab Technician 62786.00000 1.255720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.255720e+05 1.255720e+05 0.00 NULL
2017 Community College (Bronx) Eoc Custodial Assistant 29890.75000 1.195630e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.195630e+05 1.195630e+05 0.00 NULL
2017 Community College (Bronx) Eoc Custodial Supervisor 39661.50000 7.932300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.932300e+04 7.932300e+04 0.00 NULL
2017 Community College (Bronx) Eoc Higher Education Assistant 73836.00000 1.476720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.476720e+05 1.476720e+05 0.00 NULL
2017 Community College (Bronx) Eoc Higher Education Associate 83606.75000 3.344270e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.344270e+05 3.344270e+05 0.00 NULL
2017 Community College (Bronx) Eoc Higher Education Officer 113012.33333 3.390370e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.390370e+05 3.390370e+05 0.00 NULL
2017 Community College (Bronx) Eoc Lecturer 80610.33333 2.418310e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.418310e+05 2.418310e+05 0.00 NULL
2017 Community College (Bronx) Eoc Office Assistant 30437.84615 3.956920e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 3.956920e+05 3.956920e+05 0.00 NULL
2017 Community College (Bronx) High Pressure Plant Tender NA NA 68579.37 9.797053e+03 10548.560 1291.75 7 9.797053e+03 68579.37 NA NA NA NULL
2017 Community College (Bronx) Higher Education Assistant 72746.07368 6.910877e+06 3985.28 4.195032e+01 0.000 37.50 95 0.000000e+00 0.00 6.914862e+06 6.910877e+06 3985.28 NULL
2017 Community College (Bronx) Higher Education Associate 88421.96667 5.305318e+06 117.28 1.954667e+00 0.000 0.00 60 0.000000e+00 0.00 5.305435e+06 5.305318e+06 117.28 NULL
2017 Community College (Bronx) Higher Education Officer 117336.71429 5.749499e+06 0.00 0.000000e+00 0.000 0.00 49 0.000000e+00 0.00 5.749499e+06 5.749499e+06 0.00 NULL
2017 Community College (Bronx) Instructor 56710.61667 6.805274e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 6.805274e+05 6.805274e+05 0.00 NULL
2017 Community College (Bronx) It Assistant 51162.29412 8.697590e+05 7131.40 4.194941e+02 46.220 104.00 17 4.622000e+01 785.74 8.768904e+05 8.705447e+05 6345.66 NULL
2017 Community College (Bronx) It Associate 77647.00000 5.435290e+05 7185.15 1.026450e+03 293.630 36.00 7 2.936300e+02 2055.41 5.507142e+05 5.455844e+05 5129.74 NULL
2017 Community College (Bronx) It Senior Associate 107987.50000 2.159750e+05 6137.55 3.068775e+03 3068.775 0.00 2 3.068775e+03 6137.55 2.221125e+05 2.221125e+05 0.00 NULL
2017 Community College (Bronx) It Support Assistant 20400.81587 1.285251e+06 1949.67 3.094714e+01 0.000 29.00 63 0.000000e+00 0.00 1.287201e+06 1.285251e+06 1949.67 NULL
2017 Community College (Bronx) Laborer NA NA 179816.47 1.798165e+04 17472.940 3241.50 10 1.747294e+04 174729.40 NA NA NA NULL
2017 Community College (Bronx) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 163 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Bronx) Lecturer/Doctoral Schedule 75034.00000 7.503400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.503400e+04 7.503400e+04 0.00 NULL
2017 Community College (Bronx) Locksmith NA NA 7204.42 3.602210e+03 3602.210 164.25 2 3.602210e+03 7204.42 NA NA NA NULL
2017 Community College (Bronx) Mail/Message Services Worker 33787.33333 1.013620e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.013620e+05 1.013620e+05 0.00 NULL
2017 Community College (Bronx) Maintenance Worker NA NA 48908.89 6.113611e+03 4240.315 1150.50 8 4.240315e+03 33922.52 NA NA NA NULL
2017 Community College (Bronx) Media Services Technician 56268.00000 5.626800e+04 12873.47 1.287347e+04 12873.470 272.50 1 1.287347e+04 12873.47 6.914147e+04 6.914147e+04 0.00 NULL
2017 Community College (Bronx) Motor Vehicle Operator 40633.50000 8.126700e+04 14613.39 7.306695e+03 7306.695 434.50 2 7.306695e+03 14613.39 9.588039e+04 9.588039e+04 0.00 NULL
2017 Community College (Bronx) Non-Teaching Adjunct I 285.01333 8.550400e+02 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 8.550400e+02 8.550400e+02 0.00 NULL
2017 Community College (Bronx) Non-Teaching Adjunct Ii 1414.46969 6.393403e+05 0.00 0.000000e+00 0.000 0.00 452 0.000000e+00 0.00 6.393403e+05 6.393403e+05 0.00 NULL
2017 Community College (Bronx) Non-Teaching Adjunct Iii 327.32004 4.582481e+04 0.00 0.000000e+00 0.000 0.00 140 0.000000e+00 0.00 4.582481e+04 4.582481e+04 0.00 NULL
2017 Community College (Bronx) Non-Teaching Adjunct Iv 775.64522 5.351952e+04 0.00 0.000000e+00 0.000 0.00 69 0.000000e+00 0.00 5.351952e+04 5.351952e+04 0.00 NULL
2017 Community College (Bronx) Non-Teaching Adjunct V 2039.51402 1.346079e+05 0.00 0.000000e+00 0.000 0.00 66 0.000000e+00 0.00 1.346079e+05 1.346079e+05 0.00 NULL
2017 Community College (Bronx) Oiler NA NA 15748.94 3.149788e+03 727.670 125.50 5 7.276700e+02 3638.35 NA NA NA NULL
2017 Community College (Bronx) Painter NA NA 30803.85 3.422650e+03 2099.970 459.25 9 2.099970e+03 18899.73 NA NA NA NULL
2017 Community College (Bronx) Plumber NA NA 130597.56 6.529878e+04 65298.780 1312.50 2 6.529878e+04 130597.56 NA NA NA NULL
2017 Community College (Bronx) Plumber’s Helper NA NA 14604.60 7.302300e+03 7302.300 237.50 2 7.302300e+03 14604.60 NA NA NA NULL
2017 Community College (Bronx) President 220000.00000 2.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.200000e+05 2.200000e+05 0.00 NULL
2017 Community College (Bronx) Principal Custodial Supervisor 60704.00000 6.070400e+04 7601.35 7.601350e+03 7601.350 144.50 1 7.601350e+03 7601.35 6.830535e+04 6.830535e+04 0.00 NULL
2017 Community College (Bronx) Professor NA NA 0.00 0.000000e+00 0.000 0.00 149 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Bronx) Project Manager 91331.50000 1.826630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.826630e+05 1.826630e+05 0.00 NULL
2017 Community College (Bronx) Senior College Lab Tech 67120.92308 8.725720e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 8.725720e+05 8.725720e+05 0.00 NULL
2017 Community College (Bronx) Senior Custodial Supervisor 38816.00000 1.164480e+05 4654.43 1.551477e+03 2182.280 123.25 3 1.551477e+03 4654.43 1.211024e+05 1.211024e+05 0.00 NULL
2017 Community College (Bronx) Senior Stationary Engineer NA NA 83568.06 4.178403e+04 41784.030 187.25 2 4.178403e+04 83568.06 NA NA NA NULL
2017 Community College (Bronx) Senior Vice President 196250.00000 3.925000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.925000e+05 3.925000e+05 0.00 NULL
2017 Community College (Bronx) Sr College Laboratory Tech 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2017 Community College (Bronx) Staff Nurse 83905.00000 8.390500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.390500e+04 8.390500e+04 0.00 NULL
2017 Community College (Bronx) Stationary Engineer NA NA 206346.15 2.292735e+04 19971.140 1316.50 9 1.997114e+04 179740.26 NA NA NA NULL
2017 Community College (Bronx) Steam Fitter NA NA 28023.12 1.401156e+04 14011.560 265.50 2 1.401156e+04 28023.12 NA NA NA NULL
2017 Community College (Bronx) Stock Worker 31960.90000 3.196090e+05 4.86 4.860000e-01 0.000 0.00 10 0.000000e+00 0.00 3.196139e+05 3.196090e+05 4.86 NULL
2017 Community College (Bronx) Student Aide 2527.63500 1.263818e+05 0.00 0.000000e+00 0.000 0.00 50 0.000000e+00 0.00 1.263818e+05 1.263818e+05 0.00 NULL
2017 Community College (Bronx) Supervisor Electrician NA NA 72155.89 7.215589e+04 72155.890 902.50 1 7.215589e+04 72155.89 NA NA NA NULL
2017 Community College (Bronx) Supervisor Painter NA NA 4866.49 4.866490e+03 4866.490 68.75 1 4.866490e+03 4866.49 NA NA NA NULL
2017 Community College (Bronx) Thermostat Repairer NA NA 22437.58 1.121879e+04 11218.790 236.25 2 1.121879e+04 22437.58 NA NA NA NULL
2017 Community College (Bronx) Vice President 169666.66667 5.090000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.090000e+05 5.090000e+05 0.00 NULL
2017 Community College (Hostos) ?Assistant Purchasing Agent 41938.00000 8.387600e+04 2547.65 1.273825e+03 1273.825 64.00 2 1.273825e+03 2547.65 8.642365e+04 8.642365e+04 0.00 NULL
2017 Community College (Hostos) ?Purchasing Agent 56166.00000 5.616600e+04 1424.50 1.424500e+03 1424.500 54.00 1 1.424500e+03 1424.50 5.759050e+04 5.759050e+04 0.00 NULL
2017 Community College (Hostos) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 168 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Hostos) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Hostos) Adjunct College Lab Tech 6341.02308 8.243330e+04 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 8.243330e+04 8.243330e+04 0.00 NULL
2017 Community College (Hostos) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 294 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Hostos) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Hostos) Adjunct Senior College Lab Tech 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2017 Community College (Hostos) Administrator 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2017 Community College (Hostos) Administrator Supt Campus B/G 78000.00000 7.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.800000e+04 7.800000e+04 0.00 NULL
2017 Community College (Hostos) Assistant Administrator 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2017 Community College (Hostos) Assistant College Security Director 71065.50000 1.421310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.421310e+05 1.421310e+05 0.00 NULL
2017 Community College (Hostos) Assistant Dean 111647.50000 4.465900e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.465900e+05 4.465900e+05 0.00 NULL
2017 Community College (Hostos) Assistant Principal Custodial Supervisor 43503.00000 8.700600e+04 4251.02 2.125510e+03 2125.510 118.50 2 2.125510e+03 4251.02 9.125702e+04 9.125702e+04 0.00 NULL
2017 Community College (Hostos) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 169 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Hostos) Assistant To Heo 47245.89706 3.212721e+06 1659.04 2.439765e+01 0.000 37.50 68 0.000000e+00 0.00 3.214380e+06 3.212721e+06 1659.04 NULL
2017 Community College (Hostos) Assistant Vice President 147500.00000 2.950000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.950000e+05 2.950000e+05 0.00 NULL
2017 Community College (Hostos) Associate Administrator 123000.00000 1.230000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.230000e+05 1.230000e+05 0.00 NULL
2017 Community College (Hostos) Associate Dean 122833.33333 3.685000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.685000e+05 3.685000e+05 0.00 NULL
2017 Community College (Hostos) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 56 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Hostos) Business Data And Reporting Analyst 40639.00000 4.063900e+04 36.23 3.623000e+01 36.230 0.00 1 3.623000e+01 36.23 4.067523e+04 4.067523e+04 0.00 NULL
2017 Community College (Hostos) Campus Peace Officer 41002.23077 1.599087e+06 363905.37 9.330907e+03 9563.150 9550.28 39 9.330907e+03 363905.37 1.962992e+06 1.962992e+06 0.00 NULL
2017 Community College (Hostos) Campus Public Safety Sergeant 55253.14286 3.867720e+05 102338.82 1.461983e+04 11884.480 2138.75 7 1.188448e+04 83191.36 4.891108e+05 4.699634e+05 19147.46 NULL
2017 Community College (Hostos) Campus Security Assistant 27756.58824 9.437240e+05 125121.64 3.680048e+03 576.785 4653.00 34 5.767850e+02 19610.69 1.068846e+06 9.633347e+05 105510.95 NULL
2017 Community College (Hostos) Carpenter NA NA 4140.04 4.140040e+03 4140.040 50.00 1 4.140040e+03 4140.04 NA NA NA NULL
2017 Community College (Hostos) Chief Administrator Supt Campus B/G 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2017 Community College (Hostos) City Laborer NA NA 31434.71 6.286942e+03 6359.780 627.50 5 6.286942e+03 31434.71 NA NA NA NULL
2017 Community College (Hostos) Clip Instructor 48126.36364 5.293900e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.293900e+05 5.293900e+05 0.00 NULL
2017 Community College (Hostos) College Accountant 50142.66667 1.504280e+05 0.85 2.833333e-01 0.000 0.00 3 0.000000e+00 0.00 1.504289e+05 1.504280e+05 0.85 NULL
2017 Community College (Hostos) College Accounting Assistant 43713.60000 2.185680e+05 406.53 8.130600e+01 0.000 12.75 5 0.000000e+00 0.00 2.189745e+05 2.185680e+05 406.53 NULL
2017 Community College (Hostos) College Assistant 3191.69276 2.792731e+06 154.84 1.769600e-01 0.000 0.00 875 0.000000e+00 0.00 2.792886e+06 2.792731e+06 154.84 NULL
2017 Community College (Hostos) College Graph Designer 60439.00000 6.043900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.043900e+04 6.043900e+04 0.00 NULL
2017 Community College (Hostos) College Lab Technician 60253.87500 4.820310e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.820310e+05 4.820310e+05 0.00 NULL
2017 Community College (Hostos) College Print Shop Assistant 33599.50000 6.719900e+04 13670.83 6.835415e+03 6835.415 459.00 2 6.835415e+03 13670.83 8.086983e+04 8.086983e+04 0.00 NULL
2017 Community College (Hostos) College Security Director 112546.00000 1.125460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.125460e+05 1.125460e+05 0.00 NULL
2017 Community College (Hostos) College Security Specialist 55142.40000 2.757120e+05 18414.25 3.682850e+03 1310.810 346.50 5 1.310810e+03 6554.05 2.941262e+05 2.822660e+05 11860.20 NULL
2017 Community College (Hostos) Computer Systems Manager 93000.00000 1.860000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.860000e+05 1.860000e+05 0.00 NULL
2017 Community College (Hostos) Continuing Education Teacher NA NA 0.00 0.000000e+00 0.000 0.00 300 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Hostos) Cuny Administrator Assistant 51209.40000 7.681410e+05 2125.13 1.416753e+02 0.000 42.25 15 0.000000e+00 0.00 7.702661e+05 7.681410e+05 2125.13 NULL
2017 Community College (Hostos) Cuny Custodial Assistant 27763.73333 2.082280e+06 63512.62 8.468349e+02 63.080 2134.00 75 6.308000e+01 4731.00 2.145793e+06 2.087011e+06 58781.62 NULL
2017 Community College (Hostos) Cuny Office Assistant 35226.69880 2.923816e+06 3881.17 4.676108e+01 0.000 117.75 83 0.000000e+00 0.00 2.927697e+06 2.923816e+06 3881.17 NULL
2017 Community College (Hostos) Cuny Start Instructor 56768.00000 4.541440e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.541440e+05 4.541440e+05 0.00 NULL
2017 Community College (Hostos) Custodial Supervisor 32919.54545 3.621150e+05 11334.07 1.030370e+03 353.520 362.25 11 3.535200e+02 3888.72 3.734491e+05 3.660037e+05 7445.35 NULL
2017 Community College (Hostos) Disability Accommodations Specialist 29701.83000 1.782110e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.782110e+05 1.782110e+05 0.00 NULL
2017 Community College (Hostos) Distinguished Lecturer 114339.50000 2.286790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.286790e+05 2.286790e+05 0.00 NULL
2017 Community College (Hostos) Distinguished Professor 149044.00000 1.490440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.490440e+05 1.490440e+05 0.00 NULL
2017 Community College (Hostos) Electrician NA NA 50300.35 2.515017e+04 25150.175 642.50 2 2.515017e+04 50300.35 NA NA NA NULL
2017 Community College (Hostos) Electrician’s Helper NA NA 2449.14 2.449140e+03 2449.140 52.50 1 2.449140e+03 2449.14 NA NA NA NULL
2017 Community College (Hostos) High Pressure Plant Tender NA NA 59838.49 1.196770e+04 10690.480 1126.50 5 1.069048e+04 53452.40 NA NA NA NULL
2017 Community College (Hostos) Higher Education Assistant 61671.41584 6.228813e+06 372.91 3.692178e+00 0.000 2.00 101 0.000000e+00 0.00 6.229186e+06 6.228813e+06 372.91 NULL
2017 Community College (Hostos) Higher Education Associate 93853.13953 4.035685e+06 30.02 6.981395e-01 0.000 0.00 43 0.000000e+00 0.00 4.035715e+06 4.035685e+06 30.02 NULL
2017 Community College (Hostos) Higher Education Officer 113395.09091 4.989384e+06 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 4.989384e+06 4.989384e+06 0.00 NULL
2017 Community College (Hostos) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Hostos) It Assistant 36553.52331 7.676240e+05 3971.60 1.891238e+02 0.000 77.75 21 0.000000e+00 0.00 7.715956e+05 7.676240e+05 3971.60 NULL
2017 Community College (Hostos) It Associate 78211.00000 3.128440e+05 167.83 4.195750e+01 31.425 0.00 4 3.142500e+01 125.70 3.130118e+05 3.129697e+05 42.13 NULL
2017 Community College (Hostos) It Senior Associate 95081.66667 2.852450e+05 324.53 1.081767e+02 0.000 0.00 3 0.000000e+00 0.00 2.855695e+05 2.852450e+05 324.53 NULL
2017 Community College (Hostos) It Support Assistant 39931.85714 5.590460e+05 482.86 3.449000e+01 0.400 10.25 14 4.000000e-01 5.60 5.595289e+05 5.590516e+05 477.26 NULL
2017 Community College (Hostos) Lead Theatre Technician 7249.55000 1.304919e+05 15184.12 8.435622e+02 514.300 341.00 18 5.143000e+02 9257.40 1.456760e+05 1.397493e+05 5926.72 NULL
2017 Community College (Hostos) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 65 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Hostos) Lecturer/Doctoral Schedule 71713.60000 3.585680e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.585680e+05 3.585680e+05 0.00 NULL
2017 Community College (Hostos) Locksmith NA NA 158.57 1.585700e+02 158.570 3.75 1 1.585700e+02 158.57 NA NA NA NULL
2017 Community College (Hostos) Mail/Message Services Worker 35040.80000 1.752040e+05 14385.37 2.877074e+03 350.940 381.50 5 3.509400e+02 1754.70 1.895894e+05 1.769587e+05 12630.67 NULL
2017 Community College (Hostos) Maintenance Worker NA NA 16914.68 2.416383e+03 995.330 412.75 7 9.953300e+02 6967.31 NA NA NA NULL
2017 Community College (Hostos) Non-Teaching Adjunct I 1593.71948 1.832777e+05 0.00 0.000000e+00 0.000 0.00 115 0.000000e+00 0.00 1.832777e+05 1.832777e+05 0.00 NULL
2017 Community College (Hostos) Non-Teaching Adjunct Ii 997.17662 3.689554e+04 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 3.689554e+04 3.689554e+04 0.00 NULL
2017 Community College (Hostos) Non-Teaching Adjunct Iii 636.48863 5.792046e+04 0.00 0.000000e+00 0.000 0.00 91 0.000000e+00 0.00 5.792046e+04 5.792046e+04 0.00 NULL
2017 Community College (Hostos) Non-Teaching Adjunct Iv 855.98577 2.225563e+04 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 2.225563e+04 2.225563e+04 0.00 NULL
2017 Community College (Hostos) Non-Teaching Adjunct V 596.79594 1.909747e+04 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 1.909747e+04 1.909747e+04 0.00 NULL
2017 Community College (Hostos) Oiler NA NA 73520.96 3.676048e+04 36760.480 590.00 2 3.676048e+04 73520.96 NA NA NA NULL
2017 Community College (Hostos) Painter NA NA 1288.12 4.293733e+02 249.570 15.50 3 2.495700e+02 748.71 NA NA NA NULL
2017 Community College (Hostos) Plumber NA NA 13865.34 1.386534e+04 13865.340 124.00 1 1.386534e+04 13865.34 NA NA NA NULL
2017 Community College (Hostos) Plumber’s Helper NA NA 4681.43 4.681430e+03 4681.430 56.25 1 4.681430e+03 4681.43 NA NA NA NULL
2017 Community College (Hostos) President 220000.00000 2.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.200000e+05 2.200000e+05 0.00 NULL
2017 Community College (Hostos) Principal Custodial Supervisor 69411.00000 6.941100e+04 19446.49 1.944649e+04 19446.490 285.50 1 1.944649e+04 19446.49 8.885749e+04 8.885749e+04 0.00 NULL
2017 Community College (Hostos) Professor NA NA 0.00 0.000000e+00 0.000 0.00 57 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Hostos) Senior College Lab Tech 66269.50000 3.976170e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.976170e+05 3.976170e+05 0.00 NULL
2017 Community College (Hostos) Senior Custodial Supervisor 37401.00000 3.740100e+04 453.10 4.531000e+02 453.100 0.00 1 4.531000e+02 453.10 3.785410e+04 3.785410e+04 0.00 NULL
2017 Community College (Hostos) Senior Stationary Engineer NA NA 20630.00 2.063000e+04 20630.000 200.25 1 2.063000e+04 20630.00 NA NA NA NULL
2017 Community College (Hostos) Senior Vice President 188511.00000 1.885110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.885110e+05 1.885110e+05 0.00 NULL
2017 Community College (Hostos) Sign Language Interpreter 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2017 Community College (Hostos) Staff Nurse 59211.07167 1.776332e+05 67.16 2.238667e+01 23.250 0.00 3 2.238667e+01 67.16 1.777004e+05 1.777004e+05 0.00 NULL
2017 Community College (Hostos) Stationary Engineer NA NA 221481.41 3.691357e+04 40545.095 1702.25 6 3.691357e+04 221481.41 NA NA NA NULL
2017 Community College (Hostos) Stock Worker 37205.00000 7.441000e+04 9.54 4.770000e+00 4.770 0.00 2 4.770000e+00 9.54 7.441954e+04 7.441954e+04 0.00 NULL
2017 Community College (Hostos) Supervisor Thermostat Repair NA NA 42093.85 4.209385e+04 42093.850 384.00 1 4.209385e+04 42093.85 NA NA NA NULL
2017 Community College (Hostos) Vice President 153573.50000 6.142940e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.142940e+05 6.142940e+05 0.00 NULL
2017 Community College (Kingsboro) ?Purchasing Agent 61251.60000 3.062580e+05 12990.21 2.598042e+03 852.270 239.75 5 8.522700e+02 4261.35 3.192482e+05 3.105193e+05 8728.86 NULL
2017 Community College (Kingsboro) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 176 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Kingsboro) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Kingsboro) Adjunct College Lab Tech 4537.27927 1.265901e+06 0.00 0.000000e+00 0.000 0.00 279 0.000000e+00 0.00 1.265901e+06 1.265901e+06 0.00 NULL
2017 Community College (Kingsboro) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 1135 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Kingsboro) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Kingsboro) Adjunct Senior College Lab Tech 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2017 Community College (Kingsboro) Administrator 147500.00000 2.950000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.950000e+05 2.950000e+05 0.00 NULL
2017 Community College (Kingsboro) Administrator Supt Campus B/G 91556.75000 3.662270e+05 424.15 1.060375e+02 0.000 0.00 4 0.000000e+00 0.00 3.666512e+05 3.662270e+05 424.15 NULL
2017 Community College (Kingsboro) Assistant Administrator 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2017 Community College (Kingsboro) Assistant College Security Director 77450.00000 1.549000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.549000e+05 1.549000e+05 0.00 NULL
2017 Community College (Kingsboro) Assistant Principal Custodial Supervisor 43569.00000 4.356900e+04 6351.23 6.351230e+03 6351.230 160.00 1 6.351230e+03 6351.23 4.992023e+04 4.992023e+04 0.00 NULL
2017 Community College (Kingsboro) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 295 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Kingsboro) Assistant To Heo 53281.68354 4.209253e+06 12567.57 1.590832e+02 0.000 212.75 79 0.000000e+00 0.00 4.221821e+06 4.209253e+06 12567.57 NULL
2017 Community College (Kingsboro) Assistant Vice President 142333.33333 4.270000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.270000e+05 4.270000e+05 0.00 NULL
2017 Community College (Kingsboro) Associate Administrator 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2017 Community College (Kingsboro) Associate Dean 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2017 Community College (Kingsboro) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 145 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Kingsboro) Auto Mechanic NA NA 192.68 9.634000e+01 96.340 4.00 2 9.634000e+01 192.68 NA NA NA NULL
2017 Community College (Kingsboro) Campus Peace Officer 39565.02273 1.740861e+06 90277.84 2.051769e+03 508.450 2322.00 44 5.084500e+02 22371.80 1.831139e+06 1.763233e+06 67906.04 NULL
2017 Community College (Kingsboro) Campus Public Safety Sergeant 54967.68421 1.044386e+06 117303.55 6.173871e+03 3362.340 1995.75 19 3.362340e+03 63884.46 1.161690e+06 1.108270e+06 53419.09 NULL
2017 Community College (Kingsboro) Campus Security Assistant 26265.02381 1.103131e+06 62215.97 1.481333e+03 108.215 2024.75 42 1.082150e+02 4545.03 1.165347e+06 1.107676e+06 57670.94 NULL
2017 Community College (Kingsboro) Carpenter NA NA 27608.58 1.380429e+04 13804.290 344.00 2 1.380429e+04 27608.58 NA NA NA NULL
2017 Community College (Kingsboro) Chief College Lab Technician 59529.42000 4.762354e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.762354e+05 4.762354e+05 0.00 NULL
2017 Community College (Kingsboro) City Laborer NA NA 103294.78 7.945752e+03 8757.970 1484.50 13 7.945752e+03 103294.78 NA NA NA NULL
2017 Community College (Kingsboro) Clip Instructor 50271.42857 3.519000e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.519000e+05 3.519000e+05 0.00 NULL
2017 Community College (Kingsboro) College Accountant 47348.75000 3.787900e+05 975.53 1.219412e+02 50.950 9.00 8 5.095000e+01 407.60 3.797655e+05 3.791976e+05 567.93 NULL
2017 Community College (Kingsboro) College Accounting Assistant 43430.83333 2.605850e+05 7410.24 1.235040e+03 290.635 107.50 6 2.906350e+02 1743.81 2.679952e+05 2.623288e+05 5666.43 NULL
2017 Community College (Kingsboro) College Assistant 3130.19579 3.978479e+06 1039.89 8.181668e-01 0.000 50.00 1271 0.000000e+00 0.00 3.979519e+06 3.978479e+06 1039.89 NULL
2017 Community College (Kingsboro) College Graph Designer 51801.00000 5.180100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.180100e+04 5.180100e+04 0.00 NULL
2017 Community College (Kingsboro) College Interior Designer 55017.00000 5.501700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.501700e+04 5.501700e+04 0.00 NULL
2017 Community College (Kingsboro) College Lab Technician 42930.78828 1.244993e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 1.244993e+06 1.244993e+06 0.00 NULL
2017 Community College (Kingsboro) College Print Shop Assistant 36184.00000 1.085520e+05 491.62 1.638733e+02 29.960 15.00 3 2.996000e+01 89.88 1.090436e+05 1.086419e+05 401.74 NULL
2017 Community College (Kingsboro) College Print Shop Associate 47493.66667 1.424810e+05 747.98 2.493267e+02 322.660 0.00 3 2.493267e+02 747.98 1.432290e+05 1.432290e+05 0.00 NULL
2017 Community College (Kingsboro) College Print Shop Coordinator 67381.33333 2.021440e+05 32.29 1.076333e+01 3.620 0.00 3 3.620000e+00 10.86 2.021763e+05 2.021549e+05 21.43 NULL
2017 Community College (Kingsboro) College Security Director 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2017 Community College (Kingsboro) College Security Specialist 61653.60000 3.082680e+05 21757.82 4.351564e+03 1287.080 356.50 5 1.287080e+03 6435.40 3.300258e+05 3.147034e+05 15322.42 NULL
2017 Community College (Kingsboro) Computer Operator Manager 92013.66667 2.760410e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.760410e+05 2.760410e+05 0.00 NULL
2017 Community College (Kingsboro) Computer Systems Manager 84586.00000 1.691720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.691720e+05 1.691720e+05 0.00 NULL
2017 Community College (Kingsboro) Continuing Education Teacher NA NA 0.00 0.000000e+00 0.000 0.00 810 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Kingsboro) Cuny Administrator Assistant 50451.64516 1.564001e+06 27966.30 9.021387e+02 0.140 612.25 31 1.400000e-01 4.34 1.591967e+06 1.564005e+06 27961.96 NULL
2017 Community College (Kingsboro) Cuny Broadcast Associate 57132.00000 1.142640e+05 2495.67 1.247835e+03 1247.835 20.00 2 1.247835e+03 2495.67 1.167597e+05 1.167597e+05 0.00 NULL
2017 Community College (Kingsboro) Cuny Custodial Assistant 29609.41129 3.049769e+06 86041.05 8.353500e+02 248.680 2218.75 103 2.486800e+02 25614.04 3.135810e+06 3.075383e+06 60427.01 NULL
2017 Community College (Kingsboro) Cuny Office Assistant 35665.83838 3.530918e+06 19554.35 1.975187e+02 0.000 700.50 99 0.000000e+00 0.00 3.550472e+06 3.530918e+06 19554.35 NULL
2017 Community College (Kingsboro) Cuny Start Instructor 56962.25000 4.556980e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.556980e+05 4.556980e+05 0.00 NULL
2017 Community College (Kingsboro) Custodial Supervisor 35224.57143 2.465720e+05 6523.51 9.319300e+02 1040.390 204.50 7 9.319300e+02 6523.51 2.530955e+05 2.530955e+05 0.00 NULL
2017 Community College (Kingsboro) Dean 142500.00000 5.700000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.700000e+05 5.700000e+05 0.00 NULL
2017 Community College (Kingsboro) Disability Accommodations Specialist 27531.28750 5.506257e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.506257e+04 5.506257e+04 0.00 NULL
2017 Community College (Kingsboro) Distinguished Lecturer 79482.75000 3.179310e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.179310e+05 3.179310e+05 0.00 NULL
2017 Community College (Kingsboro) Electrician NA NA 36143.63 1.807181e+04 18071.815 448.50 2 1.807181e+04 36143.63 NA NA NA NULL
2017 Community College (Kingsboro) Electrician’s Helper NA NA 10566.23 1.056623e+04 10566.230 216.50 1 1.056623e+04 10566.23 NA NA NA NULL
2017 Community College (Kingsboro) Facilities Coordinator 67075.50000 1.341510e+05 195.59 9.779500e+01 97.795 6.00 2 9.779500e+01 195.59 1.343466e+05 1.343466e+05 0.00 NULL
2017 Community College (Kingsboro) High Pressure Plant Tender NA NA 31571.10 5.261850e+03 6122.450 620.00 6 5.261850e+03 31571.10 NA NA NA NULL
2017 Community College (Kingsboro) Higher Education Assistant 66518.67708 6.385793e+06 10490.42 1.092752e+02 0.000 114.00 96 0.000000e+00 0.00 6.396283e+06 6.385793e+06 10490.42 NULL
2017 Community College (Kingsboro) Higher Education Associate 87696.19118 5.963341e+06 1149.15 1.689926e+01 0.000 0.00 68 0.000000e+00 0.00 5.964490e+06 5.963341e+06 1149.15 NULL
2017 Community College (Kingsboro) Higher Education Officer 110763.98361 6.756603e+06 0.00 0.000000e+00 0.000 0.00 61 0.000000e+00 0.00 6.756603e+06 6.756603e+06 0.00 NULL
2017 Community College (Kingsboro) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Kingsboro) It Assistant 54577.62500 8.732420e+05 6158.62 3.849137e+02 125.395 171.50 16 1.253950e+02 2006.32 8.794006e+05 8.752483e+05 4152.30 NULL
2017 Community College (Kingsboro) It Associate 73716.33333 4.422980e+05 648.40 1.080667e+02 5.325 0.00 6 5.325000e+00 31.95 4.429464e+05 4.423300e+05 616.45 NULL
2017 Community College (Kingsboro) It Senior Associate 96615.50000 1.932310e+05 10640.14 5.320070e+03 5320.070 158.50 2 5.320070e+03 10640.14 2.038711e+05 2.038711e+05 0.00 NULL
2017 Community College (Kingsboro) It Support Assistant 40229.81250 6.436770e+05 3234.04 2.021275e+02 13.900 96.25 16 1.390000e+01 222.40 6.469110e+05 6.438994e+05 3011.64 NULL
2017 Community College (Kingsboro) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 260 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Kingsboro) Lecturer/Doctoral Schedule 82583.16667 4.954990e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.954990e+05 4.954990e+05 0.00 NULL
2017 Community College (Kingsboro) Locksmith NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Kingsboro) Mail/Message Services Worker 35582.71429 2.490790e+05 1297.26 1.853229e+02 0.000 27.00 7 0.000000e+00 0.00 2.503763e+05 2.490790e+05 1297.26 NULL
2017 Community College (Kingsboro) Maintenance Worker NA NA 37331.74 4.666467e+03 5152.600 566.50 8 4.666467e+03 37331.74 NA NA NA NULL
2017 Community College (Kingsboro) Media Services Technician 64475.00000 6.447500e+04 23536.68 2.353668e+04 23536.680 368.00 1 2.353668e+04 23536.68 8.801168e+04 8.801168e+04 0.00 NULL
2017 Community College (Kingsboro) Non-Teaching Adjunct I NA NA 0.00 0.000000e+00 0.000 0.00 876 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Kingsboro) Non-Teaching Adjunct Ii 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2017 Community College (Kingsboro) Non-Teaching Adjunct Iii NA NA 0.00 0.000000e+00 0.000 0.00 135 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Kingsboro) Non-Teaching Adjunct Iv NA NA 0.00 0.000000e+00 0.000 0.00 54 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Kingsboro) Non-Teaching Adjunct V NA NA 0.00 0.000000e+00 0.000 0.00 55 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Kingsboro) Oiler NA NA 9215.49 2.303872e+03 2062.015 18.00 4 2.062015e+03 8248.06 NA NA NA NULL
2017 Community College (Kingsboro) Painter NA NA 30256.90 7.564225e+03 7062.785 295.00 4 7.062785e+03 28251.14 NA NA NA NULL
2017 Community College (Kingsboro) Plumber NA NA 42603.00 2.130150e+04 21301.500 368.50 2 2.130150e+04 42603.00 NA NA NA NULL
2017 Community College (Kingsboro) President 220000.00000 2.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.200000e+05 2.200000e+05 0.00 NULL
2017 Community College (Kingsboro) Professor NA NA 0.00 0.000000e+00 0.000 0.00 166 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Kingsboro) Project Manager 83416.00000 8.341600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.341600e+04 8.341600e+04 0.00 NULL
2017 Community College (Kingsboro) Senior College Lab Tech 63405.55556 1.141300e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.141300e+06 1.141300e+06 0.00 NULL
2017 Community College (Kingsboro) Senior Custodial Supervisor 38841.00000 3.884100e+04 2632.45 2.632450e+03 2632.450 63.00 1 2.632450e+03 2632.45 4.147345e+04 4.147345e+04 0.00 NULL
2017 Community College (Kingsboro) Senior Stationary Engineer NA NA 9076.88 3.025627e+03 3059.080 5.00 3 3.025627e+03 9076.88 NA NA NA NULL
2017 Community College (Kingsboro) Sign Language Interpreter 567.66587 7.947322e+03 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 7.947322e+03 7.947322e+03 0.00 NULL
2017 Community College (Kingsboro) Sr College Laboratory Tech 5216.56583 3.129940e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.129940e+04 3.129940e+04 0.00 NULL
2017 Community College (Kingsboro) Staff Nurse 10733.88691 2.468794e+05 79.50 3.456522e+00 0.000 1.67 23 0.000000e+00 0.00 2.469589e+05 2.468794e+05 79.50 NULL
2017 Community College (Kingsboro) Stationary Engineer NA NA 151582.21 1.515822e+04 16925.955 1269.50 10 1.515822e+04 151582.21 NA NA NA NULL
2017 Community College (Kingsboro) Stock Worker 31871.75000 1.274870e+05 259.50 6.487500e+01 54.625 0.00 4 5.462500e+01 218.50 1.277465e+05 1.277055e+05 41.00 NULL
2017 Community College (Kingsboro) Student Aide 1968.22402 6.810055e+05 0.00 0.000000e+00 0.000 0.00 346 0.000000e+00 0.00 6.810055e+05 6.810055e+05 0.00 NULL
2017 Community College (Kingsboro) Supervisor Of Stock Workers 47071.00000 4.707100e+04 236.07 2.360700e+02 236.070 0.00 1 2.360700e+02 236.07 4.730707e+04 4.730707e+04 0.00 NULL
2017 Community College (Kingsboro) Thermostat Repairer NA NA 1291.00 1.291000e+03 1291.000 12.50 1 1.291000e+03 1291.00 NA NA NA NULL
2017 Community College (Kingsboro) University Architect 105882.00000 1.058820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.058820e+05 1.058820e+05 0.00 NULL
2017 Community College (Kingsboro) University Assistant Architect 69411.00000 6.941100e+04 104.48 1.044800e+02 104.480 2.75 1 1.044800e+02 104.48 6.951548e+04 6.951548e+04 0.00 NULL
2017 Community College (Kingsboro) Vice President 161246.28571 1.128724e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.128724e+06 1.128724e+06 0.00 NULL
2017 Community College (Laguardia) ?Purchasing Agent 58059.85714 4.064190e+05 4520.01 6.457157e+02 486.350 86.00 7 4.863500e+02 3404.45 4.109390e+05 4.098235e+05 1115.56 NULL
2017 Community College (Laguardia) Adjunct Assistant Professor 8127.94657 3.763239e+06 0.00 0.000000e+00 0.000 0.00 463 0.000000e+00 0.00 3.763239e+06 3.763239e+06 0.00 NULL
2017 Community College (Laguardia) Adjunct Associate Professor 8624.85646 4.139931e+05 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 4.139931e+05 4.139931e+05 0.00 NULL
2017 Community College (Laguardia) Adjunct College Lab Tech 4495.98100 7.643168e+05 0.00 0.000000e+00 0.000 0.00 170 0.000000e+00 0.00 7.643168e+05 7.643168e+05 0.00 NULL
2017 Community College (Laguardia) Adjunct Lecturer 8495.22409 1.133263e+07 0.00 0.000000e+00 0.000 0.00 1334 0.000000e+00 0.00 1.133263e+07 1.133263e+07 0.00 NULL
2017 Community College (Laguardia) Adjunct Professor 12251.91816 2.327864e+05 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.327864e+05 2.327864e+05 0.00 NULL
2017 Community College (Laguardia) Adjunct Senior College Lab Tech 13135.42500 2.627085e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.627085e+04 2.627085e+04 0.00 NULL
2017 Community College (Laguardia) Administrator 152000.00000 3.040000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.040000e+05 3.040000e+05 0.00 NULL
2017 Community College (Laguardia) Administrator Supt Campus B/G 77174.50000 1.543490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.543490e+05 1.543490e+05 0.00 NULL
2017 Community College (Laguardia) Assistant College Security Director 71500.00000 1.430000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.430000e+05 1.430000e+05 0.00 NULL
2017 Community College (Laguardia) Assistant Dean 120250.00000 7.215000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.215000e+05 7.215000e+05 0.00 NULL
2017 Community College (Laguardia) Assistant Professor 56154.03614 1.454390e+07 0.00 0.000000e+00 0.000 0.00 259 0.000000e+00 0.00 1.454390e+07 1.454390e+07 0.00 NULL
2017 Community College (Laguardia) Assistant To Heo 53949.92623 6.581891e+06 2263.36 1.855213e+01 0.000 44.00 122 0.000000e+00 0.00 6.584154e+06 6.581891e+06 2263.36 NULL
2017 Community College (Laguardia) Assistant Vice President 139550.00000 1.395500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.395500e+05 1.395500e+05 0.00 NULL
2017 Community College (Laguardia) Associate Administrator 136312.40000 6.815620e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.815620e+05 6.815620e+05 0.00 NULL
2017 Community College (Laguardia) Associate Dean 133620.00000 6.681000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.681000e+05 6.681000e+05 0.00 NULL
2017 Community College (Laguardia) Associate Professor 62116.07651 1.217475e+07 0.00 0.000000e+00 0.000 0.00 196 0.000000e+00 0.00 1.217475e+07 1.217475e+07 0.00 NULL
2017 Community College (Laguardia) Business Data And Reporting Analyst 51374.00000 5.137400e+04 2217.47 2.217470e+03 2217.470 71.50 1 2.217470e+03 2217.47 5.359147e+04 5.359147e+04 0.00 NULL
2017 Community College (Laguardia) Campus Peace Officer 41630.68293 1.706858e+06 180887.59 4.411892e+03 2775.360 4819.00 41 2.775360e+03 113789.76 1.887746e+06 1.820648e+06 67097.83 NULL
2017 Community College (Laguardia) Campus Public Safety Sergeant 54815.77778 4.933420e+05 72655.05 8.072783e+03 7877.110 1378.50 9 7.877110e+03 70893.99 5.659971e+05 5.642360e+05 1761.06 NULL
2017 Community College (Laguardia) Campus Security Assistant 32305.31111 1.453739e+06 101612.35 2.258052e+03 1738.580 3306.00 45 1.738580e+03 78236.10 1.555351e+06 1.531975e+06 23376.25 NULL
2017 Community College (Laguardia) Chief Administrative Supt Campus B/G 116500.00000 1.165000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.165000e+05 1.165000e+05 0.00 NULL
2017 Community College (Laguardia) Chief College Lab Technician 66446.43455 7.309108e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.309108e+05 7.309108e+05 0.00 NULL
2017 Community College (Laguardia) Clip Instructor 47959.50000 5.755140e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 5.755140e+05 5.755140e+05 0.00 NULL
2017 Community College (Laguardia) College Accountant 48188.50000 2.891310e+05 573.13 9.552167e+01 17.335 21.50 6 1.733500e+01 104.01 2.897041e+05 2.892350e+05 469.12 NULL
2017 Community College (Laguardia) College Accounting Assistant 45574.28571 3.190200e+05 5786.79 8.266843e+02 13.460 139.50 7 1.346000e+01 94.22 3.248068e+05 3.191142e+05 5692.57 NULL
2017 Community College (Laguardia) College Assistant 3215.55768 6.003446e+06 6936.67 3.715410e+00 0.000 188.75 1867 0.000000e+00 0.00 6.010383e+06 6.003446e+06 6936.67 NULL
2017 Community College (Laguardia) College Graph Designer 63000.00000 6.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.300000e+04 6.300000e+04 0.00 NULL
2017 Community College (Laguardia) College Lab Technician 38702.36087 1.780309e+06 0.00 0.000000e+00 0.000 0.00 46 0.000000e+00 0.00 1.780309e+06 1.780309e+06 0.00 NULL
2017 Community College (Laguardia) College Print Shop Assistant 35892.00000 3.589200e+04 2.90 2.900000e+00 2.900 0.00 1 2.900000e+00 2.90 3.589490e+04 3.589490e+04 0.00 NULL
2017 Community College (Laguardia) College Print Shop Associate 47084.00000 4.708400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.708400e+04 4.708400e+04 0.00 NULL
2017 Community College (Laguardia) College Print Shop Coordinator 59450.00000 5.945000e+04 6459.91 6.459910e+03 6459.910 79.00 1 6.459910e+03 6459.91 6.590991e+04 6.590991e+04 0.00 NULL
2017 Community College (Laguardia) College Security Director 102000.00000 1.020000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020000e+05 1.020000e+05 0.00 NULL
2017 Community College (Laguardia) College Security Specialist 63487.66667 1.904630e+05 73760.80 2.458693e+04 27554.140 1218.25 3 2.458693e+04 73760.80 2.642238e+05 2.642238e+05 0.00 NULL
2017 Community College (Laguardia) Computer Systems Manager 123897.75000 4.955910e+05 428.18 1.070450e+02 0.000 0.00 4 0.000000e+00 0.00 4.960192e+05 4.955910e+05 428.18 NULL
2017 Community College (Laguardia) Continuing Education Teacher 5803.20725 2.594034e+06 0.00 0.000000e+00 0.000 0.00 447 0.000000e+00 0.00 2.594034e+06 2.594034e+06 0.00 NULL
2017 Community College (Laguardia) Cuny Administrator Assistant 51891.09677 1.608624e+06 9051.36 2.919794e+02 0.000 240.50 31 0.000000e+00 0.00 1.617675e+06 1.608624e+06 9051.36 NULL
2017 Community College (Laguardia) Cuny Broadcast Associate 46035.00000 1.841400e+05 57566.11 1.439153e+04 17490.250 1297.75 4 1.439153e+04 57566.11 2.417061e+05 2.417061e+05 0.00 NULL
2017 Community College (Laguardia) Cuny Custodial Assistant 14205.12074 1.818255e+06 183898.07 1.436704e+03 17.350 5531.50 128 1.735000e+01 2220.80 2.002154e+06 1.820476e+06 181677.27 NULL
2017 Community College (Laguardia) Cuny Office Assistant 36152.25862 4.193662e+06 28095.67 2.422041e+02 0.000 1012.50 116 0.000000e+00 0.00 4.221758e+06 4.193662e+06 28095.67 NULL
2017 Community College (Laguardia) Cuny Start Instructor 53966.23077 7.015610e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 7.015610e+05 7.015610e+05 0.00 NULL
2017 Community College (Laguardia) Cuny Technical Support Aide 29410.00000 5.882000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.882000e+04 5.882000e+04 0.00 NULL
2017 Community College (Laguardia) Custodial Supervisor 39522.00000 1.185660e+05 44167.04 1.472235e+04 13387.810 1210.00 3 1.338781e+04 40163.43 1.627330e+05 1.587294e+05 4003.61 NULL
2017 Community College (Laguardia) Dean 139550.00000 1.395500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.395500e+05 1.395500e+05 0.00 NULL
2017 Community College (Laguardia) Facilities Coordinator 55910.00000 2.236400e+05 825.17 2.062925e+02 0.000 0.00 4 0.000000e+00 0.00 2.244652e+05 2.236400e+05 825.17 NULL
2017 Community College (Laguardia) Higher Education Assistant 68327.10405 1.182059e+07 9960.91 5.757751e+01 0.000 125.00 173 0.000000e+00 0.00 1.183055e+07 1.182059e+07 9960.91 NULL
2017 Community College (Laguardia) Higher Education Associate 89550.95200 1.119387e+07 352.11 2.816880e+00 0.000 0.00 125 0.000000e+00 0.00 1.119422e+07 1.119387e+07 352.11 NULL
2017 Community College (Laguardia) Higher Education Officer 115896.93243 8.576373e+06 0.00 0.000000e+00 0.000 0.00 74 0.000000e+00 0.00 8.576373e+06 8.576373e+06 0.00 NULL
2017 Community College (Laguardia) Instructor 50033.67880 1.250842e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.250842e+06 1.250842e+06 0.00 NULL
2017 Community College (Laguardia) It Assistant 49454.31812 1.582538e+06 26117.56 8.161738e+02 256.045 388.50 32 2.560450e+02 8193.44 1.608656e+06 1.590732e+06 17924.12 NULL
2017 Community College (Laguardia) It Associate 71415.03333 2.142451e+06 28839.26 9.613087e+02 131.510 360.00 30 1.315100e+02 3945.30 2.171290e+06 2.146396e+06 24893.96 NULL
2017 Community College (Laguardia) It Senior Associate 93596.15385 1.216750e+06 5739.82 4.415246e+02 252.620 58.50 13 2.526200e+02 3284.06 1.222490e+06 1.220034e+06 2455.76 NULL
2017 Community College (Laguardia) It Support Assistant 39912.88851 1.476777e+06 5724.10 1.547054e+02 1.880 121.50 37 1.880000e+00 69.56 1.482501e+06 1.476846e+06 5654.54 NULL
2017 Community College (Laguardia) Lecturer 48283.12796 6.276807e+06 0.00 0.000000e+00 0.000 0.00 130 0.000000e+00 0.00 6.276807e+06 6.276807e+06 0.00 NULL
2017 Community College (Laguardia) Lecturer/Doctoral Schedule 79848.75000 3.193950e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.193950e+05 3.193950e+05 0.00 NULL
2017 Community College (Laguardia) Mail/Message Services Worker 37633.58333 4.516030e+05 47041.46 3.920122e+03 841.565 1215.50 12 8.415650e+02 10098.78 4.986445e+05 4.617018e+05 36942.68 NULL
2017 Community College (Laguardia) Media Services Technician 58857.00000 5.885700e+04 33631.77 3.363177e+04 33631.770 620.00 1 3.363177e+04 33631.77 9.248877e+04 9.248877e+04 0.00 NULL
2017 Community College (Laguardia) Motor Vehicle Operator 41470.00000 4.147000e+04 7.81 7.810000e+00 7.810 0.00 1 7.810000e+00 7.81 4.147781e+04 4.147781e+04 0.00 NULL
2017 Community College (Laguardia) Non-Teaching Adjunct I 1454.20388 3.431921e+05 0.00 0.000000e+00 0.000 0.00 236 0.000000e+00 0.00 3.431921e+05 3.431921e+05 0.00 NULL
2017 Community College (Laguardia) Non-Teaching Adjunct Ii 96.61414 2.057881e+04 0.00 0.000000e+00 0.000 0.00 213 0.000000e+00 0.00 2.057881e+04 2.057881e+04 0.00 NULL
2017 Community College (Laguardia) Non-Teaching Adjunct Iii 1483.91698 2.285232e+05 0.00 0.000000e+00 0.000 0.00 154 0.000000e+00 0.00 2.285232e+05 2.285232e+05 0.00 NULL
2017 Community College (Laguardia) Non-Teaching Adjunct Iv 2130.32250 1.406013e+05 0.00 0.000000e+00 0.000 0.00 66 0.000000e+00 0.00 1.406013e+05 1.406013e+05 0.00 NULL
2017 Community College (Laguardia) Non-Teaching Adjunct V 1921.51295 7.493901e+04 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 7.493901e+04 7.493901e+04 0.00 NULL
2017 Community College (Laguardia) President 219834.00000 2.198340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.198340e+05 2.198340e+05 0.00 NULL
2017 Community College (Laguardia) Professor 71065.48493 1.471056e+07 0.00 0.000000e+00 0.000 0.00 207 0.000000e+00 0.00 1.471056e+07 1.471056e+07 0.00 NULL
2017 Community College (Laguardia) Project Manager 80651.00000 1.613020e+05 153.03 7.651500e+01 76.515 0.00 2 7.651500e+01 153.03 1.614550e+05 1.614550e+05 0.00 NULL
2017 Community College (Laguardia) Senior College Lab Tech 67023.16667 8.042780e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 8.042780e+05 8.042780e+05 0.00 NULL
2017 Community College (Laguardia) Senior Vice President 181000.00000 1.810000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.810000e+05 1.810000e+05 0.00 NULL
2017 Community College (Laguardia) Sign Language Interpreter 19149.17188 6.127735e+05 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 6.127735e+05 6.127735e+05 0.00 NULL
2017 Community College (Laguardia) Sr College Laboratory Tech 2589.09750 5.178195e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.178195e+03 5.178195e+03 0.00 NULL
2017 Community College (Laguardia) Staff Nurse 85016.50000 1.700330e+05 0.46 2.300000e-01 0.230 0.00 2 2.300000e-01 0.46 1.700335e+05 1.700335e+05 0.00 NULL
2017 Community College (Laguardia) Stock Worker 38139.00000 3.813900e+04 1040.55 1.040550e+03 1040.550 0.00 1 1.040550e+03 1040.55 3.917955e+04 3.917955e+04 0.00 NULL
2017 Community College (Laguardia) Supervisor Of Stock Workers 40107.00000 4.010700e+04 1.60 1.600000e+00 1.600 0.00 1 1.600000e+00 1.60 4.010860e+04 4.010860e+04 0.00 NULL
2017 Community College (Laguardia) University Assistant Architect 59875.00000 1.796250e+05 2536.99 8.456633e+02 0.000 56.00 3 0.000000e+00 0.00 1.821620e+05 1.796250e+05 2536.99 NULL
2017 Community College (Laguardia) University Assistant Engineer 65970.25000 2.638810e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.638810e+05 2.638810e+05 0.00 NULL
2017 Community College (Laguardia) Vice President 166346.80000 8.317340e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.317340e+05 8.317340e+05 0.00 NULL
2017 Community College (Manhattan) ?Assistant Purchasing Agent 39721.20000 1.986060e+05 1235.48 2.470960e+02 69.500 53.50 5 6.950000e+01 347.50 1.998415e+05 1.989535e+05 887.98 NULL
2017 Community College (Manhattan) ?Purchasing Agent 56308.00000 1.126160e+05 936.83 4.684150e+02 468.415 21.50 2 4.684150e+02 936.83 1.135528e+05 1.135528e+05 0.00 NULL
2017 Community College (Manhattan) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 473 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Manhattan) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 45 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Manhattan) Adjunct College Lab Tech NA NA 0.00 0.000000e+00 0.000 0.00 150 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Manhattan) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 2215 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Manhattan) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Manhattan) Adjunct Senior College Lab Tech 2871.19418 1.579157e+05 0.00 0.000000e+00 0.000 0.00 55 0.000000e+00 0.00 1.579157e+05 1.579157e+05 0.00 NULL
2017 Community College (Manhattan) Administrator 122000.00000 1.220000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.220000e+05 1.220000e+05 0.00 NULL
2017 Community College (Manhattan) Administrator Supt Campus B/G 90848.00000 2.725440e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.725440e+05 2.725440e+05 0.00 NULL
2017 Community College (Manhattan) Assistant Administrator 119666.66667 3.590000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.590000e+05 3.590000e+05 0.00 NULL
2017 Community College (Manhattan) Assistant College Security Director 72418.33333 4.345100e+05 9049.08 1.508180e+03 0.000 80.67 6 0.000000e+00 0.00 4.435591e+05 4.345100e+05 9049.08 NULL
2017 Community College (Manhattan) Assistant Dean 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2017 Community College (Manhattan) Assistant Principal Custodial Supervisor 43288.66667 1.298660e+05 19429.39 6.476463e+03 7044.750 434.92 3 6.476463e+03 19429.39 1.492954e+05 1.492954e+05 0.00 NULL
2017 Community College (Manhattan) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 503 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Manhattan) Assistant To Heo 50223.58140 6.478842e+06 10174.27 7.887031e+01 0.000 177.25 129 0.000000e+00 0.00 6.489016e+06 6.478842e+06 10174.27 NULL
2017 Community College (Manhattan) Assistant Vice President 134140.00000 1.341400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.341400e+05 1.341400e+05 0.00 NULL
2017 Community College (Manhattan) Associate Administrator 123000.00000 2.460000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.460000e+05 2.460000e+05 0.00 NULL
2017 Community College (Manhattan) Associate Dean 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2017 Community College (Manhattan) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 211 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Manhattan) Campus Peace Officer 40724.64615 2.647102e+06 304018.50 4.677208e+03 1909.370 7762.83 65 1.909370e+03 124109.05 2.951120e+06 2.771211e+06 179909.45 NULL
2017 Community College (Manhattan) Campus Public Safety Sergeant 55253.14286 7.735440e+05 77427.94 5.530567e+03 3705.170 1509.58 14 3.705170e+03 51872.38 8.509719e+05 8.254164e+05 25555.56 NULL
2017 Community College (Manhattan) Campus Security Assistant 18401.14508 1.803312e+06 365271.26 3.727258e+03 261.420 13810.60 98 2.614200e+02 25619.16 2.168583e+06 1.828931e+06 339652.10 NULL
2017 Community College (Manhattan) Carpenter NA NA 55316.69 7.902384e+03 6740.040 669.50 7 6.740040e+03 47180.28 NA NA NA NULL
2017 Community College (Manhattan) Chief Administrator Supt Campus B/G 140902.00000 1.409020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.409020e+05 1.409020e+05 0.00 NULL
2017 Community College (Manhattan) City Laborer NA NA 142440.97 2.034871e+04 21122.840 2530.25 7 2.034871e+04 142440.97 NA NA NA NULL
2017 Community College (Manhattan) Clip Instructor 49065.00000 4.906500e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.906500e+05 4.906500e+05 0.00 NULL
2017 Community College (Manhattan) College Accountant 47160.50000 9.432100e+04 183.08 9.154000e+01 91.540 0.00 2 9.154000e+01 183.08 9.450408e+04 9.450408e+04 0.00 NULL
2017 Community College (Manhattan) College Accounting Assistant 42733.33333 1.025600e+06 9134.20 3.805917e+02 14.250 257.00 24 1.425000e+01 342.00 1.034734e+06 1.025942e+06 8792.20 NULL
2017 Community College (Manhattan) College Assistant 2583.19472 5.342047e+06 158936.76 7.685530e+01 0.000 12127.09 2068 0.000000e+00 0.00 5.500983e+06 5.342047e+06 158936.76 NULL
2017 Community College (Manhattan) College Graph Designer 51801.00000 5.180100e+04 2806.87 2.806870e+03 2806.870 77.25 1 2.806870e+03 2806.87 5.460787e+04 5.460787e+04 0.00 NULL
2017 Community College (Manhattan) College Lab Technician 49822.11000 1.594308e+06 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 1.594308e+06 1.594308e+06 0.00 NULL
2017 Community College (Manhattan) College Print Shop Assistant 30297.57143 2.120830e+05 5915.84 8.451200e+02 460.610 247.75 7 4.606100e+02 3224.27 2.179988e+05 2.153073e+05 2691.57 NULL
2017 Community College (Manhattan) College Print Shop Coordinator 60439.50000 1.208790e+05 5878.91 2.939455e+03 2939.455 136.00 2 2.939455e+03 5878.91 1.267579e+05 1.267579e+05 0.00 NULL
2017 Community College (Manhattan) College Security Director 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2017 Community College (Manhattan) Computer Operator Manager 129650.00000 1.296500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.296500e+05 1.296500e+05 0.00 NULL
2017 Community College (Manhattan) Computer Systems Manager 130000.00000 1.300000e+05 120.71 1.207100e+02 120.710 0.00 1 1.207100e+02 120.71 1.301207e+05 1.301207e+05 0.00 NULL
2017 Community College (Manhattan) Continuing Education Teacher NA NA 0.00 0.000000e+00 0.000 0.00 346 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Manhattan) Cuny Administrator Assistant 52254.69231 6.793110e+05 3622.20 2.786308e+02 0.000 90.25 13 0.000000e+00 0.00 6.829332e+05 6.793110e+05 3622.20 NULL
2017 Community College (Manhattan) Cuny Broadcast Associate 66154.00000 6.615400e+04 98.08 9.808000e+01 98.080 2.50 1 9.808000e+01 98.08 6.625208e+04 6.625208e+04 0.00 NULL
2017 Community College (Manhattan) Cuny Custodial Assistant 23165.41194 3.729631e+06 254995.25 1.583821e+03 406.770 9159.16 161 4.067700e+02 65489.97 3.984627e+06 3.795121e+06 189505.28 NULL
2017 Community College (Manhattan) Cuny Office Assistant 34813.80882 4.734678e+06 39175.61 2.880560e+02 0.410 1285.25 136 4.100000e-01 55.76 4.773854e+06 4.734734e+06 39119.85 NULL
2017 Community College (Manhattan) Cuny Start Instructor 55115.17647 9.369580e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 9.369580e+05 9.369580e+05 0.00 NULL
2017 Community College (Manhattan) Custodial Supervisor 34637.41667 4.156490e+05 48274.21 4.022851e+03 4366.880 1362.16 12 4.022851e+03 48274.21 4.639232e+05 4.639232e+05 0.00 NULL
2017 Community College (Manhattan) Dean 149540.60000 7.477030e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.477030e+05 7.477030e+05 0.00 NULL
2017 Community College (Manhattan) Disability Accommodations Specialist 43282.00000 4.328200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.328200e+04 4.328200e+04 0.00 NULL
2017 Community College (Manhattan) Electrician NA NA 61529.89 6.836654e+03 6449.630 790.75 9 6.449630e+03 58046.67 NA NA NA NULL
2017 Community College (Manhattan) Electrician’s Helper NA NA 18741.18 9.370590e+03 9370.590 308.25 2 9.370590e+03 18741.18 NA NA NA NULL
2017 Community College (Manhattan) Eoc Accountant 51758.00000 5.175800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.175800e+04 5.175800e+04 0.00 NULL
2017 Community College (Manhattan) Eoc Accounting Assistant 27469.33333 8.240800e+04 516.31 1.721033e+02 207.200 20.50 3 1.721033e+02 516.31 8.292431e+04 8.292431e+04 0.00 NULL
2017 Community College (Manhattan) Eoc Adjunct College Lab Tech 12056.16500 1.205617e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.205617e+04 1.205617e+04 0.00 NULL
2017 Community College (Manhattan) Eoc Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 92 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Manhattan) Eoc Administrative Assistant 50247.00000 5.024700e+04 3.79 3.790000e+00 3.790 0.00 1 3.790000e+00 3.79 5.025079e+04 5.025079e+04 0.00 NULL
2017 Community College (Manhattan) Eoc Assistant 1020.98000 2.041960e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.041960e+03 2.041960e+03 0.00 NULL
2017 Community College (Manhattan) Eoc Assistant To Heo 61121.07143 8.556950e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 8.556950e+05 8.556950e+05 0.00 NULL
2017 Community College (Manhattan) Eoc College Lab Technician 56462.00000 1.129240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.129240e+05 1.129240e+05 0.00 NULL
2017 Community College (Manhattan) Eoc Higher Education Assistant 84333.50000 3.373340e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.373340e+05 3.373340e+05 0.00 NULL
2017 Community College (Manhattan) Eoc Higher Education Associate 86373.20000 4.318660e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.318660e+05 4.318660e+05 0.00 NULL
2017 Community College (Manhattan) Eoc Higher Education Officer 106402.00000 3.192060e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.192060e+05 3.192060e+05 0.00 NULL
2017 Community College (Manhattan) Eoc Lecturer 77051.68182 8.475685e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 8.475685e+05 8.475685e+05 0.00 NULL
2017 Community College (Manhattan) Eoc Lecturer/ Doctral Schedule 83411.50000 1.668230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.668230e+05 1.668230e+05 0.00 NULL
2017 Community College (Manhattan) Eoc Mail/Message Services Worker 30919.25000 1.236770e+05 258.66 6.466500e+01 7.515 7.92 4 7.515000e+00 30.06 1.239357e+05 1.237071e+05 228.60 NULL
2017 Community College (Manhattan) Eoc Office Assistant 34916.26316 6.634090e+05 2944.08 1.549516e+02 51.410 119.76 19 5.141000e+01 976.79 6.663531e+05 6.643858e+05 1967.29 NULL
2017 Community College (Manhattan) Facilities Coordinator 59557.00000 5.955700e+04 1075.14 1.075140e+03 1075.140 22.00 1 1.075140e+03 1075.14 6.063214e+04 6.063214e+04 0.00 NULL
2017 Community College (Manhattan) Higher Education Assistant 65920.64641 1.193164e+07 13636.14 7.533779e+01 0.000 212.52 181 0.000000e+00 0.00 1.194527e+07 1.193164e+07 13636.14 NULL
2017 Community College (Manhattan) Higher Education Associate 88834.44304 7.017921e+06 62.21 7.874684e-01 0.000 0.00 79 0.000000e+00 0.00 7.017983e+06 7.017921e+06 62.21 NULL
2017 Community College (Manhattan) Higher Education Officer 118197.62745 6.028079e+06 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 6.028079e+06 6.028079e+06 0.00 NULL
2017 Community College (Manhattan) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 141 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Manhattan) It Assistant 49960.86667 1.498826e+06 4293.62 1.431207e+02 15.680 94.00 30 1.568000e+01 470.40 1.503120e+06 1.499296e+06 3823.22 NULL
2017 Community College (Manhattan) It Associate 66872.80000 3.343640e+05 1173.26 2.346520e+02 58.700 16.50 5 5.870000e+01 293.50 3.355373e+05 3.346575e+05 879.76 NULL
2017 Community College (Manhattan) It Senior Associate 87722.09091 9.649430e+05 5638.56 5.125964e+02 0.000 19.00 11 0.000000e+00 0.00 9.705816e+05 9.649430e+05 5638.56 NULL
2017 Community College (Manhattan) It Support Assistant 27794.36742 1.334130e+06 4271.07 8.898063e+01 1.325 178.00 48 1.325000e+00 63.60 1.338401e+06 1.334193e+06 4207.47 NULL
2017 Community College (Manhattan) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 152 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Manhattan) Lecturer/Doctoral Schedule 70834.25000 2.833370e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.833370e+05 2.833370e+05 0.00 NULL
2017 Community College (Manhattan) Locksmith NA NA 3279.78 1.639890e+03 1639.890 65.25 2 1.639890e+03 3279.78 NA NA NA NULL
2017 Community College (Manhattan) Mail/Message Services Worker 35843.00000 1.792150e+05 900.06 1.800120e+02 4.860 1.00 5 4.860000e+00 24.30 1.801151e+05 1.792393e+05 875.76 NULL
2017 Community College (Manhattan) Maintenance Worker NA NA 11846.20 2.369240e+03 2391.940 247.00 5 2.369240e+03 11846.20 NA NA NA NULL
2017 Community College (Manhattan) Media Services Technician 43604.00000 4.360400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.360400e+04 4.360400e+04 0.00 NULL
2017 Community College (Manhattan) Non-Teaching Adjunct I NA NA 0.00 0.000000e+00 0.000 0.00 209 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Manhattan) Non-Teaching Adjunct Ii NA NA 0.00 0.000000e+00 0.000 0.00 297 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Manhattan) Non-Teaching Adjunct Iii 664.91846 1.336486e+05 0.00 0.000000e+00 0.000 0.00 201 0.000000e+00 0.00 1.336486e+05 1.336486e+05 0.00 NULL
2017 Community College (Manhattan) Non-Teaching Adjunct Iv 902.96263 4.785702e+04 0.00 0.000000e+00 0.000 0.00 53 0.000000e+00 0.00 4.785702e+04 4.785702e+04 0.00 NULL
2017 Community College (Manhattan) Non-Teaching Adjunct V 2975.34790 1.249646e+05 0.00 0.000000e+00 0.000 0.00 42 0.000000e+00 0.00 1.249646e+05 1.249646e+05 0.00 NULL
2017 Community College (Manhattan) Oiler NA NA 258239.95 1.291200e+04 8949.860 1487.50 20 8.949860e+03 178997.20 NA NA NA NULL
2017 Community College (Manhattan) Painter NA NA 47690.36 5.298929e+03 2425.680 669.00 9 2.425680e+03 21831.12 NA NA NA NULL
2017 Community College (Manhattan) Plumber NA NA 73483.72 2.449457e+04 10792.760 718.00 3 1.079276e+04 32378.28 NA NA NA NULL
2017 Community College (Manhattan) Plumber’s Helper NA NA 28016.28 1.400814e+04 14008.140 384.75 2 1.400814e+04 28016.28 NA NA NA NULL
2017 Community College (Manhattan) President 222251.00000 2.222510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.222510e+05 2.222510e+05 0.00 NULL
2017 Community College (Manhattan) Principal Custodial Supervisor 54205.50000 2.168220e+05 18619.31 4.654828e+03 2376.625 377.83 4 2.376625e+03 9506.50 2.354413e+05 2.263285e+05 9112.81 NULL
2017 Community College (Manhattan) Professor NA NA 0.00 0.000000e+00 0.000 0.00 221 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Manhattan) Project Manager 58830.00000 5.883000e+04 66.42 6.642000e+01 66.420 0.00 1 6.642000e+01 66.42 5.889642e+04 5.889642e+04 0.00 NULL
2017 Community College (Manhattan) Research Assistant 52823.00000 5.282300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.282300e+04 5.282300e+04 0.00 NULL
2017 Community College (Manhattan) Senior College Lab Tech 68808.05556 1.238545e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.238545e+06 1.238545e+06 0.00 NULL
2017 Community College (Manhattan) Senior Custodial Supervisor 35822.50000 1.432900e+05 14902.67 3.725668e+03 3421.075 472.50 4 3.421075e+03 13684.30 1.581927e+05 1.569743e+05 1218.37 NULL
2017 Community College (Manhattan) Senior Stationary Engineer NA NA 124934.77 4.164492e+04 24238.910 647.75 3 2.423891e+04 72716.73 NA NA NA NULL
2017 Community College (Manhattan) Senior Vice President 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2017 Community College (Manhattan) Sign Language Interpreter 13140.94938 1.051276e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.051276e+05 1.051276e+05 0.00 NULL
2017 Community College (Manhattan) Staff Nurse 91728.00000 9.172800e+04 4.66 4.660000e+00 4.660 0.00 1 4.660000e+00 4.66 9.173266e+04 9.173266e+04 0.00 NULL
2017 Community College (Manhattan) Stationary Engineer NA NA 207204.14 1.381361e+04 15307.410 1151.50 15 1.381361e+04 207204.14 NA NA NA NULL
2017 Community College (Manhattan) Stock Worker 33735.00000 1.012050e+05 1169.85 3.899500e+02 238.670 56.75 3 2.386700e+02 716.01 1.023749e+05 1.019210e+05 453.84 NULL
2017 Community College (Manhattan) Supervisor Of Stock Workers 56785.00000 5.678500e+04 3252.64 3.252640e+03 3252.640 58.00 1 3.252640e+03 3252.64 6.003764e+04 6.003764e+04 0.00 NULL
2017 Community College (Manhattan) Supervisor Painter NA NA 84.90 8.490000e+01 84.900 0.00 1 8.490000e+01 84.90 NA NA NA NULL
2017 Community College (Manhattan) Thermostat Repairer NA NA 36120.99 1.806049e+04 18060.495 248.00 2 1.806049e+04 36120.99 NA NA NA NULL
2017 Community College (Manhattan) Vice President 178399.16667 1.070395e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.070395e+06 1.070395e+06 0.00 NULL
2017 Community College (Queensboro) ?Assistant Purchasing Agent 41938.00000 4.193800e+04 9.85 9.850000e+00 9.850 0.00 1 9.850000e+00 9.85 4.194785e+04 4.194785e+04 0.00 NULL
2017 Community College (Queensboro) ?Purchasing Agent 59694.00000 1.193880e+05 1479.26 7.396300e+02 739.630 0.00 2 7.396300e+02 1479.26 1.208673e+05 1.208673e+05 0.00 NULL
2017 Community College (Queensboro) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 204 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Queensboro) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Queensboro) Adjunct College Lab Tech 4986.54337 7.479815e+05 0.00 0.000000e+00 0.000 0.00 150 0.000000e+00 0.00 7.479815e+05 7.479815e+05 0.00 NULL
2017 Community College (Queensboro) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 858 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Queensboro) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Queensboro) Adjunct Senior College Lab Tech 4745.92618 8.068074e+04 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 8.068074e+04 8.068074e+04 0.00 NULL
2017 Community College (Queensboro) Administrator 151412.00000 4.542360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.542360e+05 4.542360e+05 0.00 NULL
2017 Community College (Queensboro) Administrator Supt Campus B/G 84416.84667 2.532505e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.532505e+05 2.532505e+05 0.00 NULL
2017 Community College (Queensboro) Assistant Administrator 121590.00000 1.215900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.215900e+05 1.215900e+05 0.00 NULL
2017 Community College (Queensboro) Assistant College Security Director 80941.50000 1.618830e+05 91.04 4.552000e+01 45.520 0.00 2 4.552000e+01 91.04 1.619740e+05 1.619740e+05 0.00 NULL
2017 Community College (Queensboro) Assistant Dean 118795.00000 2.375900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.375900e+05 2.375900e+05 0.00 NULL
2017 Community College (Queensboro) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 349 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Queensboro) Assistant To Heo 47385.58442 3.648690e+06 0.00 0.000000e+00 0.000 0.00 77 0.000000e+00 0.00 3.648690e+06 3.648690e+06 0.00 NULL
2017 Community College (Queensboro) Associate Administrator 137390.50000 2.747810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.747810e+05 2.747810e+05 0.00 NULL
2017 Community College (Queensboro) Associate Dean 142390.50000 2.847810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.847810e+05 2.847810e+05 0.00 NULL
2017 Community College (Queensboro) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 210 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Queensboro) Auto Mechanic NA NA 2780.72 2.780720e+03 2780.720 46.00 1 2.780720e+03 2780.72 NA NA NA NULL
2017 Community College (Queensboro) Campus Peace Officer 41902.02500 1.676081e+06 216555.40 5.413885e+03 3989.645 5714.00 40 3.989645e+03 159585.80 1.892636e+06 1.835667e+06 56969.60 NULL
2017 Community College (Queensboro) Campus Public Safety Sergeant 55370.00000 4.983300e+05 59013.27 6.557030e+03 6956.650 1090.00 9 6.557030e+03 59013.27 5.573433e+05 5.573433e+05 0.00 NULL
2017 Community College (Queensboro) Campus Security Assistant 30132.84615 7.834540e+05 45385.20 1.745585e+03 488.945 1745.00 26 4.889450e+02 12712.57 8.288392e+05 7.961666e+05 32672.63 NULL
2017 Community College (Queensboro) Carpenter NA NA 120853.02 3.021326e+04 30327.040 1424.25 4 3.021326e+04 120853.02 NA NA NA NULL
2017 Community College (Queensboro) Cement Mason NA NA 69123.33 6.912333e+04 69123.330 861.00 1 6.912333e+04 69123.33 NA NA NA NULL
2017 Community College (Queensboro) Chief Administrative Supt Campus B/G 130388.00000 1.303880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.303880e+05 1.303880e+05 0.00 NULL
2017 Community College (Queensboro) Chief College Lab Technician 38000.58409 4.180064e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 4.180064e+05 4.180064e+05 0.00 NULL
2017 Community College (Queensboro) City Laborer NA NA 199890.96 2.855585e+04 34401.730 3853.00 7 2.855585e+04 199890.96 NA NA NA NULL
2017 Community College (Queensboro) Clip Instructor 49972.50000 4.997250e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.997250e+05 4.997250e+05 0.00 NULL
2017 Community College (Queensboro) College Accountant 52555.40000 5.255540e+05 2035.53 2.035530e+02 40.615 34.50 10 4.061500e+01 406.15 5.275895e+05 5.259602e+05 1629.38 NULL
2017 Community College (Queensboro) College Accounting Assistant 44680.50000 1.787220e+05 936.15 2.340375e+02 42.375 3.25 4 4.237500e+01 169.50 1.796581e+05 1.788915e+05 766.65 NULL
2017 Community College (Queensboro) College Assistant 2494.97538 4.286368e+06 0.72 4.191000e-04 0.000 0.00 1718 0.000000e+00 0.00 4.286368e+06 4.286368e+06 0.72 NULL
2017 Community College (Queensboro) College Graph Designer 59572.00000 5.957200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.957200e+04 5.957200e+04 0.00 NULL
2017 Community College (Queensboro) College Lab Technician 50270.00000 1.558370e+06 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 1.558370e+06 1.558370e+06 0.00 NULL
2017 Community College (Queensboro) College Print Shop Assistant 31144.00000 6.228800e+04 14.40 7.200000e+00 7.200 0.00 2 7.200000e+00 14.40 6.230240e+04 6.230240e+04 0.00 NULL
2017 Community College (Queensboro) College Print Shop Associate 42817.66667 1.284530e+05 5.52 1.840000e+00 0.000 0.00 3 0.000000e+00 0.00 1.284585e+05 1.284530e+05 5.52 NULL
2017 Community College (Queensboro) College Print Shop Coordinator 59450.00000 5.945000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.945000e+04 5.945000e+04 0.00 NULL
2017 Community College (Queensboro) College Security Director 132500.00000 2.650000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.650000e+05 2.650000e+05 0.00 NULL
2017 Community College (Queensboro) Computer Systems Manager 128710.40000 6.435520e+05 26369.97 5.273994e+03 5833.110 191.50 5 5.273994e+03 26369.97 6.699220e+05 6.699220e+05 0.00 NULL
2017 Community College (Queensboro) Continuing Education Teacher NA NA 0.00 0.000000e+00 0.000 0.00 399 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Queensboro) Cuny Administrator Assistant 52297.55882 1.778117e+06 3495.17 1.027991e+02 0.000 59.00 34 0.000000e+00 0.00 1.781612e+06 1.778117e+06 3495.17 NULL
2017 Community College (Queensboro) Cuny Broadcast Associate 50558.00000 5.055800e+04 757.73 7.577300e+02 757.730 23.00 1 7.577300e+02 757.73 5.131573e+04 5.131573e+04 0.00 NULL
2017 Community College (Queensboro) Cuny Custodial Assistant 27411.39080 2.247734e+06 473209.61 5.770849e+03 230.460 16210.08 82 2.304600e+02 18897.72 2.720944e+06 2.266632e+06 454311.89 NULL
2017 Community College (Queensboro) Cuny Office Assistant 35773.19200 4.471649e+06 3098.61 2.478888e+01 0.000 107.25 125 0.000000e+00 0.00 4.474748e+06 4.471649e+06 3098.61 NULL
2017 Community College (Queensboro) Cuny Start Instructor 55727.27273 6.130000e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 6.130000e+05 6.130000e+05 0.00 NULL
2017 Community College (Queensboro) Custodial Supervisor 34890.00000 3.837900e+05 37192.01 3.381092e+03 2773.630 998.25 11 2.773630e+03 30509.93 4.209820e+05 4.142999e+05 6682.08 NULL
2017 Community College (Queensboro) Dean 137500.00000 5.500000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.500000e+05 5.500000e+05 0.00 NULL
2017 Community College (Queensboro) Disability Accommodations Specialist 16302.28028 1.467205e+05 218.65 2.429444e+01 0.000 7.00 9 0.000000e+00 0.00 1.469392e+05 1.467205e+05 218.65 NULL
2017 Community College (Queensboro) Electrician NA NA 136746.81 2.279113e+04 19293.775 1800.50 6 1.929378e+04 115762.65 NA NA NA NULL
2017 Community College (Queensboro) Electrician’s Helper NA NA 4041.89 4.041890e+03 4041.890 90.50 1 4.041890e+03 4041.89 NA NA NA NULL
2017 Community College (Queensboro) Facilities Coordinator 59557.00000 5.955700e+04 734.60 7.346000e+02 734.600 29.00 1 7.346000e+02 734.60 6.029160e+04 6.029160e+04 0.00 NULL
2017 Community College (Queensboro) High Pressure Plant Tender NA NA 87354.86 1.091936e+04 10512.990 1670.00 8 1.051299e+04 84103.92 NA NA NA NULL
2017 Community College (Queensboro) Higher Education Assistant 68059.67327 6.874027e+06 0.00 0.000000e+00 0.000 0.00 101 0.000000e+00 0.00 6.874027e+06 6.874027e+06 0.00 NULL
2017 Community College (Queensboro) Higher Education Associate 92557.90625 5.923706e+06 0.00 0.000000e+00 0.000 0.00 64 0.000000e+00 0.00 5.923706e+06 5.923706e+06 0.00 NULL
2017 Community College (Queensboro) Higher Education Officer 113850.66667 6.831040e+06 0.00 0.000000e+00 0.000 0.00 60 0.000000e+00 0.00 6.831040e+06 6.831040e+06 0.00 NULL
2017 Community College (Queensboro) Higher Education Officer/Asst Administrator 136954.00000 1.369540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.369540e+05 1.369540e+05 0.00 NULL
2017 Community College (Queensboro) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Queensboro) It Assistant 29137.00000 5.827400e+04 18.21 9.105000e+00 9.105 0.00 2 9.105000e+00 18.21 5.829221e+04 5.829221e+04 0.00 NULL
2017 Community College (Queensboro) It Associate 68336.00000 5.466880e+05 3744.40 4.680500e+02 13.125 106.00 8 1.312500e+01 105.00 5.504324e+05 5.467930e+05 3639.40 NULL
2017 Community College (Queensboro) It Senior Associate 95137.33333 8.562360e+05 23411.57 2.601286e+03 3.790 306.25 9 3.790000e+00 34.11 8.796476e+05 8.562701e+05 23377.46 NULL
2017 Community College (Queensboro) It Support Assistant 14248.42512 2.992169e+05 3006.10 1.431476e+02 0.000 134.50 21 0.000000e+00 0.00 3.022230e+05 2.992169e+05 3006.10 NULL
2017 Community College (Queensboro) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 220 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Queensboro) Lecturer/Doctoral Schedule 74535.50000 4.472130e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.472130e+05 4.472130e+05 0.00 NULL
2017 Community College (Queensboro) Locksmith NA NA 2486.40 2.486400e+03 2486.400 72.00 1 2.486400e+03 2486.40 NA NA NA NULL
2017 Community College (Queensboro) Mail/Message Services Worker 36678.66667 1.100360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.100360e+05 1.100360e+05 0.00 NULL
2017 Community College (Queensboro) Maintenance Worker NA NA 99908.26 1.110092e+04 0.000 2431.00 9 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Queensboro) Motor Vehicle Operator 43748.00000 1.312440e+05 8813.09 2.937697e+03 3900.840 205.25 3 2.937697e+03 8813.09 1.400571e+05 1.400571e+05 0.00 NULL
2017 Community College (Queensboro) Non-Teaching Adjunct I 2844.70363 1.024093e+06 0.00 0.000000e+00 0.000 0.00 360 0.000000e+00 0.00 1.024093e+06 1.024093e+06 0.00 NULL
2017 Community College (Queensboro) Non-Teaching Adjunct Ii 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2017 Community College (Queensboro) Non-Teaching Adjunct Iii 3877.34932 8.530168e+04 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 8.530168e+04 8.530168e+04 0.00 NULL
2017 Community College (Queensboro) Non-Teaching Adjunct Iv 506.68182 5.573500e+03 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.573500e+03 5.573500e+03 0.00 NULL
2017 Community College (Queensboro) Non-Teaching Adjunct V 172.13500 1.721350e+03 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.721350e+03 1.721350e+03 0.00 NULL
2017 Community College (Queensboro) Oiler NA NA 25168.59 6.292148e+03 949.750 258.00 4 9.497500e+02 3799.00 NA NA NA NULL
2017 Community College (Queensboro) Painter NA NA 88693.92 4.434696e+04 44346.960 1256.25 2 4.434696e+04 88693.92 NA NA NA NULL
2017 Community College (Queensboro) Plumber NA NA 14820.68 1.482068e+04 14820.680 143.50 1 1.482068e+04 14820.68 NA NA NA NULL
2017 Community College (Queensboro) President 215000.00000 2.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.150000e+05 2.150000e+05 0.00 NULL
2017 Community College (Queensboro) Professor NA NA 0.00 0.000000e+00 0.000 0.00 159 0.000000e+00 0.00 NA NA NA NULL
2017 Community College (Queensboro) Senior College Lab Tech 67231.75000 1.882489e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 1.882489e+06 1.882489e+06 0.00 NULL
2017 Community College (Queensboro) Senior Custodial Supervisor 38777.00000 7.755400e+04 69748.56 3.487428e+04 34874.280 1969.50 2 3.487428e+04 69748.56 1.473026e+05 1.473026e+05 0.00 NULL
2017 Community College (Queensboro) Senior Registrar 118703.00000 1.187030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.187030e+05 1.187030e+05 0.00 NULL
2017 Community College (Queensboro) Senior Stationary Engineer NA NA 37300.71 3.730071e+04 37300.710 183.50 1 3.730071e+04 37300.71 NA NA NA NULL
2017 Community College (Queensboro) Senior Vice President 199500.00000 1.995000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.995000e+05 1.995000e+05 0.00 NULL
2017 Community College (Queensboro) Sr College Laboratory Tech 4665.86500 6.065625e+04 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 6.065625e+04 6.065625e+04 0.00 NULL
2017 Community College (Queensboro) Staff Nurse 35488.92000 1.419557e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.419557e+05 1.419557e+05 0.00 NULL
2017 Community College (Queensboro) Stationary Engineer NA NA 264281.75 2.936464e+04 31880.010 1703.07 9 2.936464e+04 264281.75 NA NA NA NULL
2017 Community College (Queensboro) Stock Worker 33735.00000 3.373500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.373500e+04 3.373500e+04 0.00 NULL
2017 Community College (Queensboro) Supervisor Of Stock Workers 56785.00000 5.678500e+04 4.00 4.000000e+00 4.000 0.00 1 4.000000e+00 4.00 5.678900e+04 5.678900e+04 0.00 NULL
2017 Community College (Queensboro) Thermostat Repairer NA NA 44203.84 4.420384e+04 44203.840 406.50 1 4.420384e+04 44203.84 NA NA NA NULL
2017 Community College (Queensboro) University Architect 73025.00000 7.302500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.302500e+04 7.302500e+04 0.00 NULL
2017 Community College (Queensboro) University Engineer 96928.00000 9.692800e+04 32.38 3.238000e+01 32.380 0.00 1 3.238000e+01 32.38 9.696038e+04 9.696038e+04 0.00 NULL
2017 Community College (Queensboro) Vice President 172000.00000 1.376000e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.376000e+06 1.376000e+06 0.00 NULL
2017 Community College (Queensboro) NA 60593.00000 1.211860e+05 33657.64 1.682882e+04 16828.820 580.50 2 1.682882e+04 33657.64 1.548436e+05 1.548436e+05 0.00 NULL
2017 Conflicts Of Interest Board Administrative Staff Analyst 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2017 Conflicts Of Interest Board Agency Attorney 78258.66667 4.695520e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.695520e+05 4.695520e+05 0.00 NULL
2017 Conflicts Of Interest Board Agency Chief Contracting Officer 121151.00000 1.211510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.211510e+05 1.211510e+05 0.00 NULL
2017 Conflicts Of Interest Board Community Associate 49738.75000 1.989550e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.989550e+05 1.989550e+05 0.00 NULL
2017 Conflicts Of Interest Board Community Coordinator 60770.00000 6.077000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.077000e+04 6.077000e+04 0.00 NULL
2017 Conflicts Of Interest Board Computer Operations Manager 118300.00000 1.183000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.183000e+05 1.183000e+05 0.00 NULL
2017 Conflicts Of Interest Board Confidential Investigator 62043.00000 1.861290e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.861290e+05 1.861290e+05 0.00 NULL
2017 Conflicts Of Interest Board Counsel 208273.00000 2.082730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.082730e+05 2.082730e+05 0.00 NULL
2017 Conflicts Of Interest Board Executive Agency Counsel 145323.12500 1.162585e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.162585e+06 1.162585e+06 0.00 NULL
2017 Conflicts Of Interest Board It Service Management Specialist 103422.00000 1.034220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.034220e+05 1.034220e+05 0.00 NULL
2017 Conflicts Of Interest Board Principal Administrative Associate 56172.00000 1.123440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.123440e+05 1.123440e+05 0.00 NULL
2017 Conflicts Of Interest Board Secretary To Conflicts Of Interest Board 56650.00000 5.665000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.665000e+04 5.665000e+04 0.00 NULL
2017 Consumer Affairs Adm Manager-Non-Mgrl 66964.50000 1.339290e+05 1609.98 8.049900e+02 804.990 24.50 2 8.049900e+02 1609.98 1.355390e+05 1.355390e+05 0.00 NULL
2017 Consumer Affairs Admin Contract Specialist 88902.40000 4.445120e+05 2626.96 5.253920e+02 0.000 33.75 5 0.000000e+00 0.00 4.471390e+05 4.445120e+05 2626.96 NULL
2017 Consumer Affairs Administrative Accountant 115360.00000 1.153600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.153600e+05 1.153600e+05 0.00 NULL
2017 Consumer Affairs Administrative Business Promotion Coordinator 90032.00000 9.003200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.003200e+04 9.003200e+04 0.00 NULL
2017 Consumer Affairs Administrative Director Of Social Services 110854.00000 2.217080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.217080e+05 2.217080e+05 0.00 NULL
2017 Consumer Affairs Administrative Labor Relations Analyst 112750.00000 1.127500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.127500e+05 1.127500e+05 0.00 NULL
2017 Consumer Affairs Administrative Procurement Analyst 83738.00000 8.373800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.373800e+04 8.373800e+04 0.00 NULL
2017 Consumer Affairs Administrative Public Information Specialist 83775.00000 1.675500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.675500e+05 1.675500e+05 0.00 NULL
2017 Consumer Affairs Administrative Staff Analyst 112203.81818 1.234242e+06 6501.40 5.910364e+02 0.000 159.00 11 0.000000e+00 0.00 1.240743e+06 1.234242e+06 6501.40 NULL
2017 Consumer Affairs Agency Attorney 79286.18182 2.616444e+06 3754.20 1.137636e+02 0.000 57.00 33 0.000000e+00 0.00 2.620198e+06 2.616444e+06 3754.20 NULL
2017 Consumer Affairs Agency Attorney Interne 65237.50000 2.609500e+05 9341.62 2.335405e+03 683.020 213.00 4 6.830200e+02 2732.08 2.702916e+05 2.636821e+05 6609.54 NULL
2017 Consumer Affairs Associate Inspector 71304.05263 1.354777e+06 9807.48 5.161832e+02 0.000 185.75 19 0.000000e+00 0.00 1.364584e+06 1.354777e+06 9807.48 NULL
2017 Consumer Affairs Attorney At Law 82552.00000 8.255200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.255200e+04 8.255200e+04 0.00 NULL
2017 Consumer Affairs Bookkeeper 42000.00000 4.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.200000e+04 4.200000e+04 0.00 NULL
2017 Consumer Affairs Business Promotion Coordinator 40000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2017 Consumer Affairs Certified It Administrator 87731.00000 8.773100e+04 1449.59 1.449590e+03 1449.590 27.00 1 1.449590e+03 1449.59 8.918059e+04 8.918059e+04 0.00 NULL
2017 Consumer Affairs City Research Scientist 91715.00000 3.668600e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.668600e+05 3.668600e+05 0.00 NULL
2017 Consumer Affairs Clerical Associate 40001.96429 2.240110e+06 44774.84 7.995507e+02 0.000 1513.00 56 0.000000e+00 0.00 2.284885e+06 2.240110e+06 44774.84 NULL
2017 Consumer Affairs College Aide 3341.46500 3.341465e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.341465e+03 3.341465e+03 0.00 NULL
2017 Consumer Affairs Commissioner 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2017 Consumer Affairs Community Assistant 38062.00000 2.283720e+05 1924.63 3.207717e+02 119.600 66.00 6 1.196000e+02 717.60 2.302966e+05 2.290896e+05 1207.03 NULL
2017 Consumer Affairs Community Associate 45002.20800 5.625276e+06 92728.17 7.418254e+02 24.710 2841.50 125 2.471000e+01 3088.75 5.718004e+06 5.628365e+06 89639.42 NULL
2017 Consumer Affairs Community Coordinator 65255.50877 3.719564e+06 47403.82 8.316460e+02 0.000 967.00 57 0.000000e+00 0.00 3.766968e+06 3.719564e+06 47403.82 NULL
2017 Consumer Affairs Computer Associate 72323.00000 5.785840e+05 2279.12 2.848900e+02 185.805 56.00 8 1.858050e+02 1486.44 5.808631e+05 5.800704e+05 792.68 NULL
2017 Consumer Affairs Computer Programmer Analyst 67250.00000 1.345000e+05 63.42 3.171000e+01 31.710 1.50 2 3.171000e+01 63.42 1.345634e+05 1.345634e+05 0.00 NULL
2017 Consumer Affairs Computer Specialist 104272.22222 9.384500e+05 3378.83 3.754256e+02 0.000 18.25 9 0.000000e+00 0.00 9.418288e+05 9.384500e+05 3378.83 NULL
2017 Consumer Affairs Computer Systems Manager 113189.75000 1.358277e+06 7154.22 5.961850e+02 0.000 32.00 12 0.000000e+00 0.00 1.365431e+06 1.358277e+06 7154.22 NULL
2017 Consumer Affairs Confidential Examiner 92000.00000 9.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.200000e+04 9.200000e+04 0.00 NULL
2017 Consumer Affairs Consumer Advocate 90686.00000 9.068600e+04 864.85 8.648500e+02 864.850 5.00 1 8.648500e+02 864.85 9.155085e+04 9.155085e+04 0.00 NULL
2017 Consumer Affairs Counsel 175100.00000 1.751000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.751000e+05 1.751000e+05 0.00 NULL
2017 Consumer Affairs Customer Information Representative 37262.50000 1.490500e+05 1356.55 3.391375e+02 0.000 58.75 4 0.000000e+00 0.00 1.504065e+05 1.490500e+05 1356.55 NULL
2017 Consumer Affairs Deputy Commissioner 173939.50000 3.478790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.478790e+05 3.478790e+05 0.00 NULL
2017 Consumer Affairs Director Of Bureau Of Consumer Services 85716.00000 8.571600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.571600e+04 8.571600e+04 0.00 NULL
2017 Consumer Affairs Director Of Consumer Information 138020.00000 1.380200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.380200e+05 1.380200e+05 0.00 NULL
2017 Consumer Affairs Executive Agency Counsel 119627.84615 1.555162e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.555162e+06 1.555162e+06 0.00 NULL
2017 Consumer Affairs Executive Assistant To The Commissioner 109592.00000 1.095920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.095920e+05 1.095920e+05 0.00 NULL
2017 Consumer Affairs General Inspector 59846.00000 5.984600e+04 2846.31 2.846310e+03 2846.310 75.50 1 2.846310e+03 2846.31 6.269231e+04 6.269231e+04 0.00 NULL
2017 Consumer Affairs Graphic Artist 54696.50000 1.093930e+05 3128.54 1.564270e+03 1564.270 76.75 2 1.564270e+03 3128.54 1.125215e+05 1.125215e+05 0.00 NULL
2017 Consumer Affairs Inspector 47211.72881 2.785492e+06 43580.02 7.386444e+02 0.000 1158.00 59 0.000000e+00 0.00 2.829072e+06 2.785492e+06 43580.02 NULL
2017 Consumer Affairs Paralegal Aide 55620.00000 5.562000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.562000e+04 5.562000e+04 0.00 NULL
2017 Consumer Affairs Principal Administrative Associate 65136.00000 5.210880e+05 11296.29 1.412036e+03 489.525 266.75 8 4.895250e+02 3916.20 5.323843e+05 5.250042e+05 7380.09 NULL
2017 Consumer Affairs Public Records Aide 41036.00000 4.103600e+04 56.15 5.615000e+01 56.150 2.50 1 5.615000e+01 56.15 4.109215e+04 4.109215e+04 0.00 NULL
2017 Consumer Affairs Research Assistant 46774.14286 3.274190e+05 492.77 7.039571e+01 0.000 17.75 7 0.000000e+00 0.00 3.279118e+05 3.274190e+05 492.77 NULL
2017 Consumer Affairs Secretary 40841.50000 8.168300e+04 1396.69 6.983450e+02 698.345 48.00 2 6.983450e+02 1396.69 8.307969e+04 8.307969e+04 0.00 NULL
2017 Cultural Affairs Adm Manager-Non-Mgrl 69530.00000 1.390600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.390600e+05 1.390600e+05 0.00 NULL
2017 Cultural Affairs Administrative Labor Relations Analyst 127000.00000 1.270000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.270000e+05 1.270000e+05 0.00 NULL
2017 Cultural Affairs Administrative Project Manager 142052.00000 1.420520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.420520e+05 1.420520e+05 0.00 NULL
2017 Cultural Affairs Administrative Staff Analyst 90501.00000 1.810020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.810020e+05 1.810020e+05 0.00 NULL
2017 Cultural Affairs Agency Attorney 86687.50000 1.733750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.733750e+05 1.733750e+05 0.00 NULL
2017 Cultural Affairs Agency Chief Contracting Officer 122438.00000 1.224380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.224380e+05 1.224380e+05 0.00 NULL
2017 Cultural Affairs Arts Program Specialist 50578.60000 2.528930e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.528930e+05 2.528930e+05 0.00 NULL
2017 Cultural Affairs Assistant Commissioner 121767.00000 3.653010e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.653010e+05 3.653010e+05 0.00 NULL
2017 Cultural Affairs Associate Arts Programs Specialist 57395.42451 8.035359e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 8.035359e+05 8.035359e+05 0.00 NULL
2017 Cultural Affairs City Laborer 53034.26250 1.060685e+05 267.38 1.336900e+02 133.690 5.50 2 1.336900e+02 267.38 1.063359e+05 1.063359e+05 0.00 NULL
2017 Cultural Affairs Commissioner Of Cultural Affairs 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2017 Cultural Affairs Community Assistant 37487.53310 3.748753e+04 55.72 5.572000e+01 55.720 2.98 1 5.572000e+01 55.72 3.754325e+04 3.754325e+04 0.00 NULL
2017 Cultural Affairs Community Associate 39415.80994 7.489004e+05 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 7.489004e+05 7.489004e+05 0.00 NULL
2017 Cultural Affairs Community Coordinator 68236.33357 9.553087e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 9.553087e+05 9.553087e+05 0.00 NULL
2017 Cultural Affairs Computer Associate 89057.00000 8.905700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.905700e+04 8.905700e+04 0.00 NULL
2017 Cultural Affairs Computer Systems Manager 116498.00000 1.164980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.164980e+05 1.164980e+05 0.00 NULL
2017 Cultural Affairs Deputy Commissioner 159308.00000 1.593080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.593080e+05 1.593080e+05 0.00 NULL
2017 Cultural Affairs Executive Agency Counsel 129780.00000 2.595600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.595600e+05 2.595600e+05 0.00 NULL
2017 Cultural Affairs Executive Director Of Materials For The Arts 105907.00000 1.059070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.059070e+05 1.059070e+05 0.00 NULL
2017 Cultural Affairs Secretary To The Commissioner 53701.00000 5.370100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.370100e+04 5.370100e+04 0.00 NULL
2017 Cultural Affairs Staff Analyst 71826.50000 1.436530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.436530e+05 1.436530e+05 0.00 NULL
2017 Cuny Central Office Assistant College Security Director 70000.00000 7.000000e+04 1.58 1.580000e+00 1.580 0.00 1 1.580000e+00 1.58 7.000158e+04 7.000158e+04 0.00 NULL
2017 Cuny Central Office Assistant To Heo 48545.72727 5.340030e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.340030e+05 5.340030e+05 0.00 NULL
2017 Cuny Central Office Campus Peace Officer 44967.00000 8.993400e+04 12334.46 6.167230e+03 6167.230 384.50 2 6.167230e+03 12334.46 1.022685e+05 1.022685e+05 0.00 NULL
2017 Cuny Central Office College Accounting Assistant 46442.00000 4.644200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.644200e+04 4.644200e+04 0.00 NULL
2017 Cuny Central Office Higher Education Assistant 74697.00000 2.240910e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.240910e+05 2.240910e+05 0.00 NULL
2017 Cuny Central Office Higher Education Associate 86085.25000 3.443410e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.443410e+05 3.443410e+05 0.00 NULL
2017 Cuny Central Office Higher Education Officer 112901.50000 2.258030e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.258030e+05 2.258030e+05 0.00 NULL
2017 Cuny Central Office It Assistant 58274.00000 5.827400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.827400e+04 5.827400e+04 0.00 NULL
2017 Cuny Central Office It Support Assistant 40639.00000 4.063900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.063900e+04 4.063900e+04 0.00 NULL
2017 Cuny Central Office Non-Teaching Adjunct I 1766.31875 3.532637e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.532637e+03 3.532637e+03 0.00 NULL
2017 Department For The Aging Accountant 61620.50000 1.232410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.232410e+05 1.232410e+05 0.00 NULL
2017 Department For The Aging Adm Manager-Non-Mgrl 73903.00000 7.390300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.390300e+04 7.390300e+04 0.00 NULL
2017 Department For The Aging Administrative Program Officer 102845.81633 3.085374e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 3.085374e+06 3.085374e+06 0.00 NULL
2017 Department For The Aging Administrative Accountant 111757.00000 1.117570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.117570e+05 1.117570e+05 0.00 NULL
2017 Department For The Aging Administrative Director Of Social Services 98119.00000 9.811900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.811900e+04 9.811900e+04 0.00 NULL
2017 Department For The Aging Administrative Procurement Analyst 97014.00000 9.701400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.701400e+04 9.701400e+04 0.00 NULL
2017 Department For The Aging Administrative Project Manager 108278.00000 1.082780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.082780e+05 1.082780e+05 0.00 NULL
2017 Department For The Aging Administrative Public Information Specialist 76200.00000 1.524000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.524000e+05 1.524000e+05 0.00 NULL
2017 Department For The Aging Administrative Staff Analyst 109721.92857 3.072214e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 3.072214e+06 3.072214e+06 0.00 NULL
2017 Department For The Aging Agency Chief Contracting Officer 137499.50000 2.749990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.749990e+05 2.749990e+05 0.00 NULL
2017 Department For The Aging Architect 72768.00000 1.455360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.455360e+05 1.455360e+05 0.00 NULL
2017 Department For The Aging Associate Staff Analyst 86564.12500 6.925130e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.925130e+05 6.925130e+05 0.00 NULL
2017 Department For The Aging Attorney At Law 88289.00000 8.828900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.828900e+04 8.828900e+04 0.00 NULL
2017 Department For The Aging Bookkeeper 59182.50000 1.183650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.183650e+05 1.183650e+05 0.00 NULL
2017 Department For The Aging Certified It Administrator 87731.00000 8.773100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.773100e+04 8.773100e+04 0.00 NULL
2017 Department For The Aging City Custodial Assistant 39857.00000 3.985700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.985700e+04 3.985700e+04 0.00 NULL
2017 Department For The Aging Clerical Associate 41551.79300 2.493108e+05 77.76 1.296000e+01 0.000 4.50 6 0.000000e+00 0.00 2.493885e+05 2.493108e+05 77.76 NULL
2017 Department For The Aging College Aide 1818.12500 5.454375e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.454375e+03 5.454375e+03 0.00 NULL
2017 Department For The Aging Commissioner 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2017 Department For The Aging Community Assistant 31403.05945 3.768367e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 3.768367e+05 3.768367e+05 0.00 NULL
2017 Department For The Aging Community Associate 47927.63181 2.060888e+06 12215.37 2.840784e+02 0.000 323.25 43 0.000000e+00 0.00 2.073104e+06 2.060888e+06 12215.37 NULL
2017 Department For The Aging Community Coordinator 63148.12188 3.599443e+06 1103.50 1.935965e+01 0.000 27.75 57 0.000000e+00 0.00 3.600546e+06 3.599443e+06 1103.50 NULL
2017 Department For The Aging Community Service Aide 6470.93538 3.429596e+06 0.00 0.000000e+00 0.000 0.00 530 0.000000e+00 0.00 3.429596e+06 3.429596e+06 0.00 NULL
2017 Department For The Aging Computer Associate 72424.38375 4.345463e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.345463e+05 4.345463e+05 0.00 NULL
2017 Department For The Aging Computer Operations Manager 98299.95000 9.829995e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.829995e+04 9.829995e+04 0.00 NULL
2017 Department For The Aging Computer Specialist 91338.40000 9.133840e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 9.133840e+05 9.133840e+05 0.00 NULL
2017 Department For The Aging Computer Systems Manager 145817.00000 2.916340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.916340e+05 2.916340e+05 0.00 NULL
2017 Department For The Aging Counsel 171469.00000 1.714690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.714690e+05 1.714690e+05 0.00 NULL
2017 Department For The Aging Deputy Commissioner 170586.00000 1.705860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.705860e+05 1.705860e+05 0.00 NULL
2017 Department For The Aging Director Of Administration 165933.00000 3.318660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.318660e+05 3.318660e+05 0.00 NULL
2017 Department For The Aging Director Of Community Programs 136661.00000 1.366610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.366610e+05 1.366610e+05 0.00 NULL
2017 Department For The Aging Director Of Direct Service Programs 155317.00000 1.553170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.553170e+05 1.553170e+05 0.00 NULL
2017 Department For The Aging Executive Agency Counsel 121054.00000 2.421080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.421080e+05 2.421080e+05 0.00 NULL
2017 Department For The Aging Foster Grandparent 2459.75834 9.543862e+05 0.00 0.000000e+00 0.000 0.00 388 0.000000e+00 0.00 9.543862e+05 9.543862e+05 0.00 NULL
2017 Department For The Aging Housing Development Specialist 61104.00000 6.110400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.110400e+04 6.110400e+04 0.00 NULL
2017 Department For The Aging Management Auditor 70266.07692 9.134590e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 9.134590e+05 9.134590e+05 0.00 NULL
2017 Department For The Aging Nutrition Consultant 66251.92308 8.612750e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 8.612750e+05 8.612750e+05 0.00 NULL
2017 Department For The Aging Photographer 26766.49500 2.676649e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.676649e+04 2.676649e+04 0.00 NULL
2017 Department For The Aging Principal Administrative Associate 58953.25000 1.179065e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.179065e+06 1.179065e+06 0.00 NULL
2017 Department For The Aging Principal Nutrition Consultant 78446.00000 1.568920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.568920e+05 1.568920e+05 0.00 NULL
2017 Department For The Aging Procurement Analyst 61714.50000 1.234290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.234290e+05 1.234290e+05 0.00 NULL
2017 Department For The Aging Program Officer 67059.24933 2.883548e+06 931.61 2.166535e+01 0.000 20.75 43 0.000000e+00 0.00 2.884479e+06 2.883548e+06 931.61 NULL
2017 Department For The Aging Secretary 42023.44500 3.361876e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 3.361876e+05 3.361876e+05 0.00 NULL
2017 Department For The Aging Space Analyst 73130.00000 7.313000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.313000e+04 7.313000e+04 0.00 NULL
2017 Department For The Aging Summer College Intern 2141.50000 1.284900e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.284900e+04 1.284900e+04 0.00 NULL
2017 Department For The Aging Summer Graduate Intern 2757.53333 8.272600e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 8.272600e+03 8.272600e+03 0.00 NULL
2017 Department For The Aging Supervising Computer Service Technician 63661.52500 1.273231e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.273231e+05 1.273231e+05 0.00 NULL
2017 Department For The Aging Supervisor Ii 79399.00000 1.587980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.587980e+05 1.587980e+05 0.00 NULL
2017 Department For The Aging Supervisor Iii 72328.49593 4.339710e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.339710e+05 4.339710e+05 0.00 NULL
2017 Department Of Buildings Accountant 61800.00000 6.180000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.180000e+04 6.180000e+04 0.00 NULL
2017 Department Of Buildings Adm Manager-Non-Mgrl 75646.67347 3.706687e+06 192701.07 3.932675e+03 1463.060 3649.00 49 1.463060e+03 71689.94 3.899388e+06 3.778377e+06 121011.13 NULL
2017 Department Of Buildings Admin Community Relations Specialist 97429.85714 1.364018e+06 35774.24 2.555303e+03 0.000 573.25 14 0.000000e+00 0.00 1.399792e+06 1.364018e+06 35774.24 NULL
2017 Department Of Buildings Admin Inspector 101441.00000 3.651876e+06 461741.80 1.282616e+04 7568.835 6226.25 36 7.568835e+03 272478.06 4.113618e+06 3.924354e+06 189263.74 NULL
2017 Department Of Buildings Administration Public Record Officer 86177.50000 1.723550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.723550e+05 1.723550e+05 0.00 NULL
2017 Department Of Buildings Administrative Architect 126492.06897 3.668270e+06 214592.90 7.399755e+03 0.000 2420.50 29 0.000000e+00 0.00 3.882863e+06 3.668270e+06 214592.90 NULL
2017 Department Of Buildings Administrative Borough Superintendent 125480.10000 1.254801e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.254801e+06 1.254801e+06 0.00 NULL
2017 Department Of Buildings Administrative Business Promotion Coordinator 126690.00000 1.266900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.266900e+05 1.266900e+05 0.00 NULL
2017 Department Of Buildings Administrative City Planner 98715.20000 4.935760e+05 45070.06 9.014012e+03 0.000 618.50 5 0.000000e+00 0.00 5.386461e+05 4.935760e+05 45070.06 NULL
2017 Department Of Buildings Administrative Engineer 121233.34783 5.576734e+06 198755.58 4.320773e+03 0.000 3070.25 46 0.000000e+00 0.00 5.775490e+06 5.576734e+06 198755.58 NULL
2017 Department Of Buildings Administrative Inspector 135110.76923 1.756440e+06 7153.00 5.502308e+02 0.000 40.00 13 0.000000e+00 0.00 1.763593e+06 1.756440e+06 7153.00 NULL
2017 Department Of Buildings Administrative Investigator 108279.33333 3.248380e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.248380e+05 3.248380e+05 0.00 NULL
2017 Department Of Buildings Administrative Management Auditor 69626.00000 1.392520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.392520e+05 1.392520e+05 0.00 NULL
2017 Department Of Buildings Administrative Manager 108271.00000 1.082710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.082710e+05 1.082710e+05 0.00 NULL
2017 Department Of Buildings Administrative Procurement Analyst 102162.00000 1.021620e+05 855.05 8.550500e+02 855.050 16.25 1 8.550500e+02 855.05 1.030171e+05 1.030171e+05 0.00 NULL
2017 Department Of Buildings Administrative Project Manager 126435.50000 5.057420e+05 15380.50 3.845125e+03 3153.975 194.50 4 3.153975e+03 12615.90 5.211225e+05 5.183579e+05 2764.60 NULL
2017 Department Of Buildings Administrative Public Information Specialist 143740.50000 5.749620e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.749620e+05 5.749620e+05 0.00 NULL
2017 Department Of Buildings Administrative Staff Analyst 108393.09302 4.660903e+06 71564.03 1.664280e+03 0.000 1050.00 43 0.000000e+00 0.00 4.732467e+06 4.660903e+06 71564.03 NULL
2017 Department Of Buildings Agency Attorney 77757.11111 2.799256e+06 14413.90 4.003861e+02 0.000 255.00 36 0.000000e+00 0.00 2.813670e+06 2.799256e+06 14413.90 NULL
2017 Department Of Buildings Agency Attorney Interne 64291.25000 2.571650e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.571650e+05 2.571650e+05 0.00 NULL
2017 Department Of Buildings Agency Chief Contracting Officer 118095.00000 1.180950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.180950e+05 1.180950e+05 0.00 NULL
2017 Department Of Buildings Architect 87899.38095 1.845887e+06 142277.00 6.775095e+03 2537.370 2081.00 21 2.537370e+03 53284.77 1.988164e+06 1.899172e+06 88992.23 NULL
2017 Department Of Buildings Assistant Architect 73866.12500 1.181858e+06 59731.16 3.733198e+03 8.890 1010.50 16 8.890000e+00 142.24 1.241589e+06 1.182000e+06 59588.92 NULL
2017 Department Of Buildings Assistant Civil Engineer 72239.83333 4.334390e+05 14299.40 2.383233e+03 1181.950 282.00 6 1.181950e+03 7091.70 4.477384e+05 4.405307e+05 7207.70 NULL
2017 Department Of Buildings Assistant Commissioner For Labor Relations & Admin 174804.00000 1.748040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.748040e+05 1.748040e+05 0.00 NULL
2017 Department Of Buildings Assistant Electrical Engineer 74390.00000 2.231700e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.231700e+05 2.231700e+05 0.00 NULL
2017 Department Of Buildings Assistant Mechanical Engineer 43229.66000 8.645932e+04 28223.58 1.411179e+04 14111.790 411.00 2 1.411179e+04 28223.58 1.146829e+05 1.146829e+05 0.00 NULL
2017 Department Of Buildings Assistant Plan Examiner 68329.80745 1.100110e+07 233280.80 1.448949e+03 204.580 4841.75 161 2.045800e+02 32937.38 1.123438e+07 1.103404e+07 200343.42 NULL
2017 Department Of Buildings Associate Commissioner 174539.00000 1.745390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.745390e+05 1.745390e+05 0.00 NULL
2017 Department Of Buildings Associate Inspector 76345.34850 1.274967e+07 2931588.56 1.755442e+04 11788.170 50801.00 167 1.178817e+04 1968624.39 1.568126e+07 1.471830e+07 962964.17 NULL
2017 Department Of Buildings Associate Investigator 65593.33333 1.967800e+05 45797.38 1.526579e+04 1543.170 1595.75 3 1.543170e+03 4629.51 2.425774e+05 2.014095e+05 41167.87 NULL
2017 Department Of Buildings Associate Labor Relations Analyst 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2017 Department Of Buildings Associate Project Manager 89750.42857 6.282530e+05 25425.01 3.632144e+03 323.300 475.50 7 3.233000e+02 2263.10 6.536780e+05 6.305161e+05 23161.91 NULL
2017 Department Of Buildings Associate Staff Analyst 76759.22222 6.908330e+05 2804.98 3.116644e+02 0.000 49.00 9 0.000000e+00 0.00 6.936380e+05 6.908330e+05 2804.98 NULL
2017 Department Of Buildings Business Promotion Coordinator 80556.00000 6.444480e+05 12363.18 1.545398e+03 513.610 221.00 8 5.136100e+02 4108.88 6.568112e+05 6.485569e+05 8254.30 NULL
2017 Department Of Buildings Certified It Administrator 92309.50000 3.692380e+05 11481.14 2.870285e+03 860.955 170.50 4 8.609550e+02 3443.82 3.807191e+05 3.726818e+05 8037.32 NULL
2017 Department Of Buildings Chief Asset Management Officer 151747.00000 1.517470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.517470e+05 1.517470e+05 0.00 NULL
2017 Department Of Buildings Chief Of Staff 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2017 Department Of Buildings City Planning Technician 54590.00000 5.459000e+04 240.28 2.402800e+02 240.280 8.25 1 2.402800e+02 240.28 5.483028e+04 5.483028e+04 0.00 NULL
2017 Department Of Buildings Civil Engineer 96465.87500 1.543454e+06 264505.69 1.653161e+04 2518.645 3256.50 16 2.518645e+03 40298.32 1.807960e+06 1.583752e+06 224207.37 NULL
2017 Department Of Buildings Civil Engineering Intern 52851.58444 4.756643e+05 2912.74 3.236378e+02 0.000 86.25 9 0.000000e+00 0.00 4.785770e+05 4.756643e+05 2912.74 NULL
2017 Department Of Buildings Clerical Associate 43349.95034 8.800040e+06 312065.78 1.537270e+03 0.000 9114.25 203 0.000000e+00 0.00 9.112106e+06 8.800040e+06 312065.78 NULL
2017 Department Of Buildings College Aide 7148.92052 6.005093e+05 0.00 0.000000e+00 0.000 0.00 84 0.000000e+00 0.00 6.005093e+05 6.005093e+05 0.00 NULL
2017 Department Of Buildings College Aide - Assignment Levels Ii And Iii 10708.37131 5.354186e+04 4532.62 9.065240e+02 93.150 127.25 5 9.315000e+01 465.75 5.807448e+04 5.400761e+04 4066.87 NULL
2017 Department Of Buildings Commissioner Of Buildings 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2017 Department Of Buildings Community Assistant 34418.80000 3.441880e+05 5980.87 5.980870e+02 67.325 242.25 10 6.732500e+01 673.25 3.501689e+05 3.448612e+05 5307.62 NULL
2017 Department Of Buildings Community Associate 44342.20924 1.463293e+06 180685.08 5.475305e+03 551.250 6471.90 33 5.512500e+02 18191.25 1.643978e+06 1.481484e+06 162493.83 NULL
2017 Department Of Buildings Community Coordinator 66458.28261 3.057081e+06 204928.16 4.454960e+03 620.155 4432.25 46 6.201550e+02 28527.13 3.262009e+06 3.085608e+06 176401.03 NULL
2017 Department Of Buildings Computer Associate 78692.55556 7.082330e+05 17539.31 1.948812e+03 0.000 385.50 9 0.000000e+00 0.00 7.257723e+05 7.082330e+05 17539.31 NULL
2017 Department Of Buildings Computer Service Technician 61334.00000 6.133400e+04 2907.07 2.907070e+03 2907.070 95.25 1 2.907070e+03 2907.07 6.424107e+04 6.424107e+04 0.00 NULL
2017 Department Of Buildings Computer Specialist 104853.23077 1.363092e+06 14689.29 1.129945e+03 0.000 193.25 13 0.000000e+00 0.00 1.377781e+06 1.363092e+06 14689.29 NULL
2017 Department Of Buildings Computer Systems Manager 110498.64000 2.762466e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 2.762466e+06 2.762466e+06 0.00 NULL
2017 Department Of Buildings Deputy Commissioner 198243.00000 3.964860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.964860e+05 3.964860e+05 0.00 NULL
2017 Department Of Buildings Director Nyc Loft Board 126734.00000 1.267340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.267340e+05 1.267340e+05 0.00 NULL
2017 Department Of Buildings Electrical Engineer 109710.00000 1.097100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.097100e+05 1.097100e+05 0.00 NULL
2017 Department Of Buildings Electrical Engineering Intern 21504.38360 2.150438e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.150438e+04 2.150438e+04 0.00 NULL
2017 Department Of Buildings Engineering Technician 3441.46500 3.441465e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.441465e+03 3.441465e+03 0.00 NULL
2017 Department Of Buildings Estimator 64267.33333 1.928020e+05 5459.76 1.819920e+03 1114.190 91.25 3 1.114190e+03 3342.57 1.982618e+05 1.961446e+05 2117.19 NULL
2017 Department Of Buildings Executive Agency Counsel 128893.43750 2.062295e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.062295e+06 2.062295e+06 0.00 NULL
2017 Department Of Buildings Executive Assistant 76493.00000 1.529860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.529860e+05 1.529860e+05 0.00 NULL
2017 Department Of Buildings Executive Director Of Professional Development 128072.00000 1.280720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.280720e+05 1.280720e+05 0.00 NULL
2017 Department Of Buildings Executive Director, New York City Loft Board 148526.00000 1.485260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.485260e+05 1.485260e+05 0.00 NULL
2017 Department Of Buildings Inspector 62704.12399 2.326323e+07 2033499.87 5.481132e+03 764.000 45769.66 371 7.640000e+02 283444.00 2.529673e+07 2.354667e+07 1750055.87 NULL
2017 Department Of Buildings Investigator 42961.00000 1.718440e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.718440e+05 1.718440e+05 0.00 NULL
2017 Department Of Buildings Investigator Empl Disc 53450.73863 1.656973e+06 71388.78 2.302864e+03 191.570 1721.00 31 1.915700e+02 5938.67 1.728362e+06 1.662912e+06 65450.11 NULL
2017 Department Of Buildings Labor Relations Analyst 42847.33320 4.284733e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.284733e+04 4.284733e+04 0.00 NULL
2017 Department Of Buildings Mechanical Engineer 91082.28571 6.375760e+05 34265.46 4.895066e+03 0.000 410.75 7 0.000000e+00 0.00 6.718415e+05 6.375760e+05 34265.46 NULL
2017 Department Of Buildings Mechanical Engineering Intern 13203.26730 2.640653e+04 30.13 1.506500e+01 15.065 1.00 2 1.506500e+01 30.13 2.643666e+04 2.643666e+04 0.00 NULL
2017 Department Of Buildings Multiple Dwelling Specialist 67944.80000 3.397240e+05 9572.88 1.914576e+03 240.500 152.75 5 2.405000e+02 1202.50 3.492969e+05 3.409265e+05 8370.38 NULL
2017 Department Of Buildings Plan Examiner 83344.36111 3.000397e+06 149174.08 4.143724e+03 1419.475 2387.25 36 1.419475e+03 51101.10 3.149571e+06 3.051498e+06 98072.98 NULL
2017 Department Of Buildings Principal Administrative Associate 62709.40839 3.887983e+06 128554.29 2.073456e+03 0.000 2990.90 62 0.000000e+00 0.00 4.016538e+06 3.887983e+06 128554.29 NULL
2017 Department Of Buildings Principal Multiple Dwelling Specialist 94975.33333 2.849260e+05 11606.64 3.868880e+03 3514.950 175.00 3 3.514950e+03 10544.85 2.965326e+05 2.954708e+05 1061.79 NULL
2017 Department Of Buildings Procurement Analyst 83598.00000 1.671960e+05 1868.82 9.344100e+02 934.410 34.75 2 9.344100e+02 1868.82 1.690648e+05 1.690648e+05 0.00 NULL
2017 Department Of Buildings Public Records Aide 42104.50000 1.684180e+05 34.68 8.670000e+00 0.000 0.00 4 0.000000e+00 0.00 1.684527e+05 1.684180e+05 34.68 NULL
2017 Department Of Buildings Research Assistant 47755.00000 4.775500e+04 177.13 1.771300e+02 177.130 0.00 1 1.771300e+02 177.13 4.793213e+04 4.793213e+04 0.00 NULL
2017 Department Of Buildings Secretary 47883.00000 6.703620e+05 45944.79 3.281771e+03 78.210 1182.50 14 7.821000e+01 1094.94 7.163068e+05 6.714569e+05 44849.85 NULL
2017 Department Of Buildings Secretary To Department 115000.00000 1.150000e+05 13493.01 1.349301e+04 13493.010 207.50 1 1.349301e+04 13493.01 1.284930e+05 1.284930e+05 0.00 NULL
2017 Department Of Buildings Secretary To The Commissioner Of Bldgs 96323.00000 9.632300e+04 332.72 3.327200e+02 332.720 6.50 1 3.327200e+02 332.72 9.665572e+04 9.665572e+04 0.00 NULL
2017 Department Of Buildings Senior Estimator 82746.00000 8.274600e+04 1408.65 1.408650e+03 1408.650 26.00 1 1.408650e+03 1408.65 8.415465e+04 8.415465e+04 0.00 NULL
2017 Department Of Buildings Space Analyst 57953.10000 1.159062e+05 1293.33 6.466650e+02 646.665 27.25 2 6.466650e+02 1293.33 1.171995e+05 1.171995e+05 0.00 NULL
2017 Department Of Buildings Staff Analyst 64562.11111 5.810590e+05 18605.50 2.067278e+03 0.000 347.75 9 0.000000e+00 0.00 5.996645e+05 5.810590e+05 18605.50 NULL
2017 Department Of Buildings Statistician 46083.01875 9.216604e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.216604e+04 9.216604e+04 0.00 NULL
2017 Department Of Buildings Stock Worker 41686.00000 4.168600e+04 1057.25 1.057250e+03 1057.250 42.75 1 1.057250e+03 1057.25 4.274325e+04 4.274325e+04 0.00 NULL
2017 Department Of Buildings Strategic Initiative Specialist 137262.00000 2.745240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.745240e+05 2.745240e+05 0.00 NULL
2017 Department Of Buildings Summer College Intern 1960.16091 2.156177e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 2.156177e+04 2.156177e+04 0.00 NULL
2017 Department Of Buildings Summer Graduate Intern 3288.13500 3.616949e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 3.616949e+04 3.616949e+04 0.00 NULL
2017 Department Of Business Serv. Adm Manager-Non-Mgrl 82675.52000 1.074782e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.074782e+06 1.074782e+06 0.00 NULL
2017 Department Of Business Serv. Admin Contract Specialist 94937.00000 5.696220e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.696220e+05 5.696220e+05 0.00 NULL
2017 Department Of Business Serv. Administrative Architect 138343.00000 1.383430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.383430e+05 1.383430e+05 0.00 NULL
2017 Department Of Business Serv. Administrative Business Promotion Coordinator 91672.57143 5.133664e+06 0.00 0.000000e+00 0.000 0.00 56 0.000000e+00 0.00 5.133664e+06 5.133664e+06 0.00 NULL
2017 Department Of Business Serv. Administrative Manager 114724.00000 1.147240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.147240e+05 1.147240e+05 0.00 NULL
2017 Department Of Business Serv. Administrative Procurement Analyst 104003.00000 1.040030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.040030e+05 1.040030e+05 0.00 NULL
2017 Department Of Business Serv. Administrative Public Information Specialist 99300.00000 1.986000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.986000e+05 1.986000e+05 0.00 NULL
2017 Department Of Business Serv. Administrative Space Analyst 104018.00000 1.040180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.040180e+05 1.040180e+05 0.00 NULL
2017 Department Of Business Serv. Administrative Staff Analyst 101116.16667 6.066970e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.066970e+05 6.066970e+05 0.00 NULL
2017 Department Of Business Serv. Agency Attorney 82208.60000 4.110430e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.110430e+05 4.110430e+05 0.00 NULL
2017 Department Of Business Serv. Agency Chief Contracting Officer 133013.00000 1.330130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.330130e+05 1.330130e+05 0.00 NULL
2017 Department Of Business Serv. Assistant Commissioner 128651.00000 1.543812e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.543812e+06 1.543812e+06 0.00 NULL
2017 Department Of Business Serv. Associate Contract Specialist 68002.19829 4.760154e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.760154e+05 4.760154e+05 0.00 NULL
2017 Department Of Business Serv. Associate Staff Analyst 83209.33333 4.992560e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.992560e+05 4.992560e+05 0.00 NULL
2017 Department Of Business Serv. Business Promotion Coordinator 58282.32483 5.886515e+06 12912.68 1.278483e+02 0.000 340.50 101 0.000000e+00 0.00 5.899427e+06 5.886515e+06 12912.68 NULL
2017 Department Of Business Serv. Certified It Developer 110687.00000 1.106870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.106870e+05 1.106870e+05 0.00 NULL
2017 Department Of Business Serv. City Custodial Assistant 32910.21300 3.291021e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.291021e+04 3.291021e+04 0.00 NULL
2017 Department Of Business Serv. Clerical Associate 46291.35714 3.240395e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.240395e+05 3.240395e+05 0.00 NULL
2017 Department Of Business Serv. College Aide 4731.06875 1.892428e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.892428e+04 1.892428e+04 0.00 NULL
2017 Department Of Business Serv. Commissioner Of Business Services 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2017 Department Of Business Serv. Community Assistant 16402.45833 9.841475e+04 5750.45 9.584083e+02 392.450 277.25 6 3.924500e+02 2354.70 1.041652e+05 1.007694e+05 3395.75 NULL
2017 Department Of Business Serv. Community Associate 32273.64971 1.161851e+06 45978.30 1.277175e+03 0.000 1402.50 36 0.000000e+00 0.00 1.207830e+06 1.161851e+06 45978.30 NULL
2017 Department Of Business Serv. Community Coordinator 62580.12253 1.376763e+06 36.36 1.652727e+00 0.000 1.00 22 0.000000e+00 0.00 1.376799e+06 1.376763e+06 36.36 NULL
2017 Department Of Business Serv. Computer Associate 83062.33333 2.491870e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.491870e+05 2.491870e+05 0.00 NULL
2017 Department Of Business Serv. Computer Operations Manager 95990.00000 9.599000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.599000e+04 9.599000e+04 0.00 NULL
2017 Department Of Business Serv. Computer Service Technician 47013.02400 4.701302e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.701302e+04 4.701302e+04 0.00 NULL
2017 Department Of Business Serv. Computer Specialist 84017.50000 1.680350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.680350e+05 1.680350e+05 0.00 NULL
2017 Department Of Business Serv. Computer Systems Manager 124035.00000 2.480700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.480700e+05 2.480700e+05 0.00 NULL
2017 Department Of Business Serv. Contract Reviewer 56284.18986 2.138799e+06 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 2.138799e+06 2.138799e+06 0.00 NULL
2017 Department Of Business Serv. Contract Specialist 56322.00000 5.632200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.632200e+04 5.632200e+04 0.00 NULL
2017 Department Of Business Serv. Deputy Commissioner 174239.00000 1.219673e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.219673e+06 1.219673e+06 0.00 NULL
2017 Department Of Business Serv. Executive Agency Counsel 124397.00000 2.487940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.487940e+05 2.487940e+05 0.00 NULL
2017 Department Of Business Serv. Management Auditor 75820.00000 1.516400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.516400e+05 1.516400e+05 0.00 NULL
2017 Department Of Business Serv. Principal Administrative Associate 67552.15875 8.106259e+05 260.44 2.170333e+01 0.000 5.75 12 0.000000e+00 0.00 8.108863e+05 8.106259e+05 260.44 NULL
2017 Department Of Business Serv. Procurement Analyst 67105.00000 6.710500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.710500e+04 6.710500e+04 0.00 NULL
2017 Department Of Business Serv. Space Analyst 62784.00000 6.278400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.278400e+04 6.278400e+04 0.00 NULL
2017 Department Of Business Serv. Staff Analyst 65764.33333 1.972930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.972930e+05 1.972930e+05 0.00 NULL
2017 Department Of Business Serv. Summer College Intern 2193.50100 2.193501e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 2.193501e+04 2.193501e+04 0.00 NULL
2017 Department Of Business Serv. Summer Graduate Intern 1961.02000 7.844080e+03 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.844080e+03 7.844080e+03 0.00 NULL
2017 Department Of Business Serv. Supervising Computer Service Technician 82776.00000 8.277600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.277600e+04 8.277600e+04 0.00 NULL
2017 Department Of Business Serv. Telecommunications Associate 53935.00000 5.393500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.393500e+04 5.393500e+04 0.00 NULL
2017 Department Of City Planning *Certified Local Area Network Administrator 103000.00000 1.030000e+05 30.72 3.072000e+01 30.720 0.00 1 3.072000e+01 30.72 1.030307e+05 1.030307e+05 0.00 NULL
2017 Department Of City Planning Adm Manager-Non-Mgrl 66546.20000 3.327310e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.327310e+05 3.327310e+05 0.00 NULL
2017 Department Of City Planning Administrative City Planner 119565.86111 4.304371e+06 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 4.304371e+06 4.304371e+06 0.00 NULL
2017 Department Of City Planning Administrative Labor Relations Analyst 116275.00000 2.325500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.325500e+05 2.325500e+05 0.00 NULL
2017 Department Of City Planning Administrative Space Analyst 45349.19750 4.534920e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.534920e+04 4.534920e+04 0.00 NULL
2017 Department Of City Planning Administrative Staff Analyst 109735.75000 4.389430e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.389430e+05 4.389430e+05 0.00 NULL
2017 Department Of City Planning Agency Attorney 88644.14286 6.205090e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.205090e+05 6.205090e+05 0.00 NULL
2017 Department Of City Planning Assistant Architect 65159.00000 6.515900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.515900e+04 6.515900e+04 0.00 NULL
2017 Department Of City Planning Assistant Highway Transportation Specialist 59138.80000 2.956940e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.956940e+05 2.956940e+05 0.00 NULL
2017 Department Of City Planning Assistant Urban Designer 61528.75000 7.383450e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.383450e+05 7.383450e+05 0.00 NULL
2017 Department Of City Planning Associate Staff Analyst 82985.40000 4.149270e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.149270e+05 4.149270e+05 0.00 NULL
2017 Department Of City Planning Associate Urban Designer 81348.00000 9.761760e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 9.761760e+05 9.761760e+05 0.00 NULL
2017 Department Of City Planning Certified It Administrator 87731.00000 1.754620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.754620e+05 1.754620e+05 0.00 NULL
2017 Department Of City Planning Certified It Developer 70779.50000 1.415590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.415590e+05 1.415590e+05 0.00 NULL
2017 Department Of City Planning Chairman 226366.00000 4.527320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.527320e+05 4.527320e+05 0.00 NULL
2017 Department Of City Planning City Planner 72672.45273 8.793367e+06 0.00 0.000000e+00 0.000 0.00 121 0.000000e+00 0.00 8.793367e+06 8.793367e+06 0.00 NULL
2017 Department Of City Planning City Planning Technician 24759.19425 9.903678e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 9.903678e+04 9.903678e+04 0.00 NULL
2017 Department Of City Planning Civil Engineer 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2017 Department Of City Planning Clerical Associate 44183.95522 2.651037e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.651037e+05 2.651037e+05 0.00 NULL
2017 Department Of City Planning College Aide 1458.33305 3.062499e+04 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 3.062499e+04 3.062499e+04 0.00 NULL
2017 Department Of City Planning Commissioner 59394.54545 6.533400e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 6.533400e+05 6.533400e+05 0.00 NULL
2017 Department Of City Planning Commissioner Designated As Vice Chairman 68751.00000 6.875100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.875100e+04 6.875100e+04 0.00 NULL
2017 Department Of City Planning Community Associate 37149.14429 5.200880e+05 95.79 6.842143e+00 0.000 0.00 14 0.000000e+00 0.00 5.201838e+05 5.200880e+05 95.79 NULL
2017 Department Of City Planning Community Coordinator 58802.70719 2.469714e+06 645.76 1.537524e+01 0.000 0.00 42 0.000000e+00 0.00 2.470359e+06 2.469714e+06 645.76 NULL
2017 Department Of City Planning Computer Aide-Non-Spvr 61259.00000 6.125900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.125900e+04 6.125900e+04 0.00 NULL
2017 Department Of City Planning Computer Associate 65309.95773 7.184095e+05 26.82 2.438182e+00 0.000 0.00 11 0.000000e+00 0.00 7.184364e+05 7.184095e+05 26.82 NULL
2017 Department Of City Planning Computer Operations Manager 93321.00000 2.799630e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.799630e+05 2.799630e+05 0.00 NULL
2017 Department Of City Planning Computer Programmer Analyst 64926.58530 1.298532e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.298532e+05 1.298532e+05 0.00 NULL
2017 Department Of City Planning Computer Programmer Analyst Trainee 7232.50000 7.232500e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.232500e+03 7.232500e+03 0.00 NULL
2017 Department Of City Planning Computer Service Technician 62875.00000 6.287500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.287500e+04 6.287500e+04 0.00 NULL
2017 Department Of City Planning Computer Specialist 85666.62107 1.199333e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.199333e+06 1.199333e+06 0.00 NULL
2017 Department Of City Planning Computer Systems Manager 123576.60000 6.178830e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.178830e+05 6.178830e+05 0.00 NULL
2017 Department Of City Planning Contract Specialist 73410.00000 7.341000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.341000e+04 7.341000e+04 0.00 NULL
2017 Department Of City Planning Counsel 204251.00000 2.042510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.042510e+05 2.042510e+05 0.00 NULL
2017 Department Of City Planning Deputy Executive Director 193209.00000 1.932090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.932090e+05 1.932090e+05 0.00 NULL
2017 Department Of City Planning Director Of Public Information 131618.00000 1.316180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.316180e+05 1.316180e+05 0.00 NULL
2017 Department Of City Planning Executive Agency Counsel 116133.00000 1.161330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.161330e+05 1.161330e+05 0.00 NULL
2017 Department Of City Planning Executive Assistant For Planning 120593.00000 1.205930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.205930e+05 1.205930e+05 0.00 NULL
2017 Department Of City Planning Executive Assistant To The Chairman 62000.00000 6.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.200000e+04 6.200000e+04 0.00 NULL
2017 Department Of City Planning Executive Director 207015.00000 2.070150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.070150e+05 2.070150e+05 0.00 NULL
2017 Department Of City Planning Graphic Artist 74410.00000 7.441000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.441000e+04 7.441000e+04 0.00 NULL
2017 Department Of City Planning Highway Transportation Specialist 95395.50000 1.907910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.907910e+05 1.907910e+05 0.00 NULL
2017 Department Of City Planning Motor Vehicle Supervisor 53969.00000 5.396900e+04 40080.20 4.008020e+04 40080.200 968.25 1 4.008020e+04 40080.20 9.404920e+04 9.404920e+04 0.00 NULL
2017 Department Of City Planning Office Machine Aide 44489.00000 4.448900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.448900e+04 4.448900e+04 0.00 NULL
2017 Department Of City Planning Principal Administrative Associate 55894.80667 5.030533e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.030533e+05 5.030533e+05 0.00 NULL
2017 Department Of City Planning Secretary 54879.00000 5.487900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.487900e+04 5.487900e+04 0.00 NULL
2017 Department Of City Planning Secretary To The Chairman 74443.00000 7.444300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.444300e+04 7.444300e+04 0.00 NULL
2017 Department Of City Planning Staff Analyst 29830.76160 2.983076e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.983076e+04 2.983076e+04 0.00 NULL
2017 Department Of City Planning Stock Worker 28616.21705 2.861622e+04 26.46 2.646000e+01 26.460 2.25 1 2.646000e+01 26.46 2.864268e+04 2.864268e+04 0.00 NULL
2017 Department Of City Planning Telecommunications Associate 76000.00000 7.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.600000e+04 7.600000e+04 0.00 NULL
2017 Department Of Correction *Adm Dir Fleet Maintenance - Nm 142358.00000 1.423580e+05 7113.58 7.113580e+03 7113.580 66.00 1 7.113580e+03 7113.58 1.494716e+05 1.494716e+05 0.00 NULL
2017 Department Of Correction *Supervisor 46350.00000 4.635000e+04 1337.76 1.337760e+03 1337.760 31.50 1 1.337760e+03 1337.76 4.768776e+04 4.768776e+04 0.00 NULL
2017 Department Of Correction Adm Manager-Non-Mgrl 69695.40351 3.972638e+06 516109.29 9.054549e+03 406.770 10249.00 57 4.067700e+02 23185.89 4.488747e+06 3.995824e+06 492923.40 NULL
2017 Department Of Correction Admin Community Relations Specialist 102852.25000 4.114090e+05 14865.41 3.716352e+03 3623.865 238.00 4 3.623865e+03 14495.46 4.262744e+05 4.259045e+05 369.95 NULL
2017 Department Of Correction Admin Construction Project Manager 109313.00000 1.093130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.093130e+05 1.093130e+05 0.00 NULL
2017 Department Of Correction Admin Contract Specialist 65000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2017 Department Of Correction Admin Inspector 99365.00000 9.936500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.936500e+04 9.936500e+04 0.00 NULL
2017 Department Of Correction Administration Public Record Officer 105575.00000 1.055750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.055750e+05 1.055750e+05 0.00 NULL
2017 Department Of Correction Administrative Architect 140359.50000 2.807190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.807190e+05 2.807190e+05 0.00 NULL
2017 Department Of Correction Administrative Construction Project Manager 143408.00000 1.434080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.434080e+05 1.434080e+05 0.00 NULL
2017 Department Of Correction Administrative Director Of Social Services 98147.55556 2.649984e+06 14593.14 5.404867e+02 0.000 267.75 27 0.000000e+00 0.00 2.664577e+06 2.649984e+06 14593.14 NULL
2017 Department Of Correction Administrative Engineer 127572.33333 3.827170e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.827170e+05 3.827170e+05 0.00 NULL
2017 Department Of Correction Administrative Investigator 92899.14286 6.502940e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.502940e+05 6.502940e+05 0.00 NULL
2017 Department Of Correction Administrative Management Auditor 123695.00000 1.236950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.236950e+05 1.236950e+05 0.00 NULL
2017 Department Of Correction Administrative Manager 180000.00000 1.800000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.800000e+05 1.800000e+05 0.00 NULL
2017 Department Of Correction Administrative Procurement Analyst 96581.12500 7.726490e+05 479.97 5.999625e+01 0.000 9.00 8 0.000000e+00 0.00 7.731290e+05 7.726490e+05 479.97 NULL
2017 Department Of Correction Administrative Project Manager 120639.80000 6.031990e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.031990e+05 6.031990e+05 0.00 NULL
2017 Department Of Correction Administrative Psychologist 169950.00000 1.699500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.699500e+05 1.699500e+05 0.00 NULL
2017 Department Of Correction Administrative Public Health Sanitarian 122202.50000 2.444050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.444050e+05 2.444050e+05 0.00 NULL
2017 Department Of Correction Administrative Public Information Specialist 110746.44444 9.967180e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.967180e+05 9.967180e+05 0.00 NULL
2017 Department Of Correction Administrative Staff Analyst 109445.61667 6.566737e+06 470804.96 7.846749e+03 0.000 6706.50 60 0.000000e+00 0.00 7.037542e+06 6.566737e+06 470804.96 NULL
2017 Department Of Correction Administrative Storekeeper 124523.00000 1.245230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.245230e+05 1.245230e+05 0.00 NULL
2017 Department Of Correction Administrative Supervisor Of Building Maintenance 138205.66667 4.146170e+05 6671.50 2.223833e+03 0.000 57.00 3 0.000000e+00 0.00 4.212885e+05 4.146170e+05 6671.50 NULL
2017 Department Of Correction Agency Attorney 97845.79167 4.696598e+06 14571.36 3.035700e+02 0.000 195.00 48 0.000000e+00 0.00 4.711169e+06 4.696598e+06 14571.36 NULL
2017 Department Of Correction Agency Attorney Interne 64698.75000 2.587950e+05 1190.41 2.976025e+02 248.310 32.25 4 2.483100e+02 993.24 2.599854e+05 2.597882e+05 197.17 NULL
2017 Department Of Correction Architect 104556.00000 1.045560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.045560e+05 1.045560e+05 0.00 NULL
2017 Department Of Correction Asbestos Handler Supervisor 83740.00000 1.674800e+05 69784.94 3.489247e+04 34892.470 1201.75 2 3.489247e+04 69784.94 2.372649e+05 2.372649e+05 0.00 NULL
2017 Department Of Correction Assistant Architect 79726.00000 7.972600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.972600e+04 7.972600e+04 0.00 NULL
2017 Department Of Correction Assistant Printing Press Operator 48286.00000 4.828600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.828600e+04 4.828600e+04 0.00 NULL
2017 Department Of Correction Associate Correctional Counselor 60420.74324 4.471135e+06 17785.07 2.403388e+02 0.000 397.50 74 0.000000e+00 0.00 4.488920e+06 4.471135e+06 17785.07 NULL
2017 Department Of Correction Associate Investigator 61707.58005 8.021985e+05 157025.51 1.207889e+04 9406.980 3428.75 13 9.406980e+03 122290.74 9.592241e+05 9.244893e+05 34734.77 NULL
2017 Department Of Correction Associate Project Manager 89073.75000 3.562950e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.562950e+05 3.562950e+05 0.00 NULL
2017 Department Of Correction Associate Public Health Sanitarian 74157.33333 2.224720e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.224720e+05 2.224720e+05 0.00 NULL
2017 Department Of Correction Associate Staff Analyst 87933.13333 1.318997e+06 85266.18 5.684412e+03 0.000 1279.25 15 0.000000e+00 0.00 1.404263e+06 1.318997e+06 85266.18 NULL
2017 Department Of Correction Attorney At Law 93532.00000 9.353200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.353200e+04 9.353200e+04 0.00 NULL
2017 Department Of Correction Auto Body Worker 56888.50000 1.137770e+05 105518.60 5.275930e+04 52759.300 2367.00 2 5.275930e+04 105518.60 2.192956e+05 2.192956e+05 0.00 NULL
2017 Department Of Correction Auto Mechanic NA NA 381611.85 2.244776e+04 21605.790 6402.57 17 2.160579e+04 367298.43 NA NA NA NULL
2017 Department Of Correction Automotive Service Worker 36008.00000 3.600800e+05 18181.26 1.818126e+03 1965.735 750.50 10 1.818126e+03 18181.26 3.782613e+05 3.782613e+05 0.00 NULL
2017 Department Of Correction Baker 36798.50000 2.207910e+05 3823.03 6.371717e+02 490.925 140.75 6 4.909250e+02 2945.55 2.246140e+05 2.237365e+05 877.48 NULL
2017 Department Of Correction Bookkeeper 35711.00000 3.571100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.571100e+04 3.571100e+04 0.00 NULL
2017 Department Of Correction Bricklayer NA NA 416987.64 4.169876e+04 34966.550 5229.08 10 3.496655e+04 349665.50 NA NA NA NULL
2017 Department Of Correction Captain 92746.24759 8.653225e+07 36575810.70 3.920237e+04 35306.820 496268.06 933 3.530682e+04 32941263.06 1.231081e+08 1.194735e+08 3634547.64 NULL
2017 Department Of Correction Carpenter NA NA 1093638.41 5.468192e+04 62097.555 14674.25 20 5.468192e+04 1093638.41 NA NA NA NULL
2017 Department Of Correction Case Management Nurse 44796.80125 3.583744e+05 9379.01 1.172376e+03 639.890 187.25 8 6.398900e+02 5119.12 3.677534e+05 3.634935e+05 4259.89 NULL
2017 Department Of Correction Cashier 39780.67833 1.153640e+06 170225.96 5.869861e+03 1777.360 5354.00 29 1.777360e+03 51543.44 1.323866e+06 1.205183e+06 118682.52 NULL
2017 Department Of Correction Cement Mason NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2017 Department Of Correction Certified It Administrator 95385.14286 6.676960e+05 96884.23 1.384060e+04 8658.110 1372.50 7 8.658110e+03 60606.77 7.645802e+05 7.283028e+05 36277.46 NULL
2017 Department Of Correction Chaplain 46311.98560 1.343048e+06 19718.37 6.799438e+02 0.000 458.75 29 0.000000e+00 0.00 1.362766e+06 1.343048e+06 19718.37 NULL
2017 Department Of Correction City Elevator Operator 38267.00000 1.148010e+05 12348.75 4.116250e+03 5134.260 371.75 3 4.116250e+03 12348.75 1.271498e+05 1.271498e+05 0.00 NULL
2017 Department Of Correction City Medical Specialist 121405.67339 1.456868e+06 5374.35 4.478625e+02 0.000 73.25 12 0.000000e+00 0.00 1.462242e+06 1.456868e+06 5374.35 NULL
2017 Department Of Correction City Research Scientist 96211.00000 2.886330e+05 18139.87 6.046623e+03 8466.390 319.00 3 6.046623e+03 18139.87 3.067729e+05 3.067729e+05 0.00 NULL
2017 Department Of Correction Civil Engineer 88529.00000 8.852900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.852900e+04 8.852900e+04 0.00 NULL
2017 Department Of Correction Clerical Associate 44733.29851 2.997131e+06 229895.99 3.431283e+03 459.100 7052.00 67 4.591000e+02 30759.70 3.227027e+06 3.027891e+06 199136.29 NULL
2017 Department Of Correction College Aide 2188.22150 1.969399e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.969399e+04 1.969399e+04 0.00 NULL
2017 Department Of Correction Commissary Manager 37069.28571 2.594850e+05 11162.28 1.594611e+03 938.300 427.00 7 9.383000e+02 6568.10 2.706473e+05 2.660531e+05 4594.18 NULL
2017 Department Of Correction Commissioner 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2017 Department Of Correction Community Assistant 32736.33333 9.820900e+04 14934.00 4.978000e+03 72.490 581.25 3 7.249000e+01 217.47 1.131430e+05 9.842647e+04 14716.53 NULL
2017 Department Of Correction Community Associate 41738.04442 8.764989e+05 38536.58 1.835075e+03 63.270 1286.00 21 6.327000e+01 1328.67 9.150355e+05 8.778276e+05 37207.91 NULL
2017 Department Of Correction Community Coordinator 56361.64523 5.861611e+06 217838.11 2.094597e+03 225.645 5043.25 104 2.256450e+02 23467.08 6.079449e+06 5.885078e+06 194371.03 NULL
2017 Department Of Correction Computer Aide-Non-Spvr 48621.66667 1.458650e+05 29898.38 9.966127e+03 11395.820 783.00 3 9.966127e+03 29898.38 1.757634e+05 1.757634e+05 0.00 NULL
2017 Department Of Correction Computer Associate 69101.05882 1.174718e+06 90240.86 5.308286e+03 2132.850 1846.45 17 2.132850e+03 36258.45 1.264959e+06 1.210976e+06 53982.41 NULL
2017 Department Of Correction Computer Operations Manager 136942.75000 5.477710e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.477710e+05 5.477710e+05 0.00 NULL
2017 Department Of Correction Computer Service Technician 51791.00000 5.179100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.179100e+04 5.179100e+04 0.00 NULL
2017 Department Of Correction Computer Specialist 95224.88889 2.571072e+06 88823.07 3.289743e+03 0.000 1169.25 27 0.000000e+00 0.00 2.659895e+06 2.571072e+06 88823.07 NULL
2017 Department Of Correction Computer Systems Manager 120266.00000 2.285054e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.285054e+06 2.285054e+06 0.00 NULL
2017 Department Of Correction Confidential Agency Investigator 125361.96455 1.378982e+06 4477.96 4.070873e+02 0.000 50.50 11 0.000000e+00 0.00 1.383460e+06 1.378982e+06 4477.96 NULL
2017 Department Of Correction Construction Project Manager 96511.00000 2.895330e+05 11806.05 3.935350e+03 0.000 148.25 3 0.000000e+00 0.00 3.013390e+05 2.895330e+05 11806.05 NULL
2017 Department Of Correction Contract Specialist 68675.00000 6.867500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.867500e+04 6.867500e+04 0.00 NULL
2017 Department Of Correction Cook 38811.83432 6.559200e+06 849125.24 5.024410e+03 2345.650 26517.84 169 2.345650e+03 396414.85 7.408325e+06 6.955615e+06 452710.39 NULL
2017 Department Of Correction Correction Administrative Aide 36963.47879 5.174887e+05 13584.42 9.703157e+02 88.075 496.67 14 8.807500e+01 1233.05 5.310731e+05 5.187218e+05 12351.37 NULL
2017 Department Of Correction Correction Officer 64101.23588 7.013957e+08 209495276.48 1.914598e+04 14761.000 3820321.66 10942 1.476100e+04 161514862.00 9.108910e+08 8.629106e+08 47980414.48 NULL
2017 Department Of Correction Correctional Standards Review Specialist 68594.53061 3.361132e+06 238675.24 4.870923e+03 1009.660 4845.50 49 1.009660e+03 49473.34 3.599807e+06 3.410605e+06 189201.90 NULL
2017 Department Of Correction Counselor 53049.00000 1.060980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.060980e+05 1.060980e+05 0.00 NULL
2017 Department Of Correction Deputy Commissioner 187396.00000 3.747920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.747920e+05 3.747920e+05 0.00 NULL
2017 Department Of Correction Dietary Aide 35144.80000 3.514480e+05 18530.91 1.853091e+03 1773.330 675.25 10 1.773330e+03 17733.30 3.699789e+05 3.691813e+05 797.61 NULL
2017 Department Of Correction Dietitian 52908.25000 6.348990e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 6.348990e+05 6.348990e+05 0.00 NULL
2017 Department Of Correction Director Of Correctional Standards Review 128577.85926 3.471602e+06 39202.73 1.451953e+03 0.000 710.25 27 0.000000e+00 0.00 3.510805e+06 3.471602e+06 39202.73 NULL
2017 Department Of Correction Electrical Engineer 95611.00000 9.561100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.561100e+04 9.561100e+04 0.00 NULL
2017 Department Of Correction Electrician NA NA 2928675.99 4.801108e+04 44365.540 34886.75 61 4.436554e+04 2706297.94 NA NA NA NULL
2017 Department Of Correction Electrician’s Helper NA NA 747938.25 2.077606e+04 21611.590 14048.75 36 2.077606e+04 747938.25 NA NA NA NULL
2017 Department Of Correction Executive Agency Counsel 142809.14286 1.999328e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.999328e+06 1.999328e+06 0.00 NULL
2017 Department Of Correction Executive Assistant To The Commissioner 211150.00000 2.111500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.111500e+05 2.111500e+05 0.00 NULL
2017 Department Of Correction Executive Director Of Food Services 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2017 Department Of Correction Executive Program Specialist 127746.00000 1.277460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.277460e+05 1.277460e+05 0.00 NULL
2017 Department Of Correction Exterminator 38789.55556 3.491060e+05 97491.59 1.083240e+04 4452.200 3110.75 9 4.452200e+03 40069.80 4.465976e+05 3.891758e+05 57421.79 NULL
2017 Department Of Correction Film Manager 74675.00000 1.493500e+05 2912.20 1.456100e+03 1456.100 67.00 2 1.456100e+03 2912.20 1.522622e+05 1.522622e+05 0.00 NULL
2017 Department Of Correction Fitness Instructor 35801.12500 1.790056e+05 37590.43 7.518086e+03 4168.520 1496.00 5 4.168520e+03 20842.60 2.165961e+05 1.998482e+05 16747.83 NULL
2017 Department Of Correction Food Service Administrator 80041.50000 3.201660e+05 31402.88 7.850720e+03 8341.005 386.25 4 7.850720e+03 31402.88 3.515689e+05 3.515689e+05 0.00 NULL
2017 Department Of Correction Food Service Manager 58953.16667 7.074380e+05 63599.95 5.299996e+03 3395.165 1454.25 12 3.395165e+03 40741.98 7.710379e+05 7.481800e+05 22857.97 NULL
2017 Department Of Correction Fraud Investigator 62326.00000 6.232600e+04 11900.46 1.190046e+04 11900.460 222.00 1 1.190046e+04 11900.46 7.422646e+04 7.422646e+04 0.00 NULL
2017 Department Of Correction Graphic Artist 62366.50000 1.247330e+05 2385.40 1.192700e+03 1192.700 85.25 2 1.192700e+03 2385.40 1.271184e+05 1.271184e+05 0.00 NULL
2017 Department Of Correction Health Services Manager 84838.50000 1.696770e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.696770e+05 1.696770e+05 0.00 NULL
2017 Department Of Correction High Pressure Plant Tender NA NA 390130.99 3.901310e+04 41697.575 7304.25 10 3.901310e+04 390130.99 NA NA NA NULL
2017 Department Of Correction Industrial Hygienist 63860.00000 1.915800e+05 8727.79 2.909263e+03 445.650 216.75 3 4.456500e+02 1336.95 2.003078e+05 1.929170e+05 7390.84 NULL
2017 Department Of Correction Institutional Aide 36527.73684 6.940270e+05 107711.05 5.669003e+03 1366.980 3853.00 19 1.366980e+03 25972.62 8.017381e+05 7.199996e+05 81738.43 NULL
2017 Department Of Correction Investigator 52954.77802 3.653880e+06 774311.16 1.122190e+04 10086.960 18703.25 69 1.008696e+04 696000.24 4.428191e+06 4.349880e+06 78310.92 NULL
2017 Department Of Correction Legal Coordinator 55624.94595 2.058123e+06 497734.16 1.345227e+04 6004.970 10979.98 37 6.004970e+03 222183.89 2.555857e+06 2.280307e+06 275550.27 NULL
2017 Department Of Correction Licensed Barber 35611.75000 4.273410e+05 46856.12 3.904677e+03 1982.755 1817.75 12 1.982755e+03 23793.06 4.741971e+05 4.511341e+05 23063.06 NULL
2017 Department Of Correction Locksmith NA NA 207052.34 1.380349e+04 1862.510 4561.00 15 1.862510e+03 27937.65 NA NA NA NULL
2017 Department Of Correction Machinist NA NA 185690.24 4.642256e+04 44923.045 2903.00 4 4.492304e+04 179692.18 NA NA NA NULL
2017 Department Of Correction Maintenance Worker NA NA 1021893.89 1.824811e+04 17201.375 23475.25 56 1.720138e+04 963277.00 NA NA NA NULL
2017 Department Of Correction Management Auditor 82230.80000 4.111540e+05 26105.01 5.221002e+03 0.000 385.25 5 0.000000e+00 0.00 4.372590e+05 4.111540e+05 26105.01 NULL
2017 Department Of Correction Marine Engineer 46715.05072 3.270054e+05 198980.75 2.842582e+04 23001.480 3356.00 7 2.300148e+04 161010.36 5.259861e+05 4.880157e+05 37970.39 NULL
2017 Department Of Correction Marine Oiler 92960.62000 1.859212e+05 94868.41 4.743421e+04 47434.205 1845.00 2 4.743421e+04 94868.41 2.807897e+05 2.807897e+05 0.00 NULL
2017 Department Of Correction Masons Helper NA NA 73659.16 7.365916e+04 73659.160 1291.75 1 7.365916e+04 73659.16 NA NA NA NULL
2017 Department Of Correction Mate 57875.00000 5.787500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.787500e+04 5.787500e+04 0.00 NULL
2017 Department Of Correction Metal Work Mechanic 77131.00000 1.542620e+05 21354.36 1.067718e+04 10677.180 457.75 2 1.067718e+04 21354.36 1.756164e+05 1.756164e+05 0.00 NULL
2017 Department Of Correction Motor Vehicle Operator 44574.43902 1.827552e+06 484313.17 1.181252e+04 10436.880 13802.75 41 1.043688e+04 427912.08 2.311865e+06 2.255464e+06 56401.09 NULL
2017 Department Of Correction Motor Vehicle Supervisor 54145.00000 1.082900e+05 6614.63 3.307315e+03 3307.315 161.25 2 3.307315e+03 6614.63 1.149046e+05 1.149046e+05 0.00 NULL
2017 Department Of Correction Office Machine Aide 33973.80000 6.794760e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.794760e+04 6.794760e+04 0.00 NULL
2017 Department Of Correction Oiler NA NA 2046507.40 4.991481e+04 52235.430 23166.00 41 4.991481e+04 2046507.40 NA NA NA NULL
2017 Department Of Correction Operations Communications Specialist 9404.85000 9.404850e+03 241.50 2.415000e+02 241.500 12.50 1 2.415000e+02 241.50 9.646350e+03 9.646350e+03 0.00 NULL
2017 Department Of Correction Paralegal Aide 44465.41560 8.893083e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.893083e+04 8.893083e+04 0.00 NULL
2017 Department Of Correction Plasterer NA NA 75619.32 7.561932e+04 75619.320 1491.25 1 7.561932e+04 75619.32 NA NA NA NULL
2017 Department Of Correction Plumber NA NA 2500014.15 5.952415e+04 52539.390 23648.75 42 5.253939e+04 2206654.38 NA NA NA NULL
2017 Department Of Correction Plumber’s Helper NA NA 691512.60 3.143239e+04 31262.615 9464.50 22 3.126262e+04 687777.53 NA NA NA NULL
2017 Department Of Correction Principal Administrative Associate 59469.59453 4.995446e+06 449124.52 5.346720e+03 832.035 10456.50 84 8.320350e+02 69890.94 5.444570e+06 5.065337e+06 379233.58 NULL
2017 Department Of Correction Printing Press Operator NA NA 44304.95 4.430495e+04 44304.950 735.00 1 4.430495e+04 44304.95 NA NA NA NULL
2017 Department Of Correction Procurement Analyst 63581.06526 1.208040e+06 72859.77 3.834725e+03 0.000 1195.50 19 0.000000e+00 0.00 1.280900e+06 1.208040e+06 72859.77 NULL
2017 Department Of Correction Program Specialist Correction 66459.66294 8.174539e+06 819979.18 6.666497e+03 800.530 15930.50 123 8.005300e+02 98465.19 8.994518e+06 8.273004e+06 721513.99 NULL
2017 Department Of Correction Psychologist 74238.50206 7.423850e+05 91625.39 9.162539e+03 6371.355 1567.75 10 6.371355e+03 63713.55 8.340104e+05 8.060986e+05 27911.84 NULL
2017 Department Of Correction Public Health Sanitarian 59508.88889 5.355800e+05 26494.75 2.943861e+03 91.300 576.50 9 9.130000e+01 821.70 5.620748e+05 5.364017e+05 25673.05 NULL
2017 Department Of Correction Public Records Aide 41264.39383 1.237932e+05 2940.25 9.800833e+02 144.970 112.00 3 1.449700e+02 434.91 1.267334e+05 1.242281e+05 2505.34 NULL
2017 Department Of Correction Quality Assurance Specialist 66739.00000 6.673900e+04 3149.38 3.149380e+03 3149.380 75.00 1 3.149380e+03 3149.38 6.988838e+04 6.988838e+04 0.00 NULL
2017 Department Of Correction Radio Repair Mechanic NA NA 12141.39 6.070695e+03 6070.695 122.50 2 6.070695e+03 12141.39 NA NA NA NULL
2017 Department Of Correction Recreation Director 41198.40000 4.119840e+05 224.65 2.246500e+01 0.000 10.00 10 0.000000e+00 0.00 4.122087e+05 4.119840e+05 224.65 NULL
2017 Department Of Correction Recreation Supervisor 55330.00000 2.766500e+05 2483.97 4.967940e+02 143.000 80.00 5 1.430000e+02 715.00 2.791340e+05 2.773650e+05 1768.97 NULL
2017 Department Of Correction Roofer NA NA 180808.67 3.013478e+04 24224.055 3257.75 6 2.422406e+04 145344.33 NA NA NA NULL
2017 Department Of Correction Rubber Tire Repairer NA NA 1714.53 8.572650e+02 857.265 41.25 2 8.572650e+02 1714.53 NA NA NA NULL
2017 Department Of Correction Secretary 39693.50000 7.938700e+04 16.65 8.325000e+00 8.325 1.00 2 8.325000e+00 16.65 7.940365e+04 7.940365e+04 0.00 NULL
2017 Department Of Correction Senior Baker 44397.40000 2.219870e+05 2885.33 5.770660e+02 275.890 91.75 5 2.758900e+02 1379.45 2.248723e+05 2.233665e+05 1505.88 NULL
2017 Department Of Correction Senior Institutional Trades Instructor 45045.00000 9.009000e+04 69987.66 3.499383e+04 34993.830 2204.00 2 3.499383e+04 69987.66 1.600777e+05 1.600777e+05 0.00 NULL
2017 Department Of Correction Senior Stationary Engineer NA NA 888119.10 1.110149e+05 109982.380 8197.25 8 1.099824e+05 879859.04 NA NA NA NULL
2017 Department Of Correction Sheet Metal Worker NA NA 170538.74 4.263468e+04 36068.030 1658.75 4 3.606803e+04 144272.12 NA NA NA NULL
2017 Department Of Correction Social Worker 65588.00000 6.558800e+04 3605.28 3.605280e+03 3605.280 67.00 1 3.605280e+03 3605.28 6.919328e+04 6.919328e+04 0.00 NULL
2017 Department Of Correction Staff Analyst 48237.60801 5.788513e+05 15842.74 1.320228e+03 15.000 339.75 12 1.500000e+01 180.00 5.946940e+05 5.790313e+05 15662.74 NULL
2017 Department Of Correction Staff Nurse 74284.10625 4.457046e+05 13228.03 2.204672e+03 1451.555 210.75 6 1.451555e+03 8709.33 4.589327e+05 4.544140e+05 4518.70 NULL
2017 Department Of Correction Stationary Engineer NA NA 1285035.71 4.431158e+04 26511.060 13934.25 29 2.651106e+04 768820.74 NA NA NA NULL
2017 Department Of Correction Steam Fitter NA NA 457545.00 5.719312e+04 58781.250 3999.00 8 5.719312e+04 457545.00 NA NA NA NULL
2017 Department Of Correction Steam Fitter’s Helper NA NA 218200.10 3.636668e+04 30741.565 2593.00 6 3.074156e+04 184449.39 NA NA NA NULL
2017 Department Of Correction Stock Worker 34068.18182 3.747500e+05 57784.63 5.253148e+03 3423.940 2447.00 11 3.423940e+03 37663.34 4.325346e+05 4.124133e+05 20121.29 NULL
2017 Department Of Correction Summer Graduate Intern 2700.20181 2.349176e+05 0.00 0.000000e+00 0.000 0.00 87 0.000000e+00 0.00 2.349176e+05 2.349176e+05 0.00 NULL
2017 Department Of Correction Superintendent Of Laundries 57539.00000 5.753900e+04 7850.10 7.850100e+03 7850.100 172.75 1 7.850100e+03 7850.10 6.538910e+04 6.538910e+04 0.00 NULL
2017 Department Of Correction Supervising Computer Service Technician 83036.22000 1.660724e+05 1645.92 8.229600e+02 822.960 32.00 2 8.229600e+02 1645.92 1.677184e+05 1.677184e+05 0.00 NULL
2017 Department Of Correction Supervising Housekeeper 47782.33333 1.433470e+05 1422.48 4.741600e+02 84.680 41.50 3 8.468000e+01 254.04 1.447695e+05 1.436010e+05 1168.44 NULL
2017 Department Of Correction Supervisor Electrician NA NA 94566.33 9.456633e+04 94566.330 1010.00 1 9.456633e+04 94566.33 NA NA NA NULL
2017 Department Of Correction Supervisor Of Electrical Installations & Maintenance 69360.00000 6.936000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.936000e+04 6.936000e+04 0.00 NULL
2017 Department Of Correction Supervisor Of Mechanics NA NA 1390511.01 7.725061e+04 87573.315 15150.75 18 7.725061e+04 1390511.01 NA NA NA NULL
2017 Department Of Correction Supervisor Of Stock Workers 47764.00000 3.343480e+05 26366.76 3.766680e+03 30.580 526.50 7 3.058000e+01 214.06 3.607148e+05 3.345621e+05 26152.70 NULL
2017 Department Of Correction Supervisor Plumber NA NA 64794.76 6.479476e+04 64794.760 574.75 1 6.479476e+04 64794.76 NA NA NA NULL
2017 Department Of Correction Supervisor Steamfitter NA NA 119247.00 5.962350e+04 59623.500 1059.25 2 5.962350e+04 119247.00 NA NA NA NULL
2017 Department Of Correction Telecommunications Associate 83075.00000 1.661500e+05 88427.77 4.421389e+04 44213.885 1302.75 2 4.421389e+04 88427.77 2.545778e+05 2.545778e+05 0.00 NULL
2017 Department Of Correction Telephone Service Technician 57058.00000 5.705800e+04 281.07 2.810700e+02 281.070 9.00 1 2.810700e+02 281.07 5.733907e+04 5.733907e+04 0.00 NULL
2017 Department Of Correction Thermostat Repairer NA NA 466481.80 9.329636e+04 93655.910 4324.25 5 9.329636e+04 466481.80 NA NA NA NULL
2017 Department Of Correction Tractor Operator NA NA 213290.61 7.109687e+04 79131.800 1525.25 3 7.109687e+04 213290.61 NA NA NA NULL
2017 Department Of Correction Warden 191731.93103 5.560226e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 5.560226e+06 5.560226e+06 0.00 NULL
2017 Department Of Correction Warden-Assistant Deputy Warden 111186.18519 1.200811e+07 4734413.54 4.383716e+04 39113.295 51883.77 108 3.911329e+04 4224235.86 1.674252e+07 1.623234e+07 510177.68 NULL
2017 Department Of Correction Warden-Deputy Warden 137315.34146 5.629929e+06 73392.97 1.790072e+03 0.000 663.50 41 0.000000e+00 0.00 5.703322e+06 5.629929e+06 73392.97 NULL
2017 Department Of Correction Warden-Deputy Warden In Comm Ted < 11/1/92 163359.00000 1.470231e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.470231e+06 1.470231e+06 0.00 NULL
2017 Department Of Correction Welder NA NA 816941.62 5.835297e+04 53539.520 7138.50 14 5.353952e+04 749553.28 NA NA NA NULL
2017 Department Of Correction Worker’s Compensation Benefits Examiner 48056.00000 4.805600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.805600e+04 4.805600e+04 0.00 NULL
2017 Department Of Education Admin *Administrative Attorney 212561.00000 2.125610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.125610e+05 2.125610e+05 0.00 NULL
2017 Department Of Education Admin *Certified Applications Developer 109476.50000 2.189530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.189530e+05 2.189530e+05 0.00 NULL
2017 Department Of Education Admin *Certified Wide Area Network Administrator 108696.25000 4.347850e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.347850e+05 4.347850e+05 0.00 NULL
2017 Department Of Education Admin *School Lunch Helper 28218.00000 2.821800e+04 584.99 5.849900e+02 584.990 0.00 1 5.849900e+02 584.99 2.880299e+04 2.880299e+04 0.00 NULL
2017 Department Of Education Admin *Supervisor 44592.00000 4.459200e+04 693.48 6.934800e+02 693.480 24.50 1 6.934800e+02 693.48 4.528548e+04 4.528548e+04 0.00 NULL
2017 Department Of Education Admin Accountant 60456.41463 2.478713e+06 79216.53 1.932110e+03 0.000 1849.75 41 0.000000e+00 0.00 2.557930e+06 2.478713e+06 79216.53 NULL
2017 Department Of Education Admin Adm Manager-Non-Mgrl 71130.57143 4.979140e+05 389.29 5.561286e+01 0.000 11.00 7 0.000000e+00 0.00 4.983033e+05 4.979140e+05 389.29 NULL
2017 Department Of Education Admin Administrative Accountant 107191.09091 1.179102e+06 13950.57 1.268234e+03 0.000 201.50 11 0.000000e+00 0.00 1.193053e+06 1.179102e+06 13950.57 NULL
2017 Department Of Education Admin Administrative Assistant To Community Education Council 40884.15789 7.767990e+05 211.23 1.111737e+01 0.000 5.00 19 0.000000e+00 0.00 7.770102e+05 7.767990e+05 211.23 NULL
2017 Department Of Education Admin Administrative Community Relations Specialist 91668.72222 1.650037e+06 6365.90 3.536611e+02 0.000 202.75 18 0.000000e+00 0.00 1.656403e+06 1.650037e+06 6365.90 NULL
2017 Department Of Education Admin Administrative Education Analyst 102675.35635 4.610124e+07 4575.48 1.019038e+01 0.000 67.50 449 0.000000e+00 0.00 4.610581e+07 4.610124e+07 4575.48 NULL
2017 Department Of Education Admin Administrative Education Officer 99449.90395 5.797929e+07 3955.77 6.785197e+00 0.000 270.00 583 0.000000e+00 0.00 5.798325e+07 5.797929e+07 3955.77 NULL
2017 Department Of Education Admin Administrative Management Auditor 104452.10000 1.044521e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.044521e+06 1.044521e+06 0.00 NULL
2017 Department Of Education Admin Administrative Manager 108275.07692 1.407576e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.407576e+06 1.407576e+06 0.00 NULL
2017 Department Of Education Admin Administrative Procurement Analyst 88838.06061 2.931656e+06 15454.81 4.683276e+02 0.000 240.00 33 0.000000e+00 0.00 2.947111e+06 2.931656e+06 15454.81 NULL
2017 Department Of Education Admin Administrative Public Health Nurse 145461.50000 2.909230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.909230e+05 2.909230e+05 0.00 NULL
2017 Department Of Education Admin Administrative Public Information Specialist 92642.61111 1.667567e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.667567e+06 1.667567e+06 0.00 NULL
2017 Department Of Education Admin Administrative Quality Assurance Specialist 95998.60870 2.207968e+06 20805.09 9.045691e+02 0.000 419.25 23 0.000000e+00 0.00 2.228773e+06 2.207968e+06 20805.09 NULL
2017 Department Of Education Admin Administrative Retirement Benefits Specialist 129504.16667 7.770250e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.770250e+05 7.770250e+05 0.00 NULL
2017 Department Of Education Admin Administrative School Food Service Manager 101649.21053 1.931335e+06 3548.20 1.867474e+02 0.000 85.25 19 0.000000e+00 0.00 1.934883e+06 1.931335e+06 3548.20 NULL
2017 Department Of Education Admin Administrative Space Analyst 109066.58333 1.308799e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.308799e+06 1.308799e+06 0.00 NULL
2017 Department Of Education Admin Administrative Staff Analyst 114434.17358 3.032506e+07 1438.69 5.429019e+00 0.000 40.00 265 0.000000e+00 0.00 3.032649e+07 3.032506e+07 1438.69 NULL
2017 Department Of Education Admin Administrative Storekeeper 89186.50000 1.783730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.783730e+05 1.783730e+05 0.00 NULL
2017 Department Of Education Admin Agency Attorney 90453.51190 1.519619e+07 0.00 0.000000e+00 0.000 0.00 168 0.000000e+00 0.00 1.519619e+07 1.519619e+07 0.00 NULL
2017 Department Of Education Admin Agency Attorney Interne 70140.00000 7.014000e+04 260.90 2.609000e+02 260.900 14.00 1 2.609000e+02 260.90 7.040090e+04 7.040090e+04 0.00 NULL
2017 Department Of Education Admin Architect 92251.20000 4.612560e+05 11965.07 2.393014e+03 151.810 204.50 5 1.518100e+02 759.05 4.732211e+05 4.620150e+05 11206.02 NULL
2017 Department Of Education Admin Area Manager Of School Maintenance 125545.38462 3.264180e+06 78.68 3.026154e+00 0.000 0.00 26 0.000000e+00 0.00 3.264259e+06 3.264180e+06 78.68 NULL
2017 Department Of Education Admin Asbestos Handler 79890.66667 7.190160e+05 231908.65 2.576763e+04 22794.320 4067.00 9 2.279432e+04 205148.88 9.509247e+05 9.241649e+05 26759.77 NULL
2017 Department Of Education Admin Asbestos Hazard Investigator 65060.00000 6.506000e+04 19287.73 1.928773e+04 19287.730 389.25 1 1.928773e+04 19287.73 8.434773e+04 8.434773e+04 0.00 NULL
2017 Department Of Education Admin Assistant Accountant 58775.00000 5.877500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.877500e+04 5.877500e+04 0.00 NULL
2017 Department Of Education Admin Assistant Architect 79472.00000 7.947200e+04 849.60 8.496000e+02 849.600 14.50 1 8.496000e+02 849.60 8.032160e+04 8.032160e+04 0.00 NULL
2017 Department Of Education Admin Assistant Executive Director 133900.00000 1.339000e+05 4177.19 4.177190e+03 4177.190 31.00 1 4.177190e+03 4177.19 1.380772e+05 1.380772e+05 0.00 NULL
2017 Department Of Education Admin Associate Education Analyst 89356.40678 5.272028e+06 32003.00 5.424237e+02 0.000 558.25 59 0.000000e+00 0.00 5.304031e+06 5.272028e+06 32003.00 NULL
2017 Department Of Education Admin Associate Education Officer 90522.69231 2.353590e+06 11327.85 4.356865e+02 0.000 183.25 26 0.000000e+00 0.00 2.364918e+06 2.353590e+06 11327.85 NULL
2017 Department Of Education Admin Associate Fingerprint Technician 41616.28571 2.913140e+05 50292.57 7.184653e+03 136.100 1749.25 7 1.361000e+02 952.70 3.416066e+05 2.922667e+05 49339.87 NULL
2017 Department Of Education Admin Associate Human Rights Specialist 92968.00000 9.296800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.296800e+04 9.296800e+04 0.00 NULL
2017 Department Of Education Admin Associate Investigator 65762.00000 6.576200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.576200e+04 6.576200e+04 0.00 NULL
2017 Department Of Education Admin Associate Project Manager 81864.00000 8.186400e+04 12375.23 1.237523e+04 12375.230 215.50 1 1.237523e+04 12375.23 9.423923e+04 9.423923e+04 0.00 NULL
2017 Department Of Education Admin Associate Public Information Specialist 54620.50000 1.092410e+05 9469.98 4.734990e+03 4734.990 215.75 2 4.734990e+03 9469.98 1.187110e+05 1.187110e+05 0.00 NULL
2017 Department Of Education Admin Associate Quality Assurance Specialist 63795.29091 3.508741e+06 259848.05 4.724510e+03 3204.840 6288.50 55 3.204840e+03 176266.20 3.768589e+06 3.685007e+06 83581.85 NULL
2017 Department Of Education Admin Associate Retirement Benefits Examiner 59996.66667 2.699850e+06 352173.15 7.826070e+03 2307.240 8014.00 45 2.307240e+03 103825.80 3.052023e+06 2.803676e+06 248347.35 NULL
2017 Department Of Education Admin Associate School Food Service Manager 66515.06452 4.123934e+06 146125.41 2.356861e+03 1518.335 3601.25 62 1.518335e+03 94136.77 4.270059e+06 4.218071e+06 51988.64 NULL
2017 Department Of Education Admin Associate Staff Analyst 79057.77778 7.115200e+05 3042.84 3.380933e+02 0.000 64.50 9 0.000000e+00 0.00 7.145628e+05 7.115200e+05 3042.84 NULL
2017 Department Of Education Admin Attorney At Law 104835.42880 5.241771e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.241771e+05 5.241771e+05 0.00 NULL
2017 Department Of Education Admin Bookkeeper 46414.54000 2.320727e+06 41393.44 8.278688e+02 0.000 1100.75 50 0.000000e+00 0.00 2.362120e+06 2.320727e+06 41393.44 NULL
2017 Department Of Education Admin Bricklayer NA NA 9141.50 3.047167e+03 3265.770 94.00 3 3.047167e+03 9141.50 NA NA NA NULL
2017 Department Of Education Admin Carpenter NA NA 504710.45 8.011277e+03 8442.190 6479.50 63 8.011277e+03 504710.45 NA NA NA NULL
2017 Department Of Education Admin Certified It Administrator 104551.93939 6.900428e+06 66328.87 1.004983e+03 0.000 798.75 66 0.000000e+00 0.00 6.966757e+06 6.900428e+06 66328.87 NULL
2017 Department Of Education Admin Certified It Developer 103065.72222 1.855183e+06 6802.36 3.779089e+02 0.000 59.00 18 0.000000e+00 0.00 1.861985e+06 1.855183e+06 6802.36 NULL
2017 Department Of Education Admin Chauffeur-Attendant 40723.00000 4.072300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.072300e+04 4.072300e+04 0.00 NULL
2017 Department Of Education Admin Chief Administrator Of Impartial Hearings 142510.00000 1.425100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.425100e+05 1.425100e+05 0.00 NULL
2017 Department Of Education Admin Chief Information Technology Officer 183791.50000 3.675830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.675830e+05 3.675830e+05 0.00 NULL
2017 Department Of Education Admin Chief School Business Executive 211979.00000 2.119790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.119790e+05 2.119790e+05 0.00 NULL
2017 Department Of Education Admin City Dentist 27987.00000 2.798700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.798700e+04 2.798700e+04 0.00 NULL
2017 Department Of Education Admin City Elevator Operator 35954.20000 1.797710e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.797710e+05 1.797710e+05 0.00 NULL
2017 Department Of Education Admin City Laborer NA NA 39107.68 2.172649e+03 1622.355 706.50 18 1.622355e+03 29202.39 NA NA NA NULL
2017 Department Of Education Admin City Medical Specialist 77171.45050 1.003229e+06 801.15 6.162692e+01 0.000 10.50 13 0.000000e+00 0.00 1.004030e+06 1.003229e+06 801.15 NULL
2017 Department Of Education Admin City Research Scientist 101315.00000 2.026300e+05 19640.68 9.820340e+03 9820.340 321.75 2 9.820340e+03 19640.68 2.222707e+05 2.222707e+05 0.00 NULL
2017 Department Of Education Admin Civil Engineer 97762.00000 3.910480e+05 26278.47 6.569618e+03 2847.020 414.50 4 2.847020e+03 11388.08 4.173265e+05 4.024361e+05 14890.39 NULL
2017 Department Of Education Admin Clerical Aide 32836.53295 4.597115e+05 643.49 4.596357e+01 0.000 13.25 14 0.000000e+00 0.00 4.603550e+05 4.597115e+05 643.49 NULL
2017 Department Of Education Admin Clerical Associate 44196.16790 1.591062e+07 220137.28 6.114924e+02 0.000 6541.50 360 0.000000e+00 0.00 1.613076e+07 1.591062e+07 220137.28 NULL
2017 Department Of Education Admin Community Assistant 34846.99640 9.687465e+06 180128.17 6.479431e+02 85.950 6034.25 278 8.595000e+01 23894.10 9.867593e+06 9.711359e+06 156234.07 NULL
2017 Department Of Education Admin Community Associate 44386.33185 1.000468e+08 2225460.94 9.873385e+02 354.370 59647.50 2254 3.543700e+02 798749.98 1.022723e+08 1.008455e+08 1426710.96 NULL
2017 Department Of Education Admin Community Coordinator 60035.84100 4.568728e+07 861831.17 1.132498e+03 203.950 18105.75 761 2.039500e+02 155205.95 4.654911e+07 4.584248e+07 706625.22 NULL
2017 Department Of Education Admin Computer Aide-Non-Spvr 50960.38318 5.605642e+05 33181.81 3.016528e+03 8.030 695.00 11 8.030000e+00 88.33 5.937460e+05 5.606525e+05 33093.48 NULL
2017 Department Of Education Admin Computer Associate 73698.04717 7.811993e+06 46700.13 4.405673e+02 0.000 1035.00 106 0.000000e+00 0.00 7.858693e+06 7.811993e+06 46700.13 NULL
2017 Department Of Education Admin Computer Programmer Analyst 55843.12500 4.467450e+05 427.38 5.342250e+01 0.000 17.50 8 0.000000e+00 0.00 4.471724e+05 4.467450e+05 427.38 NULL
2017 Department Of Education Admin Computer Service Technician 51644.90000 3.615143e+06 51765.06 7.395009e+02 0.000 1408.00 70 0.000000e+00 0.00 3.666908e+06 3.615143e+06 51765.06 NULL
2017 Department Of Education Admin Computer Specialist 102558.43256 2.205006e+07 152309.75 7.084174e+02 0.000 1749.50 215 0.000000e+00 0.00 2.220237e+07 2.205006e+07 152309.75 NULL
2017 Department Of Education Admin Computer Systems Manager 129194.15116 1.111070e+07 395.44 4.598140e+00 0.000 32.00 86 0.000000e+00 0.00 1.111109e+07 1.111070e+07 395.44 NULL
2017 Department Of Education Admin Confidential Agency Investigator 94759.00000 9.475900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.475900e+04 9.475900e+04 0.00 NULL
2017 Department Of Education Admin Confidential Investigator 71541.05051 7.082564e+06 0.00 0.000000e+00 0.000 8.00 99 0.000000e+00 0.00 7.082564e+06 7.082564e+06 0.00 NULL
2017 Department Of Education Admin Confidential Strategy Planner 67591.00000 6.759100e+05 172.83 1.728300e+01 0.000 6.50 10 0.000000e+00 0.00 6.760828e+05 6.759100e+05 172.83 NULL
2017 Department Of Education Admin Construction Laborer NA NA 94956.22 4.521725e+03 4193.890 1660.50 21 4.193890e+03 88071.69 NA NA NA NULL
2017 Department Of Education Admin Construction Project Manager 75469.78947 1.433926e+06 169946.76 8.944566e+03 2805.220 2605.75 19 2.805220e+03 53299.18 1.603873e+06 1.487225e+06 116647.58 NULL
2017 Department Of Education Admin Cook 39132.84211 2.230572e+06 55524.89 9.741209e+02 273.020 2071.50 57 2.730200e+02 15562.14 2.286097e+06 2.246134e+06 39962.75 NULL
2017 Department Of Education Admin Counsel To The Chancellor 200850.00000 2.008500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.008500e+05 2.008500e+05 0.00 NULL
2017 Department Of Education Admin Customer Information Representative 50317.21605 1.630278e+07 195465.21 6.032877e+02 29.175 4527.00 324 2.917500e+01 9452.70 1.649824e+07 1.631223e+07 186012.51 NULL
2017 Department Of Education Admin Deputy Auditor General 162506.00000 3.250120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.250120e+05 3.250120e+05 0.00 NULL
2017 Department Of Education Admin Deputy Chancellor Financial Affairs 197425.00000 1.974250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.974250e+05 1.974250e+05 0.00 NULL
2017 Department Of Education Admin Deputy Executive Director 184473.00000 1.844730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.844730e+05 1.844730e+05 0.00 NULL
2017 Department Of Education Admin Deputy Executive Director Of Financial Operations 131129.00000 1.311290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.311290e+05 1.311290e+05 0.00 NULL
2017 Department Of Education Admin Deputy Inspector General 122800.00000 1.228000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.228000e+05 1.228000e+05 0.00 NULL
2017 Department Of Education Admin Director 164891.00000 1.648910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.648910e+05 1.648910e+05 0.00 NULL
2017 Department Of Education Admin Director Of Audit And Investigation 152361.00000 1.523610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.523610e+05 1.523610e+05 0.00 NULL
2017 Department Of Education Admin Director Of Equal Opportunity 145559.00000 1.455590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.455590e+05 1.455590e+05 0.00 NULL
2017 Department Of Education Admin District Manager Of Administration And Business Affairs 89517.78571 1.253249e+06 7158.85 5.113464e+02 0.000 170.75 14 0.000000e+00 0.00 1.260408e+06 1.253249e+06 7158.85 NULL
2017 Department Of Education Admin Education Analyst 69764.25000 5.581140e+05 4709.68 5.887100e+02 0.000 79.25 8 0.000000e+00 0.00 5.628237e+05 5.581140e+05 4709.68 NULL
2017 Department Of Education Admin Education Analyst Trainee 32059.29808 1.378550e+06 4187.24 9.737767e+01 0.000 175.75 43 0.000000e+00 0.00 1.382737e+06 1.378550e+06 4187.24 NULL
2017 Department Of Education Admin Education Officer 75433.76774 1.169223e+07 63287.47 4.083063e+02 0.000 1430.25 155 0.000000e+00 0.00 1.175552e+07 1.169223e+07 63287.47 NULL
2017 Department Of Education Admin Educational Management Associate 168246.07407 4.542644e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 4.542644e+06 4.542644e+06 0.00 NULL
2017 Department Of Education Admin Electrician NA NA 1416870.61 1.133496e+04 3655.750 15685.75 125 3.655750e+03 456968.75 NA NA NA NULL
2017 Department Of Education Admin Electrician’s Helper NA NA 1279.61 4.265367e+02 3.950 20.00 3 3.950000e+00 11.85 NA NA NA NULL
2017 Department Of Education Admin Equal Rights Compliance Specialist 64767.36364 1.424882e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 1.424882e+06 1.424882e+06 0.00 NULL
2017 Department Of Education Admin Executive Agency Counsel 123660.08772 7.048625e+06 0.00 0.000000e+00 0.000 0.00 57 0.000000e+00 0.00 7.048625e+06 7.048625e+06 0.00 NULL
2017 Department Of Education Admin Executive Director 204970.00000 2.049700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.049700e+05 2.049700e+05 0.00 NULL
2017 Department Of Education Admin Exterminator 37779.04762 7.933600e+05 19914.22 9.482962e+02 464.380 749.75 21 4.643800e+02 9751.98 8.132742e+05 8.031120e+05 10162.24 NULL
2017 Department Of Education Admin Furniture Maintainer NA NA 1747.80 1.747800e+03 1747.800 30.00 1 1.747800e+03 1747.80 NA NA NA NULL
2017 Department Of Education Admin Glazier NA NA 50768.43 4.230703e+03 2209.400 495.50 12 2.209400e+03 26512.80 NA NA NA NULL
2017 Department Of Education Admin Health Services Manager 99637.23529 1.693833e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.693833e+06 1.693833e+06 0.00 NULL
2017 Department Of Education Admin Industrial Hygienist 69814.50000 1.396290e+05 23541.88 1.177094e+04 11770.940 439.50 2 1.177094e+04 23541.88 1.631709e+05 1.631709e+05 0.00 NULL
2017 Department Of Education Admin Interpreter 48288.16000 9.657632e+04 1445.75 7.228750e+02 722.875 23.00 2 7.228750e+02 1445.75 9.802207e+04 9.802207e+04 0.00 NULL
2017 Department Of Education Admin Interpreter/Translator 58862.92857 1.648162e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 1.648162e+06 1.648162e+06 0.00 NULL
2017 Department Of Education Admin Investigator 47663.00000 4.766300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.766300e+04 4.766300e+04 0.00 NULL
2017 Department Of Education Admin Investigator Empl Disc 56608.73333 1.698262e+06 20782.25 6.927417e+02 0.000 583.75 30 0.000000e+00 0.00 1.719044e+06 1.698262e+06 20782.25 NULL
2017 Department Of Education Admin Investment Trustee - Deferred Compensation 1.00000 1.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+00 1.000000e+00 0.00 NULL
2017 Department Of Education Admin Legal Secretarial Assistant - Al 1 Only 41024.00000 4.102400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.102400e+04 4.102400e+04 0.00 NULL
2017 Department Of Education Admin Legal Secretarial Assistant Al 2,3,4 Only 47264.00000 9.452800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.452800e+04 9.452800e+04 0.00 NULL
2017 Department Of Education Admin Locksmith NA NA 3196.80 7.992000e+02 444.000 82.50 4 4.440000e+02 1776.00 NA NA NA NULL
2017 Department Of Education Admin Machinist NA NA 378435.79 8.600813e+03 2444.125 6029.75 44 2.444125e+03 107541.50 NA NA NA NULL
2017 Department Of Education Admin Machinist’s Helper NA NA 26321.11 8.773703e+03 288.320 423.75 3 2.883200e+02 864.96 NA NA NA NULL
2017 Department Of Education Admin Maintenance Worker NA NA 1980.54 3.300900e+02 0.000 47.50 6 0.000000e+00 0.00 NA NA NA NULL
2017 Department Of Education Admin Management Auditor 64293.44444 1.157282e+06 7550.61 4.194783e+02 0.000 202.75 18 0.000000e+00 0.00 1.164833e+06 1.157282e+06 7550.61 NULL
2017 Department Of Education Admin Management Auditor Trainee 46094.20000 2.304710e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.304710e+05 2.304710e+05 0.00 NULL
2017 Department Of Education Admin Mechanical Engineer 86237.00000 8.623700e+04 23670.95 2.367095e+04 23670.950 389.50 1 2.367095e+04 23670.95 1.099079e+05 1.099079e+05 0.00 NULL
2017 Department Of Education Admin Mechanical Engineering Intern 47859.00000 9.571800e+04 776.73 3.883650e+02 388.365 31.75 2 3.883650e+02 776.73 9.649473e+04 9.649473e+04 0.00 NULL
2017 Department Of Education Admin Media Services Technician 57924.00000 1.158480e+05 123.79 6.189500e+01 61.895 9.25 2 6.189500e+01 123.79 1.159718e+05 1.159718e+05 0.00 NULL
2017 Department Of Education Admin Mental Health Worker 41914.00000 8.382800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.382800e+04 8.382800e+04 0.00 NULL
2017 Department Of Education Admin Motor Vehicle Operator 44730.31250 7.156850e+05 144092.63 9.005789e+03 9569.435 4315.50 16 9.005789e+03 144092.63 8.597776e+05 8.597776e+05 0.00 NULL
2017 Department Of Education Admin Occupational Therapist 52502.96964 1.280022e+08 133148.30 5.461374e+01 0.000 1941.75 2438 0.000000e+00 0.00 1.281354e+08 1.280022e+08 133148.30 NULL
2017 Department Of Education Admin Office Machine Aide 41890.62500 3.351250e+05 5636.81 7.046013e+02 82.000 252.50 8 8.200000e+01 656.00 3.407618e+05 3.357810e+05 4980.81 NULL
2017 Department Of Education Admin Painter NA NA 18056.45 1.504704e+03 0.000 247.00 12 0.000000e+00 0.00 NA NA NA NULL
2017 Department Of Education Admin Physical Therapist 51195.84059 5.662260e+07 28051.82 2.536331e+01 0.000 401.25 1106 0.000000e+00 0.00 5.665065e+07 5.662260e+07 28051.82 NULL
2017 Department Of Education Admin Plasterer NA NA 161150.32 1.342919e+04 9378.585 2116.25 12 9.378585e+03 112543.02 NA NA NA NULL
2017 Department Of Education Admin Plumber NA NA 676199.98 1.252222e+04 11309.160 5724.25 54 1.130916e+04 610694.64 NA NA NA NULL
2017 Department Of Education Admin Plumber’s Helper NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2017 Department Of Education Admin Principal Administrative Associate 59014.70577 1.357338e+07 283254.64 1.231542e+03 0.000 6549.50 230 0.000000e+00 0.00 1.385664e+07 1.357338e+07 283254.64 NULL
2017 Department Of Education Admin Principal School-Neighborhood Worker 52115.00000 5.211500e+04 1824.11 1.824110e+03 1824.110 42.75 1 1.824110e+03 1824.11 5.393911e+04 5.393911e+04 0.00 NULL
2017 Department Of Education Admin Procurement Analyst 60217.91667 5.058305e+06 118517.51 1.410923e+03 0.000 2544.00 84 0.000000e+00 0.00 5.176823e+06 5.058305e+06 118517.51 NULL
2017 Department Of Education Admin Program Producer 69214.00000 6.921400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.921400e+04 6.921400e+04 0.00 NULL
2017 Department Of Education Admin Public Records Aide 44525.50000 1.781020e+05 7431.38 1.857845e+03 301.450 326.50 4 3.014500e+02 1205.80 1.855334e+05 1.793078e+05 6225.58 NULL
2017 Department Of Education Admin Quality Assurance Specialist 47689.47059 8.107210e+05 19840.37 1.167081e+03 335.820 571.50 17 3.358200e+02 5708.94 8.305614e+05 8.164299e+05 14131.43 NULL
2017 Department Of Education Admin Radio Repair Mechanic NA NA 100273.95 9.115814e+03 12226.950 1386.00 11 9.115814e+03 100273.95 NA NA NA NULL
2017 Department Of Education Admin Research Assistant 55967.53846 7.275780e+05 3262.07 2.509285e+02 0.000 69.25 13 0.000000e+00 0.00 7.308401e+05 7.275780e+05 3262.07 NULL
2017 Department Of Education Admin Roofer NA NA 56209.49 4.014964e+03 3762.135 1055.50 14 3.762135e+03 52669.89 NA NA NA NULL
2017 Department Of Education Admin School Business Manager 76756.58065 1.189727e+07 325481.80 2.099883e+03 0.000 6029.75 155 0.000000e+00 0.00 1.222275e+07 1.189727e+07 325481.80 NULL
2017 Department Of Education Admin School Computer Technology Specialist 49040.71465 1.461413e+07 425814.67 1.428908e+03 0.000 10457.00 298 0.000000e+00 0.00 1.503995e+07 1.461413e+07 425814.67 NULL
2017 Department Of Education Admin School Equipment Maintainer 41288.00000 4.128800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.128800e+04 4.128800e+04 0.00 NULL
2017 Department Of Education Admin School Food Service Manager 50338.67955 2.214902e+07 252334.85 5.734883e+02 70.150 8069.50 440 7.015000e+01 30866.00 2.240135e+07 2.217988e+07 221468.85 NULL
2017 Department Of Education Admin School Lunch Aide 30646.17563 2.565085e+07 1920634.64 2.294665e+03 1719.880 24590.00 837 1.719880e+03 1439539.56 2.757148e+07 2.709039e+07 481095.08 NULL
2017 Department Of Education Admin School Lunch Assistant 39208.26263 3.881618e+06 146334.19 1.478123e+03 78.950 5541.75 99 7.895000e+01 7816.05 4.027952e+06 3.889434e+06 138518.14 NULL
2017 Department Of Education Admin School Lunch Loader And Handler 49553.77419 1.536167e+06 160013.40 5.161723e+03 4271.600 4509.25 31 4.271600e+03 132419.60 1.696180e+06 1.668587e+06 27593.80 NULL
2017 Department Of Education Admin School Plant Manager 123726.06383 5.815125e+06 0.00 0.000000e+00 0.000 0.00 47 0.000000e+00 0.00 5.815125e+06 5.815125e+06 0.00 NULL
2017 Department Of Education Admin School-Neighborhood Worker 39802.66667 1.194080e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.194080e+05 1.194080e+05 0.00 NULL
2017 Department Of Education Admin Secretary 45481.47474 3.593037e+06 52473.12 6.642167e+02 0.000 1638.50 79 0.000000e+00 0.00 3.645510e+06 3.593037e+06 52473.12 NULL
2017 Department Of Education Admin Secretary To Community School Board 48290.28571 1.014096e+06 2337.37 1.113033e+02 0.000 57.00 21 0.000000e+00 0.00 1.016433e+06 1.014096e+06 2337.37 NULL
2017 Department Of Education Admin Secretary To The Chancellor 68593.00000 6.859300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.859300e+04 6.859300e+04 0.00 NULL
2017 Department Of Education Admin Secretary To The Counsel To The Chancellor 80587.00000 1.611740e+05 239.48 1.197400e+02 119.740 6.25 2 1.197400e+02 239.48 1.614135e+05 1.614135e+05 0.00 NULL
2017 Department Of Education Admin Secretary To The Deputy Chancellor 81115.00000 1.622300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.622300e+05 1.622300e+05 0.00 NULL
2017 Department Of Education Admin Secretary To The Special Commissioner Investigation Nyc Sch 84644.00000 8.464400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.464400e+04 8.464400e+04 0.00 NULL
2017 Department Of Education Admin Senior Estimator 82982.00000 8.298200e+04 4670.07 4.670070e+03 4670.070 92.25 1 4.670070e+03 4670.07 8.765207e+04 8.765207e+04 0.00 NULL
2017 Department Of Education Admin Senior School Lunch Aide 35551.18147 9.207756e+06 247889.64 9.571029e+02 136.100 9083.50 259 1.361000e+02 35249.90 9.455646e+06 9.243006e+06 212639.74 NULL
2017 Department Of Education Admin Senior School-Neighborhood Worker 47781.00000 1.433430e+05 1067.05 3.556833e+02 62.240 36.25 3 6.224000e+01 186.72 1.444100e+05 1.435297e+05 880.33 NULL
2017 Department Of Education Admin Service Inspector 44391.75000 1.775670e+05 3.64 9.100000e-01 1.030 0.00 4 9.100000e-01 3.64 1.775706e+05 1.775706e+05 0.00 NULL
2017 Department Of Education Admin Sign Language Interpreter 79325.99750 1.903824e+06 31638.34 1.318264e+03 1140.650 566.00 24 1.140650e+03 27375.60 1.935462e+06 1.931200e+06 4262.74 NULL
2017 Department Of Education Admin Special Assistant To The Chancellor 112703.45455 1.239738e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.239738e+06 1.239738e+06 0.00 NULL
2017 Department Of Education Admin Special Officer 32155.60000 3.215560e+05 3414.61 3.414610e+02 255.000 214.75 10 2.550000e+02 2550.00 3.249706e+05 3.241060e+05 864.61 NULL
2017 Department Of Education Admin Staff Analyst 59927.40000 2.996370e+05 5832.15 1.166430e+03 0.000 148.25 5 0.000000e+00 0.00 3.054692e+05 2.996370e+05 5832.15 NULL
2017 Department Of Education Admin Staff Analyst Trainee 45123.00000 4.512300e+04 445.81 4.458100e+02 445.810 0.00 1 4.458100e+02 445.81 4.556881e+04 4.556881e+04 0.00 NULL
2017 Department Of Education Admin Staff Audiologist 59785.00000 1.195700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.195700e+05 1.195700e+05 0.00 NULL
2017 Department Of Education Admin Staff Nurse 47981.80291 4.543877e+07 3811178.07 4.024475e+03 152.270 55262.75 947 1.522700e+02 144199.69 4.924995e+07 4.558297e+07 3666978.38 NULL
2017 Department Of Education Admin Statistician 59062.00000 5.906200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.906200e+04 5.906200e+04 0.00 NULL
2017 Department Of Education Admin Steam Fitter NA NA 542437.50 1.390865e+04 9680.000 4631.75 39 9.680000e+03 377520.00 NA NA NA NULL
2017 Department Of Education Admin Steam Fitter’s Helper NA NA 34268.63 1.142288e+04 1526.250 383.50 3 1.526250e+03 4578.75 NA NA NA NULL
2017 Department Of Education Admin Stock Worker 38239.54958 5.353537e+05 10372.78 7.409129e+02 0.000 478.75 14 0.000000e+00 0.00 5.457265e+05 5.353537e+05 10372.78 NULL
2017 Department Of Education Admin Strategi Initiative Specialist 56650.00000 5.665000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.665000e+04 5.665000e+04 0.00 NULL
2017 Department Of Education Admin Strategic Initiative Specialist 93807.00000 2.814210e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.814210e+05 2.814210e+05 0.00 NULL
2017 Department Of Education Admin Substance Abuse Prevention & Intervention Specialist 57922.48612 1.882481e+07 35359.88 1.087996e+02 0.000 841.25 325 0.000000e+00 0.00 1.886017e+07 1.882481e+07 35359.88 NULL
2017 Department Of Education Admin Supervising Computer Service Technician 70615.07043 2.471527e+06 55257.49 1.578785e+03 0.000 1095.00 35 0.000000e+00 0.00 2.526785e+06 2.471527e+06 55257.49 NULL
2017 Department Of Education Admin Supervising Therapist 44953.55608 3.281610e+06 7945.35 1.088404e+02 0.000 66.75 73 0.000000e+00 0.00 3.289555e+06 3.281610e+06 7945.35 NULL
2017 Department Of Education Admin Supervisor 73097.66667 2.192930e+05 16770.61 5.590203e+03 4175.000 309.25 3 4.175000e+03 12525.00 2.360636e+05 2.318180e+05 4245.61 NULL
2017 Department Of Education Admin Supervisor Bricklayer NA NA 21731.06 2.173106e+04 21731.060 262.50 1 2.173106e+04 21731.06 NA NA NA NULL
2017 Department Of Education Admin Supervisor Carpenter NA NA 81593.84 1.165626e+04 12400.360 1036.50 7 1.165626e+04 81593.84 NA NA NA NULL
2017 Department Of Education Admin Supervisor Electrician NA NA 190169.55 1.267797e+04 3399.050 1869.00 15 3.399050e+03 50985.75 NA NA NA NULL
2017 Department Of Education Admin Supervisor Of Electrical Installations & Maintenance 72517.78261 1.667909e+06 174079.82 7.568688e+03 3220.800 3354.50 23 3.220800e+03 74078.40 1.841989e+06 1.741987e+06 100001.42 NULL
2017 Department Of Education Admin Supervisor Of Mechanical Installations & Maintenance 75732.44444 1.363184e+06 190085.71 1.056032e+04 8851.165 3373.00 18 8.851165e+03 159320.97 1.553270e+06 1.522505e+06 30764.74 NULL
2017 Department Of Education Admin Supervisor Of Mechanics NA NA 396111.46 1.800507e+04 13844.800 4559.50 22 1.384480e+04 304585.60 NA NA NA NULL
2017 Department Of Education Admin Supervisor Of Nurses 48802.20156 1.854484e+06 25245.91 6.643661e+02 0.000 267.50 38 0.000000e+00 0.00 1.879730e+06 1.854484e+06 25245.91 NULL
2017 Department Of Education Admin Supervisor Of Office Machine Operations 43247.60000 2.162380e+05 245.36 4.907200e+01 0.000 22.00 5 0.000000e+00 0.00 2.164834e+05 2.162380e+05 245.36 NULL
2017 Department Of Education Admin Supervisor Of Stock Workers 59301.00000 1.186020e+05 460.69 2.303450e+02 230.345 17.50 2 2.303450e+02 460.69 1.190627e+05 1.190627e+05 0.00 NULL
2017 Department Of Education Admin Supervisor Painter NA NA 31282.74 1.042758e+04 9971.100 430.50 3 9.971100e+03 29913.30 NA NA NA NULL
2017 Department Of Education Admin Supervisor Plasterer NA NA 42076.16 2.103808e+04 21038.080 569.50 2 2.103808e+04 42076.16 NA NA NA NULL
2017 Department Of Education Admin Supervisor Plumber NA NA 205382.19 2.934031e+04 21304.090 1367.25 7 2.130409e+04 149128.63 NA NA NA NULL
2017 Department Of Education Admin Supervisor Roofer NA NA 17586.37 5.862123e+03 7596.350 340.50 3 5.862123e+03 17586.37 NA NA NA NULL
2017 Department Of Education Admin Supervisor Steamfitter NA NA 96441.50 2.411038e+04 12776.750 796.25 4 1.277675e+04 51107.00 NA NA NA NULL
2017 Department Of Education Admin Telecommunication Manager 119960.00000 2.399200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.399200e+05 2.399200e+05 0.00 NULL
2017 Department Of Education Admin Telecommunications Associate 75265.27778 1.354775e+06 10246.59 5.692550e+02 0.000 137.50 18 0.000000e+00 0.00 1.365022e+06 1.354775e+06 10246.59 NULL
2017 Department Of Education Admin Thermostat Repairer NA NA 56726.54 5.672654e+03 1136.080 493.50 10 1.136080e+03 11360.80 NA NA NA NULL
2017 Department Of Education Admin Transportation Inspector 42666.00000 4.266600e+04 2401.07 2.401070e+03 2401.070 70.25 1 2.401070e+03 2401.07 4.506707e+04 4.506707e+04 0.00 NULL
2017 Department Of Finance *Certified Local Area Network Administrator 87776.00000 8.777600e+04 17906.48 1.790648e+04 17906.480 299.00 1 1.790648e+04 17906.48 1.056825e+05 1.056825e+05 0.00 NULL
2017 Department Of Finance Accountant 65489.91667 7.858790e+05 19123.91 1.593659e+03 123.480 410.75 12 1.234800e+02 1481.76 8.050029e+05 7.873608e+05 17642.15 NULL
2017 Department Of Finance Adm Manager-Non-Mgrl 76235.17949 5.946344e+06 84415.63 1.082252e+03 0.000 1716.50 78 0.000000e+00 0.00 6.030760e+06 5.946344e+06 84415.63 NULL
2017 Department Of Finance Admin Contract Specialist 105829.60000 5.291480e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.291480e+05 5.291480e+05 0.00 NULL
2017 Department Of Finance Administrative Accountant 97256.57143 6.807960e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.807960e+05 6.807960e+05 0.00 NULL
2017 Department Of Finance Administrative Assessor 131260.33333 1.181343e+06 717.26 7.969556e+01 0.000 12.00 9 0.000000e+00 0.00 1.182060e+06 1.181343e+06 717.26 NULL
2017 Department Of Finance Administrative City Planner 130681.50000 2.613630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.613630e+05 2.613630e+05 0.00 NULL
2017 Department Of Finance Administrative Deputy Register 111064.00000 3.331920e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.331920e+05 3.331920e+05 0.00 NULL
2017 Department Of Finance Administrative Investigator 123395.33333 3.701860e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.701860e+05 3.701860e+05 0.00 NULL
2017 Department Of Finance Administrative Labor Relations Analyst 112758.57143 7.893100e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.893100e+05 7.893100e+05 0.00 NULL
2017 Department Of Finance Administrative Management Auditor 110196.00000 2.203920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.203920e+05 2.203920e+05 0.00 NULL
2017 Department Of Finance Administrative Manager 106810.00000 3.204300e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.204300e+05 3.204300e+05 0.00 NULL
2017 Department Of Finance Administrative Procurement Analyst 94289.00000 3.771560e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.771560e+05 3.771560e+05 0.00 NULL
2017 Department Of Finance Administrative Public Information Specialist 102472.66667 3.074180e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.074180e+05 3.074180e+05 0.00 NULL
2017 Department Of Finance Administrative Space Analyst 82765.50000 1.655310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.655310e+05 1.655310e+05 0.00 NULL
2017 Department Of Finance Administrative Staff Analyst 104037.47857 1.456525e+07 90441.92 6.460137e+02 0.000 1632.00 140 0.000000e+00 0.00 1.465569e+07 1.456525e+07 90441.92 NULL
2017 Department Of Finance Administrative Storekeeper 106020.50000 2.120410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.120410e+05 2.120410e+05 0.00 NULL
2017 Department Of Finance Administrative Supervisor Of Building Maintenance 90958.50000 1.819170e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.819170e+05 1.819170e+05 0.00 NULL
2017 Department Of Finance Administrative Tax Auditor 109704.88889 3.949376e+06 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 3.949376e+06 3.949376e+06 0.00 NULL
2017 Department Of Finance Agency Attorney 87343.29630 2.358269e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 2.358269e+06 2.358269e+06 0.00 NULL
2017 Department Of Finance Agency Attorney Interne 66636.00000 6.663600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.663600e+04 6.663600e+04 0.00 NULL
2017 Department Of Finance Agency Chief Contracting Officer 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2017 Department Of Finance Assistant City Assessor 39875.42857 1.116512e+06 14402.36 5.143700e+02 0.000 564.25 28 0.000000e+00 0.00 1.130914e+06 1.116512e+06 14402.36 NULL
2017 Department Of Finance Assistant Commissioner 165039.40000 8.251970e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.251970e+05 8.251970e+05 0.00 NULL
2017 Department Of Finance Associate Fraud Investigator 68487.90909 1.506734e+06 151896.75 6.904398e+03 4574.285 3141.25 22 4.574285e+03 100634.27 1.658631e+06 1.607368e+06 51262.48 NULL
2017 Department Of Finance Associate Labor Relations Analyst 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2017 Department Of Finance Associate Staff Analyst 85280.15000 1.705603e+06 19692.73 9.846365e+02 0.000 330.25 20 0.000000e+00 0.00 1.725296e+06 1.705603e+06 19692.73 NULL
2017 Department Of Finance Asst Commissioner 164021.00000 1.640210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.640210e+05 1.640210e+05 0.00 NULL
2017 Department Of Finance Attorney At Law 101608.92857 1.422525e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.422525e+06 1.422525e+06 0.00 NULL
2017 Department Of Finance Cashier 43948.20000 2.197410e+05 452.55 9.051000e+01 0.000 15.00 5 0.000000e+00 0.00 2.201935e+05 2.197410e+05 452.55 NULL
2017 Department Of Finance Certified It Administrator 107515.50000 4.300620e+05 27067.92 6.766980e+03 8129.500 375.00 4 6.766980e+03 27067.92 4.571299e+05 4.571299e+05 0.00 NULL
2017 Department Of Finance Chief Review Assessor 133948.00000 1.339480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339480e+05 1.339480e+05 0.00 NULL
2017 Department Of Finance City Assessor 73329.66102 8.652900e+06 312938.55 2.652022e+03 862.820 5682.50 118 8.628200e+02 101812.76 8.965839e+06 8.754713e+06 211125.79 NULL
2017 Department Of Finance City Collector 130505.00000 1.305050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.305050e+05 1.305050e+05 0.00 NULL
2017 Department Of Finance City Laborer NA NA 62242.73 4.149515e+03 572.000 1130.25 15 5.720000e+02 8580.00 NA NA NA NULL
2017 Department Of Finance City Planner 59102.00000 5.910200e+04 1965.24 1.965240e+03 1965.240 46.25 1 1.965240e+03 1965.24 6.106724e+04 6.106724e+04 0.00 NULL
2017 Department Of Finance City Planning Technician 36238.00000 3.623800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.623800e+04 3.623800e+04 0.00 NULL
2017 Department Of Finance City Register 165452.00000 1.654520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.654520e+05 1.654520e+05 0.00 NULL
2017 Department Of Finance City Research Scientist 85752.53846 1.114783e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.114783e+06 1.114783e+06 0.00 NULL
2017 Department Of Finance City Tax Auditor 62853.42265 2.275294e+07 194041.91 5.360274e+02 0.000 3795.75 362 0.000000e+00 0.00 2.294698e+07 2.275294e+07 194041.91 NULL
2017 Department Of Finance Clerical Aide 36080.65625 1.154581e+06 239.87 7.495938e+00 0.000 18.75 32 0.000000e+00 0.00 1.154821e+06 1.154581e+06 239.87 NULL
2017 Department Of Finance Clerical Associate 41367.63467 1.336175e+07 55998.38 1.733696e+02 0.000 1824.50 323 0.000000e+00 0.00 1.341774e+07 1.336175e+07 55998.38 NULL
2017 Department Of Finance College Aide 5210.50518 6.252606e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 6.252606e+04 6.252606e+04 0.00 NULL
2017 Department Of Finance Commissioner Of Finance 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2017 Department Of Finance Community Assistant 35033.50000 7.006700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.006700e+04 7.006700e+04 0.00 NULL
2017 Department Of Finance Community Associate 50027.90000 5.002790e+05 19157.90 1.915790e+03 234.870 572.00 10 2.348700e+02 2348.70 5.194369e+05 5.026277e+05 16809.20 NULL
2017 Department Of Finance Community Coordinator 70696.33333 2.120890e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.120890e+05 2.120890e+05 0.00 NULL
2017 Department Of Finance Community Service Aide 33049.00000 3.304900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.304900e+04 3.304900e+04 0.00 NULL
2017 Department Of Finance Computer Aide-Non-Spvr 51024.00000 2.040960e+05 61.62 1.540500e+01 0.000 2.25 4 0.000000e+00 0.00 2.041576e+05 2.040960e+05 61.62 NULL
2017 Department Of Finance Computer Associate 71095.52941 2.417248e+06 23640.65 6.953132e+02 0.000 527.25 34 0.000000e+00 0.00 2.440889e+06 2.417248e+06 23640.65 NULL
2017 Department Of Finance Computer Programmer Analyst 67286.63636 7.401530e+05 1024.80 9.316364e+01 0.000 21.25 11 0.000000e+00 0.00 7.411778e+05 7.401530e+05 1024.80 NULL
2017 Department Of Finance Computer Specialist 99577.79167 9.559468e+06 42863.26 4.464923e+02 0.000 794.50 96 0.000000e+00 0.00 9.602331e+06 9.559468e+06 42863.26 NULL
2017 Department Of Finance Computer Systems Manager 127317.74380 1.540545e+07 0.00 0.000000e+00 0.000 0.00 121 0.000000e+00 0.00 1.540545e+07 1.540545e+07 0.00 NULL
2017 Department Of Finance Counsel 187528.00000 1.875280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.875280e+05 1.875280e+05 0.00 NULL
2017 Department Of Finance Deputy City Sheriff - Non-Spvr 68194.97600 8.524372e+06 1870579.28 1.496463e+04 11003.070 33738.35 125 1.100307e+04 1375383.75 1.039495e+07 9.899756e+06 495195.53 NULL
2017 Department Of Finance Deputy Commissioner 196831.75000 7.873270e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.873270e+05 7.873270e+05 0.00 NULL
2017 Department Of Finance Director Of Public Information 121518.00000 1.215180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.215180e+05 1.215180e+05 0.00 NULL
2017 Department Of Finance Economist 68120.25000 2.724810e+05 4178.88 1.044720e+03 95.115 93.50 4 9.511500e+01 380.46 2.766599e+05 2.728615e+05 3798.42 NULL
2017 Department Of Finance Examiner Of Accounts 89121.00000 1.782420e+05 3181.31 1.590655e+03 1590.655 66.50 2 1.590655e+03 3181.31 1.814233e+05 1.814233e+05 0.00 NULL
2017 Department Of Finance Exec Asst To The Commissioner Of Finance 64296.00000 6.429600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.429600e+04 6.429600e+04 0.00 NULL
2017 Department Of Finance Executive Agency Counsel 138594.85714 2.910492e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 2.910492e+06 2.910492e+06 0.00 NULL
2017 Department Of Finance Executive Program Specialist 184756.00000 1.847560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.847560e+05 1.847560e+05 0.00 NULL
2017 Department Of Finance Fraud Investigator 42845.50000 1.713820e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.713820e+05 1.713820e+05 0.00 NULL
2017 Department Of Finance Graphic Artist 93228.00000 9.322800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.322800e+04 9.322800e+04 0.00 NULL
2017 Department Of Finance Hearing Officer 51724.52841 5.793147e+06 0.00 0.000000e+00 0.000 0.00 112 0.000000e+00 0.00 5.793147e+06 5.793147e+06 0.00 NULL
2017 Department Of Finance Investigator 38617.00000 1.544680e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.544680e+05 1.544680e+05 0.00 NULL
2017 Department Of Finance Investigator Empl Disc 77284.00000 7.728400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.728400e+04 7.728400e+04 0.00 NULL
2017 Department Of Finance Labor Relations Analyst 66743.00000 2.669720e+05 1333.96 3.334900e+02 41.935 66.25 4 4.193500e+01 167.74 2.683060e+05 2.671397e+05 1166.22 NULL
2017 Department Of Finance Labor Relations Analyst Trainee 42393.00000 4.239300e+04 664.30 6.643000e+02 664.300 27.75 1 6.643000e+02 664.30 4.305730e+04 4.305730e+04 0.00 NULL
2017 Department Of Finance Legal Secretarial Assistant Al 2,3,4 Only 49817.00000 4.981700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.981700e+04 4.981700e+04 0.00 NULL
2017 Department Of Finance Management Auditor 83432.20000 4.171610e+05 1330.03 2.660060e+02 0.000 31.50 5 0.000000e+00 0.00 4.184910e+05 4.171610e+05 1330.03 NULL
2017 Department Of Finance Mortgage Tax Examiner 60918.00000 6.091800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.091800e+04 6.091800e+04 0.00 NULL
2017 Department Of Finance Motor Vehicle Operator 41402.66667 1.242080e+05 2566.56 8.555200e+02 0.000 84.25 3 0.000000e+00 0.00 1.267746e+05 1.242080e+05 2566.56 NULL
2017 Department Of Finance Motor Vehicle Supervisor 53969.00000 5.396900e+04 1356.98 1.356980e+03 1356.980 35.00 1 1.356980e+03 1356.98 5.532598e+04 5.532598e+04 0.00 NULL
2017 Department Of Finance Principal Administrative Associate 58374.83696 1.611146e+07 219113.16 7.938883e+02 0.000 5002.50 276 0.000000e+00 0.00 1.633057e+07 1.611146e+07 219113.16 NULL
2017 Department Of Finance Procurement Analyst 67956.00000 4.077360e+05 15759.94 2.626657e+03 0.000 322.75 6 0.000000e+00 0.00 4.234959e+05 4.077360e+05 15759.94 NULL
2017 Department Of Finance Public Records Aide 38986.00000 3.898600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.898600e+04 3.898600e+04 0.00 NULL
2017 Department Of Finance Secretary 47913.33333 2.874800e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.874800e+05 2.874800e+05 0.00 NULL
2017 Department Of Finance Secretary Of Comm 86798.00000 8.679800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.679800e+04 8.679800e+04 0.00 NULL
2017 Department Of Finance Secretary To Deputy Commissioner 63805.00000 1.276100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.276100e+05 1.276100e+05 0.00 NULL
2017 Department Of Finance Senior Estimator 81985.00000 8.198500e+04 750.01 7.500100e+02 750.010 16.50 1 7.500100e+02 750.01 8.273501e+04 8.273501e+04 0.00 NULL
2017 Department Of Finance Senior Photographer 57020.00000 5.702000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.702000e+04 5.702000e+04 0.00 NULL
2017 Department Of Finance Staff Analyst 65400.14286 1.373403e+06 42589.36 2.028065e+03 0.000 916.50 21 0.000000e+00 0.00 1.415992e+06 1.373403e+06 42589.36 NULL
2017 Department Of Finance Summer College Intern 2034.41083 7.120438e+04 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 7.120438e+04 7.120438e+04 0.00 NULL
2017 Department Of Finance Summer Graduate Intern 3626.31074 7.615253e+04 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 7.615253e+04 7.615253e+04 0.00 NULL
2017 Department Of Finance Supervising Computer Service Technician 65806.00000 6.580600e+04 590.05 5.900500e+02 590.050 15.25 1 5.900500e+02 590.05 6.639605e+04 6.639605e+04 0.00 NULL
2017 Department Of Finance Supervising Deputy Sheriff - Al 1 Only 40 Hr 105432.15385 1.370618e+06 290863.80 2.237414e+04 17561.760 3461.58 13 1.756176e+04 228302.88 1.661482e+06 1.598921e+06 62560.92 NULL
2017 Department Of Finance Supervising Special Officer 54953.83333 3.297230e+05 15760.31 2.626718e+03 268.885 437.25 6 2.688850e+02 1613.31 3.454833e+05 3.313363e+05 14147.00 NULL
2017 Department Of Finance Tax Map Cartographer 66865.66667 2.005970e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.005970e+05 2.005970e+05 0.00 NULL
2017 Department Of Finance Telecommunications Associate 46510.00000 4.651000e+04 3013.51 3.013510e+03 3013.510 90.25 1 3.013510e+03 3013.51 4.952351e+04 4.952351e+04 0.00 NULL
2017 Department Of Investigation Adm Manager-Non-Mgrl 73327.54545 8.066030e+05 17821.18 1.620107e+03 760.870 387.00 11 7.608700e+02 8369.57 8.244242e+05 8.149726e+05 9451.61 NULL
2017 Department Of Investigation Administrative Manager 113118.00000 3.393540e+05 3245.88 1.081960e+03 0.000 40.25 3 0.000000e+00 0.00 3.425999e+05 3.393540e+05 3245.88 NULL
2017 Department Of Investigation Administrative Public Information Specialist 123600.00000 3.708000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.708000e+05 3.708000e+05 0.00 NULL
2017 Department Of Investigation Administrative Staff Analyst 117470.66667 3.524120e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.524120e+05 3.524120e+05 0.00 NULL
2017 Department Of Investigation Assistant Commissioner 162850.00000 3.257000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.257000e+05 3.257000e+05 0.00 NULL
2017 Department Of Investigation Associate Public Information Specialist 90177.00000 9.017700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.017700e+04 9.017700e+04 0.00 NULL
2017 Department Of Investigation Certified It Administrator 105875.00000 1.058750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.058750e+05 1.058750e+05 0.00 NULL
2017 Department Of Investigation Clerical Associate 48069.90000 4.806990e+05 1751.78 1.751780e+02 0.000 57.00 10 0.000000e+00 0.00 4.824508e+05 4.806990e+05 1751.78 NULL
2017 Department Of Investigation Commissioner 220845.00000 2.208450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.208450e+05 2.208450e+05 0.00 NULL
2017 Department Of Investigation Community Assistant 26759.25563 1.070370e+05 1012.16 2.530400e+02 0.000 23.75 4 0.000000e+00 0.00 1.080492e+05 1.070370e+05 1012.16 NULL
2017 Department Of Investigation Community Associate 45656.73667 1.369702e+06 35324.93 1.177498e+03 0.000 1110.75 30 0.000000e+00 0.00 1.405027e+06 1.369702e+06 35324.93 NULL
2017 Department Of Investigation Community Coordinator 61571.00000 4.309970e+05 15583.98 2.226283e+03 492.230 377.50 7 4.922300e+02 3445.61 4.465810e+05 4.344426e+05 12138.37 NULL
2017 Department Of Investigation Computer Associate 68963.80000 3.448190e+05 3955.77 7.911540e+02 444.720 87.25 5 4.447200e+02 2223.60 3.487748e+05 3.470426e+05 1732.17 NULL
2017 Department Of Investigation Computer Specialist 100048.66667 3.001460e+05 10703.46 3.567820e+03 154.180 132.00 3 1.541800e+02 462.54 3.108495e+05 3.006085e+05 10240.92 NULL
2017 Department Of Investigation Computer Systems Manager 115915.75000 9.273260e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.273260e+05 9.273260e+05 0.00 NULL
2017 Department Of Investigation Confidential Investigator 60452.02198 5.501134e+06 218475.58 2.400831e+03 484.770 5490.50 91 4.847700e+02 44114.07 5.719610e+06 5.545248e+06 174361.51 NULL
2017 Department Of Investigation Confidential Secretary To The Deputy Commissioner 58251.25000 2.330050e+05 8797.85 2.199463e+03 269.365 242.75 4 2.693650e+02 1077.46 2.418029e+05 2.340825e+05 7720.39 NULL
2017 Department Of Investigation Deputy Commissioner 201880.00000 4.037600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.037600e+05 4.037600e+05 0.00 NULL
2017 Department Of Investigation Deputy Inspector General 110271.04348 2.536234e+06 4077.60 1.772870e+02 0.000 75.50 23 0.000000e+00 0.00 2.540312e+06 2.536234e+06 4077.60 NULL
2017 Department Of Investigation Examiner Of Accounts 92650.25000 3.706010e+05 15263.96 3.815990e+03 1577.040 219.75 4 1.577040e+03 6308.16 3.858650e+05 3.769092e+05 8955.80 NULL
2017 Department Of Investigation Examining Attorney 108148.75000 1.730380e+06 3822.45 2.389031e+02 0.000 56.50 16 0.000000e+00 0.00 1.734202e+06 1.730380e+06 3822.45 NULL
2017 Department Of Investigation Executive Director 154870.00000 1.548700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.548700e+05 1.548700e+05 0.00 NULL
2017 Department Of Investigation Inspector General 130661.52000 3.266538e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 3.266538e+06 3.266538e+06 0.00 NULL
2017 Department Of Investigation Office Machine Aide 40888.00000 4.088800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.088800e+04 4.088800e+04 0.00 NULL
2017 Department Of Investigation Principal Administrative Associate 67440.28571 4.720820e+05 12472.85 1.781836e+03 0.000 279.25 7 0.000000e+00 0.00 4.845548e+05 4.720820e+05 12472.85 NULL
2017 Department Of Investigation Procurement Analyst 66775.00000 1.335500e+05 2344.88 1.172440e+03 1172.440 63.50 2 1.172440e+03 2344.88 1.358949e+05 1.358949e+05 0.00 NULL
2017 Department Of Investigation Secretary 50094.33333 1.502830e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.502830e+05 1.502830e+05 0.00 NULL
2017 Department Of Investigation Special Commissioner Of Investigation-Nyc School Dist. Doi 213953.00000 2.139530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.139530e+05 2.139530e+05 0.00 NULL
2017 Department Of Investigation Special Investigator 71469.08527 9.219512e+06 705991.97 5.472806e+03 2796.020 14667.15 129 2.796020e+03 360686.58 9.925504e+06 9.580199e+06 345305.39 NULL
2017 Department Of Investigation Staff Analyst 53727.00000 5.372700e+04 1967.86 1.967860e+03 1967.860 41.00 1 1.967860e+03 1967.86 5.569486e+04 5.569486e+04 0.00 NULL
2017 Department Of Investigation Stock Worker 35190.00000 3.519000e+04 1170.31 1.170310e+03 1170.310 62.50 1 1.170310e+03 1170.31 3.636031e+04 3.636031e+04 0.00 NULL
2017 Department Of Probation Adm Manager-Non-Mgrl 73869.33333 6.648240e+05 13335.24 1.481693e+03 0.000 329.25 9 0.000000e+00 0.00 6.781592e+05 6.648240e+05 13335.24 NULL
2017 Department Of Probation Admin Contract Specialist 56650.00000 5.665000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.665000e+04 5.665000e+04 0.00 NULL
2017 Department Of Probation Administrative Director Of Social Services 147100.00000 2.942000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.942000e+05 2.942000e+05 0.00 NULL
2017 Department Of Probation Administrative Graphic Artist 88500.00000 8.850000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.850000e+04 8.850000e+04 0.00 NULL
2017 Department Of Probation Administrative Probation Officer 94329.02326 4.056148e+06 0.00 0.000000e+00 0.000 0.00 43 0.000000e+00 0.00 4.056148e+06 4.056148e+06 0.00 NULL
2017 Department Of Probation Administrative Procurement Analyst 76740.33750 7.674034e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.674034e+04 7.674034e+04 0.00 NULL
2017 Department Of Probation Administrative Public Information Specialist 85054.00000 1.701080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.701080e+05 1.701080e+05 0.00 NULL
2017 Department Of Probation Administrative Space Analyst 123600.00000 1.236000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.236000e+05 1.236000e+05 0.00 NULL
2017 Department Of Probation Administrative Staff Analyst 111724.00000 1.228964e+06 3147.76 2.861600e+02 0.000 47.50 11 0.000000e+00 0.00 1.232112e+06 1.228964e+06 3147.76 NULL
2017 Department Of Probation Agency Attorney 82947.87500 6.635830e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.635830e+05 6.635830e+05 0.00 NULL
2017 Department Of Probation Agency Chief Contracting Officer 116133.00000 1.161330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.161330e+05 1.161330e+05 0.00 NULL
2017 Department Of Probation Attorney At Law 86793.00000 3.471720e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.471720e+05 3.471720e+05 0.00 NULL
2017 Department Of Probation Bookkeeper 45712.00000 9.142400e+04 1689.86 8.449300e+02 844.930 44.50 2 8.449300e+02 1689.86 9.311386e+04 9.311386e+04 0.00 NULL
2017 Department Of Probation Certified It Administrator 87731.00000 8.773100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.773100e+04 8.773100e+04 0.00 NULL
2017 Department Of Probation City Attendant 38643.00000 3.864300e+04 1869.87 1.869870e+03 1869.870 58.50 1 1.869870e+03 1869.87 4.051287e+04 4.051287e+04 0.00 NULL
2017 Department Of Probation City Laborer NA NA 6767.88 6.767880e+03 6767.880 130.50 1 6.767880e+03 6767.88 NA NA NA NULL
2017 Department Of Probation City Research Scientist 98185.00000 5.891100e+05 14742.14 2.457023e+03 0.000 249.50 6 0.000000e+00 0.00 6.038521e+05 5.891100e+05 14742.14 NULL
2017 Department Of Probation Clerical Associate 39116.51064 1.838476e+06 35251.30 7.500277e+02 0.000 1271.00 47 0.000000e+00 0.00 1.873727e+06 1.838476e+06 35251.30 NULL
2017 Department Of Probation College Aide 7348.23363 5.143764e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.143764e+04 5.143764e+04 0.00 NULL
2017 Department Of Probation Community Associate 43573.75000 1.045770e+06 22710.99 9.462912e+02 0.000 863.25 24 0.000000e+00 0.00 1.068481e+06 1.045770e+06 22710.99 NULL
2017 Department Of Probation Community Coordinator 76201.00000 7.620100e+05 1390.41 1.390410e+02 0.000 34.25 10 0.000000e+00 0.00 7.634004e+05 7.620100e+05 1390.41 NULL
2017 Department Of Probation Community Service Aide 27909.66667 7.535610e+05 8616.05 3.191130e+02 0.000 507.00 27 0.000000e+00 0.00 7.621771e+05 7.535610e+05 8616.05 NULL
2017 Department Of Probation Computer Associate 79873.00000 7.987300e+04 2031.45 2.031450e+03 2031.450 53.50 1 2.031450e+03 2031.45 8.190445e+04 8.190445e+04 0.00 NULL
2017 Department Of Probation Computer Specialist 96977.85714 6.788450e+05 34496.73 4.928104e+03 1335.170 507.75 7 1.335170e+03 9346.19 7.133417e+05 6.881912e+05 25150.54 NULL
2017 Department Of Probation Computer Systems Manager 126336.00000 1.263360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.263360e+05 1.263360e+05 0.00 NULL
2017 Department Of Probation Counsel 167817.00000 1.678170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.678170e+05 1.678170e+05 0.00 NULL
2017 Department Of Probation Custodian 79034.00000 7.903400e+04 7197.34 7.197340e+03 7197.340 158.00 1 7.197340e+03 7197.34 8.623134e+04 8.623134e+04 0.00 NULL
2017 Department Of Probation Deputy Director Of Probation 162872.00000 3.257440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.257440e+05 3.257440e+05 0.00 NULL
2017 Department Of Probation Director Of Probation 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2017 Department Of Probation Executive Agency Counsel 137681.83333 8.260910e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.260910e+05 8.260910e+05 0.00 NULL
2017 Department Of Probation Executive Director Of Administration 167817.00000 1.678170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.678170e+05 1.678170e+05 0.00 NULL
2017 Department Of Probation Executive Program Specialist 115927.00000 1.159270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.159270e+05 1.159270e+05 0.00 NULL
2017 Department Of Probation Principal Administrative Associate 55139.70000 2.205588e+06 24760.36 6.190090e+02 0.000 669.25 40 0.000000e+00 0.00 2.230348e+06 2.205588e+06 24760.36 NULL
2017 Department Of Probation Probation Assistant 26747.50000 1.069900e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.069900e+05 1.069900e+05 0.00 NULL
2017 Department Of Probation Probation Officer 56408.78833 3.384527e+07 730941.01 1.218235e+03 35.110 17665.12 600 3.511000e+01 21066.00 3.457621e+07 3.386634e+07 709875.01 NULL
2017 Department Of Probation Probation Officer Trainee 42333.00000 2.116650e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.116650e+05 2.116650e+05 0.00 NULL
2017 Department Of Probation Procurement Analyst 54061.00000 1.081220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.081220e+05 1.081220e+05 0.00 NULL
2017 Department Of Probation Secretary 39245.64516 1.216615e+06 8459.73 2.728945e+02 0.000 325.00 31 0.000000e+00 0.00 1.225075e+06 1.216615e+06 8459.73 NULL
2017 Department Of Probation Senior Consultant 84460.00000 8.446000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.446000e+04 8.446000e+04 0.00 NULL
2017 Department Of Probation Senior Mental Health Worker 32428.55363 3.891426e+05 11312.92 9.427433e+02 0.000 477.75 12 0.000000e+00 0.00 4.004556e+05 3.891426e+05 11312.92 NULL
2017 Department Of Probation Staff Analyst 62891.66667 5.660250e+05 26640.22 2.960024e+03 0.000 469.25 9 0.000000e+00 0.00 5.926652e+05 5.660250e+05 26640.22 NULL
2017 Department Of Probation Stock Worker 35190.00000 3.519000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.519000e+04 3.519000e+04 0.00 NULL
2017 Department Of Probation Strategic Initiative Specialist 93048.00000 9.304800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.304800e+04 9.304800e+04 0.00 NULL
2017 Department Of Probation Summer College Intern 3159.45509 5.371074e+04 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 5.371074e+04 5.371074e+04 0.00 NULL
2017 Department Of Probation Summer Graduate Intern 3691.79250 7.383585e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.383585e+03 7.383585e+03 0.00 NULL
2017 Department Of Probation Supervising Computer Service Technician 73117.00000 7.311700e+04 43.00 4.300000e+01 43.000 1.00 1 4.300000e+01 43.00 7.316000e+04 7.316000e+04 0.00 NULL
2017 Department Of Probation Supervising Probation Officer 72769.07333 1.091536e+07 260344.32 1.735629e+03 68.765 4998.50 150 6.876500e+01 10314.75 1.117571e+07 1.092568e+07 250029.57 NULL
2017 Department Of Sanitation *Custodial Assistant 35306.00000 3.530600e+04 243.93 2.439300e+02 243.930 22.57 1 2.439300e+02 243.93 3.554993e+04 3.554993e+04 0.00 NULL
2017 Department Of Sanitation Accountant 57467.50000 2.298700e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.298700e+05 2.298700e+05 0.00 NULL
2017 Department Of Sanitation Adm Manager-Non-Mgrl 75581.82609 1.738382e+06 113750.52 4.945675e+03 0.000 2449.50 23 0.000000e+00 0.00 1.852133e+06 1.738382e+06 113750.52 NULL
2017 Department Of Sanitation Admin Community Relations Specialist 97999.66667 2.939990e+05 216.98 7.232667e+01 0.000 4.25 3 0.000000e+00 0.00 2.942160e+05 2.939990e+05 216.98 NULL
2017 Department Of Sanitation Admin Construction Project Manager 91637.00000 9.163700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.163700e+04 9.163700e+04 0.00 NULL
2017 Department Of Sanitation Administrative Accountant 100026.00000 1.000260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000260e+05 1.000260e+05 0.00 NULL
2017 Department Of Sanitation Administrative Architect 111678.00000 3.350340e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.350340e+05 3.350340e+05 0.00 NULL
2017 Department Of Sanitation Administrative Business Promotion Coordinator 91020.00000 1.820400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.820400e+05 1.820400e+05 0.00 NULL
2017 Department Of Sanitation Administrative City Planner 137052.50000 2.741050e+05 8174.69 4.087345e+03 4087.345 103.50 2 4.087345e+03 8174.69 2.822797e+05 2.822797e+05 0.00 NULL
2017 Department Of Sanitation Administrative Community Relations Specialist 144541.50000 2.890830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.890830e+05 2.890830e+05 0.00 NULL
2017 Department Of Sanitation Administrative Construction Project Manager 126588.20000 6.329410e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.329410e+05 6.329410e+05 0.00 NULL
2017 Department Of Sanitation Administrative Engineer 147526.00000 1.327734e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.327734e+06 1.327734e+06 0.00 NULL
2017 Department Of Sanitation Administrative Management Auditor 106214.00000 2.124280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.124280e+05 2.124280e+05 0.00 NULL
2017 Department Of Sanitation Administrative Manager 100460.00000 1.004600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.004600e+05 1.004600e+05 0.00 NULL
2017 Department Of Sanitation Administrative Procurement Analyst 94432.10000 9.443210e+05 32862.28 3.286228e+03 819.615 579.50 10 8.196150e+02 8196.15 9.771833e+05 9.525172e+05 24666.13 NULL
2017 Department Of Sanitation Administrative Project Manager 135716.33333 1.221447e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.221447e+06 1.221447e+06 0.00 NULL
2017 Department Of Sanitation Administrative Public Information Specialist 137961.40000 6.898070e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.898070e+05 6.898070e+05 0.00 NULL
2017 Department Of Sanitation Administrative Quality Assurance Specialist 126985.00000 1.269850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.269850e+05 1.269850e+05 0.00 NULL
2017 Department Of Sanitation Administrative Sanitation Enforcement Agent 91475.00000 9.147500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.147500e+04 9.147500e+04 0.00 NULL
2017 Department Of Sanitation Administrative Staff Analyst 97807.16585 5.085973e+06 176121.81 3.386958e+03 0.000 2793.00 52 0.000000e+00 0.00 5.262094e+06 5.085973e+06 176121.81 NULL
2017 Department Of Sanitation Administrative Supervisor Of Building Maintenance 119947.66667 3.598430e+05 6555.48 2.185160e+03 0.000 12.00 3 0.000000e+00 0.00 3.663985e+05 3.598430e+05 6555.48 NULL
2017 Department Of Sanitation Agency Attorney 92223.59222 8.300123e+05 302.80 3.364444e+01 0.000 5.00 9 0.000000e+00 0.00 8.303151e+05 8.300123e+05 302.80 NULL
2017 Department Of Sanitation Agency Chief Contracting Officer 126175.00000 1.261750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.261750e+05 1.261750e+05 0.00 NULL
2017 Department Of Sanitation Architect 74990.00000 7.499000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.499000e+04 7.499000e+04 0.00 NULL
2017 Department Of Sanitation Assistant Architect 70552.00000 1.411040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.411040e+05 1.411040e+05 0.00 NULL
2017 Department Of Sanitation Assistant Civil Engineer 64870.60000 3.243530e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.243530e+05 3.243530e+05 0.00 NULL
2017 Department Of Sanitation Assistant Electrical Engineer 69498.66667 2.084960e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.084960e+05 2.084960e+05 0.00 NULL
2017 Department Of Sanitation Assistant Mechanical Engineer 63589.50000 1.271790e+05 551.32 2.756600e+02 275.660 15.00 2 2.756600e+02 551.32 1.277303e+05 1.277303e+05 0.00 NULL
2017 Department Of Sanitation Associate Director-Operational Services 95307.00000 9.530700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.530700e+04 9.530700e+04 0.00 NULL
2017 Department Of Sanitation Associate Fingerprint Technician 44204.00000 2.210200e+05 5908.65 1.181730e+03 0.000 193.52 5 0.000000e+00 0.00 2.269286e+05 2.210200e+05 5908.65 NULL
2017 Department Of Sanitation Associate Human Rights Specialist 96275.00000 9.627500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.627500e+04 9.627500e+04 0.00 NULL
2017 Department Of Sanitation Associate Project Manager 85385.23077 1.110008e+06 4937.12 3.797785e+02 0.000 115.00 13 0.000000e+00 0.00 1.114945e+06 1.110008e+06 4937.12 NULL
2017 Department Of Sanitation Associate Public Information Specialist 80446.00000 8.044600e+04 4981.48 4.981480e+03 4981.480 113.00 1 4.981480e+03 4981.48 8.542748e+04 8.542748e+04 0.00 NULL
2017 Department Of Sanitation Associate Public Records Officer 61800.00000 6.180000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.180000e+04 6.180000e+04 0.00 NULL
2017 Department Of Sanitation Associate Quality Assurance Specialist 79450.00000 7.945000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.945000e+04 7.945000e+04 0.00 NULL
2017 Department Of Sanitation Associate Sanitation Enforcement Agent 45687.72881 2.695576e+06 182488.67 3.093028e+03 2542.570 5305.00 59 2.542570e+03 150011.63 2.878065e+06 2.845588e+06 32477.04 NULL
2017 Department Of Sanitation Associate Staff Analyst 78093.39286 2.186615e+06 55715.94 1.989855e+03 54.710 1093.00 28 5.471000e+01 1531.88 2.242331e+06 2.188147e+06 54184.06 NULL
2017 Department Of Sanitation Attorney At Law 98880.50000 3.955220e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.955220e+05 3.955220e+05 0.00 NULL
2017 Department Of Sanitation Auto Machinist NA NA 237319.92 9.888330e+03 10045.140 4051.68 24 9.888330e+03 237319.92 NA NA NA NULL
2017 Department Of Sanitation Auto Mechanic NA NA 6633593.73 1.237611e+04 12445.920 115424.41 536 1.237611e+04 6633593.73 NA NA NA NULL
2017 Department Of Sanitation Automotive Service Worker 41273.80000 8.254760e+05 97460.23 4.873011e+03 4368.390 3327.25 20 4.368390e+03 87367.80 9.229362e+05 9.128438e+05 10092.43 NULL
2017 Department Of Sanitation Blacksmith NA NA 5414.94 5.414940e+03 5414.940 76.00 1 5.414940e+03 5414.94 NA NA NA NULL
2017 Department Of Sanitation Boiler Maker NA NA 16570.44 1.657044e+04 16570.440 215.00 1 1.657044e+04 16570.44 NA NA NA NULL
2017 Department Of Sanitation Bookkeeper 49724.61538 6.464200e+05 1094.89 8.422231e+01 0.000 4.75 13 0.000000e+00 0.00 6.475149e+05 6.464200e+05 1094.89 NULL
2017 Department Of Sanitation Carpenter NA NA 213648.52 1.643450e+04 17121.310 3000.50 13 1.643450e+04 213648.52 NA NA NA NULL
2017 Department Of Sanitation Carriage Upholsterer NA NA 3564.00 1.782000e+03 1782.000 72.00 2 1.782000e+03 3564.00 NA NA NA NULL
2017 Department Of Sanitation Case Mgmt Nurse 85619.00000 8.561900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.561900e+04 8.561900e+04 0.00 NULL
2017 Department Of Sanitation Cement Mason NA NA 67183.69 1.119728e+04 10117.755 704.50 6 1.011775e+04 60706.53 NA NA NA NULL
2017 Department Of Sanitation Certified It Administrator 115322.07143 1.614509e+06 328093.79 2.343527e+04 28094.740 6550.25 14 2.343527e+04 328093.79 1.942603e+06 1.942603e+06 0.00 NULL
2017 Department Of Sanitation Certified It Developer 112979.25192 2.937461e+06 59084.31 2.272473e+03 0.000 1145.50 26 0.000000e+00 0.00 2.996545e+06 2.937461e+06 59084.31 NULL
2017 Department Of Sanitation Chaplain 27393.00000 1.095720e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.095720e+05 1.095720e+05 0.00 NULL
2017 Department Of Sanitation Chauffer Attendant 48424.00000 4.842400e+04 3855.87 3.855870e+03 3855.870 104.93 1 3.855870e+03 3855.87 5.227987e+04 5.227987e+04 0.00 NULL
2017 Department Of Sanitation City Attendant 33708.34375 2.157334e+06 112853.11 1.763330e+03 755.730 4658.65 64 7.557300e+02 48366.72 2.270187e+06 2.205701e+06 64486.39 NULL
2017 Department Of Sanitation City Clinician 118791.40000 1.187914e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.187914e+05 1.187914e+05 0.00 NULL
2017 Department Of Sanitation City Custodial Assistant 41590.00000 8.318000e+04 14592.32 7.296160e+03 7296.160 467.18 2 7.296160e+03 14592.32 9.777232e+04 9.777232e+04 0.00 NULL
2017 Department Of Sanitation City Deputy Medical Director 173169.00000 1.731690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.731690e+05 1.731690e+05 0.00 NULL
2017 Department Of Sanitation City Laborer NA NA 184899.53 9.731554e+03 9858.720 3099.13 19 9.731554e+03 184899.53 NA NA NA NULL
2017 Department Of Sanitation City Medical Specialist 85107.74911 5.957542e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.957542e+05 5.957542e+05 0.00 NULL
2017 Department Of Sanitation City Planner 69194.00000 2.767760e+05 4594.91 1.148727e+03 672.465 100.25 4 6.724650e+02 2689.86 2.813709e+05 2.794659e+05 1905.05 NULL
2017 Department Of Sanitation City Research Scientist 93005.50000 1.860110e+05 4133.41 2.066705e+03 2066.705 69.00 2 2.066705e+03 4133.41 1.901444e+05 1.901444e+05 0.00 NULL
2017 Department Of Sanitation City Seasonal Aide 513.47388 6.998649e+05 0.00 0.000000e+00 0.000 0.00 1363 0.000000e+00 0.00 6.998649e+05 6.998649e+05 0.00 NULL
2017 Department Of Sanitation Civil Engineer 99511.66667 2.985350e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.985350e+05 2.985350e+05 0.00 NULL
2017 Department Of Sanitation Clerical Aide 32714.80952 6.870110e+05 97449.23 4.640440e+03 3941.970 4336.54 21 3.941970e+03 82781.37 7.844602e+05 7.697924e+05 14667.86 NULL
2017 Department Of Sanitation Clerical Associate 40080.36667 1.118242e+07 1204185.74 4.316078e+03 2577.200 40239.97 279 2.577200e+03 719038.80 1.238661e+07 1.190146e+07 485146.94 NULL
2017 Department Of Sanitation College Aide 8686.43969 5.906779e+05 0.00 0.000000e+00 0.000 0.00 68 0.000000e+00 0.00 5.906779e+05 5.906779e+05 0.00 NULL
2017 Department Of Sanitation Commissioner Of Sanitation 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2017 Department Of Sanitation Community Assistant 34985.42857 4.897960e+05 6484.47 4.631764e+02 0.000 230.91 14 0.000000e+00 0.00 4.962805e+05 4.897960e+05 6484.47 NULL
2017 Department Of Sanitation Community Associate 43493.74194 1.348306e+06 34765.96 1.121483e+03 0.000 1176.93 31 0.000000e+00 0.00 1.383072e+06 1.348306e+06 34765.96 NULL
2017 Department Of Sanitation Community Coordinator 60306.11864 3.558061e+06 144632.22 2.451394e+03 1082.600 3479.25 59 1.082600e+03 63873.40 3.702693e+06 3.621934e+06 80758.82 NULL
2017 Department Of Sanitation Computer Aide-Non-Spvr 48779.50000 9.755900e+04 226.51 1.132550e+02 113.255 7.25 2 1.132550e+02 226.51 9.778551e+04 9.778551e+04 0.00 NULL
2017 Department Of Sanitation Computer Associate 73323.80000 1.833095e+06 160413.43 6.416537e+03 2560.950 3007.94 25 2.560950e+03 64023.75 1.993508e+06 1.897119e+06 96389.68 NULL
2017 Department Of Sanitation Computer Programmer Analyst 75894.00000 7.589400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.589400e+04 7.589400e+04 0.00 NULL
2017 Department Of Sanitation Computer Service Technician 42603.00000 4.260300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.260300e+04 4.260300e+04 0.00 NULL
2017 Department Of Sanitation Computer Specialist 96003.44737 3.648131e+06 280037.56 7.369409e+03 2427.115 4399.00 38 2.427115e+03 92230.37 3.928169e+06 3.740361e+06 187807.19 NULL
2017 Department Of Sanitation Computer Systems Manager 134967.10526 7.693125e+06 1265.86 2.220807e+01 0.000 26.00 57 0.000000e+00 0.00 7.694391e+06 7.693125e+06 1265.86 NULL
2017 Department Of Sanitation Construction Laborer NA NA 62329.61 6.232961e+03 4601.315 1082.93 10 4.601315e+03 46013.15 NA NA NA NULL
2017 Department Of Sanitation Construction Project Manager 86900.45455 9.559050e+05 135.16 1.228727e+01 0.000 3.00 11 0.000000e+00 0.00 9.560402e+05 9.559050e+05 135.16 NULL
2017 Department Of Sanitation Counselor 68330.66667 2.049920e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.049920e+05 2.049920e+05 0.00 NULL
2017 Department Of Sanitation Custodian 36432.00000 3.643200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.643200e+04 3.643200e+04 0.00 NULL
2017 Department Of Sanitation Dep Dir Mtr Eq Mntc 146443.00000 2.928860e+05 569.68 2.848400e+02 284.840 0.00 2 2.848400e+02 569.68 2.934557e+05 2.934557e+05 0.00 NULL
2017 Department Of Sanitation Deputy Commissioner 212347.33333 6.370420e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.370420e+05 6.370420e+05 0.00 NULL
2017 Department Of Sanitation Deputy Director Of Motor Equipment Maintenance 141228.14286 9.885970e+05 25574.71 3.653530e+03 2853.350 168.75 7 2.853350e+03 19973.45 1.014172e+06 1.008570e+06 5601.26 NULL
2017 Department Of Sanitation Director Of Building Management 151611.00000 1.516110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.516110e+05 1.516110e+05 0.00 NULL
2017 Department Of Sanitation Director Of Motor Equipment Maintenance 174734.00000 3.494680e+05 46.62 2.331000e+01 23.310 0.00 2 2.331000e+01 46.62 3.495146e+05 3.495146e+05 0.00 NULL
2017 Department Of Sanitation Director Of Motor Equipment Maintenance-Nm 155836.50000 3.116730e+05 9882.03 4.941015e+03 4941.015 90.25 2 4.941015e+03 9882.03 3.215550e+05 3.215550e+05 0.00 NULL
2017 Department Of Sanitation Economist 72799.00000 7.279900e+04 40.50 4.050000e+01 40.500 1.00 1 4.050000e+01 40.50 7.283950e+04 7.283950e+04 0.00 NULL
2017 Department Of Sanitation Electrical Engineer 99835.00000 9.983500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.983500e+04 9.983500e+04 0.00 NULL
2017 Department Of Sanitation Electrician NA NA 592184.53 9.399754e+03 9404.060 9485.45 63 9.399754e+03 592184.53 NA NA NA NULL
2017 Department Of Sanitation Estimator 61104.00000 6.110400e+04 36.54 3.654000e+01 36.540 1.00 1 3.654000e+01 36.54 6.114054e+04 6.114054e+04 0.00 NULL
2017 Department Of Sanitation Executive Agency Counsel 133972.40000 6.698620e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.698620e+05 6.698620e+05 0.00 NULL
2017 Department Of Sanitation Executive Assistant To The Commissioner 97725.00000 1.954500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.954500e+05 1.954500e+05 0.00 NULL
2017 Department Of Sanitation Fraud Investigator 44409.00000 4.440900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.440900e+04 4.440900e+04 0.00 NULL
2017 Department Of Sanitation General Superintendent 129480.00362 3.573648e+07 4572653.65 1.656759e+04 15905.150 50615.33 276 1.590515e+04 4389821.40 4.030913e+07 4.012630e+07 182832.25 NULL
2017 Department Of Sanitation Geologist 84000.00000 8.400000e+04 12896.67 1.289667e+04 12896.670 220.00 1 1.289667e+04 12896.67 9.689667e+04 9.689667e+04 0.00 NULL
2017 Department Of Sanitation Graphic Artist 72232.00000 3.611600e+05 12819.61 2.563922e+03 1576.490 217.28 5 1.576490e+03 7882.45 3.739796e+05 3.690425e+05 4937.16 NULL
2017 Department Of Sanitation High Pressure Plant Tender NA NA 33827.66 4.832523e+03 3126.530 584.50 7 3.126530e+03 21885.71 NA NA NA NULL
2017 Department Of Sanitation Incinerator Facility Manager 104262.00000 1.042620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.042620e+05 1.042620e+05 0.00 NULL
2017 Department Of Sanitation Investigator 51580.22222 4.642220e+05 184.92 2.054667e+01 0.000 8.00 9 0.000000e+00 0.00 4.644069e+05 4.642220e+05 184.92 NULL
2017 Department Of Sanitation Job Training Participant 5832.94947 3.610596e+06 30358.90 4.904507e+01 0.000 1842.25 619 0.000000e+00 0.00 3.640955e+06 3.610596e+06 30358.90 NULL
2017 Department Of Sanitation Laboratory Associate 46615.00000 4.661500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.661500e+04 4.661500e+04 0.00 NULL
2017 Department Of Sanitation Laboratory Microbiologist 54289.00000 5.428900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.428900e+04 5.428900e+04 0.00 NULL
2017 Department Of Sanitation Letterer And Sign Painter NA NA 6072.48 3.036240e+03 3036.240 120.00 2 3.036240e+03 6072.48 NA NA NA NULL
2017 Department Of Sanitation Machinist NA NA 164679.46 9.148859e+03 8719.695 2931.07 18 8.719695e+03 156954.51 NA NA NA NULL
2017 Department Of Sanitation Machinist’s Helper NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2017 Department Of Sanitation Maintenance Worker NA NA 68467.57 2.738703e+03 3057.050 1572.89 25 2.738703e+03 68467.57 NA NA NA NULL
2017 Department Of Sanitation Management Auditor 68284.16667 4.097050e+05 130.15 2.169167e+01 0.000 2.50 6 0.000000e+00 0.00 4.098352e+05 4.097050e+05 130.15 NULL
2017 Department Of Sanitation Mechanical Engineer 89519.33333 2.685580e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.685580e+05 2.685580e+05 0.00 NULL
2017 Department Of Sanitation Medical Director 180352.00000 1.803520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.803520e+05 1.803520e+05 0.00 NULL
2017 Department Of Sanitation Medical Record Librarian 49452.77778 4.450750e+05 370.38 4.115333e+01 0.000 2.25 9 0.000000e+00 0.00 4.454454e+05 4.450750e+05 370.38 NULL
2017 Department Of Sanitation Metal Work Mechanic 83709.84615 4.352912e+06 563158.04 1.082996e+04 8762.205 9320.95 52 8.762205e+03 455634.66 4.916070e+06 4.808547e+06 107523.38 NULL
2017 Department Of Sanitation Motor Vehicle Operator 44921.80000 2.246090e+05 21931.99 4.386398e+03 5031.710 620.85 5 4.386398e+03 21931.99 2.465410e+05 2.465410e+05 0.00 NULL
2017 Department Of Sanitation Motor Vehicle Supervisor 53969.00000 5.396900e+04 6155.84 6.155840e+03 6155.840 156.50 1 6.155840e+03 6155.84 6.012484e+04 6.012484e+04 0.00 NULL
2017 Department Of Sanitation Office Machine Aide 37599.75000 1.503990e+05 3025.47 7.563675e+02 311.595 117.03 4 3.115950e+02 1246.38 1.534245e+05 1.516454e+05 1779.09 NULL
2017 Department Of Sanitation Oiler NA NA 15951.93 3.987983e+03 3991.685 178.00 4 3.987983e+03 15951.93 NA NA NA NULL
2017 Department Of Sanitation Painter NA NA 57698.42 5.769842e+03 666.630 805.75 10 6.666300e+02 6666.30 NA NA NA NULL
2017 Department Of Sanitation Photographer 54535.00000 5.453500e+04 3345.68 3.345680e+03 3345.680 92.53 1 3.345680e+03 3345.68 5.788068e+04 5.788068e+04 0.00 NULL
2017 Department Of Sanitation Plumber NA NA 240124.83 1.334027e+04 14326.875 2288.75 18 1.334027e+04 240124.83 NA NA NA NULL
2017 Department Of Sanitation Principal Administrative Associate 56396.33846 3.665762e+06 317715.36 4.887929e+03 543.530 8038.81 65 5.435300e+02 35329.45 3.983477e+06 3.701091e+06 282385.91 NULL
2017 Department Of Sanitation Procurement Analyst 55076.50000 1.211683e+06 53738.55 2.442661e+03 1406.455 1530.00 22 1.406455e+03 30942.01 1.265422e+06 1.242625e+06 22796.54 NULL
2017 Department Of Sanitation Project Manager 66029.50000 2.641180e+05 116.33 2.908250e+01 0.000 4.00 4 0.000000e+00 0.00 2.642343e+05 2.641180e+05 116.33 NULL
2017 Department Of Sanitation Public Health Sanitarian 94411.00000 9.441100e+04 2957.49 2.957490e+03 2957.490 41.27 1 2.957490e+03 2957.49 9.736849e+04 9.736849e+04 0.00 NULL
2017 Department Of Sanitation Research Assistant 54715.66667 1.641470e+05 4395.55 1.465183e+03 0.000 99.25 3 0.000000e+00 0.00 1.685425e+05 1.641470e+05 4395.55 NULL
2017 Department Of Sanitation Rubber Tire Repairer NA NA 50219.82 4.565438e+03 4077.460 1257.00 11 4.077460e+03 44852.06 NA NA NA NULL
2017 Department Of Sanitation Sanitation Compliance Agent 37149.00000 3.343410e+05 202.30 2.247778e+01 0.000 8.00 9 0.000000e+00 0.00 3.345433e+05 3.343410e+05 202.30 NULL
2017 Department Of Sanitation Sanitation Enforcement Agent 36462.18777 8.349841e+06 343563.54 1.500277e+03 1137.140 12414.26 229 1.137140e+03 260405.06 8.693405e+06 8.610246e+06 83158.48 NULL
2017 Department Of Sanitation Sanitation Worker 66000.50812 4.305873e+08 89645013.18 1.374081e+04 13292.110 1831767.37 6524 1.329211e+04 86717725.64 5.202323e+08 5.173050e+08 2927287.54 NULL
2017 Department Of Sanitation Secretary 47360.66667 4.262460e+05 10523.15 1.169239e+03 675.090 295.05 9 6.750900e+02 6075.81 4.367692e+05 4.323218e+05 4447.34 NULL
2017 Department Of Sanitation Secretary To The Commissioner 83290.00000 8.329000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.329000e+04 8.329000e+04 0.00 NULL
2017 Department Of Sanitation Senior Automotive Specialist 97657.00000 9.765700e+04 11021.99 1.102199e+04 11021.990 174.78 1 1.102199e+04 11021.99 1.086790e+05 1.086790e+05 0.00 NULL
2017 Department Of Sanitation Senior Estimator 83614.40000 4.180720e+05 248.56 4.971200e+01 0.000 0.00 5 0.000000e+00 0.00 4.183206e+05 4.180720e+05 248.56 NULL
2017 Department Of Sanitation Senior Stationary Engineer NA NA 59420.24 1.485506e+04 17002.820 576.50 4 1.485506e+04 59420.24 NA NA NA NULL
2017 Department Of Sanitation Sheet Metal Worker NA NA 131816.04 1.647701e+04 15436.880 1224.00 8 1.543688e+04 123495.04 NA NA NA NULL
2017 Department Of Sanitation Staff Analyst 63572.77667 9.535917e+05 7634.35 5.089567e+02 0.000 190.25 15 0.000000e+00 0.00 9.612260e+05 9.535917e+05 7634.35 NULL
2017 Department Of Sanitation Staff Analyst Trainee 48729.00000 4.872900e+04 3987.95 3.987950e+03 3987.950 116.75 1 3.987950e+03 3987.95 5.271695e+04 5.271695e+04 0.00 NULL
2017 Department Of Sanitation Staff Nurse 81516.00000 3.260640e+05 1163.15 2.907875e+02 49.670 24.75 4 4.967000e+01 198.68 3.272272e+05 3.262627e+05 964.47 NULL
2017 Department Of Sanitation Stationary Engineer NA NA 439868.11 1.466227e+04 15834.180 4679.37 30 1.466227e+04 439868.11 NA NA NA NULL
2017 Department Of Sanitation Statistician 53837.00000 5.383700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.383700e+04 5.383700e+04 0.00 NULL
2017 Department Of Sanitation Steam Fitter NA NA 220770.00 2.453000e+04 26455.000 2065.00 9 2.453000e+04 220770.00 NA NA NA NULL
2017 Department Of Sanitation Steam Fitter’s Helper NA NA 2103.75 2.103750e+03 2103.750 25.50 1 2.103750e+03 2103.75 NA NA NA NULL
2017 Department Of Sanitation Stock Worker 38762.00000 2.713340e+05 30008.75 4.286964e+03 4148.920 1267.19 7 4.148920e+03 29042.44 3.013428e+05 3.003764e+05 966.31 NULL
2017 Department Of Sanitation Summer College Intern 2424.95234 2.012710e+05 0.00 0.000000e+00 0.000 0.00 83 0.000000e+00 0.00 2.012710e+05 2.012710e+05 0.00 NULL
2017 Department Of Sanitation Summer Graduate Intern 4350.23655 2.044611e+05 0.00 0.000000e+00 0.000 0.00 47 0.000000e+00 0.00 2.044611e+05 2.044611e+05 0.00 NULL
2017 Department Of Sanitation Supervising Computer Service Technician 54273.67000 1.085473e+05 13120.38 6.560190e+03 6560.190 290.75 2 6.560190e+03 13120.38 1.216677e+05 1.216677e+05 0.00 NULL
2017 Department Of Sanitation Supervisor 88941.73527 9.810273e+07 20821599.52 1.887724e+04 17656.930 294466.44 1103 1.765693e+04 19475593.79 1.189243e+08 1.175783e+08 1346005.73 NULL
2017 Department Of Sanitation Supervisor Bricklayer NA NA 3920.65 3.920650e+03 3920.650 47.50 1 3.920650e+03 3920.65 NA NA NA NULL
2017 Department Of Sanitation Supervisor Carpenter NA NA 50830.90 2.541545e+04 25415.450 681.00 2 2.541545e+04 50830.90 NA NA NA NULL
2017 Department Of Sanitation Supervisor Electrician NA NA 59672.19 1.491805e+04 13898.635 665.50 4 1.389864e+04 55594.54 NA NA NA NULL
2017 Department Of Sanitation Supervisor Of Ironwork 110300.33333 3.309010e+05 15538.97 5.179657e+03 130.190 159.30 3 1.301900e+02 390.57 3.464400e+05 3.312916e+05 15148.40 NULL
2017 Department Of Sanitation Supervisor Of Mechanics 116284.51304 1.337272e+07 1579708.81 1.373660e+04 13577.450 18433.47 115 1.357745e+04 1561406.75 1.495243e+07 1.493413e+07 18302.06 NULL
2017 Department Of Sanitation Supervisor Of Office Machine Operations 44871.00000 1.794840e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.794840e+05 1.794840e+05 0.00 NULL
2017 Department Of Sanitation Supervisor Of Stock Workers 52843.63158 1.004029e+06 211190.72 1.111530e+04 11949.860 5993.25 19 1.111530e+04 211190.72 1.215220e+06 1.215220e+06 0.00 NULL
2017 Department Of Sanitation Supervisor Painter NA NA 9939.15 3.313050e+03 21.620 128.25 3 2.162000e+01 64.86 NA NA NA NULL
2017 Department Of Sanitation Supervisor Plumber NA NA 65996.66 3.299833e+04 32998.330 616.75 2 3.299833e+04 65996.66 NA NA NA NULL
2017 Department Of Sanitation Supervisor Sheet Metal Worker NA NA 29636.30 2.963630e+04 29636.300 291.25 1 2.963630e+04 29636.30 NA NA NA NULL
2017 Department Of Sanitation Supervisor Steamfitter NA NA 22002.00 2.200200e+04 22002.000 249.00 1 2.200200e+04 22002.00 NA NA NA NULL
2017 Department Of Sanitation Telecommunications Associate 62637.75000 2.505510e+05 33019.51 8.254878e+03 1582.920 525.77 4 1.582920e+03 6331.68 2.835705e+05 2.568827e+05 26687.83 NULL
2017 Department Of Sanitation Thermostat Repairer NA NA 6713.20 2.237733e+03 1032.800 55.00 3 1.032800e+03 3098.40 NA NA NA NULL
2017 Department Of Sanitation Tractor Operator NA NA 36094.46 4.010496e+03 1343.310 265.50 9 1.343310e+03 12089.79 NA NA NA NULL
2017 Department Of Sanitation Welder NA NA 111927.72 1.399097e+04 8293.980 981.25 8 8.293980e+03 66351.84 NA NA NA NULL
2017 Department Of Transportation *Adm Dir Fleet Maintenance - Nm 129158.00000 1.291580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.291580e+05 1.291580e+05 0.00 NULL
2017 Department Of Transportation Accountant 55595.51852 1.501079e+06 47716.88 1.767292e+03 71.420 1192.50 27 7.142000e+01 1928.34 1.548796e+06 1.503007e+06 45788.54 NULL
2017 Department Of Transportation Adm Manager-Non-Mgrl 73571.51963 1.324287e+07 912117.01 5.067317e+03 719.335 18009.50 180 7.193350e+02 129480.30 1.415499e+07 1.337235e+07 782636.71 NULL
2017 Department Of Transportation Admin Community Relations Specialist 101746.85714 1.424456e+06 164504.98 1.175036e+04 8357.855 2511.00 14 8.357855e+03 117009.97 1.588961e+06 1.541466e+06 47495.01 NULL
2017 Department Of Transportation Admin Contract Specialist 140700.00000 1.407000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.407000e+05 1.407000e+05 0.00 NULL
2017 Department Of Transportation Admin Inspector 112958.55556 1.016627e+06 24093.18 2.677020e+03 0.000 348.50 9 0.000000e+00 0.00 1.040720e+06 1.016627e+06 24093.18 NULL
2017 Department Of Transportation Administrative Accountant 125389.00000 2.507780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.507780e+05 2.507780e+05 0.00 NULL
2017 Department Of Transportation Administrative City Planner 110245.54545 1.212701e+06 14629.91 1.329992e+03 0.000 203.75 11 0.000000e+00 0.00 1.227331e+06 1.212701e+06 14629.91 NULL
2017 Department Of Transportation Administrative Community Relations Specialist 122702.00000 2.454040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.454040e+05 2.454040e+05 0.00 NULL
2017 Department Of Transportation Administrative Construction Project Manager 184449.00000 1.844490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.844490e+05 1.844490e+05 0.00 NULL
2017 Department Of Transportation Administrative Director Of Marine Maintenance 144907.00000 1.449070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.449070e+05 1.449070e+05 0.00 NULL
2017 Department Of Transportation Administrative Engineer 129859.15152 8.570704e+06 171509.81 2.598633e+03 0.000 2461.00 66 0.000000e+00 0.00 8.742214e+06 8.570704e+06 171509.81 NULL
2017 Department Of Transportation Administrative Graphic Artist 113387.00000 1.133870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133870e+05 1.133870e+05 0.00 NULL
2017 Department Of Transportation Administrative Inspector 136920.00000 1.369200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.369200e+05 1.369200e+05 0.00 NULL
2017 Department Of Transportation Administrative Investigator 107360.50000 2.147210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.147210e+05 2.147210e+05 0.00 NULL
2017 Department Of Transportation Administrative Management Auditor 113180.00000 3.395400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.395400e+05 3.395400e+05 0.00 NULL
2017 Department Of Transportation Administrative Manager 129892.33333 7.793540e+05 6056.36 1.009393e+03 0.000 57.00 6 0.000000e+00 0.00 7.854104e+05 7.793540e+05 6056.36 NULL
2017 Department Of Transportation Administrative Procurement Analyst 95311.58824 1.620297e+06 144521.65 8.501274e+03 6962.820 2198.25 17 6.962820e+03 118367.94 1.764819e+06 1.738665e+06 26153.71 NULL
2017 Department Of Transportation Administrative Project Manager 125626.54000 6.281327e+06 124456.03 2.489121e+03 0.000 1877.25 50 0.000000e+00 0.00 6.405783e+06 6.281327e+06 124456.03 NULL
2017 Department Of Transportation Administrative Public Information Specialist 159135.00000 3.182700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.182700e+05 3.182700e+05 0.00 NULL
2017 Department Of Transportation Administrative Quality Assurance Specialist 102731.33333 6.163880e+05 18270.82 3.045137e+03 97.085 252.50 6 9.708500e+01 582.51 6.346588e+05 6.169705e+05 17688.31 NULL
2017 Department Of Transportation Administrative Real Property Manager 184756.00000 1.847560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.847560e+05 1.847560e+05 0.00 NULL
2017 Department Of Transportation Administrative Staff Analyst 106317.08759 1.552229e+07 931622.03 6.380973e+03 827.125 14612.75 146 8.271250e+02 120760.25 1.645392e+07 1.564306e+07 810861.78 NULL
2017 Department Of Transportation Administrative Superintendent Of Bridge Operations 121882.00000 1.218820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.218820e+05 1.218820e+05 0.00 NULL
2017 Department Of Transportation Administrative Superintendent Of Highway Operations 121726.90909 2.677992e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 2.677992e+06 2.677992e+06 0.00 NULL
2017 Department Of Transportation Administrative Transportation Coordinator 131872.90909 2.901204e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 2.901204e+06 2.901204e+06 0.00 NULL
2017 Department Of Transportation Agency Attorney 88285.47368 1.677424e+06 8704.24 4.581179e+02 0.000 103.25 19 0.000000e+00 0.00 1.686128e+06 1.677424e+06 8704.24 NULL
2017 Department Of Transportation Agency Attorney Interne 66636.00000 6.663600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.663600e+04 6.663600e+04 0.00 NULL
2017 Department Of Transportation Agency Chief Contracting Officer 180637.00000 1.806370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.806370e+05 1.806370e+05 0.00 NULL
2017 Department Of Transportation Apprentice Inspector 35067.93277 4.173084e+06 292986.93 2.462075e+03 776.910 10859.50 119 7.769100e+02 92452.29 4.466071e+06 4.265536e+06 200534.64 NULL
2017 Department Of Transportation Area Supervisor 104037.65455 5.722071e+06 2237641.56 4.068439e+04 37357.190 28124.50 55 3.735719e+04 2054645.45 7.959713e+06 7.776716e+06 182996.11 NULL
2017 Department Of Transportation Assistant Accountant 52595.00000 5.259500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.259500e+04 5.259500e+04 0.00 NULL
2017 Department Of Transportation Assistant Captain 63014.00000 8.821960e+05 517289.43 3.694925e+04 39813.375 7725.75 14 3.694925e+04 517289.43 1.399485e+06 1.399485e+06 0.00 NULL
2017 Department Of Transportation Assistant City Highway Repairer 35877.85203 1.987633e+07 2114398.82 3.816604e+03 2418.425 59761.73 554 2.418425e+03 1339807.45 2.199073e+07 2.121614e+07 774591.37 NULL
2017 Department Of Transportation Assistant Civil Engineer 65439.62185 7.787315e+06 487841.27 4.099506e+03 362.490 10906.75 119 3.624900e+02 43136.31 8.275156e+06 7.830451e+06 444704.96 NULL
2017 Department Of Transportation Assistant Commissioner 164568.00000 3.291360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.291360e+05 3.291360e+05 0.00 NULL
2017 Department Of Transportation Assistant Director 113484.00000 1.134840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.134840e+05 1.134840e+05 0.00 NULL
2017 Department Of Transportation Assistant Electrical Engineer 65448.63333 1.963459e+06 240238.62 8.007954e+03 6949.165 4954.25 30 6.949165e+03 208474.95 2.203698e+06 2.171934e+06 31763.67 NULL
2017 Department Of Transportation Assistant Highway Transportation Specialist 53971.98485 3.562151e+06 118813.77 1.800209e+03 145.595 3353.70 66 1.455950e+02 9609.27 3.680965e+06 3.571760e+06 109204.50 NULL
2017 Department Of Transportation Assistant Mechanical Engineer 67987.70000 6.798770e+05 18850.77 1.885077e+03 0.000 475.50 10 0.000000e+00 0.00 6.987278e+05 6.798770e+05 18850.77 NULL
2017 Department Of Transportation Assistant Printing Press Operator 59971.00000 1.199420e+05 1324.28 6.621400e+02 662.140 39.25 2 6.621400e+02 1324.28 1.212663e+05 1.212663e+05 0.00 NULL
2017 Department Of Transportation Assistant To The Deputy Commissioner 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2017 Department Of Transportation Assistant Urban Designer 62373.83333 3.742430e+05 8369.65 1.394942e+03 476.015 199.25 6 4.760150e+02 2856.09 3.826127e+05 3.770991e+05 5513.56 NULL
2017 Department Of Transportation Associate Inspector 70067.16667 2.942821e+06 633743.37 1.508913e+04 13620.700 11645.00 42 1.362070e+04 572069.40 3.576564e+06 3.514890e+06 61673.97 NULL
2017 Department Of Transportation Associate Investigator 65809.00000 5.264720e+05 37041.90 4.630238e+03 594.760 786.50 8 5.947600e+02 4758.08 5.635139e+05 5.312301e+05 32283.82 NULL
2017 Department Of Transportation Associate Operations Communications Specialist 56692.66667 1.700780e+05 49964.15 1.665472e+04 18835.370 973.25 3 1.665472e+04 49964.15 2.200421e+05 2.200421e+05 0.00 NULL
2017 Department Of Transportation Associate Project Manager 83254.62687 5.578060e+06 576902.28 8.610482e+03 6447.500 10051.75 67 6.447500e+03 431982.50 6.154962e+06 6.010042e+06 144919.78 NULL
2017 Department Of Transportation Associate Quality Assurance Specialist 65243.25000 2.609730e+05 65836.60 1.645915e+04 14272.330 1431.00 4 1.427233e+04 57089.32 3.268096e+05 3.180623e+05 8747.28 NULL
2017 Department Of Transportation Associate Retirement Benefits Examiner 55000.00000 5.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.500000e+04 5.500000e+04 0.00 NULL
2017 Department Of Transportation Associate Staff Analyst 81732.72222 4.413567e+06 303577.31 5.621802e+03 160.780 5299.25 54 1.607800e+02 8682.12 4.717144e+06 4.422249e+06 294895.19 NULL
2017 Department Of Transportation Associate Urban Designer 82491.43833 2.474743e+05 6184.99 2.061663e+03 1883.660 110.25 3 1.883660e+03 5650.98 2.536593e+05 2.531253e+05 534.01 NULL
2017 Department Of Transportation Auto Machinist NA NA 21367.75 2.136775e+04 21367.750 332.00 1 2.136775e+04 21367.75 NA NA NA NULL
2017 Department Of Transportation Auto Body Worker 57386.00000 5.738600e+04 2826.84 2.826840e+03 2826.840 81.50 1 2.826840e+03 2826.84 6.021284e+04 6.021284e+04 0.00 NULL
2017 Department Of Transportation Auto Mechanic NA NA 1688238.64 1.507356e+04 15003.955 27684.00 112 1.500395e+04 1680442.96 NA NA NA NULL
2017 Department Of Transportation Automotive Service Worker 37111.85714 5.195660e+05 46536.21 3.324015e+03 1231.980 1701.25 14 1.231980e+03 17247.72 5.661022e+05 5.368137e+05 29288.49 NULL
2017 Department Of Transportation Automotive Specialist 80000.00000 8.000000e+04 18106.22 1.810622e+04 18106.220 343.25 1 1.810622e+04 18106.22 9.810622e+04 9.810622e+04 0.00 NULL
2017 Department Of Transportation Blacksmith NA NA 77443.29 1.936082e+04 19458.810 1037.75 4 1.936082e+04 77443.29 NA NA NA NULL
2017 Department Of Transportation Blacksmith’s Helper NA NA 24564.78 1.228239e+04 12282.390 535.50 2 1.228239e+04 24564.78 NA NA NA NULL
2017 Department Of Transportation Boiler Maker NA NA 178481.97 2.231025e+04 23978.295 2420.00 8 2.231025e+04 178481.97 NA NA NA NULL
2017 Department Of Transportation Bookkeeper 46041.00000 3.222870e+05 7283.25 1.040464e+03 0.000 189.25 7 0.000000e+00 0.00 3.295702e+05 3.222870e+05 7283.25 NULL
2017 Department Of Transportation Borough Commissioner 147280.33333 4.418410e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.418410e+05 4.418410e+05 0.00 NULL
2017 Department Of Transportation Bricklayer NA NA 256097.43 2.560974e+04 28138.740 3500.97 10 2.560974e+04 256097.43 NA NA NA NULL
2017 Department Of Transportation Bridge Operator 44337.61702 4.167736e+06 962098.54 1.023509e+04 9430.770 26025.70 94 9.430770e+03 886492.38 5.129835e+06 5.054228e+06 75606.16 NULL
2017 Department Of Transportation Bridge Painter NA NA 236148.25 4.455627e+03 4645.780 2080.50 53 4.455627e+03 236148.25 NA NA NA NULL
2017 Department Of Transportation Bridge Repairer And Riveter NA NA 1154077.10 2.508863e+04 26715.705 17217.00 46 2.508863e+04 1154077.10 NA NA NA NULL
2017 Department Of Transportation Captain 70926.00000 1.631298e+06 1059727.65 4.607512e+04 44493.860 14445.00 23 4.449386e+04 1023358.78 2.691026e+06 2.654657e+06 36368.87 NULL
2017 Department Of Transportation Carpenter NA NA 251270.52 1.142139e+04 8242.670 3331.00 22 8.242670e+03 181338.74 NA NA NA NULL
2017 Department Of Transportation Cement Mason NA NA 774607.29 3.688606e+04 39488.360 8705.00 21 3.688606e+04 774607.29 NA NA NA NULL
2017 Department Of Transportation Certified It Administrator 107990.11765 1.835832e+06 351759.07 2.069171e+04 20641.760 4793.00 17 2.064176e+04 350909.92 2.187591e+06 2.186742e+06 849.15 NULL
2017 Department Of Transportation Certified It Developer 118759.25000 4.750370e+05 30545.02 7.636255e+03 2239.780 404.25 4 2.239780e+03 8959.12 5.055820e+05 4.839961e+05 21585.90 NULL
2017 Department Of Transportation Chief Marine Engineer 68789.00000 1.857303e+06 1768279.46 6.549183e+04 65227.680 25609.00 27 6.522768e+04 1761147.36 3.625582e+06 3.618450e+06 7132.10 NULL
2017 Department Of Transportation Chief Of Staff 166860.00000 1.668600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.668600e+05 1.668600e+05 0.00 NULL
2017 Department Of Transportation City Attendant 34719.75245 1.492949e+06 126664.07 2.945676e+03 2182.200 4801.00 43 2.182200e+03 93834.60 1.619613e+06 1.586784e+06 32829.47 NULL
2017 Department Of Transportation City Custodial Assistant 39742.08497 1.192263e+05 8352.18 2.784060e+03 2679.870 298.00 3 2.679870e+03 8039.61 1.275784e+05 1.272659e+05 312.57 NULL
2017 Department Of Transportation City Debris Remover 40587.97050 4.058797e+05 53034.95 5.303495e+03 4968.780 1695.67 10 4.968780e+03 49687.80 4.589147e+05 4.555675e+05 3347.15 NULL
2017 Department Of Transportation City Laborer NA NA 352774.62 1.469894e+04 14258.950 5897.75 24 1.425895e+04 342214.80 NA NA NA NULL
2017 Department Of Transportation City Parking Equipment Service Worker 39201.76923 4.586607e+06 572424.04 4.892513e+03 4612.140 18981.58 117 4.612140e+03 539620.38 5.159031e+06 5.126227e+06 32803.66 NULL
2017 Department Of Transportation City Planner 86098.38710 5.338100e+06 247837.73 3.997383e+03 1509.080 4229.00 62 1.509080e+03 93562.96 5.585938e+06 5.431663e+06 154274.77 NULL
2017 Department Of Transportation City Planning Technician 38349.50000 7.669900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.669900e+04 7.669900e+04 0.00 NULL
2017 Department Of Transportation City Research Scientist 86900.50000 6.952040e+05 27544.49 3.443061e+03 0.000 439.00 8 0.000000e+00 0.00 7.227485e+05 6.952040e+05 27544.49 NULL
2017 Department Of Transportation City Tax Auditor 51505.00000 5.150500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.150500e+04 5.150500e+04 0.00 NULL
2017 Department Of Transportation Civil Engineer 94428.17757 1.010382e+07 714126.77 6.674082e+03 2176.980 10493.00 107 2.176980e+03 232936.86 1.081794e+07 1.033675e+07 481189.91 NULL
2017 Department Of Transportation Civil Engineering Intern 55039.00000 9.356630e+05 47855.94 2.815055e+03 0.000 1342.00 17 0.000000e+00 0.00 9.835189e+05 9.356630e+05 47855.94 NULL
2017 Department Of Transportation Clerical Aide 31046.00000 9.313800e+04 649.73 2.165767e+02 0.000 35.50 3 0.000000e+00 0.00 9.378773e+04 9.313800e+04 649.73 NULL
2017 Department Of Transportation Clerical Associate 43135.57300 1.263872e+07 557578.26 1.902997e+03 53.850 16584.29 293 5.385000e+01 15778.05 1.319630e+07 1.265450e+07 541800.21 NULL
2017 Department Of Transportation Climber & Pruner 62365.75000 4.989260e+05 91943.73 1.149297e+04 12824.200 1768.75 8 1.149297e+04 91943.73 5.908697e+05 5.908697e+05 0.00 NULL
2017 Department Of Transportation College Aide 6816.90322 1.015719e+06 0.00 0.000000e+00 0.000 0.00 149 0.000000e+00 0.00 1.015719e+06 1.015719e+06 0.00 NULL
2017 Department Of Transportation College Aide - Assignment Levels Ii And Iii 14132.21143 8.479327e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.479327e+04 8.479327e+04 0.00 NULL
2017 Department Of Transportation Commissioner Of Transportation 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2017 Department Of Transportation Community Assistant 36927.05552 8.862493e+05 63140.31 2.630846e+03 469.290 2331.00 24 4.692900e+02 11262.96 9.493896e+05 8.975123e+05 51877.35 NULL
2017 Department Of Transportation Community Associate 43582.11221 3.094330e+06 130988.61 1.844910e+03 228.330 4359.25 71 2.283300e+02 16211.43 3.225319e+06 3.110541e+06 114777.18 NULL
2017 Department Of Transportation Community Coordinator 64058.24066 6.790174e+06 338243.64 3.190978e+03 474.540 7823.00 106 4.745400e+02 50301.24 7.128417e+06 6.840475e+06 287942.40 NULL
2017 Department Of Transportation Community Service Aide 26618.62215 5.323724e+04 51.84 2.592000e+01 25.920 3.00 2 2.592000e+01 51.84 5.328908e+04 5.328908e+04 0.00 NULL
2017 Department Of Transportation Computer Aide-Non-Spvr 49770.91667 2.986255e+05 19584.60 3.264100e+03 1893.250 508.75 6 1.893250e+03 11359.50 3.182101e+05 3.099850e+05 8225.10 NULL
2017 Department Of Transportation Computer Associate 68360.94536 1.914106e+06 155907.87 5.568138e+03 2398.260 3417.25 28 2.398260e+03 67151.28 2.070014e+06 1.981258e+06 88756.59 NULL
2017 Department Of Transportation Computer Programmer Analyst 62401.71429 4.368120e+05 1323.43 1.890614e+02 0.000 39.00 7 0.000000e+00 0.00 4.381354e+05 4.368120e+05 1323.43 NULL
2017 Department Of Transportation Computer Service Technician 47536.00000 4.753600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.753600e+04 4.753600e+04 0.00 NULL
2017 Department Of Transportation Computer Specialist 101824.07692 2.647426e+06 108745.89 4.182534e+03 82.405 1453.50 26 8.240500e+01 2142.53 2.756172e+06 2.649569e+06 106603.36 NULL
2017 Department Of Transportation Computer Systems Manager 143790.33333 1.294113e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.294113e+06 1.294113e+06 0.00 NULL
2017 Department Of Transportation Confidential Strategy Planner 87245.00000 6.979600e+05 57105.76 7.138220e+03 6102.655 1026.50 8 6.102655e+03 48821.24 7.550658e+05 7.467812e+05 8284.52 NULL
2017 Department Of Transportation Construction Project Manager 76741.61290 2.378990e+06 398585.22 1.285759e+04 13536.620 6958.50 31 1.285759e+04 398585.22 2.777575e+06 2.777575e+06 0.00 NULL
2017 Department Of Transportation Construction Project Manager Intern 59531.00000 1.190620e+05 1729.62 8.648100e+02 864.810 58.25 2 8.648100e+02 1729.62 1.207916e+05 1.207916e+05 0.00 NULL
2017 Department Of Transportation Counsel 220994.00000 2.209940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.209940e+05 2.209940e+05 0.00 NULL
2017 Department Of Transportation Crane Operator Ampes NA NA 393888.57 5.626980e+04 62701.190 3327.50 7 5.626980e+04 393888.57 NA NA NA NULL
2017 Department Of Transportation Customer Information Representative 48009.30146 2.400465e+05 7194.79 1.438958e+03 597.920 270.25 5 5.979200e+02 2989.60 2.472413e+05 2.430361e+05 4205.19 NULL
2017 Department Of Transportation Deckhand 52746.53311 1.592945e+07 5382136.06 1.782164e+04 15097.280 92821.75 302 1.509728e+04 4559378.56 2.131159e+07 2.048883e+07 822757.50 NULL
2017 Department Of Transportation Deputy Commissioner 200449.00000 8.017960e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.017960e+05 8.017960e+05 0.00 NULL
2017 Department Of Transportation Deputy Director 136538.00000 1.365380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.365380e+05 1.365380e+05 0.00 NULL
2017 Department Of Transportation Director Of Public Relations 149062.00000 1.490620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.490620e+05 1.490620e+05 0.00 NULL
2017 Department Of Transportation Dockbuilder NA NA 153051.32 1.530513e+04 15342.010 1920.25 10 1.530513e+04 153051.32 NA NA NA NULL
2017 Department Of Transportation Economist 77983.33333 2.339500e+05 1146.34 3.821133e+02 0.000 20.25 3 0.000000e+00 0.00 2.350963e+05 2.339500e+05 1146.34 NULL
2017 Department Of Transportation Electrical Engineer 89448.66667 2.683460e+05 65994.12 2.199804e+04 23106.280 962.75 3 2.199804e+04 65994.12 3.343401e+05 3.343401e+05 0.00 NULL
2017 Department Of Transportation Electrical Engineering Intern 55039.00000 1.651170e+05 4759.59 1.586530e+03 1404.680 164.25 3 1.404680e+03 4214.04 1.698766e+05 1.693310e+05 545.55 NULL
2017 Department Of Transportation Electrician NA NA 1825941.37 2.074933e+04 17129.540 21620.75 88 1.712954e+04 1507399.52 NA NA NA NULL
2017 Department Of Transportation Electrician’s Helper NA NA 107707.85 2.692696e+04 30967.830 1961.25 4 2.692696e+04 107707.85 NA NA NA NULL
2017 Department Of Transportation Engineering Technician 53855.00000 3.231300e+05 29324.85 4.887475e+03 243.890 656.25 6 2.438900e+02 1463.34 3.524548e+05 3.245933e+05 27861.51 NULL
2017 Department Of Transportation Environmental Engineer 96470.00000 9.647000e+04 529.80 5.298000e+02 529.800 10.00 1 5.298000e+02 529.80 9.699980e+04 9.699980e+04 0.00 NULL
2017 Department Of Transportation Estimator 61138.00000 6.113800e+04 355.54 3.555400e+02 355.540 8.75 1 3.555400e+02 355.54 6.149354e+04 6.149354e+04 0.00 NULL
2017 Department Of Transportation Executive Agency Counsel 144095.60000 1.440956e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.440956e+06 1.440956e+06 0.00 NULL
2017 Department Of Transportation Ferry Terminal Supervisor 73271.05882 1.245608e+06 414929.13 2.440760e+04 28043.720 6942.00 17 2.440760e+04 414929.13 1.660537e+06 1.660537e+06 0.00 NULL
2017 Department Of Transportation First Deputy Commissioner 223572.00000 2.235720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.235720e+05 2.235720e+05 0.00 NULL
2017 Department Of Transportation Fraud Investigator 61209.00000 6.120900e+04 1101.25 1.101250e+03 1101.250 26.00 1 1.101250e+03 1101.25 6.231025e+04 6.231025e+04 0.00 NULL
2017 Department Of Transportation Gardener 58559.75000 2.342390e+05 47022.78 1.175569e+04 10328.035 932.75 4 1.032803e+04 41312.14 2.812618e+05 2.755511e+05 5710.64 NULL
2017 Department Of Transportation Gasoline Roller Engineer-L15 NA NA 1417175.71 1.667266e+04 14335.730 17473.90 85 1.433573e+04 1218537.05 NA NA NA NULL
2017 Department Of Transportation Graphic Artist 71750.50000 2.870020e+05 2333.16 5.832900e+02 0.000 35.50 4 0.000000e+00 0.00 2.893352e+05 2.870020e+05 2333.16 NULL
2017 Department Of Transportation High Pressure Plant Tender NA NA 216056.17 2.400624e+04 21398.210 3928.50 9 2.139821e+04 192583.89 NA NA NA NULL
2017 Department Of Transportation Highway Repairer NA NA 7081117.30 1.333544e+04 11208.620 114909.08 531 1.120862e+04 5951777.22 NA NA NA NULL
2017 Department Of Transportation Highway Transportation Specialist 71863.25426 1.221675e+07 1927509.86 1.133829e+04 9924.790 36636.75 170 9.924790e+03 1687214.30 1.414426e+07 1.390397e+07 240295.56 NULL
2017 Department Of Transportation Highways And Sewers Inspector 59479.02586 6.899567e+06 1061090.50 9.147332e+03 6536.850 22818.75 116 6.536850e+03 758274.60 7.960658e+06 7.657842e+06 302815.90 NULL
2017 Department Of Transportation Industrial Hygienist 59296.54545 6.522620e+05 17376.45 1.579677e+03 181.100 511.25 11 1.811000e+02 1992.10 6.696384e+05 6.542541e+05 15384.35 NULL
2017 Department Of Transportation Investigator 44116.72727 4.852840e+05 18102.24 1.645658e+03 626.180 495.50 11 6.261800e+02 6887.98 5.033862e+05 4.921720e+05 11214.26 NULL
2017 Department Of Transportation Investigator Empl Disc 59237.66667 1.777130e+05 1040.49 3.468300e+02 410.860 34.00 3 3.468300e+02 1040.49 1.787535e+05 1.787535e+05 0.00 NULL
2017 Department Of Transportation Laborer NA NA 2034.63 2.034630e+03 2034.630 29.00 1 2.034630e+03 2034.63 NA NA NA NULL
2017 Department Of Transportation Landscape Architect 86238.00000 8.623800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.623800e+04 8.623800e+04 0.00 NULL
2017 Department Of Transportation Letterer And Sign Painter NA NA 115740.19 1.286002e+04 14066.940 2600.50 9 1.286002e+04 115740.19 NA NA NA NULL
2017 Department Of Transportation Machinist NA NA 232991.50 2.118105e+04 23716.750 3670.50 11 2.118105e+04 232991.50 NA NA NA NULL
2017 Department Of Transportation Management Auditor 66246.84211 1.258690e+06 36174.51 1.903922e+03 0.000 829.75 19 0.000000e+00 0.00 1.294865e+06 1.258690e+06 36174.51 NULL
2017 Department Of Transportation Management Auditor Trainee 42288.00000 4.228800e+04 0.00 0.000000e+00 0.000 5.25 1 0.000000e+00 0.00 4.228800e+04 4.228800e+04 0.00 NULL
2017 Department Of Transportation Marine Electronics Technician 92729.00000 3.709160e+05 48659.07 1.216477e+04 5988.070 699.75 4 5.988070e+03 23952.28 4.195751e+05 3.948683e+05 24706.79 NULL
2017 Department Of Transportation Marine Engineer 64231.24000 1.605781e+06 1165501.37 4.662005e+04 45579.360 17738.50 25 4.557936e+04 1139484.00 2.771282e+06 2.745265e+06 26017.37 NULL
2017 Department Of Transportation Marine Oiler 53816.96471 4.574442e+06 2143746.28 2.522054e+04 33788.380 38115.50 85 2.522054e+04 2143746.28 6.718188e+06 6.718188e+06 0.00 NULL
2017 Department Of Transportation Masons Helper NA NA 1479.18 7.395900e+02 739.590 42.50 2 7.395900e+02 1479.18 NA NA NA NULL
2017 Department Of Transportation Mate 57561.62162 4.259560e+06 2211591.72 2.988637e+04 29965.235 36196.75 74 2.988637e+04 2211591.72 6.471152e+06 6.471152e+06 0.00 NULL
2017 Department Of Transportation Mechanical Engineer 98439.75000 3.937590e+05 14166.06 3.541515e+03 300.050 228.00 4 3.000500e+02 1200.20 4.079251e+05 3.949592e+05 12965.86 NULL
2017 Department Of Transportation Mechanical Engineering Intern 55039.00000 5.503900e+04 2811.19 2.811190e+03 2811.190 90.50 1 2.811190e+03 2811.19 5.785019e+04 5.785019e+04 0.00 NULL
2017 Department Of Transportation Motor Grader Operator NA NA 784425.15 2.307133e+04 20965.420 7460.38 34 2.096542e+04 712824.28 NA NA NA NULL
2017 Department Of Transportation Motor Vehicle Operator 37200.00000 3.720000e+04 4315.36 4.315360e+03 4315.360 169.00 1 4.315360e+03 4315.36 4.151536e+04 4.151536e+04 0.00 NULL
2017 Department Of Transportation Office Machine Aide 34597.22222 3.113750e+05 6759.21 7.510233e+02 0.000 351.25 9 0.000000e+00 0.00 3.181342e+05 3.113750e+05 6759.21 NULL
2017 Department Of Transportation Oiler NA NA 408169.80 2.400999e+04 23985.310 4896.75 17 2.398531e+04 407750.27 NA NA NA NULL
2017 Department Of Transportation Operations Communications Specialist 46617.33333 9.789640e+05 98259.31 4.679015e+03 2738.230 2952.25 21 2.738230e+03 57502.83 1.077223e+06 1.036467e+06 40756.48 NULL
2017 Department Of Transportation Painter NA NA 59030.08 9.838347e+03 11441.755 892.75 6 9.838347e+03 59030.08 NA NA NA NULL
2017 Department Of Transportation Paralegal Aide 46125.00000 9.225000e+04 1603.43 8.017150e+02 801.715 59.25 2 8.017150e+02 1603.43 9.385343e+04 9.385343e+04 0.00 NULL
2017 Department Of Transportation Plumber NA NA 316773.53 3.167735e+04 25917.255 3011.50 10 2.591726e+04 259172.55 NA NA NA NULL
2017 Department Of Transportation Principal Administrative Associate 63050.15044 4.350460e+06 243992.81 3.536128e+03 29.210 5694.50 69 2.921000e+01 2015.49 4.594453e+06 4.352476e+06 241977.32 NULL
2017 Department Of Transportation Procurement Analyst 59724.82857 2.090369e+06 123352.83 3.524367e+03 0.000 3071.50 35 0.000000e+00 0.00 2.213722e+06 2.090369e+06 123352.83 NULL
2017 Department Of Transportation Project Manager 73787.66667 4.427260e+05 79805.38 1.330090e+04 12286.955 1458.75 6 1.228695e+04 73721.73 5.225314e+05 5.164477e+05 6083.65 NULL
2017 Department Of Transportation Project Manager Intern# 54366.50000 1.087330e+05 1248.06 6.240300e+02 624.030 33.25 2 6.240300e+02 1248.06 1.099811e+05 1.099811e+05 0.00 NULL
2017 Department Of Transportation Public Records Aide 38239.30175 2.294358e+05 1161.67 1.936117e+02 0.000 52.25 6 0.000000e+00 0.00 2.305975e+05 2.294358e+05 1161.67 NULL
2017 Department Of Transportation Quality Assurance Specialist 45971.50000 9.194300e+04 11902.43 5.951215e+03 5951.215 375.75 2 5.951215e+03 11902.43 1.038454e+05 1.038454e+05 0.00 NULL
2017 Department Of Transportation Quality Assurance Specialist Trainee 44040.92133 1.321228e+05 32865.08 1.095503e+04 10416.270 1367.00 3 1.041627e+04 31248.81 1.649878e+05 1.633716e+05 1616.27 NULL
2017 Department Of Transportation Radio Repair Mechanic NA NA 34.78 1.739000e+01 17.390 0.50 2 1.739000e+01 34.78 NA NA NA NULL
2017 Department Of Transportation Research Assistant 50840.70711 9.659734e+05 14845.36 7.813347e+02 0.000 470.85 19 0.000000e+00 0.00 9.808188e+05 9.659734e+05 14845.36 NULL
2017 Department Of Transportation Rigger NA NA 287539.39 4.107706e+04 40465.570 3534.75 7 4.046557e+04 283258.99 NA NA NA NULL
2017 Department Of Transportation Rubber Tire Repairer NA NA 29803.18 4.967197e+03 4840.065 887.50 6 4.840065e+03 29040.39 NA NA NA NULL
2017 Department Of Transportation Secretary 43603.38147 8.284642e+05 25930.70 1.364774e+03 0.000 845.50 19 0.000000e+00 0.00 8.543949e+05 8.284642e+05 25930.70 NULL
2017 Department Of Transportation Secretary To The Deputy Commissioner 51879.50000 1.037590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.037590e+05 1.037590e+05 0.00 NULL
2017 Department Of Transportation Senior Photographer 67621.00000 6.762100e+04 273.78 2.737800e+02 273.780 7.00 1 2.737800e+02 273.78 6.789478e+04 6.789478e+04 0.00 NULL
2017 Department Of Transportation Senior Service Inspector 44561.00000 1.336830e+05 19230.45 6.410150e+03 7158.010 598.00 3 6.410150e+03 19230.45 1.529135e+05 1.529135e+05 0.00 NULL
2017 Department Of Transportation Service Inspector 36703.75000 1.468150e+05 5599.10 1.399775e+03 1357.890 247.25 4 1.357890e+03 5431.56 1.524141e+05 1.522466e+05 167.54 NULL
2017 Department Of Transportation Sheet Metal Worker NA NA 158406.12 3.960153e+04 37660.875 1403.50 4 3.766088e+04 150643.50 NA NA NA NULL
2017 Department Of Transportation Ship Carpenter NA NA 202649.99 3.377500e+04 34810.010 2389.50 6 3.377500e+04 202649.99 NA NA NA NULL
2017 Department Of Transportation Space Analyst 74000.00000 7.400000e+04 15104.01 1.510401e+04 15104.010 342.00 1 1.510401e+04 15104.01 8.910401e+04 8.910401e+04 0.00 NULL
2017 Department Of Transportation Staff Analyst 65827.96154 1.711527e+06 90193.54 3.468982e+03 1122.700 1915.00 26 1.122700e+03 29190.20 1.801721e+06 1.740717e+06 61003.34 NULL
2017 Department Of Transportation Staff Analyst Trainee 44177.63725 3.975987e+05 26228.20 2.914244e+03 0.000 880.00 9 0.000000e+00 0.00 4.238269e+05 3.975987e+05 26228.20 NULL
2017 Department Of Transportation Steam Fitter NA NA 424603.67 3.860033e+04 37953.670 3604.03 11 3.795367e+04 417490.37 NA NA NA NULL
2017 Department Of Transportation Stock Worker 39211.10000 3.921110e+05 50822.73 5.082273e+03 2448.435 1743.50 10 2.448435e+03 24484.35 4.429337e+05 4.165953e+05 26338.38 NULL
2017 Department Of Transportation Strategic Initiative Specialist 102063.66667 6.123820e+05 41701.41 6.950235e+03 3533.180 685.75 6 3.533180e+03 21199.08 6.540834e+05 6.335811e+05 20502.33 NULL
2017 Department Of Transportation Summer College Intern 2348.18024 1.009718e+05 0.00 0.000000e+00 0.000 0.00 43 0.000000e+00 0.00 1.009718e+05 1.009718e+05 0.00 NULL
2017 Department Of Transportation Summer Graduate Intern 4381.18720 1.226732e+05 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 1.226732e+05 1.226732e+05 0.00 NULL
2017 Department Of Transportation Supervising Special Officer 59464.00000 3.567840e+05 68958.72 1.149312e+04 12496.195 1704.25 6 1.149312e+04 68958.72 4.257427e+05 4.257427e+05 0.00 NULL
2017 Department Of Transportation Supervisor 72930.00000 1.458600e+05 10609.05 5.304525e+03 5304.525 165.00 2 5.304525e+03 10609.05 1.564690e+05 1.564690e+05 0.00 NULL
2017 Department Of Transportation Supervisor Boiler Maker NA NA 21485.25 2.148525e+04 21485.250 222.00 1 2.148525e+04 21485.25 NA NA NA NULL
2017 Department Of Transportation Supervisor Bricklayer NA NA 311592.18 5.193203e+04 58418.275 3596.75 6 5.193203e+04 311592.18 NA NA NA NULL
2017 Department Of Transportation Supervisor Bridge Painter NA NA 124671.30 8.311420e+03 7454.040 856.25 15 7.454040e+03 111810.60 NA NA NA NULL
2017 Department Of Transportation Supervisor Bridge Repairer And Riveter NA NA 136447.94 3.411199e+04 28498.535 2021.50 4 2.849853e+04 113994.14 NA NA NA NULL
2017 Department Of Transportation Supervisor Carpenter NA NA 134764.68 3.369117e+04 33826.675 1856.75 4 3.369117e+04 134764.68 NA NA NA NULL
2017 Department Of Transportation Supervisor Dockbuilder NA NA 75760.80 7.576080e+04 75760.800 930.25 1 7.576080e+04 75760.80 NA NA NA NULL
2017 Department Of Transportation Supervisor Electrician NA NA 470060.95 2.937881e+04 39296.630 4920.50 16 2.937881e+04 470060.95 NA NA NA NULL
2017 Department Of Transportation Supervisor Highway Repairer NA NA 3955174.85 2.487531e+04 21019.170 52943.75 159 2.101917e+04 3342048.03 NA NA NA NULL
2017 Department Of Transportation Supervisor Of Electrical Installations & Maintenance 68977.30769 2.690115e+06 526266.07 1.349400e+04 13653.450 8797.33 39 1.349400e+04 526266.07 3.216381e+06 3.216381e+06 0.00 NULL
2017 Department Of Transportation Supervisor Of Mechanics NA NA 1032231.01 2.580578e+04 25973.275 10331.75 40 2.580578e+04 1032231.01 NA NA NA NULL
2017 Department Of Transportation Supervisor Of Office Machine Operations 45278.50000 9.055700e+04 878.39 4.391950e+02 439.195 28.00 2 4.391950e+02 878.39 9.143539e+04 9.143539e+04 0.00 NULL
2017 Department Of Transportation Supervisor Of Stock Workers 49660.33333 2.979620e+05 49040.19 8.173365e+03 7660.780 1318.00 6 7.660780e+03 45964.68 3.470022e+05 3.439267e+05 3075.51 NULL
2017 Department Of Transportation Supervisor Of Traffic Device Maintainers 67187.10526 5.106220e+06 1375550.69 1.809935e+04 17954.155 26610.54 76 1.795415e+04 1364515.78 6.481771e+06 6.470736e+06 11034.91 NULL
2017 Department Of Transportation Supervisor Painter NA NA 47055.60 2.352780e+04 23527.800 602.50 2 2.352780e+04 47055.60 NA NA NA NULL
2017 Department Of Transportation Supervisor Plumber NA NA 129381.07 6.469054e+04 64690.535 1150.25 2 6.469054e+04 129381.07 NA NA NA NULL
2017 Department Of Transportation Supervisor Sheet Metal Worker NA NA 78089.90 7.808990e+04 78089.900 653.50 1 7.808990e+04 78089.90 NA NA NA NULL
2017 Department Of Transportation Supervisor Ship Carpenter NA NA 44604.28 4.460428e+04 44604.280 507.50 1 4.460428e+04 44604.28 NA NA NA NULL
2017 Department Of Transportation Supervisor Steamfitter NA NA 1596.00 1.596000e+03 1596.000 0.00 1 1.596000e+03 1596.00 NA NA NA NULL
2017 Department Of Transportation Telecommunications Associate 86692.71429 6.068490e+05 212163.96 3.030914e+04 35101.240 3033.25 7 3.030914e+04 212163.96 8.190130e+05 8.190130e+05 0.00 NULL
2017 Department Of Transportation Tractor Operator NA NA 910996.88 3.503834e+04 26527.075 6561.50 26 2.652708e+04 689703.95 NA NA NA NULL
2017 Department Of Transportation Traffic Control Inspector 50619.03636 5.568094e+06 729372.11 6.630656e+03 5560.860 19904.52 110 5.560860e+03 611694.60 6.297466e+06 6.179789e+06 117677.51 NULL
2017 Department Of Transportation Traffic Device Maintainer 55514.03782 1.321234e+07 2003132.28 8.416522e+03 7185.920 45561.26 238 7.185920e+03 1710248.96 1.521547e+07 1.492259e+07 292883.32 NULL
2017 Department Of Transportation Welder NA NA 65572.97 3.278649e+04 32786.485 561.00 2 3.278649e+04 65572.97 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs *Custodial Assistant 35005.00000 2.100300e+05 57758.60 9.626433e+03 8659.600 2014.00 6 8.659600e+03 51957.60 2.677886e+05 2.619876e+05 5801.00 NULL
2017 Dept Of Citywide Admin Svcs *Watchperson 44839.50000 8.967900e+04 10839.87 5.419935e+03 5419.935 299.25 2 5.419935e+03 10839.87 1.005189e+05 1.005189e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Accountant 66247.32364 7.287206e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.287206e+05 7.287206e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Adm Manager-Non-Mgrl 73563.17442 6.326433e+06 193378.79 2.248591e+03 207.940 3993.50 86 2.079400e+02 17882.84 6.519812e+06 6.344316e+06 175495.95 NULL
2017 Dept Of Citywide Admin Svcs Admin Construction Project Manager 92082.83333 5.524970e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.524970e+05 5.524970e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Admin Inspector 103896.50000 2.077930e+05 159.74 7.987000e+01 79.870 0.00 2 7.987000e+01 159.74 2.079527e+05 2.079527e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Admin Tests & Meas Spec 111600.00000 6.696000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.696000e+05 6.696000e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Administrative Accountant 124786.00000 3.743580e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.743580e+05 3.743580e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Administrative Architect 123137.25000 4.925490e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.925490e+05 4.925490e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Administrative Business Promotion Coordinator 113461.00000 1.134610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.134610e+05 1.134610e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Administrative City Planner 130749.66667 3.922490e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.922490e+05 3.922490e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Administrative Construction Project Manager 122379.75000 4.895190e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.895190e+05 4.895190e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Administrative Engineer 122838.16667 7.370290e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.370290e+05 7.370290e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Administrative Graphic Artist 94384.00000 1.887680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.887680e+05 1.887680e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Administrative Inspector 114294.00000 2.285880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.285880e+05 2.285880e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Administrative Investigator 75079.40000 3.753970e+05 2608.78 5.217560e+02 0.000 62.75 5 0.000000e+00 0.00 3.780058e+05 3.753970e+05 2608.78 NULL
2017 Dept Of Citywide Admin Svcs Administrative Management Auditor 111994.52000 1.119945e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.119945e+05 1.119945e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Administrative Manager 111254.45455 1.223799e+06 167.28 1.520727e+01 0.000 3.50 11 0.000000e+00 0.00 1.223966e+06 1.223799e+06 167.28 NULL
2017 Dept Of Citywide Admin Svcs Administrative Procurement Analyst 74309.39394 2.452210e+06 8457.12 2.562764e+02 0.000 152.25 33 0.000000e+00 0.00 2.460667e+06 2.452210e+06 8457.12 NULL
2017 Dept Of Citywide Admin Svcs Administrative Project Manager 119968.57143 8.397800e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.397800e+05 8.397800e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Administrative Public Information Specialist 127814.20000 6.390710e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.390710e+05 6.390710e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Administrative Quality Assurance Specialist 90884.50000 5.453070e+05 14638.08 2.439680e+03 419.640 252.25 6 4.196400e+02 2517.84 5.599451e+05 5.478248e+05 12120.24 NULL
2017 Dept Of Citywide Admin Svcs Administrative Real Property Manager 91323.00000 9.132300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.132300e+04 9.132300e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs Administrative Staff Analyst 98889.65926 1.335010e+07 265896.62 1.969605e+03 0.000 4423.75 135 0.000000e+00 0.00 1.361600e+07 1.335010e+07 265896.62 NULL
2017 Dept Of Citywide Admin Svcs Agency Attorney 103247.85714 1.445470e+06 132.70 9.478571e+00 0.000 2.50 14 0.000000e+00 0.00 1.445603e+06 1.445470e+06 132.70 NULL
2017 Dept Of Citywide Admin Svcs Appraiser 85456.00000 3.418240e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.418240e+05 3.418240e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Architect 95219.60000 9.521960e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 9.521960e+05 9.521960e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Asbestos Handler 74620.50000 2.984820e+05 31981.22 7.995305e+03 5415.640 559.00 4 5.415640e+03 21662.56 3.304632e+05 3.201446e+05 10318.66 NULL
2017 Dept Of Citywide Admin Svcs Assistant Architect 69429.50000 2.777180e+05 11415.91 2.853977e+03 0.000 194.50 4 0.000000e+00 0.00 2.891339e+05 2.777180e+05 11415.91 NULL
2017 Dept Of Citywide Admin Svcs Assistant Civil Engineer 78076.00000 1.561520e+05 56.56 2.828000e+01 28.280 1.25 2 2.828000e+01 56.56 1.562086e+05 1.562086e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Assistant Commissioner 155328.33333 9.319700e+05 1244.00 2.073333e+02 0.000 0.00 6 0.000000e+00 0.00 9.332140e+05 9.319700e+05 1244.00 NULL
2017 Dept Of Citywide Admin Svcs Assistant Mechanical Engineer 67706.75000 2.708270e+05 3894.75 9.736875e+02 0.000 75.50 4 0.000000e+00 0.00 2.747218e+05 2.708270e+05 3894.75 NULL
2017 Dept Of Citywide Admin Svcs Assistant Printing Press Operator 57166.50000 1.143330e+05 1016.15 5.080750e+02 508.075 16.00 2 5.080750e+02 1016.15 1.153491e+05 1.153491e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Associate Chemist 62804.00000 6.280400e+04 437.28 4.372800e+02 437.280 12.50 1 4.372800e+02 437.28 6.324128e+04 6.324128e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs Associate Investigator 59250.75000 2.370030e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.370030e+05 2.370030e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Associate Project Manager 91120.23529 1.549044e+06 50671.86 2.980698e+03 0.000 744.25 17 0.000000e+00 0.00 1.599716e+06 1.549044e+06 50671.86 NULL
2017 Dept Of Citywide Admin Svcs Associate Quality Assurance Specialist 71632.80000 3.581640e+05 27258.02 5.451604e+03 4242.750 551.25 5 4.242750e+03 21213.75 3.854220e+05 3.793778e+05 6044.27 NULL
2017 Dept Of Citywide Admin Svcs Associate Real Property Manager 61351.00000 2.454040e+05 7525.40 1.881350e+03 1817.885 180.25 4 1.817885e+03 7271.54 2.529294e+05 2.526755e+05 253.86 NULL
2017 Dept Of Citywide Admin Svcs Associate Staff Analyst 79083.44512 2.530670e+06 46934.12 1.466691e+03 0.000 915.25 32 0.000000e+00 0.00 2.577604e+06 2.530670e+06 46934.12 NULL
2017 Dept Of Citywide Admin Svcs Attorney At Law 105098.66667 3.152960e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.152960e+05 3.152960e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Auto Mechanic NA NA 5741.91 1.913970e+03 0.000 88.50 3 0.000000e+00 0.00 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Bookkeeper 42459.80000 2.122990e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.122990e+05 2.122990e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Bricklayer NA NA 73512.37 7.351237e+04 73512.370 885.00 1 7.351237e+04 73512.37 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Business Promotion Coordinator 70684.71429 4.947930e+05 385.01 5.500143e+01 0.000 8.50 7 0.000000e+00 0.00 4.951780e+05 4.947930e+05 385.01 NULL
2017 Dept Of Citywide Admin Svcs Carpenter NA NA 914225.75 5.377799e+04 59294.870 11883.75 17 5.377799e+04 914225.75 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Cement Mason NA NA 59545.13 5.954513e+04 59545.130 1384.00 1 5.954513e+04 59545.13 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Certified It Administrator 109081.28571 7.635690e+05 72095.07 1.029930e+04 4627.600 949.50 7 4.627600e+03 32393.20 8.356641e+05 7.959622e+05 39701.87 NULL
2017 Dept Of Citywide Admin Svcs Certified It Developer 95018.00000 9.501800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.501800e+04 9.501800e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs Chairman 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Chauffeur-Attendant 55389.32432 2.049405e+06 785246.06 2.122287e+04 20118.070 19326.25 37 2.011807e+04 744368.59 2.834651e+06 2.793774e+06 40877.47 NULL
2017 Dept Of Citywide Admin Svcs Chief Of Staff 184937.50000 3.698750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.698750e+05 3.698750e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs City Custodial Assistant NA NA 4061046.22 8.696030e+03 5243.210 155180.46 467 5.243210e+03 2448579.07 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs City Laborer NA NA 456146.30 1.983245e+04 3020.400 8094.25 23 3.020400e+03 69469.20 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs City Planner 79950.87500 1.279214e+06 35523.00 2.220188e+03 0.000 543.75 16 0.000000e+00 0.00 1.314737e+06 1.279214e+06 35523.00 NULL
2017 Dept Of Citywide Admin Svcs City Planning Technician 51614.00000 5.161400e+04 0.12 1.200000e-01 0.120 0.00 1 1.200000e-01 0.12 5.161412e+04 5.161412e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs City Research Scientist 80251.00000 4.012550e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.012550e+05 4.012550e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs City Security Aide 37912.20513 1.478576e+06 36937.00 9.471026e+02 0.000 1040.00 39 0.000000e+00 0.00 1.515513e+06 1.478576e+06 36937.00 NULL
2017 Dept Of Citywide Admin Svcs Clerical Associate 44625.58310 3.168416e+06 105329.40 1.483513e+03 0.000 3419.25 71 0.000000e+00 0.00 3.273746e+06 3.168416e+06 105329.40 NULL
2017 Dept Of Citywide Admin Svcs Clock Repairer 4901.72000 4.901720e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.901720e+03 4.901720e+03 0.00 NULL
2017 Dept Of Citywide Admin Svcs College Aide 8614.38610 1.722877e+05 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.722877e+05 1.722877e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Commissioner 170748.00000 6.829920e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.829920e+05 6.829920e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Commissioner Of Citywide Administrative Services 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Community Assistant 34964.18182 1.153818e+06 41007.84 1.242662e+03 0.000 1667.25 33 0.000000e+00 0.00 1.194826e+06 1.153818e+06 41007.84 NULL
2017 Dept Of Citywide Admin Svcs Community Associate 46059.80673 2.579349e+06 166535.95 2.973856e+03 670.850 5303.00 56 6.708500e+02 37567.60 2.745885e+06 2.616917e+06 128968.35 NULL
2017 Dept Of Citywide Admin Svcs Community Coordinator 61204.11135 2.264552e+06 101172.23 2.734385e+03 0.000 2053.00 37 0.000000e+00 0.00 2.365724e+06 2.264552e+06 101172.23 NULL
2017 Dept Of Citywide Admin Svcs Community Service Aide 33425.00000 1.002750e+05 9087.03 3.029010e+03 0.000 339.50 3 0.000000e+00 0.00 1.093620e+05 1.002750e+05 9087.03 NULL
2017 Dept Of Citywide Admin Svcs Computer Aide-Non-Spvr 56982.50000 1.139650e+05 6600.10 3.300050e+03 3300.050 124.00 2 3.300050e+03 6600.10 1.205651e+05 1.205651e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Computer Associate 75968.52632 1.443402e+06 69380.49 3.651605e+03 3123.850 1171.25 19 3.123850e+03 59353.15 1.512782e+06 1.502755e+06 10027.34 NULL
2017 Dept Of Citywide Admin Svcs Computer Operations Manager 124583.00000 1.245830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.245830e+05 1.245830e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Computer Programmer Analyst 64333.00000 1.929990e+05 5356.96 1.785653e+03 0.000 92.25 3 0.000000e+00 0.00 1.983560e+05 1.929990e+05 5356.96 NULL
2017 Dept Of Citywide Admin Svcs Computer Specialist 97015.43137 4.947787e+06 109530.16 2.147650e+03 0.000 1686.25 51 0.000000e+00 0.00 5.057317e+06 4.947787e+06 109530.16 NULL
2017 Dept Of Citywide Admin Svcs Computer Systems Manager 129632.82143 3.629719e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 3.629719e+06 3.629719e+06 0.00 NULL
2017 Dept Of Citywide Admin Svcs Confidential Strategy Planner 74676.18182 8.214380e+05 22011.32 2.001029e+03 423.910 426.50 11 4.239100e+02 4663.01 8.434493e+05 8.261010e+05 17348.31 NULL
2017 Dept Of Citywide Admin Svcs Construction Project Manager 78589.40000 7.858940e+05 118288.99 1.182890e+04 7775.955 1741.50 10 7.775955e+03 77759.55 9.041830e+05 8.636536e+05 40529.44 NULL
2017 Dept Of Citywide Admin Svcs Custodian 40410.19022 9.011472e+06 3366365.47 1.509581e+04 12282.280 108816.20 223 1.228228e+04 2738948.44 1.237784e+07 1.175042e+07 627417.03 NULL
2017 Dept Of Citywide Admin Svcs Deputy Assistant Commissioner 87651.31579 3.330750e+06 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 3.330750e+06 3.330750e+06 0.00 NULL
2017 Dept Of Citywide Admin Svcs Deputy Commissioner 201516.50000 8.060660e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.060660e+05 8.060660e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Deputy Commissioner For City Personnel Services 208000.00000 2.080000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.080000e+05 2.080000e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Director Of Energy Conservation 199009.00000 1.990090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.990090e+05 1.990090e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Director Of Public Information 154403.00000 1.544030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.544030e+05 1.544030e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Director Of Security 108821.00000 2.176420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.176420e+05 2.176420e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Director Of Stores 97850.00000 9.785000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.785000e+04 9.785000e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs Director Of The City Record 149047.00000 1.490470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.490470e+05 1.490470e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Director,Citywide Occupational Safety & Health Program 115206.00000 1.152060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.152060e+05 1.152060e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Electrical Engineer 98525.00000 2.955750e+05 28268.21 9.422737e+03 0.000 375.00 3 0.000000e+00 0.00 3.238432e+05 2.955750e+05 28268.21 NULL
2017 Dept Of Citywide Admin Svcs Electrician NA NA 1008565.43 5.308239e+04 52499.420 12326.25 19 5.249942e+04 997488.98 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Elevator Mechanic NA NA 796410.49 2.488783e+04 26298.810 11499.00 32 2.488783e+04 796410.49 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Elevator Mechanic Helper NA NA 51841.13 8.640188e+03 12049.500 1154.25 6 8.640188e+03 51841.13 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Estimator 79635.50000 1.592710e+05 2211.17 1.105585e+03 1105.585 39.50 2 1.105585e+03 2211.17 1.614822e+05 1.614822e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Exec Asst To The Deputy Com For Citywide Personnel Svcs-Dcas 96443.00000 9.644300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.644300e+04 9.644300e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs Executive Agency Counsel 127942.34933 1.919135e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.919135e+06 1.919135e+06 0.00 NULL
2017 Dept Of Citywide Admin Svcs Executive Assistant To The Commissioner 66950.00000 6.695000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.695000e+04 6.695000e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs Executive Director Of Standards And Appeals 137248.00000 1.372480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.372480e+05 1.372480e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Executive Program Specialist 124534.66667 3.736040e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.736040e+05 3.736040e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs First Deputy Commissioner 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs General Counsel 199009.00000 1.990090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.990090e+05 1.990090e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Graphic Artist 60865.00000 2.434600e+05 23102.87 5.775717e+03 1444.535 425.50 4 1.444535e+03 5778.14 2.665629e+05 2.492381e+05 17324.73 NULL
2017 Dept Of Citywide Admin Svcs High Pressure Plant Tender NA NA 774750.31 1.549501e+04 13810.625 14540.50 50 1.381062e+04 690531.25 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Industrial Hygienist 70197.00000 7.019700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.019700e+04 7.019700e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs Inspector 51398.00000 5.139800e+04 74.42 7.442000e+01 74.420 2.00 1 7.442000e+01 74.42 5.147242e+04 5.147242e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs Investigator 45511.14286 3.185780e+05 1295.37 1.850529e+02 0.000 46.50 7 0.000000e+00 0.00 3.198734e+05 3.185780e+05 1295.37 NULL
2017 Dept Of Citywide Admin Svcs Job Training Participant 6018.00967 4.694048e+05 0.00 0.000000e+00 0.000 0.00 78 0.000000e+00 0.00 4.694048e+05 4.694048e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Landscape Architect 86833.00000 8.683300e+04 128.36 1.283600e+02 128.360 2.50 1 1.283600e+02 128.36 8.696136e+04 8.696136e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs Locksmith NA NA 488.40 4.884000e+02 488.400 11.00 1 4.884000e+02 488.40 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Machinist NA NA 21281.72 2.128172e+04 21281.720 338.75 1 2.128172e+04 21281.72 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Maintenance Worker NA NA 911600.28 2.279001e+04 22186.470 20784.69 40 2.218647e+04 887458.80 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Management Auditor 63113.33333 1.893400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.893400e+05 1.893400e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Mechanical Engineer 107705.20000 5.385260e+05 702.19 1.404380e+02 0.000 9.00 5 0.000000e+00 0.00 5.392282e+05 5.385260e+05 702.19 NULL
2017 Dept Of Citywide Admin Svcs Media Services Technician 53969.00000 5.396900e+04 2393.91 2.393910e+03 2393.910 68.00 1 2.393910e+03 2393.91 5.636291e+04 5.636291e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs Motor Vehicle Operator 50440.00000 5.044000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.044000e+04 5.044000e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs Motor Vehicle Supervisor 53969.00000 5.396900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.396900e+04 5.396900e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs New York City Fellow 33593.89274 1.142192e+06 56.38 1.658235e+00 0.000 4.00 34 0.000000e+00 0.00 1.142249e+06 1.142192e+06 56.38 NULL
2017 Dept Of Citywide Admin Svcs New York City Urban Fellow 30645.13669 7.354833e+05 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 7.354833e+05 7.354833e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Nycaps Process Analyst Manager 143158.00000 1.431580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.431580e+05 1.431580e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Office Machine Aide 41752.50000 8.350500e+04 45.42 2.271000e+01 22.710 2.00 2 2.271000e+01 45.42 8.355042e+04 8.355042e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs Oiler NA NA 619095.03 1.673230e+04 10427.760 6541.50 37 1.042776e+04 385827.12 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Painter NA NA 181381.11 3.023019e+04 30610.390 2664.00 6 3.023019e+04 181381.11 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Plasterer NA NA 162181.20 5.406040e+04 75140.760 3537.50 3 5.406040e+04 162181.20 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Plumber NA NA 617252.92 4.408949e+04 47521.710 5841.25 14 4.408949e+04 617252.92 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Plumber’s Helper NA NA 125877.27 4.195909e+04 41934.000 1785.50 3 4.193400e+04 125802.00 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Principal Administrative Associate 60788.51895 5.774909e+06 349636.52 3.680384e+03 150.340 9082.48 95 1.503400e+02 14282.30 6.124546e+06 5.789192e+06 335354.22 NULL
2017 Dept Of Citywide Admin Svcs Principal Appraiser 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Procurement Analyst 66366.58333 7.963990e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.963990e+05 7.963990e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Public Records Officer 58066.00000 1.741980e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.741980e+05 1.741980e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Quality Assurance Specialist 55372.64706 9.413350e+05 31519.81 1.854106e+03 1750.700 931.75 17 1.750700e+03 29761.90 9.728548e+05 9.710969e+05 1757.91 NULL
2017 Dept Of Citywide Admin Svcs Radio And Television Operator 48181.00000 9.636200e+04 10209.19 5.104595e+03 5104.595 291.25 2 5.104595e+03 10209.19 1.065712e+05 1.065712e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Real Property Assistant 42000.00000 4.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.200000e+04 4.200000e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs Secretary 45940.14286 6.431620e+05 14724.36 1.051740e+03 95.665 437.25 14 9.566500e+01 1339.31 6.578864e+05 6.445013e+05 13385.05 NULL
2017 Dept Of Citywide Admin Svcs Secretary Of Comm 62008.00000 6.200800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.200800e+04 6.200800e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs Secretary To The Deputy Commissioner 81653.50000 1.633070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.633070e+05 1.633070e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Senior Estimator 92700.00000 9.270000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.270000e+04 9.270000e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs Senior Salvage Appraiser 70142.00000 7.014200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.014200e+04 7.014200e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs Senior Stationary Engineer NA NA 1088335.06 3.752880e+04 37889.440 10039.00 29 3.752880e+04 1088335.06 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Sheet Metal Worker NA NA 122791.13 6.139557e+04 61395.565 1171.00 2 6.139557e+04 122791.13 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Special Examiner 12486.11179 3.620972e+05 454.74 1.568069e+01 0.000 15.75 29 0.000000e+00 0.00 3.625520e+05 3.620972e+05 454.74 NULL
2017 Dept Of Citywide Admin Svcs Special Officer 46581.36364 1.537185e+06 376052.60 1.139553e+04 11261.850 11316.70 33 1.126185e+04 371641.05 1.913238e+06 1.908826e+06 4411.55 NULL
2017 Dept Of Citywide Admin Svcs Staff Analyst 57793.42857 2.427324e+06 59028.67 1.405445e+03 0.000 1516.25 42 0.000000e+00 0.00 2.486353e+06 2.427324e+06 59028.67 NULL
2017 Dept Of Citywide Admin Svcs Staff Analyst Trainee 42073.00000 4.628030e+05 8087.85 7.352591e+02 0.000 305.25 11 0.000000e+00 0.00 4.708908e+05 4.628030e+05 8087.85 NULL
2017 Dept Of Citywide Admin Svcs Stationary Engineer NA NA 5240019.11 4.478649e+04 38247.870 55060.50 117 3.824787e+04 4475000.79 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Statistician 63519.00000 6.351900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.351900e+04 6.351900e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs Steam Fitter NA NA 684365.00 4.888321e+04 44137.500 6138.00 14 4.413750e+04 617925.00 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Steam Fitter’s Helper NA NA 100650.00 3.355000e+04 49788.750 1209.50 3 3.355000e+04 100650.00 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Stenographic Specialist 11848.40000 1.184840e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.184840e+04 1.184840e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs Stock Worker 34534.64286 4.834850e+05 3333.53 2.381093e+02 184.115 148.25 14 1.841150e+02 2577.61 4.868185e+05 4.860626e+05 755.92 NULL
2017 Dept Of Citywide Admin Svcs Strategic Initiative Specialist 85000.00000 2.550000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.550000e+05 2.550000e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Summer College Intern 2333.95157 7.235250e+04 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 7.235250e+04 7.235250e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs Summer Graduate Intern 3141.58267 3.769899e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 3.769899e+04 3.769899e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs Supervising Special Officer 64596.38462 8.397530e+05 369551.91 2.842707e+04 29303.550 7872.50 13 2.842707e+04 369551.91 1.209305e+06 1.209305e+06 0.00 NULL
2017 Dept Of Citywide Admin Svcs Supervisor NA NA 51557.72 5.155772e+04 51557.720 1000.25 1 5.155772e+04 51557.72 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Supervisor Bricklayer NA NA 108965.39 1.089654e+05 108965.390 1134.00 1 1.089654e+05 108965.39 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Supervisor Carpenter NA NA 246501.25 8.216708e+04 81858.240 3142.00 3 8.185824e+04 245574.72 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Supervisor Electrician NA NA 142222.77 7.111138e+04 71111.385 1431.50 2 7.111138e+04 142222.77 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Supervisor Elevator Mechanic NA NA 257838.68 5.156774e+04 50855.180 3356.75 5 5.085518e+04 254275.90 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Supervisor Locksmith NA NA 45816.60 4.581660e+04 45816.600 909.00 1 4.581660e+04 45816.60 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Supervisor Of Electrical Installations & Maintenance 85946.00000 8.594600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.594600e+04 8.594600e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs Supervisor Of Mechanics NA NA 61347.38 3.067369e+04 30673.690 652.00 2 3.067369e+04 61347.38 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Supervisor Of Motor Transport 60531.00000 6.053100e+04 17487.46 1.748746e+04 17487.460 354.25 1 1.748746e+04 17487.46 7.801846e+04 7.801846e+04 0.00 NULL
2017 Dept Of Citywide Admin Svcs Supervisor Of Radio And Television Operators 81611.50000 1.632230e+05 30097.62 1.504881e+04 15048.810 496.50 2 1.504881e+04 30097.62 1.933206e+05 1.933206e+05 0.00 NULL
2017 Dept Of Citywide Admin Svcs Supervisor Of Stock Workers 50390.14286 3.527310e+05 40093.42 5.727631e+03 5345.240 1008.25 7 5.345240e+03 37416.68 3.928244e+05 3.901477e+05 2676.74 NULL
2017 Dept Of Citywide Admin Svcs Supervisor Painter NA NA 69386.17 6.938617e+04 69386.170 905.75 1 6.938617e+04 69386.17 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Supervisor Plumber NA NA 153541.04 1.535410e+05 153541.040 1384.00 1 1.535410e+05 153541.04 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Supervisor Sheet Metal Worker NA NA 110258.77 1.102588e+05 110258.770 955.75 1 1.102588e+05 110258.77 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Supervisor Steamfitter NA NA 126882.00 1.268820e+05 126882.000 1079.50 1 1.268820e+05 126882.00 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Supervisor Thermostat Repair NA NA 45372.02 4.537202e+04 45372.020 393.25 1 4.537202e+04 45372.02 NA NA NA NULL
2017 Dept Of Citywide Admin Svcs Tests And Measurement Specialist 69781.07143 1.953870e+06 169333.09 6.047610e+03 1784.915 3539.75 28 1.784915e+03 49977.62 2.123203e+06 2.003848e+06 119355.47 NULL
2017 Dept Of Citywide Admin Svcs Thermostat Repairer NA NA 173952.95 1.338100e+04 11851.380 1572.75 13 1.185138e+04 154067.94 NA NA NA NULL
2017 Dept Of Ed Hrly Support Staff Coop Education Trainee Computer Tech Aide/Jr 0.00000 0.000000e+00 61.83 1.236600e+01 0.000 0.00 5 0.000000e+00 0.00 6.183000e+01 0.000000e+00 61.83 NULL
2017 Dept Of Ed Hrly Support Staff Coop Education Trainee Computer Tech Aide/Sr 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2017 Dept Of Ed Hrly Support Staff Coop Trainee Typist 0.00000 0.000000e+00 1518.00 4.337143e+00 0.000 0.00 350 0.000000e+00 0.00 1.518000e+03 0.000000e+00 1518.00 NULL
2017 Dept Of Ed Hrly Support Staff F/T Dc 37 Family Para 0.00000 0.000000e+00 125547.75 7.367826e+01 0.000 0.00 1704 0.000000e+00 0.00 1.255478e+05 0.000000e+00 125547.75 NULL
2017 Dept Of Ed Hrly Support Staff F/T Film Inspection Asst. 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2017 Dept Of Ed Hrly Support Staff F/T Group Leader 0.00000 0.000000e+00 133244.92 1.211317e+04 6075.730 0.00 11 6.075730e+03 66833.03 1.332449e+05 6.683303e+04 66411.89 NULL
2017 Dept Of Ed Hrly Support Staff F/T Health Service Aide 0.00000 0.000000e+00 11527.82 7.584092e+01 0.000 0.00 152 0.000000e+00 0.00 1.152782e+04 0.000000e+00 11527.82 NULL
2017 Dept Of Ed Hrly Support Staff F/T School Aide 0.00000 0.000000e+00 1817264.01 2.152136e+02 0.000 0.00 8444 0.000000e+00 0.00 1.817264e+06 0.000000e+00 1817264.01 NULL
2017 Dept Of Ed Hrly Support Staff F/T School Guard 0.00000 0.000000e+00 18042.38 4.876319e+02 0.000 0.00 37 0.000000e+00 0.00 1.804238e+04 0.000000e+00 18042.38 NULL
2017 Dept Of Ed Hrly Support Staff F/T School Lunch Helper 0.00000 0.000000e+00 146021.74 3.323208e+01 0.000 0.00 4394 0.000000e+00 0.00 1.460217e+05 0.000000e+00 146021.74 NULL
2017 Dept Of Ed Hrly Support Staff F/T School Safety Officer 0.00000 0.000000e+00 190253.20 6.137200e+03 3804.910 0.00 31 3.804910e+03 117952.21 1.902532e+05 1.179522e+05 72300.99 NULL
2017 Dept Of Ed Hrly Support Staff F/T Sr. School Lunch Helper 0.00000 0.000000e+00 342423.92 1.289732e+02 0.000 0.00 2655 0.000000e+00 0.00 3.424239e+05 0.000000e+00 342423.92 NULL
2017 Dept Of Ed Hrly Support Staff Student Aide 0.00000 0.000000e+00 5100.91 2.060974e+00 0.000 0.00 2475 0.000000e+00 0.00 5.100910e+03 0.000000e+00 5100.91 NULL
2017 Dept Of Ed Hrly Support Staff Substitute Health Svc. Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2017 Dept Of Ed Hrly Support Staff Substitute Recreation Assistant 0.00000 0.000000e+00 1512.13 2.438919e+01 0.000 0.00 62 0.000000e+00 0.00 1.512130e+03 0.000000e+00 1512.13 NULL
2017 Dept Of Ed Hrly Support Staff Substitute School Aide 0.00000 0.000000e+00 8106.22 2.047025e+01 0.000 0.00 396 0.000000e+00 0.00 8.106220e+03 0.000000e+00 8106.22 NULL
2017 Dept Of Ed Hrly Support Staff Substitute School Lunch Helper 0.00000 0.000000e+00 52.55 8.367830e-02 0.000 0.00 628 0.000000e+00 0.00 5.255000e+01 0.000000e+00 52.55 NULL
2017 Dept Of Ed Hrly Support Staff Substitute Sr. School Lunch Helper 0.00000 0.000000e+00 211.46 4.315510e-01 0.000 0.00 490 0.000000e+00 0.00 2.114600e+02 0.000000e+00 211.46 NULL
2017 Dept Of Ed Hrly Support Staff Supervising School Aide 0.00000 0.000000e+00 377895.78 8.040336e+02 0.000 0.00 470 0.000000e+00 0.00 3.778958e+05 0.000000e+00 377895.78 NULL
2017 Dept Of Ed Hrly Support Staff NA NA NA 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2017 Dept Of Ed Para Professionals Adult Ed-30 H 39041.26471 1.327403e+06 13591.84 3.997600e+02 0.000 0.00 34 0.000000e+00 0.00 1.340995e+06 1.327403e+06 13591.84 NULL
2017 Dept Of Ed Para Professionals Adult Ed-35 H 43241.00000 8.648200e+04 3932.82 1.966410e+03 1966.410 0.00 2 1.966410e+03 3932.82 9.041482e+04 9.041482e+04 0.00 NULL
2017 Dept Of Ed Para Professionals Annual Ed Para 34374.52737 9.300028e+08 1744220.41 6.446943e+01 0.000 0.00 27055 0.000000e+00 0.00 9.317471e+08 9.300028e+08 1744220.41 NULL
2017 Dept Of Ed Para Professionals Per-Session Ed Para 0.00000 0.000000e+00 -188.17 -2.412436e+00 0.000 0.00 78 -2.412436e+00 -188.17 -1.881700e+02 -1.881700e+02 0.00 NULL
2017 Dept Of Ed Para Professionals Substitute Ed Para NA NA 0.00 0.000000e+00 0.000 0.00 7100 0.000000e+00 0.00 NA NA NA NULL
2017 Dept Of Ed Para Professionals Teacher Aide 24845.26000 3.726789e+06 11381.57 7.587713e+01 0.000 0.00 150 0.000000e+00 0.00 3.738171e+06 3.726789e+06 11381.57 NULL
2017 Dept Of Ed Para Professionals NA 30777.50000 6.155500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.155500e+04 6.155500e+04 0.00 NULL
2017 Dept Of Ed Pedagogical 12 Month Special Education Asst. Principal 126141.18834 2.812948e+07 0.00 0.000000e+00 0.000 0.00 223 0.000000e+00 0.00 2.812948e+07 2.812948e+07 0.00 NULL
2017 Dept Of Ed Pedagogical 12 Month Special Education Supervisor 127260.00000 3.054240e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 3.054240e+06 3.054240e+06 0.00 NULL
2017 Dept Of Ed Pedagogical Adult Educat Teach - Reg Sub 35082.33333 3.157410e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 3.157410e+05 3.157410e+05 0.00 NULL
2017 Dept Of Ed Pedagogical Adult Education Teacher 96529.32620 1.805098e+07 0.00 0.000000e+00 0.000 0.00 187 0.000000e+00 0.00 1.805098e+07 1.805098e+07 0.00 NULL
2017 Dept Of Ed Pedagogical Aspiring Principal 119357.00000 1.193570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.193570e+05 1.193570e+05 0.00 NULL
2017 Dept Of Ed Pedagogical Assistant Principal 116453.42845 4.150400e+08 0.00 0.000000e+00 0.000 0.00 3564 0.000000e+00 0.00 4.150400e+08 4.150400e+08 0.00 NULL
2017 Dept Of Ed Pedagogical Assistant Principal Assigned 122478.00000 9.798240e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.798240e+05 9.798240e+05 0.00 NULL
2017 Dept Of Ed Pedagogical Assistant Superintendent 156395.78199 3.299951e+07 0.00 0.000000e+00 0.000 0.00 211 0.000000e+00 0.00 3.299951e+07 3.299951e+07 0.00 NULL
2017 Dept Of Ed Pedagogical Chancellor 234569.00000 2.345690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.345690e+05 2.345690e+05 0.00 NULL
2017 Dept Of Ed Pedagogical Community Supertindent 176837.55769 9.195553e+06 0.00 0.000000e+00 0.000 0.00 52 0.000000e+00 0.00 9.195553e+06 9.195553e+06 0.00 NULL
2017 Dept Of Ed Pedagogical Cse Chairperson 136564.84615 1.775343e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.775343e+06 1.775343e+06 0.00 NULL
2017 Dept Of Ed Pedagogical Deputy Chancellor 225948.00000 2.259480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.259480e+05 2.259480e+05 0.00 NULL
2017 Dept Of Ed Pedagogical Deputy Community Superintendent 162140.50000 3.242810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.242810e+05 3.242810e+05 0.00 NULL
2017 Dept Of Ed Pedagogical Deputy Regional Superintendent 200812.33333 6.024370e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.024370e+05 6.024370e+05 0.00 NULL
2017 Dept Of Ed Pedagogical Director 130472.41176 2.218031e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.218031e+06 2.218031e+06 0.00 NULL
2017 Dept Of Ed Pedagogical Educational Administrator 118883.28409 1.255407e+08 0.00 0.000000e+00 0.000 0.00 1056 0.000000e+00 0.00 1.255407e+08 1.255407e+08 0.00 NULL
2017 Dept Of Ed Pedagogical Educational Administrator Uft 128701.87500 1.029615e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.029615e+06 1.029615e+06 0.00 NULL
2017 Dept Of Ed Pedagogical Guidance Counselor 92522.85329 3.052329e+08 0.00 0.000000e+00 0.000 0.00 3299 0.000000e+00 0.00 3.052329e+08 3.052329e+08 0.00 NULL
2017 Dept Of Ed Pedagogical Guidance Counselor Assigned A 77392.34444 6.965311e+06 0.00 0.000000e+00 0.000 0.00 90 0.000000e+00 0.00 6.965311e+06 6.965311e+06 0.00 NULL
2017 Dept Of Ed Pedagogical Guidance Counselor-Reg Sub 59329.62500 4.746370e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.746370e+05 4.746370e+05 0.00 NULL
2017 Dept Of Ed Pedagogical Lab Specialist/Assistant 80656.35135 8.952855e+06 0.00 0.000000e+00 0.000 0.00 111 0.000000e+00 0.00 8.952855e+06 8.952855e+06 0.00 NULL
2017 Dept Of Ed Pedagogical Lab Specialist/Assistant-Reg Sub 45651.00000 4.565100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.565100e+04 4.565100e+04 0.00 NULL
2017 Dept Of Ed Pedagogical Local Instructional Supervisor 184557.80000 1.845578e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.845578e+06 1.845578e+06 0.00 NULL
2017 Dept Of Ed Pedagogical New Principal Intern 87527.00000 8.752700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.752700e+04 8.752700e+04 0.00 NULL
2017 Dept Of Ed Pedagogical Principal 149412.10677 2.714818e+08 0.00 0.000000e+00 0.000 0.00 1817 0.000000e+00 0.00 2.714818e+08 2.714818e+08 0.00 NULL
2017 Dept Of Ed Pedagogical Principal Assigned 160393.60870 3.689053e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 3.689053e+06 3.689053e+06 0.00 NULL
2017 Dept Of Ed Pedagogical Psychologist In Train - Reg Sub 47370.00000 9.947700e+05 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 9.947700e+05 9.947700e+05 0.00 NULL
2017 Dept Of Ed Pedagogical Regional Instructional Superintendent 215391.00000 2.153910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.153910e+05 2.153910e+05 0.00 NULL
2017 Dept Of Ed Pedagogical School Medical Inspector 81992.00000 2.459760e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.459760e+05 2.459760e+05 0.00 NULL
2017 Dept Of Ed Pedagogical School Psychiatrist 86228.00000 8.622800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.622800e+04 8.622800e+04 0.00 NULL
2017 Dept Of Ed Pedagogical School Psycholgist 93941.42963 1.388454e+08 0.00 0.000000e+00 0.000 0.00 1478 0.000000e+00 0.00 1.388454e+08 1.388454e+08 0.00 NULL
2017 Dept Of Ed Pedagogical School Psychologist - Reg Sub 61514.57143 4.306020e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.306020e+05 4.306020e+05 0.00 NULL
2017 Dept Of Ed Pedagogical School Secretary 59995.99969 1.918072e+08 0.00 0.000000e+00 0.000 0.00 3197 0.000000e+00 0.00 1.918072e+08 1.918072e+08 0.00 NULL
2017 Dept Of Ed Pedagogical School Secretary-Reg Sub 41307.37089 8.798470e+06 0.00 0.000000e+00 0.000 0.00 213 0.000000e+00 0.00 8.798470e+06 8.798470e+06 0.00 NULL
2017 Dept Of Ed Pedagogical School Social Worker 94404.65739 1.628480e+08 0.00 0.000000e+00 0.000 0.00 1725 0.000000e+00 0.00 1.628480e+08 1.628480e+08 0.00 NULL
2017 Dept Of Ed Pedagogical School Social Worker - Reg Sub 68262.60000 3.413130e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.413130e+05 3.413130e+05 0.00 NULL
2017 Dept Of Ed Pedagogical Supervisor 114582.05172 6.645759e+06 0.00 0.000000e+00 0.000 0.00 58 0.000000e+00 0.00 6.645759e+06 6.645759e+06 0.00 NULL
2017 Dept Of Ed Pedagogical Supervisor Assigned 131460.52174 3.023592e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 3.023592e+06 3.023592e+06 0.00 NULL
2017 Dept Of Ed Pedagogical Teach Asst Vocation - Reg Sub 49441.18367 2.422618e+06 0.00 0.000000e+00 0.000 0.00 49 0.000000e+00 0.00 2.422618e+06 2.422618e+06 0.00 NULL
2017 Dept Of Ed Pedagogical Teacher 85390.28247 5.127516e+09 0.00 0.000000e+00 0.000 0.00 60048 0.000000e+00 0.00 5.127516e+09 5.127516e+09 0.00 NULL
2017 Dept Of Ed Pedagogical Teacher Assigned A 95938.79091 5.276634e+07 0.00 0.000000e+00 0.000 0.00 550 0.000000e+00 0.00 5.276634e+07 5.276634e+07 0.00 NULL
2017 Dept Of Ed Pedagogical Teacher Assistant - Reg Sub 22500.00000 1.192500e+06 0.00 0.000000e+00 0.000 0.00 53 0.000000e+00 0.00 1.192500e+06 1.192500e+06 0.00 NULL
2017 Dept Of Ed Pedagogical Teacher Attendance 90150.58673 3.533903e+07 0.00 0.000000e+00 0.000 0.00 392 0.000000e+00 0.00 3.533903e+07 3.533903e+07 0.00 NULL
2017 Dept Of Ed Pedagogical Teacher Resource Room 110411.50000 2.208230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.208230e+05 2.208230e+05 0.00 NULL
2017 Dept Of Ed Pedagogical Teacher Special Education 80081.36409 1.983936e+09 0.00 0.000000e+00 0.000 0.00 24774 0.000000e+00 0.00 1.983936e+09 1.983936e+09 0.00 NULL
2017 Dept Of Ed Pedagogical Teacher Special Education-Reg Sub 56008.96916 3.450152e+07 0.00 0.000000e+00 0.000 0.00 616 0.000000e+00 0.00 3.450152e+07 3.450152e+07 0.00 NULL
2017 Dept Of Ed Pedagogical Teacher Trainer 101729.00000 2.034580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.034580e+05 2.034580e+05 0.00 NULL
2017 Dept Of Ed Pedagogical Teacher-Reg Sub 60993.33384 4.001163e+07 0.00 0.000000e+00 0.000 0.00 656 0.000000e+00 0.00 4.001163e+07 4.001163e+07 0.00 NULL
2017 Dept Of Ed Pedagogical Uft School Secretary Assigned - Non School Based- 12 Month 50724.50000 1.014490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.014490e+05 1.014490e+05 0.00 NULL
2017 Dept Of Ed Per Diem Teachers Assistant Principal NA NA 0.00 0.000000e+00 0.000 0.00 91 0.000000e+00 0.00 NA NA NA NULL
2017 Dept Of Ed Per Diem Teachers Guidance Counselor NA NA 0.00 0.000000e+00 0.000 0.00 167 0.000000e+00 0.00 NA NA NA NULL
2017 Dept Of Ed Per Diem Teachers Lab Specialist/Assistant NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2017 Dept Of Ed Per Diem Teachers Principal NA NA 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 NA NA NA NULL
2017 Dept Of Ed Per Diem Teachers School Psychologist NA NA 0.00 0.000000e+00 0.000 0.00 77 0.000000e+00 0.00 NA NA NA NULL
2017 Dept Of Ed Per Diem Teachers School Social Worker NA NA 0.00 0.000000e+00 0.000 0.00 56 0.000000e+00 0.00 NA NA NA NULL
2017 Dept Of Ed Per Diem Teachers Secretary NA NA 0.00 0.000000e+00 0.000 0.00 188 0.000000e+00 0.00 NA NA NA NULL
2017 Dept Of Ed Per Diem Teachers Supervisor NA NA 0.00 0.000000e+00 0.000 0.00 137 0.000000e+00 0.00 NA NA NA NULL
2017 Dept Of Ed Per Diem Teachers Teacher-General Ed NA NA 0.00 0.000000e+00 0.000 0.00 10843 0.000000e+00 0.00 NA NA NA NULL
2017 Dept Of Ed Per Diem Teachers Teacher-Special Ed NA NA 0.00 0.000000e+00 0.000 0.00 242 0.000000e+00 0.00 NA NA NA NULL
2017 Dept Of Ed Per Session Teacher School Secretary Per Session NA NA 0.00 0.000000e+00 0.000 0.00 1047 0.000000e+00 0.00 NA NA NA NULL
2017 Dept Of Ed Per Session Teacher Supervisor Per Session NA NA 0.00 0.000000e+00 0.000 0.00 1007 0.000000e+00 0.00 NA NA NA NULL
2017 Dept Of Ed Per Session Teacher Teacher- Per Session NA NA 0.00 0.000000e+00 0.000 0.00 74270 0.000000e+00 0.00 NA NA NA NULL
2017 Dept Of Environment Protection *Custodial Assistant 34709.00000 3.470900e+04 1477.99 1.477990e+03 1477.990 56.00 1 1.477990e+03 1477.99 3.618699e+04 3.618699e+04 0.00 NULL
2017 Dept Of Environment Protection *First Asst Marine Engineer 77252.00000 3.090080e+05 66063.74 1.651594e+04 14235.455 1232.75 4 1.423545e+04 56941.82 3.750717e+05 3.659498e+05 9121.92 NULL
2017 Dept Of Environment Protection *Research Scientist 101642.00000 1.016420e+05 1171.53 1.171530e+03 1171.530 16.00 1 1.171530e+03 1171.53 1.028135e+05 1.028135e+05 0.00 NULL
2017 Dept Of Environment Protection Accountant 64756.20000 3.237810e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.237810e+05 3.237810e+05 0.00 NULL
2017 Dept Of Environment Protection Adm Manager-Non-Mgrl 77299.10000 7.729910e+06 374584.57 3.745846e+03 92.805 7373.00 100 9.280500e+01 9280.50 8.104495e+06 7.739190e+06 365304.07 NULL
2017 Dept Of Environment Protection Admin Community Relations Specialist 109567.57895 2.081784e+06 140069.31 7.372069e+03 3212.360 1889.00 19 3.212360e+03 61034.84 2.221853e+06 2.142819e+06 79034.47 NULL
2017 Dept Of Environment Protection Admin Dir Of Laboratory 104428.50000 2.088570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.088570e+05 2.088570e+05 0.00 NULL
2017 Dept Of Environment Protection Administrative Accountant 85318.11460 1.706362e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.706362e+05 1.706362e+05 0.00 NULL
2017 Dept Of Environment Protection Administrative Architect 130086.00000 1.300860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300860e+05 1.300860e+05 0.00 NULL
2017 Dept Of Environment Protection Administrative City Planner 121616.40000 1.824246e+06 84.19 5.612667e+00 0.000 1.50 15 0.000000e+00 0.00 1.824330e+06 1.824246e+06 84.19 NULL
2017 Dept Of Environment Protection Administrative Construction Project Manager 127415.00000 1.274150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.274150e+05 1.274150e+05 0.00 NULL
2017 Dept Of Environment Protection Administrative Director Of Laboratory 131916.21429 1.846827e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.846827e+06 1.846827e+06 0.00 NULL
2017 Dept Of Environment Protection Administrative Engineer 133328.11005 2.786558e+07 215473.84 1.030975e+03 0.000 2899.25 209 0.000000e+00 0.00 2.808105e+07 2.786558e+07 215473.84 NULL
2017 Dept Of Environment Protection Administrative Horticulturist 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2017 Dept Of Environment Protection Administrative Landscape Architect 131051.00000 1.310510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.310510e+05 1.310510e+05 0.00 NULL
2017 Dept Of Environment Protection Administrative Manager 145412.16667 8.724730e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.724730e+05 8.724730e+05 0.00 NULL
2017 Dept Of Environment Protection Administrative Procurement Analyst 95183.27273 1.047016e+06 39913.45 3.628495e+03 0.000 560.00 11 0.000000e+00 0.00 1.086929e+06 1.047016e+06 39913.45 NULL
2017 Dept Of Environment Protection Administrative Project Manager 118738.82386 1.567352e+07 345529.67 2.617649e+03 0.000 5180.50 132 0.000000e+00 0.00 1.601905e+07 1.567352e+07 345529.67 NULL
2017 Dept Of Environment Protection Administrative Public Health Sanitarian 113280.10000 1.132801e+06 3281.86 3.281860e+02 0.000 31.25 10 0.000000e+00 0.00 1.136083e+06 1.132801e+06 3281.86 NULL
2017 Dept Of Environment Protection Administrative Public Information Specialist 106306.60000 1.063066e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.063066e+06 1.063066e+06 0.00 NULL
2017 Dept Of Environment Protection Administrative Quality Assurance Specialist 93904.66667 2.817140e+05 16682.76 5.560920e+03 7492.600 259.75 3 5.560920e+03 16682.76 2.983968e+05 2.983968e+05 0.00 NULL
2017 Dept Of Environment Protection Administrative Real Property Manager 127776.00000 2.555520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.555520e+05 2.555520e+05 0.00 NULL
2017 Dept Of Environment Protection Administrative Staff Analyst 106522.54331 1.352836e+07 571400.42 4.499216e+03 0.000 7698.25 127 0.000000e+00 0.00 1.409976e+07 1.352836e+07 571400.42 NULL
2017 Dept Of Environment Protection Administrative Storekeeper 109076.00000 2.181520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.181520e+05 2.181520e+05 0.00 NULL
2017 Dept Of Environment Protection Administrative Supervisor Of Building Maintenance 115000.00000 2.300000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.300000e+05 2.300000e+05 0.00 NULL
2017 Dept Of Environment Protection Agency Attorney 89801.09302 3.861447e+06 39437.25 9.171453e+02 0.000 664.00 43 0.000000e+00 0.00 3.900884e+06 3.861447e+06 39437.25 NULL
2017 Dept Of Environment Protection Agency Attorney Interne 60000.00000 6.000000e+04 49.26 4.926000e+01 49.260 1.50 1 4.926000e+01 49.26 6.004926e+04 6.004926e+04 0.00 NULL
2017 Dept Of Environment Protection Air Pollution Inspector 46088.87500 1.843555e+06 580348.91 1.450872e+04 12596.005 16031.75 40 1.259600e+04 503840.20 2.423904e+06 2.347395e+06 76508.71 NULL
2017 Dept Of Environment Protection Apprentice 37798.24404 3.364044e+06 404369.70 4.543480e+03 4209.810 14796.50 89 4.209810e+03 374673.09 3.768413e+06 3.738717e+06 29696.61 NULL
2017 Dept Of Environment Protection Architect 94083.80000 4.704190e+05 3658.90 7.317800e+02 0.000 73.00 5 0.000000e+00 0.00 4.740779e+05 4.704190e+05 3658.90 NULL
2017 Dept Of Environment Protection Assistant Architect 67087.85714 4.696150e+05 197.99 2.828429e+01 0.000 0.00 7 0.000000e+00 0.00 4.698130e+05 4.696150e+05 197.99 NULL
2017 Dept Of Environment Protection Assistant Chemical Engineer 64761.38095 1.359989e+06 146492.61 6.975839e+03 1075.960 3286.75 21 1.075960e+03 22595.16 1.506482e+06 1.382584e+06 123897.45 NULL
2017 Dept Of Environment Protection Assistant Civil Engineer 64272.44037 7.005696e+06 626518.03 5.747872e+03 894.380 13770.50 109 8.943800e+02 97487.42 7.632214e+06 7.103183e+06 529030.61 NULL
2017 Dept Of Environment Protection Assistant Commissioner 161225.75000 6.449030e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.449030e+05 6.449030e+05 0.00 NULL
2017 Dept Of Environment Protection Assistant Electrical Engineer 65063.61765 2.212163e+06 117464.74 3.454845e+03 594.080 2746.50 34 5.940800e+02 20198.72 2.329628e+06 2.232362e+06 97266.02 NULL
2017 Dept Of Environment Protection Assistant Environmental Engineer 65056.62500 2.081812e+06 90195.95 2.818623e+03 149.370 2260.00 32 1.493700e+02 4779.84 2.172008e+06 2.086592e+06 85416.11 NULL
2017 Dept Of Environment Protection Assistant Mechanical Engineer 64408.98413 4.057766e+06 250897.76 3.982504e+03 817.170 5980.50 63 8.171700e+02 51481.71 4.308664e+06 4.109248e+06 199416.05 NULL
2017 Dept Of Environment Protection Assoc Water Use Inspector-Mgrl 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2017 Dept Of Environment Protection Associate Air Pollution Inspr 59874.87500 9.579980e+05 368883.16 2.305520e+04 25140.025 7796.25 16 2.305520e+04 368883.16 1.326881e+06 1.326881e+06 0.00 NULL
2017 Dept Of Environment Protection Associate Chemist 67910.03226 1.052606e+07 921288.95 5.943800e+03 585.500 25724.25 155 5.855000e+02 90752.50 1.144734e+07 1.061681e+07 830536.45 NULL
2017 Dept Of Environment Protection Associate Investigator 60175.50000 1.203510e+05 2526.54 1.263270e+03 1263.270 66.00 2 1.263270e+03 2526.54 1.228775e+05 1.228775e+05 0.00 NULL
2017 Dept Of Environment Protection Associate Laboratory Microbiologist 70328.13636 1.547219e+06 82312.60 3.741482e+03 464.515 1809.75 22 4.645150e+02 10219.33 1.629532e+06 1.557438e+06 72093.27 NULL
2017 Dept Of Environment Protection Associate Project Manager 80937.77410 2.128663e+07 1092987.41 4.155846e+03 127.390 19804.00 263 1.273900e+02 33503.57 2.237962e+07 2.132014e+07 1059483.84 NULL
2017 Dept Of Environment Protection Associate Public Health Sanitarian 72366.38889 2.605190e+06 75960.09 2.110003e+03 128.460 1264.25 36 1.284600e+02 4624.56 2.681150e+06 2.609815e+06 71335.53 NULL
2017 Dept Of Environment Protection Associate Public Records Officer 77400.00000 7.740000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.740000e+04 7.740000e+04 0.00 NULL
2017 Dept Of Environment Protection Associate Quality Assurance Specialist 69094.00000 4.145640e+05 27155.36 4.525893e+03 3627.050 565.00 6 3.627050e+03 21762.30 4.417194e+05 4.363263e+05 5393.06 NULL
2017 Dept Of Environment Protection Associate Staff Analyst 81512.20095 3.423512e+06 69206.13 1.647765e+03 0.000 1294.50 42 0.000000e+00 0.00 3.492719e+06 3.423512e+06 69206.13 NULL
2017 Dept Of Environment Protection Associate Water Use Inpector 62341.77273 4.114557e+06 738088.15 1.118315e+04 11138.785 15932.75 66 1.113878e+04 735159.81 4.852645e+06 4.849717e+06 2928.34 NULL
2017 Dept Of Environment Protection Attorney At Law 101811.75000 4.072470e+05 12346.77 3.086693e+03 0.000 171.25 4 0.000000e+00 0.00 4.195938e+05 4.072470e+05 12346.77 NULL
2017 Dept Of Environment Protection Auto Mechanic NA NA 53807.19 4.891563e+03 3286.510 973.25 11 3.286510e+03 36151.61 NA NA NA NULL
2017 Dept Of Environment Protection Bricklayer NA NA 12529.56 6.264780e+03 6264.780 145.25 2 6.264780e+03 12529.56 NA NA NA NULL
2017 Dept Of Environment Protection Captain 87357.00000 7.862130e+05 188255.12 2.091724e+04 18912.780 2832.00 9 1.891278e+04 170215.02 9.744681e+05 9.564280e+05 18040.10 NULL
2017 Dept Of Environment Protection Carpenter NA NA 92876.56 1.326808e+04 14028.750 1246.50 7 1.326808e+04 92876.56 NA NA NA NULL
2017 Dept Of Environment Protection Certified It Administrator 107268.91304 2.467185e+06 162898.18 7.082530e+03 5756.670 2518.00 23 5.756670e+03 132403.41 2.630083e+06 2.599588e+06 30494.77 NULL
2017 Dept Of Environment Protection Chemical Engineer 84394.42857 5.907610e+05 24870.72 3.552960e+03 152.630 436.75 7 1.526300e+02 1068.41 6.156317e+05 5.918294e+05 23802.31 NULL
2017 Dept Of Environment Protection Chemical Engineering Intern 53824.50000 1.076490e+05 35.58 1.779000e+01 17.790 0.00 2 1.779000e+01 35.58 1.076846e+05 1.076846e+05 0.00 NULL
2017 Dept Of Environment Protection Chief Engineer 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2017 Dept Of Environment Protection Chief Marine Engineer 81527.00000 6.522160e+05 310647.72 3.883096e+04 37296.165 5088.50 8 3.729617e+04 298369.32 9.628637e+05 9.505853e+05 12278.40 NULL
2017 Dept Of Environment Protection City Custodial Assistant 34520.00000 3.452000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.452000e+04 3.452000e+04 0.00 NULL
2017 Dept Of Environment Protection City Laborer NA NA 125114.37 7.819648e+03 2279.165 2137.50 16 2.279165e+03 36466.64 NA NA NA NULL
2017 Dept Of Environment Protection City Park Worker 14051.05430 9.273696e+05 10310.22 1.562155e+02 0.000 441.50 66 0.000000e+00 0.00 9.376798e+05 9.273696e+05 10310.22 NULL
2017 Dept Of Environment Protection City Planner 70762.86486 2.618226e+06 90828.48 2.454824e+03 0.000 1983.00 37 0.000000e+00 0.00 2.709054e+06 2.618226e+06 90828.48 NULL
2017 Dept Of Environment Protection City Planning Technician 45498.60000 2.274930e+05 849.16 1.698320e+02 0.000 15.00 5 0.000000e+00 0.00 2.283422e+05 2.274930e+05 849.16 NULL
2017 Dept Of Environment Protection City Research Scientist 84943.52613 6.965369e+06 288119.42 3.513651e+03 0.000 5443.75 82 0.000000e+00 0.00 7.253489e+06 6.965369e+06 288119.42 NULL
2017 Dept Of Environment Protection City Seasonal Aide 7730.53223 4.638319e+04 1264.06 2.106767e+02 0.000 50.00 6 0.000000e+00 0.00 4.764725e+04 4.638319e+04 1264.06 NULL
2017 Dept Of Environment Protection Civil Engineer 91073.62500 5.100123e+06 191306.62 3.416190e+03 0.000 3035.75 56 0.000000e+00 0.00 5.291430e+06 5.100123e+06 191306.62 NULL
2017 Dept Of Environment Protection Civil Engineering Intern 53271.70588 9.056190e+05 14117.76 8.304565e+02 345.090 421.25 17 3.450900e+02 5866.53 9.197368e+05 9.114855e+05 8251.23 NULL
2017 Dept Of Environment Protection Claim Specialist 42434.14286 2.970390e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.970390e+05 2.970390e+05 0.00 NULL
2017 Dept Of Environment Protection Clerical Aide 23278.54170 4.655708e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.655708e+04 4.655708e+04 0.00 NULL
2017 Dept Of Environment Protection Clerical Associate 38269.66017 1.327957e+07 724367.83 2.087515e+03 50.980 22681.50 347 5.098000e+01 17690.06 1.400394e+07 1.329726e+07 706677.77 NULL
2017 Dept Of Environment Protection College Aide 5118.48222 1.177251e+05 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 1.177251e+05 1.177251e+05 0.00 NULL
2017 Dept Of Environment Protection Commissioner Of Environmental Protection 219773.00000 2.197730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197730e+05 2.197730e+05 0.00 NULL
2017 Dept Of Environment Protection Community Assistant 36628.70477 9.889750e+05 37075.63 1.373171e+03 349.600 1527.00 27 3.496000e+02 9439.20 1.026051e+06 9.984142e+05 27636.43 NULL
2017 Dept Of Environment Protection Community Associate 49907.25974 3.343786e+06 234957.82 3.506833e+03 799.700 6816.25 67 7.997000e+02 53579.90 3.578744e+06 3.397366e+06 181377.92 NULL
2017 Dept Of Environment Protection Community Coordinator 66753.20000 4.672724e+06 252913.43 3.613049e+03 314.155 5394.50 70 3.141550e+02 21990.85 4.925637e+06 4.694715e+06 230922.58 NULL
2017 Dept Of Environment Protection Community Service Aide 31883.40000 1.594170e+05 1742.10 3.484200e+02 129.040 75.50 5 1.290400e+02 645.20 1.611591e+05 1.600622e+05 1096.90 NULL
2017 Dept Of Environment Protection Computer Aide-Non-Spvr 50760.50000 5.076050e+05 62238.63 6.223863e+03 0.000 1546.25 10 0.000000e+00 0.00 5.698436e+05 5.076050e+05 62238.63 NULL
2017 Dept Of Environment Protection Computer Associate 72761.83607 4.438472e+06 168991.14 2.770347e+03 0.000 3743.25 61 0.000000e+00 0.00 4.607463e+06 4.438472e+06 168991.14 NULL
2017 Dept Of Environment Protection Computer Operations Manager 136576.00000 1.365760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.365760e+05 1.365760e+05 0.00 NULL
2017 Dept Of Environment Protection Computer Programmer Analyst 58923.22894 1.590927e+06 43187.17 1.599525e+03 190.020 1177.25 27 1.900200e+02 5130.54 1.634114e+06 1.596058e+06 38056.63 NULL
2017 Dept Of Environment Protection Computer Service Technician 52023.16552 1.560695e+05 8644.59 2.881530e+03 3272.250 236.50 3 2.881530e+03 8644.59 1.647141e+05 1.647141e+05 0.00 NULL
2017 Dept Of Environment Protection Computer Specialist 99090.88088 7.927270e+06 342203.36 4.277542e+03 475.630 5222.00 80 4.756300e+02 38050.40 8.269474e+06 7.965321e+06 304152.96 NULL
2017 Dept Of Environment Protection Computer Systems Manager 130203.09091 1.432234e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.432234e+06 1.432234e+06 0.00 NULL
2017 Dept Of Environment Protection Confidential Asst To The Executive Deputy Commissioner 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2017 Dept Of Environment Protection Construction Laborer NA NA 4353179.49 1.446239e+04 11565.900 76572.00 301 1.156590e+04 3481335.90 NA NA NA NULL
2017 Dept Of Environment Protection Construction Project Manager 73757.37838 2.729023e+06 296988.62 8.026719e+03 746.160 5149.00 37 7.461600e+02 27607.92 3.026012e+06 2.756631e+06 269380.70 NULL
2017 Dept Of Environment Protection Construction Project Manager Intern 55525.64706 9.439360e+05 146216.92 8.600995e+03 3904.220 3645.00 17 3.904220e+03 66371.74 1.090153e+06 1.010308e+06 79845.18 NULL
2017 Dept Of Environment Protection Counsel 209585.00000 2.095850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.095850e+05 2.095850e+05 0.00 NULL
2017 Dept Of Environment Protection Crane Operator Ampes NA NA 19567.77 1.956777e+04 19567.770 168.00 1 1.956777e+04 19567.77 NA NA NA NULL
2017 Dept Of Environment Protection Custodian 33206.04267 1.162211e+06 35599.22 1.017121e+03 440.260 1417.25 35 4.402600e+02 15409.10 1.197811e+06 1.177621e+06 20190.12 NULL
2017 Dept Of Environment Protection Customer Information Representative 60650.73540 4.852059e+05 30776.23 3.847029e+03 2112.930 731.25 8 2.112930e+03 16903.44 5.159821e+05 5.021093e+05 13872.79 NULL
2017 Dept Of Environment Protection Deputy Commissioner 205316.00000 1.231896e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.231896e+06 1.231896e+06 0.00 NULL
2017 Dept Of Environment Protection Director Of Noise Abatement 171431.00000 1.714310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.714310e+05 1.714310e+05 0.00 NULL
2017 Dept Of Environment Protection Director Of Technical Services 139031.00000 1.390310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.390310e+05 1.390310e+05 0.00 NULL
2017 Dept Of Environment Protection District Supervisor 94270.87500 2.262501e+06 886702.55 3.694594e+04 41259.225 12475.75 24 3.694594e+04 886702.55 3.149204e+06 3.149204e+06 0.00 NULL
2017 Dept Of Environment Protection Electrical Engineer 82545.22222 1.485814e+06 65163.35 3.620186e+03 319.675 996.75 18 3.196750e+02 5754.15 1.550977e+06 1.491568e+06 59409.20 NULL
2017 Dept Of Environment Protection Electrical Engineering Intern 53560.00000 1.071200e+05 1879.11 9.395550e+02 939.555 58.00 2 9.395550e+02 1879.11 1.089991e+05 1.089991e+05 0.00 NULL
2017 Dept Of Environment Protection Electrician NA NA 1381826.19 1.368145e+04 10677.960 16514.00 101 1.067796e+04 1078473.96 NA NA NA NULL
2017 Dept Of Environment Protection Electrician’s Helper NA NA 333931.47 7.104925e+03 4947.010 6235.00 47 4.947010e+03 232509.47 NA NA NA NULL
2017 Dept Of Environment Protection Engineering Technician 48799.66667 4.245571e+06 715211.12 8.220817e+03 6901.440 22139.28 87 6.901440e+03 600425.28 4.960782e+06 4.845996e+06 114785.84 NULL
2017 Dept Of Environment Protection Environmental Engineer 91506.83333 1.098082e+06 66791.60 5.565967e+03 0.000 1008.00 12 0.000000e+00 0.00 1.164874e+06 1.098082e+06 66791.60 NULL
2017 Dept Of Environment Protection Environmental Engineering Intern 52165.86364 1.147649e+06 19238.27 8.744668e+02 10.675 537.25 22 1.067500e+01 234.85 1.166887e+06 1.147884e+06 19003.42 NULL
2017 Dept Of Environment Protection Environmental Police Officer 62412.27094 1.266969e+07 887432.17 4.371587e+03 2147.330 24203.81 203 2.147330e+03 435907.99 1.355712e+07 1.310560e+07 451524.18 NULL
2017 Dept Of Environment Protection Environmental Police Officer-Managerial 124166.14286 8.691630e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.691630e+05 8.691630e+05 0.00 NULL
2017 Dept Of Environment Protection Executive Agency Counsel 147462.16667 2.654319e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.654319e+06 2.654319e+06 0.00 NULL
2017 Dept Of Environment Protection Executive Deputy Commissioner 216037.00000 2.160370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.160370e+05 2.160370e+05 0.00 NULL
2017 Dept Of Environment Protection Executive Program Specialist 128836.00000 2.576720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.576720e+05 2.576720e+05 0.00 NULL
2017 Dept Of Environment Protection Forester 41860.50000 8.372100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.372100e+04 8.372100e+04 0.00 NULL
2017 Dept Of Environment Protection Gardener 56974.80000 2.848740e+05 17838.61 3.567722e+03 261.280 418.50 5 2.612800e+02 1306.40 3.027126e+05 2.861804e+05 16532.21 NULL
2017 Dept Of Environment Protection Geologist 60779.00000 7.901270e+05 840.22 6.463231e+01 0.000 23.25 13 0.000000e+00 0.00 7.909672e+05 7.901270e+05 840.22 NULL
2017 Dept Of Environment Protection Graphic Artist 53366.00000 5.336600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.336600e+04 5.336600e+04 0.00 NULL
2017 Dept Of Environment Protection Industrial Hygienist 56840.12069 3.296727e+06 391617.12 6.752019e+03 1801.440 11317.75 58 1.801440e+03 104483.52 3.688344e+06 3.401211e+06 287133.60 NULL
2017 Dept Of Environment Protection Instrumental Specialist 60293.35938 3.858775e+06 153966.79 2.405731e+03 651.255 4010.00 64 6.512550e+02 41680.32 4.012742e+06 3.900455e+06 112286.47 NULL
2017 Dept Of Environment Protection Instrumental Specialist Trainee 35182.50000 1.407300e+05 1290.57 3.226425e+02 47.625 67.00 4 4.762500e+01 190.50 1.420206e+05 1.409205e+05 1100.07 NULL
2017 Dept Of Environment Protection Investigator 38617.00000 3.861700e+04 13237.28 1.323728e+04 13237.280 484.75 1 1.323728e+04 13237.28 5.185428e+04 5.185428e+04 0.00 NULL
2017 Dept Of Environment Protection Investigator Empl Disc 73903.00000 7.390300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.390300e+04 7.390300e+04 0.00 NULL
2017 Dept Of Environment Protection Laboratory Associate 46479.66667 1.394390e+05 4772.74 1.590913e+03 164.170 191.00 3 1.641700e+02 492.51 1.442117e+05 1.399315e+05 4280.23 NULL
2017 Dept Of Environment Protection Laboratory Helper 39602.25000 1.584090e+05 23970.72 5.992680e+03 6020.160 959.75 4 5.992680e+03 23970.72 1.823797e+05 1.823797e+05 0.00 NULL
2017 Dept Of Environment Protection Laboratory Microbiologist 52601.07143 7.364150e+05 13634.03 9.738593e+02 170.725 397.00 14 1.707250e+02 2390.15 7.500490e+05 7.388052e+05 11243.88 NULL
2017 Dept Of Environment Protection Machinist NA NA 464652.28 7.494392e+03 5500.000 7660.00 62 5.500000e+03 341000.00 NA NA NA NULL
2017 Dept Of Environment Protection Machinist’s Helper NA NA 86883.97 6.683382e+03 4515.310 1762.00 13 4.515310e+03 58699.03 NA NA NA NULL
2017 Dept Of Environment Protection Management Auditor 71210.33333 2.136310e+05 6635.08 2.211693e+03 0.000 124.00 3 0.000000e+00 0.00 2.202661e+05 2.136310e+05 6635.08 NULL
2017 Dept Of Environment Protection Manager, Water Supply 116462.50000 2.329250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.329250e+05 2.329250e+05 0.00 NULL
2017 Dept Of Environment Protection Marine Electronics Technician 92729.00000 9.272900e+04 2208.65 2.208650e+03 2208.650 32.75 1 2.208650e+03 2208.65 9.493765e+04 9.493765e+04 0.00 NULL
2017 Dept Of Environment Protection Marine Engineer 73090.40000 3.654520e+05 122258.57 2.445171e+04 19746.660 2200.50 5 1.974666e+04 98733.30 4.877106e+05 4.641853e+05 23525.27 NULL
2017 Dept Of Environment Protection Marine Oiler 64040.00000 5.123200e+05 176477.72 2.205972e+04 26246.055 3641.25 8 2.205972e+04 176477.72 6.887977e+05 6.887977e+05 0.00 NULL
2017 Dept Of Environment Protection Mariner 64040.00000 1.216760e+06 238377.54 1.254619e+04 9539.420 4887.00 19 9.539420e+03 181248.98 1.455138e+06 1.398009e+06 57128.56 NULL
2017 Dept Of Environment Protection Mate 71403.07143 9.996430e+05 277221.35 1.980153e+04 19517.225 5174.25 14 1.951722e+04 273241.15 1.276864e+06 1.272884e+06 3980.20 NULL
2017 Dept Of Environment Protection Mechanical Engineer 85232.27273 2.812665e+06 137599.55 4.169683e+03 382.930 2169.75 33 3.829300e+02 12636.69 2.950265e+06 2.825302e+06 124962.86 NULL
2017 Dept Of Environment Protection Mechanical Engineering Intern 52480.00000 6.822400e+05 11693.39 8.994915e+02 0.000 344.50 13 0.000000e+00 0.00 6.939334e+05 6.822400e+05 11693.39 NULL
2017 Dept Of Environment Protection Motor Vehicle Operator 43718.61905 9.180910e+05 135461.51 6.450548e+03 2076.020 4139.00 21 2.076020e+03 43596.42 1.053553e+06 9.616874e+05 91865.09 NULL
2017 Dept Of Environment Protection Motor Vehicle Supervisor 54988.00000 2.199520e+05 29036.70 7.259175e+03 7587.480 694.25 4 7.259175e+03 29036.70 2.489887e+05 2.489887e+05 0.00 NULL
2017 Dept Of Environment Protection Oiler NA NA 583627.65 8.458372e+03 4166.280 6851.75 69 4.166280e+03 287473.32 NA NA NA NULL
2017 Dept Of Environment Protection Painter NA NA 11520.65 5.760325e+03 5760.325 153.50 2 5.760325e+03 11520.65 NA NA NA NULL
2017 Dept Of Environment Protection Paralegal Aide 40528.66667 1.215860e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.215860e+05 1.215860e+05 0.00 NULL
2017 Dept Of Environment Protection Photographer 57331.00000 5.733100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.733100e+04 5.733100e+04 0.00 NULL
2017 Dept Of Environment Protection Physicist 73036.00000 7.303600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.303600e+04 7.303600e+04 0.00 NULL
2017 Dept Of Environment Protection Plumber NA NA 198311.37 1.322076e+04 10689.480 1891.50 15 1.068948e+04 160342.20 NA NA NA NULL
2017 Dept Of Environment Protection Plumber’s Helper NA NA 96172.34 8.014362e+03 5359.265 1330.50 12 5.359265e+03 64311.18 NA NA NA NULL
2017 Dept Of Environment Protection Port Marine Engineer 93434.00000 9.343400e+04 24812.52 2.481252e+04 24812.520 401.50 1 2.481252e+04 24812.52 1.182465e+05 1.182465e+05 0.00 NULL
2017 Dept Of Environment Protection Principal Administrative Associate 58389.75861 1.885989e+07 888959.79 2.752197e+03 43.760 21731.00 323 4.376000e+01 14134.48 1.974885e+07 1.887403e+07 874825.31 NULL
2017 Dept Of Environment Protection Procurement Analyst 59445.36364 3.269495e+06 200830.35 3.651461e+03 0.000 5031.50 55 0.000000e+00 0.00 3.470325e+06 3.269495e+06 200830.35 NULL
2017 Dept Of Environment Protection Project Manager 64303.47059 1.093159e+06 7973.18 4.690106e+02 0.000 187.75 17 0.000000e+00 0.00 1.101132e+06 1.093159e+06 7973.18 NULL
2017 Dept Of Environment Protection Project Manager Intern# 53128.64286 7.438010e+05 13037.03 9.312164e+02 198.245 393.25 14 1.982450e+02 2775.43 7.568380e+05 7.465764e+05 10261.60 NULL
2017 Dept Of Environment Protection Public Health Epidemiologist 60148.00000 1.202960e+05 1513.09 7.565450e+02 756.545 31.75 2 7.565450e+02 1513.09 1.218091e+05 1.218091e+05 0.00 NULL
2017 Dept Of Environment Protection Public Health Sanitarian 55754.18750 8.920670e+05 16384.20 1.024013e+03 55.070 369.75 16 5.507000e+01 881.12 9.084512e+05 8.929481e+05 15503.08 NULL
2017 Dept Of Environment Protection Public Records Aide 41032.00000 3.692880e+05 38117.81 4.235312e+03 3966.320 1282.25 9 3.966320e+03 35696.88 4.074058e+05 4.049849e+05 2420.93 NULL
2017 Dept Of Environment Protection Public Records Officer 50009.00000 1.000180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.000180e+05 1.000180e+05 0.00 NULL
2017 Dept Of Environment Protection Quality Assurance Specialist 59053.00000 1.771590e+05 41196.31 1.373210e+04 16988.690 1029.25 3 1.373210e+04 41196.31 2.183553e+05 2.183553e+05 0.00 NULL
2017 Dept Of Environment Protection Quality Assurance Specialist Trainee 34853.00000 3.485300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.485300e+04 3.485300e+04 0.00 NULL
2017 Dept Of Environment Protection Radio Repair Mechanic NA NA 4058.68 4.058680e+03 4058.680 58.00 1 4.058680e+03 4058.68 NA NA NA NULL
2017 Dept Of Environment Protection Research Assistant 35390.40000 1.061712e+05 2757.45 9.191500e+02 254.430 77.25 3 2.544300e+02 763.29 1.089286e+05 1.069345e+05 1994.16 NULL
2017 Dept Of Environment Protection Scientist 62621.79221 4.821878e+06 166626.01 2.163974e+03 52.360 3850.75 77 5.236000e+01 4031.72 4.988504e+06 4.825910e+06 162594.29 NULL
2017 Dept Of Environment Protection Secretary 49912.75000 3.993020e+05 9731.05 1.216381e+03 17.430 273.75 8 1.743000e+01 139.44 4.090330e+05 3.994414e+05 9591.61 NULL
2017 Dept Of Environment Protection Secretary To The Exec Deputy Commissioner 54313.00000 5.431300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.431300e+04 5.431300e+04 0.00 NULL
2017 Dept Of Environment Protection Senior Sewage Treatment Worker NA NA 2467447.32 1.378462e+04 11698.200 36666.13 179 1.169820e+04 2093977.80 NA NA NA NULL
2017 Dept Of Environment Protection Senior Stationary Engineer NA NA 1941931.92 3.236553e+04 35844.420 24916.62 60 3.236553e+04 1941931.92 NA NA NA NULL
2017 Dept Of Environment Protection Sewage Treatment Worker NA NA 6223317.80 9.486765e+03 6229.135 101213.65 656 6.229135e+03 4086312.56 NA NA NA NULL
2017 Dept Of Environment Protection Staff Analyst 62711.08333 2.257599e+06 53104.23 1.475118e+03 0.000 1085.75 36 0.000000e+00 0.00 2.310703e+06 2.257599e+06 53104.23 NULL
2017 Dept Of Environment Protection Staff Analyst Trainee 42778.00000 2.994460e+05 658.99 9.414143e+01 0.000 24.50 7 0.000000e+00 0.00 3.001050e+05 2.994460e+05 658.99 NULL
2017 Dept Of Environment Protection Stationary Engineer NA NA 4088706.23 2.508409e+04 21348.000 58730.25 163 2.134800e+04 3479724.00 NA NA NA NULL
2017 Dept Of Environment Protection Stock Worker 38478.50000 7.695700e+04 18640.57 9.320285e+03 9320.285 642.75 2 9.320285e+03 18640.57 9.559757e+04 9.559757e+04 0.00 NULL
2017 Dept Of Environment Protection Strategic Initiative Specialist 75034.88056 6.753139e+05 8430.92 9.367689e+02 0.000 163.50 9 0.000000e+00 0.00 6.837448e+05 6.753139e+05 8430.92 NULL
2017 Dept Of Environment Protection Summer College Intern 2053.15693 2.936014e+05 0.00 0.000000e+00 0.000 0.00 143 0.000000e+00 0.00 2.936014e+05 2.936014e+05 0.00 NULL
2017 Dept Of Environment Protection Summer Graduate Intern 2482.15406 6.950031e+04 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 6.950031e+04 6.950031e+04 0.00 NULL
2017 Dept Of Environment Protection Superintendent Of Water And Sewer Systems 122632.50000 2.207385e+06 59.67 3.315000e+00 0.000 0.00 18 0.000000e+00 0.00 2.207445e+06 2.207385e+06 59.67 NULL
2017 Dept Of Environment Protection Supervising Special Officer 51993.00000 5.199300e+04 18442.29 1.844229e+04 18442.290 478.75 1 1.844229e+04 18442.29 7.043529e+04 7.043529e+04 0.00 NULL
2017 Dept Of Environment Protection Supervisor 80631.85185 1.741648e+07 3579235.79 1.657054e+04 10672.310 54943.00 216 1.067231e+04 2305218.96 2.099572e+07 1.972170e+07 1274016.83 NULL
2017 Dept Of Environment Protection Supervisor Bricklayer NA NA 14779.12 1.477912e+04 14779.120 145.25 1 1.477912e+04 14779.12 NA NA NA NULL
2017 Dept Of Environment Protection Supervisor Carpenter NA NA 17899.88 1.789988e+04 17899.880 192.50 1 1.789988e+04 17899.88 NA NA NA NULL
2017 Dept Of Environment Protection Supervisor Electrician NA NA 670549.24 2.163062e+04 21253.160 7405.50 31 2.125316e+04 658847.96 NA NA NA NULL
2017 Dept Of Environment Protection Supervisor Of Mechanics 112319.13333 3.369574e+06 344561.99 1.148540e+04 900.515 3364.00 30 9.005150e+02 27015.45 3.714136e+06 3.396589e+06 317546.54 NULL
2017 Dept Of Environment Protection Supervisor Of Motor Transport 66557.00000 6.655700e+04 44365.24 4.436524e+04 44365.240 904.75 1 4.436524e+04 44365.24 1.109222e+05 1.109222e+05 0.00 NULL
2017 Dept Of Environment Protection Supervisor Of Stock Workers 45093.36364 1.488081e+06 148988.91 4.514815e+03 1556.530 4665.50 33 1.556530e+03 51365.49 1.637070e+06 1.539446e+06 97623.42 NULL
2017 Dept Of Environment Protection Supervisor Painter NA NA 6350.41 6.350410e+03 6350.410 77.00 1 6.350410e+03 6350.41 NA NA NA NULL
2017 Dept Of Environment Protection Supervisor Plumber NA NA 106155.01 2.123100e+04 13264.300 980.75 5 1.326430e+04 66321.50 NA NA NA NULL
2017 Dept Of Environment Protection Surveyor 71892.11111 6.470290e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 6.470290e+05 6.470290e+05 0.00 NULL
2017 Dept Of Environment Protection Telecommunication Manager 137649.00000 1.376490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.376490e+05 1.376490e+05 0.00 NULL
2017 Dept Of Environment Protection Telecommunications Associate 76969.37227 8.466631e+05 126954.10 1.154128e+04 3555.040 2244.00 11 3.555040e+03 39105.44 9.736172e+05 8.857685e+05 87848.66 NULL
2017 Dept Of Environment Protection Tractor Operator NA NA 117.96 1.179600e+02 117.960 0.00 1 1.179600e+02 117.96 NA NA NA NULL
2017 Dept Of Environment Protection Water Use Inspector 46005.54000 2.300277e+06 264580.59 5.291612e+03 1355.975 7712.37 50 1.355975e+03 67798.75 2.564858e+06 2.368076e+06 196781.84 NULL
2017 Dept Of Environment Protection Watershed Maintainer 51186.70000 1.228481e+07 968746.62 4.036444e+03 1407.225 24415.54 240 1.407225e+03 337734.00 1.325355e+07 1.262254e+07 631012.62 NULL
2017 Dept Of Environment Protection Welder NA NA 1.76 1.760000e+00 1.760 0.00 1 1.760000e+00 1.76 NA NA NA NULL
2017 Dept Of Health/Mental Hygiene *Asist Systms Analyst 63416.50000 1.268330e+05 0.05 2.500000e-02 0.025 0.00 2 2.500000e-02 0.05 1.268331e+05 1.268331e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene *Assist Coordinating Manager 50869.57143 3.560870e+05 1054.44 1.506343e+02 0.000 47.50 7 0.000000e+00 0.00 3.571414e+05 3.560870e+05 1054.44 NULL
2017 Dept Of Health/Mental Hygiene *Associate Executive Director 113907.00000 5.695350e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.695350e+05 5.695350e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene *Certified Local Area Network Administrator 94783.00000 9.478300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.478300e+04 9.478300e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene *Coordinating Manager 69067.35294 1.174145e+06 16932.78 9.960459e+02 0.000 319.00 17 0.000000e+00 0.00 1.191078e+06 1.174145e+06 16932.78 NULL
2017 Dept Of Health/Mental Hygiene *Custodial Assistant 35465.00000 1.063950e+05 7598.28 2.532760e+03 2243.400 261.25 3 2.243400e+03 6730.20 1.139933e+05 1.131252e+05 868.08 NULL
2017 Dept Of Health/Mental Hygiene *Dir Of Fiscal Affairs 96516.00000 9.651600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.651600e+04 9.651600e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene *Director Of Health Care Program Planning/Analysis 99929.20000 4.996460e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.996460e+05 4.996460e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene *Personnel Program Developement Specialist 87550.00000 8.755000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.755000e+04 8.755000e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene *Senior Staff Officer 76215.00000 7.621500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.621500e+04 7.621500e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene *Senior Systems Analyst 57195.75000 2.287830e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.287830e+05 2.287830e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene *Sr Management Consultant 87545.77778 1.575824e+06 473.56 2.630889e+01 0.000 12.00 18 0.000000e+00 0.00 1.576298e+06 1.575824e+06 473.56 NULL
2017 Dept Of Health/Mental Hygiene *Sr Systems Analyst - Edp 59301.00000 5.930100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.930100e+04 5.930100e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene *Supervisor 43705.93333 6.555890e+05 218507.72 1.456718e+04 12296.870 5246.50 15 1.229687e+04 184453.05 8.740967e+05 8.400421e+05 34054.67 NULL
2017 Dept Of Health/Mental Hygiene *Supvsng Systems Analyst 61788.33333 1.853650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.853650e+05 1.853650e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene *Systems Analyst 48676.15385 6.327900e+05 38.43 2.956154e+00 0.000 0.00 13 0.000000e+00 0.00 6.328284e+05 6.327900e+05 38.43 NULL
2017 Dept Of Health/Mental Hygiene Accountant 59154.53068 3.490117e+06 45724.28 7.749878e+02 0.000 1032.00 59 0.000000e+00 0.00 3.535842e+06 3.490117e+06 45724.28 NULL
2017 Dept Of Health/Mental Hygiene Adm Manager-Non-Mgrl 72964.23077 1.897070e+06 15042.53 5.785588e+02 0.000 268.75 26 0.000000e+00 0.00 1.912113e+06 1.897070e+06 15042.53 NULL
2017 Dept Of Health/Mental Hygiene Admin Community Relations Specialist 90422.78261 2.079724e+06 20657.48 8.981513e+02 0.000 381.50 23 0.000000e+00 0.00 2.100381e+06 2.079724e+06 20657.48 NULL
2017 Dept Of Health/Mental Hygiene Admin Contract Specialist 108785.28000 5.439264e+06 7891.37 1.578274e+02 0.000 91.25 50 0.000000e+00 0.00 5.447155e+06 5.439264e+06 7891.37 NULL
2017 Dept Of Health/Mental Hygiene Administrative Accountant 115135.33333 3.454060e+05 6563.02 2.187673e+03 0.000 68.00 3 0.000000e+00 0.00 3.519690e+05 3.454060e+05 6563.02 NULL
2017 Dept Of Health/Mental Hygiene Administrative Community Relations Specialist 99910.00000 9.991000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.991000e+04 9.991000e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Administrative Consultant 102271.50000 2.045430e+05 8317.91 4.158955e+03 4158.955 73.50 2 4.158955e+03 8317.91 2.128609e+05 2.128609e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Administrative Director Of Social Services 105204.52381 2.209295e+06 327.33 1.558714e+01 0.000 9.00 21 0.000000e+00 0.00 2.209622e+06 2.209295e+06 327.33 NULL
2017 Dept Of Health/Mental Hygiene Administrative Investigator 90885.50000 1.817710e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.817710e+05 1.817710e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Administrative Labor Relations Analyst 114080.33333 6.844820e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.844820e+05 6.844820e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Administrative Management Auditor 105731.00000 5.286550e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.286550e+05 5.286550e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Administrative Manager 160459.00000 1.604590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.604590e+05 1.604590e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Administrative Printing Services Manager 127276.00000 1.272760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.272760e+05 1.272760e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Administrative Procurement Analyst 89671.92857 1.255407e+06 4210.39 3.007421e+02 0.000 92.25 14 0.000000e+00 0.00 1.259617e+06 1.255407e+06 4210.39 NULL
2017 Dept Of Health/Mental Hygiene Administrative Psychologist 185400.00000 1.854000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.854000e+05 1.854000e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Administrative Public Health Nurse 108633.96875 3.476287e+06 -5.65 -1.765625e-01 0.000 0.00 32 -1.765625e-01 -5.65 3.476281e+06 3.476281e+06 0.00 NULL
2017 Dept Of Health/Mental Hygiene Administrative Public Health Sanitarian 121382.61538 1.577974e+06 17812.72 1.370209e+03 0.000 201.50 13 0.000000e+00 0.00 1.595787e+06 1.577974e+06 17812.72 NULL
2017 Dept Of Health/Mental Hygiene Administrative Public Information Specialist 96985.40000 2.424635e+06 7525.21 3.010084e+02 0.000 144.50 25 0.000000e+00 0.00 2.432160e+06 2.424635e+06 7525.21 NULL
2017 Dept Of Health/Mental Hygiene Administrative Quality Assurance Specialist 131094.33333 3.932830e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.932830e+05 3.932830e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Administrative Space Analyst 131579.00000 1.315790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.315790e+05 1.315790e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Administrative Staff Analyst 92243.90891 1.678839e+07 81425.17 4.473910e+02 0.000 1338.75 182 0.000000e+00 0.00 1.686982e+07 1.678839e+07 81425.17 NULL
2017 Dept Of Health/Mental Hygiene Administrative Storekeeper 84000.00000 1.680000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.680000e+05 1.680000e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Administrative Supervisor Of Building Maintenance 103265.14286 7.228560e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.228560e+05 7.228560e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Agency Attorney 87593.27273 2.890578e+06 190.42 5.770303e+00 0.000 5.50 33 0.000000e+00 0.00 2.890768e+06 2.890578e+06 190.42 NULL
2017 Dept Of Health/Mental Hygiene Agency Attorney Interne 63305.00000 1.899150e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.899150e+05 1.899150e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Agency Chief Contracting Officer 157827.00000 3.156540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.156540e+05 3.156540e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Agency Deputy Medical Director 155382.00000 9.322920e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.322920e+05 9.322920e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Agency Medical Director 179902.32143 5.037265e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 5.037265e+06 5.037265e+06 0.00 NULL
2017 Dept Of Health/Mental Hygiene Architect 103675.00000 4.147000e+05 16671.30 4.167825e+03 0.000 192.25 4 0.000000e+00 0.00 4.313713e+05 4.147000e+05 16671.30 NULL
2017 Dept Of Health/Mental Hygiene Assistant Architect 66598.00000 2.663920e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.663920e+05 2.663920e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Assistant Commissioner 177895.00000 1.778950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.778950e+05 1.778950e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Assistant Printing Press Operator 51123.45000 1.022469e+05 8.03 4.015000e+00 4.015 0.00 2 4.015000e+00 8.03 1.022549e+05 1.022549e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Associate Chemist 64178.80000 3.208940e+05 1510.96 3.021920e+02 0.000 32.50 5 0.000000e+00 0.00 3.224050e+05 3.208940e+05 1510.96 NULL
2017 Dept Of Health/Mental Hygiene Associate Contract Specialist 72158.40000 3.607920e+05 129.97 2.599400e+01 0.000 3.00 5 0.000000e+00 0.00 3.609220e+05 3.607920e+05 129.97 NULL
2017 Dept Of Health/Mental Hygiene Associate Investigator 62061.00000 6.206100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.206100e+04 6.206100e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Associate Labor Relations Analyst 84382.50000 1.687650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.687650e+05 1.687650e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Associate Laboratory Microbiologist 69293.80435 3.187515e+06 86851.56 1.888077e+03 80.985 2189.00 46 8.098500e+01 3725.31 3.274367e+06 3.191240e+06 83126.25 NULL
2017 Dept Of Health/Mental Hygiene Associate Project Manager 100787.50000 2.015750e+05 1531.66 7.658300e+02 765.830 0.00 2 7.658300e+02 1531.66 2.031067e+05 2.031067e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Associate Public Health Sanitarian 68997.82031 8.831721e+06 488412.27 3.815721e+03 1002.530 9987.75 128 1.002530e+03 128323.84 9.320133e+06 8.960045e+06 360088.43 NULL
2017 Dept Of Health/Mental Hygiene Associate Public Information Specialist 66420.00000 1.328400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.328400e+05 1.328400e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Associate Staff Analyst 82376.51431 4.201202e+06 12186.40 2.389490e+02 0.000 176.50 51 0.000000e+00 0.00 4.213389e+06 4.201202e+06 12186.40 NULL
2017 Dept Of Health/Mental Hygiene Asst Commissioner 174228.50000 3.484570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.484570e+05 3.484570e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Asst Commissioner For Agency Preparedness And Response 135377.00000 1.353770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.353770e+05 1.353770e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Asst Commissioner For Policy And Community Resilience 139963.00000 1.399630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.399630e+05 1.399630e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Asst Pb Hlth Adv 31685.47543 1.267419e+05 129.82 3.245500e+01 10.350 1.25 4 1.035000e+01 41.40 1.268717e+05 1.267833e+05 88.42 NULL
2017 Dept Of Health/Mental Hygiene Attorney At Law 112454.00000 2.249080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.249080e+05 2.249080e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Bookbinder 41991.00000 4.199100e+04 51.71 5.171000e+01 51.710 2.25 1 5.171000e+01 51.71 4.204271e+04 4.204271e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Bookkeeper 55866.80000 2.793340e+05 11338.91 2.267782e+03 2562.330 188.50 5 2.267782e+03 11338.91 2.906729e+05 2.906729e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Business Promotion Coordinator 77250.00000 7.725000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.725000e+04 7.725000e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Call Center Representative 40561.00000 4.056100e+04 1442.22 1.442220e+03 1442.220 57.00 1 1.442220e+03 1442.22 4.200322e+04 4.200322e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Carpenter NA NA 8305.02 8.305020e+03 8305.020 65.00 1 8.305020e+03 8305.02 NA NA NA NULL
2017 Dept Of Health/Mental Hygiene Caseworker 45424.50000 9.084900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.084900e+04 9.084900e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Certified It Administrator 96827.92857 1.355591e+06 131264.77 9.376055e+03 935.325 1867.00 14 9.353250e+02 13094.55 1.486856e+06 1.368686e+06 118170.22 NULL
2017 Dept Of Health/Mental Hygiene Certified It Developer 99586.66667 1.493800e+06 861.14 5.740933e+01 0.000 8.50 15 0.000000e+00 0.00 1.494661e+06 1.493800e+06 861.14 NULL
2017 Dept Of Health/Mental Hygiene Chief City Medical Examiner 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene City Clinician 111807.80256 1.788925e+06 60893.60 3.805850e+03 180.225 731.00 16 1.802250e+02 2883.60 1.849818e+06 1.791808e+06 58010.00 NULL
2017 Dept Of Health/Mental Hygiene City Custodial Assistant 30038.21573 1.772255e+06 90228.08 1.529289e+03 532.580 3669.50 59 5.325800e+02 31422.22 1.862483e+06 1.803677e+06 58805.86 NULL
2017 Dept Of Health/Mental Hygiene City Dentist 19040.00000 1.904000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.904000e+04 1.904000e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene City Laborer NA NA 280805.49 1.220893e+04 9671.710 4925.25 23 9.671710e+03 222449.33 NA NA NA NULL
2017 Dept Of Health/Mental Hygiene City Medical Examiner 181637.87097 5.630774e+06 29998.02 9.676781e+02 0.000 252.50 31 0.000000e+00 0.00 5.660772e+06 5.630774e+06 29998.02 NULL
2017 Dept Of Health/Mental Hygiene City Medical Specialist 115987.17013 1.287458e+07 96893.43 8.729138e+02 0.000 1096.00 111 0.000000e+00 0.00 1.297147e+07 1.287458e+07 96893.43 NULL
2017 Dept Of Health/Mental Hygiene City Mortuary Technician 41165.61538 1.070306e+06 241051.85 9.271225e+03 4111.255 7541.25 26 4.111255e+03 106892.63 1.311358e+06 1.177199e+06 134159.22 NULL
2017 Dept Of Health/Mental Hygiene City Pest Control Aide 23705.31841 8.059808e+05 15297.42 4.499241e+02 0.000 478.50 34 0.000000e+00 0.00 8.212782e+05 8.059808e+05 15297.42 NULL
2017 Dept Of Health/Mental Hygiene City Research Scientist 82403.81968 5.562258e+07 143514.00 2.126133e+02 0.000 2598.25 675 0.000000e+00 0.00 5.576609e+07 5.562258e+07 143514.00 NULL
2017 Dept Of Health/Mental Hygiene City Veterinarian 53711.52000 2.148461e+05 1594.12 3.985300e+02 331.440 26.50 4 3.314400e+02 1325.76 2.164402e+05 2.161718e+05 268.36 NULL
2017 Dept Of Health/Mental Hygiene Civil Engineer 73112.00000 7.311200e+04 4986.33 4.986330e+03 4986.330 82.50 1 4.986330e+03 4986.33 7.809833e+04 7.809833e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Clerical Aide 31187.62500 2.495010e+05 2674.20 3.342750e+02 32.395 161.75 8 3.239500e+01 259.16 2.521752e+05 2.497602e+05 2415.04 NULL
2017 Dept Of Health/Mental Hygiene Clerical Associate 40988.37548 8.238663e+06 244785.48 1.217838e+03 0.000 7992.75 201 0.000000e+00 0.00 8.483449e+06 8.238663e+06 244785.48 NULL
2017 Dept Of Health/Mental Hygiene College Aide 5129.03788 9.899043e+05 0.00 0.000000e+00 0.000 0.00 193 0.000000e+00 0.00 9.899043e+05 9.899043e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene College Aide - Assignment Levels Ii And Iii 8121.00650 7.308906e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.308906e+04 7.308906e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Commissioner Of Health 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Community Assistant 34287.06291 2.537243e+06 25729.20 3.476919e+02 0.000 1037.50 74 0.000000e+00 0.00 2.562972e+06 2.537243e+06 25729.20 NULL
2017 Dept Of Health/Mental Hygiene Community Associate 41394.23598 1.366010e+06 72451.89 2.195512e+03 0.000 2018.00 33 0.000000e+00 0.00 1.438462e+06 1.366010e+06 72451.89 NULL
2017 Dept Of Health/Mental Hygiene Community Coordinator 62435.02609 1.442249e+07 245493.94 1.062744e+03 0.000 5317.25 231 0.000000e+00 0.00 1.466798e+07 1.442249e+07 245493.94 NULL
2017 Dept Of Health/Mental Hygiene Community Service Aide 30069.79818 3.307678e+05 20974.90 1.906809e+03 102.080 1079.25 11 1.020800e+02 1122.88 3.517427e+05 3.318907e+05 19852.02 NULL
2017 Dept Of Health/Mental Hygiene Computer Aide-Non-Spvr 48243.79769 1.254339e+06 47486.86 1.826418e+03 0.000 1252.25 26 0.000000e+00 0.00 1.301826e+06 1.254339e+06 47486.86 NULL
2017 Dept Of Health/Mental Hygiene Computer Associate 66021.77291 5.479807e+06 78337.27 9.438225e+02 0.000 1929.00 83 0.000000e+00 0.00 5.558144e+06 5.479807e+06 78337.27 NULL
2017 Dept Of Health/Mental Hygiene Computer Operations Manager 99257.40000 4.962870e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.962870e+05 4.962870e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Computer Programmer Analyst 58532.45455 6.438570e+05 5946.34 5.405764e+02 0.000 209.00 11 0.000000e+00 0.00 6.498033e+05 6.438570e+05 5946.34 NULL
2017 Dept Of Health/Mental Hygiene Computer Service Technician 47181.02476 9.908015e+05 12351.60 5.881714e+02 33.100 426.25 21 3.310000e+01 695.10 1.003153e+06 9.914966e+05 11656.50 NULL
2017 Dept Of Health/Mental Hygiene Computer Specialist 99238.68966 5.755844e+06 24737.83 4.265143e+02 0.000 298.25 58 0.000000e+00 0.00 5.780582e+06 5.755844e+06 24737.83 NULL
2017 Dept Of Health/Mental Hygiene Computer Systems Manager 106311.98165 1.158801e+07 3598.88 3.301725e+01 0.000 55.25 109 0.000000e+00 0.00 1.159160e+07 1.158801e+07 3598.88 NULL
2017 Dept Of Health/Mental Hygiene Confidential Strategy Planner 87876.25000 3.515050e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.515050e+05 3.515050e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Construction Project Manager Intern 47860.00000 9.572000e+04 2472.25 1.236125e+03 1236.125 77.00 2 1.236125e+03 2472.25 9.819225e+04 9.819225e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Consultant 70588.91228 4.023568e+06 113838.05 1.997159e+03 251.930 2375.50 57 2.519300e+02 14360.01 4.137406e+06 4.037928e+06 99478.04 NULL
2017 Dept Of Health/Mental Hygiene Consultant Public Health Nurse 78193.00000 7.819300e+04 -0.06 -6.000000e-02 -0.060 0.00 1 -6.000000e-02 -0.06 7.819294e+04 7.819294e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Contract Specialist 61964.00000 3.098200e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.098200e+05 3.098200e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Counsel 206165.00000 2.061650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.061650e+05 2.061650e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Counselor 73073.33333 2.192200e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.192200e+05 2.192200e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Criminalist 69529.33024 1.599175e+07 855806.69 3.720899e+03 571.790 17370.75 230 5.717900e+02 131511.70 1.684755e+07 1.612326e+07 724294.99 NULL
2017 Dept Of Health/Mental Hygiene Criminalist Assistant Director Of Laboratory 115681.77778 2.082272e+06 278.20 1.545556e+01 0.000 7.75 18 0.000000e+00 0.00 2.082550e+06 2.082272e+06 278.20 NULL
2017 Dept Of Health/Mental Hygiene Criminalist Deputy Director Of Labatory 173359.00000 3.467180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.467180e+05 3.467180e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Criminalist Director Of Laboratory 144972.66667 4.349180e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.349180e+05 4.349180e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Custodian 37152.83168 6.687510e+05 39815.32 2.211962e+03 1883.655 1433.50 18 1.883655e+03 33905.79 7.085663e+05 7.026568e+05 5909.53 NULL
2017 Dept Of Health/Mental Hygiene Customer Information Representative 50651.81469 4.052145e+05 4229.46 5.286825e+02 0.000 158.25 8 0.000000e+00 0.00 4.094440e+05 4.052145e+05 4229.46 NULL
2017 Dept Of Health/Mental Hygiene Dental Hygienist 66950.00000 6.695000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.695000e+04 6.695000e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Deputy Chief City Medical Examiner 224749.00000 8.989960e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.989960e+05 8.989960e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Deputy Commissioner 210050.75000 8.402030e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.402030e+05 8.402030e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Deputy Commissioner For Administation 173296.00000 1.732960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.732960e+05 1.732960e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Deputy Director Of Medicolegal Investigations 118523.50000 2.370470e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.370470e+05 2.370470e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Dir Of Healthcare Facilities And Provider Readiness 101586.00000 1.015860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.015860e+05 1.015860e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Director 164800.00000 1.648000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.648000e+05 1.648000e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Director Of Biodetection And Response 96443.00000 9.644300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.644300e+04 9.644300e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Director Of Forensic Biology 202337.00000 2.023370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.023370e+05 2.023370e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Director Of Interagency Planning 114542.00000 1.145420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.145420e+05 1.145420e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Director Of Nyc Medical Reserve Corps 96525.00000 9.652500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.652500e+04 9.652500e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Director Of Public Health Emergency Planning 113235.00000 1.132350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.132350e+05 1.132350e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Director Of Public Relations 100116.00000 1.001160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.001160e+05 1.001160e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Director Of Security 96330.00000 9.633000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.633000e+04 9.633000e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Electrical Engineering Intern 47860.00000 4.786000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.786000e+04 4.786000e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Electrician NA NA 58169.18 9.694863e+03 78.925 697.50 6 7.892500e+01 473.55 NA NA NA NULL
2017 Dept Of Health/Mental Hygiene Electrician’s Helper NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2017 Dept Of Health/Mental Hygiene Environmental Health Technician 34563.50800 1.728175e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.728175e+05 1.728175e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Evidence And Property Control Specialist 58331.63415 2.391597e+06 429425.69 1.047380e+04 1717.990 9652.25 41 1.717990e+03 70437.59 2.821023e+06 2.462035e+06 358988.10 NULL
2017 Dept Of Health/Mental Hygiene Exec Director Of Grants Management And Administration 128578.00000 1.285780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.285780e+05 1.285780e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Executive Agency Counsel 130151.33333 1.561816e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.561816e+06 1.561816e+06 0.00 NULL
2017 Dept Of Health/Mental Hygiene Executive Program Specialist 146489.66667 4.394690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.394690e+05 4.394690e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Executive Secretary 50761.92000 5.076192e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.076192e+04 5.076192e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Exterminator 38689.39471 1.315439e+06 160980.49 4.734720e+03 594.345 5019.50 34 5.943450e+02 20207.73 1.476420e+06 1.335647e+06 140772.76 NULL
2017 Dept Of Health/Mental Hygiene Family Pub Health Nurse 82313.73077 2.140157e+06 72.16 2.775385e+00 0.000 2.00 26 0.000000e+00 0.00 2.140229e+06 2.140157e+06 72.16 NULL
2017 Dept Of Health/Mental Hygiene Forensic Mortuary Technician 49125.20513 1.915883e+06 676363.19 1.734265e+04 16925.310 18445.70 39 1.692531e+04 660087.09 2.592246e+06 2.575970e+06 16276.10 NULL
2017 Dept Of Health/Mental Hygiene Forensic Mortuary Technician-Coord Of Mortuary Services 86668.00000 8.666800e+04 14913.09 1.491309e+04 14913.090 256.25 1 1.491309e+04 14913.09 1.015811e+05 1.015811e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Graphic Artist 58462.00000 1.753860e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.753860e+05 1.753860e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Health Care Prog Plan/Analyst 55009.22222 4.950830e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.950830e+05 4.950830e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Health Services Manager 110053.69588 2.135042e+07 0.00 0.000000e+00 0.000 0.00 194 0.000000e+00 0.00 2.135042e+07 2.135042e+07 0.00 NULL
2017 Dept Of Health/Mental Hygiene Institutional Aide 36852.40000 5.527860e+05 409475.70 2.729838e+04 28407.640 14773.00 15 2.729838e+04 409475.70 9.622617e+05 9.622617e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Investigator 59654.11111 5.368870e+05 0.00 0.000000e+00 0.000 2.00 9 0.000000e+00 0.00 5.368870e+05 5.368870e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene It Infrastructure Engineer 111568.33333 3.347050e+05 3103.49 1.034497e+03 0.000 25.25 3 0.000000e+00 0.00 3.378085e+05 3.347050e+05 3103.49 NULL
2017 Dept Of Health/Mental Hygiene It Project Specialist 74084.51667 2.222535e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.222535e+05 2.222535e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene It Security Specialist 113300.00000 1.133000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133000e+05 1.133000e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene It Service Management Specialist 89602.33333 2.688070e+05 -4.61 -1.536667e+00 0.000 0.00 3 -1.536667e+00 -4.61 2.688024e+05 2.688024e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Jr Ph Nurse 37414.86302 1.896934e+07 566910.13 1.118166e+03 0.000 13754.75 507 0.000000e+00 0.00 1.953625e+07 1.896934e+07 566910.13 NULL
2017 Dept Of Health/Mental Hygiene Junior Public Health Nurse 69474.50323 1.181067e+06 26420.15 1.554126e+03 479.150 453.25 17 4.791500e+02 8145.55 1.207487e+06 1.189212e+06 18274.60 NULL
2017 Dept Of Health/Mental Hygiene Laboratory Associate 43507.39901 1.653281e+06 25479.05 6.705013e+02 30.630 898.50 38 3.063000e+01 1163.94 1.678760e+06 1.654445e+06 24315.11 NULL
2017 Dept Of Health/Mental Hygiene Laboratory Helper 35737.37500 5.717980e+05 1406.74 8.792125e+01 0.000 61.00 16 0.000000e+00 0.00 5.732047e+05 5.717980e+05 1406.74 NULL
2017 Dept Of Health/Mental Hygiene Laboratory Microbiologist 53562.31667 1.928243e+06 9087.64 2.524344e+02 0.000 230.75 36 0.000000e+00 0.00 1.937331e+06 1.928243e+06 9087.64 NULL
2017 Dept Of Health/Mental Hygiene Legal Secretarial Assistant Al 2,3,4 Only 62513.00000 6.251300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.251300e+04 6.251300e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Machinist NA NA 131.59 4.386333e+01 0.000 2.50 3 0.000000e+00 0.00 NA NA NA NULL
2017 Dept Of Health/Mental Hygiene Maintenance Worker NA NA 101806.45 7.271889e+03 3154.390 2256.88 14 3.154390e+03 44161.46 NA NA NA NULL
2017 Dept Of Health/Mental Hygiene Management Auditor 72380.83333 8.685700e+05 1339.41 1.116175e+02 0.000 23.25 12 0.000000e+00 0.00 8.699094e+05 8.685700e+05 1339.41 NULL
2017 Dept Of Health/Mental Hygiene Mechanical Engineer 73245.00000 7.324500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.324500e+04 7.324500e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Medical Investigator 27789.45000 8.336835e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 8.336835e+04 8.336835e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Medical Record Librarian 53817.00000 5.381700e+04 28307.13 2.830713e+04 28307.130 591.25 1 2.830713e+04 28307.13 8.212413e+04 8.212413e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Medical Specialist 117926.39073 3.537792e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.537792e+05 3.537792e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Medicolegal Investigator 90188.49995 2.886032e+06 469882.63 1.468383e+04 12882.160 6186.01 32 1.288216e+04 412229.12 3.355915e+06 3.298261e+06 57653.51 NULL
2017 Dept Of Health/Mental Hygiene Motor Vehicle Operator 46261.86659 2.035522e+06 381339.12 8.666798e+03 4046.475 10531.03 44 4.046475e+03 178044.90 2.416861e+06 2.213567e+06 203294.22 NULL
2017 Dept Of Health/Mental Hygiene Motor Vehicle Supervisor 54467.80000 2.723390e+05 49573.22 9.914644e+03 6867.860 1175.25 5 6.867860e+03 34339.30 3.219122e+05 3.066783e+05 15233.92 NULL
2017 Dept Of Health/Mental Hygiene Nurse Practicioner 99716.31667 1.196596e+06 15916.15 1.326346e+03 551.410 296.25 12 5.514100e+02 6616.92 1.212512e+06 1.203213e+06 9299.23 NULL
2017 Dept Of Health/Mental Hygiene Nurse’s Aide 39050.50000 7.810100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.810100e+04 7.810100e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Nutritionist 68082.30769 8.850700e+05 306.59 2.358385e+01 0.000 8.75 13 0.000000e+00 0.00 8.853766e+05 8.850700e+05 306.59 NULL
2017 Dept Of Health/Mental Hygiene Office Machine Aide 40208.83333 2.412530e+05 3045.76 5.076267e+02 53.085 128.50 6 5.308500e+01 318.51 2.442988e+05 2.415715e+05 2727.25 NULL
2017 Dept Of Health/Mental Hygiene Oiler NA NA 211207.90 7.040263e+04 99324.010 2447.50 3 7.040263e+04 211207.90 NA NA NA NULL
2017 Dept Of Health/Mental Hygiene Paralegal Aide 41670.66667 1.250120e+05 114.94 3.831333e+01 0.000 5.25 3 0.000000e+00 0.00 1.251269e+05 1.250120e+05 114.94 NULL
2017 Dept Of Health/Mental Hygiene Peer Counselor 34960.00000 6.992000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.992000e+04 6.992000e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Photographer 46806.00000 9.361200e+04 13899.37 6.949685e+03 6949.685 477.00 2 6.949685e+03 13899.37 1.075114e+05 1.075114e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Physicist 80624.00000 8.062400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.062400e+04 8.062400e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Plumber NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2017 Dept Of Health/Mental Hygiene Poison Information Specialist 89618.14461 1.881981e+06 62336.04 2.968383e+03 53.160 877.50 21 5.316000e+01 1116.36 1.944317e+06 1.883097e+06 61219.68 NULL
2017 Dept Of Health/Mental Hygiene Principal Administrative Associate 58270.84850 1.701509e+07 240983.07 8.252845e+02 0.000 6248.70 292 0.000000e+00 0.00 1.725607e+07 1.701509e+07 240983.07 NULL
2017 Dept Of Health/Mental Hygiene Printing Press Operator NA NA 2962.27 4.937117e+02 0.000 56.75 6 0.000000e+00 0.00 NA NA NA NULL
2017 Dept Of Health/Mental Hygiene Procurement Analyst 61104.68437 6.293782e+06 78918.10 7.661951e+02 0.000 1761.00 103 0.000000e+00 0.00 6.372701e+06 6.293782e+06 78918.10 NULL
2017 Dept Of Health/Mental Hygiene Psychiatrist 75446.40000 2.263392e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.263392e+05 2.263392e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Psychologist 84000.00000 8.400000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.400000e+04 8.400000e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Public Health Adviser 39849.46688 2.072172e+07 110611.99 2.127154e+02 0.000 3444.25 520 0.000000e+00 0.00 2.083233e+07 2.072172e+07 110611.99 NULL
2017 Dept Of Health/Mental Hygiene Public Health Assistant 25610.14029 4.148843e+06 28070.80 1.732765e+02 0.000 1335.00 162 0.000000e+00 0.00 4.176914e+06 4.148843e+06 28070.80 NULL
2017 Dept Of Health/Mental Hygiene Public Health Educator 59334.27692 3.856728e+06 772.43 1.188354e+01 0.000 17.75 65 0.000000e+00 0.00 3.857500e+06 3.856728e+06 772.43 NULL
2017 Dept Of Health/Mental Hygiene Public Health Emergency Preparedness Specialist 76532.27273 8.418550e+05 986.27 8.966091e+01 0.000 30.50 11 0.000000e+00 0.00 8.428413e+05 8.418550e+05 986.27 NULL
2017 Dept Of Health/Mental Hygiene Public Health Epidemiologist 63375.21818 3.485637e+06 9995.39 1.817344e+02 0.000 223.75 55 0.000000e+00 0.00 3.495632e+06 3.485637e+06 9995.39 NULL
2017 Dept Of Health/Mental Hygiene Public Health Nurse 41230.16616 2.725314e+07 561278.99 8.491361e+02 0.000 13074.25 661 0.000000e+00 0.00 2.781442e+07 2.725314e+07 561278.99 NULL
2017 Dept Of Health/Mental Hygiene Public Health Sanitarian 52444.41801 1.631021e+07 596804.84 1.918987e+03 109.400 13869.64 311 1.094000e+02 34023.40 1.690702e+07 1.634424e+07 562781.44 NULL
2017 Dept Of Health/Mental Hygiene Public Health/Preventive Medicine Resident 75805.50000 3.032220e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.032220e+05 3.032220e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Public Records Aide 38684.58789 1.237907e+06 10494.48 3.279525e+02 0.000 358.25 32 0.000000e+00 0.00 1.248401e+06 1.237907e+06 10494.48 NULL
2017 Dept Of Health/Mental Hygiene Public Records Officer 47202.00000 4.720200e+04 7091.56 7.091560e+03 7091.560 241.75 1 7.091560e+03 7091.56 5.429356e+04 5.429356e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Research Assistant 59417.33333 1.782520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.782520e+05 1.782520e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Scientist 57234.93750 3.663036e+06 116277.97 1.816843e+03 159.550 2399.75 64 1.595500e+02 10211.20 3.779314e+06 3.673247e+06 106066.77 NULL
2017 Dept Of Health/Mental Hygiene Secretary 45968.40824 2.252452e+06 75284.91 1.536427e+03 0.000 1968.50 49 0.000000e+00 0.00 2.327737e+06 2.252452e+06 75284.91 NULL
2017 Dept Of Health/Mental Hygiene Senior Consultant 84888.50000 1.697770e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.697770e+05 1.697770e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Senior It Architect 100000.00000 3.000000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.000000e+05 3.000000e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Senior Medical Specialist 120674.94500 1.206749e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.206749e+05 1.206749e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Senior Mental Health Worker 40769.75000 1.630790e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.630790e+05 1.630790e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Senior Photographer 55016.40000 2.750820e+05 18298.83 3.659766e+03 2605.580 558.00 5 2.605580e+03 13027.90 2.933808e+05 2.881099e+05 5270.93 NULL
2017 Dept Of Health/Mental Hygiene Senior Stationary Engineer NA NA 66079.74 6.607974e+04 66079.740 607.00 1 6.607974e+04 66079.74 NA NA NA NULL
2017 Dept Of Health/Mental Hygiene Social Worker 57697.66667 3.461860e+06 39176.23 6.529372e+02 0.000 937.75 60 0.000000e+00 0.00 3.501036e+06 3.461860e+06 39176.23 NULL
2017 Dept Of Health/Mental Hygiene Space Analyst 77485.00000 1.549700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.549700e+05 1.549700e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Spec Consultant 79020.42824 1.343347e+06 2305.68 1.356282e+02 0.000 40.50 17 0.000000e+00 0.00 1.345653e+06 1.343347e+06 2305.68 NULL
2017 Dept Of Health/Mental Hygiene Special Consultant 66947.86628 1.151503e+07 5820.02 3.383733e+01 0.000 142.00 172 0.000000e+00 0.00 1.152085e+07 1.151503e+07 5820.02 NULL
2017 Dept Of Health/Mental Hygiene Special Officer 39378.96078 2.008327e+06 285547.24 5.598965e+03 3450.090 9251.49 51 3.450090e+03 175954.59 2.293874e+06 2.184282e+06 109592.65 NULL
2017 Dept Of Health/Mental Hygiene Sr Healthcare Prog Plan Anlyst 62350.46568 5.486841e+06 174.51 1.983068e+00 0.000 5.00 88 0.000000e+00 0.00 5.487015e+06 5.486841e+06 174.51 NULL
2017 Dept Of Health/Mental Hygiene Staff Analyst 69255.06452 2.146907e+06 15455.38 4.985606e+02 0.000 252.25 31 0.000000e+00 0.00 2.162362e+06 2.146907e+06 15455.38 NULL
2017 Dept Of Health/Mental Hygiene Staff Analyst Trainee 27936.37333 8.380912e+04 149.79 4.993000e+01 0.000 2.75 3 0.000000e+00 0.00 8.395891e+04 8.380912e+04 149.79 NULL
2017 Dept Of Health/Mental Hygiene Stationary Engineer NA NA 973390.53 4.866953e+04 52205.200 10147.00 20 4.866953e+04 973390.53 NA NA NA NULL
2017 Dept Of Health/Mental Hygiene Statistician 48631.00000 4.863100e+04 72.37 7.237000e+01 72.370 3.00 1 7.237000e+01 72.37 4.870337e+04 4.870337e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Steam Fitter NA NA 605.00 6.050000e+02 605.000 5.50 1 6.050000e+02 605.00 NA NA NA NULL
2017 Dept Of Health/Mental Hygiene Stock Worker 38297.60000 3.829760e+05 4519.03 4.519030e+02 0.000 188.50 10 0.000000e+00 0.00 3.874950e+05 3.829760e+05 4519.03 NULL
2017 Dept Of Health/Mental Hygiene Strategic Initiative Specialist 107608.00000 2.152160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.152160e+05 2.152160e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Summer College Intern 2378.92422 1.427355e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.427355e+04 1.427355e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Summer Graduate Intern 4434.17161 1.507618e+05 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 1.507618e+05 1.507618e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Supervising Computer Service Technician 68481.41667 4.108885e+05 1245.64 2.076067e+02 0.000 22.00 6 0.000000e+00 0.00 4.121341e+05 4.108885e+05 1245.64 NULL
2017 Dept Of Health/Mental Hygiene Supervising Public Health Adviser 59529.17109 6.012446e+06 111698.19 1.105923e+03 0.000 2542.25 101 0.000000e+00 0.00 6.124144e+06 6.012446e+06 111698.19 NULL
2017 Dept Of Health/Mental Hygiene Supervising Special Officer 52878.53333 7.931780e+05 188977.19 1.259848e+04 13037.280 4932.75 15 1.259848e+04 188977.19 9.821552e+05 9.821552e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Supervisor 47019.00000 7.523040e+05 72403.04 4.525190e+03 0.000 1620.75 16 0.000000e+00 0.00 8.247070e+05 7.523040e+05 72403.04 NULL
2017 Dept Of Health/Mental Hygiene Supervisor Electrician NA NA 6948.91 3.474455e+03 3474.455 35.75 2 3.474455e+03 6948.91 NA NA NA NULL
2017 Dept Of Health/Mental Hygiene Supervisor I Social Work 68533.66667 2.056010e+05 563.40 1.878000e+02 0.000 15.25 3 0.000000e+00 0.00 2.061644e+05 2.056010e+05 563.40 NULL
2017 Dept Of Health/Mental Hygiene Supervisor Ii Social Work 76159.53846 9.900740e+05 626.81 4.821615e+01 0.000 15.00 13 0.000000e+00 0.00 9.907008e+05 9.900740e+05 626.81 NULL
2017 Dept Of Health/Mental Hygiene Supervisor Iii Social Work 82565.00000 2.476950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.476950e+05 2.476950e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Supervisor Of Mechanical Installations & Maintenance 87697.25000 3.507890e+05 39846.83 9.961708e+03 6545.670 548.75 4 6.545670e+03 26182.68 3.906358e+05 3.769717e+05 13664.15 NULL
2017 Dept Of Health/Mental Hygiene Supervisor Of Motor Transport 59730.14286 4.181110e+05 82480.43 1.178292e+04 9158.870 1769.25 7 9.158870e+03 64112.09 5.005914e+05 4.822231e+05 18368.34 NULL
2017 Dept Of Health/Mental Hygiene Supervisor Of Office Machine Operations 39485.00000 3.948500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.948500e+04 3.948500e+04 0.00 NULL
2017 Dept Of Health/Mental Hygiene Supervisor Of Stock Workers 51592.66667 1.547780e+05 4926.28 1.642093e+03 2130.390 124.75 3 1.642093e+03 4926.28 1.597043e+05 1.597043e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Telecommunications Associate 73418.50000 1.468370e+05 2374.09 1.187045e+03 1187.045 62.25 2 1.187045e+03 2374.09 1.492111e+05 1.492111e+05 0.00 NULL
2017 Dept Of Health/Mental Hygiene Thermostat Repairer NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2017 Dept Of Health/Mental Hygiene X-Ray Technician 55452.42089 6.099766e+05 26549.65 2.413605e+03 670.230 699.50 11 6.702300e+02 7372.53 6.365263e+05 6.173492e+05 19177.12 NULL
2017 Dept Of Info Tech & Telecomm *Certified Database Administrator 129877.50000 2.597550e+05 75.35 3.767500e+01 37.675 1.00 2 3.767500e+01 75.35 2.598304e+05 2.598304e+05 0.00 NULL
2017 Dept Of Info Tech & Telecomm *Certified Local Area Network Administrator 104003.50000 2.080070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.080070e+05 2.080070e+05 0.00 NULL
2017 Dept Of Info Tech & Telecomm Adm Manager-Non-Mgrl 79844.08889 3.592984e+06 17448.18 3.877373e+02 0.000 400.00 45 0.000000e+00 0.00 3.610432e+06 3.592984e+06 17448.18 NULL
2017 Dept Of Info Tech & Telecomm Admin Construction Project Manager 137248.00000 1.372480e+05 3774.87 3.774870e+03 3774.870 46.00 1 3.774870e+03 3774.87 1.410229e+05 1.410229e+05 0.00 NULL
2017 Dept Of Info Tech & Telecomm Administrative Business Promotion Coordinator 120632.22222 2.171380e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.171380e+06 2.171380e+06 0.00 NULL
2017 Dept Of Info Tech & Telecomm Administrative Construction Project Manager 133278.66667 3.998360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.998360e+05 3.998360e+05 0.00 NULL
2017 Dept Of Info Tech & Telecomm Administrative Manager 147986.80000 7.399340e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.399340e+05 7.399340e+05 0.00 NULL
2017 Dept Of Info Tech & Telecomm Administrative Procurement Analyst 92907.33333 1.672332e+06 12402.98 6.890544e+02 0.000 163.50 18 0.000000e+00 0.00 1.684735e+06 1.672332e+06 12402.98 NULL
2017 Dept Of Info Tech & Telecomm Administrative Public Information Specialist 111263.83333 1.335166e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.335166e+06 1.335166e+06 0.00 NULL
2017 Dept Of Info Tech & Telecomm Administrative Staff Analyst 111340.55072 7.682498e+06 33308.34 4.827296e+02 0.000 590.50 69 0.000000e+00 0.00 7.715806e+06 7.682498e+06 33308.34 NULL
2017 Dept Of Info Tech & Telecomm Agency Attorney 89575.00000 7.166000e+05 4317.45 5.396812e+02 0.000 78.25 8 0.000000e+00 0.00 7.209174e+05 7.166000e+05 4317.45 NULL
2017 Dept Of Info Tech & Telecomm Agency Attorney Interne 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2017 Dept Of Info Tech & Telecomm Agency Chief Contracting Officer 137248.00000 1.372480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.372480e+05 1.372480e+05 0.00 NULL
2017 Dept Of Info Tech & Telecomm Associate Call Center Representative-Non-Spvr 60377.88889 3.260406e+06 25712.28 4.761533e+02 0.000 764.75 54 0.000000e+00 0.00 3.286118e+06 3.260406e+06 25712.28 NULL
2017 Dept Of Info Tech & Telecomm Associate Inspector 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2017 Dept Of Info Tech & Telecomm Associate Investigator 54756.00000 5.475600e+04 4088.31 4.088310e+03 4088.310 133.25 1 4.088310e+03 4088.31 5.884431e+04 5.884431e+04 0.00 NULL
2017 Dept Of Info Tech & Telecomm Associate Staff Analyst 89011.71429 6.230820e+05 1305.08 1.864400e+02 0.000 27.00 7 0.000000e+00 0.00 6.243871e+05 6.230820e+05 1305.08 NULL
2017 Dept Of Info Tech & Telecomm Business Promotion Coordinator 66024.87798 1.386522e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.386522e+06 1.386522e+06 0.00 NULL
2017 Dept Of Info Tech & Telecomm Call Center Representative 35590.77667 1.067723e+07 159691.90 5.323063e+02 0.000 6788.00 300 0.000000e+00 0.00 1.083692e+07 1.067723e+07 159691.90 NULL
2017 Dept Of Info Tech & Telecomm Certified It Administrator 110778.38095 1.163173e+07 306943.70 2.923273e+03 224.960 3893.50 105 2.249600e+02 23620.80 1.193867e+07 1.165535e+07 283322.90 NULL
2017 Dept Of Info Tech & Telecomm Certified It Developer 109782.55556 9.880430e+05 1101.06 1.223400e+02 0.000 16.00 9 0.000000e+00 0.00 9.891441e+05 9.880430e+05 1101.06 NULL
2017 Dept Of Info Tech & Telecomm Clerical Aide 38226.00000 3.822600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.822600e+04 3.822600e+04 0.00 NULL
2017 Dept Of Info Tech & Telecomm Clerical Associate 47227.10250 1.133450e+06 7081.19 2.950496e+02 0.000 232.25 24 0.000000e+00 0.00 1.140532e+06 1.133450e+06 7081.19 NULL
2017 Dept Of Info Tech & Telecomm College Aide 3948.39214 2.763874e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.763874e+04 2.763874e+04 0.00 NULL
2017 Dept Of Info Tech & Telecomm Commissioner Of Dept Of Info Technology & Telecommunications 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2017 Dept Of Info Tech & Telecomm Community Assistant 36334.33333 1.090030e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.090030e+05 1.090030e+05 0.00 NULL
2017 Dept Of Info Tech & Telecomm Community Associate 47897.04040 2.394852e+06 3781.24 7.562480e+01 0.000 130.25 50 0.000000e+00 0.00 2.398633e+06 2.394852e+06 3781.24 NULL
2017 Dept Of Info Tech & Telecomm Community Coordinator 62186.70370 1.679041e+06 7302.27 2.704544e+02 0.000 220.75 27 0.000000e+00 0.00 1.686343e+06 1.679041e+06 7302.27 NULL
2017 Dept Of Info Tech & Telecomm Computer Aide-Non-Spvr 47429.08333 5.691490e+05 14900.34 1.241695e+03 402.305 370.25 12 4.023050e+02 4827.66 5.840493e+05 5.739767e+05 10072.68 NULL
2017 Dept Of Info Tech & Telecomm Computer Associate 73696.29319 1.407599e+07 582275.85 3.048565e+03 125.860 10855.00 191 1.258600e+02 24039.26 1.465827e+07 1.410003e+07 558236.59 NULL
2017 Dept Of Info Tech & Telecomm Computer Operations Manager 120193.13636 2.644249e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 2.644249e+06 2.644249e+06 0.00 NULL
2017 Dept Of Info Tech & Telecomm Computer Programmer Analyst 60728.90323 1.882596e+06 1094.45 3.530484e+01 0.000 24.00 31 0.000000e+00 0.00 1.883690e+06 1.882596e+06 1094.45 NULL
2017 Dept Of Info Tech & Telecomm Computer Programmer Analyst Trainee 43916.00000 1.317480e+05 540.66 1.802200e+02 0.000 22.50 3 0.000000e+00 0.00 1.322887e+05 1.317480e+05 540.66 NULL
2017 Dept Of Info Tech & Telecomm Computer Service Technician 47391.75000 1.895670e+05 15206.84 3.801710e+03 2232.455 421.75 4 2.232455e+03 8929.82 2.047738e+05 1.984968e+05 6277.02 NULL
2017 Dept Of Info Tech & Telecomm Computer Specialist 106130.52910 2.005867e+07 329620.39 1.744023e+03 0.000 4195.25 189 0.000000e+00 0.00 2.038829e+07 2.005867e+07 329620.39 NULL
2017 Dept Of Info Tech & Telecomm Computer Systems Manager 129097.56091 3.395266e+07 17896.40 6.804715e+01 0.000 178.75 263 0.000000e+00 0.00 3.397055e+07 3.395266e+07 17896.40 NULL
2017 Dept Of Info Tech & Telecomm Confidential Strategy Planner 67352.00000 6.735200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.735200e+04 6.735200e+04 0.00 NULL
2017 Dept Of Info Tech & Telecomm Customer Information Representative 68246.25000 2.729850e+05 2192.12 5.480300e+02 509.435 29.00 4 5.094350e+02 2037.74 2.751771e+05 2.750227e+05 154.38 NULL
2017 Dept Of Info Tech & Telecomm Deputy Commissioner 169460.00000 3.389200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.389200e+05 3.389200e+05 0.00 NULL
2017 Dept Of Info Tech & Telecomm Director Of Television 56213.50000 1.124270e+05 7574.11 3.787055e+03 3787.055 219.00 2 3.787055e+03 7574.11 1.200011e+05 1.200011e+05 0.00 NULL
2017 Dept Of Info Tech & Telecomm Executive Agency Counsel 141946.70000 1.419467e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.419467e+06 1.419467e+06 0.00 NULL
2017 Dept Of Info Tech & Telecomm Film Manager 69671.00000 6.967100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.967100e+04 6.967100e+04 0.00 NULL
2017 Dept Of Info Tech & Telecomm Graphic Artist 68342.00000 2.050260e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.050260e+05 2.050260e+05 0.00 NULL
2017 Dept Of Info Tech & Telecomm Inspector 49112.50000 9.822500e+04 110.51 5.525500e+01 55.255 4.00 2 5.525500e+01 110.51 9.833551e+04 9.833551e+04 0.00 NULL
2017 Dept Of Info Tech & Telecomm Investigator 47892.00000 4.789200e+04 34.59 3.459000e+01 34.590 0.00 1 3.459000e+01 34.59 4.792659e+04 4.792659e+04 0.00 NULL
2017 Dept Of Info Tech & Telecomm It Automation And Monitoring Engineer 114172.75000 4.566910e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.566910e+05 4.566910e+05 0.00 NULL
2017 Dept Of Info Tech & Telecomm It Infrastructure Engineer 116900.00000 5.845000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.845000e+05 5.845000e+05 0.00 NULL
2017 Dept Of Info Tech & Telecomm It Project Specialist 96935.00000 3.877400e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.877400e+05 3.877400e+05 0.00 NULL
2017 Dept Of Info Tech & Telecomm It Security Specialist 109500.00000 6.570000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.570000e+05 6.570000e+05 0.00 NULL
2017 Dept Of Info Tech & Telecomm Labor Relations Analyst 58352.00000 5.835200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.835200e+04 5.835200e+04 0.00 NULL
2017 Dept Of Info Tech & Telecomm Office Machine Aide 44465.00000 4.446500e+04 4620.05 4.620050e+03 4620.050 181.00 1 4.620050e+03 4620.05 4.908505e+04 4.908505e+04 0.00 NULL
2017 Dept Of Info Tech & Telecomm Principal Administrative Associate 64548.89474 1.226429e+06 19942.59 1.049610e+03 0.000 454.75 19 0.000000e+00 0.00 1.246372e+06 1.226429e+06 19942.59 NULL
2017 Dept Of Info Tech & Telecomm Procurement Analyst 62606.00000 6.260600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.260600e+04 6.260600e+04 0.00 NULL
2017 Dept Of Info Tech & Telecomm Program Producer 71209.61538 9.257250e+05 20688.07 1.591390e+03 0.000 439.00 13 0.000000e+00 0.00 9.464131e+05 9.257250e+05 20688.07 NULL
2017 Dept Of Info Tech & Telecomm Radio And Television Operator 51580.46771 1.237931e+06 63495.17 2.645632e+03 594.740 1695.50 24 5.947400e+02 14273.76 1.301426e+06 1.252205e+06 49221.41 NULL
2017 Dept Of Info Tech & Telecomm Secretary 58181.00000 5.818100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.818100e+04 5.818100e+04 0.00 NULL
2017 Dept Of Info Tech & Telecomm Secretary Of Commissioner 87419.00000 8.741900e+04 21173.97 2.117397e+04 21173.970 345.00 1 2.117397e+04 21173.97 1.085930e+05 1.085930e+05 0.00 NULL
2017 Dept Of Info Tech & Telecomm Secretary To The Deputy Commissioner 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2017 Dept Of Info Tech & Telecomm Senior It Architect 150000.00000 3.000000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.000000e+05 3.000000e+05 0.00 NULL
2017 Dept Of Info Tech & Telecomm Staff Analyst 60311.42857 4.221800e+05 2004.27 2.863243e+02 0.000 52.75 7 0.000000e+00 0.00 4.241843e+05 4.221800e+05 2004.27 NULL
2017 Dept Of Info Tech & Telecomm Staff Analyst Trainee 46840.00000 9.836400e+05 151.30 7.204762e+00 0.000 5.50 21 0.000000e+00 0.00 9.837913e+05 9.836400e+05 151.30 NULL
2017 Dept Of Info Tech & Telecomm Summer College Intern 1856.09527 4.825848e+04 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 4.825848e+04 4.825848e+04 0.00 NULL
2017 Dept Of Info Tech & Telecomm Supervising Computer Service Technician 65889.00000 6.588900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.588900e+04 6.588900e+04 0.00 NULL
2017 Dept Of Info Tech & Telecomm Supervisor Of Office Machine Operations 47916.00000 9.583200e+04 617.56 3.087800e+02 308.780 39.00 2 3.087800e+02 617.56 9.644956e+04 9.644956e+04 0.00 NULL
2017 Dept Of Info Tech & Telecomm Supervisor Of Radio And Television Operators 77435.00000 4.646100e+05 12165.85 2.027642e+03 376.355 188.75 6 3.763550e+02 2258.13 4.767758e+05 4.668681e+05 9907.72 NULL
2017 Dept Of Info Tech & Telecomm Telecommunication Manager 123919.15385 1.610949e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.610949e+06 1.610949e+06 0.00 NULL
2017 Dept Of Info Tech & Telecomm Telecommunications Associate 73108.25926 3.947846e+06 195977.93 3.629221e+03 747.580 3176.00 54 7.475800e+02 40369.32 4.143824e+06 3.988215e+06 155608.61 NULL
2017 Dept Of Parks & Recreation *Principal Park Supervisor 80521.50000 1.610430e+05 17352.16 8.676080e+03 8676.080 254.25 2 8.676080e+03 17352.16 1.783952e+05 1.783952e+05 0.00 NULL
2017 Dept Of Parks & Recreation Accountant 74760.00000 1.495200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.495200e+05 1.495200e+05 0.00 NULL
2017 Dept Of Parks & Recreation Adm Manager-Non-Mgrl 72606.11239 4.792003e+06 171514.03 2.598697e+03 0.000 3211.75 66 0.000000e+00 0.00 4.963517e+06 4.792003e+06 171514.03 NULL
2017 Dept Of Parks & Recreation Admin Community Relations Specialist 93242.76377 5.687809e+06 278967.40 4.573236e+03 1689.150 4433.00 61 1.689150e+03 103038.15 5.966776e+06 5.790847e+06 175929.25 NULL
2017 Dept Of Parks & Recreation Admin Landmarks Preservationist 101070.50000 2.021410e+05 8993.70 4.496850e+03 4496.850 152.25 2 4.496850e+03 8993.70 2.111347e+05 2.111347e+05 0.00 NULL
2017 Dept Of Parks & Recreation Administrative Architect 125682.75000 5.027310e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.027310e+05 5.027310e+05 0.00 NULL
2017 Dept Of Parks & Recreation Administrative City Planner 114227.00000 4.569080e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.569080e+05 4.569080e+05 0.00 NULL
2017 Dept Of Parks & Recreation Administrative Community Relations Specialist 124742.33333 3.742270e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.742270e+05 3.742270e+05 0.00 NULL
2017 Dept Of Parks & Recreation Administrative Construction Project Manager 134104.00000 1.341040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.341040e+05 1.341040e+05 0.00 NULL
2017 Dept Of Parks & Recreation Administrative Engineer 110759.80000 5.537990e+05 10564.36 2.112872e+03 0.000 167.25 5 0.000000e+00 0.00 5.643634e+05 5.537990e+05 10564.36 NULL
2017 Dept Of Parks & Recreation Administrative Horticulturist 81480.02174 3.748081e+06 1287.05 2.797935e+01 0.000 8.00 46 0.000000e+00 0.00 3.749368e+06 3.748081e+06 1287.05 NULL
2017 Dept Of Parks & Recreation Administrative Landscape Architect 119377.00000 2.387540e+05 1575.20 7.876000e+02 787.600 27.50 2 7.876000e+02 1575.20 2.403292e+05 2.403292e+05 0.00 NULL
2017 Dept Of Parks & Recreation Administrative Manager 124623.50000 4.984940e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.984940e+05 4.984940e+05 0.00 NULL
2017 Dept Of Parks & Recreation Administrative Parks & Recreation Manager 86805.05076 5.121498e+06 3386.03 5.739034e+01 0.000 41.50 59 0.000000e+00 0.00 5.124884e+06 5.121498e+06 3386.03 NULL
2017 Dept Of Parks & Recreation Administrative Project Manager 111278.63583 4.006031e+06 29180.34 8.105650e+02 0.000 463.00 36 0.000000e+00 0.00 4.035211e+06 4.006031e+06 29180.34 NULL
2017 Dept Of Parks & Recreation Administrative Public Information Specialist 119835.66667 3.595070e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.595070e+05 3.595070e+05 0.00 NULL
2017 Dept Of Parks & Recreation Administrative Staff Analyst 94769.84682 8.339747e+06 233725.59 2.655973e+03 0.000 3960.00 88 0.000000e+00 0.00 8.573472e+06 8.339747e+06 233725.59 NULL
2017 Dept Of Parks & Recreation Administrative Supervisor Of Building Maintenance 110918.00000 2.218360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.218360e+05 2.218360e+05 0.00 NULL
2017 Dept Of Parks & Recreation Agency Attorney 76991.47125 1.231864e+06 8621.78 5.388613e+02 0.000 158.75 16 0.000000e+00 0.00 1.240485e+06 1.231864e+06 8621.78 NULL
2017 Dept Of Parks & Recreation Agency Chief Contracting Officer 139050.00000 1.390500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.390500e+05 1.390500e+05 0.00 NULL
2017 Dept Of Parks & Recreation Architect 88492.18182 9.734140e+05 1067.08 9.700727e+01 0.000 21.00 11 0.000000e+00 0.00 9.744811e+05 9.734140e+05 1067.08 NULL
2017 Dept Of Parks & Recreation Assistant Architect 61104.00000 1.222080e+05 3237.95 1.618975e+03 1618.975 93.00 2 1.618975e+03 3237.95 1.254459e+05 1.254459e+05 0.00 NULL
2017 Dept Of Parks & Recreation Assistant Civil Engineer 65717.87500 5.257430e+05 52031.03 6.503879e+03 505.460 1006.00 8 5.054600e+02 4043.68 5.777740e+05 5.297867e+05 47987.35 NULL
2017 Dept Of Parks & Recreation Assistant Commissioner 148284.00000 2.965680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.965680e+05 2.965680e+05 0.00 NULL
2017 Dept Of Parks & Recreation Assistant Electrical Engineer 68724.66667 2.061740e+05 12894.82 4.298273e+03 265.440 194.25 3 2.654400e+02 796.32 2.190688e+05 2.069703e+05 12098.50 NULL
2017 Dept Of Parks & Recreation Assistant Environmental Engineer 52384.73760 1.571542e+05 9875.12 3.291707e+03 2152.490 220.25 3 2.152490e+03 6457.47 1.670293e+05 1.636117e+05 3417.65 NULL
2017 Dept Of Parks & Recreation Assistant Landscape Architect 60283.95868 2.652494e+06 13766.24 3.128691e+02 0.000 359.00 44 0.000000e+00 0.00 2.666260e+06 2.652494e+06 13766.24 NULL
2017 Dept Of Parks & Recreation Assistant Mechanical Engineer 63926.60000 3.196330e+05 26407.66 5.281532e+03 1890.610 447.25 5 1.890610e+03 9453.05 3.460407e+05 3.290860e+05 16954.61 NULL
2017 Dept Of Parks & Recreation Assistant To The Commissioner Of Parks And Recreation 145823.00000 1.458230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.458230e+05 1.458230e+05 0.00 NULL
2017 Dept Of Parks & Recreation Associate Labor Relations Analyst 77250.00000 7.725000e+04 9314.20 9.314200e+03 9314.200 161.00 1 9.314200e+03 9314.20 8.656420e+04 8.656420e+04 0.00 NULL
2017 Dept Of Parks & Recreation Associate Park Service Worker 44427.55073 1.577178e+07 1605900.93 4.523665e+03 2013.240 42775.02 355 2.013240e+03 714700.20 1.737768e+07 1.648648e+07 891200.73 NULL
2017 Dept Of Parks & Recreation Associate Project Manager 79595.51761 7.322788e+06 246861.61 2.683278e+03 255.070 4503.75 92 2.550700e+02 23466.44 7.569649e+06 7.346254e+06 223395.17 NULL
2017 Dept Of Parks & Recreation Associate Quality Assurance Specialist 72306.75000 2.892270e+05 7519.32 1.879830e+03 1889.775 178.00 4 1.879830e+03 7519.32 2.967463e+05 2.967463e+05 0.00 NULL
2017 Dept Of Parks & Recreation Associate Staff Analyst 78062.52794 1.327063e+06 22945.20 1.349718e+03 250.520 460.25 17 2.505200e+02 4258.84 1.350008e+06 1.331322e+06 18686.36 NULL
2017 Dept Of Parks & Recreation Associate Urban Designer 80551.11111 7.249600e+05 57827.75 6.425306e+03 874.510 1094.00 9 8.745100e+02 7870.59 7.827878e+05 7.328306e+05 49957.16 NULL
2017 Dept Of Parks & Recreation Associate Urban Park Ranger 54930.89209 6.207191e+06 363062.07 3.212939e+03 2440.610 9484.02 113 2.440610e+03 275788.93 6.570253e+06 6.482980e+06 87273.14 NULL
2017 Dept Of Parks & Recreation Auto Mechanic NA NA 137551.26 5.502050e+03 1623.690 2282.75 25 1.623690e+03 40592.25 NA NA NA NULL
2017 Dept Of Parks & Recreation Automotive Service Worker 37689.47501 4.522737e+05 8468.88 7.057400e+02 298.480 285.75 12 2.984800e+02 3581.76 4.607426e+05 4.558555e+05 4887.12 NULL
2017 Dept Of Parks & Recreation Blacksmith NA NA 193834.35 1.491033e+04 6512.400 2477.75 13 6.512400e+03 84661.20 NA NA NA NULL
2017 Dept Of Parks & Recreation Blacksmith’s Helper NA NA 77237.87 1.930947e+04 14171.840 1583.25 4 1.417184e+04 56687.36 NA NA NA NULL
2017 Dept Of Parks & Recreation Borough Director Of Recreation 128958.33333 7.737500e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.737500e+05 7.737500e+05 0.00 NULL
2017 Dept Of Parks & Recreation Carpenter NA NA 392475.36 1.121358e+04 5199.990 4232.75 35 5.199990e+03 181999.65 NA NA NA NULL
2017 Dept Of Parks & Recreation Cement Mason NA NA 269635.40 1.685221e+04 6126.210 2862.25 16 6.126210e+03 98019.36 NA NA NA NULL
2017 Dept Of Parks & Recreation Certified It Administrator 92113.49333 1.658043e+06 51790.19 2.877233e+03 1156.530 916.75 18 1.156530e+03 20817.54 1.709833e+06 1.678860e+06 30972.65 NULL
2017 Dept Of Parks & Recreation Certified It Developer 93845.00000 9.384500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.384500e+04 9.384500e+04 0.00 NULL
2017 Dept Of Parks & Recreation Chief Lifeguard 27277.28308 3.273274e+06 149962.44 1.249687e+03 477.745 3018.50 120 4.777450e+02 57329.40 3.423236e+06 3.330603e+06 92633.04 NULL
2017 Dept Of Parks & Recreation City Park Worker 23475.32378 3.652760e+07 1984798.07 1.275577e+03 414.350 72546.41 1556 4.143500e+02 644728.60 3.851240e+07 3.717233e+07 1340069.47 NULL
2017 Dept Of Parks & Recreation City Planner 74077.49105 1.407472e+06 11218.46 5.904453e+02 139.960 237.00 19 1.399600e+02 2659.24 1.418691e+06 1.410132e+06 8559.22 NULL
2017 Dept Of Parks & Recreation City Planning Technician 52788.00000 1.055760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.055760e+05 1.055760e+05 0.00 NULL
2017 Dept Of Parks & Recreation City Research Scientist 87075.69231 1.131984e+06 28208.27 2.169867e+03 0.000 422.00 13 0.000000e+00 0.00 1.160192e+06 1.131984e+06 28208.27 NULL
2017 Dept Of Parks & Recreation City Seasonal Aide 11497.87837 1.471728e+07 450254.65 3.517614e+02 71.855 20589.55 1280 7.185500e+01 91974.40 1.516754e+07 1.480926e+07 358280.25 NULL
2017 Dept Of Parks & Recreation Civil Engineer 91288.60000 4.564430e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.564430e+05 4.564430e+05 0.00 NULL
2017 Dept Of Parks & Recreation Civil Engineering Intern 52000.00000 5.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.200000e+04 5.200000e+04 0.00 NULL
2017 Dept Of Parks & Recreation Clerical Aide 30747.79830 6.149560e+04 3474.30 1.737150e+03 1737.150 220.20 2 1.737150e+03 3474.30 6.496990e+04 6.496990e+04 0.00 NULL
2017 Dept Of Parks & Recreation Clerical Associate 45560.02802 3.781482e+06 69146.72 8.330930e+02 0.000 2063.25 83 0.000000e+00 0.00 3.850629e+06 3.781482e+06 69146.72 NULL
2017 Dept Of Parks & Recreation Climber & Pruner 62967.29839 7.807945e+06 1312991.49 1.058864e+04 7381.540 27347.45 124 7.381540e+03 915310.96 9.120936e+06 8.723256e+06 397680.53 NULL
2017 Dept Of Parks & Recreation College Aide 2356.86500 4.713730e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.713730e+03 4.713730e+03 0.00 NULL
2017 Dept Of Parks & Recreation Commissioner Of Parks & Recreation 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2017 Dept Of Parks & Recreation Community Assistant 20121.17850 4.024236e+05 14786.44 7.393220e+02 0.000 563.67 20 0.000000e+00 0.00 4.172100e+05 4.024236e+05 14786.44 NULL
2017 Dept Of Parks & Recreation Community Associate 38814.04820 1.016928e+07 146300.07 5.583972e+02 0.000 4266.27 262 0.000000e+00 0.00 1.031558e+07 1.016928e+07 146300.07 NULL
2017 Dept Of Parks & Recreation Community Coordinator 63333.22049 2.729662e+07 687950.27 1.596172e+03 0.000 14062.72 431 0.000000e+00 0.00 2.798457e+07 2.729662e+07 687950.27 NULL
2017 Dept Of Parks & Recreation Community Service Aide 4144.06243 1.450422e+05 1430.43 4.086943e+01 0.000 87.25 35 0.000000e+00 0.00 1.464726e+05 1.450422e+05 1430.43 NULL
2017 Dept Of Parks & Recreation Computer Aide-Non-Spvr 48945.42050 4.894542e+05 15348.45 1.534845e+03 216.405 411.25 10 2.164050e+02 2164.05 5.048027e+05 4.916183e+05 13184.40 NULL
2017 Dept Of Parks & Recreation Computer Associate 70613.22817 2.965756e+06 75797.77 1.804709e+03 0.000 1356.25 42 0.000000e+00 0.00 3.041553e+06 2.965756e+06 75797.77 NULL
2017 Dept Of Parks & Recreation Computer Operations Manager 90875.00000 2.726250e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.726250e+05 2.726250e+05 0.00 NULL
2017 Dept Of Parks & Recreation Computer Programmer Analyst 56242.15997 1.687265e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.687265e+05 1.687265e+05 0.00 NULL
2017 Dept Of Parks & Recreation Computer Service Technician 53556.00000 5.355600e+04 697.65 6.976500e+02 697.650 16.00 1 6.976500e+02 697.65 5.425365e+04 5.425365e+04 0.00 NULL
2017 Dept Of Parks & Recreation Computer Specialist 89615.00000 2.688450e+05 4426.42 1.475473e+03 0.000 71.00 3 0.000000e+00 0.00 2.732714e+05 2.688450e+05 4426.42 NULL
2017 Dept Of Parks & Recreation Construction Project Manager 76745.48052 5.909402e+06 276257.94 3.587765e+03 643.200 4794.50 77 6.432000e+02 49526.40 6.185660e+06 5.958928e+06 226731.54 NULL
2017 Dept Of Parks & Recreation Construction Project Manager Intern 55263.60000 2.763180e+05 24444.03 4.888806e+03 3058.930 635.00 5 3.058930e+03 15294.65 3.007620e+05 2.916127e+05 9149.38 NULL
2017 Dept Of Parks & Recreation Cooperative Education Trainee-Seasonal Park Help 2378.81108 1.522439e+05 0.00 0.000000e+00 0.000 0.00 64 0.000000e+00 0.00 1.522439e+05 1.522439e+05 0.00 NULL
2017 Dept Of Parks & Recreation Counsel 176301.00000 1.763010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.763010e+05 1.763010e+05 0.00 NULL
2017 Dept Of Parks & Recreation Customer Information Representative 60014.00000 6.001400e+04 878.58 8.785800e+02 878.580 19.75 1 8.785800e+02 878.58 6.089258e+04 6.089258e+04 0.00 NULL
2017 Dept Of Parks & Recreation Deputy Borough Commissioner 135452.50000 1.083620e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.083620e+06 1.083620e+06 0.00 NULL
2017 Dept Of Parks & Recreation Deputy Chief Of Operations 114457.92857 1.602411e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.602411e+06 1.602411e+06 0.00 NULL
2017 Dept Of Parks & Recreation Deputy Commissioner 182724.50000 1.096347e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.096347e+06 1.096347e+06 0.00 NULL
2017 Dept Of Parks & Recreation Director Of Community Involvement 101970.00000 1.019700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.019700e+05 1.019700e+05 0.00 NULL
2017 Dept Of Parks & Recreation Director Of Neighborhood Park Restoration 80430.90909 8.847400e+05 1541.83 1.401664e+02 0.000 37.50 11 0.000000e+00 0.00 8.862818e+05 8.847400e+05 1541.83 NULL
2017 Dept Of Parks & Recreation Director Of Puppetry 57503.00000 5.750300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.750300e+04 5.750300e+04 0.00 NULL
2017 Dept Of Parks & Recreation Director Of Regional Joint Interest Park 95259.06367 2.857772e+06 20579.54 6.859847e+02 0.000 272.00 30 0.000000e+00 0.00 2.878351e+06 2.857772e+06 20579.54 NULL
2017 Dept Of Parks & Recreation Director Of Urban Park Ranger Program 145686.00000 1.456860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.456860e+05 1.456860e+05 0.00 NULL
2017 Dept Of Parks & Recreation Electrician NA NA 610687.70 1.221375e+04 7927.340 7335.75 50 7.927340e+03 396367.00 NA NA NA NULL
2017 Dept Of Parks & Recreation Engineering Technician 52799.50000 1.055990e+05 1325.24 6.626200e+02 662.620 53.25 2 6.626200e+02 1325.24 1.069242e+05 1.069242e+05 0.00 NULL
2017 Dept Of Parks & Recreation Environmental Engineer 97599.00000 9.759900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.759900e+04 9.759900e+04 0.00 NULL
2017 Dept Of Parks & Recreation Executive Agency Counsel 130957.25000 5.238290e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.238290e+05 5.238290e+05 0.00 NULL
2017 Dept Of Parks & Recreation Executive Assistant To The Commissioner 155873.00000 1.558730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.558730e+05 1.558730e+05 0.00 NULL
2017 Dept Of Parks & Recreation Exterminator 36426.00000 3.642600e+04 5269.78 5.269780e+03 5269.780 224.50 1 5.269780e+03 5269.78 4.169578e+04 4.169578e+04 0.00 NULL
2017 Dept Of Parks & Recreation Forester 51216.07811 3.175397e+06 102543.30 1.653924e+03 308.360 2454.00 62 3.083600e+02 19118.32 3.277940e+06 3.194515e+06 83424.98 NULL
2017 Dept Of Parks & Recreation Gardener 43057.15253 8.180859e+06 460571.98 2.424063e+03 741.855 13600.23 190 7.418550e+02 140952.45 8.641431e+06 8.321811e+06 319619.53 NULL
2017 Dept Of Parks & Recreation Investigator 62593.30000 6.259330e+05 50992.15 5.099215e+03 238.095 1040.75 10 2.380950e+02 2380.95 6.769252e+05 6.283139e+05 48611.20 NULL
2017 Dept Of Parks & Recreation Job Training Participant 6370.58802 4.057428e+07 2051684.78 3.221361e+02 47.160 114503.50 6369 4.716000e+01 300362.04 4.262596e+07 4.087464e+07 1751322.74 NULL
2017 Dept Of Parks & Recreation Labor Relations Analyst 66435.00000 1.328700e+05 404.08 2.020400e+02 202.040 9.50 2 2.020400e+02 404.08 1.332741e+05 1.332741e+05 0.00 NULL
2017 Dept Of Parks & Recreation Landmarks Preservationist 73128.12530 2.925125e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.925125e+05 2.925125e+05 0.00 NULL
2017 Dept Of Parks & Recreation Landscape Architect 88570.64275 7.174222e+06 246994.23 3.049311e+03 889.310 4012.25 81 8.893100e+02 72034.11 7.421216e+06 7.246256e+06 174960.12 NULL
2017 Dept Of Parks & Recreation Landscape Architect Intern 53823.40000 2.691170e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.691170e+05 2.691170e+05 0.00 NULL
2017 Dept Of Parks & Recreation Letterer And Sign Painter NA NA 459.00 4.590000e+02 459.000 9.00 1 4.590000e+02 459.00 NA NA NA NULL
2017 Dept Of Parks & Recreation Life Guard 8617.64173 1.192682e+07 188847.66 1.364506e+02 57.375 6923.50 1384 5.737500e+01 79407.00 1.211566e+07 1.200622e+07 109440.66 NULL
2017 Dept Of Parks & Recreation Machinist NA NA 32400.13 8.100033e+03 7900.785 520.58 4 7.900785e+03 31603.14 NA NA NA NULL
2017 Dept Of Parks & Recreation Maintenance Worker NA NA 383081.86 4.615444e+03 2726.110 7979.75 83 2.726110e+03 226267.13 NA NA NA NULL
2017 Dept Of Parks & Recreation Management Auditor 75190.00000 7.519000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.519000e+04 7.519000e+04 0.00 NULL
2017 Dept Of Parks & Recreation Manager Of Park License Agreements 149047.00000 1.490470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.490470e+05 1.490470e+05 0.00 NULL
2017 Dept Of Parks & Recreation Marine Maintenance Mechanic 73812.00000 1.476240e+05 2847.26 1.423630e+03 1423.630 38.00 2 1.423630e+03 2847.26 1.504713e+05 1.504713e+05 0.00 NULL
2017 Dept Of Parks & Recreation Masons Helper NA NA 30917.72 1.545886e+04 15458.860 595.00 2 1.545886e+04 30917.72 NA NA NA NULL
2017 Dept Of Parks & Recreation Mechanical Engineer 92808.20000 4.640410e+05 15568.06 3.113612e+03 466.110 245.25 5 4.661100e+02 2330.55 4.796091e+05 4.663715e+05 13237.51 NULL
2017 Dept Of Parks & Recreation Mechanical Engineering Intern 57958.00000 5.795800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.795800e+04 5.795800e+04 0.00 NULL
2017 Dept Of Parks & Recreation Nutritionist 1243.55000 1.243550e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.243550e+03 1.243550e+03 0.00 NULL
2017 Dept Of Parks & Recreation Oiler NA NA 83087.43 2.077186e+04 23993.170 937.25 4 2.077186e+04 83087.43 NA NA NA NULL
2017 Dept Of Parks & Recreation Painter NA NA 561571.49 1.754911e+04 10975.090 7667.25 32 1.097509e+04 351202.88 NA NA NA NULL
2017 Dept Of Parks & Recreation Park Borough Commissioner 164729.16667 9.883750e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.883750e+05 9.883750e+05 0.00 NULL
2017 Dept Of Parks & Recreation Park Services Worker 37957.00000 3.795700e+04 93.19 9.319000e+01 93.190 3.50 1 9.319000e+01 93.19 3.805019e+04 3.805019e+04 0.00 NULL
2017 Dept Of Parks & Recreation Park Supervisor 70542.41652 3.378982e+07 2814558.42 5.875905e+03 3425.510 54846.00 479 3.425510e+03 1640819.29 3.660438e+07 3.543064e+07 1173739.13 NULL
2017 Dept Of Parks & Recreation Plasterer NA NA 14432.04 1.443204e+04 14432.040 144.00 1 1.443204e+04 14432.04 NA NA NA NULL
2017 Dept Of Parks & Recreation Playground Associate 13458.29433 3.943280e+06 67386.64 2.299885e+02 0.000 2965.75 293 0.000000e+00 0.00 4.010667e+06 3.943280e+06 67386.64 NULL
2017 Dept Of Parks & Recreation Plumber NA NA 1000012.30 1.785736e+04 13936.030 9978.25 56 1.393603e+04 780417.68 NA NA NA NULL
2017 Dept Of Parks & Recreation Plumber’s Helper NA NA 76405.95 1.273433e+04 12085.990 1055.50 6 1.208599e+04 72515.94 NA NA NA NULL
2017 Dept Of Parks & Recreation Principal Administrative Associate 61645.65195 4.746715e+06 147678.14 1.917898e+03 0.000 3388.50 77 0.000000e+00 0.00 4.894393e+06 4.746715e+06 147678.14 NULL
2017 Dept Of Parks & Recreation Procurement Analyst 68297.71429 1.912336e+06 112311.95 4.011141e+03 321.210 2101.25 28 3.212100e+02 8993.88 2.024648e+06 1.921330e+06 103318.07 NULL
2017 Dept Of Parks & Recreation Project Manager 73464.44444 6.611800e+05 6081.12 6.756800e+02 462.000 148.00 9 4.620000e+02 4158.00 6.672611e+05 6.653380e+05 1923.12 NULL
2017 Dept Of Parks & Recreation Public Records Officer 43842.89667 1.315287e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.315287e+05 1.315287e+05 0.00 NULL
2017 Dept Of Parks & Recreation Puppeteer 43648.00000 1.745920e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.745920e+05 1.745920e+05 0.00 NULL
2017 Dept Of Parks & Recreation Quality Assurance Specialist 53584.33333 1.607530e+05 5197.83 1.732610e+03 636.980 161.00 3 6.369800e+02 1910.94 1.659508e+05 1.626639e+05 3286.89 NULL
2017 Dept Of Parks & Recreation Recreation Director 44308.10357 1.949557e+06 60813.39 1.382122e+03 138.090 1769.23 44 1.380900e+02 6075.96 2.010370e+06 1.955633e+06 54737.43 NULL
2017 Dept Of Parks & Recreation Recreation Specialist 24510.86665 6.617934e+06 102687.60 3.803244e+02 0.000 3536.75 270 0.000000e+00 0.00 6.720622e+06 6.617934e+06 102687.60 NULL
2017 Dept Of Parks & Recreation Recreation Supervisor 48701.29821 6.087662e+06 242052.12 1.936417e+03 226.230 5463.48 125 2.262300e+02 28278.75 6.329714e+06 6.115941e+06 213773.37 NULL
2017 Dept Of Parks & Recreation Research Assistant 43250.01333 1.297500e+05 5809.16 1.936387e+03 878.800 168.75 3 8.788000e+02 2636.40 1.355592e+05 1.323864e+05 3172.76 NULL
2017 Dept Of Parks & Recreation Secretary 52830.00000 5.283000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.283000e+04 5.283000e+04 0.00 NULL
2017 Dept Of Parks & Recreation Senior Estimator 87500.00000 1.750000e+05 526.82 2.634100e+02 263.410 11.00 2 2.634100e+02 526.82 1.755268e+05 1.755268e+05 0.00 NULL
2017 Dept Of Parks & Recreation Senior Photographer 70567.50000 1.411350e+05 1616.01 8.080050e+02 808.005 30.75 2 8.080050e+02 1616.01 1.427510e+05 1.427510e+05 0.00 NULL
2017 Dept Of Parks & Recreation Senior Stationary Engineer NA NA 125348.00 6.267400e+04 62674.000 1129.50 2 6.267400e+04 125348.00 NA NA NA NULL
2017 Dept Of Parks & Recreation Sheet Metal Worker NA NA 35957.13 5.992855e+03 2902.920 291.00 6 2.902920e+03 17417.52 NA NA NA NULL
2017 Dept Of Parks & Recreation Staff Analyst 62375.90909 6.861350e+05 18943.08 1.722098e+03 716.170 400.75 11 7.161700e+02 7877.87 7.050781e+05 6.940129e+05 11065.21 NULL
2017 Dept Of Parks & Recreation Staff Analyst Trainee 48729.00000 4.872900e+04 2440.23 2.440230e+03 2440.230 47.25 1 2.440230e+03 2440.23 5.116923e+04 5.116923e+04 0.00 NULL
2017 Dept Of Parks & Recreation Stationary Engineer NA NA 1015057.26 1.780802e+04 6395.500 10337.50 57 6.395500e+03 364543.50 NA NA NA NULL
2017 Dept Of Parks & Recreation Steam Fitter NA NA 245406.08 3.067576e+04 29448.080 2209.50 8 2.944808e+04 235584.64 NA NA NA NULL
2017 Dept Of Parks & Recreation Steam Fitter’s Helper NA NA 577.50 5.775000e+02 577.500 7.00 1 5.775000e+02 577.50 NA NA NA NULL
2017 Dept Of Parks & Recreation Stock Worker 39007.00000 3.900700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.900700e+04 3.900700e+04 0.00 NULL
2017 Dept Of Parks & Recreation Supervising Computer Service Technician 67761.00000 2.032830e+05 613.06 2.043533e+02 0.000 0.00 3 0.000000e+00 0.00 2.038961e+05 2.032830e+05 613.06 NULL
2017 Dept Of Parks & Recreation Supervising Dockmaster 64217.85714 4.495250e+05 6539.48 9.342114e+02 1189.450 128.50 7 9.342114e+02 6539.48 4.560645e+05 4.560645e+05 0.00 NULL
2017 Dept Of Parks & Recreation Supervisor Carpenter NA NA 116119.61 2.902990e+04 20964.485 1334.75 4 2.096449e+04 83857.94 NA NA NA NULL
2017 Dept Of Parks & Recreation Supervisor Electrician NA NA 57836.62 5.783662e+04 57836.620 672.00 1 5.783662e+04 57836.62 NA NA NA NULL
2017 Dept Of Parks & Recreation Supervisor Of Mechanics NA NA 336951.38 2.246343e+04 1337.300 3602.00 15 1.337300e+03 20059.50 NA NA NA NULL
2017 Dept Of Parks & Recreation Supervisor Of Stock Workers 49297.00000 4.929700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.929700e+04 4.929700e+04 0.00 NULL
2017 Dept Of Parks & Recreation Supervisor Painter NA NA 169524.51 3.390490e+04 229.180 1869.00 5 2.291800e+02 1145.90 NA NA NA NULL
2017 Dept Of Parks & Recreation Supervisor Plumber NA NA 187512.56 4.687814e+04 52975.990 1585.25 4 4.687814e+04 187512.56 NA NA NA NULL
2017 Dept Of Parks & Recreation Surveyor 60699.22222 5.462930e+05 10647.75 1.183083e+03 323.120 294.50 9 3.231200e+02 2908.08 5.569408e+05 5.492011e+05 7739.67 NULL
2017 Dept Of Parks & Recreation Telecommunications Associate 75131.33333 9.015760e+05 26331.47 2.194289e+03 663.525 466.75 12 6.635250e+02 7962.30 9.279075e+05 9.095383e+05 18369.17 NULL
2017 Dept Of Parks & Recreation Telephone Service Technician 58696.00000 3.521760e+05 23508.37 3.918062e+03 2323.525 574.50 6 2.323525e+03 13941.15 3.756844e+05 3.661172e+05 9567.22 NULL
2017 Dept Of Parks & Recreation Thermostat Repairer NA NA 51200.20 5.120020e+04 51200.200 536.25 1 5.120020e+04 51200.20 NA NA NA NULL
2017 Dept Of Parks & Recreation Urban Park Ranger 38848.95354 1.499570e+07 410883.84 1.064466e+03 351.680 13509.22 386 3.516800e+02 135748.48 1.540658e+07 1.513144e+07 275135.36 NULL
2017 Dept Of Records & Info Service Adm Manager-Non-Mgrl 60479.16800 1.814375e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.814375e+05 1.814375e+05 0.00 NULL
2017 Dept Of Records & Info Service Administration Public Record Officer 96772.50000 1.935450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.935450e+05 1.935450e+05 0.00 NULL
2017 Dept Of Records & Info Service Administrative Manager 127305.00000 1.273050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.273050e+05 1.273050e+05 0.00 NULL
2017 Dept Of Records & Info Service Agency Attorney 89610.00000 8.961000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.961000e+04 8.961000e+04 0.00 NULL
2017 Dept Of Records & Info Service Assistant Commissioner 116389.00000 1.163890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.163890e+05 1.163890e+05 0.00 NULL
2017 Dept Of Records & Info Service Associate Public Records Officer 56961.50000 4.556920e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.556920e+05 4.556920e+05 0.00 NULL
2017 Dept Of Records & Info Service Associate Staff Analyst 75822.66667 2.274680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.274680e+05 2.274680e+05 0.00 NULL
2017 Dept Of Records & Info Service Certified It Developer 89225.80000 4.461290e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.461290e+05 4.461290e+05 0.00 NULL
2017 Dept Of Records & Info Service City Custodial Assistant 35525.00000 7.105000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.105000e+04 7.105000e+04 0.00 NULL
2017 Dept Of Records & Info Service Clerical Associate 40683.16667 2.440990e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.440990e+05 2.440990e+05 0.00 NULL
2017 Dept Of Records & Info Service College Aide 12676.00020 3.802800e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.802800e+04 3.802800e+04 0.00 NULL
2017 Dept Of Records & Info Service Commissioner 157955.00000 1.579550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.579550e+05 1.579550e+05 0.00 NULL
2017 Dept Of Records & Info Service Community Assistant 17446.84667 1.046811e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.046811e+05 1.046811e+05 0.00 NULL
2017 Dept Of Records & Info Service Community Associate 39106.98672 1.955349e+05 2413.03 4.826060e+02 0.000 85.00 5 0.000000e+00 0.00 1.979480e+05 1.955349e+05 2413.03 NULL
2017 Dept Of Records & Info Service Community Coordinator 69434.33333 2.083030e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.083030e+05 2.083030e+05 0.00 NULL
2017 Dept Of Records & Info Service Computer Associate 54374.00000 5.437400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.437400e+04 5.437400e+04 0.00 NULL
2017 Dept Of Records & Info Service Computer Programmer Analyst 77953.00000 7.795300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.795300e+04 7.795300e+04 0.00 NULL
2017 Dept Of Records & Info Service Computer Systems Manager 123216.66667 3.696500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.696500e+05 3.696500e+05 0.00 NULL
2017 Dept Of Records & Info Service Motor Vehicle Operator 46787.00000 4.678700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.678700e+04 4.678700e+04 0.00 NULL
2017 Dept Of Records & Info Service Principal Administrative Associate 56357.40000 2.817870e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.817870e+05 2.817870e+05 0.00 NULL
2017 Dept Of Records & Info Service Public Records Aide 38032.40000 1.901620e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.901620e+05 1.901620e+05 0.00 NULL
2017 Dept Of Records & Info Service Public Records Officer 32698.10655 5.558678e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 5.558678e+05 5.558678e+05 0.00 NULL
2017 Dept Of Records & Info Service Research Assistant 56576.50000 1.131530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.131530e+05 1.131530e+05 0.00 NULL
2017 Dept Of Records & Info Service Staff Analyst 59697.00000 5.969700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.969700e+04 5.969700e+04 0.00 NULL
2017 Dept Of Records & Info Service Stock Worker 23800.09022 2.142008e+05 1763.96 1.959956e+02 0.000 95.00 9 0.000000e+00 0.00 2.159648e+05 2.142008e+05 1763.96 NULL
2017 Dept Of Youth & Comm Dev Srvs Accountant 71017.33333 2.130520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.130520e+05 2.130520e+05 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Adm Manager-Non-Mgrl 74403.66667 1.562477e+06 906.67 4.317476e+01 0.000 12.50 21 0.000000e+00 0.00 1.563384e+06 1.562477e+06 906.67 NULL
2017 Dept Of Youth & Comm Dev Srvs Admin Community Relations Specialist 90765.28571 6.353570e+05 350.70 5.010000e+01 0.000 6.50 7 0.000000e+00 0.00 6.357077e+05 6.353570e+05 350.70 NULL
2017 Dept Of Youth & Comm Dev Srvs Admin Contract Specialist 89719.83529 7.626186e+06 0.00 0.000000e+00 0.000 0.00 85 0.000000e+00 0.00 7.626186e+06 7.626186e+06 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Administrative Community Relations Specialist 121866.77778 1.096801e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.096801e+06 1.096801e+06 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Administrative Graphic Artist 98992.00000 9.899200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.899200e+04 9.899200e+04 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Administrative Labor Relations Analyst 81556.00000 1.631120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.631120e+05 1.631120e+05 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Administrative Management Auditor 105575.00000 3.167250e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.167250e+05 3.167250e+05 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Administrative Manager 103801.21429 1.453217e+06 5365.54 3.832529e+02 0.000 147.75 14 0.000000e+00 0.00 1.458583e+06 1.453217e+06 5365.54 NULL
2017 Dept Of Youth & Comm Dev Srvs Administrative Procurement Analyst 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Administrative Public Information Specialist 106553.33333 3.196600e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.196600e+05 3.196600e+05 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Administrative Staff Analyst 103036.52745 5.254863e+06 3810.33 7.471235e+01 0.000 73.75 51 0.000000e+00 0.00 5.258673e+06 5.254863e+06 3810.33 NULL
2017 Dept Of Youth & Comm Dev Srvs Agency Attorney 92009.00000 5.520540e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.520540e+05 5.520540e+05 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Agency Chief Contracting Officer 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Associate Contract Specialist 67786.34483 6.100771e+06 18566.38 2.062931e+02 0.000 344.25 90 0.000000e+00 0.00 6.119337e+06 6.100771e+06 18566.38 NULL
2017 Dept Of Youth & Comm Dev Srvs Associate Staff Analyst 84992.00000 3.399680e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.399680e+05 3.399680e+05 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Certified It Administrator 82490.50000 1.649810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.649810e+05 1.649810e+05 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Certified It Developer 98768.00000 4.938400e+05 11369.24 2.273848e+03 0.000 158.50 5 0.000000e+00 0.00 5.052092e+05 4.938400e+05 11369.24 NULL
2017 Dept Of Youth & Comm Dev Srvs City Research Scientist 82321.33333 4.939280e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.939280e+05 4.939280e+05 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Clerical Associate 50615.83333 6.073900e+05 11431.89 9.526575e+02 0.000 238.53 12 0.000000e+00 0.00 6.188219e+05 6.073900e+05 11431.89 NULL
2017 Dept Of Youth & Comm Dev Srvs College Aide - Assignment Levels Ii And Iii 12497.71855 1.249772e+05 181.54 1.815400e+01 0.000 8.75 10 0.000000e+00 0.00 1.251587e+05 1.249772e+05 181.54 NULL
2017 Dept Of Youth & Comm Dev Srvs Commissioner Of Community Development 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Community Assistant 34623.70000 1.038711e+05 871.98 2.906600e+02 0.000 30.50 3 0.000000e+00 0.00 1.047431e+05 1.038711e+05 871.98 NULL
2017 Dept Of Youth & Comm Dev Srvs Community Associate 48554.45568 6.312079e+05 1226.93 9.437923e+01 0.000 42.50 13 0.000000e+00 0.00 6.324349e+05 6.312079e+05 1226.93 NULL
2017 Dept Of Youth & Comm Dev Srvs Community Coordinator 59537.59767 1.428902e+06 10017.49 4.173954e+02 0.000 274.75 24 0.000000e+00 0.00 1.438920e+06 1.428902e+06 10017.49 NULL
2017 Dept Of Youth & Comm Dev Srvs Computer Associate 77931.50000 6.234520e+05 0.00 0.000000e+00 0.000 2.75 8 0.000000e+00 0.00 6.234520e+05 6.234520e+05 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Computer Programmer Analyst 82000.00000 8.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.200000e+04 8.200000e+04 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Computer Service Technician 61334.00000 6.133400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.133400e+04 6.133400e+04 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Computer Specialist 103257.64706 1.755380e+06 2504.02 1.472953e+02 0.000 35.25 17 0.000000e+00 0.00 1.757884e+06 1.755380e+06 2504.02 NULL
2017 Dept Of Youth & Comm Dev Srvs Computer Systems Manager 117171.40000 1.757571e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.757571e+06 1.757571e+06 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Contract Specialist 60965.89286 3.414090e+06 24920.16 4.450029e+02 0.000 562.25 56 0.000000e+00 0.00 3.439010e+06 3.414090e+06 24920.16 NULL
2017 Dept Of Youth & Comm Dev Srvs Deputy Commissioner 178486.00000 3.569720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.569720e+05 3.569720e+05 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Executive Agency Counsel 147440.66667 4.423220e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.423220e+05 4.423220e+05 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Field Supervisor 2139.20498 5.775853e+04 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 5.775853e+04 5.775853e+04 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Graphic Artist 61800.00000 6.180000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.180000e+04 6.180000e+04 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Management Auditor 67467.54545 7.421430e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.421430e+05 7.421430e+05 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Motor Vehicle Operator 53678.00000 5.367800e+04 9272.61 9.272610e+03 9272.610 231.25 1 9.272610e+03 9272.61 6.295061e+04 6.295061e+04 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Photographer 47509.08750 4.750909e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.750909e+04 4.750909e+04 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Principal Administrative Associate 65311.55556 1.175608e+06 6287.70 3.493167e+02 0.000 116.50 18 0.000000e+00 0.00 1.181896e+06 1.175608e+06 6287.70 NULL
2017 Dept Of Youth & Comm Dev Srvs Procurement Analyst 54488.69565 1.253240e+06 881.27 3.831609e+01 0.000 9.50 23 0.000000e+00 0.00 1.254121e+06 1.253240e+06 881.27 NULL
2017 Dept Of Youth & Comm Dev Srvs Secretary 49520.00000 4.952000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.952000e+04 4.952000e+04 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Secretary To Commissioner 78500.00000 7.850000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.850000e+04 7.850000e+04 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Senior Field Supervisor 18024.84379 6.669192e+05 262.75 7.101351e+00 0.000 12.50 37 0.000000e+00 0.00 6.671820e+05 6.669192e+05 262.75 NULL
2017 Dept Of Youth & Comm Dev Srvs Staff Analyst 72230.50000 2.889220e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.889220e+05 2.889220e+05 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Supervisor Of Motor Transport 63658.00000 6.365800e+04 16049.56 1.604956e+04 16049.560 340.00 1 1.604956e+04 16049.56 7.970756e+04 7.970756e+04 0.00 NULL
2017 Dept Of Youth & Comm Dev Srvs Youth Coordinator 56845.00000 4.547600e+05 3461.41 4.326762e+02 69.770 147.00 8 6.977000e+01 558.16 4.582214e+05 4.553182e+05 2903.25 NULL
2017 Dept. Of Design & Construction *Certified Local Area Network Administrator 119075.00000 1.190750e+05 126.58 1.265800e+02 126.580 0.00 1 1.265800e+02 126.58 1.192016e+05 1.192016e+05 0.00 NULL
2017 Dept. Of Design & Construction Accountant 64037.85000 1.280757e+06 19400.76 9.700380e+02 0.000 386.00 20 0.000000e+00 0.00 1.300158e+06 1.280757e+06 19400.76 NULL
2017 Dept. Of Design & Construction Adm Manager-Non-Mgrl 72060.85185 1.945643e+06 15421.57 5.711693e+02 0.000 394.00 27 0.000000e+00 0.00 1.961065e+06 1.945643e+06 15421.57 NULL
2017 Dept. Of Design & Construction Admin Community Relations Specialist 80000.00000 8.000000e+04 779.74 7.797400e+02 779.740 17.25 1 7.797400e+02 779.74 8.077974e+04 8.077974e+04 0.00 NULL
2017 Dept. Of Design & Construction Admin Construction Project Manager 110740.30769 1.439624e+06 136476.63 1.049820e+04 469.590 1567.00 13 4.695900e+02 6104.67 1.576101e+06 1.445729e+06 130371.96 NULL
2017 Dept. Of Design & Construction Administrative Accountant 106154.00000 2.123080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.123080e+05 2.123080e+05 0.00 NULL
2017 Dept. Of Design & Construction Administrative Architect 117984.82979 5.545287e+06 36753.44 7.819881e+02 0.000 533.75 47 0.000000e+00 0.00 5.582040e+06 5.545287e+06 36753.44 NULL
2017 Dept. Of Design & Construction Administrative City Planner 135960.00000 1.359600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.359600e+05 1.359600e+05 0.00 NULL
2017 Dept. Of Design & Construction Administrative Community Relations Specialist 137248.00000 1.372480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.372480e+05 1.372480e+05 0.00 NULL
2017 Dept. Of Design & Construction Administrative Construction Project Manager 126967.00000 2.539340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.539340e+05 2.539340e+05 0.00 NULL
2017 Dept. Of Design & Construction Administrative Engineer 131271.50000 8.401376e+06 146705.83 2.292279e+03 0.000 2201.50 64 0.000000e+00 0.00 8.548082e+06 8.401376e+06 146705.83 NULL
2017 Dept. Of Design & Construction Administrative Graphic Artist 91929.00000 2.757870e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.757870e+05 2.757870e+05 0.00 NULL
2017 Dept. Of Design & Construction Administrative Landmarks Preservationist 131969.00000 1.319690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.319690e+05 1.319690e+05 0.00 NULL
2017 Dept. Of Design & Construction Administrative Landscape Architect 126255.00000 5.050200e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.050200e+05 5.050200e+05 0.00 NULL
2017 Dept. Of Design & Construction Administrative Manager 130458.00000 1.304580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.304580e+05 1.304580e+05 0.00 NULL
2017 Dept. Of Design & Construction Administrative Procurement Analyst 98144.12500 7.851530e+05 11407.31 1.425914e+03 0.000 202.75 8 0.000000e+00 0.00 7.965603e+05 7.851530e+05 11407.31 NULL
2017 Dept. Of Design & Construction Administrative Project Manager 109838.00000 1.285105e+07 386316.32 3.301849e+03 0.000 5360.00 117 0.000000e+00 0.00 1.323736e+07 1.285105e+07 386316.32 NULL
2017 Dept. Of Design & Construction Administrative Public Information Specialist 131313.66667 3.939410e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.939410e+05 3.939410e+05 0.00 NULL
2017 Dept. Of Design & Construction Administrative Staff Analyst 97423.21302 4.189198e+06 34887.19 8.113300e+02 0.000 467.25 43 0.000000e+00 0.00 4.224085e+06 4.189198e+06 34887.19 NULL
2017 Dept. Of Design & Construction Administrative Supervisor Of Building Maintenance 85551.00000 8.555100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.555100e+04 8.555100e+04 0.00 NULL
2017 Dept. Of Design & Construction Agency Attorney 81822.51786 5.727576e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.727576e+05 5.727576e+05 0.00 NULL
2017 Dept. Of Design & Construction Agency Attorney Interne 58886.33333 1.766590e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.766590e+05 1.766590e+05 0.00 NULL
2017 Dept. Of Design & Construction Agency Chief Contracting Officer 162740.00000 1.627400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.627400e+05 1.627400e+05 0.00 NULL
2017 Dept. Of Design & Construction Architect 91731.64706 1.559438e+06 1371.87 8.069824e+01 0.000 28.75 17 0.000000e+00 0.00 1.560810e+06 1.559438e+06 1371.87 NULL
2017 Dept. Of Design & Construction Asbestos Hazard Investigator 65661.66667 3.939700e+05 457.20 7.620000e+01 0.000 10.50 6 0.000000e+00 0.00 3.944272e+05 3.939700e+05 457.20 NULL
2017 Dept. Of Design & Construction Assistant Architect 74220.28571 5.195420e+05 2380.07 3.400100e+02 0.000 49.50 7 0.000000e+00 0.00 5.219221e+05 5.195420e+05 2380.07 NULL
2017 Dept. Of Design & Construction Assistant Chemical Engineer 67393.00000 1.347860e+05 4611.35 2.305675e+03 2305.675 113.00 2 2.305675e+03 4611.35 1.393974e+05 1.393974e+05 0.00 NULL
2017 Dept. Of Design & Construction Assistant Civil Engineer 66278.66038 7.025538e+06 245461.07 2.315670e+03 148.175 5743.25 106 1.481750e+02 15706.55 7.270999e+06 7.041245e+06 229754.52 NULL
2017 Dept. Of Design & Construction Assistant Electrical Engineer 63231.25000 2.529250e+05 11504.80 2.876200e+03 81.985 230.75 4 8.198500e+01 327.94 2.644298e+05 2.532529e+05 11176.86 NULL
2017 Dept. Of Design & Construction Assistant Landscape Architect 62871.80000 3.143590e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.143590e+05 3.143590e+05 0.00 NULL
2017 Dept. Of Design & Construction Assistant Mechanical Engineer 70585.80000 3.529290e+05 32664.03 6.532806e+03 7144.190 775.50 5 6.532806e+03 32664.03 3.855930e+05 3.855930e+05 0.00 NULL
2017 Dept. Of Design & Construction Assistant Urban Designer 66950.00000 6.695000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.695000e+04 6.695000e+04 0.00 NULL
2017 Dept. Of Design & Construction Associate Inspector 70590.00000 7.059000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.059000e+04 7.059000e+04 0.00 NULL
2017 Dept. Of Design & Construction Associate Investigator 64619.75000 2.584790e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.584790e+05 2.584790e+05 0.00 NULL
2017 Dept. Of Design & Construction Associate Project Manager 80380.34223 9.726021e+06 298568.22 2.467506e+03 340.020 5439.00 121 3.400200e+02 41142.42 1.002459e+07 9.767164e+06 257425.80 NULL
2017 Dept. Of Design & Construction Associate Public Health Sanitarian 91365.00000 9.136500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.136500e+04 9.136500e+04 0.00 NULL
2017 Dept. Of Design & Construction Associate Quality Assurance Specialist 69562.00000 6.956200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.956200e+04 6.956200e+04 0.00 NULL
2017 Dept. Of Design & Construction Associate Staff Analyst 79550.66667 1.193260e+06 7476.70 4.984467e+02 0.000 147.00 15 0.000000e+00 0.00 1.200737e+06 1.193260e+06 7476.70 NULL
2017 Dept. Of Design & Construction Associate Urban Designer 84036.30000 1.680726e+06 10257.62 5.128810e+02 0.000 182.25 20 0.000000e+00 0.00 1.690984e+06 1.680726e+06 10257.62 NULL
2017 Dept. Of Design & Construction Certified It Administrator 83916.66667 2.517500e+05 605.67 2.018900e+02 0.000 11.00 3 0.000000e+00 0.00 2.523557e+05 2.517500e+05 605.67 NULL
2017 Dept. Of Design & Construction Certified It Developer 87731.00000 8.773100e+04 619.76 6.197600e+02 619.760 9.75 1 6.197600e+02 619.76 8.835076e+04 8.835076e+04 0.00 NULL
2017 Dept. Of Design & Construction City Planner 74136.83333 4.448210e+05 13437.47 2.239578e+03 210.495 204.75 6 2.104950e+02 1262.97 4.582585e+05 4.460840e+05 12174.50 NULL
2017 Dept. Of Design & Construction Civil Engineer 91176.95833 6.564741e+06 366145.59 5.085355e+03 1379.235 5921.25 72 1.379235e+03 99304.92 6.930887e+06 6.664046e+06 266840.67 NULL
2017 Dept. Of Design & Construction Civil Engineering Intern 54127.25397 3.410017e+06 88677.31 1.407576e+03 143.020 2560.00 63 1.430200e+02 9010.26 3.498694e+06 3.419027e+06 79667.05 NULL
2017 Dept. Of Design & Construction Clerical Associate 45280.02652 1.901761e+06 7712.89 1.836402e+02 0.000 238.00 42 0.000000e+00 0.00 1.909474e+06 1.901761e+06 7712.89 NULL
2017 Dept. Of Design & Construction College Aide 5288.73552 1.216409e+05 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 1.216409e+05 1.216409e+05 0.00 NULL
2017 Dept. Of Design & Construction College Aide - Assignment Levels Ii And Iii 10722.15375 2.144431e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.144431e+04 2.144431e+04 0.00 NULL
2017 Dept. Of Design & Construction Commissioner Of Design & Construction 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2017 Dept. Of Design & Construction Community Assistant 36176.00000 7.235200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.235200e+04 7.235200e+04 0.00 NULL
2017 Dept. Of Design & Construction Community Associate 40207.76045 8.845707e+05 37499.78 1.704535e+03 0.000 1150.50 22 0.000000e+00 0.00 9.220705e+05 8.845707e+05 37499.78 NULL
2017 Dept. Of Design & Construction Community Coordinator 59248.96429 1.658971e+06 16858.49 6.020889e+02 0.000 434.00 28 0.000000e+00 0.00 1.675829e+06 1.658971e+06 16858.49 NULL
2017 Dept. Of Design & Construction Community Service Aide 32739.00000 3.273900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.273900e+04 3.273900e+04 0.00 NULL
2017 Dept. Of Design & Construction Computer Aide-Non-Spvr 48981.66667 1.469450e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.469450e+05 1.469450e+05 0.00 NULL
2017 Dept. Of Design & Construction Computer Associate 72360.29123 1.085404e+06 26579.27 1.771951e+03 0.000 477.00 15 0.000000e+00 0.00 1.111984e+06 1.085404e+06 26579.27 NULL
2017 Dept. Of Design & Construction Computer Operations Manager 120879.50000 2.417590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.417590e+05 2.417590e+05 0.00 NULL
2017 Dept. Of Design & Construction Computer Programmer Analyst 61236.88889 5.511320e+05 401.54 4.461556e+01 0.000 12.25 9 0.000000e+00 0.00 5.515335e+05 5.511320e+05 401.54 NULL
2017 Dept. Of Design & Construction Computer Service Technician 48931.66667 1.467950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.467950e+05 1.467950e+05 0.00 NULL
2017 Dept. Of Design & Construction Computer Specialist 105616.46667 1.584247e+06 6873.62 4.582413e+02 0.000 73.50 15 0.000000e+00 0.00 1.591121e+06 1.584247e+06 6873.62 NULL
2017 Dept. Of Design & Construction Computer Systems Manager 133420.28571 9.339420e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.339420e+05 9.339420e+05 0.00 NULL
2017 Dept. Of Design & Construction Construction Project Manager 80870.08039 9.947020e+06 478162.25 3.887498e+03 315.630 8420.00 123 3.156300e+02 38822.49 1.042518e+07 9.985842e+06 439339.76 NULL
2017 Dept. Of Design & Construction Construction Project Manager Intern 55065.06667 1.651952e+06 17730.35 5.910117e+02 0.000 477.50 30 0.000000e+00 0.00 1.669682e+06 1.651952e+06 17730.35 NULL
2017 Dept. Of Design & Construction Cooperative Education Trainee - Engineering Aide 1330.87500 2.661750e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.661750e+03 2.661750e+03 0.00 NULL
2017 Dept. Of Design & Construction Electrical Engineer 83207.00000 1.664140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.664140e+05 1.664140e+05 0.00 NULL
2017 Dept. Of Design & Construction Engineering Technician 60432.43333 1.812973e+06 61334.61 2.044487e+03 0.000 1560.25 30 0.000000e+00 0.00 1.874308e+06 1.812973e+06 61334.61 NULL
2017 Dept. Of Design & Construction Estimator 65423.00000 9.813450e+05 67577.97 4.505198e+03 0.000 1224.55 15 0.000000e+00 0.00 1.048923e+06 9.813450e+05 67577.97 NULL
2017 Dept. Of Design & Construction Executive Agency Counsel 160615.28571 1.124307e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.124307e+06 1.124307e+06 0.00 NULL
2017 Dept. Of Design & Construction Executive Program Specialist 190035.00000 1.900350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.900350e+05 1.900350e+05 0.00 NULL
2017 Dept. Of Design & Construction Geologist 70648.88889 6.358400e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 6.358400e+05 6.358400e+05 0.00 NULL
2017 Dept. Of Design & Construction Graphic Artist 71189.16667 4.271350e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.271350e+05 4.271350e+05 0.00 NULL
2017 Dept. Of Design & Construction Highway Transportation Specialist 86902.00000 8.690200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.690200e+04 8.690200e+04 0.00 NULL
2017 Dept. Of Design & Construction Highways And Sewers Inspector 63627.00000 1.908810e+05 29285.76 9.761920e+03 10954.530 609.25 3 9.761920e+03 29285.76 2.201668e+05 2.201668e+05 0.00 NULL
2017 Dept. Of Design & Construction Industrial Hygienist 54682.00000 1.093640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.093640e+05 1.093640e+05 0.00 NULL
2017 Dept. Of Design & Construction Inspector 72685.50000 1.453710e+05 5337.76 2.668880e+03 2668.880 111.25 2 2.668880e+03 5337.76 1.507088e+05 1.507088e+05 0.00 NULL
2017 Dept. Of Design & Construction Investigator 61742.00000 6.174200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.174200e+04 6.174200e+04 0.00 NULL
2017 Dept. Of Design & Construction Investigator Empl Disc 51157.25000 2.046290e+05 254.08 6.352000e+01 0.000 13.00 4 0.000000e+00 0.00 2.048831e+05 2.046290e+05 254.08 NULL
2017 Dept. Of Design & Construction Landscape Architect 88192.00000 7.055360e+05 12905.48 1.613185e+03 0.000 226.25 8 0.000000e+00 0.00 7.184415e+05 7.055360e+05 12905.48 NULL
2017 Dept. Of Design & Construction Management Auditor 67565.16667 4.053910e+05 10425.21 1.737535e+03 0.000 227.75 6 0.000000e+00 0.00 4.158162e+05 4.053910e+05 10425.21 NULL
2017 Dept. Of Design & Construction Mechanical Engineer 96410.00000 9.641000e+05 26191.21 2.619121e+03 0.000 396.50 10 0.000000e+00 0.00 9.902912e+05 9.641000e+05 26191.21 NULL
2017 Dept. Of Design & Construction Mechanical Engineering Intern 55462.00000 2.218480e+05 4028.88 1.007220e+03 145.290 124.25 4 1.452900e+02 581.16 2.258769e+05 2.224292e+05 3447.72 NULL
2017 Dept. Of Design & Construction Motor Vehicle Operator 46583.50000 9.316700e+04 713.75 3.568750e+02 356.875 20.00 2 3.568750e+02 713.75 9.388075e+04 9.388075e+04 0.00 NULL
2017 Dept. Of Design & Construction Motor Vehicle Supervisor 53197.50000 1.063950e+05 11952.04 5.976020e+03 5976.020 263.00 2 5.976020e+03 11952.04 1.183470e+05 1.183470e+05 0.00 NULL
2017 Dept. Of Design & Construction Office Machine Aide 35167.00000 3.516700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.516700e+04 3.516700e+04 0.00 NULL
2017 Dept. Of Design & Construction Principal Administrative Associate 61855.38889 2.226794e+06 39373.20 1.093700e+03 0.000 890.25 36 0.000000e+00 0.00 2.266167e+06 2.226794e+06 39373.20 NULL
2017 Dept. Of Design & Construction Principal Title Examiner 59740.00000 1.194800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.194800e+05 1.194800e+05 0.00 NULL
2017 Dept. Of Design & Construction Procurement Analyst 66244.85714 1.391142e+06 16361.36 7.791124e+02 0.000 303.25 21 0.000000e+00 0.00 1.407503e+06 1.391142e+06 16361.36 NULL
2017 Dept. Of Design & Construction Project Manager 70472.00000 5.637760e+05 48633.56 6.079195e+03 3322.610 878.75 8 3.322610e+03 26580.88 6.124096e+05 5.903569e+05 22052.68 NULL
2017 Dept. Of Design & Construction Project Manager Intern# 51399.89822 3.443793e+06 29065.91 4.338196e+02 0.000 846.50 67 0.000000e+00 0.00 3.472859e+06 3.443793e+06 29065.91 NULL
2017 Dept. Of Design & Construction Public Records Aide 42622.30769 5.540900e+05 1516.11 1.166238e+02 0.000 31.50 13 0.000000e+00 0.00 5.556061e+05 5.540900e+05 1516.11 NULL
2017 Dept. Of Design & Construction Secretary 47605.20000 7.140780e+05 5351.78 3.567853e+02 0.000 150.75 15 0.000000e+00 0.00 7.194298e+05 7.140780e+05 5351.78 NULL
2017 Dept. Of Design & Construction Secretary To The Commissioner Of Ddc 78462.00000 7.846200e+04 19586.07 1.958607e+04 19586.070 392.75 1 1.958607e+04 19586.07 9.804807e+04 9.804807e+04 0.00 NULL
2017 Dept. Of Design & Construction Senior Estimator 81156.86486 3.002804e+06 88950.87 2.404078e+03 0.000 1509.50 37 0.000000e+00 0.00 3.091755e+06 3.002804e+06 88950.87 NULL
2017 Dept. Of Design & Construction Staff Analyst 65668.58621 1.904389e+06 16433.83 5.666838e+02 0.000 305.75 29 0.000000e+00 0.00 1.920823e+06 1.904389e+06 16433.83 NULL
2017 Dept. Of Design & Construction Staff Analyst Trainee 46122.85714 9.685800e+05 438.73 2.089190e+01 0.000 17.25 21 0.000000e+00 0.00 9.690187e+05 9.685800e+05 438.73 NULL
2017 Dept. Of Design & Construction Stock Worker 41073.33333 1.232200e+05 9459.42 3.153140e+03 1529.650 269.00 3 1.529650e+03 4588.95 1.326794e+05 1.278089e+05 4870.47 NULL
2017 Dept. Of Design & Construction Summer College Intern 2361.40319 1.204316e+05 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 1.204316e+05 1.204316e+05 0.00 NULL
2017 Dept. Of Design & Construction Summer Graduate Intern 5147.56550 5.147565e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.147565e+04 5.147565e+04 0.00 NULL
2017 Dept. Of Design & Construction Supervisor Of Electrical Installations & Maintenance 77111.40000 3.855570e+05 900.36 1.800720e+02 0.000 20.50 5 0.000000e+00 0.00 3.864574e+05 3.855570e+05 900.36 NULL
2017 Dept. Of Design & Construction Supervisor Of Mechanical Installations & Maintenance 79064.00000 7.906400e+04 1731.24 1.731240e+03 1731.240 45.00 1 1.731240e+03 1731.24 8.079524e+04 8.079524e+04 0.00 NULL
2017 Dept. Of Design & Construction Surveyor 69401.52941 2.359652e+06 126159.06 3.710561e+03 264.970 2529.00 34 2.649700e+02 9008.98 2.485811e+06 2.368661e+06 117150.08 NULL
2017 Dept. Of Homeless Services *Certified Applications Developer 120619.00000 1.206190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.206190e+05 1.206190e+05 0.00 NULL
2017 Dept. Of Homeless Services *Certified Local Area Network Administrator 92818.11111 8.353630e+05 22120.75 2.457861e+03 406.700 310.00 9 4.067000e+02 3660.30 8.574838e+05 8.390233e+05 18460.45 NULL
2017 Dept. Of Homeless Services *Certified Wide Area Network Administrator 100393.50000 2.007870e+05 1079.78 5.398900e+02 539.890 7.00 2 5.398900e+02 1079.78 2.018668e+05 2.018668e+05 0.00 NULL
2017 Dept. Of Homeless Services Adm Manager-Non-Mgrl 70546.37500 5.643710e+05 25947.18 3.243398e+03 1020.610 525.25 8 1.020610e+03 8164.88 5.903182e+05 5.725359e+05 17782.30 NULL
2017 Dept. Of Homeless Services Admin Community Relations Specialist 85721.56631 3.428863e+06 77928.61 1.948215e+03 0.000 1472.25 40 0.000000e+00 0.00 3.506791e+06 3.428863e+06 77928.61 NULL
2017 Dept. Of Homeless Services Admin Contract Specialist 100526.14286 7.036830e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.036830e+05 7.036830e+05 0.00 NULL
2017 Dept. Of Homeless Services Administrative Community Relations Specialist 127284.83333 7.637090e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.637090e+05 7.637090e+05 0.00 NULL
2017 Dept. Of Homeless Services Administrative Construction Project Manager 110902.50000 2.218050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.218050e+05 2.218050e+05 0.00 NULL
2017 Dept. Of Homeless Services Administrative Director Of Social Services 102015.54118 1.734264e+07 50172.51 2.951324e+02 0.000 852.00 170 0.000000e+00 0.00 1.739281e+07 1.734264e+07 50172.51 NULL
2017 Dept. Of Homeless Services Administrative Labor Relations Analyst 105957.00000 1.059570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.059570e+05 1.059570e+05 0.00 NULL
2017 Dept. Of Homeless Services Administrative Nutritionist 85000.00000 8.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.500000e+04 8.500000e+04 0.00 NULL
2017 Dept. Of Homeless Services Administrative Procurement Analyst 92040.00000 2.761200e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.761200e+05 2.761200e+05 0.00 NULL
2017 Dept. Of Homeless Services Administrative Project Manager 164214.00000 1.642140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.642140e+05 1.642140e+05 0.00 NULL
2017 Dept. Of Homeless Services Administrative Public Information Specialist 102263.80000 5.113190e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.113190e+05 5.113190e+05 0.00 NULL
2017 Dept. Of Homeless Services Administrative Staff Analyst 90268.90476 7.582588e+06 242766.93 2.890082e+03 0.000 3496.50 84 0.000000e+00 0.00 7.825355e+06 7.582588e+06 242766.93 NULL
2017 Dept. Of Homeless Services Administrative Supervisor Of Building Maintenance 102640.12500 8.211210e+05 11902.20 1.487775e+03 0.000 249.00 8 0.000000e+00 0.00 8.330232e+05 8.211210e+05 11902.20 NULL
2017 Dept. Of Homeless Services Agency Attorney 82467.85714 1.731825e+06 30019.54 1.429502e+03 0.000 452.75 21 0.000000e+00 0.00 1.761845e+06 1.731825e+06 30019.54 NULL
2017 Dept. Of Homeless Services Agency Attorney Interne 57944.50000 1.158890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.158890e+05 1.158890e+05 0.00 NULL
2017 Dept. Of Homeless Services Agency Medical Director 204301.00000 2.043010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.043010e+05 2.043010e+05 0.00 NULL
2017 Dept. Of Homeless Services Architect 74990.00000 7.499000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.499000e+04 7.499000e+04 0.00 NULL
2017 Dept. Of Homeless Services Assistant Superintendent Of Welfare Shelters 63975.90411 4.670241e+06 889016.95 1.217831e+04 11249.610 18524.00 73 1.124961e+04 821221.53 5.559258e+06 5.491463e+06 67795.42 NULL
2017 Dept. Of Homeless Services Associate Contract Specialist 64462.00000 6.446200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.446200e+04 6.446200e+04 0.00 NULL
2017 Dept. Of Homeless Services Associate Fraud Investigator 66598.33846 4.328892e+06 758751.92 1.167311e+04 12233.200 15299.00 65 1.167311e+04 758751.92 5.087644e+06 5.087644e+06 0.00 NULL
2017 Dept. Of Homeless Services Associate Investigator 71405.00000 7.140500e+04 19520.96 1.952096e+04 19520.960 351.75 1 1.952096e+04 19520.96 9.092596e+04 9.092596e+04 0.00 NULL
2017 Dept. Of Homeless Services Associate Project Manager 78477.25000 6.278180e+05 3825.85 4.782312e+02 37.185 71.75 8 3.718500e+01 297.48 6.316438e+05 6.281155e+05 3528.37 NULL
2017 Dept. Of Homeless Services Associate Staff Analyst 79225.09302 3.406679e+06 108161.39 2.515381e+03 0.000 1960.50 43 0.000000e+00 0.00 3.514840e+06 3.406679e+06 108161.39 NULL
2017 Dept. Of Homeless Services Asst Commissioner For Planning & Program Dev 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2017 Dept. Of Homeless Services Carpenter NA NA 454693.62 2.066789e+04 22539.525 5506.25 22 2.066789e+04 454693.62 NA NA NA NULL
2017 Dept. Of Homeless Services Caseworker 42555.73810 4.468352e+06 278277.73 2.650264e+03 473.000 8066.75 105 4.730000e+02 49665.00 4.746630e+06 4.518018e+06 228612.73 NULL
2017 Dept. Of Homeless Services Cement Mason NA NA 292596.76 4.876613e+04 50112.700 2780.50 6 4.876613e+04 292596.76 NA NA NA NULL
2017 Dept. Of Homeless Services Certified It Administrator 87731.00000 8.773100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.773100e+04 8.773100e+04 0.00 NULL
2017 Dept. Of Homeless Services Certified It Developer 114181.00000 1.141810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.141810e+05 1.141810e+05 0.00 NULL
2017 Dept. Of Homeless Services City Laborer NA NA 562112.25 2.248449e+04 17547.390 10375.60 25 1.754739e+04 438684.75 NA NA NA NULL
2017 Dept. Of Homeless Services City Research Scientist 82786.69231 1.076227e+06 3273.55 2.518115e+02 0.000 61.00 13 0.000000e+00 0.00 1.079501e+06 1.076227e+06 3273.55 NULL
2017 Dept. Of Homeless Services Clerical Associate 43879.83526 1.667434e+06 98862.84 2.601654e+03 547.545 2729.25 38 5.475450e+02 20806.71 1.766297e+06 1.688240e+06 78056.13 NULL
2017 Dept. Of Homeless Services College Aide 5674.30000 5.674300e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.674300e+03 5.674300e+03 0.00 NULL
2017 Dept. Of Homeless Services Community Assistant 34898.96875 5.583835e+06 528287.89 3.301799e+03 1790.830 19903.23 160 1.790830e+03 286532.80 6.112123e+06 5.870368e+06 241755.09 NULL
2017 Dept. Of Homeless Services Community Associate 42426.60377 6.745830e+06 347315.35 2.184373e+03 873.000 11534.50 159 8.730000e+02 138807.00 7.093145e+06 6.884637e+06 208508.35 NULL
2017 Dept. Of Homeless Services Community Coordinator 56244.16353 1.861682e+07 1056579.11 3.192082e+03 951.030 26620.25 331 9.510300e+02 314790.93 1.967340e+07 1.893161e+07 741788.18 NULL
2017 Dept. Of Homeless Services Computer Associate 70169.00000 2.105070e+05 12409.18 4.136393e+03 3127.570 231.75 3 3.127570e+03 9382.71 2.229162e+05 2.198897e+05 3026.47 NULL
2017 Dept. Of Homeless Services Computer Operations Manager 104124.00000 3.123720e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.123720e+05 3.123720e+05 0.00 NULL
2017 Dept. Of Homeless Services Computer Specialist 96000.28571 6.720020e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.720020e+05 6.720020e+05 0.00 NULL
2017 Dept. Of Homeless Services Computer Systems Manager 120058.13333 1.800872e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.800872e+06 1.800872e+06 0.00 NULL
2017 Dept. Of Homeless Services Construction Project Manager 80076.66667 2.402300e+05 757.27 2.524233e+02 139.710 0.00 3 1.397100e+02 419.13 2.409873e+05 2.406491e+05 338.14 NULL
2017 Dept. Of Homeless Services Contract Specialist 59620.50000 1.192410e+05 9783.44 4.891720e+03 4891.720 154.00 2 4.891720e+03 9783.44 1.290244e+05 1.290244e+05 0.00 NULL
2017 Dept. Of Homeless Services Counselor 54968.60000 2.748430e+05 7417.11 1.483422e+03 59.220 208.75 5 5.922000e+01 296.10 2.822601e+05 2.751391e+05 7121.01 NULL
2017 Dept. Of Homeless Services Deputy Commisioner 205213.00000 2.052130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.052130e+05 2.052130e+05 0.00 NULL
2017 Dept. Of Homeless Services Director Of Eeo 98410.00000 9.841000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.841000e+04 9.841000e+04 0.00 NULL
2017 Dept. Of Homeless Services Electrician NA NA 465620.57 2.910129e+04 34740.420 5668.25 16 2.910129e+04 465620.57 NA NA NA NULL
2017 Dept. Of Homeless Services Electrician’s Helper NA NA 9085.73 3.028577e+03 89.360 157.75 3 8.936000e+01 268.08 NA NA NA NULL
2017 Dept. Of Homeless Services Executive Agency Counsel 116283.60000 5.814180e+05 -94.52 -1.890400e+01 0.000 0.00 5 -1.890400e+01 -94.52 5.813235e+05 5.813235e+05 0.00 NULL
2017 Dept. Of Homeless Services Executive Assistant To The Commissioner 172540.00000 1.725400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.725400e+05 1.725400e+05 0.00 NULL
2017 Dept. Of Homeless Services Executive Program Specialist 158363.00000 1.583630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.583630e+05 1.583630e+05 0.00 NULL
2017 Dept. Of Homeless Services Fraud Investigator 48269.25600 6.033657e+06 714200.42 5.713603e+03 3580.970 18640.00 125 3.580970e+03 447621.25 6.747857e+06 6.481278e+06 266579.17 NULL
2017 Dept. Of Homeless Services General Counsel 164657.00000 1.646570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.646570e+05 1.646570e+05 0.00 NULL
2017 Dept. Of Homeless Services Housekeeper 40284.25000 1.611370e+05 7581.29 1.895322e+03 572.640 284.00 4 5.726400e+02 2290.56 1.687183e+05 1.634276e+05 5290.73 NULL
2017 Dept. Of Homeless Services Human Resources Technician 36295.00000 3.629500e+04 2199.50 2.199500e+03 2199.500 91.75 1 2.199500e+03 2199.50 3.849450e+04 3.849450e+04 0.00 NULL
2017 Dept. Of Homeless Services Investigator Empl Disc 61429.00000 1.228580e+05 360.50 1.802500e+02 180.250 9.25 2 1.802500e+02 360.50 1.232185e+05 1.232185e+05 0.00 NULL
2017 Dept. Of Homeless Services Locksmith NA NA 24235.79 8.078597e+03 10839.220 507.50 3 8.078597e+03 24235.79 NA NA NA NULL
2017 Dept. Of Homeless Services Maintenance Worker NA NA 170605.87 1.137372e+04 11957.030 3806.23 15 1.137372e+04 170605.87 NA NA NA NULL
2017 Dept. Of Homeless Services Management Auditor 71543.00000 2.146290e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.146290e+05 2.146290e+05 0.00 NULL
2017 Dept. Of Homeless Services Mechanical Engineer 84411.00000 8.441100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.441100e+04 8.441100e+04 0.00 NULL
2017 Dept. Of Homeless Services Motor Vehicle Operator 43926.34091 1.932759e+06 489437.82 1.112359e+04 10020.475 14009.00 44 1.002048e+04 440900.90 2.422197e+06 2.373660e+06 48536.92 NULL
2017 Dept. Of Homeless Services Motor Vehicle Supervisor 54252.66667 4.882740e+05 97469.32 1.082992e+04 9688.650 2243.25 9 9.688650e+03 87197.85 5.857433e+05 5.754718e+05 10271.47 NULL
2017 Dept. Of Homeless Services Oiler NA NA 349900.05 2.915834e+04 29707.160 3715.50 12 2.915834e+04 349900.05 NA NA NA NULL
2017 Dept. Of Homeless Services Painter NA NA 12160.65 1.105514e+03 0.000 195.00 11 0.000000e+00 0.00 NA NA NA NULL
2017 Dept. Of Homeless Services Plumber NA NA 532482.47 2.802539e+04 31128.590 5039.00 19 2.802539e+04 532482.47 NA NA NA NULL
2017 Dept. Of Homeless Services Plumber’s Helper NA NA 59593.01 1.489825e+04 13909.180 767.50 4 1.390918e+04 55636.72 NA NA NA NULL
2017 Dept. Of Homeless Services Principal Administrative Associate 57352.23864 5.046997e+06 216207.20 2.456900e+03 400.280 4861.00 88 4.002800e+02 35224.64 5.263204e+06 5.082222e+06 180982.56 NULL
2017 Dept. Of Homeless Services Procurement Analyst 59112.50000 3.546750e+05 1246.01 2.076683e+02 0.000 22.00 6 0.000000e+00 0.00 3.559210e+05 3.546750e+05 1246.01 NULL
2017 Dept. Of Homeless Services Recreation Director 42615.50000 2.556930e+05 31274.46 5.212410e+03 4788.830 1040.75 6 4.788830e+03 28732.98 2.869675e+05 2.844260e+05 2541.48 NULL
2017 Dept. Of Homeless Services Research Assistant 53532.00000 5.353200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.353200e+04 5.353200e+04 0.00 NULL
2017 Dept. Of Homeless Services Secretary 47485.80000 2.374290e+05 197.36 3.947200e+01 0.000 8.00 5 0.000000e+00 0.00 2.376264e+05 2.374290e+05 197.36 NULL
2017 Dept. Of Homeless Services Secretary Of Comm 68624.00000 6.862400e+04 7037.65 7.037650e+03 7037.650 160.25 1 7.037650e+03 7037.65 7.566165e+04 7.566165e+04 0.00 NULL
2017 Dept. Of Homeless Services Senior Stationary Engineer NA NA 60011.45 6.001145e+04 60011.450 539.00 1 6.001145e+04 60011.45 NA NA NA NULL
2017 Dept. Of Homeless Services Sheet Metal Worker NA NA 110497.52 3.683251e+04 40470.500 1028.00 3 3.683251e+04 110497.52 NA NA NA NULL
2017 Dept. Of Homeless Services Social Worker 53937.63636 2.373256e+06 41489.61 9.429457e+02 0.000 998.25 44 0.000000e+00 0.00 2.414746e+06 2.373256e+06 41489.61 NULL
2017 Dept. Of Homeless Services Space Analyst 65802.25000 7.896270e+05 63049.55 5.254129e+03 1909.180 1337.33 12 1.909180e+03 22910.16 8.526766e+05 8.125372e+05 40139.39 NULL
2017 Dept. Of Homeless Services Special Officer 36494.02018 3.255267e+07 2664336.62 2.986924e+03 2340.805 100936.84 892 2.340805e+03 2087998.06 3.521700e+07 3.464066e+07 576338.56 NULL
2017 Dept. Of Homeless Services Staff Analyst 66576.54167 1.597837e+06 16057.36 6.690567e+02 0.000 285.25 24 0.000000e+00 0.00 1.613894e+06 1.597837e+06 16057.36 NULL
2017 Dept. Of Homeless Services Stationary Engineer NA NA 23719.80 7.906600e+03 6287.050 247.68 3 6.287050e+03 18861.15 NA NA NA NULL
2017 Dept. Of Homeless Services Stock Worker 34815.75000 1.392630e+05 3102.44 7.756100e+02 820.190 101.00 4 7.756100e+02 3102.44 1.423654e+05 1.423654e+05 0.00 NULL
2017 Dept. Of Homeless Services Superintendent Of Adult Institutions 70994.66667 8.519360e+05 90577.25 7.548104e+03 7873.755 1785.00 12 7.548104e+03 90577.25 9.425132e+05 9.425132e+05 0.00 NULL
2017 Dept. Of Homeless Services Supervising Special Officer 54267.70866 6.891999e+06 998827.36 7.864782e+03 6802.500 25046.40 127 6.802500e+03 863917.50 7.890826e+06 7.755916e+06 134909.86 NULL
2017 Dept. Of Homeless Services Supervisor Bricklayer NA NA 65144.21 3.257210e+04 32572.105 577.75 2 3.257210e+04 65144.21 NA NA NA NULL
2017 Dept. Of Homeless Services Supervisor Carpenter NA NA 89741.24 2.991375e+04 29797.880 1056.50 3 2.979788e+04 89393.64 NA NA NA NULL
2017 Dept. Of Homeless Services Supervisor Electrician NA NA 200849.50 3.347492e+04 19504.085 2272.75 6 1.950408e+04 117024.51 NA NA NA NULL
2017 Dept. Of Homeless Services Supervisor I 55100.31818 1.212207e+06 70316.46 3.196203e+03 1917.775 1744.50 22 1.917775e+03 42191.05 1.282523e+06 1.254398e+06 28125.41 NULL
2017 Dept. Of Homeless Services Supervisor Ii 64735.45455 7.120900e+05 102926.23 9.356930e+03 7027.140 1903.50 11 7.027140e+03 77298.54 8.150162e+05 7.893885e+05 25627.69 NULL
2017 Dept. Of Homeless Services Supervisor Ii Social Work 67902.82609 1.561765e+06 120106.06 5.222003e+03 4782.500 2496.00 23 4.782500e+03 109997.50 1.681871e+06 1.671762e+06 10108.56 NULL
2017 Dept. Of Homeless Services Supervisor Of Mechanics NA NA 173780.29 4.344507e+04 43501.380 1752.50 4 4.344507e+04 173780.29 NA NA NA NULL
2017 Dept. Of Homeless Services Supervisor Of Motor Transport 72060.00000 7.206000e+04 14562.82 1.456282e+04 14562.820 255.00 1 1.456282e+04 14562.82 8.662282e+04 8.662282e+04 0.00 NULL
2017 Dept. Of Homeless Services Supervisor Of Stock Workers 55429.00000 1.662870e+05 37559.44 1.251981e+04 12511.350 1042.00 3 1.251135e+04 37534.05 2.038464e+05 2.038210e+05 25.39 NULL
2017 Dept. Of Homeless Services Supervisor Painter NA NA 6569.34 6.569340e+03 6569.340 96.75 1 6.569340e+03 6569.34 NA NA NA NULL
2017 Dept. Of Homeless Services Supervisor Plumber NA NA 169796.58 5.659886e+04 58579.480 1505.50 3 5.659886e+04 169796.58 NA NA NA NULL
2017 Dept. Of Homeless Services Telecommunication Manager 95531.00000 9.553100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.553100e+04 9.553100e+04 0.00 NULL
2017 Dept. Of Homeless Services Telecommunications Associate 83025.00000 8.302500e+04 10515.17 1.051517e+04 10515.170 152.00 1 1.051517e+04 10515.17 9.354017e+04 9.354017e+04 0.00 NULL
2017 District Attorney Kings County Accountant 66367.50000 1.327350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.327350e+05 1.327350e+05 0.00 NULL
2017 District Attorney Kings County Adm Manager-Non-Mgrl 81547.35294 1.386305e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.386305e+06 1.386305e+06 0.00 NULL
2017 District Attorney Kings County Administrative Chief 136718.00000 1.367180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.367180e+05 1.367180e+05 0.00 NULL
2017 District Attorney Kings County Administrative Community Relations Specialist 87927.25313 7.034180e+05 1630.49 2.038113e+02 0.000 12.00 8 0.000000e+00 0.00 7.050485e+05 7.034180e+05 1630.49 NULL
2017 District Attorney Kings County Administrative Director Of Social Services 97850.00000 9.785000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.785000e+04 9.785000e+04 0.00 NULL
2017 District Attorney Kings County Administrative Investigator 133900.00000 1.339000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339000e+05 1.339000e+05 0.00 NULL
2017 District Attorney Kings County Administrative Manager 105527.00000 1.055270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.055270e+05 1.055270e+05 0.00 NULL
2017 District Attorney Kings County Administrative Project Manager 96267.00000 4.813350e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.813350e+05 4.813350e+05 0.00 NULL
2017 District Attorney Kings County Administrative Staff Analyst 113981.80000 5.699090e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.699090e+05 5.699090e+05 0.00 NULL
2017 District Attorney Kings County Assistant District Attorney 88340.79628 5.185605e+07 0.00 0.000000e+00 0.000 0.00 587 0.000000e+00 0.00 5.185605e+07 5.185605e+07 0.00 NULL
2017 District Attorney Kings County Associate Staff Analyst 97873.00000 9.787300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.787300e+04 9.787300e+04 0.00 NULL
2017 District Attorney Kings County Certified It Administrator 113300.00000 1.133000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133000e+05 1.133000e+05 0.00 NULL
2017 District Attorney Kings County Certified It Developer 123600.00000 1.236000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.236000e+05 1.236000e+05 0.00 NULL
2017 District Attorney Kings County City Research Scientist 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2017 District Attorney Kings County City Tax Auditor 69653.00000 6.965300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.965300e+04 6.965300e+04 0.00 NULL
2017 District Attorney Kings County Claim Specialist 61229.00000 6.122900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.122900e+04 6.122900e+04 0.00 NULL
2017 District Attorney Kings County Clerical Associate 42849.15385 5.570390e+05 15200.42 1.169263e+03 0.000 489.25 13 0.000000e+00 0.00 5.722394e+05 5.570390e+05 15200.42 NULL
2017 District Attorney Kings County Community Assistant 34772.92991 3.268655e+06 76775.27 8.167582e+02 0.000 2723.00 94 0.000000e+00 0.00 3.345431e+06 3.268655e+06 76775.27 NULL
2017 District Attorney Kings County Community Associate 44117.94296 1.230891e+07 71252.01 2.553835e+02 0.000 2140.50 279 0.000000e+00 0.00 1.238016e+07 1.230891e+07 71252.01 NULL
2017 District Attorney Kings County Community Coordinator 64706.78814 3.817700e+06 51216.30 8.680729e+02 0.000 1073.75 59 0.000000e+00 0.00 3.868917e+06 3.817700e+06 51216.30 NULL
2017 District Attorney Kings County Community Service Aide 18117.60000 5.435280e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.435280e+04 5.435280e+04 0.00 NULL
2017 District Attorney Kings County Computer Associate 82040.25000 3.281610e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.281610e+05 3.281610e+05 0.00 NULL
2017 District Attorney Kings County Computer Programmer Analyst 79500.00000 7.950000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.950000e+04 7.950000e+04 0.00 NULL
2017 District Attorney Kings County Computer Specialist 103740.00000 1.037400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.037400e+05 1.037400e+05 0.00 NULL
2017 District Attorney Kings County Computer Systems Manager 181932.00000 1.819320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.819320e+05 1.819320e+05 0.00 NULL
2017 District Attorney Kings County District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2017 District Attorney Kings County Executive Assistant 81676.22222 7.350860e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.350860e+05 7.350860e+05 0.00 NULL
2017 District Attorney Kings County Media Services Technician 53795.70000 5.379570e+05 43489.92 4.348992e+03 1629.515 1034.00 10 1.629515e+03 16295.15 5.814469e+05 5.542522e+05 27194.77 NULL
2017 District Attorney Kings County Office Assistant 36231.00000 3.623100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.623100e+04 3.623100e+04 0.00 NULL
2017 District Attorney Kings County Paralegal Aide 48100.30000 4.810030e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.810030e+05 4.810030e+05 0.00 NULL
2017 District Attorney Kings County Principal Administrative Associate 64112.85714 8.975800e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 8.975800e+05 8.975800e+05 0.00 NULL
2017 District Attorney Kings County Procurement Analyst 65824.00000 1.316480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.316480e+05 1.316480e+05 0.00 NULL
2017 District Attorney Kings County Reporter/ Stenographer 46665.33292 1.119968e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 1.119968e+06 1.119968e+06 0.00 NULL
2017 District Attorney Kings County Secretary 46770.80000 2.338540e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.338540e+05 2.338540e+05 0.00 NULL
2017 District Attorney Kings County Social Worker 50101.12500 2.004045e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.004045e+05 2.004045e+05 0.00 NULL
2017 District Attorney Kings County Special Officer 37752.00000 7.550400e+04 9508.08 4.754040e+03 4754.040 353.75 2 4.754040e+03 9508.08 8.501208e+04 8.501208e+04 0.00 NULL
2017 District Attorney Kings County Strategic Initiative Specialist 124952.00000 2.499040e+05 165.79 8.289500e+01 82.895 5.00 2 8.289500e+01 165.79 2.500698e+05 2.500698e+05 0.00 NULL
2017 District Attorney Kings County Supervising Accountant Investigator 84352.55556 7.591730e+05 806.84 8.964889e+01 0.000 14.50 9 0.000000e+00 0.00 7.599798e+05 7.591730e+05 806.84 NULL
2017 District Attorney Qns County Adm Manager-Non-Mgrl 77859.44444 7.007350e+05 37349.50 4.149944e+03 1978.070 796.25 9 1.978070e+03 17802.63 7.380845e+05 7.185376e+05 19546.87 NULL
2017 District Attorney Qns County Administrative Manager 135034.00000 1.350340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350340e+05 1.350340e+05 0.00 NULL
2017 District Attorney Qns County Administrative Public Information Specialist 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2017 District Attorney Qns County Administrative Staff Analyst 135454.16667 8.127250e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.127250e+05 8.127250e+05 0.00 NULL
2017 District Attorney Qns County Agency Chief Contracting Officer 113374.00000 1.133740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133740e+05 1.133740e+05 0.00 NULL
2017 District Attorney Qns County Assistant District Attorney 100082.86710 3.412826e+07 0.00 0.000000e+00 0.000 0.00 341 0.000000e+00 0.00 3.412826e+07 3.412826e+07 0.00 NULL
2017 District Attorney Qns County Associate Project Manager 110418.00000 1.104180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.104180e+05 1.104180e+05 0.00 NULL
2017 District Attorney Qns County Certified Applications Developer 96726.00000 9.672600e+04 1347.30 1.347300e+03 1347.300 24.50 1 1.347300e+03 1347.30 9.807330e+04 9.807330e+04 0.00 NULL
2017 District Attorney Qns County Certified It Administrator 114079.00000 1.140790e+05 5620.78 5.620780e+03 5620.780 71.50 1 5.620780e+03 5620.78 1.196998e+05 1.196998e+05 0.00 NULL
2017 District Attorney Qns County Certified It Developer 87550.00000 8.755000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.755000e+04 8.755000e+04 0.00 NULL
2017 District Attorney Qns County City Seasonal Aide 3114.43554 4.360210e+04 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 4.360210e+04 4.360210e+04 0.00 NULL
2017 District Attorney Qns County Clerical Associate 51145.72000 1.278643e+06 68875.97 2.755039e+03 0.000 1529.00 25 0.000000e+00 0.00 1.347519e+06 1.278643e+06 68875.97 NULL
2017 District Attorney Qns County Community Assistant 35594.83333 1.708552e+06 113633.50 2.367365e+03 0.000 4474.50 48 0.000000e+00 0.00 1.822186e+06 1.708552e+06 113633.50 NULL
2017 District Attorney Qns County Community Associate 39458.60196 6.037166e+06 192513.59 1.258259e+03 0.000 6287.75 153 0.000000e+00 0.00 6.229680e+06 6.037166e+06 192513.59 NULL
2017 District Attorney Qns County Community Coordinator 67835.76190 1.424551e+06 34185.21 1.627867e+03 0.000 773.00 21 0.000000e+00 0.00 1.458736e+06 1.424551e+06 34185.21 NULL
2017 District Attorney Qns County Community Service Aide 27331.40000 1.366570e+05 4777.07 9.554140e+02 564.740 258.25 5 5.647400e+02 2823.70 1.414341e+05 1.394807e+05 1953.37 NULL
2017 District Attorney Qns County Computer Specialist 87550.00000 8.755000e+04 3146.97 3.146970e+03 3146.970 58.75 1 3.146970e+03 3146.97 9.069697e+04 9.069697e+04 0.00 NULL
2017 District Attorney Qns County Director Of Public Information 150392.00000 1.503920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503920e+05 1.503920e+05 0.00 NULL
2017 District Attorney Qns County District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2017 District Attorney Qns County Paralegal Aide 50342.64286 7.047970e+05 30679.95 2.191425e+03 76.665 807.25 14 7.666500e+01 1073.31 7.354769e+05 7.058703e+05 29606.64 NULL
2017 District Attorney Qns County Principal Administrative Associate 72919.71429 5.104380e+05 706.57 1.009386e+02 22.250 15.50 7 2.225000e+01 155.75 5.111446e+05 5.105938e+05 550.82 NULL
2017 District Attorney Qns County Private Secretary 91854.00000 1.837080e+05 350.88 1.754400e+02 175.440 8.00 2 1.754400e+02 350.88 1.840589e+05 1.840589e+05 0.00 NULL
2017 District Attorney Qns County Reporter/ Stenographer 64147.17647 1.090502e+06 27504.29 1.617899e+03 45.220 596.25 17 4.522000e+01 768.74 1.118006e+06 1.091271e+06 26735.55 NULL
2017 District Attorney Qns County Secretary 57458.75000 4.596700e+05 22217.01 2.777126e+03 0.000 494.75 8 0.000000e+00 0.00 4.818870e+05 4.596700e+05 22217.01 NULL
2017 District Attorney Qns County Special Assistant To Da 128131.00000 7.687860e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.687860e+05 7.687860e+05 0.00 NULL
2017 District Attorney Qns County Staff Analyst 92966.00000 9.296600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.296600e+04 9.296600e+04 0.00 NULL
2017 District Attorney Qns County Supervising Accountant Investigator 87141.00000 2.614230e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.614230e+05 2.614230e+05 0.00 NULL
2017 District Attorney Richmond Cou Administrative Community Relations Specialist 90666.66667 2.720000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.720000e+05 2.720000e+05 0.00 NULL
2017 District Attorney Richmond Cou Administrative Procurement Analyst 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2017 District Attorney Richmond Cou Administrative Public Information Specialist 68000.00000 6.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.800000e+04 6.800000e+04 0.00 NULL
2017 District Attorney Richmond Cou Administrative Staff Analyst 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2017 District Attorney Richmond Cou Assistant District Attorney 93685.64179 6.276938e+06 0.00 0.000000e+00 0.000 0.00 67 0.000000e+00 0.00 6.276938e+06 6.276938e+06 0.00 NULL
2017 District Attorney Richmond Cou Associate Staff Analyst 95068.00000 9.506800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.506800e+04 9.506800e+04 0.00 NULL
2017 District Attorney Richmond Cou Chief Investigator 104366.00000 1.043660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.043660e+05 1.043660e+05 0.00 NULL
2017 District Attorney Richmond Cou Clerical Associate 53923.28571 3.774630e+05 4566.34 6.523343e+02 0.000 85.50 7 0.000000e+00 0.00 3.820293e+05 3.774630e+05 4566.34 NULL
2017 District Attorney Richmond Cou Community Assistant 40636.00000 8.127200e+04 406.74 2.033700e+02 203.370 16.25 2 2.033700e+02 406.74 8.167874e+04 8.167874e+04 0.00 NULL
2017 District Attorney Richmond Cou Community Associate 51745.76667 1.552373e+06 24468.45 8.156150e+02 0.000 628.00 30 0.000000e+00 0.00 1.576841e+06 1.552373e+06 24468.45 NULL
2017 District Attorney Richmond Cou Community Coordinator 69925.80000 6.992580e+05 25164.90 2.516490e+03 0.000 490.00 10 0.000000e+00 0.00 7.244229e+05 6.992580e+05 25164.90 NULL
2017 District Attorney Richmond Cou Computer Programmer Analyst 55000.00000 1.100000e+05 528.08 2.640400e+02 264.040 17.75 2 2.640400e+02 528.08 1.105281e+05 1.105281e+05 0.00 NULL
2017 District Attorney Richmond Cou Computer Systems Manager 113318.50000 2.266370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.266370e+05 2.266370e+05 0.00 NULL
2017 District Attorney Richmond Cou District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2017 District Attorney Richmond Cou Investigator 46000.00000 4.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.600000e+04 4.600000e+04 0.00 NULL
2017 District Attorney Richmond Cou Paralegal Aide 61824.00000 6.182400e+04 1923.78 1.923780e+03 1923.780 36.77 1 1.923780e+03 1923.78 6.374778e+04 6.374778e+04 0.00 NULL
2017 District Attorney Richmond Cou Principal Administrative Associate 70411.66667 2.112350e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.112350e+05 2.112350e+05 0.00 NULL
2017 District Attorney Richmond Cou Procurement Analyst 88992.00000 8.899200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.899200e+04 8.899200e+04 0.00 NULL
2017 District Attorney Richmond Cou Program Producer 20663.50000 2.066350e+04 91.64 9.164000e+01 91.640 2.00 1 9.164000e+01 91.64 2.075514e+04 2.075514e+04 0.00 NULL
2017 District Attorney Richmond Cou Reporter/ Stenographer 55921.95500 2.796098e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.796098e+05 2.796098e+05 0.00 NULL
2017 District Attorney Richmond Cou Secretary 51524.00000 5.152400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.152400e+04 5.152400e+04 0.00 NULL
2017 District Attorney Richmond Cou Senior Detective Investigator 66644.07143 9.330170e+05 24834.72 1.773909e+03 1632.220 491.25 14 1.632220e+03 22851.08 9.578517e+05 9.558681e+05 1983.64 NULL
2017 District Attorney Richmond Cou Social Worker 61328.66667 1.839860e+05 56.82 1.894000e+01 0.000 1.50 3 0.000000e+00 0.00 1.840428e+05 1.839860e+05 56.82 NULL
2017 District Attorney Richmond Cou Special Assistant To The District Attorney 90666.66667 2.720000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.720000e+05 2.720000e+05 0.00 NULL
2017 District Attorney-Manhattan Admin Contract Specialist 126750.00000 2.535000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.535000e+05 2.535000e+05 0.00 NULL
2017 District Attorney-Manhattan Administrative Chief 130040.61364 5.721787e+06 24375.03 5.539780e+02 0.000 339.00 44 0.000000e+00 0.00 5.746162e+06 5.721787e+06 24375.03 NULL
2017 District Attorney-Manhattan Administrative Education Analyst 121974.00000 1.219740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.219740e+05 1.219740e+05 0.00 NULL
2017 District Attorney-Manhattan Assistant District Attorney 104129.79579 6.154071e+07 0.00 0.000000e+00 0.000 0.00 591 0.000000e+00 0.00 6.154071e+07 6.154071e+07 0.00 NULL
2017 District Attorney-Manhattan Carpenter NA NA 13228.95 2.645790e+03 2772.690 161.50 5 2.645790e+03 13228.95 NA NA NA NULL
2017 District Attorney-Manhattan Chief Office Assistant 46963.00000 4.696300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.696300e+04 4.696300e+04 0.00 NULL
2017 District Attorney-Manhattan City Custodial Assistant 36290.88889 6.532360e+05 14588.61 8.104783e+02 36.270 458.50 18 3.627000e+01 652.86 6.678246e+05 6.538889e+05 13935.75 NULL
2017 District Attorney-Manhattan City Laborer NA NA 32513.59 5.418932e+03 2953.165 489.00 6 2.953165e+03 17718.99 NA NA NA NULL
2017 District Attorney-Manhattan Clerical Associate 55169.44889 9.930501e+05 71786.59 3.988144e+03 57.730 1646.75 18 5.773000e+01 1039.14 1.064837e+06 9.940892e+05 70747.45 NULL
2017 District Attorney-Manhattan College Aide 225.90066 3.411100e+04 0.00 0.000000e+00 0.000 0.00 151 0.000000e+00 0.00 3.411100e+04 3.411100e+04 0.00 NULL
2017 District Attorney-Manhattan Community Assistant 38527.93302 1.656701e+06 51139.69 1.189295e+03 21.550 1915.75 43 2.155000e+01 926.65 1.707841e+06 1.657628e+06 50213.04 NULL
2017 District Attorney-Manhattan Community Associate 45814.76808 2.675582e+07 461533.33 7.902968e+02 0.000 13768.50 584 0.000000e+00 0.00 2.721736e+07 2.675582e+07 461533.33 NULL
2017 District Attorney-Manhattan Community Coordinator 77180.41696 1.041936e+07 344126.84 2.549088e+03 0.000 5629.00 135 0.000000e+00 0.00 1.076348e+07 1.041936e+07 344126.84 NULL
2017 District Attorney-Manhattan Computer Systems Manager 150600.00000 7.530000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.530000e+05 7.530000e+05 0.00 NULL
2017 District Attorney-Manhattan County Detective 56990.11111 5.129110e+05 64579.64 7.175516e+03 3970.630 1512.25 9 3.970630e+03 35735.67 5.774906e+05 5.486467e+05 28843.97 NULL
2017 District Attorney-Manhattan District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2017 District Attorney-Manhattan Electrician NA NA 8876.42 4.438210e+03 4438.210 86.75 2 4.438210e+03 8876.42 NA NA NA NULL
2017 District Attorney-Manhattan Electrician’s Helper NA NA 2864.26 2.864260e+03 2864.260 43.50 1 2.864260e+03 2864.26 NA NA NA NULL
2017 District Attorney-Manhattan Engineering Technician 59596.50000 1.191930e+05 330.02 1.650100e+02 165.010 13.00 2 1.650100e+02 330.02 1.195230e+05 1.195230e+05 0.00 NULL
2017 District Attorney-Manhattan High Pressure Plant Tender NA NA 13872.95 1.387295e+04 13872.950 262.00 1 1.387295e+04 13872.95 NA NA NA NULL
2017 District Attorney-Manhattan Interpreter 60931.75000 2.437270e+05 7878.66 1.969665e+03 77.120 131.75 4 7.712000e+01 308.48 2.516057e+05 2.440355e+05 7570.18 NULL
2017 District Attorney-Manhattan Management Auditor 101102.00000 1.011020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.011020e+05 1.011020e+05 0.00 NULL
2017 District Attorney-Manhattan Media Services Technician 57218.92857 8.010650e+05 254575.80 1.818399e+04 9334.805 5036.00 14 9.334805e+03 130687.27 1.055641e+06 9.317523e+05 123888.53 NULL
2017 District Attorney-Manhattan Office Assistant 56397.66667 1.691930e+05 6888.75 2.296250e+03 1090.240 187.25 3 1.090240e+03 3270.72 1.760818e+05 1.724637e+05 3618.03 NULL
2017 District Attorney-Manhattan Painter NA NA 9784.58 1.956916e+03 531.460 119.25 5 5.314600e+02 2657.30 NA NA NA NULL
2017 District Attorney-Manhattan Paralegal Aide 74575.00000 7.457500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.457500e+04 7.457500e+04 0.00 NULL
2017 District Attorney-Manhattan Photographer 57764.00000 1.732920e+05 44883.65 1.496122e+04 18472.380 1037.75 3 1.496122e+04 44883.65 2.181756e+05 2.181756e+05 0.00 NULL
2017 District Attorney-Manhattan Principal Accountant Investigator 113636.93050 2.272739e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 2.272739e+06 2.272739e+06 0.00 NULL
2017 District Attorney-Manhattan Principal Administrative Associate 74838.80000 7.483880e+05 31138.66 3.113866e+03 0.000 514.00 10 0.000000e+00 0.00 7.795267e+05 7.483880e+05 31138.66 NULL
2017 District Attorney-Manhattan Reporter/ Stenographer 76529.16000 1.913229e+06 60.31 2.412400e+00 0.000 1.25 25 0.000000e+00 0.00 1.913289e+06 1.913229e+06 60.31 NULL
2017 District Attorney-Manhattan Secretary 75764.66667 4.545880e+05 28828.33 4.804722e+03 1651.815 587.50 6 1.651815e+03 9910.89 4.834163e+05 4.644989e+05 18917.44 NULL
2017 District Attorney-Manhattan Senior Accountant Investigator 75016.01636 8.251762e+05 19825.13 1.802285e+03 0.000 376.00 11 0.000000e+00 0.00 8.450013e+05 8.251762e+05 19825.13 NULL
2017 District Attorney-Manhattan Senior Secretary 59684.00000 2.387360e+05 324.60 8.115000e+01 0.000 7.50 4 0.000000e+00 0.00 2.390606e+05 2.387360e+05 324.60 NULL
2017 District Attorney-Manhattan Special Officer 39412.45455 4.335370e+05 15590.67 1.417334e+03 959.760 585.50 11 9.597600e+02 10557.36 4.491277e+05 4.440944e+05 5033.31 NULL
2017 District Attorney-Manhattan Supervising Accountant Investigator 72525.00000 7.252500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.252500e+04 7.252500e+04 0.00 NULL
2017 District Attorney-Manhattan Supervising Special Officer 51993.00000 1.039860e+05 3954.78 1.977390e+03 1977.390 124.75 2 1.977390e+03 3954.78 1.079408e+05 1.079408e+05 0.00 NULL
2017 District Attorney-Manhattan Supervisor Electrician NA NA 4512.00 4.512000e+03 4512.000 44.50 1 4.512000e+03 4512.00 NA NA NA NULL
2017 District Attorney-Manhattan Supervisor Of Mechanics 124340.00000 1.243400e+05 4493.18 4.493180e+03 4493.180 75.00 1 4.493180e+03 4493.18 1.288332e+05 1.288332e+05 0.00 NULL
2017 District Attorney-Special Narc Administrative Chief 182000.00000 3.640000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.640000e+05 3.640000e+05 0.00 NULL
2017 District Attorney-Special Narc Administrative Community Relations Specialist 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2017 District Attorney-Special Narc Administrative Labor Relations Analyst 183853.00000 1.838530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.838530e+05 1.838530e+05 0.00 NULL
2017 District Attorney-Special Narc Administrative Project Manager 156500.00000 1.565000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.565000e+05 1.565000e+05 0.00 NULL
2017 District Attorney-Special Narc Assistant District Attorney 97665.05072 1.347778e+07 0.00 0.000000e+00 0.000 0.00 138 0.000000e+00 0.00 1.347778e+07 1.347778e+07 0.00 NULL
2017 District Attorney-Special Narc Associate Chief Rackets Investigator 111333.33333 3.340000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.340000e+05 3.340000e+05 0.00 NULL
2017 District Attorney-Special Narc Chief Rackets Investigator 171814.00000 1.718140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.718140e+05 1.718140e+05 0.00 NULL
2017 District Attorney-Special Narc Clerical Associate 77477.00000 6.198160e+05 1466.34 1.832925e+02 0.000 30.00 8 0.000000e+00 0.00 6.212823e+05 6.198160e+05 1466.34 NULL
2017 District Attorney-Special Narc College Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2017 District Attorney-Special Narc Community Assistant 41134.33333 1.234030e+05 4937.53 1.645843e+03 1577.530 162.25 3 1.577530e+03 4732.59 1.283405e+05 1.281356e+05 204.94 NULL
2017 District Attorney-Special Narc Community Associate 53448.07895 2.031027e+06 15947.35 4.196671e+02 0.000 407.00 38 0.000000e+00 0.00 2.046974e+06 2.031027e+06 15947.35 NULL
2017 District Attorney-Special Narc Community Coordinator 84793.68750 1.356699e+06 1158.57 7.241062e+01 0.000 20.75 16 0.000000e+00 0.00 1.357858e+06 1.356699e+06 1158.57 NULL
2017 District Attorney-Special Narc Confidential Secy 101967.00000 1.019670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.019670e+05 1.019670e+05 0.00 NULL
2017 District Attorney-Special Narc Director Of Public Information 151000.00000 1.510000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.510000e+05 1.510000e+05 0.00 NULL
2017 District Attorney-Special Narc Paralegal Aide 79908.50000 1.598170e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.598170e+05 1.598170e+05 0.00 NULL
2017 District Attorney-Special Narc Rackets Investigator 57735.33333 1.732060e+05 12364.89 4.121630e+03 4030.170 291.00 3 4.030170e+03 12090.51 1.855709e+05 1.852965e+05 274.38 NULL
2017 District Attorney-Special Narc Reporter/ Stenographer 72383.57143 5.066850e+05 293.87 4.198143e+01 0.000 0.00 7 0.000000e+00 0.00 5.069789e+05 5.066850e+05 293.87 NULL
2017 District Attorney-Special Narc Secretary 74453.33333 2.233600e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.233600e+05 2.233600e+05 0.00 NULL
2017 District Attorney-Special Narc Senior Rackets Investigator 74317.81250 1.189085e+06 21684.44 1.355277e+03 0.000 387.00 16 0.000000e+00 0.00 1.210769e+06 1.189085e+06 21684.44 NULL
2017 District Attorney-Special Narc Special Assistant District Attorney 206416.00000 2.064160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.064160e+05 2.064160e+05 0.00 NULL
2017 District Attorney-Special Narc Supervising Rackets Investigator 88647.40000 4.432370e+05 36151.63 7.230326e+03 7667.530 475.00 5 7.230326e+03 36151.63 4.793886e+05 4.793886e+05 0.00 NULL
2017 Doe Custodial Payrol Custodian Engineer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1383 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2017 Equal Employ Practices Comm Administrative Labor Relations Analyst 132473.00000 1.324730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.324730e+05 1.324730e+05 0.00 NULL
2017 Equal Employ Practices Comm Agency Attorney 76859.00000 7.685900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.685900e+04 7.685900e+04 0.00 NULL
2017 Equal Employ Practices Comm City Research Scientist 97631.25000 3.905250e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.905250e+05 3.905250e+05 0.00 NULL
2017 Equal Employ Practices Comm College Aide 4111.38000 4.111380e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.111380e+03 4.111380e+03 0.00 NULL
2017 Equal Employ Practices Comm Community Coordinator 53624.87000 2.144995e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.144995e+05 2.144995e+05 0.00 NULL
2017 Equal Employ Practices Comm Executive Agency Counsel 110339.00000 1.103390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.103390e+05 1.103390e+05 0.00 NULL
2017 Equal Employ Practices Comm Executive Secretary 65562.00000 6.556200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.556200e+04 6.556200e+04 0.00 NULL
2017 Equal Employ Practices Comm Staff Analyst 68165.00000 6.816500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.816500e+04 6.816500e+04 0.00 NULL
2017 Financial Info Svcs Agency *Certified Wide Area Network Administrator 120982.00000 1.209820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.209820e+05 1.209820e+05 0.00 NULL
2017 Financial Info Svcs Agency Accountant 62318.00000 6.231800e+04 5482.58 5.482580e+03 5482.580 150.50 1 5.482580e+03 5482.58 6.780058e+04 6.780058e+04 0.00 NULL
2017 Financial Info Svcs Agency Adm Manager-Non-Mgrl 79474.83333 4.768490e+05 1712.40 2.854000e+02 0.000 33.25 6 0.000000e+00 0.00 4.785614e+05 4.768490e+05 1712.40 NULL
2017 Financial Info Svcs Agency Admin Contract Specialist 131485.00000 1.314850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.314850e+05 1.314850e+05 0.00 NULL
2017 Financial Info Svcs Agency Administrative Procurement Analyst 81803.75000 3.272150e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.272150e+05 3.272150e+05 0.00 NULL
2017 Financial Info Svcs Agency Administrative Space Analyst 136391.00000 2.727820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.727820e+05 2.727820e+05 0.00 NULL
2017 Financial Info Svcs Agency Administrative Staff Analyst 104801.09091 1.152812e+06 366.12 3.328364e+01 0.000 7.50 11 0.000000e+00 0.00 1.153178e+06 1.152812e+06 366.12 NULL
2017 Financial Info Svcs Agency Agency Attorney 87117.50000 1.742350e+05 83.08 4.154000e+01 41.540 2.00 2 4.154000e+01 83.08 1.743181e+05 1.743181e+05 0.00 NULL
2017 Financial Info Svcs Agency Agency Chief Contracting Officer 138328.00000 1.383280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.383280e+05 1.383280e+05 0.00 NULL
2017 Financial Info Svcs Agency Associate Staff Analyst 85460.66667 2.563820e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.563820e+05 2.563820e+05 0.00 NULL
2017 Financial Info Svcs Agency City Attendant 37477.00000 3.747700e+04 21417.34 2.141734e+04 21417.340 745.00 1 2.141734e+04 21417.34 5.889434e+04 5.889434e+04 0.00 NULL
2017 Financial Info Svcs Agency City Custodial Assistant 34364.00000 6.872800e+04 1861.41 9.307050e+02 930.705 88.75 2 9.307050e+02 1861.41 7.058941e+04 7.058941e+04 0.00 NULL
2017 Financial Info Svcs Agency Clerical Associate 42359.43340 2.117972e+05 127.09 2.541800e+01 0.000 4.75 5 0.000000e+00 0.00 2.119243e+05 2.117972e+05 127.09 NULL
2017 Financial Info Svcs Agency College Aide - Assignment Levels Ii And Iii 10027.67080 6.016602e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.016602e+04 6.016602e+04 0.00 NULL
2017 Financial Info Svcs Agency Community Assistant 30273.00000 3.027300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.027300e+04 3.027300e+04 0.00 NULL
2017 Financial Info Svcs Agency Community Associate 48776.50000 3.902120e+05 9848.56 1.231070e+03 0.000 336.50 8 0.000000e+00 0.00 4.000606e+05 3.902120e+05 9848.56 NULL
2017 Financial Info Svcs Agency Community Coordinator 63194.75000 2.527790e+05 1283.87 3.209675e+02 0.000 32.00 4 0.000000e+00 0.00 2.540629e+05 2.527790e+05 1283.87 NULL
2017 Financial Info Svcs Agency Computer Aide-Non-Spvr 55398.00000 5.539800e+04 238.26 2.382600e+02 238.260 6.50 1 2.382600e+02 238.26 5.563626e+04 5.563626e+04 0.00 NULL
2017 Financial Info Svcs Agency Computer Associate 73119.87097 4.533432e+06 188923.92 3.047160e+03 855.640 3679.50 62 8.556400e+02 53049.68 4.722356e+06 4.586482e+06 135874.24 NULL
2017 Financial Info Svcs Agency Computer Operations Manager 125241.00000 1.252410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.252410e+05 1.252410e+05 0.00 NULL
2017 Financial Info Svcs Agency Computer Programmer Analyst 61537.00000 1.846110e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.846110e+05 1.846110e+05 0.00 NULL
2017 Financial Info Svcs Agency Computer Programmer Analyst Trainee 37075.00000 3.707500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.707500e+04 3.707500e+04 0.00 NULL
2017 Financial Info Svcs Agency Computer Specialist 103262.62338 7.951222e+06 50.91 6.611688e-01 0.000 1.00 77 0.000000e+00 0.00 7.951273e+06 7.951222e+06 50.91 NULL
2017 Financial Info Svcs Agency Computer Systems Manager 128601.87281 2.932123e+07 0.00 0.000000e+00 0.000 0.00 228 0.000000e+00 0.00 2.932123e+07 2.932123e+07 0.00 NULL
2017 Financial Info Svcs Agency Executive Agency Counsel 165497.37500 6.619895e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.619895e+05 6.619895e+05 0.00 NULL
2017 Financial Info Svcs Agency Executive Director 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2017 Financial Info Svcs Agency It Automation And Monitoring Engineer 85197.00000 8.519700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.519700e+04 8.519700e+04 0.00 NULL
2017 Financial Info Svcs Agency It Infrastructure Engineer 116725.00000 2.334500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.334500e+05 2.334500e+05 0.00 NULL
2017 Financial Info Svcs Agency It Project Specialist 100472.66667 9.042540e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.042540e+05 9.042540e+05 0.00 NULL
2017 Financial Info Svcs Agency Motor Vehicle Operator 46476.00000 9.295200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.295200e+04 9.295200e+04 0.00 NULL
2017 Financial Info Svcs Agency Nycaps Process Analyst 99930.00000 9.993000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.993000e+04 9.993000e+04 0.00 NULL
2017 Financial Info Svcs Agency Principal Administrative Associate 63036.00000 3.782160e+05 244.82 4.080333e+01 0.000 6.50 6 0.000000e+00 0.00 3.784608e+05 3.782160e+05 244.82 NULL
2017 Financial Info Svcs Agency Procurement Analyst 85454.00000 8.545400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.545400e+04 8.545400e+04 0.00 NULL
2017 Financial Info Svcs Agency Secretary 58561.00000 5.856100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.856100e+04 5.856100e+04 0.00 NULL
2017 Financial Info Svcs Agency Senior It Architect 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2017 Financial Info Svcs Agency Staff Analyst 63349.00000 6.334900e+04 934.18 9.341800e+02 934.180 24.50 1 9.341800e+02 934.18 6.428318e+04 6.428318e+04 0.00 NULL
2017 Financial Info Svcs Agency Supervisor Of Office Machine Operations 47072.50000 9.414500e+04 32176.76 1.608838e+04 16088.380 917.50 2 1.608838e+04 32176.76 1.263218e+05 1.263218e+05 0.00 NULL
2017 Financial Info Svcs Agency Supervisor Of Stock Workers 78151.00000 7.815100e+04 1374.04 1.374040e+03 1374.040 27.25 1 1.374040e+03 1374.04 7.952504e+04 7.952504e+04 0.00 NULL
2017 Financial Info Svcs Agency Telecommunications Associate 82741.00000 1.654820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.654820e+05 1.654820e+05 0.00 NULL
2017 Fire Department *Certified Applications Developer 98489.00000 9.848900e+04 8379.79 8.379790e+03 8379.790 142.50 1 8.379790e+03 8379.79 1.068688e+05 1.068688e+05 0.00 NULL
2017 Fire Department Accountant 60897.00000 1.826910e+05 156.72 5.224000e+01 0.000 5.25 3 0.000000e+00 0.00 1.828477e+05 1.826910e+05 156.72 NULL
2017 Fire Department Actuarial Specialist Level Ii, Oj 95617.00000 9.561700e+04 20562.73 2.056273e+04 20562.730 333.00 1 2.056273e+04 20562.73 1.161797e+05 1.161797e+05 0.00 NULL
2017 Fire Department Adm Manager-Non-Mgrl 73070.98365 6.064892e+06 382347.65 4.606598e+03 1780.300 8573.75 83 1.780300e+03 147764.90 6.447239e+06 6.212657e+06 234582.75 NULL
2017 Fire Department Admin Community Relations Specialist 98589.00000 3.943560e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.943560e+05 3.943560e+05 0.00 NULL
2017 Fire Department Admin Tests & Meas Spec 137503.00000 1.375030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.375030e+05 1.375030e+05 0.00 NULL
2017 Fire Department Administration Public Record Officer 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2017 Fire Department Administrative Architect 121532.00000 1.215320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.215320e+05 1.215320e+05 0.00 NULL
2017 Fire Department Administrative Blasting Inspector 118845.50000 2.376910e+05 36472.74 1.823637e+04 18236.370 598.00 2 1.823637e+04 36472.74 2.741637e+05 2.741637e+05 0.00 NULL
2017 Fire Department Administrative Community Relations Specialist 146316.00000 1.463160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.463160e+05 1.463160e+05 0.00 NULL
2017 Fire Department Administrative Construction Project Manager 126057.00000 2.521140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.521140e+05 2.521140e+05 0.00 NULL
2017 Fire Department Administrative Director Of Marine Maintenance 120510.00000 1.205100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.205100e+05 1.205100e+05 0.00 NULL
2017 Fire Department Administrative Engineer 117254.40000 5.862720e+05 -668.92 -1.337840e+02 0.000 0.00 5 -1.337840e+02 -668.92 5.856031e+05 5.856031e+05 0.00 NULL
2017 Fire Department Administrative Fire Protection Inspector 98520.66667 8.866860e+05 42152.76 4.683640e+03 0.000 643.25 9 0.000000e+00 0.00 9.288388e+05 8.866860e+05 42152.76 NULL
2017 Fire Department Administrative Graphic Artist 83943.00000 8.394300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.394300e+04 8.394300e+04 0.00 NULL
2017 Fire Department Administrative Inspector 97432.00000 1.948640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.948640e+05 1.948640e+05 0.00 NULL
2017 Fire Department Administrative Investigator 103320.20000 5.166010e+05 17902.00 3.580400e+03 0.000 352.75 5 0.000000e+00 0.00 5.345030e+05 5.166010e+05 17902.00 NULL
2017 Fire Department Administrative Labor Relations Analyst 112129.00000 2.242580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.242580e+05 2.242580e+05 0.00 NULL
2017 Fire Department Administrative Procurement Analyst 88721.50000 1.064658e+06 55367.63 4.613969e+03 696.650 1041.75 12 6.966500e+02 8359.80 1.120026e+06 1.073018e+06 47007.83 NULL
2017 Fire Department Administrative Project Manager 108498.71429 1.518982e+06 17952.45 1.282318e+03 0.000 303.75 14 0.000000e+00 0.00 1.536934e+06 1.518982e+06 17952.45 NULL
2017 Fire Department Administrative Public Information Specialist 103632.75000 4.145310e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.145310e+05 4.145310e+05 0.00 NULL
2017 Fire Department Administrative Quality Assurance Specialist 66927.66000 6.692766e+04 2041.74 2.041740e+03 2041.740 49.50 1 2.041740e+03 2041.74 6.896940e+04 6.896940e+04 0.00 NULL
2017 Fire Department Administrative Retirement Benefits Specialist 111407.60000 5.570380e+05 9388.46 1.877692e+03 0.000 163.50 5 0.000000e+00 0.00 5.664265e+05 5.570380e+05 9388.46 NULL
2017 Fire Department Administrative Staff Analyst 92887.23467 7.059430e+06 156622.36 2.060821e+03 0.000 2639.25 76 0.000000e+00 0.00 7.216052e+06 7.059430e+06 156622.36 NULL
2017 Fire Department Administrative Storekeeper 133685.00000 1.336850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.336850e+05 1.336850e+05 0.00 NULL
2017 Fire Department Administrative Supervisor Of Building Maintenance 121911.50000 2.438230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.438230e+05 2.438230e+05 0.00 NULL
2017 Fire Department Administrator Of Medical Affairs 198846.00000 1.988460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.988460e+05 1.988460e+05 0.00 NULL
2017 Fire Department Agency Attorney 89998.85761 2.069974e+06 27319.38 1.187799e+03 0.000 473.75 23 0.000000e+00 0.00 2.097293e+06 2.069974e+06 27319.38 NULL
2017 Fire Department Agency Chief Contracting Officer 155068.00000 1.550680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550680e+05 1.550680e+05 0.00 NULL
2017 Fire Department Agency Deputy Medical Director 163987.25000 1.311898e+06 1602.68 2.003350e+02 0.000 8.00 8 0.000000e+00 0.00 1.313501e+06 1.311898e+06 1602.68 NULL
2017 Fire Department Architect 63074.00000 6.307400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.307400e+04 6.307400e+04 0.00 NULL
2017 Fire Department Assistant Architect 61400.00000 6.140000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.140000e+04 6.140000e+04 0.00 NULL
2017 Fire Department Assistant Chemical Engineer 70415.00000 1.408300e+05 462.09 2.310450e+02 231.045 0.00 2 2.310450e+02 462.09 1.412921e+05 1.412921e+05 0.00 NULL
2017 Fire Department Assistant Chief Fire Marshal 196539.00000 1.965390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.965390e+05 1.965390e+05 0.00 NULL
2017 Fire Department Assistant Chief Of Department 218260.11765 3.710422e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 3.710422e+06 3.710422e+06 0.00 NULL
2017 Fire Department Assistant Civil Engineer 61104.00000 6.110400e+04 5015.07 5.015070e+03 5015.070 135.00 1 5.015070e+03 5015.07 6.611907e+04 6.611907e+04 0.00 NULL
2017 Fire Department Assistant Commissioner 151791.57143 1.062541e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.062541e+06 1.062541e+06 0.00 NULL
2017 Fire Department Assistant Electrical Engineer 70942.50000 1.418850e+05 1062.14 5.310700e+02 531.070 26.00 2 5.310700e+02 1062.14 1.429471e+05 1.429471e+05 0.00 NULL
2017 Fire Department Assistant Mechanical Engineer 61619.00000 1.232380e+05 20067.00 1.003350e+04 10033.500 416.75 2 1.003350e+04 20067.00 1.433050e+05 1.433050e+05 0.00 NULL
2017 Fire Department Associate Fingerprint Technician 31499.00000 3.149900e+04 409.45 4.094500e+02 409.450 9.25 1 4.094500e+02 409.45 3.190845e+04 3.190845e+04 0.00 NULL
2017 Fire Department Associate Fire Protection Inspector 64691.21778 1.455552e+07 3562707.91 1.583426e+04 13984.260 69899.33 225 1.398426e+04 3146458.50 1.811823e+07 1.770198e+07 416249.41 NULL
2017 Fire Department Associate Inspector 63032.32000 1.575808e+06 664890.06 2.659560e+04 24895.980 14037.52 25 2.489598e+04 622399.50 2.240698e+06 2.198208e+06 42490.56 NULL
2017 Fire Department Associate Investigator 57416.00000 5.741600e+04 312.73 3.127300e+02 312.730 0.00 1 3.127300e+02 312.73 5.772873e+04 5.772873e+04 0.00 NULL
2017 Fire Department Associate Project Manager 80022.12500 1.280354e+06 54482.65 3.405166e+03 0.595 1018.75 16 5.950000e-01 9.52 1.334837e+06 1.280364e+06 54473.13 NULL
2017 Fire Department Associate Retirement Benefits Examiner 61937.80000 3.096890e+05 46594.77 9.318954e+03 9740.720 1055.25 5 9.318954e+03 46594.77 3.562838e+05 3.562838e+05 0.00 NULL
2017 Fire Department Associate Staff Analyst 76355.01412 1.298035e+06 12135.50 7.138529e+02 0.000 257.75 17 0.000000e+00 0.00 1.310171e+06 1.298035e+06 12135.50 NULL
2017 Fire Department Attending Physician 49075.45200 2.944527e+05 72.14 1.202333e+01 0.000 1.00 6 0.000000e+00 0.00 2.945249e+05 2.944527e+05 72.14 NULL
2017 Fire Department Auto Machinist NA NA 97241.94 3.241398e+04 28849.330 1533.25 3 2.884933e+04 86547.99 NA NA NA NULL
2017 Fire Department Auto Mechanic NA NA 3323854.41 2.596761e+04 22717.580 54278.08 128 2.271758e+04 2907850.24 NA NA NA NULL
2017 Fire Department Automotive Service Worker 41741.04348 9.600440e+05 161672.80 7.029252e+03 5240.570 5477.00 23 5.240570e+03 120533.11 1.121717e+06 1.080577e+06 41139.69 NULL
2017 Fire Department Battalion Chief 151660.81217 5.732779e+07 738111.36 1.952676e+03 0.000 6463.44 378 0.000000e+00 0.00 5.806590e+07 5.732779e+07 738111.36 NULL
2017 Fire Department Bio-Medical Equipment Technician 50206.00000 5.020600e+04 17288.70 1.728870e+04 17288.700 475.50 1 1.728870e+04 17288.70 6.749470e+04 6.749470e+04 0.00 NULL
2017 Fire Department Blacksmith’s Helper NA NA 18017.65 1.801765e+04 18017.650 320.00 1 1.801765e+04 18017.65 NA NA NA NULL
2017 Fire Department Captain 118285.85106 7.227266e+07 26199407.36 4.287955e+04 43578.940 273402.50 611 4.287955e+04 26199407.36 9.847206e+07 9.847206e+07 0.00 NULL
2017 Fire Department Carpenter NA NA 304979.23 1.694329e+04 15094.960 3696.25 18 1.509496e+04 271709.28 NA NA NA NULL
2017 Fire Department Case - Management Nurse 69550.20746 1.599655e+06 6118.11 2.660048e+02 0.000 111.50 23 0.000000e+00 0.00 1.605773e+06 1.599655e+06 6118.11 NULL
2017 Fire Department Cashier 52815.02880 5.281503e+04 10320.56 1.032056e+04 10320.560 334.50 1 1.032056e+04 10320.56 6.313559e+04 6.313559e+04 0.00 NULL
2017 Fire Department Cement Mason NA NA 36272.23 1.813612e+04 18136.115 400.50 2 1.813612e+04 36272.23 NA NA NA NULL
2017 Fire Department Certified It Administrator 94665.16667 5.679910e+05 87187.99 1.453133e+04 3885.865 1105.25 6 3.885865e+03 23315.19 6.551790e+05 5.913062e+05 63872.80 NULL
2017 Fire Department Certified It Developer 91392.00000 9.139200e+04 5642.80 5.642800e+03 5642.800 97.50 1 5.642800e+03 5642.80 9.703480e+04 9.703480e+04 0.00 NULL
2017 Fire Department Chaplain 27320.12500 2.185610e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 2.185610e+05 2.185610e+05 0.00 NULL
2017 Fire Department Chemical Engineer 92056.00000 9.205600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.205600e+04 9.205600e+04 0.00 NULL
2017 Fire Department Chief Fire Marshal 214739.00000 2.147390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.147390e+05 2.147390e+05 0.00 NULL
2017 Fire Department Chief Of Department 222021.00000 2.220210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.220210e+05 2.220210e+05 0.00 NULL
2017 Fire Department City Laborer NA NA 176357.62 1.469647e+04 12426.115 3003.50 12 1.242611e+04 149113.38 NA NA NA NULL
2017 Fire Department City Medical Specialist 60142.92689 1.563716e+06 99818.69 3.839180e+03 0.000 1322.00 26 0.000000e+00 0.00 1.663535e+06 1.563716e+06 99818.69 NULL
2017 Fire Department City Research Scientist 87528.15385 1.137866e+06 7128.08 5.483138e+02 0.000 191.25 13 0.000000e+00 0.00 1.144994e+06 1.137866e+06 7128.08 NULL
2017 Fire Department Clerical Aide 36772.00000 3.677200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.677200e+04 3.677200e+04 0.00 NULL
2017 Fire Department Clerical Associate 45739.80551 4.345282e+06 380483.29 4.005087e+03 226.930 10734.25 95 2.269300e+02 21558.35 4.725765e+06 4.366840e+06 358924.94 NULL
2017 Fire Department Commissioner 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2017 Fire Department Communication Electrician NA NA 1474127.45 3.071099e+04 29678.300 23221.00 48 2.967830e+04 1424558.40 NA NA NA NULL
2017 Fire Department Community Associate 42144.88327 6.321732e+05 31072.06 2.071471e+03 482.370 1045.75 15 4.823700e+02 7235.55 6.632453e+05 6.394088e+05 23836.51 NULL
2017 Fire Department Community Coordinator 58662.00000 2.170494e+06 310165.40 8.382849e+03 2940.080 7173.25 37 2.940080e+03 108782.96 2.480659e+06 2.279277e+06 201382.44 NULL
2017 Fire Department Computer Associate 70677.24458 2.685735e+06 621502.62 1.635533e+04 6096.400 10840.75 38 6.096400e+03 231663.20 3.307238e+06 2.917398e+06 389839.42 NULL
2017 Fire Department Computer Specialist 94149.91045 6.308044e+06 179198.31 2.674602e+03 177.060 2581.75 67 1.770600e+02 11863.02 6.487242e+06 6.319907e+06 167335.29 NULL
2017 Fire Department Computer Systems Manager 127992.68182 2.815839e+06 435.34 1.978818e+01 0.000 0.00 22 0.000000e+00 0.00 2.816274e+06 2.815839e+06 435.34 NULL
2017 Fire Department Construction Project Manager 72652.00000 7.265200e+04 5649.55 5.649550e+03 5649.550 104.75 1 5.649550e+03 5649.55 7.830155e+04 7.830155e+04 0.00 NULL
2017 Fire Department Counsel 172276.00000 1.722760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.722760e+05 1.722760e+05 0.00 NULL
2017 Fire Department Deputy Assistant Chief Of Department 212715.10000 2.127151e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 2.127151e+06 2.127151e+06 0.00 NULL
2017 Fire Department Deputy Chief 173291.87342 1.369006e+07 0.00 0.000000e+00 0.000 0.00 79 0.000000e+00 0.00 1.369006e+07 1.369006e+07 0.00 NULL
2017 Fire Department Deputy Commissioner 202869.50000 1.622956e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.622956e+06 1.622956e+06 0.00 NULL
2017 Fire Department Director 108261.50000 2.165230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.165230e+05 2.165230e+05 0.00 NULL
2017 Fire Department Electrical Engineer 103000.00000 1.030000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030000e+05 1.030000e+05 0.00 NULL
2017 Fire Department Electrician NA NA 367192.09 1.835960e+04 16661.595 3943.50 20 1.666160e+04 333231.90 NA NA NA NULL
2017 Fire Department Emergency Medical Specialist-Emt 42245.89695 1.373414e+08 18198921.13 5.597946e+03 3131.940 505813.72 3251 3.131940e+03 10181936.94 1.555403e+08 1.475233e+08 8016984.19 NULL
2017 Fire Department Emergency Medical Specialist-Paramedic 59210.33610 5.707876e+07 12804861.19 1.328305e+04 11186.430 262108.72 964 1.118643e+04 10783718.52 6.988363e+07 6.786248e+07 2021142.67 NULL
2017 Fire Department Employee Assistance Program Specialist 53597.07452 9.111503e+05 7178.91 4.222888e+02 0.000 212.00 17 0.000000e+00 0.00 9.183292e+05 9.111503e+05 7178.91 NULL
2017 Fire Department Engineering Technician 52460.00000 5.246000e+04 22263.73 2.226373e+04 22263.730 562.50 1 2.226373e+04 22263.73 7.472373e+04 7.472373e+04 0.00 NULL
2017 Fire Department Executive Agency Counsel 143113.92857 2.003595e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.003595e+06 2.003595e+06 0.00 NULL
2017 Fire Department Executive Director 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2017 Fire Department Executive Program Specialist 119480.00000 1.194800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.194800e+05 1.194800e+05 0.00 NULL
2017 Fire Department Fire Alarm Dispatcher 53558.33191 1.258621e+07 2212823.19 9.416269e+03 8028.110 56681.25 235 8.028110e+03 1886605.85 1.479903e+07 1.447281e+07 326217.34 NULL
2017 Fire Department Fire Marshal 95434.26667 1.145211e+07 4038212.53 3.365177e+04 28326.090 49451.48 120 2.832609e+04 3399130.80 1.549032e+07 1.485124e+07 639081.73 NULL
2017 Fire Department Fire Medical Officer 145273.21739 3.341284e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 3.341284e+06 3.341284e+06 0.00 NULL
2017 Fire Department Fire Protection Inspector 49205.07634 6.445865e+06 687452.53 5.247729e+03 1872.890 18373.49 131 1.872890e+03 245348.59 7.133318e+06 6.691214e+06 442103.94 NULL
2017 Fire Department Firefighter 73866.29002 6.418242e+08 191002562.24 2.198211e+04 21378.560 3092253.20 8689 2.137856e+04 185758307.84 8.328268e+08 8.275825e+08 5244254.40 NULL
2017 Fire Department First Deputy Commissioner 223020.00000 2.230200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.230200e+05 2.230200e+05 0.00 NULL
2017 Fire Department Head Nurse 79533.00000 3.181320e+05 47.43 1.185750e+01 0.000 1.00 4 0.000000e+00 0.00 3.181794e+05 3.181320e+05 47.43 NULL
2017 Fire Department Industrial Hygienist 44115.00000 4.411500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.411500e+04 4.411500e+04 0.00 NULL
2017 Fire Department Institutional Aide 37253.25000 2.980260e+05 34643.07 4.330384e+03 6.785 1255.75 8 6.785000e+00 54.28 3.326691e+05 2.980803e+05 34588.79 NULL
2017 Fire Department Investigator 46153.78500 9.230757e+05 87735.08 4.386754e+03 1948.685 2370.37 20 1.948685e+03 38973.70 1.010811e+06 9.620494e+05 48761.38 NULL
2017 Fire Department Investigator Empl Disc 57900.66667 5.211060e+05 25811.75 2.867972e+03 320.810 489.00 9 3.208100e+02 2887.29 5.469178e+05 5.239933e+05 22924.46 NULL
2017 Fire Department It Infrastructure Engineer 130810.00000 1.308100e+05 429.59 4.295900e+02 429.590 5.75 1 4.295900e+02 429.59 1.312396e+05 1.312396e+05 0.00 NULL
2017 Fire Department Lieutenant 99018.98947 1.598166e+08 55188919.91 3.419388e+04 33963.120 680042.53 1614 3.396312e+04 54816475.68 2.150056e+08 2.146331e+08 372444.23 NULL
2017 Fire Department Locksmith NA NA 29595.37 1.479768e+04 14797.685 663.50 2 1.479768e+04 29595.37 NA NA NA NULL
2017 Fire Department Machinist NA NA 29864.06 2.986406e+04 29864.060 542.00 1 2.986406e+04 29864.06 NA NA NA NULL
2017 Fire Department Maintenance Worker NA NA 46666.48 2.333324e+04 23333.240 936.25 2 2.333324e+04 46666.48 NA NA NA NULL
2017 Fire Department Management Auditor 49880.78500 4.988079e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.988079e+04 4.988079e+04 0.00 NULL
2017 Fire Department Manager Of Radio Repair Operations 115872.00000 1.158720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.158720e+05 1.158720e+05 0.00 NULL
2017 Fire Department Marine Engineer 93811.94118 1.594803e+06 980161.91 5.765658e+04 64555.450 12431.69 17 5.765658e+04 980161.91 2.574965e+06 2.574965e+06 0.00 NULL
2017 Fire Department Marine Maintenance Mechanic 73812.00000 3.690600e+05 47688.53 9.537706e+03 9859.660 1119.50 5 9.537706e+03 47688.53 4.167485e+05 4.167485e+05 0.00 NULL
2017 Fire Department Mechanical Engineering Intern 54899.00000 5.489900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.489900e+04 5.489900e+04 0.00 NULL
2017 Fire Department Medical Record Librarian 62049.00000 6.204900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.204900e+04 6.204900e+04 0.00 NULL
2017 Fire Department Metal Work Mechanic 84906.00000 8.490600e+04 564.21 5.642100e+02 564.210 9.25 1 5.642100e+02 564.21 8.547021e+04 8.547021e+04 0.00 NULL
2017 Fire Department Motor Vehicle Operator 46429.36624 1.021446e+06 149438.41 6.792655e+03 3075.360 4082.75 22 3.075360e+03 67657.92 1.170884e+06 1.089104e+06 81780.49 NULL
2017 Fire Department Motor Vehicle Supervisor 55306.00000 1.659180e+05 63799.97 2.126666e+04 21712.660 1456.50 3 2.126666e+04 63799.97 2.297180e+05 2.297180e+05 0.00 NULL
2017 Fire Department Oiler NA NA 158409.29 3.960232e+04 37068.735 1819.50 4 3.706874e+04 148274.94 NA NA NA NULL
2017 Fire Department Painter NA NA 51851.53 2.592576e+04 25925.765 718.25 2 2.592576e+04 51851.53 NA NA NA NULL
2017 Fire Department Physician 77872.16690 3.114887e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.114887e+05 3.114887e+05 0.00 NULL
2017 Fire Department Physician’s Assistant 86805.00000 8.680500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.680500e+04 8.680500e+04 0.00 NULL
2017 Fire Department Pilot 97903.57143 1.370650e+06 465924.95 3.328035e+04 36929.415 6032.33 14 3.328035e+04 465924.95 1.836575e+06 1.836575e+06 0.00 NULL
2017 Fire Department Planner: Production Cntrl & Scheduling 61808.33333 1.854250e+05 82704.61 2.756820e+04 27835.350 1709.50 3 2.756820e+04 82704.61 2.681296e+05 2.681296e+05 0.00 NULL
2017 Fire Department Plasterer NA NA 18499.46 1.849946e+04 18499.460 200.25 1 1.849946e+04 18499.46 NA NA NA NULL
2017 Fire Department Plumber NA NA 335642.78 1.974369e+04 19907.220 3039.50 17 1.974369e+04 335642.78 NA NA NA NULL
2017 Fire Department Principal Administrative Associate 59436.51244 6.597453e+06 303910.76 2.737935e+03 165.770 7537.75 111 1.657700e+02 18400.47 6.901364e+06 6.615853e+06 285510.29 NULL
2017 Fire Department Procurement Analyst 57757.45023 1.443936e+06 79464.61 3.178584e+03 1384.300 2127.50 25 1.384300e+03 34607.50 1.523401e+06 1.478544e+06 44857.11 NULL
2017 Fire Department Program Producer 68819.08667 2.064573e+05 5278.52 1.759507e+03 920.900 99.25 3 9.209000e+02 2762.70 2.117358e+05 2.092200e+05 2515.82 NULL
2017 Fire Department Project Manager 61104.00000 6.110400e+04 224.20 2.242000e+02 224.200 5.75 1 2.242000e+02 224.20 6.132820e+04 6.132820e+04 0.00 NULL
2017 Fire Department Project Manager Intern# 53982.00000 4.858380e+05 4990.81 5.545344e+02 60.100 141.50 9 6.010000e+01 540.90 4.908288e+05 4.863789e+05 4449.91 NULL
2017 Fire Department Public Records Officer 51153.33333 1.534600e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.534600e+05 1.534600e+05 0.00 NULL
2017 Fire Department Radio Repair Mechanic NA NA 743242.19 2.064562e+04 16727.740 10479.77 36 1.672774e+04 602198.64 NA NA NA NULL
2017 Fire Department Research Assistant 60459.51000 2.418380e+05 3175.54 7.938850e+02 0.000 93.25 4 0.000000e+00 0.00 2.450136e+05 2.418380e+05 3175.54 NULL
2017 Fire Department Roofer NA NA 1160.48 1.160480e+03 1160.480 20.75 1 1.160480e+03 1160.48 NA NA NA NULL
2017 Fire Department Rubber Tire Repairer NA NA 208785.20 2.319836e+04 19303.970 5008.50 9 1.930397e+04 173735.73 NA NA NA NULL
2017 Fire Department Secretary To The Deputy Commissioner 65801.50000 1.316030e+05 3068.57 1.534285e+03 1534.285 76.75 2 1.534285e+03 3068.57 1.346716e+05 1.346716e+05 0.00 NULL
2017 Fire Department Secretary To The Fire Commissioner 118244.00000 1.182440e+05 49188.16 4.918816e+04 49188.160 578.25 1 4.918816e+04 49188.16 1.674322e+05 1.674322e+05 0.00 NULL
2017 Fire Department Secretary To The First Deputy Commissioner 86020.00000 8.602000e+04 5061.38 5.061380e+03 5061.380 81.50 1 5.061380e+03 5061.38 9.108138e+04 9.108138e+04 0.00 NULL
2017 Fire Department Senior It Architect 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2017 Fire Department Senior Management Consultant 131840.00000 1.318400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.318400e+05 1.318400e+05 0.00 NULL
2017 Fire Department Senior Photographer 65931.62080 6.593162e+04 2597.68 2.597680e+03 2597.680 50.00 1 2.597680e+03 2597.68 6.852930e+04 6.852930e+04 0.00 NULL
2017 Fire Department Senior Stationary Engineer NA NA 124182.90 6.209145e+04 62091.450 1203.75 2 6.209145e+04 124182.90 NA NA NA NULL
2017 Fire Department Senior Supervisor Communication Electrician NA NA 9071.20 9.071200e+03 9071.200 123.50 1 9.071200e+03 9071.20 NA NA NA NULL
2017 Fire Department Sheet Metal Worker NA NA 83548.55 1.670971e+04 4334.260 742.25 5 4.334260e+03 21671.30 NA NA NA NULL
2017 Fire Department Special Assistant To The Fire Commissioner 94760.00000 9.476000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.476000e+04 9.476000e+04 0.00 NULL
2017 Fire Department Spvsg Fad-Asst Commiss Detail 151685.00000 1.516850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.516850e+05 1.516850e+05 0.00 NULL
2017 Fire Department Spvsg Fad-Dep Dir Dsptch Dtail 106252.00000 1.062520e+05 12.78 1.278000e+01 12.780 0.00 1 1.278000e+01 12.78 1.062648e+05 1.062648e+05 0.00 NULL
2017 Fire Department Spvsg Fad-Dir Dsptch Op Detail 105050.00000 2.101000e+05 2254.72 1.127360e+03 1127.360 0.00 2 1.127360e+03 2254.72 2.123547e+05 2.123547e+05 0.00 NULL
2017 Fire Department Staff Analyst 62785.14606 5.650663e+05 32214.58 3.579398e+03 901.840 776.77 9 9.018400e+02 8116.56 5.972809e+05 5.731829e+05 24098.02 NULL
2017 Fire Department Staff Analyst Trainee 51429.51547 8.228722e+05 23486.09 1.467881e+03 3.705 712.25 16 3.705000e+00 59.28 8.463583e+05 8.229315e+05 23426.81 NULL
2017 Fire Department Stationary Engineer NA NA 60164.98 6.016498e+04 60164.980 647.50 1 6.016498e+04 60164.98 NA NA NA NULL
2017 Fire Department Statistician 65093.00000 1.301860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.301860e+05 1.301860e+05 0.00 NULL
2017 Fire Department Steam Fitter NA NA 10257.50 1.025750e+04 10257.500 84.50 1 1.025750e+04 10257.50 NA NA NA NULL
2017 Fire Department Stock Worker 34306.33333 2.058380e+05 33457.14 5.576190e+03 4667.430 1546.50 6 4.667430e+03 28004.58 2.392951e+05 2.338426e+05 5452.56 NULL
2017 Fire Department Summer College Intern 1969.83707 5.909511e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.909511e+03 5.909511e+03 0.00 NULL
2017 Fire Department Summer Graduate Intern 3349.15377 2.009492e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.009492e+04 2.009492e+04 0.00 NULL
2017 Fire Department Supervising Blasting Inspector 71072.33333 6.396510e+05 303122.90 3.368032e+04 29060.750 5647.58 9 2.906075e+04 261546.75 9.427739e+05 9.011978e+05 41576.15 NULL
2017 Fire Department Supervising Communication Electrician NA NA 385244.90 5.503499e+04 52185.540 5587.00 7 5.218554e+04 365298.78 NA NA NA NULL
2017 Fire Department Supervising Computer Service Technician 65806.00000 6.580600e+04 10692.36 1.069236e+04 10692.360 235.00 1 1.069236e+04 10692.36 7.649836e+04 7.649836e+04 0.00 NULL
2017 Fire Department Supervising Emergency Medical Service Specialist 68245.14114 3.965043e+07 11378613.72 1.958453e+04 17469.500 199760.49 581 1.746950e+04 10149779.50 5.102904e+07 4.980021e+07 1228834.22 NULL
2017 Fire Department Supervising Emergency Medical Service Specialist-Dpty Chiefs 101405.08511 4.766039e+06 2697.32 5.738979e+01 0.000 0.00 47 0.000000e+00 0.00 4.768736e+06 4.766039e+06 2697.32 NULL
2017 Fire Department Supervising Fire Alarm Dispatcher 75370.06667 3.391653e+06 764901.14 1.699780e+04 17407.260 13533.00 45 1.699780e+04 764901.14 4.156554e+06 4.156554e+06 0.00 NULL
2017 Fire Department Supervising Fire Marshal 122705.03125 3.926561e+06 1286436.42 4.020114e+04 41006.400 13800.63 32 4.020114e+04 1286436.42 5.212997e+06 5.212997e+06 0.00 NULL
2017 Fire Department Supervisor Carpenter NA NA 140773.17 7.038659e+04 70386.585 1767.25 2 7.038659e+04 140773.17 NA NA NA NULL
2017 Fire Department Supervisor Electrician NA NA 145459.24 7.272962e+04 72729.620 1533.00 2 7.272962e+04 145459.24 NA NA NA NULL
2017 Fire Department Supervisor Of Electrical Installations & Maintenance 75891.28571 5.312390e+05 61346.94 8.763849e+03 1713.700 975.00 7 1.713700e+03 11995.90 5.925859e+05 5.432349e+05 49351.04 NULL
2017 Fire Department Supervisor Of Ironwork 110442.00000 1.104420e+05 2130.10 2.130100e+03 2130.100 0.00 1 2.130100e+03 2130.10 1.125721e+05 1.125721e+05 0.00 NULL
2017 Fire Department Supervisor Of Mechanics NA NA 1999641.97 3.999284e+04 46753.895 21189.00 50 3.999284e+04 1999641.97 NA NA NA NULL
2017 Fire Department Supervisor Of Stock Workers 52762.60000 1.055252e+06 286824.31 1.434122e+04 8525.235 7790.75 20 8.525235e+03 170504.70 1.342076e+06 1.225757e+06 116319.61 NULL
2017 Fire Department Supervisor Plumber NA NA 134903.37 4.496779e+04 53246.690 1237.50 3 4.496779e+04 134903.37 NA NA NA NULL
2017 Fire Department Telecommunication Manager 132286.00000 1.322860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.322860e+05 1.322860e+05 0.00 NULL
2017 Fire Department Telecommunications Associate 83412.16171 8.341216e+05 66990.72 6.699072e+03 4253.615 1229.00 10 4.253615e+03 42536.15 9.011123e+05 8.766578e+05 24454.57 NULL
2017 Fire Department Welder NA NA 32737.71 1.636885e+04 16368.855 206.67 2 1.636885e+04 32737.71 NA NA NA NULL
2017 Fire Department Wiper 88400.00000 1.326000e+06 153303.84 1.022026e+04 12713.240 2198.43 15 1.022026e+04 153303.84 1.479304e+06 1.479304e+06 0.00 NULL
2017 Guttman Community College Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 NA NA NA NULL
2017 Guttman Community College Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2017 Guttman Community College Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 126 0.000000e+00 0.00 NA NA NA NULL
2017 Guttman Community College Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 NA NA NA NULL
2017 Guttman Community College Administrator 138000.00000 1.380000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.380000e+05 1.380000e+05 0.00 NULL
2017 Guttman Community College Assistant College Security Director 81780.00000 8.178000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.178000e+04 8.178000e+04 0.00 NULL
2017 Guttman Community College Assistant Dean 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2017 Guttman Community College Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 47 0.000000e+00 0.00 NA NA NA NULL
2017 Guttman Community College Assistant To Heo 55835.27778 1.005035e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.005035e+06 1.005035e+06 0.00 NULL
2017 Guttman Community College Assistant Vice President 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2017 Guttman Community College Associate Dean 127000.00000 2.540000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.540000e+05 2.540000e+05 0.00 NULL
2017 Guttman Community College Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 NA NA NA NULL
2017 Guttman Community College Campus Peace Officer 42925.00000 1.717000e+05 23478.61 5.869653e+03 6186.190 597.75 4 5.869653e+03 23478.61 1.951786e+05 1.951786e+05 0.00 NULL
2017 Guttman Community College Campus Public Safety Sergeant 55370.00000 1.107400e+05 55095.01 2.754751e+04 27547.505 1216.50 2 2.754751e+04 55095.01 1.658350e+05 1.658350e+05 0.00 NULL
2017 Guttman Community College Campus Security Assistant 31230.14286 2.186110e+05 67441.54 9.634506e+03 11171.060 2583.00 7 9.634506e+03 67441.54 2.860525e+05 2.860525e+05 0.00 NULL
2017 Guttman Community College Clinical Professor 90149.00000 9.014900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.014900e+04 9.014900e+04 0.00 NULL
2017 Guttman Community College College Assistant 3412.32922 9.145042e+05 0.00 0.000000e+00 0.000 0.00 268 0.000000e+00 0.00 9.145042e+05 9.145042e+05 0.00 NULL
2017 Guttman Community College College Lab Technician 57281.00000 5.728100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.728100e+04 5.728100e+04 0.00 NULL
2017 Guttman Community College College Security Specialist 62373.00000 6.237300e+04 57540.69 5.754069e+04 57540.690 1093.50 1 5.754069e+04 57540.69 1.199137e+05 1.199137e+05 0.00 NULL
2017 Guttman Community College Computer Systems Manager 105000.00000 2.100000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.100000e+05 2.100000e+05 0.00 NULL
2017 Guttman Community College Continuing Education Teacher 4843.71903 1.549990e+05 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 1.549990e+05 1.549990e+05 0.00 NULL
2017 Guttman Community College Cuny Office Assistant 33204.20000 1.660210e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.660210e+05 1.660210e+05 0.00 NULL
2017 Guttman Community College Dean 147500.00000 2.950000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.950000e+05 2.950000e+05 0.00 NULL
2017 Guttman Community College Disability Accommodations Specialist 15343.30375 6.137321e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.137321e+04 6.137321e+04 0.00 NULL
2017 Guttman Community College Higher Education Assistant 68038.22222 3.061720e+06 19.92 4.426667e-01 0.000 0.00 45 0.000000e+00 0.00 3.061740e+06 3.061720e+06 19.92 NULL
2017 Guttman Community College Higher Education Associate 89639.14286 1.882422e+06 10.22 4.866667e-01 0.000 0.00 21 0.000000e+00 0.00 1.882432e+06 1.882422e+06 10.22 NULL
2017 Guttman Community College Higher Education Officer 118161.00000 3.072186e+06 11.22 4.315385e-01 0.000 0.00 26 0.000000e+00 0.00 3.072197e+06 3.072186e+06 11.22 NULL
2017 Guttman Community College Instructor NA NA 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 NA NA NA NULL
2017 Guttman Community College It Assistant 47181.00000 1.415430e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.415430e+05 1.415430e+05 0.00 NULL
2017 Guttman Community College It Associate 65572.50000 1.311450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.311450e+05 1.311450e+05 0.00 NULL
2017 Guttman Community College It Senior Associate 71713.68000 2.868547e+05 101.81 2.545250e+01 14.330 0.00 4 1.433000e+01 57.32 2.869565e+05 2.869120e+05 44.49 NULL
2017 Guttman Community College It Support Assistant 23976.00000 7.192800e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.192800e+04 7.192800e+04 0.00 NULL
2017 Guttman Community College Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 NA NA NA NULL
2017 Guttman Community College Non-Teaching Adjunct I 2748.43666 2.033843e+05 0.00 0.000000e+00 0.000 0.00 74 0.000000e+00 0.00 2.033843e+05 2.033843e+05 0.00 NULL
2017 Guttman Community College Non-Teaching Adjunct Ii 3177.15429 2.224008e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.224008e+04 2.224008e+04 0.00 NULL
2017 Guttman Community College Non-Teaching Adjunct Iii 857.67914 3.001877e+04 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 3.001877e+04 3.001877e+04 0.00 NULL
2017 Guttman Community College Non-Teaching Adjunct Iv 2028.89682 2.231787e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 2.231787e+04 2.231787e+04 0.00 NULL
2017 Guttman Community College Non-Teaching Adjunct V 626.29500 1.002072e+04 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.002072e+04 1.002072e+04 0.00 NULL
2017 Guttman Community College President 210000.00000 2.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.100000e+05 2.100000e+05 0.00 NULL
2017 Guttman Community College Professor NA NA 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 NA NA NA NULL
2017 Guttman Community College Student Aide 1351.48214 3.784150e+04 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 3.784150e+04 3.784150e+04 0.00 NULL
2017 Guttman Community College Vice President 184000.00000 5.520000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.520000e+05 5.520000e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt *Certified Wide Area Network Administrator 119067.00000 1.190670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.190670e+05 1.190670e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Accountant 58504.56778 1.462614e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.462614e+06 1.462614e+06 0.00 NULL
2017 Housing Preservation & Dvlpmnt Adm Manager-Non-Mgrl 71890.25998 6.398233e+06 54702.51 6.146349e+02 0.000 1103.00 89 0.000000e+00 0.00 6.452936e+06 6.398233e+06 54702.51 NULL
2017 Housing Preservation & Dvlpmnt Admin Community Relations Specialist 93384.85714 6.536940e+05 988.32 1.411886e+02 0.000 32.75 7 0.000000e+00 0.00 6.546823e+05 6.536940e+05 988.32 NULL
2017 Housing Preservation & Dvlpmnt Admin Housing Development Spec 94323.80000 2.829714e+06 64801.94 2.160065e+03 0.000 900.25 30 0.000000e+00 0.00 2.894516e+06 2.829714e+06 64801.94 NULL
2017 Housing Preservation & Dvlpmnt Administrative Accountant 101096.50000 2.021930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.021930e+05 2.021930e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Administrative Architect 101327.00000 2.026540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.026540e+05 2.026540e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Administrative City Planner 103125.00000 1.443750e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.443750e+06 1.443750e+06 0.00 NULL
2017 Housing Preservation & Dvlpmnt Administrative Engineer 112732.00000 3.381960e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.381960e+05 3.381960e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Administrative Housing Development Specialist 111166.49420 2.445663e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 2.445663e+06 2.445663e+06 0.00 NULL
2017 Housing Preservation & Dvlpmnt Administrative Inspector 95085.15385 1.236107e+06 13018.98 1.001460e+03 0.000 238.50 13 0.000000e+00 0.00 1.249126e+06 1.236107e+06 13018.98 NULL
2017 Housing Preservation & Dvlpmnt Administrative Management Auditor 112594.50000 2.251890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.251890e+05 2.251890e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Administrative Manager 139189.00000 6.959450e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.959450e+05 6.959450e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Administrative Procurement Analyst 94687.50000 5.681250e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.681250e+05 5.681250e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Administrative Project Director 115979.66667 3.131451e+06 28115.51 1.041315e+03 0.000 457.50 27 0.000000e+00 0.00 3.159567e+06 3.131451e+06 28115.51 NULL
2017 Housing Preservation & Dvlpmnt Administrative Project Manager 118214.40000 1.182144e+06 150.22 1.502200e+01 0.000 2.75 10 0.000000e+00 0.00 1.182294e+06 1.182144e+06 150.22 NULL
2017 Housing Preservation & Dvlpmnt Administrative Public Information Specialist 92866.50000 1.857330e+05 726.17 3.630850e+02 363.085 15.25 2 3.630850e+02 726.17 1.864592e+05 1.864592e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Administrative Real Property Manager 90662.42857 6.346370e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.346370e+05 6.346370e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Administrative Staff Analyst 98795.73563 8.595229e+06 58429.45 6.716029e+02 0.000 1154.50 87 0.000000e+00 0.00 8.653658e+06 8.595229e+06 58429.45 NULL
2017 Housing Preservation & Dvlpmnt Administrative Supervisor Of Building Maintenance 102988.00000 1.029880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.029880e+05 1.029880e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Agency Attorney 88214.92800 4.410746e+06 0.00 0.000000e+00 0.000 0.00 50 0.000000e+00 0.00 4.410746e+06 4.410746e+06 0.00 NULL
2017 Housing Preservation & Dvlpmnt Agency Attorney Interne 57945.00000 1.738350e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.738350e+05 1.738350e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Agency Chief Contracting Officer 138000.00000 1.380000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.380000e+05 1.380000e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Appraiser 67296.66667 4.037800e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.037800e+05 4.037800e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Architect 79241.00000 7.924100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.924100e+04 7.924100e+04 0.00 NULL
2017 Housing Preservation & Dvlpmnt Assistant Architect 65487.00000 1.178766e+06 25432.47 1.412915e+03 0.000 549.50 18 0.000000e+00 0.00 1.204198e+06 1.178766e+06 25432.47 NULL
2017 Housing Preservation & Dvlpmnt Assistant Commissioner 142483.37500 1.139867e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.139867e+06 1.139867e+06 0.00 NULL
2017 Housing Preservation & Dvlpmnt Assistant Electrical Engineer 65506.00000 6.550600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.550600e+04 6.550600e+04 0.00 NULL
2017 Housing Preservation & Dvlpmnt Assistant Mechanical Engineer 65459.66667 3.927580e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.927580e+05 3.927580e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Associate Housing Development Specialist 86329.93548 2.676228e+06 11728.52 3.783394e+02 0.000 219.00 31 0.000000e+00 0.00 2.687957e+06 2.676228e+06 11728.52 NULL
2017 Housing Preservation & Dvlpmnt Associate Inspector 67403.42308 3.504978e+06 141610.46 2.723278e+03 1183.365 2571.18 52 1.183365e+03 61534.98 3.646588e+06 3.566513e+06 80075.48 NULL
2017 Housing Preservation & Dvlpmnt Associate Investigator 63860.00000 1.277200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.277200e+05 1.277200e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Associate Project Manager 88567.70000 8.856770e+05 44304.03 4.430403e+03 0.000 703.00 10 0.000000e+00 0.00 9.299810e+05 8.856770e+05 44304.03 NULL
2017 Housing Preservation & Dvlpmnt Associate Quality Assurance Specialist 63706.00000 1.911180e+05 11655.83 3.885277e+03 5334.250 344.75 3 3.885277e+03 11655.83 2.027738e+05 2.027738e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Associate Real Property Manager 64103.04082 3.141049e+06 11089.38 2.263139e+02 0.000 195.75 49 0.000000e+00 0.00 3.152138e+06 3.141049e+06 11089.38 NULL
2017 Housing Preservation & Dvlpmnt Associate Rehabilitation Specialist 65312.00000 1.306240e+05 780.20 3.901000e+02 390.100 14.25 2 3.901000e+02 780.20 1.314042e+05 1.314042e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Associate Staff Analyst 83878.88000 2.096972e+06 1461.08 5.844320e+01 0.000 32.25 25 0.000000e+00 0.00 2.098433e+06 2.096972e+06 1461.08 NULL
2017 Housing Preservation & Dvlpmnt Attorney At Law 94819.18329 1.422288e+06 8378.16 5.585440e+02 0.000 147.75 15 0.000000e+00 0.00 1.430666e+06 1.422288e+06 8378.16 NULL
2017 Housing Preservation & Dvlpmnt Bookkeeper 51359.00000 3.081540e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.081540e+05 3.081540e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Certified It Administrator 104863.50000 2.097270e+05 0.00 0.000000e+00 0.000 2.00 2 0.000000e+00 0.00 2.097270e+05 2.097270e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt City Planner 85075.19048 1.786579e+06 5247.61 2.498862e+02 0.000 96.75 21 0.000000e+00 0.00 1.791827e+06 1.786579e+06 5247.61 NULL
2017 Housing Preservation & Dvlpmnt City Research Scientist 78496.16667 4.709770e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.709770e+05 4.709770e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Civil Engineer 84848.50000 1.696970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.696970e+05 1.696970e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Clerical Aide 37925.00000 3.792500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.792500e+04 3.792500e+04 0.00 NULL
2017 Housing Preservation & Dvlpmnt Clerical Associate 42908.91057 7.208697e+06 68426.20 4.072988e+02 0.000 2031.00 168 0.000000e+00 0.00 7.277123e+06 7.208697e+06 68426.20 NULL
2017 Housing Preservation & Dvlpmnt Commissioner Of Housing Preservation & Development 226366.00000 4.527320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.527320e+05 4.527320e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Community Assistant 37815.65367 1.550442e+06 22125.53 5.396471e+02 0.000 961.75 41 0.000000e+00 0.00 1.572567e+06 1.550442e+06 22125.53 NULL
2017 Housing Preservation & Dvlpmnt Community Associate 44916.51082 1.486737e+07 227791.39 6.881915e+02 0.000 8598.73 331 0.000000e+00 0.00 1.509516e+07 1.486737e+07 227791.39 NULL
2017 Housing Preservation & Dvlpmnt Community Coordinator 64662.17241 1.687683e+07 218832.57 8.384390e+02 0.000 5100.75 261 0.000000e+00 0.00 1.709566e+07 1.687683e+07 218832.57 NULL
2017 Housing Preservation & Dvlpmnt Community Service Aide 28681.59473 2.581344e+05 354.24 3.936000e+01 0.000 15.00 9 0.000000e+00 0.00 2.584886e+05 2.581344e+05 354.24 NULL
2017 Housing Preservation & Dvlpmnt Computer Aide-Non-Spvr 58231.00000 5.823100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.823100e+04 5.823100e+04 0.00 NULL
2017 Housing Preservation & Dvlpmnt Computer Associate 85565.92683 3.508203e+06 34893.52 8.510615e+02 0.000 535.50 41 0.000000e+00 0.00 3.543097e+06 3.508203e+06 34893.52 NULL
2017 Housing Preservation & Dvlpmnt Computer Operations Manager 116900.40000 5.845020e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.845020e+05 5.845020e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Computer Programmer Analyst 69981.66667 2.099450e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.099450e+05 2.099450e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Computer Specialist 98216.00000 4.223288e+06 11888.61 2.764793e+02 0.000 148.75 43 0.000000e+00 0.00 4.235177e+06 4.223288e+06 11888.61 NULL
2017 Housing Preservation & Dvlpmnt Computer Systems Manager 125018.21429 1.750255e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.750255e+06 1.750255e+06 0.00 NULL
2017 Housing Preservation & Dvlpmnt Confidential Strategy Planner 86000.00000 1.720000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.720000e+05 1.720000e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Construction Project Manager 71511.03738 1.530336e+07 458884.53 2.144320e+03 66.510 7703.00 214 6.651000e+01 14233.14 1.576225e+07 1.531760e+07 444651.39 NULL
2017 Housing Preservation & Dvlpmnt Construction Project Manager Intern 47860.00000 4.786000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.786000e+04 4.786000e+04 0.00 NULL
2017 Housing Preservation & Dvlpmnt Deputy Commissioner 199365.14286 1.395556e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.395556e+06 1.395556e+06 0.00 NULL
2017 Housing Preservation & Dvlpmnt Deputy Counsel 128980.50000 2.579610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.579610e+05 2.579610e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Deputy General Counsel 154250.00000 6.170000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.170000e+05 6.170000e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Electrician NA NA 103382.70 1.033827e+05 103382.700 1195.00 1 1.033827e+05 103382.70 NA NA NA NULL
2017 Housing Preservation & Dvlpmnt Eligibility Specialist 47509.00000 4.750900e+04 1478.78 1.478780e+03 1478.780 55.00 1 1.478780e+03 1478.78 4.898778e+04 4.898778e+04 0.00 NULL
2017 Housing Preservation & Dvlpmnt Estimator 68653.00000 1.373060e+05 3904.69 1.952345e+03 1952.345 98.50 2 1.952345e+03 3904.69 1.412107e+05 1.412107e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Executive Agency Counsel 133870.78261 3.079028e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 3.079028e+06 3.079028e+06 0.00 NULL
2017 Housing Preservation & Dvlpmnt Executive Director 184756.00000 1.847560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.847560e+05 1.847560e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Executive Program Specialist 96500.00000 1.930000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.930000e+05 1.930000e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt General Counsel 184756.00000 1.847560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.847560e+05 1.847560e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Housing Development Specialist 72230.48193 5.995130e+06 122369.25 1.474328e+03 0.000 2141.00 83 0.000000e+00 0.00 6.117499e+06 5.995130e+06 122369.25 NULL
2017 Housing Preservation & Dvlpmnt Housing Development Specialist Trainee 47508.00000 4.750800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.750800e+04 4.750800e+04 0.00 NULL
2017 Housing Preservation & Dvlpmnt Industrial Hygienist 64815.00000 6.481500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.481500e+04 6.481500e+04 0.00 NULL
2017 Housing Preservation & Dvlpmnt Inspector 55846.87937 1.759177e+07 328954.13 1.044299e+03 17.910 7607.25 315 1.791000e+01 5641.65 1.792072e+07 1.759741e+07 323312.48 NULL
2017 Housing Preservation & Dvlpmnt Investigator Empl Disc 58689.64706 9.977240e+05 7937.85 4.669324e+02 0.000 224.50 17 0.000000e+00 0.00 1.005662e+06 9.977240e+05 7937.85 NULL
2017 Housing Preservation & Dvlpmnt Lead Abatement Worker 50220.20000 2.511010e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.511010e+05 2.511010e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Legislative Assistant 87600.00000 3.504000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.504000e+05 3.504000e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Management Auditor 72091.00000 7.209100e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.209100e+05 7.209100e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Multiple Dwelling Specialist 65459.00000 1.963770e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.963770e+05 1.963770e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Paralegal Aide 54729.00000 5.472900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.472900e+04 5.472900e+04 0.00 NULL
2017 Housing Preservation & Dvlpmnt Principal Administrative Associate 58617.74286 8.206484e+06 50059.44 3.575674e+02 0.000 1046.25 140 0.000000e+00 0.00 8.256543e+06 8.206484e+06 50059.44 NULL
2017 Housing Preservation & Dvlpmnt Principal Appraiser 113130.00000 1.131300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.131300e+05 1.131300e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Procurement Analyst 61464.44444 5.531800e+05 10309.16 1.145462e+03 0.000 228.25 9 0.000000e+00 0.00 5.634892e+05 5.531800e+05 10309.16 NULL
2017 Housing Preservation & Dvlpmnt Project Manager 69729.00000 1.394580e+05 1528.96 7.644800e+02 764.480 23.50 2 7.644800e+02 1528.96 1.409870e+05 1.409870e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Quality Assurance Specialist 53407.00000 2.136280e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.136280e+05 2.136280e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Real Property Manager 56126.14815 1.515406e+06 2674.38 9.905111e+01 0.000 72.75 27 0.000000e+00 0.00 1.518080e+06 1.515406e+06 2674.38 NULL
2017 Housing Preservation & Dvlpmnt Repair Crew Chief 39464.00000 3.157120e+05 6087.45 7.609312e+02 0.000 206.25 8 0.000000e+00 0.00 3.217995e+05 3.157120e+05 6087.45 NULL
2017 Housing Preservation & Dvlpmnt Repair Shop Manager 72851.00000 7.285100e+04 38517.67 3.851767e+04 38517.670 675.00 1 3.851767e+04 38517.67 1.113687e+05 1.113687e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Secretary 42911.87500 1.029885e+06 5312.75 2.213646e+02 0.000 194.50 24 0.000000e+00 0.00 1.035198e+06 1.029885e+06 5312.75 NULL
2017 Housing Preservation & Dvlpmnt Secretary Of Comm 85982.00000 8.598200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.598200e+04 8.598200e+04 0.00 NULL
2017 Housing Preservation & Dvlpmnt Secretary To The Deputy Commissioner 73397.00000 7.339700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.339700e+04 7.339700e+04 0.00 NULL
2017 Housing Preservation & Dvlpmnt Senior Estimator 79477.00000 2.384310e+05 30.79 1.026333e+01 0.000 0.75 3 0.000000e+00 0.00 2.384618e+05 2.384310e+05 30.79 NULL
2017 Housing Preservation & Dvlpmnt Senior Intergroup Relations Officer 49297.00000 4.929700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.929700e+04 4.929700e+04 0.00 NULL
2017 Housing Preservation & Dvlpmnt Senior Repair Crew Chief 57969.20000 2.898460e+05 135013.15 2.700263e+04 22789.270 2773.25 5 2.278927e+04 113946.35 4.248592e+05 4.037923e+05 21066.80 NULL
2017 Housing Preservation & Dvlpmnt Staff Analyst 63992.00000 5.759280e+05 4425.62 4.917356e+02 0.000 99.25 9 0.000000e+00 0.00 5.803536e+05 5.759280e+05 4425.62 NULL
2017 Housing Preservation & Dvlpmnt Strategic Initiative Specialist 94500.00000 2.835000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.835000e+05 2.835000e+05 0.00 NULL
2017 Housing Preservation & Dvlpmnt Supervising Computer Service Technician 71297.00000 7.129700e+04 462.06 4.620600e+02 462.060 10.50 1 4.620600e+02 462.06 7.175906e+04 7.175906e+04 0.00 NULL
2017 Housing Preservation & Dvlpmnt Supervising Demolition Inspector 72370.50000 2.894820e+05 13070.65 3.267662e+03 2837.130 220.50 4 2.837130e+03 11348.52 3.025527e+05 3.008305e+05 1722.13 NULL
2017 Housing Preservation & Dvlpmnt Supervisor Of Electrical Installations & Maintenance 77749.66667 6.997470e+05 18444.95 2.049439e+03 43.430 300.00 9 4.343000e+01 390.87 7.181919e+05 7.001379e+05 18054.08 NULL
2017 Housing Preservation & Dvlpmnt Supervisor Of Mechanical Installations & Maintenance 71912.00000 1.150592e+06 55273.12 3.454570e+03 0.000 913.00 16 0.000000e+00 0.00 1.205865e+06 1.150592e+06 55273.12 NULL
2017 Housing Preservation & Dvlpmnt Supervisor Of Stock Workers 66462.00000 6.646200e+04 7126.03 7.126030e+03 7126.030 106.25 1 7.126030e+03 7126.03 7.358803e+04 7.358803e+04 0.00 NULL
2017 Hra/Dept Of Social Services *Certified Applications Developer 120619.00000 1.206190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.206190e+05 1.206190e+05 0.00 NULL
2017 Hra/Dept Of Social Services *Certified Database Administrator 107146.00000 1.071460e+05 16888.25 1.688825e+04 16888.250 204.00 1 1.688825e+04 16888.25 1.240342e+05 1.240342e+05 0.00 NULL
2017 Hra/Dept Of Social Services *Certified Local Area Network Administrator 95788.46154 1.245250e+06 116487.44 8.960572e+03 1648.590 1628.50 13 1.648590e+03 21431.67 1.361737e+06 1.266682e+06 95055.77 NULL
2017 Hra/Dept Of Social Services *Certified Wide Area Network Administrator 100393.50000 2.007870e+05 463.68 2.318400e+02 231.840 8.00 2 2.318400e+02 463.68 2.012507e+05 2.012507e+05 0.00 NULL
2017 Hra/Dept Of Social Services *Custodial Assistant 35298.60000 1.764930e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.764930e+05 1.764930e+05 0.00 NULL
2017 Hra/Dept Of Social Services Accountant 61031.88235 1.037542e+06 691.20 4.065882e+01 0.000 18.50 17 0.000000e+00 0.00 1.038233e+06 1.037542e+06 691.20 NULL
2017 Hra/Dept Of Social Services Adm Manager-Non-Mgrl 69562.25556 6.260603e+06 335405.52 3.726728e+03 0.000 7599.25 90 0.000000e+00 0.00 6.596009e+06 6.260603e+06 335405.52 NULL
2017 Hra/Dept Of Social Services Admin Community Relations Specialist 91360.61667 5.481637e+06 108479.15 1.807986e+03 0.000 1954.00 60 0.000000e+00 0.00 5.590116e+06 5.481637e+06 108479.15 NULL
2017 Hra/Dept Of Social Services Admin Construction Project Manager 110184.00000 1.101840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.101840e+05 1.101840e+05 0.00 NULL
2017 Hra/Dept Of Social Services Admin Contract Specialist 100546.04762 2.111467e+06 1311.28 6.244190e+01 0.000 17.50 21 0.000000e+00 0.00 2.112778e+06 2.111467e+06 1311.28 NULL
2017 Hra/Dept Of Social Services Admin Job Opor Spec-Managerial 120661.67857 3.378527e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 3.378527e+06 3.378527e+06 0.00 NULL
2017 Hra/Dept Of Social Services Admin Job Opportunity Spec Nm 81855.60396 8.267416e+06 932532.40 9.232994e+03 9425.410 16111.75 101 9.232994e+03 932532.40 9.199948e+06 9.199948e+06 0.00 NULL
2017 Hra/Dept Of Social Services Administrative Accountant 94291.81818 1.037210e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.037210e+06 1.037210e+06 0.00 NULL
2017 Hra/Dept Of Social Services Administrative Architect 118426.33333 3.552790e+05 27774.83 9.258277e+03 0.000 397.00 3 0.000000e+00 0.00 3.830538e+05 3.552790e+05 27774.83 NULL
2017 Hra/Dept Of Social Services Administrative City Planner 82638.00000 8.263800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.263800e+04 8.263800e+04 0.00 NULL
2017 Hra/Dept Of Social Services Administrative Community Relations Specialist 141597.00000 7.079850e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.079850e+05 7.079850e+05 0.00 NULL
2017 Hra/Dept Of Social Services Administrative Construction Project Manager 114639.00000 1.146390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.146390e+05 1.146390e+05 0.00 NULL
2017 Hra/Dept Of Social Services Administrative Director Of Social Services 98417.81731 2.047091e+07 10028.54 4.821413e+01 0.000 188.00 208 0.000000e+00 0.00 2.048093e+07 2.047091e+07 10028.54 NULL
2017 Hra/Dept Of Social Services Administrative Engineer 110728.00000 3.321840e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.321840e+05 3.321840e+05 0.00 NULL
2017 Hra/Dept Of Social Services Administrative Graphic Artist 88319.00000 8.831900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.831900e+04 8.831900e+04 0.00 NULL
2017 Hra/Dept Of Social Services Administrative Investigator 85769.20000 3.430768e+06 7881.49 1.970373e+02 0.000 139.50 40 0.000000e+00 0.00 3.438649e+06 3.430768e+06 7881.49 NULL
2017 Hra/Dept Of Social Services Administrative Labor Relations Analyst 105957.00000 1.059570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.059570e+05 1.059570e+05 0.00 NULL
2017 Hra/Dept Of Social Services Administrative Management Auditor 96358.72727 1.059946e+06 34.28 3.116364e+00 0.000 0.00 11 0.000000e+00 0.00 1.059980e+06 1.059946e+06 34.28 NULL
2017 Hra/Dept Of Social Services Administrative Manager 110546.40000 5.527320e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.527320e+05 5.527320e+05 0.00 NULL
2017 Hra/Dept Of Social Services Administrative Printing Services Manager 99293.00000 3.971720e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.971720e+05 3.971720e+05 0.00 NULL
2017 Hra/Dept Of Social Services Administrative Procurement Analyst 93662.90909 3.090876e+06 6967.32 2.111309e+02 0.000 143.50 33 0.000000e+00 0.00 3.097843e+06 3.090876e+06 6967.32 NULL
2017 Hra/Dept Of Social Services Administrative Project Manager 103599.00000 3.107970e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.107970e+05 3.107970e+05 0.00 NULL
2017 Hra/Dept Of Social Services Administrative Public Information Specialist 101721.18182 1.118933e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.118933e+06 1.118933e+06 0.00 NULL
2017 Hra/Dept Of Social Services Administrative Space Analyst 93855.40000 9.385540e+05 409.24 4.092400e+01 0.000 10.50 10 0.000000e+00 0.00 9.389632e+05 9.385540e+05 409.24 NULL
2017 Hra/Dept Of Social Services Administrative Staff Analyst 93746.62349 3.112388e+07 219789.58 6.620168e+02 0.000 3566.25 332 0.000000e+00 0.00 3.134367e+07 3.112388e+07 219789.58 NULL
2017 Hra/Dept Of Social Services Administrative Storekeeper 102410.33333 3.072310e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.072310e+05 3.072310e+05 0.00 NULL
2017 Hra/Dept Of Social Services Administrative Supervisor Of Building Maintenance 120896.00000 7.253760e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.253760e+05 7.253760e+05 0.00 NULL
2017 Hra/Dept Of Social Services Agency Attorney 79165.05505 8.628991e+06 112084.32 1.028297e+03 0.000 2020.50 109 0.000000e+00 0.00 8.741075e+06 8.628991e+06 112084.32 NULL
2017 Hra/Dept Of Social Services Agency Attorney Interne 62867.85714 8.801500e+05 1284.44 9.174571e+01 0.000 32.50 14 0.000000e+00 0.00 8.814344e+05 8.801500e+05 1284.44 NULL
2017 Hra/Dept Of Social Services Agency Chief Contracting Officer 180288.00000 1.802880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.802880e+05 1.802880e+05 0.00 NULL
2017 Hra/Dept Of Social Services Architect 88492.25000 3.539690e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.539690e+05 3.539690e+05 0.00 NULL
2017 Hra/Dept Of Social Services Assistant Administrator Of Public Affairs 162346.00000 1.623460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.623460e+05 1.623460e+05 0.00 NULL
2017 Hra/Dept Of Social Services Assistant Architect 79726.00000 7.972600e+04 1419.51 1.419510e+03 1419.510 35.00 1 1.419510e+03 1419.51 8.114551e+04 8.114551e+04 0.00 NULL
2017 Hra/Dept Of Social Services Assistant Commissioner 151222.87500 1.209783e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.209783e+06 1.209783e+06 0.00 NULL
2017 Hra/Dept Of Social Services Assistant Deputy Administrator 169912.50000 3.398250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.398250e+05 3.398250e+05 0.00 NULL
2017 Hra/Dept Of Social Services Assistant Deputy Commissioner Ss 118077.00000 1.180770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.180770e+05 1.180770e+05 0.00 NULL
2017 Hra/Dept Of Social Services Assistant Printing Press Operator 56548.00000 1.130960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.130960e+05 1.130960e+05 0.00 NULL
2017 Hra/Dept Of Social Services Assistant Superintendent Of Welfare Shelters 64567.38462 8.393760e+05 109778.38 8.444491e+03 9631.630 2257.25 13 8.444491e+03 109778.38 9.491544e+05 9.491544e+05 0.00 NULL
2017 Hra/Dept Of Social Services Associate Commissioner For Adult Services 200943.00000 2.009430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.009430e+05 2.009430e+05 0.00 NULL
2017 Hra/Dept Of Social Services Associate Commissioner For Employment Service 142526.00000 1.425260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.425260e+05 1.425260e+05 0.00 NULL
2017 Hra/Dept Of Social Services Associate Commissioner For Personnel Service 120974.00000 1.209740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.209740e+05 1.209740e+05 0.00 NULL
2017 Hra/Dept Of Social Services Associate Contract Specialist 65068.09091 7.157490e+05 1362.30 1.238455e+02 0.000 25.75 11 0.000000e+00 0.00 7.171113e+05 7.157490e+05 1362.30 NULL
2017 Hra/Dept Of Social Services Associate Fraud Investigator 67018.70000 1.474411e+07 201570.11 9.162278e+02 0.000 3617.50 220 0.000000e+00 0.00 1.494568e+07 1.474411e+07 201570.11 NULL
2017 Hra/Dept Of Social Services Associate Investigator 69643.00000 6.964300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.964300e+04 6.964300e+04 0.00 NULL
2017 Hra/Dept Of Social Services Associate Job Opportunity Specialist 59850.92657 5.135210e+07 6174282.49 7.196133e+03 5033.420 139424.00 858 5.033420e+03 4318674.36 5.752638e+07 5.567077e+07 1855608.13 NULL
2017 Hra/Dept Of Social Services Associate Labor Relations Analyst 84394.42857 5.907610e+05 530.36 7.576571e+01 0.000 10.75 7 0.000000e+00 0.00 5.912914e+05 5.907610e+05 530.36 NULL
2017 Hra/Dept Of Social Services Associate Project Manager 77669.00000 1.553380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.553380e+05 1.553380e+05 0.00 NULL
2017 Hra/Dept Of Social Services Associate Staff Analyst 78077.82222 1.405401e+07 148883.06 8.271281e+02 0.000 2769.75 180 0.000000e+00 0.00 1.420289e+07 1.405401e+07 148883.06 NULL
2017 Hra/Dept Of Social Services Attorney At Law 83656.10000 8.365610e+05 14530.74 1.453074e+03 0.000 231.25 10 0.000000e+00 0.00 8.510917e+05 8.365610e+05 14530.74 NULL
2017 Hra/Dept Of Social Services Bookbinder 39614.00000 3.961400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.961400e+04 3.961400e+04 0.00 NULL
2017 Hra/Dept Of Social Services Bookkeeper 47063.86111 5.082897e+06 337966.01 3.129315e+03 0.000 10109.25 108 0.000000e+00 0.00 5.420863e+06 5.082897e+06 337966.01 NULL
2017 Hra/Dept Of Social Services Business Promotion Coordinator 84726.66667 2.541800e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.541800e+05 2.541800e+05 0.00 NULL
2017 Hra/Dept Of Social Services Carpenter NA NA 184549.77 1.318213e+04 13146.500 2086.00 14 1.314650e+04 184051.00 NA NA NA NULL
2017 Hra/Dept Of Social Services Caseworker 44274.75096 6.915716e+07 1904355.10 1.219177e+03 0.000 55527.32 1562 0.000000e+00 0.00 7.106152e+07 6.915716e+07 1904355.10 NULL
2017 Hra/Dept Of Social Services Cement Mason NA NA 35445.65 1.772283e+04 17722.825 396.75 2 1.772283e+04 35445.65 NA NA NA NULL
2017 Hra/Dept Of Social Services Certified It Administrator 97773.72000 2.444343e+06 188117.09 7.524684e+03 2730.710 2479.50 25 2.730710e+03 68267.75 2.632460e+06 2.512611e+06 119849.34 NULL
2017 Hra/Dept Of Social Services Certified It Developer 105745.50000 6.344730e+05 50417.48 8.402913e+03 6184.775 650.50 6 6.184775e+03 37108.65 6.848905e+05 6.715817e+05 13308.83 NULL
2017 Hra/Dept Of Social Services Chief Of Staff 190833.00000 1.908330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.908330e+05 1.908330e+05 0.00 NULL
2017 Hra/Dept Of Social Services City Custodial Assistant 36171.00000 1.085130e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.085130e+05 1.085130e+05 0.00 NULL
2017 Hra/Dept Of Social Services City Laborer NA NA 120703.06 6.705726e+03 7365.190 1946.75 18 6.705726e+03 120703.06 NA NA NA NULL
2017 Hra/Dept Of Social Services City Planner 81236.00000 8.123600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.123600e+04 8.123600e+04 0.00 NULL
2017 Hra/Dept Of Social Services City Research Scientist 82231.00000 5.262784e+06 11745.52 1.835238e+02 0.000 326.00 64 0.000000e+00 0.00 5.274530e+06 5.262784e+06 11745.52 NULL
2017 Hra/Dept Of Social Services Civil Engineer 92075.00000 9.207500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.207500e+04 9.207500e+04 0.00 NULL
2017 Hra/Dept Of Social Services Clerical Aide 31706.16667 1.902370e+05 660.44 1.100733e+02 0.000 31.00 6 0.000000e+00 0.00 1.908974e+05 1.902370e+05 660.44 NULL
2017 Hra/Dept Of Social Services Clerical Associate 38516.39493 4.105848e+07 1504461.57 1.411315e+03 0.000 52268.38 1066 0.000000e+00 0.00 4.256294e+07 4.105848e+07 1504461.57 NULL
2017 Hra/Dept Of Social Services Community Assistant 34778.36948 3.164832e+06 92157.16 1.012716e+03 0.000 4193.40 91 0.000000e+00 0.00 3.256989e+06 3.164832e+06 92157.16 NULL
2017 Hra/Dept Of Social Services Community Associate 45239.29039 1.352655e+07 235086.92 7.862439e+02 42.080 6608.50 299 4.208000e+01 12581.92 1.376163e+07 1.353913e+07 222505.00 NULL
2017 Hra/Dept Of Social Services Community Coordinator 61634.62835 1.460741e+07 357730.38 1.509411e+03 0.000 8508.75 237 0.000000e+00 0.00 1.496514e+07 1.460741e+07 357730.38 NULL
2017 Hra/Dept Of Social Services Computer Aide-Non-Spvr 46503.40000 4.650340e+05 59.76 5.976000e+00 0.000 2.25 10 0.000000e+00 0.00 4.650938e+05 4.650340e+05 59.76 NULL
2017 Hra/Dept Of Social Services Computer Associate 70336.10194 1.448924e+07 465834.91 2.261335e+03 0.000 9345.75 206 0.000000e+00 0.00 1.495507e+07 1.448924e+07 465834.91 NULL
2017 Hra/Dept Of Social Services Computer Operations Manager 96275.97200 9.627597e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 9.627597e+05 9.627597e+05 0.00 NULL
2017 Hra/Dept Of Social Services Computer Programmer Analyst 58049.00000 6.965880e+05 12716.79 1.059733e+03 0.000 303.75 12 0.000000e+00 0.00 7.093048e+05 6.965880e+05 12716.79 NULL
2017 Hra/Dept Of Social Services Computer Programmer Analyst Trainee 43916.00000 8.783200e+04 10735.56 5.367780e+03 5367.780 353.50 2 5.367780e+03 10735.56 9.856756e+04 9.856756e+04 0.00 NULL
2017 Hra/Dept Of Social Services Computer Service Technician 45167.76923 5.871810e+05 61656.47 4.742805e+03 1630.920 1961.00 13 1.630920e+03 21201.96 6.488375e+05 6.083830e+05 40454.51 NULL
2017 Hra/Dept Of Social Services Computer Specialist 95121.06295 3.928500e+07 2155479.76 5.219079e+03 0.000 30306.00 413 0.000000e+00 0.00 4.144048e+07 3.928500e+07 2155479.76 NULL
2017 Hra/Dept Of Social Services Computer Systems Manager 117116.73770 1.428824e+07 0.00 0.000000e+00 0.000 0.00 122 0.000000e+00 0.00 1.428824e+07 1.428824e+07 0.00 NULL
2017 Hra/Dept Of Social Services Confidential Strategy Planner 86044.63636 9.464910e+05 4221.74 3.837945e+02 0.000 119.75 11 0.000000e+00 0.00 9.507127e+05 9.464910e+05 4221.74 NULL
2017 Hra/Dept Of Social Services Construction Project Manager 80622.66667 2.418680e+05 3863.43 1.287810e+03 1099.440 70.75 3 1.099440e+03 3298.32 2.457314e+05 2.451663e+05 565.11 NULL
2017 Hra/Dept Of Social Services Consultant 70467.80000 7.046780e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.046780e+05 7.046780e+05 0.00 NULL
2017 Hra/Dept Of Social Services Contract Specialist 56933.53846 7.401360e+05 333.82 2.567846e+01 0.000 13.75 13 0.000000e+00 0.00 7.404698e+05 7.401360e+05 333.82 NULL
2017 Hra/Dept Of Social Services Custodian 40402.45652 3.717026e+06 642814.97 6.987119e+03 7954.060 21073.72 92 6.987119e+03 642814.97 4.359841e+06 4.359841e+06 0.00 NULL
2017 Hra/Dept Of Social Services Deputy Asst Admin For Personnel Adm & Labor Rel 176310.00000 1.763100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.763100e+05 1.763100e+05 0.00 NULL
2017 Hra/Dept Of Social Services Deputy Commissioner 191394.00000 3.827880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.827880e+05 3.827880e+05 0.00 NULL
2017 Hra/Dept Of Social Services Deputy Director Of Administration 139955.84615 1.819426e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.819426e+06 1.819426e+06 0.00 NULL
2017 Hra/Dept Of Social Services Deputy Director Of Labor Relations 110163.00000 2.203260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.203260e+05 2.203260e+05 0.00 NULL
2017 Hra/Dept Of Social Services Deputy Director Of Security 89911.33333 2.697340e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.697340e+05 2.697340e+05 0.00 NULL
2017 Hra/Dept Of Social Services Deputy General Counsel 102000.00000 1.020000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020000e+05 1.020000e+05 0.00 NULL
2017 Hra/Dept Of Social Services Dir Of Home Care Services/Family And Adult Services 147240.00000 1.472400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.472400e+05 1.472400e+05 0.00 NULL
2017 Hra/Dept Of Social Services Dir Of Mgnt System, Planning, Research And Eval 133900.00000 1.339000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339000e+05 1.339000e+05 0.00 NULL
2017 Hra/Dept Of Social Services Dir Policy Econom Resrch 64000.00000 6.400000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.400000e+04 6.400000e+04 0.00 NULL
2017 Hra/Dept Of Social Services Director Of Admin 200931.00000 2.009310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.009310e+05 2.009310e+05 0.00 NULL
2017 Hra/Dept Of Social Services Director Of Community Participation Programs 84162.00000 8.416200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.416200e+04 8.416200e+04 0.00 NULL
2017 Hra/Dept Of Social Services Director Of Compliance & Legislative Development 71791.00000 7.179100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.179100e+04 7.179100e+04 0.00 NULL
2017 Hra/Dept Of Social Services Director Of Eeo 98410.00000 9.841000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.841000e+04 9.841000e+04 0.00 NULL
2017 Hra/Dept Of Social Services Director Of Eeo/Contract Compliance 129828.00000 1.298280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.298280e+05 1.298280e+05 0.00 NULL
2017 Hra/Dept Of Social Services Director Of Fiscal Operations 134526.00000 1.345260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.345260e+05 1.345260e+05 0.00 NULL
2017 Hra/Dept Of Social Services Director Of Food Stamp Program 156848.00000 1.568480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.568480e+05 1.568480e+05 0.00 NULL
2017 Hra/Dept Of Social Services Director Of Labor Relations 154095.00000 1.540950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.540950e+05 1.540950e+05 0.00 NULL
2017 Hra/Dept Of Social Services Director Of Legislative Coordination 128746.00000 1.287460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287460e+05 1.287460e+05 0.00 NULL
2017 Hra/Dept Of Social Services Director Of Management Planning Ss 127490.20000 6.374510e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.374510e+05 6.374510e+05 0.00 NULL
2017 Hra/Dept Of Social Services Director Of Medical Assistance Program 138713.00000 1.387130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.387130e+05 1.387130e+05 0.00 NULL
2017 Hra/Dept Of Social Services Director Of Policy Analysis 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2017 Hra/Dept Of Social Services Director Of Public Information 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2017 Hra/Dept Of Social Services Director Of Security 94123.00000 9.412300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.412300e+04 9.412300e+04 0.00 NULL
2017 Hra/Dept Of Social Services Electrical Engineer 86489.00000 8.648900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.648900e+04 8.648900e+04 0.00 NULL
2017 Hra/Dept Of Social Services Electrician NA NA 50345.66 3.872743e+03 735.000 618.50 13 7.350000e+02 9555.00 NA NA NA NULL
2017 Hra/Dept Of Social Services Electrician’s Helper NA NA 15326.59 2.189513e+03 2817.840 290.00 7 2.189513e+03 15326.59 NA NA NA NULL
2017 Hra/Dept Of Social Services Eligibility Specialist 39924.94181 1.033657e+08 5474622.94 2.114570e+03 0.000 179539.12 2589 0.000000e+00 0.00 1.088403e+08 1.033657e+08 5474622.94 NULL
2017 Hra/Dept Of Social Services Exec Asst To The Deputy Commissioner 95570.00000 1.911400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.911400e+05 1.911400e+05 0.00 NULL
2017 Hra/Dept Of Social Services Executive Agency Counsel 127949.43478 5.885674e+06 7960.25 1.730489e+02 0.000 88.25 46 0.000000e+00 0.00 5.893634e+06 5.885674e+06 7960.25 NULL
2017 Hra/Dept Of Social Services Executive Assistant To The Human Resources Admin 111549.00000 1.115490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.115490e+05 1.115490e+05 0.00 NULL
2017 Hra/Dept Of Social Services Executive Asst-Domestic Violence-Hra 59846.33333 3.590780e+05 148.05 2.467500e+01 0.000 4.00 6 0.000000e+00 0.00 3.592260e+05 3.590780e+05 148.05 NULL
2017 Hra/Dept Of Social Services Executive Deputy Administrator 188127.66667 5.643830e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.643830e+05 5.643830e+05 0.00 NULL
2017 Hra/Dept Of Social Services Executive Program Specialist 123793.50000 4.951740e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.951740e+05 4.951740e+05 0.00 NULL
2017 Hra/Dept Of Social Services Fraud Investigator 51184.44597 2.984053e+07 378759.87 6.496739e+02 0.000 9657.75 583 0.000000e+00 0.00 3.021929e+07 2.984053e+07 378759.87 NULL
2017 Hra/Dept Of Social Services Gardener 64722.00000 6.472200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.472200e+04 6.472200e+04 0.00 NULL
2017 Hra/Dept Of Social Services General Counsel 182798.00000 3.655960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.655960e+05 3.655960e+05 0.00 NULL
2017 Hra/Dept Of Social Services Graphic Artist 55123.57143 3.858650e+05 1243.39 1.776271e+02 0.000 40.75 7 0.000000e+00 0.00 3.871084e+05 3.858650e+05 1243.39 NULL
2017 Hra/Dept Of Social Services Head Nurse 77002.73333 1.155041e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.155041e+06 1.155041e+06 0.00 NULL
2017 Hra/Dept Of Social Services Health Services Manager 110901.00000 1.109010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.109010e+05 1.109010e+05 0.00 NULL
2017 Hra/Dept Of Social Services Homemaker 32155.00000 6.431000e+04 4781.51 2.390755e+03 2390.755 207.25 2 2.390755e+03 4781.51 6.909151e+04 6.909151e+04 0.00 NULL
2017 Hra/Dept Of Social Services Human Resources Administrator 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2017 Hra/Dept Of Social Services Human Resources Technician 33780.00000 6.756000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.756000e+04 6.756000e+04 0.00 NULL
2017 Hra/Dept Of Social Services Institutional Aide 37239.33333 1.117180e+05 15578.02 5.192673e+03 4774.740 492.50 3 4.774740e+03 14324.22 1.272960e+05 1.260422e+05 1253.80 NULL
2017 Hra/Dept Of Social Services Investigator 62604.12500 5.008330e+05 20779.01 2.597376e+03 920.005 415.00 8 9.200050e+02 7360.04 5.216120e+05 5.081930e+05 13418.97 NULL
2017 Hra/Dept Of Social Services Job Opportunity Specialist 44162.62795 7.088102e+07 6552422.75 4.082506e+03 979.920 199213.30 1605 9.799200e+02 1572771.60 7.743344e+07 7.245379e+07 4979651.15 NULL
2017 Hra/Dept Of Social Services Locksmith NA NA 3745.71 1.872855e+03 1872.855 80.50 2 1.872855e+03 3745.71 NA NA NA NULL
2017 Hra/Dept Of Social Services Maintenance Worker NA NA 129.83 6.491500e+01 64.915 3.00 2 6.491500e+01 129.83 NA NA NA NULL
2017 Hra/Dept Of Social Services Management Auditor 65558.06250 2.097858e+06 1843.80 5.761875e+01 0.000 52.50 32 0.000000e+00 0.00 2.099702e+06 2.097858e+06 1843.80 NULL
2017 Hra/Dept Of Social Services Management Auditor Trainee 45460.00000 9.092000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.092000e+04 9.092000e+04 0.00 NULL
2017 Hra/Dept Of Social Services Mechanical Engineer 93888.33333 2.816650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.816650e+05 2.816650e+05 0.00 NULL
2017 Hra/Dept Of Social Services Medical Specialist 72027.73500 2.160832e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.160832e+05 2.160832e+05 0.00 NULL
2017 Hra/Dept Of Social Services Motor Vehicle Operator 42639.33333 3.837540e+05 33536.60 3.726289e+03 1150.580 1107.20 9 1.150580e+03 10355.22 4.172906e+05 3.941092e+05 23181.38 NULL
2017 Hra/Dept Of Social Services Motor Vehicle Supervisor 56339.80000 2.816990e+05 86686.80 1.733736e+04 16834.250 1863.25 5 1.683425e+04 84171.25 3.683858e+05 3.658702e+05 2515.55 NULL
2017 Hra/Dept Of Social Services Office Machine Aide 34630.87500 5.540940e+05 18370.98 1.148186e+03 0.000 717.00 16 0.000000e+00 0.00 5.724650e+05 5.540940e+05 18370.98 NULL
2017 Hra/Dept Of Social Services Oiler NA NA 45794.80 7.632467e+03 8369.650 469.75 6 7.632467e+03 45794.80 NA NA NA NULL
2017 Hra/Dept Of Social Services Painter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2017 Hra/Dept Of Social Services Paralegal Aide 43481.28571 9.131070e+05 24736.60 1.177933e+03 0.000 583.75 21 0.000000e+00 0.00 9.378436e+05 9.131070e+05 24736.60 NULL
2017 Hra/Dept Of Social Services Plumber NA NA 84741.24 7.061770e+03 6403.360 796.50 12 6.403360e+03 76840.32 NA NA NA NULL
2017 Hra/Dept Of Social Services Principal Administrative Associate 55268.41396 7.837061e+07 4889953.37 3.448486e+03 0.000 121136.00 1418 0.000000e+00 0.00 8.326056e+07 7.837061e+07 4889953.37 NULL
2017 Hra/Dept Of Social Services Printing Press Operator NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2017 Hra/Dept Of Social Services Procurement Analyst 57545.23256 2.474445e+06 2724.36 6.335721e+01 0.000 52.00 43 0.000000e+00 0.00 2.477169e+06 2.474445e+06 2724.36 NULL
2017 Hra/Dept Of Social Services Psychiatrist 139834.77000 1.817852e+06 7.85 6.038462e-01 0.000 0.00 13 0.000000e+00 0.00 1.817860e+06 1.817852e+06 7.85 NULL
2017 Hra/Dept Of Social Services Public Health Educator 56793.62791 2.442126e+06 26945.37 6.266365e+02 325.170 793.50 43 3.251700e+02 13982.31 2.469071e+06 2.456108e+06 12963.06 NULL
2017 Hra/Dept Of Social Services Real Property Manager 62638.00000 6.263800e+04 2461.16 2.461160e+03 2461.160 54.75 1 2.461160e+03 2461.16 6.509916e+04 6.509916e+04 0.00 NULL
2017 Hra/Dept Of Social Services Research Assistant 52060.75000 2.082430e+05 6829.22 1.707305e+03 0.000 174.25 4 0.000000e+00 0.00 2.150722e+05 2.082430e+05 6829.22 NULL
2017 Hra/Dept Of Social Services Safety Specialist 48246.00000 4.824600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.824600e+04 4.824600e+04 0.00 NULL
2017 Hra/Dept Of Social Services Secretary 40236.84375 1.287579e+06 119781.88 3.743184e+03 0.000 3930.50 32 0.000000e+00 0.00 1.407361e+06 1.287579e+06 119781.88 NULL
2017 Hra/Dept Of Social Services Secretary To The Commissioner 84901.50000 1.698030e+05 9239.13 4.619565e+03 4619.565 200.75 2 4.619565e+03 9239.13 1.790421e+05 1.790421e+05 0.00 NULL
2017 Hra/Dept Of Social Services Secretary To The Department 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2017 Hra/Dept Of Social Services Senior Consultant 76520.40000 1.530408e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.530408e+06 1.530408e+06 0.00 NULL
2017 Hra/Dept Of Social Services Senior Stationary Engineer NA NA 106939.79 2.673495e+04 30653.500 902.50 4 2.673495e+04 106939.79 NA NA NA NULL
2017 Hra/Dept Of Social Services Sheet Metal Worker NA NA 79687.72 3.984386e+04 39843.860 799.00 2 3.984386e+04 79687.72 NA NA NA NULL
2017 Hra/Dept Of Social Services Social Worker 54729.85000 4.378388e+06 74760.10 9.345013e+02 0.000 1933.75 80 0.000000e+00 0.00 4.453148e+06 4.378388e+06 74760.10 NULL
2017 Hra/Dept Of Social Services Space Analyst 69874.65217 1.607117e+06 20715.06 9.006548e+02 0.000 481.75 23 0.000000e+00 0.00 1.627832e+06 1.607117e+06 20715.06 NULL
2017 Hra/Dept Of Social Services Special Assistant To The Human Resources Administrator 99365.00000 9.936500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.936500e+04 9.936500e+04 0.00 NULL
2017 Hra/Dept Of Social Services Special Officer 42436.42500 3.394914e+06 197595.88 2.469948e+03 944.020 6160.50 80 9.440200e+02 75521.60 3.592510e+06 3.470436e+06 122074.28 NULL
2017 Hra/Dept Of Social Services Staff Analyst 65305.13333 1.077535e+07 242589.13 1.470237e+03 0.000 5503.60 165 0.000000e+00 0.00 1.101794e+07 1.077535e+07 242589.13 NULL
2017 Hra/Dept Of Social Services Staff Nurse 71968.36667 2.159051e+06 2015.80 6.719333e+01 0.000 4.00 30 0.000000e+00 0.00 2.161067e+06 2.159051e+06 2015.80 NULL
2017 Hra/Dept Of Social Services Stationary Engineer NA NA 23772.68 7.924227e+03 2184.750 210.50 3 2.184750e+03 6554.25 NA NA NA NULL
2017 Hra/Dept Of Social Services Steam Fitter’s Helper NA NA 18846.13 1.884613e+04 18846.130 211.50 1 1.884613e+04 18846.13 NA NA NA NULL
2017 Hra/Dept Of Social Services Stock Worker 36869.22222 3.318230e+05 1120.68 1.245200e+02 0.000 19.25 9 0.000000e+00 0.00 3.329437e+05 3.318230e+05 1120.68 NULL
2017 Hra/Dept Of Social Services Strategic Initiative Specialist 88732.00000 3.549280e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.549280e+05 3.549280e+05 0.00 NULL
2017 Hra/Dept Of Social Services Superintendent Of Adult Institutions 85206.00000 8.520600e+04 8325.36 8.325360e+03 8325.360 120.75 1 8.325360e+03 8325.36 9.353136e+04 9.353136e+04 0.00 NULL
2017 Hra/Dept Of Social Services Supervising Bookbinder 59098.00000 5.909800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.909800e+04 5.909800e+04 0.00 NULL
2017 Hra/Dept Of Social Services Supervising Computer Service Technician 59482.86429 4.163800e+05 18012.80 2.573257e+03 0.000 364.25 7 0.000000e+00 0.00 4.343928e+05 4.163800e+05 18012.80 NULL
2017 Hra/Dept Of Social Services Supervising Special Officer 54815.69767 2.357075e+06 185401.10 4.311653e+03 1598.340 4707.25 43 1.598340e+03 68728.62 2.542476e+06 2.425804e+06 116672.48 NULL
2017 Hra/Dept Of Social Services Supervisor Carpenter NA NA 47763.86 2.388193e+04 23881.930 519.00 2 2.388193e+04 47763.86 NA NA NA NULL
2017 Hra/Dept Of Social Services Supervisor Electrician NA NA 37712.29 1.885615e+04 18856.145 411.75 2 1.885615e+04 37712.29 NA NA NA NULL
2017 Hra/Dept Of Social Services Supervisor I 55084.17773 2.324552e+07 779700.23 1.847631e+03 0.000 18857.50 422 0.000000e+00 0.00 2.402522e+07 2.324552e+07 779700.23 NULL
2017 Hra/Dept Of Social Services Supervisor I Social Work 61052.67568 2.258949e+06 51071.22 1.380303e+03 0.000 1060.00 37 0.000000e+00 0.00 2.310020e+06 2.258949e+06 51071.22 NULL
2017 Hra/Dept Of Social Services Supervisor Ii 64588.66867 1.072172e+07 335560.86 2.021451e+03 0.000 7017.25 166 0.000000e+00 0.00 1.105728e+07 1.072172e+07 335560.86 NULL
2017 Hra/Dept Of Social Services Supervisor Ii Social Work 72280.28571 5.059620e+05 13949.39 1.992770e+03 0.000 234.00 7 0.000000e+00 0.00 5.199114e+05 5.059620e+05 13949.39 NULL
2017 Hra/Dept Of Social Services Supervisor Iii 71435.52632 4.071825e+06 74827.65 1.312766e+03 0.000 1392.75 57 0.000000e+00 0.00 4.146653e+06 4.071825e+06 74827.65 NULL
2017 Hra/Dept Of Social Services Supervisor Iii Social Work 79866.20000 7.986620e+05 32524.30 3.252430e+03 0.000 482.50 10 0.000000e+00 0.00 8.311863e+05 7.986620e+05 32524.30 NULL
2017 Hra/Dept Of Social Services Supervisor Of Electrical Installations & Maintenance 72611.00000 7.261100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.261100e+04 7.261100e+04 0.00 NULL
2017 Hra/Dept Of Social Services Supervisor Of Motor Transport 72031.00000 7.203100e+04 8856.78 8.856780e+03 8856.780 170.00 1 8.856780e+03 8856.78 8.088778e+04 8.088778e+04 0.00 NULL
2017 Hra/Dept Of Social Services Supervisor Of Nurses 91898.00000 6.432860e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.432860e+05 6.432860e+05 0.00 NULL
2017 Hra/Dept Of Social Services Supervisor Of Office Machine Operations 43416.14286 9.117390e+05 88822.52 4.229644e+03 7.930 2584.00 21 7.930000e+00 166.53 1.000562e+06 9.119055e+05 88655.99 NULL
2017 Hra/Dept Of Social Services Supervisor Of Stock Workers 49930.80000 2.496540e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.496540e+05 2.496540e+05 0.00 NULL
2017 Hra/Dept Of Social Services Supervisor Plumber NA NA 116428.07 5.821404e+04 58214.035 1036.25 2 5.821404e+04 116428.07 NA NA NA NULL
2017 Hra/Dept Of Social Services Telecommunication Manager 95531.00000 9.553100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.553100e+04 9.553100e+04 0.00 NULL
2017 Hra/Dept Of Social Services Telecommunications Associate 74582.00000 2.237460e+05 15093.61 5.031203e+03 313.780 255.50 3 3.137800e+02 941.34 2.388396e+05 2.246873e+05 14152.27 NULL
2017 Hra/Dept Of Social Services Title Examiner 42827.00000 4.282700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.282700e+04 4.282700e+04 0.00 NULL
2017 Human Rights Commission Administrative Public Information Specialist 120381.50000 2.407630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.407630e+05 2.407630e+05 0.00 NULL
2017 Human Rights Commission Administrative Staff Analyst 104727.00000 1.047270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.047270e+05 1.047270e+05 0.00 NULL
2017 Human Rights Commission Agency Attorney 67522.40000 2.025672e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 2.025672e+06 2.025672e+06 0.00 NULL
2017 Human Rights Commission Associate Human Rights Specialist 65328.47619 1.371898e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.371898e+06 1.371898e+06 0.00 NULL
2017 Human Rights Commission Attorney At Law 83921.50000 1.678430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.678430e+05 1.678430e+05 0.00 NULL
2017 Human Rights Commission Chairman Commission On Human Rights 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2017 Human Rights Commission College Aide 6802.25000 6.802250e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.802250e+03 6.802250e+03 0.00 NULL
2017 Human Rights Commission Community Assistant 5664.53375 2.265813e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.265813e+04 2.265813e+04 0.00 NULL
2017 Human Rights Commission Community Associate 44245.40000 2.212270e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.212270e+05 2.212270e+05 0.00 NULL
2017 Human Rights Commission Community Coordinator 60177.62500 4.814210e+05 3851.43 4.814287e+02 0.000 111.50 8 0.000000e+00 0.00 4.852724e+05 4.814210e+05 3851.43 NULL
2017 Human Rights Commission Computer Associate 55638.33333 1.669150e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.669150e+05 1.669150e+05 0.00 NULL
2017 Human Rights Commission Computer Operations Manager 101016.66667 3.030500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.030500e+05 3.030500e+05 0.00 NULL
2017 Human Rights Commission Computer Specialist 111387.00000 1.113870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.113870e+05 1.113870e+05 0.00 NULL
2017 Human Rights Commission Counsel 153750.00000 1.537500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.537500e+05 1.537500e+05 0.00 NULL
2017 Human Rights Commission Dep Commissioner For Community Relations 165256.50000 6.610260e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.610260e+05 6.610260e+05 0.00 NULL
2017 Human Rights Commission Executive Agency Counsel 109414.00000 1.094140e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.094140e+06 1.094140e+06 0.00 NULL
2017 Human Rights Commission Executive Director 95489.37500 7.639150e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.639150e+05 7.639150e+05 0.00 NULL
2017 Human Rights Commission Graphic Artist 37461.87500 7.492375e+04 1757.49 8.787450e+02 878.745 41.75 2 8.787450e+02 1757.49 7.668124e+04 7.668124e+04 0.00 NULL
2017 Human Rights Commission Human Rights Specialist 49219.58824 8.367330e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 8.367330e+05 8.367330e+05 0.00 NULL
2017 Human Rights Commission Motor Vehicle Operator 37200.00000 3.720000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.720000e+04 3.720000e+04 0.00 NULL
2017 Human Rights Commission Principal Administrative Associate 61964.00000 1.858920e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.858920e+05 1.858920e+05 0.00 NULL
2017 Human Rights Commission Prinicipal Human Rights Specialist 76767.00000 3.838350e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.838350e+05 3.838350e+05 0.00 NULL
2017 Human Rights Commission Secretary 44339.66667 1.330190e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.330190e+05 1.330190e+05 0.00 NULL
2017 Hunter College High School *Custodial Assistant 18903.00000 1.890300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.890300e+04 1.890300e+04 0.00 NULL
2017 Hunter College High School ?Information Systems Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2017 Hunter College High School Administrator 175605.00000 3.512100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.512100e+05 3.512100e+05 0.00 NULL
2017 Hunter College High School Assistant Principal 112493.43750 1.799895e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.799895e+06 1.799895e+06 0.00 NULL
2017 Hunter College High School Assistant Teacher 24319.68750 1.167345e+06 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 1.167345e+06 1.167345e+06 0.00 NULL
2017 Hunter College High School Assistant To Heo 53071.40000 2.653570e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.653570e+05 2.653570e+05 0.00 NULL
2017 Hunter College High School Business Data And Reporting Analyst 51374.00000 1.027480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.027480e+05 1.027480e+05 0.00 NULL
2017 Hunter College High School Coach NA NA 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 NA NA NA NULL
2017 Hunter College High School College Accountant 46537.00000 4.653700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.653700e+04 4.653700e+04 0.00 NULL
2017 Hunter College High School College Assistant 4417.87139 2.253114e+05 12.23 2.398039e-01 0.000 0.00 51 0.000000e+00 0.00 2.253237e+05 2.253114e+05 12.23 NULL
2017 Hunter College High School College Lab Technician 55950.00000 5.595000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.595000e+04 5.595000e+04 0.00 NULL
2017 Hunter College High School Computer Systems Manager 88814.00000 8.881400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.881400e+04 8.881400e+04 0.00 NULL
2017 Hunter College High School Cuny Administrator Assistant 50886.66667 3.053200e+05 553.05 9.217500e+01 0.000 16.50 6 0.000000e+00 0.00 3.058730e+05 3.053200e+05 553.05 NULL
2017 Hunter College High School Cuny Custodial Assistant 21585.66667 1.295140e+05 14572.08 2.428680e+03 183.910 543.00 6 1.839100e+02 1103.46 1.440861e+05 1.306175e+05 13468.62 NULL
2017 Hunter College High School Cuny Office Assistant 37079.28571 5.191100e+05 1493.37 1.066693e+02 0.000 46.75 14 0.000000e+00 0.00 5.206034e+05 5.191100e+05 1493.37 NULL
2017 Hunter College High School Education & Vocat Counselor 80917.70000 8.091770e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 8.091770e+05 8.091770e+05 0.00 NULL
2017 Hunter College High School Hccs Sr College Lab Tech 56288.75000 2.251550e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.251550e+05 2.251550e+05 0.00 NULL
2017 Hunter College High School High School Elem Counselor 91017.00000 9.101700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.101700e+04 9.101700e+04 0.00 NULL
2017 Hunter College High School Higher Education Assistant 74618.50000 1.492370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.492370e+05 1.492370e+05 0.00 NULL
2017 Hunter College High School Higher Education Associate 96954.66667 2.908640e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.908640e+05 2.908640e+05 0.00 NULL
2017 Hunter College High School Higher Education Officer 116983.66667 3.509510e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.509510e+05 3.509510e+05 0.00 NULL
2017 Hunter College High School It Associate 66710.00000 6.671000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.671000e+04 6.671000e+04 0.00 NULL
2017 Hunter College High School It Senior Associate 84345.00000 1.686900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.686900e+05 1.686900e+05 0.00 NULL
2017 Hunter College High School It Support Assistant 40975.48100 2.048774e+05 -29.17 -5.834000e+00 0.000 -1.00 5 -5.834000e+00 -29.17 2.048482e+05 2.048482e+05 0.00 NULL
2017 Hunter College High School Oiler 116522.00000 2.330440e+05 14186.55 7.093275e+03 7093.275 0.00 2 7.093275e+03 14186.55 2.472305e+05 2.472305e+05 0.00 NULL
2017 Hunter College High School Principal 150835.00000 1.508350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.508350e+05 1.508350e+05 0.00 NULL
2017 Hunter College High School Substitute Principal 99699.00000 9.969900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.969900e+04 9.969900e+04 0.00 NULL
2017 Hunter College High School Substitute Teacher 21937.03375 4.650651e+06 0.00 0.000000e+00 0.000 0.00 212 0.000000e+00 0.00 4.650651e+06 4.650651e+06 0.00 NULL
2017 Hunter College High School Teacher NA NA 0.00 0.000000e+00 0.000 0.00 123 0.000000e+00 0.00 NA NA NA NULL
2017 Hunter College High School Teacher Of Library 78346.00000 7.834600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.834600e+04 7.834600e+04 0.00 NULL
2017 Independent Budget Office Administrative Staff Analyst 117909.00000 1.179090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.179090e+05 1.179090e+05 0.00 NULL
2017 Independent Budget Office Agency Chief Contracting Officer 109180.00000 1.091800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.091800e+05 1.091800e+05 0.00 NULL
2017 Independent Budget Office Assistant Budget Analyst 64366.00000 1.930980e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.930980e+05 1.930980e+05 0.00 NULL
2017 Independent Budget Office Budget Analyst 100068.00000 3.502380e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 3.502380e+06 3.502380e+06 0.00 NULL
2017 Independent Budget Office Director Of Independent Budget Office 203655.00000 2.036550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.036550e+05 2.036550e+05 0.00 NULL
2017 Independent Budget Office Executive Agency Counsel 75205.51250 7.520551e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.520551e+04 7.520551e+04 0.00 NULL
2017 Independent Budget Office Principal Administrative Associate 79167.00000 1.583340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.583340e+05 1.583340e+05 0.00 NULL
2017 Landmarks Preservation Comm Administrative Landmarks Preservationist 94190.87386 1.036100e+06 274.47 2.495182e+01 0.000 0.00 11 0.000000e+00 0.00 1.036374e+06 1.036100e+06 274.47 NULL
2017 Landmarks Preservation Comm Administrative Staff Analyst 96798.00000 9.679800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.679800e+04 9.679800e+04 0.00 NULL
2017 Landmarks Preservation Comm Associate Landmarks Preservationist 78450.00000 7.845000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.845000e+04 7.845000e+04 0.00 NULL
2017 Landmarks Preservation Comm Associate Staff Analyst 90830.00000 9.083000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.083000e+04 9.083000e+04 0.00 NULL
2017 Landmarks Preservation Comm Attorney At Law 85029.00000 8.502900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.502900e+04 8.502900e+04 0.00 NULL
2017 Landmarks Preservation Comm Chair-Landmarks Preservation Commission 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2017 Landmarks Preservation Comm Chauffeur-Attendant 39229.00000 7.845800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.845800e+04 7.845800e+04 0.00 NULL
2017 Landmarks Preservation Comm Clerical Associate 56434.00000 5.643400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.643400e+04 5.643400e+04 0.00 NULL
2017 Landmarks Preservation Comm College Aide 4808.54100 9.617082e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.617082e+03 9.617082e+03 0.00 NULL
2017 Landmarks Preservation Comm Community Associate 44749.16667 2.684950e+05 1346.58 2.244300e+02 105.780 28.25 6 1.057800e+02 634.68 2.698416e+05 2.691297e+05 711.90 NULL
2017 Landmarks Preservation Comm Community Coordinator 66196.00000 6.619600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.619600e+04 6.619600e+04 0.00 NULL
2017 Landmarks Preservation Comm Computer Programmer Analyst 47692.00000 4.769200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.769200e+04 4.769200e+04 0.00 NULL
2017 Landmarks Preservation Comm Computer Systems Manager 112516.00000 1.125160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.125160e+05 1.125160e+05 0.00 NULL
2017 Landmarks Preservation Comm Counsel 150822.00000 1.508220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.508220e+05 1.508220e+05 0.00 NULL
2017 Landmarks Preservation Comm Director Of Public Relations 82400.00000 8.240000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.240000e+04 8.240000e+04 0.00 NULL
2017 Landmarks Preservation Comm Director Of Urban Archaeology 86254.00000 8.625400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.625400e+04 8.625400e+04 0.00 NULL
2017 Landmarks Preservation Comm Executive Director 154873.00000 1.548730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.548730e+05 1.548730e+05 0.00 NULL
2017 Landmarks Preservation Comm Landmarks Preservationist 58619.47821 2.520638e+06 15366.57 3.573621e+02 20.740 405.50 43 2.074000e+01 891.82 2.536004e+06 2.521529e+06 14474.75 NULL
2017 Landmarks Preservation Comm Legal Secretarial Assistant Al 2,3,4 Only 45376.00000 4.537600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.537600e+04 4.537600e+04 0.00 NULL
2017 Landmarks Preservation Comm Principal Administrative Associate 64166.00000 6.416600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.416600e+04 6.416600e+04 0.00 NULL
2017 Landmarks Preservation Comm Public Relations Adviser 82400.00000 8.240000e+04 1030.89 1.030890e+03 1030.890 0.00 1 1.030890e+03 1030.89 8.343089e+04 8.343089e+04 0.00 NULL
2017 Landmarks Preservation Comm Secretary To The Chair, Landmarks Preservation Commission 69715.50000 1.394310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.394310e+05 1.394310e+05 0.00 NULL
2017 Landmarks Preservation Comm Staff Analyst 59481.00000 5.948100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.948100e+04 5.948100e+04 0.00 NULL
2017 Landmarks Preservation Comm Urban Archeologist 33154.23983 9.946272e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.946272e+04 9.946272e+04 0.00 NULL
2017 Law Department *Certified Applications Developer 104532.00000 1.045320e+05 2016.86 2.016860e+03 2016.860 37.25 1 2.016860e+03 2016.86 1.065489e+05 1.065489e+05 0.00 NULL
2017 Law Department Accountant 80708.00000 8.070800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.070800e+04 8.070800e+04 0.00 NULL
2017 Law Department Administrative Accountant 120162.00000 3.604860e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.604860e+05 3.604860e+05 0.00 NULL
2017 Law Department Administrative Public Information Specialist 155927.50000 3.118550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.118550e+05 3.118550e+05 0.00 NULL
2017 Law Department Administrative Staff Analyst 97767.75000 1.173213e+06 7271.37 6.059475e+02 0.000 81.25 12 0.000000e+00 0.00 1.180484e+06 1.173213e+06 7271.37 NULL
2017 Law Department Assistant Corporation Counsel 100144.58347 1.003449e+08 0.00 0.000000e+00 0.000 0.00 1002 0.000000e+00 0.00 1.003449e+08 1.003449e+08 0.00 NULL
2017 Law Department Associate Public Information Specialist 46125.00000 4.612500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.612500e+04 4.612500e+04 0.00 NULL
2017 Law Department Associate Quality Assurance Specialist 70737.66667 4.244260e+05 28775.35 4.795892e+03 2219.065 481.50 6 2.219065e+03 13314.39 4.532013e+05 4.377404e+05 15460.96 NULL
2017 Law Department Associate Staff Analyst 79506.25229 5.565438e+05 34138.84 4.876977e+03 0.000 654.75 7 0.000000e+00 0.00 5.906826e+05 5.565438e+05 34138.84 NULL
2017 Law Department Attorney At Law 81495.00000 8.149500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.149500e+04 8.149500e+04 0.00 NULL
2017 Law Department Bookkeeper 49185.50000 3.934840e+05 19458.76 2.432345e+03 1841.760 479.50 8 1.841760e+03 14734.08 4.129428e+05 4.082181e+05 4724.68 NULL
2017 Law Department Certified It Administrator 95509.33333 2.865280e+05 7737.05 2.579017e+03 931.920 115.50 3 9.319200e+02 2795.76 2.942650e+05 2.893238e+05 4941.29 NULL
2017 Law Department City Assessor 92080.50000 1.841610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.841610e+05 1.841610e+05 0.00 NULL
2017 Law Department City Custodial Assistant 36744.00000 3.674400e+04 5642.66 5.642660e+03 5642.660 189.50 1 5.642660e+03 5642.66 4.238666e+04 4.238666e+04 0.00 NULL
2017 Law Department Claim Specialist 43742.79633 6.823876e+06 104606.63 6.705553e+02 0.000 3218.50 156 0.000000e+00 0.00 6.928483e+06 6.823876e+06 104606.63 NULL
2017 Law Department Clerical Associate 33260.00060 8.148700e+06 275700.87 1.125310e+03 0.000 9279.00 245 0.000000e+00 0.00 8.424401e+06 8.148700e+06 275700.87 NULL
2017 Law Department College Aide 2397.55252 1.150825e+05 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 1.150825e+05 1.150825e+05 0.00 NULL
2017 Law Department College Aide - Assignment Levels Ii And Iii 8857.95645 1.771591e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.771591e+04 1.771591e+04 0.00 NULL
2017 Law Department Community Associate 47509.00000 4.750900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.750900e+04 4.750900e+04 0.00 NULL
2017 Law Department Community Coordinator 57676.00000 5.767600e+05 2296.31 2.296310e+02 0.000 73.00 10 0.000000e+00 0.00 5.790563e+05 5.767600e+05 2296.31 NULL
2017 Law Department Computer Aide-Non-Spvr 39825.78429 3.584321e+05 7590.12 8.433467e+02 216.110 233.50 9 2.161100e+02 1944.99 3.660222e+05 3.603770e+05 5645.13 NULL
2017 Law Department Computer Associate 71376.74059 1.213405e+06 14470.41 8.512006e+02 0.000 239.00 17 0.000000e+00 0.00 1.227875e+06 1.213405e+06 14470.41 NULL
2017 Law Department Computer Operations Manager 107472.00000 1.074720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074720e+05 1.074720e+05 0.00 NULL
2017 Law Department Computer Service Technician 39088.59082 2.345315e+05 11723.36 1.953893e+03 1826.600 333.25 6 1.826600e+03 10959.60 2.462549e+05 2.454911e+05 763.76 NULL
2017 Law Department Computer Specialist 98198.16667 5.891890e+05 1044.91 1.741517e+02 0.000 15.25 6 0.000000e+00 0.00 5.902339e+05 5.891890e+05 1044.91 NULL
2017 Law Department Computer Systems Manager 151527.80000 7.576390e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.576390e+05 7.576390e+05 0.00 NULL
2017 Law Department Corporation Counsel 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2017 Law Department Custodian 47292.34710 2.837541e+05 92444.71 1.540745e+04 19233.630 2352.75 6 1.540745e+04 92444.71 3.761988e+05 3.761988e+05 0.00 NULL
2017 Law Department Department Librarian 39532.86480 3.953286e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.953286e+04 3.953286e+04 0.00 NULL
2017 Law Department Deputy Director Of Admin Worker’s Comp Benefits 88672.50000 1.773450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.773450e+05 1.773450e+05 0.00 NULL
2017 Law Department Deputy Director Of Administration 176076.00000 1.760760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.760760e+05 1.760760e+05 0.00 NULL
2017 Law Department Deputy Operation Support Manager 131321.00000 2.626420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.626420e+05 2.626420e+05 0.00 NULL
2017 Law Department Dir Of Administration, Worker’s Comp Benefits 133900.00000 1.339000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339000e+05 1.339000e+05 0.00 NULL
2017 Law Department Director Of Administration 184151.00000 1.841510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.841510e+05 1.841510e+05 0.00 NULL
2017 Law Department Field Investigation Specialist 54199.00000 5.419900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.419900e+04 5.419900e+04 0.00 NULL
2017 Law Department First Assistant Corporation Counsel 220480.50000 4.409610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.409610e+05 4.409610e+05 0.00 NULL
2017 Law Department Graphic Artist 18381.89900 1.838190e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.838190e+04 1.838190e+04 0.00 NULL
2017 Law Department It Service Management Specialist 88088.00000 8.808800e+04 385.69 3.856900e+02 385.690 6.50 1 3.856900e+02 385.69 8.847369e+04 8.847369e+04 0.00 NULL
2017 Law Department Legal Secretarial Assistant - Al 1 Only 41206.66667 1.236200e+05 22.92 7.640000e+00 0.000 1.00 3 0.000000e+00 0.00 1.236429e+05 1.236200e+05 22.92 NULL
2017 Law Department Legal Secretarial Assistant Al 2,3,4 Only 53823.69007 1.883829e+06 149215.88 4.263311e+03 899.620 3639.00 35 8.996200e+02 31486.70 2.033045e+06 1.915316e+06 117729.18 NULL
2017 Law Department Maintenance Worker NA NA 28918.23 2.891823e+04 28918.230 719.00 1 2.891823e+04 28918.23 NA NA NA NULL
2017 Law Department Management Auditor 76506.00000 7.650600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.650600e+04 7.650600e+04 0.00 NULL
2017 Law Department Medicolegal Analyst 70121.00000 1.402420e+05 16441.87 8.220935e+03 8220.935 318.75 2 8.220935e+03 16441.87 1.566839e+05 1.566839e+05 0.00 NULL
2017 Law Department Motor Vehicle Operator 29299.79144 2.636981e+05 46539.01 5.171001e+03 1126.430 1460.00 9 1.126430e+03 10137.87 3.102371e+05 2.738360e+05 36401.14 NULL
2017 Law Department Paralegal Aide 45421.72983 1.062868e+07 290077.38 1.239647e+03 0.000 8086.50 234 0.000000e+00 0.00 1.091876e+07 1.062868e+07 290077.38 NULL
2017 Law Department Principal Administrative Associate 59047.00000 8.857050e+05 70075.08 4.671672e+03 0.000 1534.75 15 0.000000e+00 0.00 9.557801e+05 8.857050e+05 70075.08 NULL
2017 Law Department Principal Title Examiner 65104.60000 3.255230e+05 1715.93 3.431860e+02 0.000 39.00 5 0.000000e+00 0.00 3.272389e+05 3.255230e+05 1715.93 NULL
2017 Law Department Procurement Analyst 66034.00000 1.320680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.320680e+05 1.320680e+05 0.00 NULL
2017 Law Department Public Records Aide 40319.28571 2.822350e+05 36535.00 5.219286e+03 1894.110 1204.25 7 1.894110e+03 13258.77 3.187700e+05 2.954938e+05 23276.23 NULL
2017 Law Department Research Assistant 54194.00000 5.419400e+04 474.73 4.747300e+02 474.730 14.75 1 4.747300e+02 474.73 5.466873e+04 5.466873e+04 0.00 NULL
2017 Law Department Secretary 43230.66667 1.296920e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.296920e+05 1.296920e+05 0.00 NULL
2017 Law Department Secretary To The Corporation Counsel 94618.00000 9.461800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.461800e+04 9.461800e+04 0.00 NULL
2017 Law Department Secretary To The First Assistant Corporation Counsel 71005.00000 7.100500e+04 199.22 1.992200e+02 199.220 2.25 1 1.992200e+02 199.22 7.120422e+04 7.120422e+04 0.00 NULL
2017 Law Department Senior Student Legal Specialist 34434.63230 3.787810e+05 2137.67 1.943336e+02 0.000 27.00 11 0.000000e+00 0.00 3.809186e+05 3.787810e+05 2137.67 NULL
2017 Law Department Senior Title Examiner 52326.00000 5.232600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.232600e+04 5.232600e+04 0.00 NULL
2017 Law Department Space Analyst 61104.00000 6.110400e+04 13895.95 1.389595e+04 13895.950 272.75 1 1.389595e+04 13895.95 7.499995e+04 7.499995e+04 0.00 NULL
2017 Law Department Staff Analyst 64213.55385 8.347762e+05 4597.91 3.536854e+02 0.000 96.75 13 0.000000e+00 0.00 8.393741e+05 8.347762e+05 4597.91 NULL
2017 Law Department Stenographer To The Corporation Counsel 66790.00000 6.679000e+04 91.39 9.139000e+01 91.390 2.50 1 9.139000e+01 91.39 6.688139e+04 6.688139e+04 0.00 NULL
2017 Law Department Student Legal Specialist 36269.33333 1.088080e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.088080e+05 1.088080e+05 0.00 NULL
2017 Law Department Summer Graduate Intern 2172.55851 1.955303e+05 0.00 0.000000e+00 0.000 0.00 90 0.000000e+00 0.00 1.955303e+05 1.955303e+05 0.00 NULL
2017 Law Department Supervising Computer Service Technician 56294.84360 1.125897e+05 4329.62 2.164810e+03 2164.810 76.00 2 2.164810e+03 4329.62 1.169193e+05 1.169193e+05 0.00 NULL
2017 Law Department Supervisor Of Office Machine Operations 47646.50000 9.529300e+04 3389.40 1.694700e+03 1694.700 94.25 2 1.694700e+03 3389.40 9.868240e+04 9.868240e+04 0.00 NULL
2017 Law Department Worker’s Compensation Benefits Examiner 44623.52846 3.302141e+06 162230.86 2.192309e+03 212.795 5090.50 74 2.127950e+02 15746.83 3.464372e+06 3.317888e+06 146484.03 NULL
2017 Manhattan Community Board #1 Community Coordinator 63717.50000 1.274350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.274350e+05 1.274350e+05 0.00 NULL
2017 Manhattan Community Board #1 District Manager 89560.00000 8.956000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.956000e+04 8.956000e+04 0.00 NULL
2017 Manhattan Community Board #10 Assistant District Manager 45908.50000 9.181700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.181700e+04 9.181700e+04 0.00 NULL
2017 Manhattan Community Board #10 Community Associate 41036.00000 4.103600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.103600e+04 4.103600e+04 0.00 NULL
2017 Manhattan Community Board #10 District Manager 80904.00000 8.090400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.090400e+04 8.090400e+04 0.00 NULL
2017 Manhattan Community Board #11 Assistant District Manager 49116.00000 9.823200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.823200e+04 9.823200e+04 0.00 NULL
2017 Manhattan Community Board #11 Community Assistant 18807.86250 1.880786e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.880786e+04 1.880786e+04 0.00 NULL
2017 Manhattan Community Board #11 Community Associate 45675.00000 4.567500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.567500e+04 4.567500e+04 0.00 NULL
2017 Manhattan Community Board #11 District Manager 80369.00000 8.036900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.036900e+04 8.036900e+04 0.00 NULL
2017 Manhattan Community Board #12 Community Assistant 35000.00000 3.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.500000e+04 3.500000e+04 0.00 NULL
2017 Manhattan Community Board #12 Community Associate 48390.00000 4.839000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.839000e+04 4.839000e+04 0.00 NULL
2017 Manhattan Community Board #12 Community Coordinator 61463.00000 6.146300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.146300e+04 6.146300e+04 0.00 NULL
2017 Manhattan Community Board #12 District Manager 88006.00000 8.800600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.800600e+04 8.800600e+04 0.00 NULL
2017 Manhattan Community Board #2 Assistant District Manager 45000.00000 4.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.500000e+04 4.500000e+04 0.00 NULL
2017 Manhattan Community Board #2 Community Assistant 34291.00000 3.429100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.429100e+04 3.429100e+04 0.00 NULL
2017 Manhattan Community Board #2 Community Coordinator 57916.00000 5.791600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.791600e+04 5.791600e+04 0.00 NULL
2017 Manhattan Community Board #2 District Manager 82750.00000 8.275000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.275000e+04 8.275000e+04 0.00 NULL
2017 Manhattan Community Board #3 Assistant District Manager 51680.00000 5.168000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.168000e+04 5.168000e+04 0.00 NULL
2017 Manhattan Community Board #3 Community Associate 41816.50000 8.363300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.363300e+04 8.363300e+04 0.00 NULL
2017 Manhattan Community Board #3 District Manager 82378.00000 8.237800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.237800e+04 8.237800e+04 0.00 NULL
2017 Manhattan Community Board #4 Community Associate 42171.00000 8.434200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.434200e+04 8.434200e+04 0.00 NULL
2017 Manhattan Community Board #4 Community Coordinator 63218.00000 6.321800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.321800e+04 6.321800e+04 0.00 NULL
2017 Manhattan Community Board #4 District Manager 90370.00000 9.037000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.037000e+04 9.037000e+04 0.00 NULL
2017 Manhattan Community Board #5 Assistant District Manager 60816.00000 6.081600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.081600e+04 6.081600e+04 0.00 NULL
2017 Manhattan Community Board #5 Community Associate 41105.00000 8.221000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.221000e+04 8.221000e+04 0.00 NULL
2017 Manhattan Community Board #5 District Manager 103339.00000 1.033390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.033390e+05 1.033390e+05 0.00 NULL
2017 Manhattan Community Board #6 Community Associate 55292.00000 5.529200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.529200e+04 5.529200e+04 0.00 NULL
2017 Manhattan Community Board #6 District Manager 82400.00000 8.240000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.240000e+04 8.240000e+04 0.00 NULL
2017 Manhattan Community Board #7 Community Associate 36736.00000 3.673600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.673600e+04 3.673600e+04 0.00 NULL
2017 Manhattan Community Board #7 Community Coordinator 69801.76000 6.980176e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.980176e+04 6.980176e+04 0.00 NULL
2017 Manhattan Community Board #7 District Manager 96300.00000 9.630000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.630000e+04 9.630000e+04 0.00 NULL
2017 Manhattan Community Board #8 Community Assistant 34814.00000 6.962800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.962800e+04 6.962800e+04 0.00 NULL
2017 Manhattan Community Board #8 Community Associate 37000.00000 3.700000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.700000e+04 3.700000e+04 0.00 NULL
2017 Manhattan Community Board #8 District Manager 77894.00000 7.789400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.789400e+04 7.789400e+04 0.00 NULL
2017 Manhattan Community Board #9 Community Associate 39907.87500 7.981575e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.981575e+04 7.981575e+04 0.00 NULL
2017 Manhattan Community Board #9 District Manager 89009.00000 8.900900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.900900e+04 8.900900e+04 0.00 NULL
2017 Mayors Office Of Contract Svcs Administrative Manager 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2017 Mayors Office Of Contract Svcs Administrative Staff Analyst 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2017 Mayors Office Of Contract Svcs Computer Systems Manager 97500.00000 1.950000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.950000e+05 1.950000e+05 0.00 NULL
2017 Mayors Office Of Contract Svcs Executive Agency Counsel 133475.33333 4.004260e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.004260e+05 4.004260e+05 0.00 NULL
2017 Mayors Office Of Contract Svcs Mayoral Office Assistant 42191.40000 1.265742e+06 20413.40 6.804467e+02 31.425 773.00 30 3.142500e+01 942.75 1.286155e+06 1.266685e+06 19470.65 NULL
2017 Mayors Office Of Contract Svcs Mayoral Program Coordinator 55836.00000 2.791800e+05 4929.73 9.859460e+02 957.860 173.50 5 9.578600e+02 4789.30 2.841097e+05 2.839693e+05 140.43 NULL
2017 Mayors Office Of Contract Svcs Research Projects Coord 87376.64407 5.155222e+06 4664.46 7.905864e+01 0.000 175.00 59 0.000000e+00 0.00 5.159886e+06 5.155222e+06 4664.46 NULL
2017 Mayors Office Of Contract Svcs Research Projects Coordinator 52763.88889 4.748750e+05 7625.44 8.472711e+02 101.480 256.75 9 1.014800e+02 913.32 4.825004e+05 4.757883e+05 6712.12 NULL
2017 Mayors Office Of Contract Svcs Special Assistant 113145.30000 1.131453e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.131453e+06 1.131453e+06 0.00 NULL
2017 Municipal Water Fin Authority Budget Analyst 101902.50000 1.426635e+06 6354.01 4.538579e+02 0.000 144.75 14 0.000000e+00 0.00 1.432989e+06 1.426635e+06 6354.01 NULL
2017 Municipal Water Fin Authority Statistical Secretary 62999.00000 6.299900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.299900e+04 6.299900e+04 0.00 NULL
2017 Nyc Dept Of Veterans’ Services Administrative Community Relations Specialist 79000.00000 3.160000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.160000e+05 3.160000e+05 0.00 NULL
2017 Nyc Dept Of Veterans’ Services Administrative Director Of Social Services 109033.33333 3.271000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.271000e+05 3.271000e+05 0.00 NULL
2017 Nyc Dept Of Veterans’ Services Administrative Staff Analyst 78000.00000 7.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.800000e+04 7.800000e+04 0.00 NULL
2017 Nyc Dept Of Veterans’ Services College Aide 1108.80000 1.108800e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.108800e+03 1.108800e+03 0.00 NULL
2017 Nyc Dept Of Veterans’ Services Community Associate 52142.50000 1.042850e+05 1224.27 6.121350e+02 612.135 40.00 2 6.121350e+02 1224.27 1.055093e+05 1.055093e+05 0.00 NULL
2017 Nyc Dept Of Veterans’ Services Community Coordinator 55899.13333 8.384870e+05 9703.63 6.469087e+02 376.300 283.00 15 3.763000e+02 5644.50 8.481906e+05 8.441315e+05 4059.13 NULL
2017 Nyc Dept Of Veterans’ Services Deputy Assistant Commissioner 109939.83333 6.596390e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.596390e+05 6.596390e+05 0.00 NULL
2017 Nyc Dept Of Veterans’ Services Mayoral Office Assistant 77250.00000 7.725000e+04 0.00 0.000000e+00 0.000 5.00 1 0.000000e+00 0.00 7.725000e+04 7.725000e+04 0.00 NULL
2017 Nyc Dept Of Veterans’ Services Special Assistant 147133.50000 5.885340e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.885340e+05 5.885340e+05 0.00 NULL
2017 Nyc Employees Retirement Sys Accountant 67920.88889 6.112880e+05 13122.51 1.458057e+03 1007.500 287.75 9 1.007500e+03 9067.50 6.244105e+05 6.203555e+05 4055.01 NULL
2017 Nyc Employees Retirement Sys Actuarial Specialist Level I 72166.00000 7.216600e+04 325.86 3.258600e+02 325.860 8.25 1 3.258600e+02 325.86 7.249186e+04 7.249186e+04 0.00 NULL
2017 Nyc Employees Retirement Sys Adm Manager-Non-Mgrl 78015.60000 3.900780e+05 12315.62 2.463124e+03 0.000 308.50 5 0.000000e+00 0.00 4.023936e+05 3.900780e+05 12315.62 NULL
2017 Nyc Employees Retirement Sys Administrative Accountant 131749.00000 1.317490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.317490e+05 1.317490e+05 0.00 NULL
2017 Nyc Employees Retirement Sys Administrative Graphic Artist 97782.00000 9.778200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.778200e+04 9.778200e+04 0.00 NULL
2017 Nyc Employees Retirement Sys Administrative Labor Relations Analyst 137827.00000 2.756540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.756540e+05 2.756540e+05 0.00 NULL
2017 Nyc Employees Retirement Sys Administrative Management Auditor 127670.00000 1.276700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.276700e+05 1.276700e+05 0.00 NULL
2017 Nyc Employees Retirement Sys Administrative Manager 102859.50000 2.057190e+05 785.09 3.925450e+02 392.545 15.00 2 3.925450e+02 785.09 2.065041e+05 2.065041e+05 0.00 NULL
2017 Nyc Employees Retirement Sys Administrative Procurement Analyst 143294.00000 1.432940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.432940e+05 1.432940e+05 0.00 NULL
2017 Nyc Employees Retirement Sys Administrative Public Information Specialist 134774.00000 2.695480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.695480e+05 2.695480e+05 0.00 NULL
2017 Nyc Employees Retirement Sys Administrative Retirement Benefits Specialist 116655.00000 1.983135e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.983135e+06 1.983135e+06 0.00 NULL
2017 Nyc Employees Retirement Sys Administrative Staff Analyst 120472.50000 1.204725e+06 24902.06 2.490206e+03 0.000 388.25 10 0.000000e+00 0.00 1.229627e+06 1.204725e+06 24902.06 NULL
2017 Nyc Employees Retirement Sys Agency Attorney 77781.80000 3.889090e+05 17850.31 3.570062e+03 2549.380 269.50 5 2.549380e+03 12746.90 4.067593e+05 4.016559e+05 5103.41 NULL
2017 Nyc Employees Retirement Sys Assistant Retirement Benefits Examiner 45945.85135 3.399993e+06 151815.95 2.051567e+03 86.815 4316.25 74 8.681500e+01 6424.31 3.551809e+06 3.406417e+06 145391.64 NULL
2017 Nyc Employees Retirement Sys Associate Retirement Benefits Examiner 58065.95385 7.548574e+06 666370.23 5.125925e+03 2697.110 15323.00 130 2.697110e+03 350624.30 8.214944e+06 7.899198e+06 315745.93 NULL
2017 Nyc Employees Retirement Sys Associate Staff Analyst 92274.00000 9.227400e+04 2035.94 2.035940e+03 2035.940 35.25 1 2.035940e+03 2035.94 9.430994e+04 9.430994e+04 0.00 NULL
2017 Nyc Employees Retirement Sys Bookkeeper 47312.50000 9.462500e+04 2516.34 1.258170e+03 1258.170 77.50 2 1.258170e+03 2516.34 9.714134e+04 9.714134e+04 0.00 NULL
2017 Nyc Employees Retirement Sys Certified It Administrator 97589.46154 1.268663e+06 102948.68 7.919129e+03 2309.580 1570.00 13 2.309580e+03 30024.54 1.371612e+06 1.298688e+06 72924.14 NULL
2017 Nyc Employees Retirement Sys Certified It Developer 105932.50000 2.118650e+05 6469.77 3.234885e+03 3234.885 97.00 2 3.234885e+03 6469.77 2.183348e+05 2.183348e+05 0.00 NULL
2017 Nyc Employees Retirement Sys Clerical Aide 32209.33333 9.662800e+04 23984.97 7.994990e+03 0.000 889.25 3 0.000000e+00 0.00 1.206130e+05 9.662800e+04 23984.97 NULL
2017 Nyc Employees Retirement Sys Clerical Associate 33874.35273 1.727592e+06 237261.70 4.652190e+03 2769.980 9072.00 51 2.769980e+03 141268.98 1.964854e+06 1.868861e+06 95992.72 NULL
2017 Nyc Employees Retirement Sys Community Assistant 37595.50000 2.255730e+05 63410.78 1.056846e+04 10266.430 2242.75 6 1.026643e+04 61598.58 2.889838e+05 2.871716e+05 1812.20 NULL
2017 Nyc Employees Retirement Sys Computer Associate 79237.75000 1.267804e+06 39739.97 2.483748e+03 944.375 785.75 16 9.443750e+02 15110.00 1.307544e+06 1.282914e+06 24629.97 NULL
2017 Nyc Employees Retirement Sys Computer Programmer Analyst 65630.00000 6.563000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.563000e+04 6.563000e+04 0.00 NULL
2017 Nyc Employees Retirement Sys Computer Service Technician 43881.00000 4.388100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.388100e+04 4.388100e+04 0.00 NULL
2017 Nyc Employees Retirement Sys Computer Specialist 96662.63158 1.836590e+06 26684.37 1.404441e+03 219.320 436.25 19 2.193200e+02 4167.08 1.863274e+06 1.840757e+06 22517.29 NULL
2017 Nyc Employees Retirement Sys Computer Systems Manager 140313.82353 2.385335e+06 3358.03 1.975312e+02 0.000 45.25 17 0.000000e+00 0.00 2.388693e+06 2.385335e+06 3358.03 NULL
2017 Nyc Employees Retirement Sys Customer Information Representative 27648.62953 8.294589e+05 60269.41 2.008980e+03 810.155 2667.00 30 8.101550e+02 24304.65 8.897283e+05 8.537635e+05 35964.76 NULL
2017 Nyc Employees Retirement Sys Deputy Director 183971.00000 1.839710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.839710e+05 1.839710e+05 0.00 NULL
2017 Nyc Employees Retirement Sys Deputy Executive Director 201735.00000 4.034700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.034700e+05 4.034700e+05 0.00 NULL
2017 Nyc Employees Retirement Sys Executive Agency Counsel 131325.00000 2.626500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.626500e+05 2.626500e+05 0.00 NULL
2017 Nyc Employees Retirement Sys Executive Director 226364.00000 2.263640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263640e+05 2.263640e+05 0.00 NULL
2017 Nyc Employees Retirement Sys Legal Secretarial Assistant Al 2,3,4 Only 68652.00000 6.865200e+04 935.83 9.358300e+02 935.830 22.50 1 9.358300e+02 935.83 6.958783e+04 6.958783e+04 0.00 NULL
2017 Nyc Employees Retirement Sys Management Auditor 61707.00000 2.468280e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.468280e+05 2.468280e+05 0.00 NULL
2017 Nyc Employees Retirement Sys Office Machine Aide 18101.74469 4.163401e+05 81468.68 3.542117e+03 3206.850 4496.00 23 3.206850e+03 73757.55 4.978088e+05 4.900977e+05 7711.13 NULL
2017 Nyc Employees Retirement Sys Principal Administrative Associate 60275.25926 1.627432e+06 106424.04 3.941631e+03 63.980 2447.75 27 6.398000e+01 1727.46 1.733856e+06 1.629159e+06 104696.58 NULL
2017 Nyc Employees Retirement Sys Staff Analyst 57590.00000 5.759000e+04 20230.44 2.023044e+04 20230.440 505.25 1 2.023044e+04 20230.44 7.782044e+04 7.782044e+04 0.00 NULL
2017 Nyc Employees Retirement Sys Supervising Computer Service Technician 71252.00000 7.125200e+04 401.62 4.016200e+02 401.620 8.75 1 4.016200e+02 401.62 7.165362e+04 7.165362e+04 0.00 NULL
2017 Nyc Employees Retirement Sys Telecommunications Associate 105549.00000 1.055490e+05 4007.94 4.007940e+03 4007.940 52.25 1 4.007940e+03 4007.94 1.095569e+05 1.095569e+05 0.00 NULL
2017 Nyc Housing Authority *Administrative Attorney 126492.00000 1.264920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.264920e+05 1.264920e+05 0.00 NULL
2017 Nyc Housing Authority *Housing Caretaker 42705.89189 1.580118e+06 289574.48 7.826337e+03 5709.560 8276.25 37 5.709560e+03 211253.72 1.869692e+06 1.791372e+06 78320.76 NULL
2017 Nyc Housing Authority *Procurment Analyst Level Iii, Oj 72162.00000 7.216200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.216200e+04 7.216200e+04 0.00 NULL
2017 Nyc Housing Authority Accountant 60762.38889 2.187446e+06 33.97 9.436111e-01 0.000 3.00 36 0.000000e+00 0.00 2.187480e+06 2.187446e+06 33.97 NULL
2017 Nyc Housing Authority Adm Manager-Non-Mgrl 72636.60656 4.430833e+06 10489.01 1.719510e+02 0.000 232.75 61 0.000000e+00 0.00 4.441322e+06 4.430833e+06 10489.01 NULL
2017 Nyc Housing Authority Admin Community Relations Specialist 82704.40625 2.646541e+06 10300.80 3.219000e+02 0.000 212.75 32 0.000000e+00 0.00 2.656842e+06 2.646541e+06 10300.80 NULL
2017 Nyc Housing Authority Admin Contract Specialist 114932.81818 1.264261e+06 9303.87 8.458064e+02 0.000 136.75 11 0.000000e+00 0.00 1.273565e+06 1.264261e+06 9303.87 NULL
2017 Nyc Housing Authority Admin Housing Development Spec 97850.00000 9.785000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.785000e+04 9.785000e+04 0.00 NULL
2017 Nyc Housing Authority Administration Public Record Officer 97187.00000 9.718700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.718700e+04 9.718700e+04 0.00 NULL
2017 Nyc Housing Authority Administrative Accountant 106337.14815 2.871103e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 2.871103e+06 2.871103e+06 0.00 NULL
2017 Nyc Housing Authority Administrative Architect 119377.16667 7.162630e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.162630e+05 7.162630e+05 0.00 NULL
2017 Nyc Housing Authority Administrative Business Promotion Coordinator 97144.66667 1.165736e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.165736e+06 1.165736e+06 0.00 NULL
2017 Nyc Housing Authority Administrative City Planner 127232.80000 6.361640e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.361640e+05 6.361640e+05 0.00 NULL
2017 Nyc Housing Authority Administrative Claim Examiner 112223.25000 4.488930e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.488930e+05 4.488930e+05 0.00 NULL
2017 Nyc Housing Authority Administrative Community Relations Specialist 123435.50000 9.874840e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.874840e+05 9.874840e+05 0.00 NULL
2017 Nyc Housing Authority Administrative Construction Project Manager 110190.68421 2.093623e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.093623e+06 2.093623e+06 0.00 NULL
2017 Nyc Housing Authority Administrative Engineer 123145.77778 1.108312e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.108312e+06 1.108312e+06 0.00 NULL
2017 Nyc Housing Authority Administrative Graphic Artist 92740.00000 9.274000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.274000e+04 9.274000e+04 0.00 NULL
2017 Nyc Housing Authority Administrative Housing Development Specialist 111424.21053 2.117060e+06 2113.67 1.112458e+02 0.000 26.50 19 0.000000e+00 0.00 2.119174e+06 2.117060e+06 2113.67 NULL
2017 Nyc Housing Authority Administrative Housing Manager 118414.00000 3.789248e+06 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 3.789248e+06 3.789248e+06 0.00 NULL
2017 Nyc Housing Authority Administrative Housing Superintendent 115943.85484 7.188519e+06 66409.26 1.071117e+03 0.000 1112.75 62 0.000000e+00 0.00 7.254928e+06 7.188519e+06 66409.26 NULL
2017 Nyc Housing Authority Administrative Inspector 114270.62500 1.828330e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.828330e+06 1.828330e+06 0.00 NULL
2017 Nyc Housing Authority Administrative Labor Relations Analyst 92378.75000 3.695150e+05 2129.92 5.324800e+02 456.980 29.50 4 4.569800e+02 1827.92 3.716449e+05 3.713429e+05 302.00 NULL
2017 Nyc Housing Authority Administrative Landscape Architect 105016.00000 2.100320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.100320e+05 2.100320e+05 0.00 NULL
2017 Nyc Housing Authority Administrative Management Auditor 109270.00000 2.185400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.185400e+05 2.185400e+05 0.00 NULL
2017 Nyc Housing Authority Administrative Printing Services Manager 106054.00000 1.060540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.060540e+05 1.060540e+05 0.00 NULL
2017 Nyc Housing Authority Administrative Procurement Analyst 94630.44444 8.516740e+05 8478.98 9.421089e+02 0.000 83.75 9 0.000000e+00 0.00 8.601530e+05 8.516740e+05 8478.98 NULL
2017 Nyc Housing Authority Administrative Project Manager 117650.04348 2.705951e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 2.705951e+06 2.705951e+06 0.00 NULL
2017 Nyc Housing Authority Administrative Public Information Specialist 104408.94118 1.774952e+06 1615.44 9.502588e+01 0.000 34.50 17 0.000000e+00 0.00 1.776567e+06 1.774952e+06 1615.44 NULL
2017 Nyc Housing Authority Administrative Quality Assurance Specialist 79175.00000 7.917500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.917500e+04 7.917500e+04 0.00 NULL
2017 Nyc Housing Authority Administrative Real Property Manager 153285.00000 6.131400e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.131400e+05 6.131400e+05 0.00 NULL
2017 Nyc Housing Authority Administrative Space Analyst 96813.25000 3.872530e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.872530e+05 3.872530e+05 0.00 NULL
2017 Nyc Housing Authority Administrative Staff Analyst 105281.19745 1.652915e+07 32400.51 2.063727e+02 0.000 704.00 157 0.000000e+00 0.00 1.656155e+07 1.652915e+07 32400.51 NULL
2017 Nyc Housing Authority Administrative Storekeeper 102332.00000 5.116600e+05 6396.04 1.279208e+03 0.000 58.25 5 0.000000e+00 0.00 5.180560e+05 5.116600e+05 6396.04 NULL
2017 Nyc Housing Authority Administrative Supervisor Of Building Maintenance 108685.90000 1.086859e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.086859e+06 1.086859e+06 0.00 NULL
2017 Nyc Housing Authority Agency Attorney 83037.90566 4.401009e+06 0.00 0.000000e+00 0.000 4.00 53 0.000000e+00 0.00 4.401009e+06 4.401009e+06 0.00 NULL
2017 Nyc Housing Authority Apprentice 51506.82653 5.047669e+06 455350.28 4.646431e+03 2638.465 13353.25 98 2.638465e+03 258569.57 5.503019e+06 5.306239e+06 196780.71 NULL
2017 Nyc Housing Authority Architect 86928.87500 6.954310e+05 43821.39 5.477674e+03 0.000 776.25 8 0.000000e+00 0.00 7.392524e+05 6.954310e+05 43821.39 NULL
2017 Nyc Housing Authority Asbestos Handler 79768.87500 1.276302e+06 168302.17 1.051889e+04 7489.000 3190.75 16 7.489000e+03 119824.00 1.444604e+06 1.396126e+06 48478.17 NULL
2017 Nyc Housing Authority Asbestos Handler Supervisor 83767.00000 4.188350e+05 112513.34 2.250267e+04 26187.460 1964.25 5 2.250267e+04 112513.34 5.313483e+05 5.313483e+05 0.00 NULL
2017 Nyc Housing Authority Asbestos Hazard Investigator 72301.83333 4.338110e+05 81688.09 1.361468e+04 12761.195 1597.75 6 1.276119e+04 76567.17 5.154991e+05 5.103782e+05 5120.92 NULL
2017 Nyc Housing Authority Assistant Architect 65672.22222 5.910500e+05 272.96 3.032889e+01 0.000 0.00 9 0.000000e+00 0.00 5.913230e+05 5.910500e+05 272.96 NULL
2017 Nyc Housing Authority Assistant Caretaker 36196.00000 1.085880e+05 619.83 2.066100e+02 0.000 21.00 3 0.000000e+00 0.00 1.092078e+05 1.085880e+05 619.83 NULL
2017 Nyc Housing Authority Assistant Civil Engineer 72448.50000 2.897940e+05 337.92 8.448000e+01 0.000 0.00 4 0.000000e+00 0.00 2.901319e+05 2.897940e+05 337.92 NULL
2017 Nyc Housing Authority Assistant Director Of Intergroup Relations 89509.40000 4.475470e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.475470e+05 4.475470e+05 0.00 NULL
2017 Nyc Housing Authority Assistant Electrical Engineer 63081.00000 1.261620e+05 0.00 0.000000e+00 0.000 1.00 2 0.000000e+00 0.00 1.261620e+05 1.261620e+05 0.00 NULL
2017 Nyc Housing Authority Assistant Executive Director 164474.00000 4.934220e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.934220e+05 4.934220e+05 0.00 NULL
2017 Nyc Housing Authority Assistant Housing Manager 70916.08840 1.283581e+07 332624.71 1.837706e+03 0.000 7255.75 181 0.000000e+00 0.00 1.316844e+07 1.283581e+07 332624.71 NULL
2017 Nyc Housing Authority Assistant Landscape Architect 77631.00000 7.763100e+04 2284.97 2.284970e+03 2284.970 41.75 1 2.284970e+03 2284.97 7.991597e+04 7.991597e+04 0.00 NULL
2017 Nyc Housing Authority Assistant Mechanical Engineer 71546.66667 2.146400e+05 692.90 2.309667e+02 0.000 13.25 3 0.000000e+00 0.00 2.153329e+05 2.146400e+05 692.90 NULL
2017 Nyc Housing Authority Assistant Printing Press Operator 56959.60000 2.847980e+05 4260.56 8.521120e+02 855.860 119.75 5 8.521120e+02 4260.56 2.890586e+05 2.890586e+05 0.00 NULL
2017 Nyc Housing Authority Assistant Resident Building Supt 68800.50215 1.603052e+07 2630355.64 1.128908e+04 9368.490 54158.75 233 9.368490e+03 2182858.17 1.866087e+07 1.821338e+07 447497.47 NULL
2017 Nyc Housing Authority Assistant To The Chairman 61885.00000 6.188500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.188500e+04 6.188500e+04 0.00 NULL
2017 Nyc Housing Authority Assistant Urban Designer 70391.50000 2.815660e+05 142.30 3.557500e+01 0.000 2.00 4 0.000000e+00 0.00 2.817083e+05 2.815660e+05 142.30 NULL
2017 Nyc Housing Authority Assoc Inspector 79176.66667 4.750600e+05 2750.21 4.583683e+02 0.000 51.00 6 0.000000e+00 0.00 4.778102e+05 4.750600e+05 2750.21 NULL
2017 Nyc Housing Authority Associate Contract Specialist 74253.50000 1.485070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.485070e+05 1.485070e+05 0.00 NULL
2017 Nyc Housing Authority Associate Fraud Investigator 87214.00000 8.721400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.721400e+04 8.721400e+04 0.00 NULL
2017 Nyc Housing Authority Associate Housing Development Specialist 91720.83333 5.503250e+05 46.56 7.760000e+00 0.000 0.00 6 0.000000e+00 0.00 5.503716e+05 5.503250e+05 46.56 NULL
2017 Nyc Housing Authority Associate Inspector 78384.00000 2.351520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.351520e+05 2.351520e+05 0.00 NULL
2017 Nyc Housing Authority Associate Investigator 61593.00000 4.927440e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.927440e+05 4.927440e+05 0.00 NULL
2017 Nyc Housing Authority Associate Labor Relations Analyst 84460.00000 8.446000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.446000e+04 8.446000e+04 0.00 NULL
2017 Nyc Housing Authority Associate Operations Communications Specialist 57074.00000 5.707400e+04 1479.93 1.479930e+03 1479.930 35.00 1 1.479930e+03 1479.93 5.855393e+04 5.855393e+04 0.00 NULL
2017 Nyc Housing Authority Associate Project Manager 83711.75000 1.004541e+06 305.11 2.542583e+01 0.000 5.00 12 0.000000e+00 0.00 1.004846e+06 1.004541e+06 305.11 NULL
2017 Nyc Housing Authority Associate Public Information Specialist 54800.00000 5.480000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.480000e+04 5.480000e+04 0.00 NULL
2017 Nyc Housing Authority Associate Quality Assurance Specialist 63731.00000 6.373100e+04 0.01 1.000000e-02 0.010 0.00 1 1.000000e-02 0.01 6.373101e+04 6.373101e+04 0.00 NULL
2017 Nyc Housing Authority Associate Real Property Manager 70349.00000 1.406980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.406980e+05 1.406980e+05 0.00 NULL
2017 Nyc Housing Authority Associate Staff Analyst 79453.90741 4.290511e+06 33741.34 6.248396e+02 0.000 707.00 54 0.000000e+00 0.00 4.324252e+06 4.290511e+06 33741.34 NULL
2017 Nyc Housing Authority Attorney At Law 85029.00000 5.101740e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.101740e+05 5.101740e+05 0.00 NULL
2017 Nyc Housing Authority Auto Mechanic NA NA 20087.05 5.021762e+03 2352.140 344.50 4 2.352140e+03 9408.56 NA NA NA NULL
2017 Nyc Housing Authority Automotive Service Worker 44937.80000 2.246890e+05 1604.29 3.208580e+02 0.000 59.50 5 0.000000e+00 0.00 2.262933e+05 2.246890e+05 1604.29 NULL
2017 Nyc Housing Authority Bookkeeper 47968.00000 1.247168e+06 99.43 3.824231e+00 0.000 3.50 26 0.000000e+00 0.00 1.247267e+06 1.247168e+06 99.43 NULL
2017 Nyc Housing Authority Bricklayer NA NA 1260040.93 1.594989e+04 7733.610 16053.75 79 7.733610e+03 610955.19 NA NA NA NULL
2017 Nyc Housing Authority Business Promotion Coordinator 58931.25000 2.357250e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.357250e+05 2.357250e+05 0.00 NULL
2017 Nyc Housing Authority Caretaker 39683.86404 1.412746e+08 23206690.80 6.518733e+03 6656.040 755270.75 3560 6.518733e+03 23206690.80 1.644812e+08 1.644812e+08 0.00 NULL
2017 Nyc Housing Authority Carpenter NA NA 4435619.03 1.529524e+04 7039.315 58053.50 290 7.039315e+03 2041401.35 NA NA NA NULL
2017 Nyc Housing Authority Cashier 47518.00000 4.751800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.751800e+04 4.751800e+04 0.00 NULL
2017 Nyc Housing Authority Certified It Administrator 101371.14286 1.419196e+06 128380.31 9.170022e+03 5455.785 1678.25 14 5.455785e+03 76380.99 1.547576e+06 1.495577e+06 51999.32 NULL
2017 Nyc Housing Authority Chair 231684.00000 2.316840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.316840e+05 2.316840e+05 0.00 NULL
2017 Nyc Housing Authority Chief Caretaker 48137.64286 1.347854e+06 256468.56 9.159591e+03 9185.050 8297.50 28 9.159591e+03 256468.56 1.604323e+06 1.604323e+06 0.00 NULL
2017 Nyc Housing Authority Chief Of Housing Community Activities 85455.66667 2.563670e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.563670e+05 2.563670e+05 0.00 NULL
2017 Nyc Housing Authority Chief, Publications & Reports 117435.00000 1.174350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.174350e+05 1.174350e+05 0.00 NULL
2017 Nyc Housing Authority City Attendant 30372.10000 3.037210e+05 4251.60 4.251600e+02 0.000 230.25 10 0.000000e+00 0.00 3.079726e+05 3.037210e+05 4251.60 NULL
2017 Nyc Housing Authority City Elevator Operator 27331.00000 1.639860e+05 827.64 1.379400e+02 145.200 6.00 6 1.379400e+02 827.64 1.648136e+05 1.648136e+05 0.00 NULL
2017 Nyc Housing Authority City Planner 66291.60000 3.314580e+05 38.76 7.752000e+00 0.000 1.00 5 0.000000e+00 0.00 3.314968e+05 3.314580e+05 38.76 NULL
2017 Nyc Housing Authority City Research Scientist 67631.66667 2.028950e+05 725.43 2.418100e+02 0.000 20.75 3 0.000000e+00 0.00 2.036204e+05 2.028950e+05 725.43 NULL
2017 Nyc Housing Authority City Seasonal Aide 18416.57360 3.628065e+06 0.00 0.000000e+00 0.000 0.00 197 0.000000e+00 0.00 3.628065e+06 3.628065e+06 0.00 NULL
2017 Nyc Housing Authority City Security Aide 14529.94000 1.452994e+06 40958.99 4.095899e+02 0.000 1969.75 100 0.000000e+00 0.00 1.493953e+06 1.452994e+06 40958.99 NULL
2017 Nyc Housing Authority City Service Aide 16686.10256 1.952274e+06 1601.42 1.368735e+01 0.000 115.25 117 0.000000e+00 0.00 1.953875e+06 1.952274e+06 1601.42 NULL
2017 Nyc Housing Authority Civil Engineer 87557.40000 8.755740e+05 949.73 9.497300e+01 0.000 21.50 10 0.000000e+00 0.00 8.765237e+05 8.755740e+05 949.73 NULL
2017 Nyc Housing Authority Claim Specialist 61208.37500 4.896670e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.896670e+05 4.896670e+05 0.00 NULL
2017 Nyc Housing Authority Clerical Aide 30313.42857 2.121940e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.121940e+05 2.121940e+05 0.00 NULL
2017 Nyc Housing Authority Clerical Associate 41304.80508 4.873967e+06 35200.17 2.983065e+02 0.000 1199.00 118 0.000000e+00 0.00 4.909167e+06 4.873967e+06 35200.17 NULL
2017 Nyc Housing Authority College Aide 28157.20000 1.407860e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.407860e+05 1.407860e+05 0.00 NULL
2017 Nyc Housing Authority Community Assistant 35092.50000 3.509250e+05 2732.47 2.732470e+02 0.000 109.50 10 0.000000e+00 0.00 3.536575e+05 3.509250e+05 2732.47 NULL
2017 Nyc Housing Authority Community Associate 42834.27273 4.240593e+06 25690.09 2.594959e+02 0.000 882.25 99 0.000000e+00 0.00 4.266283e+06 4.240593e+06 25690.09 NULL
2017 Nyc Housing Authority Community Coordinator 61654.44361 8.200041e+06 24849.22 1.868362e+02 0.000 562.75 133 0.000000e+00 0.00 8.224890e+06 8.200041e+06 24849.22 NULL
2017 Nyc Housing Authority Community Service Aide 11132.59091 4.898340e+05 72.60 1.650000e+00 0.000 1.00 44 0.000000e+00 0.00 4.899066e+05 4.898340e+05 72.60 NULL
2017 Nyc Housing Authority Computer Aide-Non-Spvr 43967.00000 4.396700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.396700e+04 4.396700e+04 0.00 NULL
2017 Nyc Housing Authority Computer Associate 72622.34615 1.888181e+06 27994.98 1.076730e+03 0.000 649.75 26 0.000000e+00 0.00 1.916176e+06 1.888181e+06 27994.98 NULL
2017 Nyc Housing Authority Computer Operations Manager 96245.71429 6.737200e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.737200e+05 6.737200e+05 0.00 NULL
2017 Nyc Housing Authority Computer Service Technician 50344.00000 1.510320e+05 2613.65 8.712167e+02 0.000 83.50 3 0.000000e+00 0.00 1.536456e+05 1.510320e+05 2613.65 NULL
2017 Nyc Housing Authority Computer Specialist 95866.58824 6.518928e+06 199387.79 2.932173e+03 0.000 2956.75 68 0.000000e+00 0.00 6.718316e+06 6.518928e+06 199387.79 NULL
2017 Nyc Housing Authority Computer Systems Manager 122410.22222 4.406768e+06 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 4.406768e+06 4.406768e+06 0.00 NULL
2017 Nyc Housing Authority Confidential Investigator 62446.26471 2.123173e+06 33720.90 9.917912e+02 0.000 892.75 34 0.000000e+00 0.00 2.156894e+06 2.123173e+06 33720.90 NULL
2017 Nyc Housing Authority Construction Project Manager 77309.36607 8.658649e+06 123860.36 1.105896e+03 0.000 2340.00 112 0.000000e+00 0.00 8.782509e+06 8.658649e+06 123860.36 NULL
2017 Nyc Housing Authority Controller 152909.00000 1.529090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.529090e+05 1.529090e+05 0.00 NULL
2017 Nyc Housing Authority Counsel 142561.00000 1.425610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.425610e+05 1.425610e+05 0.00 NULL
2017 Nyc Housing Authority Customer Information Representative 41661.29412 4.249452e+06 103414.94 1.013872e+03 0.000 2882.25 102 0.000000e+00 0.00 4.352867e+06 4.249452e+06 103414.94 NULL
2017 Nyc Housing Authority Dep Dir Of Audit & Prog Analysis 126690.00000 1.266900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.266900e+05 1.266900e+05 0.00 NULL
2017 Nyc Housing Authority Dep Dir Of Social & Comm Serv 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2017 Nyc Housing Authority Dep Dir Research & Pol Develp 108502.00000 2.170040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.170040e+05 2.170040e+05 0.00 NULL
2017 Nyc Housing Authority Dep Director Of Personnel & Lr 129265.00000 2.585300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.585300e+05 2.585300e+05 0.00 NULL
2017 Nyc Housing Authority Deputy Controller 155023.00000 1.550230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550230e+05 1.550230e+05 0.00 NULL
2017 Nyc Housing Authority Deputy Counsel Intern 67828.75000 2.713150e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.713150e+05 2.713150e+05 0.00 NULL
2017 Nyc Housing Authority Deputy Executive Director 197572.50000 3.951450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.951450e+05 3.951450e+05 0.00 NULL
2017 Nyc Housing Authority Deputy Inspector General 100343.83333 6.020630e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.020630e+05 6.020630e+05 0.00 NULL
2017 Nyc Housing Authority Dir Of Audit & Prog Analysis 150380.00000 1.503800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503800e+05 1.503800e+05 0.00 NULL
2017 Nyc Housing Authority Dir Of Personnel & Labor Rels 163641.00000 1.636410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.636410e+05 1.636410e+05 0.00 NULL
2017 Nyc Housing Authority Dir Of Quality & Cost Control 190962.00000 1.909620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.909620e+05 1.909620e+05 0.00 NULL
2017 Nyc Housing Authority Director Of Equal Opportunity 131272.00000 1.312720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.312720e+05 1.312720e+05 0.00 NULL
2017 Nyc Housing Authority Director Of General Services 160529.00000 4.815870e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.815870e+05 4.815870e+05 0.00 NULL
2017 Nyc Housing Authority Director Of Housing Applicantions 148475.00000 2.969500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.969500e+05 2.969500e+05 0.00 NULL
2017 Nyc Housing Authority Director Of Information Systems 198135.00000 1.981350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.981350e+05 1.981350e+05 0.00 NULL
2017 Nyc Housing Authority Director Of Methods & Analysis 148705.00000 1.487050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.487050e+05 1.487050e+05 0.00 NULL
2017 Nyc Housing Authority Director Of Plant Operations & Maintenance 148765.00000 1.487650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.487650e+05 1.487650e+05 0.00 NULL
2017 Nyc Housing Authority Economist 69833.75000 5.586700e+05 1669.96 2.087450e+02 0.000 44.25 8 0.000000e+00 0.00 5.603400e+05 5.586700e+05 1669.96 NULL
2017 Nyc Housing Authority Electrical Engineer 85565.00000 1.711300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.711300e+05 1.711300e+05 0.00 NULL
2017 Nyc Housing Authority Electrician NA NA 1989434.51 2.313296e+04 19314.575 23257.00 86 1.931458e+04 1661053.45 NA NA NA NULL
2017 Nyc Housing Authority Electrician’s Helper NA NA 619943.01 8.984681e+03 4631.170 11739.00 69 4.631170e+03 319550.73 NA NA NA NULL
2017 Nyc Housing Authority Elevator Mechanic NA NA 4019357.02 1.681739e+04 15775.350 54967.00 239 1.577535e+04 3770308.65 NA NA NA NULL
2017 Nyc Housing Authority Elevator Mechanic Helper NA NA 2458118.97 1.187497e+04 12136.500 50527.00 207 1.187497e+04 2458118.97 NA NA NA NULL
2017 Nyc Housing Authority Emergency Service Aide 37684.54545 2.901710e+06 246736.84 3.204375e+03 1043.080 9488.50 77 1.043080e+03 80317.16 3.148447e+06 2.982027e+06 166419.68 NULL
2017 Nyc Housing Authority Engineering Technician 73047.00000 7.304700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.304700e+04 7.304700e+04 0.00 NULL
2017 Nyc Housing Authority Executive Agency Counsel 118517.68750 3.792566e+06 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 3.792566e+06 3.792566e+06 0.00 NULL
2017 Nyc Housing Authority Executive Director 216429.00000 2.164290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.164290e+05 2.164290e+05 0.00 NULL
2017 Nyc Housing Authority Executive Program Specialist 118450.00000 1.184500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.184500e+05 1.184500e+05 0.00 NULL
2017 Nyc Housing Authority Fraud Investigator 58259.50000 1.165190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.165190e+05 1.165190e+05 0.00 NULL
2017 Nyc Housing Authority Glazier NA NA 331306.62 8.718595e+03 3341.300 3396.50 38 3.341300e+03 126969.40 NA NA NA NULL
2017 Nyc Housing Authority Graphic Artist 48810.00000 1.464300e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.464300e+05 1.464300e+05 0.00 NULL
2017 Nyc Housing Authority Health Services Manager 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2017 Nyc Housing Authority Hearing Examiner 119910.00000 3.597300e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.597300e+05 3.597300e+05 0.00 NULL
2017 Nyc Housing Authority Heating Plant Technician 49409.57595 1.561343e+07 1416634.06 4.483019e+03 3103.880 43160.75 316 3.103880e+03 980826.08 1.703006e+07 1.659425e+07 435807.98 NULL
2017 Nyc Housing Authority High Pressure Plant Tender NA NA 14647.91 1.464791e+04 14647.910 288.75 1 1.464791e+04 14647.91 NA NA NA NULL
2017 Nyc Housing Authority Housing Assistant 56149.58444 5.053463e+07 507319.86 5.636887e+02 0.000 14008.25 900 0.000000e+00 0.00 5.104195e+07 5.053463e+07 507319.86 NULL
2017 Nyc Housing Authority Housing Development Specialist 63205.66667 1.896170e+05 4691.41 1.563803e+03 824.900 75.25 3 8.249000e+02 2474.70 1.943084e+05 1.920917e+05 2216.71 NULL
2017 Nyc Housing Authority Housing Development Specialist Trainee 47508.00000 4.750800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.750800e+04 4.750800e+04 0.00 NULL
2017 Nyc Housing Authority Housing Exterminator 50534.64029 7.024315e+06 192682.27 1.386203e+03 210.860 4922.25 139 2.108600e+02 29309.54 7.216997e+06 7.053625e+06 163372.73 NULL
2017 Nyc Housing Authority Housing Manager 87427.52195 1.792264e+07 828261.62 4.040301e+03 1364.970 14846.50 205 1.364970e+03 279818.85 1.875090e+07 1.820246e+07 548442.77 NULL
2017 Nyc Housing Authority Housing Stock Worker 49990.82609 1.149789e+06 5204.73 2.262926e+02 0.000 167.00 23 0.000000e+00 0.00 1.154994e+06 1.149789e+06 5204.73 NULL
2017 Nyc Housing Authority Industrial Hygienist 64631.00000 1.938930e+05 1295.34 4.317800e+02 447.950 30.75 3 4.317800e+02 1295.34 1.951883e+05 1.951883e+05 0.00 NULL
2017 Nyc Housing Authority Inspector 66565.25000 2.662610e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.662610e+05 2.662610e+05 0.00 NULL
2017 Nyc Housing Authority Inspector General 147935.00000 1.479350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.479350e+05 1.479350e+05 0.00 NULL
2017 Nyc Housing Authority Interpreter 51555.20000 2.577760e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.577760e+05 2.577760e+05 0.00 NULL
2017 Nyc Housing Authority Interpreter/Translator 50321.50000 2.012860e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.012860e+05 2.012860e+05 0.00 NULL
2017 Nyc Housing Authority Investigator 49306.28571 3.451440e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.451440e+05 3.451440e+05 0.00 NULL
2017 Nyc Housing Authority Labor Relations Analyst 66529.50000 3.991770e+05 580.94 9.682333e+01 0.000 8.00 6 0.000000e+00 0.00 3.997579e+05 3.991770e+05 580.94 NULL
2017 Nyc Housing Authority Labor Relations Analyst Trainee 48294.21053 9.175900e+05 420.74 2.214421e+01 0.000 12.75 19 0.000000e+00 0.00 9.180107e+05 9.175900e+05 420.74 NULL
2017 Nyc Housing Authority Landscape Architect 81549.00000 1.630980e+05 7690.78 3.845390e+03 3845.390 149.75 2 3.845390e+03 7690.78 1.707888e+05 1.707888e+05 0.00 NULL
2017 Nyc Housing Authority Lead Abatement Worker 48718.05405 1.802568e+06 79687.08 2.153705e+03 845.910 2237.25 37 8.459100e+02 31298.67 1.882255e+06 1.833867e+06 48388.41 NULL
2017 Nyc Housing Authority Legal Secretarial Assistant - Al 1 Only 41024.00000 8.204800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.204800e+04 8.204800e+04 0.00 NULL
2017 Nyc Housing Authority Machinist NA NA 12608.93 4.202977e+03 4060.400 198.50 3 4.060400e+03 12181.20 NA NA NA NULL
2017 Nyc Housing Authority Maintenance Worker NA NA 10302711.92 9.408869e+03 8301.370 245327.25 1095 8.301370e+03 9090000.15 NA NA NA NULL
2017 Nyc Housing Authority Management Auditor 67972.22222 1.223500e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.223500e+06 1.223500e+06 0.00 NULL
2017 Nyc Housing Authority Masons Helper NA NA 574248.47 9.900836e+03 5391.630 11930.25 58 5.391630e+03 312714.54 NA NA NA NULL
2017 Nyc Housing Authority Mechanical Engineer 90253.16667 5.415190e+05 2030.81 3.384683e+02 0.000 46.75 6 0.000000e+00 0.00 5.435498e+05 5.415190e+05 2030.81 NULL
2017 Nyc Housing Authority Media Services Technician 57924.00000 5.792400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.792400e+04 5.792400e+04 0.00 NULL
2017 Nyc Housing Authority Motor Grader Operator NA NA 24089.58 8.029860e+03 8080.840 180.25 3 8.029860e+03 24089.58 NA NA NA NULL
2017 Nyc Housing Authority Motor Vehicle Operator 44847.95652 1.031503e+06 73951.04 3.215263e+03 0.000 2135.50 23 0.000000e+00 0.00 1.105454e+06 1.031503e+06 73951.04 NULL
2017 Nyc Housing Authority Motor Vehicle Supervisor 58013.00000 1.160260e+05 819.72 4.098600e+02 409.860 17.75 2 4.098600e+02 819.72 1.168457e+05 1.168457e+05 0.00 NULL
2017 Nyc Housing Authority Office Machine Aide 31608.00000 3.160800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.160800e+04 3.160800e+04 0.00 NULL
2017 Nyc Housing Authority Oil Burner Specialist 63341.42857 4.433900e+05 101440.52 1.449150e+04 11451.120 2265.75 7 1.145112e+04 80157.84 5.448305e+05 5.235478e+05 21282.68 NULL
2017 Nyc Housing Authority Painter NA NA 3448635.28 1.054629e+04 4435.040 52668.75 327 4.435040e+03 1450258.08 NA NA NA NULL
2017 Nyc Housing Authority Plasterer NA NA 4380617.82 1.646849e+04 12728.880 49289.75 266 1.272888e+04 3385882.08 NA NA NA NULL
2017 Nyc Housing Authority Plumber NA NA 6510373.76 6.445915e+04 63827.040 64270.00 101 6.382704e+04 6446531.04 NA NA NA NULL
2017 Nyc Housing Authority Plumber’s Helper NA NA 2887234.58 2.916399e+04 25503.860 39323.50 99 2.550386e+04 2524882.14 NA NA NA NULL
2017 Nyc Housing Authority Principal Administrative Associate 59694.37500 5.253105e+06 14283.76 1.623155e+02 0.000 328.25 88 0.000000e+00 0.00 5.267389e+06 5.253105e+06 14283.76 NULL
2017 Nyc Housing Authority Printing Press Operator NA NA 233.46 2.334600e+02 233.460 4.00 1 2.334600e+02 233.46 NA NA NA NULL
2017 Nyc Housing Authority Procurement Analyst 60226.54167 2.890874e+06 83670.41 1.743134e+03 0.000 1980.50 48 0.000000e+00 0.00 2.974544e+06 2.890874e+06 83670.41 NULL
2017 Nyc Housing Authority Project Manager 69565.33333 2.086960e+05 12273.97 4.091323e+03 1015.550 234.50 3 1.015550e+03 3046.65 2.209700e+05 2.117426e+05 9227.32 NULL
2017 Nyc Housing Authority Public Records Officer 56047.00000 5.604700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.604700e+04 5.604700e+04 0.00 NULL
2017 Nyc Housing Authority Quality Assurance Specialist 53187.00000 1.063740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.063740e+05 1.063740e+05 0.00 NULL
2017 Nyc Housing Authority Recreation Director 48431.00000 4.843100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.843100e+04 4.843100e+04 0.00 NULL
2017 Nyc Housing Authority Research Assistant 52223.35714 7.311270e+05 29.36 2.097143e+00 0.000 0.00 14 0.000000e+00 0.00 7.311564e+05 7.311270e+05 29.36 NULL
2017 Nyc Housing Authority Resident Building Superintendent 85706.34703 1.876969e+07 1847990.07 8.438311e+03 5433.320 32862.50 219 5.433320e+03 1189897.08 2.061768e+07 1.995959e+07 658092.99 NULL
2017 Nyc Housing Authority Roofer NA NA 51054.06 1.890891e+03 572.270 957.25 27 5.722700e+02 15451.29 NA NA NA NULL
2017 Nyc Housing Authority Secretary 40959.46484 2.097125e+07 136662.58 2.669191e+02 0.000 4718.50 512 0.000000e+00 0.00 2.110791e+07 2.097125e+07 136662.58 NULL
2017 Nyc Housing Authority Secretary Of The Authority 159764.00000 1.597640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.597640e+05 1.597640e+05 0.00 NULL
2017 Nyc Housing Authority Secretary To Deputy Executive Director 70447.60000 3.522380e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.522380e+05 3.522380e+05 0.00 NULL
2017 Nyc Housing Authority Secretary To Member 71698.00000 7.169800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.169800e+04 7.169800e+04 0.00 NULL
2017 Nyc Housing Authority Senior Estimator 77097.25000 6.167780e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.167780e+05 6.167780e+05 0.00 NULL
2017 Nyc Housing Authority Senior Intergroup Relations Officer 51208.33333 1.536250e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.536250e+05 1.536250e+05 0.00 NULL
2017 Nyc Housing Authority Senior Photographer 62627.00000 6.262700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.262700e+04 6.262700e+04 0.00 NULL
2017 Nyc Housing Authority Social Worker 56209.55556 5.058860e+05 775.16 8.612889e+01 0.000 23.00 9 0.000000e+00 0.00 5.066612e+05 5.058860e+05 775.16 NULL
2017 Nyc Housing Authority Space Analyst 70763.00000 7.076300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.076300e+04 7.076300e+04 0.00 NULL
2017 Nyc Housing Authority Special Asst To Exec Dir 149389.00000 1.493890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.493890e+05 1.493890e+05 0.00 NULL
2017 Nyc Housing Authority Special Officer 41988.00000 2.519280e+05 28492.24 4.748707e+03 2548.025 752.50 6 2.548025e+03 15288.15 2.804202e+05 2.672162e+05 13204.09 NULL
2017 Nyc Housing Authority Staff Analyst 67459.76744 2.900770e+06 17640.56 4.102456e+02 0.000 465.50 43 0.000000e+00 0.00 2.918411e+06 2.900770e+06 17640.56 NULL
2017 Nyc Housing Authority Staff Analyst Trainee 43983.50000 8.796700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.796700e+04 8.796700e+04 0.00 NULL
2017 Nyc Housing Authority Statistician 54958.00000 1.099160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.099160e+05 1.099160e+05 0.00 NULL
2017 Nyc Housing Authority Summer College Intern 25860.00000 2.586000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.586000e+04 2.586000e+04 0.00 NULL
2017 Nyc Housing Authority Supervising Computer Service Technician 65827.50000 2.633100e+05 10295.83 2.573957e+03 1890.665 254.50 4 1.890665e+03 7562.66 2.736058e+05 2.708727e+05 2733.17 NULL
2017 Nyc Housing Authority Supervising Housing Groundskeeper 58355.03175 7.352734e+06 1974578.56 1.567126e+04 14441.140 45343.00 126 1.444114e+04 1819583.64 9.327313e+06 9.172318e+06 154994.92 NULL
2017 Nyc Housing Authority Supervising Special Officer 51488.33333 1.544650e+05 8023.28 2.674427e+03 2801.340 176.00 3 2.674427e+03 8023.28 1.624883e+05 1.624883e+05 0.00 NULL
2017 Nyc Housing Authority Supervisor Bricklayer NA NA 379913.63 1.999545e+04 8927.110 4183.25 19 8.927110e+03 169615.09 NA NA NA NULL
2017 Nyc Housing Authority Supervisor Carpenter NA NA 596803.87 3.510611e+04 28403.170 7419.00 17 2.840317e+04 482853.89 NA NA NA NULL
2017 Nyc Housing Authority Supervisor Electrician NA NA 645408.09 3.796518e+04 42201.690 6761.25 17 3.796518e+04 645408.09 NA NA NA NULL
2017 Nyc Housing Authority Supervisor Elevator Mechanic NA NA 566354.30 2.097609e+04 22805.400 6798.75 27 2.097609e+04 566354.30 NA NA NA NULL
2017 Nyc Housing Authority Supervisor Glazier NA NA 96878.91 2.421973e+04 15565.350 1022.25 4 1.556535e+04 62261.40 NA NA NA NULL
2017 Nyc Housing Authority Supervisor I Social Work 59082.00000 1.181640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.181640e+05 1.181640e+05 0.00 NULL
2017 Nyc Housing Authority Supervisor Ii Social Work 70506.40000 7.050640e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.050640e+05 7.050640e+05 0.00 NULL
2017 Nyc Housing Authority Supervisor Of Electrical Installations & Maintenance 79077.00000 2.372310e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.372310e+05 2.372310e+05 0.00 NULL
2017 Nyc Housing Authority Supervisor Of Elevator Maintenance 127926.50000 5.117060e+05 16281.11 4.070278e+03 0.000 179.50 4 0.000000e+00 0.00 5.279871e+05 5.117060e+05 16281.11 NULL
2017 Nyc Housing Authority Supervisor Of Housing Caretaker 58858.33514 1.088879e+07 2831623.72 1.530607e+04 14982.000 63779.75 185 1.498200e+04 2771670.00 1.372042e+07 1.366046e+07 59953.72 NULL
2017 Nyc Housing Authority Supervisor Of Housing Stock Workers 65447.77778 1.178060e+06 41638.18 2.313232e+03 513.315 778.00 18 5.133150e+02 9239.67 1.219698e+06 1.187300e+06 32398.51 NULL
2017 Nyc Housing Authority Supervisor Of Mechanical Installations & Maintenance 75613.53571 2.117179e+06 29499.61 1.053557e+03 0.000 488.50 28 0.000000e+00 0.00 2.146679e+06 2.117179e+06 29499.61 NULL
2017 Nyc Housing Authority Supervisor Of Mechanics 107589.50000 2.151790e+05 48612.16 2.430608e+04 24306.080 564.50 2 2.430608e+04 48612.16 2.637912e+05 2.637912e+05 0.00 NULL
2017 Nyc Housing Authority Supervisor Of Office Machine Operations 39460.50000 7.892100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.892100e+04 7.892100e+04 0.00 NULL
2017 Nyc Housing Authority Supervisor Painter NA NA 1057194.24 1.532166e+04 8531.510 13943.00 69 8.531510e+03 588674.19 NA NA NA NULL
2017 Nyc Housing Authority Supervisor Plasterer NA NA 882670.85 3.152396e+04 35699.215 9653.00 28 3.152396e+04 882670.85 NA NA NA NULL
2017 Nyc Housing Authority Supervisor Plumber NA NA 1276973.36 8.513156e+04 82780.060 12005.00 15 8.278006e+04 1241700.90 NA NA NA NULL
2017 Nyc Housing Authority Supervisor Roofer NA NA 17315.26 3.463052e+03 1180.440 310.25 5 1.180440e+03 5902.20 NA NA NA NULL
2017 Nyc Housing Authority Supv Of Housing Exterminator 55389.00000 5.538900e+04 1097.82 1.097820e+03 1097.820 22.00 1 1.097820e+03 1097.82 5.648682e+04 5.648682e+04 0.00 NULL
2017 Nyc Housing Authority Supv Of Housing Exterminators 80369.00000 8.036900e+04 5727.18 5.727180e+03 5727.180 119.50 1 5.727180e+03 5727.18 8.609618e+04 8.609618e+04 0.00 NULL
2017 Nyc Housing Authority Telecommunication Manager 105790.00000 1.057900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.057900e+05 1.057900e+05 0.00 NULL
2017 Nyc Housing Authority Telecommunications Associate 76465.87500 6.117270e+05 10427.29 1.303411e+03 572.690 200.75 8 5.726900e+02 4581.52 6.221543e+05 6.163085e+05 5845.77 NULL
2017 Nyc Housing Authority Welder NA NA 203267.44 1.693895e+04 20825.350 1919.25 12 1.693895e+04 203267.44 NA NA NA NULL
2017 Nyc Housing Authority Worker’s Compensation Benefits Examiner 51709.50000 1.034190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.034190e+05 1.034190e+05 0.00 NULL
2017 Nyc Police Pension Fund Accountant 74037.00000 4.442220e+05 14710.59 2.451765e+03 0.000 245.50 6 0.000000e+00 0.00 4.589326e+05 4.442220e+05 14710.59 NULL
2017 Nyc Police Pension Fund Adm Manager-Non-Mgrl 69610.00000 6.961000e+04 9334.61 9.334610e+03 9334.610 172.75 1 9.334610e+03 9334.61 7.894461e+04 7.894461e+04 0.00 NULL
2017 Nyc Police Pension Fund Administrative Accountant 146085.66667 4.382570e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.382570e+05 4.382570e+05 0.00 NULL
2017 Nyc Police Pension Fund Administrative Labor Relations Analyst 174256.00000 1.742560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.742560e+05 1.742560e+05 0.00 NULL
2017 Nyc Police Pension Fund Administrative Procurement Analyst 143948.00000 1.439480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.439480e+05 1.439480e+05 0.00 NULL
2017 Nyc Police Pension Fund Administrative Real Property Manager 103682.00000 1.036820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.036820e+05 1.036820e+05 0.00 NULL
2017 Nyc Police Pension Fund Administrative Retirement Benefits Specialist 116505.38462 1.514570e+06 4829.20 3.714769e+02 0.000 68.75 13 0.000000e+00 0.00 1.519399e+06 1.514570e+06 4829.20 NULL
2017 Nyc Police Pension Fund Administrative Staff Analyst 117979.75000 4.719190e+05 423.43 1.058575e+02 103.740 13.75 4 1.037400e+02 414.96 4.723424e+05 4.723340e+05 8.47 NULL
2017 Nyc Police Pension Fund Agency Attorney 77100.00000 7.710000e+04 2435.98 2.435980e+03 2435.980 51.25 1 2.435980e+03 2435.98 7.953598e+04 7.953598e+04 0.00 NULL
2017 Nyc Police Pension Fund Assistant Retirement Benefits Examiner 50493.80000 2.524690e+05 301.98 6.039600e+01 0.520 10.25 5 5.200000e-01 2.60 2.527710e+05 2.524716e+05 299.38 NULL
2017 Nyc Police Pension Fund Associate Retirement Benefits Examiner 68456.42857 9.583900e+05 31391.84 2.242274e+03 1403.400 720.75 14 1.403400e+03 19647.60 9.897818e+05 9.780376e+05 11744.24 NULL
2017 Nyc Police Pension Fund Certified It Administrator 122528.00000 2.450560e+05 40178.57 2.008928e+04 20089.285 459.75 2 2.008928e+04 40178.57 2.852346e+05 2.852346e+05 0.00 NULL
2017 Nyc Police Pension Fund Clerical Associate 51697.46154 6.720670e+05 16390.64 1.260818e+03 0.000 375.25 13 0.000000e+00 0.00 6.884576e+05 6.720670e+05 16390.64 NULL
2017 Nyc Police Pension Fund College Aide 2674.59524 1.123330e+05 0.00 0.000000e+00 0.000 0.00 42 0.000000e+00 0.00 1.123330e+05 1.123330e+05 0.00 NULL
2017 Nyc Police Pension Fund Community Assistant 35654.48786 2.495814e+05 13565.79 1.937970e+03 503.400 544.25 7 5.034000e+02 3523.80 2.631472e+05 2.531052e+05 10041.99 NULL
2017 Nyc Police Pension Fund Community Associate 45288.46029 1.585096e+06 73556.02 2.101601e+03 168.150 2299.25 35 1.681500e+02 5885.25 1.658652e+06 1.590981e+06 67670.77 NULL
2017 Nyc Police Pension Fund Community Coordinator 72313.71429 5.061960e+05 12998.85 1.856979e+03 0.000 319.25 7 0.000000e+00 0.00 5.191948e+05 5.061960e+05 12998.85 NULL
2017 Nyc Police Pension Fund Computer Aide-Non-Spvr 38157.00000 3.815700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.815700e+04 3.815700e+04 0.00 NULL
2017 Nyc Police Pension Fund Computer Associate 96674.00000 9.667400e+04 17077.88 1.707788e+04 17077.880 251.25 1 1.707788e+04 17077.88 1.137519e+05 1.137519e+05 0.00 NULL
2017 Nyc Police Pension Fund Computer Programmer Analyst 63922.00000 6.392200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.392200e+04 6.392200e+04 0.00 NULL
2017 Nyc Police Pension Fund Computer Specialist 116205.25000 4.648210e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.648210e+05 4.648210e+05 0.00 NULL
2017 Nyc Police Pension Fund Computer Systems Manager 161823.80000 8.091190e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.091190e+05 8.091190e+05 0.00 NULL
2017 Nyc Police Pension Fund Deputy Director 200865.00000 4.017300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.017300e+05 4.017300e+05 0.00 NULL
2017 Nyc Police Pension Fund Executive Agency Counsel 143916.00000 1.439160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.439160e+05 1.439160e+05 0.00 NULL
2017 Nyc Police Pension Fund Executive Director 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2017 Nyc Police Pension Fund Management Auditor 62044.50000 1.240890e+05 8828.28 4.414140e+03 4414.140 242.25 2 4.414140e+03 8828.28 1.329173e+05 1.329173e+05 0.00 NULL
2017 Nyc Police Pension Fund Paralegal Aide 54109.00000 1.082180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.082180e+05 1.082180e+05 0.00 NULL
2017 Nyc Police Pension Fund Principal Administrative Associate 64088.09091 7.049690e+05 24685.68 2.244153e+03 2747.820 590.75 11 2.244153e+03 24685.68 7.296547e+05 7.296547e+05 0.00 NULL
2017 Nyc Police Pension Fund Secretary To The Executive Director 187769.00000 1.877690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.877690e+05 1.877690e+05 0.00 NULL
2017 Nyc Police Pension Fund Staff Analyst Trainee 48729.00000 4.872900e+04 227.79 2.277900e+02 227.790 9.50 1 2.277900e+02 227.79 4.895679e+04 4.895679e+04 0.00 NULL
2017 Nyc Police Pension Fund Statistician 77341.00000 7.734100e+04 6395.71 6.395710e+03 6395.710 107.25 1 6.395710e+03 6395.71 8.373671e+04 8.373671e+04 0.00 NULL
2017 Nyc Police Pension Fund Summer Graduate Intern 2711.50000 2.711500e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.711500e+03 2.711500e+03 0.00 NULL
2017 Nyc Police Pension Fund Supervisor Of Office Machine Operations 63888.00000 6.388800e+04 4580.87 4.580870e+03 4580.870 102.50 1 4.580870e+03 4580.87 6.846887e+04 6.846887e+04 0.00 NULL
2017 Off Of Payroll Administration Accountant 64011.66667 5.761050e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.761050e+05 5.761050e+05 0.00 NULL
2017 Off Of Payroll Administration Adm Manager-Non-Mgrl 75017.10000 7.501710e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.501710e+05 7.501710e+05 0.00 NULL
2017 Off Of Payroll Administration Admin Contract Specialist 134294.00000 1.342940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.342940e+05 1.342940e+05 0.00 NULL
2017 Off Of Payroll Administration Administrative Accountant 115029.16667 6.901750e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.901750e+05 6.901750e+05 0.00 NULL
2017 Off Of Payroll Administration Administrative Procurement Analyst 118528.00000 1.185280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.185280e+05 1.185280e+05 0.00 NULL
2017 Off Of Payroll Administration Administrative Public Information Specialist 129144.00000 1.291440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.291440e+05 1.291440e+05 0.00 NULL
2017 Off Of Payroll Administration Administrative Staff Analyst 107617.53333 1.614263e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.614263e+06 1.614263e+06 0.00 NULL
2017 Off Of Payroll Administration Associate Executive Director 221068.00000 2.210680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.210680e+05 2.210680e+05 0.00 NULL
2017 Off Of Payroll Administration Associate Staff Analyst 84719.83333 5.083190e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.083190e+05 5.083190e+05 0.00 NULL
2017 Off Of Payroll Administration Bookkeeper 63397.00000 6.339700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.339700e+04 6.339700e+04 0.00 NULL
2017 Off Of Payroll Administration Certified It Administrator 96039.00000 9.603900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.603900e+04 9.603900e+04 0.00 NULL
2017 Off Of Payroll Administration Certified It Developer 115512.00000 1.155120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.155120e+05 1.155120e+05 0.00 NULL
2017 Off Of Payroll Administration Clerical Associate 46202.90000 9.240580e+05 1107.63 5.538150e+01 0.000 32.50 20 0.000000e+00 0.00 9.251656e+05 9.240580e+05 1107.63 NULL
2017 Off Of Payroll Administration College Aide - Assignment Levels Ii And Iii 2167.54125 4.335083e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.335083e+03 4.335083e+03 0.00 NULL
2017 Off Of Payroll Administration Community Assistant 34462.28250 1.723114e+05 468.15 9.363000e+01 0.000 25.25 5 0.000000e+00 0.00 1.727796e+05 1.723114e+05 468.15 NULL
2017 Off Of Payroll Administration Community Associate 54663.75000 2.186550e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.186550e+05 2.186550e+05 0.00 NULL
2017 Off Of Payroll Administration Community Coordinator 58568.00000 1.171360e+05 11656.52 5.828260e+03 5828.260 274.00 2 5.828260e+03 11656.52 1.287925e+05 1.287925e+05 0.00 NULL
2017 Off Of Payroll Administration Computer Aide-Non-Spvr 47409.00000 4.740900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.740900e+04 4.740900e+04 0.00 NULL
2017 Off Of Payroll Administration Computer Associate 74466.40000 1.116996e+06 5961.59 3.974393e+02 0.000 126.00 15 0.000000e+00 0.00 1.122958e+06 1.116996e+06 5961.59 NULL
2017 Off Of Payroll Administration Computer Programmer Analyst 68758.00000 6.875800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.875800e+04 6.875800e+04 0.00 NULL
2017 Off Of Payroll Administration Computer Specialist 104922.15385 1.363988e+06 6894.59 5.303531e+02 0.000 111.25 13 0.000000e+00 0.00 1.370883e+06 1.363988e+06 6894.59 NULL
2017 Off Of Payroll Administration Computer Systems Manager 123432.82609 2.838955e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 2.838955e+06 2.838955e+06 0.00 NULL
2017 Off Of Payroll Administration Custodian 56775.00000 5.677500e+04 3039.19 3.039190e+03 3039.190 85.75 1 3.039190e+03 3039.19 5.981419e+04 5.981419e+04 0.00 NULL
2017 Off Of Payroll Administration Customer Information Representative 81957.00000 1.639140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.639140e+05 1.639140e+05 0.00 NULL
2017 Off Of Payroll Administration Deputy Executive Director 198809.00000 1.988090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.988090e+05 1.988090e+05 0.00 NULL
2017 Off Of Payroll Administration Executive Agency Counsel 121580.00000 1.215800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.215800e+05 1.215800e+05 0.00 NULL
2017 Off Of Payroll Administration Executive Director 222341.00000 2.223410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.223410e+05 2.223410e+05 0.00 NULL
2017 Off Of Payroll Administration Management Auditor 75618.20000 3.780910e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.780910e+05 3.780910e+05 0.00 NULL
2017 Off Of Payroll Administration Nycaps Process Analyst 88592.00000 1.771840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.771840e+05 1.771840e+05 0.00 NULL
2017 Off Of Payroll Administration Principal Administrative Associate 64761.37500 1.036182e+06 4045.54 2.528462e+02 0.000 104.75 16 0.000000e+00 0.00 1.040228e+06 1.036182e+06 4045.54 NULL
2017 Off Of Payroll Administration Staff Analyst 67538.16667 4.052290e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.052290e+05 4.052290e+05 0.00 NULL
2017 Off Of Payroll Administration Telecommunication Manager 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2017 Office Of Collective Bargainin Administrative Staff Analyst 136990.00000 1.369900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.369900e+05 1.369900e+05 0.00 NULL
2017 Office Of Collective Bargainin College Aide 1095.48000 1.095480e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.095480e+03 1.095480e+03 0.00 NULL
2017 Office Of Collective Bargainin College Aide - Assignment Levels Ii And Iii 4909.11750 4.909118e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.909118e+03 4.909118e+03 0.00 NULL
2017 Office Of Collective Bargainin Community Associate 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2017 Office Of Collective Bargainin Computer Systems Manager 99550.00000 9.955000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.955000e+04 9.955000e+04 0.00 NULL
2017 Office Of Collective Bargainin Deputy Director 175100.00000 3.502000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.502000e+05 3.502000e+05 0.00 NULL
2017 Office Of Collective Bargainin Director Of Information And Research 136990.00000 1.369900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.369900e+05 1.369900e+05 0.00 NULL
2017 Office Of Collective Bargainin Director Of The Office Of Collective Bargaining 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2017 Office Of Collective Bargainin Executive Assistant To The Director 112270.00000 1.122700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.122700e+05 1.122700e+05 0.00 NULL
2017 Office Of Collective Bargainin Labor Relations Trial Examiner 121540.00000 6.077000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.077000e+05 6.077000e+05 0.00 NULL
2017 Office Of Collective Bargainin Secretary To The Deputy Chair 50120.00000 1.002400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.002400e+05 1.002400e+05 0.00 NULL
2017 Office Of Collective Bargainin Secy To The Director Of Collective Bargaining 76993.00000 7.699300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.699300e+04 7.699300e+04 0.00 NULL
2017 Office Of Collective Bargainin Staff Analyst 70941.00000 7.094100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.094100e+04 7.094100e+04 0.00 NULL
2017 Office Of Collective Bargainin Summer Graduate Intern 2930.37000 2.930370e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.930370e+03 2.930370e+03 0.00 NULL
2017 Office Of Emergency Management Administrative Public Information Specialist 110130.00000 1.101300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.101300e+05 1.101300e+05 0.00 NULL
2017 Office Of Emergency Management Agency Attorney 75801.00000 2.274030e+05 6456.38 2.152127e+03 1765.500 138.25 3 1.765500e+03 5296.50 2.338594e+05 2.326995e+05 1159.88 NULL
2017 Office Of Emergency Management Certified It Administrator 124761.00000 1.247610e+05 3093.93 3.093930e+03 3093.930 38.50 1 3.093930e+03 3093.93 1.278549e+05 1.278549e+05 0.00 NULL
2017 Office Of Emergency Management Commissioner Of Emergency Management 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2017 Office Of Emergency Management Community Associate 46726.00000 1.401780e+05 12100.08 4.033360e+03 188.670 327.00 3 1.886700e+02 566.01 1.522781e+05 1.407440e+05 11534.07 NULL
2017 Office Of Emergency Management Community Coordinator 52419.35000 2.096774e+05 22803.47 5.700868e+03 5220.155 503.50 4 5.220155e+03 20880.62 2.324809e+05 2.305580e+05 1922.85 NULL
2017 Office Of Emergency Management Computer Systems Manager 117407.00000 2.348140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.348140e+05 2.348140e+05 0.00 NULL
2017 Office Of Emergency Management Deputy Commissioner 174900.00000 1.749000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.749000e+05 1.749000e+05 0.00 NULL
2017 Office Of Emergency Management Emergency Preparedness Manager 103245.19403 6.917428e+06 19262.15 2.874948e+02 0.000 432.50 67 0.000000e+00 0.00 6.936690e+06 6.917428e+06 19262.15 NULL
2017 Office Of Emergency Management Emergency Preparedness Specialist 66014.89354 7.327653e+06 403722.91 3.637143e+03 1490.130 8735.50 111 1.490130e+03 165404.43 7.731376e+06 7.493058e+06 238318.48 NULL
2017 Office Of Emergency Management Executive Agency Counsel 144520.50000 2.890410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.890410e+05 2.890410e+05 0.00 NULL
2017 Office Of Emergency Management First Deputy Commissioner 215291.00000 2.152910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.152910e+05 2.152910e+05 0.00 NULL
2017 Office Of Labor Relations Accountant 65665.25000 2.626610e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.626610e+05 2.626610e+05 0.00 NULL
2017 Office Of Labor Relations Administrative Labor Relations Analyst 110324.66667 6.619480e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.619480e+05 6.619480e+05 0.00 NULL
2017 Office Of Labor Relations Administrative Manager 103652.00000 4.146080e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.146080e+05 4.146080e+05 0.00 NULL
2017 Office Of Labor Relations Administrative Public Information Specialist 107996.00000 2.159920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.159920e+05 2.159920e+05 0.00 NULL
2017 Office Of Labor Relations Administrative Staff Analyst 127730.33333 3.831910e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.831910e+05 3.831910e+05 0.00 NULL
2017 Office Of Labor Relations Agency Attorney 88207.50000 1.764150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.764150e+05 1.764150e+05 0.00 NULL
2017 Office Of Labor Relations Agency Chief Contracting Officer 85528.00000 8.552800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.552800e+04 8.552800e+04 0.00 NULL
2017 Office Of Labor Relations Assistant Commissioner Of Labor Relations 154364.57143 1.080552e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.080552e+06 1.080552e+06 0.00 NULL
2017 Office Of Labor Relations Associate Counsel 154500.00000 1.545000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.545000e+05 1.545000e+05 0.00 NULL
2017 Office Of Labor Relations Associate Staff Analyst 77160.00000 3.086400e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.086400e+05 3.086400e+05 0.00 NULL
2017 Office Of Labor Relations City Research Scientist 70286.00000 7.028600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.028600e+04 7.028600e+04 0.00 NULL
2017 Office Of Labor Relations Clerical Associate 45117.93943 4.962973e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 4.962973e+05 4.962973e+05 0.00 NULL
2017 Office Of Labor Relations Commissioner Of Labor Relations 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2017 Office Of Labor Relations Community Assistant 37487.38776 3.373865e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 3.373865e+05 3.373865e+05 0.00 NULL
2017 Office Of Labor Relations Community Associate 42920.64706 7.296510e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 7.296510e+05 7.296510e+05 0.00 NULL
2017 Office Of Labor Relations Community Coordinator 50362.00000 5.036200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.036200e+04 5.036200e+04 0.00 NULL
2017 Office Of Labor Relations Computer Associate 78795.00000 1.575900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.575900e+05 1.575900e+05 0.00 NULL
2017 Office Of Labor Relations Computer Specialist 96583.00000 1.931660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.931660e+05 1.931660e+05 0.00 NULL
2017 Office Of Labor Relations Computer Systems Manager 136295.50000 2.725910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.725910e+05 2.725910e+05 0.00 NULL
2017 Office Of Labor Relations Counsel 191807.00000 1.918070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.918070e+05 1.918070e+05 0.00 NULL
2017 Office Of Labor Relations Customer Information Representative 43721.00000 4.372100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.372100e+04 4.372100e+04 0.00 NULL
2017 Office Of Labor Relations Deputy Assistant Counsel 74662.36364 8.212860e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 8.212860e+05 8.212860e+05 0.00 NULL
2017 Office Of Labor Relations Deputy Commissioner Of Labor Relations 212905.50000 4.258110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.258110e+05 4.258110e+05 0.00 NULL
2017 Office Of Labor Relations Director 126278.00000 1.262780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.262780e+05 1.262780e+05 0.00 NULL
2017 Office Of Labor Relations Employee Assistance Program Specialist 54460.14286 7.624420e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 7.624420e+05 7.624420e+05 0.00 NULL
2017 Office Of Labor Relations Employee Health Benefits Program Director 203681.00000 2.036810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.036810e+05 2.036810e+05 0.00 NULL
2017 Office Of Labor Relations Executive Agency Counsel 150007.00000 1.500070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500070e+05 1.500070e+05 0.00 NULL
2017 Office Of Labor Relations Insurance Advisor 58352.00000 5.835200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.835200e+04 5.835200e+04 0.00 NULL
2017 Office Of Labor Relations Labor Relations Analyst 61112.50000 6.111250e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 6.111250e+05 6.111250e+05 0.00 NULL
2017 Office Of Labor Relations Labor Relations Analyst Trainee 46978.33333 1.409350e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.409350e+05 1.409350e+05 0.00 NULL
2017 Office Of Labor Relations Principal Administrative Associate 61611.43737 9.241716e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 9.241716e+05 9.241716e+05 0.00 NULL
2017 Office Of Labor Relations Public Health Educator 77250.00000 7.725000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.725000e+04 7.725000e+04 0.00 NULL
2017 Office Of Labor Relations Secretary 41671.33333 1.250140e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.250140e+05 1.250140e+05 0.00 NULL
2017 Office Of Labor Relations Secretary To The Commissioner Of Labor Relations 89388.50000 1.787770e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.787770e+05 1.787770e+05 0.00 NULL
2017 Office Of Labor Relations Secretary To The First Deputy Commissioner 55000.00000 5.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.500000e+04 5.500000e+04 0.00 NULL
2017 Office Of Labor Relations Staff Analyst 68485.00000 6.848500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.848500e+04 6.848500e+04 0.00 NULL
2017 Office Of Labor Relations Supervisor Of Office Machine Operations 59263.00000 5.926300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.926300e+04 5.926300e+04 0.00 NULL
2017 Office Of Labor Relations Tests And Measurement Specialist 84247.00000 8.424700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.424700e+04 8.424700e+04 0.00 NULL
2017 Office Of Management & Budget Administrative Manager 169705.00000 1.697050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.697050e+05 1.697050e+05 0.00 NULL
2017 Office Of Management & Budget Administrative Staff Analyst 151665.81818 1.668324e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.668324e+06 1.668324e+06 0.00 NULL
2017 Office Of Management & Budget Budget Analyst 81998.60768 3.411142e+07 653794.29 1.571621e+03 0.000 15424.25 416 0.000000e+00 0.00 3.476522e+07 3.411142e+07 653794.29 NULL
2017 Office Of Management & Budget College Aide 3147.00000 3.147000e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.147000e+03 3.147000e+03 0.00 NULL
2017 Office Of Management & Budget Community Associate 35462.00000 3.546200e+04 1395.37 1.395370e+03 1395.370 62.00 1 1.395370e+03 1395.37 3.685737e+04 3.685737e+04 0.00 NULL
2017 Office Of Management & Budget Computer Operations Manager 123767.00000 1.237670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.237670e+05 1.237670e+05 0.00 NULL
2017 Office Of Management & Budget Computer Specialist 76551.00000 7.655100e+04 1016.64 1.016640e+03 1016.640 15.25 1 1.016640e+03 1016.64 7.756764e+04 7.756764e+04 0.00 NULL
2017 Office Of Management & Budget Computer Systems Manager 154899.40000 7.744970e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.744970e+05 7.744970e+05 0.00 NULL
2017 Office Of Management & Budget Deputy Director Of Management & Budget 207518.00000 2.075180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.075180e+05 2.075180e+05 0.00 NULL
2017 Office Of Management & Budget Deputy General Counsel 153139.00000 1.531390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.531390e+05 1.531390e+05 0.00 NULL
2017 Office Of Management & Budget Director Of Financing Policy Coordination 207518.00000 2.075180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.075180e+05 2.075180e+05 0.00 NULL
2017 Office Of Management & Budget Director Of Management & Budget 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2017 Office Of Management & Budget Director Of Public Affairs 110854.00000 1.108540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.108540e+05 1.108540e+05 0.00 NULL
2017 Office Of Management & Budget Executive Agency Counsel 190450.00000 3.809000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.809000e+05 3.809000e+05 0.00 NULL
2017 Office Of Management & Budget Executive Assistant To The Director Of Management & Budget 215291.00000 2.152910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.152910e+05 2.152910e+05 0.00 NULL
2017 Office Of Management & Budget Statistical Secretary 59983.07143 8.397630e+05 11706.61 8.361864e+02 0.000 407.75 14 0.000000e+00 0.00 8.514696e+05 8.397630e+05 11706.61 NULL
2017 Office Of Management & Budget Summer College Intern 1753.24800 2.629872e+04 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 2.629872e+04 2.629872e+04 0.00 NULL
2017 Office Of Management & Budget Summer Graduate Intern 3049.57333 3.659488e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 3.659488e+04 3.659488e+04 0.00 NULL
2017 Office Of Management & Budget Supervisor Of Office Machine Operations 46363.00000 4.636300e+04 1782.95 1.782950e+03 1782.950 45.75 1 1.782950e+03 1782.95 4.814595e+04 4.814595e+04 0.00 NULL
2017 Office Of The Actuary Actuarial Specialist Level I 70141.85714 1.472979e+06 74414.88 3.543566e+03 1683.070 1641.50 21 1.683070e+03 35344.47 1.547394e+06 1.508323e+06 39070.41 NULL
2017 Office Of The Actuary Actuarial Specialist Level Ii, Oj 113262.00000 1.132620e+05 2872.65 2.872650e+03 2872.650 50.50 1 2.872650e+03 2872.65 1.161346e+05 1.161346e+05 0.00 NULL
2017 Office Of The Actuary Administrative Actuary 174090.44444 1.566814e+06 1440.69 1.600767e+02 0.000 18.75 9 0.000000e+00 0.00 1.568255e+06 1.566814e+06 1440.69 NULL
2017 Office Of The Actuary Administrative Public Information Specialist 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2017 Office Of The Actuary Administrative Staff Analyst 113585.00000 1.135850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.135850e+05 1.135850e+05 0.00 NULL
2017 Office Of The Actuary Certified It Administrator 87731.00000 8.773100e+04 4241.93 4.241930e+03 4241.930 83.25 1 4.241930e+03 4241.93 9.197293e+04 9.197293e+04 0.00 NULL
2017 Office Of The Actuary Chief Actuary 290331.00000 2.903310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.903310e+05 2.903310e+05 0.00 NULL
2017 Office Of The Actuary Clerical Associate 48168.00000 4.816800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.816800e+04 4.816800e+04 0.00 NULL
2017 Office Of The Actuary Computer Systems Manager 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2017 Office Of The Actuary Executive Agency Counsel 171950.00000 1.719500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.719500e+05 1.719500e+05 0.00 NULL
2017 Office Of The Actuary Procurement Analyst 48364.00000 4.836400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.836400e+04 4.836400e+04 0.00 NULL
2017 Office Of The Actuary Secretary 52831.00000 1.056620e+05 59.62 2.981000e+01 29.810 0.00 2 2.981000e+01 59.62 1.057216e+05 1.057216e+05 0.00 NULL
2017 Office Of The Actuary Secretary To The Chief Actuary 74160.00000 7.416000e+04 27613.49 2.761349e+04 27613.490 510.25 1 2.761349e+04 27613.49 1.017735e+05 1.017735e+05 0.00 NULL
2017 Office Of The Comptroller Accountant 58964.71084 4.894071e+06 65638.12 7.908207e+02 0.000 1439.75 83 0.000000e+00 0.00 4.959709e+06 4.894071e+06 65638.12 NULL
2017 Office Of The Comptroller Adm Manager-Non-Mgrl 72431.33333 1.955646e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 1.955646e+06 1.955646e+06 0.00 NULL
2017 Office Of The Comptroller Admin Community Relations Specialist 78129.42857 5.469060e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.469060e+05 5.469060e+05 0.00 NULL
2017 Office Of The Comptroller Administration Public Record Officer 72812.00000 7.281200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.281200e+04 7.281200e+04 0.00 NULL
2017 Office Of The Comptroller Administrative Accountant 118136.53846 3.071550e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 3.071550e+06 3.071550e+06 0.00 NULL
2017 Office Of The Comptroller Administrative Assistant To The Comptroller 88325.00000 8.832500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.832500e+04 8.832500e+04 0.00 NULL
2017 Office Of The Comptroller Administrative Business Promotion Coordinator 133315.50000 2.666310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.666310e+05 2.666310e+05 0.00 NULL
2017 Office Of The Comptroller Administrative City Planner 124535.76923 1.618965e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.618965e+06 1.618965e+06 0.00 NULL
2017 Office Of The Comptroller Administrative Claim Examiner 87244.53895 3.315292e+06 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 3.315292e+06 3.315292e+06 0.00 NULL
2017 Office Of The Comptroller Administrative Community Relations Specialist 97714.00000 9.771400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.771400e+04 9.771400e+04 0.00 NULL
2017 Office Of The Comptroller Administrative Engineer 110061.89300 2.201238e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 2.201238e+06 2.201238e+06 0.00 NULL
2017 Office Of The Comptroller Administrative Graphic Artist 87500.00000 8.750000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.750000e+04 8.750000e+04 0.00 NULL
2017 Office Of The Comptroller Administrative Labor Relations Analyst 118431.33333 3.552940e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.552940e+05 3.552940e+05 0.00 NULL
2017 Office Of The Comptroller Administrative Management Auditor 122536.29412 2.083117e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.083117e+06 2.083117e+06 0.00 NULL
2017 Office Of The Comptroller Administrative Manager 157099.41667 1.885193e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.885193e+06 1.885193e+06 0.00 NULL
2017 Office Of The Comptroller Administrative Procurement Analyst 97361.00000 1.363054e+06 20759.61 1.482829e+03 40.025 379.25 14 4.002500e+01 560.35 1.383814e+06 1.363614e+06 20199.26 NULL
2017 Office Of The Comptroller Administrative Project Manager 105520.45455 1.160725e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.160725e+06 1.160725e+06 0.00 NULL
2017 Office Of The Comptroller Administrative Public Information Specialist 93713.00000 9.371300e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 9.371300e+05 9.371300e+05 0.00 NULL
2017 Office Of The Comptroller Administrative Staff Analyst 118295.33333 3.193974e+06 396.94 1.470148e+01 0.000 8.50 27 0.000000e+00 0.00 3.194371e+06 3.193974e+06 396.94 NULL
2017 Office Of The Comptroller Administrative Supervisor Of Building Maintenance 80237.00000 8.023700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.023700e+04 8.023700e+04 0.00 NULL
2017 Office Of The Comptroller Agency Attorney 79738.60000 3.986930e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.986930e+05 3.986930e+05 0.00 NULL
2017 Office Of The Comptroller Assistant Budget Analyst 62636.75000 2.505470e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.505470e+05 2.505470e+05 0.00 NULL
2017 Office Of The Comptroller Assistant Secretary To The Comptroller 54640.00000 1.092800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.092800e+05 1.092800e+05 0.00 NULL
2017 Office Of The Comptroller Assistant To The Comptroller 188556.00000 3.771120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.771120e+05 3.771120e+05 0.00 NULL
2017 Office Of The Comptroller Associate Fraud Investigator 73903.00000 7.390300e+04 5379.76 5.379760e+03 5379.760 79.50 1 5.379760e+03 5379.76 7.928276e+04 7.928276e+04 0.00 NULL
2017 Office Of The Comptroller Associate Project Manager 95582.12500 7.646570e+05 4932.03 6.165037e+02 0.000 30.00 8 0.000000e+00 0.00 7.695890e+05 7.646570e+05 4932.03 NULL
2017 Office Of The Comptroller Associate Staff Analyst 83216.75000 6.657340e+05 4693.29 5.866612e+02 0.000 88.00 8 0.000000e+00 0.00 6.704273e+05 6.657340e+05 4693.29 NULL
2017 Office Of The Comptroller Bookkeeper 47816.52858 5.259818e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.259818e+05 5.259818e+05 0.00 NULL
2017 Office Of The Comptroller Budget Analyst 76499.66667 4.589980e+05 2487.52 4.145867e+02 0.000 70.50 6 0.000000e+00 0.00 4.614855e+05 4.589980e+05 2487.52 NULL
2017 Office Of The Comptroller Business Promotion Coordinator 58049.80000 1.160996e+06 3585.99 1.792995e+02 0.000 98.00 20 0.000000e+00 0.00 1.164582e+06 1.160996e+06 3585.99 NULL
2017 Office Of The Comptroller Certified It Administrator 111598.00000 1.115980e+05 7013.42 7.013420e+03 7013.420 103.50 1 7.013420e+03 7013.42 1.186114e+05 1.186114e+05 0.00 NULL
2017 Office Of The Comptroller City Custodial Assistant 38991.20642 2.339472e+05 69689.20 1.161487e+04 13662.140 2602.25 6 1.161487e+04 69689.20 3.036364e+05 3.036364e+05 0.00 NULL
2017 Office Of The Comptroller Claim Specialist 60238.82927 2.469792e+06 0.00 0.000000e+00 0.000 0.00 41 0.000000e+00 0.00 2.469792e+06 2.469792e+06 0.00 NULL
2017 Office Of The Comptroller Clerical Aide 12049.79500 1.204980e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.204980e+04 1.204980e+04 0.00 NULL
2017 Office Of The Comptroller Clerical Associate 46449.16667 1.393475e+06 11803.58 3.934527e+02 0.000 355.25 30 0.000000e+00 0.00 1.405279e+06 1.393475e+06 11803.58 NULL
2017 Office Of The Comptroller College Aide 3009.39411 2.708455e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 2.708455e+04 2.708455e+04 0.00 NULL
2017 Office Of The Comptroller Community Assistant 36696.00000 7.339200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.339200e+04 7.339200e+04 0.00 NULL
2017 Office Of The Comptroller Community Associate 48937.40000 4.893740e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.893740e+05 4.893740e+05 0.00 NULL
2017 Office Of The Comptroller Community Coordinator 59817.83333 3.589070e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.589070e+05 3.589070e+05 0.00 NULL
2017 Office Of The Comptroller Comptroller 209050.00000 2.090500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.090500e+05 2.090500e+05 0.00 NULL
2017 Office Of The Comptroller Computer Aide-Non-Spvr 47764.27273 5.254070e+05 7961.07 7.237336e+02 0.000 193.00 11 0.000000e+00 0.00 5.333681e+05 5.254070e+05 7961.07 NULL
2017 Office Of The Comptroller Computer Associate 68948.69231 8.963330e+05 17462.33 1.343256e+03 0.000 361.00 13 0.000000e+00 0.00 9.137953e+05 8.963330e+05 17462.33 NULL
2017 Office Of The Comptroller Computer Operations Manager 172403.50000 3.448070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.448070e+05 3.448070e+05 0.00 NULL
2017 Office Of The Comptroller Computer Programmer Analyst 63541.80000 3.177090e+05 66.23 1.324600e+01 0.000 2.00 5 0.000000e+00 0.00 3.177752e+05 3.177090e+05 66.23 NULL
2017 Office Of The Comptroller Computer Service Technician 52628.50000 1.052570e+05 3496.90 1.748450e+03 1748.450 86.00 2 1.748450e+03 3496.90 1.087539e+05 1.087539e+05 0.00 NULL
2017 Office Of The Comptroller Computer Specialist 92553.63636 1.018090e+06 593.03 5.391182e+01 0.000 10.25 11 0.000000e+00 0.00 1.018683e+06 1.018090e+06 593.03 NULL
2017 Office Of The Comptroller Computer Systems Manager 118423.00000 2.013191e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.013191e+06 2.013191e+06 0.00 NULL
2017 Office Of The Comptroller Confidential Assistant To The Comptroller 129926.00000 1.299260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.299260e+05 1.299260e+05 0.00 NULL
2017 Office Of The Comptroller Confidential Investigator 65673.75000 2.626950e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.626950e+05 2.626950e+05 0.00 NULL
2017 Office Of The Comptroller Confidential Strategy Planner 73400.60000 3.670030e+05 0.00 0.000000e+00 0.000 4.50 5 0.000000e+00 0.00 3.670030e+05 3.670030e+05 0.00 NULL
2017 Office Of The Comptroller Construction Project Manager 98214.00000 9.821400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.821400e+04 9.821400e+04 0.00 NULL
2017 Office Of The Comptroller Construction Project Manager Intern 55422.00000 5.542200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.542200e+04 5.542200e+04 0.00 NULL
2017 Office Of The Comptroller Custodian 56970.00000 1.139400e+05 5297.22 2.648610e+03 2648.610 119.25 2 2.648610e+03 5297.22 1.192372e+05 1.192372e+05 0.00 NULL
2017 Office Of The Comptroller Director Of Investments 250960.00000 1.254800e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.254800e+06 1.254800e+06 0.00 NULL
2017 Office Of The Comptroller Director Of Audits 204091.00000 2.040910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.040910e+05 2.040910e+05 0.00 NULL
2017 Office Of The Comptroller Economist 66522.80000 3.326140e+05 580.42 1.160840e+02 0.000 20.50 5 0.000000e+00 0.00 3.331944e+05 3.326140e+05 580.42 NULL
2017 Office Of The Comptroller Executive Agency Counsel 137460.54839 4.261277e+06 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 4.261277e+06 4.261277e+06 0.00 NULL
2017 Office Of The Comptroller Executive Assistant To The Comptroller 157102.50000 3.142050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.142050e+05 3.142050e+05 0.00 NULL
2017 Office Of The Comptroller First Deputy Comptroller 212073.00000 2.120730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120730e+05 2.120730e+05 0.00 NULL
2017 Office Of The Comptroller Fraud Investigator 67371.75000 2.694870e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.694870e+05 2.694870e+05 0.00 NULL
2017 Office Of The Comptroller Investment Analyst 64639.29167 1.551343e+06 19877.68 8.282367e+02 0.000 543.50 24 0.000000e+00 0.00 1.571221e+06 1.551343e+06 19877.68 NULL
2017 Office Of The Comptroller Investment Manager 141516.36364 3.113360e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 3.113360e+06 3.113360e+06 0.00 NULL
2017 Office Of The Comptroller Legal Secretarial Assistant Al 2,3,4 Only 68855.14286 4.819860e+05 7877.78 1.125397e+03 0.000 165.25 7 0.000000e+00 0.00 4.898638e+05 4.819860e+05 7877.78 NULL
2017 Office Of The Comptroller Management Auditor 72827.80844 5.534913e+06 67214.32 8.843989e+02 0.000 1388.75 76 0.000000e+00 0.00 5.602128e+06 5.534913e+06 67214.32 NULL
2017 Office Of The Comptroller Management Auditor Trainee 49084.05882 8.344290e+05 375.97 2.211588e+01 0.000 12.00 17 0.000000e+00 0.00 8.348050e+05 8.344290e+05 375.97 NULL
2017 Office Of The Comptroller Office Machine Aide 32135.90853 9.640773e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.640773e+04 9.640773e+04 0.00 NULL
2017 Office Of The Comptroller Pension Investment Advisor 350000.00000 3.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.500000e+05 3.500000e+05 0.00 NULL
2017 Office Of The Comptroller Principal Administrative Associate 60517.14514 2.178617e+06 16917.83 4.699397e+02 0.000 350.00 36 0.000000e+00 0.00 2.195535e+06 2.178617e+06 16917.83 NULL
2017 Office Of The Comptroller Principal Investment Officer 214283.00000 2.142830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.142830e+05 2.142830e+05 0.00 NULL
2017 Office Of The Comptroller Procurement Analyst 58656.42857 4.105950e+05 6677.73 9.539614e+02 0.000 141.75 7 0.000000e+00 0.00 4.172727e+05 4.105950e+05 6677.73 NULL
2017 Office Of The Comptroller Public Records Aide 25852.84350 2.585284e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.585284e+04 2.585284e+04 0.00 NULL
2017 Office Of The Comptroller Research And Liaison Coordinator 105837.72000 2.645943e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 2.645943e+06 2.645943e+06 0.00 NULL
2017 Office Of The Comptroller Research Assistant 48605.00000 4.860500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.860500e+04 4.860500e+04 0.00 NULL
2017 Office Of The Comptroller Second Deputy Comptroller 205376.00000 2.053760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.053760e+05 2.053760e+05 0.00 NULL
2017 Office Of The Comptroller Secretary 46187.50000 1.847500e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.847500e+05 1.847500e+05 0.00 NULL
2017 Office Of The Comptroller Secretary To The Comptroller 50155.00000 5.015500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.015500e+04 5.015500e+04 0.00 NULL
2017 Office Of The Comptroller Special Deputy Comptroller 206995.00000 4.139900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.139900e+05 4.139900e+05 0.00 NULL
2017 Office Of The Comptroller Staff Analyst 66877.66667 4.012660e+05 8041.90 1.340317e+03 94.560 169.25 6 9.456000e+01 567.36 4.093079e+05 4.018334e+05 7474.54 NULL
2017 Office Of The Comptroller Staff Analyst Trainee 48542.88889 4.368860e+05 1093.01 1.214456e+02 0.000 30.25 9 0.000000e+00 0.00 4.379790e+05 4.368860e+05 1093.01 NULL
2017 Office Of The Comptroller Statistician 83000.00000 8.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.300000e+04 8.300000e+04 0.00 NULL
2017 Office Of The Comptroller Strategic Initiative Specialist 185400.00000 1.854000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.854000e+05 1.854000e+05 0.00 NULL
2017 Office Of The Comptroller Summer College Intern 1679.12922 1.074643e+05 0.00 0.000000e+00 0.000 0.00 64 0.000000e+00 0.00 1.074643e+05 1.074643e+05 0.00 NULL
2017 Office Of The Comptroller Summer Graduate Intern 2234.03625 8.042530e+04 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 8.042530e+04 8.042530e+04 0.00 NULL
2017 Office Of The Comptroller Supervising Computer Service Technician 80228.00000 8.022800e+04 1071.59 1.071590e+03 1071.590 23.75 1 1.071590e+03 1071.59 8.129959e+04 8.129959e+04 0.00 NULL
2017 Office Of The Comptroller Supervisor Of Motor Transport 54899.00000 5.489900e+04 2435.97 2.435970e+03 2435.970 63.25 1 2.435970e+03 2435.97 5.733497e+04 5.733497e+04 0.00 NULL
2017 Office Of The Comptroller Telecommunications Associate 86187.00000 8.618700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.618700e+04 8.618700e+04 0.00 NULL
2017 Office Of The Mayor Administrative Assistant To The Mayor 83446.00000 8.344600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.344600e+04 8.344600e+04 0.00 NULL
2017 Office Of The Mayor Administrative Printing Services Manager 93292.00000 9.329200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.329200e+04 9.329200e+04 0.00 NULL
2017 Office Of The Mayor Assistant Legislative Representative 89639.00000 7.171120e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.171120e+05 7.171120e+05 0.00 NULL
2017 Office Of The Mayor Assistant To The Deputy Mayor 190795.14286 1.335566e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.335566e+06 1.335566e+06 0.00 NULL
2017 Office Of The Mayor Assistant To The Mayor 195680.00000 5.870400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.870400e+05 5.870400e+05 0.00 NULL
2017 Office Of The Mayor Asst Dir Of Intergvnmental Reltns For The Albany Office 189898.00000 1.898980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.898980e+05 1.898980e+05 0.00 NULL
2017 Office Of The Mayor Asst Director Of Intergovermental Rel For City Legist Affs 176648.00000 1.766480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.766480e+05 1.766480e+05 0.00 NULL
2017 Office Of The Mayor Clerical Associate 45538.33333 1.366150e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.366150e+05 1.366150e+05 0.00 NULL
2017 Office Of The Mayor Commissioner, Un & Consular Corps Diplomatic Relations 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2017 Office Of The Mayor Community Associate 50474.00000 5.047400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.047400e+04 5.047400e+04 0.00 NULL
2017 Office Of The Mayor Computer Operations Manager 118361.80000 5.918090e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.918090e+05 5.918090e+05 0.00 NULL
2017 Office Of The Mayor Computer Systems Manager 154237.00000 1.542370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.542370e+05 1.542370e+05 0.00 NULL
2017 Office Of The Mayor Cook 110725.00000 2.214500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.214500e+05 2.214500e+05 0.00 NULL
2017 Office Of The Mayor Deputy Mayor 234569.00000 7.037070e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.037070e+05 7.037070e+05 0.00 NULL
2017 Office Of The Mayor Director Correspondence Services 122403.00000 1.224030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.224030e+05 1.224030e+05 0.00 NULL
2017 Office Of The Mayor Director Of Community Assistance Unit 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2017 Office Of The Mayor Director Of Intergovernmental Relations 220652.00000 2.206520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.206520e+05 2.206520e+05 0.00 NULL
2017 Office Of The Mayor Director, Office Of Operations 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2017 Office Of The Mayor Executive Administrator Of Gracie Mansion 220652.00000 2.206520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.206520e+05 2.206520e+05 0.00 NULL
2017 Office Of The Mayor Executive Agency Counsel 139565.00000 1.674780e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.674780e+06 1.674780e+06 0.00 NULL
2017 Office Of The Mayor Executive Assistant-Midtown Enforcement 81722.00000 8.172200e+04 1218.93 1.218930e+03 1218.930 27.25 1 1.218930e+03 1218.93 8.294093e+04 8.294093e+04 0.00 NULL
2017 Office Of The Mayor First Deputy Mayor 271136.00000 2.711360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.711360e+05 2.711360e+05 0.00 NULL
2017 Office Of The Mayor Legislative Aide 65000.00000 6.500000e+04 2939.76 2.939760e+03 2939.760 77.75 1 2.939760e+03 2939.76 6.793976e+04 6.793976e+04 0.00 NULL
2017 Office Of The Mayor Mayor 225000.00000 2.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.250000e+05 2.250000e+05 0.00 NULL
2017 Office Of The Mayor Mayoral Office Assistant 44318.55811 3.323892e+06 63071.51 8.409535e+02 0.000 2010.17 75 0.000000e+00 0.00 3.386963e+06 3.323892e+06 63071.51 NULL
2017 Office Of The Mayor Mayoral Program Coordinator 58848.31579 1.118118e+06 16820.09 8.852679e+02 0.000 426.25 19 0.000000e+00 0.00 1.134938e+06 1.118118e+06 16820.09 NULL
2017 Office Of The Mayor Press Officer 133126.70000 1.331267e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.331267e+06 1.331267e+06 0.00 NULL
2017 Office Of The Mayor Project Planner 78547.25000 3.141890e+05 6291.19 1.572797e+03 747.975 152.50 4 7.479750e+02 2991.90 3.204802e+05 3.171809e+05 3299.29 NULL
2017 Office Of The Mayor Research Projects Coord 97899.15882 1.664286e+07 5725.75 3.368088e+01 0.000 173.25 170 0.000000e+00 0.00 1.664858e+07 1.664286e+07 5725.75 NULL
2017 Office Of The Mayor Research Projects Coordinator 59263.27273 6.518960e+05 4026.04 3.660036e+02 129.890 125.00 11 1.298900e+02 1428.79 6.559220e+05 6.533248e+05 2597.25 NULL
2017 Office Of The Mayor Secretary 74942.66667 2.248280e+05 10816.00 3.605333e+03 4020.890 270.50 3 3.605333e+03 10816.00 2.356440e+05 2.356440e+05 0.00 NULL
2017 Office Of The Mayor Senior Service Inspector 58364.00000 5.836400e+04 440.24 4.402400e+02 440.240 10.50 1 4.402400e+02 440.24 5.880424e+04 5.880424e+04 0.00 NULL
2017 Office Of The Mayor Service Inspector 42711.80000 2.135590e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.135590e+05 2.135590e+05 0.00 NULL
2017 Office Of The Mayor Special Assistant 100948.43486 2.977979e+07 12141.82 4.115871e+01 0.000 258.75 295 0.000000e+00 0.00 2.979193e+07 2.977979e+07 12141.82 NULL
2017 Office Of The Mayor Sr Project Planner 99830.50000 1.996610e+05 251.31 1.256550e+02 125.655 0.00 2 1.256550e+02 251.31 1.999123e+05 1.999123e+05 0.00 NULL
2017 Office Of The Mayor Staff Assistant 54543.66667 6.545240e+05 7833.02 6.527517e+02 322.075 292.00 12 3.220750e+02 3864.90 6.623570e+05 6.583889e+05 3968.12 NULL
2017 Personnel Monitors Monitor 960.80772 1.244246e+06 9265.85 7.155096e+00 0.000 548.00 1295 0.000000e+00 0.00 1.253512e+06 1.244246e+06 9265.85 NULL
2017 Police Department *Adm Dir Fleet Maintenance - Nm 129749.00000 2.594980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.594980e+05 2.594980e+05 0.00 NULL
2017 Police Department *Adm School Security Manager-U 84017.25000 3.360690e+05 53427.82 1.335695e+04 13988.320 887.50 4 1.335695e+04 53427.82 3.894968e+05 3.894968e+05 0.00 NULL
2017 Police Department *Administrative Attorney 172096.00000 1.720960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.720960e+05 1.720960e+05 0.00 NULL
2017 Police Department *Assistant Advocate-Pd 95241.33333 2.857240e+05 8877.85 2.959283e+03 2582.170 157.00 3 2.582170e+03 7746.51 2.946018e+05 2.934705e+05 1131.34 NULL
2017 Police Department *Certified Applications Developer 105875.00000 1.058750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.058750e+05 1.058750e+05 0.00 NULL
2017 Police Department *Certified Local Area Network Administrator 102644.00000 2.052880e+05 38938.58 1.946929e+04 19469.290 542.50 2 1.946929e+04 38938.58 2.442266e+05 2.442266e+05 0.00 NULL
2017 Police Department *Custodial Assistant 35841.91667 4.301030e+05 185.20 1.543333e+01 0.000 6.00 12 0.000000e+00 0.00 4.302882e+05 4.301030e+05 185.20 NULL
2017 Police Department *Surgeon 134665.00000 1.346650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.346650e+05 1.346650e+05 0.00 NULL
2017 Police Department Accountant 59176.42308 1.538587e+06 102625.41 3.947131e+03 0.000 1969.50 26 0.000000e+00 0.00 1.641212e+06 1.538587e+06 102625.41 NULL
2017 Police Department Adm Manager-Non-Mgrl From M1/M2 76856.47368 2.920546e+06 143588.35 3.778641e+03 342.760 2493.93 38 3.427600e+02 13024.88 3.064134e+06 2.933571e+06 130563.47 NULL
2017 Police Department Adm Traffic Enfrcmnt Agent-Director Of Parking Enfrcmnt Dist 158268.00000 1.582680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.582680e+05 1.582680e+05 0.00 NULL
2017 Police Department Admin Community Relations Specialist 111564.80000 5.578240e+05 43728.01 8.745602e+03 8188.480 581.25 5 8.188480e+03 40942.40 6.015520e+05 5.987664e+05 2785.61 NULL
2017 Police Department Admin Contract Specialist 131137.94737 2.491621e+06 1912.80 1.006737e+02 0.000 35.75 19 0.000000e+00 0.00 2.493534e+06 2.491621e+06 1912.80 NULL
2017 Police Department Admin School Security 162983.00000 1.629830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.629830e+05 1.629830e+05 0.00 NULL
2017 Police Department Admin Traffic Enf Agnt-Union 72803.38710 2.256905e+06 676242.98 2.181429e+04 23057.180 11596.50 31 2.181429e+04 676242.98 2.933148e+06 2.933148e+06 0.00 NULL
2017 Police Department Admin Traffic Enfrcmnt Agent 116395.00000 2.327900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.327900e+05 2.327900e+05 0.00 NULL
2017 Police Department Administrative Accountant 107062.83333 6.423770e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.423770e+05 6.423770e+05 0.00 NULL
2017 Police Department Administrative Architect 105060.00000 1.050600e+05 5045.87 5.045870e+03 5045.870 87.00 1 5.045870e+03 5045.87 1.101059e+05 1.101059e+05 0.00 NULL
2017 Police Department Administrative Community Relations Specialist 173639.00000 5.209170e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.209170e+05 5.209170e+05 0.00 NULL
2017 Police Department Administrative Graphic Artist 95054.00000 9.505400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.505400e+04 9.505400e+04 0.00 NULL
2017 Police Department Administrative Investigator 95594.00000 9.559400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.559400e+04 9.559400e+04 0.00 NULL
2017 Police Department Administrative Labor Relations Analyst 223353.00000 2.233530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.233530e+05 2.233530e+05 0.00 NULL
2017 Police Department Administrative Management Auditor 126690.00000 1.266900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.266900e+05 1.266900e+05 0.00 NULL
2017 Police Department Administrative Printing Services Manager 118092.33333 3.542770e+05 4361.28 1.453760e+03 0.000 38.50 3 0.000000e+00 0.00 3.586383e+05 3.542770e+05 4361.28 NULL
2017 Police Department Administrative Procurement Analyst 87559.53333 1.313393e+06 188099.04 1.253994e+04 9272.240 3267.75 15 9.272240e+03 139083.60 1.501492e+06 1.452477e+06 49015.44 NULL
2017 Police Department Administrative Project Manager 124005.42857 8.680380e+05 65451.36 9.350194e+03 0.000 778.75 7 0.000000e+00 0.00 9.334894e+05 8.680380e+05 65451.36 NULL
2017 Police Department Administrative Psychologist 113120.33333 3.393610e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.393610e+05 3.393610e+05 0.00 NULL
2017 Police Department Administrative Public Health Sanitarian 130139.00000 1.301390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.301390e+05 1.301390e+05 0.00 NULL
2017 Police Department Administrative Public Information Specialist 108906.08333 1.306873e+06 273.40 2.278333e+01 0.000 0.00 12 0.000000e+00 0.00 1.307146e+06 1.306873e+06 273.40 NULL
2017 Police Department Administrative Staff Analyst 98661.26829 8.090224e+06 384409.06 4.687915e+03 840.810 6016.50 82 8.408100e+02 68946.42 8.474633e+06 8.159170e+06 315462.64 NULL
2017 Police Department Administrative Supervisor Of Building Maintenance 108150.00000 1.081500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081500e+05 1.081500e+05 0.00 NULL
2017 Police Department Administrative Transportation Coordinator 126074.00000 1.260740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.260740e+05 1.260740e+05 0.00 NULL
2017 Police Department Agency Attorney 85814.02222 7.723262e+06 699443.09 7.771590e+03 3353.430 10320.50 90 3.353430e+03 301808.70 8.422705e+06 8.025071e+06 397634.39 NULL
2017 Police Department Agency Attorney Interne 60183.33333 3.611000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.611000e+05 3.611000e+05 0.00 NULL
2017 Police Department Agency Chief Contracting Officer 159926.00000 1.599260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.599260e+05 1.599260e+05 0.00 NULL
2017 Police Department Architect 82732.50000 1.654650e+05 37.26 1.863000e+01 18.630 1.00 2 1.863000e+01 37.26 1.655023e+05 1.655023e+05 0.00 NULL
2017 Police Department Assistant Advocate-Pd 99764.10000 9.976410e+05 31203.77 3.120377e+03 774.075 431.25 10 7.740750e+02 7740.75 1.028845e+06 1.005382e+06 23463.02 NULL
2017 Police Department Assistant Architect 62500.50000 1.250010e+05 18235.73 9.117865e+03 9117.865 442.75 2 9.117865e+03 18235.73 1.432367e+05 1.432367e+05 0.00 NULL
2017 Police Department Assistant Chemical Engineer 72535.00000 7.253500e+04 1337.41 1.337410e+03 1337.410 29.50 1 1.337410e+03 1337.41 7.387241e+04 7.387241e+04 0.00 NULL
2017 Police Department Assistant Commissioner 170999.33333 5.129980e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.129980e+05 5.129980e+05 0.00 NULL
2017 Police Department Assistant Counsel-Pd 103190.80000 1.031908e+06 111541.84 1.115418e+04 1417.620 1445.00 10 1.417620e+03 14176.20 1.143450e+06 1.046084e+06 97365.64 NULL
2017 Police Department Assistant Deputy Commissioner 137248.00000 1.372480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.372480e+05 1.372480e+05 0.00 NULL
2017 Police Department Assistant Mechanical Engineer 61104.00000 6.110400e+04 23325.29 2.332529e+04 23325.290 582.25 1 2.332529e+04 23325.29 8.442929e+04 8.442929e+04 0.00 NULL
2017 Police Department Assistant To Police Commissionor 219707.00000 2.197070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197070e+05 2.197070e+05 0.00 NULL
2017 Police Department Assoc Spvr Of School Security 74345.70270 2.750791e+06 578295.11 1.562960e+04 14293.770 10674.20 37 1.429377e+04 528869.49 3.329086e+06 3.279660e+06 49425.62 NULL
2017 Police Department Assoc Supvr Of Schl Sec 106659.75000 4.266390e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.266390e+05 4.266390e+05 0.00 NULL
2017 Police Department Associate Fingerprint Technician 40273.42857 1.127656e+06 20835.71 7.441325e+02 46.365 621.50 28 4.636500e+01 1298.22 1.148492e+06 1.128954e+06 19537.49 NULL
2017 Police Department Associate Investigator 49120.17249 2.947210e+06 340148.85 5.669148e+03 1173.405 7549.00 60 1.173405e+03 70404.30 3.287359e+06 3.017615e+06 269744.55 NULL
2017 Police Department Associate Labor Relations Analyst 97893.00000 9.789300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.789300e+04 9.789300e+04 0.00 NULL
2017 Police Department Associate Parking Control Specialist 57892.00000 4.052440e+05 131358.78 1.876554e+04 18414.790 2945.75 7 1.841479e+04 128903.53 5.366028e+05 5.341475e+05 2455.25 NULL
2017 Police Department Associate Project Manager 88817.40000 4.440870e+05 88626.84 1.772537e+04 780.120 1086.75 5 7.801200e+02 3900.60 5.327138e+05 4.479876e+05 84726.24 NULL
2017 Police Department Associate Public Information Specialist 61620.00000 6.162000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.162000e+04 6.162000e+04 0.00 NULL
2017 Police Department Associate Public Records Officer 58362.00000 5.836200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.836200e+04 5.836200e+04 0.00 NULL
2017 Police Department Associate Quality Assurance Specialist 70091.00000 7.009100e+04 19760.30 1.976030e+04 19760.300 354.25 1 1.976030e+04 19760.30 8.985130e+04 8.985130e+04 0.00 NULL
2017 Police Department Associate Staff Analyst 78805.77500 3.152231e+06 251912.66 6.297816e+03 751.390 4082.25 40 7.513900e+02 30055.60 3.404144e+06 3.182287e+06 221857.06 NULL
2017 Police Department Associate Traffic Enforcement Agent 48954.98432 2.810016e+07 9322470.10 1.624124e+04 16244.075 213082.22 574 1.624124e+04 9322470.10 3.742263e+07 3.742263e+07 0.00 NULL
2017 Police Department Attorney At Law 92391.50000 3.695660e+05 85337.68 2.133442e+04 4340.615 801.25 4 4.340615e+03 17362.46 4.549037e+05 3.869285e+05 67975.22 NULL
2017 Police Department Auto Body Worker 56040.23810 1.176845e+06 141999.11 6.761862e+03 7008.580 3437.50 21 6.761862e+03 141999.11 1.318844e+06 1.318844e+06 0.00 NULL
2017 Police Department Auto Mechanic NA NA 1509399.56 8.028721e+03 5556.585 24512.42 188 5.556585e+03 1044637.98 NA NA NA NULL
2017 Police Department Automotive Service Worker 36513.61458 3.505307e+06 105465.61 1.098600e+03 0.000 3428.25 96 0.000000e+00 0.00 3.610773e+06 3.505307e+06 105465.61 NULL
2017 Police Department Bookbinder 45139.66667 1.354190e+05 2577.32 8.591067e+02 1213.180 94.25 3 8.591067e+02 2577.32 1.379963e+05 1.379963e+05 0.00 NULL
2017 Police Department Bookkeeper 49176.55172 2.852240e+06 178896.91 3.084429e+03 33.750 4621.25 58 3.375000e+01 1957.50 3.031137e+06 2.854198e+06 176939.41 NULL
2017 Police Department Capt Det Chief Of Department 213461.00000 4.269220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.269220e+05 4.269220e+05 0.00 NULL
2017 Police Department Capt Det Chief Of The Housing Bureau 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2017 Police Department Capt Det Chief Of The Transit Bureau 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2017 Police Department Captain 143397.89459 5.305722e+07 1791137.96 4.840913e+03 146.630 19931.04 370 1.466300e+02 54253.10 5.484836e+07 5.311147e+07 1736884.86 NULL
2017 Police Department Captain Chief Of Counterterrorism 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2017 Police Department Captain D/A Chief Of Management Analysis And Planning 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2017 Police Department Captain D/A Deputy Chief Inspector 180568.44928 1.245922e+07 171242.13 2.481770e+03 0.000 0.00 69 0.000000e+00 0.00 1.263047e+07 1.245922e+07 171242.13 NULL
2017 Police Department Captain D/A Deputy Inspector 162688.47938 3.156156e+07 273729.88 1.410979e+03 0.000 290.60 194 0.000000e+00 0.00 3.183529e+07 3.156156e+07 273729.88 NULL
2017 Police Department Captain D/A Inspector 171534.55556 2.470098e+07 231702.00 1.609042e+03 0.000 0.00 144 0.000000e+00 0.00 2.493268e+07 2.470098e+07 231702.00 NULL
2017 Police Department Captain Detailed As Assistant Chief Inspector 223195.18750 7.142246e+06 6512.73 2.035228e+02 0.000 0.00 32 0.000000e+00 0.00 7.148759e+06 7.142246e+06 6512.73 NULL
2017 Police Department Captain Detailed As Chief Of Crime Control Strategies 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2017 Police Department Captain Detailed As Chief Of Detectives 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2017 Police Department Captain Detailed As Chief Of Organized Crime Control 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2017 Police Department Captain Detailed As Chief Of Patrol 216279.00000 4.325580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.325580e+05 4.325580e+05 0.00 NULL
2017 Police Department Captain Detailed As Chief Of Personnel 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2017 Police Department Captain-Chief Of Community Affairs 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2017 Police Department Captain-Chief Of Intelligence 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2017 Police Department Captain-Chief Of Staff 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2017 Police Department Captain-Managerial Details 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2017 Police Department Captain: Chief Of Transportation Bureau 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2017 Police Department Carpenter NA NA 699395.06 2.914146e+04 23038.325 8823.00 24 2.303833e+04 552919.80 NA NA NA NULL
2017 Police Department Case Management Nurse 75328.35000 1.506567e+06 75382.58 3.769129e+03 742.330 1179.25 20 7.423300e+02 14846.60 1.581950e+06 1.521414e+06 60535.98 NULL
2017 Police Department Cashier 44823.25000 1.792930e+05 35899.74 8.974935e+03 7156.275 1034.00 4 7.156275e+03 28625.10 2.151927e+05 2.079181e+05 7274.64 NULL
2017 Police Department Certified It Administrator 104088.32000 2.602208e+06 366055.93 1.464224e+04 13397.060 4717.08 25 1.339706e+04 334926.50 2.968264e+06 2.937134e+06 31129.43 NULL
2017 Police Department Certified It Developer 95640.50000 5.738430e+05 28670.91 4.778485e+03 406.915 394.25 6 4.069150e+02 2441.49 6.025139e+05 5.762845e+05 26229.42 NULL
2017 Police Department Certified Wide Area Network Administrator 120301.00000 3.609030e+05 39070.81 1.302360e+04 122.000 398.25 3 1.220000e+02 366.00 3.999738e+05 3.612690e+05 38704.81 NULL
2017 Police Department Chaplain 35363.66667 4.243640e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 4.243640e+05 4.243640e+05 0.00 NULL
2017 Police Department City Attendant 35031.00000 3.503100e+04 12692.61 1.269261e+04 12692.610 437.75 1 1.269261e+04 12692.61 4.772361e+04 4.772361e+04 0.00 NULL
2017 Police Department City Custodial Assistant 33807.75821 1.085229e+07 667167.21 2.078403e+03 0.000 24162.17 321 0.000000e+00 0.00 1.151946e+07 1.085229e+07 667167.21 NULL
2017 Police Department City Dentist 75181.48000 7.518148e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.518148e+04 7.518148e+04 0.00 NULL
2017 Police Department City Deputy Medical Director 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2017 Police Department City Laborer NA NA 452466.94 2.262335e+04 21585.115 6464.25 20 2.158512e+04 431702.30 NA NA NA NULL
2017 Police Department City Research Scientist 76147.66667 4.568860e+05 6633.56 1.105593e+03 1028.295 157.50 6 1.028295e+03 6169.77 4.635196e+05 4.630558e+05 463.79 NULL
2017 Police Department Clerical Aide 29041.73654 1.452087e+05 9322.25 1.864450e+03 969.360 333.00 5 9.693600e+02 4846.80 1.545309e+05 1.500555e+05 4475.45 NULL
2017 Police Department Clerical Associate 43396.71771 2.603803e+06 233165.26 3.886088e+03 627.415 6653.75 60 6.274150e+02 37644.90 2.836968e+06 2.641448e+06 195520.36 NULL
2017 Police Department College Aide 13468.13867 4.040442e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.040442e+04 4.040442e+04 0.00 NULL
2017 Police Department Commissioner 226366.00000 4.527320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.527320e+05 4.527320e+05 0.00 NULL
2017 Police Department Community Assistant 15503.00493 3.410661e+05 25598.39 1.163563e+03 0.000 894.50 22 0.000000e+00 0.00 3.666645e+05 3.410661e+05 25598.39 NULL
2017 Police Department Community Associate 47493.62500 3.799490e+05 9668.03 1.208504e+03 598.240 295.00 8 5.982400e+02 4785.92 3.896170e+05 3.847349e+05 4882.11 NULL
2017 Police Department Community Coordinator 61594.40000 9.239160e+05 34308.26 2.287217e+03 1077.180 837.50 15 1.077180e+03 16157.70 9.582243e+05 9.400737e+05 18150.56 NULL
2017 Police Department Compositor NA NA 78115.53 2.603851e+04 22843.450 955.50 3 2.284345e+04 68530.35 NA NA NA NULL
2017 Police Department Computer Aide-Non-Spvr 43881.00000 4.388100e+04 2138.95 2.138950e+03 2138.950 68.50 1 2.138950e+03 2138.95 4.601995e+04 4.601995e+04 0.00 NULL
2017 Police Department Computer Associate 72968.42336 9.996674e+06 952767.90 6.954510e+03 4602.130 16764.00 137 4.602130e+03 630491.81 1.094944e+07 1.062717e+07 322276.09 NULL
2017 Police Department Computer Operations Manager 145744.00000 2.040416e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.040416e+06 2.040416e+06 0.00 NULL
2017 Police Department Computer Programmer Analyst 57772.22222 5.199500e+05 25326.54 2.814060e+03 422.310 548.25 9 4.223100e+02 3800.79 5.452765e+05 5.237508e+05 21525.75 NULL
2017 Police Department Computer Specialist 99788.22000 4.989411e+06 505295.96 1.010592e+04 5037.910 6983.50 50 5.037910e+03 251895.50 5.494707e+06 5.241306e+06 253400.46 NULL
2017 Police Department Computer Systems Manager 148527.14286 2.079380e+06 9564.48 6.831771e+02 0.000 82.75 14 0.000000e+00 0.00 2.088944e+06 2.079380e+06 9564.48 NULL
2017 Police Department Counsel To The Police Commissioner 219707.00000 2.197070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.197070e+05 2.197070e+05 0.00 NULL
2017 Police Department Criminalist 72594.65217 1.335742e+07 2206184.24 1.199013e+04 11546.430 38648.25 184 1.154643e+04 2124543.12 1.556360e+07 1.548196e+07 81641.12 NULL
2017 Police Department Criminalist Assistant Director Of Laboratory 121704.83333 7.302290e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.302290e+05 7.302290e+05 0.00 NULL
2017 Police Department Criminalist Deputy Director Of Labatory 157628.00000 1.576280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.576280e+05 1.576280e+05 0.00 NULL
2017 Police Department Criminalist Director Of Laboratory 158984.00000 1.589840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.589840e+05 1.589840e+05 0.00 NULL
2017 Police Department Custodian 37996.62963 1.025909e+06 222399.22 8.237008e+03 7458.940 7549.65 27 7.458940e+03 201391.38 1.248308e+06 1.227300e+06 21007.84 NULL
2017 Police Department Deputy Chief Surgeon 144671.60000 7.233580e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.233580e+05 7.233580e+05 0.00 NULL
2017 Police Department Deputy Commissioner 219782.85714 1.538480e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.538480e+06 1.538480e+06 0.00 NULL
2017 Police Department Director 86991.00000 8.699100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.699100e+04 8.699100e+04 0.00 NULL
2017 Police Department Director Employee Management Division 154514.50000 3.090290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.090290e+05 3.090290e+05 0.00 NULL
2017 Police Department Director Management Information Systems 191922.00000 1.919220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.919220e+05 1.919220e+05 0.00 NULL
2017 Police Department Director Of Department Advocates Office 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2017 Police Department Director Of Internal Affairs - Pd 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2017 Police Department Director Of Motor Transport 149204.00000 1.492040e+05 852.17 8.521700e+02 852.170 6.50 1 8.521700e+02 852.17 1.500562e+05 1.500562e+05 0.00 NULL
2017 Police Department Director Of Photographic Services-Pd 77611.00000 7.761100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.761100e+04 7.761100e+04 0.00 NULL
2017 Police Department Director Of Psychological Services 131660.00000 2.633200e+05 25972.02 1.298601e+04 12986.010 356.00 2 1.298601e+04 25972.02 2.892920e+05 2.892920e+05 0.00 NULL
2017 Police Department Director Of Support Services-Pd 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2017 Police Department Director Of Technology Development-Pd 210450.00000 2.104500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.104500e+05 2.104500e+05 0.00 NULL
2017 Police Department Director Of Training 128750.00000 1.287500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287500e+05 1.287500e+05 0.00 NULL
2017 Police Department Economist 59000.00000 5.900000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.900000e+04 5.900000e+04 0.00 NULL
2017 Police Department Electrician NA NA 1332249.20 3.600674e+04 41852.500 14913.50 37 3.600674e+04 1332249.20 NA NA NA NULL
2017 Police Department Elevator Mechanic NA NA 104626.64 5.231332e+04 52313.320 1425.50 2 5.231332e+04 104626.64 NA NA NA NULL
2017 Police Department Employee Assistance Program Specialist 60404.00000 6.040400e+04 2461.54 2.461540e+03 2461.540 64.00 1 2.461540e+03 2461.54 6.286554e+04 6.286554e+04 0.00 NULL
2017 Police Department Evidence And Property Control Specialist 53451.16935 6.627945e+06 368943.93 2.975354e+03 1107.340 9728.75 124 1.107340e+03 137310.16 6.996889e+06 6.765255e+06 231633.77 NULL
2017 Police Department Executive Agency Counsel 135616.19455 4.475334e+06 5196.06 1.574564e+02 0.000 48.50 33 0.000000e+00 0.00 4.480530e+06 4.475334e+06 5196.06 NULL
2017 Police Department Fingerprint Technician Trainee 29772.16667 1.786330e+05 15.52 2.586667e+00 0.000 1.00 6 0.000000e+00 0.00 1.786485e+05 1.786330e+05 15.52 NULL
2017 Police Department First Deputy Commissioner 225826.00000 2.258260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.258260e+05 2.258260e+05 0.00 NULL
2017 Police Department Fitness Instructor 55944.17647 9.510510e+05 3026.54 1.780318e+02 124.500 43.00 17 1.245000e+02 2116.50 9.540775e+05 9.531675e+05 910.04 NULL
2017 Police Department Glazier NA NA 152155.20 5.071840e+04 71956.700 1482.50 3 5.071840e+04 152155.20 NA NA NA NULL
2017 Police Department Graphic Artist 57665.00000 3.459900e+05 61248.20 1.020803e+04 8431.130 1479.75 6 8.431130e+03 50586.78 4.072382e+05 3.965768e+05 10661.42 NULL
2017 Police Department Horseshoer NA NA 6891.61 2.297203e+03 2360.540 143.00 3 2.297203e+03 6891.61 NA NA NA NULL
2017 Police Department Hostler 43305.10341 9.527123e+05 107732.12 4.896915e+03 5062.435 3280.50 22 4.896915e+03 107732.12 1.060444e+06 1.060444e+06 0.00 NULL
2017 Police Department Intelligence Research Manager-Pd 146224.42857 1.023571e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.023571e+06 1.023571e+06 0.00 NULL
2017 Police Department Intelligence Research Specialist-Pd 90312.56364 4.967191e+06 608516.05 1.106393e+04 10149.770 9488.25 55 1.014977e+04 558237.35 5.575707e+06 5.525428e+06 50278.70 NULL
2017 Police Department Investigator 46117.43636 2.536459e+06 340735.37 6.195189e+03 6740.550 9449.50 55 6.195189e+03 340735.37 2.877194e+06 2.877194e+06 0.00 NULL
2017 Police Department Investigator Trainee 40129.57143 2.809070e+05 8961.21 1.280173e+03 983.850 356.50 7 9.838500e+02 6886.95 2.898682e+05 2.877940e+05 2074.26 NULL
2017 Police Department It Project Specialist 106400.00000 2.128000e+05 23686.73 1.184336e+04 11843.365 340.75 2 1.184336e+04 23686.73 2.364867e+05 2.364867e+05 0.00 NULL
2017 Police Department Lieutenant 118193.85772 1.744541e+08 36042971.75 2.441936e+04 23204.305 358630.99 1476 2.320431e+04 34249554.18 2.104971e+08 2.087037e+08 1793417.57 NULL
2017 Police Department Lieutenant D/A Commander Of Detective Squad 129005.93782 2.489815e+07 7647449.29 3.962409e+04 44406.580 71090.03 193 3.962409e+04 7647449.29 3.254560e+07 3.254560e+07 0.00 NULL
2017 Police Department Lieutenant D/A Special Assignment 128050.26966 2.279295e+07 6039728.63 3.393106e+04 38474.375 56199.11 178 3.393106e+04 6039728.63 2.883268e+07 2.883268e+07 0.00 NULL
2017 Police Department Locksmith NA NA 33719.47 1.685974e+04 16859.735 690.50 2 1.685974e+04 33719.47 NA NA NA NULL
2017 Police Department Maintenance Worker NA NA 879559.71 2.145268e+04 20919.730 18225.00 41 2.091973e+04 857708.93 NA NA NA NULL
2017 Police Department Management Auditor 68868.55000 1.377371e+06 111460.38 5.573019e+03 1192.480 1948.75 20 1.192480e+03 23849.60 1.488831e+06 1.401221e+06 87610.78 NULL
2017 Police Department Management Auditor Trainee 48631.00000 4.863100e+04 10152.20 1.015220e+04 10152.200 310.75 1 1.015220e+04 10152.20 5.878320e+04 5.878320e+04 0.00 NULL
2017 Police Department Manager Of Radio Repair Operations 139802.40000 6.990120e+05 6132.15 1.226430e+03 0.000 62.00 5 0.000000e+00 0.00 7.051442e+05 6.990120e+05 6132.15 NULL
2017 Police Department Marine Maintenance Mechanic 69605.00000 1.392100e+05 337.35 1.686750e+02 168.675 12.00 2 1.686750e+02 337.35 1.395474e+05 1.395474e+05 0.00 NULL
2017 Police Department Mechanical Engineer 104230.00000 2.084600e+05 89652.99 4.482650e+04 44826.495 1132.00 2 4.482650e+04 89652.99 2.981130e+05 2.981130e+05 0.00 NULL
2017 Police Department Media Services Technician 50040.83333 3.002450e+05 15387.22 2.564537e+03 0.000 354.75 6 0.000000e+00 0.00 3.156322e+05 3.002450e+05 15387.22 NULL
2017 Police Department Motor Vehicle Operator 45766.90909 2.013744e+06 255541.20 5.807755e+03 2974.665 6876.92 44 2.974665e+03 130885.26 2.269285e+06 2.144629e+06 124655.94 NULL
2017 Police Department Motor Vehicle Supervisor 54767.80000 2.738390e+05 29612.55 5.922510e+03 7261.530 714.00 5 5.922510e+03 29612.55 3.034515e+05 3.034515e+05 0.00 NULL
2017 Police Department Office Machine Aide 35335.33333 1.060060e+05 37.54 1.251333e+01 0.000 1.75 3 0.000000e+00 0.00 1.060435e+05 1.060060e+05 37.54 NULL
2017 Police Department Oiler NA NA 671128.04 2.917948e+04 33941.880 7197.25 23 2.917948e+04 671128.04 NA NA NA NULL
2017 Police Department Operations Communications Specialist 43142.00000 1.294260e+05 15984.23 5.328077e+03 0.000 466.00 3 0.000000e+00 0.00 1.454102e+05 1.294260e+05 15984.23 NULL
2017 Police Department P.o. Da Det Gr3 91262.25873 2.899402e+08 90208976.21 2.839439e+04 31772.590 1142966.93 3177 2.839439e+04 90208976.21 3.801492e+08 3.801492e+08 0.00 NULL
2017 Police Department P.o. Det Spec 90674.45829 9.239727e+07 24380951.43 2.392635e+04 26688.780 306100.05 1019 2.392635e+04 24380951.43 1.167782e+08 1.167782e+08 0.00 NULL
2017 Police Department Painter NA NA 591045.56 3.694035e+04 37942.070 7059.75 16 3.694035e+04 591045.56 NA NA NA NULL
2017 Police Department Paralegal Aide 46333.83333 2.780030e+05 15659.29 2.609882e+03 464.790 402.75 6 4.647900e+02 2788.74 2.936623e+05 2.807917e+05 12870.55 NULL
2017 Police Department Parking Control Specialist 43818.75000 7.011000e+05 123678.45 7.729903e+03 2118.145 3774.33 16 2.118145e+03 33890.32 8.247784e+05 7.349903e+05 89788.13 NULL
2017 Police Department Photographer 46572.55000 9.314510e+05 74641.64 3.732082e+03 1675.435 2219.00 20 1.675435e+03 33508.70 1.006093e+06 9.649597e+05 41132.94 NULL
2017 Police Department Physician’s Assistant 92787.00000 9.278700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.278700e+04 9.278700e+04 0.00 NULL
2017 Police Department Plumber NA NA 880307.08 5.501919e+04 65376.240 7685.50 16 5.501919e+04 880307.08 NA NA NA NULL
2017 Police Department Plumber’s Helper NA NA 35173.97 3.517397e+04 35173.970 436.25 1 3.517397e+04 35173.97 NA NA NA NULL
2017 Police Department Police Administrative Aide 38446.53502 5.928456e+07 1528949.36 9.915365e+02 0.000 49514.16 1542 0.000000e+00 0.00 6.081351e+07 5.928456e+07 1528949.36 NULL
2017 Police Department Police Attendant 37803.30769 1.474329e+06 430194.84 1.103064e+04 12722.870 14427.45 39 1.103064e+04 430194.84 1.904524e+06 1.904524e+06 0.00 NULL
2017 Police Department Police Cadet 15022.10907 9.283663e+06 0.00 0.000000e+00 0.000 0.00 618 0.000000e+00 0.00 9.283663e+06 9.283663e+06 0.00 NULL
2017 Police Department Police Communications Technician 44864.14058 6.765512e+07 6221316.65 4.125542e+03 2796.045 179966.15 1508 2.796045e+03 4216435.86 7.387644e+07 7.187156e+07 2004880.79 NULL
2017 Police Department Police Officer 70644.20875 2.022402e+09 309405645.89 1.080780e+04 7491.420 4387474.43 28628 7.491420e+03 214464371.76 2.331808e+09 2.236867e+09 94941274.13 NULL
2017 Police Department Police Officer D/A Detective 1st Gr 118590.91489 5.573773e+07 16089097.83 3.423212e+04 39421.055 161063.71 470 3.423212e+04 16089097.83 7.182683e+07 7.182683e+07 0.00 NULL
2017 Police Department Police Officer D/A Detective 2nd Gr 103449.50271 1.144152e+08 35895238.55 3.245501e+04 36683.670 411306.38 1106 3.245501e+04 35895238.55 1.503104e+08 1.503104e+08 0.00 NULL
2017 Police Department Police Officer, Special Assignment 85000.00000 3.400000e+05 2342.21 5.855525e+02 624.780 7.05 4 5.855525e+02 2342.21 3.423422e+05 3.423422e+05 0.00 NULL
2017 Police Department Police Surgeon 131441.32143 3.680357e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 3.680357e+06 3.680357e+06 0.00 NULL
2017 Police Department Precinct Community Relations Aide 26999.12625 1.079965e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.079965e+05 1.079965e+05 0.00 NULL
2017 Police Department Precinct Receptionist 18668.33809 2.613567e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.613567e+05 2.613567e+05 0.00 NULL
2017 Police Department Principal Administrative Associate 57333.56522 1.714274e+07 907566.24 3.035339e+03 17.660 21222.53 299 1.766000e+01 5280.34 1.805030e+07 1.714802e+07 902285.90 NULL
2017 Police Department Principal Fingerprint Technician 48663.00000 3.406410e+05 2652.10 3.788714e+02 133.870 88.50 7 1.338700e+02 937.09 3.432931e+05 3.415781e+05 1715.01 NULL
2017 Police Department Principal Police Communication Technician 69841.10448 4.679354e+06 741482.41 1.106690e+04 10825.360 13790.00 67 1.082536e+04 725299.12 5.420836e+06 5.404653e+06 16183.29 NULL
2017 Police Department Printing Press Operator NA NA 203729.96 1.358200e+04 13240.270 3531.75 15 1.324027e+04 198604.05 NA NA NA NULL
2017 Police Department Procurement Analyst 57149.26087 1.314433e+06 172342.06 7.493133e+03 5166.970 4238.50 23 5.166970e+03 118840.31 1.486775e+06 1.433273e+06 53501.75 NULL
2017 Police Department Program Producer 45420.50000 9.084100e+04 2046.06 1.023030e+03 1023.030 79.50 2 1.023030e+03 2046.06 9.288706e+04 9.288706e+04 0.00 NULL
2017 Police Department Psychologist 67029.78160 1.675745e+06 233680.78 9.347231e+03 2846.820 4305.26 25 2.846820e+03 71170.50 1.909425e+06 1.746915e+06 162510.28 NULL
2017 Police Department Public Health Assistant 34833.00000 6.966600e+04 2132.61 1.066305e+03 1066.305 93.25 2 1.066305e+03 2132.61 7.179861e+04 7.179861e+04 0.00 NULL
2017 Police Department Public Records Officer 50009.00000 1.000180e+05 113.64 5.682000e+01 56.820 4.25 2 5.682000e+01 113.64 1.001316e+05 1.001316e+05 0.00 NULL
2017 Police Department Radio Repair Mechanic NA NA 1103082.20 1.313193e+04 11966.890 14353.00 84 1.196689e+04 1005218.76 NA NA NA NULL
2017 Police Department Research Assistant 61707.00000 6.170700e+04 8079.71 8.079710e+03 8079.710 195.00 1 8.079710e+03 8079.71 6.978671e+04 6.978671e+04 0.00 NULL
2017 Police Department Roofer NA NA 183547.22 4.588681e+04 45479.335 2592.38 4 4.547933e+04 181917.34 NA NA NA NULL
2017 Police Department School Crossing Guard 11189.65784 3.027921e+07 3591.06 1.327073e+00 0.000 220.50 2706 0.000000e+00 0.00 3.028281e+07 3.027921e+07 3591.06 NULL
2017 Police Department School Safety Agent 40243.74948 2.138150e+08 49588878.12 9.333499e+03 8398.190 1595880.43 5313 8.398190e+03 44619583.47 2.634039e+08 2.584346e+08 4969294.65 NULL
2017 Police Department Secretary 46379.62162 1.716046e+06 122269.77 3.304588e+03 458.600 3176.00 37 4.586000e+02 16968.20 1.838316e+06 1.733014e+06 105301.57 NULL
2017 Police Department Secretary To The Commissioner 105771.00000 1.057710e+05 21617.18 2.161718e+04 21617.180 302.25 1 2.161718e+04 21617.18 1.273882e+05 1.273882e+05 0.00 NULL
2017 Police Department Secretary To The First Deputy Commissioner-Pd 106793.00000 1.067930e+05 24651.67 2.465167e+04 24651.670 331.75 1 2.465167e+04 24651.67 1.314447e+05 1.314447e+05 0.00 NULL
2017 Police Department Senior Office Appliance Maintainer 43063.00000 4.306300e+04 2158.41 2.158410e+03 2158.410 71.00 1 2.158410e+03 2158.41 4.522141e+04 4.522141e+04 0.00 NULL
2017 Police Department Senior Photographer 55204.66667 4.968420e+05 85585.81 9.509534e+03 8964.090 2172.75 9 8.964090e+03 80676.81 5.824278e+05 5.775188e+05 4909.00 NULL
2017 Police Department Senior Police Administrative Aide 48269.09989 4.493853e+07 1856399.51 1.993984e+03 0.000 50316.49 931 0.000000e+00 0.00 4.679493e+07 4.493853e+07 1856399.51 NULL
2017 Police Department Senior Stationary Engineer NA NA 135379.41 4.512647e+04 41821.510 1183.50 3 4.182151e+04 125464.53 NA NA NA NULL
2017 Police Department Sergeant 99595.71102 4.363288e+08 83770236.11 1.912126e+04 17230.940 964758.61 4381 1.723094e+04 75488748.14 5.200990e+08 5.118176e+08 8281487.97 NULL
2017 Police Department Sergeant D/A Special Assignment 116747.27815 3.525768e+07 8753495.56 2.898508e+04 31615.215 89294.01 302 2.898508e+04 8753495.56 4.401117e+07 4.401117e+07 0.00 NULL
2017 Police Department Sergeantd/A Supervisor Detective Squad 116869.97831 4.850104e+07 14440465.40 3.479630e+04 40000.460 146950.65 415 3.479630e+04 14440465.40 6.294151e+07 6.294151e+07 0.00 NULL
2017 Police Department Sheet Metal Worker NA NA 434703.81 7.245063e+04 75526.500 3531.25 6 7.245063e+04 434703.81 NA NA NA NULL
2017 Police Department Special Officer 46861.66667 1.405850e+05 10437.74 3.479247e+03 3609.020 292.25 3 3.479247e+03 10437.74 1.510227e+05 1.510227e+05 0.00 NULL
2017 Police Department Staff Analyst 64246.65385 1.670413e+06 89338.27 3.436087e+03 433.525 1805.00 26 4.335250e+02 11271.65 1.759751e+06 1.681685e+06 78066.62 NULL
2017 Police Department Staff Analyst Trainee 43527.18182 4.787990e+05 3945.82 3.587109e+02 0.000 121.50 11 0.000000e+00 0.00 4.827448e+05 4.787990e+05 3945.82 NULL
2017 Police Department Stationary Engineer NA NA 606269.33 4.330495e+04 39937.715 6082.25 14 3.993771e+04 559128.01 NA NA NA NULL
2017 Police Department Statistician 47277.71429 3.309440e+05 150.45 2.149286e+01 0.000 6.00 7 0.000000e+00 0.00 3.310945e+05 3.309440e+05 150.45 NULL
2017 Police Department Steam Fitter NA NA 526130.00 5.845889e+04 66495.000 4380.00 9 5.845889e+04 526130.00 NA NA NA NULL
2017 Police Department Stenographer To Each Deputy Commissioner 85546.60000 4.277330e+05 49439.91 9.887982e+03 8785.340 851.00 5 8.785340e+03 43926.70 4.771729e+05 4.716597e+05 5513.21 NULL
2017 Police Department Stenographic Specialist 51363.00000 1.027260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.027260e+05 1.027260e+05 0.00 NULL
2017 Police Department Stock Worker 36852.79487 1.437259e+06 128663.58 3.299066e+03 1819.190 5059.75 39 1.819190e+03 70948.41 1.565923e+06 1.508207e+06 57715.17 NULL
2017 Police Department Summer College Intern 2273.94985 1.728202e+05 0.00 0.000000e+00 0.000 0.00 76 0.000000e+00 0.00 1.728202e+05 1.728202e+05 0.00 NULL
2017 Police Department Summer Graduate Intern 4209.32799 8.839589e+04 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 8.839589e+04 8.839589e+04 0.00 NULL
2017 Police Department Supervising Chief Surgeon 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2017 Police Department Supervising Police Communications Technician 60973.60773 1.103622e+07 1524993.84 8.425380e+03 6094.150 33320.09 181 6.094150e+03 1103041.15 1.256122e+07 1.213926e+07 421952.69 NULL
2017 Police Department Supervisor 73013.00000 2.190390e+05 157665.69 5.255523e+04 55480.800 2664.50 3 5.255523e+04 157665.69 3.767047e+05 3.767047e+05 0.00 NULL
2017 Police Department Supervisor Carpenter NA NA 88526.46 4.426323e+04 44263.230 1025.00 2 4.426323e+04 88526.46 NA NA NA NULL
2017 Police Department Supervisor Electrician NA NA 210130.96 3.001871e+04 38831.680 2187.00 7 3.001871e+04 210130.96 NA NA NA NULL
2017 Police Department Supervisor Elevator Mechanic NA NA 64579.86 6.457986e+04 64579.860 788.00 1 6.457986e+04 64579.86 NA NA NA NULL
2017 Police Department Supervisor Glazier NA NA 87958.72 8.795872e+04 87958.720 843.00 1 8.795872e+04 87958.72 NA NA NA NULL
2017 Police Department Supervisor Locksmith NA NA 19023.45 1.902345e+04 19023.450 353.00 1 1.902345e+04 19023.45 NA NA NA NULL
2017 Police Department Supervisor Of Mechanical Installations & Maintenance 72535.00000 7.253500e+04 32916.22 3.291622e+04 32916.220 555.50 1 3.291622e+04 32916.22 1.054512e+05 1.054512e+05 0.00 NULL
2017 Police Department Supervisor Of Mechanics 112893.48611 8.128331e+06 515637.74 7.161635e+03 7949.470 5298.75 72 7.161635e+03 515637.74 8.643969e+06 8.643969e+06 0.00 NULL
2017 Police Department Supervisor Of Office Machine Operations 48454.00000 4.845400e+04 20813.60 2.081360e+04 20813.600 532.50 1 2.081360e+04 20813.60 6.926760e+04 6.926760e+04 0.00 NULL
2017 Police Department Supervisor Of School Security 65622.63710 8.137207e+06 1883296.02 1.518787e+04 15636.140 37478.25 124 1.518787e+04 1883296.02 1.002050e+07 1.002050e+07 0.00 NULL
2017 Police Department Supervisor Of Stock Workers 48105.62500 3.848450e+05 45804.13 5.725516e+03 5045.715 1422.50 8 5.045715e+03 40365.72 4.306491e+05 4.252107e+05 5438.41 NULL
2017 Police Department Supervisor Painter NA NA 82766.38 4.138319e+04 41383.190 768.00 2 4.138319e+04 82766.38 NA NA NA NULL
2017 Police Department Supervisor Plumber NA NA 84079.42 4.203971e+04 42039.710 675.50 2 4.203971e+04 84079.42 NA NA NA NULL
2017 Police Department Supervisor Roofer NA NA 61989.50 6.198950e+04 61989.500 850.25 1 6.198950e+04 61989.50 NA NA NA NULL
2017 Police Department Supervisor Sheet Metal Worker NA NA 114559.21 1.145592e+05 114559.210 652.50 1 1.145592e+05 114559.21 NA NA NA NULL
2017 Police Department Supervisor Steamfitter NA NA 39444.00 3.944400e+04 39444.000 290.00 1 3.944400e+04 39444.00 NA NA NA NULL
2017 Police Department Supervisor Thermostat Repair NA NA 17812.06 1.781206e+04 17812.060 140.50 1 1.781206e+04 17812.06 NA NA NA NULL
2017 Police Department Surgeon Detailed As Deputy Chief Surgeon 146674.00000 1.466740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.466740e+05 1.466740e+05 0.00 NULL
2017 Police Department Telecommunications Associate 58106.50000 2.324260e+05 5267.14 1.316785e+03 697.400 125.25 4 6.974000e+02 2789.60 2.376931e+05 2.352156e+05 2477.54 NULL
2017 Police Department Telephone Service Technician 66253.00000 1.987590e+05 47612.81 1.587094e+04 18671.950 1009.00 3 1.587094e+04 47612.81 2.463718e+05 2.463718e+05 0.00 NULL
2017 Police Department Tests And Measurement Specialist 91229.00000 9.122900e+04 19616.74 1.961674e+04 19616.740 299.75 1 1.961674e+04 19616.74 1.108457e+05 1.108457e+05 0.00 NULL
2017 Police Department Thermostat Repairer NA NA 386342.05 6.439034e+04 66885.405 3418.50 6 6.439034e+04 386342.05 NA NA NA NULL
2017 Police Department Traffic Enforc Agent 45308.30471 1.635630e+07 4929626.57 1.365548e+04 12593.730 126049.26 361 1.259373e+04 4546336.53 2.128592e+07 2.090263e+07 383290.04 NULL
2017 Police Department Traffic Enforcement Agent 37166.47455 1.044006e+08 26762816.46 9.527525e+03 6397.170 895056.39 2809 6.397170e+03 17969650.53 1.311634e+08 1.223703e+08 8793165.93 NULL
2017 Police Department Welder NA NA 161274.10 8.063705e+04 80637.050 1315.50 2 8.063705e+04 161274.10 NA NA NA NULL
2017 Public Administrator-Bronx Community Associate 42656.60000 2.132830e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.132830e+05 2.132830e+05 0.00 NULL
2017 Public Administrator-Bronx Decedent Property Agent 47993.00000 4.799300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.799300e+04 4.799300e+04 0.00 NULL
2017 Public Administrator-Bronx Deputy Public Administator 115800.00000 1.158000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.158000e+05 1.158000e+05 0.00 NULL
2017 Public Administrator-Bronx Principal Administrative Associate 58504.00000 5.850400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.850400e+04 5.850400e+04 0.00 NULL
2017 Public Administrator-Bronx Public Administrator 173700.00000 1.737000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.737000e+05 1.737000e+05 0.00 NULL
2017 Public Administrator-Kings Community Assistant 36050.00000 3.605000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.605000e+04 3.605000e+04 0.00 NULL
2017 Public Administrator-Kings Community Associate 38601.74833 2.316105e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.316105e+05 2.316105e+05 0.00 NULL
2017 Public Administrator-Kings Community Coordinator 48565.00000 4.856500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.856500e+04 4.856500e+04 0.00 NULL
2017 Public Administrator-Kings Decedent Property Agent 47521.66667 1.425650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.425650e+05 1.425650e+05 0.00 NULL
2017 Public Administrator-Kings Deputy Public Administator 116958.00000 1.169580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.169580e+05 1.169580e+05 0.00 NULL
2017 Public Administrator-Kings Public Administrator 175437.00000 1.754370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.754370e+05 1.754370e+05 0.00 NULL
2017 Public Administrator-New York Accountant 60575.00000 6.057500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.057500e+04 6.057500e+04 0.00 NULL
2017 Public Administrator-New York Clerical Associate 38994.66667 1.169840e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.169840e+05 1.169840e+05 0.00 NULL
2017 Public Administrator-New York Decedent Property Agent 45017.00000 1.350510e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.350510e+05 1.350510e+05 0.00 NULL
2017 Public Administrator-New York Deputy Public Administator 116907.00000 1.169070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.169070e+05 1.169070e+05 0.00 NULL
2017 Public Administrator-New York Principal Administrative Associate 58412.00000 5.841200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.841200e+04 5.841200e+04 0.00 NULL
2017 Public Administrator-New York Public Administrator 175361.00000 1.753610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.753610e+05 1.753610e+05 0.00 NULL
2017 Public Administrator-Queens Decedent Property Agent 43255.50000 2.595330e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.595330e+05 2.595330e+05 0.00 NULL
2017 Public Administrator-Queens Deputy Public Administator 117016.00000 1.170160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.170160e+05 1.170160e+05 0.00 NULL
2017 Public Administrator-Queens Public Administrator 175437.00000 1.754370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.754370e+05 1.754370e+05 0.00 NULL
2017 Public Administrator-Queens Secretary 31673.00000 3.167300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.167300e+04 3.167300e+04 0.00 NULL
2017 Public Administrator-Richmond Deputy Public Administator 116907.00000 1.169070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.169070e+05 1.169070e+05 0.00 NULL
2017 Public Administrator-Richmond Public Administrator 174530.50000 3.490610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.490610e+05 3.490610e+05 0.00 NULL
2017 Public Administrator-Richmond Secretary To Public Administrator 63479.00000 1.904370e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.904370e+05 1.904370e+05 0.00 NULL
2017 Public Advocate Assistant To The Public Advocate 25775.56250 1.443432e+06 0.00 0.000000e+00 0.000 0.00 56 0.000000e+00 0.00 1.443432e+06 1.443432e+06 0.00 NULL
2017 Public Advocate Counsel To The Public Advocate 114750.04500 4.590002e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.590002e+05 4.590002e+05 0.00 NULL
2017 Public Advocate Director Of Communications 101046.25000 1.010462e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.010462e+05 1.010462e+05 0.00 NULL
2017 Public Advocate Director Of The Ombudsman Program 89976.90000 1.799538e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.799538e+05 1.799538e+05 0.00 NULL
2017 Public Advocate Executive Assistant And Counsel To The Public Advocate 99823.12500 1.996462e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.996462e+05 1.996462e+05 0.00 NULL
2017 Public Advocate Executive Secretary To The Public Advocate 58166.66667 1.745000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.745000e+05 1.745000e+05 0.00 NULL
2017 Public Advocate First Assistant To The Public Advocate 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2017 Public Advocate Legislative Attorney 72750.00000 7.275000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.275000e+04 7.275000e+04 0.00 NULL
2017 Public Advocate Legislative Information Officer 94928.66667 5.695720e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.695720e+05 5.695720e+05 0.00 NULL
2017 Public Advocate Office Assistant 72495.00000 7.249500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.249500e+04 7.249500e+04 0.00 NULL
2017 Public Advocate Office Manager 69890.54400 3.494527e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.494527e+05 3.494527e+05 0.00 NULL
2017 Public Advocate Principal Investigator 65750.00000 6.575000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.575000e+04 6.575000e+04 0.00 NULL
2017 Public Advocate Program Research Analyst To The Public Advocate 55250.00000 1.105000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.105000e+05 1.105000e+05 0.00 NULL
2017 Public Advocate Public Advocate 184800.00000 1.848000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.848000e+05 1.848000e+05 0.00 NULL
2017 Public Service Corps College Aide 2063.84083 5.881946e+05 0.00 0.000000e+00 0.000 0.00 285 0.000000e+00 0.00 5.881946e+05 5.881946e+05 0.00 NULL
2017 Queens Community Board #1 Community Assistant 31827.00000 3.182700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.182700e+04 3.182700e+04 0.00 NULL
2017 Queens Community Board #1 Community Service Aide 13515.66000 2.703132e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.703132e+04 2.703132e+04 0.00 NULL
2017 Queens Community Board #1 District Manager 84409.00000 8.440900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.440900e+04 8.440900e+04 0.00 NULL
2017 Queens Community Board #10 Community Associate 45231.00000 9.046200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.046200e+04 9.046200e+04 0.00 NULL
2017 Queens Community Board #10 Community Coordinator 5930.24000 5.930240e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.930240e+03 5.930240e+03 0.00 NULL
2017 Queens Community Board #10 District Manager 93703.00000 9.370300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.370300e+04 9.370300e+04 0.00 NULL
2017 Queens Community Board #11 Community Associate 46419.00000 4.641900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.641900e+04 4.641900e+04 0.00 NULL
2017 Queens Community Board #11 Community Coordinator 60907.00000 6.090700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.090700e+04 6.090700e+04 0.00 NULL
2017 Queens Community Board #11 District Manager 99769.00000 9.976900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.976900e+04 9.976900e+04 0.00 NULL
2017 Queens Community Board #12 Community Assistant 36489.00000 7.297800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.297800e+04 7.297800e+04 0.00 NULL
2017 Queens Community Board #12 Community Service Aide 25465.50000 5.093100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.093100e+04 5.093100e+04 0.00 NULL
2017 Queens Community Board #12 District Manager 110694.00000 1.106940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.106940e+05 1.106940e+05 0.00 NULL
2017 Queens Community Board #13 Community Assistant 35020.00000 3.502000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.502000e+04 3.502000e+04 0.00 NULL
2017 Queens Community Board #13 Community Coordinator 64890.00000 6.489000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.489000e+04 6.489000e+04 0.00 NULL
2017 Queens Community Board #13 District Manager 103000.00000 1.030000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030000e+05 1.030000e+05 0.00 NULL
2017 Queens Community Board #14 Community Coordinator 69868.00000 6.986800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.986800e+04 6.986800e+04 0.00 NULL
2017 Queens Community Board #14 Community Service Aide 14966.50000 2.993300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.993300e+04 2.993300e+04 0.00 NULL
2017 Queens Community Board #14 District Manager 125580.00000 1.255800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.255800e+05 1.255800e+05 0.00 NULL
2017 Queens Community Board #2 Community Assistant 35334.00000 3.533400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.533400e+04 3.533400e+04 0.00 NULL
2017 Queens Community Board #2 Community Associate 57751.00000 5.775100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.775100e+04 5.775100e+04 0.00 NULL
2017 Queens Community Board #2 Community Service Aide 16743.12500 1.674312e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.674312e+04 1.674312e+04 0.00 NULL
2017 Queens Community Board #2 District Manager 100922.00000 1.009220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.009220e+05 1.009220e+05 0.00 NULL
2017 Queens Community Board #3 Community Associate 43260.00000 4.326000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.326000e+04 4.326000e+04 0.00 NULL
2017 Queens Community Board #3 Community Service Aide 20071.33333 6.021400e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.021400e+04 6.021400e+04 0.00 NULL
2017 Queens Community Board #3 District Manager 95262.00000 9.526200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.526200e+04 9.526200e+04 0.00 NULL
2017 Queens Community Board #4 Community Assistant 39275.00000 3.927500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.927500e+04 3.927500e+04 0.00 NULL
2017 Queens Community Board #4 Community Coordinator 78201.00000 7.820100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.820100e+04 7.820100e+04 0.00 NULL
2017 Queens Community Board #4 District Manager 94137.00000 9.413700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.413700e+04 9.413700e+04 0.00 NULL
2017 Queens Community Board #5 Community Associate 39844.47167 1.195334e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.195334e+05 1.195334e+05 0.00 NULL
2017 Queens Community Board #5 District Manager 91896.00000 9.189600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.189600e+04 9.189600e+04 0.00 NULL
2017 Queens Community Board #6 Community Associate 58850.00000 5.885000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.885000e+04 5.885000e+04 0.00 NULL
2017 Queens Community Board #6 Community Service Aide 20085.00000 2.008500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.008500e+04 2.008500e+04 0.00 NULL
2017 Queens Community Board #6 District Manager 101993.00000 1.019930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.019930e+05 1.019930e+05 0.00 NULL
2017 Queens Community Board #6 Secretary 36444.00000 3.644400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.644400e+04 3.644400e+04 0.00 NULL
2017 Queens Community Board #7 Community Assistant 28555.69500 5.711139e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.711139e+04 5.711139e+04 0.00 NULL
2017 Queens Community Board #7 Community Service Aide 24577.00000 2.457700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.457700e+04 2.457700e+04 0.00 NULL
2017 Queens Community Board #7 District Manager 92145.50000 1.842910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.842910e+05 1.842910e+05 0.00 NULL
2017 Queens Community Board #8 Community Assistant 28182.00000 5.636400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.636400e+04 5.636400e+04 0.00 NULL
2017 Queens Community Board #8 Community Associate 41036.00000 8.207200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.207200e+04 8.207200e+04 0.00 NULL
2017 Queens Community Board #8 District Manager 107785.00000 1.077850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.077850e+05 1.077850e+05 0.00 NULL
2017 Queens Community Board #9 Community Assistant 36103.00000 3.610300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.610300e+04 3.610300e+04 0.00 NULL
2017 Queens Community Board #9 Community Associate 42267.00000 4.226700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.226700e+04 4.226700e+04 0.00 NULL
2017 Queens Community Board #9 Community Service Aide 19593.00000 1.959300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.959300e+04 1.959300e+04 0.00 NULL
2017 Queens Community Board #9 District Manager 69525.00000 6.952500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.952500e+04 6.952500e+04 0.00 NULL
2017 Staten Island Community Bd #1 Community Associate 48015.00000 9.603000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.603000e+04 9.603000e+04 0.00 NULL
2017 Staten Island Community Bd #1 Community Coordinator 61828.00000 6.182800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.182800e+04 6.182800e+04 0.00 NULL
2017 Staten Island Community Bd #1 District Manager 90831.00000 9.083100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.083100e+04 9.083100e+04 0.00 NULL
2017 Staten Island Community Bd #2 Community Assistant 22713.63780 2.271364e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.271364e+04 2.271364e+04 0.00 NULL
2017 Staten Island Community Bd #2 Community Associate 24089.52000 2.408952e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.408952e+04 2.408952e+04 0.00 NULL
2017 Staten Island Community Bd #2 Community Coordinator 31376.02500 3.137603e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.137603e+04 3.137603e+04 0.00 NULL
2017 Staten Island Community Bd #2 District Manager 92275.00000 9.227500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.227500e+04 9.227500e+04 0.00 NULL
2017 Staten Island Community Bd #3 Community Coordinator 61330.00000 1.226600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.226600e+05 1.226600e+05 0.00 NULL
2017 Staten Island Community Bd #3 District Manager 91887.00000 9.188700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.188700e+04 9.188700e+04 0.00 NULL
2017 Tax Commission *Administrative Attorney 146111.00000 1.461110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.461110e+05 1.461110e+05 0.00 NULL
2017 Tax Commission *Certified Database Administrator 96862.00000 9.686200e+04 3097.51 3.097510e+03 3097.510 44.25 1 3.097510e+03 3097.51 9.995951e+04 9.995951e+04 0.00 NULL
2017 Tax Commission Adm Manager-Non-Mgrl 74918.50000 1.498370e+05 3934.46 1.967230e+03 1967.230 75.50 2 1.967230e+03 3934.46 1.537715e+05 1.537715e+05 0.00 NULL
2017 Tax Commission Administrative Assessor 137500.00000 1.375000e+05 26790.75 2.679075e+04 26790.750 330.50 1 2.679075e+04 26790.75 1.642908e+05 1.642908e+05 0.00 NULL
2017 Tax Commission Agency Attorney 87401.81167 5.244109e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.244109e+05 5.244109e+05 0.00 NULL
2017 Tax Commission Assistant Counsel 123563.00000 1.235630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.235630e+05 1.235630e+05 0.00 NULL
2017 Tax Commission Associate Staff Analyst 86273.00000 8.627300e+04 1124.20 1.124200e+03 1124.200 23.00 1 1.124200e+03 1124.20 8.739720e+04 8.739720e+04 0.00 NULL
2017 Tax Commission City Assessor 92064.81818 1.012713e+06 138598.87 1.259990e+04 7951.510 2108.50 11 7.951510e+03 87466.61 1.151312e+06 1.100180e+06 51132.26 NULL
2017 Tax Commission Clerical Associate 57410.00000 5.741000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.741000e+04 5.741000e+04 0.00 NULL
2017 Tax Commission College Aide 11447.54636 1.259230e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.259230e+05 1.259230e+05 0.00 NULL
2017 Tax Commission Commissioner 70140.71429 4.909850e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.909850e+05 4.909850e+05 0.00 NULL
2017 Tax Commission Community Assistant 47045.25000 4.704525e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.704525e+04 4.704525e+04 0.00 NULL
2017 Tax Commission Computer Associate 72959.66667 2.188790e+05 7792.16 2.597387e+03 2528.190 144.75 3 2.528190e+03 7584.57 2.266712e+05 2.264636e+05 207.59 NULL
2017 Tax Commission Computer Specialist 108691.00000 1.086910e+05 5770.94 5.770940e+03 5770.940 71.00 1 5.770940e+03 5770.94 1.144619e+05 1.144619e+05 0.00 NULL
2017 Tax Commission Computer Systems Manager 134483.00000 1.344830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.344830e+05 1.344830e+05 0.00 NULL
2017 Tax Commission Executive Agency Counsel 150458.00000 1.504580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.504580e+05 1.504580e+05 0.00 NULL
2017 Tax Commission Executive Assistant To The President Of The Tax Commission 134483.00000 1.344830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.344830e+05 1.344830e+05 0.00 NULL
2017 Tax Commission President 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2017 Tax Commission Principal Administrative Associate 60527.00000 1.815810e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.815810e+05 1.815810e+05 0.00 NULL
2017 Tax Commission Secretary 59243.50000 1.184870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.184870e+05 1.184870e+05 0.00 NULL
2017 Tax Commission Secretary Of The Tax Commission 76542.00000 7.654200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.654200e+04 7.654200e+04 0.00 NULL
2017 Tax Commission Secretary To The President 76542.00000 7.654200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.654200e+04 7.654200e+04 0.00 NULL
2017 Taxi & Limousine Commission *Certified Database Administrator 94042.00000 9.404200e+04 217.82 2.178200e+02 217.820 24.50 1 2.178200e+02 217.82 9.425982e+04 9.425982e+04 0.00 NULL
2017 Taxi & Limousine Commission Accountant 77523.00000 2.325690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.325690e+05 2.325690e+05 0.00 NULL
2017 Taxi & Limousine Commission Adm Manager-Non-Mgrl 76366.77778 6.873010e+05 4528.04 5.031156e+02 0.000 84.25 9 0.000000e+00 0.00 6.918290e+05 6.873010e+05 4528.04 NULL
2017 Taxi & Limousine Commission Administratiive Taxi & Limousine Inspector 131202.12500 1.049617e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.049617e+06 1.049617e+06 0.00 NULL
2017 Taxi & Limousine Commission Administrative Accountant 103000.00000 1.030000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030000e+05 1.030000e+05 0.00 NULL
2017 Taxi & Limousine Commission Administrative City Planner 102724.50000 2.054490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.054490e+05 2.054490e+05 0.00 NULL
2017 Taxi & Limousine Commission Administrative Manager 134868.00000 1.348680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.348680e+05 1.348680e+05 0.00 NULL
2017 Taxi & Limousine Commission Administrative Procurement Analyst 83649.00000 8.364900e+04 929.35 9.293500e+02 929.350 15.25 1 9.293500e+02 929.35 8.457835e+04 8.457835e+04 0.00 NULL
2017 Taxi & Limousine Commission Administrative Project Manager 94000.00000 9.400000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.400000e+04 9.400000e+04 0.00 NULL
2017 Taxi & Limousine Commission Administrative Public Information Specialist 145024.50000 2.900490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.900490e+05 2.900490e+05 0.00 NULL
2017 Taxi & Limousine Commission Administrative Quality Assurance Specialist 154189.50000 3.083790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.083790e+05 3.083790e+05 0.00 NULL
2017 Taxi & Limousine Commission Administrative Staff Analyst 102524.93067 1.537874e+06 1639.26 1.092840e+02 0.000 23.00 15 0.000000e+00 0.00 1.539513e+06 1.537874e+06 1639.26 NULL
2017 Taxi & Limousine Commission Agency Attorney 69654.58824 2.368256e+06 14102.74 4.147865e+02 0.000 342.75 34 0.000000e+00 0.00 2.382359e+06 2.368256e+06 14102.74 NULL
2017 Taxi & Limousine Commission Agency Attorney Interne 58572.04000 1.464301e+06 4983.99 1.993596e+02 0.000 120.25 25 0.000000e+00 0.00 1.469285e+06 1.464301e+06 4983.99 NULL
2017 Taxi & Limousine Commission Associate Fingerprint Technician 37130.00000 3.713000e+04 678.26 6.782600e+02 678.260 27.75 1 6.782600e+02 678.26 3.780826e+04 3.780826e+04 0.00 NULL
2017 Taxi & Limousine Commission Associate Staff Analyst 87198.00000 8.719800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.719800e+04 8.719800e+04 0.00 NULL
2017 Taxi & Limousine Commission Associate Taxi & Limousine Inspector 56915.38158 4.325569e+06 243778.53 3.207612e+03 735.820 5942.75 76 7.358200e+02 55922.32 4.569348e+06 4.381491e+06 187856.21 NULL
2017 Taxi & Limousine Commission Attorney At Law 116116.00000 1.161160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.161160e+05 1.161160e+05 0.00 NULL
2017 Taxi & Limousine Commission Bookkeeper 52118.00000 5.211800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.211800e+04 5.211800e+04 0.00 NULL
2017 Taxi & Limousine Commission Cashier 29456.87091 3.240256e+05 2838.09 2.580082e+02 0.000 135.25 11 0.000000e+00 0.00 3.268637e+05 3.240256e+05 2838.09 NULL
2017 Taxi & Limousine Commission Certified It Administrator 99510.00000 5.970600e+05 18336.27 3.056045e+03 0.000 239.50 6 0.000000e+00 0.00 6.153963e+05 5.970600e+05 18336.27 NULL
2017 Taxi & Limousine Commission Certified It Developer 64433.66667 1.933010e+05 1777.84 5.926133e+02 0.000 44.25 3 0.000000e+00 0.00 1.950788e+05 1.933010e+05 1777.84 NULL
2017 Taxi & Limousine Commission Chairman 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2017 Taxi & Limousine Commission Clerical Aide 27172.76727 1.630366e+05 684.55 1.140917e+02 0.000 36.25 6 0.000000e+00 0.00 1.637212e+05 1.630366e+05 684.55 NULL
2017 Taxi & Limousine Commission Clerical Associate 43457.74298 1.738310e+06 67227.34 1.680684e+03 72.290 2360.75 40 7.229000e+01 2891.60 1.805537e+06 1.741201e+06 64335.74 NULL
2017 Taxi & Limousine Commission College Aide 3464.91029 5.890347e+04 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 5.890347e+04 5.890347e+04 0.00 NULL
2017 Taxi & Limousine Commission Community Assistant 28821.68600 1.873410e+06 57367.84 8.825822e+02 206.490 2368.00 65 2.064900e+02 13421.85 1.930777e+06 1.886831e+06 43945.99 NULL
2017 Taxi & Limousine Commission Community Associate 43084.69811 4.136131e+06 116582.45 1.214401e+03 28.190 4094.25 96 2.819000e+01 2706.24 4.252713e+06 4.138837e+06 113876.21 NULL
2017 Taxi & Limousine Commission Community Coordinator 63039.54286 2.206384e+06 16424.77 4.692791e+02 0.000 482.75 35 0.000000e+00 0.00 2.222809e+06 2.206384e+06 16424.77 NULL
2017 Taxi & Limousine Commission Computer Aide-Non-Spvr 49027.65750 9.805532e+04 4619.49 2.309745e+03 2309.745 139.00 2 2.309745e+03 4619.49 1.026748e+05 1.026748e+05 0.00 NULL
2017 Taxi & Limousine Commission Computer Associate 70459.19929 4.932144e+05 25548.14 3.649734e+03 2160.630 567.25 7 2.160630e+03 15124.41 5.187625e+05 5.083388e+05 10423.73 NULL
2017 Taxi & Limousine Commission Computer Operations Manager 97850.00000 9.785000e+04 372.90 3.729000e+02 372.900 7.00 1 3.729000e+02 372.90 9.822290e+04 9.822290e+04 0.00 NULL
2017 Taxi & Limousine Commission Computer Specialist 97945.25000 7.835620e+05 8078.66 1.009832e+03 0.000 108.00 8 0.000000e+00 0.00 7.916407e+05 7.835620e+05 8078.66 NULL
2017 Taxi & Limousine Commission Computer Systems Manager 122120.66667 7.327240e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.327240e+05 7.327240e+05 0.00 NULL
2017 Taxi & Limousine Commission Executive Agency Counsel 124471.55556 1.120244e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.120244e+06 1.120244e+06 0.00 NULL
2017 Taxi & Limousine Commission Investigator 59551.00000 1.191020e+05 252.88 1.264400e+02 126.440 7.50 2 1.264400e+02 252.88 1.193549e+05 1.193549e+05 0.00 NULL
2017 Taxi & Limousine Commission Maintenance Worker NA NA 9129.99 4.564995e+03 4564.995 201.75 2 4.564995e+03 9129.99 NA NA NA NULL
2017 Taxi & Limousine Commission Operations Communications Specialist 30611.17542 3.367229e+05 6439.44 5.854036e+02 377.260 227.25 11 3.772600e+02 4149.86 3.431624e+05 3.408728e+05 2289.58 NULL
2017 Taxi & Limousine Commission Principal Administrative Associate 61431.69231 7.986120e+05 15471.65 1.190127e+03 572.980 403.00 13 5.729800e+02 7448.74 8.140837e+05 8.060607e+05 8022.91 NULL
2017 Taxi & Limousine Commission Procurement Analyst 76889.00000 7.688900e+04 981.98 9.819800e+02 981.980 21.00 1 9.819800e+02 981.98 7.787098e+04 7.787098e+04 0.00 NULL
2017 Taxi & Limousine Commission Research Assistant 50763.00000 5.076300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.076300e+04 5.076300e+04 0.00 NULL
2017 Taxi & Limousine Commission Secretary 43062.50000 8.612500e+04 2271.17 1.135585e+03 1135.585 68.00 2 1.135585e+03 2271.17 8.839617e+04 8.839617e+04 0.00 NULL
2017 Taxi & Limousine Commission Staff Analyst 62063.00000 6.206300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.206300e+04 6.206300e+04 0.00 NULL
2017 Taxi & Limousine Commission Staff Analyst Trainee 46877.00000 1.875080e+05 1242.87 3.107175e+02 299.290 48.25 4 2.992900e+02 1197.16 1.887509e+05 1.887052e+05 45.71 NULL
2017 Taxi & Limousine Commission Summer Graduate Intern 2522.86667 7.568600e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.568600e+03 7.568600e+03 0.00 NULL
2017 Taxi & Limousine Commission Supervisor Of Stock Workers 54014.66667 1.620440e+05 4713.70 1.571233e+03 2348.660 138.75 3 1.571233e+03 4713.70 1.667577e+05 1.667577e+05 0.00 NULL
2017 Taxi & Limousine Commission Taxi And Limousine Inspector 41724.29381 8.094513e+06 451760.71 2.328663e+03 242.045 14741.50 194 2.420450e+02 46956.73 8.546274e+06 8.141470e+06 404803.98 NULL
2017 Taxi & Limousine Commission Telecommunications Associate 104570.00000 1.045700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.045700e+05 1.045700e+05 0.00 NULL
2017 Teachers Retirement System *Certified Applications Developer 99645.00000 9.964500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.964500e+04 9.964500e+04 0.00 NULL
2017 Teachers Retirement System Accountant 62373.87500 4.989910e+05 8083.75 1.010469e+03 17.615 172.25 8 1.761500e+01 140.92 5.070748e+05 4.991319e+05 7942.83 NULL
2017 Teachers Retirement System Adm Manager-Non-Mgrl 71445.57143 5.001190e+05 2189.42 3.127743e+02 0.000 45.75 7 0.000000e+00 0.00 5.023084e+05 5.001190e+05 2189.42 NULL
2017 Teachers Retirement System Administrative Accountant 87463.00000 5.247780e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.247780e+05 5.247780e+05 0.00 NULL
2017 Teachers Retirement System Administrative Labor Relations Analyst 118450.00000 1.184500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.184500e+05 1.184500e+05 0.00 NULL
2017 Teachers Retirement System Administrative Management Auditor 137248.00000 1.372480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.372480e+05 1.372480e+05 0.00 NULL
2017 Teachers Retirement System Administrative Manager 106620.14286 7.463410e+05 4071.05 5.815786e+02 0.000 63.50 7 0.000000e+00 0.00 7.504121e+05 7.463410e+05 4071.05 NULL
2017 Teachers Retirement System Administrative Public Information Specialist 89999.00000 8.999900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.999900e+04 8.999900e+04 0.00 NULL
2017 Teachers Retirement System Administrative Retirement Benefits Specialist 101140.50000 2.225091e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 2.225091e+06 2.225091e+06 0.00 NULL
2017 Teachers Retirement System Administrative Staff Analyst 89420.78571 1.251891e+06 21135.19 1.509656e+03 0.000 433.75 14 0.000000e+00 0.00 1.273026e+06 1.251891e+06 21135.19 NULL
2017 Teachers Retirement System Agency Attorney 80214.50000 1.604290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.604290e+05 1.604290e+05 0.00 NULL
2017 Teachers Retirement System Assistant Executive Director 167386.66667 5.021600e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.021600e+05 5.021600e+05 0.00 NULL
2017 Teachers Retirement System Assistant Retirement Benefits Examiner 50559.50000 5.055950e+05 11691.34 1.169134e+03 453.280 326.75 10 4.532800e+02 4532.80 5.172863e+05 5.101278e+05 7158.54 NULL
2017 Teachers Retirement System Associate Public Information Specialist 57311.50000 1.146230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.146230e+05 1.146230e+05 0.00 NULL
2017 Teachers Retirement System Associate Public Records Officer 61000.00000 6.100000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.100000e+04 6.100000e+04 0.00 NULL
2017 Teachers Retirement System Associate Quality Assurance Specialist 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2017 Teachers Retirement System Associate Retirement Benefits Examiner 57781.57265 6.760444e+06 115412.55 9.864321e+02 0.000 2637.25 117 0.000000e+00 0.00 6.875857e+06 6.760444e+06 115412.55 NULL
2017 Teachers Retirement System Associate Staff Analyst 79873.66667 2.396210e+05 4093.27 1.364423e+03 0.000 74.25 3 0.000000e+00 0.00 2.437143e+05 2.396210e+05 4093.27 NULL
2017 Teachers Retirement System Bookkeeper 50866.85714 3.560680e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.560680e+05 3.560680e+05 0.00 NULL
2017 Teachers Retirement System Certified It Administrator 94552.00000 1.891040e+05 10303.15 5.151575e+03 5151.575 170.00 2 5.151575e+03 10303.15 1.994071e+05 1.994071e+05 0.00 NULL
2017 Teachers Retirement System Certified It Developer 113661.00000 1.136610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.136610e+05 1.136610e+05 0.00 NULL
2017 Teachers Retirement System Clerical Associate 46279.57895 8.793120e+05 2172.06 1.143189e+02 0.000 53.75 19 0.000000e+00 0.00 8.814841e+05 8.793120e+05 2172.06 NULL
2017 Teachers Retirement System College Aide 7332.40625 2.932962e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.932962e+04 2.932962e+04 0.00 NULL
2017 Teachers Retirement System College Aide - Assignment Levels Ii And Iii 27892.77060 2.789277e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.789277e+04 2.789277e+04 0.00 NULL
2017 Teachers Retirement System Community Associate 39097.00000 1.172910e+05 268.27 8.942333e+01 103.020 11.25 3 8.942333e+01 268.27 1.175593e+05 1.175593e+05 0.00 NULL
2017 Teachers Retirement System Community Coordinator 53560.00000 5.356000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.356000e+04 5.356000e+04 0.00 NULL
2017 Teachers Retirement System Computer Associate 72502.63636 7.975290e+05 4903.63 4.457845e+02 0.000 113.25 11 0.000000e+00 0.00 8.024326e+05 7.975290e+05 4903.63 NULL
2017 Teachers Retirement System Computer Operations Manager 124722.00000 1.247220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.247220e+05 1.247220e+05 0.00 NULL
2017 Teachers Retirement System Computer Service Technician 61917.00000 6.191700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.191700e+04 6.191700e+04 0.00 NULL
2017 Teachers Retirement System Computer Specialist 105297.07143 2.948318e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 2.948318e+06 2.948318e+06 0.00 NULL
2017 Teachers Retirement System Computer Systems Manager 143910.35137 7.339428e+06 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 7.339428e+06 7.339428e+06 0.00 NULL
2017 Teachers Retirement System Customer Information Representative 59086.75000 4.726940e+05 4749.12 5.936400e+02 0.000 110.75 8 0.000000e+00 0.00 4.774431e+05 4.726940e+05 4749.12 NULL
2017 Teachers Retirement System Deputy Executive Director 209770.00000 2.097700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.097700e+05 2.097700e+05 0.00 NULL
2017 Teachers Retirement System Executive Agency Counsel 149401.50000 2.988030e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.988030e+05 2.988030e+05 0.00 NULL
2017 Teachers Retirement System Executive Director 226530.00000 2.265300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.265300e+05 2.265300e+05 0.00 NULL
2017 Teachers Retirement System Graphic Artist 65581.00000 1.311620e+05 2749.64 1.374820e+03 1374.820 73.50 2 1.374820e+03 2749.64 1.339116e+05 1.339116e+05 0.00 NULL
2017 Teachers Retirement System Investment Analyst 74773.25000 2.990930e+05 1061.70 2.654250e+02 0.000 21.25 4 0.000000e+00 0.00 3.001547e+05 2.990930e+05 1061.70 NULL
2017 Teachers Retirement System Management Auditor 69586.00000 1.391720e+05 2431.98 1.215990e+03 1215.990 66.75 2 1.215990e+03 2431.98 1.416040e+05 1.416040e+05 0.00 NULL
2017 Teachers Retirement System Office Machine Aide 42820.00000 2.569200e+05 1129.58 1.882633e+02 0.000 50.50 6 0.000000e+00 0.00 2.580496e+05 2.569200e+05 1129.58 NULL
2017 Teachers Retirement System Paralegal Aide 46244.00000 4.624400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.624400e+04 4.624400e+04 0.00 NULL
2017 Teachers Retirement System Principal Administrative Associate 64432.43750 1.030919e+06 15462.62 9.664138e+02 0.000 297.25 16 0.000000e+00 0.00 1.046382e+06 1.030919e+06 15462.62 NULL
2017 Teachers Retirement System Staff Analyst 60769.66667 1.823090e+05 4933.00 1.644333e+03 0.000 123.75 3 0.000000e+00 0.00 1.872420e+05 1.823090e+05 4933.00 NULL
2017 Teachers Retirement System Summer College Intern 2071.42391 4.764275e+04 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 4.764275e+04 4.764275e+04 0.00 NULL
2017 Teachers Retirement System Supervisor Of Office Machine Operations 41889.00000 4.188900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.188900e+04 4.188900e+04 0.00 NULL
2017 Teachers Retirement System Supervisor Of Stock Workers 45488.50000 9.097700e+04 639.27 3.196350e+02 319.635 21.50 2 3.196350e+02 639.27 9.161627e+04 9.161627e+04 0.00 NULL
2018 Admin For Children’s Svcs *Attorney At Law 89741.61538 1.166641e+06 1108.75 8.528846e+01 0.000 18.50 13 0.000000e+00 0.00 1.167750e+06 1.166641e+06 1108.75 NULL
2018 Admin For Children’s Svcs *Certified Applications Developer 101341.00000 1.013410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.013410e+05 1.013410e+05 0.00 NULL
2018 Admin For Children’s Svcs *Certified Database Administrator 105596.00000 2.111920e+05 5195.11 2.597555e+03 2597.555 75.50 2 2.597555e+03 5195.11 2.163871e+05 2.163871e+05 0.00 NULL
2018 Admin For Children’s Svcs *Certified Local Area Network Administrator 94593.33333 2.837800e+05 5136.99 1.712330e+03 1438.300 82.75 3 1.438300e+03 4314.90 2.889170e+05 2.880949e+05 822.09 NULL
2018 Admin For Children’s Svcs *Cook 37978.66667 1.139360e+05 10615.34 3.538447e+03 3565.810 418.50 3 3.538447e+03 10615.34 1.245513e+05 1.245513e+05 0.00 NULL
2018 Admin For Children’s Svcs *Custodial Assistant 38463.00000 3.846300e+04 29284.64 2.928464e+04 29284.640 902.00 1 2.928464e+04 29284.64 6.774764e+04 6.774764e+04 0.00 NULL
2018 Admin For Children’s Svcs *Senior Cook 42237.00000 1.267110e+05 29880.28 9.960093e+03 9558.290 932.00 3 9.558290e+03 28674.87 1.565913e+05 1.553859e+05 1205.41 NULL
2018 Admin For Children’s Svcs Accountant 63519.38462 8.257520e+05 1042.17 8.016692e+01 0.000 23.50 13 0.000000e+00 0.00 8.267942e+05 8.257520e+05 1042.17 NULL
2018 Admin For Children’s Svcs Adm Manager-Non-Mgrl From M1/M2 69397.55882 4.719034e+06 375968.15 5.528943e+03 680.690 7723.75 68 6.806900e+02 46286.92 5.095002e+06 4.765321e+06 329681.23 NULL
2018 Admin For Children’s Svcs Admin Community Relations Specialist 83855.53333 3.773499e+06 311344.83 6.918774e+03 0.000 4844.50 45 0.000000e+00 0.00 4.084844e+06 3.773499e+06 311344.83 NULL
2018 Admin For Children’s Svcs Admin Construction Project Manager 115000.00000 1.150000e+05 60057.10 6.005710e+04 60057.100 651.25 1 6.005710e+04 60057.10 1.750571e+05 1.750571e+05 0.00 NULL
2018 Admin For Children’s Svcs Admin Contract Specialist 102934.71429 1.441086e+06 2099.98 1.499986e+02 0.000 39.00 14 0.000000e+00 0.00 1.443186e+06 1.441086e+06 2099.98 NULL
2018 Admin For Children’s Svcs Administrative Architect 125951.00000 2.519020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.519020e+05 2.519020e+05 0.00 NULL
2018 Admin For Children’s Svcs Administrative Business Promotion Coordinator 104000.00000 1.040000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.040000e+05 1.040000e+05 0.00 NULL
2018 Admin For Children’s Svcs Administrative Construction Project Manager 122358.00000 1.223580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.223580e+05 1.223580e+05 0.00 NULL
2018 Admin For Children’s Svcs Administrative Director Of Residential Child Care 82309.40909 1.810807e+06 8091.36 3.677891e+02 0.000 169.75 22 0.000000e+00 0.00 1.818898e+06 1.810807e+06 8091.36 NULL
2018 Admin For Children’s Svcs Administrative Director Of Social Services 98472.29700 2.885238e+07 186734.20 6.373181e+02 0.000 3197.00 293 0.000000e+00 0.00 2.903912e+07 2.885238e+07 186734.20 NULL
2018 Admin For Children’s Svcs Administrative Management Auditor 90426.25000 3.617050e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.617050e+05 3.617050e+05 0.00 NULL
2018 Admin For Children’s Svcs Administrative Manager 126165.00000 1.261650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.261650e+05 1.261650e+05 0.00 NULL
2018 Admin For Children’s Svcs Administrative Procurement Analyst 110215.50000 4.408620e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.408620e+05 4.408620e+05 0.00 NULL
2018 Admin For Children’s Svcs Administrative Project Manager 100947.66667 3.028430e+05 46906.91 1.563564e+04 4260.050 647.25 3 4.260050e+03 12780.15 3.497499e+05 3.156232e+05 34126.76 NULL
2018 Admin For Children’s Svcs Administrative Public Health Nurse 116895.33333 7.013720e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.013720e+05 7.013720e+05 0.00 NULL
2018 Admin For Children’s Svcs Administrative Public Information Specialist 105652.80000 1.056528e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.056528e+06 1.056528e+06 0.00 NULL
2018 Admin For Children’s Svcs Administrative Staff Analyst 98479.54286 1.378714e+07 428530.41 3.060932e+03 0.000 6663.50 140 0.000000e+00 0.00 1.421567e+07 1.378714e+07 428530.41 NULL
2018 Admin For Children’s Svcs Agency Attorney 76873.89926 2.298530e+07 245679.11 8.216693e+02 48.210 4329.00 299 4.821000e+01 14414.79 2.323097e+07 2.299971e+07 231264.32 NULL
2018 Admin For Children’s Svcs Agency Attorney Interne 58195.61111 2.095042e+06 6965.95 1.934986e+02 55.510 193.25 36 5.551000e+01 1998.36 2.102008e+06 2.097040e+06 4967.59 NULL
2018 Admin For Children’s Svcs Agency Chief Contracting Officer 165436.00000 3.308720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.308720e+05 3.308720e+05 0.00 NULL
2018 Admin For Children’s Svcs Architect 80021.33333 2.400640e+05 51321.66 1.710722e+04 636.360 819.25 3 6.363600e+02 1909.08 2.913857e+05 2.419731e+05 49412.58 NULL
2018 Admin For Children’s Svcs Assistant Architect 61104.00000 6.110400e+04 2177.24 2.177240e+03 2177.240 56.50 1 2.177240e+03 2177.24 6.328124e+04 6.328124e+04 0.00 NULL
2018 Admin For Children’s Svcs Assistant Commissioner 121755.00000 2.435100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.435100e+05 2.435100e+05 0.00 NULL
2018 Admin For Children’s Svcs Assistant Commissioner For Aftercare & Preventive Svcs 111240.00000 1.112400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.112400e+05 1.112400e+05 0.00 NULL
2018 Admin For Children’s Svcs Assistant Commissioner For Facilities Operations 140837.00000 1.408370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.408370e+05 1.408370e+05 0.00 NULL
2018 Admin For Children’s Svcs Assistant Commissioner For Management Acd-Doss 195440.00000 1.954400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.954400e+05 1.954400e+05 0.00 NULL
2018 Admin For Children’s Svcs Associate Inspector 64554.00000 6.455400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.455400e+04 6.455400e+04 0.00 NULL
2018 Admin For Children’s Svcs Associate Investigator 70374.00000 7.037400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.037400e+04 7.037400e+04 0.00 NULL
2018 Admin For Children’s Svcs Associate Juvenile Counselor 70108.58974 2.734235e+06 1437760.71 3.686566e+04 38529.960 29398.50 39 3.686566e+04 1437760.71 4.171996e+06 4.171996e+06 0.00 NULL
2018 Admin For Children’s Svcs Associate Project Manager 80643.00000 8.064300e+04 93631.84 9.363184e+04 93631.840 1267.75 1 9.363184e+04 93631.84 1.742748e+05 1.742748e+05 0.00 NULL
2018 Admin For Children’s Svcs Associate Staff Analyst 80375.72093 6.912312e+06 250004.79 2.907032e+03 0.000 3696.25 86 0.000000e+00 0.00 7.162317e+06 6.912312e+06 250004.79 NULL
2018 Admin For Children’s Svcs Associate Youth Development Specialist 73000.00000 3.650000e+05 20360.38 4.072076e+03 948.960 426.00 5 9.489600e+02 4744.80 3.853604e+05 3.697448e+05 15615.58 NULL
2018 Admin For Children’s Svcs Asst Commissioner For Non-Secure Detention Juvenile Justice 152744.00000 1.527440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.527440e+05 1.527440e+05 0.00 NULL
2018 Admin For Children’s Svcs Asst Commissioner For Planning & Prg Deve 124923.00000 1.249230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.249230e+05 1.249230e+05 0.00 NULL
2018 Admin For Children’s Svcs Bookkeeper 44271.80000 2.213590e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.213590e+05 2.213590e+05 0.00 NULL
2018 Admin For Children’s Svcs Business Promotion Coordinator 73000.00000 7.300000e+04 554.39 5.543900e+02 554.390 9.25 1 5.543900e+02 554.39 7.355439e+04 7.355439e+04 0.00 NULL
2018 Admin For Children’s Svcs Carpenter NA NA 134113.78 4.470459e+04 35146.710 1809.00 3 3.514671e+04 105440.13 NA NA NA NULL
2018 Admin For Children’s Svcs Caseworker 43799.84483 2.540391e+06 96388.47 1.661870e+03 72.115 2689.50 58 7.211500e+01 4182.67 2.636779e+06 2.544574e+06 92205.80 NULL
2018 Admin For Children’s Svcs Certified It Administrator 89093.66667 5.345620e+05 7228.20 1.204700e+03 974.615 123.50 6 9.746150e+02 5847.69 5.417902e+05 5.404097e+05 1380.51 NULL
2018 Admin For Children’s Svcs Certified It Developer 90464.00000 2.713920e+05 192.82 6.427333e+01 0.000 3.00 3 0.000000e+00 0.00 2.715848e+05 2.713920e+05 192.82 NULL
2018 Admin For Children’s Svcs Chaplain 58445.00000 5.844500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.844500e+04 5.844500e+04 0.00 NULL
2018 Admin For Children’s Svcs Child And Family Specialist 79586.68443 1.941915e+07 1566528.39 6.420198e+03 669.175 26368.25 244 6.691750e+02 163278.70 2.098568e+07 1.958243e+07 1403249.69 NULL
2018 Admin For Children’s Svcs Child Protective Specialist 52823.57319 1.371300e+08 25477039.02 9.813960e+03 6975.570 606233.10 2596 6.975570e+03 18108579.72 1.626070e+08 1.552386e+08 7368459.30 NULL
2018 Admin For Children’s Svcs Child Protective Specialist Supervisor 77265.24783 4.458205e+07 12354586.44 2.141176e+04 17781.320 200741.82 577 1.778132e+04 10259821.64 5.693663e+07 5.484187e+07 2094764.80 NULL
2018 Admin For Children’s Svcs Child Welfare Specialist 55351.10092 1.206654e+07 1783508.40 8.181231e+03 1318.480 38706.00 218 1.318480e+03 287428.64 1.385005e+07 1.235397e+07 1496079.76 NULL
2018 Admin For Children’s Svcs Child Welfare Specialist Supervisor 73133.57325 1.148197e+07 1066600.19 6.793632e+03 988.350 19433.00 157 9.883500e+02 155170.95 1.254857e+07 1.163714e+07 911429.24 NULL
2018 Admin For Children’s Svcs Children’s Counselor 23171.86599 2.085468e+05 15807.99 1.756443e+03 1.410 495.50 9 1.410000e+00 12.69 2.243548e+05 2.085595e+05 15795.30 NULL
2018 Admin For Children’s Svcs City Custodial Assistant 39173.00000 3.917300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.917300e+04 3.917300e+04 0.00 NULL
2018 Admin For Children’s Svcs City Laborer NA NA 268260.04 3.832286e+04 35643.050 4865.00 7 3.564305e+04 249501.35 NA NA NA NULL
2018 Admin For Children’s Svcs City Medical Director 178655.60000 8.932780e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.932780e+05 8.932780e+05 0.00 NULL
2018 Admin For Children’s Svcs City Research Scientist 86039.65000 1.720793e+06 389.26 1.946300e+01 0.000 9.50 20 0.000000e+00 0.00 1.721182e+06 1.720793e+06 389.26 NULL
2018 Admin For Children’s Svcs Clerical Aide 38226.00000 3.822600e+04 827.36 8.273600e+02 827.360 36.00 1 8.273600e+02 827.36 3.905336e+04 3.905336e+04 0.00 NULL
2018 Admin For Children’s Svcs Clerical Associate 39074.34653 7.893018e+06 732337.64 3.625434e+03 0.000 21672.95 202 0.000000e+00 0.00 8.625356e+06 7.893018e+06 732337.64 NULL
2018 Admin For Children’s Svcs Commissioner Of Children’s Services 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Admin For Children’s Svcs Community Assistant 35449.73554 1.985185e+06 297526.75 5.312978e+03 0.000 10828.00 56 0.000000e+00 0.00 2.282712e+06 1.985185e+06 297526.75 NULL
2018 Admin For Children’s Svcs Community Associate 44883.96326 3.276529e+06 360413.58 4.937172e+03 245.750 10483.55 73 2.457500e+02 17939.75 3.636943e+06 3.294469e+06 342473.83 NULL
2018 Admin For Children’s Svcs Community Coordinator 62757.60436 2.014519e+07 859704.18 2.678206e+03 0.000 18841.65 321 0.000000e+00 0.00 2.100490e+07 2.014519e+07 859704.18 NULL
2018 Admin For Children’s Svcs Computer Aide-Non-Spvr 49750.48276 1.442764e+06 16930.61 5.838141e+02 79.680 461.75 29 7.968000e+01 2310.72 1.459695e+06 1.445075e+06 14619.89 NULL
2018 Admin For Children’s Svcs Computer Associate 69825.15625 2.234405e+06 25194.65 7.873328e+02 0.000 347.50 32 0.000000e+00 0.00 2.259600e+06 2.234405e+06 25194.65 NULL
2018 Admin For Children’s Svcs Computer Programmer Analyst 56030.00000 1.120600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.120600e+05 1.120600e+05 0.00 NULL
2018 Admin For Children’s Svcs Computer Service Technician 41082.40000 2.054120e+05 2008.43 4.016860e+02 0.000 54.25 5 0.000000e+00 0.00 2.074204e+05 2.054120e+05 2008.43 NULL
2018 Admin For Children’s Svcs Computer Specialist 95303.28947 3.621525e+06 21447.30 5.644026e+02 0.000 312.75 38 0.000000e+00 0.00 3.642972e+06 3.621525e+06 21447.30 NULL
2018 Admin For Children’s Svcs Computer Systems Manager 107336.02632 4.078769e+06 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 4.078769e+06 4.078769e+06 0.00 NULL
2018 Admin For Children’s Svcs Confidential Agency Investigator 144200.00000 1.442000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.442000e+05 1.442000e+05 0.00 NULL
2018 Admin For Children’s Svcs Confidential Strategy Planner 88442.00000 8.844200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.844200e+04 8.844200e+04 0.00 NULL
2018 Admin For Children’s Svcs Congreg Care Spec - Acs 44746.15054 4.161392e+06 1259150.63 1.353925e+04 7272.210 36299.70 93 7.272210e+03 676315.53 5.420543e+06 4.837708e+06 582835.10 NULL
2018 Admin For Children’s Svcs Congreg Care Spec- Djj 50807.80952 1.066964e+06 277915.13 1.323405e+04 5312.730 7103.03 21 5.312730e+03 111567.33 1.344879e+06 1.178531e+06 166347.80 NULL
2018 Admin For Children’s Svcs Construction Project Manager 82297.00000 8.229700e+05 376363.00 3.763630e+04 27774.820 5041.50 10 2.777482e+04 277748.20 1.199333e+06 1.100718e+06 98614.80 NULL
2018 Admin For Children’s Svcs Consultant 72500.85714 1.015012e+06 152.07 1.086214e+01 0.000 3.50 14 0.000000e+00 0.00 1.015164e+06 1.015012e+06 152.07 NULL
2018 Admin For Children’s Svcs Contract Specialist 44454.00000 4.445400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.445400e+04 4.445400e+04 0.00 NULL
2018 Admin For Children’s Svcs Custodian 40476.62500 3.238130e+05 120763.08 1.509539e+04 10227.240 4159.75 8 1.022724e+04 81817.92 4.445761e+05 4.056309e+05 38945.16 NULL
2018 Admin For Children’s Svcs Deputy Asst Commissioner For Program Dev & Anal 190035.00000 1.900350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.900350e+05 1.900350e+05 0.00 NULL
2018 Admin For Children’s Svcs Deputy Commissioner 186762.20000 9.338110e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.338110e+05 9.338110e+05 0.00 NULL
2018 Admin For Children’s Svcs Deputy Director Of Administration 103302.50000 2.066050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.066050e+05 2.066050e+05 0.00 NULL
2018 Admin For Children’s Svcs Deputy General Counsel 160970.00000 1.609700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.609700e+05 1.609700e+05 0.00 NULL
2018 Admin For Children’s Svcs Deputy Superintendent 79485.14286 5.563960e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.563960e+05 5.563960e+05 0.00 NULL
2018 Admin For Children’s Svcs Director Of Field Operations 99744.93359 2.553470e+07 234547.07 9.161995e+02 0.000 3588.00 256 0.000000e+00 0.00 2.576925e+07 2.553470e+07 234547.07 NULL
2018 Admin For Children’s Svcs Director Of Program Planning 114709.00000 1.147090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.147090e+05 1.147090e+05 0.00 NULL
2018 Admin For Children’s Svcs Director Of Security 113000.00000 1.130000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.130000e+05 1.130000e+05 0.00 NULL
2018 Admin For Children’s Svcs Electrician NA NA 74037.45 7.403745e+04 74037.450 846.50 1 7.403745e+04 74037.45 NA NA NA NULL
2018 Admin For Children’s Svcs Eligibility Specialist 47322.00000 9.464400e+04 19351.89 9.675945e+03 9675.945 521.25 2 9.675945e+03 19351.89 1.139959e+05 1.139959e+05 0.00 NULL
2018 Admin For Children’s Svcs Exec Asst To The Deputy Commissioner 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2018 Admin For Children’s Svcs Executive Agency Counsel 123958.82456 7.065653e+06 794.63 1.394088e+01 0.000 13.50 57 0.000000e+00 0.00 7.066448e+06 7.065653e+06 794.63 NULL
2018 Admin For Children’s Svcs Executive Assistant To The Executive Deputy Adm 123054.50000 2.461090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.461090e+05 2.461090e+05 0.00 NULL
2018 Admin For Children’s Svcs Executive Deputy Administrator 200593.00000 2.005930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.005930e+05 2.005930e+05 0.00 NULL
2018 Admin For Children’s Svcs Food Service Manager 67502.00000 6.750200e+04 3796.30 3.796300e+03 3796.300 88.75 1 3.796300e+03 3796.30 7.129830e+04 7.129830e+04 0.00 NULL
2018 Admin For Children’s Svcs Graphic Artist 62500.00000 1.250000e+05 4705.52 2.352760e+03 2352.760 103.00 2 2.352760e+03 4705.52 1.297055e+05 1.297055e+05 0.00 NULL
2018 Admin For Children’s Svcs Home Aide 33745.00000 3.374500e+04 2627.92 2.627920e+03 2627.920 119.00 1 2.627920e+03 2627.92 3.637292e+04 3.637292e+04 0.00 NULL
2018 Admin For Children’s Svcs Homemaker 34990.00000 1.749500e+05 1828.24 3.656480e+02 188.200 83.25 5 1.882000e+02 941.00 1.767782e+05 1.758910e+05 887.24 NULL
2018 Admin For Children’s Svcs Institutional Aide 36931.34783 8.494210e+05 242716.42 1.055289e+04 5936.640 8594.50 23 5.936640e+03 136542.72 1.092137e+06 9.859637e+05 106173.70 NULL
2018 Admin For Children’s Svcs Investigator 68341.80000 3.417090e+05 2090.91 4.181820e+02 0.000 52.50 5 0.000000e+00 0.00 3.437999e+05 3.417090e+05 2090.91 NULL
2018 Admin For Children’s Svcs Juvenile Counselor 53001.31624 1.240231e+07 3076153.79 1.314596e+04 9033.815 85219.57 234 9.033815e+03 2113912.71 1.547846e+07 1.451622e+07 962241.08 NULL
2018 Admin For Children’s Svcs Management Auditor 71354.33333 2.140630e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.140630e+05 2.140630e+05 0.00 NULL
2018 Admin For Children’s Svcs Motor Vehicle Operator 43823.10000 8.764620e+05 450000.26 2.250001e+04 21345.210 13358.69 20 2.134521e+04 426904.20 1.326462e+06 1.303366e+06 23096.06 NULL
2018 Admin For Children’s Svcs Motor Vehicle Supervisor 53997.50000 1.079950e+05 19602.39 9.801195e+03 9801.195 487.00 2 9.801195e+03 19602.39 1.275974e+05 1.275974e+05 0.00 NULL
2018 Admin For Children’s Svcs Nutritionist 80279.00000 8.027900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.027900e+04 8.027900e+04 0.00 NULL
2018 Admin For Children’s Svcs Office Machine Aide 36077.50000 7.215500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.215500e+04 7.215500e+04 0.00 NULL
2018 Admin For Children’s Svcs Ombudsman 67857.00000 6.785700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.785700e+04 6.785700e+04 0.00 NULL
2018 Admin For Children’s Svcs Painter NA NA 261115.39 8.703846e+04 99544.250 3999.50 3 8.703846e+04 261115.39 NA NA NA NULL
2018 Admin For Children’s Svcs Paralegal Aide 41688.47368 7.920810e+05 5237.45 2.756553e+02 0.000 165.50 19 0.000000e+00 0.00 7.973184e+05 7.920810e+05 5237.45 NULL
2018 Admin For Children’s Svcs Plumber NA NA 124684.78 3.117119e+04 27472.480 1148.75 4 2.747248e+04 109889.92 NA NA NA NULL
2018 Admin For Children’s Svcs Principal Administrative Associate - Lev 1 & 2 Non Supvr 55733.13200 1.449061e+07 839507.34 3.228874e+03 0.000 19886.00 260 0.000000e+00 0.00 1.533012e+07 1.449061e+07 839507.34 NULL
2018 Admin For Children’s Svcs Procurement Analyst 61153.18182 6.726850e+05 975.76 8.870545e+01 0.000 15.25 11 0.000000e+00 0.00 6.736608e+05 6.726850e+05 975.76 NULL
2018 Admin For Children’s Svcs Program Coordinator 81501.00000 8.150100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.150100e+04 8.150100e+04 0.00 NULL
2018 Admin For Children’s Svcs Program Evaluator 74898.71429 5.242910e+06 447963.63 6.399480e+03 52.100 7404.50 70 5.210000e+01 3647.00 5.690874e+06 5.246557e+06 444316.63 NULL
2018 Admin For Children’s Svcs Project Manager 72683.00000 7.268300e+04 2.07 2.070000e+00 2.070 0.00 1 2.070000e+00 2.07 7.268507e+04 7.268507e+04 0.00 NULL
2018 Admin For Children’s Svcs Protection Agent 63956.14793 1.080859e+07 1045469.83 6.186212e+03 379.760 22067.26 169 3.797600e+02 64179.44 1.185406e+07 1.087277e+07 981290.39 NULL
2018 Admin For Children’s Svcs Recreation Director 44464.00000 4.446400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.446400e+04 4.446400e+04 0.00 NULL
2018 Admin For Children’s Svcs Recreation Supervisor 55174.00000 5.517400e+04 22993.14 2.299314e+04 22993.140 489.00 1 2.299314e+04 22993.14 7.816714e+04 7.816714e+04 0.00 NULL
2018 Admin For Children’s Svcs Research Assistant 51866.50000 3.111990e+05 85462.59 1.424376e+04 11453.735 1883.25 6 1.145374e+04 68722.41 3.966616e+05 3.799214e+05 16740.18 NULL
2018 Admin For Children’s Svcs Secretary 45120.00000 4.963200e+05 4064.39 3.694900e+02 0.000 166.62 11 0.000000e+00 0.00 5.003844e+05 4.963200e+05 4064.39 NULL
2018 Admin For Children’s Svcs Secretary Of Comm 74995.00000 7.499500e+04 389.58 3.895800e+02 389.580 6.25 1 3.895800e+02 389.58 7.538458e+04 7.538458e+04 0.00 NULL
2018 Admin For Children’s Svcs Sheet Metal Worker NA NA 47604.15 4.760415e+04 47604.150 411.50 1 4.760415e+04 47604.15 NA NA NA NULL
2018 Admin For Children’s Svcs Space Analyst 76197.60000 3.809880e+05 109924.82 2.198496e+04 16058.610 1983.25 5 1.605861e+04 80293.05 4.909128e+05 4.612810e+05 29631.77 NULL
2018 Admin For Children’s Svcs Special Officer 42593.49367 3.364886e+06 1052532.28 1.332319e+04 13396.000 31835.47 79 1.332319e+04 1052532.28 4.417418e+06 4.417418e+06 0.00 NULL
2018 Admin For Children’s Svcs Staff Analyst 62668.10417 3.008069e+06 121590.74 2.533140e+03 0.000 2215.00 48 0.000000e+00 0.00 3.129660e+06 3.008069e+06 121590.74 NULL
2018 Admin For Children’s Svcs Staff Analyst Trainee 41328.00000 1.239840e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.239840e+05 1.239840e+05 0.00 NULL
2018 Admin For Children’s Svcs Staff Nurse 74882.37500 1.198118e+06 6341.61 3.963506e+02 0.000 115.25 16 0.000000e+00 0.00 1.204460e+06 1.198118e+06 6341.61 NULL
2018 Admin For Children’s Svcs Strategic Initiative Specialist 100390.60000 5.019530e+05 11604.67 2.320934e+03 0.000 202.25 5 0.000000e+00 0.00 5.135577e+05 5.019530e+05 11604.67 NULL
2018 Admin For Children’s Svcs Summer College Intern 1272.81637 4.327576e+04 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 4.327576e+04 4.327576e+04 0.00 NULL
2018 Admin For Children’s Svcs Summer Graduate Intern 2070.52657 1.242316e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.242316e+04 1.242316e+04 0.00 NULL
2018 Admin For Children’s Svcs Superintendent 108733.33333 3.262000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.262000e+05 3.262000e+05 0.00 NULL
2018 Admin For Children’s Svcs Supervising Computer Service Technician 66195.00000 3.309750e+05 2697.14 5.394280e+02 0.000 51.00 5 0.000000e+00 0.00 3.336721e+05 3.309750e+05 2697.14 NULL
2018 Admin For Children’s Svcs Supervising Special Officer 52655.81818 1.158428e+06 368815.73 1.676435e+04 10761.640 9274.75 22 1.076164e+04 236756.08 1.527244e+06 1.395184e+06 132059.65 NULL
2018 Admin For Children’s Svcs Supervisor Carpenter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2018 Admin For Children’s Svcs Supervisor I 57569.52941 9.786820e+05 123394.39 7.258494e+03 0.000 2764.75 17 0.000000e+00 0.00 1.102076e+06 9.786820e+05 123394.39 NULL
2018 Admin For Children’s Svcs Supervisor I Social Work 62861.00000 8.800540e+05 15009.36 1.072097e+03 0.000 348.35 14 0.000000e+00 0.00 8.950634e+05 8.800540e+05 15009.36 NULL
2018 Admin For Children’s Svcs Supervisor Ii 65262.50000 2.088400e+06 250695.79 7.834243e+03 572.665 4609.00 32 5.726650e+02 18325.28 2.339096e+06 2.106725e+06 232370.51 NULL
2018 Admin For Children’s Svcs Supervisor Ii Social Work 71128.00000 1.422560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.422560e+05 1.422560e+05 0.00 NULL
2018 Admin For Children’s Svcs Supervisor Iii 73809.90000 7.380990e+05 194462.66 1.944627e+04 6587.700 3232.00 10 6.587700e+03 65877.00 9.325617e+05 8.039760e+05 128585.66 NULL
2018 Admin For Children’s Svcs Supervisor Iii Social Work 83715.00000 8.371500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.371500e+04 8.371500e+04 0.00 NULL
2018 Admin For Children’s Svcs Supervisor Of Child Care 64320.66667 5.788860e+05 192838.55 2.142651e+04 24730.450 3904.25 9 2.142651e+04 192838.55 7.717246e+05 7.717246e+05 0.00 NULL
2018 Admin For Children’s Svcs Supervisor Of Mechanical Installations & Maintenance 80054.00000 2.401620e+05 119083.08 3.969436e+04 39442.040 3545.25 3 3.944204e+04 118326.12 3.592451e+05 3.584881e+05 756.96 NULL
2018 Admin For Children’s Svcs Supervisor Of Mechanics NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2018 Admin For Children’s Svcs Supervisor Of Nurses 83660.23077 1.087583e+06 3290.65 2.531269e+02 0.000 54.25 13 0.000000e+00 0.00 1.090874e+06 1.087583e+06 3290.65 NULL
2018 Admin For Children’s Svcs Telecommunications Associate 70430.09091 7.747310e+05 52794.47 4.799497e+03 1626.340 882.00 11 1.626340e+03 17889.74 8.275255e+05 7.926207e+05 34904.73 NULL
2018 Admin For Children’s Svcs Youth Development Specialist 52903.22581 1.640000e+06 206465.07 6.660164e+03 2826.940 5533.25 31 2.826940e+03 87635.14 1.846465e+06 1.727635e+06 118829.93 NULL
2018 Admin Trials And Hearings *Attorney At Law 88676.66667 2.660300e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.660300e+05 2.660300e+05 0.00 NULL
2018 Admin Trials And Hearings Adm Manager-Non-Mgrl From M1/M2 69523.21429 9.733250e+05 2072.60 1.480429e+02 0.000 59.00 14 0.000000e+00 0.00 9.753976e+05 9.733250e+05 2072.60 NULL
2018 Admin Trials And Hearings Admin Community Relations Specialist 92819.80000 4.640990e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.640990e+05 4.640990e+05 0.00 NULL
2018 Admin Trials And Hearings Admin Contract Specialist 102500.00000 2.050000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.050000e+05 2.050000e+05 0.00 NULL
2018 Admin Trials And Hearings Administrative Accountant 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2018 Admin Trials And Hearings Administrative Community Relations Specialist 90267.00000 1.805340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.805340e+05 1.805340e+05 0.00 NULL
2018 Admin Trials And Hearings Administrative Labor Relations Analyst 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2018 Admin Trials And Hearings Administrative Law Judge 142061.83333 1.704742e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.704742e+06 1.704742e+06 0.00 NULL
2018 Admin Trials And Hearings Administrative Public Information Specialist 138020.00000 1.380200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.380200e+05 1.380200e+05 0.00 NULL
2018 Admin Trials And Hearings Administrative Space Analyst 108429.00000 1.084290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.084290e+05 1.084290e+05 0.00 NULL
2018 Admin Trials And Hearings Administrative Staff Analyst 115429.75000 9.234380e+05 182.81 2.285125e+01 0.000 4.00 8 0.000000e+00 0.00 9.236208e+05 9.234380e+05 182.81 NULL
2018 Admin Trials And Hearings Agency Attorney 86526.81250 2.768858e+06 7750.48 2.422025e+02 0.000 135.00 32 0.000000e+00 0.00 2.776608e+06 2.768858e+06 7750.48 NULL
2018 Admin Trials And Hearings Agency Attorney Interne 37719.09750 3.771910e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.771910e+04 3.771910e+04 0.00 NULL
2018 Admin Trials And Hearings Agency Chief Contracting Officer 122000.00000 1.220000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.220000e+05 1.220000e+05 0.00 NULL
2018 Admin Trials And Hearings Associate Public Information Specialist 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2018 Admin Trials And Hearings Associate Staff Analyst 77766.00000 2.332980e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.332980e+05 2.332980e+05 0.00 NULL
2018 Admin Trials And Hearings Bookkeeper 47616.00000 1.428480e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.428480e+05 1.428480e+05 0.00 NULL
2018 Admin Trials And Hearings Certified It Administrator 87731.00000 8.773100e+04 2592.61 2.592610e+03 2592.610 11.00 1 2.592610e+03 2592.61 9.032361e+04 9.032361e+04 0.00 NULL
2018 Admin Trials And Hearings Certified It Developer 115545.00000 1.155450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.155450e+05 1.155450e+05 0.00 NULL
2018 Admin Trials And Hearings Chief Administrative Law Judge 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2018 Admin Trials And Hearings City Laborer NA NA 789.19 3.945950e+02 394.595 10.25 2 3.945950e+02 789.19 NA NA NA NULL
2018 Admin Trials And Hearings Clerical Aide 24312.72598 1.215636e+05 1112.22 2.224440e+02 0.000 74.00 5 0.000000e+00 0.00 1.226758e+05 1.215636e+05 1112.22 NULL
2018 Admin Trials And Hearings Clerical Associate 39307.16952 1.650901e+06 694.69 1.654024e+01 0.000 34.00 42 0.000000e+00 0.00 1.651596e+06 1.650901e+06 694.69 NULL
2018 Admin Trials And Hearings College Aide 5459.12273 6.005035e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 6.005035e+04 6.005035e+04 0.00 NULL
2018 Admin Trials And Hearings Community Assistant 27682.48124 7.751095e+05 426.86 1.524500e+01 0.000 25.75 28 0.000000e+00 0.00 7.755363e+05 7.751095e+05 426.86 NULL
2018 Admin Trials And Hearings Community Associate 42612.48314 2.258462e+06 39487.10 7.450396e+02 0.000 1334.50 53 0.000000e+00 0.00 2.297949e+06 2.258462e+06 39487.10 NULL
2018 Admin Trials And Hearings Community Coordinator 61469.94595 2.274388e+06 4809.68 1.299914e+02 0.000 130.75 37 0.000000e+00 0.00 2.279198e+06 2.274388e+06 4809.68 NULL
2018 Admin Trials And Hearings Community Service Aide 22088.48163 1.148601e+06 944.78 1.816885e+01 0.000 58.25 52 0.000000e+00 0.00 1.149546e+06 1.148601e+06 944.78 NULL
2018 Admin Trials And Hearings Computer Associate 67351.75000 2.694070e+05 3402.68 8.506700e+02 0.000 74.75 4 0.000000e+00 0.00 2.728097e+05 2.694070e+05 3402.68 NULL
2018 Admin Trials And Hearings Computer Specialist 97493.00000 3.899720e+05 244.82 6.120500e+01 0.000 4.50 4 0.000000e+00 0.00 3.902168e+05 3.899720e+05 244.82 NULL
2018 Admin Trials And Hearings Computer Systems Manager 139233.66667 8.354020e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.354020e+05 8.354020e+05 0.00 NULL
2018 Admin Trials And Hearings Confidential Secretary Of Administrative Law Judge 56746.00000 1.134920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.134920e+05 1.134920e+05 0.00 NULL
2018 Admin Trials And Hearings Executive Agency Counsel 115851.53333 3.475546e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 3.475546e+06 3.475546e+06 0.00 NULL
2018 Admin Trials And Hearings Hearing Officer 34138.07273 1.058280e+07 0.00 0.000000e+00 0.000 0.00 310 0.000000e+00 0.00 1.058280e+07 1.058280e+07 0.00 NULL
2018 Admin Trials And Hearings Maintenance Worker NA NA 108.75 1.087500e+02 108.750 0.00 1 1.087500e+02 108.75 NA NA NA NULL
2018 Admin Trials And Hearings Member Of The Environmental Control Board - Oath 36.07060 1.803530e+02 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.803530e+02 1.803530e+02 0.00 NULL
2018 Admin Trials And Hearings Principal Administrative Associate - Lev 1 & 2 Non Supvr 57792.56250 9.246810e+05 232.22 1.451375e+01 0.000 7.00 16 0.000000e+00 0.00 9.249132e+05 9.246810e+05 232.22 NULL
2018 Admin Trials And Hearings Procurement Analyst 65332.00000 6.533200e+04 270.32 2.703200e+02 270.320 7.75 1 2.703200e+02 270.32 6.560232e+04 6.560232e+04 0.00 NULL
2018 Admin Trials And Hearings Public Records Aide 39637.75000 3.171020e+05 1015.08 1.268850e+02 0.000 40.00 8 0.000000e+00 0.00 3.181171e+05 3.171020e+05 1015.08 NULL
2018 Admin Trials And Hearings Secretary 40873.00000 1.226190e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.226190e+05 1.226190e+05 0.00 NULL
2018 Admin Trials And Hearings Staff Analyst 59079.00000 5.907900e+04 459.29 4.592900e+02 459.290 13.00 1 4.592900e+02 459.29 5.953829e+04 5.953829e+04 0.00 NULL
2018 Board Of Correction Administrative Public Information Specialist 78000.00000 7.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.800000e+04 7.800000e+04 0.00 NULL
2018 Board Of Correction City Research Scientist 81130.00000 4.056500e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.056500e+05 4.056500e+05 0.00 NULL
2018 Board Of Correction Community Coordinator 54894.40000 2.744720e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.744720e+05 2.744720e+05 0.00 NULL
2018 Board Of Correction Computer Associate 47692.00000 4.769200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.769200e+04 4.769200e+04 0.00 NULL
2018 Board Of Correction Computer Specialist 116175.00000 1.161750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.161750e+05 1.161750e+05 0.00 NULL
2018 Board Of Correction Correctional Standards Review Specialist 61044.84615 7.935830e+05 242.06 1.862000e+01 0.000 7.75 13 0.000000e+00 0.00 7.938251e+05 7.935830e+05 242.06 NULL
2018 Board Of Correction Counsel 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2018 Board Of Correction Deputy Executive Director 142000.00000 1.420000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.420000e+05 1.420000e+05 0.00 NULL
2018 Board Of Correction Director Of Correctional Standards Review 108833.33333 3.265000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.265000e+05 3.265000e+05 0.00 NULL
2018 Board Of Correction Executive Agency Counsel 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2018 Board Of Correction Executive Director 168920.00000 1.689200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.689200e+05 1.689200e+05 0.00 NULL
2018 Board Of Correction Secretary 53410.00000 5.341000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.341000e+04 5.341000e+04 0.00 NULL
2018 Board Of Election Administrative Assistant 50102.35065 3.857881e+06 671475.81 8.720465e+03 6494.680 18506.50 77 6.494680e+03 500090.36 4.529357e+06 4.357971e+06 171385.45 NULL
2018 Board Of Election Administrative Associate 63519.47458 3.747649e+06 864016.45 1.464435e+04 9752.180 17963.50 59 9.752180e+03 575378.62 4.611665e+06 4.323028e+06 288637.83 NULL
2018 Board Of Election Administrative Manager 171712.50000 3.434250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.434250e+05 3.434250e+05 0.00 NULL
2018 Board Of Election Assistance Finance Officer 66321.66667 1.989650e+05 20363.44 6.787813e+03 5757.700 475.25 3 5.757700e+03 17273.10 2.193284e+05 2.162381e+05 3090.34 NULL
2018 Board Of Election Associate Staff Analyst 85360.72727 9.389680e+05 269481.10 2.449828e+04 14670.080 4081.75 11 1.467008e+04 161370.88 1.208449e+06 1.100339e+06 108110.22 NULL
2018 Board Of Election Chief Clerk 135753.71429 9.502760e+05 2260.53 3.229329e+02 0.000 36.75 7 0.000000e+00 0.00 9.525365e+05 9.502760e+05 2260.53 NULL
2018 Board Of Election Clerk To The Board 35830.07921 3.618838e+06 653093.63 6.466274e+03 6413.580 24766.00 101 6.413580e+03 647771.58 4.271932e+06 4.266610e+06 5322.05 NULL
2018 Board Of Election Commissioner 29460.00000 2.946000e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 2.946000e+05 2.946000e+05 0.00 NULL
2018 Board Of Election Computer Operator 46473.66667 1.394210e+05 32509.63 1.083654e+04 8942.650 1042.25 3 8.942650e+03 26827.95 1.719306e+05 1.662490e+05 5681.68 NULL
2018 Board Of Election Computer Specialist 123913.25000 4.956530e+05 121899.22 3.047481e+04 32426.010 2053.25 4 3.047481e+04 121899.22 6.175522e+05 6.175522e+05 0.00 NULL
2018 Board Of Election Computer System Manager 129262.00000 3.877860e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.877860e+05 3.877860e+05 0.00 NULL
2018 Board Of Election Coordinator, Election Day Operations 108158.00000 1.081580e+05 11455.20 1.145520e+04 11455.200 150.50 1 1.145520e+04 11455.20 1.196132e+05 1.196132e+05 0.00 NULL
2018 Board Of Election Coordinator, Voter Registration Activities 94110.00000 9.411000e+04 11898.46 1.189846e+04 11898.460 178.50 1 1.189846e+04 11898.46 1.060085e+05 1.060085e+05 0.00 NULL
2018 Board Of Election Counsel 170171.00000 3.403420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.403420e+05 3.403420e+05 0.00 NULL
2018 Board Of Election Counsel To The Board 56265.00000 1.125300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.125300e+05 1.125300e+05 0.00 NULL
2018 Board Of Election Deputy Chief Clerk 129800.85714 9.086060e+05 61842.31 8.834616e+03 0.000 918.50 7 0.000000e+00 0.00 9.704483e+05 9.086060e+05 61842.31 NULL
2018 Board Of Election Deputy Executive Director 199387.00000 1.993870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.993870e+05 1.993870e+05 0.00 NULL
2018 Board Of Election Director Of Equipment 75093.66667 2.252810e+05 43525.92 1.450864e+04 11888.690 716.50 3 1.188869e+04 35666.07 2.688069e+05 2.609471e+05 7859.85 NULL
2018 Board Of Election Director Of Training 77362.00000 1.547240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.547240e+05 1.547240e+05 0.00 NULL
2018 Board Of Election Director, Public Affairs And Communication 116245.00000 1.162450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.162450e+05 1.162450e+05 0.00 NULL
2018 Board Of Election Executive Director 216540.00000 2.165400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.165400e+05 2.165400e+05 0.00 NULL
2018 Board Of Election Finance Officer 115193.00000 1.151930e+05 23299.95 2.329995e+04 23299.950 304.50 1 2.329995e+04 23299.95 1.384930e+05 1.384930e+05 0.00 NULL
2018 Board Of Election Financial Clerk 35241.38896 4.792829e+06 817735.22 6.012759e+03 5592.925 31231.99 136 5.592925e+03 760637.80 5.610564e+06 5.553467e+06 57097.42 NULL
2018 Board Of Election Project Coordinator 91733.70588 1.559473e+06 380821.07 2.240124e+04 18336.630 5474.75 17 1.833663e+04 311722.71 1.940294e+06 1.871196e+06 69098.36 NULL
2018 Board Of Election Senior Adminisrator 98827.25000 3.953090e+05 51489.41 1.287235e+04 9066.550 944.25 4 9.066550e+03 36266.20 4.467984e+05 4.315752e+05 15223.21 NULL
2018 Board Of Election Senior Administrative Assistant 72195.00000 7.219500e+05 136151.42 1.361514e+04 11499.085 3077.75 10 1.149908e+04 114990.85 8.581014e+05 8.369408e+05 21160.57 NULL
2018 Board Of Election Senior Computer Programmer 78238.00000 7.041420e+05 219634.40 2.440382e+04 13549.300 3986.25 9 1.354930e+04 121943.70 9.237764e+05 8.260857e+05 97690.70 NULL
2018 Board Of Election Senior Systems Analysts 104763.66667 3.142910e+05 120494.24 4.016475e+04 6421.240 1648.75 3 6.421240e+03 19263.72 4.347852e+05 3.335547e+05 101230.52 NULL
2018 Board Of Election Senior Voting Machine Technician 40170.55263 1.526481e+06 377328.90 9.929708e+03 9979.030 13361.75 38 9.929708e+03 377328.90 1.903810e+06 1.903810e+06 0.00 NULL
2018 Board Of Election Stenographic/Secretarial Associate 50587.00000 5.058700e+04 4239.50 4.239500e+03 4239.500 104.25 1 4.239500e+03 4239.50 5.482650e+04 5.482650e+04 0.00 NULL
2018 Board Of Election Temporary Clerk 17299.46677 4.134573e+06 705936.17 2.953708e+03 1987.420 38173.65 239 1.987420e+03 474993.38 4.840509e+06 4.609566e+06 230942.79 NULL
2018 Board Of Election Trainer Assistant 48095.38802 2.645246e+06 522909.15 9.507439e+03 8585.010 13881.75 55 8.585010e+03 472175.55 3.168155e+06 3.117422e+06 50733.60 NULL
2018 Board Of Election Voting Machine Technician 35272.13580 2.857043e+06 586760.68 7.243959e+03 7083.200 22678.18 81 7.083200e+03 573739.20 3.443804e+06 3.430782e+06 13021.48 NULL
2018 Board Of Election Poll Workers Election Trainer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 371 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2018 Board Of Election Poll Workers Election Worker 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 32532 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2018 Borough President-Bronx Administrative Business Promotion Coordinator 112358.68213 3.370760e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.370760e+05 3.370760e+05 0.00 NULL
2018 Borough President-Bronx Administrative City Planner 106182.00000 2.123640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.123640e+05 2.123640e+05 0.00 NULL
2018 Borough President-Bronx Administrative Education Officer 107320.00000 1.073200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.073200e+05 1.073200e+05 0.00 NULL
2018 Borough President-Bronx Administrative Manager 77219.00000 7.721900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.721900e+04 7.721900e+04 0.00 NULL
2018 Borough President-Bronx Administrative Staff Analyst 109755.00000 2.195100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.195100e+05 2.195100e+05 0.00 NULL
2018 Borough President-Bronx Assistant To The President 55970.25000 2.238810e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.238810e+05 2.238810e+05 0.00 NULL
2018 Borough President-Bronx Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2018 Borough President-Bronx Clerical Associate 46573.00000 4.657300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.657300e+04 4.657300e+04 0.00 NULL
2018 Borough President-Bronx Community Assistant 38207.00000 3.820700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.820700e+04 3.820700e+04 0.00 NULL
2018 Borough President-Bronx Community Associate 51426.81818 5.656950e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.656950e+05 5.656950e+05 0.00 NULL
2018 Borough President-Bronx Community Coordinator 64097.44125 8.973642e+05 42632.79 3.045199e+03 0.000 764.05 14 0.000000e+00 0.00 9.399970e+05 8.973642e+05 42632.79 NULL
2018 Borough President-Bronx Computer Systems Manager 76772.00000 7.677200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.677200e+04 7.677200e+04 0.00 NULL
2018 Borough President-Bronx Deputy Borough President 162291.00000 3.245820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.245820e+05 3.245820e+05 0.00 NULL
2018 Borough President-Bronx Director Of Community Planning Boards 112437.00000 1.124370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.124370e+05 1.124370e+05 0.00 NULL
2018 Borough President-Bronx Executive Assistant 178741.00000 1.787410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.787410e+05 1.787410e+05 0.00 NULL
2018 Borough President-Bronx Principal Administrative Associate - Lev 1 & 2 Non Supvr 65446.50000 1.308930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.308930e+05 1.308930e+05 0.00 NULL
2018 Borough President-Bronx Public Information Officer 104935.00000 1.049350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.049350e+05 1.049350e+05 0.00 NULL
2018 Borough President-Bronx Research And Liaison Coordinator 70628.00000 7.062800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.062800e+04 7.062800e+04 0.00 NULL
2018 Borough President-Bronx Research Liaison Adn Governmental Coordinator 99422.00000 1.988440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.988440e+05 1.988440e+05 0.00 NULL
2018 Borough President-Bronx Secretary To Assistant To President 97963.00000 9.796300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.796300e+04 9.796300e+04 0.00 NULL
2018 Borough President-Bronx Secretary To The Deputy Boro President 73707.00000 7.370700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.370700e+04 7.370700e+04 0.00 NULL
2018 Borough President-Bronx Secretary To The Excutive Assistant 73821.00000 7.382100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.382100e+04 7.382100e+04 0.00 NULL
2018 Borough President-Bronx Special Assistant To The Borough President 93319.66667 2.799590e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.799590e+05 2.799590e+05 0.00 NULL
2018 Borough President-Brooklyn Administrative Engineer 42862.50000 4.286250e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.286250e+04 4.286250e+04 0.00 NULL
2018 Borough President-Brooklyn Administrative Housing Development Specialist 149674.00000 1.496740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.496740e+05 1.496740e+05 0.00 NULL
2018 Borough President-Brooklyn Assistant To The President 80683.04300 1.613661e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.613661e+06 1.613661e+06 0.00 NULL
2018 Borough President-Brooklyn Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2018 Borough President-Brooklyn Chauffeur-Attendant 73275.00000 7.327500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.327500e+04 7.327500e+04 0.00 NULL
2018 Borough President-Brooklyn City Planner 98740.00000 1.974800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.974800e+05 1.974800e+05 0.00 NULL
2018 Borough President-Brooklyn Clerical Associate 56294.50000 1.125890e+05 1213.58 6.067900e+02 606.790 32.50 2 6.067900e+02 1213.58 1.138026e+05 1.138026e+05 0.00 NULL
2018 Borough President-Brooklyn Community Assistant 36431.00000 3.643100e+04 59.84 5.984000e+01 59.840 4.00 1 5.984000e+01 59.84 3.649084e+04 3.649084e+04 0.00 NULL
2018 Borough President-Brooklyn Community Associate 40897.37375 4.907685e+05 4810.14 4.008450e+02 305.990 145.75 12 3.059900e+02 3671.88 4.955786e+05 4.944404e+05 1138.26 NULL
2018 Borough President-Brooklyn Community Coordinator 63654.48402 1.273090e+06 4351.73 2.175865e+02 62.020 114.00 20 6.202000e+01 1240.40 1.277441e+06 1.274330e+06 3111.33 NULL
2018 Borough President-Brooklyn Community Service Aide 32332.00000 3.233200e+04 276.52 2.765200e+02 276.520 6.50 1 2.765200e+02 276.52 3.260852e+04 3.260852e+04 0.00 NULL
2018 Borough President-Brooklyn Counsel To The Borough President 102736.79000 1.027368e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.027368e+05 1.027368e+05 0.00 NULL
2018 Borough President-Brooklyn Deputy Borough President 145653.00000 1.456530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.456530e+05 1.456530e+05 0.00 NULL
2018 Borough President-Brooklyn Director Of Community Planning Boards 88153.00000 8.815300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.815300e+04 8.815300e+04 0.00 NULL
2018 Borough President-Brooklyn Executive Agency Counsel 145451.00000 1.454510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.454510e+05 1.454510e+05 0.00 NULL
2018 Borough President-Brooklyn Executive Assistant 160954.00000 1.609540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.609540e+05 1.609540e+05 0.00 NULL
2018 Borough President-Brooklyn Principal Administrative Associate - Lev 1 & 2 Non Supvr 70934.00000 7.093400e+04 147.95 1.479500e+02 147.950 4.00 1 1.479500e+02 147.95 7.108195e+04 7.108195e+04 0.00 NULL
2018 Borough President-Brooklyn Program Producer 70801.00000 7.080100e+04 2037.56 2.037560e+03 2037.560 36.00 1 2.037560e+03 2037.56 7.283856e+04 7.283856e+04 0.00 NULL
2018 Borough President-Brooklyn Public Information Officer 101878.00000 1.018780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.018780e+05 1.018780e+05 0.00 NULL
2018 Borough President-Brooklyn Research & Liaison Coordinator 59586.54375 1.191731e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.191731e+05 1.191731e+05 0.00 NULL
2018 Borough President-Brooklyn Secretary To The President 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2018 Borough President-Brooklyn Special Assistant To The Borough President 145653.00000 1.456530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.456530e+05 1.456530e+05 0.00 NULL
2018 Borough President-Manhattan Admin Contract Specialist 75219.50000 1.504390e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.504390e+05 1.504390e+05 0.00 NULL
2018 Borough President-Manhattan Administrative City Planner 67263.16667 4.035790e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.035790e+05 4.035790e+05 0.00 NULL
2018 Borough President-Manhattan Administrative Public Information Specialist 103017.50000 2.060350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.060350e+05 2.060350e+05 0.00 NULL
2018 Borough President-Manhattan Administrative Staff Analyst 101920.00000 1.019200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.019200e+05 1.019200e+05 0.00 NULL
2018 Borough President-Manhattan Assistant To The President 88328.25000 3.533130e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.533130e+05 3.533130e+05 0.00 NULL
2018 Borough President-Manhattan Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2018 Borough President-Manhattan Chauffeur Attendant 65166.00000 1.303320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.303320e+05 1.303320e+05 0.00 NULL
2018 Borough President-Manhattan Community Associate 44469.26800 4.446927e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.446927e+05 4.446927e+05 0.00 NULL
2018 Borough President-Manhattan Community Coordinator 60097.11000 1.262039e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.262039e+06 1.262039e+06 0.00 NULL
2018 Borough President-Manhattan Community Planning Board Coordinator 54750.00000 3.285000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.285000e+05 3.285000e+05 0.00 NULL
2018 Borough President-Manhattan Computer Operations Manager 76006.00000 7.600600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.600600e+04 7.600600e+04 0.00 NULL
2018 Borough President-Manhattan Counsel To The Borough President 91304.00000 9.130400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.130400e+04 9.130400e+04 0.00 NULL
2018 Borough President-Manhattan Deputy Borough President 155726.00000 1.557260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.557260e+05 1.557260e+05 0.00 NULL
2018 Borough President-Manhattan Director Of Community Planning Boards 91304.00000 9.130400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.130400e+04 9.130400e+04 0.00 NULL
2018 Borough President-Manhattan Executive Assistant 145692.00000 2.913840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.913840e+05 2.913840e+05 0.00 NULL
2018 Borough President-Manhattan General Counsel 169030.00000 1.690300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.690300e+05 1.690300e+05 0.00 NULL
2018 Borough President-Manhattan Principal Administrative Associate - Lev 1 & 2 Non Supvr 61595.00000 6.159500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.159500e+04 6.159500e+04 0.00 NULL
2018 Borough President-Manhattan Public Information Officer 82540.00000 8.254000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.254000e+04 8.254000e+04 0.00 NULL
2018 Borough President-Manhattan Secretary To The President 89876.00000 1.797520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.797520e+05 1.797520e+05 0.00 NULL
2018 Borough President-Queens Administrative Staff Analyst 109465.00000 1.094650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.094650e+05 1.094650e+05 0.00 NULL
2018 Borough President-Queens Agency Attorney 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2018 Borough President-Queens Agency Attorney Interne 57944.00000 5.794400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.794400e+04 5.794400e+04 0.00 NULL
2018 Borough President-Queens Assistant Civil Engineer 74509.00000 7.450900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.450900e+04 7.450900e+04 0.00 NULL
2018 Borough President-Queens Assistant To The President 72500.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2018 Borough President-Queens Associate Staff Analyst 78335.00000 7.833500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.833500e+04 7.833500e+04 0.00 NULL
2018 Borough President-Queens Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2018 Borough President-Queens Cashier 33022.00000 3.302200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.302200e+04 3.302200e+04 0.00 NULL
2018 Borough President-Queens Chauffeur-Attendant 71000.00000 1.420000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.420000e+05 1.420000e+05 0.00 NULL
2018 Borough President-Queens City Planner 60560.00000 6.056000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.056000e+04 6.056000e+04 0.00 NULL
2018 Borough President-Queens Clerical Associate 48016.00000 4.801600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.801600e+04 4.801600e+04 0.00 NULL
2018 Borough President-Queens Community Assistant 31780.75000 1.271230e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.271230e+05 1.271230e+05 0.00 NULL
2018 Borough President-Queens Community Associate 50789.10526 9.649930e+05 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 9.649930e+05 9.649930e+05 0.00 NULL
2018 Borough President-Queens Community Coordinator 63788.44444 5.740960e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.740960e+05 5.740960e+05 0.00 NULL
2018 Borough President-Queens Computer Systems Manager 92000.00000 9.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.200000e+04 9.200000e+04 0.00 NULL
2018 Borough President-Queens Counsel To The Borough President 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2018 Borough President-Queens Deputy Borough President 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2018 Borough President-Queens Director Borough President’s Office Of Administration Queens 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2018 Borough President-Queens Director Of Community Planning Boards 102000.00000 1.020000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020000e+05 1.020000e+05 0.00 NULL
2018 Borough President-Queens Engineering Technician 63964.50000 1.279290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.279290e+05 1.279290e+05 0.00 NULL
2018 Borough President-Queens Executive Assistant 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2018 Borough President-Queens Fiscal And Policy Analyst 59000.00000 1.180000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.180000e+05 1.180000e+05 0.00 NULL
2018 Borough President-Queens Principal Administrative Associate - Lev 1 & 2 Non Supvr 71699.00000 2.150970e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.150970e+05 2.150970e+05 0.00 NULL
2018 Borough President-Queens Public Information Officer 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2018 Borough President-Queens Research And Liaison Specialist 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2018 Borough President-Queens Secretary To The President 85000.00000 8.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.500000e+04 8.500000e+04 0.00 NULL
2018 Borough President-Queens Special Assistant To The Borough President 86600.00000 4.330000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.330000e+05 4.330000e+05 0.00 NULL
2018 Borough President-Staten Is Administrative Architect 147650.00000 1.476500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.476500e+05 1.476500e+05 0.00 NULL
2018 Borough President-Staten Is Assistant To The President 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2018 Borough President-Staten Is Asst Project Planner 45678.38453 5.481406e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 5.481406e+05 5.481406e+05 0.00 NULL
2018 Borough President-Staten Is Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2018 Borough President-Staten Is Clerical Associate 56224.00000 5.622400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.622400e+04 5.622400e+04 0.00 NULL
2018 Borough President-Staten Is Community Associate 55051.66667 1.651550e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.651550e+05 1.651550e+05 0.00 NULL
2018 Borough President-Staten Is Community Coordinator 70012.40000 7.001240e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.001240e+05 7.001240e+05 0.00 NULL
2018 Borough President-Staten Is Confidential Assistant To Boro President 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2018 Borough President-Staten Is Counsel To The Borough President 67504.80000 6.750480e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.750480e+04 6.750480e+04 0.00 NULL
2018 Borough President-Staten Is Deputy Borough President 148820.00000 1.488200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.488200e+05 1.488200e+05 0.00 NULL
2018 Borough President-Staten Is Director Of Community Planning Boards - Mgl Assign 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2018 Borough President-Staten Is Engineering Technician 62246.00000 6.224600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.224600e+04 6.224600e+04 0.00 NULL
2018 Borough President-Staten Is Executive Assistant 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2018 Borough President-Staten Is Project Planner 53107.19725 4.248576e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.248576e+05 4.248576e+05 0.00 NULL
2018 Borough President-Staten Is Public Information Officer 103500.00000 1.035000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.035000e+05 1.035000e+05 0.00 NULL
2018 Borough President-Staten Is Secretary 63250.00000 1.265000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.265000e+05 1.265000e+05 0.00 NULL
2018 Borough President-Staten Is Special Assistant To The Borough President 70322.00000 7.032200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.032200e+04 7.032200e+04 0.00 NULL
2018 Borough President-Staten Is Staff Analyst 67137.00000 6.713700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.713700e+04 6.713700e+04 0.00 NULL
2018 Borough President-Staten Is Surveyor 95599.00000 9.559900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.559900e+04 9.559900e+04 0.00 NULL
2018 Bronx Community Board #1 Community Coordinator 78190.00000 7.819000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.819000e+04 7.819000e+04 0.00 NULL
2018 Bronx Community Board #1 District Manager 135159.00000 1.351590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.351590e+05 1.351590e+05 0.00 NULL
2018 Bronx Community Board #10 Clerical Associate 24080.58750 4.816118e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.816118e+04 4.816118e+04 0.00 NULL
2018 Bronx Community Board #10 Community Assistant 19509.36750 3.901874e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.901874e+04 3.901874e+04 0.00 NULL
2018 Bronx Community Board #10 Community Associate 42245.00000 4.224500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.224500e+04 4.224500e+04 0.00 NULL
2018 Bronx Community Board #10 District Manager 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2018 Bronx Community Board #11 Administrative Business Promotion Coordinator 20192.90000 2.019290e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.019290e+04 2.019290e+04 0.00 NULL
2018 Bronx Community Board #11 Community Associate 45961.00000 4.596100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.596100e+04 4.596100e+04 0.00 NULL
2018 Bronx Community Board #11 Community Coordinator 56421.30000 5.642130e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.642130e+04 5.642130e+04 0.00 NULL
2018 Bronx Community Board #11 District Manager 81033.00000 8.103300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.103300e+04 8.103300e+04 0.00 NULL
2018 Bronx Community Board #12 Community Coordinator 74523.00000 7.452300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.452300e+04 7.452300e+04 0.00 NULL
2018 Bronx Community Board #12 District Manager 111767.00000 1.117670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.117670e+05 1.117670e+05 0.00 NULL
2018 Bronx Community Board #2 Community Assistant 36311.00000 3.631100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.631100e+04 3.631100e+04 0.00 NULL
2018 Bronx Community Board #2 Community Associate 56873.00000 5.687300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.687300e+04 5.687300e+04 0.00 NULL
2018 Bronx Community Board #2 District Manager 104861.00000 1.048610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.048610e+05 1.048610e+05 0.00 NULL
2018 Bronx Community Board #3 District Manager 130730.00000 1.307300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.307300e+05 1.307300e+05 0.00 NULL
2018 Bronx Community Board #3 Principal Administrative Associate - Lev 1 & 2 Non Supvr 83500.00000 8.350000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.350000e+04 8.350000e+04 0.00 NULL
2018 Bronx Community Board #4 Community Associate 57107.00000 1.142140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.142140e+05 1.142140e+05 0.00 NULL
2018 Bronx Community Board #4 District Manager 93136.00000 9.313600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.313600e+04 9.313600e+04 0.00 NULL
2018 Bronx Community Board #5 Community Coordinator 57916.00000 5.791600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.791600e+04 5.791600e+04 0.00 NULL
2018 Bronx Community Board #5 District Manager 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2018 Bronx Community Board #6 Community Associate 32949.50000 6.589900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.589900e+04 6.589900e+04 0.00 NULL
2018 Bronx Community Board #6 District Manager 98056.00000 9.805600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.805600e+04 9.805600e+04 0.00 NULL
2018 Bronx Community Board #7 Community Assistant 32000.00000 3.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.200000e+04 3.200000e+04 0.00 NULL
2018 Bronx Community Board #7 Community Coordinator 57916.00000 5.791600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.791600e+04 5.791600e+04 0.00 NULL
2018 Bronx Community Board #7 District Manager 73000.00000 7.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.300000e+04 7.300000e+04 0.00 NULL
2018 Bronx Community Board #8 Community Associate 48828.50000 9.765700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.765700e+04 9.765700e+04 0.00 NULL
2018 Bronx Community Board #8 District Manager 75000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2018 Bronx Community Board #9 Assistant District Manager 58240.00000 5.824000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.824000e+04 5.824000e+04 0.00 NULL
2018 Bronx Community Board #9 College Aide 6973.60250 1.394720e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.394720e+04 1.394720e+04 0.00 NULL
2018 Bronx Community Board #9 Community Service Aide 31431.00000 3.143100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.143100e+04 3.143100e+04 0.00 NULL
2018 Bronx Community Board #9 District Manager 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2018 Bronx District Attorney Accountant 83418.00000 8.341800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.341800e+04 8.341800e+04 0.00 NULL
2018 Bronx District Attorney Adm Manager-Non-Mgrl From M1/M2 64700.33333 1.941010e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.941010e+05 1.941010e+05 0.00 NULL
2018 Bronx District Attorney Administrative Accountant 138200.00000 1.382000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.382000e+05 1.382000e+05 0.00 NULL
2018 Bronx District Attorney Administrative Chief 109404.80000 5.470240e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.470240e+05 5.470240e+05 0.00 NULL
2018 Bronx District Attorney Administrative Community Relations Specialist 116025.00000 2.320500e+05 1857.55 9.287750e+02 928.775 39.25 2 9.287750e+02 1857.55 2.339075e+05 2.339075e+05 0.00 NULL
2018 Bronx District Attorney Administrative Staff Analyst 103382.00000 1.033820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.033820e+05 1.033820e+05 0.00 NULL
2018 Bronx District Attorney Agency Chief Contracting Officer 199900.00000 1.999000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.999000e+05 1.999000e+05 0.00 NULL
2018 Bronx District Attorney Assistant District Attorney 84251.58318 4.709664e+07 0.00 0.000000e+00 0.000 0.00 559 0.000000e+00 0.00 4.709664e+07 4.709664e+07 0.00 NULL
2018 Bronx District Attorney Associate Staff Analyst 85069.00000 8.506900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.506900e+04 8.506900e+04 0.00 NULL
2018 Bronx District Attorney Certified It Developer 83865.50000 1.677310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.677310e+05 1.677310e+05 0.00 NULL
2018 Bronx District Attorney City Tax Auditor 62268.00000 6.226800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.226800e+04 6.226800e+04 0.00 NULL
2018 Bronx District Attorney Clerical Associate 42846.00000 1.842378e+06 81878.00 1.904140e+03 0.000 2486.00 43 0.000000e+00 0.00 1.924256e+06 1.842378e+06 81878.00 NULL
2018 Bronx District Attorney Community Assistant 33094.06011 6.056213e+06 237423.91 1.297398e+03 0.000 10054.75 183 0.000000e+00 0.00 6.293637e+06 6.056213e+06 237423.91 NULL
2018 Bronx District Attorney Community Associate 42447.12349 9.338367e+06 83816.75 3.809852e+02 0.000 3045.80 220 0.000000e+00 0.00 9.422184e+06 9.338367e+06 83816.75 NULL
2018 Bronx District Attorney Community Coordinator 62949.75000 2.769789e+06 92510.51 2.102512e+03 179.940 2312.00 44 1.799400e+02 7917.36 2.862300e+06 2.777706e+06 84593.15 NULL
2018 Bronx District Attorney Community Service Aide 27703.72727 6.094820e+05 23921.81 1.087355e+03 250.580 1301.50 22 2.505800e+02 5512.76 6.334038e+05 6.149948e+05 18409.05 NULL
2018 Bronx District Attorney Computer Associate 81891.75000 3.275670e+05 3996.58 9.991450e+02 487.600 81.25 4 4.876000e+02 1950.40 3.315636e+05 3.295174e+05 2046.18 NULL
2018 Bronx District Attorney Director Of Public Information 113000.00000 1.130000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.130000e+05 1.130000e+05 0.00 NULL
2018 Bronx District Attorney District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2018 Bronx District Attorney Interpreter 51210.16667 6.145220e+05 26661.06 2.221755e+03 1708.930 934.75 12 1.708930e+03 20507.16 6.411831e+05 6.350292e+05 6153.90 NULL
2018 Bronx District Attorney Media Services Technician 54057.50000 1.081150e+05 7906.27 3.953135e+03 3953.135 186.75 2 3.953135e+03 7906.27 1.160213e+05 1.160213e+05 0.00 NULL
2018 Bronx District Attorney Paralegal Aide 49869.00000 9.973800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.973800e+04 9.973800e+04 0.00 NULL
2018 Bronx District Attorney Principal Accountant Investigator 103875.00000 4.155000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.155000e+05 4.155000e+05 0.00 NULL
2018 Bronx District Attorney Principal Administrative Associate - Lev 1 & 2 Non Supvr 65637.13333 9.845570e+05 17372.38 1.158159e+03 0.000 415.25 15 0.000000e+00 0.00 1.001929e+06 9.845570e+05 17372.38 NULL
2018 Bronx District Attorney Private Secretary 94875.00000 1.897500e+05 1503.70 7.518500e+02 751.850 31.50 2 7.518500e+02 1503.70 1.912537e+05 1.912537e+05 0.00 NULL
2018 Bronx District Attorney Procurement Analyst 87930.00000 8.793000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.793000e+04 8.793000e+04 0.00 NULL
2018 Bronx District Attorney Reporter/ Stenographer 63034.23684 1.197650e+06 23828.48 1.254131e+03 0.000 506.75 19 0.000000e+00 0.00 1.221479e+06 1.197650e+06 23828.48 NULL
2018 Bronx District Attorney Secretary 50322.25000 2.012890e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.012890e+05 2.012890e+05 0.00 NULL
2018 Bronx District Attorney Special Assistant To The District Attorney 133271.42857 9.329000e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.329000e+05 9.329000e+05 0.00 NULL
2018 Bronx District Attorney Special Officer 40548.55556 3.649370e+05 24257.25 2.695250e+03 1853.920 751.43 9 1.853920e+03 16685.28 3.891942e+05 3.816223e+05 7571.97 NULL
2018 Bronx District Attorney Staff Analyst 74479.00000 7.447900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.447900e+04 7.447900e+04 0.00 NULL
2018 Brooklyn Community Board #1 Assistant District Manager 58884.00000 5.888400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.888400e+04 5.888400e+04 0.00 NULL
2018 Brooklyn Community Board #1 Community Associate 33594.54500 3.359454e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.359454e+04 3.359454e+04 0.00 NULL
2018 Brooklyn Community Board #1 District Manager 123884.00000 1.238840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.238840e+05 1.238840e+05 0.00 NULL
2018 Brooklyn Community Board #10 College Aide 1482.23250 2.964465e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.964465e+03 2.964465e+03 0.00 NULL
2018 Brooklyn Community Board #10 Community Assistant 2568.35000 5.136700e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.136700e+03 5.136700e+03 0.00 NULL
2018 Brooklyn Community Board #10 Community Coordinator 72484.00000 7.248400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.248400e+04 7.248400e+04 0.00 NULL
2018 Brooklyn Community Board #10 District Manager 119878.00000 1.198780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.198780e+05 1.198780e+05 0.00 NULL
2018 Brooklyn Community Board #11 Community Assistant 19509.27820 3.901856e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.901856e+04 3.901856e+04 0.00 NULL
2018 Brooklyn Community Board #11 Community Coordinator 64475.00000 6.447500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.447500e+04 6.447500e+04 0.00 NULL
2018 Brooklyn Community Board #11 District Manager 95705.00000 9.570500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.570500e+04 9.570500e+04 0.00 NULL
2018 Brooklyn Community Board #12 Community Assistant 37446.50000 7.489300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.489300e+04 7.489300e+04 0.00 NULL
2018 Brooklyn Community Board #12 District Manager 109208.00000 1.092080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.092080e+05 1.092080e+05 0.00 NULL
2018 Brooklyn Community Board #13 Community Associate 39251.00000 3.925100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.925100e+04 3.925100e+04 0.00 NULL
2018 Brooklyn Community Board #13 Community Service Aide 33071.00000 3.307100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.307100e+04 3.307100e+04 0.00 NULL
2018 Brooklyn Community Board #13 District Manager 80540.00000 8.054000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.054000e+04 8.054000e+04 0.00 NULL
2018 Brooklyn Community Board #13 Secretary 25716.73380 2.571673e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.571673e+04 2.571673e+04 0.00 NULL
2018 Brooklyn Community Board #14 Community Coordinator 55347.44510 1.106949e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.106949e+05 1.106949e+05 0.00 NULL
2018 Brooklyn Community Board #14 District Manager 106155.00000 1.061550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.061550e+05 1.061550e+05 0.00 NULL
2018 Brooklyn Community Board #15 Community Assistant 37814.00000 3.781400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.781400e+04 3.781400e+04 0.00 NULL
2018 Brooklyn Community Board #15 Community Associate 55397.00000 5.539700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.539700e+04 5.539700e+04 0.00 NULL
2018 Brooklyn Community Board #15 District Manager 61204.00000 6.120400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.120400e+04 6.120400e+04 0.00 NULL
2018 Brooklyn Community Board #16 Community Assistant 27438.94260 5.487789e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.487789e+04 5.487789e+04 0.00 NULL
2018 Brooklyn Community Board #16 District Manager 113061.00000 1.130610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.130610e+05 1.130610e+05 0.00 NULL
2018 Brooklyn Community Board #17 Community Assistant 36093.50000 7.218700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.218700e+04 7.218700e+04 0.00 NULL
2018 Brooklyn Community Board #17 Community Coordinator 57916.00000 5.791600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.791600e+04 5.791600e+04 0.00 NULL
2018 Brooklyn Community Board #17 District Manager 81336.00000 8.133600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.133600e+04 8.133600e+04 0.00 NULL
2018 Brooklyn Community Board #18 Community Assistant 34815.00000 3.481500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.481500e+04 3.481500e+04 0.00 NULL
2018 Brooklyn Community Board #18 Community Service Aide 31431.00000 3.143100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.143100e+04 3.143100e+04 0.00 NULL
2018 Brooklyn Community Board #18 District Manager 151069.00000 1.510690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.510690e+05 1.510690e+05 0.00 NULL
2018 Brooklyn Community Board #2 Community Assistant 17525.75760 1.752576e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.752576e+04 1.752576e+04 0.00 NULL
2018 Brooklyn Community Board #2 Community Associate 41036.00000 4.103600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.103600e+04 4.103600e+04 0.00 NULL
2018 Brooklyn Community Board #2 Community Coordinator 61928.00000 6.192800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.192800e+04 6.192800e+04 0.00 NULL
2018 Brooklyn Community Board #2 District Manager 105360.00000 1.053600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.053600e+05 1.053600e+05 0.00 NULL
2018 Brooklyn Community Board #3 Assistant District Manager 60852.00000 6.085200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.085200e+04 6.085200e+04 0.00 NULL
2018 Brooklyn Community Board #3 Community Assistant 38984.00000 3.898400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.898400e+04 3.898400e+04 0.00 NULL
2018 Brooklyn Community Board #3 District Manager 81760.00000 8.176000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.176000e+04 8.176000e+04 0.00 NULL
2018 Brooklyn Community Board #4 Community Associate 56932.50000 1.138650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.138650e+05 1.138650e+05 0.00 NULL
2018 Brooklyn Community Board #4 District Manager 65306.00000 6.530600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.530600e+04 6.530600e+04 0.00 NULL
2018 Brooklyn Community Board #5 Community Associate 41036.00000 4.103600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.103600e+04 4.103600e+04 0.00 NULL
2018 Brooklyn Community Board #5 Community Coordinator 50362.00000 5.036200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.036200e+04 5.036200e+04 0.00 NULL
2018 Brooklyn Community Board #5 Community Service Aide 17632.35000 1.763235e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.763235e+04 1.763235e+04 0.00 NULL
2018 Brooklyn Community Board #5 District Manager 93500.00000 9.350000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.350000e+04 9.350000e+04 0.00 NULL
2018 Brooklyn Community Board #6 Assistant District Manager 52071.00000 5.207100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.207100e+04 5.207100e+04 0.00 NULL
2018 Brooklyn Community Board #6 Community Associate 51293.00000 5.129300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.129300e+04 5.129300e+04 0.00 NULL
2018 Brooklyn Community Board #6 District Manager 98465.50000 1.969310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.969310e+05 1.969310e+05 0.00 NULL
2018 Brooklyn Community Board #7 Community Associate 45909.00000 4.590900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.590900e+04 4.590900e+04 0.00 NULL
2018 Brooklyn Community Board #7 Community Coordinator 64345.00000 6.434500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.434500e+04 6.434500e+04 0.00 NULL
2018 Brooklyn Community Board #7 District Manager 96359.00000 9.635900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.635900e+04 9.635900e+04 0.00 NULL
2018 Brooklyn Community Board #8 Community Assistant 34814.00000 3.481400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.481400e+04 3.481400e+04 0.00 NULL
2018 Brooklyn Community Board #8 Community Coordinator 59539.00000 5.953900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.953900e+04 5.953900e+04 0.00 NULL
2018 Brooklyn Community Board #8 District Manager 92326.00000 9.232600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.232600e+04 9.232600e+04 0.00 NULL
2018 Brooklyn Community Board #9 Community Assistant 20883.63880 4.176728e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.176728e+04 4.176728e+04 0.00 NULL
2018 Brooklyn Community Board #9 Community Coordinator 57916.00000 5.791600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.791600e+04 5.791600e+04 0.00 NULL
2018 Brooklyn Community Board #9 District Manager 138978.00000 1.389780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.389780e+05 1.389780e+05 0.00 NULL
2018 Business Integrity Commission Adm Manager-Non-Mgrl From M1/M2 70855.00000 7.085500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.085500e+04 7.085500e+04 0.00 NULL
2018 Business Integrity Commission Admin Contract Specialist 177023.00000 1.770230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.770230e+05 1.770230e+05 0.00 NULL
2018 Business Integrity Commission Administrative Accountant 106000.00000 1.060000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.060000e+05 1.060000e+05 0.00 NULL
2018 Business Integrity Commission Administrative Community Relations Specialist 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2018 Business Integrity Commission Administrative Investigator 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2018 Business Integrity Commission Administrative Staff Analyst 113276.83333 6.796610e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.796610e+05 6.796610e+05 0.00 NULL
2018 Business Integrity Commission Agency Attorney 83287.66667 2.498630e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.498630e+05 2.498630e+05 0.00 NULL
2018 Business Integrity Commission Associate Fraud Investigator 63162.00000 3.789720e+05 20113.66 3.352277e+03 2811.950 509.75 6 2.811950e+03 16871.70 3.990857e+05 3.958437e+05 3241.96 NULL
2018 Business Integrity Commission Associate Staff Analyst 89093.50000 1.781870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.781870e+05 1.781870e+05 0.00 NULL
2018 Business Integrity Commission Chair 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Business Integrity Commission Clerical Associate 52076.00000 1.041520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.041520e+05 1.041520e+05 0.00 NULL
2018 Business Integrity Commission Community Assistant 23101.00000 4.620200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.620200e+04 4.620200e+04 0.00 NULL
2018 Business Integrity Commission Community Associate 45940.14289 1.745725e+06 22990.54 6.050142e+02 0.000 718.75 38 0.000000e+00 0.00 1.768716e+06 1.745725e+06 22990.54 NULL
2018 Business Integrity Commission Community Coordinator 65372.33333 3.922340e+05 8445.30 1.407550e+03 0.000 186.25 6 0.000000e+00 0.00 4.006793e+05 3.922340e+05 8445.30 NULL
2018 Business Integrity Commission Computer Associate 70000.00000 7.000000e+04 14283.95 1.428395e+04 14283.950 286.50 1 1.428395e+04 14283.95 8.428395e+04 8.428395e+04 0.00 NULL
2018 Business Integrity Commission Computer Programmer Analyst 66249.00000 6.624900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.624900e+04 6.624900e+04 0.00 NULL
2018 Business Integrity Commission Computer Systems Manager 87277.00000 1.745540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.745540e+05 1.745540e+05 0.00 NULL
2018 Business Integrity Commission Deputy Commissioner Of Investigations 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2018 Business Integrity Commission Director Of Investigations 80000.00000 8.000000e+04 1304.47 1.304470e+03 1304.470 30.50 1 1.304470e+03 1304.47 8.130447e+04 8.130447e+04 0.00 NULL
2018 Business Integrity Commission Director Of Investigative Audits 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2018 Business Integrity Commission Executive Agency Counsel 110694.10000 1.106941e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.106941e+06 1.106941e+06 0.00 NULL
2018 Business Integrity Commission First Deputy Commissioner 173941.00000 1.739410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.739410e+05 1.739410e+05 0.00 NULL
2018 Business Integrity Commission Management Auditor 68448.00000 1.368960e+05 8190.80 4.095400e+03 4095.400 142.25 2 4.095400e+03 8190.80 1.450868e+05 1.450868e+05 0.00 NULL
2018 Business Integrity Commission Market Agent 51994.11111 4.679470e+05 26792.36 2.976929e+03 1234.240 726.00 9 1.234240e+03 11108.16 4.947394e+05 4.790552e+05 15684.20 NULL
2018 Business Integrity Commission Principal Administrative Associate - Lev 1 & 2 Non Supvr 59429.50000 1.188590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.188590e+05 1.188590e+05 0.00 NULL
2018 Campaign Finance Board Admin Asst-Campaign Fin Board 52425.58772 7.339582e+05 16523.46 1.180247e+03 392.550 397.75 14 3.925500e+02 5495.70 7.504817e+05 7.394539e+05 11027.76 NULL
2018 Campaign Finance Board Analyst 68743.53936 5.361996e+06 368887.23 4.729323e+03 1288.135 6793.54 78 1.288135e+03 100474.53 5.730883e+06 5.462471e+06 268412.70 NULL
2018 Campaign Finance Board Associate Staff Analyst 109750.00000 1.097500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.097500e+05 1.097500e+05 0.00 NULL
2018 Campaign Finance Board Attorney-Campaign Fin Board 100312.71429 7.021890e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.021890e+05 7.021890e+05 0.00 NULL
2018 Campaign Finance Board College Aide 2491.29773 2.740428e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 2.740428e+04 2.740428e+04 0.00 NULL
2018 Campaign Finance Board Deputy Executive Director Campaign Finance Board 145000.00000 2.900000e+05 5546.01 2.773005e+03 2773.005 60.25 2 2.773005e+03 5546.01 2.955460e+05 2.955460e+05 0.00 NULL
2018 Campaign Finance Board Director Of Public Relations 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2018 Campaign Finance Board Executive Agency Counsel 177524.66667 5.325740e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.325740e+05 5.325740e+05 0.00 NULL
2018 Campaign Finance Board Executive Director 244840.00000 2.448400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.448400e+05 2.448400e+05 0.00 NULL
2018 Campaign Finance Board Secretary To The Executive Director 109798.00000 1.097980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.097980e+05 1.097980e+05 0.00 NULL
2018 Campaign Finance Board Systems Administrator-Cam Fin Bd 83101.98240 1.994448e+06 40464.03 1.686001e+03 0.000 690.50 24 0.000000e+00 0.00 2.034912e+06 1.994448e+06 40464.03 NULL
2018 City Clerk Administrative Investigator 75875.00000 7.587500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.587500e+04 7.587500e+04 0.00 NULL
2018 City Clerk Administrative Management Auditor 167385.00000 1.673850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.673850e+05 1.673850e+05 0.00 NULL
2018 City Clerk Assistant Administrator 77284.00000 7.728400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.728400e+04 7.728400e+04 0.00 NULL
2018 City Clerk Associate Investigator 54681.00000 1.093620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.093620e+05 1.093620e+05 0.00 NULL
2018 City Clerk Chief Of Staff 99560.00000 9.956000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.956000e+04 9.956000e+04 0.00 NULL
2018 City Clerk City Clerk & Clerk Of Council 221754.00000 2.217540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.217540e+05 2.217540e+05 0.00 NULL
2018 City Clerk Clerical Associate 41356.24390 1.695606e+06 757.85 1.848415e+01 0.000 6.25 41 0.000000e+00 0.00 1.696364e+06 1.695606e+06 757.85 NULL
2018 City Clerk College Aide 8726.09375 1.047131e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.047131e+05 1.047131e+05 0.00 NULL
2018 City Clerk Community Assistant 40000.00000 4.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.000000e+04 4.000000e+04 0.00 NULL
2018 City Clerk Community Associate 45152.60000 2.257630e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.257630e+05 2.257630e+05 0.00 NULL
2018 City Clerk Community Coordinator 77898.00000 2.336940e+05 1205.84 4.019467e+02 0.000 10.25 3 0.000000e+00 0.00 2.348998e+05 2.336940e+05 1205.84 NULL
2018 City Clerk Deputy City Clerk 120956.33333 7.257380e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.257380e+05 7.257380e+05 0.00 NULL
2018 City Clerk Executive Agency Counsel 150474.00000 1.504740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.504740e+05 1.504740e+05 0.00 NULL
2018 City Clerk Executive Assistant To The City Clerk 83005.00000 8.300500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.300500e+04 8.300500e+04 0.00 NULL
2018 City Clerk Executive Assistant To The First Deputy Clerk 46824.00000 4.682400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.682400e+04 4.682400e+04 0.00 NULL
2018 City Clerk Principal Administrative Associate - Lev 1 & 2 Non Supvr 62876.50000 1.257530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.257530e+05 1.257530e+05 0.00 NULL
2018 City Clerk Public Records Officer 56393.00000 5.639300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.639300e+04 5.639300e+04 0.00 NULL
2018 City Clerk Secretary 31563.00000 3.156300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.156300e+04 3.156300e+04 0.00 NULL
2018 City Clerk Special Advisor To City Clerk 65068.79500 6.506879e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.506879e+04 6.506879e+04 0.00 NULL
2018 City Council Assistant Director Of Administration 132038.85714 9.242720e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.242720e+05 9.242720e+05 0.00 NULL
2018 City Council Assistant Director Of Finance 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2018 City Council Assistant Director Of Legal Services 109187.85714 7.643150e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.643150e+05 7.643150e+05 0.00 NULL
2018 City Council Assistant Sergeant At Arms 44356.00000 4.879160e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 4.879160e+05 4.879160e+05 0.00 NULL
2018 City Council Chief Of Staff 218381.50000 4.367630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.367630e+05 4.367630e+05 0.00 NULL
2018 City Council Communication Assistant 66713.90000 6.671390e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 6.671390e+05 6.671390e+05 0.00 NULL
2018 City Council Council Member 148500.00000 8.761500e+06 0.00 0.000000e+00 0.000 0.00 59 0.000000e+00 0.00 8.761500e+06 8.761500e+06 0.00 NULL
2018 City Council Councilmanic Aide 44964.95889 2.513541e+07 0.00 0.000000e+00 0.000 0.00 559 0.000000e+00 0.00 2.513541e+07 2.513541e+07 0.00 NULL
2018 City Council Deputy Chief Of Staff 179181.50000 3.583630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.583630e+05 3.583630e+05 0.00 NULL
2018 City Council Deputy Director 115287.93333 1.729319e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.729319e+06 1.729319e+06 0.00 NULL
2018 City Council Deputy Director- Finance 156672.50000 6.266900e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.266900e+05 6.266900e+05 0.00 NULL
2018 City Council Deputy Director-Legal Division 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2018 City Council Director 139124.20000 1.391242e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.391242e+06 1.391242e+06 0.00 NULL
2018 City Council Director Legal Division/Gen Counsel& Spec Counsel 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2018 City Council Director Of Council Services Bureau 175100.00000 1.751000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.751000e+05 1.751000e+05 0.00 NULL
2018 City Council Director Of Finance 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2018 City Council Director Of Land Use Division 168920.00000 1.689200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.689200e+05 1.689200e+05 0.00 NULL
2018 City Council Director-Office Of Communications 150000.00000 3.000000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.000000e+05 3.000000e+05 0.00 NULL
2018 City Council Director-Office Of Policy 135000.00000 2.700000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.700000e+05 2.700000e+05 0.00 NULL
2018 City Council Executive Legislative Coordinator 171367.50000 3.427350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.427350e+05 3.427350e+05 0.00 NULL
2018 City Council Legislative Administrative Assistant 54075.25000 8.652040e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 8.652040e+05 8.652040e+05 0.00 NULL
2018 City Council Legislative Administrative Manager 82225.85714 5.755810e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.755810e+05 5.755810e+05 0.00 NULL
2018 City Council Legislative Analyst 68624.00000 6.862400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.862400e+04 6.862400e+04 0.00 NULL
2018 City Council Legislative Assistant 56234.82950 4.555021e+06 0.00 0.000000e+00 0.000 0.00 81 0.000000e+00 0.00 4.555021e+06 4.555021e+06 0.00 NULL
2018 City Council Legislative Clerk 31949.78500 3.194978e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 3.194978e+05 3.194978e+05 0.00 NULL
2018 City Council Legislative Computer Support Specialist 65875.00000 5.270000e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.270000e+05 5.270000e+05 0.00 NULL
2018 City Council Legislative Coordinator 70248.28571 4.917380e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.917380e+05 4.917380e+05 0.00 NULL
2018 City Council Legislative Counsel 88666.60345 5.142663e+06 0.00 0.000000e+00 0.000 0.00 58 0.000000e+00 0.00 5.142663e+06 5.142663e+06 0.00 NULL
2018 City Council Legislative Financial Analyst 56883.08696 1.308311e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 1.308311e+06 1.308311e+06 0.00 NULL
2018 City Council Legislative Intern 2527.65517 7.330200e+04 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 7.330200e+04 7.330200e+04 0.00 NULL
2018 City Council Legislative Investigator 63197.00000 2.527880e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.527880e+05 2.527880e+05 0.00 NULL
2018 City Council Legislative Messenger 36455.33333 1.093660e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.093660e+05 1.093660e+05 0.00 NULL
2018 City Council Legislative Policy Analyst 62532.08333 1.500770e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 1.500770e+06 1.500770e+06 0.00 NULL
2018 City Council Legislative Programmer/Analyst 68500.00000 1.370000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.370000e+05 1.370000e+05 0.00 NULL
2018 City Council Legislative Project Manager 79324.83333 4.759490e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.759490e+05 4.759490e+05 0.00 NULL
2018 City Council Legislative Support Service Coord 46572.66667 1.397180e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.397180e+05 1.397180e+05 0.00 NULL
2018 City Council Legislative Systems Manager 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2018 City Council Minority Leader 148500.00000 1.485000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.485000e+05 1.485000e+05 0.00 NULL
2018 City Council Principal Legislative Financial Analyst 89612.50000 7.169000e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.169000e+05 7.169000e+05 0.00 NULL
2018 City Council Senior Legislative Financial Analyst 73240.00000 3.662000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.662000e+05 3.662000e+05 0.00 NULL
2018 City Council Senior Legislative Policy Analyst 72090.66667 6.488160e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 6.488160e+05 6.488160e+05 0.00 NULL
2018 City Council Sergeant At Arms 95018.00000 9.501800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.501800e+04 9.501800e+04 0.00 NULL
2018 City Council Speaker/Majority Leader 164500.00000 3.290000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.290000e+05 3.290000e+05 0.00 NULL
2018 City Council Special Advisor To The Director 127777.77778 1.150000e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.150000e+06 1.150000e+06 0.00 NULL
2018 Civil Service Commission Agency Attorney 76941.66667 2.308250e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.308250e+05 2.308250e+05 0.00 NULL
2018 Civil Service Commission Chairman 1399.89030 1.399890e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.399890e+03 1.399890e+03 0.00 NULL
2018 Civil Service Commission Commissioner 1225.96690 4.903868e+03 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.903868e+03 4.903868e+03 0.00 NULL
2018 Civil Service Commission Community Associate 47245.33333 1.417360e+05 255.93 8.531000e+01 0.000 9.50 3 0.000000e+00 0.00 1.419919e+05 1.417360e+05 255.93 NULL
2018 Civil Service Commission Executive Agency Counsel 138900.00000 1.389000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.389000e+05 1.389000e+05 0.00 NULL
2018 Civil Service Commission Secretary Of The Commission 104721.00000 1.047210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.047210e+05 1.047210e+05 0.00 NULL
2018 Civilian Complaint Review Bd Adm Manager-Non-Mgrl From M1/M2 93387.00000 9.338700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.338700e+04 9.338700e+04 0.00 NULL
2018 Civilian Complaint Review Bd Administrative Public Information Specialist 103860.25000 4.154410e+05 -2744.39 -6.860975e+02 0.000 0.00 4 -6.860975e+02 -2744.39 4.126966e+05 4.126966e+05 0.00 NULL
2018 Civilian Complaint Review Bd Administrative Staff Analyst 118000.00000 1.180000e+05 36399.29 3.639929e+04 36399.290 460.00 1 3.639929e+04 36399.29 1.543993e+05 1.543993e+05 0.00 NULL
2018 Civilian Complaint Review Bd Certified It Administrator 95000.00000 9.500000e+04 9546.67 9.546670e+03 9546.670 152.50 1 9.546670e+03 9546.67 1.045467e+05 1.045467e+05 0.00 NULL
2018 Civilian Complaint Review Bd Clerical Associate 48455.45500 1.938218e+05 25154.01 6.288502e+03 883.030 593.00 4 8.830300e+02 3532.12 2.189758e+05 1.973539e+05 21621.89 NULL
2018 Civilian Complaint Review Bd Community Assistant 29621.56470 1.481078e+05 13430.93 2.686186e+03 63.000 561.75 5 6.300000e+01 315.00 1.615388e+05 1.484228e+05 13115.93 NULL
2018 Civilian Complaint Review Bd Community Associate 40391.85292 4.847022e+05 20323.33 1.693611e+03 459.015 629.75 12 4.590150e+02 5508.18 5.050256e+05 4.902104e+05 14815.15 NULL
2018 Civilian Complaint Review Bd Community Coordinator 71833.33333 4.310000e+05 1896.55 3.160917e+02 0.000 40.50 6 0.000000e+00 0.00 4.328965e+05 4.310000e+05 1896.55 NULL
2018 Civilian Complaint Review Bd Computer Operations Manager 118300.00000 1.183000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.183000e+05 1.183000e+05 0.00 NULL
2018 Civilian Complaint Review Bd Computer Specialist 96000.00000 9.600000e+04 2798.03 2.798030e+03 2798.030 47.00 1 2.798030e+03 2798.03 9.879803e+04 9.879803e+04 0.00 NULL
2018 Civilian Complaint Review Bd Computer Systems Manager 95125.00000 1.902500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.902500e+05 1.902500e+05 0.00 NULL
2018 Civilian Complaint Review Bd Deputy Assistant Director 106310.82353 1.807284e+06 411.40 2.420000e+01 0.000 0.00 17 0.000000e+00 0.00 1.807695e+06 1.807284e+06 411.40 NULL
2018 Civilian Complaint Review Bd Deputy Executive Director 153400.00000 7.670000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.670000e+05 7.670000e+05 0.00 NULL
2018 Civilian Complaint Review Bd Executive Agency Counsel 104894.68750 1.678315e+06 2830.45 1.769031e+02 0.000 91.50 16 0.000000e+00 0.00 1.681145e+06 1.678315e+06 2830.45 NULL
2018 Civilian Complaint Review Bd Executive Director 195000.00000 1.950000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.950000e+05 1.950000e+05 0.00 NULL
2018 Civilian Complaint Review Bd Executive Program Specialist 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2018 Civilian Complaint Review Bd Investigative Manager 96756.31579 1.838370e+06 6327.51 3.330268e+02 0.000 145.00 19 0.000000e+00 0.00 1.844698e+06 1.838370e+06 6327.51 NULL
2018 Civilian Complaint Review Bd Investigator 53728.00000 6.017536e+06 272448.31 2.432574e+03 813.940 7500.00 112 8.139400e+02 91161.28 6.289984e+06 6.108697e+06 181287.03 NULL
2018 Civilian Complaint Review Bd Member, Civilian Complaint Review Board 134.50500 1.345050e+03 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.345050e+03 1.345050e+03 0.00 NULL
2018 Civilian Complaint Review Bd Principal Administrative Associate - Lev 1 & 2 Non Supvr 58000.00000 5.800000e+04 16203.09 1.620309e+04 16203.090 362.00 1 1.620309e+04 16203.09 7.420309e+04 7.420309e+04 0.00 NULL
2018 Civilian Complaint Review Bd Procurement Analyst 72353.00000 7.235300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.235300e+04 7.235300e+04 0.00 NULL
2018 Civilian Complaint Review Bd Secretary 58000.00000 1.160000e+05 26578.56 1.328928e+04 13289.280 564.00 2 1.328928e+04 26578.56 1.425786e+05 1.425786e+05 0.00 NULL
2018 Civilian Complaint Review Bd Special Officer 13818.75000 1.381875e+04 3918.75 3.918750e+03 3918.750 138.75 1 3.918750e+03 3918.75 1.773750e+04 1.773750e+04 0.00 NULL
2018 Civilian Complaint Review Bd Strategic Initiative Specialist 52000.00000 5.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.200000e+04 5.200000e+04 0.00 NULL
2018 Civilian Complaint Review Bd Summer College Intern 2247.00000 4.494000e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.494000e+03 4.494000e+03 0.00 NULL
2018 Civilian Complaint Review Bd Summer Graduate Intern 1764.00000 1.764000e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.764000e+03 1.764000e+03 0.00 NULL
2018 Civilian Complaint Review Bd Supervisor Of Investigators 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2018 Community College (Bronx) ?Assistant Purchasing Agent 41938.00000 1.258140e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.258140e+05 1.258140e+05 0.00 NULL
2018 Community College (Bronx) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 162 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Bronx) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Bronx) Adjunct College Lab Tech 7088.71702 3.331697e+05 0.00 0.000000e+00 0.000 0.00 47 0.000000e+00 0.00 3.331697e+05 3.331697e+05 0.00 NULL
2018 Community College (Bronx) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 507 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Bronx) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Bronx) Adjunct Senior College Lab Tech 15464.84500 1.546484e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.546484e+04 1.546484e+04 0.00 NULL
2018 Community College (Bronx) Administrator 161713.33333 4.851400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.851400e+05 4.851400e+05 0.00 NULL
2018 Community College (Bronx) Administrator Supt Campus B/G 96688.00000 9.668800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.668800e+04 9.668800e+04 0.00 NULL
2018 Community College (Bronx) Assistant Administrator 136633.00000 2.732660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.732660e+05 2.732660e+05 0.00 NULL
2018 Community College (Bronx) Assistant College Security Director 87898.50000 1.757970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.757970e+05 1.757970e+05 0.00 NULL
2018 Community College (Bronx) Assistant Dean 128282.00000 1.282820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.282820e+05 1.282820e+05 0.00 NULL
2018 Community College (Bronx) Assistant Principal Custodial Supervisor 43503.00000 4.350300e+04 3584.70 3.584700e+03 3584.700 111.50 1 3.584700e+03 3584.70 4.708770e+04 4.708770e+04 0.00 NULL
2018 Community College (Bronx) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 166 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Bronx) Assistant To Heo 62487.88235 3.186882e+06 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 3.186882e+06 3.186882e+06 0.00 NULL
2018 Community College (Bronx) Assistant Vice President 148457.66667 4.453730e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.453730e+05 4.453730e+05 0.00 NULL
2018 Community College (Bronx) Associate Administrator 142000.00000 1.420000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.420000e+05 1.420000e+05 0.00 NULL
2018 Community College (Bronx) Associate Dean 141974.00000 4.259220e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.259220e+05 4.259220e+05 0.00 NULL
2018 Community College (Bronx) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 100 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Bronx) Auto Mechanic NA NA 13779.03 6.889515e+03 6889.515 238.50 2 6.889515e+03 13779.03 NA NA NA NULL
2018 Community College (Bronx) Business Data And Reporting Analyst 44933.00000 4.493300e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.493300e+05 4.493300e+05 0.00 NULL
2018 Community College (Bronx) Campus Peace Officer 39931.70000 1.197951e+06 148095.61 4.936520e+03 2056.555 4675.65 30 2.056555e+03 61696.65 1.346047e+06 1.259648e+06 86398.96 NULL
2018 Community College (Bronx) Campus Public Safety Sergeant 55606.27273 6.116690e+05 72479.36 6.589033e+03 4671.540 1823.09 11 4.671540e+03 51386.94 6.841484e+05 6.630559e+05 21092.42 NULL
2018 Community College (Bronx) Campus Security Assistant 24993.80183 1.124721e+06 81938.72 1.820860e+03 867.080 3578.83 45 8.670800e+02 39018.60 1.206660e+06 1.163740e+06 42920.12 NULL
2018 Community College (Bronx) Carpenter NA NA 27864.24 9.288080e+03 11827.810 257.75 3 9.288080e+03 27864.24 NA NA NA NULL
2018 Community College (Bronx) Cement Mason NA NA 10184.76 1.018476e+04 10184.760 96.00 1 1.018476e+04 10184.76 NA NA NA NULL
2018 Community College (Bronx) Chief Administrative Supt Campus B/G 113579.00000 1.135790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.135790e+05 1.135790e+05 0.00 NULL
2018 Community College (Bronx) Chief College Lab Technician 79798.33333 2.393950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.393950e+05 2.393950e+05 0.00 NULL
2018 Community College (Bronx) City Laborer NA NA 115151.20 1.151512e+04 11273.175 1648.25 10 1.127317e+04 112731.75 NA NA NA NULL
2018 Community College (Bronx) Clip Instructor 46585.09091 5.124360e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.124360e+05 5.124360e+05 0.00 NULL
2018 Community College (Bronx) College Accountant 54356.00000 2.174240e+05 1805.84 4.514600e+02 0.000 50.50 4 0.000000e+00 0.00 2.192298e+05 2.174240e+05 1805.84 NULL
2018 Community College (Bronx) College Accounting Assistant 43032.83333 2.581970e+05 206.15 3.435833e+01 0.000 7.75 6 0.000000e+00 0.00 2.584031e+05 2.581970e+05 206.15 NULL
2018 Community College (Bronx) College Assistant 6849.98890 3.486644e+06 309.95 6.089391e-01 0.000 15.25 509 0.000000e+00 0.00 3.486954e+06 3.486644e+06 309.95 NULL
2018 Community College (Bronx) College Graph Designer 59572.00000 5.957200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.957200e+04 5.957200e+04 0.00 NULL
2018 Community College (Bronx) College Lab Technician 50461.98529 8.578538e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 8.578538e+05 8.578538e+05 0.00 NULL
2018 Community College (Bronx) College Print Shop Assistant 36184.00000 3.618400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.618400e+04 3.618400e+04 0.00 NULL
2018 Community College (Bronx) College Print Shop Associate 41791.00000 8.358200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.358200e+04 8.358200e+04 0.00 NULL
2018 Community College (Bronx) College Security Director 126763.00000 1.267630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.267630e+05 1.267630e+05 0.00 NULL
2018 Community College (Bronx) College Security Specialist 60146.80000 3.007340e+05 66551.13 1.331023e+04 12966.350 1486.50 5 1.296635e+04 64831.75 3.672851e+05 3.655658e+05 1719.38 NULL
2018 Community College (Bronx) Computer Systems Manager 102531.50000 4.101260e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.101260e+05 4.101260e+05 0.00 NULL
2018 Community College (Bronx) Continuing Education Teacher 9755.83371 6.829084e+05 0.00 0.000000e+00 0.000 0.00 70 0.000000e+00 0.00 6.829084e+05 6.829084e+05 0.00 NULL
2018 Community College (Bronx) Cuny Administrator Assistant 51683.53846 6.718860e+05 15394.24 1.184172e+03 0.000 374.75 13 0.000000e+00 0.00 6.872802e+05 6.718860e+05 15394.24 NULL
2018 Community College (Bronx) Cuny Art Model 500.00000 1.000000e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.000000e+03 1.000000e+03 0.00 NULL
2018 Community College (Bronx) Cuny Custodial Assistant 31476.20909 1.731192e+06 21458.32 3.901513e+02 95.070 909.25 55 9.507000e+01 5228.85 1.752650e+06 1.736420e+06 16229.47 NULL
2018 Community College (Bronx) Cuny Office Assistant 34751.06593 3.162347e+06 16662.10 1.831000e+02 0.000 692.84 91 0.000000e+00 0.00 3.179009e+06 3.162347e+06 16662.10 NULL
2018 Community College (Bronx) Cuny Start Instructor 56691.22222 5.102210e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.102210e+05 5.102210e+05 0.00 NULL
2018 Community College (Bronx) Custodial Supervisor 35262.85714 2.468400e+05 4457.14 6.367343e+02 0.000 165.50 7 0.000000e+00 0.00 2.512971e+05 2.468400e+05 4457.14 NULL
2018 Community College (Bronx) Dean 158484.25000 6.339370e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.339370e+05 6.339370e+05 0.00 NULL
2018 Community College (Bronx) Disability Accommodations Specialist 56305.00000 5.630500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.630500e+04 5.630500e+04 0.00 NULL
2018 Community College (Bronx) Electrician NA NA 83973.27 1.049666e+04 10046.685 776.25 8 1.004668e+04 80373.48 NA NA NA NULL
2018 Community College (Bronx) Eoc Accounting Assistant 41204.00000 4.120400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.120400e+04 4.120400e+04 0.00 NULL
2018 Community College (Bronx) Eoc Adjunct Lecturer 9938.22607 1.391352e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.391352e+05 1.391352e+05 0.00 NULL
2018 Community College (Bronx) Eoc Administrative Assistant 51906.50000 1.038130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.038130e+05 1.038130e+05 0.00 NULL
2018 Community College (Bronx) Eoc Assistant To Heo 57380.11111 5.164210e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.164210e+05 5.164210e+05 0.00 NULL
2018 Community College (Bronx) Eoc College Lab Technician 62786.00000 1.255720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.255720e+05 1.255720e+05 0.00 NULL
2018 Community College (Bronx) Eoc Custodial Assistant 32779.00000 6.555800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.555800e+04 6.555800e+04 0.00 NULL
2018 Community College (Bronx) Eoc Custodial Supervisor 35585.00000 3.558500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.558500e+04 3.558500e+04 0.00 NULL
2018 Community College (Bronx) Eoc Higher Education Assistant 77353.66667 2.320610e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.320610e+05 2.320610e+05 0.00 NULL
2018 Community College (Bronx) Eoc Higher Education Associate 81302.50000 1.626050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.626050e+05 1.626050e+05 0.00 NULL
2018 Community College (Bronx) Eoc Higher Education Officer 112905.00000 2.258100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.258100e+05 2.258100e+05 0.00 NULL
2018 Community College (Bronx) Eoc Lecturer 75459.50000 1.509190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.509190e+05 1.509190e+05 0.00 NULL
2018 Community College (Bronx) Eoc Office Assistant 31826.45455 3.500910e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 3.500910e+05 3.500910e+05 0.00 NULL
2018 Community College (Bronx) High Pressure Plant Tender NA NA 49162.32 8.193720e+03 9846.835 926.25 6 8.193720e+03 49162.32 NA NA NA NULL
2018 Community College (Bronx) Higher Education Assistant 73196.63218 6.368107e+06 6863.29 7.888839e+01 0.000 106.25 87 0.000000e+00 0.00 6.374970e+06 6.368107e+06 6863.29 NULL
2018 Community College (Bronx) Higher Education Associate 91639.54054 3.390663e+06 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 3.390663e+06 3.390663e+06 0.00 NULL
2018 Community College (Bronx) Higher Education Officer 117198.17143 4.101936e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 4.101936e+06 4.101936e+06 0.00 NULL
2018 Community College (Bronx) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Bronx) It Assistant 54198.16667 6.503780e+05 1654.19 1.378492e+02 0.000 35.50 12 0.000000e+00 0.00 6.520322e+05 6.503780e+05 1654.19 NULL
2018 Community College (Bronx) It Associate 78489.66667 4.709380e+05 340.14 5.669000e+01 0.000 6.50 6 0.000000e+00 0.00 4.712781e+05 4.709380e+05 340.14 NULL
2018 Community College (Bronx) It Senior Associate 107987.50000 2.159750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.159750e+05 2.159750e+05 0.00 NULL
2018 Community College (Bronx) It Support Assistant 25664.59604 1.129242e+06 6767.95 1.538170e+02 0.000 222.25 44 0.000000e+00 0.00 1.136010e+06 1.129242e+06 6767.95 NULL
2018 Community College (Bronx) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 95 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Bronx) Lecturer/Doctoral Schedule 68359.00000 1.367180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.367180e+05 1.367180e+05 0.00 NULL
2018 Community College (Bronx) Locksmith NA NA 6656.30 3.328150e+03 3328.150 163.75 2 3.328150e+03 6656.30 NA NA NA NULL
2018 Community College (Bronx) Mail/Message Services Worker 35474.50000 7.094900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.094900e+04 7.094900e+04 0.00 NULL
2018 Community College (Bronx) Maintenance Worker NA NA 26323.79 2.924866e+03 1566.000 610.25 9 1.566000e+03 14094.00 NA NA NA NULL
2018 Community College (Bronx) Media Services Technician 56268.00000 5.626800e+04 8092.27 8.092270e+03 8092.270 202.00 1 8.092270e+03 8092.27 6.436027e+04 6.436027e+04 0.00 NULL
2018 Community College (Bronx) Motor Vehicle Operator 44116.00000 4.411600e+04 8571.61 8.571610e+03 8571.610 268.75 1 8.571610e+03 8571.61 5.268761e+04 5.268761e+04 0.00 NULL
2018 Community College (Bronx) Non-Teaching Adjunct I 587.84000 5.878400e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.878400e+02 5.878400e+02 0.00 NULL
2018 Community College (Bronx) Non-Teaching Adjunct Ii 2336.37163 6.331567e+05 0.00 0.000000e+00 0.000 0.00 271 0.000000e+00 0.00 6.331567e+05 6.331567e+05 0.00 NULL
2018 Community College (Bronx) Non-Teaching Adjunct Iii 581.38253 5.174304e+04 0.00 0.000000e+00 0.000 0.00 89 0.000000e+00 0.00 5.174304e+04 5.174304e+04 0.00 NULL
2018 Community College (Bronx) Non-Teaching Adjunct Iv NA NA 0.00 0.000000e+00 0.000 0.00 42 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Bronx) Non-Teaching Adjunct V 2825.52288 1.130209e+05 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 1.130209e+05 1.130209e+05 0.00 NULL
2018 Community College (Bronx) Oiler NA NA 9304.43 4.652215e+03 4652.215 81.50 2 4.652215e+03 9304.43 NA NA NA NULL
2018 Community College (Bronx) Painter NA NA 18706.94 2.672420e+03 3228.320 179.50 7 2.672420e+03 18706.94 NA NA NA NULL
2018 Community College (Bronx) Plumber NA NA 66667.24 3.333362e+04 33333.620 519.50 2 3.333362e+04 66667.24 NA NA NA NULL
2018 Community College (Bronx) Plumber’s Helper NA NA 35589.69 1.779485e+04 17794.845 426.75 2 1.779485e+04 35589.69 NA NA NA NULL
2018 Community College (Bronx) President 226000.00000 2.260000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.260000e+05 2.260000e+05 0.00 NULL
2018 Community College (Bronx) Principal Custodial Supervisor 60704.00000 6.070400e+04 3832.97 3.832970e+03 3832.970 83.50 1 3.832970e+03 3832.97 6.453697e+04 6.453697e+04 0.00 NULL
2018 Community College (Bronx) Professor NA NA 0.00 0.000000e+00 0.000 0.00 117 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Bronx) Project Manager 91331.50000 1.826630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.826630e+05 1.826630e+05 0.00 NULL
2018 Community College (Bronx) Senior College Lab Tech 66057.25000 7.926870e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.926870e+05 7.926870e+05 0.00 NULL
2018 Community College (Bronx) Senior Custodial Supervisor 38816.00000 1.164480e+05 2906.05 9.686833e+02 945.840 59.25 3 9.458400e+02 2837.52 1.193541e+05 1.192855e+05 68.53 NULL
2018 Community College (Bronx) Senior Stationary Engineer NA NA 41463.43 2.073172e+04 20731.715 247.00 2 2.073172e+04 41463.43 NA NA NA NULL
2018 Community College (Bronx) Senior Vice President 208547.50000 4.170950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.170950e+05 4.170950e+05 0.00 NULL
2018 Community College (Bronx) Stationary Engineer NA NA 78301.08 1.118587e+04 10996.830 810.00 7 1.099683e+04 76977.81 NA NA NA NULL
2018 Community College (Bronx) Steam Fitter NA NA 55495.00 2.774750e+04 27747.500 492.00 2 2.774750e+04 55495.00 NA NA NA NULL
2018 Community College (Bronx) Stock Worker 33970.66667 2.038240e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.038240e+05 2.038240e+05 0.00 NULL
2018 Community College (Bronx) Student Aide 2981.73750 1.550504e+05 0.00 0.000000e+00 0.000 0.00 52 0.000000e+00 0.00 1.550504e+05 1.550504e+05 0.00 NULL
2018 Community College (Bronx) Supervisor Carpenter NA NA 14138.90 1.413890e+04 14138.900 162.00 1 1.413890e+04 14138.90 NA NA NA NULL
2018 Community College (Bronx) Supervisor Electrician NA NA 65731.95 6.573195e+04 65731.950 575.00 1 6.573195e+04 65731.95 NA NA NA NULL
2018 Community College (Bronx) Supervisor Painter NA NA 2484.66 2.484660e+03 2484.660 15.50 1 2.484660e+03 2484.66 NA NA NA NULL
2018 Community College (Bronx) Thermostat Repairer NA NA 16214.96 8.107480e+03 8107.480 137.00 2 8.107480e+03 16214.96 NA NA NA NULL
2018 Community College (Bronx) Vice President 176289.00000 5.288670e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.288670e+05 5.288670e+05 0.00 NULL
2018 Community College (Hostos) ?Assistant Purchasing Agent 42777.00000 8.555400e+04 2868.21 1.434105e+03 1434.105 61.50 2 1.434105e+03 2868.21 8.842221e+04 8.842221e+04 0.00 NULL
2018 Community College (Hostos) ?Purchasing Agent 58413.00000 5.841300e+04 3551.26 3.551260e+03 3551.260 61.50 1 3.551260e+03 3551.26 6.196426e+04 6.196426e+04 0.00 NULL
2018 Community College (Hostos) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 125 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Hostos) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Hostos) Adjunct College Lab Tech 13236.44571 9.265512e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.265512e+04 9.265512e+04 0.00 NULL
2018 Community College (Hostos) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 201 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Hostos) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Hostos) Administrator 147704.00000 1.477040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.477040e+05 1.477040e+05 0.00 NULL
2018 Community College (Hostos) Administrator Supt Campus B/G 86120.00000 8.612000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.612000e+04 8.612000e+04 0.00 NULL
2018 Community College (Hostos) Assistant Administrator 114881.00000 1.148810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.148810e+05 1.148810e+05 0.00 NULL
2018 Community College (Hostos) Assistant College Security Director 76588.50000 1.531770e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.531770e+05 1.531770e+05 0.00 NULL
2018 Community College (Hostos) Assistant Dean 119115.75000 4.764630e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.764630e+05 4.764630e+05 0.00 NULL
2018 Community College (Hostos) Assistant Principal Custodial Supervisor 43503.00000 4.350300e+04 10431.23 1.043123e+04 10431.230 316.25 1 1.043123e+04 10431.23 5.393423e+04 5.393423e+04 0.00 NULL
2018 Community College (Hostos) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 117 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Hostos) Assistant To Heo 47435.25000 2.656374e+06 4812.42 8.593607e+01 0.000 120.25 56 0.000000e+00 0.00 2.661186e+06 2.656374e+06 4812.42 NULL
2018 Community College (Hostos) Assistant Vice President 161380.00000 3.227600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.227600e+05 3.227600e+05 0.00 NULL
2018 Community College (Hostos) Associate Administrator 134574.00000 1.345740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.345740e+05 1.345740e+05 0.00 NULL
2018 Community College (Hostos) Associate Dean 130236.00000 3.907080e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.907080e+05 3.907080e+05 0.00 NULL
2018 Community College (Hostos) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 45 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Hostos) Business Data And Reporting Analyst 40639.00000 4.063900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.063900e+04 4.063900e+04 0.00 NULL
2018 Community College (Hostos) Campus Peace Officer 41672.69231 1.083490e+06 308562.45 1.186779e+04 8502.140 9631.75 26 8.502140e+03 221055.64 1.392052e+06 1.304546e+06 87506.81 NULL
2018 Community College (Hostos) Campus Public Safety Sergeant 55370.00000 3.322200e+05 76445.26 1.274088e+04 13233.300 1853.50 6 1.274088e+04 76445.26 4.086653e+05 4.086653e+05 0.00 NULL
2018 Community College (Hostos) Campus Security Assistant 27196.04464 3.807446e+05 66811.69 4.772264e+03 4380.405 2934.50 14 4.380405e+03 61325.67 4.475563e+05 4.420703e+05 5486.02 NULL
2018 Community College (Hostos) Carpenter NA NA 598.56 5.985600e+02 598.560 8.00 1 5.985600e+02 598.56 NA NA NA NULL
2018 Community College (Hostos) Chief Administrative Supt Campus B/G 142233.00000 1.422330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.422330e+05 1.422330e+05 0.00 NULL
2018 Community College (Hostos) City Laborer NA NA 40627.37 8.125474e+03 7317.160 691.30 5 7.317160e+03 36585.80 NA NA NA NULL
2018 Community College (Hostos) Clip Instructor 50296.83333 6.035620e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 6.035620e+05 6.035620e+05 0.00 NULL
2018 Community College (Hostos) College Accountant 58941.00000 5.894100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.894100e+04 5.894100e+04 0.00 NULL
2018 Community College (Hostos) College Accounting Assistant 45315.33333 1.359460e+05 148.53 4.951000e+01 0.000 6.50 3 0.000000e+00 0.00 1.360945e+05 1.359460e+05 148.53 NULL
2018 Community College (Hostos) College Assistant 5212.50700 2.809541e+06 0.00 0.000000e+00 0.000 0.00 539 0.000000e+00 0.00 2.809541e+06 2.809541e+06 0.00 NULL
2018 Community College (Hostos) College Graph Designer 60439.00000 6.043900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.043900e+04 6.043900e+04 0.00 NULL
2018 Community College (Hostos) College Lab Technician 61374.62500 4.909970e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.909970e+05 4.909970e+05 0.00 NULL
2018 Community College (Hostos) College Print Shop Assistant 33599.50000 6.719900e+04 11699.76 5.849880e+03 5849.880 446.25 2 5.849880e+03 11699.76 7.889876e+04 7.889876e+04 0.00 NULL
2018 Community College (Hostos) College Security Director 123137.00000 1.231370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.231370e+05 1.231370e+05 0.00 NULL
2018 Community College (Hostos) College Security Specialist 58317.00000 1.166340e+05 20538.44 1.026922e+04 10269.220 477.75 2 1.026922e+04 20538.44 1.371724e+05 1.371724e+05 0.00 NULL
2018 Community College (Hostos) Computer Systems Manager 115000.00000 2.300000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.300000e+05 2.300000e+05 0.00 NULL
2018 Community College (Hostos) Continuing Education Teacher 7035.86737 1.055380e+06 0.00 0.000000e+00 0.000 0.00 150 0.000000e+00 0.00 1.055380e+06 1.055380e+06 0.00 NULL
2018 Community College (Hostos) Cuny Administrator Assistant 54443.90000 5.444390e+05 4989.54 4.989540e+02 0.000 129.75 10 0.000000e+00 0.00 5.494285e+05 5.444390e+05 4989.54 NULL
2018 Community College (Hostos) Cuny Custodial Assistant 31630.02381 1.328461e+06 51273.31 1.220793e+03 469.970 2148.50 42 4.699700e+02 19738.74 1.379734e+06 1.348200e+06 31534.57 NULL
2018 Community College (Hostos) Cuny Office Assistant 36008.25455 1.980454e+06 4354.27 7.916855e+01 0.000 182.25 55 0.000000e+00 0.00 1.984808e+06 1.980454e+06 4354.27 NULL
2018 Community College (Hostos) Cuny Start Instructor 58001.00000 5.220090e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.220090e+05 5.220090e+05 0.00 NULL
2018 Community College (Hostos) Custodial Supervisor 33433.80000 1.671690e+05 6861.85 1.372370e+03 1269.540 275.75 5 1.269540e+03 6347.70 1.740309e+05 1.735167e+05 514.15 NULL
2018 Community College (Hostos) Disability Accommodations Specialist 29289.17792 1.757351e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.757351e+05 1.757351e+05 0.00 NULL
2018 Community College (Hostos) Distinguished Lecturer 124629.00000 1.246290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.246290e+05 1.246290e+05 0.00 NULL
2018 Community College (Hostos) Distinguished Professor 157079.00000 1.570790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.570790e+05 1.570790e+05 0.00 NULL
2018 Community College (Hostos) Electrician NA NA 28799.03 1.439951e+04 14399.515 265.50 2 1.439951e+04 28799.03 NA NA NA NULL
2018 Community College (Hostos) Electrician’s Helper NA NA 282.66 2.826600e+02 282.660 0.00 1 2.826600e+02 282.66 NA NA NA NULL
2018 Community College (Hostos) High Pressure Plant Tender NA NA 20577.47 2.057747e+04 20577.470 356.25 1 2.057747e+04 20577.47 NA NA NA NULL
2018 Community College (Hostos) Higher Education Assistant 65251.43182 5.742126e+06 0.00 0.000000e+00 0.000 0.00 88 0.000000e+00 0.00 5.742126e+06 5.742126e+06 0.00 NULL
2018 Community College (Hostos) Higher Education Associate 94156.37500 3.766255e+06 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 3.766255e+06 3.766255e+06 0.00 NULL
2018 Community College (Hostos) Higher Education Officer 113472.89189 4.198497e+06 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 4.198497e+06 4.198497e+06 0.00 NULL
2018 Community College (Hostos) Instructor 57467.60000 2.873380e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.873380e+05 2.873380e+05 0.00 NULL
2018 Community College (Hostos) It Assistant 47751.60817 7.162741e+05 1892.63 1.261753e+02 0.000 40.75 15 0.000000e+00 0.00 7.181668e+05 7.162741e+05 1892.63 NULL
2018 Community College (Hostos) It Associate 76677.00000 2.300310e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.300310e+05 2.300310e+05 0.00 NULL
2018 Community College (Hostos) It Senior Associate 98456.00000 1.969120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.969120e+05 1.969120e+05 0.00 NULL
2018 Community College (Hostos) It Support Assistant 35159.09075 3.515909e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 3.515909e+05 3.515909e+05 0.00 NULL
2018 Community College (Hostos) Lead Theatre Technician 3901.57113 1.209487e+05 9814.81 3.166068e+02 23.600 257.00 31 2.360000e+01 731.60 1.307635e+05 1.216803e+05 9083.21 NULL
2018 Community College (Hostos) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 55 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Hostos) Lecturer/Doctoral Schedule 75030.50000 1.500610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.500610e+05 1.500610e+05 0.00 NULL
2018 Community College (Hostos) Locksmith NA NA 394.66 3.946600e+02 394.660 12.00 1 3.946600e+02 394.66 NA NA NA NULL
2018 Community College (Hostos) Mail/Message Services Worker 38790.33333 1.163710e+05 7944.10 2.648033e+03 382.860 265.75 3 3.828600e+02 1148.58 1.243151e+05 1.175196e+05 6795.52 NULL
2018 Community College (Hostos) Maintenance Worker NA NA 39362.30 4.920288e+03 2109.925 908.25 8 2.109925e+03 16879.40 NA NA NA NULL
2018 Community College (Hostos) Non-Teaching Adjunct I 2812.39188 2.081170e+05 0.00 0.000000e+00 0.000 0.00 74 0.000000e+00 0.00 2.081170e+05 2.081170e+05 0.00 NULL
2018 Community College (Hostos) Non-Teaching Adjunct Ii 1258.65104 3.020762e+04 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 3.020762e+04 3.020762e+04 0.00 NULL
2018 Community College (Hostos) Non-Teaching Adjunct Iii 1055.76615 5.489984e+04 0.00 0.000000e+00 0.000 0.00 52 0.000000e+00 0.00 5.489984e+04 5.489984e+04 0.00 NULL
2018 Community College (Hostos) Non-Teaching Adjunct Iv 2957.96071 4.141145e+04 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 4.141145e+04 4.141145e+04 0.00 NULL
2018 Community College (Hostos) Non-Teaching Adjunct V 3893.44375 4.672132e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 4.672132e+04 4.672132e+04 0.00 NULL
2018 Community College (Hostos) Oiler NA NA 43563.49 2.178174e+04 21781.745 466.00 2 2.178174e+04 43563.49 NA NA NA NULL
2018 Community College (Hostos) Painter NA NA 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Hostos) Plumber NA NA 9217.74 9.217740e+03 9217.740 87.50 1 9.217740e+03 9217.74 NA NA NA NULL
2018 Community College (Hostos) Plumber’s Helper NA NA 4663.35 4.663350e+03 4663.350 63.00 1 4.663350e+03 4663.35 NA NA NA NULL
2018 Community College (Hostos) President 226000.00000 2.260000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.260000e+05 2.260000e+05 0.00 NULL
2018 Community College (Hostos) Principal Custodial Supervisor 69411.00000 6.941100e+04 16241.30 1.624130e+04 16241.300 322.00 1 1.624130e+04 16241.30 8.565230e+04 8.565230e+04 0.00 NULL
2018 Community College (Hostos) Professor NA NA 0.00 0.000000e+00 0.000 0.00 54 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Hostos) Senior College Lab Tech 66175.20000 3.308760e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.308760e+05 3.308760e+05 0.00 NULL
2018 Community College (Hostos) Senior Custodial Supervisor 38721.00000 3.872100e+04 1738.62 1.738620e+03 1738.620 63.75 1 1.738620e+03 1738.62 4.045962e+04 4.045962e+04 0.00 NULL
2018 Community College (Hostos) Senior Stationary Engineer NA NA 36921.32 3.692132e+04 36921.320 318.50 1 3.692132e+04 36921.32 NA NA NA NULL
2018 Community College (Hostos) Senior Vice President 206250.00000 2.062500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.062500e+05 2.062500e+05 0.00 NULL
2018 Community College (Hostos) Staff Nurse 64630.00000 6.463000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.463000e+04 6.463000e+04 0.00 NULL
2018 Community College (Hostos) Stationary Engineer NA NA 145696.65 3.642416e+04 38340.620 1470.75 4 3.642416e+04 145696.65 NA NA NA NULL
2018 Community College (Hostos) Stock Worker 37205.00000 3.720500e+04 66.17 6.617000e+01 66.170 3.25 1 6.617000e+01 66.17 3.727117e+04 3.727117e+04 0.00 NULL
2018 Community College (Hostos) Supervisor Thermostat Repair NA NA 43772.19 4.377219e+04 43772.190 391.25 1 4.377219e+04 43772.19 NA NA NA NULL
2018 Community College (Hostos) Vice President 162833.25000 6.513330e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.513330e+05 6.513330e+05 0.00 NULL
2018 Community College (Kingsboro) ?Purchasing Agent 60658.25000 2.426330e+05 3519.17 8.797925e+02 0.000 79.75 4 0.000000e+00 0.00 2.461522e+05 2.426330e+05 3519.17 NULL
2018 Community College (Kingsboro) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 99 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Kingsboro) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Kingsboro) Adjunct College Lab Tech 9396.35332 1.287300e+06 0.00 0.000000e+00 0.000 0.00 137 0.000000e+00 0.00 1.287300e+06 1.287300e+06 0.00 NULL
2018 Community College (Kingsboro) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 611 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Kingsboro) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Kingsboro) Administrator 147000.00000 1.470000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.470000e+05 1.470000e+05 0.00 NULL
2018 Community College (Kingsboro) Administrator Supt Campus B/G 109560.00000 3.286800e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.286800e+05 3.286800e+05 0.00 NULL
2018 Community College (Kingsboro) Assistant Administrator 137100.00000 2.742000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.742000e+05 2.742000e+05 0.00 NULL
2018 Community College (Kingsboro) Assistant College Security Director 85760.00000 1.715200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.715200e+05 1.715200e+05 0.00 NULL
2018 Community College (Kingsboro) Assistant Principal Custodial Supervisor 43569.00000 4.356900e+04 7115.86 7.115860e+03 7115.860 223.25 1 7.115860e+03 7115.86 5.068486e+04 5.068486e+04 0.00 NULL
2018 Community College (Kingsboro) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 203 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Kingsboro) Assistant To Heo 56004.95000 3.360297e+06 3493.90 5.823167e+01 0.000 70.00 60 0.000000e+00 0.00 3.363791e+06 3.360297e+06 3493.90 NULL
2018 Community College (Kingsboro) Assistant Vice President 151335.66667 4.540070e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.540070e+05 4.540070e+05 0.00 NULL
2018 Community College (Kingsboro) Associate Administrator 143852.00000 2.877040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.877040e+05 2.877040e+05 0.00 NULL
2018 Community College (Kingsboro) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 130 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Kingsboro) Auto Mechanic NA NA 1420.58 7.102900e+02 710.290 23.50 2 7.102900e+02 1420.58 NA NA NA NULL
2018 Community College (Kingsboro) Campus Peace Officer 38419.36364 8.452260e+05 67545.72 3.070260e+03 2018.840 2541.00 22 2.018840e+03 44414.48 9.127717e+05 8.896405e+05 23131.24 NULL
2018 Community College (Kingsboro) Campus Public Safety Sergeant 55966.15385 7.275600e+05 71879.67 5.529205e+03 4170.960 1645.50 13 4.170960e+03 54222.48 7.994397e+05 7.817825e+05 17657.19 NULL
2018 Community College (Kingsboro) Campus Security Assistant 32316.28571 4.524280e+05 52697.68 3.764120e+03 2696.140 2149.25 14 2.696140e+03 37745.96 5.051257e+05 4.901740e+05 14951.72 NULL
2018 Community College (Kingsboro) Carpenter NA NA 29865.65 1.493283e+04 14932.825 381.50 2 1.493283e+04 29865.65 NA NA NA NULL
2018 Community College (Kingsboro) Chief College Lab Technician 64898.08900 3.244904e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.244904e+05 3.244904e+05 0.00 NULL
2018 Community College (Kingsboro) City Laborer NA NA 86095.76 6.149697e+03 6945.895 1299.50 14 6.149697e+03 86095.76 NA NA NA NULL
2018 Community College (Kingsboro) Clip Instructor 49639.30000 4.963930e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.963930e+05 4.963930e+05 0.00 NULL
2018 Community College (Kingsboro) College Accountant 54353.50000 1.087070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.087070e+05 1.087070e+05 0.00 NULL
2018 Community College (Kingsboro) College Accounting Assistant 42905.75000 1.716230e+05 1386.35 3.465875e+02 58.860 44.00 4 5.886000e+01 235.44 1.730094e+05 1.718584e+05 1150.91 NULL
2018 Community College (Kingsboro) College Assistant 7410.11610 3.875491e+06 512.94 9.807648e-01 0.000 22.25 523 0.000000e+00 0.00 3.876004e+06 3.875491e+06 512.94 NULL
2018 Community College (Kingsboro) College Graph Designer 51801.00000 5.180100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.180100e+04 5.180100e+04 0.00 NULL
2018 Community College (Kingsboro) College Lab Technician 45866.34400 1.146659e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.146659e+06 1.146659e+06 0.00 NULL
2018 Community College (Kingsboro) College Print Shop Assistant 36184.00000 1.085520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.085520e+05 1.085520e+05 0.00 NULL
2018 Community College (Kingsboro) College Print Shop Associate 47617.00000 4.761700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.761700e+04 4.761700e+04 0.00 NULL
2018 Community College (Kingsboro) College Print Shop Coordinator 59450.00000 1.189000e+05 191.94 9.597000e+01 95.970 6.00 2 9.597000e+01 191.94 1.190919e+05 1.190919e+05 0.00 NULL
2018 Community College (Kingsboro) College Security Director 144200.00000 1.442000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.442000e+05 1.442000e+05 0.00 NULL
2018 Community College (Kingsboro) College Security Specialist 58317.00000 1.166340e+05 11374.33 5.687165e+03 5687.165 264.00 2 5.687165e+03 11374.33 1.280083e+05 1.280083e+05 0.00 NULL
2018 Community College (Kingsboro) Computer Operator Manager 100672.33333 3.020170e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.020170e+05 3.020170e+05 0.00 NULL
2018 Community College (Kingsboro) Computer Systems Manager 92545.00000 1.850900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.850900e+05 1.850900e+05 0.00 NULL
2018 Community College (Kingsboro) Continuing Education Teacher NA NA 0.00 0.000000e+00 0.000 0.00 371 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Kingsboro) Cuny Administrator Assistant 50775.72222 9.139630e+05 20545.39 1.141411e+03 0.000 546.25 18 0.000000e+00 0.00 9.345084e+05 9.139630e+05 20545.39 NULL
2018 Community College (Kingsboro) Cuny Broadcast Associate 57132.00000 5.713200e+04 2422.85 2.422850e+03 2422.850 64.00 1 2.422850e+03 2422.85 5.955485e+04 5.955485e+04 0.00 NULL
2018 Community College (Kingsboro) Cuny Custodial Assistant 30135.55934 2.169760e+06 71838.59 9.977582e+02 237.125 2890.75 72 2.371250e+02 17073.00 2.241599e+06 2.186833e+06 54765.59 NULL
2018 Community College (Kingsboro) Cuny Office Assistant 35790.30909 1.968467e+06 15012.77 2.729595e+02 0.000 670.50 55 0.000000e+00 0.00 1.983480e+06 1.968467e+06 15012.77 NULL
2018 Community College (Kingsboro) Cuny Start Instructor 59196.12500 4.735690e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.735690e+05 4.735690e+05 0.00 NULL
2018 Community College (Kingsboro) Custodial Supervisor 35933.25000 1.437330e+05 2044.06 5.110150e+02 591.680 78.50 4 5.110150e+02 2044.06 1.457771e+05 1.457771e+05 0.00 NULL
2018 Community College (Kingsboro) Dean 148969.50000 5.958780e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.958780e+05 5.958780e+05 0.00 NULL
2018 Community College (Kingsboro) Disability Accommodations Specialist 18812.58250 3.762517e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.762517e+04 3.762517e+04 0.00 NULL
2018 Community College (Kingsboro) Electrician NA NA 53899.18 1.077984e+04 238.350 589.00 5 2.383500e+02 1191.75 NA NA NA NULL
2018 Community College (Kingsboro) Electrician’s Helper NA NA 3899.28 1.949640e+03 1949.640 49.00 2 1.949640e+03 3899.28 NA NA NA NULL
2018 Community College (Kingsboro) Facilities Coordinator 67075.50000 1.341510e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.341510e+05 1.341510e+05 0.00 NULL
2018 Community College (Kingsboro) High Pressure Plant Tender NA NA 43028.13 6.146876e+03 8242.500 839.50 7 6.146876e+03 43028.13 NA NA NA NULL
2018 Community College (Kingsboro) Higher Education Assistant 68994.10976 5.657517e+06 8514.87 1.038399e+02 0.000 111.75 82 0.000000e+00 0.00 5.666032e+06 5.657517e+06 8514.87 NULL
2018 Community College (Kingsboro) Higher Education Associate 91637.15094 4.856769e+06 0.00 0.000000e+00 0.000 0.00 53 0.000000e+00 0.00 4.856769e+06 4.856769e+06 0.00 NULL
2018 Community College (Kingsboro) Higher Education Officer 111424.39216 5.682644e+06 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 5.682644e+06 5.682644e+06 0.00 NULL
2018 Community College (Kingsboro) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Kingsboro) It Assistant 55487.56250 8.878010e+05 4645.99 2.903744e+02 0.000 146.00 16 0.000000e+00 0.00 8.924470e+05 8.878010e+05 4645.99 NULL
2018 Community College (Kingsboro) It Associate 74518.60000 3.725930e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.725930e+05 3.725930e+05 0.00 NULL
2018 Community College (Kingsboro) It Senior Associate 96615.50000 1.932310e+05 622.51 3.112550e+02 311.255 6.00 2 3.112550e+02 622.51 1.938535e+05 1.938535e+05 0.00 NULL
2018 Community College (Kingsboro) It Support Assistant 40904.30000 4.090430e+05 2302.15 2.302150e+02 0.000 92.50 10 0.000000e+00 0.00 4.113452e+05 4.090430e+05 2302.15 NULL
2018 Community College (Kingsboro) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 159 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Kingsboro) Lecturer/Doctoral Schedule 84146.00000 3.365840e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.365840e+05 3.365840e+05 0.00 NULL
2018 Community College (Kingsboro) Locksmith NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Kingsboro) Mail/Message Services Worker 36235.50000 1.449420e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.449420e+05 1.449420e+05 0.00 NULL
2018 Community College (Kingsboro) Maintenance Worker NA NA 25338.75 3.167344e+03 3635.875 597.00 8 3.167344e+03 25338.75 NA NA NA NULL
2018 Community College (Kingsboro) Media Services Technician 64475.00000 6.447500e+04 17381.83 1.738183e+04 17381.830 324.75 1 1.738183e+04 17381.83 8.185683e+04 8.185683e+04 0.00 NULL
2018 Community College (Kingsboro) Non-Teaching Adjunct I 7495.02196 2.683218e+06 0.00 0.000000e+00 0.000 0.00 358 0.000000e+00 0.00 2.683218e+06 2.683218e+06 0.00 NULL
2018 Community College (Kingsboro) Non-Teaching Adjunct Ii 1925.14000 5.775420e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.775420e+03 5.775420e+03 0.00 NULL
2018 Community College (Kingsboro) Non-Teaching Adjunct Iii 3314.72018 1.226446e+05 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 1.226446e+05 1.226446e+05 0.00 NULL
2018 Community College (Kingsboro) Non-Teaching Adjunct Iv 9266.06406 1.482570e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.482570e+05 1.482570e+05 0.00 NULL
2018 Community College (Kingsboro) Non-Teaching Adjunct V 9548.08325 1.909617e+05 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.909617e+05 1.909617e+05 0.00 NULL
2018 Community College (Kingsboro) Oiler NA NA 1200.58 6.002900e+02 600.290 14.00 2 6.002900e+02 1200.58 NA NA NA NULL
2018 Community College (Kingsboro) Painter NA NA 30465.18 6.093036e+03 0.000 486.00 5 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Kingsboro) Plumber NA NA 44332.94 2.216647e+04 22166.470 421.75 2 2.216647e+04 44332.94 NA NA NA NULL
2018 Community College (Kingsboro) President 220000.00000 4.400000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.400000e+05 4.400000e+05 0.00 NULL
2018 Community College (Kingsboro) Principal Custodial Supervisor 53631.00000 5.363100e+04 1203.99 1.203990e+03 1203.990 31.25 1 1.203990e+03 1203.99 5.483499e+04 5.483499e+04 0.00 NULL
2018 Community College (Kingsboro) Professor NA NA 0.00 0.000000e+00 0.000 0.00 123 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Kingsboro) Project Manager 83416.00000 8.341600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.341600e+04 8.341600e+04 0.00 NULL
2018 Community College (Kingsboro) Senior College Lab Tech 64695.93333 9.704390e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 9.704390e+05 9.704390e+05 0.00 NULL
2018 Community College (Kingsboro) Senior Custodial Supervisor 38841.00000 3.884100e+04 2783.71 2.783710e+03 2783.710 97.75 1 2.783710e+03 2783.71 4.162471e+04 4.162471e+04 0.00 NULL
2018 Community College (Kingsboro) Senior Stationary Engineer NA NA 72104.39 2.403480e+04 0.000 703.50 3 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Kingsboro) Sign Language Interpreter 11333.01750 1.133302e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133302e+04 1.133302e+04 0.00 NULL
2018 Community College (Kingsboro) Sr College Laboratory Tech 4311.32071 3.017924e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.017924e+04 3.017924e+04 0.00 NULL
2018 Community College (Kingsboro) Staff Nurse 17538.45189 2.455383e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.455383e+05 2.455383e+05 0.00 NULL
2018 Community College (Kingsboro) Stationary Engineer NA NA 124117.22 2.482344e+04 25370.280 1321.50 5 2.482344e+04 124117.22 NA NA NA NULL
2018 Community College (Kingsboro) Stock Worker 30822.00000 1.232880e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.232880e+05 1.232880e+05 0.00 NULL
2018 Community College (Kingsboro) Student Aide 1939.77332 5.547752e+05 0.00 0.000000e+00 0.000 0.00 286 0.000000e+00 0.00 5.547752e+05 5.547752e+05 0.00 NULL
2018 Community College (Kingsboro) Supervisor Electrician NA NA 253.43 2.534300e+02 253.430 0.00 1 2.534300e+02 253.43 NA NA NA NULL
2018 Community College (Kingsboro) Supervisor Of Stock Workers 47071.00000 4.707100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.707100e+04 4.707100e+04 0.00 NULL
2018 Community College (Kingsboro) Thermostat Repairer NA NA 2530.36 2.530360e+03 2530.360 24.50 1 2.530360e+03 2530.36 NA NA NA NULL
2018 Community College (Kingsboro) University Architect 91191.00000 1.823820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.823820e+05 1.823820e+05 0.00 NULL
2018 Community College (Kingsboro) Vice President 175056.50000 1.050339e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.050339e+06 1.050339e+06 0.00 NULL
2018 Community College (Laguardia) ?Purchasing Agent 58219.00000 2.910950e+05 867.94 1.735880e+02 105.040 25.25 5 1.050400e+02 525.20 2.919629e+05 2.916202e+05 342.74 NULL
2018 Community College (Laguardia) Adjunct Assistant Professor 16133.50980 3.662307e+06 0.00 0.000000e+00 0.000 0.00 227 0.000000e+00 0.00 3.662307e+06 3.662307e+06 0.00 NULL
2018 Community College (Laguardia) Adjunct Associate Professor 19763.25143 4.150283e+05 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 4.150283e+05 4.150283e+05 0.00 NULL
2018 Community College (Laguardia) Adjunct College Lab Tech 8761.88110 7.535218e+05 0.00 0.000000e+00 0.000 0.00 86 0.000000e+00 0.00 7.535218e+05 7.535218e+05 0.00 NULL
2018 Community College (Laguardia) Adjunct Lecturer 14774.71028 1.109581e+07 0.00 0.000000e+00 0.000 0.00 751 0.000000e+00 0.00 1.109581e+07 1.109581e+07 0.00 NULL
2018 Community College (Laguardia) Adjunct Professor 19112.74273 2.102402e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 2.102402e+05 2.102402e+05 0.00 NULL
2018 Community College (Laguardia) Adjunct Senior College Lab Tech 25456.25000 2.545625e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.545625e+04 2.545625e+04 0.00 NULL
2018 Community College (Laguardia) Administrator 159057.50000 3.181150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.181150e+05 3.181150e+05 0.00 NULL
2018 Community College (Laguardia) Administrator Supt Campus B/G 85208.50000 1.704170e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.704170e+05 1.704170e+05 0.00 NULL
2018 Community College (Laguardia) Assistant College Security Director 78943.00000 1.578860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.578860e+05 1.578860e+05 0.00 NULL
2018 Community College (Laguardia) Assistant Dean 129345.00000 6.467250e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.467250e+05 6.467250e+05 0.00 NULL
2018 Community College (Laguardia) Assistant Professor 57415.89139 9.473622e+06 0.00 0.000000e+00 0.000 0.00 165 0.000000e+00 0.00 9.473622e+06 9.473622e+06 0.00 NULL
2018 Community College (Laguardia) Assistant To Heo 55845.54023 4.858562e+06 2053.53 2.360379e+01 0.000 30.00 87 0.000000e+00 0.00 4.860616e+06 4.858562e+06 2053.53 NULL
2018 Community College (Laguardia) Assistant Vice President 149891.00000 1.498910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.498910e+05 1.498910e+05 0.00 NULL
2018 Community College (Laguardia) Associate Administrator 147360.80000 7.368040e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.368040e+05 7.368040e+05 0.00 NULL
2018 Community College (Laguardia) Associate Dean 138110.50000 5.524420e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.524420e+05 5.524420e+05 0.00 NULL
2018 Community College (Laguardia) Associate Professor 69647.09784 1.274542e+07 0.00 0.000000e+00 0.000 0.00 183 0.000000e+00 0.00 1.274542e+07 1.274542e+07 0.00 NULL
2018 Community College (Laguardia) Business Data And Reporting Analyst 40916.00000 2.045800e+05 2940.79 5.881580e+02 0.000 77.50 5 0.000000e+00 0.00 2.075208e+05 2.045800e+05 2940.79 NULL
2018 Community College (Laguardia) Campus Peace Officer 43283.88889 1.168665e+06 136988.47 5.073647e+03 4037.410 4183.38 27 4.037410e+03 109010.07 1.305653e+06 1.277675e+06 27978.40 NULL
2018 Community College (Laguardia) Campus Public Safety Sergeant 55601.71429 3.892120e+05 48466.02 6.923717e+03 7294.770 1154.75 7 6.923717e+03 48466.02 4.376780e+05 4.376780e+05 0.00 NULL
2018 Community College (Laguardia) Campus Security Assistant 32394.48649 1.198596e+06 84463.41 2.282795e+03 1678.560 3524.00 37 1.678560e+03 62106.72 1.283059e+06 1.260703e+06 22356.69 NULL
2018 Community College (Laguardia) Chief Administrative Supt Campus B/G 127463.00000 1.274630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.274630e+05 1.274630e+05 0.00 NULL
2018 Community College (Laguardia) Chief College Lab Technician 73769.63000 7.376963e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.376963e+05 7.376963e+05 0.00 NULL
2018 Community College (Laguardia) Clip Instructor 48934.85714 6.850880e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 6.850880e+05 6.850880e+05 0.00 NULL
2018 Community College (Laguardia) College Accountant 45198.75000 1.807950e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.807950e+05 1.807950e+05 0.00 NULL
2018 Community College (Laguardia) College Accounting Assistant 46536.83333 2.792210e+05 2060.14 3.433567e+02 0.000 60.25 6 0.000000e+00 0.00 2.812811e+05 2.792210e+05 2060.14 NULL
2018 Community College (Laguardia) College Assistant 7576.95260 6.508602e+06 4740.65 5.518801e+00 0.000 184.75 859 0.000000e+00 0.00 6.513343e+06 6.508602e+06 4740.65 NULL
2018 Community College (Laguardia) College Graph Designer 63000.00000 6.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.300000e+04 6.300000e+04 0.00 NULL
2018 Community College (Laguardia) College Lab Technician 42310.96188 1.353951e+06 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 1.353951e+06 1.353951e+06 0.00 NULL
2018 Community College (Laguardia) College Print Shop Coordinator 59450.00000 5.945000e+04 4246.46 4.246460e+03 4246.460 110.00 1 4.246460e+03 4246.46 6.369646e+04 6.369646e+04 0.00 NULL
2018 Community College (Laguardia) College Security Director 111598.00000 1.115980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.115980e+05 1.115980e+05 0.00 NULL
2018 Community College (Laguardia) College Security Specialist 63487.66667 1.904630e+05 56845.82 1.894861e+04 20356.340 1175.00 3 1.894861e+04 56845.82 2.473088e+05 2.473088e+05 0.00 NULL
2018 Community College (Laguardia) Computer Systems Manager 128060.50000 5.122420e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.122420e+05 5.122420e+05 0.00 NULL
2018 Community College (Laguardia) Continuing Education Teacher 6349.95342 1.409690e+06 0.00 0.000000e+00 0.000 0.00 222 0.000000e+00 0.00 1.409690e+06 1.409690e+06 0.00 NULL
2018 Community College (Laguardia) Cuny Administrator Assistant 53148.14286 1.116111e+06 8761.42 4.172105e+02 0.000 253.50 21 0.000000e+00 0.00 1.124872e+06 1.116111e+06 8761.42 NULL
2018 Community College (Laguardia) Cuny Art Model 1905.75000 1.143450e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.143450e+04 1.143450e+04 0.00 NULL
2018 Community College (Laguardia) Cuny Broadcast Associate 46035.00000 1.381050e+05 41840.09 1.394670e+04 14097.830 1074.00 3 1.394670e+04 41840.09 1.799451e+05 1.799451e+05 0.00 NULL
2018 Community College (Laguardia) Cuny Custodial Assistant 23165.68207 1.528935e+06 104829.53 1.588326e+03 394.600 4086.00 66 3.946000e+02 26043.60 1.633765e+06 1.554979e+06 78785.93 NULL
2018 Community College (Laguardia) Cuny Office Assistant 37390.41096 2.729500e+06 20602.46 2.822255e+02 0.000 770.00 73 0.000000e+00 0.00 2.750102e+06 2.729500e+06 20602.46 NULL
2018 Community College (Laguardia) Cuny Start Instructor 55839.71429 7.817560e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 7.817560e+05 7.817560e+05 0.00 NULL
2018 Community College (Laguardia) Custodial Supervisor 39522.00000 1.185660e+05 32542.92 1.084764e+04 9984.600 1075.50 3 9.984600e+03 29953.80 1.511089e+05 1.485198e+05 2589.12 NULL
2018 Community College (Laguardia) Dean 152682.00000 1.526820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.526820e+05 1.526820e+05 0.00 NULL
2018 Community College (Laguardia) Facilities Coordinator 59557.00000 1.786710e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.786710e+05 1.786710e+05 0.00 NULL
2018 Community College (Laguardia) Higher Education Assistant 70259.34722 1.011735e+07 1538.96 1.068722e+01 0.000 11.00 144 0.000000e+00 0.00 1.011888e+07 1.011735e+07 1538.96 NULL
2018 Community College (Laguardia) Higher Education Associate 91804.20000 9.180420e+06 0.00 0.000000e+00 0.000 0.00 100 0.000000e+00 0.00 9.180420e+06 9.180420e+06 0.00 NULL
2018 Community College (Laguardia) Higher Education Officer 120480.03509 6.867362e+06 0.00 0.000000e+00 0.000 0.00 57 0.000000e+00 0.00 6.867362e+06 6.867362e+06 0.00 NULL
2018 Community College (Laguardia) Instructor 40092.54222 3.608329e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 3.608329e+05 3.608329e+05 0.00 NULL
2018 Community College (Laguardia) It Assistant 52709.86518 1.159617e+06 14335.51 6.516141e+02 0.000 314.50 22 0.000000e+00 0.00 1.173953e+06 1.159617e+06 14335.51 NULL
2018 Community College (Laguardia) It Associate 71832.95455 1.580325e+06 11874.79 5.397632e+02 0.000 205.00 22 0.000000e+00 0.00 1.592200e+06 1.580325e+06 11874.79 NULL
2018 Community College (Laguardia) It Senior Associate 95932.00000 1.055252e+06 4643.95 4.221773e+02 0.000 39.00 11 0.000000e+00 0.00 1.059896e+06 1.055252e+06 4643.95 NULL
2018 Community College (Laguardia) It Support Assistant 36996.79452 9.619167e+05 148.76 5.721539e+00 0.000 6.00 26 0.000000e+00 0.00 9.620654e+05 9.619167e+05 148.76 NULL
2018 Community College (Laguardia) Lecturer 51557.67029 4.433960e+06 0.00 0.000000e+00 0.000 0.00 86 0.000000e+00 0.00 4.433960e+06 4.433960e+06 0.00 NULL
2018 Community College (Laguardia) Lecturer/Doctoral Schedule 79195.00000 1.583900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.583900e+05 1.583900e+05 0.00 NULL
2018 Community College (Laguardia) Mail/Message Services Worker 38022.50000 4.562700e+05 24989.85 2.082488e+03 334.965 782.50 12 3.349650e+02 4019.58 4.812598e+05 4.602896e+05 20970.27 NULL
2018 Community College (Laguardia) Media Services Technician 58857.00000 5.885700e+04 25479.47 2.547947e+04 25479.470 513.00 1 2.547947e+04 25479.47 8.433647e+04 8.433647e+04 0.00 NULL
2018 Community College (Laguardia) Non-Teaching Adjunct I 1990.55738 3.423759e+05 0.00 0.000000e+00 0.000 0.00 172 0.000000e+00 0.00 3.423759e+05 3.423759e+05 0.00 NULL
2018 Community College (Laguardia) Non-Teaching Adjunct Ii 91.14000 1.822800e+02 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.822800e+02 1.822800e+02 0.00 NULL
2018 Community College (Laguardia) Non-Teaching Adjunct Iii 2998.43622 2.458718e+05 0.00 0.000000e+00 0.000 0.00 82 0.000000e+00 0.00 2.458718e+05 2.458718e+05 0.00 NULL
2018 Community College (Laguardia) Non-Teaching Adjunct Iv 5321.66560 1.330416e+05 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.330416e+05 1.330416e+05 0.00 NULL
2018 Community College (Laguardia) Non-Teaching Adjunct V 6113.42000 7.336104e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.336104e+04 7.336104e+04 0.00 NULL
2018 Community College (Laguardia) President 293000.00000 2.930000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.930000e+05 2.930000e+05 0.00 NULL
2018 Community College (Laguardia) Professor 80078.47574 1.249224e+07 0.00 0.000000e+00 0.000 0.00 156 0.000000e+00 0.00 1.249224e+07 1.249224e+07 0.00 NULL
2018 Community College (Laguardia) Project Manager 83416.00000 8.341600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.341600e+04 8.341600e+04 0.00 NULL
2018 Community College (Laguardia) Senior College Lab Tech 67508.09091 7.425890e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.425890e+05 7.425890e+05 0.00 NULL
2018 Community College (Laguardia) Senior Vice President 198032.00000 1.980320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.980320e+05 1.980320e+05 0.00 NULL
2018 Community College (Laguardia) Sign Language Interpreter 21044.15140 5.261038e+05 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 5.261038e+05 5.261038e+05 0.00 NULL
2018 Community College (Laguardia) Sr College Laboratory Tech 784.57500 1.569150e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.569150e+03 1.569150e+03 0.00 NULL
2018 Community College (Laguardia) Staff Nurse 86128.00000 8.612800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.612800e+04 8.612800e+04 0.00 NULL
2018 Community College (Laguardia) Supervisor Of Stock Workers 37800.50000 7.560100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.560100e+04 7.560100e+04 0.00 NULL
2018 Community College (Laguardia) University Assistant Architect 58470.00000 1.169400e+05 1760.18 8.800900e+02 880.090 43.00 2 8.800900e+02 1760.18 1.187002e+05 1.187002e+05 0.00 NULL
2018 Community College (Laguardia) University Assistant Engineer 69411.00000 1.388220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.388220e+05 1.388220e+05 0.00 NULL
2018 Community College (Laguardia) Vice President 176476.50000 1.058859e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.058859e+06 1.058859e+06 0.00 NULL
2018 Community College (Manhattan) ?Assistant Purchasing Agent 40329.00000 1.209870e+05 1098.78 3.662600e+02 263.960 47.75 3 2.639600e+02 791.88 1.220858e+05 1.217789e+05 306.90 NULL
2018 Community College (Manhattan) ?Purchasing Agent 58964.33333 1.768930e+05 963.31 3.211033e+02 70.370 32.50 3 7.037000e+01 211.11 1.778563e+05 1.771041e+05 752.20 NULL
2018 Community College (Manhattan) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 387 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Manhattan) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Manhattan) Adjunct College Lab Tech 7881.42405 6.620396e+05 0.00 0.000000e+00 0.000 0.00 84 0.000000e+00 0.00 6.620396e+05 6.620396e+05 0.00 NULL
2018 Community College (Manhattan) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 1202 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Manhattan) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Manhattan) Adjunct Senior College Lab Tech 4966.80429 1.738381e+05 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 1.738381e+05 1.738381e+05 0.00 NULL
2018 Community College (Manhattan) Administrator 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2018 Community College (Manhattan) Administrator Supt Campus B/G 96212.66667 2.886380e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.886380e+05 2.886380e+05 0.00 NULL
2018 Community College (Manhattan) Assistant Administrator 123666.66667 3.710000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.710000e+05 3.710000e+05 0.00 NULL
2018 Community College (Manhattan) Assistant College Security Director 76558.66667 4.593520e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.593520e+05 4.593520e+05 0.00 NULL
2018 Community College (Manhattan) Assistant Dean 122000.00000 1.220000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.220000e+05 1.220000e+05 0.00 NULL
2018 Community College (Manhattan) Assistant Principal Custodial Supervisor 43503.00000 8.700600e+04 31697.27 1.584864e+04 15848.635 1010.33 2 1.584864e+04 31697.27 1.187033e+05 1.187033e+05 0.00 NULL
2018 Community College (Manhattan) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 340 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Manhattan) Assistant To Heo 51912.07292 4.983559e+06 2433.53 2.534927e+01 0.000 53.00 96 0.000000e+00 0.00 4.985993e+06 4.983559e+06 2433.53 NULL
2018 Community College (Manhattan) Assistant Vice President 146763.00000 1.467630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.467630e+05 1.467630e+05 0.00 NULL
2018 Community College (Manhattan) Associate Administrator 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2018 Community College (Manhattan) Associate Dean 148495.00000 1.484950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.484950e+05 1.484950e+05 0.00 NULL
2018 Community College (Manhattan) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 203 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Manhattan) Business Data And Reporting Analyst 41508.35938 3.320669e+05 884.17 1.105212e+02 0.000 37.00 8 0.000000e+00 0.00 3.329510e+05 3.320669e+05 884.17 NULL
2018 Community College (Manhattan) Campus Peace Officer 40335.68889 1.815106e+06 218596.40 4.857698e+03 4019.170 7081.25 45 4.019170e+03 180862.65 2.033702e+06 1.995969e+06 37733.75 NULL
2018 Community College (Manhattan) Campus Public Safety Sergeant 55370.00000 6.090700e+05 66994.34 6.090395e+03 5790.940 1675.59 11 5.790940e+03 63700.34 6.760643e+05 6.727703e+05 3294.00 NULL
2018 Community College (Manhattan) Campus Security Assistant 29927.32994 1.227021e+06 243079.80 5.928776e+03 4771.300 9903.50 41 4.771300e+03 195623.30 1.470100e+06 1.422644e+06 47456.50 NULL
2018 Community College (Manhattan) Carpenter NA NA 65199.43 7.244381e+03 6222.530 799.00 9 6.222530e+03 56002.77 NA NA NA NULL
2018 Community College (Manhattan) Chief Administrator Supt Campus B/G 140902.00000 1.409020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.409020e+05 1.409020e+05 0.00 NULL
2018 Community College (Manhattan) City Laborer NA NA 167046.43 2.386378e+04 27423.300 2679.25 7 2.386378e+04 167046.43 NA NA NA NULL
2018 Community College (Manhattan) Clip Instructor 50182.72727 5.520100e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.520100e+05 5.520100e+05 0.00 NULL
2018 Community College (Manhattan) College Accountant 46537.00000 4.653700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.653700e+04 4.653700e+04 0.00 NULL
2018 Community College (Manhattan) College Accounting Assistant 44390.00000 6.214600e+05 9073.93 6.481379e+02 0.000 291.00 14 0.000000e+00 0.00 6.305339e+05 6.214600e+05 9073.93 NULL
2018 Community College (Manhattan) College Assistant NA NA 161413.93 1.438627e+02 0.000 11127.50 1122 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Manhattan) College Graph Designer 47827.00000 1.434810e+05 1077.40 3.591333e+02 0.000 34.25 3 0.000000e+00 0.00 1.445584e+05 1.434810e+05 1077.40 NULL
2018 Community College (Manhattan) College Lab Technician 55543.78261 1.277507e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 1.277507e+06 1.277507e+06 0.00 NULL
2018 Community College (Manhattan) College Print Shop Assistant 31015.00000 1.860900e+05 3416.00 5.693333e+02 471.870 169.50 6 4.718700e+02 2831.22 1.895060e+05 1.889212e+05 584.78 NULL
2018 Community College (Manhattan) College Print Shop Associate 33350.00000 3.335000e+04 392.43 3.924300e+02 392.430 20.50 1 3.924300e+02 392.43 3.374243e+04 3.374243e+04 0.00 NULL
2018 Community College (Manhattan) College Print Shop Coordinator 59450.00000 5.945000e+04 4205.71 4.205710e+03 4205.710 107.75 1 4.205710e+03 4205.71 6.365571e+04 6.365571e+04 0.00 NULL
2018 Community College (Manhattan) College Security Director 125292.00000 1.252920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.252920e+05 1.252920e+05 0.00 NULL
2018 Community College (Manhattan) Computer Systems Manager 133133.00000 1.331330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.331330e+05 1.331330e+05 0.00 NULL
2018 Community College (Manhattan) Continuing Education Teacher NA NA 0.00 0.000000e+00 0.000 0.00 151 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Manhattan) Cuny Administrator Assistant 52568.90000 5.256890e+05 1741.49 1.741490e+02 0.000 48.75 10 0.000000e+00 0.00 5.274305e+05 5.256890e+05 1741.49 NULL
2018 Community College (Manhattan) Cuny Art Model 3108.75000 2.487000e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 2.487000e+04 2.487000e+04 0.00 NULL
2018 Community College (Manhattan) Cuny Broadcast Associate 66154.00000 6.615400e+04 271.57 2.715700e+02 271.570 7.50 1 2.715700e+02 271.57 6.642557e+04 6.642557e+04 0.00 NULL
2018 Community College (Manhattan) Cuny Custodial Assistant 26652.91286 3.171697e+06 250697.83 2.106704e+03 879.390 12036.83 119 8.793900e+02 104647.41 3.422394e+06 3.276344e+06 146050.42 NULL
2018 Community College (Manhattan) Cuny Office Assistant 36067.56522 3.318216e+06 31671.99 3.442608e+02 0.000 1245.00 92 0.000000e+00 0.00 3.349888e+06 3.318216e+06 31671.99 NULL
2018 Community College (Manhattan) Cuny Start Instructor 56129.68182 1.234853e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 1.234853e+06 1.234853e+06 0.00 NULL
2018 Community College (Manhattan) Custodial Supervisor 35161.72727 3.867790e+05 35417.05 3.219732e+03 3085.240 1372.75 11 3.085240e+03 33937.64 4.221960e+05 4.207166e+05 1479.41 NULL
2018 Community College (Manhattan) Dean 161363.20000 8.068160e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.068160e+05 8.068160e+05 0.00 NULL
2018 Community College (Manhattan) Disability Accommodations Specialist 43282.00000 4.328200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.328200e+04 4.328200e+04 0.00 NULL
2018 Community College (Manhattan) Electrician NA NA 65467.73 5.951612e+03 3229.950 668.00 11 3.229950e+03 35529.45 NA NA NA NULL
2018 Community College (Manhattan) Electrician’s Helper NA NA 7055.29 2.351763e+03 753.180 79.50 3 7.531800e+02 2259.54 NA NA NA NULL
2018 Community College (Manhattan) Eoc Accounting Assistant 41204.00000 8.240800e+04 1220.67 6.103350e+02 610.335 52.75 2 6.103350e+02 1220.67 8.362867e+04 8.362867e+04 0.00 NULL
2018 Community College (Manhattan) Eoc Adjunct College Lab Tech 11719.78500 1.171978e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.171978e+04 1.171978e+04 0.00 NULL
2018 Community College (Manhattan) Eoc Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Manhattan) Eoc Assistant 1096.87500 1.096875e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.096875e+03 1.096875e+03 0.00 NULL
2018 Community College (Manhattan) Eoc Assistant To Heo 58244.91667 6.989390e+05 249.17 2.076417e+01 0.000 4.50 12 0.000000e+00 0.00 6.991882e+05 6.989390e+05 249.17 NULL
2018 Community College (Manhattan) Eoc College Lab Technician 58101.50000 1.162030e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.162030e+05 1.162030e+05 0.00 NULL
2018 Community College (Manhattan) Eoc Higher Education Assistant 85178.00000 3.407120e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.407120e+05 3.407120e+05 0.00 NULL
2018 Community College (Manhattan) Eoc Higher Education Associate 84678.00000 8.467800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.467800e+04 8.467800e+04 0.00 NULL
2018 Community College (Manhattan) Eoc Higher Education Officer 110790.50000 4.431620e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.431620e+05 4.431620e+05 0.00 NULL
2018 Community College (Manhattan) Eoc Lecturer 79025.11111 7.112260e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.112260e+05 7.112260e+05 0.00 NULL
2018 Community College (Manhattan) Eoc Lecturer/ Doctral Schedule 83411.50000 1.668230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.668230e+05 1.668230e+05 0.00 NULL
2018 Community College (Manhattan) Eoc Mail/Message Services Worker 32995.00000 6.599000e+04 70.17 3.508500e+01 35.085 3.58 2 3.508500e+01 70.17 6.606017e+04 6.606017e+04 0.00 NULL
2018 Community College (Manhattan) Eoc Office Assistant 39634.90000 3.963490e+05 2456.85 2.456850e+02 179.045 109.83 10 1.790450e+02 1790.45 3.988058e+05 3.981395e+05 666.40 NULL
2018 Community College (Manhattan) Facilities Coordinator 59557.00000 5.955700e+04 1564.70 1.564700e+03 1564.700 41.25 1 1.564700e+03 1564.70 6.112170e+04 6.112170e+04 0.00 NULL
2018 Community College (Manhattan) Higher Education Assistant 68435.66345 9.923171e+06 3574.18 2.464952e+01 0.000 53.25 145 0.000000e+00 0.00 9.926745e+06 9.923171e+06 3574.18 NULL
2018 Community College (Manhattan) Higher Education Associate 89455.21127 6.351320e+06 0.00 0.000000e+00 0.000 0.00 71 0.000000e+00 0.00 6.351320e+06 6.351320e+06 0.00 NULL
2018 Community College (Manhattan) Higher Education Officer 119896.19565 5.515225e+06 0.00 0.000000e+00 0.000 0.00 46 0.000000e+00 0.00 5.515225e+06 5.515225e+06 0.00 NULL
2018 Community College (Manhattan) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 45 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Manhattan) It Assistant 52733.21118 8.964646e+05 10062.25 5.918971e+02 0.000 271.25 17 0.000000e+00 0.00 9.065268e+05 8.964646e+05 10062.25 NULL
2018 Community College (Manhattan) It Associate 67798.00000 2.711920e+05 414.15 1.035375e+02 56.475 10.00 4 5.647500e+01 225.90 2.716062e+05 2.714179e+05 188.25 NULL
2018 Community College (Manhattan) It Senior Associate 92882.33333 5.572940e+05 189.21 3.153500e+01 0.000 4.00 6 0.000000e+00 0.00 5.574832e+05 5.572940e+05 189.21 NULL
2018 Community College (Manhattan) It Support Assistant 28428.59550 8.528579e+05 5034.39 1.678130e+02 0.000 200.50 30 0.000000e+00 0.00 8.578923e+05 8.528579e+05 5034.39 NULL
2018 Community College (Manhattan) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 118 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Manhattan) Lecturer/Doctoral Schedule 72433.25000 2.897330e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.897330e+05 2.897330e+05 0.00 NULL
2018 Community College (Manhattan) Locksmith NA NA 4258.70 2.129350e+03 2129.350 97.25 2 2.129350e+03 4258.70 NA NA NA NULL
2018 Community College (Manhattan) Mail/Message Services Worker 32943.75000 1.317750e+05 984.26 2.460650e+02 241.405 54.00 4 2.414050e+02 965.62 1.327593e+05 1.327406e+05 18.64 NULL
2018 Community College (Manhattan) Maintenance Worker NA NA 18476.66 3.695332e+03 3447.380 451.50 5 3.447380e+03 17236.90 NA NA NA NULL
2018 Community College (Manhattan) Non-Teaching Adjunct I NA NA 0.00 0.000000e+00 0.000 0.00 269 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Manhattan) Non-Teaching Adjunct Ii NA NA 0.00 0.000000e+00 0.000 0.00 165 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Manhattan) Non-Teaching Adjunct Iii 1267.79609 1.749559e+05 0.00 0.000000e+00 0.000 0.00 138 0.000000e+00 0.00 1.749559e+05 1.749559e+05 0.00 NULL
2018 Community College (Manhattan) Non-Teaching Adjunct Iv 1290.54823 3.097316e+04 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 3.097316e+04 3.097316e+04 0.00 NULL
2018 Community College (Manhattan) Non-Teaching Adjunct V 6613.82600 9.920739e+04 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 9.920739e+04 9.920739e+04 0.00 NULL
2018 Community College (Manhattan) Oiler NA NA 196186.34 1.509126e+04 14807.090 2186.25 13 1.480709e+04 192492.17 NA NA NA NULL
2018 Community College (Manhattan) Painter NA NA 63838.07 9.119724e+03 11070.480 892.00 7 9.119724e+03 63838.07 NA NA NA NULL
2018 Community College (Manhattan) Plumber NA NA 135319.64 4.510655e+04 51046.140 1344.75 3 4.510655e+04 135319.64 NA NA NA NULL
2018 Community College (Manhattan) President 241000.00000 2.410000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.410000e+05 2.410000e+05 0.00 NULL
2018 Community College (Manhattan) Principal Custodial Supervisor 60603.00000 1.212060e+05 23022.01 1.151100e+04 11511.005 516.25 2 1.151100e+04 23022.01 1.442280e+05 1.442280e+05 0.00 NULL
2018 Community College (Manhattan) Professor NA NA 0.00 0.000000e+00 0.000 0.00 169 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Manhattan) Research Assistant 45090.33333 1.352710e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.352710e+05 1.352710e+05 0.00 NULL
2018 Community College (Manhattan) Senior College Lab Tech 69419.88235 1.180138e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.180138e+06 1.180138e+06 0.00 NULL
2018 Community College (Manhattan) Senior Custodial Supervisor 36846.66667 1.105400e+05 15370.83 5.123610e+03 2538.290 561.50 3 2.538290e+03 7614.87 1.259108e+05 1.181549e+05 7755.96 NULL
2018 Community College (Manhattan) Senior Stationary Engineer NA NA 96858.41 2.421460e+04 23251.520 914.03 4 2.325152e+04 93006.08 NA NA NA NULL
2018 Community College (Manhattan) Senior Vice President 216000.00000 2.160000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.160000e+05 2.160000e+05 0.00 NULL
2018 Community College (Manhattan) Sign Language Interpreter 20865.76500 1.251946e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.251946e+05 1.251946e+05 0.00 NULL
2018 Community College (Manhattan) Staff Nurse 91728.00000 9.172800e+04 56.67 5.667000e+01 56.670 0.75 1 5.667000e+01 56.67 9.178467e+04 9.178467e+04 0.00 NULL
2018 Community College (Manhattan) Stationary Engineer NA NA 201179.64 2.011796e+04 17366.020 2127.13 10 1.736602e+04 173660.20 NA NA NA NULL
2018 Community College (Manhattan) Stock Worker 33735.00000 1.012050e+05 3171.30 1.057100e+03 415.450 141.50 3 4.154500e+02 1246.35 1.043763e+05 1.024514e+05 1924.95 NULL
2018 Community College (Manhattan) Supervisor Of Stock Workers 56785.00000 5.678500e+04 3690.80 3.690800e+03 3690.800 85.00 1 3.690800e+03 3690.80 6.047580e+04 6.047580e+04 0.00 NULL
2018 Community College (Manhattan) Supervisor Painter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Manhattan) Thermostat Repairer NA NA 39504.60 1.975230e+04 19752.300 360.50 2 1.975230e+04 39504.60 NA NA NA NULL
2018 Community College (Manhattan) University Professor 5500.00000 5.500000e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.500000e+03 5.500000e+03 0.00 NULL
2018 Community College (Manhattan) Vice President 190731.00000 1.144386e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.144386e+06 1.144386e+06 0.00 NULL
2018 Community College (Queensboro) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 129 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Queensboro) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Queensboro) Adjunct College Lab Tech 9377.79815 7.596017e+05 0.00 0.000000e+00 0.000 0.00 81 0.000000e+00 0.00 7.596017e+05 7.596017e+05 0.00 NULL
2018 Community College (Queensboro) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 457 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Queensboro) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Queensboro) Adjunct Senior College Lab Tech 7801.77136 8.581949e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 8.581949e+04 8.581949e+04 0.00 NULL
2018 Community College (Queensboro) Administrator 155622.66667 4.668680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.668680e+05 4.668680e+05 0.00 NULL
2018 Community College (Queensboro) Administrator Supt Campus B/G 89033.79667 2.671014e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.671014e+05 2.671014e+05 0.00 NULL
2018 Community College (Queensboro) Assistant College Security Director 89368.00000 1.787360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.787360e+05 1.787360e+05 0.00 NULL
2018 Community College (Queensboro) Assistant Dean 123304.00000 1.233040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.233040e+05 1.233040e+05 0.00 NULL
2018 Community College (Queensboro) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 273 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Queensboro) Assistant To Heo 50884.63077 3.307501e+06 0.00 0.000000e+00 0.000 0.00 65 0.000000e+00 0.00 3.307501e+06 3.307501e+06 0.00 NULL
2018 Community College (Queensboro) Associate Administrator 148852.00000 2.977040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.977040e+05 2.977040e+05 0.00 NULL
2018 Community College (Queensboro) Associate Dean 139781.00000 1.397810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.397810e+05 1.397810e+05 0.00 NULL
2018 Community College (Queensboro) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 195 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Queensboro) Auto Mechanic NA NA 4125.72 4.125720e+03 4125.720 62.25 1 4.125720e+03 4125.72 NA NA NA NULL
2018 Community College (Queensboro) Campus Peace Officer 43376.55172 1.257920e+06 177839.71 6.132404e+03 5570.280 5409.50 29 5.570280e+03 161538.12 1.435760e+06 1.419458e+06 16301.59 NULL
2018 Community College (Queensboro) Campus Public Safety Sergeant 55370.00000 4.983300e+05 53834.88 5.981653e+03 4050.680 1259.00 9 4.050680e+03 36456.12 5.521649e+05 5.347861e+05 17378.76 NULL
2018 Community College (Queensboro) Campus Security Assistant 32333.80000 4.850070e+05 21676.29 1.445086e+03 1026.150 871.50 15 1.026150e+03 15392.25 5.066833e+05 5.003992e+05 6284.04 NULL
2018 Community College (Queensboro) Carpenter NA NA 141734.02 3.543350e+04 30258.455 1843.50 4 3.025846e+04 121033.82 NA NA NA NULL
2018 Community College (Queensboro) Cement Mason NA NA 71807.10 7.180710e+04 71807.100 760.25 1 7.180710e+04 71807.10 NA NA NA NULL
2018 Community College (Queensboro) Chief Administrative Supt Campus B/G 142658.00000 1.426580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.426580e+05 1.426580e+05 0.00 NULL
2018 Community College (Queensboro) Chief College Lab Technician 46259.11389 4.163320e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.163320e+05 4.163320e+05 0.00 NULL
2018 Community College (Queensboro) City Laborer NA NA 212437.42 3.034820e+04 32976.510 3460.25 7 3.034820e+04 212437.42 NA NA NA NULL
2018 Community College (Queensboro) Clip Instructor 50842.18182 5.592640e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.592640e+05 5.592640e+05 0.00 NULL
2018 Community College (Queensboro) College Accountant 59555.00000 2.382200e+05 706.64 1.766600e+02 0.000 20.00 4 0.000000e+00 0.00 2.389266e+05 2.382200e+05 706.64 NULL
2018 Community College (Queensboro) College Accounting Assistant 45457.00000 9.091400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.091400e+04 9.091400e+04 0.00 NULL
2018 Community College (Queensboro) College Assistant 5619.76512 4.360938e+06 0.00 0.000000e+00 0.000 0.00 776 0.000000e+00 0.00 4.360938e+06 4.360938e+06 0.00 NULL
2018 Community College (Queensboro) College Graph Designer 63742.00000 6.374200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.374200e+04 6.374200e+04 0.00 NULL
2018 Community College (Queensboro) College Lab Technician 50995.54700 1.019911e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.019911e+06 1.019911e+06 0.00 NULL
2018 Community College (Queensboro) College Print Shop Assistant 36295.00000 3.629500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.629500e+04 3.629500e+04 0.00 NULL
2018 Community College (Queensboro) College Print Shop Associate 42570.00000 8.514000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.514000e+04 8.514000e+04 0.00 NULL
2018 Community College (Queensboro) College Security Director 147704.00000 1.477040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.477040e+05 1.477040e+05 0.00 NULL
2018 Community College (Queensboro) College Security Specialist 58317.00000 1.166340e+05 13096.94 6.548470e+03 6548.470 278.00 2 6.548470e+03 13096.94 1.297309e+05 1.297309e+05 0.00 NULL
2018 Community College (Queensboro) Computer Systems Manager 131602.80000 6.580140e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.580140e+05 6.580140e+05 0.00 NULL
2018 Community College (Queensboro) Continuing Education Teacher 4858.28212 9.667981e+05 0.00 0.000000e+00 0.000 0.00 199 0.000000e+00 0.00 9.667981e+05 9.667981e+05 0.00 NULL
2018 Community College (Queensboro) Cuny Administrator Assistant 52175.96552 1.513103e+06 3004.10 1.035897e+02 0.000 102.58 29 0.000000e+00 0.00 1.516107e+06 1.513103e+06 3004.10 NULL
2018 Community College (Queensboro) Cuny Broadcast Associate 50558.00000 5.055800e+04 55.35 5.535000e+01 55.350 2.00 1 5.535000e+01 55.35 5.061335e+04 5.061335e+04 0.00 NULL
2018 Community College (Queensboro) Cuny Custodial Assistant 30863.12314 1.790061e+06 252584.84 4.354911e+03 1529.935 9636.92 58 1.529935e+03 88736.23 2.042646e+06 1.878797e+06 163848.61 NULL
2018 Community College (Queensboro) Cuny Office Assistant 37086.71642 2.484810e+06 2918.99 4.356701e+01 0.000 129.25 67 0.000000e+00 0.00 2.487729e+06 2.484810e+06 2918.99 NULL
2018 Community College (Queensboro) Cuny Start Instructor 57287.69231 7.447400e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 7.447400e+05 7.447400e+05 0.00 NULL
2018 Community College (Queensboro) Custodial Supervisor 35913.00000 2.513910e+05 12234.51 1.747787e+03 1431.900 436.25 7 1.431900e+03 10023.30 2.636255e+05 2.614143e+05 2211.21 NULL
2018 Community College (Queensboro) Dean 157265.40000 7.863270e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.863270e+05 7.863270e+05 0.00 NULL
2018 Community College (Queensboro) Disability Accommodations Specialist 19495.31786 1.364672e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.364672e+05 1.364672e+05 0.00 NULL
2018 Community College (Queensboro) Electrician NA NA 168920.69 2.111509e+04 12615.535 1766.50 8 1.261553e+04 100924.28 NA NA NA NULL
2018 Community College (Queensboro) Electrician’s Helper NA NA 20694.05 2.069405e+04 20694.050 372.00 1 2.069405e+04 20694.05 NA NA NA NULL
2018 Community College (Queensboro) Facilities Coordinator 59557.00000 5.955700e+04 2567.19 2.567190e+03 2567.190 64.25 1 2.567190e+03 2567.19 6.212419e+04 6.212419e+04 0.00 NULL
2018 Community College (Queensboro) High Pressure Plant Tender NA NA 67944.00 1.132400e+04 9317.010 1227.00 6 9.317010e+03 55902.06 NA NA NA NULL
2018 Community College (Queensboro) Higher Education Assistant 71324.60227 6.276565e+06 0.00 0.000000e+00 0.000 0.00 88 0.000000e+00 0.00 6.276565e+06 6.276565e+06 0.00 NULL
2018 Community College (Queensboro) Higher Education Associate 94629.78431 4.826119e+06 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 4.826119e+06 4.826119e+06 0.00 NULL
2018 Community College (Queensboro) Higher Education Officer 115858.66667 5.561216e+06 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 5.561216e+06 5.561216e+06 0.00 NULL
2018 Community College (Queensboro) Higher Education Officer/Asst Administrator 136155.00000 1.361550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.361550e+05 1.361550e+05 0.00 NULL
2018 Community College (Queensboro) Instructor 36032.50000 2.161950e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.161950e+05 2.161950e+05 0.00 NULL
2018 Community College (Queensboro) It Assistant 55974.00000 1.679220e+05 4450.20 1.483400e+03 1946.380 128.00 3 1.483400e+03 4450.20 1.723722e+05 1.723722e+05 0.00 NULL
2018 Community College (Queensboro) It Associate 68083.83333 4.085030e+05 4878.23 8.130383e+02 0.000 100.75 6 0.000000e+00 0.00 4.133812e+05 4.085030e+05 4878.23 NULL
2018 Community College (Queensboro) It Senior Associate 98500.90000 9.850090e+05 44485.31 4.448531e+03 86.640 612.50 10 8.664000e+01 866.40 1.029494e+06 9.858754e+05 43618.91 NULL
2018 Community College (Queensboro) It Support Assistant 20066.96479 2.408036e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 2.408036e+05 2.408036e+05 0.00 NULL
2018 Community College (Queensboro) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 147 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Queensboro) Lecturer/Doctoral Schedule 74013.83333 4.440830e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.440830e+05 4.440830e+05 0.00 NULL
2018 Community College (Queensboro) Locksmith NA NA 3474.30 3.474300e+03 3474.300 77.25 1 3.474300e+03 3474.30 NA NA NA NULL
2018 Community College (Queensboro) Mail/Message Services Worker 37912.00000 7.582400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.582400e+04 7.582400e+04 0.00 NULL
2018 Community College (Queensboro) Maintenance Worker NA NA 107729.58 1.795493e+04 12252.000 2482.50 6 1.225200e+04 73512.00 NA NA NA NULL
2018 Community College (Queensboro) Motor Vehicle Operator 42113.33333 1.263400e+05 5616.94 1.872313e+03 2225.010 157.75 3 1.872313e+03 5616.94 1.319569e+05 1.319569e+05 0.00 NULL
2018 Community College (Queensboro) Non-Teaching Adjunct I 6144.03955 9.093179e+05 0.00 0.000000e+00 0.000 0.00 148 0.000000e+00 0.00 9.093179e+05 9.093179e+05 0.00 NULL
2018 Community College (Queensboro) Non-Teaching Adjunct Iii 3343.59703 1.069951e+05 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 1.069951e+05 1.069951e+05 0.00 NULL
2018 Community College (Queensboro) Non-Teaching Adjunct Iv 1883.11708 5.649351e+04 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 5.649351e+04 5.649351e+04 0.00 NULL
2018 Community College (Queensboro) Non-Teaching Adjunct V 2239.28062 3.582849e+04 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 3.582849e+04 3.582849e+04 0.00 NULL
2018 Community College (Queensboro) Oiler NA NA 40990.94 2.049547e+04 20495.470 478.00 2 2.049547e+04 40990.94 NA NA NA NULL
2018 Community College (Queensboro) Painter NA NA 34884.46 3.488446e+04 34884.460 534.50 1 3.488446e+04 34884.46 NA NA NA NULL
2018 Community College (Queensboro) Plumber NA NA 70742.86 3.537143e+04 35371.430 690.75 2 3.537143e+04 70742.86 NA NA NA NULL
2018 Community College (Queensboro) President 231000.00000 2.310000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.310000e+05 2.310000e+05 0.00 NULL
2018 Community College (Queensboro) Professor NA NA 0.00 0.000000e+00 0.000 0.00 138 0.000000e+00 0.00 NA NA NA NULL
2018 Community College (Queensboro) Senior College Lab Tech 68149.07692 1.771876e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 1.771876e+06 1.771876e+06 0.00 NULL
2018 Community College (Queensboro) Senior Custodial Supervisor 38777.00000 7.755400e+04 41049.87 2.052494e+04 20524.935 1335.25 2 2.052494e+04 41049.87 1.186039e+05 1.186039e+05 0.00 NULL
2018 Community College (Queensboro) Senior Stationary Engineer NA NA 15382.46 1.538246e+04 15382.460 142.75 1 1.538246e+04 15382.46 NA NA NA NULL
2018 Community College (Queensboro) Senior Vice President 198750.00000 3.975000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.975000e+05 3.975000e+05 0.00 NULL
2018 Community College (Queensboro) Sr College Laboratory Tech 6473.88306 5.826495e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.826495e+04 5.826495e+04 0.00 NULL
2018 Community College (Queensboro) Staff Nurse 70606.62000 1.412132e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.412132e+05 1.412132e+05 0.00 NULL
2018 Community College (Queensboro) Stationary Engineer NA NA 199889.82 3.331497e+04 29978.910 2169.00 6 2.997891e+04 179873.46 NA NA NA NULL
2018 Community College (Queensboro) Stock Worker 33735.00000 3.373500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.373500e+04 3.373500e+04 0.00 NULL
2018 Community College (Queensboro) Supervisor Of Stock Workers 56785.00000 5.678500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.678500e+04 5.678500e+04 0.00 NULL
2018 Community College (Queensboro) Supervisor Painter NA NA 41623.23 4.162323e+04 41623.230 630.00 1 4.162323e+04 41623.23 NA NA NA NULL
2018 Community College (Queensboro) Thermostat Repairer NA NA 40313.95 4.031395e+04 40313.950 361.50 1 4.031395e+04 40313.95 NA NA NA NULL
2018 Community College (Queensboro) University Engineer 96928.00000 9.692800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.692800e+04 9.692800e+04 0.00 NULL
2018 Community College (Queensboro) Vice President 174604.71429 1.222233e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.222233e+06 1.222233e+06 0.00 NULL
2018 Community College (Queensboro) NA 56405.00000 1.128100e+05 45845.03 2.292251e+04 22922.515 1103.50 2 2.292251e+04 45845.03 1.586550e+05 1.586550e+05 0.00 NULL
2018 Conflicts Of Interest Board Administrative Claim Examiner 103422.00000 1.034220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.034220e+05 1.034220e+05 0.00 NULL
2018 Conflicts Of Interest Board Administrative Staff Analyst 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2018 Conflicts Of Interest Board Agency Attorney 77400.00000 3.870000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.870000e+05 3.870000e+05 0.00 NULL
2018 Conflicts Of Interest Board Agency Chief Contracting Officer 121151.00000 1.211510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.211510e+05 1.211510e+05 0.00 NULL
2018 Conflicts Of Interest Board Community Associate 49575.83333 2.974550e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.974550e+05 2.974550e+05 0.00 NULL
2018 Conflicts Of Interest Board Community Coordinator 60770.00000 6.077000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.077000e+04 6.077000e+04 0.00 NULL
2018 Conflicts Of Interest Board Computer Operations Manager 118300.00000 1.183000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.183000e+05 1.183000e+05 0.00 NULL
2018 Conflicts Of Interest Board Computer Specialist 90629.00000 9.062900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.062900e+04 9.062900e+04 0.00 NULL
2018 Conflicts Of Interest Board Confidential Investigator 48500.00000 9.700000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.700000e+04 9.700000e+04 0.00 NULL
2018 Conflicts Of Interest Board Counsel 208273.00000 2.082730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.082730e+05 2.082730e+05 0.00 NULL
2018 Conflicts Of Interest Board Executive Agency Counsel 150201.83333 9.012110e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.012110e+05 9.012110e+05 0.00 NULL
2018 Conflicts Of Interest Board Principal Administrative Associate - Lev 1 & 2 Non Supvr 54000.00000 5.400000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.400000e+04 5.400000e+04 0.00 NULL
2018 Conflicts Of Interest Board Secretary To Conflicts Of Interest Board 56325.00000 1.126500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.126500e+05 1.126500e+05 0.00 NULL
2018 Consumer Affairs Adm Manager-Non-Mgrl From M1/M2 69202.00000 1.384040e+05 7680.97 3.840485e+03 3840.485 156.00 2 3.840485e+03 7680.97 1.460850e+05 1.460850e+05 0.00 NULL
2018 Consumer Affairs Admin Community Relations Specialist 63623.00000 1.272460e+05 883.44 4.417200e+02 441.720 21.50 2 4.417200e+02 883.44 1.281294e+05 1.281294e+05 0.00 NULL
2018 Consumer Affairs Admin Contract Specialist 99560.66667 2.986820e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.986820e+05 2.986820e+05 0.00 NULL
2018 Consumer Affairs Administrative Accountant 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2018 Consumer Affairs Administrative Business Promotion Coordinator 90032.00000 9.003200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.003200e+04 9.003200e+04 0.00 NULL
2018 Consumer Affairs Administrative Director Of Social Services 110854.00000 2.217080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.217080e+05 2.217080e+05 0.00 NULL
2018 Consumer Affairs Administrative Public Information Specialist 85963.50000 1.719270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.719270e+05 1.719270e+05 0.00 NULL
2018 Consumer Affairs Administrative Staff Analyst 114318.76923 1.486144e+06 2606.36 2.004892e+02 0.000 66.50 13 0.000000e+00 0.00 1.488750e+06 1.486144e+06 2606.36 NULL
2018 Consumer Affairs Agency Attorney 77997.16216 2.885895e+06 38663.08 1.044948e+03 0.000 630.50 37 0.000000e+00 0.00 2.924558e+06 2.885895e+06 38663.08 NULL
2018 Consumer Affairs Assistant To The Commissioner 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2018 Consumer Affairs Associate Inspector 71594.68421 1.360299e+06 10433.43 5.491279e+02 1.050 238.75 19 1.050000e+00 19.95 1.370732e+06 1.360319e+06 10413.48 NULL
2018 Consumer Affairs Bookkeeper 42000.00000 4.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.200000e+04 4.200000e+04 0.00 NULL
2018 Consumer Affairs Business Promotion Coordinator 40000.00000 4.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.000000e+04 4.000000e+04 0.00 NULL
2018 Consumer Affairs Certified It Administrator 96803.00000 1.936060e+05 1946.78 9.733900e+02 973.390 32.00 2 9.733900e+02 1946.78 1.955528e+05 1.955528e+05 0.00 NULL
2018 Consumer Affairs Certified It Developer 97408.00000 9.740800e+04 841.74 8.417400e+02 841.740 12.50 1 8.417400e+02 841.74 9.824974e+04 9.824974e+04 0.00 NULL
2018 Consumer Affairs City Research Scientist 90000.00000 3.600000e+05 10.95 2.737500e+00 0.000 0.25 4 0.000000e+00 0.00 3.600110e+05 3.600000e+05 10.95 NULL
2018 Consumer Affairs Clerical Associate 41550.06897 2.409904e+06 69145.98 1.192172e+03 0.000 2253.00 58 0.000000e+00 0.00 2.479050e+06 2.409904e+06 69145.98 NULL
2018 Consumer Affairs College Aide 4329.83625 8.659673e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.659673e+03 8.659673e+03 0.00 NULL
2018 Consumer Affairs Commissioner 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2018 Consumer Affairs Community Assistant 38589.00000 2.315340e+05 113.57 1.892833e+01 0.000 5.25 6 0.000000e+00 0.00 2.316476e+05 2.315340e+05 113.57 NULL
2018 Consumer Affairs Community Associate 46427.53774 4.921319e+06 103660.94 9.779334e+02 0.000 3297.25 106 0.000000e+00 0.00 5.024980e+06 4.921319e+06 103660.94 NULL
2018 Consumer Affairs Community Coordinator 66037.98000 3.301899e+06 70182.67 1.403653e+03 0.000 1528.25 50 0.000000e+00 0.00 3.372082e+06 3.301899e+06 70182.67 NULL
2018 Consumer Affairs Computer Associate 65450.83333 3.927050e+05 7959.11 1.326518e+03 1431.620 172.75 6 1.326518e+03 7959.11 4.006641e+05 4.006641e+05 0.00 NULL
2018 Consumer Affairs Computer Programmer Analyst 77250.00000 7.725000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.725000e+04 7.725000e+04 0.00 NULL
2018 Consumer Affairs Computer Specialist 103470.83333 6.208250e+05 444.30 7.405000e+01 0.000 7.25 6 0.000000e+00 0.00 6.212693e+05 6.208250e+05 444.30 NULL
2018 Consumer Affairs Computer Systems Manager 108480.26667 1.627204e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.627204e+06 1.627204e+06 0.00 NULL
2018 Consumer Affairs Confidential Examiner 92000.00000 9.200000e+04 151.07 1.510700e+02 151.070 3.00 1 1.510700e+02 151.07 9.215107e+04 9.215107e+04 0.00 NULL
2018 Consumer Affairs Consumer Advocate 90686.00000 9.068600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.068600e+04 9.068600e+04 0.00 NULL
2018 Consumer Affairs Counsel 175100.00000 1.751000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.751000e+05 1.751000e+05 0.00 NULL
2018 Consumer Affairs Customer Information Representative Ma L 1549 40000.00000 4.000000e+04 1207.50 1.207500e+03 1207.500 47.75 1 1.207500e+03 1207.50 4.120750e+04 4.120750e+04 0.00 NULL
2018 Consumer Affairs Deputy Commissioner 190782.00000 1.907820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.907820e+05 1.907820e+05 0.00 NULL
2018 Consumer Affairs Director Bureau Of Weights And Measures 105875.00000 1.058750e+05 1093.50 1.093500e+03 1093.500 16.00 1 1.093500e+03 1093.50 1.069685e+05 1.069685e+05 0.00 NULL
2018 Consumer Affairs Director Of Bureau Of Consumer Services 94288.00000 9.428800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.428800e+04 9.428800e+04 0.00 NULL
2018 Consumer Affairs Director Of Consumer Information 138020.00000 1.380200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.380200e+05 1.380200e+05 0.00 NULL
2018 Consumer Affairs Executive Agency Counsel 116851.26667 1.752769e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.752769e+06 1.752769e+06 0.00 NULL
2018 Consumer Affairs Executive Assistant To The Commissioner 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2018 Consumer Affairs General Inspector 82860.50000 1.657210e+05 2496.99 1.248495e+03 1248.495 36.50 2 1.248495e+03 2496.99 1.682180e+05 1.682180e+05 0.00 NULL
2018 Consumer Affairs Graphic Artist 57880.00000 1.157600e+05 242.78 1.213900e+02 121.390 6.00 2 1.213900e+02 242.78 1.160028e+05 1.160028e+05 0.00 NULL
2018 Consumer Affairs Inspector 48535.20000 2.912112e+06 31819.87 5.303312e+02 0.000 922.25 60 0.000000e+00 0.00 2.943932e+06 2.912112e+06 31819.87 NULL
2018 Consumer Affairs Principal Administrative Associate - Lev 1 & 2 Non Supvr 64545.77778 5.809120e+05 8251.58 9.168422e+02 54.050 194.00 9 5.405000e+01 486.45 5.891636e+05 5.813984e+05 7765.13 NULL
2018 Consumer Affairs Project Manager 68000.00000 6.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.800000e+04 6.800000e+04 0.00 NULL
2018 Consumer Affairs Public Records Aide 41036.00000 4.103600e+04 235.84 2.358400e+02 235.840 10.50 1 2.358400e+02 235.84 4.127184e+04 4.127184e+04 0.00 NULL
2018 Consumer Affairs Research Assistant 47111.50000 5.653380e+05 1307.15 1.089292e+02 0.000 46.25 12 0.000000e+00 0.00 5.666452e+05 5.653380e+05 1307.15 NULL
2018 Consumer Affairs Secretary 40841.50000 8.168300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.168300e+04 8.168300e+04 0.00 NULL
2018 Consumer Affairs Secretary Of The Department 110094.00000 1.100940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100940e+05 1.100940e+05 0.00 NULL
2018 Consumer Affairs Secretary To The Commissioner 83430.00000 8.343000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.343000e+04 8.343000e+04 0.00 NULL
2018 Consumer Affairs Staff Analyst 68000.00000 6.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.800000e+04 6.800000e+04 0.00 NULL
2018 Cultural Affairs Adm Manager-Non-Mgrl From M1/M2 63929.00000 6.392900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.392900e+04 6.392900e+04 0.00 NULL
2018 Cultural Affairs Administrative Community Relations Specialist 127000.00000 1.270000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.270000e+05 1.270000e+05 0.00 NULL
2018 Cultural Affairs Administrative Project Manager 142052.00000 1.420520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.420520e+05 1.420520e+05 0.00 NULL
2018 Cultural Affairs Administrative Staff Analyst 90501.00000 1.810020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.810020e+05 1.810020e+05 0.00 NULL
2018 Cultural Affairs Agency Attorney 86687.50000 1.733750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.733750e+05 1.733750e+05 0.00 NULL
2018 Cultural Affairs Agency Chief Contracting Officer 111219.00000 2.224380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.224380e+05 2.224380e+05 0.00 NULL
2018 Cultural Affairs Arts Program Specialist 52799.00000 2.111960e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.111960e+05 2.111960e+05 0.00 NULL
2018 Cultural Affairs Assistant Commissioner 121767.00000 3.653010e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.653010e+05 3.653010e+05 0.00 NULL
2018 Cultural Affairs Associate Arts Programs Specialist 60451.69387 8.463237e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 8.463237e+05 8.463237e+05 0.00 NULL
2018 Cultural Affairs City Laborer 42012.37500 4.201238e+04 155.25 1.552500e+02 155.250 3.00 1 1.552500e+02 155.25 4.216762e+04 4.216762e+04 0.00 NULL
2018 Cultural Affairs Commissioner Of Cultural Affairs 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2018 Cultural Affairs Community Assistant 36172.31250 3.617231e+04 463.60 4.636000e+02 463.600 15.50 1 4.636000e+02 463.60 3.663591e+04 3.663591e+04 0.00 NULL
2018 Cultural Affairs Community Associate 40978.63102 6.966367e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 6.966367e+05 6.966367e+05 0.00 NULL
2018 Cultural Affairs Community Coordinator 68683.42857 9.615680e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 9.615680e+05 9.615680e+05 0.00 NULL
2018 Cultural Affairs Computer Associate 89057.00000 8.905700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.905700e+04 8.905700e+04 0.00 NULL
2018 Cultural Affairs Computer Systems Manager 116498.00000 1.164980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.164980e+05 1.164980e+05 0.00 NULL
2018 Cultural Affairs Deputy Commissioner 159308.00000 1.593080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.593080e+05 1.593080e+05 0.00 NULL
2018 Cultural Affairs Executive Agency Counsel 132277.50000 2.645550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.645550e+05 2.645550e+05 0.00 NULL
2018 Cultural Affairs Executive Director Of Materials For The Arts 105907.00000 1.059070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.059070e+05 1.059070e+05 0.00 NULL
2018 Cultural Affairs Secretary To The Commissioner 53701.00000 5.370100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.370100e+04 5.370100e+04 0.00 NULL
2018 Cultural Affairs Staff Analyst 71826.50000 1.436530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.436530e+05 1.436530e+05 0.00 NULL
2018 Cuny Central Office Assistant College Security Director 74900.00000 7.490000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.490000e+04 7.490000e+04 0.00 NULL
2018 Cuny Central Office Assistant To Heo 50842.62500 4.067410e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.067410e+05 4.067410e+05 0.00 NULL
2018 Cuny Central Office Campus Peace Officer 45998.50000 9.199700e+04 6073.99 3.036995e+03 3036.995 125.50 2 3.036995e+03 6073.99 9.807099e+04 9.807099e+04 0.00 NULL
2018 Cuny Central Office College Accounting Assistant 46442.00000 4.644200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.644200e+04 4.644200e+04 0.00 NULL
2018 Cuny Central Office College Assistant 8036.16667 2.410850e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.410850e+04 2.410850e+04 0.00 NULL
2018 Cuny Central Office Higher Education Assistant 70544.80000 3.527240e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.527240e+05 3.527240e+05 0.00 NULL
2018 Cuny Central Office Higher Education Associate 83902.75000 6.712220e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.712220e+05 6.712220e+05 0.00 NULL
2018 Cuny Central Office Higher Education Officer 105558.00000 3.166740e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.166740e+05 3.166740e+05 0.00 NULL
2018 Cuny Central Office It Assistant 58274.00000 5.827400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.827400e+04 5.827400e+04 0.00 NULL
2018 Cuny Central Office It Support Assistant 40639.00000 4.063900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.063900e+04 4.063900e+04 0.00 NULL
2018 Cuny Central Office Non-Teaching Adjunct I 10656.96875 2.131394e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.131394e+04 2.131394e+04 0.00 NULL
2018 Cuny Central Office Non-Teaching Adjunct V 27233.28000 2.723328e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.723328e+04 2.723328e+04 0.00 NULL
2018 Cuny Central Office University Associate Dean 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2018 Cuny Central Office University Payroll Analyst 48404.00000 4.840400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.840400e+04 4.840400e+04 0.00 NULL
2018 Department For The Aging *Attorney At Law 88289.00000 8.828900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.828900e+04 8.828900e+04 0.00 NULL
2018 Department For The Aging Accountant 61620.50000 1.232410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.232410e+05 1.232410e+05 0.00 NULL
2018 Department For The Aging Adm Manager-Non-Mgrl From M1/M2 73903.00000 7.390300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.390300e+04 7.390300e+04 0.00 NULL
2018 Department For The Aging Admin Community Relations Specialist 72541.50000 1.450830e+05 2155.26 1.077630e+03 1077.630 37.00 2 1.077630e+03 2155.26 1.472383e+05 1.472383e+05 0.00 NULL
2018 Department For The Aging Admin Contract Specialist 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2018 Department For The Aging Administrative Program Officer 104998.23161 3.254945e+06 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 3.254945e+06 3.254945e+06 0.00 NULL
2018 Department For The Aging Administrative Accountant 111757.00000 1.117570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.117570e+05 1.117570e+05 0.00 NULL
2018 Department For The Aging Administrative Community Relations Specialist 133825.00000 1.338250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.338250e+05 1.338250e+05 0.00 NULL
2018 Department For The Aging Administrative Director Of Social Services 99059.50000 1.981190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.981190e+05 1.981190e+05 0.00 NULL
2018 Department For The Aging Administrative Manager 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2018 Department For The Aging Administrative Procurement Analyst 99924.00000 9.992400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.992400e+04 9.992400e+04 0.00 NULL
2018 Department For The Aging Administrative Project Manager 108278.00000 1.082780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.082780e+05 1.082780e+05 0.00 NULL
2018 Department For The Aging Administrative Public Information Specialist 76200.00000 1.524000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.524000e+05 1.524000e+05 0.00 NULL
2018 Department For The Aging Administrative Staff Analyst 113489.73077 2.950733e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 2.950733e+06 2.950733e+06 0.00 NULL
2018 Department For The Aging Agency Chief Contracting Officer 137499.50000 2.749990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.749990e+05 2.749990e+05 0.00 NULL
2018 Department For The Aging Architect 72535.00000 7.253500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.253500e+04 7.253500e+04 0.00 NULL
2018 Department For The Aging Assistant Architect 68000.00000 1.360000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.360000e+05 1.360000e+05 0.00 NULL
2018 Department For The Aging Associate Staff Analyst 88015.66667 7.921410e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.921410e+05 7.921410e+05 0.00 NULL
2018 Department For The Aging Bookkeeper 59182.50000 1.183650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.183650e+05 1.183650e+05 0.00 NULL
2018 Department For The Aging Certified It Administrator 87731.00000 8.773100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.773100e+04 8.773100e+04 0.00 NULL
2018 Department For The Aging City Custodial Assistant 39857.00000 3.985700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.985700e+04 3.985700e+04 0.00 NULL
2018 Department For The Aging City Research Scientist 88213.00000 8.821300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.821300e+04 8.821300e+04 0.00 NULL
2018 Department For The Aging Clerical Associate 43419.37067 2.605162e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.605162e+05 2.605162e+05 0.00 NULL
2018 Department For The Aging College Aide 14685.00000 1.468500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.468500e+04 1.468500e+04 0.00 NULL
2018 Department For The Aging Commissioner 224749.00000 2.247490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.247490e+05 2.247490e+05 0.00 NULL
2018 Department For The Aging Community Assistant 23953.22802 2.155791e+05 181.36 2.015111e+01 0.000 8.00 9 0.000000e+00 0.00 2.157604e+05 2.155791e+05 181.36 NULL
2018 Department For The Aging Community Associate 47940.90796 1.917636e+06 16157.58 4.039395e+02 0.000 427.00 40 0.000000e+00 0.00 1.933794e+06 1.917636e+06 16157.58 NULL
2018 Department For The Aging Community Coordinator 63087.93649 4.100716e+06 614.06 9.447077e+00 0.000 17.50 65 0.000000e+00 0.00 4.101330e+06 4.100716e+06 614.06 NULL
2018 Department For The Aging Community Service Aide 7666.21761 3.465130e+06 0.00 0.000000e+00 0.000 0.00 452 0.000000e+00 0.00 3.465130e+06 3.465130e+06 0.00 NULL
2018 Department For The Aging Computer Associate 69529.47208 4.171768e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.171768e+05 4.171768e+05 0.00 NULL
2018 Department For The Aging Computer Operations Manager 96372.50000 9.637250e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.637250e+04 9.637250e+04 0.00 NULL
2018 Department For The Aging Computer Specialist 91233.36364 1.003567e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.003567e+06 1.003567e+06 0.00 NULL
2018 Department For The Aging Computer Systems Manager 145817.00000 2.916340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.916340e+05 2.916340e+05 0.00 NULL
2018 Department For The Aging Counsel 171469.00000 1.714690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.714690e+05 1.714690e+05 0.00 NULL
2018 Department For The Aging Deputy Commissioner 170586.00000 1.705860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.705860e+05 1.705860e+05 0.00 NULL
2018 Department For The Aging Director Of Administration 165933.00000 1.659330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.659330e+05 1.659330e+05 0.00 NULL
2018 Department For The Aging Director Of Community Programs 136661.00000 1.366610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.366610e+05 1.366610e+05 0.00 NULL
2018 Department For The Aging Director Of Direct Service Programs 155317.00000 1.553170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.553170e+05 1.553170e+05 0.00 NULL
2018 Department For The Aging Executive Agency Counsel 134636.00000 1.346360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.346360e+05 1.346360e+05 0.00 NULL
2018 Department For The Aging Foster Grandparent 2379.80100 9.209830e+05 0.00 0.000000e+00 0.000 0.00 387 0.000000e+00 0.00 9.209830e+05 9.209830e+05 0.00 NULL
2018 Department For The Aging Housing Development Specialist 61104.00000 6.110400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.110400e+04 6.110400e+04 0.00 NULL
2018 Department For The Aging Management Auditor 71119.83333 8.534380e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 8.534380e+05 8.534380e+05 0.00 NULL
2018 Department For The Aging Nutrition Consultant 66453.23077 8.638920e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 8.638920e+05 8.638920e+05 0.00 NULL
2018 Department For The Aging Photographer 25591.04940 2.559105e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.559105e+04 2.559105e+04 0.00 NULL
2018 Department For The Aging Principal Administrative Associate - Lev 1 & 2 Non Supvr 59357.38889 1.068433e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.068433e+06 1.068433e+06 0.00 NULL
2018 Department For The Aging Principal Nutrition Consultant 78684.50000 1.573690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.573690e+05 1.573690e+05 0.00 NULL
2018 Department For The Aging Procurement Analyst 68656.00000 1.373120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.373120e+05 1.373120e+05 0.00 NULL
2018 Department For The Aging Program Officer 66782.97293 2.738102e+06 920.86 2.246000e+01 0.000 20.00 41 0.000000e+00 0.00 2.739023e+06 2.738102e+06 920.86 NULL
2018 Department For The Aging Secretary 36718.30000 2.203098e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.203098e+05 2.203098e+05 0.00 NULL
2018 Department For The Aging Summer College Intern 2287.00000 6.861000e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.861000e+03 6.861000e+03 0.00 NULL
2018 Department For The Aging Summer Graduate Intern 2947.32750 1.473664e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.473664e+04 1.473664e+04 0.00 NULL
2018 Department For The Aging Supervising Computer Service Technician 40918.72000 4.091872e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.091872e+04 4.091872e+04 0.00 NULL
2018 Department For The Aging Supervisor Ii 79399.00000 1.587980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.587980e+05 1.587980e+05 0.00 NULL
2018 Department For The Aging Supervisor Iii 71445.07957 4.286705e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.286705e+05 4.286705e+05 0.00 NULL
2018 Department Of Buildings Accountant 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2018 Department Of Buildings Adm Manager-Non-Mgrl From M1/M2 77320.12766 3.634046e+06 157434.34 3.349667e+03 0.000 3117.25 47 0.000000e+00 0.00 3.791480e+06 3.634046e+06 157434.34 NULL
2018 Department Of Buildings Admin Community Relations Specialist 81050.34783 1.864158e+06 86605.68 3.765464e+03 0.000 1754.00 23 0.000000e+00 0.00 1.950764e+06 1.864158e+06 86605.68 NULL
2018 Department Of Buildings Admin Inspector 100560.41026 3.921856e+06 519056.22 1.330913e+04 6536.070 7891.75 39 6.536070e+03 254906.73 4.440912e+06 4.176763e+06 264149.49 NULL
2018 Department Of Buildings Administration Public Record Officer 86177.50000 1.723550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.723550e+05 1.723550e+05 0.00 NULL
2018 Department Of Buildings Administrative Architect 124647.57143 4.362665e+06 61578.80 1.759394e+03 0.000 767.75 35 0.000000e+00 0.00 4.424244e+06 4.362665e+06 61578.80 NULL
2018 Department Of Buildings Administrative Borough Superintendent 133967.28571 9.377710e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.377710e+05 9.377710e+05 0.00 NULL
2018 Department Of Buildings Administrative City Planner 109191.25000 4.367650e+05 36286.19 9.071548e+03 0.000 484.25 4 0.000000e+00 0.00 4.730512e+05 4.367650e+05 36286.19 NULL
2018 Department Of Buildings Administrative Engineer 121521.06250 5.833011e+06 117106.47 2.439718e+03 0.000 1623.75 48 0.000000e+00 0.00 5.950117e+06 5.833011e+06 117106.47 NULL
2018 Department Of Buildings Administrative Inspector 138094.46154 1.795228e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.795228e+06 1.795228e+06 0.00 NULL
2018 Department Of Buildings Administrative Investigator 114143.33333 3.424300e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.424300e+05 3.424300e+05 0.00 NULL
2018 Department Of Buildings Administrative Management Auditor 67762.00000 6.776200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.776200e+04 6.776200e+04 0.00 NULL
2018 Department Of Buildings Administrative Manager 127230.25000 5.089210e+05 3610.30 9.025750e+02 0.000 69.00 4 0.000000e+00 0.00 5.125313e+05 5.089210e+05 3610.30 NULL
2018 Department Of Buildings Administrative Procurement Analyst 117864.00000 1.178640e+05 456.63 4.566300e+02 456.630 7.00 1 4.566300e+02 456.63 1.183206e+05 1.183206e+05 0.00 NULL
2018 Department Of Buildings Administrative Project Manager 130152.50000 5.206100e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.206100e+05 5.206100e+05 0.00 NULL
2018 Department Of Buildings Administrative Public Information Specialist 144656.00000 2.893120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.893120e+05 2.893120e+05 0.00 NULL
2018 Department Of Buildings Administrative Staff Analyst 109869.85000 4.394794e+06 66675.31 1.666883e+03 0.000 967.00 40 0.000000e+00 0.00 4.461469e+06 4.394794e+06 66675.31 NULL
2018 Department Of Buildings Agency Attorney 77416.35897 3.019238e+06 11979.17 3.071582e+02 0.000 183.75 39 0.000000e+00 0.00 3.031217e+06 3.019238e+06 11979.17 NULL
2018 Department Of Buildings Agency Attorney Interne 62647.25000 2.505890e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.505890e+05 2.505890e+05 0.00 NULL
2018 Department Of Buildings Agency Chief Contracting Officer 132266.00000 1.322660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.322660e+05 1.322660e+05 0.00 NULL
2018 Department Of Buildings Architect 88851.10000 1.777022e+06 75785.07 3.789253e+03 0.000 1184.75 20 0.000000e+00 0.00 1.852807e+06 1.777022e+06 75785.07 NULL
2018 Department Of Buildings Assistant Architect 74256.50000 1.485130e+06 24427.03 1.221351e+03 0.000 463.25 20 0.000000e+00 0.00 1.509557e+06 1.485130e+06 24427.03 NULL
2018 Department Of Buildings Assistant Civil Engineer 71205.57143 4.984390e+05 2960.33 4.229043e+02 134.950 67.00 7 1.349500e+02 944.65 5.013993e+05 4.993837e+05 2015.68 NULL
2018 Department Of Buildings Assistant Commissioner 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2018 Department Of Buildings Assistant Commissioner For Labor Relations & Admin 174804.00000 1.748040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.748040e+05 1.748040e+05 0.00 NULL
2018 Department Of Buildings Assistant Electrical Engineer 73949.00000 2.957960e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.957960e+05 2.957960e+05 0.00 NULL
2018 Department Of Buildings Assistant Mechanical Engineer 67904.03333 2.037121e+05 14190.67 4.730223e+03 777.480 234.75 3 7.774800e+02 2332.44 2.179028e+05 2.060445e+05 11858.23 NULL
2018 Department Of Buildings Assistant Plan Examiner 67756.03846 1.233160e+07 125878.85 6.916420e+02 0.000 2907.25 182 0.000000e+00 0.00 1.245748e+07 1.233160e+07 125878.85 NULL
2018 Department Of Buildings Associate Commissioner 174539.00000 1.745390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.745390e+05 1.745390e+05 0.00 NULL
2018 Department Of Buildings Associate Inspector 76387.27768 1.184003e+07 2557737.58 1.650153e+04 13140.140 45924.00 155 1.314014e+04 2036721.70 1.439777e+07 1.387675e+07 521015.88 NULL
2018 Department Of Buildings Associate Investigator 65593.33333 1.967800e+05 47044.48 1.568149e+04 0.000 1694.00 3 0.000000e+00 0.00 2.438245e+05 1.967800e+05 47044.48 NULL
2018 Department Of Buildings Associate Project Manager 88509.00000 5.310540e+05 11374.57 1.895762e+03 107.020 215.25 6 1.070200e+02 642.12 5.424286e+05 5.316961e+05 10732.45 NULL
2018 Department Of Buildings Associate Public Information Specialist 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2018 Department Of Buildings Associate Staff Analyst 76747.00000 8.442170e+05 5094.65 4.631500e+02 0.000 82.50 11 0.000000e+00 0.00 8.493117e+05 8.442170e+05 5094.65 NULL
2018 Department Of Buildings Business Promotion Coordinator 81419.33333 2.442580e+05 3279.53 1.093177e+03 638.210 56.75 3 6.382100e+02 1914.63 2.475375e+05 2.461726e+05 1364.90 NULL
2018 Department Of Buildings Certified It Administrator 90154.00000 2.704620e+05 51214.41 1.707147e+04 2977.200 735.00 3 2.977200e+03 8931.60 3.216764e+05 2.793936e+05 42282.81 NULL
2018 Department Of Buildings Chief Asset Management Officer 151747.00000 1.517470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.517470e+05 1.517470e+05 0.00 NULL
2018 Department Of Buildings Chief Of Staff 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2018 Department Of Buildings Chief Strategy Officer 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2018 Department Of Buildings City Research Scientist 83418.00000 8.341800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.341800e+04 8.341800e+04 0.00 NULL
2018 Department Of Buildings Civil Engineer 92148.00000 1.750812e+06 53206.63 2.800349e+03 316.260 921.50 19 3.162600e+02 6008.94 1.804019e+06 1.756821e+06 47197.69 NULL
2018 Department Of Buildings Civil Engineering Intern 37300.57035 1.492023e+05 609.93 1.524825e+02 56.475 20.25 4 5.647500e+01 225.90 1.498122e+05 1.494282e+05 384.03 NULL
2018 Department Of Buildings Clerical Associate 43752.11923 9.144193e+06 285426.19 1.365676e+03 0.000 9260.93 209 0.000000e+00 0.00 9.429619e+06 9.144193e+06 285426.19 NULL
2018 Department Of Buildings College Aide 7990.84736 6.872129e+05 0.00 0.000000e+00 0.000 0.00 86 0.000000e+00 0.00 6.872129e+05 6.872129e+05 0.00 NULL
2018 Department Of Buildings College Aide - Assignment Levels Ii And Iii 9949.31875 2.984796e+04 137.93 4.597667e+01 0.000 9.25 3 0.000000e+00 0.00 2.998589e+04 2.984796e+04 137.93 NULL
2018 Department Of Buildings Commissioner Of Buildings 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Department Of Buildings Community Assistant 34867.27273 3.835400e+05 3333.37 3.030336e+02 0.000 140.75 11 0.000000e+00 0.00 3.868734e+05 3.835400e+05 3333.37 NULL
2018 Department Of Buildings Community Associate 44496.59968 1.379395e+06 160007.41 5.161529e+03 122.480 5607.42 31 1.224800e+02 3796.88 1.539402e+06 1.383191e+06 156210.53 NULL
2018 Department Of Buildings Community Coordinator 66872.08108 2.474267e+06 111233.64 3.006315e+03 1211.710 2396.50 37 1.211710e+03 44833.27 2.585501e+06 2.519100e+06 66400.37 NULL
2018 Department Of Buildings Computer Associate 75874.30000 7.587430e+05 26583.60 2.658360e+03 501.505 493.75 10 5.015050e+02 5015.05 7.853266e+05 7.637581e+05 21568.55 NULL
2018 Department Of Buildings Computer Service Technician 61334.00000 6.133400e+04 11520.70 1.152070e+04 11520.700 243.25 1 1.152070e+04 11520.70 7.285470e+04 7.285470e+04 0.00 NULL
2018 Department Of Buildings Computer Specialist 102377.84615 1.330912e+06 15067.07 1.159005e+03 0.000 221.00 13 0.000000e+00 0.00 1.345979e+06 1.330912e+06 15067.07 NULL
2018 Department Of Buildings Computer Systems Manager 115601.34483 3.352439e+06 8168.25 2.816638e+02 0.000 104.25 29 0.000000e+00 0.00 3.360607e+06 3.352439e+06 8168.25 NULL
2018 Department Of Buildings Confidential Strategy Planner 85833.33333 2.575000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.575000e+05 2.575000e+05 0.00 NULL
2018 Department Of Buildings Deputy Commissioner 198243.00000 3.964860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.964860e+05 3.964860e+05 0.00 NULL
2018 Department Of Buildings Electrical Engineer 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2018 Department Of Buildings Electrical Engineering Intern 44290.49740 4.429050e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.429050e+04 4.429050e+04 0.00 NULL
2018 Department Of Buildings Engineering Technician 26642.24315 2.664224e+04 737.07 7.370700e+02 737.070 28.75 1 7.370700e+02 737.07 2.737931e+04 2.737931e+04 0.00 NULL
2018 Department Of Buildings Equal Employment Opportunity Officer 103500.00000 1.035000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.035000e+05 1.035000e+05 0.00 NULL
2018 Department Of Buildings Estimator 64267.33333 1.928020e+05 380.30 1.267667e+02 0.000 11.00 3 0.000000e+00 0.00 1.931823e+05 1.928020e+05 380.30 NULL
2018 Department Of Buildings Executive Agency Counsel 131491.55556 2.366848e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.366848e+06 2.366848e+06 0.00 NULL
2018 Department Of Buildings Executive Assistant 76493.00000 1.529860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.529860e+05 1.529860e+05 0.00 NULL
2018 Department Of Buildings Executive Director Of Professional Development 128072.00000 1.280720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.280720e+05 1.280720e+05 0.00 NULL
2018 Department Of Buildings Executive Director, New York City Loft Board 148526.00000 1.485260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.485260e+05 1.485260e+05 0.00 NULL
2018 Department Of Buildings Inspector 62558.26817 2.496075e+07 2509446.59 6.289340e+03 1206.360 55310.40 399 1.206360e+03 481337.64 2.747020e+07 2.544209e+07 2028108.95 NULL
2018 Department Of Buildings Investigator 30513.13647 6.102627e+05 6230.70 3.115350e+02 0.000 267.75 20 0.000000e+00 0.00 6.164934e+05 6.102627e+05 6230.70 NULL
2018 Department Of Buildings Investigator Empl Disc 53850.28406 1.292407e+06 51229.07 2.134545e+03 394.630 1116.75 24 3.946300e+02 9471.12 1.343636e+06 1.301878e+06 41757.95 NULL
2018 Department Of Buildings Labor Relations Analyst 63921.72240 1.917652e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.917652e+05 1.917652e+05 0.00 NULL
2018 Department Of Buildings Mechanical Engineer 90348.85714 6.324420e+05 10523.42 1.503346e+03 0.000 158.00 7 0.000000e+00 0.00 6.429654e+05 6.324420e+05 10523.42 NULL
2018 Department Of Buildings Mechanical Engineering Intern 47820.52820 1.434616e+05 241.05 8.035000e+01 0.000 8.00 3 0.000000e+00 0.00 1.437026e+05 1.434616e+05 241.05 NULL
2018 Department Of Buildings Multiple Dwelling Specialist 68608.00000 2.058240e+05 10386.12 3.462040e+03 4631.020 207.50 3 3.462040e+03 10386.12 2.162101e+05 2.162101e+05 0.00 NULL
2018 Department Of Buildings Plan Examiner 84346.48276 2.446048e+06 22057.83 7.606148e+02 0.000 442.00 29 0.000000e+00 0.00 2.468106e+06 2.446048e+06 22057.83 NULL
2018 Department Of Buildings Principal Administrative Associate - Lev 1 & 2 Non Supvr 62549.34441 3.690411e+06 113876.13 1.930104e+03 0.000 2529.25 59 0.000000e+00 0.00 3.804287e+06 3.690411e+06 113876.13 NULL
2018 Department Of Buildings Principal Multiple Dwelling Specialist 92061.50000 1.841230e+05 2328.56 1.164280e+03 1164.280 11.00 2 1.164280e+03 2328.56 1.864516e+05 1.864516e+05 0.00 NULL
2018 Department Of Buildings Procurement Analyst 73609.50000 1.472190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.472190e+05 1.472190e+05 0.00 NULL
2018 Department Of Buildings Public Records Aide 42726.33333 1.281790e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.281790e+05 1.281790e+05 0.00 NULL
2018 Department Of Buildings Secretary 47883.00000 6.703620e+05 43396.27 3.099734e+03 136.385 1170.50 14 1.363850e+02 1909.39 7.137583e+05 6.722714e+05 41486.88 NULL
2018 Department Of Buildings Secretary To Department 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2018 Department Of Buildings Secretary To The Commissioner Of Bldgs 96323.00000 9.632300e+04 922.60 9.226000e+02 922.600 17.50 1 9.226000e+02 922.60 9.724560e+04 9.724560e+04 0.00 NULL
2018 Department Of Buildings Senior Estimator 82746.00000 8.274600e+04 1234.65 1.234650e+03 1234.650 25.00 1 1.234650e+03 1234.65 8.398065e+04 8.398065e+04 0.00 NULL
2018 Department Of Buildings Space Analyst 65475.50000 1.309510e+05 397.19 1.985950e+02 198.595 10.00 2 1.985950e+02 397.19 1.313482e+05 1.313482e+05 0.00 NULL
2018 Department Of Buildings Staff Analyst 66339.70000 6.633970e+05 5185.62 5.185620e+02 0.000 129.75 10 0.000000e+00 0.00 6.685826e+05 6.633970e+05 5185.62 NULL
2018 Department Of Buildings Statistician 44565.09750 4.456510e+04 1380.46 1.380460e+03 1380.460 33.50 1 1.380460e+03 1380.46 4.594556e+04 4.594556e+04 0.00 NULL
2018 Department Of Buildings Strategic Initiative Specialist 112347.20000 5.617360e+05 1114.04 2.228080e+02 0.000 26.50 5 0.000000e+00 0.00 5.628500e+05 5.617360e+05 1114.04 NULL
2018 Department Of Buildings Summer College Intern 2090.26396 2.508317e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 2.508317e+04 2.508317e+04 0.00 NULL
2018 Department Of Buildings Summer Graduate Intern 4380.75688 7.009211e+04 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 7.009211e+04 7.009211e+04 0.00 NULL
2018 Department Of Business Serv. Adm Manager-Non-Mgrl From M1/M2 83289.99800 9.994800e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 9.994800e+05 9.994800e+05 0.00 NULL
2018 Department Of Business Serv. Admin Contract Specialist 90670.00000 3.626800e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.626800e+05 3.626800e+05 0.00 NULL
2018 Department Of Business Serv. Administrative Architect 138343.00000 1.383430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.383430e+05 1.383430e+05 0.00 NULL
2018 Department Of Business Serv. Administrative Business Promotion Coordinator 94287.61111 5.091531e+06 0.00 0.000000e+00 0.000 0.00 54 0.000000e+00 0.00 5.091531e+06 5.091531e+06 0.00 NULL
2018 Department Of Business Serv. Administrative Manager 114724.00000 1.147240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.147240e+05 1.147240e+05 0.00 NULL
2018 Department Of Business Serv. Administrative Procurement Analyst 107123.00000 1.071230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.071230e+05 1.071230e+05 0.00 NULL
2018 Department Of Business Serv. Administrative Public Information Specialist 99300.00000 1.986000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.986000e+05 1.986000e+05 0.00 NULL
2018 Department Of Business Serv. Administrative Space Analyst 111299.00000 1.112990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.112990e+05 1.112990e+05 0.00 NULL
2018 Department Of Business Serv. Administrative Staff Analyst 100494.80000 5.024740e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.024740e+05 5.024740e+05 0.00 NULL
2018 Department Of Business Serv. Agency Attorney 83385.75000 3.335430e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.335430e+05 3.335430e+05 0.00 NULL
2018 Department Of Business Serv. Agency Chief Contracting Officer 133013.00000 1.330130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.330130e+05 1.330130e+05 0.00 NULL
2018 Department Of Business Serv. Assistant Commissioner 127397.69231 1.656170e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.656170e+06 1.656170e+06 0.00 NULL
2018 Department Of Business Serv. Associate Contract Specialist 69328.80836 4.853017e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.853017e+05 4.853017e+05 0.00 NULL
2018 Department Of Business Serv. Associate Staff Analyst 82536.13333 4.952168e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.952168e+05 4.952168e+05 0.00 NULL
2018 Department Of Business Serv. Business Promotion Coordinator 58940.40050 6.011921e+06 14033.97 1.375879e+02 0.000 316.00 102 0.000000e+00 0.00 6.025955e+06 6.011921e+06 14033.97 NULL
2018 Department Of Business Serv. Certified It Developer 110687.00000 1.106870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.106870e+05 1.106870e+05 0.00 NULL
2018 Department Of Business Serv. City Custodial Assistant 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2018 Department Of Business Serv. Clerical Associate 50791.34000 5.079134e+05 57.92 5.792000e+00 0.000 2.00 10 0.000000e+00 0.00 5.079713e+05 5.079134e+05 57.92 NULL
2018 Department Of Business Serv. College Aide 2268.00000 2.268000e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.268000e+03 2.268000e+03 0.00 NULL
2018 Department Of Business Serv. Commissioner Of Business Services 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2018 Department Of Business Serv. Community Assistant 7017.86000 3.508930e+04 28.20 5.640000e+00 0.000 0.00 5 0.000000e+00 0.00 3.511750e+04 3.508930e+04 28.20 NULL
2018 Department Of Business Serv. Community Associate 29331.53720 9.972723e+05 41894.96 1.232205e+03 0.000 1261.00 34 0.000000e+00 0.00 1.039167e+06 9.972723e+05 41894.96 NULL
2018 Department Of Business Serv. Community Coordinator 57307.29866 1.375375e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 1.375375e+06 1.375375e+06 0.00 NULL
2018 Department Of Business Serv. Computer Associate 74886.07500 2.995443e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.995443e+05 2.995443e+05 0.00 NULL
2018 Department Of Business Serv. Computer Operations Manager 95990.00000 9.599000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.599000e+04 9.599000e+04 0.00 NULL
2018 Department Of Business Serv. Computer Service Technician 45323.90400 4.532390e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.532390e+04 4.532390e+04 0.00 NULL
2018 Department Of Business Serv. Computer Specialist 84017.50000 1.680350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.680350e+05 1.680350e+05 0.00 NULL
2018 Department Of Business Serv. Computer Systems Manager 109356.66667 3.280700e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.280700e+05 3.280700e+05 0.00 NULL
2018 Department Of Business Serv. Contract Reviewer 56553.68020 1.979379e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 1.979379e+06 1.979379e+06 0.00 NULL
2018 Department Of Business Serv. Contract Specialist 56322.00000 5.632200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.632200e+04 5.632200e+04 0.00 NULL
2018 Department Of Business Serv. Deputy Commissioner 174239.00000 1.219673e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.219673e+06 1.219673e+06 0.00 NULL
2018 Department Of Business Serv. Executive Agency Counsel 124397.00000 2.487940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.487940e+05 2.487940e+05 0.00 NULL
2018 Department Of Business Serv. Management Auditor 75820.00000 1.516400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.516400e+05 1.516400e+05 0.00 NULL
2018 Department Of Business Serv. Principal Administrative Associate - Lev 1 & 2 Non Supvr 65951.37132 8.573678e+05 114.66 8.820000e+00 0.000 3.00 13 0.000000e+00 0.00 8.574825e+05 8.573678e+05 114.66 NULL
2018 Department Of Business Serv. Procurement Analyst 75190.00000 7.519000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.519000e+04 7.519000e+04 0.00 NULL
2018 Department Of Business Serv. Secretary To The Deputy Commissioner 57000.00000 5.700000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.700000e+04 5.700000e+04 0.00 NULL
2018 Department Of Business Serv. Space Analyst 70318.00000 7.031800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.031800e+04 7.031800e+04 0.00 NULL
2018 Department Of Business Serv. Staff Analyst 68078.66667 2.042360e+05 139.86 4.662000e+01 0.000 3.50 3 0.000000e+00 0.00 2.043759e+05 2.042360e+05 139.86 NULL
2018 Department Of Business Serv. Summer College Intern 3154.40769 4.100730e+04 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 4.100730e+04 4.100730e+04 0.00 NULL
2018 Department Of Business Serv. Summer Graduate Intern 4121.33333 2.472800e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.472800e+04 2.472800e+04 0.00 NULL
2018 Department Of Business Serv. Supervising Computer Service Technician 82776.00000 8.277600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.277600e+04 8.277600e+04 0.00 NULL
2018 Department Of Business Serv. Telecommunications Associate 53935.00000 5.393500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.393500e+04 5.393500e+04 0.00 NULL
2018 Department Of City Planning *Certified Local Area Network Administrator 107500.00000 1.075000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.075000e+05 1.075000e+05 0.00 NULL
2018 Department Of City Planning Accountant 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2018 Department Of City Planning Adm Manager-Non-Mgrl From M1/M2 66546.20000 3.327310e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.327310e+05 3.327310e+05 0.00 NULL
2018 Department Of City Planning Administrative City Planner 121351.75000 4.854070e+06 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 4.854070e+06 4.854070e+06 0.00 NULL
2018 Department Of City Planning Administrative Labor Relations Analyst 120516.66667 3.615500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.615500e+05 3.615500e+05 0.00 NULL
2018 Department Of City Planning Administrative Procurement Analyst 114000.00000 1.140000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.140000e+05 1.140000e+05 0.00 NULL
2018 Department Of City Planning Administrative Space Analyst 7716.35000 7.716350e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.716350e+03 7.716350e+03 0.00 NULL
2018 Department Of City Planning Administrative Staff Analyst 120000.00000 3.600000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.600000e+05 3.600000e+05 0.00 NULL
2018 Department Of City Planning Agency Attorney 90834.33333 8.175090e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.175090e+05 8.175090e+05 0.00 NULL
2018 Department Of City Planning Assistant Architect 65159.00000 6.515900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.515900e+04 6.515900e+04 0.00 NULL
2018 Department Of City Planning Assistant Highway Transportation Specialist 60690.20000 3.034510e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.034510e+05 3.034510e+05 0.00 NULL
2018 Department Of City Planning Assistant Urban Designer 55050.88824 9.358651e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 9.358651e+05 9.358651e+05 0.00 NULL
2018 Department Of City Planning Associate Staff Analyst 79749.20000 3.987460e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.987460e+05 3.987460e+05 0.00 NULL
2018 Department Of City Planning Associate Urban Designer 82376.27273 9.061390e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 9.061390e+05 9.061390e+05 0.00 NULL
2018 Department Of City Planning Certified It Administrator 87731.00000 1.754620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.754620e+05 1.754620e+05 0.00 NULL
2018 Department Of City Planning Certified It Developer 99287.50000 3.971500e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.971500e+05 3.971500e+05 0.00 NULL
2018 Department Of City Planning Chairman 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Department Of City Planning City Planner 74740.56731 7.773019e+06 0.00 0.000000e+00 0.000 0.00 104 0.000000e+00 0.00 7.773019e+06 7.773019e+06 0.00 NULL
2018 Department Of City Planning City Planning Technician 24754.50600 4.950901e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.950901e+04 4.950901e+04 0.00 NULL
2018 Department Of City Planning City Research Scientist 79993.40000 3.999670e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.999670e+05 3.999670e+05 0.00 NULL
2018 Department Of City Planning Civil Engineer 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2018 Department Of City Planning Clerical Associate 39232.83163 2.353970e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.353970e+05 2.353970e+05 0.00 NULL
2018 Department Of City Planning College Aide 1844.04595 7.376184e+04 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 7.376184e+04 7.376184e+04 0.00 NULL
2018 Department Of City Planning Commissioner 59427.08333 7.131250e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.131250e+05 7.131250e+05 0.00 NULL
2018 Department Of City Planning Commissioner Designated As Vice Chairman 68751.00000 6.875100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.875100e+04 6.875100e+04 0.00 NULL
2018 Department Of City Planning Community Assistant 5864.66491 6.451131e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 6.451131e+04 6.451131e+04 0.00 NULL
2018 Department Of City Planning Community Associate 42135.90925 8.427182e+05 324.88 1.624400e+01 0.000 12.75 20 0.000000e+00 0.00 8.430431e+05 8.427182e+05 324.88 NULL
2018 Department Of City Planning Community Coordinator 60945.51579 3.656731e+06 0.00 0.000000e+00 0.000 0.00 60 0.000000e+00 0.00 3.656731e+06 3.656731e+06 0.00 NULL
2018 Department Of City Planning Computer Aide-Non-Spvr 61259.00000 6.125900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.125900e+04 6.125900e+04 0.00 NULL
2018 Department Of City Planning Computer Associate 56767.91375 4.541433e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.541433e+05 4.541433e+05 0.00 NULL
2018 Department Of City Planning Computer Operations Manager 100308.50000 4.012340e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.012340e+05 4.012340e+05 0.00 NULL
2018 Department Of City Planning Computer Programmer Analyst 63083.42625 1.261669e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.261669e+05 1.261669e+05 0.00 NULL
2018 Department Of City Planning Computer Service Technician 62875.00000 6.287500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.287500e+04 6.287500e+04 0.00 NULL
2018 Department Of City Planning Computer Specialist 84830.83083 1.017970e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.017970e+06 1.017970e+06 0.00 NULL
2018 Department Of City Planning Computer Systems Manager 124188.83333 7.451330e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.451330e+05 7.451330e+05 0.00 NULL
2018 Department Of City Planning Contract Specialist 73410.00000 7.341000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.341000e+04 7.341000e+04 0.00 NULL
2018 Department Of City Planning Counsel 204251.00000 2.042510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.042510e+05 2.042510e+05 0.00 NULL
2018 Department Of City Planning Deputy Executive Director 193209.00000 1.932090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.932090e+05 1.932090e+05 0.00 NULL
2018 Department Of City Planning Director Of Public Information 140809.00000 2.816180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.816180e+05 2.816180e+05 0.00 NULL
2018 Department Of City Planning Economist 61000.00000 6.100000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.100000e+04 6.100000e+04 0.00 NULL
2018 Department Of City Planning Executive Agency Counsel 116133.00000 1.161330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.161330e+05 1.161330e+05 0.00 NULL
2018 Department Of City Planning Executive Assistant For Planning 120593.00000 1.205930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.205930e+05 1.205930e+05 0.00 NULL
2018 Department Of City Planning Executive Assistant To The Chairman 62000.00000 1.240000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.240000e+05 1.240000e+05 0.00 NULL
2018 Department Of City Planning Executive Director 207015.00000 2.070150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.070150e+05 2.070150e+05 0.00 NULL
2018 Department Of City Planning Geologist 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2018 Department Of City Planning Graphic Artist 74410.00000 7.441000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.441000e+04 7.441000e+04 0.00 NULL
2018 Department Of City Planning Highway Transportation Specialist 95395.50000 1.907910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.907910e+05 1.907910e+05 0.00 NULL
2018 Department Of City Planning Motor Vehicle Supervisor 53969.00000 5.396900e+04 25624.49 2.562449e+04 25624.490 607.00 1 2.562449e+04 25624.49 7.959349e+04 7.959349e+04 0.00 NULL
2018 Department Of City Planning Office Machine Aide 44489.00000 4.448900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.448900e+04 4.448900e+04 0.00 NULL
2018 Department Of City Planning Principal Administrative Associate - Lev 1 & 2 Non Supvr 64759.25000 5.180740e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.180740e+05 5.180740e+05 0.00 NULL
2018 Department Of City Planning Secretary 54879.00000 5.487900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.487900e+04 5.487900e+04 0.00 NULL
2018 Department Of City Planning Secretary To The Chairman 74443.00000 7.444300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.444300e+04 7.444300e+04 0.00 NULL
2018 Department Of City Planning Summer College Intern 4179.54750 8.359095e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.359095e+03 8.359095e+03 0.00 NULL
2018 Department Of Correction *Adm Dir Fleet Maintenance - Nm 142358.00000 1.423580e+05 409.07 4.090700e+02 409.070 0.00 1 4.090700e+02 409.07 1.427671e+05 1.427671e+05 0.00 NULL
2018 Department Of Correction *Attorney At Law 93532.00000 9.353200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.353200e+04 9.353200e+04 0.00 NULL
2018 Department Of Correction *Cook 38001.92086 5.282267e+06 596361.70 4.290372e+03 3542.170 19286.55 139 3.542170e+03 492361.63 5.878629e+06 5.774629e+06 104000.07 NULL
2018 Department Of Correction *Senior Cook 42211.14286 1.181912e+06 303913.99 1.085407e+04 7924.360 8793.00 28 7.924360e+03 221882.08 1.485826e+06 1.403794e+06 82031.91 NULL
2018 Department Of Correction *Supervisor 46350.00000 4.635000e+04 2165.62 2.165620e+03 2165.620 74.25 1 2.165620e+03 2165.62 4.851562e+04 4.851562e+04 0.00 NULL
2018 Department Of Correction Adm Manager-Non-Mgrl From M1/M2 70288.52727 3.865869e+06 450525.07 8.191365e+03 857.050 8787.75 55 8.570500e+02 47137.75 4.316394e+06 3.913007e+06 403387.32 NULL
2018 Department Of Correction Admin Community Relations Specialist 104200.00000 4.168000e+05 5704.61 1.426152e+03 781.105 85.00 4 7.811050e+02 3124.42 4.225046e+05 4.199244e+05 2580.19 NULL
2018 Department Of Correction Admin Construction Project Manager 109313.00000 1.093130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.093130e+05 1.093130e+05 0.00 NULL
2018 Department Of Correction Admin Contract Specialist 71250.00000 2.850000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.850000e+05 2.850000e+05 0.00 NULL
2018 Department Of Correction Admin Inspector 99365.00000 9.936500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.936500e+04 9.936500e+04 0.00 NULL
2018 Department Of Correction Administration Public Record Officer 114021.00000 1.140210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.140210e+05 1.140210e+05 0.00 NULL
2018 Department Of Correction Administrative Architect 140359.50000 2.807190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.807190e+05 2.807190e+05 0.00 NULL
2018 Department Of Correction Administrative Construction Project Manager 143408.00000 1.434080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.434080e+05 1.434080e+05 0.00 NULL
2018 Department Of Correction Administrative Director Of Social Services 109384.28571 1.531380e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.531380e+06 1.531380e+06 0.00 NULL
2018 Department Of Correction Administrative Engineer 142948.50000 2.858970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.858970e+05 2.858970e+05 0.00 NULL
2018 Department Of Correction Administrative Investigator 94359.14286 6.605140e+05 25783.02 3.683289e+03 0.000 562.50 7 0.000000e+00 0.00 6.862970e+05 6.605140e+05 25783.02 NULL
2018 Department Of Correction Administrative Management Auditor 123695.00000 1.236950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.236950e+05 1.236950e+05 0.00 NULL
2018 Department Of Correction Administrative Procurement Analyst 100591.50000 8.047320e+05 58813.41 7.351676e+03 0.000 816.00 8 0.000000e+00 0.00 8.635454e+05 8.047320e+05 58813.41 NULL
2018 Department Of Correction Administrative Project Manager 121227.80000 6.061390e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.061390e+05 6.061390e+05 0.00 NULL
2018 Department Of Correction Administrative Psychologist 169950.00000 1.699500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.699500e+05 1.699500e+05 0.00 NULL
2018 Department Of Correction Administrative Public Health Sanitarian 137452.50000 2.749050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.749050e+05 2.749050e+05 0.00 NULL
2018 Department Of Correction Administrative Public Information Specialist 114399.22222 1.029593e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.029593e+06 1.029593e+06 0.00 NULL
2018 Department Of Correction Administrative Quality Assurance Specialist 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2018 Department Of Correction Administrative Staff Analyst 107325.01818 5.902876e+06 496711.12 9.031111e+03 0.000 6743.25 55 0.000000e+00 0.00 6.399587e+06 5.902876e+06 496711.12 NULL
2018 Department Of Correction Administrative Storekeeper 124523.00000 1.245230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.245230e+05 1.245230e+05 0.00 NULL
2018 Department Of Correction Administrative Supervisor Of Building Maintenance 147659.50000 2.953190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.953190e+05 2.953190e+05 0.00 NULL
2018 Department Of Correction Agency Attorney 95178.10638 4.473371e+06 5931.63 1.262049e+02 0.000 104.50 47 0.000000e+00 0.00 4.479303e+06 4.473371e+06 5931.63 NULL
2018 Department Of Correction Agency Attorney Interne 60946.00000 1.828380e+05 11544.41 3.848137e+03 1593.690 290.50 3 1.593690e+03 4781.07 1.943824e+05 1.876191e+05 6763.34 NULL
2018 Department Of Correction Architect 104556.00000 1.045560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.045560e+05 1.045560e+05 0.00 NULL
2018 Department Of Correction Asbestos Handler Supervisor 83740.00000 1.674800e+05 61705.01 3.085251e+04 30852.505 992.25 2 3.085251e+04 61705.01 2.291850e+05 2.291850e+05 0.00 NULL
2018 Department Of Correction Assistant Architect 79726.00000 7.972600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.972600e+04 7.972600e+04 0.00 NULL
2018 Department Of Correction Assistant Printing Press Operator 48286.00000 4.828600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.828600e+04 4.828600e+04 0.00 NULL
2018 Department Of Correction Associate Correctional Counselor 57370.00000 4.819080e+06 373122.77 4.441938e+03 1735.610 9628.25 84 1.735610e+03 145791.24 5.192203e+06 4.964871e+06 227331.53 NULL
2018 Department Of Correction Associate Investigator 62814.04546 6.909545e+05 201063.23 1.827848e+04 4950.290 3882.00 11 4.950290e+03 54453.19 8.920177e+05 7.454077e+05 146610.04 NULL
2018 Department Of Correction Associate Project Manager 89073.75000 3.562950e+05 331.04 8.276000e+01 12.050 5.50 4 1.205000e+01 48.20 3.566260e+05 3.563432e+05 282.84 NULL
2018 Department Of Correction Associate Public Health Sanitarian 69810.75000 2.792430e+05 1049.24 2.623100e+02 0.000 17.50 4 0.000000e+00 0.00 2.802922e+05 2.792430e+05 1049.24 NULL
2018 Department Of Correction Associate Staff Analyst 86569.18750 1.385107e+06 113865.43 7.116589e+03 84.690 1704.50 16 8.469000e+01 1355.04 1.498972e+06 1.386462e+06 112510.39 NULL
2018 Department Of Correction Auto Body Worker 60675.00000 1.213500e+05 115697.77 5.784889e+04 57848.885 2552.75 2 5.784889e+04 115697.77 2.370478e+05 2.370478e+05 0.00 NULL
2018 Department Of Correction Auto Mechanic NA NA 379612.81 2.372580e+04 26345.450 6388.50 16 2.372580e+04 379612.81 NA NA NA NULL
2018 Department Of Correction Automotive Service Worker 37181.25000 2.974500e+05 29310.49 3.663811e+03 2382.250 1094.75 8 2.382250e+03 19058.00 3.267605e+05 3.165080e+05 10252.49 NULL
2018 Department Of Correction Baker 36867.40000 1.843370e+05 9702.93 1.940586e+03 1855.240 372.50 5 1.855240e+03 9276.20 1.940399e+05 1.936132e+05 426.73 NULL
2018 Department Of Correction Bookkeeper 35711.00000 3.571100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.571100e+04 3.571100e+04 0.00 NULL
2018 Department Of Correction Bricklayer NA NA 217499.02 3.107129e+04 39080.060 3089.50 7 3.107129e+04 217499.02 NA NA NA NULL
2018 Department Of Correction Captain 94070.34125 8.710914e+07 31487645.60 3.400394e+04 29179.145 417047.58 926 2.917915e+04 27019888.27 1.185968e+08 1.141290e+08 4467757.33 NULL
2018 Department Of Correction Carpenter NA NA 629038.55 3.310729e+04 35583.150 8343.75 19 3.310729e+04 629038.55 NA NA NA NULL
2018 Department Of Correction Case Management Nurse 50349.46533 3.020968e+05 3537.51 5.895850e+02 0.000 80.00 6 0.000000e+00 0.00 3.056343e+05 3.020968e+05 3537.51 NULL
2018 Department Of Correction Cashier 39164.25306 1.096599e+06 157095.64 5.610559e+03 2077.035 4876.75 28 2.077035e+03 58156.98 1.253695e+06 1.154756e+06 98938.66 NULL
2018 Department Of Correction Cement Mason NA NA 41543.10 4.154310e+04 41543.100 465.00 1 4.154310e+04 41543.10 NA NA NA NULL
2018 Department Of Correction Certified It Administrator 92998.00000 7.439840e+05 58586.77 7.323346e+03 7317.060 902.75 8 7.317060e+03 58536.48 8.025708e+05 8.025205e+05 50.29 NULL
2018 Department Of Correction Chaplain 42980.11042 1.289403e+06 18555.04 6.185013e+02 0.000 407.75 30 0.000000e+00 0.00 1.307958e+06 1.289403e+06 18555.04 NULL
2018 Department Of Correction City Elevator Operator 38267.00000 1.148010e+05 15899.44 5.299813e+03 3024.410 465.50 3 3.024410e+03 9073.23 1.307004e+05 1.238742e+05 6826.21 NULL
2018 Department Of Correction City Medical Specialist 136414.17811 1.500556e+06 3329.50 3.026818e+02 0.000 44.00 11 0.000000e+00 0.00 1.503885e+06 1.500556e+06 3329.50 NULL
2018 Department Of Correction City Research Scientist 94054.75000 3.762190e+05 49579.64 1.239491e+04 4963.665 705.00 4 4.963665e+03 19854.66 4.257986e+05 3.960737e+05 29724.98 NULL
2018 Department Of Correction Civil Engineer 88529.00000 8.852900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.852900e+04 8.852900e+04 0.00 NULL
2018 Department Of Correction Clerical Associate 44247.13333 2.654828e+06 268444.59 4.474077e+03 1943.260 7872.00 60 1.943260e+03 116595.60 2.923273e+06 2.771424e+06 151848.99 NULL
2018 Department Of Correction College Aide 3866.79138 1.121369e+05 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 1.121369e+05 1.121369e+05 0.00 NULL
2018 Department Of Correction Commissary Manager 34839.66667 3.135570e+05 12406.41 1.378490e+03 806.550 515.25 9 8.065500e+02 7258.95 3.259634e+05 3.208160e+05 5147.46 NULL
2018 Department Of Correction Commissioner 226366.00000 4.527320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.527320e+05 4.527320e+05 0.00 NULL
2018 Department Of Correction Community Assistant 33658.75000 1.346350e+05 15107.40 3.776850e+03 2172.730 668.00 4 2.172730e+03 8690.92 1.497424e+05 1.433259e+05 6416.48 NULL
2018 Department Of Correction Community Associate 39791.80480 8.754197e+05 54762.93 2.489224e+03 14.615 1776.50 22 1.461500e+01 321.53 9.301826e+05 8.757412e+05 54441.40 NULL
2018 Department Of Correction Community Coordinator 55561.95397 6.000691e+06 450196.70 4.168488e+03 160.230 10428.50 108 1.602300e+02 17304.84 6.450888e+06 6.017996e+06 432891.86 NULL
2018 Department Of Correction Computer Aide-Non-Spvr 48621.66667 1.458650e+05 18667.06 6.222353e+03 3771.600 514.75 3 3.771600e+03 11314.80 1.645321e+05 1.571798e+05 7352.26 NULL
2018 Department Of Correction Computer Associate 63618.53333 9.542780e+05 35133.21 2.342214e+03 1025.730 769.50 15 1.025730e+03 15385.95 9.894112e+05 9.696639e+05 19747.26 NULL
2018 Department Of Correction Computer Operations Manager 140520.25000 5.620810e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.620810e+05 5.620810e+05 0.00 NULL
2018 Department Of Correction Computer Specialist 95311.57143 2.668724e+06 67326.95 2.404534e+03 0.000 1101.00 28 0.000000e+00 0.00 2.736051e+06 2.668724e+06 67326.95 NULL
2018 Department Of Correction Computer Systems Manager 120989.82609 2.782766e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 2.782766e+06 2.782766e+06 0.00 NULL
2018 Department Of Correction Confidential Agency Investigator 128106.85714 1.793496e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.793496e+06 1.793496e+06 0.00 NULL
2018 Department Of Correction Construction Project Manager 96511.00000 2.895330e+05 274.31 9.143667e+01 0.000 0.00 3 0.000000e+00 0.00 2.898073e+05 2.895330e+05 274.31 NULL
2018 Department Of Correction Contract Specialist 68675.00000 6.867500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.867500e+04 6.867500e+04 0.00 NULL
2018 Department Of Correction Correction Administrative Aide 25400.33246 3.556047e+05 8968.55 6.406107e+02 0.000 299.07 14 0.000000e+00 0.00 3.645732e+05 3.556047e+05 8968.55 NULL
2018 Department Of Correction Correction Officer 66156.93911 7.083423e+08 162443059.72 1.517167e+04 10879.780 2992460.75 10707 1.087978e+04 116489804.46 8.707854e+08 8.248322e+08 45953255.26 NULL
2018 Department Of Correction Correctional Standards Review Specialist 69508.60417 3.336413e+06 118069.26 2.459776e+03 742.005 2434.25 48 7.420050e+02 35616.24 3.454482e+06 3.372029e+06 82453.02 NULL
2018 Department Of Correction Counselor 53049.00000 1.060980e+05 11565.05 5.782525e+03 5782.525 306.25 2 5.782525e+03 11565.05 1.176631e+05 1.176631e+05 0.00 NULL
2018 Department Of Correction Deputy Commissioner 194739.00000 3.894780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.894780e+05 3.894780e+05 0.00 NULL
2018 Department Of Correction Dietary Aide 34390.44444 3.095140e+05 5594.75 6.216389e+02 601.390 222.62 9 6.013900e+02 5412.51 3.151088e+05 3.149265e+05 182.24 NULL
2018 Department Of Correction Dietitian 55294.25000 6.635310e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 6.635310e+05 6.635310e+05 0.00 NULL
2018 Department Of Correction Director Of Correctional Standards Review 106504.66667 5.751252e+06 12699.93 2.351839e+02 0.000 272.25 54 0.000000e+00 0.00 5.763952e+06 5.751252e+06 12699.93 NULL
2018 Department Of Correction Electrical Engineer 95611.00000 9.561100e+04 3021.69 3.021690e+03 3021.690 44.00 1 3.021690e+03 3021.69 9.863269e+04 9.863269e+04 0.00 NULL
2018 Department Of Correction Electrician NA NA 2229267.05 4.206164e+04 43348.860 25895.25 53 4.206164e+04 2229267.05 NA NA NA NULL
2018 Department Of Correction Electrician’s Helper NA NA 668045.73 2.087643e+04 20144.590 12447.00 32 2.014459e+04 644626.88 NA NA NA NULL
2018 Department Of Correction Executive Agency Counsel 145901.64706 2.480328e+06 28.91 1.700588e+00 0.000 0.50 17 0.000000e+00 0.00 2.480357e+06 2.480328e+06 28.91 NULL
2018 Department Of Correction Executive Assistant To The Commissioner 211150.00000 2.111500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.111500e+05 2.111500e+05 0.00 NULL
2018 Department Of Correction Executive Director Of Food Services 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2018 Department Of Correction Exterminator 35869.53846 4.663040e+05 57040.39 4.387722e+03 1426.460 1646.25 13 1.426460e+03 18543.98 5.233444e+05 4.848480e+05 38496.41 NULL
2018 Department Of Correction Film Manager 80649.00000 1.612980e+05 856.70 4.283500e+02 428.350 18.50 2 4.283500e+02 856.70 1.621547e+05 1.621547e+05 0.00 NULL
2018 Department Of Correction Fitness Instructor 44442.48832 2.222124e+05 56749.15 1.134983e+04 6358.780 2033.00 5 6.358780e+03 31793.90 2.789616e+05 2.540063e+05 24955.25 NULL
2018 Department Of Correction Food Service Administrator 80248.33333 2.407450e+05 1895.41 6.318033e+02 511.830 42.50 3 5.118300e+02 1535.49 2.426404e+05 2.422805e+05 359.92 NULL
2018 Department Of Correction Food Service Manager 58793.18182 6.467250e+05 5913.83 5.376209e+02 473.740 154.75 11 4.737400e+02 5211.14 6.526388e+05 6.519361e+05 702.69 NULL
2018 Department Of Correction Fraud Investigator 62326.00000 6.232600e+04 6660.67 6.660670e+03 6660.670 16.00 1 6.660670e+03 6660.67 6.898667e+04 6.898667e+04 0.00 NULL
2018 Department Of Correction Graphic Artist 62366.50000 1.247330e+05 1468.22 7.341100e+02 734.110 52.75 2 7.341100e+02 1468.22 1.262012e+05 1.262012e+05 0.00 NULL
2018 Department Of Correction Health Services Manager 90461.50000 1.809230e+05 4068.49 2.034245e+03 2034.245 87.75 2 2.034245e+03 4068.49 1.849915e+05 1.849915e+05 0.00 NULL
2018 Department Of Correction High Pressure Plant Tender NA NA 336886.16 3.743180e+04 34065.540 6163.00 9 3.406554e+04 306589.86 NA NA NA NULL
2018 Department Of Correction Industrial Hygienist 63466.33333 1.903990e+05 9052.99 3.017663e+03 3735.670 212.25 3 3.017663e+03 9052.99 1.994520e+05 1.994520e+05 0.00 NULL
2018 Department Of Correction Institutional Aide 36312.40000 7.262480e+05 158237.44 7.911872e+03 3731.290 5613.75 20 3.731290e+03 74625.80 8.844854e+05 8.008738e+05 83611.64 NULL
2018 Department Of Correction Investigator 52778.22713 4.961153e+06 733556.19 7.803789e+03 4839.660 17940.45 94 4.839660e+03 454928.04 5.694710e+06 5.416081e+06 278628.15 NULL
2018 Department Of Correction Legal Coordinator 53770.33333 2.097043e+06 597558.48 1.532201e+04 6290.090 13321.75 39 6.290090e+03 245313.51 2.694601e+06 2.342357e+06 352244.97 NULL
2018 Department Of Correction Licensed Barber 36531.92308 4.749150e+05 41327.81 3.179062e+03 561.990 1563.00 13 5.619900e+02 7305.87 5.162428e+05 4.822209e+05 34021.94 NULL
2018 Department Of Correction Locksmith NA NA 165292.41 9.723083e+03 6617.920 3570.75 17 6.617920e+03 112504.64 NA NA NA NULL
2018 Department Of Correction Machinist NA NA 106644.93 3.554831e+04 36654.150 1650.25 3 3.554831e+04 106644.93 NA NA NA NULL
2018 Department Of Correction Maintenance Worker NA NA 712668.47 1.272622e+04 10191.110 16598.50 56 1.019111e+04 570702.16 NA NA NA NULL
2018 Department Of Correction Management Auditor 83190.75000 3.327630e+05 22481.66 5.620415e+03 0.000 339.75 4 0.000000e+00 0.00 3.552447e+05 3.327630e+05 22481.66 NULL
2018 Department Of Correction Marine Engineer 58857.57780 4.120030e+05 220921.52 3.156022e+04 24568.800 3575.50 7 2.456880e+04 171981.60 6.329246e+05 5.839846e+05 48939.92 NULL
2018 Department Of Correction Marine Oiler 95678.89250 1.913578e+05 127698.58 6.384929e+04 63849.290 2149.75 2 6.384929e+04 127698.58 3.190564e+05 3.190564e+05 0.00 NULL
2018 Department Of Correction Masons Helper NA NA 41272.86 4.127286e+04 41272.860 675.50 1 4.127286e+04 41272.86 NA NA NA NULL
2018 Department Of Correction Mate 57875.00000 5.787500e+04 8547.84 8.547840e+03 8547.840 0.00 1 8.547840e+03 8547.84 6.642284e+04 6.642284e+04 0.00 NULL
2018 Department Of Correction Metal Work Mechanic 80241.00000 4.012050e+05 142313.47 2.846269e+04 33574.040 2655.75 5 2.846269e+04 142313.47 5.435185e+05 5.435185e+05 0.00 NULL
2018 Department Of Correction Motor Vehicle Operator 43445.71739 1.998503e+06 449379.66 9.769123e+03 9096.790 12665.25 46 9.096790e+03 418452.34 2.447883e+06 2.416955e+06 30927.32 NULL
2018 Department Of Correction Motor Vehicle Supervisor 52497.14286 3.674800e+05 42685.76 6.097966e+03 4812.020 1175.50 7 4.812020e+03 33684.14 4.101658e+05 4.011641e+05 9001.62 NULL
2018 Department Of Correction Office Machine Aide 25692.36000 5.138472e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.138472e+04 5.138472e+04 0.00 NULL
2018 Department Of Correction Oiler NA NA 1907126.56 4.890068e+04 50265.910 20944.50 39 4.890068e+04 1907126.56 NA NA NA NULL
2018 Department Of Correction Operations Communications Specialist 27099.45000 2.709945e+04 147.00 1.470000e+02 147.000 6.00 1 1.470000e+02 147.00 2.724645e+04 2.724645e+04 0.00 NULL
2018 Department Of Correction Paralegal Aide 44774.26500 8.954853e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.954853e+04 8.954853e+04 0.00 NULL
2018 Department Of Correction Plasterer NA NA 127295.91 6.364796e+04 63647.955 1337.50 2 6.364796e+04 127295.91 NA NA NA NULL
2018 Department Of Correction Plumber NA NA 1593565.64 3.983914e+04 38341.400 14537.75 40 3.834140e+04 1533656.00 NA NA NA NULL
2018 Department Of Correction Plumber’s Helper NA NA 608391.20 2.897101e+04 30484.140 7954.25 21 2.897101e+04 608391.20 NA NA NA NULL
2018 Department Of Correction Principal Administrative Associate - Lev 1 & 2 Non Supvr 60871.03896 4.687070e+06 357562.37 4.643667e+03 594.530 8147.25 77 5.945300e+02 45778.81 5.044632e+06 4.732849e+06 311783.56 NULL
2018 Department Of Correction Printing Press Operator NA NA 41053.63 4.105363e+04 41053.630 670.00 1 4.105363e+04 41053.63 NA NA NA NULL
2018 Department Of Correction Procurement Analyst 62038.23143 8.685352e+05 272.84 1.948857e+01 0.000 5.25 14 0.000000e+00 0.00 8.688081e+05 8.685352e+05 272.84 NULL
2018 Department Of Correction Program Specialist Correction 65572.70944 8.458880e+06 938267.10 7.273388e+03 341.190 18589.00 129 3.411900e+02 44013.51 9.397147e+06 8.502893e+06 894253.59 NULL
2018 Department Of Correction Project Manager Intern# 57916.00000 5.791600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.791600e+04 5.791600e+04 0.00 NULL
2018 Department Of Correction Psychologist 72706.71032 7.270671e+05 54576.65 5.457665e+03 5339.960 812.25 10 5.339960e+03 53399.60 7.816438e+05 7.804667e+05 1177.05 NULL
2018 Department Of Correction Public Health Sanitarian 59017.28571 4.131210e+05 21862.39 3.123199e+03 831.430 446.45 7 8.314300e+02 5820.01 4.349834e+05 4.189410e+05 16042.38 NULL
2018 Department Of Correction Public Records Aide 36954.00000 3.695400e+04 93.22 9.322000e+01 93.220 2.00 1 9.322000e+01 93.22 3.704722e+04 3.704722e+04 0.00 NULL
2018 Department Of Correction Quality Assurance Specialist 68741.00000 6.874100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.874100e+04 6.874100e+04 0.00 NULL
2018 Department Of Correction Radio Repair Mechanic NA NA 10255.15 3.418383e+03 0.000 149.00 3 0.000000e+00 0.00 NA NA NA NULL
2018 Department Of Correction Recreation Director 39698.72000 9.924680e+05 19714.76 7.885904e+02 370.340 756.25 25 3.703400e+02 9258.50 1.012183e+06 1.001726e+06 10456.26 NULL
2018 Department Of Correction Recreation Supervisor 52259.71429 3.658180e+05 40471.85 5.781693e+03 2356.290 1060.00 7 2.356290e+03 16494.03 4.062898e+05 3.823120e+05 23977.82 NULL
2018 Department Of Correction Roofer NA NA 173615.12 2.170189e+04 21068.000 3004.25 8 2.106800e+04 168544.00 NA NA NA NULL
2018 Department Of Correction Rubber Tire Repairer NA NA 1184.39 5.921950e+02 592.195 28.25 2 5.921950e+02 1184.39 NA NA NA NULL
2018 Department Of Correction Secretary 48050.00000 4.805000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.805000e+04 4.805000e+04 0.00 NULL
2018 Department Of Correction Secretary To The Commissioner Of Correction 81000.00000 8.100000e+04 7888.30 7.888300e+03 7888.300 171.75 1 7.888300e+03 7888.30 8.888830e+04 8.888830e+04 0.00 NULL
2018 Department Of Correction Senior Baker 43346.75000 1.733870e+05 2423.11 6.057775e+02 0.000 80.00 4 0.000000e+00 0.00 1.758101e+05 1.733870e+05 2423.11 NULL
2018 Department Of Correction Senior Institutional Trades Instructor 45045.00000 9.009000e+04 75014.85 3.750743e+04 37507.425 2058.50 2 3.750743e+04 75014.85 1.651049e+05 1.651049e+05 0.00 NULL
2018 Department Of Correction Senior Stationary Engineer NA NA 674677.87 7.496421e+04 90538.140 6202.50 9 7.496421e+04 674677.87 NA NA NA NULL
2018 Department Of Correction Sheet Metal Worker NA NA 191649.96 3.832999e+04 37437.840 1633.25 5 3.743784e+04 187189.20 NA NA NA NULL
2018 Department Of Correction Social Worker 65588.00000 6.558800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.558800e+04 6.558800e+04 0.00 NULL
2018 Department Of Correction Staff Analyst 61652.30634 6.781754e+05 16398.62 1.490784e+03 10.360 451.00 11 1.036000e+01 113.96 6.945740e+05 6.782893e+05 16284.66 NULL
2018 Department Of Correction Staff Nurse 66295.93910 4.640716e+05 2365.00 3.378571e+02 0.000 45.00 7 0.000000e+00 0.00 4.664366e+05 4.640716e+05 2365.00 NULL
2018 Department Of Correction Stationary Engineer NA NA 1312106.66 4.859654e+04 57534.280 13446.50 27 4.859654e+04 1312106.66 NA NA NA NULL
2018 Department Of Correction Steam Fitter NA NA 422344.05 5.279301e+04 54081.490 3695.75 8 5.279301e+04 422344.05 NA NA NA NULL
2018 Department Of Correction Steam Fitter’s Helper NA NA 106115.64 2.122313e+04 2887.500 1235.50 5 2.887500e+03 14437.50 NA NA NA NULL
2018 Department Of Correction Stock Worker 33035.41176 5.616020e+05 60401.93 3.553055e+03 1540.040 2492.50 17 1.540040e+03 26180.68 6.220039e+05 5.877827e+05 34221.25 NULL
2018 Department Of Correction Summer Graduate Intern 2076.29167 1.868662e+05 0.00 0.000000e+00 0.000 0.00 90 0.000000e+00 0.00 1.868662e+05 1.868662e+05 0.00 NULL
2018 Department Of Correction Superintendent Of Laundries 57539.00000 5.753900e+04 9026.50 9.026500e+03 9026.500 220.50 1 9.026500e+03 9026.50 6.656550e+04 6.656550e+04 0.00 NULL
2018 Department Of Correction Supervising Computer Service Technician 80510.43000 1.610209e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.610209e+05 1.610209e+05 0.00 NULL
2018 Department Of Correction Supervising Housekeeper 48203.00000 9.640600e+04 11926.26 5.963130e+03 5963.130 341.00 2 5.963130e+03 11926.26 1.083323e+05 1.083323e+05 0.00 NULL
2018 Department Of Correction Supervisor Electrician NA NA 101965.25 1.019652e+05 101965.250 1115.50 1 1.019652e+05 101965.25 NA NA NA NULL
2018 Department Of Correction Supervisor Of Electrical Installations & Maintenance 69360.00000 6.936000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.936000e+04 6.936000e+04 0.00 NULL
2018 Department Of Correction Supervisor Of Mechanics NA NA 1086633.94 4.527641e+04 50387.605 11711.25 24 4.527641e+04 1086633.94 NA NA NA NULL
2018 Department Of Correction Supervisor Of Stock Workers 44298.36364 4.872820e+05 6694.25 6.085682e+02 0.000 158.25 11 0.000000e+00 0.00 4.939762e+05 4.872820e+05 6694.25 NULL
2018 Department Of Correction Supervisor Plumber NA NA 59120.88 5.912088e+04 59120.880 541.50 1 5.912088e+04 59120.88 NA NA NA NULL
2018 Department Of Correction Supervisor Steamfitter NA NA 117021.00 1.170210e+05 117021.000 963.50 1 1.170210e+05 117021.00 NA NA NA NULL
2018 Department Of Correction Telecommunications Associate 83075.00000 1.661500e+05 56686.79 2.834340e+04 28343.395 834.00 2 2.834340e+04 56686.79 2.228368e+05 2.228368e+05 0.00 NULL
2018 Department Of Correction Telephone Service Technician 57058.00000 5.705800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.705800e+04 5.705800e+04 0.00 NULL
2018 Department Of Correction Thermostat Repairer NA NA 468632.97 4.260300e+04 39222.920 4472.25 11 3.922292e+04 431452.12 NA NA NA NULL
2018 Department Of Correction Tractor Operator NA NA 188902.11 6.296737e+04 85187.090 1653.47 3 6.296737e+04 188902.11 NA NA NA NULL
2018 Department Of Correction Warden 193522.65517 5.612157e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 5.612157e+06 5.612157e+06 0.00 NULL
2018 Department Of Correction Warden-Assistant Deputy Warden Ted < 11/1/92 113280.28440 1.234755e+07 5100030.50 4.678927e+04 43393.950 56382.61 109 4.339395e+04 4729940.55 1.744758e+07 1.707749e+07 370089.95 NULL
2018 Department Of Correction Warden-Deputy Warden In Comm Ted < 11/1/92 166932.50000 1.335460e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.335460e+06 1.335460e+06 0.00 NULL
2018 Department Of Correction Warden-Deputy Warden Ted < 11/1/92 148447.02500 5.937881e+06 112034.87 2.800872e+03 0.000 1186.00 40 0.000000e+00 0.00 6.049916e+06 5.937881e+06 112034.87 NULL
2018 Department Of Correction Welder NA NA 451565.44 4.105140e+04 42949.740 4465.25 11 4.105140e+04 451565.44 NA NA NA NULL
2018 Department Of Correction Worker’s Compensation Benefits Examiner 48056.00000 4.805600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.805600e+04 4.805600e+04 0.00 NULL
2018 Department Of Education Admin *Administrative Attorney 212561.00000 2.125610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.125610e+05 2.125610e+05 0.00 NULL
2018 Department Of Education Admin *Associate Education Officer 92750.52308 6.028784e+06 19210.94 2.955529e+02 0.000 314.50 65 0.000000e+00 0.00 6.047995e+06 6.028784e+06 19210.94 NULL
2018 Department Of Education Admin *Certified Applications Developer 109476.50000 2.189530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.189530e+05 2.189530e+05 0.00 NULL
2018 Department Of Education Admin *Certified Wide Area Network Administrator 117628.50000 2.352570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.352570e+05 2.352570e+05 0.00 NULL
2018 Department Of Education Admin *Supervisor 44592.00000 4.459200e+04 633.07 6.330700e+02 633.070 27.25 1 6.330700e+02 633.07 4.522507e+04 4.522507e+04 0.00 NULL
2018 Department Of Education Admin Accountant 60033.00000 2.641452e+06 32438.86 7.372468e+02 0.000 793.50 44 0.000000e+00 0.00 2.673891e+06 2.641452e+06 32438.86 NULL
2018 Department Of Education Admin Adm Manager-Non-Mgrl From M1/M2 74183.75000 5.934700e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.934700e+05 5.934700e+05 0.00 NULL
2018 Department Of Education Admin Admin Contract Specialist 78427.50000 1.568550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.568550e+05 1.568550e+05 0.00 NULL
2018 Department Of Education Admin Administrative Accountant 114249.53846 1.485244e+06 1112.31 8.556231e+01 0.000 16.25 13 0.000000e+00 0.00 1.486356e+06 1.485244e+06 1112.31 NULL
2018 Department Of Education Admin Administrative Assistant To Community Education Council 41091.66667 8.629250e+05 199.66 9.507619e+00 0.000 3.50 21 0.000000e+00 0.00 8.631247e+05 8.629250e+05 199.66 NULL
2018 Department Of Education Admin Administrative Community Relations Specialist 94797.81250 1.516765e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.516765e+06 1.516765e+06 0.00 NULL
2018 Department Of Education Admin Administrative Education Analyst 104208.49666 4.678962e+07 51898.48 1.155868e+02 0.000 822.50 449 0.000000e+00 0.00 4.684151e+07 4.678962e+07 51898.48 NULL
2018 Department Of Education Admin Administrative Education Officer 99992.20874 6.179518e+07 95630.15 1.547413e+02 0.000 1473.50 618 0.000000e+00 0.00 6.189082e+07 6.179518e+07 95630.15 NULL
2018 Department Of Education Admin Administrative Management Auditor 104192.22222 9.377300e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.377300e+05 9.377300e+05 0.00 NULL
2018 Department Of Education Admin Administrative Manager 111035.28571 1.554494e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.554494e+06 1.554494e+06 0.00 NULL
2018 Department Of Education Admin Administrative Procurement Analyst 90641.53333 2.719246e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 2.719246e+06 2.719246e+06 0.00 NULL
2018 Department Of Education Admin Administrative Project Manager 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2018 Department Of Education Admin Administrative Public Health Nurse 147711.50000 2.954230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.954230e+05 2.954230e+05 0.00 NULL
2018 Department Of Education Admin Administrative Public Information Specialist 94182.10000 1.883642e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.883642e+06 1.883642e+06 0.00 NULL
2018 Department Of Education Admin Administrative Quality Assurance Specialist 98358.55556 2.655681e+06 3778.77 1.399544e+02 0.000 62.75 27 0.000000e+00 0.00 2.659460e+06 2.655681e+06 3778.77 NULL
2018 Department Of Education Admin Administrative Retirement Benefits Specialist 136046.14286 9.523230e+05 8904.00 1.272000e+03 0.000 111.50 7 0.000000e+00 0.00 9.612270e+05 9.523230e+05 8904.00 NULL
2018 Department Of Education Admin Administrative School Food Service Manager 102168.27778 1.839029e+06 114.12 6.340000e+00 0.000 0.00 18 0.000000e+00 0.00 1.839143e+06 1.839029e+06 114.12 NULL
2018 Department Of Education Admin Administrative Space Analyst 108942.00000 1.416246e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.416246e+06 1.416246e+06 0.00 NULL
2018 Department Of Education Admin Administrative Staff Analyst 117625.10460 2.811240e+07 1278.45 5.349163e+00 0.000 0.00 239 0.000000e+00 0.00 2.811368e+07 2.811240e+07 1278.45 NULL
2018 Department Of Education Admin Administrative Storekeeper 89186.50000 1.783730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.783730e+05 1.783730e+05 0.00 NULL
2018 Department Of Education Admin Agency Attorney 89369.62353 1.519284e+07 488.76 2.875059e+00 0.000 15.00 170 0.000000e+00 0.00 1.519332e+07 1.519284e+07 488.76 NULL
2018 Department Of Education Admin Agency Attorney Interne 61756.00000 1.235120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.235120e+05 1.235120e+05 0.00 NULL
2018 Department Of Education Admin Architect 92251.20000 4.612560e+05 7196.85 1.439370e+03 0.000 123.25 5 0.000000e+00 0.00 4.684528e+05 4.612560e+05 7196.85 NULL
2018 Department Of Education Admin Area Manager Of School Maintenance 126633.83333 3.799015e+06 10178.02 3.392673e+02 0.000 106.50 30 0.000000e+00 0.00 3.809193e+06 3.799015e+06 10178.02 NULL
2018 Department Of Education Admin Asbestos Handler 79890.66667 7.190160e+05 268039.95 2.978222e+04 29593.000 4153.25 9 2.959300e+04 266337.00 9.870559e+05 9.853530e+05 1702.95 NULL
2018 Department Of Education Admin Asbestos Hazard Investigator 65060.00000 6.506000e+04 10606.55 1.060655e+04 10606.550 156.50 1 1.060655e+04 10606.55 7.566655e+04 7.566655e+04 0.00 NULL
2018 Department Of Education Admin Assistant Accountant 58775.00000 5.877500e+04 120.64 1.206400e+02 120.640 7.50 1 1.206400e+02 120.64 5.889564e+04 5.889564e+04 0.00 NULL
2018 Department Of Education Admin Assistant Architect 79472.00000 7.947200e+04 0.23 2.300000e-01 0.230 0.00 1 2.300000e-01 0.23 7.947223e+04 7.947223e+04 0.00 NULL
2018 Department Of Education Admin Assistant Executive Director 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2018 Department Of Education Admin Associate Education Analyst 93660.22222 5.900594e+06 36258.60 5.755333e+02 0.000 529.50 63 0.000000e+00 0.00 5.936853e+06 5.900594e+06 36258.60 NULL
2018 Department Of Education Admin Associate Fingerprint Technician 43514.28571 3.046000e+05 55770.47 7.967210e+03 95.060 1739.00 7 9.506000e+01 665.42 3.603705e+05 3.052654e+05 55105.05 NULL
2018 Department Of Education Admin Associate Human Rights Specialist 92968.00000 9.296800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.296800e+04 9.296800e+04 0.00 NULL
2018 Department Of Education Admin Associate Investigator 65762.00000 6.576200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.576200e+04 6.576200e+04 0.00 NULL
2018 Department Of Education Admin Associate Project Manager 81864.00000 8.186400e+04 14425.30 1.442530e+04 14425.300 264.75 1 1.442530e+04 14425.30 9.628930e+04 9.628930e+04 0.00 NULL
2018 Department Of Education Admin Associate Public Information Specialist 54620.50000 1.092410e+05 7422.83 3.711415e+03 3711.415 158.25 2 3.711415e+03 7422.83 1.166638e+05 1.166638e+05 0.00 NULL
2018 Department Of Education Admin Associate Quality Assurance Specialist 64503.31481 3.483179e+06 268923.33 4.980062e+03 2047.775 6327.00 54 2.047775e+03 110579.85 3.752102e+06 3.593759e+06 158343.48 NULL
2018 Department Of Education Admin Associate Retirement Benefits Examiner 61861.07692 3.216776e+06 240328.21 4.621696e+03 1215.560 5062.25 52 1.215560e+03 63209.12 3.457104e+06 3.279985e+06 177119.09 NULL
2018 Department Of Education Admin Associate School Food Service Manager 68516.49180 4.179506e+06 216348.32 3.546694e+03 1562.500 4858.00 61 1.562500e+03 95312.50 4.395854e+06 4.274818e+06 121035.82 NULL
2018 Department Of Education Admin Associate Staff Analyst 79392.83333 4.763570e+05 651.64 1.086067e+02 0.000 7.50 6 0.000000e+00 0.00 4.770086e+05 4.763570e+05 651.64 NULL
2018 Department Of Education Admin Attorney At Law 97408.86250 2.922266e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.922266e+05 2.922266e+05 0.00 NULL
2018 Department Of Education Admin Bookkeeper 45946.77083 2.205445e+06 14693.81 3.061210e+02 0.000 470.25 48 0.000000e+00 0.00 2.220139e+06 2.205445e+06 14693.81 NULL
2018 Department Of Education Admin Bricklayer NA NA 68064.78 2.268826e+04 21618.490 1051.00 3 2.161849e+04 64855.47 NA NA NA NULL
2018 Department Of Education Admin Carpenter NA NA 481519.28 8.025321e+03 5374.570 5963.25 60 5.374570e+03 322474.20 NA NA NA NULL
2018 Department Of Education Admin Certified It Administrator 103661.85185 8.396610e+06 207470.84 2.561368e+03 228.830 2453.00 81 2.288300e+02 18535.23 8.604081e+06 8.415145e+06 188935.61 NULL
2018 Department Of Education Admin Certified It Developer 107716.65116 4.631816e+06 23957.09 5.571416e+02 0.000 277.75 43 0.000000e+00 0.00 4.655773e+06 4.631816e+06 23957.09 NULL
2018 Department Of Education Admin Chauffeur-Attendant 40723.00000 4.072300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.072300e+04 4.072300e+04 0.00 NULL
2018 Department Of Education Admin Chief Administrator Of Impartial Hearings 142510.00000 1.425100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.425100e+05 1.425100e+05 0.00 NULL
2018 Department Of Education Admin Chief Information Technology Officer 180000.00000 1.800000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.800000e+05 1.800000e+05 0.00 NULL
2018 Department Of Education Admin Chief School Business Executive 211979.00000 2.119790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.119790e+05 2.119790e+05 0.00 NULL
2018 Department Of Education Admin City Dentist 10311.00000 1.031100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.031100e+04 1.031100e+04 0.00 NULL
2018 Department Of Education Admin City Elevator Operator 36187.00000 1.085610e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.085610e+05 1.085610e+05 0.00 NULL
2018 Department Of Education Admin City Laborer NA NA 63846.95 3.755703e+03 2328.780 1177.25 17 2.328780e+03 39589.26 NA NA NA NULL
2018 Department Of Education Admin City Medical Specialist 69792.75631 9.073058e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 9.073058e+05 9.073058e+05 0.00 NULL
2018 Department Of Education Admin City Planner 92499.00000 9.249900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.249900e+04 9.249900e+04 0.00 NULL
2018 Department Of Education Admin City Research Scientist 101315.00000 2.026300e+05 14044.87 7.022435e+03 7022.435 247.50 2 7.022435e+03 14044.87 2.166749e+05 2.166749e+05 0.00 NULL
2018 Department Of Education Admin Civil Engineer 97762.00000 3.910480e+05 35411.10 8.852775e+03 1247.000 497.75 4 1.247000e+03 4988.00 4.264591e+05 3.960360e+05 30423.10 NULL
2018 Department Of Education Admin Clerical Aide 32905.46702 4.277711e+05 377.43 2.903308e+01 0.000 21.75 13 0.000000e+00 0.00 4.281485e+05 4.277711e+05 377.43 NULL
2018 Department Of Education Admin Clerical Associate 44153.22371 1.439395e+07 197298.20 6.052092e+02 0.000 5886.25 326 0.000000e+00 0.00 1.459125e+07 1.439395e+07 197298.20 NULL
2018 Department Of Education Admin Community Assistant 35350.83539 8.590253e+06 159008.82 6.543573e+02 74.130 5453.25 243 7.413000e+01 18013.59 8.749262e+06 8.608267e+06 140995.23 NULL
2018 Department Of Education Admin Community Associate 44455.82377 9.989224e+07 2016364.53 8.973585e+02 282.530 51631.50 2247 2.825300e+02 634844.91 1.019086e+08 1.005271e+08 1381519.62 NULL
2018 Department Of Education Admin Community Coordinator 60979.85749 5.006446e+07 777328.67 9.468071e+02 133.410 15312.50 821 1.334100e+02 109529.61 5.084179e+07 5.017399e+07 667799.06 NULL
2018 Department Of Education Admin Computer Aide-Non-Spvr 50747.56175 5.074756e+05 15063.31 1.506331e+03 0.000 285.50 10 0.000000e+00 0.00 5.225389e+05 5.074756e+05 15063.31 NULL
2018 Department Of Education Admin Computer Associate 71891.26168 7.692365e+06 17942.82 1.676899e+02 0.000 502.50 107 0.000000e+00 0.00 7.710308e+06 7.692365e+06 17942.82 NULL
2018 Department Of Education Admin Computer Programmer Analyst 57429.28571 4.020050e+05 307.94 4.399143e+01 0.000 18.50 7 0.000000e+00 0.00 4.023129e+05 4.020050e+05 307.94 NULL
2018 Department Of Education Admin Computer Service Technician 52218.69333 3.916402e+06 108301.65 1.444022e+03 0.000 2216.25 75 0.000000e+00 0.00 4.024704e+06 3.916402e+06 108301.65 NULL
2018 Department Of Education Admin Computer Specialist 103476.76818 2.276489e+07 239204.32 1.087292e+03 0.000 2834.00 220 0.000000e+00 0.00 2.300409e+07 2.276489e+07 239204.32 NULL
2018 Department Of Education Admin Computer Systems Manager 129669.63889 1.400432e+07 0.00 0.000000e+00 0.000 0.00 108 0.000000e+00 0.00 1.400432e+07 1.400432e+07 0.00 NULL
2018 Department Of Education Admin Confidential Agency Investigator 94759.00000 9.475900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.475900e+04 9.475900e+04 0.00 NULL
2018 Department Of Education Admin Confidential Investigator 70594.98936 6.635929e+06 15373.46 1.635474e+02 0.000 355.75 94 0.000000e+00 0.00 6.651302e+06 6.635929e+06 15373.46 NULL
2018 Department Of Education Admin Confidential Strategy Planner 68020.42857 4.761430e+05 162.84 2.326286e+01 0.000 8.50 7 0.000000e+00 0.00 4.763058e+05 4.761430e+05 162.84 NULL
2018 Department Of Education Admin Construction Laborer NA NA 157716.54 6.308662e+03 4703.050 2051.50 25 4.703050e+03 117576.25 NA NA NA NULL
2018 Department Of Education Admin Construction Project Manager 75327.75000 1.205244e+06 126209.31 7.888082e+03 3323.100 2199.25 16 3.323100e+03 53169.60 1.331453e+06 1.258414e+06 73039.71 NULL
2018 Department Of Education Admin Counsel To The Chancellor 200850.00000 2.008500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.008500e+05 2.008500e+05 0.00 NULL
2018 Department Of Education Admin Customer Information Representative Ma L 1549 53442.06641 1.368117e+07 153931.93 6.012966e+02 0.000 3877.00 256 0.000000e+00 0.00 1.383510e+07 1.368117e+07 153931.93 NULL
2018 Department Of Education Admin Deputy Auditor General 148370.00000 4.451100e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.451100e+05 4.451100e+05 0.00 NULL
2018 Department Of Education Admin Deputy Chancellor Financial Affairs 197425.00000 1.974250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.974250e+05 1.974250e+05 0.00 NULL
2018 Department Of Education Admin Deputy Executive Director 217125.00000 2.171250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.171250e+05 2.171250e+05 0.00 NULL
2018 Department Of Education Admin Deputy Executive Director Of Financial Operations 131129.00000 1.311290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.311290e+05 1.311290e+05 0.00 NULL
2018 Department Of Education Admin Deputy Inspector General 122800.00000 1.228000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.228000e+05 1.228000e+05 0.00 NULL
2018 Department Of Education Admin Director 164891.00000 1.648910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.648910e+05 1.648910e+05 0.00 NULL
2018 Department Of Education Admin Director Of Audit And Investigation 152361.00000 1.523610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.523610e+05 1.523610e+05 0.00 NULL
2018 Department Of Education Admin Director Of Equal Opportunity 145559.00000 1.455590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.455590e+05 1.455590e+05 0.00 NULL
2018 Department Of Education Admin District Manager Of Administration And Business Affairs 90201.40000 1.353021e+06 10186.25 6.790833e+02 0.000 137.25 15 0.000000e+00 0.00 1.363207e+06 1.353021e+06 10186.25 NULL
2018 Department Of Education Admin Education Analyst 70914.64286 9.928050e+05 302.60 2.161429e+01 0.000 12.50 14 0.000000e+00 0.00 9.931076e+05 9.928050e+05 302.60 NULL
2018 Department Of Education Admin Education Analyst Trainee 31479.24837 1.416566e+06 7192.00 1.598222e+02 0.000 268.50 45 0.000000e+00 0.00 1.423758e+06 1.416566e+06 7192.00 NULL
2018 Department Of Education Admin Education Officer 75609.27928 8.392630e+06 35112.49 3.163287e+02 0.000 683.75 111 0.000000e+00 0.00 8.427742e+06 8.392630e+06 35112.49 NULL
2018 Department Of Education Admin Educational Management Associate 166052.13333 4.981564e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 4.981564e+06 4.981564e+06 0.00 NULL
2018 Department Of Education Admin Electrician NA NA 1305181.40 1.267166e+04 7795.320 13697.50 103 7.795320e+03 802917.96 NA NA NA NULL
2018 Department Of Education Admin Electrician’s Helper NA NA 1770.99 1.770990e+03 1770.990 32.50 1 1.770990e+03 1770.99 NA NA NA NULL
2018 Department Of Education Admin Equal Rights Compliance Specialist 64597.66667 1.356551e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.356551e+06 1.356551e+06 0.00 NULL
2018 Department Of Education Admin Executive Agency Counsel 123373.80000 7.402428e+06 0.00 0.000000e+00 0.000 0.00 60 0.000000e+00 0.00 7.402428e+06 7.402428e+06 0.00 NULL
2018 Department Of Education Admin Executive Assistant To The Chancellor 122554.00000 2.451080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.451080e+05 2.451080e+05 0.00 NULL
2018 Department Of Education Admin Executive Director 219318.00000 2.193180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.193180e+05 2.193180e+05 0.00 NULL
2018 Department Of Education Admin Exterminator 37846.75000 7.569350e+05 15146.20 7.573100e+02 323.840 546.75 20 3.238400e+02 6476.80 7.720812e+05 7.634118e+05 8669.40 NULL
2018 Department Of Education Admin Furniture Maintainer NA NA 3528.72 3.528720e+03 3528.720 68.00 1 3.528720e+03 3528.72 NA NA NA NULL
2018 Department Of Education Admin Glazier NA NA 52424.82 5.824980e+03 2173.500 570.00 9 2.173500e+03 19561.50 NA NA NA NULL
2018 Department Of Education Admin Health Services Manager 90689.26316 1.723096e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.723096e+06 1.723096e+06 0.00 NULL
2018 Department Of Education Admin Industrial Hygienist 70113.00000 1.402260e+05 16955.05 8.477525e+03 8477.525 376.00 2 8.477525e+03 16955.05 1.571810e+05 1.571810e+05 0.00 NULL
2018 Department Of Education Admin Interpreter 47112.28000 9.422456e+04 2030.32 1.015160e+03 1015.160 65.25 2 1.015160e+03 2030.32 9.625488e+04 9.625488e+04 0.00 NULL
2018 Department Of Education Admin Interpreter/Translator 58535.24000 1.463381e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.463381e+06 1.463381e+06 0.00 NULL
2018 Department Of Education Admin Investigator Empl Disc 57325.37931 1.662436e+06 14811.18 5.107303e+02 0.000 391.00 29 0.000000e+00 0.00 1.677247e+06 1.662436e+06 14811.18 NULL
2018 Department Of Education Admin Investment Trustee - Deferred Compensation 1.00000 1.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+00 1.000000e+00 0.00 NULL
2018 Department Of Education Admin It Security Specialist 108740.71429 7.611850e+05 21289.54 3.041363e+03 0.000 197.00 7 0.000000e+00 0.00 7.824745e+05 7.611850e+05 21289.54 NULL
2018 Department Of Education Admin Legal Secretarial Assistant - Al 1 Only 41024.00000 4.102400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.102400e+04 4.102400e+04 0.00 NULL
2018 Department Of Education Admin Legal Secretarial Assistant Al 2,3,4 Only 47264.00000 9.452800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.452800e+04 9.452800e+04 0.00 NULL
2018 Department Of Education Admin Locksmith NA NA 2775.00 5.550000e+02 0.000 44.00 5 0.000000e+00 0.00 NA NA NA NULL
2018 Department Of Education Admin Machinist NA NA 630680.08 1.538244e+04 13661.730 10048.00 41 1.366173e+04 560130.93 NA NA NA NULL
2018 Department Of Education Admin Machinist’s Helper NA NA 32941.85 1.098062e+04 0.000 581.00 3 0.000000e+00 0.00 NA NA NA NULL
2018 Department Of Education Admin Maintenance Worker NA NA 15192.76 1.688084e+03 0.000 355.00 9 0.000000e+00 0.00 NA NA NA NULL
2018 Department Of Education Admin Management Auditor 63101.78947 1.198934e+06 579.70 3.051053e+01 0.000 12.50 19 0.000000e+00 0.00 1.199514e+06 1.198934e+06 579.70 NULL
2018 Department Of Education Admin Mechanical Engineer 86237.00000 8.623700e+04 45760.91 4.576091e+04 45760.910 659.50 1 4.576091e+04 45760.91 1.319979e+05 1.319979e+05 0.00 NULL
2018 Department Of Education Admin Mechanical Engineering Intern 47859.00000 4.785900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.785900e+04 4.785900e+04 0.00 NULL
2018 Department Of Education Admin Media Services Technician 58503.00000 1.170060e+05 375.27 1.876350e+02 187.635 22.25 2 1.876350e+02 375.27 1.173813e+05 1.173813e+05 0.00 NULL
2018 Department Of Education Admin Mental Health Worker 44018.00000 8.803600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.803600e+04 8.803600e+04 0.00 NULL
2018 Department Of Education Admin Motor Vehicle Operator 44882.64706 7.630050e+05 148201.83 8.717755e+03 6953.340 4277.50 17 6.953340e+03 118206.78 9.112068e+05 8.812118e+05 29995.05 NULL
2018 Department Of Education Admin Occupational Therapist 54368.55914 1.417388e+08 182905.61 7.015942e+01 0.000 2376.75 2607 0.000000e+00 0.00 1.419217e+08 1.417388e+08 182905.61 NULL
2018 Department Of Education Admin Office Machine Aide 41349.66667 2.480980e+05 2577.37 4.295617e+02 0.000 121.50 6 0.000000e+00 0.00 2.506754e+05 2.480980e+05 2577.37 NULL
2018 Department Of Education Admin Painter NA NA 16486.16 2.355166e+03 0.000 263.00 7 0.000000e+00 0.00 NA NA NA NULL
2018 Department Of Education Admin Physical Therapist 53775.07203 5.926013e+07 41290.56 3.746875e+01 0.000 517.25 1102 0.000000e+00 0.00 5.930142e+07 5.926013e+07 41290.56 NULL
2018 Department Of Education Admin Plasterer NA NA 170395.49 1.217111e+04 11541.150 2225.00 14 1.154115e+04 161576.10 NA NA NA NULL
2018 Department Of Education Admin Plumber NA NA 688645.22 1.275269e+04 10586.200 6444.75 54 1.058620e+04 571654.80 NA NA NA NULL
2018 Department Of Education Admin Plumber’s Helper NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2018 Department Of Education Admin Principal Administrative Associate - Lev 1 & 2 Non Supvr 59284.85779 1.327981e+07 272904.53 1.218324e+03 0.000 6254.50 224 0.000000e+00 0.00 1.355271e+07 1.327981e+07 272904.53 NULL
2018 Department Of Education Admin Principal School-Neighborhood Worker 52115.00000 5.211500e+04 1792.04 1.792040e+03 1792.040 31.75 1 1.792040e+03 1792.04 5.390704e+04 5.390704e+04 0.00 NULL
2018 Department Of Education Admin Procurement Analyst 61722.42169 5.122961e+06 77270.92 9.309749e+02 0.000 1757.25 83 0.000000e+00 0.00 5.200232e+06 5.122961e+06 77270.92 NULL
2018 Department Of Education Admin Program Producer 75295.00000 7.529500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.529500e+04 7.529500e+04 0.00 NULL
2018 Department Of Education Admin Public Records Aide 41458.45455 4.560430e+05 12500.72 1.136429e+03 198.350 593.00 11 1.983500e+02 2181.85 4.685437e+05 4.582248e+05 10318.87 NULL
2018 Department Of Education Admin Quality Assurance Specialist 56471.84615 1.468268e+06 25503.30 9.808962e+02 5.175 628.00 26 5.175000e+00 134.55 1.493771e+06 1.468403e+06 25368.75 NULL
2018 Department Of Education Admin Radio Repair Mechanic NA NA 117994.24 7.866283e+03 5396.760 1494.00 15 5.396760e+03 80951.40 NA NA NA NULL
2018 Department Of Education Admin Research Assistant 56863.33333 6.823600e+05 2662.74 2.218950e+02 0.000 63.50 12 0.000000e+00 0.00 6.850227e+05 6.823600e+05 2662.74 NULL
2018 Department Of Education Admin Roofer NA NA 46025.25 3.287518e+03 1695.615 586.50 14 1.695615e+03 23738.61 NA NA NA NULL
2018 Department Of Education Admin School Business Manager 77202.80892 1.212084e+07 319720.66 2.036437e+03 0.000 5468.00 157 0.000000e+00 0.00 1.244056e+07 1.212084e+07 319720.66 NULL
2018 Department Of Education Admin School Computer Technology Specialist 50483.92624 1.418598e+07 329665.51 1.173187e+03 0.000 7414.75 281 0.000000e+00 0.00 1.451565e+07 1.418598e+07 329665.51 NULL
2018 Department Of Education Admin School Equipment Maintainer 41288.00000 4.128800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.128800e+04 4.128800e+04 0.00 NULL
2018 Department Of Education Admin School Food Service Manager 51232.49378 2.469406e+07 272053.15 5.644256e+02 67.470 8193.75 482 6.747000e+01 32520.54 2.496612e+07 2.472658e+07 239532.61 NULL
2018 Department Of Education Admin School Lunch Aide 30380.98986 2.397060e+07 1872892.77 2.373755e+03 2152.560 21663.75 789 2.152560e+03 1698369.84 2.584349e+07 2.566897e+07 174522.93 NULL
2018 Department Of Education Admin School Lunch Assistant 39365.46939 3.857816e+06 183118.92 1.868560e+03 230.040 6725.75 98 2.300400e+02 22543.92 4.040935e+06 3.880360e+06 160575.00 NULL
2018 Department Of Education Admin School Lunch Assistant Cook 38653.82143 2.164614e+06 54557.52 9.742414e+02 103.110 1848.50 56 1.031100e+02 5774.16 2.219172e+06 2.170388e+06 48783.36 NULL
2018 Department Of Education Admin School Lunch Loader And Handler 49572.20000 1.487166e+06 146196.26 4.873209e+03 3707.710 4015.25 30 3.707710e+03 111231.30 1.633362e+06 1.598397e+06 34964.96 NULL
2018 Department Of Education Admin School Plant Manager 124731.09091 5.488168e+06 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 5.488168e+06 5.488168e+06 0.00 NULL
2018 Department Of Education Admin School-Neighborhood Worker 39802.66667 1.194080e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.194080e+05 1.194080e+05 0.00 NULL
2018 Department Of Education Admin Secretary 45375.25806 3.085518e+06 45043.32 6.624018e+02 0.000 1444.75 68 0.000000e+00 0.00 3.130561e+06 3.085518e+06 45043.32 NULL
2018 Department Of Education Admin Secretary To Community School Board 48816.94118 8.298880e+05 1228.00 7.223529e+01 0.000 29.25 17 0.000000e+00 0.00 8.311160e+05 8.298880e+05 1228.00 NULL
2018 Department Of Education Admin Secretary To The Chancellor 68593.00000 6.859300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.859300e+04 6.859300e+04 0.00 NULL
2018 Department Of Education Admin Secretary To The Counsel To The Chancellor 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2018 Department Of Education Admin Secretary To The Deputy Chancellor 84130.60000 4.206530e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.206530e+05 4.206530e+05 0.00 NULL
2018 Department Of Education Admin Secretary To The Special Commissioner Investigation Nyc Sch 84644.00000 8.464400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.464400e+04 8.464400e+04 0.00 NULL
2018 Department Of Education Admin Senior Estimator 82982.00000 8.298200e+04 9126.47 9.126470e+03 9126.470 175.50 1 9.126470e+03 9126.47 9.210847e+04 9.210847e+04 0.00 NULL
2018 Department Of Education Admin Senior School Lunch Aide 35542.42333 1.066273e+07 276329.55 9.210985e+02 228.060 9874.75 300 2.280600e+02 68418.00 1.093906e+07 1.073114e+07 207911.55 NULL
2018 Department Of Education Admin Senior School-Neighborhood Worker 49177.00000 1.475310e+05 2710.90 9.036333e+02 997.210 66.00 3 9.036333e+02 2710.90 1.502419e+05 1.502419e+05 0.00 NULL
2018 Department Of Education Admin Service Inspector 44391.75000 1.775670e+05 12.09 3.022500e+00 0.000 0.50 4 0.000000e+00 0.00 1.775791e+05 1.775670e+05 12.09 NULL
2018 Department Of Education Admin Sign Language Interpreter 73966.66010 1.849167e+06 30185.39 1.207416e+03 886.720 525.50 25 8.867200e+02 22168.00 1.879352e+06 1.871335e+06 8017.39 NULL
2018 Department Of Education Admin Special Assistant To The Chancellor 120077.40000 1.200774e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.200774e+06 1.200774e+06 0.00 NULL
2018 Department Of Education Admin Special Officer 41250.47059 1.402516e+06 213993.07 6.293914e+03 2218.540 6613.00 34 2.218540e+03 75430.36 1.616509e+06 1.477946e+06 138562.71 NULL
2018 Department Of Education Admin Staff Analyst 58477.50000 1.169550e+05 5209.68 2.604840e+03 2604.840 138.75 2 2.604840e+03 5209.68 1.221647e+05 1.221647e+05 0.00 NULL
2018 Department Of Education Admin Staff Audiologist 62191.66667 1.865750e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.865750e+05 1.865750e+05 0.00 NULL
2018 Department Of Education Admin Staff Nurse 51037.23105 5.348702e+07 4560996.90 4.352096e+03 176.700 62352.17 1048 1.767000e+02 185181.60 5.804802e+07 5.367220e+07 4375815.30 NULL
2018 Department Of Education Admin Statistician 59062.00000 5.906200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.906200e+04 5.906200e+04 0.00 NULL
2018 Department Of Education Admin Steam Fitter NA NA 787017.86 1.873852e+04 13337.500 7320.25 42 1.333750e+04 560175.00 NA NA NA NULL
2018 Department Of Education Admin Steam Fitter’s Helper NA NA 95576.25 4.778812e+04 47788.125 1070.50 2 4.778812e+04 95576.25 NA NA NA NULL
2018 Department Of Education Admin Stock Worker 38851.10962 4.662133e+05 7982.36 6.651967e+02 0.000 383.50 12 0.000000e+00 0.00 4.741957e+05 4.662133e+05 7982.36 NULL
2018 Department Of Education Admin Strategi Initiative Specialist 56650.00000 5.665000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.665000e+04 5.665000e+04 0.00 NULL
2018 Department Of Education Admin Strategic Initiative Specialist 96090.50000 1.921810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.921810e+05 1.921810e+05 0.00 NULL
2018 Department Of Education Admin Substance Abuse Prevention & Intervention Specialist 58155.49444 1.785374e+07 28299.37 9.218036e+01 0.000 717.50 307 0.000000e+00 0.00 1.788204e+07 1.785374e+07 28299.37 NULL
2018 Department Of Education Admin Summer College Intern 1593.05417 1.911665e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.911665e+04 1.911665e+04 0.00 NULL
2018 Department Of Education Admin Summer Graduate Intern 2020.20000 2.020200e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.020200e+03 2.020200e+03 0.00 NULL
2018 Department Of Education Admin Supervising Computer Service Technician 71969.34149 2.662866e+06 82016.36 2.216658e+03 0.000 1504.00 37 0.000000e+00 0.00 2.744882e+06 2.662866e+06 82016.36 NULL
2018 Department Of Education Admin Supervising Therapist 47339.56100 3.313769e+06 7480.54 1.068649e+02 0.000 79.50 70 0.000000e+00 0.00 3.321250e+06 3.313769e+06 7480.54 NULL
2018 Department Of Education Admin Supervisor 73097.66667 2.192930e+05 21227.17 7.075723e+03 7948.050 355.75 3 7.075723e+03 21227.17 2.405202e+05 2.405202e+05 0.00 NULL
2018 Department Of Education Admin Supervisor Bricklayer NA NA 2079.77 2.079770e+03 2079.770 23.00 1 2.079770e+03 2079.77 NA NA NA NULL
2018 Department Of Education Admin Supervisor Carpenter NA NA 51174.62 8.529103e+03 8143.520 658.50 6 8.143520e+03 48861.12 NA NA NA NULL
2018 Department Of Education Admin Supervisor Electrician NA NA 162077.20 1.350643e+04 7950.900 1636.25 12 7.950900e+03 95410.80 NA NA NA NULL
2018 Department Of Education Admin Supervisor Of Electrical Installations & Maintenance 72966.66667 1.532300e+06 212749.01 1.013091e+04 8750.880 4107.00 21 8.750880e+03 183768.48 1.745049e+06 1.716068e+06 28980.53 NULL
2018 Department Of Education Admin Supervisor Of Mechanical Installations & Maintenance 74195.11111 1.335512e+06 127469.02 7.081612e+03 4039.705 2231.25 18 4.039705e+03 72714.69 1.462981e+06 1.408227e+06 54754.33 NULL
2018 Department Of Education Admin Supervisor Of Mechanics NA NA 267537.69 1.163207e+04 11031.670 2799.50 23 1.103167e+04 253728.41 NA NA NA NULL
2018 Department Of Education Admin Supervisor Of Nurses 52646.29359 2.053205e+06 29135.07 7.470531e+02 0.000 211.75 39 0.000000e+00 0.00 2.082341e+06 2.053205e+06 29135.07 NULL
2018 Department Of Education Admin Supervisor Of Office Machine Operations 43667.40000 2.183370e+05 5.47 1.094000e+00 0.000 0.25 5 0.000000e+00 0.00 2.183425e+05 2.183370e+05 5.47 NULL
2018 Department Of Education Admin Supervisor Of Stock Workers 59301.00000 1.186020e+05 356.24 1.781200e+02 178.120 10.50 2 1.781200e+02 356.24 1.189582e+05 1.189582e+05 0.00 NULL
2018 Department Of Education Admin Supervisor Painter NA NA 21492.00 7.164000e+03 6232.680 255.50 3 6.232680e+03 18698.04 NA NA NA NULL
2018 Department Of Education Admin Supervisor Plasterer NA NA 65817.34 3.290867e+04 32908.670 841.50 2 3.290867e+04 65817.34 NA NA NA NULL
2018 Department Of Education Admin Supervisor Plumber NA NA 193626.18 2.766088e+04 24146.440 1756.00 7 2.414644e+04 169025.08 NA NA NA NULL
2018 Department Of Education Admin Supervisor Roofer NA NA 16045.24 5.348413e+03 5967.780 195.00 3 5.348413e+03 16045.24 NA NA NA NULL
2018 Department Of Education Admin Supervisor Steamfitter NA NA 166044.00 3.320880e+04 19323.000 1397.50 5 1.932300e+04 96615.00 NA NA NA NULL
2018 Department Of Education Admin Telecommunication Manager 121550.00000 2.431000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.431000e+05 2.431000e+05 0.00 NULL
2018 Department Of Education Admin Telecommunications Associate 75074.76471 1.276271e+06 1586.61 9.333000e+01 0.000 33.25 17 0.000000e+00 0.00 1.277858e+06 1.276271e+06 1586.61 NULL
2018 Department Of Education Admin Thermostat Repairer NA NA 36974.24 4.621780e+03 2736.920 263.00 8 2.736920e+03 21895.36 NA NA NA NULL
2018 Department Of Finance *Attorney At Law 102479.76923 1.332237e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.332237e+06 1.332237e+06 0.00 NULL
2018 Department Of Finance Accountant 65630.54545 7.219360e+05 25725.68 2.338698e+03 658.450 545.25 11 6.584500e+02 7242.95 7.476617e+05 7.291789e+05 18482.73 NULL
2018 Department Of Finance Adm Manager-Non-Mgrl From M1/M2 75731.48913 6.967297e+06 213225.16 2.317665e+03 0.000 4277.25 92 0.000000e+00 0.00 7.180522e+06 6.967297e+06 213225.16 NULL
2018 Department Of Finance Admin Contract Specialist 96914.00000 6.783980e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.783980e+05 6.783980e+05 0.00 NULL
2018 Department Of Finance Administrative Accountant 96138.80000 9.613880e+05 3.55 3.550000e-01 0.000 0.00 10 0.000000e+00 0.00 9.613916e+05 9.613880e+05 3.55 NULL
2018 Department Of Finance Administrative Architect 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2018 Department Of Finance Administrative Assessor 131765.62500 1.054125e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.054125e+06 1.054125e+06 0.00 NULL
2018 Department Of Finance Administrative City Planner 132666.66667 3.980000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.980000e+05 3.980000e+05 0.00 NULL
2018 Department Of Finance Administrative Deputy Register 111064.00000 3.331920e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.331920e+05 3.331920e+05 0.00 NULL
2018 Department Of Finance Administrative Investigator 123636.66667 3.709100e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.709100e+05 3.709100e+05 0.00 NULL
2018 Department Of Finance Administrative Labor Relations Analyst 107015.00000 9.631350e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.631350e+05 9.631350e+05 0.00 NULL
2018 Department Of Finance Administrative Management Auditor 119059.00000 2.381180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.381180e+05 2.381180e+05 0.00 NULL
2018 Department Of Finance Administrative Manager 106810.00000 3.204300e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.204300e+05 3.204300e+05 0.00 NULL
2018 Department Of Finance Administrative Procurement Analyst 98807.40000 4.940370e+05 206.33 4.126600e+01 0.000 3.75 5 0.000000e+00 0.00 4.942433e+05 4.940370e+05 206.33 NULL
2018 Department Of Finance Administrative Public Information Specialist 100800.00000 3.024000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.024000e+05 3.024000e+05 0.00 NULL
2018 Department Of Finance Administrative Space Analyst 82765.50000 1.655310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.655310e+05 1.655310e+05 0.00 NULL
2018 Department Of Finance Administrative Staff Analyst 104944.89516 1.301317e+07 142482.40 1.149052e+03 0.000 2457.50 124 0.000000e+00 0.00 1.315565e+07 1.301317e+07 142482.40 NULL
2018 Department Of Finance Administrative Storekeeper 97347.00000 2.920410e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.920410e+05 2.920410e+05 0.00 NULL
2018 Department Of Finance Administrative Supervisor Of Building Maintenance 90958.50000 1.819170e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.819170e+05 1.819170e+05 0.00 NULL
2018 Department Of Finance Administrative Tax Auditor 110094.91667 3.963417e+06 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 3.963417e+06 3.963417e+06 0.00 NULL
2018 Department Of Finance Agency Attorney 87602.80769 2.277673e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 2.277673e+06 2.277673e+06 0.00 NULL
2018 Department Of Finance Agency Chief Contracting Officer 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2018 Department Of Finance Assistant City Assessor 42855.08333 1.028522e+06 31335.99 1.305666e+03 0.000 1183.50 24 0.000000e+00 0.00 1.059858e+06 1.028522e+06 31335.99 NULL
2018 Department Of Finance Assistant Commissioner 166982.40000 8.349120e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.349120e+05 8.349120e+05 0.00 NULL
2018 Department Of Finance Associate Fraud Investigator 68935.11111 1.240832e+06 116188.57 6.454921e+03 4810.335 2347.75 18 4.810335e+03 86586.03 1.357021e+06 1.327418e+06 29602.54 NULL
2018 Department Of Finance Associate Labor Relations Analyst 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2018 Department Of Finance Associate Staff Analyst 83249.47368 1.581740e+06 24879.07 1.309425e+03 0.000 442.00 19 0.000000e+00 0.00 1.606619e+06 1.581740e+06 24879.07 NULL
2018 Department Of Finance Asst Commissioner 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2018 Department Of Finance Cashier 43948.20000 2.197410e+05 1326.48 2.652960e+02 0.000 44.50 5 0.000000e+00 0.00 2.210675e+05 2.197410e+05 1326.48 NULL
2018 Department Of Finance Certified It Administrator 110661.21429 1.549257e+06 55020.96 3.930069e+03 844.875 766.75 14 8.448750e+02 11828.25 1.604278e+06 1.561085e+06 43192.71 NULL
2018 Department Of Finance Chief Review Assessor 133948.00000 1.339480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339480e+05 1.339480e+05 0.00 NULL
2018 Department Of Finance City Assessor 73746.62500 8.259622e+06 278265.90 2.484517e+03 465.515 4819.50 112 4.655150e+02 52137.68 8.537888e+06 8.311760e+06 226128.22 NULL
2018 Department Of Finance City Collector 130505.00000 1.305050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.305050e+05 1.305050e+05 0.00 NULL
2018 Department Of Finance City Laborer NA NA 35112.46 2.508033e+03 258.750 609.25 14 2.587500e+02 3622.50 NA NA NA NULL
2018 Department Of Finance City Planner 62988.50000 1.259770e+05 3797.07 1.898535e+03 1898.535 79.50 2 1.898535e+03 3797.07 1.297741e+05 1.297741e+05 0.00 NULL
2018 Department Of Finance City Planning Technician 41675.00000 1.250250e+05 640.16 2.133867e+02 303.690 29.25 3 2.133867e+02 640.16 1.256652e+05 1.256652e+05 0.00 NULL
2018 Department Of Finance City Register 165452.00000 1.654520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.654520e+05 1.654520e+05 0.00 NULL
2018 Department Of Finance City Research Scientist 86749.77778 1.561496e+06 845.21 4.695611e+01 0.000 19.00 18 0.000000e+00 0.00 1.562341e+06 1.561496e+06 845.21 NULL
2018 Department Of Finance City Tax Auditor 62496.89239 2.381132e+07 150312.29 3.945204e+02 0.000 2923.75 381 0.000000e+00 0.00 2.396163e+07 2.381132e+07 150312.29 NULL
2018 Department Of Finance Clerical Aide 36610.81481 9.884920e+05 432.97 1.603593e+01 0.000 7.25 27 0.000000e+00 0.00 9.889250e+05 9.884920e+05 432.97 NULL
2018 Department Of Finance Clerical Associate 41178.85714 1.181833e+07 76782.08 2.675334e+02 0.000 2311.25 287 0.000000e+00 0.00 1.189511e+07 1.181833e+07 76782.08 NULL
2018 Department Of Finance College Aide 9696.27525 1.551404e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.551404e+05 1.551404e+05 0.00 NULL
2018 Department Of Finance Commissioner Of Finance 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Department Of Finance Community Assistant 35033.50000 7.006700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.006700e+04 7.006700e+04 0.00 NULL
2018 Department Of Finance Community Associate 50405.60000 5.040560e+05 16027.75 1.602775e+03 206.715 514.25 10 2.067150e+02 2067.15 5.200838e+05 5.061232e+05 13960.60 NULL
2018 Department Of Finance Community Coordinator 70197.00000 4.211820e+05 9329.74 1.554957e+03 337.940 200.25 6 3.379400e+02 2027.64 4.305117e+05 4.232096e+05 7302.10 NULL
2018 Department Of Finance Community Service Aide 33049.00000 3.304900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.304900e+04 3.304900e+04 0.00 NULL
2018 Department Of Finance Computer Aide-Non-Spvr 55394.50000 1.107890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.107890e+05 1.107890e+05 0.00 NULL
2018 Department Of Finance Computer Associate 70679.11111 1.908336e+06 15577.33 5.769381e+02 0.000 350.50 27 0.000000e+00 0.00 1.923913e+06 1.908336e+06 15577.33 NULL
2018 Department Of Finance Computer Programmer Analyst 66819.70000 6.681970e+05 2215.00 2.215000e+02 0.000 46.25 10 0.000000e+00 0.00 6.704120e+05 6.681970e+05 2215.00 NULL
2018 Department Of Finance Computer Service Technician 47095.00000 4.709500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.709500e+04 4.709500e+04 0.00 NULL
2018 Department Of Finance Computer Specialist 99332.95918 9.734630e+06 58145.12 5.933176e+02 0.000 1062.50 98 0.000000e+00 0.00 9.792775e+06 9.734630e+06 58145.12 NULL
2018 Department Of Finance Computer Systems Manager 129143.03448 1.498059e+07 0.00 0.000000e+00 0.000 0.00 116 0.000000e+00 0.00 1.498059e+07 1.498059e+07 0.00 NULL
2018 Department Of Finance Confidential Strategy Planner 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2018 Department Of Finance Counsel 187528.00000 1.875280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.875280e+05 1.875280e+05 0.00 NULL
2018 Department Of Finance Deputy City Sheriff - Non-Spvr 71863.90654 7.689438e+06 1855044.45 1.733686e+04 13659.830 33412.45 107 1.365983e+04 1461601.81 9.544482e+06 9.151040e+06 393442.64 NULL
2018 Department Of Finance Deputy Commissioner 196831.75000 7.873270e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.873270e+05 7.873270e+05 0.00 NULL
2018 Department Of Finance Director Of Public Information 121518.00000 1.215180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.215180e+05 1.215180e+05 0.00 NULL
2018 Department Of Finance Economist 68120.25000 2.724810e+05 12908.65 3.227162e+03 51.315 248.75 4 5.131500e+01 205.26 2.853897e+05 2.726863e+05 12703.39 NULL
2018 Department Of Finance Examiner Of Accounts 89121.00000 1.782420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.782420e+05 1.782420e+05 0.00 NULL
2018 Department Of Finance Executive Agency Counsel 135897.28571 2.853843e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 2.853843e+06 2.853843e+06 0.00 NULL
2018 Department Of Finance Executive Program Specialist 184756.00000 1.847560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.847560e+05 1.847560e+05 0.00 NULL
2018 Department Of Finance Fraud Investigator 42845.50000 1.713820e+05 23987.02 5.996755e+03 7584.560 830.50 4 5.996755e+03 23987.02 1.953690e+05 1.953690e+05 0.00 NULL
2018 Department Of Finance Graphic Artist 79868.50000 1.597370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.597370e+05 1.597370e+05 0.00 NULL
2018 Department Of Finance Hearing Officer 49704.70952 6.163384e+06 0.00 0.000000e+00 0.000 0.00 124 0.000000e+00 0.00 6.163384e+06 6.163384e+06 0.00 NULL
2018 Department Of Finance Investigator 38617.00000 1.930850e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.930850e+05 1.930850e+05 0.00 NULL
2018 Department Of Finance Investigator Empl Disc 77284.00000 7.728400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.728400e+04 7.728400e+04 0.00 NULL
2018 Department Of Finance Labor Relations Analyst 71479.66667 2.144390e+05 10793.72 3.597907e+03 0.000 262.00 3 0.000000e+00 0.00 2.252327e+05 2.144390e+05 10793.72 NULL
2018 Department Of Finance Legal Secretarial Assistant Al 2,3,4 Only 49817.00000 9.963400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.963400e+04 9.963400e+04 0.00 NULL
2018 Department Of Finance Management Auditor 81023.00000 5.671610e+05 781.41 1.116300e+02 0.000 15.25 7 0.000000e+00 0.00 5.679424e+05 5.671610e+05 781.41 NULL
2018 Department Of Finance Mortgage Tax Examiner 62755.00000 6.275500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.275500e+04 6.275500e+04 0.00 NULL
2018 Department Of Finance Motor Vehicle Operator 45947.33333 1.378420e+05 2743.42 9.144733e+02 31.770 80.75 3 3.177000e+01 95.31 1.405854e+05 1.379373e+05 2648.11 NULL
2018 Department Of Finance Motor Vehicle Supervisor 53969.00000 5.396900e+04 1609.00 1.609000e+03 1609.000 41.50 1 1.609000e+03 1609.00 5.557800e+04 5.557800e+04 0.00 NULL
2018 Department Of Finance Principal Administrative Associate - Lev 1 & 2 Non Supvr 58125.72093 1.499644e+07 204272.01 7.917520e+02 0.000 4997.50 258 0.000000e+00 0.00 1.520071e+07 1.499644e+07 204272.01 NULL
2018 Department Of Finance Procurement Analyst 71440.00000 3.572000e+05 7473.81 1.494762e+03 0.000 128.75 5 0.000000e+00 0.00 3.646738e+05 3.572000e+05 7473.81 NULL
2018 Department Of Finance Public Records Aide 38986.00000 3.898600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.898600e+04 3.898600e+04 0.00 NULL
2018 Department Of Finance Quality Assurance Specialist 53500.00000 5.350000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.350000e+04 5.350000e+04 0.00 NULL
2018 Department Of Finance Secretary 45850.20000 2.292510e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.292510e+05 2.292510e+05 0.00 NULL
2018 Department Of Finance Secretary Of Comm 86798.00000 8.679800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.679800e+04 8.679800e+04 0.00 NULL
2018 Department Of Finance Secretary To Deputy Commissioner 63805.00000 1.276100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.276100e+05 1.276100e+05 0.00 NULL
2018 Department Of Finance Senior Estimator 81985.00000 8.198500e+04 1077.37 1.077370e+03 1077.370 22.00 1 1.077370e+03 1077.37 8.306237e+04 8.306237e+04 0.00 NULL
2018 Department Of Finance Senior Photographer 57020.00000 5.702000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.702000e+04 5.702000e+04 0.00 NULL
2018 Department Of Finance Staff Analyst 66445.33333 1.395352e+06 46925.52 2.234549e+03 493.380 1027.75 21 4.933800e+02 10360.98 1.442278e+06 1.405713e+06 36564.54 NULL
2018 Department Of Finance Summer College Intern 1911.45034 7.454656e+04 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 7.454656e+04 7.454656e+04 0.00 NULL
2018 Department Of Finance Summer Graduate Intern 3022.42477 7.253819e+04 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 7.253819e+04 7.253819e+04 0.00 NULL
2018 Department Of Finance Supervising Computer Service Technician 65806.00000 6.580600e+04 146.01 1.460100e+02 146.010 3.75 1 1.460100e+02 146.01 6.595201e+04 6.595201e+04 0.00 NULL
2018 Department Of Finance Supervising Deputy Sheriff - Al 1 Only 40 Hr 106680.53333 1.600208e+06 385139.92 2.567599e+04 25037.490 4543.25 15 2.503749e+04 375562.35 1.985348e+06 1.975770e+06 9577.57 NULL
2018 Department Of Finance Supervising Special Officer 56099.50000 3.365970e+05 8982.78 1.497130e+03 354.845 227.25 6 3.548450e+02 2129.07 3.455798e+05 3.387261e+05 6853.71 NULL
2018 Department Of Finance Tax Map Cartographer 66861.00000 1.337220e+05 2815.82 1.407910e+03 1407.910 62.50 2 1.407910e+03 2815.82 1.365378e+05 1.365378e+05 0.00 NULL
2018 Department Of Finance Telecommunications Associate 46510.00000 4.651000e+04 1893.50 1.893500e+03 1893.500 58.00 1 1.893500e+03 1893.50 4.840350e+04 4.840350e+04 0.00 NULL
2018 Department Of Investigation Adm Manager-Non-Mgrl From M1/M2 75774.60000 7.577460e+05 22083.10 2.208310e+03 337.050 468.75 10 3.370500e+02 3370.50 7.798291e+05 7.611165e+05 18712.60 NULL
2018 Department Of Investigation Administrative Manager 113118.00000 3.393540e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.393540e+05 3.393540e+05 0.00 NULL
2018 Department Of Investigation Administrative Public Information Specialist 124600.00000 3.738000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.738000e+05 3.738000e+05 0.00 NULL
2018 Department Of Investigation Administrative Staff Analyst 112283.50000 2.245670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.245670e+05 2.245670e+05 0.00 NULL
2018 Department Of Investigation Assistant Commissioner 195700.00000 1.957000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.957000e+05 1.957000e+05 0.00 NULL
2018 Department Of Investigation Associate Public Information Specialist 91177.00000 9.117700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.117700e+04 9.117700e+04 0.00 NULL
2018 Department Of Investigation Clerical Associate 47446.45455 5.219110e+05 7428.64 6.753309e+02 0.000 226.00 11 0.000000e+00 0.00 5.293396e+05 5.219110e+05 7428.64 NULL
2018 Department Of Investigation Commissioner 220845.00000 2.208450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.208450e+05 2.208450e+05 0.00 NULL
2018 Department Of Investigation Community Assistant 24022.12280 7.206637e+04 1013.04 3.376800e+02 0.000 40.25 3 0.000000e+00 0.00 7.307941e+04 7.206637e+04 1013.04 NULL
2018 Department Of Investigation Community Associate 47124.15385 1.225228e+06 49019.79 1.885377e+03 13.250 1416.75 26 1.325000e+01 344.50 1.274248e+06 1.225572e+06 48675.29 NULL
2018 Department Of Investigation Community Coordinator 63337.12500 5.066970e+05 27901.99 3.487749e+03 964.540 625.75 8 9.645400e+02 7716.32 5.345990e+05 5.144133e+05 20185.67 NULL
2018 Department Of Investigation Computer Associate 70239.50000 2.809580e+05 2155.08 5.387700e+02 137.415 45.00 4 1.374150e+02 549.66 2.831131e+05 2.815077e+05 1605.42 NULL
2018 Department Of Investigation Computer Specialist 100048.66667 3.001460e+05 9266.29 3.088763e+03 0.000 117.50 3 0.000000e+00 0.00 3.094123e+05 3.001460e+05 9266.29 NULL
2018 Department Of Investigation Computer Systems Manager 112056.90909 1.232626e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.232626e+06 1.232626e+06 0.00 NULL
2018 Department Of Investigation Confidential Investigator 59215.81982 6.572956e+06 218421.18 1.967758e+03 701.900 5697.00 111 7.019000e+02 77910.90 6.791377e+06 6.650867e+06 140510.28 NULL
2018 Department Of Investigation Confidential Secretary To The Deputy Commissioner 61120.66667 1.833620e+05 9729.15 3.243050e+03 196.800 220.25 3 1.968000e+02 590.40 1.930911e+05 1.839524e+05 9138.75 NULL
2018 Department Of Investigation Deputy Commissioner 206880.00000 4.137600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.137600e+05 4.137600e+05 0.00 NULL
2018 Department Of Investigation Deputy Inspector General 107737.79310 3.124396e+06 9575.27 3.301817e+02 0.000 184.00 29 0.000000e+00 0.00 3.133971e+06 3.124396e+06 9575.27 NULL
2018 Department Of Investigation Examiner Of Accounts 91908.33333 2.757250e+05 3557.45 1.185817e+03 0.000 63.75 3 0.000000e+00 0.00 2.792825e+05 2.757250e+05 3557.45 NULL
2018 Department Of Investigation Examining Attorney 104958.93750 1.679343e+06 8814.49 5.509056e+02 0.000 135.25 16 0.000000e+00 0.00 1.688157e+06 1.679343e+06 8814.49 NULL
2018 Department Of Investigation Executive Director 154870.00000 1.548700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.548700e+05 1.548700e+05 0.00 NULL
2018 Department Of Investigation Inspector General 136217.00000 3.814076e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 3.814076e+06 3.814076e+06 0.00 NULL
2018 Department Of Investigation Principal Administrative Associate - Lev 1 & 2 Non Supvr 63446.71429 4.441270e+05 9850.32 1.407189e+03 0.000 208.25 7 0.000000e+00 0.00 4.539773e+05 4.441270e+05 9850.32 NULL
2018 Department Of Investigation Procurement Analyst 69278.50000 1.385570e+05 469.44 2.347200e+02 234.720 11.00 2 2.347200e+02 469.44 1.390264e+05 1.390264e+05 0.00 NULL
2018 Department Of Investigation Secretary 46986.50000 9.397300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.397300e+04 9.397300e+04 0.00 NULL
2018 Department Of Investigation Special Commissioner Of Investigation-Nyc School Dist. Doi 184476.50000 3.689530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.689530e+05 3.689530e+05 0.00 NULL
2018 Department Of Investigation Special Investigator 73684.25600 9.210532e+06 707032.24 5.656258e+03 2390.940 14588.50 125 2.390940e+03 298867.50 9.917564e+06 9.509400e+06 408164.74 NULL
2018 Department Of Investigation Stock Worker 35190.00000 3.519000e+04 38.52 3.852000e+01 38.520 2.00 1 3.852000e+01 38.52 3.522852e+04 3.522852e+04 0.00 NULL
2018 Department Of Probation *Attorney At Law 86793.00000 3.471720e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.471720e+05 3.471720e+05 0.00 NULL
2018 Department Of Probation Adm Manager-Non-Mgrl From M1/M2 72056.76923 9.367380e+05 25273.76 1.944135e+03 0.000 551.75 13 0.000000e+00 0.00 9.620118e+05 9.367380e+05 25273.76 NULL
2018 Department Of Probation Admin Contract Specialist 123588.75000 4.943550e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.943550e+05 4.943550e+05 0.00 NULL
2018 Department Of Probation Administrative Director Of Social Services 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2018 Department Of Probation Administrative Graphic Artist 88500.00000 8.850000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.850000e+04 8.850000e+04 0.00 NULL
2018 Department Of Probation Administrative Probation Officer 95176.28571 3.997404e+06 467.90 1.114048e+01 0.000 10.00 42 0.000000e+00 0.00 3.997872e+06 3.997404e+06 467.90 NULL
2018 Department Of Probation Administrative Public Information Specialist 87809.50000 1.756190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.756190e+05 1.756190e+05 0.00 NULL
2018 Department Of Probation Administrative Space Analyst 123600.00000 1.236000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.236000e+05 1.236000e+05 0.00 NULL
2018 Department Of Probation Administrative Staff Analyst 113798.81818 1.251787e+06 8174.55 7.431409e+02 0.000 120.25 11 0.000000e+00 0.00 1.259962e+06 1.251787e+06 8174.55 NULL
2018 Department Of Probation Agency Attorney 85225.85714 5.965810e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.965810e+05 5.965810e+05 0.00 NULL
2018 Department Of Probation Agency Chief Contracting Officer 119974.00000 1.199740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.199740e+05 1.199740e+05 0.00 NULL
2018 Department Of Probation Bookkeeper 45000.00000 4.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.500000e+04 4.500000e+04 0.00 NULL
2018 Department Of Probation Certified It Administrator 87731.00000 8.773100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.773100e+04 8.773100e+04 0.00 NULL
2018 Department Of Probation City Attendant 39802.00000 3.980200e+04 4052.50 4.052500e+03 4052.500 128.00 1 4.052500e+03 4052.50 4.385450e+04 4.385450e+04 0.00 NULL
2018 Department Of Probation City Laborer NA NA 14403.81 1.440381e+04 14403.810 231.00 1 1.440381e+04 14403.81 NA NA NA NULL
2018 Department Of Probation City Research Scientist 97177.60000 4.858880e+05 11390.03 2.278006e+03 0.000 202.25 5 0.000000e+00 0.00 4.972780e+05 4.858880e+05 11390.03 NULL
2018 Department Of Probation Clerical Associate 39267.02439 1.609948e+06 65325.15 1.593296e+03 0.000 1981.25 41 0.000000e+00 0.00 1.675273e+06 1.609948e+06 65325.15 NULL
2018 Department Of Probation College Aide 13137.60000 7.882560e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.882560e+04 7.882560e+04 0.00 NULL
2018 Department Of Probation Community Associate 43201.76923 1.123246e+06 22068.80 8.488000e+02 0.000 677.00 26 0.000000e+00 0.00 1.145315e+06 1.123246e+06 22068.80 NULL
2018 Department Of Probation Community Coordinator 72770.30769 9.460140e+05 4139.85 3.184500e+02 0.000 91.25 13 0.000000e+00 0.00 9.501538e+05 9.460140e+05 4139.85 NULL
2018 Department Of Probation Community Service Aide 28505.41379 8.266570e+05 13196.62 4.550559e+02 0.000 651.50 29 0.000000e+00 0.00 8.398536e+05 8.266570e+05 13196.62 NULL
2018 Department Of Probation Computer Service Technician 45708.50000 9.141700e+04 5356.96 2.678480e+03 2678.480 176.00 2 2.678480e+03 5356.96 9.677396e+04 9.677396e+04 0.00 NULL
2018 Department Of Probation Computer Specialist 96615.00000 7.729200e+05 78663.27 9.832909e+03 3431.000 1108.75 8 3.431000e+03 27448.00 8.515833e+05 8.003680e+05 51215.27 NULL
2018 Department Of Probation Computer Systems Manager 130511.00000 1.305110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.305110e+05 1.305110e+05 0.00 NULL
2018 Department Of Probation Counsel 173328.00000 1.733280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.733280e+05 1.733280e+05 0.00 NULL
2018 Department Of Probation Custodian 79034.00000 7.903400e+04 9427.51 9.427510e+03 9427.510 143.00 1 9.427510e+03 9427.51 8.846151e+04 8.846151e+04 0.00 NULL
2018 Department Of Probation Deputy Director Of Probation 168216.00000 3.364320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.364320e+05 3.364320e+05 0.00 NULL
2018 Department Of Probation Director Of Probation 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2018 Department Of Probation Executive Agency Counsel 143130.50000 8.587830e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.587830e+05 8.587830e+05 0.00 NULL
2018 Department Of Probation Executive Director Of Administration 173328.00000 1.733280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.733280e+05 1.733280e+05 0.00 NULL
2018 Department Of Probation Executive Program Specialist 119768.00000 1.197680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.197680e+05 1.197680e+05 0.00 NULL
2018 Department Of Probation Press Officer 113000.00000 1.130000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.130000e+05 1.130000e+05 0.00 NULL
2018 Department Of Probation Principal Administrative Associate - Lev 1 & 2 Non Supvr 54954.73529 1.868461e+06 13575.69 3.992850e+02 0.000 381.00 34 0.000000e+00 0.00 1.882037e+06 1.868461e+06 13575.69 NULL
2018 Department Of Probation Probation Assistant 28480.00000 1.424000e+05 72.48 1.449600e+01 0.000 3.75 5 0.000000e+00 0.00 1.424725e+05 1.424000e+05 72.48 NULL
2018 Department Of Probation Probation Officer 54177.01667 3.575683e+07 858867.98 1.301315e+03 31.230 20017.44 660 3.123000e+01 20611.80 3.661570e+07 3.577744e+07 838256.18 NULL
2018 Department Of Probation Probation Officer Trainee 42759.00000 1.282770e+05 952.25 3.174167e+02 0.000 31.00 3 0.000000e+00 0.00 1.292292e+05 1.282770e+05 952.25 NULL
2018 Department Of Probation Procurement Analyst 56499.68333 1.694990e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.694990e+05 1.694990e+05 0.00 NULL
2018 Department Of Probation Secretary 38733.07143 1.084526e+06 15470.82 5.525293e+02 0.000 512.50 28 0.000000e+00 0.00 1.099997e+06 1.084526e+06 15470.82 NULL
2018 Department Of Probation Senior Consultant 80436.50000 1.608730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.608730e+05 1.608730e+05 0.00 NULL
2018 Department Of Probation Senior Mental Health Worker 43840.48629 3.068834e+05 8037.55 1.148221e+03 0.000 275.75 7 0.000000e+00 0.00 3.149210e+05 3.068834e+05 8037.55 NULL
2018 Department Of Probation Staff Analyst 65437.75000 5.235020e+05 13552.04 1.694005e+03 0.000 223.50 8 0.000000e+00 0.00 5.370540e+05 5.235020e+05 13552.04 NULL
2018 Department Of Probation Stock Worker 35190.00000 3.519000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.519000e+04 3.519000e+04 0.00 NULL
2018 Department Of Probation Strategic Initiative Specialist 93048.00000 9.304800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.304800e+04 9.304800e+04 0.00 NULL
2018 Department Of Probation Summer College Intern 1981.77000 5.945310e+04 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 5.945310e+04 5.945310e+04 0.00 NULL
2018 Department Of Probation Summer Graduate Intern 2191.72000 8.766880e+03 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.766880e+03 8.766880e+03 0.00 NULL
2018 Department Of Probation Supervising Computer Service Technician 73117.00000 7.311700e+04 86.78 8.678000e+01 86.780 2.00 1 8.678000e+01 86.78 7.320378e+04 7.320378e+04 0.00 NULL
2018 Department Of Probation Supervising Probation Officer 71995.11801 1.159121e+07 396711.09 2.464044e+03 432.780 7312.50 161 4.327800e+02 69677.58 1.198793e+07 1.166089e+07 327033.51 NULL
2018 Department Of Probation Supervisor Ii Social Work 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2018 Department Of Sanitation *Attorney At Law 98880.50000 3.955220e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.955220e+05 3.955220e+05 0.00 NULL
2018 Department Of Sanitation *Custodial Assistant 35306.00000 3.530600e+04 37.36 3.736000e+01 37.360 3.32 1 3.736000e+01 37.36 3.534336e+04 3.534336e+04 0.00 NULL
2018 Department Of Sanitation Accountant 58345.66667 3.500740e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.500740e+05 3.500740e+05 0.00 NULL
2018 Department Of Sanitation Adm Manager-Non-Mgrl From M1/M2 76256.09091 1.677634e+06 126232.02 5.737819e+03 388.805 2520.25 22 3.888050e+02 8553.71 1.803866e+06 1.686188e+06 117678.31 NULL
2018 Department Of Sanitation Admin Community Relations Specialist 106308.33333 3.189250e+05 13237.78 4.412593e+03 411.250 212.75 3 4.112500e+02 1233.75 3.321628e+05 3.201588e+05 12004.03 NULL
2018 Department Of Sanitation Admin Construction Project Manager 91637.00000 9.163700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.163700e+04 9.163700e+04 0.00 NULL
2018 Department Of Sanitation Administrative Accountant 100026.00000 1.000260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000260e+05 1.000260e+05 0.00 NULL
2018 Department Of Sanitation Administrative Architect 111258.50000 4.450340e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.450340e+05 4.450340e+05 0.00 NULL
2018 Department Of Sanitation Administrative Business Promotion Coordinator 95156.00000 1.903120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.903120e+05 1.903120e+05 0.00 NULL
2018 Department Of Sanitation Administrative City Planner 149712.00000 2.994240e+05 3081.59 1.540795e+03 1540.795 36.25 2 1.540795e+03 3081.59 3.025056e+05 3.025056e+05 0.00 NULL
2018 Department Of Sanitation Administrative Construction Project Manager 130843.00000 6.542150e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.542150e+05 6.542150e+05 0.00 NULL
2018 Department Of Sanitation Administrative Engineer 136658.63636 1.503245e+06 209.25 1.902273e+01 0.000 3.50 11 0.000000e+00 0.00 1.503454e+06 1.503245e+06 209.25 NULL
2018 Department Of Sanitation Administrative Management Auditor 106214.00000 2.124280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.124280e+05 2.124280e+05 0.00 NULL
2018 Department Of Sanitation Administrative Manager 145930.00000 2.918600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.918600e+05 2.918600e+05 0.00 NULL
2018 Department Of Sanitation Administrative Procurement Analyst 103534.44444 9.318100e+05 22242.51 2.471390e+03 628.590 376.75 9 6.285900e+02 5657.31 9.540525e+05 9.374673e+05 16585.20 NULL
2018 Department Of Sanitation Administrative Project Manager 137653.57143 9.635750e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.635750e+05 9.635750e+05 0.00 NULL
2018 Department Of Sanitation Administrative Public Information Specialist 132051.16667 7.923070e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.923070e+05 7.923070e+05 0.00 NULL
2018 Department Of Sanitation Administrative Quality Assurance Specialist 126985.00000 1.269850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.269850e+05 1.269850e+05 0.00 NULL
2018 Department Of Sanitation Administrative Sanitation Enforcement Agent 91475.00000 9.147500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.147500e+04 9.147500e+04 0.00 NULL
2018 Department Of Sanitation Administrative Staff Analyst 102419.76257 4.711309e+06 196529.26 4.272375e+03 0.000 3022.50 46 0.000000e+00 0.00 4.907838e+06 4.711309e+06 196529.26 NULL
2018 Department Of Sanitation Administrative Supervisor Of Building Maintenance 138628.33333 4.158850e+05 11024.19 3.674730e+03 0.000 0.00 3 0.000000e+00 0.00 4.269092e+05 4.158850e+05 11024.19 NULL
2018 Department Of Sanitation Agency Attorney 97424.80000 9.742480e+05 60.56 6.056000e+00 0.000 1.00 10 0.000000e+00 0.00 9.743086e+05 9.742480e+05 60.56 NULL
2018 Department Of Sanitation Agency Chief Contracting Officer 138793.00000 1.387930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.387930e+05 1.387930e+05 0.00 NULL
2018 Department Of Sanitation Architect 74990.00000 7.499000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.499000e+04 7.499000e+04 0.00 NULL
2018 Department Of Sanitation Assistant Architect 70552.00000 1.411040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.411040e+05 1.411040e+05 0.00 NULL
2018 Department Of Sanitation Assistant Civil Engineer 64870.60000 3.243530e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.243530e+05 3.243530e+05 0.00 NULL
2018 Department Of Sanitation Assistant Electrical Engineer 69498.66667 2.084960e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.084960e+05 2.084960e+05 0.00 NULL
2018 Department Of Sanitation Assistant Mechanical Engineer 66140.00000 6.614000e+04 2.30 2.300000e+00 2.300 0.00 1 2.300000e+00 2.30 6.614230e+04 6.614230e+04 0.00 NULL
2018 Department Of Sanitation Associate Fingerprint Technician 45285.20000 2.264260e+05 8496.87 1.699374e+03 1032.580 250.60 5 1.032580e+03 5162.90 2.349229e+05 2.315889e+05 3333.97 NULL
2018 Department Of Sanitation Associate Fraud Investigator 81834.00000 8.183400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.183400e+04 8.183400e+04 0.00 NULL
2018 Department Of Sanitation Associate Human Rights Specialist 96275.00000 9.627500e+04 269.22 2.692200e+02 269.220 5.00 1 2.692200e+02 269.22 9.654422e+04 9.654422e+04 0.00 NULL
2018 Department Of Sanitation Associate Project Manager 87005.78571 1.218081e+06 11150.48 7.964629e+02 2.465 147.00 14 2.465000e+00 34.51 1.229231e+06 1.218116e+06 11115.97 NULL
2018 Department Of Sanitation Associate Public Information Specialist 80446.00000 8.044600e+04 4992.09 4.992090e+03 4992.090 90.25 1 4.992090e+03 4992.09 8.543809e+04 8.543809e+04 0.00 NULL
2018 Department Of Sanitation Associate Public Records Officer 67980.00000 6.798000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.798000e+04 6.798000e+04 0.00 NULL
2018 Department Of Sanitation Associate Sanitation Enforcement Agent 45704.40385 2.376629e+06 178506.13 3.432810e+03 2971.105 5221.00 52 2.971105e+03 154497.46 2.555135e+06 2.531126e+06 24008.67 NULL
2018 Department Of Sanitation Associate Staff Analyst 78564.10345 2.278359e+06 72110.41 2.486566e+03 413.750 1314.75 29 4.137500e+02 11998.75 2.350469e+06 2.290358e+06 60111.66 NULL
2018 Department Of Sanitation Auto Machinist NA NA 269162.58 1.281727e+04 13379.480 4611.38 21 1.281727e+04 269162.58 NA NA NA NULL
2018 Department Of Sanitation Auto Mechanic NA NA 9237417.10 1.649539e+04 15994.695 154321.02 560 1.599469e+04 8957029.20 NA NA NA NULL
2018 Department Of Sanitation Automotive Service Worker 43560.78571 6.098510e+05 114784.20 8.198871e+03 8431.565 3471.23 14 8.198871e+03 114784.20 7.246352e+05 7.246352e+05 0.00 NULL
2018 Department Of Sanitation Blacksmith NA NA 6078.24 6.078240e+03 6078.240 84.00 1 6.078240e+03 6078.24 NA NA NA NULL
2018 Department Of Sanitation Boiler Maker NA NA 18451.80 1.845180e+04 18451.800 272.00 1 1.845180e+04 18451.80 NA NA NA NULL
2018 Department Of Sanitation Bookkeeper 47700.16667 5.724020e+05 912.38 7.603167e+01 0.000 26.00 12 0.000000e+00 0.00 5.733144e+05 5.724020e+05 912.38 NULL
2018 Department Of Sanitation Carpenter NA NA 140998.29 1.566648e+04 15924.190 1891.00 9 1.566648e+04 140998.29 NA NA NA NULL
2018 Department Of Sanitation Carriage Upholsterer NA NA 3401.70 3.401700e+03 3401.700 68.00 1 3.401700e+03 3401.70 NA NA NA NULL
2018 Department Of Sanitation Case Mgmt Nurse 85619.00000 8.561900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.561900e+04 8.561900e+04 0.00 NULL
2018 Department Of Sanitation Cement Mason NA NA 85967.42 1.432790e+04 13445.670 981.25 6 1.344567e+04 80674.02 NA NA NA NULL
2018 Department Of Sanitation Certified It Administrator 118109.80000 1.771647e+06 293776.08 1.958507e+04 15301.070 4751.75 15 1.530107e+04 229516.05 2.065423e+06 2.001163e+06 64260.03 NULL
2018 Department Of Sanitation Certified It Developer 113221.60000 3.396648e+06 48022.42 1.600747e+03 0.000 1275.75 30 0.000000e+00 0.00 3.444670e+06 3.396648e+06 48022.42 NULL
2018 Department Of Sanitation Chaplain 27393.00000 1.095720e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.095720e+05 1.095720e+05 0.00 NULL
2018 Department Of Sanitation City Attendant 34511.80597 2.312291e+06 141695.84 2.114863e+03 636.620 5328.15 67 6.366200e+02 42653.54 2.453987e+06 2.354945e+06 99042.30 NULL
2018 Department Of Sanitation City Clinician 112130.20000 1.121302e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.121302e+05 1.121302e+05 0.00 NULL
2018 Department Of Sanitation City Custodial Assistant 41590.00000 8.318000e+04 34870.95 1.743547e+04 17435.475 1048.03 2 1.743547e+04 34870.95 1.180509e+05 1.180509e+05 0.00 NULL
2018 Department Of Sanitation City Deputy Medical Director 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2018 Department Of Sanitation City Laborer NA NA 188565.64 1.047587e+04 4496.345 3368.02 18 4.496345e+03 80934.21 NA NA NA NULL
2018 Department Of Sanitation City Medical Specialist 56263.45882 5.626346e+05 238.86 2.388600e+01 0.000 3.00 10 0.000000e+00 0.00 5.628734e+05 5.626346e+05 238.86 NULL
2018 Department Of Sanitation City Planner 73127.25000 2.925090e+05 4324.80 1.081200e+03 369.245 86.00 4 3.692450e+02 1476.98 2.968338e+05 2.939860e+05 2847.82 NULL
2018 Department Of Sanitation City Research Scientist 93005.50000 1.860110e+05 3441.59 1.720795e+03 1720.795 65.00 2 1.720795e+03 3441.59 1.894526e+05 1.894526e+05 0.00 NULL
2018 Department Of Sanitation City Seasonal Aide 472.81131 4.765938e+05 0.00 0.000000e+00 0.000 0.00 1008 0.000000e+00 0.00 4.765938e+05 4.765938e+05 0.00 NULL
2018 Department Of Sanitation Civil Engineer 98630.80000 4.931540e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.931540e+05 4.931540e+05 0.00 NULL
2018 Department Of Sanitation Clerical Aide 32836.05263 6.238850e+05 86161.64 4.534823e+03 4080.170 3798.74 19 4.080170e+03 77523.23 7.100466e+05 7.014082e+05 8638.41 NULL
2018 Department Of Sanitation Clerical Associate 40352.17395 1.097579e+07 1107395.77 4.071308e+03 2546.670 36637.02 272 2.546670e+03 692694.24 1.208319e+07 1.166849e+07 414701.53 NULL
2018 Department Of Sanitation College Aide 7626.64503 6.101316e+05 0.00 0.000000e+00 0.000 0.00 80 0.000000e+00 0.00 6.101316e+05 6.101316e+05 0.00 NULL
2018 Department Of Sanitation College Aide - Assignment Levels Ii And Iii 8123.90417 2.437171e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.437171e+04 2.437171e+04 0.00 NULL
2018 Department Of Sanitation Commissioner Of Sanitation 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Department Of Sanitation Community Assistant 35317.00000 4.591210e+05 4966.89 3.820685e+02 25.370 176.98 13 2.537000e+01 329.81 4.640879e+05 4.594508e+05 4637.08 NULL
2018 Department Of Sanitation Community Associate 43955.64706 1.494492e+06 72693.67 2.138049e+03 663.075 2433.03 34 6.630750e+02 22544.55 1.567186e+06 1.517037e+06 50149.12 NULL
2018 Department Of Sanitation Community Coordinator 62199.32759 3.607561e+06 174857.99 3.014793e+03 1155.800 3935.50 58 1.155800e+03 67036.40 3.782419e+06 3.674597e+06 107821.59 NULL
2018 Department Of Sanitation Computer Aide-Non-Spvr 60310.50000 1.206210e+05 582.32 2.911600e+02 291.160 13.75 2 2.911600e+02 582.32 1.212033e+05 1.212033e+05 0.00 NULL
2018 Department Of Sanitation Computer Associate 74040.23529 1.258684e+06 91766.78 5.398046e+03 1374.810 1481.22 17 1.374810e+03 23371.77 1.350451e+06 1.282056e+06 68395.01 NULL
2018 Department Of Sanitation Computer Programmer Analyst 70310.50000 1.406210e+05 4085.85 2.042925e+03 2042.925 102.00 2 2.042925e+03 4085.85 1.447069e+05 1.447069e+05 0.00 NULL
2018 Department Of Sanitation Computer Specialist 96684.92683 3.964082e+06 373744.40 9.115717e+03 4459.860 5505.72 41 4.459860e+03 182854.26 4.337826e+06 4.146936e+06 190890.14 NULL
2018 Department Of Sanitation Computer Systems Manager 134258.30000 8.055498e+06 0.00 0.000000e+00 0.000 0.00 60 0.000000e+00 0.00 8.055498e+06 8.055498e+06 0.00 NULL
2018 Department Of Sanitation Construction Laborer NA NA 142118.48 1.184321e+04 9467.815 1786.71 12 9.467815e+03 113613.78 NA NA NA NULL
2018 Department Of Sanitation Construction Project Manager 87242.35714 1.221393e+06 2571.77 1.836979e+02 0.000 40.25 14 0.000000e+00 0.00 1.223965e+06 1.221393e+06 2571.77 NULL
2018 Department Of Sanitation Counselor 70508.66667 2.115260e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.115260e+05 2.115260e+05 0.00 NULL
2018 Department Of Sanitation Custodian 36432.00000 3.643200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.643200e+04 3.643200e+04 0.00 NULL
2018 Department Of Sanitation Dep Dir Mtr Eq Mntc 153099.50000 3.061990e+05 1260.71 6.303550e+02 630.355 0.00 2 6.303550e+02 1260.71 3.074597e+05 3.074597e+05 0.00 NULL
2018 Department Of Sanitation Deputy Commissioner 213366.66667 6.401000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.401000e+05 6.401000e+05 0.00 NULL
2018 Department Of Sanitation Deputy Director Of Motor Equipment Maintenance 142187.42857 9.953120e+05 36192.22 5.170317e+03 4807.080 250.25 7 4.807080e+03 33649.56 1.031504e+06 1.028962e+06 2542.66 NULL
2018 Department Of Sanitation Director Of Motor Equipment Maintenance 205158.00000 2.051580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.051580e+05 2.051580e+05 0.00 NULL
2018 Department Of Sanitation Director Of Motor Equipment Maintenance-Nm 167262.50000 3.345250e+05 24124.60 1.206230e+04 12062.300 200.00 2 1.206230e+04 24124.60 3.586496e+05 3.586496e+05 0.00 NULL
2018 Department Of Sanitation Economist 72799.00000 7.279900e+04 42.62 4.262000e+01 42.620 1.00 1 4.262000e+01 42.62 7.284162e+04 7.284162e+04 0.00 NULL
2018 Department Of Sanitation Electrician NA NA 786967.70 1.290111e+04 9319.450 12037.91 61 9.319450e+03 568486.45 NA NA NA NULL
2018 Department Of Sanitation Estimator 61104.00000 6.110400e+04 1437.95 1.437950e+03 1437.950 33.00 1 1.437950e+03 1437.95 6.254195e+04 6.254195e+04 0.00 NULL
2018 Department Of Sanitation Executive Agency Counsel 130889.00000 5.235560e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.235560e+05 5.235560e+05 0.00 NULL
2018 Department Of Sanitation Executive Assistant To The Commissioner 113500.00000 2.270000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.270000e+05 2.270000e+05 0.00 NULL
2018 Department Of Sanitation General Superintendent 133667.16667 3.769414e+07 5489527.17 1.946641e+04 16857.775 59994.01 282 1.685778e+04 4753892.55 4.318367e+07 4.244803e+07 735634.62 NULL
2018 Department Of Sanitation Geologist 84000.00000 8.400000e+04 16801.03 1.680103e+04 16801.030 278.00 1 1.680103e+04 16801.03 1.008010e+05 1.008010e+05 0.00 NULL
2018 Department Of Sanitation Graphic Artist 73288.40000 3.664420e+05 18076.87 3.615374e+03 4538.510 321.90 5 3.615374e+03 18076.87 3.845189e+05 3.845189e+05 0.00 NULL
2018 Department Of Sanitation Health Services Manager 174000.00000 1.740000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.740000e+05 1.740000e+05 0.00 NULL
2018 Department Of Sanitation High Pressure Plant Tender NA NA 77439.29 9.679911e+03 7546.875 1472.50 8 7.546875e+03 60375.00 NA NA NA NULL
2018 Department Of Sanitation Incinerator Facility Manager 104262.00000 1.042620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.042620e+05 1.042620e+05 0.00 NULL
2018 Department Of Sanitation Investigator 48840.91667 5.860910e+05 84.70 7.058333e+00 0.000 3.00 12 0.000000e+00 0.00 5.861757e+05 5.860910e+05 84.70 NULL
2018 Department Of Sanitation Job Training Participant 5719.19210 5.576212e+06 14607.33 1.498188e+01 0.000 811.00 975 0.000000e+00 0.00 5.590820e+06 5.576212e+06 14607.33 NULL
2018 Department Of Sanitation Laboratory Associate 45626.50000 9.125300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.125300e+04 9.125300e+04 0.00 NULL
2018 Department Of Sanitation Laboratory Microbiologist 57130.00000 5.713000e+04 121.63 1.216300e+02 121.630 3.75 1 1.216300e+02 121.63 5.725163e+04 5.725163e+04 0.00 NULL
2018 Department Of Sanitation Letterer And Sign Painter NA NA 5253.00 2.626500e+03 2626.500 95.00 2 2.626500e+03 5253.00 NA NA NA NULL
2018 Department Of Sanitation Machinist NA NA 226598.73 1.192625e+04 11703.150 3847.88 19 1.170315e+04 222359.85 NA NA NA NULL
2018 Department Of Sanitation Maintenance Worker NA NA 84279.71 2.809324e+03 2027.105 2011.92 30 2.027105e+03 60813.15 NA NA NA NULL
2018 Department Of Sanitation Management Auditor 70837.83333 4.250270e+05 311.80 5.196667e+01 0.000 8.00 6 0.000000e+00 0.00 4.253388e+05 4.250270e+05 311.80 NULL
2018 Department Of Sanitation Mechanical Engineer 93522.66667 2.805680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.805680e+05 2.805680e+05 0.00 NULL
2018 Department Of Sanitation Medical Director 180352.00000 1.803520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.803520e+05 1.803520e+05 0.00 NULL
2018 Department Of Sanitation Medical Record Librarian 51443.62500 4.115490e+05 1057.15 1.321438e+02 0.000 32.25 8 0.000000e+00 0.00 4.126062e+05 4.115490e+05 1057.15 NULL
2018 Department Of Sanitation Metal Work Mechanic 83934.12500 4.700311e+06 931344.35 1.663115e+04 15282.455 15182.07 56 1.528245e+04 855817.48 5.631655e+06 5.556128e+06 75526.87 NULL
2018 Department Of Sanitation Motor Vehicle Operator 46366.80000 2.318340e+05 26923.55 5.384710e+03 3282.780 776.52 5 3.282780e+03 16413.90 2.587575e+05 2.482479e+05 10509.65 NULL
2018 Department Of Sanitation Motor Vehicle Supervisor 53969.00000 5.396900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.396900e+04 5.396900e+04 0.00 NULL
2018 Department Of Sanitation Office Machine Aide 38265.75000 1.530630e+05 686.48 1.716200e+02 31.215 25.00 4 3.121500e+01 124.86 1.537495e+05 1.531879e+05 561.62 NULL
2018 Department Of Sanitation Oiler NA NA 81745.39 1.634908e+04 2149.600 1139.70 5 2.149600e+03 10748.00 NA NA NA NULL
2018 Department Of Sanitation Painter NA NA 63531.30 9.075900e+03 4701.370 955.50 7 4.701370e+03 32909.59 NA NA NA NULL
2018 Department Of Sanitation Plumber NA NA 209245.28 1.394969e+04 18332.200 2032.50 15 1.394969e+04 209245.28 NA NA NA NULL
2018 Department Of Sanitation Principal Administrative Associate - Lev 1 & 2 Non Supvr 56685.70693 3.571200e+06 331750.85 5.265887e+03 1242.140 7960.30 63 1.242140e+03 78254.82 3.902950e+06 3.649454e+06 253496.03 NULL
2018 Department Of Sanitation Procurement Analyst 59533.00000 1.071594e+06 43837.25 2.435403e+03 172.545 1048.00 18 1.725450e+02 3105.81 1.115431e+06 1.074700e+06 40731.44 NULL
2018 Department Of Sanitation Project Manager 68022.00000 2.720880e+05 151.96 3.799000e+01 36.450 4.50 4 3.645000e+01 145.80 2.722400e+05 2.722338e+05 6.16 NULL
2018 Department Of Sanitation Public Health Sanitarian 94699.00000 9.469900e+04 7699.06 7.699060e+03 7699.060 102.18 1 7.699060e+03 7699.06 1.023981e+05 1.023981e+05 0.00 NULL
2018 Department Of Sanitation Research Assistant 54715.66667 1.641470e+05 4512.57 1.504190e+03 0.000 94.50 3 0.000000e+00 0.00 1.686596e+05 1.641470e+05 4512.57 NULL
2018 Department Of Sanitation Rubber Tire Repairer NA NA 58346.58 5.304235e+03 4227.430 1366.70 11 4.227430e+03 46501.73 NA NA NA NULL
2018 Department Of Sanitation Sanitation Compliance Agent 36841.87500 2.947350e+05 225.50 2.818750e+01 10.490 10.50 8 1.049000e+01 83.92 2.949605e+05 2.948189e+05 141.58 NULL
2018 Department Of Sanitation Sanitation Enforcement Agent 36917.14141 7.309594e+06 388336.11 1.961293e+03 1687.630 14272.41 198 1.687630e+03 334150.74 7.697930e+06 7.643745e+06 54185.37 NULL
2018 Department Of Sanitation Sanitation Worker 68702.70323 4.491096e+08 112769523.37 1.725096e+04 16501.300 2108858.35 6537 1.650130e+04 107868998.10 5.618791e+08 5.569786e+08 4900525.27 NULL
2018 Department Of Sanitation Secretary 47802.66667 4.302240e+05 9747.49 1.083054e+03 216.550 289.82 9 2.165500e+02 1948.95 4.399715e+05 4.321730e+05 7798.54 NULL
2018 Department Of Sanitation Secretary To The Commissioner 83290.00000 8.329000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.329000e+04 8.329000e+04 0.00 NULL
2018 Department Of Sanitation Senior Automotive Specialist 97657.00000 9.765700e+04 12163.22 1.216322e+04 12163.220 178.70 1 1.216322e+04 12163.22 1.098202e+05 1.098202e+05 0.00 NULL
2018 Department Of Sanitation Senior Estimator 87719.50000 3.508780e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.508780e+05 3.508780e+05 0.00 NULL
2018 Department Of Sanitation Senior Photographer 65442.00000 6.544200e+04 4606.72 4.606720e+03 4606.720 117.80 1 4.606720e+03 4606.72 7.004872e+04 7.004872e+04 0.00 NULL
2018 Department Of Sanitation Senior Stationary Engineer NA NA 111429.37 2.785734e+04 29455.130 1086.75 4 2.785734e+04 111429.37 NA NA NA NULL
2018 Department Of Sanitation Sheet Metal Worker NA NA 118284.21 1.314269e+04 13447.500 1148.50 9 1.314269e+04 118284.21 NA NA NA NULL
2018 Department Of Sanitation Staff Analyst 67580.92308 8.785520e+05 1780.64 1.369723e+02 0.000 40.00 13 0.000000e+00 0.00 8.803326e+05 8.785520e+05 1780.64 NULL
2018 Department Of Sanitation Staff Analyst Trainee 42373.00000 4.237300e+04 330.50 3.305000e+02 330.500 12.00 1 3.305000e+02 330.50 4.270350e+04 4.270350e+04 0.00 NULL
2018 Department Of Sanitation Staff Nurse 83862.60000 4.193130e+05 643.05 1.286100e+02 0.000 1.00 5 0.000000e+00 0.00 4.199560e+05 4.193130e+05 643.05 NULL
2018 Department Of Sanitation Stationary Engineer NA NA 476413.80 1.642806e+04 13535.390 5222.12 29 1.353539e+04 392526.31 NA NA NA NULL
2018 Department Of Sanitation Statistician 53837.00000 5.383700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.383700e+04 5.383700e+04 0.00 NULL
2018 Department Of Sanitation Steam Fitter NA NA 351257.50 3.902861e+04 38830.000 3171.75 9 3.883000e+04 349470.00 NA NA NA NULL
2018 Department Of Sanitation Steam Fitter’s Helper NA NA 2145.00 2.145000e+03 2145.000 26.00 1 2.145000e+03 2145.00 NA NA NA NULL
2018 Department Of Sanitation Stock Worker 38072.00000 2.665040e+05 34482.40 4.926057e+03 6012.900 1410.89 7 4.926057e+03 34482.40 3.009864e+05 3.009864e+05 0.00 NULL
2018 Department Of Sanitation Summer College Intern 2139.05855 1.946543e+05 0.00 0.000000e+00 0.000 0.00 91 0.000000e+00 0.00 1.946543e+05 1.946543e+05 0.00 NULL
2018 Department Of Sanitation Summer Graduate Intern 3641.29011 1.674993e+05 0.00 0.000000e+00 0.000 0.00 46 0.000000e+00 0.00 1.674993e+05 1.674993e+05 0.00 NULL
2018 Department Of Sanitation Supervising Computer Service Technician 65701.00000 1.314020e+05 20387.46 1.019373e+04 10193.730 351.00 2 1.019373e+04 20387.46 1.517895e+05 1.517895e+05 0.00 NULL
2018 Department Of Sanitation Supervisor 91617.71152 9.940522e+07 24377550.89 2.246779e+04 21151.560 336072.44 1085 2.115156e+04 22949442.60 1.237828e+08 1.223547e+08 1428108.29 NULL
2018 Department Of Sanitation Supervisor Bricklayer NA NA 3428.82 3.428820e+03 3428.820 42.00 1 3.428820e+03 3428.82 NA NA NA NULL
2018 Department Of Sanitation Supervisor Carpenter NA NA 49090.19 2.454510e+04 24545.095 641.00 2 2.454510e+04 49090.19 NA NA NA NULL
2018 Department Of Sanitation Supervisor Electrician NA NA 71073.87 1.776847e+04 16410.885 775.25 4 1.641088e+04 65643.54 NA NA NA NULL
2018 Department Of Sanitation Supervisor Of Ironwork 110300.33333 3.309010e+05 41369.92 1.378997e+04 0.000 463.55 3 0.000000e+00 0.00 3.722709e+05 3.309010e+05 41369.92 NULL
2018 Department Of Sanitation Supervisor Of Mechanics 116297.74359 1.360684e+07 2033306.61 1.737869e+04 17796.130 21964.19 117 1.737869e+04 2033306.61 1.564014e+07 1.564014e+07 0.00 NULL
2018 Department Of Sanitation Supervisor Of Office Machine Operations 50739.66667 1.522190e+05 107.24 3.574667e+01 0.000 1.25 3 0.000000e+00 0.00 1.523262e+05 1.522190e+05 107.24 NULL
2018 Department Of Sanitation Supervisor Of Stock Workers 49476.26316 9.400490e+05 320253.04 1.685542e+04 15247.730 8327.00 19 1.524773e+04 289706.87 1.260302e+06 1.229756e+06 30546.17 NULL
2018 Department Of Sanitation Supervisor Painter NA NA 19324.89 9.662445e+03 9662.445 259.75 2 9.662445e+03 19324.89 NA NA NA NULL
2018 Department Of Sanitation Supervisor Plumber NA NA 58334.19 1.458355e+04 13658.510 551.75 4 1.365851e+04 54634.04 NA NA NA NULL
2018 Department Of Sanitation Supervisor Sheet Metal Worker NA NA 22359.68 2.235968e+04 22359.680 216.00 1 2.235968e+04 22359.68 NA NA NA NULL
2018 Department Of Sanitation Supervisor Steamfitter NA NA 20463.00 2.046300e+04 20463.000 231.50 1 2.046300e+04 20463.00 NA NA NA NULL
2018 Department Of Sanitation Telecommunications Associate 63726.00000 2.549040e+05 20274.68 5.068670e+03 2342.440 324.36 4 2.342440e+03 9369.76 2.751787e+05 2.642738e+05 10904.92 NULL
2018 Department Of Sanitation Thermostat Repairer NA NA 9088.64 9.088640e+03 9088.640 88.00 1 9.088640e+03 9088.64 NA NA NA NULL
2018 Department Of Sanitation Tractor Operator NA NA 46680.11 9.336022e+03 12761.480 382.00 5 9.336022e+03 46680.11 NA NA NA NULL
2018 Department Of Sanitation Welder NA NA 113735.28 2.843382e+04 29203.170 1144.00 4 2.843382e+04 113735.28 NA NA NA NULL
2018 Department Of Transportation Accountant 56591.26471 1.924103e+06 42253.11 1.242739e+03 0.000 878.00 34 0.000000e+00 0.00 1.966356e+06 1.924103e+06 42253.11 NULL
2018 Department Of Transportation Adm Manager-Non-Mgrl From M1/M2 76281.34786 1.350180e+07 902197.62 5.097162e+03 791.480 16540.50 177 7.914800e+02 140091.96 1.440400e+07 1.364189e+07 762105.66 NULL
2018 Department Of Transportation Admin Community Relations Specialist 92896.61111 1.672139e+06 138251.35 7.680631e+03 3618.010 2369.50 18 3.618010e+03 65124.18 1.810390e+06 1.737263e+06 73127.17 NULL
2018 Department Of Transportation Admin Contract Specialist 140700.00000 1.407000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.407000e+05 1.407000e+05 0.00 NULL
2018 Department Of Transportation Admin Inspector 113626.75000 9.090140e+05 41108.33 5.138541e+03 1686.260 588.50 8 1.686260e+03 13490.08 9.501223e+05 9.225041e+05 27618.25 NULL
2018 Department Of Transportation Administrative Accountant 141600.00000 2.832000e+05 13316.39 6.658195e+03 6658.195 194.25 2 6.658195e+03 13316.39 2.965164e+05 2.965164e+05 0.00 NULL
2018 Department Of Transportation Administrative City Planner 115540.17647 1.964183e+06 26491.27 1.558310e+03 0.000 432.50 17 0.000000e+00 0.00 1.990674e+06 1.964183e+06 26491.27 NULL
2018 Department Of Transportation Administrative Community Relations Specialist 135274.00000 1.352740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.352740e+05 1.352740e+05 0.00 NULL
2018 Department Of Transportation Administrative Construction Project Manager 189982.00000 1.899820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.899820e+05 1.899820e+05 0.00 NULL
2018 Department Of Transportation Administrative Director Of Marine Maintenance 144907.00000 1.449070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.449070e+05 1.449070e+05 0.00 NULL
2018 Department Of Transportation Administrative Engineer 119936.95690 1.391269e+07 759376.75 6.546351e+03 125.310 10393.25 116 1.253100e+02 14535.96 1.467206e+07 1.392722e+07 744840.79 NULL
2018 Department Of Transportation Administrative Graphic Artist 113387.00000 1.133870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133870e+05 1.133870e+05 0.00 NULL
2018 Department Of Transportation Administrative Inspector 136920.00000 1.369200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.369200e+05 1.369200e+05 0.00 NULL
2018 Department Of Transportation Administrative Investigator 107360.50000 2.147210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.147210e+05 2.147210e+05 0.00 NULL
2018 Department Of Transportation Administrative Management Auditor 113359.75000 4.534390e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.534390e+05 4.534390e+05 0.00 NULL
2018 Department Of Transportation Administrative Manager 129892.33333 7.793540e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.793540e+05 7.793540e+05 0.00 NULL
2018 Department Of Transportation Administrative Procurement Analyst 98248.82353 1.670230e+06 120807.77 7.106339e+03 2867.470 1821.50 17 2.867470e+03 48746.99 1.791038e+06 1.718977e+06 72060.78 NULL
2018 Department Of Transportation Administrative Project Manager 123101.49123 7.016785e+06 348229.10 6.109282e+03 0.000 4951.00 57 0.000000e+00 0.00 7.365014e+06 7.016785e+06 348229.10 NULL
2018 Department Of Transportation Administrative Public Information Specialist 157423.33333 4.722700e+05 975.86 3.252867e+02 0.000 0.00 3 0.000000e+00 0.00 4.732459e+05 4.722700e+05 975.86 NULL
2018 Department Of Transportation Administrative Quality Assurance Specialist 109876.28571 7.691340e+05 24468.09 3.495441e+03 282.150 321.25 7 2.821500e+02 1975.05 7.936021e+05 7.711091e+05 22493.04 NULL
2018 Department Of Transportation Administrative Real Property Manager 184756.00000 1.847560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.847560e+05 1.847560e+05 0.00 NULL
2018 Department Of Transportation Administrative Staff Analyst 109243.48216 1.518484e+07 803843.36 5.783046e+03 142.490 11665.50 139 1.424900e+02 19806.11 1.598869e+07 1.520465e+07 784037.25 NULL
2018 Department Of Transportation Administrative Superintendent Of Bridge Operations 121882.00000 1.218820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.218820e+05 1.218820e+05 0.00 NULL
2018 Department Of Transportation Administrative Superintendent Of Highway Operations 123854.85714 2.600952e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 2.600952e+06 2.600952e+06 0.00 NULL
2018 Department Of Transportation Administrative Supervisor Of Building Maintenance 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2018 Department Of Transportation Administrative Transportation Coordinator 132559.91304 3.048878e+06 22041.42 9.583226e+02 0.000 343.25 23 0.000000e+00 0.00 3.070919e+06 3.048878e+06 22041.42 NULL
2018 Department Of Transportation Agency Attorney 91170.33333 1.641066e+06 1949.81 1.083228e+02 0.000 30.25 18 0.000000e+00 0.00 1.643016e+06 1.641066e+06 1949.81 NULL
2018 Department Of Transportation Agency Chief Contracting Officer 180637.00000 1.806370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.806370e+05 1.806370e+05 0.00 NULL
2018 Department Of Transportation Apprentice Inspector 36545.76613 4.531675e+06 382232.69 3.082522e+03 1594.905 14274.65 124 1.594905e+03 197768.22 4.913908e+06 4.729443e+06 184464.47 NULL
2018 Department Of Transportation Area Supervisor 103984.18519 5.615146e+06 2066608.81 3.827053e+04 37602.895 25488.25 54 3.760289e+04 2030556.33 7.681755e+06 7.645702e+06 36052.48 NULL
2018 Department Of Transportation Asphalt Plant Manager 149250.00000 1.492500e+05 53239.19 5.323919e+04 53239.190 749.50 1 5.323919e+04 53239.19 2.024892e+05 2.024892e+05 0.00 NULL
2018 Department Of Transportation Assistant Accountant 52595.00000 5.259500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.259500e+04 5.259500e+04 0.00 NULL
2018 Department Of Transportation Assistant Captain 63014.00000 9.452100e+05 491552.18 3.277015e+04 37100.290 7207.75 15 3.277015e+04 491552.18 1.436762e+06 1.436762e+06 0.00 NULL
2018 Department Of Transportation Assistant City Highway Repairer 37341.10840 2.188189e+07 2334154.26 3.983198e+03 2320.395 63147.42 586 2.320395e+03 1359751.47 2.421604e+07 2.324164e+07 974402.79 NULL
2018 Department Of Transportation Assistant Civil Engineer 66751.94737 1.014630e+07 581918.46 3.828411e+03 174.830 12457.25 152 1.748300e+02 26574.16 1.072821e+07 1.017287e+07 555344.30 NULL
2018 Department Of Transportation Assistant Commissioner 164568.00000 3.291360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.291360e+05 3.291360e+05 0.00 NULL
2018 Department Of Transportation Assistant Director 113484.00000 1.134840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.134840e+05 1.134840e+05 0.00 NULL
2018 Department Of Transportation Assistant Electrical Engineer 65733.34483 1.906267e+06 235865.04 8.133277e+03 4644.740 4799.50 29 4.644740e+03 134697.46 2.142132e+06 2.040964e+06 101167.58 NULL
2018 Department Of Transportation Assistant Highway Transportation Specialist 57248.32000 4.293624e+06 252663.96 3.368853e+03 527.800 6750.97 75 5.278000e+02 39585.00 4.546288e+06 4.333209e+06 213078.96 NULL
2018 Department Of Transportation Assistant Mechanical Engineer 65467.00000 6.546700e+05 37788.36 3.778836e+03 898.825 868.75 10 8.988250e+02 8988.25 6.924584e+05 6.636582e+05 28800.11 NULL
2018 Department Of Transportation Assistant Printing Press Operator 59971.00000 1.199420e+05 672.89 3.364450e+02 336.445 19.00 2 3.364450e+02 672.89 1.206149e+05 1.206149e+05 0.00 NULL
2018 Department Of Transportation Assistant To The Deputy Commissioner 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2018 Department Of Transportation Assistant Urban Designer 62749.00000 4.392430e+05 3761.34 5.373343e+02 1.210 99.00 7 1.210000e+00 8.47 4.430043e+05 4.392515e+05 3752.87 NULL
2018 Department Of Transportation Associate Fraud Investigator 64374.00000 6.437400e+04 3112.60 3.112600e+03 3112.600 73.50 1 3.112600e+03 3112.60 6.748660e+04 6.748660e+04 0.00 NULL
2018 Department Of Transportation Associate Inspector 69515.65306 3.406267e+06 676282.56 1.380168e+04 10936.180 12804.25 49 1.093618e+04 535872.82 4.082550e+06 3.942140e+06 140409.74 NULL
2018 Department Of Transportation Associate Investigator 66372.00000 4.646040e+05 22056.43 3.150919e+03 32.040 459.25 7 3.204000e+01 224.28 4.866604e+05 4.648283e+05 21832.15 NULL
2018 Department Of Transportation Associate Operations Communications Specialist 56692.66667 1.700780e+05 35974.33 1.199144e+04 14217.340 714.25 3 1.199144e+04 35974.33 2.060523e+05 2.060523e+05 0.00 NULL
2018 Department Of Transportation Associate Project Manager 85475.13115 5.213983e+06 473652.82 7.764800e+03 4520.210 7542.00 61 4.520210e+03 275732.81 5.687636e+06 5.489716e+06 197920.01 NULL
2018 Department Of Transportation Associate Quality Assurance Specialist 69414.00000 3.470700e+05 58846.61 1.176932e+04 8842.190 1262.00 5 8.842190e+03 44210.95 4.059166e+05 3.912810e+05 14635.66 NULL
2018 Department Of Transportation Associate Retirement Benefits Examiner 68205.00000 1.364100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.364100e+05 1.364100e+05 0.00 NULL
2018 Department Of Transportation Associate Staff Analyst 83004.96364 4.565273e+06 200535.01 3.646091e+03 413.760 3511.00 55 4.137600e+02 22756.80 4.765808e+06 4.588030e+06 177778.21 NULL
2018 Department Of Transportation Associate Urban Designer 79526.00875 3.181040e+05 1975.82 4.939550e+02 69.380 32.75 4 6.938000e+01 277.52 3.200799e+05 3.183816e+05 1698.30 NULL
2018 Department Of Transportation Auto Machinist NA NA 19430.65 1.943065e+04 19430.650 310.50 1 1.943065e+04 19430.65 NA NA NA NULL
2018 Department Of Transportation Auto Body Worker 57386.00000 5.738600e+04 3544.82 3.544820e+03 3544.820 76.00 1 3.544820e+03 3544.82 6.093082e+04 6.093082e+04 0.00 NULL
2018 Department Of Transportation Auto Mechanic NA NA 1471374.86 1.302102e+04 13592.350 23925.98 113 1.302102e+04 1471374.86 NA NA NA NULL
2018 Department Of Transportation Automotive Service Worker 38395.23077 4.991380e+05 52504.97 4.038844e+03 4653.680 1857.25 13 4.038844e+03 52504.97 5.516430e+05 5.516430e+05 0.00 NULL
2018 Department Of Transportation Automotive Specialist 80000.00000 8.000000e+04 30436.89 3.043689e+04 30436.890 526.50 1 3.043689e+04 30436.89 1.104369e+05 1.104369e+05 0.00 NULL
2018 Department Of Transportation Blacksmith NA NA 85312.44 2.132811e+04 19018.620 1161.00 4 1.901862e+04 76074.48 NA NA NA NULL
2018 Department Of Transportation Blacksmith’s Helper NA NA 27487.78 1.374389e+04 13743.890 486.50 2 1.374389e+04 27487.78 NA NA NA NULL
2018 Department Of Transportation Boiler Maker NA NA 245951.64 3.074396e+04 33855.435 3375.50 8 3.074396e+04 245951.64 NA NA NA NULL
2018 Department Of Transportation Bookkeeper 47490.40000 2.374520e+05 10843.43 2.168686e+03 0.000 305.75 5 0.000000e+00 0.00 2.482954e+05 2.374520e+05 10843.43 NULL
2018 Department Of Transportation Borough Commissioner 143872.40000 7.193620e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.193620e+05 7.193620e+05 0.00 NULL
2018 Department Of Transportation Bricklayer NA NA 299040.50 2.718550e+04 28915.440 4490.00 11 2.718550e+04 299040.50 NA NA NA NULL
2018 Department Of Transportation Bridge Operator 45271.28125 4.346043e+06 817178.82 8.512279e+03 7725.655 21501.27 96 7.725655e+03 741662.88 5.163222e+06 5.087706e+06 75515.94 NULL
2018 Department Of Transportation Bridge Painter NA NA 203494.58 4.624877e+03 5609.280 1907.25 44 4.624877e+03 203494.58 NA NA NA NULL
2018 Department Of Transportation Bridge Repairer And Riveter NA NA 1087169.08 2.528300e+04 27888.590 16138.25 43 2.528300e+04 1087169.08 NA NA NA NULL
2018 Department Of Transportation Captain 70926.00000 1.773150e+06 1115432.15 4.461729e+04 44712.120 15222.25 25 4.461729e+04 1115432.15 2.888582e+06 2.888582e+06 0.00 NULL
2018 Department Of Transportation Carpenter NA NA 257748.71 1.227375e+04 11484.870 3668.50 21 1.148487e+04 241182.27 NA NA NA NULL
2018 Department Of Transportation Cement Mason NA NA 816831.74 4.084159e+04 43592.340 8675.25 20 4.084159e+04 816831.74 NA NA NA NULL
2018 Department Of Transportation Certified It Administrator 107990.11765 1.835832e+06 324079.43 1.906350e+04 20119.990 3913.25 17 1.906350e+04 324079.43 2.159911e+06 2.159911e+06 0.00 NULL
2018 Department Of Transportation Certified It Developer 105973.50000 8.477880e+05 41344.89 5.168111e+03 0.000 614.25 8 0.000000e+00 0.00 8.891329e+05 8.477880e+05 41344.89 NULL
2018 Department Of Transportation Chief Marine Engineer 68789.00000 1.788514e+06 1570801.04 6.041542e+04 64123.600 22610.00 26 6.041542e+04 1570801.04 3.359315e+06 3.359315e+06 0.00 NULL
2018 Department Of Transportation Chief Of Staff 166860.00000 1.668600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.668600e+05 1.668600e+05 0.00 NULL
2018 Department Of Transportation City Attendant 37089.17078 1.372299e+06 84215.24 2.276088e+03 987.420 3026.25 37 9.874200e+02 36534.54 1.456515e+06 1.408834e+06 47680.70 NULL
2018 Department Of Transportation City Custodial Assistant 38682.32070 1.160470e+05 11684.58 3.894860e+03 2642.010 344.00 3 2.642010e+03 7926.03 1.277315e+05 1.239730e+05 3758.55 NULL
2018 Department Of Transportation City Debris Remover 40944.01333 2.456641e+05 32711.39 5.451898e+03 5020.195 1046.75 6 5.020195e+03 30121.17 2.783755e+05 2.757852e+05 2590.22 NULL
2018 Department Of Transportation City Laborer NA NA 346101.35 1.442089e+04 10624.370 6405.75 24 1.062437e+04 254984.88 NA NA NA NULL
2018 Department Of Transportation City Parking Equipment Service Worker 39372.38938 4.449080e+06 541938.12 4.795913e+03 4303.580 16936.32 113 4.303580e+03 486304.54 4.991018e+06 4.935385e+06 55633.58 NULL
2018 Department Of Transportation City Planner 85830.85938 5.493175e+06 240903.14 3.764112e+03 1263.190 4182.75 64 1.263190e+03 80844.16 5.734078e+06 5.574019e+06 160058.98 NULL
2018 Department Of Transportation City Planning Technician 46676.00000 4.667600e+04 5540.72 5.540720e+03 5540.720 162.50 1 5.540720e+03 5540.72 5.221672e+04 5.221672e+04 0.00 NULL
2018 Department Of Transportation City Research Scientist 86179.45455 9.479740e+05 35541.28 3.231025e+03 0.000 564.25 11 0.000000e+00 0.00 9.835153e+05 9.479740e+05 35541.28 NULL
2018 Department Of Transportation City Tax Auditor 51505.00000 5.150500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.150500e+04 5.150500e+04 0.00 NULL
2018 Department Of Transportation Civil Engineer 94609.57143 6.622670e+06 261433.73 3.734768e+03 420.230 4277.50 70 4.202300e+02 29416.10 6.884104e+06 6.652086e+06 232017.63 NULL
2018 Department Of Transportation Civil Engineering Intern 57284.38462 7.446970e+05 2555.12 1.965477e+02 0.000 76.00 13 0.000000e+00 0.00 7.472521e+05 7.446970e+05 2555.12 NULL
2018 Department Of Transportation Claim Specialist 31651.62000 3.165162e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.165162e+04 3.165162e+04 0.00 NULL
2018 Department Of Transportation Clerical Aide 33790.66667 1.013720e+05 220.27 7.342333e+01 0.000 8.50 3 0.000000e+00 0.00 1.015923e+05 1.013720e+05 220.27 NULL
2018 Department Of Transportation Clerical Associate 43443.69214 9.687943e+06 341103.20 1.529611e+03 58.460 10551.00 223 5.846000e+01 13036.58 1.002905e+07 9.700980e+06 328066.62 NULL
2018 Department Of Transportation Climber & Pruner 60956.42857 4.266950e+05 72348.18 1.033545e+04 11414.910 1518.75 7 1.033545e+04 72348.18 4.990432e+05 4.990432e+05 0.00 NULL
2018 Department Of Transportation College Aide 7862.79075 1.053614e+06 0.00 0.000000e+00 0.000 0.00 134 0.000000e+00 0.00 1.053614e+06 1.053614e+06 0.00 NULL
2018 Department Of Transportation College Aide - Assignment Levels Ii And Iii 9926.32158 3.772002e+05 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 3.772002e+05 3.772002e+05 0.00 NULL
2018 Department Of Transportation Commissioner Of Transportation 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Department Of Transportation Community Assistant 37209.02023 7.813894e+05 66964.84 3.188802e+03 678.700 2452.50 21 6.787000e+02 14252.70 8.483543e+05 7.956421e+05 52712.14 NULL
2018 Department Of Transportation Community Associate 42821.70924 2.654946e+06 100057.82 1.613836e+03 0.000 3183.25 62 0.000000e+00 0.00 2.755004e+06 2.654946e+06 100057.82 NULL
2018 Department Of Transportation Community Coordinator 63787.51664 6.761477e+06 311756.95 2.941103e+03 662.360 7127.75 106 6.623600e+02 70210.16 7.073234e+06 6.831687e+06 241546.79 NULL
2018 Department Of Transportation Community Service Aide 26342.58240 2.634258e+04 747.36 7.473600e+02 747.360 41.25 1 7.473600e+02 747.36 2.708994e+04 2.708994e+04 0.00 NULL
2018 Department Of Transportation Computer Aide-Non-Spvr 51246.70450 3.587269e+05 18790.31 2.684330e+03 825.860 432.50 7 8.258600e+02 5781.02 3.775172e+05 3.645080e+05 13009.29 NULL
2018 Department Of Transportation Computer Associate 72354.73455 1.591804e+06 127265.61 5.784800e+03 1732.355 2437.50 22 1.732355e+03 38111.81 1.719070e+06 1.629916e+06 89153.80 NULL
2018 Department Of Transportation Computer Programmer Analyst 54846.00000 5.484600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.484600e+04 5.484600e+04 0.00 NULL
2018 Department Of Transportation Computer Specialist 99925.54167 2.398213e+06 76226.63 3.176110e+03 206.460 966.25 24 2.064600e+02 4955.04 2.474440e+06 2.403168e+06 71271.59 NULL
2018 Department Of Transportation Computer Systems Manager 145769.88889 1.311929e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.311929e+06 1.311929e+06 0.00 NULL
2018 Department Of Transportation Confidential Strategy Planner 88901.88889 8.001170e+05 53201.11 5.911234e+03 662.940 896.50 9 6.629400e+02 5966.46 8.533181e+05 8.060835e+05 47234.65 NULL
2018 Department Of Transportation Construction Project Manager 77896.32143 2.181097e+06 385635.75 1.377271e+04 11850.790 6145.00 28 1.185079e+04 331822.12 2.566733e+06 2.512919e+06 53813.63 NULL
2018 Department Of Transportation Counsel 220994.00000 2.209940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.209940e+05 2.209940e+05 0.00 NULL
2018 Department Of Transportation Crane Operator Ampes NA NA 588088.49 5.880885e+04 65546.850 3586.75 10 5.880885e+04 588088.49 NA NA NA NULL
2018 Department Of Transportation Customer Information Representative Ma L 1549 44985.18165 4.948370e+05 46469.67 4.224515e+03 1358.850 1104.75 11 1.358850e+03 14947.35 5.413067e+05 5.097843e+05 31522.32 NULL
2018 Department Of Transportation Deckhand 53641.35043 1.255208e+07 5344574.22 2.284006e+04 21624.660 92108.25 234 2.162466e+04 5060170.44 1.789665e+07 1.761225e+07 284403.78 NULL
2018 Department Of Transportation Deputy Commissioner 202932.00000 6.087960e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.087960e+05 6.087960e+05 0.00 NULL
2018 Department Of Transportation Deputy Director 136538.00000 1.365380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.365380e+05 1.365380e+05 0.00 NULL
2018 Department Of Transportation Director Of Public Relations 149062.00000 1.490620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.490620e+05 1.490620e+05 0.00 NULL
2018 Department Of Transportation Dockbuilder NA NA 163652.09 2.727535e+04 26710.260 2156.50 6 2.671026e+04 160261.56 NA NA NA NULL
2018 Department Of Transportation Economist 66251.50000 3.975090e+05 19240.18 3.206697e+03 637.700 415.00 6 6.377000e+02 3826.20 4.167492e+05 4.013352e+05 15413.98 NULL
2018 Department Of Transportation Electrical Engineer 91439.00000 9.143900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.143900e+04 9.143900e+04 0.00 NULL
2018 Department Of Transportation Electrical Engineering Intern 55768.75000 2.230750e+05 4917.98 1.229495e+03 22.595 129.50 4 2.259500e+01 90.38 2.279930e+05 2.231654e+05 4827.60 NULL
2018 Department Of Transportation Electrician NA NA 1996628.78 2.321661e+04 20982.255 23730.75 86 2.098226e+04 1804473.93 NA NA NA NULL
2018 Department Of Transportation Electrician’s Helper NA NA 129237.41 3.230935e+04 30767.190 2100.75 4 3.076719e+04 123068.76 NA NA NA NULL
2018 Department Of Transportation Engineering Technician 52141.33333 3.128480e+05 17253.90 2.875650e+03 1602.235 468.25 6 1.602235e+03 9613.41 3.301019e+05 3.224614e+05 7640.49 NULL
2018 Department Of Transportation Estimator 61138.00000 6.113800e+04 1489.12 1.489120e+03 1489.120 43.75 1 1.489120e+03 1489.12 6.262712e+04 6.262712e+04 0.00 NULL
2018 Department Of Transportation Executive Agency Counsel 151836.44444 1.366528e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.366528e+06 1.366528e+06 0.00 NULL
2018 Department Of Transportation Executive Program Specialist 142701.00000 4.281030e+05 16113.31 5.371103e+03 0.000 198.25 3 0.000000e+00 0.00 4.442163e+05 4.281030e+05 16113.31 NULL
2018 Department Of Transportation Ferry Terminal Supervisor 74312.00000 9.660560e+05 343717.50 2.643981e+04 27866.600 5923.50 13 2.643981e+04 343717.50 1.309774e+06 1.309774e+06 0.00 NULL
2018 Department Of Transportation Gardener 61267.66667 1.838030e+05 40976.42 1.365881e+04 7811.140 888.75 3 7.811140e+03 23433.42 2.247794e+05 2.072364e+05 17543.00 NULL
2018 Department Of Transportation Gasoline Roller Engineer-L15 NA NA 2128311.61 2.107239e+04 20801.740 16847.00 101 2.080174e+04 2100975.74 NA NA NA NULL
2018 Department Of Transportation Graphic Artist 71750.50000 2.870020e+05 4158.31 1.039578e+03 347.055 65.25 4 3.470550e+02 1388.22 2.911603e+05 2.883902e+05 2770.09 NULL
2018 Department Of Transportation High Pressure Plant Tender NA NA 295179.09 2.951791e+04 27887.220 5413.95 10 2.788722e+04 278872.20 NA NA NA NULL
2018 Department Of Transportation Highway Repairer NA NA 11607628.48 1.748137e+04 14361.880 114334.31 664 1.436188e+04 9536288.32 NA NA NA NULL
2018 Department Of Transportation Highway Transportation Specialist 73190.40975 1.171047e+07 1640440.96 1.025276e+04 8618.380 29760.50 160 8.618380e+03 1378940.80 1.335091e+07 1.308941e+07 261500.16 NULL
2018 Department Of Transportation Highways And Sewers Inspector 59654.34821 6.681287e+06 887017.66 7.919801e+03 5875.320 19512.75 112 5.875320e+03 658035.84 7.568305e+06 7.339323e+06 228981.82 NULL
2018 Department Of Transportation Industrial Hygienist 59427.50000 5.942750e+05 23055.79 2.305579e+03 423.010 639.25 10 4.230100e+02 4230.10 6.173308e+05 5.985051e+05 18825.69 NULL
2018 Department Of Transportation Inspector 61533.00000 6.153300e+04 217.11 2.171100e+02 217.110 3.75 1 2.171100e+02 217.11 6.175011e+04 6.175011e+04 0.00 NULL
2018 Department Of Transportation Investigator 45040.27273 4.954430e+05 15871.83 1.442894e+03 1120.260 501.25 11 1.120260e+03 12322.86 5.113148e+05 5.077659e+05 3548.97 NULL
2018 Department Of Transportation Investigator Empl Disc 55004.33333 1.650130e+05 1586.78 5.289267e+02 79.480 61.00 3 7.948000e+01 238.44 1.665998e+05 1.652514e+05 1348.34 NULL
2018 Department Of Transportation Laborer NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2018 Department Of Transportation Landscape Architect 86238.00000 8.623800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.623800e+04 8.623800e+04 0.00 NULL
2018 Department Of Transportation Letterer And Sign Painter NA NA 108980.60 1.089806e+04 11193.650 2431.50 10 1.089806e+04 108980.60 NA NA NA NULL
2018 Department Of Transportation Machinist NA NA 306152.81 3.061528e+04 39548.365 5030.50 10 3.061528e+04 306152.81 NA NA NA NULL
2018 Department Of Transportation Management Auditor 69064.14286 1.450347e+06 24277.84 1.156088e+03 67.970 497.00 21 6.797000e+01 1427.37 1.474625e+06 1.451774e+06 22850.47 NULL
2018 Department Of Transportation Marine Electronics Technician 92729.00000 3.709160e+05 54829.38 1.370734e+04 6036.755 802.75 4 6.036755e+03 24147.02 4.257454e+05 3.950630e+05 30682.36 NULL
2018 Department Of Transportation Marine Engineer 64231.27273 1.413088e+06 1125863.50 5.117561e+04 50253.080 17149.75 22 5.025308e+04 1105567.76 2.538952e+06 2.518656e+06 20295.74 NULL
2018 Department Of Transportation Marine Oiler 55139.03390 3.253203e+06 2261174.47 3.832499e+04 38545.340 40793.25 59 3.832499e+04 2261174.47 5.514377e+06 5.514377e+06 0.00 NULL
2018 Department Of Transportation Masons Helper NA NA 3329.74 3.329740e+03 3329.740 79.50 1 3.329740e+03 3329.74 NA NA NA NULL
2018 Department Of Transportation Mate 57821.31944 4.163135e+06 2240625.80 3.111980e+04 31594.840 36325.50 72 3.111980e+04 2240625.80 6.403761e+06 6.403761e+06 0.00 NULL
2018 Department Of Transportation Mechanical Engineer 95312.66667 2.859380e+05 624.59 2.081967e+02 147.780 10.75 3 1.477800e+02 443.34 2.865626e+05 2.863813e+05 181.25 NULL
2018 Department Of Transportation Mechanical Engineering Intern 57598.00000 5.759800e+04 5280.57 5.280570e+03 5280.570 128.50 1 5.280570e+03 5280.57 6.287857e+04 6.287857e+04 0.00 NULL
2018 Department Of Transportation Motor Grader Operator NA NA 619582.82 2.212796e+04 19953.810 7049.75 28 1.995381e+04 558706.68 NA NA NA NULL
2018 Department Of Transportation Motor Vehicle Operator 37200.00000 3.720000e+04 4308.62 4.308620e+03 4308.620 153.75 1 4.308620e+03 4308.62 4.150862e+04 4.150862e+04 0.00 NULL
2018 Department Of Transportation Office Machine Aide 34597.22222 3.113750e+05 6426.60 7.140667e+02 0.000 303.75 9 0.000000e+00 0.00 3.178016e+05 3.113750e+05 6426.60 NULL
2018 Department Of Transportation Oiler NA NA 472097.19 2.950607e+04 29547.510 5374.75 16 2.950607e+04 472097.19 NA NA NA NULL
2018 Department Of Transportation Operations Communications Specialist 46736.95000 9.347390e+05 71238.81 3.561941e+03 2467.485 2039.25 20 2.467485e+03 49349.70 1.005978e+06 9.840887e+05 21889.11 NULL
2018 Department Of Transportation Painter NA NA 61666.62 1.233332e+04 13116.850 969.75 5 1.233332e+04 61666.62 NA NA NA NULL
2018 Department Of Transportation Paralegal Aide 46244.00000 4.624400e+04 933.85 9.338500e+02 933.850 26.00 1 9.338500e+02 933.85 4.717785e+04 4.717785e+04 0.00 NULL
2018 Department Of Transportation Plumber NA NA 338883.19 3.765369e+04 28707.530 3210.50 9 2.870753e+04 258367.77 NA NA NA NULL
2018 Department Of Transportation Principal Administrative Associate - Lev 1 & 2 Non Supvr 57930.70146 7.878575e+06 364203.17 2.677964e+03 186.715 8972.05 136 1.867150e+02 25393.24 8.242779e+06 7.903969e+06 338809.93 NULL
2018 Department Of Transportation Procurement Analyst 66545.72727 2.196009e+06 116465.67 3.529263e+03 0.000 2535.25 33 0.000000e+00 0.00 2.312475e+06 2.196009e+06 116465.67 NULL
2018 Department Of Transportation Project Manager 71170.60000 3.558530e+05 64797.88 1.295958e+04 8128.790 1105.75 5 8.128790e+03 40643.95 4.206509e+05 3.964970e+05 24153.93 NULL
2018 Department Of Transportation Project Manager Intern# 55170.00000 5.517000e+04 211.40 2.114000e+02 211.400 7.00 1 2.114000e+02 211.40 5.538140e+04 5.538140e+04 0.00 NULL
2018 Department Of Transportation Public Records Aide 38337.85750 2.300271e+05 130.36 2.172667e+01 0.000 6.50 6 0.000000e+00 0.00 2.301575e+05 2.300271e+05 130.36 NULL
2018 Department Of Transportation Public Records Officer 41045.00000 4.104500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.104500e+04 4.104500e+04 0.00 NULL
2018 Department Of Transportation Quality Assurance Specialist 50501.50000 1.010030e+05 8478.54 4.239270e+03 4239.270 263.00 2 4.239270e+03 8478.54 1.094815e+05 1.094815e+05 0.00 NULL
2018 Department Of Transportation Quality Assurance Specialist Trainee 44996.95980 1.349909e+05 29795.64 9.931880e+03 8849.740 1081.43 3 8.849740e+03 26549.22 1.647865e+05 1.615401e+05 3246.42 NULL
2018 Department Of Transportation Radio Repair Mechanic NA NA 134.62 4.487333e+01 24.480 2.00 3 2.448000e+01 73.44 NA NA NA NULL
2018 Department Of Transportation Research Assistant 48103.70821 6.734519e+05 3977.33 2.840950e+02 0.000 125.50 14 0.000000e+00 0.00 6.774292e+05 6.734519e+05 3977.33 NULL
2018 Department Of Transportation Rigger NA NA 355398.01 5.077114e+04 50650.080 4659.75 7 5.065008e+04 354550.56 NA NA NA NULL
2018 Department Of Transportation Rubber Tire Repairer NA NA 35762.03 7.152406e+03 8164.900 803.00 5 7.152406e+03 35762.03 NA NA NA NULL
2018 Department Of Transportation Secretary 43776.13992 6.566421e+05 18786.98 1.252465e+03 0.000 655.50 15 0.000000e+00 0.00 6.754291e+05 6.566421e+05 18786.98 NULL
2018 Department Of Transportation Secretary To The Deputy Commissioner 51879.50000 1.037590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.037590e+05 1.037590e+05 0.00 NULL
2018 Department Of Transportation Senior Photographer 67621.00000 6.762100e+04 994.70 9.947000e+02 994.700 24.25 1 9.947000e+02 994.70 6.861570e+04 6.861570e+04 0.00 NULL
2018 Department Of Transportation Senior Service Inspector 44491.00000 8.898200e+04 9460.93 4.730465e+03 4730.465 314.25 2 4.730465e+03 9460.93 9.844293e+04 9.844293e+04 0.00 NULL
2018 Department Of Transportation Service Inspector 35961.40000 1.798070e+05 9457.62 1.891524e+03 1715.070 379.00 5 1.715070e+03 8575.35 1.892646e+05 1.883824e+05 882.27 NULL
2018 Department Of Transportation Sheet Metal Worker NA NA 179806.61 4.495165e+04 40423.205 1656.25 4 4.042321e+04 161692.82 NA NA NA NULL
2018 Department Of Transportation Ship Carpenter NA NA 278729.47 4.645491e+04 46220.065 3485.75 6 4.622007e+04 277320.39 NA NA NA NULL
2018 Department Of Transportation Staff Analyst 65274.88889 1.762422e+06 71485.45 2.647609e+03 358.540 1664.75 27 3.585400e+02 9680.58 1.833907e+06 1.772103e+06 61804.87 NULL
2018 Department Of Transportation Staff Analyst Trainee 41706.37500 3.336510e+05 477.84 5.973000e+01 0.000 16.50 8 0.000000e+00 0.00 3.341288e+05 3.336510e+05 477.84 NULL
2018 Department Of Transportation Stationary Engineer NA NA 96796.20 1.935924e+04 12716.600 1088.50 5 1.271660e+04 63583.00 NA NA NA NULL
2018 Department Of Transportation Steam Fitter NA NA 577276.34 4.440587e+04 50996.000 5214.25 13 4.440587e+04 577276.34 NA NA NA NULL
2018 Department Of Transportation Stock Worker 39021.09091 4.292320e+05 80450.74 7.313704e+03 3551.570 2807.50 11 3.551570e+03 39067.27 5.096827e+05 4.682993e+05 41383.47 NULL
2018 Department Of Transportation Strategic Initiative Specialist 100846.00000 1.109306e+06 41984.02 3.816729e+03 1012.520 660.50 11 1.012520e+03 11137.72 1.151290e+06 1.120444e+06 30846.30 NULL
2018 Department Of Transportation Summer College Intern 2317.02933 6.255979e+04 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 6.255979e+04 6.255979e+04 0.00 NULL
2018 Department Of Transportation Summer Graduate Intern 5863.43538 1.407224e+05 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 1.407224e+05 1.407224e+05 0.00 NULL
2018 Department Of Transportation Supervising Special Officer 59754.00000 4.182780e+05 88643.20 1.266331e+04 12352.110 1999.00 7 1.235211e+04 86464.77 5.069212e+05 5.047428e+05 2178.43 NULL
2018 Department Of Transportation Supervisor 72930.00000 2.187900e+05 42997.55 1.433252e+04 10082.820 765.00 3 1.008282e+04 30248.46 2.617875e+05 2.490385e+05 12749.09 NULL
2018 Department Of Transportation Supervisor Boiler Maker NA NA 49601.99 4.960199e+04 49601.990 600.25 1 4.960199e+04 49601.99 NA NA NA NULL
2018 Department Of Transportation Supervisor Bricklayer NA NA 273021.23 5.460425e+04 54018.300 3564.25 5 5.401830e+04 270091.50 NA NA NA NULL
2018 Department Of Transportation Supervisor Bridge Painter NA NA 63262.81 5.271901e+03 4503.755 517.75 12 4.503755e+03 54045.06 NA NA NA NULL
2018 Department Of Transportation Supervisor Bridge Repairer And Riveter NA NA 168960.07 4.224002e+04 42159.990 2284.00 4 4.215999e+04 168639.96 NA NA NA NULL
2018 Department Of Transportation Supervisor Carpenter NA NA 123945.78 2.478916e+04 30961.240 1700.75 5 2.478916e+04 123945.78 NA NA NA NULL
2018 Department Of Transportation Supervisor Dockbuilder NA NA 70529.43 7.052943e+04 70529.430 879.00 1 7.052943e+04 70529.43 NA NA NA NULL
2018 Department Of Transportation Supervisor Electrician NA NA 495091.72 3.808398e+04 45423.980 5527.75 13 3.808398e+04 495091.72 NA NA NA NULL
2018 Department Of Transportation Supervisor Highway Repairer NA NA 4694156.61 2.470609e+04 20996.840 54277.75 190 2.099684e+04 3989399.60 NA NA NA NULL
2018 Department Of Transportation Supervisor Of Electrical Installations & Maintenance 67907.28205 2.648384e+06 390741.73 1.001902e+04 4581.670 7159.48 39 4.581670e+03 178685.13 3.039126e+06 2.827069e+06 212056.60 NULL
2018 Department Of Transportation Supervisor Of Mechanics NA NA 1051931.26 2.768240e+04 23373.815 10305.44 38 2.337381e+04 888204.97 NA NA NA NULL
2018 Department Of Transportation Supervisor Of Office Machine Operations 45278.50000 9.055700e+04 342.35 1.711750e+02 171.175 13.50 2 1.711750e+02 342.35 9.089935e+04 9.089935e+04 0.00 NULL
2018 Department Of Transportation Supervisor Of Stock Workers 50203.83333 3.012230e+05 49951.07 8.325178e+03 8195.290 1282.50 6 8.195290e+03 49171.74 3.511741e+05 3.503947e+05 779.33 NULL
2018 Department Of Transportation Supervisor Of Traffic Device Maintainers 64853.88000 3.242694e+06 695702.05 1.391404e+04 14804.940 13698.92 50 1.391404e+04 695702.05 3.938396e+06 3.938396e+06 0.00 NULL
2018 Department Of Transportation Supervisor Of Traffic Device Maintainers L2 & L3 73976.07692 1.923378e+06 546611.42 2.102352e+04 21621.780 9814.25 26 2.102352e+04 546611.42 2.469989e+06 2.469989e+06 0.00 NULL
2018 Department Of Transportation Supervisor Painter NA NA 65067.03 3.253351e+04 32533.515 883.50 2 3.253351e+04 65067.03 NA NA NA NULL
2018 Department Of Transportation Supervisor Plumber NA NA 129516.42 6.475821e+04 64758.210 1174.50 2 6.475821e+04 129516.42 NA NA NA NULL
2018 Department Of Transportation Supervisor Sheet Metal Worker NA NA 80569.00 8.056900e+04 80569.000 695.75 1 8.056900e+04 80569.00 NA NA NA NULL
2018 Department Of Transportation Supervisor Ship Carpenter NA NA 67461.66 6.746166e+04 67461.660 803.75 1 6.746166e+04 67461.66 NA NA NA NULL
2018 Department Of Transportation Supervisor Steamfitter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2018 Department Of Transportation Telecommunications Associate 86692.71429 6.068490e+05 242393.13 3.462759e+04 39952.080 3330.65 7 3.462759e+04 242393.13 8.492421e+05 8.492421e+05 0.00 NULL
2018 Department Of Transportation Thermostat Repairer NA NA 6764.84 6.764840e+03 6764.840 65.50 1 6.764840e+03 6764.84 NA NA NA NULL
2018 Department Of Transportation Tractor Operator NA NA 753423.46 3.275754e+04 21608.280 6488.75 23 2.160828e+04 496990.44 NA NA NA NULL
2018 Department Of Transportation Traffic Control Inspector 50724.53571 5.681148e+06 861750.61 7.694202e+03 4963.585 23011.78 112 4.963585e+03 555921.52 6.542899e+06 6.237070e+06 305829.09 NULL
2018 Department Of Transportation Traffic Device Maintainer 54974.10506 1.412834e+07 2020013.54 7.859975e+03 6251.540 46924.00 257 6.251540e+03 1606645.78 1.614836e+07 1.573499e+07 413367.76 NULL
2018 Department Of Transportation Welder NA NA 46033.91 2.301696e+04 23016.955 461.50 2 2.301696e+04 46033.91 NA NA NA NULL
2018 Department Of Transportation Worker’s Compensation Benefits Examiner 55000.00000 5.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.500000e+04 5.500000e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs *Attorney At Law 105098.66667 3.152960e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.152960e+05 3.152960e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs *Custodial Assistant 34377.83333 2.062670e+05 50824.41 8.470735e+03 7126.905 1718.25 6 7.126905e+03 42761.43 2.570914e+05 2.490284e+05 8062.98 NULL
2018 Dept Of Citywide Admin Svcs *Watchperson 45597.00000 4.559700e+04 9106.86 9.106860e+03 9106.860 280.50 1 9.106860e+03 9106.86 5.470386e+04 5.470386e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Accountant 68732.81231 8.935266e+05 3089.38 2.376446e+02 0.000 61.75 13 0.000000e+00 0.00 8.966159e+05 8.935266e+05 3089.38 NULL
2018 Dept Of Citywide Admin Svcs Adm Manager-Non-Mgrl From M1/M2 74875.78439 6.139814e+06 95830.54 1.168665e+03 0.000 1860.25 82 0.000000e+00 0.00 6.235645e+06 6.139814e+06 95830.54 NULL
2018 Dept Of Citywide Admin Svcs Admin Community Relations Specialist 78171.42857 5.472000e+05 4149.48 5.927829e+02 0.000 77.25 7 0.000000e+00 0.00 5.513495e+05 5.472000e+05 4149.48 NULL
2018 Dept Of Citywide Admin Svcs Admin Construction Project Manager 93661.00000 4.683050e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.683050e+05 4.683050e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Admin Inspector 108274.00000 2.165480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.165480e+05 2.165480e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Admin Tests & Meas Spec 118208.33333 7.092500e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.092500e+05 7.092500e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Administrative Accountant 119948.50000 2.398970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.398970e+05 2.398970e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Administrative Architect 127502.66667 3.825080e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.825080e+05 3.825080e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Administrative Business Promotion Coordinator 106153.66667 3.184610e+05 8065.57 2.688523e+03 0.000 140.25 3 0.000000e+00 0.00 3.265266e+05 3.184610e+05 8065.57 NULL
2018 Dept Of Citywide Admin Svcs Administrative City Planner 149032.33333 4.470970e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.470970e+05 4.470970e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Administrative Community Relations Specialist 162603.60000 8.130180e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.130180e+05 8.130180e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Administrative Construction Project Manager 123295.80000 6.164790e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.164790e+05 6.164790e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Administrative Engineer 123948.30000 1.239483e+06 7650.43 7.650430e+02 0.000 95.00 10 0.000000e+00 0.00 1.247133e+06 1.239483e+06 7650.43 NULL
2018 Dept Of Citywide Admin Svcs Administrative Graphic Artist 88000.00000 1.760000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.760000e+05 1.760000e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Administrative Inspector 114294.00000 2.285880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.285880e+05 2.285880e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Administrative Investigator 77699.00000 3.884950e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.884950e+05 3.884950e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Administrative Management Auditor 111994.52000 1.119945e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.119945e+05 1.119945e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Administrative Manager 112679.00000 1.239469e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.239469e+06 1.239469e+06 0.00 NULL
2018 Dept Of Citywide Admin Svcs Administrative Printing Services Manager 93709.00000 9.370900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.370900e+04 9.370900e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Administrative Procurement Analyst 80705.65625 2.582581e+06 7064.57 2.207678e+02 0.000 177.50 32 0.000000e+00 0.00 2.589646e+06 2.582581e+06 7064.57 NULL
2018 Dept Of Citywide Admin Svcs Administrative Project Manager 116362.63636 1.279989e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.279989e+06 1.279989e+06 0.00 NULL
2018 Dept Of Citywide Admin Svcs Administrative Public Information Specialist 143432.00000 4.302960e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.302960e+05 4.302960e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Administrative Quality Assurance Specialist 94734.85714 6.631440e+05 16835.53 2.405076e+03 1461.010 283.50 7 1.461010e+03 10227.07 6.799795e+05 6.733711e+05 6608.46 NULL
2018 Dept Of Citywide Admin Svcs Administrative Real Property Manager 98629.00000 9.862900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.862900e+04 9.862900e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Administrative Space Analyst 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Administrative Staff Analyst 99508.54472 1.223955e+07 110691.18 8.999283e+02 0.000 1515.25 123 0.000000e+00 0.00 1.235024e+07 1.223955e+07 110691.18 NULL
2018 Dept Of Citywide Admin Svcs Agency Attorney 100106.89474 1.902031e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.902031e+06 1.902031e+06 0.00 NULL
2018 Dept Of Citywide Admin Svcs Appraiser 95045.00000 4.752250e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.752250e+05 4.752250e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Architect 96546.14769 1.255100e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.255100e+06 1.255100e+06 0.00 NULL
2018 Dept Of Citywide Admin Svcs Asbestos Handler 79750.00000 2.392500e+05 26870.32 8.956773e+03 8871.900 467.00 3 8.871900e+03 26615.70 2.661203e+05 2.658657e+05 254.62 NULL
2018 Dept Of Citywide Admin Svcs Assistant Architect 70598.83333 4.235930e+05 30031.51 5.005252e+03 0.000 410.00 6 0.000000e+00 0.00 4.536245e+05 4.235930e+05 30031.51 NULL
2018 Dept Of Citywide Admin Svcs Assistant Civil Engineer 79703.00000 1.594060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.594060e+05 1.594060e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Assistant Commissioner 153912.50000 9.234750e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.234750e+05 9.234750e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Assistant Mechanical Engineer 71398.66667 4.283920e+05 494.40 8.240000e+01 0.000 6.50 6 0.000000e+00 0.00 4.288864e+05 4.283920e+05 494.40 NULL
2018 Dept Of Citywide Admin Svcs Assistant Printing Press Operator 56267.00000 5.626700e+04 471.52 4.715200e+02 471.520 14.25 1 4.715200e+02 471.52 5.673852e+04 5.673852e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Associate Chemist 69084.00000 6.908400e+04 994.49 9.944900e+02 994.490 24.50 1 9.944900e+02 994.49 7.007849e+04 7.007849e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Associate Investigator 61224.33333 3.673460e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.673460e+05 3.673460e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Associate Project Manager 94050.00000 1.598850e+06 28952.00 1.703059e+03 0.000 220.50 17 0.000000e+00 0.00 1.627802e+06 1.598850e+06 28952.00 NULL
2018 Dept Of Citywide Admin Svcs Associate Quality Assurance Specialist 72139.00000 5.771120e+05 61013.43 7.626679e+03 5080.840 1263.75 8 5.080840e+03 40646.72 6.381254e+05 6.177587e+05 20366.71 NULL
2018 Dept Of Citywide Admin Svcs Associate Real Property Manager 62326.40000 3.116320e+05 6067.72 1.213544e+03 3.010 140.25 5 3.010000e+00 15.05 3.176997e+05 3.116470e+05 6052.67 NULL
2018 Dept Of Citywide Admin Svcs Associate Staff Analyst 81515.53571 2.282435e+06 44987.55 1.606698e+03 0.000 705.50 28 0.000000e+00 0.00 2.327423e+06 2.282435e+06 44987.55 NULL
2018 Dept Of Citywide Admin Svcs Auto Mechanic NA NA 3778.23 1.259410e+03 0.000 62.25 3 0.000000e+00 0.00 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Bookkeeper 50868.00000 1.526040e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.526040e+05 1.526040e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Bricklayer NA NA 42403.12 4.240312e+04 42403.120 611.50 1 4.240312e+04 42403.12 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Business Promotion Coordinator 76903.80000 3.845190e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.845190e+05 3.845190e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Carpenter NA NA 716369.20 4.213936e+04 40976.440 9414.25 17 4.097644e+04 696599.48 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Cement Mason NA NA 67027.37 6.702737e+04 67027.370 1413.50 1 6.702737e+04 67027.37 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Certified It Administrator 97844.66667 5.870680e+05 17948.96 2.991493e+03 1863.030 280.50 6 1.863030e+03 11178.18 6.050170e+05 5.982462e+05 6770.78 NULL
2018 Dept Of Citywide Admin Svcs Certified It Developer 102648.00000 2.052960e+05 1233.25 6.166250e+02 616.625 19.25 2 6.166250e+02 1233.25 2.065292e+05 2.065292e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Chairman 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Chauffeur-Attendant 55005.76316 2.090219e+06 820551.75 2.159347e+04 21351.750 20000.34 38 2.135175e+04 811366.50 2.910771e+06 2.901586e+06 9185.25 NULL
2018 Dept Of Citywide Admin Svcs Chief Of Staff 199009.00000 1.990090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.990090e+05 1.990090e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs City Custodial Assistant NA NA 3938069.75 8.579673e+03 5175.460 149193.81 459 5.175460e+03 2375536.14 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs City Laborer NA NA 390886.83 2.171594e+04 4875.310 7088.75 18 4.875310e+03 87755.58 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs City Planner 83560.93562 1.336975e+06 6253.42 3.908388e+02 0.000 77.25 16 0.000000e+00 0.00 1.343228e+06 1.336975e+06 6253.42 NULL
2018 Dept Of Citywide Admin Svcs City Research Scientist 84332.20000 4.216610e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.216610e+05 4.216610e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs City Security Aide 37873.86047 1.628576e+06 229698.87 5.341834e+03 3065.310 8083.85 43 3.065310e+03 131808.33 1.858275e+06 1.760384e+06 97890.54 NULL
2018 Dept Of Citywide Admin Svcs Clerical Associate 45380.42609 3.131249e+06 85995.57 1.246313e+03 0.000 2876.50 69 0.000000e+00 0.00 3.217245e+06 3.131249e+06 85995.57 NULL
2018 Dept Of Citywide Admin Svcs Clock Repairer 4797.87000 4.797870e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.797870e+03 4.797870e+03 0.00 NULL
2018 Dept Of Citywide Admin Svcs College Aide 6664.99573 2.332749e+05 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 2.332749e+05 2.332749e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Commissioner 169165.33333 1.014992e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.014992e+06 1.014992e+06 0.00 NULL
2018 Dept Of Citywide Admin Svcs Commissioner Of Citywide Administrative Services 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Community Assistant 33872.26829 1.388763e+06 91688.13 2.236296e+03 0.000 3920.25 41 0.000000e+00 0.00 1.480451e+06 1.388763e+06 91688.13 NULL
2018 Dept Of Citywide Admin Svcs Community Associate 47940.47278 4.314643e+06 251774.76 2.797497e+03 467.920 7757.10 90 4.679200e+02 42112.80 4.566417e+06 4.356755e+06 209661.96 NULL
2018 Dept Of Citywide Admin Svcs Community Coordinator 64565.11111 2.324344e+06 147827.48 4.106319e+03 549.450 3614.00 36 5.494500e+02 19780.20 2.472171e+06 2.344124e+06 128047.28 NULL
2018 Dept Of Citywide Admin Svcs Community Service Aide 33425.00000 1.002750e+05 3343.76 1.114587e+03 0.000 144.00 3 0.000000e+00 0.00 1.036188e+05 1.002750e+05 3343.76 NULL
2018 Dept Of Citywide Admin Svcs Computer Aide-Non-Spvr 56982.50000 1.139650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.139650e+05 1.139650e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Computer Associate 75811.69565 1.743669e+06 28026.83 1.218558e+03 0.000 530.25 23 0.000000e+00 0.00 1.771696e+06 1.743669e+06 28026.83 NULL
2018 Dept Of Citywide Admin Svcs Computer Operations Manager 124583.00000 1.245830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.245830e+05 1.245830e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Computer Programmer Analyst 64356.00000 6.435600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.435600e+04 6.435600e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Computer Specialist 95150.68182 4.186630e+06 123013.58 2.795763e+03 0.450 2054.00 44 4.500000e-01 19.80 4.309644e+06 4.186650e+06 122993.78 NULL
2018 Dept Of Citywide Admin Svcs Computer Systems Manager 125840.97826 5.788685e+06 9746.85 2.118880e+02 0.000 115.50 46 0.000000e+00 0.00 5.798432e+06 5.788685e+06 9746.85 NULL
2018 Dept Of Citywide Admin Svcs Confidential Strategy Planner 75201.16667 9.024140e+05 4788.96 3.990800e+02 0.000 80.75 12 0.000000e+00 0.00 9.072030e+05 9.024140e+05 4788.96 NULL
2018 Dept Of Citywide Admin Svcs Construction Project Manager 81979.33333 7.378140e+05 60213.63 6.690403e+03 103.860 859.00 9 1.038600e+02 934.74 7.980276e+05 7.387487e+05 59278.89 NULL
2018 Dept Of Citywide Admin Svcs Custodian 40280.13348 8.901910e+06 3129867.88 1.416230e+04 11056.360 100758.70 221 1.105636e+04 2443455.56 1.203178e+07 1.134537e+07 686412.32 NULL
2018 Dept Of Citywide Admin Svcs Deputy Assistant Commissioner 90465.79630 4.885153e+06 3692.46 6.837889e+01 0.000 104.00 54 0.000000e+00 0.00 4.888845e+06 4.885153e+06 3692.46 NULL
2018 Dept Of Citywide Admin Svcs Deputy Commissioner 199009.00000 7.960360e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.960360e+05 7.960360e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Deputy Commissioner For City Personnel Services 208000.00000 2.080000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.080000e+05 2.080000e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Director Of Energy Conservation 199009.00000 1.990090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.990090e+05 1.990090e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Director Of Public Information 126201.50000 2.524030e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.524030e+05 2.524030e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Director Of Public Relations 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Director Of Stores 97850.00000 9.785000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.785000e+04 9.785000e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Director Of The City Record 149047.00000 1.490470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.490470e+05 1.490470e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Director,Citywide Occupational Safety & Health Program 115206.00000 1.152060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.152060e+05 1.152060e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Electrical Engineer 95000.00000 1.900000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.900000e+05 1.900000e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Electrician NA NA 879941.80 4.631273e+04 40818.880 10154.75 19 4.081888e+04 775558.72 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Elevator Mechanic NA NA 776142.56 1.990109e+04 20883.410 10396.50 39 1.990109e+04 776142.56 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Elevator Mechanic Helper NA NA 49215.04 9.843008e+03 9505.550 1041.00 5 9.505550e+03 47527.75 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Estimator 80608.00000 1.612160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.612160e+05 1.612160e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Exec Asst To The Deputy Com For Citywide Personnel Svcs-Dcas 96443.00000 9.644300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.644300e+04 9.644300e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Executive Agency Counsel 130282.26667 1.954234e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.954234e+06 1.954234e+06 0.00 NULL
2018 Dept Of Citywide Admin Svcs Executive Assistant To The Commissioner 66950.00000 6.695000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.695000e+04 6.695000e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Executive Director Of Standards And Appeals 137248.00000 1.372480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.372480e+05 1.372480e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Executive Program Specialist 142868.00000 4.286040e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.286040e+05 4.286040e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs First Deputy Commissioner 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs General Counsel 199009.00000 1.990090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.990090e+05 1.990090e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Graphic Artist 63000.00000 2.520000e+05 4006.32 1.001580e+03 526.205 87.00 4 5.262050e+02 2104.82 2.560063e+05 2.541048e+05 1901.50 NULL
2018 Dept Of Citywide Admin Svcs High Pressure Plant Tender NA NA 703649.28 1.303054e+04 10578.750 12964.00 54 1.057875e+04 571252.50 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Industrial Hygienist 70197.00000 7.019700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.019700e+04 7.019700e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Inspector 56794.00000 5.679400e+04 41.08 4.108000e+01 41.080 1.00 1 4.108000e+01 41.08 5.683508e+04 5.683508e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Investigator 44248.37500 3.539870e+05 455.31 5.691375e+01 0.000 12.75 8 0.000000e+00 0.00 3.544423e+05 3.539870e+05 455.31 NULL
2018 Dept Of Citywide Admin Svcs Job Training Participant 6190.10481 5.632995e+05 0.00 0.000000e+00 0.000 0.00 91 0.000000e+00 0.00 5.632995e+05 5.632995e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Landscape Architect 86833.00000 8.683300e+04 51.68 5.168000e+01 51.680 1.00 1 5.168000e+01 51.68 8.688468e+04 8.688468e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Locksmith NA NA 22.20 2.220000e+01 22.200 0.50 1 2.220000e+01 22.20 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Machinist NA NA 28674.64 2.867464e+04 28674.640 469.50 1 2.867464e+04 28674.64 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Maintenance Worker NA NA 996105.13 2.316524e+04 17246.330 23490.75 43 1.724633e+04 741592.19 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Management Auditor 69400.00000 1.388000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.388000e+05 1.388000e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Mechanical Engineer 109640.00000 2.192800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.192800e+05 2.192800e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Media Services Technician 54271.00000 5.427100e+04 2146.18 2.146180e+03 2146.180 62.50 1 2.146180e+03 2146.18 5.641718e+04 5.641718e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Motor Vehicle Operator 50440.00000 5.044000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.044000e+04 5.044000e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Motor Vehicle Supervisor 53969.00000 5.396900e+04 387.71 3.877100e+02 387.710 10.00 1 3.877100e+02 387.71 5.435671e+04 5.435671e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs New York City Fellow 30185.33599 1.297969e+06 28.19 6.555814e-01 0.000 2.00 43 0.000000e+00 0.00 1.297998e+06 1.297969e+06 28.19 NULL
2018 Dept Of Citywide Admin Svcs New York City Urban Fellow 29973.48115 7.793105e+05 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 7.793105e+05 7.793105e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Nycaps Process Analyst Manager 143158.00000 1.431580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.431580e+05 1.431580e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Office Machine Aide 42336.50000 8.467300e+04 1845.69 9.228450e+02 922.845 55.00 2 9.228450e+02 1845.69 8.651869e+04 8.651869e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Oiler NA NA 677315.28 2.052471e+04 16553.650 7571.75 33 1.655365e+04 546270.45 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Painter NA NA 159784.79 3.195696e+04 32376.970 2439.50 5 3.195696e+04 159784.79 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Plasterer NA NA 115486.03 3.849534e+04 46287.860 2415.75 3 3.849534e+04 115486.03 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Plumber NA NA 534885.39 3.820610e+04 41557.290 4927.75 14 3.820610e+04 534885.39 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Plumber’s Helper NA NA 125522.49 4.184083e+04 37433.330 1650.25 3 3.743333e+04 112299.99 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Principal Administrative Associate - Lev 1 & 2 Non Supvr 60952.85577 6.339097e+06 296273.09 2.848780e+03 0.000 7708.25 104 0.000000e+00 0.00 6.635370e+06 6.339097e+06 296273.09 NULL
2018 Dept Of Citywide Admin Svcs Procurement Analyst 70454.72727 7.750020e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.750020e+05 7.750020e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Public Records Officer 63872.00000 1.916160e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.916160e+05 1.916160e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Quality Assurance Specialist 55369.00000 6.644280e+05 34787.60 2.898967e+03 1764.675 975.50 12 1.764675e+03 21176.10 6.992156e+05 6.856041e+05 13611.50 NULL
2018 Dept Of Citywide Admin Svcs Quality Assurance Specialist Trainee 29288.00000 5.857600e+04 629.20 3.146000e+02 314.600 31.50 2 3.146000e+02 629.20 5.920520e+04 5.920520e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Radio And Television Operator 48181.00000 9.636200e+04 11094.75 5.547375e+03 5547.375 301.00 2 5.547375e+03 11094.75 1.074568e+05 1.074568e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Real Property Assistant 42000.00000 4.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.200000e+04 4.200000e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Secretary 46439.38462 6.037120e+05 5205.23 4.004023e+02 0.000 140.50 13 0.000000e+00 0.00 6.089172e+05 6.037120e+05 5205.23 NULL
2018 Dept Of Citywide Admin Svcs Secretary Of Comm 62008.00000 6.200800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.200800e+04 6.200800e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Secretary To The Deputy Commissioner 94355.00000 1.887100e+05 636.97 3.184850e+02 318.485 12.75 2 3.184850e+02 636.97 1.893470e+05 1.893470e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Senior Estimator 90350.00000 1.807000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.807000e+05 1.807000e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Senior Salvage Appraiser 72246.00000 7.224600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.224600e+04 7.224600e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Senior Stationary Engineer NA NA 1405264.39 5.018801e+04 43079.495 13061.50 28 4.307950e+04 1206225.86 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Sheet Metal Worker NA NA 136680.44 6.834022e+04 68340.220 1236.25 2 6.834022e+04 136680.44 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Special Examiner 12185.63262 3.533833e+05 667.32 2.301103e+01 0.000 21.75 29 0.000000e+00 0.00 3.540507e+05 3.533833e+05 667.32 NULL
2018 Dept Of Citywide Admin Svcs Special Officer 46738.20000 2.103219e+06 399167.99 8.870400e+03 6170.620 11523.58 45 6.170620e+03 277677.90 2.502387e+06 2.380897e+06 121490.09 NULL
2018 Dept Of Citywide Admin Svcs Staff Analyst 58576.97727 2.577387e+06 71338.67 1.621333e+03 76.750 1768.50 44 7.675000e+01 3377.00 2.648726e+06 2.580764e+06 67961.67 NULL
2018 Dept Of Citywide Admin Svcs Staff Analyst Trainee 43580.25000 6.972840e+05 2249.99 1.406244e+02 0.000 82.25 16 0.000000e+00 0.00 6.995340e+05 6.972840e+05 2249.99 NULL
2018 Dept Of Citywide Admin Svcs Stationary Engineer NA NA 4429768.39 3.990782e+04 38110.150 45710.75 111 3.811015e+04 4230226.65 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Statistician 63519.00000 6.351900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.351900e+04 6.351900e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Steam Fitter NA NA 578008.75 5.780088e+04 50125.625 5063.50 10 5.012562e+04 501256.25 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Steam Fitter’s Helper NA NA 97638.75 3.254625e+04 46653.750 1138.50 3 3.254625e+04 97638.75 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Stenographic Specialist 5207.06000 5.207060e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.207060e+03 5.207060e+03 0.00 NULL
2018 Dept Of Citywide Admin Svcs Stock Worker 34952.16667 4.194260e+05 3576.62 2.980517e+02 295.275 156.25 12 2.952750e+02 3543.30 4.230026e+05 4.229693e+05 33.32 NULL
2018 Dept Of Citywide Admin Svcs Strategic Initiative Specialist 95000.00000 2.850000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.850000e+05 2.850000e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Summer College Intern 2314.98643 6.481962e+04 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 6.481962e+04 6.481962e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Summer Graduate Intern 2595.94750 2.076758e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 2.076758e+04 2.076758e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Supervising Special Officer 63524.61111 1.143443e+06 416878.57 2.315992e+04 22157.410 9115.75 18 2.215741e+04 398833.38 1.560322e+06 1.542276e+06 18045.19 NULL
2018 Dept Of Citywide Admin Svcs Supervisor NA NA 16698.47 1.669847e+04 16698.470 259.50 1 1.669847e+04 16698.47 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Supervisor Bricklayer NA NA 49353.24 4.935324e+04 49353.240 656.50 1 4.935324e+04 49353.24 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Supervisor Carpenter NA NA 229569.71 5.739243e+04 58137.155 2870.50 4 5.739243e+04 229569.71 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Supervisor Electrician NA NA 147811.15 4.927038e+04 53080.460 1701.25 3 4.927038e+04 147811.15 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Supervisor Elevator Mechanic NA NA 247568.63 4.126144e+04 48150.820 2916.50 6 4.126144e+04 247568.63 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Supervisor Locksmith NA NA 35838.09 3.583809e+04 35838.090 700.50 1 3.583809e+04 35838.09 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Supervisor Of Electrical Installations & Maintenance 85946.00000 8.594600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.594600e+04 8.594600e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Supervisor Of Mechanics NA NA 6977.47 3.488735e+03 3488.735 80.50 2 3.488735e+03 6977.47 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Supervisor Of Motor Transport 60531.00000 6.053100e+04 14021.97 1.402197e+04 14021.970 292.25 1 1.402197e+04 14021.97 7.455297e+04 7.455297e+04 0.00 NULL
2018 Dept Of Citywide Admin Svcs Supervisor Of Radio And Television Operators 81611.50000 1.632230e+05 33979.08 1.698954e+04 16989.540 555.00 2 1.698954e+04 33979.08 1.972021e+05 1.972021e+05 0.00 NULL
2018 Dept Of Citywide Admin Svcs Supervisor Of Stock Workers 49321.87500 3.945750e+05 30241.26 3.780157e+03 3641.370 808.50 8 3.641370e+03 29130.96 4.248163e+05 4.237060e+05 1110.30 NULL
2018 Dept Of Citywide Admin Svcs Supervisor Painter NA NA 46422.72 4.642272e+04 46422.720 615.00 1 4.642272e+04 46422.72 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Supervisor Plumber NA NA 122004.49 1.220045e+05 122004.490 1093.75 1 1.220045e+05 122004.49 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Supervisor Sheet Metal Worker NA NA 103313.70 1.033137e+05 103313.700 867.75 1 1.033137e+05 103313.70 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Supervisor Steamfitter NA NA 73359.00 7.335900e+04 73359.000 629.00 1 7.335900e+04 73359.00 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Supervisor Thermostat Repair NA NA 47831.79 4.783179e+04 47831.790 418.00 1 4.783179e+04 47831.79 NA NA NA NULL
2018 Dept Of Citywide Admin Svcs Tests And Measurement Specialist 67117.75000 2.147768e+06 52250.50 1.632828e+03 292.775 862.25 32 2.927750e+02 9368.80 2.200018e+06 2.157137e+06 42881.70 NULL
2018 Dept Of Citywide Admin Svcs Thermostat Repairer NA NA 197231.07 1.643592e+04 16937.920 1836.00 12 1.643592e+04 197231.07 NA NA NA NULL
2018 Dept Of Ed Hrly Support Staff Coop Education Trainee Computer Tech Aide/Jr 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2018 Dept Of Ed Hrly Support Staff Coop Education Trainee Computer Tech Aide/Sr 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2018 Dept Of Ed Hrly Support Staff Coop Trainee Typist 0.00000 0.000000e+00 6474.00 1.926786e+01 0.000 0.00 336 0.000000e+00 0.00 6.474000e+03 0.000000e+00 6474.00 NULL
2018 Dept Of Ed Hrly Support Staff F/T Dc 37 Family Para 0.00000 0.000000e+00 100464.25 5.941115e+01 0.000 0.00 1691 0.000000e+00 0.00 1.004642e+05 0.000000e+00 100464.25 NULL
2018 Dept Of Ed Hrly Support Staff F/T Film Inspection Asst. 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2018 Dept Of Ed Hrly Support Staff F/T Group Leader 0.00000 0.000000e+00 37067.80 2.851369e+03 0.000 0.00 13 0.000000e+00 0.00 3.706780e+04 0.000000e+00 37067.80 NULL
2018 Dept Of Ed Hrly Support Staff F/T Health Service Aide 0.00000 0.000000e+00 12419.45 8.808121e+01 0.000 0.00 141 0.000000e+00 0.00 1.241945e+04 0.000000e+00 12419.45 NULL
2018 Dept Of Ed Hrly Support Staff F/T School Aide 0.00000 0.000000e+00 1824476.70 2.153537e+02 0.000 0.00 8472 0.000000e+00 0.00 1.824477e+06 0.000000e+00 1824476.70 NULL
2018 Dept Of Ed Hrly Support Staff F/T School Guard 0.00000 0.000000e+00 14604.71 4.295503e+02 0.000 0.00 34 0.000000e+00 0.00 1.460471e+04 0.000000e+00 14604.71 NULL
2018 Dept Of Ed Hrly Support Staff F/T School Lunch Helper 0.00000 0.000000e+00 182117.38 4.332002e+01 0.000 0.00 4204 0.000000e+00 0.00 1.821174e+05 0.000000e+00 182117.38 NULL
2018 Dept Of Ed Hrly Support Staff F/T School Safety Officer 0.00000 0.000000e+00 80218.84 3.342452e+03 1045.420 0.00 24 1.045420e+03 25090.08 8.021884e+04 2.509008e+04 55128.76 NULL
2018 Dept Of Ed Hrly Support Staff F/T Sr. School Lunch Helper 0.00000 0.000000e+00 414510.66 1.369830e+02 0.000 0.00 3026 0.000000e+00 0.00 4.145107e+05 0.000000e+00 414510.66 NULL
2018 Dept Of Ed Hrly Support Staff Student Aide 0.00000 0.000000e+00 11257.64 4.049511e+00 0.000 0.00 2780 0.000000e+00 0.00 1.125764e+04 0.000000e+00 11257.64 NULL
2018 Dept Of Ed Hrly Support Staff Substitute Recreation Assistant 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 68 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2018 Dept Of Ed Hrly Support Staff Substitute School Aide 0.00000 0.000000e+00 2014.16 3.980553e+00 0.000 0.00 506 0.000000e+00 0.00 2.014160e+03 0.000000e+00 2014.16 NULL
2018 Dept Of Ed Hrly Support Staff Substitute School Lunch Helper 0.00000 0.000000e+00 1217.96 1.862324e+00 0.000 0.00 654 0.000000e+00 0.00 1.217960e+03 0.000000e+00 1217.96 NULL
2018 Dept Of Ed Hrly Support Staff Substitute Sr. School Lunch Helper 0.00000 0.000000e+00 2277.66 4.171538e+00 0.000 0.00 546 0.000000e+00 0.00 2.277660e+03 0.000000e+00 2277.66 NULL
2018 Dept Of Ed Hrly Support Staff Supervising School Aide 0.00000 0.000000e+00 395752.55 8.384588e+02 0.000 0.00 472 0.000000e+00 0.00 3.957525e+05 0.000000e+00 395752.55 NULL
2018 Dept Of Ed Hrly Support Staff NA NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2018 Dept Of Ed Para Professionals Adult Ed-30 H 40961.58621 1.187886e+06 5437.21 1.874900e+02 0.000 0.00 29 0.000000e+00 0.00 1.193323e+06 1.187886e+06 5437.21 NULL
2018 Dept Of Ed Para Professionals Adult Ed-35 H 44540.50000 8.908100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.908100e+04 8.908100e+04 0.00 NULL
2018 Dept Of Ed Para Professionals Annual Ed Para 36200.50873 1.003840e+09 1925275.91 6.942935e+01 0.000 0.00 27730 0.000000e+00 0.00 1.005765e+09 1.003840e+09 1925275.91 NULL
2018 Dept Of Ed Para Professionals Pre-Ses Ed Para 0.00000 0.000000e+00 98.74 1.122046e+00 0.000 0.00 88 0.000000e+00 0.00 9.874000e+01 0.000000e+00 98.74 NULL
2018 Dept Of Ed Para Professionals Substitute Ed Para NA NA 539.21 6.661850e-02 0.000 0.00 8094 0.000000e+00 0.00 NA NA NA NULL
2018 Dept Of Ed Para Professionals Teacher Aide 26056.42012 4.403535e+06 13805.86 8.169148e+01 0.000 0.00 169 0.000000e+00 0.00 4.417341e+06 4.403535e+06 13805.86 NULL
2018 Dept Of Ed Para Professionals NA 30777.50000 6.155500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.155500e+04 6.155500e+04 0.00 NULL
2018 Dept Of Ed Pedagogical 12 Month Special Education Asst. Principal 131903.21586 2.994203e+07 0.00 0.000000e+00 0.000 0.00 227 0.000000e+00 0.00 2.994203e+07 2.994203e+07 0.00 NULL
2018 Dept Of Ed Pedagogical 12 Month Special Education Supervisor 132542.91304 3.048487e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 3.048487e+06 3.048487e+06 0.00 NULL
2018 Dept Of Ed Pedagogical Adult Educat Teach - Reg Sub 37705.60000 1.885280e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.885280e+05 1.885280e+05 0.00 NULL
2018 Dept Of Ed Pedagogical Adult Education Teacher 101604.29412 1.900000e+07 0.00 0.000000e+00 0.000 0.00 187 0.000000e+00 0.00 1.900000e+07 1.900000e+07 0.00 NULL
2018 Dept Of Ed Pedagogical Assistant Principal 121899.22104 4.367649e+08 0.00 0.000000e+00 0.000 0.00 3583 0.000000e+00 0.00 4.367649e+08 4.367649e+08 0.00 NULL
2018 Dept Of Ed Pedagogical Assistant Principal Assigned 122080.33333 7.324820e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.324820e+05 7.324820e+05 0.00 NULL
2018 Dept Of Ed Pedagogical Assistant Superintendent 157566.73756 3.482225e+07 0.00 0.000000e+00 0.000 0.00 221 0.000000e+00 0.00 3.482225e+07 3.482225e+07 0.00 NULL
2018 Dept Of Ed Pedagogical Chancellor 289784.50000 5.795690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.795690e+05 5.795690e+05 0.00 NULL
2018 Dept Of Ed Pedagogical Community Supertindent 176521.90196 9.002617e+06 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 9.002617e+06 9.002617e+06 0.00 NULL
2018 Dept Of Ed Pedagogical Cse Chairperson 142991.61538 1.858891e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.858891e+06 1.858891e+06 0.00 NULL
2018 Dept Of Ed Pedagogical Deputy Chancellor 225948.00000 2.259480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.259480e+05 2.259480e+05 0.00 NULL
2018 Dept Of Ed Pedagogical Deputy Community Superintendent 162140.50000 3.242810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.242810e+05 3.242810e+05 0.00 NULL
2018 Dept Of Ed Pedagogical Deputy Regional Superintendent 200812.33333 6.024370e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.024370e+05 6.024370e+05 0.00 NULL
2018 Dept Of Ed Pedagogical Director 134250.84211 2.550766e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.550766e+06 2.550766e+06 0.00 NULL
2018 Dept Of Ed Pedagogical Educational Administrator Csa 124899.91862 1.335180e+08 0.00 0.000000e+00 0.000 0.00 1069 0.000000e+00 0.00 1.335180e+08 1.335180e+08 0.00 NULL
2018 Dept Of Ed Pedagogical Educational Administrator Uft 134475.62500 1.075805e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.075805e+06 1.075805e+06 0.00 NULL
2018 Dept Of Ed Pedagogical Guidance Counselor 97936.71487 3.352374e+08 0.00 0.000000e+00 0.000 0.00 3423 0.000000e+00 0.00 3.352374e+08 3.352374e+08 0.00 NULL
2018 Dept Of Ed Pedagogical Guidance Counselor Assigned A 85178.28090 7.580867e+06 0.00 0.000000e+00 0.000 0.00 89 0.000000e+00 0.00 7.580867e+06 7.580867e+06 0.00 NULL
2018 Dept Of Ed Pedagogical Guidance Counselor-Reg Sub 63890.00000 1.022240e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.022240e+06 1.022240e+06 0.00 NULL
2018 Dept Of Ed Pedagogical Lab Specialist/Assistant 85004.42857 8.925465e+06 0.00 0.000000e+00 0.000 0.00 105 0.000000e+00 0.00 8.925465e+06 8.925465e+06 0.00 NULL
2018 Dept Of Ed Pedagogical Local Instructional Supervisor 188634.25000 1.509074e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.509074e+06 1.509074e+06 0.00 NULL
2018 Dept Of Ed Pedagogical New Principal Intern 87527.00000 8.752700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.752700e+04 8.752700e+04 0.00 NULL
2018 Dept Of Ed Pedagogical Principal 156533.92765 2.791000e+08 0.00 0.000000e+00 0.000 0.00 1783 0.000000e+00 0.00 2.791000e+08 2.791000e+08 0.00 NULL
2018 Dept Of Ed Pedagogical Principal Assigned 165130.82143 4.623663e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 4.623663e+06 4.623663e+06 0.00 NULL
2018 Dept Of Ed Pedagogical Psychologist In Train - Reg Sub 49748.00000 1.044708e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.044708e+06 1.044708e+06 0.00 NULL
2018 Dept Of Ed Pedagogical Regional Instructional Superintendent 215391.00000 2.153910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.153910e+05 2.153910e+05 0.00 NULL
2018 Dept Of Ed Pedagogical School Medical Inspector 86107.00000 2.583210e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.583210e+05 2.583210e+05 0.00 NULL
2018 Dept Of Ed Pedagogical School Psychiatrist 90151.00000 9.015100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.015100e+04 9.015100e+04 0.00 NULL
2018 Dept Of Ed Pedagogical School Psycholgist 99352.69348 1.630378e+08 0.00 0.000000e+00 0.000 0.00 1641 0.000000e+00 0.00 1.630378e+08 1.630378e+08 0.00 NULL
2018 Dept Of Ed Pedagogical School Psychologist - Reg Sub 66408.33333 1.992250e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.992250e+05 1.992250e+05 0.00 NULL
2018 Dept Of Ed Pedagogical School Secretary 62602.25318 2.020175e+08 0.00 0.000000e+00 0.000 0.00 3227 0.000000e+00 0.00 2.020175e+08 2.020175e+08 0.00 NULL
2018 Dept Of Ed Pedagogical School Secretary-Reg Sub 43309.70168 1.030771e+07 0.00 0.000000e+00 0.000 0.00 238 0.000000e+00 0.00 1.030771e+07 1.030771e+07 0.00 NULL
2018 Dept Of Ed Pedagogical School Social Worker 99206.21093 1.923608e+08 0.00 0.000000e+00 0.000 0.00 1939 0.000000e+00 0.00 1.923608e+08 1.923608e+08 0.00 NULL
2018 Dept Of Ed Pedagogical School Social Worker - Reg Sub 77389.66667 2.321690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.321690e+05 2.321690e+05 0.00 NULL
2018 Dept Of Ed Pedagogical Supervisor 117897.95522 7.899163e+06 0.00 0.000000e+00 0.000 0.00 67 0.000000e+00 0.00 7.899163e+06 7.899163e+06 0.00 NULL
2018 Dept Of Ed Pedagogical Supervisor Assigned 136017.80769 3.536463e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 3.536463e+06 3.536463e+06 0.00 NULL
2018 Dept Of Ed Pedagogical Teach Asst Vocation - Reg Sub 51519.98214 2.885119e+06 0.00 0.000000e+00 0.000 0.00 56 0.000000e+00 0.00 2.885119e+06 2.885119e+06 0.00 NULL
2018 Dept Of Ed Pedagogical Teacher 89671.77380 5.387929e+09 0.00 0.000000e+00 0.000 0.00 60085 0.000000e+00 0.00 5.387929e+09 5.387929e+09 0.00 NULL
2018 Dept Of Ed Pedagogical Teacher Assigned A 98680.04331 7.519419e+07 0.00 0.000000e+00 0.000 0.00 762 0.000000e+00 0.00 7.519419e+07 7.519419e+07 0.00 NULL
2018 Dept Of Ed Pedagogical Teacher Assigned B 102009.00000 1.020090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020090e+05 1.020090e+05 0.00 NULL
2018 Dept Of Ed Pedagogical Teacher Assistant - Reg Sub 22500.00000 1.147500e+06 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 1.147500e+06 1.147500e+06 0.00 NULL
2018 Dept Of Ed Pedagogical Teacher Attendance 95704.95026 3.655929e+07 0.00 0.000000e+00 0.000 0.00 382 0.000000e+00 0.00 3.655929e+07 3.655929e+07 0.00 NULL
2018 Dept Of Ed Pedagogical Teacher Attendance-Reg Sub 61437.00000 6.143700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.143700e+04 6.143700e+04 0.00 NULL
2018 Dept Of Ed Pedagogical Teacher Resource Room 100421.66667 3.012650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.012650e+05 3.012650e+05 0.00 NULL
2018 Dept Of Ed Pedagogical Teacher Special Education 84654.01984 2.270167e+09 0.00 0.000000e+00 0.000 0.00 26817 0.000000e+00 0.00 2.270167e+09 2.270167e+09 0.00 NULL
2018 Dept Of Ed Pedagogical Teacher Special Education-Reg Sub 58585.62113 4.159579e+07 0.00 0.000000e+00 0.000 0.00 710 0.000000e+00 0.00 4.159579e+07 4.159579e+07 0.00 NULL
2018 Dept Of Ed Pedagogical Teacher Trainer 108090.50000 2.161810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.161810e+05 2.161810e+05 0.00 NULL
2018 Dept Of Ed Pedagogical Teacher-Reg Sub 63694.99570 4.439541e+07 0.00 0.000000e+00 0.000 0.00 697 0.000000e+00 0.00 4.439541e+07 4.439541e+07 0.00 NULL
2018 Dept Of Ed Pedagogical Uft School Secretary Assigned - Non School Based- 12 Month 56154.00000 1.123080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.123080e+05 1.123080e+05 0.00 NULL
2018 Dept Of Ed Per Diem Teachers Assistant Principal NA NA 0.00 0.000000e+00 0.000 0.00 99 0.000000e+00 0.00 NA NA NA NULL
2018 Dept Of Ed Per Diem Teachers Guidance Counselor NA NA 0.00 0.000000e+00 0.000 0.00 146 0.000000e+00 0.00 NA NA NA NULL
2018 Dept Of Ed Per Diem Teachers Lab Specialist/Assistant NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2018 Dept Of Ed Per Diem Teachers Principal NA NA 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 NA NA NA NULL
2018 Dept Of Ed Per Diem Teachers School Psychologist NA NA 0.00 0.000000e+00 0.000 0.00 71 0.000000e+00 0.00 NA NA NA NULL
2018 Dept Of Ed Per Diem Teachers School Social Worker NA NA 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 NA NA NA NULL
2018 Dept Of Ed Per Diem Teachers Secretary NA NA 0.00 0.000000e+00 0.000 0.00 203 0.000000e+00 0.00 NA NA NA NULL
2018 Dept Of Ed Per Diem Teachers Supervisor NA NA 0.00 0.000000e+00 0.000 0.00 121 0.000000e+00 0.00 NA NA NA NULL
2018 Dept Of Ed Per Diem Teachers Teacher-General Ed NA NA 0.00 0.000000e+00 0.000 0.00 11466 0.000000e+00 0.00 NA NA NA NULL
2018 Dept Of Ed Per Diem Teachers Teacher-Special Ed NA NA 0.00 0.000000e+00 0.000 0.00 231 0.000000e+00 0.00 NA NA NA NULL
2018 Dept Of Ed Per Session Teacher School Secretary Per Session NA NA 0.00 0.000000e+00 0.000 0.00 1104 0.000000e+00 0.00 NA NA NA NULL
2018 Dept Of Ed Per Session Teacher Supervisor Per Session NA NA 0.00 0.000000e+00 0.000 0.00 1003 0.000000e+00 0.00 NA NA NA NULL
2018 Dept Of Ed Per Session Teacher Teacher- Per Session NA NA 0.00 0.000000e+00 0.000 0.00 75364 0.000000e+00 0.00 NA NA NA NULL
2018 Dept Of Environment Protection *Attorney At Law 101811.75000 4.072470e+05 5622.11 1.405527e+03 0.000 72.50 4 0.000000e+00 0.00 4.128691e+05 4.072470e+05 5622.11 NULL
2018 Dept Of Environment Protection *Custodial Assistant 37526.00000 3.752600e+04 2840.34 2.840340e+03 2840.340 98.00 1 2.840340e+03 2840.34 4.036634e+04 4.036634e+04 0.00 NULL
2018 Dept Of Environment Protection *First Asst Marine Engineer 77252.00000 3.090080e+05 71482.92 1.787073e+04 17516.335 1153.75 4 1.751633e+04 70065.34 3.804909e+05 3.790733e+05 1417.58 NULL
2018 Dept Of Environment Protection *Research Scientist 101642.00000 1.016420e+05 1497.75 1.497750e+03 1497.750 21.25 1 1.497750e+03 1497.75 1.031398e+05 1.031398e+05 0.00 NULL
2018 Dept Of Environment Protection Accountant 64847.62500 5.187810e+05 261.68 3.271000e+01 0.000 7.50 8 0.000000e+00 0.00 5.190427e+05 5.187810e+05 261.68 NULL
2018 Dept Of Environment Protection Adm Manager-Non-Mgrl From M1/M2 80683.34286 8.471751e+06 246082.59 2.343644e+03 0.000 4441.50 105 0.000000e+00 0.00 8.717834e+06 8.471751e+06 246082.59 NULL
2018 Dept Of Environment Protection Admin Community Relations Specialist 104872.25000 8.389780e+05 28786.24 3.598280e+03 194.105 533.50 8 1.941050e+02 1552.84 8.677642e+05 8.405308e+05 27233.40 NULL
2018 Dept Of Environment Protection Admin Dir Of Laboratory 101758.00000 2.035160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.035160e+05 2.035160e+05 0.00 NULL
2018 Dept Of Environment Protection Admin Housing Development Spec 119264.75000 4.770590e+05 45275.25 1.131881e+04 6924.265 533.50 4 6.924265e+03 27697.06 5.223342e+05 5.047561e+05 17578.19 NULL
2018 Dept Of Environment Protection Administrative Accountant 148930.50000 2.978610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.978610e+05 2.978610e+05 0.00 NULL
2018 Dept Of Environment Protection Administrative Architect 130086.00000 1.300860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300860e+05 1.300860e+05 0.00 NULL
2018 Dept Of Environment Protection Administrative City Planner 117609.68750 1.881755e+06 7407.52 4.629700e+02 0.000 124.00 16 0.000000e+00 0.00 1.889163e+06 1.881755e+06 7407.52 NULL
2018 Dept Of Environment Protection Administrative Construction Project Manager 127415.00000 1.274150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.274150e+05 1.274150e+05 0.00 NULL
2018 Dept Of Environment Protection Administrative Director Of Laboratory 133563.33333 2.003450e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 2.003450e+06 2.003450e+06 0.00 NULL
2018 Dept Of Environment Protection Administrative Engineer 128838.08333 3.246720e+07 344807.65 1.368284e+03 0.000 4705.00 252 0.000000e+00 0.00 3.281200e+07 3.246720e+07 344807.65 NULL
2018 Dept Of Environment Protection Administrative Horticulturist 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2018 Dept Of Environment Protection Administrative Landscape Architect 131051.00000 1.310510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.310510e+05 1.310510e+05 0.00 NULL
2018 Dept Of Environment Protection Administrative Manager 148462.25000 5.938490e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.938490e+05 5.938490e+05 0.00 NULL
2018 Dept Of Environment Protection Administrative Procurement Analyst 100137.72727 1.101515e+06 6644.08 6.040073e+02 0.000 85.50 11 0.000000e+00 0.00 1.108159e+06 1.101515e+06 6644.08 NULL
2018 Dept Of Environment Protection Administrative Project Manager 118089.67537 1.582402e+07 190620.17 1.422539e+03 0.000 2771.75 134 0.000000e+00 0.00 1.601464e+07 1.582402e+07 190620.17 NULL
2018 Dept Of Environment Protection Administrative Public Health Sanitarian 117132.70000 1.171327e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.171327e+06 1.171327e+06 0.00 NULL
2018 Dept Of Environment Protection Administrative Public Information Specialist 106262.62500 8.501010e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.501010e+05 8.501010e+05 0.00 NULL
2018 Dept Of Environment Protection Administrative Quality Assurance Specialist 105658.50000 2.113170e+05 364.00 1.820000e+02 182.000 6.50 2 1.820000e+02 364.00 2.116810e+05 2.116810e+05 0.00 NULL
2018 Dept Of Environment Protection Administrative Real Property Manager 127776.00000 2.555520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.555520e+05 2.555520e+05 0.00 NULL
2018 Dept Of Environment Protection Administrative Staff Analyst 112020.25000 1.344243e+07 220960.73 1.841339e+03 0.000 2659.75 120 0.000000e+00 0.00 1.366339e+07 1.344243e+07 220960.73 NULL
2018 Dept Of Environment Protection Administrative Storekeeper 109076.00000 2.181520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.181520e+05 2.181520e+05 0.00 NULL
2018 Dept Of Environment Protection Administrative Supervisor Of Building Maintenance 115000.00000 2.300000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.300000e+05 2.300000e+05 0.00 NULL
2018 Dept Of Environment Protection Agency Attorney 89825.17073 3.682832e+06 29405.11 7.171978e+02 0.000 460.00 41 0.000000e+00 0.00 3.712237e+06 3.682832e+06 29405.11 NULL
2018 Dept Of Environment Protection Agency Attorney Interne 60981.33333 1.829440e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.829440e+05 1.829440e+05 0.00 NULL
2018 Dept Of Environment Protection Air Pollution Inspector 44766.86667 2.014509e+06 396407.77 8.809062e+03 4821.250 10946.25 45 4.821250e+03 216956.25 2.410917e+06 2.231465e+06 179451.52 NULL
2018 Dept Of Environment Protection Apprentice 37492.72267 3.936736e+06 243508.65 2.319130e+03 1680.680 9029.25 105 1.680680e+03 176471.40 4.180245e+06 4.113207e+06 67037.25 NULL
2018 Dept Of Environment Protection Architect 94083.80000 4.704190e+05 1143.98 2.287960e+02 0.000 22.75 5 0.000000e+00 0.00 4.715630e+05 4.704190e+05 1143.98 NULL
2018 Dept Of Environment Protection Assistant Architect 68235.66667 4.094140e+05 11150.47 1.858412e+03 0.000 279.75 6 0.000000e+00 0.00 4.205645e+05 4.094140e+05 11150.47 NULL
2018 Dept Of Environment Protection Assistant Chemical Engineer 63878.10000 1.277562e+06 110577.18 5.528859e+03 102.520 2403.50 20 1.025200e+02 2050.40 1.388139e+06 1.279612e+06 108526.78 NULL
2018 Dept Of Environment Protection Assistant Civil Engineer 63943.53688 7.992942e+06 521731.41 4.173851e+03 735.300 11411.00 125 7.353000e+02 91912.50 8.514674e+06 8.084855e+06 429818.91 NULL
2018 Dept Of Environment Protection Assistant Commissioner 173600.00000 8.680000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.680000e+05 8.680000e+05 0.00 NULL
2018 Dept Of Environment Protection Assistant Electrical Engineer 65436.13889 2.355701e+06 107170.86 2.976968e+03 109.775 2498.75 36 1.097750e+02 3951.90 2.462872e+06 2.359653e+06 103218.96 NULL
2018 Dept Of Environment Protection Assistant Environmental Engineer 64227.86667 2.890254e+06 156875.09 3.486113e+03 219.660 3674.25 45 2.196600e+02 9884.70 3.047129e+06 2.900139e+06 146990.39 NULL
2018 Dept Of Environment Protection Assistant Landscape Architect 59067.00000 1.181340e+05 35.57 1.778500e+01 17.785 1.00 2 1.778500e+01 35.57 1.181696e+05 1.181696e+05 0.00 NULL
2018 Dept Of Environment Protection Assistant Mechanical Engineer 63756.25974 4.909232e+06 273610.03 3.553377e+03 225.810 6603.00 77 2.258100e+02 17387.37 5.182842e+06 4.926619e+06 256222.66 NULL
2018 Dept Of Environment Protection Assoc Water Use Inspector-Mgrl 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2018 Dept Of Environment Protection Associate Air Pollution Inspr 58044.41176 9.867550e+05 343125.47 2.018385e+04 21378.000 7396.50 17 2.018385e+04 343125.47 1.329880e+06 1.329880e+06 0.00 NULL
2018 Dept Of Environment Protection Associate Chemist 68112.29032 1.055740e+07 814825.57 5.256939e+03 489.890 21524.75 155 4.898900e+02 75932.95 1.137223e+07 1.063334e+07 738892.62 NULL
2018 Dept Of Environment Protection Associate Housing Development Specialist 87409.14286 6.118640e+05 40968.04 5.852577e+03 2563.140 653.75 7 2.563140e+03 17941.98 6.528320e+05 6.298060e+05 23026.06 NULL
2018 Dept Of Environment Protection Associate Investigator 64374.00000 1.287480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.287480e+05 1.287480e+05 0.00 NULL
2018 Dept Of Environment Protection Associate Laboratory Microbiologist 73078.08333 1.753874e+06 82380.61 3.432525e+03 711.205 1755.25 24 7.112050e+02 17068.92 1.836255e+06 1.770943e+06 65311.69 NULL
2018 Dept Of Environment Protection Associate Project Manager 81351.46241 2.074462e+07 746398.72 2.927054e+03 14.100 12558.25 255 1.410000e+01 3595.50 2.149102e+07 2.074822e+07 742803.22 NULL
2018 Dept Of Environment Protection Associate Public Health Sanitarian 74738.97222 2.690603e+06 71636.91 1.989914e+03 205.785 1249.00 36 2.057850e+02 7408.26 2.762240e+06 2.698011e+06 64228.65 NULL
2018 Dept Of Environment Protection Associate Public Records Officer 77400.00000 7.740000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.740000e+04 7.740000e+04 0.00 NULL
2018 Dept Of Environment Protection Associate Quality Assurance Specialist 72927.25000 2.917090e+05 280.38 7.009500e+01 0.000 7.00 4 0.000000e+00 0.00 2.919894e+05 2.917090e+05 280.38 NULL
2018 Dept Of Environment Protection Associate Staff Analyst 81907.89229 3.603947e+06 67415.50 1.532170e+03 0.000 1356.00 44 0.000000e+00 0.00 3.671363e+06 3.603947e+06 67415.50 NULL
2018 Dept Of Environment Protection Associate Water Use Inpector 63262.76364 3.479452e+06 559132.92 1.016605e+04 8523.150 11803.42 55 8.523150e+03 468773.25 4.038585e+06 3.948225e+06 90359.67 NULL
2018 Dept Of Environment Protection Auto Mechanic NA NA 74133.39 6.739399e+03 5347.910 1220.25 11 5.347910e+03 58827.01 NA NA NA NULL
2018 Dept Of Environment Protection Bricklayer NA NA 24543.57 1.227178e+04 12271.785 321.25 2 1.227178e+04 24543.57 NA NA NA NULL
2018 Dept Of Environment Protection Captain 87357.00000 7.862130e+05 194886.96 2.165411e+04 20775.880 2952.00 9 2.077588e+04 186982.92 9.811000e+05 9.731959e+05 7904.04 NULL
2018 Dept Of Environment Protection Carpenter NA NA 90320.21 1.129003e+04 10593.265 1070.25 8 1.059326e+04 84746.12 NA NA NA NULL
2018 Dept Of Environment Protection Certified It Administrator 109127.04348 2.509922e+06 158121.17 6.874833e+03 4955.150 2136.50 23 4.955150e+03 113968.45 2.668043e+06 2.623890e+06 44152.72 NULL
2018 Dept Of Environment Protection Certified It Developer 117800.00000 2.356000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.356000e+05 2.356000e+05 0.00 NULL
2018 Dept Of Environment Protection Chemical Engineer 82384.25000 3.295370e+05 8643.53 2.160883e+03 1426.740 165.75 4 1.426740e+03 5706.96 3.381805e+05 3.352440e+05 2936.57 NULL
2018 Dept Of Environment Protection Chemical Engineering Intern 52000.00000 5.200000e+04 113.84 1.138400e+02 113.840 4.00 1 1.138400e+02 113.84 5.211384e+04 5.211384e+04 0.00 NULL
2018 Dept Of Environment Protection Chief Marine Engineer 81527.00000 6.522160e+05 274827.81 3.435348e+04 36364.270 4434.00 8 3.435348e+04 274827.81 9.270438e+05 9.270438e+05 0.00 NULL
2018 Dept Of Environment Protection City Custodial Assistant 20205.04500 4.041009e+04 69.08 3.454000e+01 34.540 4.00 2 3.454000e+01 69.08 4.047917e+04 4.047917e+04 0.00 NULL
2018 Dept Of Environment Protection City Laborer NA NA 99928.92 7.137780e+03 2302.885 1677.50 14 2.302885e+03 32240.39 NA NA NA NULL
2018 Dept Of Environment Protection City Park Worker 13376.49259 1.538297e+06 34963.89 3.040338e+02 23.220 1507.25 115 2.322000e+01 2670.30 1.573261e+06 1.540967e+06 32293.59 NULL
2018 Dept Of Environment Protection City Planner 72432.22581 2.245399e+06 54702.87 1.764609e+03 0.000 1055.00 31 0.000000e+00 0.00 2.300102e+06 2.245399e+06 54702.87 NULL
2018 Dept Of Environment Protection City Planning Technician 38023.75000 1.520950e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.520950e+05 1.520950e+05 0.00 NULL
2018 Dept Of Environment Protection City Research Scientist 85001.33783 8.160128e+06 308440.50 3.212922e+03 0.000 6594.75 96 0.000000e+00 0.00 8.468569e+06 8.160128e+06 308440.50 NULL
2018 Dept Of Environment Protection City Seasonal Aide 11242.13125 8.993705e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.993705e+04 8.993705e+04 0.00 NULL
2018 Dept Of Environment Protection Civil Engineer 90294.75676 3.340906e+06 61387.08 1.659110e+03 0.000 965.25 37 0.000000e+00 0.00 3.402293e+06 3.340906e+06 61387.08 NULL
2018 Dept Of Environment Protection Civil Engineering Intern 52000.00000 5.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.200000e+04 5.200000e+04 0.00 NULL
2018 Dept Of Environment Protection Claim Specialist 44916.42857 3.144150e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.144150e+05 3.144150e+05 0.00 NULL
2018 Dept Of Environment Protection Clerical Aide 20439.76170 4.087952e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.087952e+04 4.087952e+04 0.00 NULL
2018 Dept Of Environment Protection Clerical Associate 38087.56765 1.272125e+07 558769.18 1.672962e+03 0.000 17752.98 334 0.000000e+00 0.00 1.328002e+07 1.272125e+07 558769.18 NULL
2018 Dept Of Environment Protection College Aide 9029.24739 3.340822e+05 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 3.340822e+05 3.340822e+05 0.00 NULL
2018 Dept Of Environment Protection Commissioner Of Environmental Protection 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Dept Of Environment Protection Community Assistant 34911.77040 6.633236e+05 5802.51 3.053953e+02 87.080 205.00 19 8.708000e+01 1654.52 6.691261e+05 6.649782e+05 4147.99 NULL
2018 Dept Of Environment Protection Community Associate 49997.70562 3.349846e+06 209491.04 3.126732e+03 492.620 5869.00 67 4.926200e+02 33005.54 3.559337e+06 3.382852e+06 176485.50 NULL
2018 Dept Of Environment Protection Community Coordinator 67071.42130 5.768142e+06 215393.19 2.504572e+03 131.870 4769.50 86 1.318700e+02 11340.82 5.983535e+06 5.779483e+06 204052.37 NULL
2018 Dept Of Environment Protection Community Service Aide 31883.40000 1.594170e+05 2122.21 4.244420e+02 336.440 91.25 5 3.364400e+02 1682.20 1.615392e+05 1.610992e+05 440.01 NULL
2018 Dept Of Environment Protection Computer Aide-Non-Spvr 51857.20000 5.185720e+05 61608.67 6.160867e+03 0.000 1446.25 10 0.000000e+00 0.00 5.801807e+05 5.185720e+05 61608.67 NULL
2018 Dept Of Environment Protection Computer Associate 75262.17682 4.967304e+06 171441.72 2.597602e+03 0.000 3689.47 66 0.000000e+00 0.00 5.138745e+06 4.967304e+06 171441.72 NULL
2018 Dept Of Environment Protection Computer Operations Manager 136576.00000 1.365760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.365760e+05 1.365760e+05 0.00 NULL
2018 Dept Of Environment Protection Computer Programmer Analyst 55244.95588 9.391642e+05 57406.65 3.376862e+03 411.740 1349.75 17 4.117400e+02 6999.58 9.965709e+05 9.461638e+05 50407.07 NULL
2018 Dept Of Environment Protection Computer Service Technician 51418.00000 1.028360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.028360e+05 1.028360e+05 0.00 NULL
2018 Dept Of Environment Protection Computer Specialist 97755.21826 8.406949e+06 288666.01 3.356582e+03 0.000 4535.75 86 0.000000e+00 0.00 8.695615e+06 8.406949e+06 288666.01 NULL
2018 Dept Of Environment Protection Computer Systems Manager 131011.09091 1.441122e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.441122e+06 1.441122e+06 0.00 NULL
2018 Dept Of Environment Protection Confidential Asst To The Executive Deputy Commissioner 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2018 Dept Of Environment Protection Construction Laborer NA NA 4311751.77 1.024169e+04 7082.320 49051.15 421 7.082320e+03 2981656.72 NA NA NA NULL
2018 Dept Of Environment Protection Construction Project Manager 72763.32500 2.910533e+06 248892.39 6.222310e+03 2062.745 4346.50 40 2.062745e+03 82509.80 3.159425e+06 2.993043e+06 166382.59 NULL
2018 Dept Of Environment Protection Construction Project Manager Intern 56012.00000 1.680360e+05 27921.81 9.307270e+03 6646.450 667.00 3 6.646450e+03 19939.35 1.959578e+05 1.879754e+05 7982.46 NULL
2018 Dept Of Environment Protection Counsel 209585.00000 2.095850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.095850e+05 2.095850e+05 0.00 NULL
2018 Dept Of Environment Protection Crane Operator Ampes NA NA 42094.22 2.104711e+04 21047.110 228.25 2 2.104711e+04 42094.22 NA NA NA NULL
2018 Dept Of Environment Protection Custodian 34173.10312 1.059366e+06 39194.28 1.264332e+03 149.390 1577.75 31 1.493900e+02 4631.09 1.098560e+06 1.063997e+06 34563.19 NULL
2018 Dept Of Environment Protection Customer Information Representative Ma L 1549 60080.64656 4.806452e+05 21176.51 2.647064e+03 461.865 530.72 8 4.618650e+02 3694.92 5.018217e+05 4.843401e+05 17481.59 NULL
2018 Dept Of Environment Protection Deputy Commissioner 207877.40000 1.039387e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.039387e+06 1.039387e+06 0.00 NULL
2018 Dept Of Environment Protection Director Of Noise Abatement 171431.00000 1.714310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.714310e+05 1.714310e+05 0.00 NULL
2018 Dept Of Environment Protection Director Of Technical Services 139031.00000 1.390310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.390310e+05 1.390310e+05 0.00 NULL
2018 Dept Of Environment Protection District Supervisor 94270.00000 2.168210e+06 800827.59 3.481859e+04 39413.320 10872.00 23 3.481859e+04 800827.59 2.969038e+06 2.969038e+06 0.00 NULL
2018 Dept Of Environment Protection Electrical Engineer 86942.77778 7.824850e+05 5680.07 6.311189e+02 0.000 92.00 9 0.000000e+00 0.00 7.881651e+05 7.824850e+05 5680.07 NULL
2018 Dept Of Environment Protection Electrical Engineering Intern 52000.00000 5.200000e+04 28.46 2.846000e+01 28.460 1.00 1 2.846000e+01 28.46 5.202846e+04 5.202846e+04 0.00 NULL
2018 Dept Of Environment Protection Electrician NA NA 1470923.99 1.838655e+04 16466.455 17697.50 80 1.646646e+04 1317316.40 NA NA NA NULL
2018 Dept Of Environment Protection Electrician’s Helper NA NA 424855.39 9.235987e+03 9753.865 8037.50 46 9.235987e+03 424855.39 NA NA NA NULL
2018 Dept Of Environment Protection Engineering Technician 48114.03333 4.330263e+06 780306.64 8.670074e+03 8198.010 22505.80 90 8.198010e+03 737820.90 5.110570e+06 5.068084e+06 42485.74 NULL
2018 Dept Of Environment Protection Environmental Engineer 94861.28571 6.640290e+05 39460.87 5.637267e+03 0.000 594.75 7 0.000000e+00 0.00 7.034899e+05 6.640290e+05 39460.87 NULL
2018 Dept Of Environment Protection Environmental Engineering Intern 52000.00000 4.160000e+05 11569.77 1.446221e+03 0.000 315.50 8 0.000000e+00 0.00 4.275698e+05 4.160000e+05 11569.77 NULL
2018 Dept Of Environment Protection Environmental Police Officer 60627.74123 1.382312e+07 915534.64 4.015503e+03 1246.595 24723.70 228 1.246595e+03 284223.66 1.473866e+07 1.410735e+07 631310.98 NULL
2018 Dept Of Environment Protection Environmental Police Officer-Managerial 131000.00000 1.310000e+06 8315.68 8.315680e+02 0.000 213.19 10 0.000000e+00 0.00 1.318316e+06 1.310000e+06 8315.68 NULL
2018 Dept Of Environment Protection Executive Agency Counsel 149942.76190 3.148798e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 3.148798e+06 3.148798e+06 0.00 NULL
2018 Dept Of Environment Protection Executive Program Specialist 136085.00000 4.082550e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.082550e+05 4.082550e+05 0.00 NULL
2018 Dept Of Environment Protection Forester 51250.00000 1.025000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.025000e+05 1.025000e+05 0.00 NULL
2018 Dept Of Environment Protection Gardener 49129.00000 6.386770e+05 27007.33 2.077487e+03 1016.050 707.00 13 1.016050e+03 13208.65 6.656843e+05 6.518857e+05 13798.68 NULL
2018 Dept Of Environment Protection Geologist 62354.93750 9.976790e+05 1441.22 9.007625e+01 0.000 34.75 16 0.000000e+00 0.00 9.991202e+05 9.976790e+05 1441.22 NULL
2018 Dept Of Environment Protection Graphic Artist 53366.00000 5.336600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.336600e+04 5.336600e+04 0.00 NULL
2018 Dept Of Environment Protection Industrial Hygienist 54968.58209 3.682895e+06 284808.54 4.250874e+03 482.930 8269.75 67 4.829300e+02 32356.31 3.967704e+06 3.715251e+06 252452.23 NULL
2018 Dept Of Environment Protection Instrumental Specialist 62903.60377 3.333891e+06 167270.07 3.156039e+03 1031.100 3665.75 53 1.031100e+03 54648.30 3.501161e+06 3.388539e+06 112621.77 NULL
2018 Dept Of Environment Protection Instrumental Specialist Trainee 38334.00000 1.150020e+05 361.40 1.204667e+02 0.000 13.00 3 0.000000e+00 0.00 1.153634e+05 1.150020e+05 361.40 NULL
2018 Dept Of Environment Protection Investigator 44409.00000 4.440900e+04 16833.67 1.683367e+04 16833.670 531.50 1 1.683367e+04 16833.67 6.124267e+04 6.124267e+04 0.00 NULL
2018 Dept Of Environment Protection Laboratory Associate 48879.00000 4.887900e+04 6283.60 6.283600e+03 6283.600 212.00 1 6.283600e+03 6283.60 5.516260e+04 5.516260e+04 0.00 NULL
2018 Dept Of Environment Protection Laboratory Helper 40792.60000 2.039630e+05 27897.63 5.579526e+03 7080.100 987.50 5 5.579526e+03 27897.63 2.318606e+05 2.318606e+05 0.00 NULL
2018 Dept Of Environment Protection Laboratory Microbiologist 54689.00000 6.015790e+05 10429.75 9.481591e+02 270.310 303.50 11 2.703100e+02 2973.41 6.120088e+05 6.045524e+05 7456.34 NULL
2018 Dept Of Environment Protection Landscape Architect 72535.00000 7.253500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.253500e+04 7.253500e+04 0.00 NULL
2018 Dept Of Environment Protection Landscape Architect Intern 55039.00000 5.503900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.503900e+04 5.503900e+04 0.00 NULL
2018 Dept Of Environment Protection Machinist NA NA 504715.58 8.554501e+03 6081.300 8021.75 59 6.081300e+03 358796.70 NA NA NA NULL
2018 Dept Of Environment Protection Machinist’s Helper NA NA 137967.76 8.622985e+03 6224.840 2422.25 16 6.224840e+03 99597.44 NA NA NA NULL
2018 Dept Of Environment Protection Management Auditor 71210.33333 2.136310e+05 864.56 2.881867e+02 0.000 5.50 3 0.000000e+00 0.00 2.144956e+05 2.136310e+05 864.56 NULL
2018 Dept Of Environment Protection Manager, Water Supply 131719.00000 1.317190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.317190e+05 1.317190e+05 0.00 NULL
2018 Dept Of Environment Protection Marine Electronics Technician 92729.00000 9.272900e+04 356.99 3.569900e+02 356.990 5.25 1 3.569900e+02 356.99 9.308599e+04 9.308599e+04 0.00 NULL
2018 Dept Of Environment Protection Marine Engineer 75171.20000 3.758560e+05 124152.01 2.483040e+04 20892.300 2136.25 5 2.089230e+04 104461.50 5.000080e+05 4.803175e+05 19690.51 NULL
2018 Dept Of Environment Protection Marine Oiler 64040.00000 5.123200e+05 160938.13 2.011727e+04 23555.470 3339.00 8 2.011727e+04 160938.13 6.732581e+05 6.732581e+05 0.00 NULL
2018 Dept Of Environment Protection Mariner 64040.00000 1.216760e+06 198996.54 1.047350e+04 8260.980 4188.25 19 8.260980e+03 156958.62 1.415757e+06 1.373719e+06 42037.92 NULL
2018 Dept Of Environment Protection Mate 71062.33333 1.065935e+06 241089.65 1.607264e+04 12374.510 4452.00 15 1.237451e+04 185617.65 1.307025e+06 1.251553e+06 55472.00 NULL
2018 Dept Of Environment Protection Mechanical Engineer 84253.00000 1.769313e+06 37357.87 1.778946e+03 368.810 626.00 21 3.688100e+02 7745.01 1.806671e+06 1.777058e+06 29612.86 NULL
2018 Dept Of Environment Protection Mechanical Engineering Intern 52000.00000 4.680000e+05 11085.81 1.231757e+03 85.380 329.00 9 8.538000e+01 768.42 4.790858e+05 4.687684e+05 10317.39 NULL
2018 Dept Of Environment Protection Motor Vehicle Operator 43826.22222 7.888720e+05 160988.13 8.943785e+03 7228.085 4692.88 18 7.228085e+03 130105.53 9.498601e+05 9.189775e+05 30882.60 NULL
2018 Dept Of Environment Protection Motor Vehicle Supervisor 55327.66667 1.659830e+05 17239.35 5.746450e+03 6029.520 408.00 3 5.746450e+03 17239.35 1.832224e+05 1.832224e+05 0.00 NULL
2018 Dept Of Environment Protection Oiler NA NA 724674.22 1.065697e+04 4762.995 8047.50 68 4.762995e+03 323883.66 NA NA NA NULL
2018 Dept Of Environment Protection Painter NA NA 23820.32 1.191016e+04 11910.160 356.00 2 1.191016e+04 23820.32 NA NA NA NULL
2018 Dept Of Environment Protection Paralegal Aide 39835.60000 1.991780e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.991780e+05 1.991780e+05 0.00 NULL
2018 Dept Of Environment Protection Photographer 57331.00000 5.733100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.733100e+04 5.733100e+04 0.00 NULL
2018 Dept Of Environment Protection Physicist 73036.00000 7.303600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.303600e+04 7.303600e+04 0.00 NULL
2018 Dept Of Environment Protection Plumber NA NA 232882.85 1.663449e+04 14852.955 2193.50 14 1.485295e+04 207941.37 NA NA NA NULL
2018 Dept Of Environment Protection Plumber’s Helper NA NA 105753.91 9.613992e+03 8712.150 1382.25 11 8.712150e+03 95833.65 NA NA NA NULL
2018 Dept Of Environment Protection Port Marine Engineer 93434.00000 1.868680e+05 31112.83 1.555642e+04 15556.415 471.25 2 1.555642e+04 31112.83 2.179808e+05 2.179808e+05 0.00 NULL
2018 Dept Of Environment Protection Principal Administrative Associate - Lev 1 & 2 Non Supvr 59232.12577 1.812503e+07 663509.25 2.168331e+03 0.000 15600.75 306 0.000000e+00 0.00 1.878854e+07 1.812503e+07 663509.25 NULL
2018 Dept Of Environment Protection Procurement Analyst 62501.16981 3.312562e+06 152839.69 2.883768e+03 0.000 3475.00 53 0.000000e+00 0.00 3.465402e+06 3.312562e+06 152839.69 NULL
2018 Dept Of Environment Protection Project Manager 63654.35000 1.273087e+06 26561.09 1.328054e+03 0.000 625.00 20 0.000000e+00 0.00 1.299648e+06 1.273087e+06 26561.09 NULL
2018 Dept Of Environment Protection Project Manager Intern# 53922.85714 7.549200e+05 23577.21 1.684086e+03 75.410 679.75 14 7.541000e+01 1055.74 7.784972e+05 7.559757e+05 22521.47 NULL
2018 Dept Of Environment Protection Public Health Epidemiologist 60330.00000 1.206600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.206600e+05 1.206600e+05 0.00 NULL
2018 Dept Of Environment Protection Public Health Sanitarian 56148.50000 7.860790e+05 18837.65 1.345546e+03 29.585 444.50 14 2.958500e+01 414.19 8.049167e+05 7.864932e+05 18423.46 NULL
2018 Dept Of Environment Protection Public Records Aide 40954.52625 3.276362e+05 19273.42 2.409177e+03 552.655 691.50 8 5.526550e+02 4421.24 3.469096e+05 3.320575e+05 14852.18 NULL
2018 Dept Of Environment Protection Public Records Officer 47202.00000 4.720200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.720200e+04 4.720200e+04 0.00 NULL
2018 Dept Of Environment Protection Quality Assurance Specialist 64890.00000 1.297800e+05 52382.52 2.619126e+04 26191.260 1138.75 2 2.619126e+04 52382.52 1.821625e+05 1.821625e+05 0.00 NULL
2018 Dept Of Environment Protection Quality Assurance Specialist Trainee 34853.00000 3.485300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.485300e+04 3.485300e+04 0.00 NULL
2018 Dept Of Environment Protection Radio Repair Mechanic NA NA 3714.90 3.714900e+03 3714.900 41.00 1 3.714900e+03 3714.90 NA NA NA NULL
2018 Dept Of Environment Protection Research Assistant 40030.27333 1.200908e+05 2165.37 7.217900e+02 458.660 62.00 3 4.586600e+02 1375.98 1.222562e+05 1.214668e+05 789.39 NULL
2018 Dept Of Environment Protection Scientist 62783.48718 4.897112e+06 144644.14 1.854412e+03 124.610 2968.75 78 1.246100e+02 9719.58 5.041756e+06 4.906832e+06 134924.56 NULL
2018 Dept Of Environment Protection Secretary 50282.87500 4.022630e+05 6410.29 8.012862e+02 0.000 174.00 8 0.000000e+00 0.00 4.086733e+05 4.022630e+05 6410.29 NULL
2018 Dept Of Environment Protection Secretary To The Exec Deputy Commissioner 54313.00000 5.431300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.431300e+04 5.431300e+04 0.00 NULL
2018 Dept Of Environment Protection Senior Sewage Treatment Worker NA NA 2424843.02 1.014579e+04 6798.220 34010.62 239 6.798220e+03 1624774.58 NA NA NA NULL
2018 Dept Of Environment Protection Senior Stationary Engineer NA NA 4753562.76 4.484493e+04 21318.880 21963.23 106 2.131888e+04 2259801.28 NA NA NA NULL
2018 Dept Of Environment Protection Sewage Treatment Worker NA NA 6852718.68 8.481087e+03 4780.480 108749.58 808 4.780480e+03 3862627.84 NA NA NA NULL
2018 Dept Of Environment Protection Staff Analyst 63382.32353 2.154999e+06 24597.18 7.234465e+02 0.000 549.75 34 0.000000e+00 0.00 2.179596e+06 2.154999e+06 24597.18 NULL
2018 Dept Of Environment Protection Staff Analyst Trainee 48427.33333 1.452820e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.452820e+05 1.452820e+05 0.00 NULL
2018 Dept Of Environment Protection Stationary Engineer NA NA 9097383.54 2.934640e+04 10593.730 60344.23 310 1.059373e+04 3284056.30 NA NA NA NULL
2018 Dept Of Environment Protection Stock Worker 34630.00000 1.038900e+05 6072.37 2.024123e+03 1089.740 268.75 3 1.089740e+03 3269.22 1.099624e+05 1.071592e+05 2803.15 NULL
2018 Dept Of Environment Protection Strategic Initiative Specialist 83494.00000 7.514460e+05 1359.49 1.510544e+02 0.000 34.00 9 0.000000e+00 0.00 7.528055e+05 7.514460e+05 1359.49 NULL
2018 Dept Of Environment Protection Summer College Intern 1531.26373 2.036581e+05 0.00 0.000000e+00 0.000 0.00 133 0.000000e+00 0.00 2.036581e+05 2.036581e+05 0.00 NULL
2018 Dept Of Environment Protection Summer Graduate Intern 1763.82684 4.409567e+04 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 4.409567e+04 4.409567e+04 0.00 NULL
2018 Dept Of Environment Protection Superintendent Of Water And Sewer Systems 126754.50000 2.281581e+06 5628.80 3.127111e+02 0.000 84.50 18 0.000000e+00 0.00 2.287210e+06 2.281581e+06 5628.80 NULL
2018 Dept Of Environment Protection Supervising Special Officer 51993.00000 5.199300e+04 17489.81 1.748981e+04 17489.810 457.25 1 1.748981e+04 17489.81 6.948281e+04 6.948281e+04 0.00 NULL
2018 Dept Of Environment Protection Supervisor 81101.97845 1.881566e+07 3530380.94 1.521716e+04 8782.140 49704.00 232 8.782140e+03 2037456.48 2.234604e+07 2.085312e+07 1492924.46 NULL
2018 Dept Of Environment Protection Supervisor Bricklayer NA NA 14944.93 1.494493e+04 14944.930 174.00 1 1.494493e+04 14944.93 NA NA NA NULL
2018 Dept Of Environment Protection Supervisor Carpenter NA NA 20619.18 1.030959e+04 10309.590 230.75 2 1.030959e+04 20619.18 NA NA NA NULL
2018 Dept Of Environment Protection Supervisor Electrician NA NA 789306.41 2.631021e+04 23186.675 8974.00 30 2.318667e+04 695600.25 NA NA NA NULL
2018 Dept Of Environment Protection Supervisor Of Mechanics 115368.00000 1.845888e+06 298104.08 1.863151e+04 13661.785 3195.50 16 1.366178e+04 218588.56 2.143992e+06 2.064477e+06 79515.52 NULL
2018 Dept Of Environment Protection Supervisor Of Motor Transport 66557.00000 6.655700e+04 44526.75 4.452675e+04 44526.750 903.25 1 4.452675e+04 44526.75 1.110838e+05 1.110838e+05 0.00 NULL
2018 Dept Of Environment Protection Supervisor Of Stock Workers 44255.64706 1.504692e+06 128669.69 3.784403e+03 1619.660 4246.50 34 1.619660e+03 55068.44 1.633362e+06 1.559760e+06 73601.25 NULL
2018 Dept Of Environment Protection Supervisor Painter NA NA 4710.33 2.355165e+03 2355.165 53.75 2 2.355165e+03 4710.33 NA NA NA NULL
2018 Dept Of Environment Protection Supervisor Plumber NA NA 123485.46 1.764078e+04 10178.320 1103.00 7 1.017832e+04 71248.24 NA NA NA NULL
2018 Dept Of Environment Protection Surveyor 71892.11111 6.470290e+05 343.90 3.821111e+01 0.000 9.00 9 0.000000e+00 0.00 6.473729e+05 6.470290e+05 343.90 NULL
2018 Dept Of Environment Protection Telecommunication Manager 137649.00000 1.376490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.376490e+05 1.376490e+05 0.00 NULL
2018 Dept Of Environment Protection Telecommunications Associate 76038.97107 8.364287e+05 93791.64 8.526513e+03 5521.180 1587.50 11 5.521180e+03 60732.98 9.302203e+05 8.971617e+05 33058.66 NULL
2018 Dept Of Environment Protection Water Use Inspector 42161.95082 2.571879e+06 260570.18 4.271642e+03 1464.750 8023.75 61 1.464750e+03 89349.75 2.832449e+06 2.661229e+06 171220.43 NULL
2018 Dept Of Environment Protection Watershed Maintainer 50533.20248 1.222904e+07 751192.84 3.104103e+03 1424.620 18692.57 242 1.424620e+03 344758.04 1.298023e+07 1.257379e+07 406434.80 NULL
2018 Dept Of Environment Protection Welder NA NA 47.76 4.776000e+01 47.760 0.50 1 4.776000e+01 47.76 NA NA NA NULL
2018 Dept Of Health/Mental Hygiene *Asist Systms Analyst 63416.50000 1.268330e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.268330e+05 1.268330e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene *Assist Coordinating Manager 50873.42857 3.561140e+05 2345.49 3.350700e+02 0.000 61.00 7 0.000000e+00 0.00 3.584595e+05 3.561140e+05 2345.49 NULL
2018 Dept Of Health/Mental Hygiene *Associate Executive Director 113907.00000 5.695350e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.695350e+05 5.695350e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene *Attorney At Law 112454.00000 2.249080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.249080e+05 2.249080e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene *Certified Local Area Network Administrator 94783.00000 9.478300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.478300e+04 9.478300e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene *Coordinating Manager 66656.25000 7.998750e+05 4741.91 3.951592e+02 0.000 85.50 12 0.000000e+00 0.00 8.046169e+05 7.998750e+05 4741.91 NULL
2018 Dept Of Health/Mental Hygiene *Custodial Assistant 39350.66667 1.180520e+05 10315.98 3.438660e+03 4924.540 341.58 3 3.438660e+03 10315.98 1.283680e+05 1.283680e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene *Director Of Health Care Program Planning/Analysis 98889.50000 3.955580e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.955580e+05 3.955580e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene *Senior Staff Officer 76215.00000 7.621500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.621500e+04 7.621500e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene *Senior Systems Analyst 61550.00000 1.231000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.231000e+05 1.231000e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene *Sr Management Consultant 88615.23077 1.151998e+06 674.74 5.190308e+01 0.000 16.00 13 0.000000e+00 0.00 1.152673e+06 1.151998e+06 674.74 NULL
2018 Dept Of Health/Mental Hygiene *Sr Systems Analyst - Edp 59301.00000 5.930100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.930100e+04 5.930100e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene *Supervisor 43722.23077 5.683890e+05 66315.00 5.101154e+03 1716.730 1786.00 13 1.716730e+03 22317.49 6.347040e+05 5.907065e+05 43997.51 NULL
2018 Dept Of Health/Mental Hygiene *Supvsng Systems Analyst 61788.33333 1.853650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.853650e+05 1.853650e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene *Systems Analyst 48697.61538 6.330690e+05 696.49 5.357615e+01 0.000 23.00 13 0.000000e+00 0.00 6.337655e+05 6.330690e+05 696.49 NULL
2018 Dept Of Health/Mental Hygiene Accountant 61462.22983 4.548205e+06 47512.24 6.420573e+02 0.000 1100.50 74 0.000000e+00 0.00 4.595717e+06 4.548205e+06 47512.24 NULL
2018 Dept Of Health/Mental Hygiene Adm Manager-Non-Mgrl From M1/M2 74705.72340 7.022338e+06 94301.07 1.003203e+03 0.000 2090.75 94 0.000000e+00 0.00 7.116639e+06 7.022338e+06 94301.07 NULL
2018 Dept Of Health/Mental Hygiene Admin Community Relations Specialist 77782.37143 2.722383e+06 29630.50 8.465857e+02 0.000 604.50 35 0.000000e+00 0.00 2.752014e+06 2.722383e+06 29630.50 NULL
2018 Dept Of Health/Mental Hygiene Admin Contract Specialist 107557.60526 4.087189e+06 292.06 7.685790e+00 0.000 0.00 38 0.000000e+00 0.00 4.087481e+06 4.087189e+06 292.06 NULL
2018 Dept Of Health/Mental Hygiene Administrative Accountant 126646.00000 2.532920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.532920e+05 2.532920e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Administrative Community Relations Specialist 177501.00000 3.550020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.550020e+05 3.550020e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Administrative Consultant 102271.50000 2.045430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.045430e+05 2.045430e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Administrative Director Of Social Services 98980.50000 3.959220e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.959220e+05 3.959220e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Administrative Investigator 84935.00000 2.548050e+05 312.24 1.040800e+02 0.000 8.00 3 0.000000e+00 0.00 2.551172e+05 2.548050e+05 312.24 NULL
2018 Dept Of Health/Mental Hygiene Administrative Labor Relations Analyst 114090.25000 4.563610e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.563610e+05 4.563610e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Administrative Management Auditor 108119.50000 6.487170e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.487170e+05 6.487170e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Administrative Manager 124488.66667 3.734660e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.734660e+05 3.734660e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Administrative Printing Services Manager 127276.00000 1.272760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.272760e+05 1.272760e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Administrative Procurement Analyst 89639.61538 1.165315e+06 1546.44 1.189569e+02 0.000 17.50 13 0.000000e+00 0.00 1.166861e+06 1.165315e+06 1546.44 NULL
2018 Dept Of Health/Mental Hygiene Administrative Psychologist 185400.00000 1.854000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.854000e+05 1.854000e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Administrative Public Health Nurse 106212.24242 3.505004e+06 2606.20 7.897576e+01 0.000 59.00 33 0.000000e+00 0.00 3.507610e+06 3.505004e+06 2606.20 NULL
2018 Dept Of Health/Mental Hygiene Administrative Public Health Sanitarian 125208.61538 1.627712e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.627712e+06 1.627712e+06 0.00 NULL
2018 Dept Of Health/Mental Hygiene Administrative Public Information Specialist 92695.32000 2.317383e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 2.317383e+06 2.317383e+06 0.00 NULL
2018 Dept Of Health/Mental Hygiene Administrative Quality Assurance Specialist 118456.60000 5.922830e+05 -60.19 -1.203800e+01 0.000 0.00 5 -1.203800e+01 -60.19 5.922228e+05 5.922228e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Administrative Space Analyst 136842.00000 1.368420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.368420e+05 1.368420e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Administrative Staff Analyst 97650.38137 1.757707e+07 57675.84 3.204213e+02 0.000 851.50 180 0.000000e+00 0.00 1.763474e+07 1.757707e+07 57675.84 NULL
2018 Dept Of Health/Mental Hygiene Administrative Storekeeper 79000.00000 2.370000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.370000e+05 2.370000e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Administrative Supervisor Of Building Maintenance 88541.85714 6.197930e+05 724.50 1.035000e+02 0.000 14.00 7 0.000000e+00 0.00 6.205175e+05 6.197930e+05 724.50 NULL
2018 Dept Of Health/Mental Hygiene Agency Attorney 87676.55556 3.156356e+06 149.67 4.157500e+00 0.000 4.00 36 0.000000e+00 0.00 3.156506e+06 3.156356e+06 149.67 NULL
2018 Dept Of Health/Mental Hygiene Agency Attorney Interne 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Agency Chief Contracting Officer 149685.00000 1.496850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.496850e+05 1.496850e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Agency Deputy Medical Director 158755.00000 7.937750e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.937750e+05 7.937750e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Agency Medical Director 179203.84615 4.659300e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 4.659300e+06 4.659300e+06 0.00 NULL
2018 Dept Of Health/Mental Hygiene Architect 103727.00000 4.149080e+05 17530.96 4.382740e+03 0.000 204.50 4 0.000000e+00 0.00 4.324390e+05 4.149080e+05 17530.96 NULL
2018 Dept Of Health/Mental Hygiene Assistant Architect 68590.50000 2.743620e+05 204.12 5.103000e+01 0.000 0.00 4 0.000000e+00 0.00 2.745661e+05 2.743620e+05 204.12 NULL
2018 Dept Of Health/Mental Hygiene Assistant Commissioner 178277.00000 1.782770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.782770e+05 1.782770e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Assistant Printing Press Operator 39433.58500 1.183008e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.183008e+05 1.183008e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Associate Chemist 65858.75000 2.634350e+05 2.83 7.075000e-01 0.365 0.00 4 3.650000e-01 1.46 2.634378e+05 2.634365e+05 1.37 NULL
2018 Dept Of Health/Mental Hygiene Associate Contract Specialist 60803.61167 3.648217e+05 2945.80 4.909667e+02 0.000 56.25 6 0.000000e+00 0.00 3.677675e+05 3.648217e+05 2945.80 NULL
2018 Dept Of Health/Mental Hygiene Associate Investigator 63803.00000 1.276060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.276060e+05 1.276060e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Associate Labor Relations Analyst 80794.50000 1.615890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.615890e+05 1.615890e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Associate Laboratory Microbiologist 72037.58824 3.673917e+06 51656.38 1.012870e+03 0.000 1333.25 51 0.000000e+00 0.00 3.725573e+06 3.673917e+06 51656.38 NULL
2018 Dept Of Health/Mental Hygiene Associate Project Manager 100787.50000 2.015750e+05 172.39 8.619500e+01 86.195 0.00 2 8.619500e+01 172.39 2.017474e+05 2.017474e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Associate Public Health Sanitarian 69485.56061 9.172094e+06 340618.59 2.580444e+03 189.025 7629.75 132 1.890250e+02 24951.30 9.512713e+06 9.197045e+06 315667.29 NULL
2018 Dept Of Health/Mental Hygiene Associate Public Information Specialist 66420.00000 1.328400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.328400e+05 1.328400e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Associate Staff Analyst 81637.15044 3.510397e+06 6488.00 1.508837e+02 0.000 130.25 43 0.000000e+00 0.00 3.516885e+06 3.510397e+06 6488.00 NULL
2018 Dept Of Health/Mental Hygiene Asst Commissioner 185000.00000 1.850000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.850000e+05 1.850000e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Asst Pb Hlth Adv 30241.86019 2.116930e+05 162.49 2.321286e+01 0.000 8.00 7 0.000000e+00 0.00 2.118555e+05 2.116930e+05 162.49 NULL
2018 Dept Of Health/Mental Hygiene Bookbinder 43251.00000 4.325100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.325100e+04 4.325100e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Bookkeeper 57949.33333 3.476960e+05 4719.81 7.866350e+02 22.580 117.00 6 2.258000e+01 135.48 3.524158e+05 3.478315e+05 4584.33 NULL
2018 Dept Of Health/Mental Hygiene Business Promotion Coordinator 84975.00000 8.497500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.497500e+04 8.497500e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Call Center Representative 40561.00000 4.056100e+04 2195.07 2.195070e+03 2195.070 74.25 1 2.195070e+03 2195.07 4.275607e+04 4.275607e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Carpenter NA NA 5037.88 5.037880e+03 5037.880 50.50 1 5.037880e+03 5037.88 NA NA NA NULL
2018 Dept Of Health/Mental Hygiene Caseworker 45424.50000 9.084900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.084900e+04 9.084900e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Certified It Administrator 93381.90571 1.961020e+06 104140.40 4.959067e+03 0.000 1337.75 21 0.000000e+00 0.00 2.065160e+06 1.961020e+06 104140.40 NULL
2018 Dept Of Health/Mental Hygiene Certified It Developer 95486.40000 1.909728e+06 2361.06 1.180530e+02 0.000 36.00 20 0.000000e+00 0.00 1.912089e+06 1.909728e+06 2361.06 NULL
2018 Dept Of Health/Mental Hygiene Chief City Medical Examiner 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene City Clinician 100651.36353 1.409119e+06 31883.50 2.277393e+03 359.775 415.00 14 3.597750e+02 5036.85 1.441003e+06 1.414156e+06 26846.65 NULL
2018 Dept Of Health/Mental Hygiene City Custodial Assistant 32460.62407 2.174862e+06 85344.75 1.273802e+03 647.240 3384.00 67 6.472400e+02 43365.08 2.260207e+06 2.218227e+06 41979.67 NULL
2018 Dept Of Health/Mental Hygiene City Dentist 73360.00000 7.336000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.336000e+04 7.336000e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene City Laborer NA NA 193867.37 1.140396e+04 7538.300 3464.75 17 7.538300e+03 128151.10 NA NA NA NULL
2018 Dept Of Health/Mental Hygiene City Medical Examiner 195012.52941 6.630426e+06 32529.36 9.567459e+02 0.000 286.25 34 0.000000e+00 0.00 6.662955e+06 6.630426e+06 32529.36 NULL
2018 Dept Of Health/Mental Hygiene City Medical Specialist 102604.50894 1.364640e+07 116147.98 8.732931e+02 0.000 1308.75 133 0.000000e+00 0.00 1.376255e+07 1.364640e+07 116147.98 NULL
2018 Dept Of Health/Mental Hygiene City Mortuary Technician 41232.68966 1.195748e+06 226229.30 7.801010e+03 2679.160 6731.00 29 2.679160e+03 77695.64 1.421977e+06 1.273444e+06 148533.66 NULL
2018 Dept Of Health/Mental Hygiene City Pest Control Aide 27387.22684 9.037785e+05 7135.20 2.162182e+02 0.000 345.13 33 0.000000e+00 0.00 9.109137e+05 9.037785e+05 7135.20 NULL
2018 Dept Of Health/Mental Hygiene City Research Scientist 83331.48597 6.024866e+07 28005.12 3.873461e+01 0.000 671.50 723 0.000000e+00 0.00 6.027667e+07 6.024866e+07 28005.12 NULL
2018 Dept Of Health/Mental Hygiene City Veterinarian 32991.43000 1.319657e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.319657e+05 1.319657e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Civil Engineer 86238.00000 8.623800e+04 37.59 3.759000e+01 37.590 0.00 1 3.759000e+01 37.59 8.627559e+04 8.627559e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Clerical Aide 29002.79000 2.610251e+05 863.80 9.597778e+01 0.000 50.00 9 0.000000e+00 0.00 2.618889e+05 2.610251e+05 863.80 NULL
2018 Dept Of Health/Mental Hygiene Clerical Associate 41119.29502 8.306098e+06 301412.83 1.492143e+03 0.000 9305.75 202 0.000000e+00 0.00 8.607510e+06 8.306098e+06 301412.83 NULL
2018 Dept Of Health/Mental Hygiene College Aide 6053.89150 1.501365e+06 0.00 0.000000e+00 0.000 0.00 248 0.000000e+00 0.00 1.501365e+06 1.501365e+06 0.00 NULL
2018 Dept Of Health/Mental Hygiene College Aide - Assignment Levels Ii And Iii 10039.47810 7.027635e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.027635e+04 7.027635e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Commissioner Of Health 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Community Assistant 35423.54139 2.267107e+06 32943.50 5.147422e+02 0.000 1341.00 64 0.000000e+00 0.00 2.300050e+06 2.267107e+06 32943.50 NULL
2018 Dept Of Health/Mental Hygiene Community Associate 44827.43274 1.882752e+06 62085.34 1.478222e+03 0.000 1808.00 42 0.000000e+00 0.00 1.944838e+06 1.882752e+06 62085.34 NULL
2018 Dept Of Health/Mental Hygiene Community Coordinator 62933.41672 1.793602e+07 163352.32 5.731660e+02 0.000 3728.50 285 0.000000e+00 0.00 1.809938e+07 1.793602e+07 163352.32 NULL
2018 Dept Of Health/Mental Hygiene Community Service Aide 31401.87500 2.512150e+05 18702.00 2.337750e+03 0.000 895.25 8 0.000000e+00 0.00 2.699170e+05 2.512150e+05 18702.00 NULL
2018 Dept Of Health/Mental Hygiene Computer Aide-Non-Spvr 47528.02302 1.140673e+06 38157.12 1.589880e+03 200.550 1167.00 24 2.005500e+02 4813.20 1.178830e+06 1.145486e+06 33343.92 NULL
2018 Dept Of Health/Mental Hygiene Computer Associate 68058.40925 4.900205e+06 83551.58 1.160439e+03 0.000 1768.00 72 0.000000e+00 0.00 4.983757e+06 4.900205e+06 83551.58 NULL
2018 Dept Of Health/Mental Hygiene Computer Operations Manager 109623.50000 2.192470e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.192470e+05 2.192470e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Computer Programmer Analyst 63074.44444 5.676700e+05 1603.38 1.781533e+02 0.000 46.75 9 0.000000e+00 0.00 5.692734e+05 5.676700e+05 1603.38 NULL
2018 Dept Of Health/Mental Hygiene Computer Programmer Analyst Trainee 38188.00000 3.818800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.818800e+04 3.818800e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Computer Service Technician 45599.19505 1.094381e+06 17977.09 7.490454e+02 0.000 464.50 24 0.000000e+00 0.00 1.112358e+06 1.094381e+06 17977.09 NULL
2018 Dept Of Health/Mental Hygiene Computer Specialist 99480.51923 5.172987e+06 5986.51 1.151252e+02 0.000 80.75 52 0.000000e+00 0.00 5.178974e+06 5.172987e+06 5986.51 NULL
2018 Dept Of Health/Mental Hygiene Computer Systems Manager 105789.44762 1.110789e+07 0.00 0.000000e+00 0.000 0.00 105 0.000000e+00 0.00 1.110789e+07 1.110789e+07 0.00 NULL
2018 Dept Of Health/Mental Hygiene Confidential Strategy Planner 80532.00000 4.026600e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.026600e+05 4.026600e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Construction Project Manager 98654.00000 9.865400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.865400e+04 9.865400e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Consultant 70216.05479 5.125772e+06 117197.73 1.605448e+03 158.170 2410.25 73 1.581700e+02 11546.41 5.242970e+06 5.137318e+06 105651.32 NULL
2018 Dept Of Health/Mental Hygiene Consultant Public Health Nurse 78429.00000 7.842900e+04 0.06 6.000000e-02 0.060 0.00 1 6.000000e-02 0.06 7.842906e+04 7.842906e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Contract Specialist 59782.69231 7.771750e+05 3187.83 2.452177e+02 0.000 119.50 13 0.000000e+00 0.00 7.803628e+05 7.771750e+05 3187.83 NULL
2018 Dept Of Health/Mental Hygiene Counsel 206165.00000 2.061650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.061650e+05 2.061650e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Counselor 74805.00000 2.992200e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.992200e+05 2.992200e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Criminalist 69228.21695 1.779165e+07 852983.62 3.319002e+03 283.290 16796.75 257 2.832900e+02 72805.53 1.864464e+07 1.786446e+07 780178.09 NULL
2018 Dept Of Health/Mental Hygiene Criminalist Assistant Director Of Laboratory 124871.56250 1.997945e+06 1587.58 9.922375e+01 0.000 21.00 16 0.000000e+00 0.00 1.999533e+06 1.997945e+06 1587.58 NULL
2018 Dept Of Health/Mental Hygiene Criminalist Deputy Director Of Labatory 173359.00000 3.467180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.467180e+05 3.467180e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Criminalist Director Of Laboratory 149477.33333 4.484320e+05 14.85 4.950000e+00 0.000 0.00 3 0.000000e+00 0.00 4.484468e+05 4.484320e+05 14.85 NULL
2018 Dept Of Health/Mental Hygiene Custodian 37443.40984 5.990946e+05 38925.06 2.432816e+03 2117.015 1305.25 16 2.117015e+03 33872.24 6.380196e+05 6.329668e+05 5052.82 NULL
2018 Dept Of Health/Mental Hygiene Customer Information Representative Ma L 1549 40488.88146 4.858666e+05 33280.34 2.773362e+03 1264.600 1355.75 12 1.264600e+03 15175.20 5.191469e+05 5.010418e+05 18105.14 NULL
2018 Dept Of Health/Mental Hygiene Deputy Chief City Medical Examiner 224749.00000 4.494980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.494980e+05 4.494980e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Deputy Commissioner 211346.00000 6.340380e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.340380e+05 6.340380e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Deputy Commissioner For Administation 187160.00000 1.871600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.871600e+05 1.871600e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Deputy Director Of Emergency Management 120374.00000 1.203740e+05 7257.96 7.257960e+03 7257.960 114.25 1 7.257960e+03 7257.96 1.276320e+05 1.276320e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Deputy Director Of Medicolegal Investigations 122601.75000 4.904070e+05 16277.08 4.069270e+03 0.000 345.00 4 0.000000e+00 0.00 5.066841e+05 4.904070e+05 16277.08 NULL
2018 Dept Of Health/Mental Hygiene Director 115792.80000 5.789640e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.789640e+05 5.789640e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Director Of Biodetection And Response 98000.00000 9.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.800000e+04 9.800000e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Director Of Community Engagement And Response 130000.00000 1.300000e+05 23.39 2.339000e+01 23.390 0.00 1 2.339000e+01 23.39 1.300234e+05 1.300234e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Director Of Crisis Assistance And Training 101000.00000 1.010000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.010000e+05 1.010000e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Director Of Forensic Biology 202337.00000 2.023370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.023370e+05 2.023370e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Director Of Interagency Planning 114542.00000 1.145420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.145420e+05 1.145420e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Director Of Nyc Medical Reserve Corps 96525.00000 9.652500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.652500e+04 9.652500e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Director Of Public Health Emergency Planning 91612.00000 9.161200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.161200e+04 9.161200e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Director Of Public Relations 122500.00000 2.450000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.450000e+05 2.450000e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Director Of Security 96330.00000 9.633000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.633000e+04 9.633000e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Electrician NA NA 20048.73 2.864104e+03 679.450 244.50 7 6.794500e+02 4756.15 NA NA NA NULL
2018 Dept Of Health/Mental Hygiene Engineering Work Study Trainee 38157.00000 3.815700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.815700e+04 3.815700e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Environmental Health Technician 37062.71429 2.594390e+05 76.63 1.094714e+01 0.000 3.50 7 0.000000e+00 0.00 2.595156e+05 2.594390e+05 76.63 NULL
2018 Dept Of Health/Mental Hygiene Evidence And Property Control Specialist 59287.95745 2.786534e+06 587634.15 1.250285e+04 2877.100 12298.50 47 2.877100e+03 135223.70 3.374168e+06 2.921758e+06 452410.45 NULL
2018 Dept Of Health/Mental Hygiene Executive Agency Counsel 134604.25000 1.615251e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.615251e+06 1.615251e+06 0.00 NULL
2018 Dept Of Health/Mental Hygiene Executive Assistant 82400.00000 8.240000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.240000e+04 8.240000e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Executive Program Specialist 159366.00000 3.187320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.187320e+05 3.187320e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Executive Secretary 52821.42940 5.282143e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.282143e+04 5.282143e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Exterminator 39382.93439 1.299637e+06 54310.20 1.645764e+03 15.910 1679.75 33 1.591000e+01 525.03 1.353947e+06 1.300162e+06 53785.17 NULL
2018 Dept Of Health/Mental Hygiene Family Pub Health Nurse 82688.66102 4.878631e+06 1473.74 2.497864e+01 0.000 34.00 59 0.000000e+00 0.00 4.880105e+06 4.878631e+06 1473.74 NULL
2018 Dept Of Health/Mental Hygiene Forensic Mortuary Technician 52230.83673 2.559311e+06 832564.09 1.699110e+04 10665.660 21227.66 49 1.066566e+04 522617.34 3.391875e+06 3.081928e+06 309946.75 NULL
2018 Dept Of Health/Mental Hygiene Forensic Mortuary Technician-Coord Of Mortuary Services 86082.00000 8.608200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.608200e+04 8.608200e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Graphic Artist 49598.80000 2.479940e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.479940e+05 2.479940e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Health Care Prog Plan/Analyst 55448.00000 4.990320e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.990320e+05 4.990320e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Health Services Manager 104916.51379 3.042579e+07 1099.24 3.790483e+00 0.000 15.25 290 0.000000e+00 0.00 3.042689e+07 3.042579e+07 1099.24 NULL
2018 Dept Of Health/Mental Hygiene Institutional Aide 36365.39059 6.182116e+05 317548.90 1.867935e+04 21163.540 11286.25 17 1.867935e+04 317548.90 9.357605e+05 9.357605e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Investigator 60596.40000 3.029820e+05 459.73 9.194600e+01 0.000 18.25 5 0.000000e+00 0.00 3.034417e+05 3.029820e+05 459.73 NULL
2018 Dept Of Health/Mental Hygiene It Infrastructure Engineer 97621.50000 1.952430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.952430e+05 1.952430e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene It Project Specialist 79961.62500 3.198465e+05 1749.79 4.374475e+02 0.000 31.75 4 0.000000e+00 0.00 3.215963e+05 3.198465e+05 1749.79 NULL
2018 Dept Of Health/Mental Hygiene It Security Specialist 113300.00000 1.133000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133000e+05 1.133000e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene It Service Management Specialist 88451.75000 3.538070e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.538070e+05 3.538070e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Jr Phnurse 33531.58890 1.646401e+07 588334.82 1.198238e+03 0.330 14175.50 491 3.300000e-01 162.03 1.705234e+07 1.646417e+07 588172.79 NULL
2018 Dept Of Health/Mental Hygiene Junior Public Health Nurse 60373.02371 1.147087e+06 23510.28 1.237383e+03 58.220 395.75 19 5.822000e+01 1106.18 1.170598e+06 1.148194e+06 22404.10 NULL
2018 Dept Of Health/Mental Hygiene Laboratory Associate 45050.13310 2.252507e+06 49570.31 9.914062e+02 0.000 1721.00 50 0.000000e+00 0.00 2.302077e+06 2.252507e+06 49570.31 NULL
2018 Dept Of Health/Mental Hygiene Laboratory Helper 38625.30769 5.021290e+05 3293.61 2.533546e+02 0.000 149.50 13 0.000000e+00 0.00 5.054226e+05 5.021290e+05 3293.61 NULL
2018 Dept Of Health/Mental Hygiene Laboratory Microbiologist 54722.42136 2.407787e+06 2010.41 4.569114e+01 0.000 65.00 44 0.000000e+00 0.00 2.409797e+06 2.407787e+06 2010.41 NULL
2018 Dept Of Health/Mental Hygiene Legal Secretarial Assistant Al 2,3,4 Only 62513.00000 6.251300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.251300e+04 6.251300e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Machinist NA NA 732.42 1.831050e+02 209.510 14.00 4 1.831050e+02 732.42 NA NA NA NULL
2018 Dept Of Health/Mental Hygiene Maintenance Worker NA NA 109237.72 7.802694e+03 3409.320 2538.75 14 3.409320e+03 47730.48 NA NA NA NULL
2018 Dept Of Health/Mental Hygiene Management Auditor 75212.76923 9.777660e+05 507.26 3.902000e+01 0.000 13.50 13 0.000000e+00 0.00 9.782733e+05 9.777660e+05 507.26 NULL
2018 Dept Of Health/Mental Hygiene Mechanical Engineer 73245.00000 7.324500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.324500e+04 7.324500e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Medical Investigator 30557.16000 9.167148e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.167148e+04 9.167148e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Medical Record Librarian 53982.00000 5.398200e+04 35280.97 3.528097e+04 35280.970 792.50 1 3.528097e+04 35280.97 8.926297e+04 8.926297e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Medical Specialist 64699.21750 1.940977e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.940977e+05 1.940977e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Medicolegal Investigator 87743.69733 2.983286e+06 408864.28 1.202542e+04 9375.515 5492.01 34 9.375515e+03 318767.51 3.392150e+06 3.302053e+06 90096.77 NULL
2018 Dept Of Health/Mental Hygiene Motor Vehicle Operator 45971.85782 1.792902e+06 299435.69 7.677838e+03 2341.380 7818.50 39 2.341380e+03 91313.82 2.092338e+06 1.884216e+06 208121.87 NULL
2018 Dept Of Health/Mental Hygiene Motor Vehicle Supervisor 54979.50000 2.199180e+05 41464.92 1.036623e+04 9474.295 1016.00 4 9.474295e+03 37897.18 2.613829e+05 2.578152e+05 3567.74 NULL
2018 Dept Of Health/Mental Hygiene Nurse Practicioner 98902.47846 1.285732e+06 26060.94 2.004688e+03 2668.760 441.25 13 2.004688e+03 26060.94 1.311793e+06 1.311793e+06 0.00 NULL
2018 Dept Of Health/Mental Hygiene Nurse’s Aide 39050.50000 7.810100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.810100e+04 7.810100e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Nutritionist 67789.00000 8.134680e+05 0.44 3.666670e-02 0.000 0.00 12 0.000000e+00 0.00 8.134684e+05 8.134680e+05 0.44 NULL
2018 Dept Of Health/Mental Hygiene Office Machine Aide 41289.33333 2.477360e+05 9820.76 1.636793e+03 0.000 389.50 6 0.000000e+00 0.00 2.575568e+05 2.477360e+05 9820.76 NULL
2018 Dept Of Health/Mental Hygiene Oiler NA NA 149968.56 4.998952e+04 51093.580 1598.75 3 4.998952e+04 149968.56 NA NA NA NULL
2018 Dept Of Health/Mental Hygiene Paralegal Aide 46906.40000 2.345320e+05 1674.04 3.348080e+02 0.000 79.00 5 0.000000e+00 0.00 2.362060e+05 2.345320e+05 1674.04 NULL
2018 Dept Of Health/Mental Hygiene Peer Counselor 34960.00000 3.496000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.496000e+04 3.496000e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Photographer 46806.00000 9.361200e+04 16572.32 8.286160e+03 8286.160 522.50 2 8.286160e+03 16572.32 1.101843e+05 1.101843e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Physicist 80624.00000 8.062400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.062400e+04 8.062400e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Plumber NA NA 4673.42 4.673420e+03 4673.420 45.25 1 4.673420e+03 4673.42 NA NA NA NULL
2018 Dept Of Health/Mental Hygiene Poison Information Specialist 93369.57044 2.240870e+06 10229.98 4.262492e+02 0.000 142.00 24 0.000000e+00 0.00 2.251100e+06 2.240870e+06 10229.98 NULL
2018 Dept Of Health/Mental Hygiene Principal Administrative Associate - Lev 1 & 2 Non Supvr 57396.06684 1.463600e+07 129313.36 5.071112e+02 0.000 3410.00 255 0.000000e+00 0.00 1.476531e+07 1.463600e+07 129313.36 NULL
2018 Dept Of Health/Mental Hygiene Printing Press Operator NA NA 5806.70 1.161340e+03 0.000 94.00 5 0.000000e+00 0.00 NA NA NA NULL
2018 Dept Of Health/Mental Hygiene Procurement Analyst 64206.52034 5.457554e+06 51077.30 6.009094e+02 0.000 1167.25 85 0.000000e+00 0.00 5.508632e+06 5.457554e+06 51077.30 NULL
2018 Dept Of Health/Mental Hygiene Psychiatrist 73042.85583 2.191286e+05 7662.54 2.554180e+03 0.000 97.50 3 0.000000e+00 0.00 2.267911e+05 2.191286e+05 7662.54 NULL
2018 Dept Of Health/Mental Hygiene Public Health Adviser 38170.07687 2.198596e+07 115080.00 1.997917e+02 0.000 3611.00 576 0.000000e+00 0.00 2.210104e+07 2.198596e+07 115080.00 NULL
2018 Dept Of Health/Mental Hygiene Public Health Assistant 26316.41857 4.552740e+06 30154.23 1.743019e+02 0.000 1438.50 173 0.000000e+00 0.00 4.582895e+06 4.552740e+06 30154.23 NULL
2018 Dept Of Health/Mental Hygiene Public Health Educator 60297.66667 4.522325e+06 2173.54 2.898053e+01 0.000 45.75 75 0.000000e+00 0.00 4.524499e+06 4.522325e+06 2173.54 NULL
2018 Dept Of Health/Mental Hygiene Public Health Emergency Preparedness Specialist 75386.05556 1.356949e+06 59856.96 3.325387e+03 0.000 905.75 18 0.000000e+00 0.00 1.416806e+06 1.356949e+06 59856.96 NULL
2018 Dept Of Health/Mental Hygiene Public Health Epidemiologist 63568.05556 3.432675e+06 575.21 1.065204e+01 0.000 14.00 54 0.000000e+00 0.00 3.433250e+06 3.432675e+06 575.21 NULL
2018 Dept Of Health/Mental Hygiene Public Health Nurse 39087.49874 2.888566e+07 885484.19 1.198219e+03 0.100 20320.75 739 1.000000e-01 73.90 2.977115e+07 2.888574e+07 885410.29 NULL
2018 Dept Of Health/Mental Hygiene Public Health Sanitarian 52608.68286 1.841304e+07 540441.56 1.544119e+03 0.000 13087.64 350 0.000000e+00 0.00 1.895348e+07 1.841304e+07 540441.56 NULL
2018 Dept Of Health/Mental Hygiene Public Health/Preventive Medicine Resident 75561.40000 3.778070e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.778070e+05 3.778070e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Public Records Aide 38129.08629 1.182002e+06 14671.99 4.732900e+02 30.300 539.50 31 3.030000e+01 939.30 1.196674e+06 1.182941e+06 13732.69 NULL
2018 Dept Of Health/Mental Hygiene Public Records Officer 47202.00000 4.720200e+04 1161.46 1.161460e+03 1161.460 28.00 1 1.161460e+03 1161.46 4.836346e+04 4.836346e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Research Assistant 58614.00000 1.172280e+05 0.04 2.000000e-02 0.020 0.00 2 2.000000e-02 0.04 1.172280e+05 1.172280e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Scientist 58597.43077 3.808833e+06 41790.08 6.429243e+02 63.670 712.50 65 6.367000e+01 4138.55 3.850623e+06 3.812972e+06 37651.53 NULL
2018 Dept Of Health/Mental Hygiene Secretary 45588.30853 2.188239e+06 38008.88 7.918517e+02 0.000 930.75 48 0.000000e+00 0.00 2.226248e+06 2.188239e+06 38008.88 NULL
2018 Dept Of Health/Mental Hygiene Senior Consultant 82400.00000 8.240000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.240000e+04 8.240000e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Senior It Architect 100000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Senior Medical Specialist 57115.28250 1.142306e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.142306e+05 1.142306e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Senior Mental Health Worker 40916.83333 2.455010e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.455010e+05 2.455010e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Senior Photographer 55621.20000 2.781060e+05 21290.99 4.258198e+03 3229.760 643.25 5 3.229760e+03 16148.80 2.993970e+05 2.942548e+05 5142.19 NULL
2018 Dept Of Health/Mental Hygiene Senior Stationary Engineer NA NA 117648.44 5.882422e+04 58824.220 1080.00 2 5.882422e+04 117648.44 NA NA NA NULL
2018 Dept Of Health/Mental Hygiene Social Worker 59639.45312 3.816925e+06 11700.17 1.828152e+02 0.000 356.75 64 0.000000e+00 0.00 3.828625e+06 3.816925e+06 11700.17 NULL
2018 Dept Of Health/Mental Hygiene Space Analyst 77485.00000 1.549700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.549700e+05 1.549700e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Spec Consultant 77044.43333 1.155666e+06 -8.65 -5.766667e-01 0.000 0.00 15 -5.766667e-01 -8.65 1.155658e+06 1.155658e+06 0.00 NULL
2018 Dept Of Health/Mental Hygiene Special Advisor To The Mayor For Health Services 118333.33333 3.550000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.550000e+05 3.550000e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Special Consultant 66292.91005 1.252936e+07 4569.97 2.417974e+01 0.000 88.25 189 0.000000e+00 0.00 1.253393e+07 1.252936e+07 4569.97 NULL
2018 Dept Of Health/Mental Hygiene Special Officer 38081.52542 2.246810e+06 248524.04 4.212272e+03 1874.840 8125.80 59 1.874840e+03 110615.56 2.495334e+06 2.357426e+06 137908.48 NULL
2018 Dept Of Health/Mental Hygiene Sr Healthcare Prog Plan Anlyst 61462.01263 4.671113e+06 719.68 9.469474e+00 0.000 20.00 76 0.000000e+00 0.00 4.671833e+06 4.671113e+06 719.68 NULL
2018 Dept Of Health/Mental Hygiene Staff Analyst 67407.73667 2.022232e+06 3035.67 1.011890e+02 0.000 65.75 30 0.000000e+00 0.00 2.025268e+06 2.022232e+06 3035.67 NULL
2018 Dept Of Health/Mental Hygiene Staff Analyst Trainee 19618.50000 3.923700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.923700e+04 3.923700e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Stationary Engineer NA NA 1022874.62 4.649430e+04 35718.435 10525.00 22 3.571843e+04 785805.57 NA NA NA NULL
2018 Dept Of Health/Mental Hygiene Statistician 52521.00000 5.252100e+04 73.20 7.320000e+01 73.200 2.75 1 7.320000e+01 73.20 5.259420e+04 5.259420e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Steam Fitter NA NA 4620.00 4.620000e+03 4620.000 42.50 1 4.620000e+03 4620.00 NA NA NA NULL
2018 Dept Of Health/Mental Hygiene Stock Worker 36573.64286 5.120310e+05 19155.72 1.368266e+03 0.000 789.00 14 0.000000e+00 0.00 5.311867e+05 5.120310e+05 19155.72 NULL
2018 Dept Of Health/Mental Hygiene Strategic Initiative Specialist 87153.33333 2.614600e+05 3192.16 1.064053e+03 0.000 103.25 3 0.000000e+00 0.00 2.646522e+05 2.614600e+05 3192.16 NULL
2018 Dept Of Health/Mental Hygiene Summer College Intern 2771.66500 1.662999e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.662999e+04 1.662999e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Summer Graduate Intern 4184.98831 1.632145e+05 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 1.632145e+05 1.632145e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Supervising Computer Service Technician 72678.75000 2.907150e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.907150e+05 2.907150e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Supervising Public Health Adviser 59567.82350 6.135486e+06 96735.09 9.391756e+02 0.000 2337.50 103 0.000000e+00 0.00 6.232221e+06 6.135486e+06 96735.09 NULL
2018 Dept Of Health/Mental Hygiene Supervising Special Officer 54093.87500 8.655020e+05 180422.96 1.127643e+04 9447.745 4487.50 16 9.447745e+03 151163.92 1.045925e+06 1.016666e+06 29259.04 NULL
2018 Dept Of Health/Mental Hygiene Supervisor 47339.93750 7.574390e+05 27075.27 1.692204e+03 0.000 576.75 16 0.000000e+00 0.00 7.845143e+05 7.574390e+05 27075.27 NULL
2018 Dept Of Health/Mental Hygiene Supervisor Electrician NA NA 50143.95 1.671465e+04 5606.410 568.75 3 5.606410e+03 16819.23 NA NA NA NULL
2018 Dept Of Health/Mental Hygiene Supervisor I Social Work 68831.00000 1.376620e+05 688.15 3.440750e+02 344.075 17.75 2 3.440750e+02 688.15 1.383501e+05 1.383501e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Supervisor Ii Social Work 76366.84615 9.927690e+05 10531.97 8.101515e+02 0.000 179.50 13 0.000000e+00 0.00 1.003301e+06 9.927690e+05 10531.97 NULL
2018 Dept Of Health/Mental Hygiene Supervisor Iii Social Work 82565.00000 2.476950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.476950e+05 2.476950e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Supervisor Of Mechanical Installations & Maintenance 86480.66667 2.594420e+05 29819.51 9.939837e+03 12255.120 431.75 3 9.939837e+03 29819.51 2.892615e+05 2.892615e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Supervisor Of Mechanics 103295.00000 1.032950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.032950e+05 1.032950e+05 0.00 NULL
2018 Dept Of Health/Mental Hygiene Supervisor Of Motor Transport 59153.37500 4.732270e+05 138974.61 1.737183e+04 13536.530 3187.50 8 1.353653e+04 108292.24 6.122016e+05 5.815192e+05 30682.37 NULL
2018 Dept Of Health/Mental Hygiene Supervisor Of Office Machine Operations 39485.00000 3.948500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.948500e+04 3.948500e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Supervisor Of Stock Workers 52552.00000 2.102080e+05 5441.05 1.360263e+03 981.685 145.75 4 9.816850e+02 3926.74 2.156490e+05 2.141347e+05 1514.31 NULL
2018 Dept Of Health/Mental Hygiene Telecommunications Associate 75302.00000 7.530200e+04 3707.97 3.707970e+03 3707.970 54.25 1 3.707970e+03 3707.97 7.900997e+04 7.900997e+04 0.00 NULL
2018 Dept Of Health/Mental Hygiene Thermostat Repairer NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2018 Dept Of Health/Mental Hygiene X-Ray Technician 56729.00000 5.672900e+05 29940.79 2.994079e+03 805.905 789.50 10 8.059050e+02 8059.05 5.972308e+05 5.753491e+05 21881.74 NULL
2018 Dept Of Info Tech & Telecomm *Certified Database Administrator 129877.50000 2.597550e+05 6410.45 3.205225e+03 3205.225 166.25 2 3.205225e+03 6410.45 2.661655e+05 2.661655e+05 0.00 NULL
2018 Dept Of Info Tech & Telecomm *Certified Local Area Network Administrator 91465.00000 9.146500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.146500e+04 9.146500e+04 0.00 NULL
2018 Dept Of Info Tech & Telecomm Accountant 76000.00000 7.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.600000e+04 7.600000e+04 0.00 NULL
2018 Dept Of Info Tech & Telecomm Adm Manager-Non-Mgrl From M1/M2 83748.18919 3.098683e+06 25707.38 6.947941e+02 0.000 485.75 37 0.000000e+00 0.00 3.124390e+06 3.098683e+06 25707.38 NULL
2018 Dept Of Info Tech & Telecomm Admin Construction Project Manager 137248.00000 1.372480e+05 2366.34 2.366340e+03 2366.340 22.00 1 2.366340e+03 2366.34 1.396143e+05 1.396143e+05 0.00 NULL
2018 Dept Of Info Tech & Telecomm Administrative Business Promotion Coordinator 123629.21739 2.843472e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 2.843472e+06 2.843472e+06 0.00 NULL
2018 Dept Of Info Tech & Telecomm Administrative Community Relations Specialist 214541.00000 2.145410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.145410e+05 2.145410e+05 0.00 NULL
2018 Dept Of Info Tech & Telecomm Administrative Construction Project Manager 133278.66667 3.998360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.998360e+05 3.998360e+05 0.00 NULL
2018 Dept Of Info Tech & Telecomm Administrative Manager 161121.66667 4.833650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.833650e+05 4.833650e+05 0.00 NULL
2018 Dept Of Info Tech & Telecomm Administrative Procurement Analyst 101545.60000 1.523184e+06 60.58 4.038667e+00 0.000 0.00 15 0.000000e+00 0.00 1.523245e+06 1.523184e+06 60.58 NULL
2018 Dept Of Info Tech & Telecomm Administrative Project Manager 96000.00000 9.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.600000e+04 9.600000e+04 0.00 NULL
2018 Dept Of Info Tech & Telecomm Administrative Public Information Specialist 115853.85714 1.621954e+06 413.96 2.956857e+01 0.000 3.25 14 0.000000e+00 0.00 1.622368e+06 1.621954e+06 413.96 NULL
2018 Dept Of Info Tech & Telecomm Administrative Real Property Manager 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2018 Dept Of Info Tech & Telecomm Administrative Staff Analyst 113220.48387 7.019670e+06 4348.64 7.013935e+01 0.000 100.00 62 0.000000e+00 0.00 7.024019e+06 7.019670e+06 4348.64 NULL
2018 Dept Of Info Tech & Telecomm Agency Attorney 98541.88889 8.868770e+05 1039.41 1.154900e+02 0.000 22.50 9 0.000000e+00 0.00 8.879164e+05 8.868770e+05 1039.41 NULL
2018 Dept Of Info Tech & Telecomm Agency Attorney Interne 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2018 Dept Of Info Tech & Telecomm Agency Chief Contracting Officer 137248.00000 1.372480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.372480e+05 1.372480e+05 0.00 NULL
2018 Dept Of Info Tech & Telecomm Associate Call Center Representative-Non-Spvr 61223.48077 3.183621e+06 24403.18 4.692919e+02 0.000 529.75 52 0.000000e+00 0.00 3.208024e+06 3.183621e+06 24403.18 NULL
2018 Dept Of Info Tech & Telecomm Associate Inspector 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2018 Dept Of Info Tech & Telecomm Associate Investigator 54756.00000 5.475600e+04 4069.06 4.069060e+03 4069.060 117.00 1 4.069060e+03 4069.06 5.882506e+04 5.882506e+04 0.00 NULL
2018 Dept Of Info Tech & Telecomm Associate Labor Relations Analyst 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2018 Dept Of Info Tech & Telecomm Associate Staff Analyst 90198.16667 5.411890e+05 668.45 1.114083e+02 0.000 13.50 6 0.000000e+00 0.00 5.418574e+05 5.411890e+05 668.45 NULL
2018 Dept Of Info Tech & Telecomm Business Promotion Coordinator 64093.73333 9.614060e+05 5125.44 3.416960e+02 0.000 113.00 15 0.000000e+00 0.00 9.665314e+05 9.614060e+05 5125.44 NULL
2018 Dept Of Info Tech & Telecomm Call Center Representative 35586.72697 1.081836e+07 152940.46 5.030936e+02 0.000 5783.42 304 0.000000e+00 0.00 1.097131e+07 1.081836e+07 152940.46 NULL
2018 Dept Of Info Tech & Telecomm Certified It Administrator 108783.09848 1.435937e+07 425911.58 3.226603e+03 53.070 5737.00 132 5.307000e+01 7005.24 1.478528e+07 1.436637e+07 418906.34 NULL
2018 Dept Of Info Tech & Telecomm Certified It Developer 106772.53846 1.388043e+06 4.86 3.738462e-01 0.000 0.00 13 0.000000e+00 0.00 1.388048e+06 1.388043e+06 4.86 NULL
2018 Dept Of Info Tech & Telecomm City Research Scientist 90425.00000 9.042500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.042500e+04 9.042500e+04 0.00 NULL
2018 Dept Of Info Tech & Telecomm Clerical Aide 38226.00000 3.822600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.822600e+04 3.822600e+04 0.00 NULL
2018 Dept Of Info Tech & Telecomm Clerical Associate 47909.82360 1.197746e+06 6003.29 2.401316e+02 0.000 196.75 25 0.000000e+00 0.00 1.203749e+06 1.197746e+06 6003.29 NULL
2018 Dept Of Info Tech & Telecomm College Aide 3475.34583 2.085208e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.085208e+04 2.085208e+04 0.00 NULL
2018 Dept Of Info Tech & Telecomm Commissioner Of Dept Of Info Technology & Telecommunications 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Dept Of Info Tech & Telecomm Community Assistant 34871.00000 3.487100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.487100e+04 3.487100e+04 0.00 NULL
2018 Dept Of Info Tech & Telecomm Community Associate 47107.19053 2.214038e+06 8665.49 1.843721e+02 0.000 273.75 47 0.000000e+00 0.00 2.222703e+06 2.214038e+06 8665.49 NULL
2018 Dept Of Info Tech & Telecomm Community Coordinator 68494.36842 1.301393e+06 34651.66 1.823772e+03 0.000 631.00 19 0.000000e+00 0.00 1.336045e+06 1.301393e+06 34651.66 NULL
2018 Dept Of Info Tech & Telecomm Computer Aide-Non-Spvr 47514.72727 5.226620e+05 4692.76 4.266145e+02 191.580 136.50 11 1.915800e+02 2107.38 5.273548e+05 5.247694e+05 2585.38 NULL
2018 Dept Of Info Tech & Telecomm Computer Associate 73453.08235 1.248702e+07 617449.96 3.632059e+03 523.300 11131.75 170 5.233000e+02 88961.00 1.310447e+07 1.257598e+07 528488.96 NULL
2018 Dept Of Info Tech & Telecomm Computer Operations Manager 121052.75000 3.389477e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 3.389477e+06 3.389477e+06 0.00 NULL
2018 Dept Of Info Tech & Telecomm Computer Programmer Analyst 58548.08333 7.025770e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.025770e+05 7.025770e+05 0.00 NULL
2018 Dept Of Info Tech & Telecomm Computer Programmer Analyst Trainee 43916.00000 8.783200e+04 93.91 4.695500e+01 46.955 2.50 2 4.695500e+01 93.91 8.792591e+04 8.792591e+04 0.00 NULL
2018 Dept Of Info Tech & Telecomm Computer Service Technician 50339.50000 1.006790e+05 6827.85 3.413925e+03 3413.925 148.25 2 3.413925e+03 6827.85 1.075069e+05 1.075069e+05 0.00 NULL
2018 Dept Of Info Tech & Telecomm Computer Specialist 106046.39444 1.908835e+07 197146.46 1.095258e+03 0.000 2476.75 180 0.000000e+00 0.00 1.928550e+07 1.908835e+07 197146.46 NULL
2018 Dept Of Info Tech & Telecomm Computer Systems Manager 130034.45091 3.575947e+07 1871.91 6.806946e+00 0.000 34.50 275 0.000000e+00 0.00 3.576135e+07 3.575947e+07 1871.91 NULL
2018 Dept Of Info Tech & Telecomm Confidential Strategy Planner 61634.66667 1.849040e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.849040e+05 1.849040e+05 0.00 NULL
2018 Dept Of Info Tech & Telecomm Customer Information Representative Ma L 1549 79833.33333 2.395000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.395000e+05 2.395000e+05 0.00 NULL
2018 Dept Of Info Tech & Telecomm Deputy Commissioner 169460.00000 3.389200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.389200e+05 3.389200e+05 0.00 NULL
2018 Dept Of Info Tech & Telecomm Deputy Commissioner Of It 218183.00000 4.363660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.363660e+05 4.363660e+05 0.00 NULL
2018 Dept Of Info Tech & Telecomm Director Of Television 56213.50000 1.124270e+05 9077.74 4.538870e+03 4538.870 193.00 2 4.538870e+03 9077.74 1.215047e+05 1.215047e+05 0.00 NULL
2018 Dept Of Info Tech & Telecomm Economist 54967.00000 5.496700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.496700e+04 5.496700e+04 0.00 NULL
2018 Dept Of Info Tech & Telecomm Executive Agency Counsel 136201.30000 1.362013e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.362013e+06 1.362013e+06 0.00 NULL
2018 Dept Of Info Tech & Telecomm Film Manager 69671.00000 6.967100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.967100e+04 6.967100e+04 0.00 NULL
2018 Dept Of Info Tech & Telecomm Graphic Artist 57266.00000 1.717980e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.717980e+05 1.717980e+05 0.00 NULL
2018 Dept Of Info Tech & Telecomm Inspector 49112.50000 9.822500e+04 83.92 4.196000e+01 41.960 3.00 2 4.196000e+01 83.92 9.830892e+04 9.830892e+04 0.00 NULL
2018 Dept Of Info Tech & Telecomm Investigator 51723.00000 5.172300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.172300e+04 5.172300e+04 0.00 NULL
2018 Dept Of Info Tech & Telecomm It Automation And Monitoring Engineer 112338.20000 5.616910e+05 7356.34 1.471268e+03 0.000 59.50 5 0.000000e+00 0.00 5.690473e+05 5.616910e+05 7356.34 NULL
2018 Dept Of Info Tech & Telecomm It Infrastructure Engineer 112416.66667 6.745000e+05 290.78 4.846333e+01 0.000 4.25 6 0.000000e+00 0.00 6.747908e+05 6.745000e+05 290.78 NULL
2018 Dept Of Info Tech & Telecomm It Project Specialist 94771.57143 1.326802e+06 9403.22 6.716586e+02 0.000 154.50 14 0.000000e+00 0.00 1.336205e+06 1.326802e+06 9403.22 NULL
2018 Dept Of Info Tech & Telecomm It Security Specialist 131214.28571 1.837000e+06 13536.55 9.668964e+02 0.000 140.00 14 0.000000e+00 0.00 1.850537e+06 1.837000e+06 13536.55 NULL
2018 Dept Of Info Tech & Telecomm Office Machine Aide 44465.00000 4.446500e+04 12175.19 1.217519e+04 12175.190 387.00 1 1.217519e+04 12175.19 5.664019e+04 5.664019e+04 0.00 NULL
2018 Dept Of Info Tech & Telecomm Principal Administrative Associate - Lev 1 & 2 Non Supvr 64764.77778 1.165766e+06 46857.65 2.603203e+03 0.000 926.25 18 0.000000e+00 0.00 1.212624e+06 1.165766e+06 46857.65 NULL
2018 Dept Of Info Tech & Telecomm Procurement Analyst 69742.00000 1.394840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.394840e+05 1.394840e+05 0.00 NULL
2018 Dept Of Info Tech & Telecomm Program Producer 69884.75000 8.386170e+05 13761.82 1.146818e+03 0.000 258.50 12 0.000000e+00 0.00 8.523788e+05 8.386170e+05 13761.82 NULL
2018 Dept Of Info Tech & Telecomm Project Manager 61532.00000 6.153200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.153200e+04 6.153200e+04 0.00 NULL
2018 Dept Of Info Tech & Telecomm Quality Assurance Specialist Trainee 37080.00000 7.416000e+04 8432.62 4.216310e+03 4216.310 317.50 2 4.216310e+03 8432.62 8.259262e+04 8.259262e+04 0.00 NULL
2018 Dept Of Info Tech & Telecomm Radio And Television Operator 50760.93621 1.472067e+06 69852.70 2.408714e+03 1010.450 1773.25 29 1.010450e+03 29303.05 1.541920e+06 1.501370e+06 40549.65 NULL
2018 Dept Of Info Tech & Telecomm Secretary 58181.00000 5.818100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.818100e+04 5.818100e+04 0.00 NULL
2018 Dept Of Info Tech & Telecomm Secretary Of Commissioner 69594.00000 1.391880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.391880e+05 1.391880e+05 0.00 NULL
2018 Dept Of Info Tech & Telecomm Secretary To The Deputy Commissioner 70000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2018 Dept Of Info Tech & Telecomm Senior It Architect 141666.66667 4.250000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.250000e+05 4.250000e+05 0.00 NULL
2018 Dept Of Info Tech & Telecomm Staff Analyst 60866.42857 8.521300e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 8.521300e+05 8.521300e+05 0.00 NULL
2018 Dept Of Info Tech & Telecomm Staff Analyst Trainee 48116.72727 5.292840e+05 1102.88 1.002618e+02 0.000 42.00 11 0.000000e+00 0.00 5.303869e+05 5.292840e+05 1102.88 NULL
2018 Dept Of Info Tech & Telecomm Statistician 55638.00000 5.563800e+04 1705.33 1.705330e+03 1705.330 56.00 1 1.705330e+03 1705.33 5.734333e+04 5.734333e+04 0.00 NULL
2018 Dept Of Info Tech & Telecomm Summer College Intern 1906.69697 6.292100e+04 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 6.292100e+04 6.292100e+04 0.00 NULL
2018 Dept Of Info Tech & Telecomm Summer Graduate Intern 1411.93500 2.823870e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.823870e+03 2.823870e+03 0.00 NULL
2018 Dept Of Info Tech & Telecomm Supervisor Of Office Machine Operations 47916.00000 9.583200e+04 10311.60 5.155800e+03 5155.800 290.50 2 5.155800e+03 10311.60 1.061436e+05 1.061436e+05 0.00 NULL
2018 Dept Of Info Tech & Telecomm Supervisor Of Radio And Television Operators 78515.71429 5.496100e+05 5997.61 8.568014e+02 0.000 123.00 7 0.000000e+00 0.00 5.556076e+05 5.496100e+05 5997.61 NULL
2018 Dept Of Info Tech & Telecomm Telecommunication Manager 119155.28571 1.668174e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.668174e+06 1.668174e+06 0.00 NULL
2018 Dept Of Info Tech & Telecomm Telecommunications Associate 70397.32692 3.660661e+06 64739.97 1.244999e+03 0.000 1130.25 52 0.000000e+00 0.00 3.725401e+06 3.660661e+06 64739.97 NULL
2018 Dept Of Parks & Recreation *Principal Park Supervisor 80521.50000 1.610430e+05 6343.81 3.171905e+03 3171.905 103.25 2 3.171905e+03 6343.81 1.673868e+05 1.673868e+05 0.00 NULL
2018 Dept Of Parks & Recreation Accountant 74760.00000 1.495200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.495200e+05 1.495200e+05 0.00 NULL
2018 Dept Of Parks & Recreation Adm Manager-Non-Mgrl From M1/M2 72523.17109 5.004099e+06 148912.41 2.158151e+03 0.000 2631.75 69 0.000000e+00 0.00 5.153011e+06 5.004099e+06 148912.41 NULL
2018 Dept Of Parks & Recreation Admin Community Relations Specialist 88245.38452 6.883140e+06 311566.61 3.994444e+03 524.545 5127.00 78 5.245450e+02 40914.51 7.194707e+06 6.924055e+06 270652.10 NULL
2018 Dept Of Parks & Recreation Admin Landmarks Preservationist 101070.50000 2.021410e+05 12681.35 6.340675e+03 6340.675 186.50 2 6.340675e+03 12681.35 2.148224e+05 2.148224e+05 0.00 NULL
2018 Dept Of Parks & Recreation Administrative Architect 125682.75000 5.027310e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.027310e+05 5.027310e+05 0.00 NULL
2018 Dept Of Parks & Recreation Administrative City Planner 103056.66667 6.183400e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.183400e+05 6.183400e+05 0.00 NULL
2018 Dept Of Parks & Recreation Administrative Community Relations Specialist 128058.33333 3.841750e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.841750e+05 3.841750e+05 0.00 NULL
2018 Dept Of Parks & Recreation Administrative Construction Project Manager 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2018 Dept Of Parks & Recreation Administrative Engineer 115362.00000 2.307240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.307240e+05 2.307240e+05 0.00 NULL
2018 Dept Of Parks & Recreation Administrative Horticulturist 82224.32609 3.782319e+06 4268.08 9.278435e+01 0.000 108.50 46 0.000000e+00 0.00 3.786587e+06 3.782319e+06 4268.08 NULL
2018 Dept Of Parks & Recreation Administrative Landscape Architect 122325.00000 2.446500e+05 1933.20 9.666000e+02 966.600 33.75 2 9.666000e+02 1933.20 2.465832e+05 2.465832e+05 0.00 NULL
2018 Dept Of Parks & Recreation Administrative Management Auditor 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2018 Dept Of Parks & Recreation Administrative Manager 125649.25000 5.025970e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.025970e+05 5.025970e+05 0.00 NULL
2018 Dept Of Parks & Recreation Administrative Parks & Recreation Manager 89135.24679 4.724168e+06 99302.80 1.873638e+03 26.030 1535.75 53 2.603000e+01 1379.59 4.823471e+06 4.725548e+06 97923.21 NULL
2018 Dept Of Parks & Recreation Administrative Project Manager 110630.27829 3.872060e+06 22752.75 6.500786e+02 0.000 343.50 35 0.000000e+00 0.00 3.894812e+06 3.872060e+06 22752.75 NULL
2018 Dept Of Parks & Recreation Administrative Public Information Specialist 124135.00000 3.724050e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.724050e+05 3.724050e+05 0.00 NULL
2018 Dept Of Parks & Recreation Administrative Staff Analyst 95658.79019 8.130997e+06 246510.80 2.900127e+03 0.000 3786.50 85 0.000000e+00 0.00 8.377508e+06 8.130997e+06 246510.80 NULL
2018 Dept Of Parks & Recreation Administrative Supervisor Of Building Maintenance 112278.66667 3.368360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.368360e+05 3.368360e+05 0.00 NULL
2018 Dept Of Parks & Recreation Agency Attorney 82989.75267 1.244846e+06 9463.58 6.309053e+02 0.000 159.75 15 0.000000e+00 0.00 1.254310e+06 1.244846e+06 9463.58 NULL
2018 Dept Of Parks & Recreation Agency Chief Contracting Officer 134525.00000 2.690500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.690500e+05 2.690500e+05 0.00 NULL
2018 Dept Of Parks & Recreation Architect 94380.45455 1.038185e+06 1185.87 1.078064e+02 0.000 20.75 11 0.000000e+00 0.00 1.039371e+06 1.038185e+06 1185.87 NULL
2018 Dept Of Parks & Recreation Assistant Architect 68034.66667 2.041040e+05 1102.75 3.675833e+02 471.260 22.00 3 3.675833e+02 1102.75 2.052068e+05 2.052068e+05 0.00 NULL
2018 Dept Of Parks & Recreation Assistant Civil Engineer 69386.58333 8.326390e+05 37551.47 3.129289e+03 65.070 695.25 12 6.507000e+01 780.84 8.701905e+05 8.334198e+05 36770.63 NULL
2018 Dept Of Parks & Recreation Assistant Commissioner 151000.00000 3.020000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.020000e+05 3.020000e+05 0.00 NULL
2018 Dept Of Parks & Recreation Assistant Electrical Engineer 72784.75000 2.911390e+05 4259.46 1.064865e+03 323.170 75.50 4 3.231700e+02 1292.68 2.953985e+05 2.924317e+05 2966.78 NULL
2018 Dept Of Parks & Recreation Assistant Environmental Engineer 72535.00000 1.450700e+05 19963.20 9.981600e+03 9981.600 356.50 2 9.981600e+03 19963.20 1.650332e+05 1.650332e+05 0.00 NULL
2018 Dept Of Parks & Recreation Assistant Landscape Architect 61791.72112 2.595252e+06 28149.31 6.702217e+02 0.000 603.50 42 0.000000e+00 0.00 2.623402e+06 2.595252e+06 28149.31 NULL
2018 Dept Of Parks & Recreation Assistant Mechanical Engineer 67293.80000 3.364690e+05 5805.27 1.161054e+03 17.010 106.50 5 1.701000e+01 85.05 3.422743e+05 3.365540e+05 5720.22 NULL
2018 Dept Of Parks & Recreation Assistant To The Commissioner Of Parks And Recreation 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2018 Dept Of Parks & Recreation Associate Fraud Investigator 88000.00000 8.800000e+04 21765.08 2.176508e+04 21765.080 386.25 1 2.176508e+04 21765.08 1.097651e+05 1.097651e+05 0.00 NULL
2018 Dept Of Parks & Recreation Associate Labor Relations Analyst 79625.00000 1.592500e+05 21352.73 1.067636e+04 10676.365 374.25 2 1.067636e+04 21352.73 1.806027e+05 1.806027e+05 0.00 NULL
2018 Dept Of Parks & Recreation Associate Park Service Worker 43052.46266 1.528362e+07 1677995.65 4.726748e+03 2203.160 41557.85 355 2.203160e+03 782121.80 1.696162e+07 1.606575e+07 895873.85 NULL
2018 Dept Of Parks & Recreation Associate Project Manager 80288.93276 7.868315e+06 241651.08 2.465827e+03 181.580 4091.50 98 1.815800e+02 17794.84 8.109966e+06 7.886110e+06 223856.24 NULL
2018 Dept Of Parks & Recreation Associate Quality Assurance Specialist 77081.50000 1.541630e+05 21878.71 1.093935e+04 10939.355 422.50 2 1.093935e+04 21878.71 1.760417e+05 1.760417e+05 0.00 NULL
2018 Dept Of Parks & Recreation Associate Staff Analyst 77842.96618 1.323330e+06 18749.60 1.102918e+03 40.550 362.75 17 4.055000e+01 689.35 1.342080e+06 1.324020e+06 18060.25 NULL
2018 Dept Of Parks & Recreation Associate Urban Designer 78843.07692 1.024960e+06 70539.19 5.426092e+03 0.000 1236.50 13 0.000000e+00 0.00 1.095499e+06 1.024960e+06 70539.19 NULL
2018 Dept Of Parks & Recreation Associate Urban Park Ranger 54721.11569 7.113745e+06 391425.82 3.010968e+03 2665.040 9421.60 130 2.665040e+03 346455.20 7.505171e+06 7.460200e+06 44970.62 NULL
2018 Dept Of Parks & Recreation Auto Mechanic NA NA 121319.57 5.274764e+03 2137.950 1987.25 23 2.137950e+03 49172.85 NA NA NA NULL
2018 Dept Of Parks & Recreation Automotive Service Worker 36597.96455 4.025776e+05 9383.46 8.530418e+02 0.000 263.25 11 0.000000e+00 0.00 4.119611e+05 4.025776e+05 9383.46 NULL
2018 Dept Of Parks & Recreation Blacksmith NA NA 164908.44 1.099390e+04 3147.660 2069.00 15 3.147660e+03 47214.90 NA NA NA NULL
2018 Dept Of Parks & Recreation Blacksmith’s Helper NA NA 52865.31 1.057306e+04 3674.200 1047.50 5 3.674200e+03 18371.00 NA NA NA NULL
2018 Dept Of Parks & Recreation Borough Director Of Recreation 134166.66667 8.050000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.050000e+05 8.050000e+05 0.00 NULL
2018 Dept Of Parks & Recreation Bricklayer NA NA 65.77 6.577000e+01 65.770 0.00 1 6.577000e+01 65.77 NA NA NA NULL
2018 Dept Of Parks & Recreation Carpenter NA NA 471056.41 1.239622e+04 9296.385 6098.75 38 9.296385e+03 353262.63 NA NA NA NULL
2018 Dept Of Parks & Recreation Cement Mason NA NA 183676.69 1.311976e+04 5003.195 1941.00 14 5.003195e+03 70044.73 NA NA NA NULL
2018 Dept Of Parks & Recreation Certified It Administrator 92381.64714 1.940015e+06 89406.79 4.257466e+03 1651.610 1314.00 21 1.651610e+03 34683.81 2.029421e+06 1.974698e+06 54722.98 NULL
2018 Dept Of Parks & Recreation Certified It Developer 87948.33333 2.638450e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.638450e+05 2.638450e+05 0.00 NULL
2018 Dept Of Parks & Recreation Chief Lifeguard 24237.21957 2.641857e+06 89914.58 8.249044e+02 161.660 1775.00 109 1.616600e+02 17620.94 2.731772e+06 2.659478e+06 72293.64 NULL
2018 Dept Of Parks & Recreation City Park Worker 23808.23723 3.656945e+07 2480064.07 1.614625e+03 624.420 86524.82 1536 6.244200e+02 959109.12 3.904952e+07 3.752856e+07 1520954.95 NULL
2018 Dept Of Parks & Recreation City Planner 76975.23077 1.000678e+06 12600.24 9.692492e+02 0.310 246.50 13 3.100000e-01 4.03 1.013278e+06 1.000682e+06 12596.21 NULL
2018 Dept Of Parks & Recreation City Research Scientist 85247.63158 1.619705e+06 8746.05 4.603184e+02 0.000 118.25 19 0.000000e+00 0.00 1.628451e+06 1.619705e+06 8746.05 NULL
2018 Dept Of Parks & Recreation City Seasonal Aide 10524.49409 1.385023e+07 546033.60 4.149191e+02 41.330 22277.98 1316 4.133000e+01 54390.28 1.439627e+07 1.390462e+07 491643.32 NULL
2018 Dept Of Parks & Recreation Civil Engineer 98993.25000 7.919460e+05 10192.26 1.274033e+03 399.370 160.25 8 3.993700e+02 3194.96 8.021383e+05 7.951410e+05 6997.30 NULL
2018 Dept Of Parks & Recreation Civil Engineering Intern 52000.00000 5.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.200000e+04 5.200000e+04 0.00 NULL
2018 Dept Of Parks & Recreation Clerical Aide 28211.74882 5.642350e+04 6588.06 3.294030e+03 3294.030 274.25 2 3.294030e+03 6588.06 6.301156e+04 6.301156e+04 0.00 NULL
2018 Dept Of Parks & Recreation Clerical Associate 44945.95625 3.910298e+06 87671.95 1.007724e+03 0.000 2539.50 87 0.000000e+00 0.00 3.997970e+06 3.910298e+06 87671.95 NULL
2018 Dept Of Parks & Recreation Climber & Pruner 63136.70085 7.386994e+06 1407038.46 1.202597e+04 9882.460 28265.25 117 9.882460e+03 1156247.82 8.794032e+06 8.543242e+06 250790.64 NULL
2018 Dept Of Parks & Recreation College Aide 7072.40000 2.121720e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.121720e+04 2.121720e+04 0.00 NULL
2018 Dept Of Parks & Recreation Commissioner Of Parks & Recreation 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Dept Of Parks & Recreation Community Assistant 16586.01840 3.317204e+05 25885.04 1.294252e+03 0.000 923.75 20 0.000000e+00 0.00 3.576054e+05 3.317204e+05 25885.04 NULL
2018 Dept Of Parks & Recreation Community Associate 36945.20381 8.275726e+06 101050.81 4.511197e+02 0.000 2962.33 224 0.000000e+00 0.00 8.376776e+06 8.275726e+06 101050.81 NULL
2018 Dept Of Parks & Recreation Community Coordinator 64701.89235 2.976287e+07 620222.75 1.348310e+03 0.000 12910.75 460 0.000000e+00 0.00 3.038309e+07 2.976287e+07 620222.75 NULL
2018 Dept Of Parks & Recreation Community Service Aide 5751.74178 2.128144e+05 2744.28 7.416973e+01 0.000 161.75 37 0.000000e+00 0.00 2.155587e+05 2.128144e+05 2744.28 NULL
2018 Dept Of Parks & Recreation Computer Aide-Non-Spvr 49976.36500 4.997637e+05 15866.67 1.586667e+03 150.920 416.50 10 1.509200e+02 1509.20 5.156303e+05 5.012728e+05 14357.47 NULL
2018 Dept Of Parks & Recreation Computer Associate 69364.10374 2.843928e+06 74686.84 1.821630e+03 0.390 1241.50 41 3.900000e-01 15.99 2.918615e+06 2.843944e+06 74670.85 NULL
2018 Dept Of Parks & Recreation Computer Operations Manager 96216.33333 2.886490e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.886490e+05 2.886490e+05 0.00 NULL
2018 Dept Of Parks & Recreation Computer Programmer Analyst 48590.00500 4.859000e+04 37.47 3.747000e+01 37.470 1.00 1 3.747000e+01 37.47 4.862747e+04 4.862747e+04 0.00 NULL
2018 Dept Of Parks & Recreation Computer Specialist 89615.00000 2.688450e+05 3231.00 1.077000e+03 624.700 61.00 3 6.247000e+02 1874.10 2.720760e+05 2.707191e+05 1356.90 NULL
2018 Dept Of Parks & Recreation Construction Project Manager 76996.41975 6.236710e+06 292274.14 3.608323e+03 913.150 5230.75 81 9.131500e+02 73965.15 6.528984e+06 6.310675e+06 218308.99 NULL
2018 Dept Of Parks & Recreation Construction Project Manager Intern 55512.50000 3.330750e+05 40802.36 6.800393e+03 2834.300 972.75 6 2.834300e+03 17005.80 3.738774e+05 3.500808e+05 23796.56 NULL
2018 Dept Of Parks & Recreation Cooperative Education Trainee-Seasonal Park Help 1577.84393 4.417963e+04 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 4.417963e+04 4.417963e+04 0.00 NULL
2018 Dept Of Parks & Recreation Counsel 185000.00000 1.850000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.850000e+05 1.850000e+05 0.00 NULL
2018 Dept Of Parks & Recreation Deputy Borough Commissioner 143166.85714 1.002168e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.002168e+06 1.002168e+06 0.00 NULL
2018 Dept Of Parks & Recreation Deputy Chief Of Operations 115321.25000 1.383855e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.383855e+06 1.383855e+06 0.00 NULL
2018 Dept Of Parks & Recreation Deputy Commissioner 182724.50000 1.096347e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.096347e+06 1.096347e+06 0.00 NULL
2018 Dept Of Parks & Recreation Director Of Community Involvement 112000.00000 1.120000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.120000e+05 1.120000e+05 0.00 NULL
2018 Dept Of Parks & Recreation Director Of Neighborhood Park Restoration 83439.23077 1.084710e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.084710e+06 1.084710e+06 0.00 NULL
2018 Dept Of Parks & Recreation Director Of Puppetry 57677.00000 5.767700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.767700e+04 5.767700e+04 0.00 NULL
2018 Dept Of Parks & Recreation Director Of Regional Joint Interest Park 97481.43070 4.874072e+06 20717.42 4.143484e+02 0.000 372.50 50 0.000000e+00 0.00 4.894789e+06 4.874072e+06 20717.42 NULL
2018 Dept Of Parks & Recreation Director Of Urban Park Ranger Program 110750.00000 4.430000e+05 3319.08 8.297700e+02 0.000 63.75 4 0.000000e+00 0.00 4.463191e+05 4.430000e+05 3319.08 NULL
2018 Dept Of Parks & Recreation Electrical Engineer 95000.00000 9.500000e+04 1078.26 1.078260e+03 1078.260 19.00 1 1.078260e+03 1078.26 9.607826e+04 9.607826e+04 0.00 NULL
2018 Dept Of Parks & Recreation Electrician NA NA 589061.49 1.402527e+04 9155.180 6590.25 42 9.155180e+03 384517.56 NA NA NA NULL
2018 Dept Of Parks & Recreation Engineering Technician 45320.00000 4.532000e+04 3048.59 3.048590e+03 3048.590 75.50 1 3.048590e+03 3048.59 4.836859e+04 4.836859e+04 0.00 NULL
2018 Dept Of Parks & Recreation Environmental Engineer 97599.00000 9.759900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.759900e+04 9.759900e+04 0.00 NULL
2018 Dept Of Parks & Recreation Environmental Engineering Intern 52000.00000 5.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.200000e+04 5.200000e+04 0.00 NULL
2018 Dept Of Parks & Recreation Executive Agency Counsel 134131.50000 5.365260e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.365260e+05 5.365260e+05 0.00 NULL
2018 Dept Of Parks & Recreation Executive Assistant To The Commissioner 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2018 Dept Of Parks & Recreation Exterminator 36426.00000 3.642600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.642600e+04 3.642600e+04 0.00 NULL
2018 Dept Of Parks & Recreation Forester 52047.91379 3.383114e+06 105368.53 1.621054e+03 467.580 2572.50 65 4.675800e+02 30392.70 3.488483e+06 3.413507e+06 74975.83 NULL
2018 Dept Of Parks & Recreation Gardener 42546.03400 7.785924e+06 446260.16 2.438580e+03 779.710 11942.10 183 7.797100e+02 142686.93 8.232184e+06 7.928611e+06 303573.23 NULL
2018 Dept Of Parks & Recreation Investigator 60496.36364 6.654600e+05 53408.87 4.855352e+03 257.400 1148.75 11 2.574000e+02 2831.40 7.188689e+05 6.682914e+05 50577.47 NULL
2018 Dept Of Parks & Recreation Job Training Participant 6666.88683 4.220139e+07 2646655.33 4.181130e+02 64.130 141269.75 6330 6.413000e+01 405942.90 4.484805e+07 4.260734e+07 2240712.43 NULL
2018 Dept Of Parks & Recreation Labor Relations Analyst 66435.00000 1.328700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.328700e+05 1.328700e+05 0.00 NULL
2018 Dept Of Parks & Recreation Landmarks Preservationist 70895.39390 3.544770e+05 2808.39 5.616780e+02 0.000 68.00 5 0.000000e+00 0.00 3.572854e+05 3.544770e+05 2808.39 NULL
2018 Dept Of Parks & Recreation Landscape Architect 89374.18554 7.418057e+06 260341.82 3.136648e+03 901.840 4055.25 83 9.018400e+02 74852.72 7.678399e+06 7.492910e+06 185489.10 NULL
2018 Dept Of Parks & Recreation Landscape Architect Intern 51107.80000 5.110780e+05 738.92 7.389200e+01 0.000 25.25 10 0.000000e+00 0.00 5.118169e+05 5.110780e+05 738.92 NULL
2018 Dept Of Parks & Recreation Letterer And Sign Painter NA NA 4768.50 4.768500e+03 4768.500 93.50 1 4.768500e+03 4768.50 NA NA NA NULL
2018 Dept Of Parks & Recreation Life Guard 7777.31299 1.054604e+07 145541.83 1.073317e+02 22.500 5110.75 1356 2.250000e+01 30510.00 1.069158e+07 1.057655e+07 115031.83 NULL
2018 Dept Of Parks & Recreation Machinist NA NA 23636.07 7.878690e+03 8235.420 302.00 3 7.878690e+03 23636.07 NA NA NA NULL
2018 Dept Of Parks & Recreation Maintenance Worker NA NA 414838.65 4.768260e+03 1989.910 8763.13 87 1.989910e+03 173122.17 NA NA NA NULL
2018 Dept Of Parks & Recreation Management Auditor 72000.00000 7.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.200000e+04 7.200000e+04 0.00 NULL
2018 Dept Of Parks & Recreation Manager Of Park License Agreements 149047.00000 1.490470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.490470e+05 1.490470e+05 0.00 NULL
2018 Dept Of Parks & Recreation Marine Maintenance Mechanic 72041.33333 2.161240e+05 520.03 1.733433e+02 196.830 11.00 3 1.733433e+02 520.03 2.166440e+05 2.166440e+05 0.00 NULL
2018 Dept Of Parks & Recreation Masons Helper NA NA 40315.84 2.015792e+04 20157.920 677.00 2 2.015792e+04 40315.84 NA NA NA NULL
2018 Dept Of Parks & Recreation Mechanical Engineer 98630.33333 2.958910e+05 5474.35 1.824783e+03 0.000 90.00 3 0.000000e+00 0.00 3.013653e+05 2.958910e+05 5474.35 NULL
2018 Dept Of Parks & Recreation Oiler NA NA 116988.77 3.899626e+04 37349.310 1294.50 3 3.734931e+04 112047.93 NA NA NA NULL
2018 Dept Of Parks & Recreation Painter NA NA 469683.92 1.619600e+04 16016.060 6996.27 29 1.601606e+04 464465.74 NA NA NA NULL
2018 Dept Of Parks & Recreation Park Borough Commissioner 165000.00000 8.250000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.250000e+05 8.250000e+05 0.00 NULL
2018 Dept Of Parks & Recreation Park Supervisor 70274.56781 3.176410e+07 3155365.52 6.980897e+03 4102.295 60499.08 452 4.102295e+03 1854237.34 3.491947e+07 3.361834e+07 1301128.18 NULL
2018 Dept Of Parks & Recreation Plasterer NA NA 19093.32 1.909332e+04 19093.320 203.00 1 1.909332e+04 19093.32 NA NA NA NULL
2018 Dept Of Parks & Recreation Playground Associate 12966.72929 3.449150e+06 61656.37 2.317909e+02 0.385 2786.92 266 3.850000e-01 102.41 3.510806e+06 3.449252e+06 61553.96 NULL
2018 Dept Of Parks & Recreation Plumber NA NA 1016807.99 1.955400e+04 17886.055 9057.00 52 1.788606e+04 930074.86 NA NA NA NULL
2018 Dept Of Parks & Recreation Plumber’s Helper NA NA 74151.66 1.853792e+04 19761.255 946.75 4 1.853792e+04 74151.66 NA NA NA NULL
2018 Dept Of Parks & Recreation Principal Administrative Associate - Lev 1 & 2 Non Supvr 62872.60825 5.029809e+06 176600.52 2.207506e+03 0.000 3925.25 80 0.000000e+00 0.00 5.206409e+06 5.029809e+06 176600.52 NULL
2018 Dept Of Parks & Recreation Procurement Analyst 74136.17241 2.149949e+06 51411.50 1.772810e+03 590.260 987.25 29 5.902600e+02 17117.54 2.201360e+06 2.167067e+06 34293.96 NULL
2018 Dept Of Parks & Recreation Project Manager 73580.62500 5.886450e+05 5775.89 7.219863e+02 49.835 113.25 8 4.983500e+01 398.68 5.944209e+05 5.890437e+05 5377.21 NULL
2018 Dept Of Parks & Recreation Public Records Officer 36634.87750 1.465395e+05 1000.67 2.501675e+02 0.000 27.75 4 0.000000e+00 0.00 1.475402e+05 1.465395e+05 1000.67 NULL
2018 Dept Of Parks & Recreation Puppeteer 43023.80000 2.151190e+05 104.09 2.081800e+01 0.000 4.00 5 0.000000e+00 0.00 2.152231e+05 2.151190e+05 104.09 NULL
2018 Dept Of Parks & Recreation Quality Assurance Specialist 56453.50000 1.129070e+05 2243.83 1.121915e+03 1121.915 61.00 2 1.121915e+03 2243.83 1.151508e+05 1.151508e+05 0.00 NULL
2018 Dept Of Parks & Recreation Recreation Director 42688.32775 1.792910e+06 62236.47 1.481821e+03 146.155 1881.18 42 1.461550e+02 6138.51 1.855146e+06 1.799048e+06 56097.96 NULL
2018 Dept Of Parks & Recreation Recreation Specialist 26058.58751 7.374580e+06 152596.71 5.392110e+02 0.000 5167.58 283 0.000000e+00 0.00 7.527177e+06 7.374580e+06 152596.71 NULL
2018 Dept Of Parks & Recreation Recreation Supervisor 50949.08720 5.655349e+06 256929.50 2.314680e+03 1170.260 5642.52 111 1.170260e+03 129898.86 5.912278e+06 5.785248e+06 127030.64 NULL
2018 Dept Of Parks & Recreation Research Assistant 50184.37333 1.505531e+05 6079.75 2.026583e+03 516.030 153.75 3 5.160300e+02 1548.09 1.566329e+05 1.521012e+05 4531.66 NULL
2018 Dept Of Parks & Recreation Secretary 58000.00000 5.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.800000e+04 5.800000e+04 0.00 NULL
2018 Dept Of Parks & Recreation Senior Estimator 87800.00000 4.390000e+05 523.12 1.046240e+02 0.000 7.25 5 0.000000e+00 0.00 4.395231e+05 4.390000e+05 523.12 NULL
2018 Dept Of Parks & Recreation Senior Photographer 70567.50000 1.411350e+05 1774.83 8.874150e+02 887.415 39.25 2 8.874150e+02 1774.83 1.429098e+05 1.429098e+05 0.00 NULL
2018 Dept Of Parks & Recreation Senior Stationary Engineer NA NA 154060.74 7.703037e+04 77030.370 1341.50 2 7.703037e+04 154060.74 NA NA NA NULL
2018 Dept Of Parks & Recreation Sheet Metal Worker NA NA 34183.58 5.697263e+03 1237.170 259.00 6 1.237170e+03 7423.02 NA NA NA NULL
2018 Dept Of Parks & Recreation Staff Analyst 63137.41667 7.576490e+05 18050.44 1.504203e+03 45.730 403.25 12 4.573000e+01 548.76 7.756994e+05 7.581978e+05 17501.68 NULL
2018 Dept Of Parks & Recreation Stationary Engineer NA NA 1031923.44 1.810392e+04 10172.440 10056.00 57 1.017244e+04 579829.08 NA NA NA NULL
2018 Dept Of Parks & Recreation Steam Fitter NA NA 157460.02 1.968250e+04 21587.500 1269.50 8 1.968250e+04 157460.02 NA NA NA NULL
2018 Dept Of Parks & Recreation Steam Fitter’s Helper NA NA 3918.75 3.918750e+03 3918.750 47.50 1 3.918750e+03 3918.75 NA NA NA NULL
2018 Dept Of Parks & Recreation Stock Worker 39007.00000 3.900700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.900700e+04 3.900700e+04 0.00 NULL
2018 Dept Of Parks & Recreation Supervising Computer Service Technician 68570.75000 2.742830e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.742830e+05 2.742830e+05 0.00 NULL
2018 Dept Of Parks & Recreation Supervising Dockmaster 63518.00000 4.446260e+05 5292.33 7.560471e+02 267.240 105.50 7 2.672400e+02 1870.68 4.499183e+05 4.464967e+05 3421.65 NULL
2018 Dept Of Parks & Recreation Supervisor Carpenter NA NA 102838.38 2.570960e+04 23577.870 1113.50 4 2.357787e+04 94311.48 NA NA NA NULL
2018 Dept Of Parks & Recreation Supervisor Electrician NA NA 51842.71 5.184271e+04 51842.710 537.50 1 5.184271e+04 51842.71 NA NA NA NULL
2018 Dept Of Parks & Recreation Supervisor Of Mechanics NA NA 338273.64 2.602105e+04 6928.380 3597.25 13 6.928380e+03 90068.94 NA NA NA NULL
2018 Dept Of Parks & Recreation Supervisor Of Stock Workers 49297.00000 4.929700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.929700e+04 4.929700e+04 0.00 NULL
2018 Dept Of Parks & Recreation Supervisor Painter NA NA 109000.26 5.450013e+04 54500.130 1415.50 2 5.450013e+04 109000.26 NA NA NA NULL
2018 Dept Of Parks & Recreation Supervisor Plumber NA NA 251107.47 6.277687e+04 72696.485 2216.00 4 6.277687e+04 251107.47 NA NA NA NULL
2018 Dept Of Parks & Recreation Surveyor 68564.00000 6.856400e+05 27943.63 2.794363e+03 2010.515 615.25 10 2.010515e+03 20105.15 7.135836e+05 7.057452e+05 7838.48 NULL
2018 Dept Of Parks & Recreation Telecommunications Associate 75436.10000 7.543610e+05 15617.40 1.561740e+03 487.840 252.00 10 4.878400e+02 4878.40 7.699784e+05 7.592394e+05 10739.00 NULL
2018 Dept Of Parks & Recreation Telephone Service Technician 58318.66667 3.499120e+05 13854.00 2.309000e+03 2876.570 372.25 6 2.309000e+03 13854.00 3.637660e+05 3.637660e+05 0.00 NULL
2018 Dept Of Parks & Recreation Thermostat Repairer NA NA 66409.04 6.640904e+04 66409.040 577.75 1 6.640904e+04 66409.04 NA NA NA NULL
2018 Dept Of Parks & Recreation Urban Park Ranger 45892.91670 1.647556e+07 466307.03 1.298905e+03 448.660 12694.66 359 4.486600e+02 161068.94 1.694186e+07 1.663663e+07 305238.09 NULL
2018 Dept Of Records & Info Service Adm Manager-Non-Mgrl From M1/M2 71441.80000 3.572090e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.572090e+05 3.572090e+05 0.00 NULL
2018 Dept Of Records & Info Service Administration Public Record Officer 117024.00000 2.340480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.340480e+05 2.340480e+05 0.00 NULL
2018 Dept Of Records & Info Service Agency Attorney 84240.00000 8.424000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.424000e+04 8.424000e+04 0.00 NULL
2018 Dept Of Records & Info Service Assistant Commissioner 149047.00000 1.490470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.490470e+05 1.490470e+05 0.00 NULL
2018 Dept Of Records & Info Service Associate Public Records Officer 61025.50000 4.882040e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.882040e+05 4.882040e+05 0.00 NULL
2018 Dept Of Records & Info Service Associate Staff Analyst 97873.00000 9.787300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.787300e+04 9.787300e+04 0.00 NULL
2018 Dept Of Records & Info Service Certified It Developer 95434.00000 1.908680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.908680e+05 1.908680e+05 0.00 NULL
2018 Dept Of Records & Info Service City Custodial Assistant 37500.00000 3.750000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.750000e+04 3.750000e+04 0.00 NULL
2018 Dept Of Records & Info Service Clerical Associate 42684.50000 2.561070e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.561070e+05 2.561070e+05 0.00 NULL
2018 Dept Of Records & Info Service College Aide 11614.69200 1.161469e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.161469e+04 1.161469e+04 0.00 NULL
2018 Dept Of Records & Info Service Commissioner 157955.00000 1.579550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.579550e+05 1.579550e+05 0.00 NULL
2018 Dept Of Records & Info Service Community Assistant 11402.16667 3.420650e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.420650e+04 3.420650e+04 0.00 NULL
2018 Dept Of Records & Info Service Community Associate 32272.65622 1.290906e+05 112.30 2.807500e+01 0.000 0.00 4 0.000000e+00 0.00 1.292029e+05 1.290906e+05 112.30 NULL
2018 Dept Of Records & Info Service Community Coordinator 70106.71429 4.907470e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.907470e+05 4.907470e+05 0.00 NULL
2018 Dept Of Records & Info Service Computer Systems Manager 137630.00000 4.128900e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.128900e+05 4.128900e+05 0.00 NULL
2018 Dept Of Records & Info Service Motor Vehicle Operator 46787.00000 4.678700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.678700e+04 4.678700e+04 0.00 NULL
2018 Dept Of Records & Info Service Principal Administrative Associate - Lev 1 & 2 Non Supvr 57101.50000 2.284060e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.284060e+05 2.284060e+05 0.00 NULL
2018 Dept Of Records & Info Service Public Records Aide 31776.45207 3.495410e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 3.495410e+05 3.495410e+05 0.00 NULL
2018 Dept Of Records & Info Service Public Records Officer 35222.84881 6.692341e+05 154.45 8.128947e+00 0.000 6.25 19 0.000000e+00 0.00 6.693886e+05 6.692341e+05 154.45 NULL
2018 Dept Of Records & Info Service Research Assistant 63759.00000 6.375900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.375900e+04 6.375900e+04 0.00 NULL
2018 Dept Of Records & Info Service Staff Analyst 57590.00000 5.759000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.759000e+04 5.759000e+04 0.00 NULL
2018 Dept Of Records & Info Service Stock Worker 20972.65433 1.468086e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.468086e+05 1.468086e+05 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Accountant 67911.50000 1.358230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.358230e+05 1.358230e+05 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Adm Manager-Non-Mgrl From M1/M2 73650.50000 1.178408e+06 2237.52 1.398450e+02 0.000 52.50 16 0.000000e+00 0.00 1.180646e+06 1.178408e+06 2237.52 NULL
2018 Dept Of Youth & Comm Dev Srvs Admin Community Relations Specialist 73486.93103 2.131121e+06 9415.48 3.246717e+02 0.000 210.25 29 0.000000e+00 0.00 2.140536e+06 2.131121e+06 9415.48 NULL
2018 Dept Of Youth & Comm Dev Srvs Admin Contract Specialist 91287.22034 5.385946e+06 10161.80 1.722339e+02 0.000 206.25 59 0.000000e+00 0.00 5.396108e+06 5.385946e+06 10161.80 NULL
2018 Dept Of Youth & Comm Dev Srvs Administrative Community Relations Specialist 101323.10526 3.850278e+06 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 3.850278e+06 3.850278e+06 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Administrative Graphic Artist 98992.00000 9.899200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.899200e+04 9.899200e+04 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Administrative Labor Relations Analyst 89000.00000 8.900000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.900000e+04 8.900000e+04 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Administrative Management Auditor 107328.66667 3.219860e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.219860e+05 3.219860e+05 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Administrative Manager 103178.80000 1.547682e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.547682e+06 1.547682e+06 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Administrative Procurement Analyst 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Administrative Public Information Specialist 60780.00000 6.078000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.078000e+04 6.078000e+04 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Administrative Staff Analyst 106366.67320 5.318334e+06 2119.52 4.239040e+01 0.000 45.00 50 0.000000e+00 0.00 5.320453e+06 5.318334e+06 2119.52 NULL
2018 Dept Of Youth & Comm Dev Srvs Agency Attorney 93230.80000 4.661540e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.661540e+05 4.661540e+05 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Agency Chief Contracting Officer 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Associate Contract Specialist 67818.72840 5.493317e+06 9853.59 1.216493e+02 0.000 192.25 81 0.000000e+00 0.00 5.503171e+06 5.493317e+06 9853.59 NULL
2018 Dept Of Youth & Comm Dev Srvs Associate Staff Analyst 83851.50000 5.031090e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.031090e+05 5.031090e+05 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Certified It Administrator 92118.00000 1.842360e+05 1479.80 7.399000e+02 739.900 29.50 2 7.399000e+02 1479.80 1.857158e+05 1.857158e+05 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Certified It Developer 98937.20000 4.946860e+05 138.27 2.765400e+01 0.580 2.50 5 5.800000e-01 2.90 4.948243e+05 4.946889e+05 135.37 NULL
2018 Dept Of Youth & Comm Dev Srvs City Research Scientist 85279.66667 5.116780e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.116780e+05 5.116780e+05 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Clerical Associate 52800.10000 5.280010e+05 -46.43 -4.643000e+00 0.000 0.00 10 -4.643000e+00 -46.43 5.279546e+05 5.279546e+05 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs College Aide - Assignment Levels Ii And Iii 12059.41508 1.085347e+05 145.38 1.615333e+01 0.000 9.75 9 0.000000e+00 0.00 1.086801e+05 1.085347e+05 145.38 NULL
2018 Dept Of Youth & Comm Dev Srvs Commissioner Of Community Development 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Community Assistant 19310.61550 1.544849e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.544849e+05 1.544849e+05 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Community Associate 49551.86818 5.450706e+05 1657.69 1.506991e+02 0.000 45.50 11 0.000000e+00 0.00 5.467282e+05 5.450706e+05 1657.69 NULL
2018 Dept Of Youth & Comm Dev Srvs Community Coordinator 64652.61342 1.228400e+06 6362.81 3.348847e+02 0.000 125.75 19 0.000000e+00 0.00 1.234762e+06 1.228400e+06 6362.81 NULL
2018 Dept Of Youth & Comm Dev Srvs Computer Associate 85296.77778 7.676710e+05 214.96 2.388444e+01 0.000 2.00 9 0.000000e+00 0.00 7.678860e+05 7.676710e+05 214.96 NULL
2018 Dept Of Youth & Comm Dev Srvs Computer Specialist 103433.46667 1.551502e+06 326.80 2.178667e+01 0.000 6.00 15 0.000000e+00 0.00 1.551829e+06 1.551502e+06 326.80 NULL
2018 Dept Of Youth & Comm Dev Srvs Computer Systems Manager 113778.33333 1.706675e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.706675e+06 1.706675e+06 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Contract Specialist 61004.75510 2.989233e+06 17835.86 3.639971e+02 0.000 387.00 49 0.000000e+00 0.00 3.007069e+06 2.989233e+06 17835.86 NULL
2018 Dept Of Youth & Comm Dev Srvs Deputy Commissioner 180419.50000 3.608390e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.608390e+05 3.608390e+05 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Executive Agency Counsel 152151.00000 3.043020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.043020e+05 3.043020e+05 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Field Supervisor 2510.43890 3.263571e+04 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 3.263571e+04 3.263571e+04 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Graphic Artist 61800.00000 6.180000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.180000e+04 6.180000e+04 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Management Auditor 71762.37500 5.740990e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.740990e+05 5.740990e+05 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Motor Vehicle Operator 58000.00000 5.800000e+04 7556.66 7.556660e+03 7556.660 183.00 1 7.556660e+03 7556.66 6.555666e+04 6.555666e+04 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Photographer 50572.50000 5.057250e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.057250e+04 5.057250e+04 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Principal Administrative Associate - Lev 1 & 2 Non Supvr 65888.34474 1.251879e+06 1644.02 8.652737e+01 0.000 32.50 19 0.000000e+00 0.00 1.253523e+06 1.251879e+06 1644.02 NULL
2018 Dept Of Youth & Comm Dev Srvs Procurement Analyst 56800.36364 1.249608e+06 118.32 5.378182e+00 0.000 3.25 22 0.000000e+00 0.00 1.249726e+06 1.249608e+06 118.32 NULL
2018 Dept Of Youth & Comm Dev Srvs Secretary 49520.00000 4.952000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.952000e+04 4.952000e+04 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Senior Field Supervisor 14575.96135 8.016779e+05 66.65 1.211818e+00 0.000 5.00 55 0.000000e+00 0.00 8.017445e+05 8.016779e+05 66.65 NULL
2018 Dept Of Youth & Comm Dev Srvs Staff Analyst 72230.50000 2.889220e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.889220e+05 2.889220e+05 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Staff Analyst Trainee 39237.00000 3.923700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.923700e+04 3.923700e+04 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Supervisor Of Motor Transport 63658.00000 6.365800e+04 8814.87 8.814870e+03 8814.870 184.00 1 8.814870e+03 8814.87 7.247287e+04 7.247287e+04 0.00 NULL
2018 Dept Of Youth & Comm Dev Srvs Youth Coordinator 52997.53174 5.299753e+05 5274.65 5.274650e+02 137.595 127.25 10 1.375950e+02 1375.95 5.352500e+05 5.313513e+05 3898.70 NULL
2018 Dept. Of Design & Construction *Certified Local Area Network Administrator 119075.00000 1.190750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.190750e+05 1.190750e+05 0.00 NULL
2018 Dept. Of Design & Construction Accountant 63927.70833 1.534265e+06 14382.12 5.992550e+02 16.010 289.00 24 1.601000e+01 384.24 1.548647e+06 1.534649e+06 13997.88 NULL
2018 Dept. Of Design & Construction Adm Manager-Non-Mgrl From M1/M2 73363.60714 2.054181e+06 15284.21 5.458646e+02 0.000 322.00 28 0.000000e+00 0.00 2.069465e+06 2.054181e+06 15284.21 NULL
2018 Dept. Of Design & Construction Admin Community Relations Specialist 72456.00000 7.245600e+05 38582.13 3.858213e+03 1647.740 813.25 10 1.647740e+03 16477.40 7.631421e+05 7.410374e+05 22104.73 NULL
2018 Dept. Of Design & Construction Admin Construction Project Manager 110740.30769 1.439624e+06 40149.39 3.088415e+03 896.830 515.75 13 8.968300e+02 11658.79 1.479773e+06 1.451283e+06 28490.60 NULL
2018 Dept. Of Design & Construction Administrative Accountant 106154.00000 2.123080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.123080e+05 2.123080e+05 0.00 NULL
2018 Dept. Of Design & Construction Administrative Architect 116543.15909 5.127899e+06 16015.24 3.639827e+02 0.000 223.25 44 0.000000e+00 0.00 5.143914e+06 5.127899e+06 16015.24 NULL
2018 Dept. Of Design & Construction Administrative City Planner 135960.00000 1.359600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.359600e+05 1.359600e+05 0.00 NULL
2018 Dept. Of Design & Construction Administrative Community Relations Specialist 163641.50000 3.272830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.272830e+05 3.272830e+05 0.00 NULL
2018 Dept. Of Design & Construction Administrative Construction Project Manager 126967.00000 2.539340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.539340e+05 2.539340e+05 0.00 NULL
2018 Dept. Of Design & Construction Administrative Engineer 130538.18182 8.615520e+06 248740.73 3.768799e+03 0.000 3490.00 66 0.000000e+00 0.00 8.864261e+06 8.615520e+06 248740.73 NULL
2018 Dept. Of Design & Construction Administrative Graphic Artist 91929.00000 2.757870e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.757870e+05 2.757870e+05 0.00 NULL
2018 Dept. Of Design & Construction Administrative Landmarks Preservationist 131969.00000 1.319690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.319690e+05 1.319690e+05 0.00 NULL
2018 Dept. Of Design & Construction Administrative Landscape Architect 119926.33333 3.597790e+05 9346.68 3.115560e+03 0.000 125.50 3 0.000000e+00 0.00 3.691257e+05 3.597790e+05 9346.68 NULL
2018 Dept. Of Design & Construction Administrative Manager 130458.00000 1.304580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.304580e+05 1.304580e+05 0.00 NULL
2018 Dept. Of Design & Construction Administrative Procurement Analyst 97631.20000 4.881560e+05 5380.08 1.076016e+03 0.000 91.00 5 0.000000e+00 0.00 4.935361e+05 4.881560e+05 5380.08 NULL
2018 Dept. Of Design & Construction Administrative Project Manager 108829.01439 1.512723e+07 250297.47 1.800701e+03 0.000 3666.00 139 0.000000e+00 0.00 1.537753e+07 1.512723e+07 250297.47 NULL
2018 Dept. Of Design & Construction Administrative Public Information Specialist 144200.00000 2.884000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.884000e+05 2.884000e+05 0.00 NULL
2018 Dept. Of Design & Construction Administrative Staff Analyst 99658.02632 3.787005e+06 20859.92 5.489453e+02 0.000 269.75 38 0.000000e+00 0.00 3.807865e+06 3.787005e+06 20859.92 NULL
2018 Dept. Of Design & Construction Administrative Supervisor Of Building Maintenance 85551.00000 8.555100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.555100e+04 8.555100e+04 0.00 NULL
2018 Dept. Of Design & Construction Agency Attorney 84311.75000 6.744940e+05 299.80 3.747500e+01 0.000 4.50 8 0.000000e+00 0.00 6.747938e+05 6.744940e+05 299.80 NULL
2018 Dept. Of Design & Construction Agency Attorney Interne 58972.00000 1.179440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.179440e+05 1.179440e+05 0.00 NULL
2018 Dept. Of Design & Construction Agency Chief Contracting Officer 148870.00000 2.977400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.977400e+05 2.977400e+05 0.00 NULL
2018 Dept. Of Design & Construction Architect 92093.36842 1.749774e+06 1531.72 8.061684e+01 0.000 15.50 19 0.000000e+00 0.00 1.751306e+06 1.749774e+06 1531.72 NULL
2018 Dept. Of Design & Construction Asbestos Hazard Investigator 65927.83333 3.955670e+05 954.84 1.591400e+02 0.000 25.75 6 0.000000e+00 0.00 3.965218e+05 3.955670e+05 954.84 NULL
2018 Dept. Of Design & Construction Assistant Architect 75825.66667 4.549540e+05 347.22 5.787000e+01 0.000 8.00 6 0.000000e+00 0.00 4.553012e+05 4.549540e+05 347.22 NULL
2018 Dept. Of Design & Construction Assistant Chemical Engineer 79726.00000 7.972600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.972600e+04 7.972600e+04 0.00 NULL
2018 Dept. Of Design & Construction Assistant Civil Engineer 65072.99301 9.305438e+06 340390.53 2.380353e+03 597.680 7871.75 143 5.976800e+02 85468.24 9.645829e+06 9.390906e+06 254922.29 NULL
2018 Dept. Of Design & Construction Assistant Electrical Engineer 66457.00000 2.658280e+05 2434.56 6.086400e+02 0.000 42.50 4 0.000000e+00 0.00 2.682626e+05 2.658280e+05 2434.56 NULL
2018 Dept. Of Design & Construction Assistant Environmental Engineer 61104.00000 6.110400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.110400e+04 6.110400e+04 0.00 NULL
2018 Dept. Of Design & Construction Assistant Landscape Architect 65562.60000 3.278130e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.278130e+05 3.278130e+05 0.00 NULL
2018 Dept. Of Design & Construction Assistant Mechanical Engineer 67693.66667 2.030810e+05 16015.36 5.338453e+03 7130.780 401.50 3 5.338453e+03 16015.36 2.190964e+05 2.190964e+05 0.00 NULL
2018 Dept. Of Design & Construction Assistant Urban Designer 66950.00000 6.695000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.695000e+04 6.695000e+04 0.00 NULL
2018 Dept. Of Design & Construction Associate Inspector 70590.00000 7.059000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.059000e+04 7.059000e+04 0.00 NULL
2018 Dept. Of Design & Construction Associate Investigator 64619.75000 2.584790e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.584790e+05 2.584790e+05 0.00 NULL
2018 Dept. Of Design & Construction Associate Project Manager 83168.63393 9.314887e+06 335988.46 2.999897e+03 312.235 5725.25 112 3.122350e+02 34970.32 9.650875e+06 9.349857e+06 301018.14 NULL
2018 Dept. Of Design & Construction Associate Public Health Sanitarian 91641.00000 9.164100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.164100e+04 9.164100e+04 0.00 NULL
2018 Dept. Of Design & Construction Associate Quality Assurance Specialist 71649.00000 7.164900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.164900e+04 7.164900e+04 0.00 NULL
2018 Dept. Of Design & Construction Associate Staff Analyst 80617.69231 1.048030e+06 4471.64 3.439723e+02 0.000 91.75 13 0.000000e+00 0.00 1.052502e+06 1.048030e+06 4471.64 NULL
2018 Dept. Of Design & Construction Associate Urban Designer 85649.75000 2.055594e+06 7195.97 2.998321e+02 0.000 132.25 24 0.000000e+00 0.00 2.062790e+06 2.055594e+06 7195.97 NULL
2018 Dept. Of Design & Construction Certified It Administrator 87731.00000 2.631930e+05 1613.49 5.378300e+02 622.530 26.50 3 5.378300e+02 1613.49 2.648065e+05 2.648065e+05 0.00 NULL
2018 Dept. Of Design & Construction Certified It Developer 87731.00000 8.773100e+04 1041.78 1.041780e+03 1041.780 17.00 1 1.041780e+03 1041.78 8.877278e+04 8.877278e+04 0.00 NULL
2018 Dept. Of Design & Construction City Planner 77287.66667 2.318630e+05 1066.79 3.555967e+02 0.000 18.75 3 0.000000e+00 0.00 2.329298e+05 2.318630e+05 1066.79 NULL
2018 Dept. Of Design & Construction Civil Engineer 90781.07463 6.082332e+06 286212.37 4.271826e+03 419.130 4687.25 67 4.191300e+02 28081.71 6.368544e+06 6.110414e+06 258130.66 NULL
2018 Dept. Of Design & Construction Civil Engineering Intern 50554.87692 3.286067e+06 45870.39 7.056983e+02 0.090 1432.25 65 9.000000e-02 5.85 3.331937e+06 3.286073e+06 45864.54 NULL
2018 Dept. Of Design & Construction Clerical Associate 45413.56829 1.861956e+06 4919.17 1.199798e+02 0.000 195.50 41 0.000000e+00 0.00 1.866875e+06 1.861956e+06 4919.17 NULL
2018 Dept. Of Design & Construction College Aide 6983.99083 1.466638e+05 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.466638e+05 1.466638e+05 0.00 NULL
2018 Dept. Of Design & Construction College Aide - Assignment Levels Ii And Iii 7521.23768 3.008495e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.008495e+04 3.008495e+04 0.00 NULL
2018 Dept. Of Design & Construction Commissioner Of Design & Construction 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Dept. Of Design & Construction Community Assistant 35880.20000 1.794010e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.794010e+05 1.794010e+05 0.00 NULL
2018 Dept. Of Design & Construction Community Associate 42384.89103 7.205431e+05 12156.80 7.151059e+02 58.600 313.50 17 5.860000e+01 996.20 7.326999e+05 7.215393e+05 11160.60 NULL
2018 Dept. Of Design & Construction Community Coordinator 62075.62963 1.676042e+06 11670.09 4.322256e+02 0.000 246.00 27 0.000000e+00 0.00 1.687712e+06 1.676042e+06 11670.09 NULL
2018 Dept. Of Design & Construction Community Service Aide 32739.00000 3.273900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.273900e+04 3.273900e+04 0.00 NULL
2018 Dept. Of Design & Construction Computer Aide-Non-Spvr 49566.00000 9.913200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.913200e+04 9.913200e+04 0.00 NULL
2018 Dept. Of Design & Construction Computer Associate 71476.70377 1.072151e+06 15404.19 1.026946e+03 0.000 300.75 15 0.000000e+00 0.00 1.087555e+06 1.072151e+06 15404.19 NULL
2018 Dept. Of Design & Construction Computer Operations Manager 120879.50000 2.417590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.417590e+05 2.417590e+05 0.00 NULL
2018 Dept. Of Design & Construction Computer Programmer Analyst 62236.14286 4.356530e+05 264.26 3.775143e+01 0.000 6.25 7 0.000000e+00 0.00 4.359173e+05 4.356530e+05 264.26 NULL
2018 Dept. Of Design & Construction Computer Service Technician 49292.66667 1.478780e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.478780e+05 1.478780e+05 0.00 NULL
2018 Dept. Of Design & Construction Computer Specialist 103696.00000 1.451744e+06 16662.31 1.190165e+03 337.120 229.75 14 3.371200e+02 4719.68 1.468406e+06 1.456464e+06 11942.63 NULL
2018 Dept. Of Design & Construction Computer Systems Manager 119865.55556 1.078790e+06 460.72 5.119111e+01 0.000 6.50 9 0.000000e+00 0.00 1.079251e+06 1.078790e+06 460.72 NULL
2018 Dept. Of Design & Construction Construction Project Manager 81008.46184 9.883032e+06 418854.62 3.433235e+03 525.420 6824.00 122 5.254200e+02 64101.24 1.030189e+07 9.947134e+06 354753.38 NULL
2018 Dept. Of Design & Construction Construction Project Manager Intern 56529.65625 1.808949e+06 46223.40 1.444481e+03 0.085 1188.00 32 8.500000e-02 2.72 1.855172e+06 1.808952e+06 46220.68 NULL
2018 Dept. Of Design & Construction Cooperative Education Trainee - Engineering Aide 1757.25000 1.757250e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.757250e+03 1.757250e+03 0.00 NULL
2018 Dept. Of Design & Construction Electrical Engineer 83207.00000 1.664140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.664140e+05 1.664140e+05 0.00 NULL
2018 Dept. Of Design & Construction Engineering Technician 60530.84000 1.513271e+06 34264.00 1.370560e+03 0.000 877.75 25 0.000000e+00 0.00 1.547535e+06 1.513271e+06 34264.00 NULL
2018 Dept. Of Design & Construction Estimator 69360.93333 1.040414e+06 16721.39 1.114759e+03 0.000 426.75 15 0.000000e+00 0.00 1.057135e+06 1.040414e+06 16721.39 NULL
2018 Dept. Of Design & Construction Executive Agency Counsel 160615.28571 1.124307e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.124307e+06 1.124307e+06 0.00 NULL
2018 Dept. Of Design & Construction Geologist 69561.33333 6.260520e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 6.260520e+05 6.260520e+05 0.00 NULL
2018 Dept. Of Design & Construction Graphic Artist 69996.00000 2.799840e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.799840e+05 2.799840e+05 0.00 NULL
2018 Dept. Of Design & Construction Highway Transportation Specialist 91760.50000 1.835210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.835210e+05 1.835210e+05 0.00 NULL
2018 Dept. Of Design & Construction Highways And Sewers Inspector 59098.50000 1.181970e+05 9420.37 4.710185e+03 4710.185 196.00 2 4.710185e+03 9420.37 1.276174e+05 1.276174e+05 0.00 NULL
2018 Dept. Of Design & Construction Industrial Hygienist 60423.00000 1.208460e+05 2203.15 1.101575e+03 1101.575 57.25 2 1.101575e+03 2203.15 1.230491e+05 1.230491e+05 0.00 NULL
2018 Dept. Of Design & Construction Inspector 72535.00000 7.253500e+04 7509.11 7.509110e+03 7509.110 142.00 1 7.509110e+03 7509.11 8.004411e+04 8.004411e+04 0.00 NULL
2018 Dept. Of Design & Construction Investigator 60421.00000 1.208420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.208420e+05 1.208420e+05 0.00 NULL
2018 Dept. Of Design & Construction Investigator Empl Disc 47429.25000 1.897170e+05 3656.97 9.142425e+02 1168.480 136.75 4 9.142425e+02 3656.97 1.933740e+05 1.933740e+05 0.00 NULL
2018 Dept. Of Design & Construction Landscape Architect 89648.75000 7.171900e+05 6117.03 7.646287e+02 0.000 107.00 8 0.000000e+00 0.00 7.233070e+05 7.171900e+05 6117.03 NULL
2018 Dept. Of Design & Construction Management Auditor 71433.20000 3.571660e+05 9792.92 1.958584e+03 0.000 190.75 5 0.000000e+00 0.00 3.669589e+05 3.571660e+05 9792.92 NULL
2018 Dept. Of Design & Construction Mechanical Engineer 96487.10000 9.648710e+05 28116.68 2.811668e+03 0.000 457.75 10 0.000000e+00 0.00 9.929877e+05 9.648710e+05 28116.68 NULL
2018 Dept. Of Design & Construction Mechanical Engineering Intern 57958.00000 1.159160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.159160e+05 1.159160e+05 0.00 NULL
2018 Dept. Of Design & Construction Motor Vehicle Operator 44735.50000 8.947100e+04 2938.26 1.469130e+03 1469.130 94.25 2 1.469130e+03 2938.26 9.240926e+04 9.240926e+04 0.00 NULL
2018 Dept. Of Design & Construction Motor Vehicle Supervisor 53197.50000 1.063950e+05 1966.51 9.832550e+02 983.255 40.00 2 9.832550e+02 1966.51 1.083615e+05 1.083615e+05 0.00 NULL
2018 Dept. Of Design & Construction Office Machine Aide 35167.00000 3.516700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.516700e+04 3.516700e+04 0.00 NULL
2018 Dept. Of Design & Construction Principal Administrative Associate - Lev 1 & 2 Non Supvr 60393.90625 1.932605e+06 21977.33 6.867916e+02 0.000 510.00 32 0.000000e+00 0.00 1.954582e+06 1.932605e+06 21977.33 NULL
2018 Dept. Of Design & Construction Principal Title Examiner 59740.00000 1.194800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.194800e+05 1.194800e+05 0.00 NULL
2018 Dept. Of Design & Construction Procurement Analyst 68954.05000 1.379081e+06 1953.70 9.768500e+01 0.000 35.50 20 0.000000e+00 0.00 1.381035e+06 1.379081e+06 1953.70 NULL
2018 Dept. Of Design & Construction Project Manager 64325.40000 1.929762e+06 80616.89 2.687230e+03 384.710 1871.75 30 3.847100e+02 11541.30 2.010379e+06 1.941303e+06 69075.59 NULL
2018 Dept. Of Design & Construction Project Manager Intern# 51854.50000 2.385307e+06 16578.39 3.603998e+02 0.000 477.25 46 0.000000e+00 0.00 2.401885e+06 2.385307e+06 16578.39 NULL
2018 Dept. Of Design & Construction Public Records Aide 43443.33333 6.516500e+05 247.38 1.649200e+01 0.000 9.00 15 0.000000e+00 0.00 6.518974e+05 6.516500e+05 247.38 NULL
2018 Dept. Of Design & Construction Secretary 49961.45455 5.495760e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.495760e+05 5.495760e+05 0.00 NULL
2018 Dept. Of Design & Construction Secretary To The Commissioner Of Ddc 78462.00000 7.846200e+04 14612.47 1.461247e+04 14612.470 254.50 1 1.461247e+04 14612.47 9.307447e+04 9.307447e+04 0.00 NULL
2018 Dept. Of Design & Construction Senior Estimator 81673.70588 2.776906e+06 65298.94 1.920557e+03 0.000 1047.25 34 0.000000e+00 0.00 2.842205e+06 2.776906e+06 65298.94 NULL
2018 Dept. Of Design & Construction Staff Analyst 64952.48000 1.623812e+06 7242.77 2.897108e+02 0.000 162.50 25 0.000000e+00 0.00 1.631055e+06 1.623812e+06 7242.77 NULL
2018 Dept. Of Design & Construction Staff Analyst Trainee 46589.57895 8.852020e+05 0.80 4.210530e-02 0.000 0.00 19 0.000000e+00 0.00 8.852028e+05 8.852020e+05 0.80 NULL
2018 Dept. Of Design & Construction Statistician 59990.00000 5.999000e+04 623.87 6.238700e+02 623.870 16.00 1 6.238700e+02 623.87 6.061387e+04 6.061387e+04 0.00 NULL
2018 Dept. Of Design & Construction Stock Worker 41073.33333 1.232200e+05 5096.75 1.698917e+03 128.400 148.50 3 1.284000e+02 385.20 1.283168e+05 1.236052e+05 4711.55 NULL
2018 Dept. Of Design & Construction Summer College Intern 1972.04377 1.005742e+05 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 1.005742e+05 1.005742e+05 0.00 NULL
2018 Dept. Of Design & Construction Summer Graduate Intern 2466.20000 2.466200e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 2.466200e+04 2.466200e+04 0.00 NULL
2018 Dept. Of Design & Construction Supervisor Of Electrical Installations & Maintenance 77111.40000 3.855570e+05 8178.44 1.635688e+03 0.000 158.00 5 0.000000e+00 0.00 3.937354e+05 3.855570e+05 8178.44 NULL
2018 Dept. Of Design & Construction Supervisor Of Mechanical Installations & Maintenance 79064.00000 7.906400e+04 8007.22 8.007220e+03 8007.220 155.75 1 8.007220e+03 8007.22 8.707122e+04 8.707122e+04 0.00 NULL
2018 Dept. Of Design & Construction Supervisor Of Stock Workers 49927.00000 4.992700e+04 1679.85 1.679850e+03 1679.850 48.75 1 1.679850e+03 1679.85 5.160685e+04 5.160685e+04 0.00 NULL
2018 Dept. Of Design & Construction Surveyor 70675.07895 2.685653e+06 98613.72 2.595098e+03 498.135 1924.75 38 4.981350e+02 18929.13 2.784267e+06 2.704582e+06 79684.59 NULL
2018 Dept. Of Homeless Services Adm Manager-Non-Mgrl From M1/M2 65376.33333 1.176774e+06 47728.49 2.651583e+03 632.810 1086.50 18 6.328100e+02 11390.58 1.224502e+06 1.188165e+06 36337.91 NULL
2018 Dept. Of Homeless Services Admin Community Relations Specialist 88532.65217 2.036251e+06 58267.53 2.533371e+03 24.270 1022.75 23 2.427000e+01 558.21 2.094519e+06 2.036809e+06 57709.32 NULL
2018 Dept. Of Homeless Services Admin Contract Specialist 100559.66667 9.050370e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.050370e+05 9.050370e+05 0.00 NULL
2018 Dept. Of Homeless Services Admin Job Opor Spec-Managerial 120000.00000 7.200000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.200000e+05 7.200000e+05 0.00 NULL
2018 Dept. Of Homeless Services Admin Job Opportunity Spec Nm 88390.10000 8.839010e+05 1476.96 1.476960e+02 0.000 28.50 10 0.000000e+00 0.00 8.853780e+05 8.839010e+05 1476.96 NULL
2018 Dept. Of Homeless Services Administrative City Planner 108110.00000 2.162200e+05 704.00 3.520000e+02 352.000 12.75 2 3.520000e+02 704.00 2.169240e+05 2.169240e+05 0.00 NULL
2018 Dept. Of Homeless Services Administrative Community Relations Specialist 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2018 Dept. Of Homeless Services Administrative Construction Project Manager 124943.00000 2.498860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.498860e+05 2.498860e+05 0.00 NULL
2018 Dept. Of Homeless Services Administrative Director Of Social Services 105683.64228 1.299909e+07 19965.66 1.623224e+02 0.000 340.75 123 0.000000e+00 0.00 1.301905e+07 1.299909e+07 19965.66 NULL
2018 Dept. Of Homeless Services Administrative Housing Development Specialist 80042.00000 1.600840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.600840e+05 1.600840e+05 0.00 NULL
2018 Dept. Of Homeless Services Administrative Nutritionist 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2018 Dept. Of Homeless Services Administrative Public Information Specialist 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2018 Dept. Of Homeless Services Administrative Staff Analyst 88448.62500 4.953123e+06 101654.37 1.815257e+03 0.000 1567.00 56 0.000000e+00 0.00 5.054777e+06 4.953123e+06 101654.37 NULL
2018 Dept. Of Homeless Services Administrative Supervisor Of Building Maintenance 105345.20000 1.053452e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.053452e+06 1.053452e+06 0.00 NULL
2018 Dept. Of Homeless Services Agency Attorney 103117.00000 1.031170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.031170e+05 1.031170e+05 0.00 NULL
2018 Dept. Of Homeless Services Agency Medical Director 204301.00000 2.043010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.043010e+05 2.043010e+05 0.00 NULL
2018 Dept. Of Homeless Services Architect 74990.00000 7.499000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.499000e+04 7.499000e+04 0.00 NULL
2018 Dept. Of Homeless Services Assistant Comissioner For Family Operations 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2018 Dept. Of Homeless Services Assistant Deputy Administrator 206000.00000 2.060000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.060000e+05 2.060000e+05 0.00 NULL
2018 Dept. Of Homeless Services Assistant Deputy Commissioner Ss 157752.00000 3.155040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.155040e+05 3.155040e+05 0.00 NULL
2018 Dept. Of Homeless Services Assistant Superintendent Of Welfare Shelters 64058.59211 4.868453e+06 1103894.11 1.452492e+04 14460.095 22961.00 76 1.446009e+04 1098967.22 5.972347e+06 5.967420e+06 4926.89 NULL
2018 Dept. Of Homeless Services Associate Contract Specialist 64462.00000 6.446200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.446200e+04 6.446200e+04 0.00 NULL
2018 Dept. Of Homeless Services Associate Fraud Investigator 66715.95775 4.736833e+06 803594.32 1.131823e+04 12292.180 15519.00 71 1.131823e+04 803594.32 5.540427e+06 5.540427e+06 0.00 NULL
2018 Dept. Of Homeless Services Associate Investigator 71405.00000 7.140500e+04 19967.70 1.996770e+04 19967.700 342.75 1 1.996770e+04 19967.70 9.137270e+04 9.137270e+04 0.00 NULL
2018 Dept. Of Homeless Services Associate Project Manager 79009.16667 4.740550e+05 4151.79 6.919650e+02 250.785 51.50 6 2.507850e+02 1504.71 4.782068e+05 4.755597e+05 2647.08 NULL
2018 Dept. Of Homeless Services Associate Staff Analyst 78239.40541 2.894858e+06 40326.28 1.089899e+03 0.000 711.75 37 0.000000e+00 0.00 2.935184e+06 2.894858e+06 40326.28 NULL
2018 Dept. Of Homeless Services Asst Commissioner For Planning & Program Dev 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2018 Dept. Of Homeless Services Business Promotion Coordinator 74234.00000 1.484680e+05 11559.09 5.779545e+03 5779.545 310.50 2 5.779545e+03 11559.09 1.600271e+05 1.600271e+05 0.00 NULL
2018 Dept. Of Homeless Services Carpenter NA NA 282127.54 1.484882e+04 15269.520 3667.25 19 1.484882e+04 282127.54 NA NA NA NULL
2018 Dept. Of Homeless Services Caseworker 43606.61556 4.055415e+06 300221.03 3.228183e+03 512.640 8565.63 93 5.126400e+02 47675.52 4.355636e+06 4.103091e+06 252545.51 NULL
2018 Dept. Of Homeless Services Cement Mason NA NA 102018.03 1.700301e+04 18292.365 1018.00 6 1.700301e+04 102018.03 NA NA NA NULL
2018 Dept. Of Homeless Services City Laborer NA NA 546959.27 2.878733e+04 30045.500 9691.75 19 2.878733e+04 546959.27 NA NA NA NULL
2018 Dept. Of Homeless Services City Research Scientist 77643.62500 6.211490e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.211490e+05 6.211490e+05 0.00 NULL
2018 Dept. Of Homeless Services Clerical Associate 41506.64864 9.131463e+05 91170.66 4.144121e+03 1131.030 2510.25 22 1.131030e+03 24882.66 1.004317e+06 9.380289e+05 66288.00 NULL
2018 Dept. Of Homeless Services Community Assistant 34690.11043 5.654488e+06 716951.32 4.398474e+03 2238.310 27333.00 163 2.238310e+03 364844.53 6.371439e+06 6.019333e+06 352106.79 NULL
2018 Dept. Of Homeless Services Community Associate 41815.06993 5.979555e+06 345196.99 2.413965e+03 247.060 11629.90 143 2.470600e+02 35329.58 6.324752e+06 6.014885e+06 309867.41 NULL
2018 Dept. Of Homeless Services Community Coordinator 56807.67618 1.800803e+07 1501594.52 4.736891e+03 1500.490 36408.25 317 1.500490e+03 475655.33 1.950963e+07 1.848369e+07 1025939.19 NULL
2018 Dept. Of Homeless Services Computer Specialist 87731.00000 8.773100e+04 1463.27 1.463270e+03 1463.270 25.25 1 1.463270e+03 1463.27 8.919427e+04 8.919427e+04 0.00 NULL
2018 Dept. Of Homeless Services Computer Systems Manager 114462.50000 2.289250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.289250e+05 2.289250e+05 0.00 NULL
2018 Dept. Of Homeless Services Construction Project Manager 80076.66667 2.402300e+05 184.67 6.155667e+01 2.190 0.00 3 2.190000e+00 6.57 2.404147e+05 2.402366e+05 178.10 NULL
2018 Dept. Of Homeless Services Counselor 55818.75000 2.232750e+05 3418.67 8.546675e+02 309.275 96.00 4 3.092750e+02 1237.10 2.266937e+05 2.245121e+05 2181.57 NULL
2018 Dept. Of Homeless Services Deputy Commisioner 175741.00000 1.757410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.757410e+05 1.757410e+05 0.00 NULL
2018 Dept. Of Homeless Services Deputy Commissioner 175000.00000 3.500000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.500000e+05 3.500000e+05 0.00 NULL
2018 Dept. Of Homeless Services Electrician NA NA 402659.79 2.684399e+04 35018.770 4490.00 15 2.684399e+04 402659.79 NA NA NA NULL
2018 Dept. Of Homeless Services Electrician’s Helper NA NA 9945.42 4.972710e+03 4972.710 179.25 2 4.972710e+03 9945.42 NA NA NA NULL
2018 Dept. Of Homeless Services Executive Agency Counsel 99824.00000 9.982400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.982400e+04 9.982400e+04 0.00 NULL
2018 Dept. Of Homeless Services Executive Assistant To The Commissioner 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2018 Dept. Of Homeless Services Executive Program Specialist 112500.00000 2.250000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.250000e+05 2.250000e+05 0.00 NULL
2018 Dept. Of Homeless Services Fraud Investigator 47103.71429 6.264794e+06 931700.70 7.005268e+03 3038.590 23252.48 133 3.038590e+03 404132.47 7.196495e+06 6.668926e+06 527568.23 NULL
2018 Dept. Of Homeless Services General Counsel 164657.00000 1.646570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.646570e+05 1.646570e+05 0.00 NULL
2018 Dept. Of Homeless Services Housekeeper 40529.25000 1.621170e+05 74957.74 1.873944e+04 12187.090 2425.50 4 1.218709e+04 48748.36 2.370747e+05 2.108654e+05 26209.38 NULL
2018 Dept. Of Homeless Services Human Resources Technician 36295.00000 3.629500e+04 962.00 9.620000e+02 962.000 46.75 1 9.620000e+02 962.00 3.725700e+04 3.725700e+04 0.00 NULL
2018 Dept. Of Homeless Services Locksmith NA NA 5631.37 2.815685e+03 2815.685 99.75 2 2.815685e+03 5631.37 NA NA NA NULL
2018 Dept. Of Homeless Services Maintenance Worker NA NA 159204.65 1.061364e+04 11036.270 3582.75 15 1.061364e+04 159204.65 NA NA NA NULL
2018 Dept. Of Homeless Services Management Auditor 72585.00000 7.258500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.258500e+04 7.258500e+04 0.00 NULL
2018 Dept. Of Homeless Services Mechanical Engineer 84411.00000 8.441100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.441100e+04 8.441100e+04 0.00 NULL
2018 Dept. Of Homeless Services Motor Vehicle Operator 44706.04878 1.832948e+06 596356.96 1.454529e+04 8710.280 17937.87 41 8.710280e+03 357121.48 2.429305e+06 2.190069e+06 239235.48 NULL
2018 Dept. Of Homeless Services Motor Vehicle Supervisor 54252.66667 4.882740e+05 143254.64 1.591718e+04 17761.630 3371.75 9 1.591718e+04 143254.64 6.315286e+05 6.315286e+05 0.00 NULL
2018 Dept. Of Homeless Services Oiler NA NA 146342.77 1.330389e+04 13920.170 1544.00 11 1.330389e+04 146342.77 NA NA NA NULL
2018 Dept. Of Homeless Services Painter NA NA 10468.54 1.163171e+03 0.000 167.00 9 0.000000e+00 0.00 NA NA NA NULL
2018 Dept. Of Homeless Services Plumber NA NA 193491.65 9.674583e+03 9704.880 1794.00 20 9.674583e+03 193491.65 NA NA NA NULL
2018 Dept. Of Homeless Services Plumber’s Helper NA NA 13845.45 4.615150e+03 5567.100 182.00 3 4.615150e+03 13845.45 NA NA NA NULL
2018 Dept. Of Homeless Services Principal Administrative Associate - Lev 1 & 2 Non Supvr 57285.15000 2.291406e+06 110289.35 2.757234e+03 191.815 2599.50 40 1.918150e+02 7672.60 2.401695e+06 2.299079e+06 102616.75 NULL
2018 Dept. Of Homeless Services Procurement Analyst 54596.00000 5.459600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.459600e+04 5.459600e+04 0.00 NULL
2018 Dept. Of Homeless Services Recreation Director 44598.00000 8.919600e+04 9808.00 4.904000e+03 4904.000 261.50 2 4.904000e+03 9808.00 9.900400e+04 9.900400e+04 0.00 NULL
2018 Dept. Of Homeless Services Recreation Supervisor 55008.00000 5.500800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.500800e+04 5.500800e+04 0.00 NULL
2018 Dept. Of Homeless Services Research Assistant 53532.00000 5.353200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.353200e+04 5.353200e+04 0.00 NULL
2018 Dept. Of Homeless Services Secretary 46681.50000 1.867260e+05 302.40 7.560000e+01 0.000 10.00 4 0.000000e+00 0.00 1.870284e+05 1.867260e+05 302.40 NULL
2018 Dept. Of Homeless Services Secretary To The Commissioner 76000.00000 7.600000e+04 11430.41 1.143041e+04 11430.410 229.50 1 1.143041e+04 11430.41 8.743041e+04 8.743041e+04 0.00 NULL
2018 Dept. Of Homeless Services Senior Stationary Engineer NA NA 53364.21 5.336421e+04 53364.210 475.00 1 5.336421e+04 53364.21 NA NA NA NULL
2018 Dept. Of Homeless Services Sheet Metal Worker NA NA 53779.43 2.688972e+04 26889.715 497.50 2 2.688972e+04 53779.43 NA NA NA NULL
2018 Dept. Of Homeless Services Social Worker 54078.80000 1.892758e+06 38816.17 1.109033e+03 29.930 864.75 35 2.993000e+01 1047.55 1.931574e+06 1.893806e+06 37768.62 NULL
2018 Dept. Of Homeless Services Space Analyst 65802.25000 7.896270e+05 63682.01 5.306834e+03 202.965 1358.93 12 2.029650e+02 2435.58 8.533090e+05 7.920626e+05 61246.43 NULL
2018 Dept. Of Homeless Services Special Officer 37407.35826 3.602329e+07 5438516.60 5.647473e+03 4328.010 189138.45 963 4.328010e+03 4167873.63 4.146180e+07 4.019116e+07 1270642.97 NULL
2018 Dept. Of Homeless Services Staff Analyst 66928.11111 6.023530e+05 2477.65 2.752944e+02 0.000 52.00 9 0.000000e+00 0.00 6.048307e+05 6.023530e+05 2477.65 NULL
2018 Dept. Of Homeless Services Stationary Engineer NA NA 13946.06 6.973030e+03 6973.030 151.50 2 6.973030e+03 13946.06 NA NA NA NULL
2018 Dept. Of Homeless Services Stock Worker 33166.00000 1.989960e+05 1580.46 2.634100e+02 140.255 59.75 6 1.402550e+02 841.53 2.005765e+05 1.998375e+05 738.93 NULL
2018 Dept. Of Homeless Services Superintendent Of Adult Institutions 71597.90909 7.875770e+05 95970.44 8.724585e+03 7949.080 1802.50 11 7.949080e+03 87439.88 8.835474e+05 8.750169e+05 8530.56 NULL
2018 Dept. Of Homeless Services Supervising Special Officer 54502.52586 6.322293e+06 1331875.51 1.148169e+04 9537.990 33679.00 116 9.537990e+03 1106406.84 7.654169e+06 7.428700e+06 225468.67 NULL
2018 Dept. Of Homeless Services Supervisor Bricklayer NA NA 23847.29 2.384729e+04 23847.290 277.50 1 2.384729e+04 23847.29 NA NA NA NULL
2018 Dept. Of Homeless Services Supervisor Carpenter NA NA 56436.18 1.410905e+04 13173.730 697.50 4 1.317373e+04 52694.92 NA NA NA NULL
2018 Dept. Of Homeless Services Supervisor Electrician NA NA 124530.68 2.490614e+04 28678.870 1308.75 5 2.490614e+04 124530.68 NA NA NA NULL
2018 Dept. Of Homeless Services Supervisor I 54970.23333 1.649107e+06 127052.37 4.235079e+03 2191.845 3098.75 30 2.191845e+03 65755.35 1.776159e+06 1.714862e+06 61297.02 NULL
2018 Dept. Of Homeless Services Supervisor Ii 64740.00000 6.474000e+05 71251.68 7.125168e+03 4450.015 1449.50 10 4.450015e+03 44500.15 7.186517e+05 6.919002e+05 26751.53 NULL
2018 Dept. Of Homeless Services Supervisor Ii Social Work 69590.20000 1.739755e+06 114472.99 4.578920e+03 2794.260 2317.25 25 2.794260e+03 69856.50 1.854228e+06 1.809612e+06 44616.49 NULL
2018 Dept. Of Homeless Services Supervisor Of Mechanics NA NA 81758.66 1.021983e+04 2501.130 838.75 8 2.501130e+03 20009.04 NA NA NA NULL
2018 Dept. Of Homeless Services Supervisor Of Motor Transport 72060.00000 7.206000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.206000e+04 7.206000e+04 0.00 NULL
2018 Dept. Of Homeless Services Supervisor Of Stock Workers 55429.00000 1.662870e+05 58189.91 1.939664e+04 20897.240 1434.25 3 1.939664e+04 58189.91 2.244769e+05 2.244769e+05 0.00 NULL
2018 Dept. Of Homeless Services Supervisor Painter NA NA 5373.00 5.373000e+03 5373.000 75.00 1 5.373000e+03 5373.00 NA NA NA NULL
2018 Dept. Of Homeless Services Supervisor Plumber NA NA 53138.41 2.656921e+04 26569.205 445.00 2 2.656921e+04 53138.41 NA NA NA NULL
2018 District Attorney Kings County Accountant 68367.50000 1.367350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.367350e+05 1.367350e+05 0.00 NULL
2018 District Attorney Kings County Adm Manager-Non-Mgrl From M1/M2 79604.61538 1.034860e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.034860e+06 1.034860e+06 0.00 NULL
2018 District Attorney Kings County Administrative Chief 137361.00000 1.373610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.373610e+05 1.373610e+05 0.00 NULL
2018 District Attorney Kings County Administrative Community Relations Specialist 3524.50000 3.524500e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.524500e+03 3.524500e+03 0.00 NULL
2018 District Attorney Kings County Administrative Project Manager 96719.40000 4.835970e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.835970e+05 4.835970e+05 0.00 NULL
2018 District Attorney Kings County Administrative Staff Analyst 114137.20000 5.706860e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.706860e+05 5.706860e+05 0.00 NULL
2018 District Attorney Kings County Assistant District Attorney 86608.13302 4.936664e+07 0.00 0.000000e+00 0.000 0.00 570 0.000000e+00 0.00 4.936664e+07 4.936664e+07 0.00 NULL
2018 District Attorney Kings County Certified It Developer 123600.00000 1.236000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.236000e+05 1.236000e+05 0.00 NULL
2018 District Attorney Kings County City Research Scientist 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2018 District Attorney Kings County City Tax Auditor 69653.00000 6.965300e+04 419.36 4.193600e+02 419.360 9.00 1 4.193600e+02 419.36 7.007236e+04 7.007236e+04 0.00 NULL
2018 District Attorney Kings County Clerical Associate 43819.15385 5.696490e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 5.696490e+05 5.696490e+05 0.00 NULL
2018 District Attorney Kings County Community Assistant 34984.65124 3.393511e+06 73964.70 7.625227e+02 0.000 2776.50 97 0.000000e+00 0.00 3.467476e+06 3.393511e+06 73964.70 NULL
2018 District Attorney Kings County Community Associate 43833.40980 1.297469e+07 67545.29 2.281935e+02 0.000 1975.75 296 0.000000e+00 0.00 1.304223e+07 1.297469e+07 67545.29 NULL
2018 District Attorney Kings County Community Coordinator 64734.17213 3.948784e+06 41648.85 6.827680e+02 0.000 930.25 61 0.000000e+00 0.00 3.990433e+06 3.948784e+06 41648.85 NULL
2018 District Attorney Kings County Computer Associate 70241.20000 3.512060e+05 14832.61 2.966522e+03 1036.590 289.50 5 1.036590e+03 5182.95 3.660386e+05 3.563890e+05 9649.66 NULL
2018 District Attorney Kings County Computer Programmer Analyst 79500.00000 7.950000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.950000e+04 7.950000e+04 0.00 NULL
2018 District Attorney Kings County Computer Specialist 103740.00000 1.037400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.037400e+05 1.037400e+05 0.00 NULL
2018 District Attorney Kings County Computer Systems Manager 182787.00000 1.827870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.827870e+05 1.827870e+05 0.00 NULL
2018 District Attorney Kings County District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2018 District Attorney Kings County Executive Assistant 86363.38889 1.554541e+06 4438.59 2.465883e+02 0.000 69.75 18 0.000000e+00 0.00 1.558980e+06 1.554541e+06 4438.59 NULL
2018 District Attorney Kings County Executive Program Specialist 98310.00000 9.831000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.831000e+04 9.831000e+04 0.00 NULL
2018 District Attorney Kings County Media Services Technician 53350.20000 5.335020e+05 23149.70 2.314970e+03 1811.610 594.50 10 1.811610e+03 18116.10 5.566517e+05 5.516181e+05 5033.60 NULL
2018 District Attorney Kings County Office Assistant 36231.00000 3.623100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.623100e+04 3.623100e+04 0.00 NULL
2018 District Attorney Kings County Paralegal Aide 47960.33333 4.316430e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.316430e+05 4.316430e+05 0.00 NULL
2018 District Attorney Kings County Principal Administrative Associate - Lev 1 & 2 Non Supvr 63655.73333 9.548360e+05 13960.78 9.307187e+02 0.000 406.75 15 0.000000e+00 0.00 9.687968e+05 9.548360e+05 13960.78 NULL
2018 District Attorney Kings County Procurement Analyst 67803.00000 1.356060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.356060e+05 1.356060e+05 0.00 NULL
2018 District Attorney Kings County Rackets Investigator - Start >4-24-08 No Abc 57792.00000 4.045440e+05 53410.83 7.630119e+03 9754.450 1149.50 7 7.630119e+03 53410.83 4.579548e+05 4.579548e+05 0.00 NULL
2018 District Attorney Kings County Reporter/ Stenographer 50985.70588 8.667570e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 8.667570e+05 8.667570e+05 0.00 NULL
2018 District Attorney Kings County Secretary 47188.33333 2.831300e+05 1324.59 2.207650e+02 0.000 48.25 6 0.000000e+00 0.00 2.844546e+05 2.831300e+05 1324.59 NULL
2018 District Attorney Kings County Senior Rackets Investigator - Start >4-24-08 No Abc 65666.14286 4.596630e+05 11309.98 1.615711e+03 0.000 178.50 7 0.000000e+00 0.00 4.709730e+05 4.596630e+05 11309.98 NULL
2018 District Attorney Kings County Social Worker 46851.35923 1.874054e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.874054e+05 1.874054e+05 0.00 NULL
2018 District Attorney Kings County Special Officer 37752.00000 7.550400e+04 10950.09 5.475045e+03 5475.045 388.25 2 5.475045e+03 10950.09 8.645409e+04 8.645409e+04 0.00 NULL
2018 District Attorney Kings County Staff Analyst 65086.00000 6.508600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.508600e+04 6.508600e+04 0.00 NULL
2018 District Attorney Kings County Strategic Initiative Specialist 125539.00000 2.510780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.510780e+05 2.510780e+05 0.00 NULL
2018 District Attorney Kings County Supervising Accountant Investigator 84749.11111 7.627420e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.627420e+05 7.627420e+05 0.00 NULL
2018 District Attorney Kings County Supervising Rackets Investigator 109521.00000 1.095210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.095210e+05 1.095210e+05 0.00 NULL
2018 District Attorney Kings County Supervising Rackets Investigator Start >4-24-08 No Abc 75560.25000 3.022410e+05 6501.31 1.625328e+03 0.000 97.50 4 0.000000e+00 0.00 3.087423e+05 3.022410e+05 6501.31 NULL
2018 District Attorney Qns County *Certified Applications Developer 96726.00000 9.672600e+04 1118.40 1.118400e+03 1118.400 18.00 1 1.118400e+03 1118.40 9.784440e+04 9.784440e+04 0.00 NULL
2018 District Attorney Qns County Adm Manager-Non-Mgrl From M1/M2 80568.88889 7.251200e+05 43271.57 4.807952e+03 4953.530 855.75 9 4.807952e+03 43271.57 7.683916e+05 7.683916e+05 0.00 NULL
2018 District Attorney Qns County Administrative Manager 118657.00000 2.373140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.373140e+05 2.373140e+05 0.00 NULL
2018 District Attorney Qns County Administrative Public Information Specialist 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2018 District Attorney Qns County Administrative Staff Analyst 126788.60000 6.339430e+05 496.71 9.934200e+01 0.000 11.00 5 0.000000e+00 0.00 6.344397e+05 6.339430e+05 496.71 NULL
2018 District Attorney Qns County Agency Chief Contracting Officer 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2018 District Attorney Qns County Assistant District Attorney 97968.66876 3.350528e+07 158.69 4.640058e-01 0.000 7.00 342 0.000000e+00 0.00 3.350544e+07 3.350528e+07 158.69 NULL
2018 District Attorney Qns County Associate Project Manager 110418.00000 1.104180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.104180e+05 1.104180e+05 0.00 NULL
2018 District Attorney Qns County Certified It Administrator 119079.00000 1.190790e+05 6789.08 6.789080e+03 6789.080 93.00 1 6.789080e+03 6789.08 1.258681e+05 1.258681e+05 0.00 NULL
2018 District Attorney Qns County Certified It Developer 91392.00000 9.139200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.139200e+04 9.139200e+04 0.00 NULL
2018 District Attorney Qns County City Seasonal Aide 3585.88333 3.227295e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 3.227295e+04 3.227295e+04 0.00 NULL
2018 District Attorney Qns County Clerical Associate 49914.85000 9.982970e+05 23828.38 1.191419e+03 0.000 658.75 20 0.000000e+00 0.00 1.022125e+06 9.982970e+05 23828.38 NULL
2018 District Attorney Qns County Community Assistant 35341.34694 1.731726e+06 125599.73 2.563260e+03 281.060 4959.00 49 2.810600e+02 13771.94 1.857326e+06 1.745498e+06 111827.79 NULL
2018 District Attorney Qns County Community Associate 39230.51535 5.845347e+06 162182.26 1.088472e+03 19.530 5343.25 149 1.953000e+01 2909.97 6.007529e+06 5.848257e+06 159272.29 NULL
2018 District Attorney Qns County Community Coordinator 68826.40000 1.376528e+06 78428.46 3.921423e+03 9.580 1743.00 20 9.580000e+00 191.60 1.454956e+06 1.376720e+06 78236.86 NULL
2018 District Attorney Qns County Community Service Aide 23856.39360 1.669948e+05 13602.34 1.943191e+03 426.360 732.00 7 4.263600e+02 2984.52 1.805971e+05 1.699793e+05 10617.82 NULL
2018 District Attorney Qns County Computer Associate 71655.66667 2.149670e+05 2039.62 6.798733e+02 836.150 43.50 3 6.798733e+02 2039.62 2.170066e+05 2.170066e+05 0.00 NULL
2018 District Attorney Qns County Computer Specialist 87640.50000 1.752810e+05 17569.75 8.784875e+03 8784.875 360.50 2 8.784875e+03 17569.75 1.928508e+05 1.928508e+05 0.00 NULL
2018 District Attorney Qns County Director Of Public Information 150392.00000 1.503920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503920e+05 1.503920e+05 0.00 NULL
2018 District Attorney Qns County District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2018 District Attorney Qns County Paralegal Aide 49710.72727 5.468180e+05 24167.81 2.197074e+03 0.000 622.00 11 0.000000e+00 0.00 5.709858e+05 5.468180e+05 24167.81 NULL
2018 District Attorney Qns County Principal Administrative Associate - Lev 1 & 2 Non Supvr 74472.60000 7.447260e+05 47667.04 4.766704e+03 11.455 831.00 10 1.145500e+01 114.55 7.923930e+05 7.448406e+05 47552.49 NULL
2018 District Attorney Qns County Private Secretary 96854.00000 1.937080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.937080e+05 1.937080e+05 0.00 NULL
2018 District Attorney Qns County Reporter/ Stenographer 63564.27778 1.144157e+06 16831.82 9.351011e+02 0.000 362.00 18 0.000000e+00 0.00 1.160989e+06 1.144157e+06 16831.82 NULL
2018 District Attorney Qns County Secretary 59568.57143 4.169800e+05 25587.15 3.655307e+03 0.000 566.25 7 0.000000e+00 0.00 4.425672e+05 4.169800e+05 25587.15 NULL
2018 District Attorney Qns County Special Assistant To Da 112803.36000 5.640168e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.640168e+05 5.640168e+05 0.00 NULL
2018 District Attorney Qns County Staff Analyst 92966.00000 9.296600e+04 54.42 5.442000e+01 54.420 1.00 1 5.442000e+01 54.42 9.302042e+04 9.302042e+04 0.00 NULL
2018 District Attorney Qns County Supervising Accountant Investigator 87141.00000 2.614230e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.614230e+05 2.614230e+05 0.00 NULL
2018 District Attorney Richmond Cou Administrative Procurement Analyst 101000.00000 1.010000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.010000e+05 1.010000e+05 0.00 NULL
2018 District Attorney Richmond Cou Administrative Public Information Specialist 72000.00000 7.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.200000e+04 7.200000e+04 0.00 NULL
2018 District Attorney Richmond Cou Administrative Staff Analyst 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2018 District Attorney Richmond Cou Assistant District Attorney 95529.27143 6.687049e+06 0.00 0.000000e+00 0.000 0.00 70 0.000000e+00 0.00 6.687049e+06 6.687049e+06 0.00 NULL
2018 District Attorney Richmond Cou Clerical Associate 55403.85714 3.878270e+05 16.26 2.322857e+00 0.000 0.50 7 0.000000e+00 0.00 3.878433e+05 3.878270e+05 16.26 NULL
2018 District Attorney Richmond Cou Community Assistant 40636.00000 8.127200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.127200e+04 8.127200e+04 0.00 NULL
2018 District Attorney Richmond Cou Community Associate 50691.66667 1.976975e+06 6570.15 1.684654e+02 0.000 176.75 39 0.000000e+00 0.00 1.983545e+06 1.976975e+06 6570.15 NULL
2018 District Attorney Richmond Cou Community Coordinator 68925.23077 8.960280e+05 10174.77 7.826746e+02 0.000 189.25 13 0.000000e+00 0.00 9.062028e+05 8.960280e+05 10174.77 NULL
2018 District Attorney Richmond Cou Computer Programmer Analyst 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2018 District Attorney Richmond Cou Computer Systems Manager 113318.50000 2.266370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.266370e+05 2.266370e+05 0.00 NULL
2018 District Attorney Richmond Cou District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2018 District Attorney Richmond Cou Paralegal Aide 61824.00000 6.182400e+04 2090.62 2.090620e+03 2090.620 38.23 1 2.090620e+03 2090.62 6.391462e+04 6.391462e+04 0.00 NULL
2018 District Attorney Richmond Cou Principal Administrative Associate - Lev 1 & 2 Non Supvr 69691.50000 1.393830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.393830e+05 1.393830e+05 0.00 NULL
2018 District Attorney Richmond Cou Reporter/ Stenographer 55907.41500 2.795371e+05 52.85 1.057000e+01 0.000 1.50 5 0.000000e+00 0.00 2.795899e+05 2.795371e+05 52.85 NULL
2018 District Attorney Richmond Cou Secretary 51524.00000 5.152400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.152400e+04 5.152400e+04 0.00 NULL
2018 District Attorney Richmond Cou Social Worker 62216.00000 1.244320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.244320e+05 1.244320e+05 0.00 NULL
2018 District Attorney Richmond Cou Special Assistant To The District Attorney 95571.42857 6.690000e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.690000e+05 6.690000e+05 0.00 NULL
2018 District Attorney-Manhattan Admin Contract Specialist 130295.00000 2.605900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.605900e+05 2.605900e+05 0.00 NULL
2018 District Attorney-Manhattan Administrative Chief 130506.49123 7.438870e+06 6573.82 1.153302e+02 0.000 142.00 57 0.000000e+00 0.00 7.445444e+06 7.438870e+06 6573.82 NULL
2018 District Attorney-Manhattan Administrative Education Analyst 121974.00000 1.219740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.219740e+05 1.219740e+05 0.00 NULL
2018 District Attorney-Manhattan Assistant District Attorney 106121.75747 6.176286e+07 0.00 0.000000e+00 0.000 0.00 582 0.000000e+00 0.00 6.176286e+07 6.176286e+07 0.00 NULL
2018 District Attorney-Manhattan Carpenter NA NA 2393.67 4.787340e+02 149.640 37.25 5 1.496400e+02 748.20 NA NA NA NULL
2018 District Attorney-Manhattan City Custodial Assistant 36423.94118 6.192070e+05 11341.07 6.671218e+02 85.860 382.50 17 8.586000e+01 1459.62 6.305481e+05 6.206666e+05 9881.45 NULL
2018 District Attorney-Manhattan City Laborer NA NA 25171.92 4.195320e+03 2814.535 409.50 6 2.814535e+03 16887.21 NA NA NA NULL
2018 District Attorney-Manhattan Clerical Associate 56695.38889 1.020517e+06 34951.75 1.941764e+03 258.560 848.25 18 2.585600e+02 4654.08 1.055469e+06 1.025171e+06 30297.67 NULL
2018 District Attorney-Manhattan College Aide 187.97694 3.496371e+04 0.00 0.000000e+00 0.000 0.00 186 0.000000e+00 0.00 3.496371e+04 3.496371e+04 0.00 NULL
2018 District Attorney-Manhattan Community Assistant 39017.43867 1.521680e+06 57844.38 1.483189e+03 44.020 2080.50 39 4.402000e+01 1716.78 1.579524e+06 1.523397e+06 56127.60 NULL
2018 District Attorney-Manhattan Community Associate 46535.16641 2.782803e+07 538916.31 9.011978e+02 0.000 16316.00 598 0.000000e+00 0.00 2.836695e+07 2.782803e+07 538916.31 NULL
2018 District Attorney-Manhattan Community Coordinator 77216.69775 9.960954e+06 243690.17 1.889071e+03 0.000 4466.00 129 0.000000e+00 0.00 1.020464e+07 9.960954e+06 243690.17 NULL
2018 District Attorney-Manhattan County Detective 59403.33333 5.346300e+05 49630.29 5.514477e+03 3055.770 1092.50 9 3.055770e+03 27501.93 5.842603e+05 5.621319e+05 22128.36 NULL
2018 District Attorney-Manhattan District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2018 District Attorney-Manhattan Electrician NA NA 9738.89 4.869445e+03 4869.445 115.75 2 4.869445e+03 9738.89 NA NA NA NULL
2018 District Attorney-Manhattan Electrician’s Helper NA NA 341.30 3.413000e+02 341.300 6.50 1 3.413000e+02 341.30 NA NA NA NULL
2018 District Attorney-Manhattan Engineering Technician 59596.50000 1.191930e+05 248.62 1.243100e+02 124.310 9.75 2 1.243100e+02 248.62 1.194416e+05 1.194416e+05 0.00 NULL
2018 District Attorney-Manhattan High Pressure Plant Tender NA NA 3434.97 3.434970e+03 3434.970 56.75 1 3.434970e+03 3434.97 NA NA NA NULL
2018 District Attorney-Manhattan Interpreter 56572.16667 3.394330e+05 10007.98 1.667997e+03 0.000 195.50 6 0.000000e+00 0.00 3.494410e+05 3.394330e+05 10007.98 NULL
2018 District Attorney-Manhattan Management Auditor 101102.00000 1.011020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.011020e+05 1.011020e+05 0.00 NULL
2018 District Attorney-Manhattan Media Services Technician 62639.58333 7.516750e+05 427426.92 3.561891e+04 25281.570 7799.25 12 2.528157e+04 303378.84 1.179102e+06 1.055054e+06 124048.08 NULL
2018 District Attorney-Manhattan Office Assistant 46728.50000 9.345700e+04 2645.59 1.322795e+03 1322.795 81.25 2 1.322795e+03 2645.59 9.610259e+04 9.610259e+04 0.00 NULL
2018 District Attorney-Manhattan Painter NA NA 752.24 3.761200e+02 376.120 12.00 2 3.761200e+02 752.24 NA NA NA NULL
2018 District Attorney-Manhattan Paralegal Aide 74575.00000 7.457500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.457500e+04 7.457500e+04 0.00 NULL
2018 District Attorney-Manhattan Photographer 57764.00000 1.732920e+05 38280.96 1.276032e+04 14606.370 933.75 3 1.276032e+04 38280.96 2.115730e+05 2.115730e+05 0.00 NULL
2018 District Attorney-Manhattan Principal Accountant Investigator 114881.57143 2.412513e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 2.412513e+06 2.412513e+06 0.00 NULL
2018 District Attorney-Manhattan Principal Administrative Associate - Lev 1 & 2 Non Supvr 79028.00000 5.531960e+05 506.09 7.229857e+01 0.000 11.25 7 0.000000e+00 0.00 5.537021e+05 5.531960e+05 506.09 NULL
2018 District Attorney-Manhattan Reporter/ Stenographer 75238.73077 1.956207e+06 2203.28 8.474154e+01 0.000 45.00 26 0.000000e+00 0.00 1.958410e+06 1.956207e+06 2203.28 NULL
2018 District Attorney-Manhattan Secretary 78979.50000 4.738770e+05 12174.16 2.029027e+03 910.970 225.00 6 9.109700e+02 5465.82 4.860512e+05 4.793428e+05 6708.34 NULL
2018 District Attorney-Manhattan Senior Accountant Investigator 72094.61467 1.081419e+06 54279.45 3.618630e+03 0.000 1007.50 15 0.000000e+00 0.00 1.135699e+06 1.081419e+06 54279.45 NULL
2018 District Attorney-Manhattan Senior Secretary 59684.00000 2.387360e+05 390.64 9.766000e+01 0.000 8.50 4 0.000000e+00 0.00 2.391266e+05 2.387360e+05 390.64 NULL
2018 District Attorney-Manhattan Special Officer 41835.20000 4.183520e+05 12399.60 1.239960e+03 949.845 397.00 10 9.498450e+02 9498.45 4.307516e+05 4.278505e+05 2901.15 NULL
2018 District Attorney-Manhattan Staff Analyst Trainee 78996.00000 7.899600e+04 2381.84 2.381840e+03 2381.840 51.50 1 2.381840e+03 2381.84 8.137784e+04 8.137784e+04 0.00 NULL
2018 District Attorney-Manhattan Supervising Accountant Investigator 72866.00000 7.286600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.286600e+04 7.286600e+04 0.00 NULL
2018 District Attorney-Manhattan Supervising Special Officer 51993.00000 1.039860e+05 1960.89 9.804450e+02 980.445 44.50 2 9.804450e+02 1960.89 1.059469e+05 1.059469e+05 0.00 NULL
2018 District Attorney-Manhattan Supervisor Electrician NA NA 1388.91 1.388910e+03 1388.910 15.50 1 1.388910e+03 1388.91 NA NA NA NULL
2018 District Attorney-Manhattan Supervisor Of Mechanics 124340.00000 1.243400e+05 13063.69 1.306369e+04 13063.690 143.25 1 1.306369e+04 13063.69 1.374037e+05 1.374037e+05 0.00 NULL
2018 District Attorney-Special Narc Administrative Chief 174463.25000 6.978530e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.978530e+05 6.978530e+05 0.00 NULL
2018 District Attorney-Special Narc Administrative Project Manager 156500.00000 1.565000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.565000e+05 1.565000e+05 0.00 NULL
2018 District Attorney-Special Narc Administrative Quality Assurance Specialist 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2018 District Attorney-Special Narc Assistant District Attorney 99508.06923 1.293605e+07 0.00 0.000000e+00 0.000 0.00 130 0.000000e+00 0.00 1.293605e+07 1.293605e+07 0.00 NULL
2018 District Attorney-Special Narc Clerical Associate 81553.50000 8.155350e+05 5136.22 5.136220e+02 0.000 75.75 10 0.000000e+00 0.00 8.206712e+05 8.155350e+05 5136.22 NULL
2018 District Attorney-Special Narc College Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2018 District Attorney-Special Narc Community Assistant 43801.00000 1.314030e+05 1212.48 4.041600e+02 257.590 53.25 3 2.575900e+02 772.77 1.326155e+05 1.321758e+05 439.71 NULL
2018 District Attorney-Special Narc Community Associate 54063.47727 2.378793e+06 22784.88 5.178382e+02 0.000 504.50 44 0.000000e+00 0.00 2.401578e+06 2.378793e+06 22784.88 NULL
2018 District Attorney-Special Narc Community Coordinator 86729.85714 1.214218e+06 1508.20 1.077286e+02 0.000 19.00 14 0.000000e+00 0.00 1.215726e+06 1.214218e+06 1508.20 NULL
2018 District Attorney-Special Narc Confidential Secy 91483.50000 1.829670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.829670e+05 1.829670e+05 0.00 NULL
2018 District Attorney-Special Narc Director Of Public Information 156000.00000 1.560000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.560000e+05 1.560000e+05 0.00 NULL
2018 District Attorney-Special Narc Paralegal Aide 82408.50000 1.648170e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.648170e+05 1.648170e+05 0.00 NULL
2018 District Attorney-Special Narc Reporter/ Stenographer 75669.28571 5.296850e+05 225.81 3.225857e+01 0.000 4.25 7 0.000000e+00 0.00 5.299108e+05 5.296850e+05 225.81 NULL
2018 District Attorney-Special Narc Secretary 74453.33333 2.233600e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.233600e+05 2.233600e+05 0.00 NULL
2018 District Attorney-Special Narc Special Assistant District Attorney 206416.00000 2.064160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.064160e+05 2.064160e+05 0.00 NULL
2018 District Attorney-Special Narc Supervising Computer Service Technician 82774.00000 8.277400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.277400e+04 8.277400e+04 0.00 NULL
2018 Doe Custodial Payrol Custodian Engineer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1392 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2018 Equal Employ Practices Comm Administrative Labor Relations Analyst 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2018 Equal Employ Practices Comm Administrative Staff Analyst 82500.00000 8.250000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.250000e+04 8.250000e+04 0.00 NULL
2018 Equal Employ Practices Comm Agency Attorney 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2018 Equal Employ Practices Comm City Research Scientist 90653.00000 3.626120e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.626120e+05 3.626120e+05 0.00 NULL
2018 Equal Employ Practices Comm Community Coordinator 55692.12000 2.227685e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.227685e+05 2.227685e+05 0.00 NULL
2018 Equal Employ Practices Comm Computer Associate 66000.00000 6.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.600000e+04 6.600000e+04 0.00 NULL
2018 Equal Employ Practices Comm Executive Agency Counsel 110339.00000 1.103390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.103390e+05 1.103390e+05 0.00 NULL
2018 Equal Employ Practices Comm Executive Secretary 65562.00000 6.556200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.556200e+04 6.556200e+04 0.00 NULL
2018 Equal Employ Practices Comm Labor Relations Analyst 63560.00000 6.356000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.356000e+04 6.356000e+04 0.00 NULL
2018 Financial Info Svcs Agency *Certified Wide Area Network Administrator 120982.00000 1.209820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.209820e+05 1.209820e+05 0.00 NULL
2018 Financial Info Svcs Agency Accountant 62318.00000 6.231800e+04 4418.15 4.418150e+03 4418.150 119.00 1 4.418150e+03 4418.15 6.673615e+04 6.673615e+04 0.00 NULL
2018 Financial Info Svcs Agency Adm Manager-Non-Mgrl From M1/M2 75722.00000 3.028880e+05 522.09 1.305225e+02 0.000 12.75 4 0.000000e+00 0.00 3.034101e+05 3.028880e+05 522.09 NULL
2018 Financial Info Svcs Agency Admin Contract Specialist 131485.00000 1.314850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.314850e+05 1.314850e+05 0.00 NULL
2018 Financial Info Svcs Agency Administrative Procurement Analyst 88327.40000 4.416370e+05 1235.38 2.470760e+02 0.000 25.50 5 0.000000e+00 0.00 4.428724e+05 4.416370e+05 1235.38 NULL
2018 Financial Info Svcs Agency Administrative Space Analyst 136391.00000 2.727820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.727820e+05 2.727820e+05 0.00 NULL
2018 Financial Info Svcs Agency Administrative Staff Analyst 106943.83333 1.283326e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.283326e+06 1.283326e+06 0.00 NULL
2018 Financial Info Svcs Agency Agency Attorney 100296.00000 1.002960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.002960e+05 1.002960e+05 0.00 NULL
2018 Financial Info Svcs Agency Agency Chief Contracting Officer 138328.00000 1.383280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.383280e+05 1.383280e+05 0.00 NULL
2018 Financial Info Svcs Agency Associate Staff Analyst 87841.00000 8.784100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.784100e+04 8.784100e+04 0.00 NULL
2018 Financial Info Svcs Agency Certified It Administrator 97562.00000 9.756200e+04 160.97 1.609700e+02 160.970 3.00 1 1.609700e+02 160.97 9.772297e+04 9.772297e+04 0.00 NULL
2018 Financial Info Svcs Agency City Attendant 37477.00000 3.747700e+04 14918.36 1.491836e+04 14918.360 500.75 1 1.491836e+04 14918.36 5.239536e+04 5.239536e+04 0.00 NULL
2018 Financial Info Svcs Agency City Custodial Assistant 32909.33333 9.872800e+04 654.20 2.180667e+02 74.070 17.75 3 7.407000e+01 222.21 9.938220e+04 9.895021e+04 431.99 NULL
2018 Financial Info Svcs Agency Clerical Associate 40936.67500 1.228100e+05 53.51 1.783667e+01 0.000 2.00 3 0.000000e+00 0.00 1.228635e+05 1.228100e+05 53.51 NULL
2018 Financial Info Svcs Agency College Aide 13903.17500 1.390317e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.390317e+04 1.390317e+04 0.00 NULL
2018 Financial Info Svcs Agency College Aide - Assignment Levels Ii And Iii 14305.30010 4.291590e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.291590e+04 4.291590e+04 0.00 NULL
2018 Financial Info Svcs Agency Community Assistant 37500.00000 3.750000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.750000e+04 3.750000e+04 0.00 NULL
2018 Financial Info Svcs Agency Community Associate 48368.00000 3.869440e+05 11150.41 1.393801e+03 0.000 331.00 8 0.000000e+00 0.00 3.980944e+05 3.869440e+05 11150.41 NULL
2018 Financial Info Svcs Agency Community Coordinator 67480.50000 6.748050e+05 2066.37 2.066370e+02 0.000 41.00 10 0.000000e+00 0.00 6.768714e+05 6.748050e+05 2066.37 NULL
2018 Financial Info Svcs Agency Computer Aide-Non-Spvr 55398.00000 5.539800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.539800e+04 5.539800e+04 0.00 NULL
2018 Financial Info Svcs Agency Computer Associate 71927.16667 3.452504e+06 208724.12 4.348419e+03 2326.835 3896.25 48 2.326835e+03 111688.08 3.661228e+06 3.564192e+06 97036.04 NULL
2018 Financial Info Svcs Agency Computer Operations Manager 125241.00000 1.252410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.252410e+05 1.252410e+05 0.00 NULL
2018 Financial Info Svcs Agency Computer Programmer Analyst 62140.00000 1.242800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.242800e+05 1.242800e+05 0.00 NULL
2018 Financial Info Svcs Agency Computer Specialist 102910.12727 5.660057e+06 73.00 1.327273e+00 0.000 1.50 55 0.000000e+00 0.00 5.660130e+06 5.660057e+06 73.00 NULL
2018 Financial Info Svcs Agency Computer Systems Manager 129324.67373 3.052062e+07 0.00 0.000000e+00 0.000 0.00 236 0.000000e+00 0.00 3.052062e+07 3.052062e+07 0.00 NULL
2018 Financial Info Svcs Agency Executive Agency Counsel 165497.37500 6.619895e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.619895e+05 6.619895e+05 0.00 NULL
2018 Financial Info Svcs Agency Executive Director 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Financial Info Svcs Agency It Automation And Monitoring Engineer 107123.25000 8.569860e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.569860e+05 8.569860e+05 0.00 NULL
2018 Financial Info Svcs Agency It Infrastructure Engineer 116276.20000 5.813810e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.813810e+05 5.813810e+05 0.00 NULL
2018 Financial Info Svcs Agency It Project Specialist 110395.11111 9.935560e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.935560e+05 9.935560e+05 0.00 NULL
2018 Financial Info Svcs Agency It Security Specialist 89292.07692 1.160797e+06 18837.95 1.449073e+03 0.000 361.25 13 0.000000e+00 0.00 1.179635e+06 1.160797e+06 18837.95 NULL
2018 Financial Info Svcs Agency Motor Vehicle Operator 46476.00000 4.647600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.647600e+04 4.647600e+04 0.00 NULL
2018 Financial Info Svcs Agency Nycaps Process Analyst 107924.00000 1.079240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.079240e+05 1.079240e+05 0.00 NULL
2018 Financial Info Svcs Agency Principal Administrative Associate - Lev 1 & 2 Non Supvr 63300.50000 3.798030e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.798030e+05 3.798030e+05 0.00 NULL
2018 Financial Info Svcs Agency Procurement Analyst 92428.00000 9.242800e+04 1560.68 1.560680e+03 1560.680 27.50 1 1.560680e+03 1560.68 9.398868e+04 9.398868e+04 0.00 NULL
2018 Financial Info Svcs Agency Secretary 58561.00000 5.856100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.856100e+04 5.856100e+04 0.00 NULL
2018 Financial Info Svcs Agency Senior It Architect 117230.00000 2.344600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.344600e+05 2.344600e+05 0.00 NULL
2018 Financial Info Svcs Agency Staff Analyst 65260.00000 1.957800e+05 450.24 1.500800e+02 0.000 11.50 3 0.000000e+00 0.00 1.962302e+05 1.957800e+05 450.24 NULL
2018 Financial Info Svcs Agency Supervisor Of Office Machine Operations 49043.50000 9.808700e+04 18075.77 9.037885e+03 9037.885 531.00 2 9.037885e+03 18075.77 1.161628e+05 1.161628e+05 0.00 NULL
2018 Financial Info Svcs Agency Supervisor Of Stock Workers 78151.00000 7.815100e+04 43.05 4.305000e+01 43.050 1.00 1 4.305000e+01 43.05 7.819405e+04 7.819405e+04 0.00 NULL
2018 Financial Info Svcs Agency Telecommunications Associate 82741.00000 1.654820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.654820e+05 1.654820e+05 0.00 NULL
2018 Fire Department *Certified Applications Developer 98489.00000 9.848900e+04 10243.59 1.024359e+04 10243.590 175.75 1 1.024359e+04 10243.59 1.087326e+05 1.087326e+05 0.00 NULL
2018 Fire Department Accountant 60922.75000 2.436910e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.436910e+05 2.436910e+05 0.00 NULL
2018 Fire Department Actuarial Specialist Level Ii, Oj 95617.00000 9.561700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.561700e+04 9.561700e+04 0.00 NULL
2018 Fire Department Adm Manager-Non-Mgrl From M1/M2 74369.87624 5.875220e+06 266080.86 3.368112e+03 952.940 5516.00 79 9.529400e+02 75282.26 6.141301e+06 5.950502e+06 190798.60 NULL
2018 Fire Department Admin Community Relations Specialist 77048.81000 8.475369e+05 68998.62 6.272602e+03 721.330 1465.50 11 7.213300e+02 7934.63 9.165355e+05 8.554715e+05 61063.99 NULL
2018 Fire Department Admin Inspector 75611.20000 3.780560e+05 155385.38 3.107708e+04 28820.070 2852.50 5 2.882007e+04 144100.35 5.334414e+05 5.221563e+05 11285.03 NULL
2018 Fire Department Admin Tests & Meas Spec 137503.00000 1.375030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.375030e+05 1.375030e+05 0.00 NULL
2018 Fire Department Administration Public Record Officer 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2018 Fire Department Administrative Architect 121532.00000 1.215320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.215320e+05 1.215320e+05 0.00 NULL
2018 Fire Department Administrative Blasting Inspector 110000.00000 2.200000e+05 25877.05 1.293852e+04 12938.525 468.50 2 1.293852e+04 25877.05 2.458770e+05 2.458770e+05 0.00 NULL
2018 Fire Department Administrative Community Relations Specialist 146316.00000 1.463160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.463160e+05 1.463160e+05 0.00 NULL
2018 Fire Department Administrative Construction Project Manager 138572.50000 2.771450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.771450e+05 2.771450e+05 0.00 NULL
2018 Fire Department Administrative Director Of Marine Maintenance 120510.00000 1.205100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.205100e+05 1.205100e+05 0.00 NULL
2018 Fire Department Administrative Engineer 115405.25000 4.616210e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.616210e+05 4.616210e+05 0.00 NULL
2018 Fire Department Administrative Fire Protection Inspector 98697.27273 1.085670e+06 32062.65 2.914786e+03 0.000 521.00 11 0.000000e+00 0.00 1.117733e+06 1.085670e+06 32062.65 NULL
2018 Fire Department Administrative Graphic Artist 83943.00000 8.394300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.394300e+04 8.394300e+04 0.00 NULL
2018 Fire Department Administrative Inspector 97432.00000 1.948640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.948640e+05 1.948640e+05 0.00 NULL
2018 Fire Department Administrative Investigator 104996.25000 4.199850e+05 -5257.38 -1.314345e+03 0.000 0.00 4 -1.314345e+03 -5257.38 4.147276e+05 4.147276e+05 0.00 NULL
2018 Fire Department Administrative Labor Relations Analyst 121099.50000 2.421990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.421990e+05 2.421990e+05 0.00 NULL
2018 Fire Department Administrative Procurement Analyst 91381.18182 1.005193e+06 11423.55 1.038505e+03 0.000 281.50 11 0.000000e+00 0.00 1.016617e+06 1.005193e+06 11423.55 NULL
2018 Fire Department Administrative Project Manager 108392.42105 2.059456e+06 4707.28 2.477516e+02 0.000 83.50 19 0.000000e+00 0.00 2.064163e+06 2.059456e+06 4707.28 NULL
2018 Fire Department Administrative Public Information Specialist 106238.25000 4.249530e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.249530e+05 4.249530e+05 0.00 NULL
2018 Fire Department Administrative Quality Assurance Specialist 54134.73000 5.413473e+04 764.65 7.646500e+02 764.650 18.00 1 7.646500e+02 764.65 5.489938e+04 5.489938e+04 0.00 NULL
2018 Fire Department Administrative Retirement Benefits Specialist 112488.75000 4.499550e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.499550e+05 4.499550e+05 0.00 NULL
2018 Fire Department Administrative Staff Analyst 94868.19075 6.830510e+06 116507.62 1.618161e+03 0.000 1821.00 72 0.000000e+00 0.00 6.947017e+06 6.830510e+06 116507.62 NULL
2018 Fire Department Administrative Storekeeper 133685.00000 1.336850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.336850e+05 1.336850e+05 0.00 NULL
2018 Fire Department Administrative Supervisor Of Building Maintenance 127652.50000 2.553050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.553050e+05 2.553050e+05 0.00 NULL
2018 Fire Department Administrator Of Medical Affairs 198846.00000 1.988460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.988460e+05 1.988460e+05 0.00 NULL
2018 Fire Department Agency Attorney 89700.70240 2.242518e+06 40136.79 1.605472e+03 0.000 594.75 25 0.000000e+00 0.00 2.282654e+06 2.242518e+06 40136.79 NULL
2018 Fire Department Agency Chief Contracting Officer 159720.00000 1.597200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.597200e+05 1.597200e+05 0.00 NULL
2018 Fire Department Agency Deputy Medical Director 163987.25000 1.311898e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.311898e+06 1.311898e+06 0.00 NULL
2018 Fire Department Architect 63074.00000 6.307400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.307400e+04 6.307400e+04 0.00 NULL
2018 Fire Department Assistant Architect 61400.00000 6.140000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.140000e+04 6.140000e+04 0.00 NULL
2018 Fire Department Assistant Chemical Engineer 70415.00000 1.408300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.408300e+05 1.408300e+05 0.00 NULL
2018 Fire Department Assistant Chief Fire Marshal 200470.00000 2.004700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.004700e+05 2.004700e+05 0.00 NULL
2018 Fire Department Assistant Chief Of Department 224369.33333 3.365540e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 3.365540e+06 3.365540e+06 0.00 NULL
2018 Fire Department Assistant Civil Engineer 61104.00000 6.110400e+04 3476.45 3.476450e+03 3476.450 85.00 1 3.476450e+03 3476.45 6.458045e+04 6.458045e+04 0.00 NULL
2018 Fire Department Assistant Commissioner 158237.85714 1.107665e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.107665e+06 1.107665e+06 0.00 NULL
2018 Fire Department Assistant Electrical Engineer 65006.33333 1.950190e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.950190e+05 1.950190e+05 0.00 NULL
2018 Fire Department Assistant Environmental Engineer 72535.00000 7.253500e+04 40.56 4.056000e+01 40.560 1.00 1 4.056000e+01 40.56 7.257556e+04 7.257556e+04 0.00 NULL
2018 Fire Department Assistant Mechanical Engineer 64104.50000 1.282090e+05 17316.88 8.658440e+03 8658.440 338.00 2 8.658440e+03 17316.88 1.455259e+05 1.455259e+05 0.00 NULL
2018 Fire Department Associate Commissioner 194395.00000 1.943950e+05 19092.61 1.909261e+04 19092.610 307.25 1 1.909261e+04 19092.61 2.134876e+05 2.134876e+05 0.00 NULL
2018 Fire Department Associate Fire Protection Inspector 67234.89238 1.499338e+07 3244858.80 1.455094e+04 12629.110 61462.77 223 1.262911e+04 2816291.53 1.823824e+07 1.780967e+07 428567.27 NULL
2018 Fire Department Associate Inspector 65165.42105 1.238143e+06 553187.00 2.911511e+04 26137.960 11138.25 19 2.613796e+04 496621.24 1.791330e+06 1.734764e+06 56565.76 NULL
2018 Fire Department Associate Investigator 55099.66667 1.652990e+05 16007.78 5.335927e+03 2375.130 420.25 3 2.375130e+03 7125.39 1.813068e+05 1.724244e+05 8882.39 NULL
2018 Fire Department Associate Project Manager 80878.18750 1.294051e+06 34792.31 2.174519e+03 0.000 613.75 16 0.000000e+00 0.00 1.328843e+06 1.294051e+06 34792.31 NULL
2018 Fire Department Associate Retirement Benefits Examiner 61937.80000 3.096890e+05 1823.67 3.647340e+02 129.920 11.50 5 1.299200e+02 649.60 3.115127e+05 3.103386e+05 1174.07 NULL
2018 Fire Department Associate Staff Analyst 81579.94444 1.468439e+06 18156.35 1.008686e+03 0.000 370.00 18 0.000000e+00 0.00 1.486595e+06 1.468439e+06 18156.35 NULL
2018 Fire Department Attending Physician 43410.29637 3.038721e+05 72.14 1.030571e+01 0.000 1.00 7 0.000000e+00 0.00 3.039442e+05 3.038721e+05 72.14 NULL
2018 Fire Department Auto Machinist NA NA 29198.48 9.732827e+03 1178.780 444.50 3 1.178780e+03 3536.34 NA NA NA NULL
2018 Fire Department Auto Mechanic NA NA 3057448.16 2.351883e+04 21351.135 49133.22 130 2.135113e+04 2775647.55 NA NA NA NULL
2018 Fire Department Automotive Service Worker 42355.68182 9.318250e+05 195139.27 8.869967e+03 5604.015 5926.50 22 5.604015e+03 123288.33 1.126964e+06 1.055113e+06 71850.94 NULL
2018 Fire Department Battalion Chief 156528.58268 5.963739e+07 458086.79 1.202328e+03 0.000 4267.67 381 0.000000e+00 0.00 6.009548e+07 5.963739e+07 458086.79 NULL
2018 Fire Department Bio-Medical Equipment Technician 50206.00000 5.020600e+04 11111.28 1.111128e+04 11111.280 243.00 1 1.111128e+04 11111.28 6.131728e+04 6.131728e+04 0.00 NULL
2018 Fire Department Blacksmith’s Helper NA NA 30906.78 3.090678e+04 30906.780 545.50 1 3.090678e+04 30906.78 NA NA NA NULL
2018 Fire Department Captain 122517.21176 7.289774e+07 23742183.62 3.990283e+04 39846.900 232939.99 595 3.984690e+04 23708905.50 9.663992e+07 9.660665e+07 33278.12 NULL
2018 Fire Department Carpenter NA NA 217782.75 1.146225e+04 5648.930 2945.25 19 5.648930e+03 107329.67 NA NA NA NULL
2018 Fire Department Case - Management Nurse 72757.82428 2.109977e+06 6496.59 2.240203e+02 0.000 100.25 29 0.000000e+00 0.00 2.116473e+06 2.109977e+06 6496.59 NULL
2018 Fire Department Cashier 44201.57250 4.420157e+04 4013.38 4.013380e+03 4013.380 141.75 1 4.013380e+03 4013.38 4.821495e+04 4.821495e+04 0.00 NULL
2018 Fire Department Cement Mason NA NA 52129.97 2.606499e+04 26064.985 574.00 2 2.606499e+04 52129.97 NA NA NA NULL
2018 Fire Department Certified It Administrator 89137.47750 1.069650e+06 125119.90 1.042666e+04 4497.130 1804.25 12 4.497130e+03 53965.56 1.194770e+06 1.123615e+06 71154.34 NULL
2018 Fire Department Certified It Developer 102870.00000 4.114800e+05 9278.04 2.319510e+03 0.000 150.75 4 0.000000e+00 0.00 4.207580e+05 4.114800e+05 9278.04 NULL
2018 Fire Department Chaplain 27320.12500 2.185610e+05 8669.71 1.083714e+03 205.150 320.50 8 2.051500e+02 1641.20 2.272307e+05 2.202022e+05 7028.51 NULL
2018 Fire Department Chief Fire Marshal 219190.00000 4.383800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.383800e+05 4.383800e+05 0.00 NULL
2018 Fire Department Chief Of Department 225826.00000 2.258260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.258260e+05 2.258260e+05 0.00 NULL
2018 Fire Department City Laborer NA NA 158601.08 1.586011e+04 12145.740 2875.50 10 1.214574e+04 121457.40 NA NA NA NULL
2018 Fire Department City Medical Specialist 58859.26137 1.294904e+06 67108.55 3.050389e+03 0.000 853.75 22 0.000000e+00 0.00 1.362012e+06 1.294904e+06 67108.55 NULL
2018 Fire Department City Research Scientist 85256.84615 1.108339e+06 3794.45 2.918808e+02 0.000 68.50 13 0.000000e+00 0.00 1.112133e+06 1.108339e+06 3794.45 NULL
2018 Fire Department Civil Engineer 96470.00000 9.647000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.647000e+04 9.647000e+04 0.00 NULL
2018 Fire Department Clerical Associate 46491.40079 4.323700e+06 352856.64 3.794157e+03 41.030 9861.75 93 4.103000e+01 3815.79 4.676557e+06 4.327516e+06 349040.85 NULL
2018 Fire Department Commissioner 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Fire Department Communication Electrician NA NA 1454184.27 2.308229e+04 21413.300 18544.50 63 2.141330e+04 1349037.90 NA NA NA NULL
2018 Fire Department Community Associate 40969.44460 5.735722e+05 54941.33 3.924381e+03 220.770 1602.75 14 2.207700e+02 3090.78 6.285136e+05 5.766630e+05 51850.55 NULL
2018 Fire Department Community Coordinator 60601.50000 1.818045e+06 231637.74 7.721258e+03 4837.450 5147.75 30 4.837450e+03 145123.50 2.049683e+06 1.963168e+06 86514.24 NULL
2018 Fire Department Computer Associate 71420.62222 3.213928e+06 579551.66 1.287893e+04 6150.750 10593.50 45 6.150750e+03 276783.75 3.793480e+06 3.490712e+06 302767.91 NULL
2018 Fire Department Computer Specialist 95583.16667 6.308489e+06 168340.98 2.550621e+03 136.945 2461.25 66 1.369450e+02 9038.37 6.476830e+06 6.317527e+06 159302.61 NULL
2018 Fire Department Computer Systems Manager 128477.80000 3.211945e+06 2.59 1.036000e-01 0.000 0.00 25 0.000000e+00 0.00 3.211948e+06 3.211945e+06 2.59 NULL
2018 Fire Department Construction Project Manager 72652.00000 7.265200e+04 9444.90 9.444900e+03 9444.900 166.50 1 9.444900e+03 9444.90 8.209690e+04 8.209690e+04 0.00 NULL
2018 Fire Department Counsel 172276.00000 1.722760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.722760e+05 1.722760e+05 0.00 NULL
2018 Fire Department Customer Information Representative Ma L 1549 51255.00000 1.025100e+05 1997.47 9.987350e+02 998.735 51.00 2 9.987350e+02 1997.47 1.045075e+05 1.045075e+05 0.00 NULL
2018 Fire Department Deputy Assistant Chief Of Department 219190.00000 1.972710e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.972710e+06 1.972710e+06 0.00 NULL
2018 Fire Department Deputy Chief 180890.56000 1.356679e+07 0.00 0.000000e+00 0.000 0.00 75 0.000000e+00 0.00 1.356679e+07 1.356679e+07 0.00 NULL
2018 Fire Department Deputy Commissioner 209770.00000 1.048850e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.048850e+06 1.048850e+06 0.00 NULL
2018 Fire Department Director 108261.50000 2.165230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.165230e+05 2.165230e+05 0.00 NULL
2018 Fire Department Electrical Engineer 103000.00000 1.030000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030000e+05 1.030000e+05 0.00 NULL
2018 Fire Department Electrician NA NA 328648.31 1.825824e+04 22778.485 3836.25 18 1.825824e+04 328648.31 NA NA NA NULL
2018 Fire Department Emergency Medical Specialist Trainee 32521.00000 2.926890e+06 0.00 0.000000e+00 0.000 0.00 90 0.000000e+00 0.00 2.926890e+06 2.926890e+06 0.00 NULL
2018 Fire Department Emergency Medical Specialist-Emt 44034.96555 1.278335e+08 19807135.30 6.822988e+03 4029.600 530664.41 2903 4.029600e+03 11697928.80 1.476406e+08 1.395314e+08 8109206.50 NULL
2018 Fire Department Emergency Medical Specialist-Paramedic 61875.46450 5.141851e+07 13296837.80 1.600101e+04 13508.660 259318.84 831 1.350866e+04 11225696.46 6.471535e+07 6.264421e+07 2071141.34 NULL
2018 Fire Department Employee Assistance Program Specialist 55758.05507 7.806128e+05 4453.98 3.181414e+02 0.000 116.00 14 0.000000e+00 0.00 7.850668e+05 7.806128e+05 4453.98 NULL
2018 Fire Department Engineering Technician 52460.00000 5.246000e+04 18606.04 1.860604e+04 18606.040 466.75 1 1.860604e+04 18606.04 7.106604e+04 7.106604e+04 0.00 NULL
2018 Fire Department Executive Agency Counsel 142715.73333 2.140736e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 2.140736e+06 2.140736e+06 0.00 NULL
2018 Fire Department Executive Program Specialist 119480.00000 1.194800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.194800e+05 1.194800e+05 0.00 NULL
2018 Fire Department Fingerprint Technician Trainee 29204.00000 2.920400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.920400e+04 2.920400e+04 0.00 NULL
2018 Fire Department Fire Alarm Dispatcher 57111.19745 8.966458e+06 2831689.39 1.803624e+04 17208.560 73132.55 157 1.720856e+04 2701743.92 1.179815e+07 1.166820e+07 129945.47 NULL
2018 Fire Department Fire Marshal 95527.00000 1.194088e+07 3428169.00 2.742535e+04 22139.950 42918.12 125 2.213995e+04 2767493.75 1.536904e+07 1.470837e+07 660675.25 NULL
2018 Fire Department Fire Medical Officer 148340.07692 3.856842e+06 628.72 2.418154e+01 0.000 8.00 26 0.000000e+00 0.00 3.857471e+06 3.856842e+06 628.72 NULL
2018 Fire Department Fire Protection Inspector 50722.40411 7.405471e+06 580703.35 3.977420e+03 995.545 15001.42 146 9.955450e+02 145349.57 7.986174e+06 7.550821e+06 435353.78 NULL
2018 Fire Department Firefighter 73401.61962 6.532010e+08 186719404.70 2.098207e+04 19381.440 2992010.47 8899 1.938144e+04 172475434.56 8.399204e+08 8.256764e+08 14243970.14 NULL
2018 Fire Department First Deputy Commissioner 225990.00000 4.519800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.519800e+05 4.519800e+05 0.00 NULL
2018 Fire Department Head Nurse 84004.75000 3.360190e+05 1758.28 4.395700e+02 434.705 30.00 4 4.347050e+02 1738.82 3.377773e+05 3.377578e+05 19.46 NULL
2018 Fire Department Industrial Hygienist 50733.00000 5.073300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.073300e+04 5.073300e+04 0.00 NULL
2018 Fire Department Institutional Aide 37259.14286 2.608140e+05 39200.97 5.600139e+03 212.950 1341.75 7 2.129500e+02 1490.65 3.000150e+05 2.623047e+05 37710.32 NULL
2018 Fire Department Investigator 46773.56493 7.951506e+05 68207.80 4.012224e+03 2747.800 1997.25 17 2.747800e+03 46712.60 8.633584e+05 8.418632e+05 21495.20 NULL
2018 Fire Department Investigator Empl Disc 62268.25000 4.981460e+05 34086.93 4.260866e+03 2388.270 679.25 8 2.388270e+03 19106.16 5.322329e+05 5.172522e+05 14980.77 NULL
2018 Fire Department It Infrastructure Engineer 130810.00000 1.308100e+05 2944.48 2.944480e+03 2944.480 37.50 1 2.944480e+03 2944.48 1.337545e+05 1.337545e+05 0.00 NULL
2018 Fire Department Lieutenant 104265.00738 1.695349e+08 48379942.82 2.975396e+04 27766.380 565433.84 1626 2.776638e+04 45148133.88 2.179148e+08 2.146830e+08 3231808.94 NULL
2018 Fire Department Locksmith NA NA 44156.44 1.103911e+04 10542.985 1080.75 4 1.054299e+04 42171.94 NA NA NA NULL
2018 Fire Department Machinist NA NA 28708.27 2.870827e+04 28708.270 521.50 1 2.870827e+04 28708.27 NA NA NA NULL
2018 Fire Department Maintenance Worker NA NA 3026.88 3.026880e+03 3026.880 82.25 1 3.026880e+03 3026.88 NA NA NA NULL
2018 Fire Department Manager Of Radio Repair Operations 115872.00000 1.158720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.158720e+05 1.158720e+05 0.00 NULL
2018 Fire Department Marine Engineer 96947.00000 1.841993e+06 1329798.41 6.998939e+04 80392.110 16443.88 19 6.998939e+04 1329798.41 3.171791e+06 3.171791e+06 0.00 NULL
2018 Fire Department Marine Maintenance Mechanic 73812.00000 3.690600e+05 30259.60 6.051920e+03 7958.800 670.00 5 6.051920e+03 30259.60 3.993196e+05 3.993196e+05 0.00 NULL
2018 Fire Department Mechanical Engineering Intern 54899.00000 5.489900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.489900e+04 5.489900e+04 0.00 NULL
2018 Fire Department Metal Work Mechanic 84906.00000 8.490600e+04 5184.58 5.184580e+03 5184.580 85.00 1 5.184580e+03 5184.58 9.009058e+04 9.009058e+04 0.00 NULL
2018 Fire Department Motor Vehicle Operator 45767.56812 9.153514e+05 123990.81 6.199541e+03 3300.405 3398.32 20 3.300405e+03 66008.10 1.039342e+06 9.813595e+05 57982.71 NULL
2018 Fire Department Motor Vehicle Supervisor 55306.00000 1.659180e+05 37933.47 1.264449e+04 11260.400 887.00 3 1.126040e+04 33781.20 2.038515e+05 1.996992e+05 4152.27 NULL
2018 Fire Department Oiler NA NA 177338.04 4.433451e+04 51684.095 1938.75 4 4.433451e+04 177338.04 NA NA NA NULL
2018 Fire Department Painter NA NA 39366.37 1.968319e+04 19683.185 628.00 2 1.968319e+04 39366.37 NA NA NA NULL
2018 Fire Department Physician 44920.86324 2.246043e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.246043e+05 2.246043e+05 0.00 NULL
2018 Fire Department Physician’s Assistant 87067.00000 8.706700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.706700e+04 8.706700e+04 0.00 NULL
2018 Fire Department Pilot 100923.30769 1.312003e+06 607309.77 4.671614e+04 41443.520 7124.82 13 4.144352e+04 538765.76 1.919313e+06 1.850769e+06 68544.01 NULL
2018 Fire Department Planner: Production Cntrl & Scheduling 61808.33333 1.854250e+05 105299.68 3.509989e+04 36399.670 2083.25 3 3.509989e+04 105299.68 2.907247e+05 2.907247e+05 0.00 NULL
2018 Fire Department Plasterer NA NA 20516.36 2.051636e+04 20516.360 278.50 1 2.051636e+04 20516.36 NA NA NA NULL
2018 Fire Department Plumber NA NA 279114.20 1.993673e+04 22902.340 2623.50 14 1.993673e+04 279114.20 NA NA NA NULL
2018 Fire Department Principal Administrative Associate - Lev 1 & 2 Non Supvr 59754.91612 6.513286e+06 220626.58 2.024097e+03 94.420 5075.25 109 9.442000e+01 10291.78 6.733912e+06 6.523578e+06 210334.80 NULL
2018 Fire Department Procurement Analyst 54551.32717 1.418335e+06 54927.87 2.112610e+03 701.985 1287.50 26 7.019850e+02 18251.61 1.473262e+06 1.436586e+06 36676.26 NULL
2018 Fire Department Program Producer 69852.39733 2.095572e+05 3320.91 1.106970e+03 1040.850 53.00 3 1.040850e+03 3122.55 2.128781e+05 2.126797e+05 198.36 NULL
2018 Fire Department Project Manager 61104.00000 1.222080e+05 378.44 1.892200e+02 189.220 11.25 2 1.892200e+02 378.44 1.225864e+05 1.225864e+05 0.00 NULL
2018 Fire Department Project Manager Intern# 54980.30000 5.498030e+05 13483.71 1.348371e+03 108.930 366.25 10 1.089300e+02 1089.30 5.632867e+05 5.508923e+05 12394.41 NULL
2018 Fire Department Public Records Officer 51568.75000 2.062750e+05 493.51 1.233775e+02 72.665 16.50 4 7.266500e+01 290.66 2.067685e+05 2.065657e+05 202.85 NULL
2018 Fire Department Radio Repair Mechanic NA NA 862339.75 1.959863e+04 14547.365 12334.83 44 1.454736e+04 640084.06 NA NA NA NULL
2018 Fire Department Research Assistant 60184.83950 2.407394e+05 313.03 7.825750e+01 38.335 7.50 4 3.833500e+01 153.34 2.410524e+05 2.408927e+05 159.69 NULL
2018 Fire Department Roofer NA NA 7381.43 7.381430e+03 7381.430 133.75 1 7.381430e+03 7381.43 NA NA NA NULL
2018 Fire Department Rubber Tire Repairer NA NA 107559.14 1.344489e+04 12236.955 2475.75 8 1.223695e+04 97895.64 NA NA NA NULL
2018 Fire Department Secretary To The Deputy Commissioner 72377.00000 1.447540e+05 9687.48 4.843740e+03 4843.740 218.75 2 4.843740e+03 9687.48 1.544415e+05 1.544415e+05 0.00 NULL
2018 Fire Department Secretary To The Fire Commissioner 118244.00000 1.182440e+05 48774.61 4.877461e+04 48774.610 547.75 1 4.877461e+04 48774.61 1.670186e+05 1.670186e+05 0.00 NULL
2018 Fire Department Secretary To The First Deputy Commissioner 86020.00000 8.602000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.602000e+04 8.602000e+04 0.00 NULL
2018 Fire Department Senior It Architect 125000.00000 2.500000e+05 1120.68 5.603400e+02 560.340 14.50 2 5.603400e+02 1120.68 2.511207e+05 2.511207e+05 0.00 NULL
2018 Fire Department Senior Management Consultant 131840.00000 1.318400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.318400e+05 1.318400e+05 0.00 NULL
2018 Fire Department Senior Photographer 67887.72000 6.788772e+04 5596.30 5.596300e+03 5596.300 130.50 1 5.596300e+03 5596.30 7.348402e+04 7.348402e+04 0.00 NULL
2018 Fire Department Senior Stationary Engineer NA NA 134376.33 6.718816e+04 67188.165 1253.00 2 6.718816e+04 134376.33 NA NA NA NULL
2018 Fire Department Senior Supervisor Communication Electrician NA NA 60586.69 3.029335e+04 30293.345 659.25 2 3.029335e+04 60586.69 NA NA NA NULL
2018 Fire Department Sheet Metal Worker NA NA 97386.82 2.434671e+04 9588.075 885.25 4 9.588075e+03 38352.30 NA NA NA NULL
2018 Fire Department Special Assistant To The Fire Commissioner 94760.00000 9.476000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.476000e+04 9.476000e+04 0.00 NULL
2018 Fire Department Spvsg Fad-Asst Commiss Detail 151685.00000 1.516850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.516850e+05 1.516850e+05 0.00 NULL
2018 Fire Department Spvsg Fad-Dep Dir Dsptch Dtail 105000.00000 2.100000e+05 15379.00 7.689500e+03 7689.500 213.50 2 7.689500e+03 15379.00 2.253790e+05 2.253790e+05 0.00 NULL
2018 Fire Department Spvsg Fad-Dir Dsptch Op Detail 107686.00000 1.076860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.076860e+05 1.076860e+05 0.00 NULL
2018 Fire Department Staff Analyst 63155.02070 8.841703e+05 23050.47 1.646462e+03 542.720 508.75 14 5.427200e+02 7598.08 9.072208e+05 8.917684e+05 15452.39 NULL
2018 Fire Department Staff Analyst Trainee 51434.85714 3.600440e+05 5405.95 7.722786e+02 0.000 171.50 7 0.000000e+00 0.00 3.654500e+05 3.600440e+05 5405.95 NULL
2018 Fire Department Stationary Engineer NA NA 67331.51 6.733151e+04 67331.510 688.50 1 6.733151e+04 67331.51 NA NA NA NULL
2018 Fire Department Statistician 61314.00000 6.131400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.131400e+04 6.131400e+04 0.00 NULL
2018 Fire Department Steam Fitter NA NA 14547.50 1.454750e+04 14547.500 131.75 1 1.454750e+04 14547.50 NA NA NA NULL
2018 Fire Department Steam Fitter’s Helper NA NA 18795.79 1.879579e+04 18795.790 425.00 1 1.879579e+04 18795.79 NA NA NA NULL
2018 Fire Department Stock Worker 34874.50000 1.394980e+05 28232.18 7.058045e+03 2686.045 1175.50 4 2.686045e+03 10744.18 1.677302e+05 1.502422e+05 17488.00 NULL
2018 Fire Department Summer College Intern 2522.67963 1.513608e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.513608e+04 1.513608e+04 0.00 NULL
2018 Fire Department Summer Graduate Intern 2939.67800 2.057775e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.057775e+04 2.057775e+04 0.00 NULL
2018 Fire Department Supervising Blasting Inspector 71303.50000 5.704280e+05 267107.17 3.338840e+04 26770.680 4700.38 8 2.677068e+04 214165.44 8.375352e+05 7.845934e+05 52941.73 NULL
2018 Fire Department Supervising Communication Electrician NA NA 393977.58 3.939776e+04 40296.925 4478.00 10 3.939776e+04 393977.58 NA NA NA NULL
2018 Fire Department Supervising Computer Service Technician 65806.00000 6.580600e+04 10214.96 1.021496e+04 10214.960 224.25 1 1.021496e+04 10214.96 7.602096e+04 7.602096e+04 0.00 NULL
2018 Fire Department Supervising Emergency Medical Service Specialist 72123.81707 4.139907e+07 11891803.08 2.071743e+04 18438.955 204181.86 574 1.843896e+04 10583960.17 5.329087e+07 5.198303e+07 1307842.91 NULL
2018 Fire Department Supervising Emergency Medical Service Specialist-Dpty Chiefs 112483.67391 5.174249e+06 118537.76 2.576908e+03 0.000 1931.25 46 0.000000e+00 0.00 5.292787e+06 5.174249e+06 118537.76 NULL
2018 Fire Department Supervising Fire Alarm Dispatcher 75367.21951 3.090056e+06 894119.49 2.180779e+04 21792.250 18307.42 41 2.179225e+04 893482.25 3.984175e+06 3.983538e+06 637.24 NULL
2018 Fire Department Supervising Fire Marshal 124374.78125 3.979993e+06 1090907.48 3.409086e+04 28136.865 11495.13 32 2.813687e+04 900379.68 5.070900e+06 4.880373e+06 190527.80 NULL
2018 Fire Department Supervisor Carpenter NA NA 186826.86 4.670671e+04 58515.935 2374.75 4 4.670671e+04 186826.86 NA NA NA NULL
2018 Fire Department Supervisor Electrician NA NA 148509.45 4.950315e+04 43428.160 1668.25 3 4.342816e+04 130284.48 NA NA NA NULL
2018 Fire Department Supervisor Of Electrical Installations & Maintenance 76245.00000 4.574700e+05 17094.76 2.849127e+03 920.875 307.25 6 9.208750e+02 5525.25 4.745648e+05 4.629952e+05 11569.51 NULL
2018 Fire Department Supervisor Of Mechanics NA NA 1674751.25 4.294234e+04 48621.230 19062.25 39 4.294234e+04 1674751.25 NA NA NA NULL
2018 Fire Department Supervisor Of Stock Workers 52054.13636 1.145191e+06 303192.99 1.378150e+04 8915.425 8028.75 22 8.915425e+03 196139.35 1.448384e+06 1.341330e+06 107053.64 NULL
2018 Fire Department Supervisor Plumber NA NA 195181.31 3.903626e+04 37625.680 1784.50 5 3.762568e+04 188128.40 NA NA NA NULL
2018 Fire Department Telecommunication Manager 133934.50000 2.678690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.678690e+05 2.678690e+05 0.00 NULL
2018 Fire Department Telecommunications Associate 77821.27000 7.782127e+05 30915.23 3.091523e+03 741.715 547.75 10 7.417150e+02 7417.15 8.091279e+05 7.856298e+05 23498.08 NULL
2018 Fire Department Welder NA NA 67702.92 3.385146e+04 33851.460 701.00 2 3.385146e+04 67702.92 NA NA NA NULL
2018 Fire Department Wiper 88400.00000 1.149200e+06 232240.43 1.786465e+04 16497.640 3417.00 13 1.649764e+04 214469.32 1.381440e+06 1.363669e+06 17771.11 NULL
2018 Guttman Community College Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 NA NA NA NULL
2018 Guttman Community College Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 46 0.000000e+00 0.00 NA NA NA NULL
2018 Guttman Community College Administrator 150986.00000 1.509860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.509860e+05 1.509860e+05 0.00 NULL
2018 Guttman Community College Assistant College Security Director 90293.00000 9.029300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.029300e+04 9.029300e+04 0.00 NULL
2018 Guttman Community College Assistant Dean 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2018 Guttman Community College Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 45 0.000000e+00 0.00 NA NA NA NULL
2018 Guttman Community College Assistant To Heo 57409.81250 9.185570e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 9.185570e+05 9.185570e+05 0.00 NULL
2018 Guttman Community College Assistant Vice President 169586.00000 1.695860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.695860e+05 1.695860e+05 0.00 NULL
2018 Guttman Community College Associate Administrator 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2018 Guttman Community College Associate Dean 134444.00000 4.033320e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.033320e+05 4.033320e+05 0.00 NULL
2018 Guttman Community College Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 NA NA NA NULL
2018 Guttman Community College Campus Peace Officer 39194.33333 1.175830e+05 50775.23 1.692508e+04 14247.730 1721.50 3 1.424773e+04 42743.19 1.683582e+05 1.603262e+05 8032.04 NULL
2018 Guttman Community College Campus Public Safety Sergeant 55370.00000 1.661100e+05 65692.28 2.189743e+04 29972.240 1586.00 3 2.189743e+04 65692.28 2.318023e+05 2.318023e+05 0.00 NULL
2018 Guttman Community College Campus Security Assistant 32285.60000 1.614280e+05 67376.36 1.347527e+04 16627.950 2746.75 5 1.347527e+04 67376.36 2.288044e+05 2.288044e+05 0.00 NULL
2018 Guttman Community College Clinical Professor 94248.00000 9.424800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.424800e+04 9.424800e+04 0.00 NULL
2018 Guttman Community College College Assistant 5697.03982 8.887382e+05 0.00 0.000000e+00 0.000 0.00 156 0.000000e+00 0.00 8.887382e+05 8.887382e+05 0.00 NULL
2018 Guttman Community College College Lab Technician 53251.50000 1.065030e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.065030e+05 1.065030e+05 0.00 NULL
2018 Guttman Community College College Security Specialist 62373.00000 6.237300e+04 13173.54 1.317354e+04 13173.540 242.50 1 1.317354e+04 13173.54 7.554654e+04 7.554654e+04 0.00 NULL
2018 Guttman Community College Computer Systems Manager 111300.00000 2.226000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.226000e+05 2.226000e+05 0.00 NULL
2018 Guttman Community College Continuing Education Teacher 2930.59119 6.154242e+04 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 6.154242e+04 6.154242e+04 0.00 NULL
2018 Guttman Community College Cuny Office Assistant 34370.00000 1.374800e+05 437.81 1.094525e+02 0.000 23.00 4 0.000000e+00 0.00 1.379178e+05 1.374800e+05 437.81 NULL
2018 Guttman Community College Dean 153174.00000 1.531740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.531740e+05 1.531740e+05 0.00 NULL
2018 Guttman Community College Disability Accommodations Specialist 21368.53500 8.547414e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.547414e+04 8.547414e+04 0.00 NULL
2018 Guttman Community College Higher Education Assistant 70206.50000 2.667847e+06 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 2.667847e+06 2.667847e+06 0.00 NULL
2018 Guttman Community College Higher Education Associate 93359.31250 1.493749e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.493749e+06 1.493749e+06 0.00 NULL
2018 Guttman Community College Higher Education Officer 121706.33333 2.190714e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.190714e+06 2.190714e+06 0.00 NULL
2018 Guttman Community College Instructor NA NA 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 NA NA NA NULL
2018 Guttman Community College It Assistant 51374.00000 1.027480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.027480e+05 1.027480e+05 0.00 NULL
2018 Guttman Community College It Associate 66710.00000 6.671000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.671000e+04 6.671000e+04 0.00 NULL
2018 Guttman Community College It Senior Associate 92525.33333 2.775760e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.775760e+05 2.775760e+05 0.00 NULL
2018 Guttman Community College It Support Assistant 35964.00000 7.192800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.192800e+04 7.192800e+04 0.00 NULL
2018 Guttman Community College Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 NA NA NA NULL
2018 Guttman Community College Non-Teaching Adjunct I 6230.80645 2.367706e+05 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 2.367706e+05 2.367706e+05 0.00 NULL
2018 Guttman Community College Non-Teaching Adjunct Ii 4329.85600 4.329856e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.329856e+04 4.329856e+04 0.00 NULL
2018 Guttman Community College Non-Teaching Adjunct Iii 1267.31063 4.055394e+04 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 4.055394e+04 4.055394e+04 0.00 NULL
2018 Guttman Community College Non-Teaching Adjunct Iv 1476.62583 8.859755e+03 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.859755e+03 8.859755e+03 0.00 NULL
2018 Guttman Community College Non-Teaching Adjunct V 1514.76000 4.544280e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.544280e+03 4.544280e+03 0.00 NULL
2018 Guttman Community College President 228000.00000 2.280000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.280000e+05 2.280000e+05 0.00 NULL
2018 Guttman Community College Professor NA NA 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 NA NA NA NULL
2018 Guttman Community College Student Aide 947.07143 1.988850e+04 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.988850e+04 1.988850e+04 0.00 NULL
2018 Guttman Community College Vice President 180000.00000 1.800000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.800000e+05 1.800000e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt *Attorney At Law 96272.86714 1.347820e+06 15207.09 1.086221e+03 0.000 210.50 14 0.000000e+00 0.00 1.363027e+06 1.347820e+06 15207.09 NULL
2018 Housing Preservation & Dvlpmnt Accountant 55382.23354 1.993760e+06 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 1.993760e+06 1.993760e+06 0.00 NULL
2018 Housing Preservation & Dvlpmnt Adm Manager-Non-Mgrl From M1/M2 73312.99812 6.451544e+06 60396.30 6.863216e+02 0.000 1221.25 88 0.000000e+00 0.00 6.511940e+06 6.451544e+06 60396.30 NULL
2018 Housing Preservation & Dvlpmnt Admin Community Relations Specialist 67776.16753 2.439942e+06 66256.88 1.840469e+03 0.000 1616.32 36 0.000000e+00 0.00 2.506199e+06 2.439942e+06 66256.88 NULL
2018 Housing Preservation & Dvlpmnt Admin Housing Development Spec 97473.21429 2.729250e+06 42449.58 1.516056e+03 0.000 658.75 28 0.000000e+00 0.00 2.771700e+06 2.729250e+06 42449.58 NULL
2018 Housing Preservation & Dvlpmnt Administrative Accountant 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Administrative Architect 101327.00000 2.026540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.026540e+05 2.026540e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Administrative City Planner 106018.33333 9.541650e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.541650e+05 9.541650e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Administrative Community Relations Specialist 136654.00000 1.366540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.366540e+05 1.366540e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Administrative Engineer 112732.00000 3.381960e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.381960e+05 3.381960e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Administrative Housing Development Specialist 110859.14052 2.660619e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 2.660619e+06 2.660619e+06 0.00 NULL
2018 Housing Preservation & Dvlpmnt Administrative Inspector 99855.76923 1.298125e+06 13069.79 1.005368e+03 0.000 214.00 13 0.000000e+00 0.00 1.311195e+06 1.298125e+06 13069.79 NULL
2018 Housing Preservation & Dvlpmnt Administrative Labor Relations Analyst 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Administrative Management Auditor 112594.50000 2.251890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.251890e+05 2.251890e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Administrative Manager 139189.00000 6.959450e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.959450e+05 6.959450e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Administrative Procurement Analyst 99324.33333 5.959460e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.959460e+05 5.959460e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Administrative Project Director 112379.61143 3.146629e+06 14604.33 5.215832e+02 0.000 275.75 28 0.000000e+00 0.00 3.161233e+06 3.146629e+06 14604.33 NULL
2018 Housing Preservation & Dvlpmnt Administrative Project Manager 114726.40000 1.147264e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.147264e+06 1.147264e+06 0.00 NULL
2018 Housing Preservation & Dvlpmnt Administrative Public Information Specialist 101000.00000 2.020000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.020000e+05 2.020000e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Administrative Real Property Manager 92439.50000 5.546370e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.546370e+05 5.546370e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Administrative Staff Analyst 102500.00000 8.712500e+06 52257.59 6.147952e+02 0.000 1005.25 85 0.000000e+00 0.00 8.764758e+06 8.712500e+06 52257.59 NULL
2018 Housing Preservation & Dvlpmnt Administrative Supervisor Of Building Maintenance 102988.00000 1.029880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.029880e+05 1.029880e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Agency Attorney 87464.76327 4.285773e+06 0.00 0.000000e+00 0.000 0.00 49 0.000000e+00 0.00 4.285773e+06 4.285773e+06 0.00 NULL
2018 Housing Preservation & Dvlpmnt Agency Attorney Interne 58330.00000 1.166600e+05 547.08 2.735400e+02 273.540 15.00 2 2.735400e+02 547.08 1.172071e+05 1.172071e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Agency Chief Contracting Officer 138000.00000 1.380000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.380000e+05 1.380000e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Appraiser 68738.78000 4.124327e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.124327e+05 4.124327e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Architect 85580.00000 8.558000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.558000e+04 8.558000e+04 0.00 NULL
2018 Housing Preservation & Dvlpmnt Assistant Architect 66811.52381 1.403042e+06 17551.28 8.357752e+02 0.000 365.25 21 0.000000e+00 0.00 1.420593e+06 1.403042e+06 17551.28 NULL
2018 Housing Preservation & Dvlpmnt Assistant Civil Engineer 69000.00000 6.900000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.900000e+04 6.900000e+04 0.00 NULL
2018 Housing Preservation & Dvlpmnt Assistant Commissioner 147251.00000 1.178008e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.178008e+06 1.178008e+06 0.00 NULL
2018 Housing Preservation & Dvlpmnt Assistant Mechanical Engineer 68535.33333 4.112120e+05 9359.01 1.559835e+03 54.370 201.75 6 5.437000e+01 326.22 4.205710e+05 4.115382e+05 9032.79 NULL
2018 Housing Preservation & Dvlpmnt Associate Housing Development Specialist 87881.39474 3.339493e+06 26494.82 6.972321e+02 0.000 408.50 38 0.000000e+00 0.00 3.365988e+06 3.339493e+06 26494.82 NULL
2018 Housing Preservation & Dvlpmnt Associate Inspector 67013.81395 2.881594e+06 160192.53 3.725408e+03 2611.400 2962.17 43 2.611400e+03 112290.20 3.041787e+06 2.993884e+06 47902.33 NULL
2018 Housing Preservation & Dvlpmnt Associate Investigator 63860.00000 1.277200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.277200e+05 1.277200e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Associate Project Manager 89661.42857 6.276300e+05 38065.60 5.437943e+03 33.520 607.75 7 3.352000e+01 234.64 6.656956e+05 6.278646e+05 37830.96 NULL
2018 Housing Preservation & Dvlpmnt Associate Quality Assurance Specialist 65626.33333 1.968790e+05 19489.94 6.496647e+03 8083.480 490.75 3 6.496647e+03 19489.94 2.163689e+05 2.163689e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Associate Real Property Manager 64328.67391 2.959119e+06 18141.41 3.943785e+02 0.000 368.25 46 0.000000e+00 0.00 2.977260e+06 2.959119e+06 18141.41 NULL
2018 Housing Preservation & Dvlpmnt Associate Rehabilitation Specialist 65312.00000 1.306240e+05 25.53 1.276500e+01 12.765 0.50 2 1.276500e+01 25.53 1.306495e+05 1.306495e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Associate Staff Analyst 84544.68000 2.451796e+06 4952.75 1.707845e+02 0.000 98.25 29 0.000000e+00 0.00 2.456748e+06 2.451796e+06 4952.75 NULL
2018 Housing Preservation & Dvlpmnt Bookkeeper 54129.80000 2.706490e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.706490e+05 2.706490e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Certified It Administrator 102032.75000 4.081310e+05 4708.57 1.177142e+03 218.285 64.75 4 2.182850e+02 873.14 4.128396e+05 4.090041e+05 3835.43 NULL
2018 Housing Preservation & Dvlpmnt Certified It Developer 104431.80000 5.221590e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.221590e+05 5.221590e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt City Planner 88588.00000 1.505996e+06 11614.94 6.832318e+02 0.000 238.25 17 0.000000e+00 0.00 1.517611e+06 1.505996e+06 11614.94 NULL
2018 Housing Preservation & Dvlpmnt City Research Scientist 85718.83333 5.143130e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.143130e+05 5.143130e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Civil Engineer 84848.50000 1.696970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.696970e+05 1.696970e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Clerical Aide 37925.00000 3.792500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.792500e+04 3.792500e+04 0.00 NULL
2018 Housing Preservation & Dvlpmnt Clerical Associate 43788.47654 7.006156e+06 113186.40 7.074150e+02 0.000 3118.75 160 0.000000e+00 0.00 7.119343e+06 7.006156e+06 113186.40 NULL
2018 Housing Preservation & Dvlpmnt Commissioner Of Housing Preservation & Development 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Community Assistant 37565.17693 1.352346e+06 22580.71 6.272419e+02 0.000 1008.00 36 0.000000e+00 0.00 1.374927e+06 1.352346e+06 22580.71 NULL
2018 Housing Preservation & Dvlpmnt Community Associate 44553.31420 1.425706e+07 349080.35 1.090876e+03 0.000 12277.98 320 0.000000e+00 0.00 1.460614e+07 1.425706e+07 349080.35 NULL
2018 Housing Preservation & Dvlpmnt Community Coordinator 64696.37721 1.714454e+07 211308.26 7.973897e+02 0.000 4770.00 265 0.000000e+00 0.00 1.735585e+07 1.714454e+07 211308.26 NULL
2018 Housing Preservation & Dvlpmnt Community Service Aide 28115.28555 2.249223e+05 156.76 1.959500e+01 0.000 7.00 8 0.000000e+00 0.00 2.250790e+05 2.249223e+05 156.76 NULL
2018 Housing Preservation & Dvlpmnt Computer Associate 87550.09091 3.852204e+06 9287.78 2.110859e+02 0.000 163.50 44 0.000000e+00 0.00 3.861492e+06 3.852204e+06 9287.78 NULL
2018 Housing Preservation & Dvlpmnt Computer Operations Manager 119372.40000 5.968620e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.968620e+05 5.968620e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Computer Programmer Analyst 68939.33333 2.068180e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.068180e+05 2.068180e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Computer Specialist 99678.36000 2.491959e+06 27064.26 1.082570e+03 0.000 369.50 25 0.000000e+00 0.00 2.519023e+06 2.491959e+06 27064.26 NULL
2018 Housing Preservation & Dvlpmnt Computer Systems Manager 109771.30556 3.951767e+06 2696.64 7.490667e+01 0.000 59.75 36 0.000000e+00 0.00 3.954464e+06 3.951767e+06 2696.64 NULL
2018 Housing Preservation & Dvlpmnt Confidential Strategy Planner 75200.00000 3.760000e+05 532.30 1.064600e+02 0.000 11.50 5 0.000000e+00 0.00 3.765323e+05 3.760000e+05 532.30 NULL
2018 Housing Preservation & Dvlpmnt Construction Project Manager 72873.20725 1.406453e+07 653826.74 3.387703e+03 203.070 10452.50 193 2.030700e+02 39192.51 1.471836e+07 1.410372e+07 614634.23 NULL
2018 Housing Preservation & Dvlpmnt Deputy Commissioner 197460.83333 1.184765e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.184765e+06 1.184765e+06 0.00 NULL
2018 Housing Preservation & Dvlpmnt Deputy Counsel 144200.00000 1.442000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.442000e+05 1.442000e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Deputy General Counsel 153400.00000 7.670000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.670000e+05 7.670000e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Director Of Neighborhood Conservation 92000.00000 9.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.200000e+04 9.200000e+04 0.00 NULL
2018 Housing Preservation & Dvlpmnt Electrician NA NA 79279.24 7.927924e+04 79279.240 934.00 1 7.927924e+04 79279.24 NA NA NA NULL
2018 Housing Preservation & Dvlpmnt Eligibility Specialist 47509.00000 4.750900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.750900e+04 4.750900e+04 0.00 NULL
2018 Housing Preservation & Dvlpmnt Estimator 63378.50000 2.535140e+05 3703.67 9.259175e+02 0.000 95.25 4 0.000000e+00 0.00 2.572177e+05 2.535140e+05 3703.67 NULL
2018 Housing Preservation & Dvlpmnt Executive Agency Counsel 135542.00000 3.253008e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 3.253008e+06 3.253008e+06 0.00 NULL
2018 Housing Preservation & Dvlpmnt Executive Assistant To The Deputy Commissioner 90642.00000 9.064200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.064200e+04 9.064200e+04 0.00 NULL
2018 Housing Preservation & Dvlpmnt Executive Program Specialist 103195.00000 2.063900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.063900e+05 2.063900e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt General Counsel 184756.00000 1.847560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.847560e+05 1.847560e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Housing Development Specialist 72511.69625 7.396193e+06 135802.57 1.331398e+03 0.000 2599.00 102 0.000000e+00 0.00 7.531996e+06 7.396193e+06 135802.57 NULL
2018 Housing Preservation & Dvlpmnt Housing Development Specialist Trainee 47508.00000 4.750800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.750800e+04 4.750800e+04 0.00 NULL
2018 Housing Preservation & Dvlpmnt Industrial Hygienist 64815.00000 6.481500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.481500e+04 6.481500e+04 0.00 NULL
2018 Housing Preservation & Dvlpmnt Inspector 55346.17391 1.909443e+07 372935.22 1.080972e+03 94.410 8773.00 345 9.441000e+01 32571.45 1.946737e+07 1.912700e+07 340363.77 NULL
2018 Housing Preservation & Dvlpmnt Investigator 57916.00000 5.791600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.791600e+04 5.791600e+04 0.00 NULL
2018 Housing Preservation & Dvlpmnt Investigator Empl Disc 60747.86667 9.112180e+05 10748.32 7.165547e+02 0.000 287.00 15 0.000000e+00 0.00 9.219663e+05 9.112180e+05 10748.32 NULL
2018 Housing Preservation & Dvlpmnt Lead Abatement Worker 50220.20000 2.511010e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.511010e+05 2.511010e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Legislative Assistant 92233.33333 5.534000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.534000e+05 5.534000e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Management Auditor 72517.88889 6.526610e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 6.526610e+05 6.526610e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Multiple Dwelling Specialist 66886.50000 1.337730e+05 1566.30 7.831500e+02 783.150 36.25 2 7.831500e+02 1566.30 1.353393e+05 1.353393e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Paralegal Aide 53682.25000 2.147290e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.147290e+05 2.147290e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Principal Administrative Associate - Lev 1 & 2 Non Supvr 59132.00752 7.864557e+06 58338.69 4.386368e+02 0.000 1309.25 133 0.000000e+00 0.00 7.922896e+06 7.864557e+06 58338.69 NULL
2018 Housing Preservation & Dvlpmnt Principal Appraiser 122180.00000 1.221800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.221800e+05 1.221800e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Procurement Analyst 62982.10000 6.298210e+05 8156.24 8.156240e+02 0.000 211.25 10 0.000000e+00 0.00 6.379772e+05 6.298210e+05 8156.24 NULL
2018 Housing Preservation & Dvlpmnt Project Manager 69729.00000 1.394580e+05 1318.71 6.593550e+02 659.355 25.00 2 6.593550e+02 1318.71 1.407767e+05 1.407767e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Quality Assurance Specialist 51031.20000 2.551560e+05 453.02 9.060400e+01 0.000 11.25 5 0.000000e+00 0.00 2.556090e+05 2.551560e+05 453.02 NULL
2018 Housing Preservation & Dvlpmnt Real Property Manager 56375.36000 1.409384e+06 655.90 2.623600e+01 0.000 17.50 25 0.000000e+00 0.00 1.410040e+06 1.409384e+06 655.90 NULL
2018 Housing Preservation & Dvlpmnt Repair Crew Chief 39689.20000 1.984460e+05 5068.02 1.013604e+03 453.390 191.25 5 4.533900e+02 2266.95 2.035140e+05 2.007130e+05 2801.07 NULL
2018 Housing Preservation & Dvlpmnt Repair Crew Worker 36412.00000 7.282400e+04 44.84 2.242000e+01 22.420 2.25 2 2.242000e+01 44.84 7.286884e+04 7.286884e+04 0.00 NULL
2018 Housing Preservation & Dvlpmnt Repair Shop Manager 72851.00000 7.285100e+04 34647.41 3.464741e+04 34647.410 604.75 1 3.464741e+04 34647.41 1.074984e+05 1.074984e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Secretary 43158.78261 9.926520e+05 6510.83 2.830796e+02 0.000 230.25 23 0.000000e+00 0.00 9.991628e+05 9.926520e+05 6510.83 NULL
2018 Housing Preservation & Dvlpmnt Secretary Of Comm 85982.00000 8.598200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.598200e+04 8.598200e+04 0.00 NULL
2018 Housing Preservation & Dvlpmnt Secretary To The Deputy Commissioner 73397.00000 7.339700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.339700e+04 7.339700e+04 0.00 NULL
2018 Housing Preservation & Dvlpmnt Senior Estimator 78625.00000 1.572500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.572500e+05 1.572500e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Senior Repair Crew Chief 55698.25000 2.227930e+05 103032.22 2.575806e+04 26497.755 2387.18 4 2.575806e+04 103032.22 3.258252e+05 3.258252e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Special Assistant To The Commissioner 173000.00000 1.730000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.730000e+05 1.730000e+05 0.00 NULL
2018 Housing Preservation & Dvlpmnt Staff Analyst 62854.88889 5.656940e+05 9173.03 1.019226e+03 0.000 191.75 9 0.000000e+00 0.00 5.748670e+05 5.656940e+05 9173.03 NULL
2018 Housing Preservation & Dvlpmnt Strategic Initiative Specialist 92683.33333 5.561000e+05 5577.83 9.296383e+02 0.000 117.50 6 0.000000e+00 0.00 5.616778e+05 5.561000e+05 5577.83 NULL
2018 Housing Preservation & Dvlpmnt Supervising Computer Service Technician 77000.00000 7.700000e+04 2864.42 2.864420e+03 2864.420 54.50 1 2.864420e+03 2864.42 7.986442e+04 7.986442e+04 0.00 NULL
2018 Housing Preservation & Dvlpmnt Supervising Demolition Inspector 72370.50000 2.894820e+05 12147.74 3.036935e+03 1997.275 211.50 4 1.997275e+03 7989.10 3.016297e+05 2.974711e+05 4158.64 NULL
2018 Housing Preservation & Dvlpmnt Supervisor Of Electrical Installations & Maintenance 79173.71429 5.542160e+05 23729.83 3.389976e+03 3.960 350.50 7 3.960000e+00 27.72 5.779458e+05 5.542437e+05 23702.11 NULL
2018 Housing Preservation & Dvlpmnt Supervisor Of Mechanical Installations & Maintenance 73274.50000 1.025843e+06 45533.35 3.252382e+03 0.000 714.00 14 0.000000e+00 0.00 1.071376e+06 1.025843e+06 45533.35 NULL
2018 Housing Preservation & Dvlpmnt Supervisor Of Stock Workers 61901.50000 1.238030e+05 3926.69 1.963345e+03 1963.345 83.25 2 1.963345e+03 3926.69 1.277297e+05 1.277297e+05 0.00 NULL
2018 Hra/Dept Of Social Services *Attorney At Law 83503.55556 7.515320e+05 2936.14 3.262378e+02 0.000 38.75 9 0.000000e+00 0.00 7.544681e+05 7.515320e+05 2936.14 NULL
2018 Hra/Dept Of Social Services *Certified Applications Developer 120619.00000 1.206190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.206190e+05 1.206190e+05 0.00 NULL
2018 Hra/Dept Of Social Services *Certified Database Administrator 107146.00000 1.071460e+05 1198.19 1.198190e+03 1198.190 17.50 1 1.198190e+03 1198.19 1.083442e+05 1.083442e+05 0.00 NULL
2018 Hra/Dept Of Social Services *Certified Local Area Network Administrator 95788.46154 1.245250e+06 84087.86 6.468297e+03 5060.890 997.50 13 5.060890e+03 65791.57 1.329338e+06 1.311042e+06 18296.29 NULL
2018 Hra/Dept Of Social Services *Certified Wide Area Network Administrator 100393.50000 2.007870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.007870e+05 2.007870e+05 0.00 NULL
2018 Hra/Dept Of Social Services *Custodial Assistant 34769.75000 1.390790e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.390790e+05 1.390790e+05 0.00 NULL
2018 Hra/Dept Of Social Services Accountant 60485.70588 1.028257e+06 1005.85 5.916765e+01 0.000 25.50 17 0.000000e+00 0.00 1.029263e+06 1.028257e+06 1005.85 NULL
2018 Hra/Dept Of Social Services Adm Manager-Non-Mgrl From M1/M2 69961.87778 6.296569e+06 318273.14 3.536368e+03 166.210 6658.50 90 1.662100e+02 14958.90 6.614842e+06 6.311528e+06 303314.24 NULL
2018 Hra/Dept Of Social Services Admin Community Relations Specialist 93635.25926 2.528152e+06 7097.72 2.628785e+02 0.000 130.50 27 0.000000e+00 0.00 2.535250e+06 2.528152e+06 7097.72 NULL
2018 Hra/Dept Of Social Services Admin Construction Project Manager 110184.00000 1.101840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.101840e+05 1.101840e+05 0.00 NULL
2018 Hra/Dept Of Social Services Admin Contract Specialist 94850.60000 2.560966e+06 119.59 4.429259e+00 0.000 1.50 27 0.000000e+00 0.00 2.561086e+06 2.560966e+06 119.59 NULL
2018 Hra/Dept Of Social Services Admin Job Opor Spec-Managerial 123061.15385 3.199590e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 3.199590e+06 3.199590e+06 0.00 NULL
2018 Hra/Dept Of Social Services Admin Job Opportunity Spec Nm 82135.18627 8.377789e+06 674351.76 6.611292e+03 5493.590 11067.50 102 5.493590e+03 560346.18 9.052141e+06 8.938135e+06 114005.58 NULL
2018 Hra/Dept Of Social Services Administrative Accountant 95367.54545 1.049043e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.049043e+06 1.049043e+06 0.00 NULL
2018 Hra/Dept Of Social Services Administrative Architect 118637.00000 2.372740e+05 1213.24 6.066200e+02 606.620 13.50 2 6.066200e+02 1213.24 2.384872e+05 2.384872e+05 0.00 NULL
2018 Hra/Dept Of Social Services Administrative Business Promotion Coordinator 107399.00000 2.147980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.147980e+05 2.147980e+05 0.00 NULL
2018 Hra/Dept Of Social Services Administrative City Planner 82638.00000 8.263800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.263800e+04 8.263800e+04 0.00 NULL
2018 Hra/Dept Of Social Services Administrative Community Relations Specialist 167983.00000 3.359660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.359660e+05 3.359660e+05 0.00 NULL
2018 Hra/Dept Of Social Services Administrative Construction Project Manager 114639.00000 1.146390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.146390e+05 1.146390e+05 0.00 NULL
2018 Hra/Dept Of Social Services Administrative Director Of Social Services 99229.90449 1.766292e+07 35159.60 1.975258e+02 0.000 663.75 178 0.000000e+00 0.00 1.769808e+07 1.766292e+07 35159.60 NULL
2018 Hra/Dept Of Social Services Administrative Engineer 110728.00000 3.321840e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.321840e+05 3.321840e+05 0.00 NULL
2018 Hra/Dept Of Social Services Administrative Graphic Artist 88319.00000 8.831900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.831900e+04 8.831900e+04 0.00 NULL
2018 Hra/Dept Of Social Services Administrative Investigator 88153.53659 3.614295e+06 375.98 9.170244e+00 0.000 0.00 41 0.000000e+00 0.00 3.614671e+06 3.614295e+06 375.98 NULL
2018 Hra/Dept Of Social Services Administrative Labor Relations Analyst 93434.00000 9.343400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.343400e+04 9.343400e+04 0.00 NULL
2018 Hra/Dept Of Social Services Administrative Management Auditor 98571.25000 1.182855e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.182855e+06 1.182855e+06 0.00 NULL
2018 Hra/Dept Of Social Services Administrative Manager 115564.16667 6.933850e+05 110.79 1.846500e+01 0.000 2.75 6 0.000000e+00 0.00 6.934958e+05 6.933850e+05 110.79 NULL
2018 Hra/Dept Of Social Services Administrative Printing Services Manager 101941.00000 3.058230e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.058230e+05 3.058230e+05 0.00 NULL
2018 Hra/Dept Of Social Services Administrative Procurement Analyst 94178.06452 2.919520e+06 3158.51 1.018874e+02 0.000 62.00 31 0.000000e+00 0.00 2.922679e+06 2.919520e+06 3158.51 NULL
2018 Hra/Dept Of Social Services Administrative Project Manager 102542.50000 2.050850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.050850e+05 2.050850e+05 0.00 NULL
2018 Hra/Dept Of Social Services Administrative Public Information Specialist 103792.31579 1.972054e+06 7502.37 3.948616e+02 0.000 97.00 19 0.000000e+00 0.00 1.979556e+06 1.972054e+06 7502.37 NULL
2018 Hra/Dept Of Social Services Administrative Retirement Benefits Specialist 84000.00000 8.400000e+04 1575.72 1.575720e+03 1575.720 22.00 1 1.575720e+03 1575.72 8.557572e+04 8.557572e+04 0.00 NULL
2018 Hra/Dept Of Social Services Administrative Space Analyst 92072.40000 9.207240e+05 567.29 5.672900e+01 0.000 11.75 10 0.000000e+00 0.00 9.212913e+05 9.207240e+05 567.29 NULL
2018 Hra/Dept Of Social Services Administrative Staff Analyst 96682.97436 3.393572e+07 106999.76 3.048426e+02 0.000 1638.25 351 0.000000e+00 0.00 3.404272e+07 3.393572e+07 106999.76 NULL
2018 Hra/Dept Of Social Services Administrative Storekeeper 102410.33333 3.072310e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.072310e+05 3.072310e+05 0.00 NULL
2018 Hra/Dept Of Social Services Administrative Supervisor Of Building Maintenance 127364.40000 6.368220e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.368220e+05 6.368220e+05 0.00 NULL
2018 Hra/Dept Of Social Services Agency Attorney 79555.85841 8.989812e+06 67181.13 5.945233e+02 0.000 1104.00 113 0.000000e+00 0.00 9.056993e+06 8.989812e+06 67181.13 NULL
2018 Hra/Dept Of Social Services Agency Attorney Interne 60486.44444 1.088756e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.088756e+06 1.088756e+06 0.00 NULL
2018 Hra/Dept Of Social Services Agency Chief Contracting Officer 190000.00000 1.900000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.900000e+05 1.900000e+05 0.00 NULL
2018 Hra/Dept Of Social Services Architect 88492.25000 3.539690e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.539690e+05 3.539690e+05 0.00 NULL
2018 Hra/Dept Of Social Services Assist Commissioner For Policy Analysis & Prog Deve 126000.00000 1.260000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.260000e+05 1.260000e+05 0.00 NULL
2018 Hra/Dept Of Social Services Assistant Administrator Of Public Affairs 153946.00000 3.078920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.078920e+05 3.078920e+05 0.00 NULL
2018 Hra/Dept Of Social Services Assistant Architect 79726.00000 7.972600e+04 238.65 2.386500e+02 238.650 5.25 1 2.386500e+02 238.65 7.996465e+04 7.996465e+04 0.00 NULL
2018 Hra/Dept Of Social Services Assistant Commissioner 167861.28571 1.175029e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.175029e+06 1.175029e+06 0.00 NULL
2018 Hra/Dept Of Social Services Assistant Deputy Administrator 181805.33333 5.454160e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.454160e+05 5.454160e+05 0.00 NULL
2018 Hra/Dept Of Social Services Assistant Printing Press Operator 56548.00000 1.130960e+05 385.73 1.928650e+02 192.865 9.75 2 1.928650e+02 385.73 1.134817e+05 1.134817e+05 0.00 NULL
2018 Hra/Dept Of Social Services Assistant Superintendent Of Welfare Shelters 65153.35714 9.121470e+05 127766.61 9.126186e+03 8850.310 2708.75 14 8.850310e+03 123904.34 1.039914e+06 1.036051e+06 3862.27 NULL
2018 Hra/Dept Of Social Services Associate Commissioner For Adult Services 200943.00000 2.009430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.009430e+05 2.009430e+05 0.00 NULL
2018 Hra/Dept Of Social Services Associate Commissioner For Employment Service 143817.50000 2.876350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.876350e+05 2.876350e+05 0.00 NULL
2018 Hra/Dept Of Social Services Associate Commissioner For Personnel Service 120974.00000 1.209740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.209740e+05 1.209740e+05 0.00 NULL
2018 Hra/Dept Of Social Services Associate Contract Specialist 66351.00000 5.308080e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.308080e+05 5.308080e+05 0.00 NULL
2018 Hra/Dept Of Social Services Associate Fraud Investigator 67129.63801 1.483565e+07 145133.53 6.567128e+02 0.000 3035.75 221 0.000000e+00 0.00 1.498078e+07 1.483565e+07 145133.53 NULL
2018 Hra/Dept Of Social Services Associate Investigator 69643.00000 6.964300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.964300e+04 6.964300e+04 0.00 NULL
2018 Hra/Dept Of Social Services Associate Job Opportunity Specialist 59915.50407 5.158725e+07 6412436.20 7.447661e+03 5040.950 142219.25 861 5.040950e+03 4340257.95 5.799969e+07 5.592751e+07 2072178.25 NULL
2018 Hra/Dept Of Social Services Associate Labor Relations Analyst 81700.50000 3.268020e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.268020e+05 3.268020e+05 0.00 NULL
2018 Hra/Dept Of Social Services Associate Project Manager 77669.00000 1.553380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.553380e+05 1.553380e+05 0.00 NULL
2018 Hra/Dept Of Social Services Associate Staff Analyst 77979.88333 1.403638e+07 122276.68 6.793149e+02 0.000 2103.00 180 0.000000e+00 0.00 1.415866e+07 1.403638e+07 122276.68 NULL
2018 Hra/Dept Of Social Services Bookbinder 38141.00000 7.628200e+04 206.34 1.031700e+02 103.170 8.75 2 1.031700e+02 206.34 7.648834e+04 7.648834e+04 0.00 NULL
2018 Hra/Dept Of Social Services Bookkeeper 46565.21905 4.889348e+06 312045.63 2.971863e+03 0.000 8890.75 105 0.000000e+00 0.00 5.201394e+06 4.889348e+06 312045.63 NULL
2018 Hra/Dept Of Social Services Business Promotion Coordinator 76133.50000 4.568010e+05 6233.04 1.038840e+03 0.000 170.75 6 0.000000e+00 0.00 4.630340e+05 4.568010e+05 6233.04 NULL
2018 Hra/Dept Of Social Services Carpenter NA NA 74533.19 5.733322e+03 6584.160 548.50 13 5.733322e+03 74533.19 NA NA NA NULL
2018 Hra/Dept Of Social Services Caseworker 44241.92913 6.804409e+07 1717947.01 1.117001e+03 0.000 49175.85 1538 0.000000e+00 0.00 6.976203e+07 6.804409e+07 1717947.01 NULL
2018 Hra/Dept Of Social Services Cement Mason NA NA 13401.00 6.700500e+03 6700.500 110.00 2 6.700500e+03 13401.00 NA NA NA NULL
2018 Hra/Dept Of Social Services Certified It Administrator 95009.21875 3.040295e+06 198268.35 6.195886e+03 407.835 2613.75 32 4.078350e+02 13050.72 3.238563e+06 3.053346e+06 185217.63 NULL
2018 Hra/Dept Of Social Services Certified It Developer 100209.37500 8.016750e+05 33865.95 4.233244e+03 206.615 428.50 8 2.066150e+02 1652.92 8.355409e+05 8.033279e+05 32213.03 NULL
2018 Hra/Dept Of Social Services Chief Of Staff 190833.00000 1.908330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.908330e+05 1.908330e+05 0.00 NULL
2018 Hra/Dept Of Social Services City Custodial Assistant 37062.50000 7.412500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.412500e+04 7.412500e+04 0.00 NULL
2018 Hra/Dept Of Social Services City Laborer NA NA 25174.72 1.480866e+03 1362.750 371.50 17 1.362750e+03 23166.75 NA NA NA NULL
2018 Hra/Dept Of Social Services City Planner 81236.00000 8.123600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.123600e+04 8.123600e+04 0.00 NULL
2018 Hra/Dept Of Social Services City Research Scientist 82566.66102 4.871433e+06 13963.49 2.366693e+02 0.000 368.25 59 0.000000e+00 0.00 4.885396e+06 4.871433e+06 13963.49 NULL
2018 Hra/Dept Of Social Services Clerical Aide 33809.50000 1.352380e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.352380e+05 1.352380e+05 0.00 NULL
2018 Hra/Dept Of Social Services Clerical Associate 38860.28647 3.676183e+07 1390015.96 1.469361e+03 0.000 47105.81 946 0.000000e+00 0.00 3.815185e+07 3.676183e+07 1390015.96 NULL
2018 Hra/Dept Of Social Services Community Assistant 34946.07895 2.655902e+06 133180.34 1.752373e+03 0.000 5486.00 76 0.000000e+00 0.00 2.789082e+06 2.655902e+06 133180.34 NULL
2018 Hra/Dept Of Social Services Community Associate 46289.90203 1.268343e+07 205372.55 7.495349e+02 0.000 6496.50 274 0.000000e+00 0.00 1.288881e+07 1.268343e+07 205372.55 NULL
2018 Hra/Dept Of Social Services Community Coordinator 63670.99746 1.782788e+07 483615.70 1.727199e+03 0.000 10706.30 280 0.000000e+00 0.00 1.831149e+07 1.782788e+07 483615.70 NULL
2018 Hra/Dept Of Social Services Computer Aide-Non-Spvr 48137.77778 4.332400e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.332400e+05 4.332400e+05 0.00 NULL
2018 Hra/Dept Of Social Services Computer Associate 69853.36875 1.117654e+07 350013.02 2.187581e+03 0.000 7054.25 160 0.000000e+00 0.00 1.152655e+07 1.117654e+07 350013.02 NULL
2018 Hra/Dept Of Social Services Computer Operations Manager 106746.22222 9.607160e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.607160e+05 9.607160e+05 0.00 NULL
2018 Hra/Dept Of Social Services Computer Programmer Analyst 57051.00000 2.852550e+05 539.83 1.079660e+02 0.000 14.25 5 0.000000e+00 0.00 2.857948e+05 2.852550e+05 539.83 NULL
2018 Hra/Dept Of Social Services Computer Programmer Analyst Trainee 43916.00000 4.391600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.391600e+04 4.391600e+04 0.00 NULL
2018 Hra/Dept Of Social Services Computer Service Technician 46317.70000 4.631770e+05 34559.34 3.455934e+03 596.950 891.50 10 5.969500e+02 5969.50 4.977363e+05 4.691465e+05 28589.84 NULL
2018 Hra/Dept Of Social Services Computer Specialist 95465.80556 3.780446e+07 1293623.45 3.266726e+03 0.000 16835.50 396 0.000000e+00 0.00 3.909808e+07 3.780446e+07 1293623.45 NULL
2018 Hra/Dept Of Social Services Computer Systems Manager 117592.18487 1.399347e+07 3247.01 2.728580e+01 0.000 40.00 119 0.000000e+00 0.00 1.399672e+07 1.399347e+07 3247.01 NULL
2018 Hra/Dept Of Social Services Confidential Strategy Planner 85959.25000 6.876740e+05 13985.93 1.748241e+03 0.000 271.75 8 0.000000e+00 0.00 7.016599e+05 6.876740e+05 13985.93 NULL
2018 Hra/Dept Of Social Services Construction Project Manager 78095.00000 3.123800e+05 478.57 1.196425e+02 51.345 6.00 4 5.134500e+01 205.38 3.128586e+05 3.125854e+05 273.19 NULL
2018 Hra/Dept Of Social Services Consultant 70787.60000 7.078760e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.078760e+05 7.078760e+05 0.00 NULL
2018 Hra/Dept Of Social Services Contract Specialist 58032.00000 7.544160e+05 6545.68 5.035138e+02 0.000 166.00 13 0.000000e+00 0.00 7.609617e+05 7.544160e+05 6545.68 NULL
2018 Hra/Dept Of Social Services Custodian 40643.54444 3.657919e+06 641427.35 7.126971e+03 7345.395 20606.25 90 7.126971e+03 641427.35 4.299346e+06 4.299346e+06 0.00 NULL
2018 Hra/Dept Of Social Services Deputy Assistant Commissioner 155859.00000 1.558590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.558590e+05 1.558590e+05 0.00 NULL
2018 Hra/Dept Of Social Services Deputy Commissioner 212000.00000 2.120000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120000e+05 2.120000e+05 0.00 NULL
2018 Hra/Dept Of Social Services Deputy Director Of Administration 113624.76923 1.477122e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.477122e+06 1.477122e+06 0.00 NULL
2018 Hra/Dept Of Social Services Deputy Director Of Labor Relations 110163.00000 1.101630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.101630e+05 1.101630e+05 0.00 NULL
2018 Hra/Dept Of Social Services Deputy Director Of Security 89911.33333 2.697340e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.697340e+05 2.697340e+05 0.00 NULL
2018 Hra/Dept Of Social Services Deputy General Counsel 98500.00000 1.970000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.970000e+05 1.970000e+05 0.00 NULL
2018 Hra/Dept Of Social Services Dir Of Home Care Services/Family And Adult Services 155859.00000 1.558590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.558590e+05 1.558590e+05 0.00 NULL
2018 Hra/Dept Of Social Services Dir Of Mgnt System, Planning, Research And Eval 147290.00000 1.472900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.472900e+05 1.472900e+05 0.00 NULL
2018 Hra/Dept Of Social Services Dir Policy Econom Resrch 64000.00000 6.400000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.400000e+04 6.400000e+04 0.00 NULL
2018 Hra/Dept Of Social Services Director Of Admin 200931.00000 2.009310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.009310e+05 2.009310e+05 0.00 NULL
2018 Hra/Dept Of Social Services Director Of Community Participation Programs 90895.00000 9.089500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.089500e+04 9.089500e+04 0.00 NULL
2018 Hra/Dept Of Social Services Director Of Compliance & Legislative Development 71791.00000 7.179100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.179100e+04 7.179100e+04 0.00 NULL
2018 Hra/Dept Of Social Services Director Of Eeo 98410.00000 9.841000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.841000e+04 9.841000e+04 0.00 NULL
2018 Hra/Dept Of Social Services Director Of Eeo/Contract Compliance 129828.00000 1.298280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.298280e+05 1.298280e+05 0.00 NULL
2018 Hra/Dept Of Social Services Director Of Fiscal Operations 134526.00000 1.345260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.345260e+05 1.345260e+05 0.00 NULL
2018 Hra/Dept Of Social Services Director Of Food Stamp Program 156848.00000 1.568480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.568480e+05 1.568480e+05 0.00 NULL
2018 Hra/Dept Of Social Services Director Of Labor Relations 154095.00000 1.540950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.540950e+05 1.540950e+05 0.00 NULL
2018 Hra/Dept Of Social Services Director Of Legislative Coordination 145546.00000 1.455460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.455460e+05 1.455460e+05 0.00 NULL
2018 Hra/Dept Of Social Services Director Of Management Planning Ss 124501.33333 7.470080e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.470080e+05 7.470080e+05 0.00 NULL
2018 Hra/Dept Of Social Services Director Of Policy Analysis 151159.00000 3.023180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.023180e+05 3.023180e+05 0.00 NULL
2018 Hra/Dept Of Social Services Director Of Public Information 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2018 Hra/Dept Of Social Services Director Of Security 94123.00000 9.412300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.412300e+04 9.412300e+04 0.00 NULL
2018 Hra/Dept Of Social Services Electrician NA NA 10763.93 8.279946e+02 79.940 81.50 13 7.994000e+01 1039.22 NA NA NA NULL
2018 Hra/Dept Of Social Services Electrician’s Helper NA NA 5687.76 8.125371e+02 954.720 85.50 7 8.125371e+02 5687.76 NA NA NA NULL
2018 Hra/Dept Of Social Services Eligibility Specialist 39976.42469 1.026195e+08 5705330.06 2.222567e+03 0.000 181761.26 2567 0.000000e+00 0.00 1.083248e+08 1.026195e+08 5705330.06 NULL
2018 Hra/Dept Of Social Services Exec Asst To The Deputy Commissioner 92970.00000 1.859400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.859400e+05 1.859400e+05 0.00 NULL
2018 Hra/Dept Of Social Services Executive Agency Counsel 132489.61224 6.491991e+06 0.00 0.000000e+00 0.000 0.00 49 0.000000e+00 0.00 6.491991e+06 6.491991e+06 0.00 NULL
2018 Hra/Dept Of Social Services Executive Assistant To The Executive Deputy Adm 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 6.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2018 Hra/Dept Of Social Services Executive Assistant To The Human Resources Admin 111549.00000 1.115490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.115490e+05 1.115490e+05 0.00 NULL
2018 Hra/Dept Of Social Services Executive Asst-Domestic Violence-Hra 59056.33333 3.543380e+05 268.47 4.474500e+01 0.000 8.00 6 0.000000e+00 0.00 3.546065e+05 3.543380e+05 268.47 NULL
2018 Hra/Dept Of Social Services Executive Deputy Administrator 200933.66667 6.028010e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.028010e+05 6.028010e+05 0.00 NULL
2018 Hra/Dept Of Social Services Executive Program Specialist 121206.60000 6.060330e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.060330e+05 6.060330e+05 0.00 NULL
2018 Hra/Dept Of Social Services Fraud Investigator 51157.62500 2.987605e+07 259278.09 4.439693e+02 0.000 6624.75 584 0.000000e+00 0.00 3.013533e+07 2.987605e+07 259278.09 NULL
2018 Hra/Dept Of Social Services General Counsel 200939.00000 2.009390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.009390e+05 2.009390e+05 0.00 NULL
2018 Hra/Dept Of Social Services Graphic Artist 55310.75000 4.424860e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.424860e+05 4.424860e+05 0.00 NULL
2018 Hra/Dept Of Social Services Head Nurse 79656.94444 1.433825e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.433825e+06 1.433825e+06 0.00 NULL
2018 Hra/Dept Of Social Services Health Services Manager 100993.00000 2.019860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.019860e+05 2.019860e+05 0.00 NULL
2018 Hra/Dept Of Social Services Homemaker 32155.00000 6.431000e+04 5573.07 2.786535e+03 2786.535 225.50 2 2.786535e+03 5573.07 6.988307e+04 6.988307e+04 0.00 NULL
2018 Hra/Dept Of Social Services Human Resources Administrator 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Hra/Dept Of Social Services Human Resources Technician 34268.00000 3.426800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.426800e+04 3.426800e+04 0.00 NULL
2018 Hra/Dept Of Social Services Institutional Aide 37239.33333 1.117180e+05 15329.62 5.109873e+03 1558.370 550.50 3 1.558370e+03 4675.11 1.270476e+05 1.163931e+05 10654.51 NULL
2018 Hra/Dept Of Social Services Investigator 61433.00000 3.685980e+05 8786.82 1.464470e+03 1396.020 210.75 6 1.396020e+03 8376.12 3.773848e+05 3.769741e+05 410.70 NULL
2018 Hra/Dept Of Social Services Job Opportunity Specialist 44821.81274 6.620182e+07 6649175.57 4.501811e+03 1256.760 196512.61 1477 1.256760e+03 1856234.52 7.285099e+07 6.805805e+07 4792941.05 NULL
2018 Hra/Dept Of Social Services Locksmith NA NA 3353.34 1.676670e+03 1676.670 75.50 2 1.676670e+03 3353.34 NA NA NA NULL
2018 Hra/Dept Of Social Services Maintenance Worker NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2018 Hra/Dept Of Social Services Management Auditor 64607.42857 2.261260e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 2.261260e+06 2.261260e+06 0.00 NULL
2018 Hra/Dept Of Social Services Management Auditor Trainee 45459.50000 9.091900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.091900e+04 9.091900e+04 0.00 NULL
2018 Hra/Dept Of Social Services Mechanical Engineer 93888.33333 2.816650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.816650e+05 2.816650e+05 0.00 NULL
2018 Hra/Dept Of Social Services Medical Specialist 75740.32660 2.272210e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.272210e+05 2.272210e+05 0.00 NULL
2018 Hra/Dept Of Social Services Motor Vehicle Operator 44080.50000 3.526440e+05 48198.06 6.024757e+03 1704.510 1529.50 8 1.704510e+03 13636.08 4.008421e+05 3.662801e+05 34561.98 NULL
2018 Hra/Dept Of Social Services Motor Vehicle Supervisor 56986.50000 2.279460e+05 76963.01 1.924075e+04 15589.010 1622.00 4 1.558901e+04 62356.04 3.049090e+05 2.903020e+05 14606.97 NULL
2018 Hra/Dept Of Social Services Office Machine Aide 34283.64286 4.799710e+05 21389.51 1.527822e+03 0.000 731.20 14 0.000000e+00 0.00 5.013605e+05 4.799710e+05 21389.51 NULL
2018 Hra/Dept Of Social Services Oiler NA NA 46043.23 1.151081e+04 11388.850 448.00 4 1.138885e+04 45555.40 NA NA NA NULL
2018 Hra/Dept Of Social Services Painter NA NA 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2018 Hra/Dept Of Social Services Paralegal Aide 43725.35000 8.745070e+05 36335.75 1.816787e+03 0.000 862.75 20 0.000000e+00 0.00 9.108428e+05 8.745070e+05 36335.75 NULL
2018 Hra/Dept Of Social Services Plumber NA NA 97315.58 1.216445e+04 10353.820 856.75 8 1.035382e+04 82830.56 NA NA NA NULL
2018 Hra/Dept Of Social Services Principal Administrative Associate - Lev 1 & 2 Non Supvr 55402.88067 7.939233e+07 5020727.50 3.503648e+03 0.000 121348.75 1433 0.000000e+00 0.00 8.441306e+07 7.939233e+07 5020727.50 NULL
2018 Hra/Dept Of Social Services Printing Press Operator NA NA 527.72 2.638600e+02 263.860 9.00 2 2.638600e+02 527.72 NA NA NA NULL
2018 Hra/Dept Of Social Services Procurement Analyst 61242.85000 2.449714e+06 3202.85 8.007125e+01 0.000 72.00 40 0.000000e+00 0.00 2.452917e+06 2.449714e+06 3202.85 NULL
2018 Hra/Dept Of Social Services Psychiatrist 136838.74678 1.642065e+06 -7.85 -6.541667e-01 0.000 0.00 12 -6.541667e-01 -7.85 1.642057e+06 1.642057e+06 0.00 NULL
2018 Hra/Dept Of Social Services Public Health Educator 57216.17308 2.975241e+06 100028.24 1.923620e+03 779.300 2557.50 52 7.793000e+02 40523.60 3.075269e+06 3.015765e+06 59504.64 NULL
2018 Hra/Dept Of Social Services Real Property Manager 62638.00000 6.263800e+04 70.09 7.009000e+01 70.090 2.00 1 7.009000e+01 70.09 6.270809e+04 6.270809e+04 0.00 NULL
2018 Hra/Dept Of Social Services Research Assistant 53676.00000 1.610280e+05 3509.18 1.169727e+03 0.000 61.50 3 0.000000e+00 0.00 1.645372e+05 1.610280e+05 3509.18 NULL
2018 Hra/Dept Of Social Services Secretary 39648.46429 1.110157e+06 118622.49 4.236517e+03 1103.400 3881.00 28 1.103400e+03 30895.20 1.228779e+06 1.141052e+06 87727.29 NULL
2018 Hra/Dept Of Social Services Secretary To The Commissioner 83267.66667 2.498030e+05 2687.46 8.958200e+02 0.000 12.00 3 0.000000e+00 0.00 2.524905e+05 2.498030e+05 2687.46 NULL
2018 Hra/Dept Of Social Services Secretary To The Department 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2018 Hra/Dept Of Social Services Secretary To The Human Resources Administrator 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2018 Hra/Dept Of Social Services Senior Consultant 75486.75000 1.207788e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.207788e+06 1.207788e+06 0.00 NULL
2018 Hra/Dept Of Social Services Senior Stationary Engineer NA NA 105175.67 2.629392e+04 26497.220 917.00 4 2.629392e+04 105175.67 NA NA NA NULL
2018 Hra/Dept Of Social Services Sheet Metal Worker NA NA 16812.85 8.406425e+03 8406.425 89.00 2 8.406425e+03 16812.85 NA NA NA NULL
2018 Hra/Dept Of Social Services Social Worker 54448.76543 4.410350e+06 70328.53 8.682535e+02 0.000 1867.25 81 0.000000e+00 0.00 4.480679e+06 4.410350e+06 70328.53 NULL
2018 Hra/Dept Of Social Services Space Analyst 70164.66667 1.473458e+06 10605.98 5.050467e+02 0.000 196.00 21 0.000000e+00 0.00 1.484064e+06 1.473458e+06 10605.98 NULL
2018 Hra/Dept Of Social Services Special Assistant To The Human Resources Administrator 91455.00000 2.743650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.743650e+05 2.743650e+05 0.00 NULL
2018 Hra/Dept Of Social Services Special Officer 42430.01266 3.351971e+06 216111.20 2.735585e+03 1581.180 6769.50 79 1.581180e+03 124913.22 3.568082e+06 3.476884e+06 91197.98 NULL
2018 Hra/Dept Of Social Services Staff Analyst 65742.70482 1.091329e+07 213873.15 1.288392e+03 0.000 4618.50 166 0.000000e+00 0.00 1.112716e+07 1.091329e+07 213873.15 NULL
2018 Hra/Dept Of Social Services Staff Nurse 74799.67568 2.767588e+06 2662.96 7.197189e+01 0.000 48.75 37 0.000000e+00 0.00 2.770251e+06 2.767588e+06 2662.96 NULL
2018 Hra/Dept Of Social Services Stationary Engineer NA NA 15153.73 7.576865e+03 7576.865 157.50 2 7.576865e+03 15153.73 NA NA NA NULL
2018 Hra/Dept Of Social Services Steam Fitter’s Helper NA NA 8621.25 8.621250e+03 8621.250 72.50 1 8.621250e+03 8621.25 NA NA NA NULL
2018 Hra/Dept Of Social Services Stock Worker 38332.33333 2.299940e+05 1209.66 2.016100e+02 0.000 53.00 6 0.000000e+00 0.00 2.312037e+05 2.299940e+05 1209.66 NULL
2018 Hra/Dept Of Social Services Strategic Initiative Specialist 96259.33333 2.887780e+05 1656.73 5.522433e+02 0.000 25.50 3 0.000000e+00 0.00 2.904347e+05 2.887780e+05 1656.73 NULL
2018 Hra/Dept Of Social Services Superintendent Of Adult Institutions 85206.00000 8.520600e+04 5113.63 5.113630e+03 5113.630 84.00 1 5.113630e+03 5113.63 9.031963e+04 9.031963e+04 0.00 NULL
2018 Hra/Dept Of Social Services Supervising Bookbinder 60871.00000 6.087100e+04 366.49 3.664900e+02 366.490 9.00 1 3.664900e+02 366.49 6.123749e+04 6.123749e+04 0.00 NULL
2018 Hra/Dept Of Social Services Supervising Computer Service Technician 71197.33333 2.135920e+05 18763.44 6.254480e+03 2202.400 391.25 3 2.202400e+03 6607.20 2.323554e+05 2.201992e+05 12156.24 NULL
2018 Hra/Dept Of Social Services Supervising Special Officer 54886.46512 2.360118e+06 183686.37 4.271776e+03 1223.250 4446.50 43 1.223250e+03 52599.75 2.543804e+06 2.412718e+06 131086.62 NULL
2018 Hra/Dept Of Social Services Supervisor Carpenter NA NA 16392.80 8.196400e+03 8196.400 109.50 2 8.196400e+03 16392.80 NA NA NA NULL
2018 Hra/Dept Of Social Services Supervisor Electrician NA NA 7357.91 1.839477e+03 675.240 67.00 4 6.752400e+02 2700.96 NA NA NA NULL
2018 Hra/Dept Of Social Services Supervisor I 55107.18765 2.231841e+07 832426.27 2.055374e+03 0.000 20224.50 405 0.000000e+00 0.00 2.315084e+07 2.231841e+07 832426.27 NULL
2018 Hra/Dept Of Social Services Supervisor I Social Work 61446.08571 2.150613e+06 43510.31 1.243152e+03 0.000 933.50 35 0.000000e+00 0.00 2.194123e+06 2.150613e+06 43510.31 NULL
2018 Hra/Dept Of Social Services Supervisor Ii 64594.57927 1.059351e+07 329495.37 2.009118e+03 70.570 6892.25 164 7.057000e+01 11573.48 1.092301e+07 1.060508e+07 317921.89 NULL
2018 Hra/Dept Of Social Services Supervisor Ii Social Work 71140.14286 4.979810e+05 6423.34 9.176200e+02 0.000 119.75 7 0.000000e+00 0.00 5.044043e+05 4.979810e+05 6423.34 NULL
2018 Hra/Dept Of Social Services Supervisor Iii 71714.80556 2.581733e+06 22076.38 6.132328e+02 0.000 485.50 36 0.000000e+00 0.00 2.603809e+06 2.581733e+06 22076.38 NULL
2018 Hra/Dept Of Social Services Supervisor Iii Social Work 78177.00000 6.254160e+05 2419.33 3.024162e+02 0.000 24.00 8 0.000000e+00 0.00 6.278353e+05 6.254160e+05 2419.33 NULL
2018 Hra/Dept Of Social Services Supervisor Of Electrical Installations & Maintenance 72611.00000 7.261100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.261100e+04 7.261100e+04 0.00 NULL
2018 Hra/Dept Of Social Services Supervisor Of Nurses 95487.44444 8.593870e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.593870e+05 8.593870e+05 0.00 NULL
2018 Hra/Dept Of Social Services Supervisor Of Office Machine Operations 43162.14286 9.064050e+05 76934.40 3.663543e+03 69.550 2186.50 21 6.955000e+01 1460.55 9.833394e+05 9.078656e+05 75473.85 NULL
2018 Hra/Dept Of Social Services Supervisor Of Stock Workers 49930.80000 2.496540e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.496540e+05 2.496540e+05 0.00 NULL
2018 Hra/Dept Of Social Services Supervisor Plumber NA NA 76012.56 3.800628e+04 38006.280 621.50 2 3.800628e+04 76012.56 NA NA NA NULL
2018 Hra/Dept Of Social Services Telecommunication Manager 95531.00000 9.553100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.553100e+04 9.553100e+04 0.00 NULL
2018 Hra/Dept Of Social Services Telecommunications Associate 70035.60000 3.501780e+05 25260.17 5.052034e+03 2141.140 494.75 5 2.141140e+03 10705.70 3.754382e+05 3.608837e+05 14554.47 NULL
2018 Human Rights Commission *Attorney At Law 83921.50000 1.678430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.678430e+05 1.678430e+05 0.00 NULL
2018 Human Rights Commission Administrative Public Information Specialist 124181.50000 2.483630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.483630e+05 2.483630e+05 0.00 NULL
2018 Human Rights Commission Agency Attorney 68499.15909 3.013963e+06 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 3.013963e+06 3.013963e+06 0.00 NULL
2018 Human Rights Commission Agency Attorney Interne 62290.00000 1.245800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.245800e+05 1.245800e+05 0.00 NULL
2018 Human Rights Commission Associate Human Rights Specialist 62596.17241 1.815289e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 1.815289e+06 1.815289e+06 0.00 NULL
2018 Human Rights Commission Certified It Developer 76288.00000 7.628800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.628800e+04 7.628800e+04 0.00 NULL
2018 Human Rights Commission Chairman Commission On Human Rights 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2018 Human Rights Commission College Aide 7239.25000 7.239250e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.239250e+03 7.239250e+03 0.00 NULL
2018 Human Rights Commission Community Assistant 11337.50917 6.802505e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.802505e+04 6.802505e+04 0.00 NULL
2018 Human Rights Commission Community Associate 45316.60000 2.265830e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.265830e+05 2.265830e+05 0.00 NULL
2018 Human Rights Commission Community Coordinator 53592.00000 5.359200e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.359200e+05 5.359200e+05 0.00 NULL
2018 Human Rights Commission Computer Associate 56034.50000 1.120690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.120690e+05 1.120690e+05 0.00 NULL
2018 Human Rights Commission Computer Operations Manager 103683.33333 3.110500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.110500e+05 3.110500e+05 0.00 NULL
2018 Human Rights Commission Counsel 149375.00000 2.987500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.987500e+05 2.987500e+05 0.00 NULL
2018 Human Rights Commission Dep Commissioner For Community Relations 167554.33333 5.026630e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.026630e+05 5.026630e+05 0.00 NULL
2018 Human Rights Commission Deputy Executive Director 68000.00000 6.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.800000e+04 6.800000e+04 0.00 NULL
2018 Human Rights Commission Executive Agency Counsel 108650.53333 1.629758e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.629758e+06 1.629758e+06 0.00 NULL
2018 Human Rights Commission Executive Director 93757.22222 8.438150e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.438150e+05 8.438150e+05 0.00 NULL
2018 Human Rights Commission Graphic Artist 58066.00000 5.806600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.806600e+04 5.806600e+04 0.00 NULL
2018 Human Rights Commission Human Rights Specialist 49374.52941 8.393670e+05 9681.08 5.694753e+02 0.000 222.28 17 0.000000e+00 0.00 8.490481e+05 8.393670e+05 9681.08 NULL
2018 Human Rights Commission Motor Vehicle Operator 37200.00000 7.440000e+04 8.91 4.455000e+00 4.455 1.00 2 4.455000e+00 8.91 7.440891e+04 7.440891e+04 0.00 NULL
2018 Human Rights Commission Principal Administrative Associate - Lev 1 & 2 Non Supvr 61964.00000 1.858920e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.858920e+05 1.858920e+05 0.00 NULL
2018 Human Rights Commission Prinicipal Human Rights Specialist 74806.60000 3.740330e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.740330e+05 3.740330e+05 0.00 NULL
2018 Human Rights Commission Secretary 45716.00000 4.571600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.571600e+04 4.571600e+04 0.00 NULL
2018 Hunter College High School Administrator 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2018 Hunter College High School Assistant Principal 116177.36364 1.277951e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.277951e+06 1.277951e+06 0.00 NULL
2018 Hunter College High School Assistant Teacher 29044.86364 6.389870e+05 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 6.389870e+05 6.389870e+05 0.00 NULL
2018 Hunter College High School Assistant To Heo 57972.66667 1.739180e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.739180e+05 1.739180e+05 0.00 NULL
2018 Hunter College High School Business Data And Reporting Analyst 51374.00000 1.027480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.027480e+05 1.027480e+05 0.00 NULL
2018 Hunter College High School Coach NA NA 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 NA NA NA NULL
2018 Hunter College High School College Accountant 49794.00000 4.979400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.979400e+04 4.979400e+04 0.00 NULL
2018 Hunter College High School College Assistant 7674.72529 2.455912e+05 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 2.455912e+05 2.455912e+05 0.00 NULL
2018 Hunter College High School Computer Systems Manager 99471.00000 9.947100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.947100e+04 9.947100e+04 0.00 NULL
2018 Hunter College High School Cuny Administrator Assistant 51458.00000 3.087480e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.087480e+05 3.087480e+05 0.00 NULL
2018 Hunter College High School Cuny Custodial Assistant 33084.00000 9.925200e+04 15022.57 5.007523e+03 6657.530 592.00 3 5.007523e+03 15022.57 1.142746e+05 1.142746e+05 0.00 NULL
2018 Hunter College High School Cuny Office Assistant 35727.80000 3.572780e+05 1549.75 1.549750e+02 0.000 53.75 10 0.000000e+00 0.00 3.588278e+05 3.572780e+05 1549.75 NULL
2018 Hunter College High School Education & Vocat Counselor 93515.83333 5.610950e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.610950e+05 5.610950e+05 0.00 NULL
2018 Hunter College High School Hccs Sr College Lab Tech 64758.33333 1.942750e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.942750e+05 1.942750e+05 0.00 NULL
2018 Hunter College High School High School Elem Counselor 95585.00000 9.558500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.558500e+04 9.558500e+04 0.00 NULL
2018 Hunter College High School Higher Education Assistant 75104.50000 1.502090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.502090e+05 1.502090e+05 0.00 NULL
2018 Hunter College High School Higher Education Associate 103455.50000 2.069110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.069110e+05 2.069110e+05 0.00 NULL
2018 Hunter College High School Higher Education Officer 114764.00000 2.295280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.295280e+05 2.295280e+05 0.00 NULL
2018 Hunter College High School It Assistant 62491.50000 1.249830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.249830e+05 1.249830e+05 0.00 NULL
2018 Hunter College High School It Associate 66710.00000 6.671000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.671000e+04 6.671000e+04 0.00 NULL
2018 Hunter College High School It Senior Associate 84345.00000 1.686900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.686900e+05 1.686900e+05 0.00 NULL
2018 Hunter College High School It Support Assistant 42033.03125 4.203303e+04 859.42 8.594200e+02 859.420 25.75 1 8.594200e+02 859.42 4.289245e+04 4.289245e+04 0.00 NULL
2018 Hunter College High School Oiler NA NA 5488.34 5.488340e+03 5488.340 64.00 1 5.488340e+03 5488.34 NA NA NA NULL
2018 Hunter College High School Principal 148931.50000 2.978630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.978630e+05 2.978630e+05 0.00 NULL
2018 Hunter College High School Substitute Teacher 18414.71132 2.780621e+06 0.00 0.000000e+00 0.000 0.00 151 0.000000e+00 0.00 2.780621e+06 2.780621e+06 0.00 NULL
2018 Hunter College High School Teacher NA NA 0.00 0.000000e+00 0.000 0.00 107 0.000000e+00 0.00 NA NA NA NULL
2018 Hunter College High School Teacher Of Library 82278.00000 8.227800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.227800e+04 8.227800e+04 0.00 NULL
2018 Independent Budget Office Agency Chief Contracting Officer 117420.00000 1.174200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.174200e+05 1.174200e+05 0.00 NULL
2018 Independent Budget Office Assistant Budget Analyst 72718.00000 7.271800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.271800e+04 7.271800e+04 0.00 NULL
2018 Independent Budget Office Budget Analyst 96721.47743 3.385252e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 3.385252e+06 3.385252e+06 0.00 NULL
2018 Independent Budget Office Director Of Independent Budget Office 203655.00000 2.036550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.036550e+05 2.036550e+05 0.00 NULL
2018 Independent Budget Office Executive Agency Counsel 74452.70000 7.445270e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.445270e+04 7.445270e+04 0.00 NULL
2018 Independent Budget Office Principal Administrative Associate - Lev 1 & 2 Non Supvr 43393.50000 8.678700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.678700e+04 8.678700e+04 0.00 NULL
2018 Landmarks Preservation Comm *Attorney At Law 85029.00000 8.502900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.502900e+04 8.502900e+04 0.00 NULL
2018 Landmarks Preservation Comm Administrative Landmarks Preservationist 93917.94125 9.391794e+05 165.54 1.655400e+01 0.000 0.00 10 0.000000e+00 0.00 9.393450e+05 9.391794e+05 165.54 NULL
2018 Landmarks Preservation Comm Administrative Public Information Specialist 84000.00000 8.400000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.400000e+04 8.400000e+04 0.00 NULL
2018 Landmarks Preservation Comm Administrative Staff Analyst 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2018 Landmarks Preservation Comm Associate Landmarks Preservationist 78450.00000 7.845000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.845000e+04 7.845000e+04 0.00 NULL
2018 Landmarks Preservation Comm Associate Staff Analyst 90830.00000 9.083000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.083000e+04 9.083000e+04 0.00 NULL
2018 Landmarks Preservation Comm Chair-Landmarks Preservation Commission 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2018 Landmarks Preservation Comm Chauffeur-Attendant 43200.00000 4.320000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.320000e+04 4.320000e+04 0.00 NULL
2018 Landmarks Preservation Comm Clerical Associate 56434.00000 5.643400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.643400e+04 5.643400e+04 0.00 NULL
2018 Landmarks Preservation Comm Community Assistant 23498.41410 2.349841e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.349841e+04 2.349841e+04 0.00 NULL
2018 Landmarks Preservation Comm Community Associate 41574.94143 2.910246e+05 306.69 4.381286e+01 0.000 2.25 7 0.000000e+00 0.00 2.913313e+05 2.910246e+05 306.69 NULL
2018 Landmarks Preservation Comm Community Coordinator 66196.00000 6.619600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.619600e+04 6.619600e+04 0.00 NULL
2018 Landmarks Preservation Comm Computer Programmer Analyst 53423.00000 1.068460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.068460e+05 1.068460e+05 0.00 NULL
2018 Landmarks Preservation Comm Computer Systems Manager 112516.00000 1.125160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.125160e+05 1.125160e+05 0.00 NULL
2018 Landmarks Preservation Comm Counsel 150822.00000 1.508220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.508220e+05 1.508220e+05 0.00 NULL
2018 Landmarks Preservation Comm Director Of Public Relations 81200.00000 1.624000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.624000e+05 1.624000e+05 0.00 NULL
2018 Landmarks Preservation Comm Director Of Urban Archaeology 86254.00000 8.625400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.625400e+04 8.625400e+04 0.00 NULL
2018 Landmarks Preservation Comm Executive Director 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2018 Landmarks Preservation Comm Landmarks Preservationist 60775.87006 2.734914e+06 14235.70 3.163489e+02 0.000 372.00 45 0.000000e+00 0.00 2.749150e+06 2.734914e+06 14235.70 NULL
2018 Landmarks Preservation Comm Legal Secretarial Assistant Al 2,3,4 Only 45376.00000 4.537600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.537600e+04 4.537600e+04 0.00 NULL
2018 Landmarks Preservation Comm Principal Administrative Associate - Lev 1 & 2 Non Supvr 64166.00000 6.416600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.416600e+04 6.416600e+04 0.00 NULL
2018 Landmarks Preservation Comm Public Relations Adviser 82400.00000 8.240000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.240000e+04 8.240000e+04 0.00 NULL
2018 Landmarks Preservation Comm Secretary To The Chair, Landmarks Preservation Commission 62334.00000 6.233400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.233400e+04 6.233400e+04 0.00 NULL
2018 Landmarks Preservation Comm Secretary To The Executive Director 48000.00000 4.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.800000e+04 4.800000e+04 0.00 NULL
2018 Landmarks Preservation Comm Staff Analyst 59481.00000 5.948100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.948100e+04 5.948100e+04 0.00 NULL
2018 Landmarks Preservation Comm Urban Archeologist 37165.59000 1.114968e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.114968e+05 1.114968e+05 0.00 NULL
2018 Law Department *Attorney At Law 81495.00000 8.149500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.149500e+04 8.149500e+04 0.00 NULL
2018 Law Department *Certified Applications Developer 104532.00000 1.045320e+05 5361.68 5.361680e+03 5361.680 72.00 1 5.361680e+03 5361.68 1.098937e+05 1.098937e+05 0.00 NULL
2018 Law Department Accountant 67233.50000 1.344670e+05 654.69 3.273450e+02 327.345 20.75 2 3.273450e+02 654.69 1.351217e+05 1.351217e+05 0.00 NULL
2018 Law Department Administrative Accountant 123816.66667 3.714500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.714500e+05 3.714500e+05 0.00 NULL
2018 Law Department Administrative Public Information Specialist 155927.50000 3.118550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.118550e+05 3.118550e+05 0.00 NULL
2018 Law Department Administrative Staff Analyst 97324.07692 1.265213e+06 6706.76 5.159046e+02 0.000 99.50 13 0.000000e+00 0.00 1.271920e+06 1.265213e+06 6706.76 NULL
2018 Law Department Assistant Corporation Counsel 100645.29368 1.023563e+08 0.00 0.000000e+00 0.000 0.00 1017 0.000000e+00 0.00 1.023563e+08 1.023563e+08 0.00 NULL
2018 Law Department Associate Quality Assurance Specialist 72861.00000 4.371660e+05 17871.49 2.978582e+03 2695.585 368.25 6 2.695585e+03 16173.51 4.550375e+05 4.533395e+05 1697.98 NULL
2018 Law Department Associate Staff Analyst 79961.29777 5.597291e+05 618.19 8.831286e+01 0.000 14.50 7 0.000000e+00 0.00 5.603473e+05 5.597291e+05 618.19 NULL
2018 Law Department Bookkeeper 49580.00000 3.470600e+05 30379.43 4.339919e+03 4233.920 727.00 7 4.233920e+03 29637.44 3.774394e+05 3.766974e+05 741.99 NULL
2018 Law Department Certified It Administrator 106365.50000 2.127310e+05 30733.68 1.536684e+04 15366.840 401.50 2 1.536684e+04 30733.68 2.434647e+05 2.434647e+05 0.00 NULL
2018 Law Department Certified It Developer 103636.00000 1.036360e+05 2226.44 2.226440e+03 2226.440 31.50 1 2.226440e+03 2226.44 1.058624e+05 1.058624e+05 0.00 NULL
2018 Law Department City Assessor 81819.33333 2.454580e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.454580e+05 2.454580e+05 0.00 NULL
2018 Law Department City Custodial Assistant 33313.00000 6.662600e+04 6887.88 3.443940e+03 3443.940 234.50 2 3.443940e+03 6887.88 7.351388e+04 7.351388e+04 0.00 NULL
2018 Law Department Claim Specialist 44330.91941 7.181609e+06 131924.19 8.143469e+02 0.000 3762.00 162 0.000000e+00 0.00 7.313533e+06 7.181609e+06 131924.19 NULL
2018 Law Department Clerical Associate 33534.53377 7.276994e+06 208096.54 9.589702e+02 0.000 7437.25 217 0.000000e+00 0.00 7.485090e+06 7.276994e+06 208096.54 NULL
2018 Law Department College Aide 4960.52222 1.785788e+05 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 1.785788e+05 1.785788e+05 0.00 NULL
2018 Law Department College Aide - Assignment Levels Ii And Iii 11415.39420 1.141539e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.141539e+04 1.141539e+04 0.00 NULL
2018 Law Department Community Associate 47509.00000 4.750900e+04 52.01 5.201000e+01 52.010 2.00 1 5.201000e+01 52.01 4.756101e+04 4.756101e+04 0.00 NULL
2018 Law Department Community Coordinator 57697.81818 6.346760e+05 8216.65 7.469682e+02 198.140 232.00 11 1.981400e+02 2179.54 6.428927e+05 6.368555e+05 6037.11 NULL
2018 Law Department Computer Aide-Non-Spvr 27733.71341 1.664023e+05 11090.54 1.848423e+03 66.700 348.25 6 6.670000e+01 400.20 1.774928e+05 1.668025e+05 10690.34 NULL
2018 Law Department Computer Associate 72640.19052 1.525444e+06 39473.33 1.879682e+03 221.440 809.25 21 2.214400e+02 4650.24 1.564917e+06 1.530094e+06 34823.09 NULL
2018 Law Department Computer Operations Manager 107472.00000 1.074720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074720e+05 1.074720e+05 0.00 NULL
2018 Law Department Computer Programmer Analyst 54846.00000 5.484600e+04 704.13 7.041300e+02 704.130 17.75 1 7.041300e+02 704.13 5.555013e+04 5.555013e+04 0.00 NULL
2018 Law Department Computer Service Technician 47077.09500 9.415419e+04 4646.68 2.323340e+03 2323.340 122.75 2 2.323340e+03 4646.68 9.880087e+04 9.880087e+04 0.00 NULL
2018 Law Department Computer Specialist 94358.25000 7.548660e+05 12420.43 1.552554e+03 498.815 167.25 8 4.988150e+02 3990.52 7.672864e+05 7.588565e+05 8429.91 NULL
2018 Law Department Computer Systems Manager 152497.50000 9.149850e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.149850e+05 9.149850e+05 0.00 NULL
2018 Law Department Corporation Counsel 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Law Department Custodian 56151.20000 2.807560e+05 30561.90 6.112380e+03 2127.490 681.50 5 2.127490e+03 10637.45 3.113179e+05 2.913935e+05 19924.45 NULL
2018 Law Department Customer Information Representative Ma L 1549 60000.00000 1.200000e+05 18378.06 9.189030e+03 9189.030 604.75 2 9.189030e+03 18378.06 1.383781e+05 1.383781e+05 0.00 NULL
2018 Law Department Department Librarian 34309.76120 3.430976e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.430976e+04 3.430976e+04 0.00 NULL
2018 Law Department Deputy Director Of Admin Worker’s Comp Benefits 88672.50000 1.773450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.773450e+05 1.773450e+05 0.00 NULL
2018 Law Department Deputy Director Of Administration 176076.00000 1.760760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.760760e+05 1.760760e+05 0.00 NULL
2018 Law Department Deputy Operation Support Manager 133612.50000 2.672250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.672250e+05 2.672250e+05 0.00 NULL
2018 Law Department Dir Of Administration, Worker’s Comp Benefits 133900.00000 1.339000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339000e+05 1.339000e+05 0.00 NULL
2018 Law Department Director Of Administration 184151.00000 1.841510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.841510e+05 1.841510e+05 0.00 NULL
2018 Law Department Executive Program Specialist 172232.00000 1.722320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.722320e+05 1.722320e+05 0.00 NULL
2018 Law Department First Assistant Corporation Counsel 220480.50000 4.409610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.409610e+05 4.409610e+05 0.00 NULL
2018 Law Department It Security Specialist 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2018 Law Department It Service Management Specialist 88088.00000 8.808800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.808800e+04 8.808800e+04 0.00 NULL
2018 Law Department Legal Secretarial Assistant - Al 1 Only 41206.66667 1.236200e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.236200e+05 1.236200e+05 0.00 NULL
2018 Law Department Legal Secretarial Assistant Al 2,3,4 Only 52417.28328 1.677353e+06 69786.14 2.180817e+03 334.265 1940.00 32 3.342650e+02 10696.48 1.747139e+06 1.688050e+06 59089.66 NULL
2018 Law Department Maintenance Worker NA NA 19004.78 1.900478e+04 19004.780 453.25 1 1.900478e+04 19004.78 NA NA NA NULL
2018 Law Department Management Auditor 76506.00000 7.650600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.650600e+04 7.650600e+04 0.00 NULL
2018 Law Department Medicolegal Analyst 70121.00000 1.402420e+05 8922.67 4.461335e+03 4461.335 194.00 2 4.461335e+03 8922.67 1.491647e+05 1.491647e+05 0.00 NULL
2018 Law Department Motor Vehicle Operator 37946.32438 2.656243e+05 22568.12 3.224017e+03 3804.190 604.25 7 3.224017e+03 22568.12 2.881924e+05 2.881924e+05 0.00 NULL
2018 Law Department Paralegal Aide 44848.81218 1.004613e+07 179902.36 8.031355e+02 0.000 4668.25 224 0.000000e+00 0.00 1.022604e+07 1.004613e+07 179902.36 NULL
2018 Law Department Principal Administrative Associate - Lev 1 & 2 Non Supvr 59047.00000 8.857050e+05 50845.93 3.389729e+03 0.000 1212.25 15 0.000000e+00 0.00 9.365509e+05 8.857050e+05 50845.93 NULL
2018 Law Department Principal Title Examiner 65104.60000 3.255230e+05 5.06 1.012000e+00 0.000 0.00 5 0.000000e+00 0.00 3.255281e+05 3.255230e+05 5.06 NULL
2018 Law Department Procurement Analyst 68024.00000 1.360480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.360480e+05 1.360480e+05 0.00 NULL
2018 Law Department Public Records Aide 35998.08222 3.239827e+05 32199.65 3.577739e+03 470.590 1056.50 9 4.705900e+02 4235.31 3.561824e+05 3.282180e+05 27964.34 NULL
2018 Law Department Research Assistant 54194.00000 5.419400e+04 54.42 5.442000e+01 54.420 1.75 1 5.442000e+01 54.42 5.424842e+04 5.424842e+04 0.00 NULL
2018 Law Department Secretary 43230.66667 1.296920e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.296920e+05 1.296920e+05 0.00 NULL
2018 Law Department Secretary To The Corporation Counsel 94618.00000 9.461800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.461800e+04 9.461800e+04 0.00 NULL
2018 Law Department Secretary To The First Assistant Corporation Counsel 71005.00000 7.100500e+04 38.86 3.886000e+01 38.860 1.00 1 3.886000e+01 38.86 7.104386e+04 7.104386e+04 0.00 NULL
2018 Law Department Senior Student Legal Specialist 35137.78831 4.567912e+05 4511.43 3.470331e+02 0.000 169.00 13 0.000000e+00 0.00 4.613027e+05 4.567912e+05 4511.43 NULL
2018 Law Department Senior Title Examiner 52326.00000 5.232600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.232600e+04 5.232600e+04 0.00 NULL
2018 Law Department Space Analyst 61104.00000 6.110400e+04 1305.30 1.305300e+03 1305.300 26.00 1 1.305300e+03 1305.30 6.240930e+04 6.240930e+04 0.00 NULL
2018 Law Department Staff Analyst 66169.14286 9.263680e+05 4697.31 3.355221e+02 0.000 86.25 14 0.000000e+00 0.00 9.310653e+05 9.263680e+05 4697.31 NULL
2018 Law Department Stenographer To The Corporation Counsel 66790.00000 6.679000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.679000e+04 6.679000e+04 0.00 NULL
2018 Law Department Student Legal Specialist 23041.81950 1.382509e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.382509e+05 1.382509e+05 0.00 NULL
2018 Law Department Summer Graduate Intern 1824.33665 1.806093e+05 0.00 0.000000e+00 0.000 0.00 99 0.000000e+00 0.00 1.806093e+05 1.806093e+05 0.00 NULL
2018 Law Department Supervising Computer Service Technician 59933.68300 2.397347e+05 5801.13 1.450283e+03 1246.405 152.00 4 1.246405e+03 4985.62 2.455359e+05 2.447204e+05 815.51 NULL
2018 Law Department Supervisor Of Office Machine Operations 47646.50000 9.529300e+04 3558.06 1.779030e+03 1779.030 99.50 2 1.779030e+03 3558.06 9.885106e+04 9.885106e+04 0.00 NULL
2018 Law Department Worker’s Compensation Benefits Examiner 43992.50389 3.123468e+06 184910.17 2.604369e+03 1584.820 5780.25 71 1.584820e+03 112522.22 3.308378e+06 3.235990e+06 72387.95 NULL
2018 Manhattan Community Board #1 Community Coordinator 67541.00000 1.350820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.350820e+05 1.350820e+05 0.00 NULL
2018 Manhattan Community Board #1 District Manager 82280.00000 1.645600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.645600e+05 1.645600e+05 0.00 NULL
2018 Manhattan Community Board #10 Assistant District Manager 47500.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2018 Manhattan Community Board #10 Community Assistant 38000.00000 3.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.800000e+04 3.800000e+04 0.00 NULL
2018 Manhattan Community Board #10 Community Associate 41518.00000 8.303600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.303600e+04 8.303600e+04 0.00 NULL
2018 Manhattan Community Board #10 District Manager 80904.00000 8.090400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.090400e+04 8.090400e+04 0.00 NULL
2018 Manhattan Community Board #11 Assistant District Manager 46500.00000 4.650000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.650000e+04 4.650000e+04 0.00 NULL
2018 Manhattan Community Board #11 Community Assistant 26918.53500 2.691853e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.691853e+04 2.691853e+04 0.00 NULL
2018 Manhattan Community Board #11 Community Associate 45675.00000 4.567500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.567500e+04 4.567500e+04 0.00 NULL
2018 Manhattan Community Board #11 District Manager 80747.00000 8.074700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.074700e+04 8.074700e+04 0.00 NULL
2018 Manhattan Community Board #12 Community Assistant 35000.00000 3.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.500000e+04 3.500000e+04 0.00 NULL
2018 Manhattan Community Board #12 Community Associate 48390.00000 4.839000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.839000e+04 4.839000e+04 0.00 NULL
2018 Manhattan Community Board #12 District Manager 88006.00000 8.800600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.800600e+04 8.800600e+04 0.00 NULL
2018 Manhattan Community Board #2 Assistant District Manager 45000.00000 4.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.500000e+04 4.500000e+04 0.00 NULL
2018 Manhattan Community Board #2 Community Assistant 34291.00000 3.429100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.429100e+04 3.429100e+04 0.00 NULL
2018 Manhattan Community Board #2 Community Coordinator 57916.00000 5.791600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.791600e+04 5.791600e+04 0.00 NULL
2018 Manhattan Community Board #2 District Manager 82750.00000 8.275000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.275000e+04 8.275000e+04 0.00 NULL
2018 Manhattan Community Board #3 Assistant District Manager 49961.00000 9.992200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.992200e+04 9.992200e+04 0.00 NULL
2018 Manhattan Community Board #3 Community Associate 41816.50000 8.363300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.363300e+04 8.363300e+04 0.00 NULL
2018 Manhattan Community Board #3 District Manager 82765.00000 8.276500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.276500e+04 8.276500e+04 0.00 NULL
2018 Manhattan Community Board #4 Community Associate 40000.00000 4.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.000000e+04 4.000000e+04 0.00 NULL
2018 Manhattan Community Board #4 Community Coordinator 63218.00000 6.321800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.321800e+04 6.321800e+04 0.00 NULL
2018 Manhattan Community Board #4 District Manager 90370.00000 9.037000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.037000e+04 9.037000e+04 0.00 NULL
2018 Manhattan Community Board #5 Assistant District Manager 61102.00000 6.110200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.110200e+04 6.110200e+04 0.00 NULL
2018 Manhattan Community Board #5 Community Associate 44990.00000 4.499000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.499000e+04 4.499000e+04 0.00 NULL
2018 Manhattan Community Board #5 District Manager 103825.00000 1.038250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.038250e+05 1.038250e+05 0.00 NULL
2018 Manhattan Community Board #6 Community Associate 46097.33333 1.382920e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.382920e+05 1.382920e+05 0.00 NULL
2018 Manhattan Community Board #6 District Manager 87000.00000 8.700000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.700000e+04 8.700000e+04 0.00 NULL
2018 Manhattan Community Board #7 Community Associate 36736.00000 3.673600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.673600e+04 3.673600e+04 0.00 NULL
2018 Manhattan Community Board #7 Community Coordinator 69801.76000 6.980176e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.980176e+04 6.980176e+04 0.00 NULL
2018 Manhattan Community Board #7 District Manager 96753.00000 9.675300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.675300e+04 9.675300e+04 0.00 NULL
2018 Manhattan Community Board #8 Assistant District Manager 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2018 Manhattan Community Board #8 Community Assistant 34209.33333 1.026280e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.026280e+05 1.026280e+05 0.00 NULL
2018 Manhattan Community Board #8 District Manager 79947.00000 1.598940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.598940e+05 1.598940e+05 0.00 NULL
2018 Manhattan Community Board #9 Community Associate 40063.18750 8.012638e+04 131.25 6.562500e+01 65.625 5.25 2 6.562500e+01 131.25 8.025762e+04 8.025762e+04 0.00 NULL
2018 Manhattan Community Board #9 District Manager 89009.00000 8.900900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.900900e+04 8.900900e+04 0.00 NULL
2018 Mayors Office Of Contract Svcs Admin Contract Specialist 108684.25000 4.347370e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.347370e+05 4.347370e+05 0.00 NULL
2018 Mayors Office Of Contract Svcs Administrative Manager 108972.00000 2.179440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.179440e+05 2.179440e+05 0.00 NULL
2018 Mayors Office Of Contract Svcs Administrative Procurement Analyst 107120.00000 1.071200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.071200e+05 1.071200e+05 0.00 NULL
2018 Mayors Office Of Contract Svcs Administrative Staff Analyst 130758.40000 6.537920e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.537920e+05 6.537920e+05 0.00 NULL
2018 Mayors Office Of Contract Svcs Computer Systems Manager 111864.22222 2.013556e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.013556e+06 2.013556e+06 0.00 NULL
2018 Mayors Office Of Contract Svcs Executive Agency Counsel 130000.00000 2.600000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.600000e+05 2.600000e+05 0.00 NULL
2018 Mayors Office Of Contract Svcs Graphic Artist 73903.00000 7.390300e+04 1241.21 1.241210e+03 1241.210 26.75 1 1.241210e+03 1241.21 7.514421e+04 7.514421e+04 0.00 NULL
2018 Mayors Office Of Contract Svcs Mayoral Office Assistant 48825.27273 1.074156e+06 3372.47 1.532941e+02 0.000 111.00 22 0.000000e+00 0.00 1.077528e+06 1.074156e+06 3372.47 NULL
2018 Mayors Office Of Contract Svcs Mayoral Program Coordinator 56270.25000 2.250810e+05 1963.09 4.907725e+02 276.830 65.50 4 2.768300e+02 1107.32 2.270441e+05 2.261883e+05 855.77 NULL
2018 Mayors Office Of Contract Svcs Procurement Analyst 79591.00000 1.591820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.591820e+05 1.591820e+05 0.00 NULL
2018 Mayors Office Of Contract Svcs Research Projects Coord 86803.26923 6.770655e+06 2642.89 3.388321e+01 0.000 51.50 78 0.000000e+00 0.00 6.773298e+06 6.770655e+06 2642.89 NULL
2018 Mayors Office Of Contract Svcs Research Projects Coordinator 52425.69483 1.520345e+06 3456.39 1.191859e+02 0.000 100.00 29 0.000000e+00 0.00 1.523802e+06 1.520345e+06 3456.39 NULL
2018 Mayors Office Of Contract Svcs Special Assistant 116808.75000 9.344700e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.344700e+05 9.344700e+05 0.00 NULL
2018 Municipal Water Fin Authority Budget Analyst 93471.61538 1.215131e+06 5473.24 4.210185e+02 0.000 139.50 13 0.000000e+00 0.00 1.220604e+06 1.215131e+06 5473.24 NULL
2018 Municipal Water Fin Authority Statistical Secretary 62999.00000 6.299900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.299900e+04 6.299900e+04 0.00 NULL
2018 Nyc Dept Of Veterans’ Services Administrative Community Relations Specialist 75333.33333 2.260000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.260000e+05 2.260000e+05 0.00 NULL
2018 Nyc Dept Of Veterans’ Services Administrative Director Of Social Services 127500.00000 2.550000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.550000e+05 2.550000e+05 0.00 NULL
2018 Nyc Dept Of Veterans’ Services Administrative Staff Analyst 78000.00000 7.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.800000e+04 7.800000e+04 0.00 NULL
2018 Nyc Dept Of Veterans’ Services College Aide 21180.00000 2.118000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.118000e+04 2.118000e+04 0.00 NULL
2018 Nyc Dept Of Veterans’ Services Community Associate 52142.50000 1.042850e+05 2041.60 1.020800e+03 1020.800 61.50 2 1.020800e+03 2041.60 1.063266e+05 1.063266e+05 0.00 NULL
2018 Nyc Dept Of Veterans’ Services Community Coordinator 59921.11765 1.018659e+06 19124.26 1.124956e+03 140.940 556.25 17 1.409400e+02 2395.98 1.037783e+06 1.021055e+06 16728.28 NULL
2018 Nyc Dept Of Veterans’ Services Deputy Assistant Commissioner 111413.90000 1.114139e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.114139e+06 1.114139e+06 0.00 NULL
2018 Nyc Dept Of Veterans’ Services Mayoral Office Assistant 77250.00000 7.725000e+04 782.23 7.822300e+02 782.230 11.00 1 7.822300e+02 782.23 7.803223e+04 7.803223e+04 0.00 NULL
2018 Nyc Dept Of Veterans’ Services Special Assistant 147133.50000 5.885340e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.885340e+05 5.885340e+05 0.00 NULL
2018 Nyc Employees Retirement Sys Accountant 67378.80000 6.737880e+05 9704.18 9.704180e+02 686.505 218.50 10 6.865050e+02 6865.05 6.834922e+05 6.806531e+05 2839.13 NULL
2018 Nyc Employees Retirement Sys Adm Manager-Non-Mgrl From M1/M2 82135.00000 4.928100e+05 7402.17 1.233695e+03 0.000 142.75 6 0.000000e+00 0.00 5.002122e+05 4.928100e+05 7402.17 NULL
2018 Nyc Employees Retirement Sys Administrative Accountant 110184.00000 2.203680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.203680e+05 2.203680e+05 0.00 NULL
2018 Nyc Employees Retirement Sys Administrative Actuary 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2018 Nyc Employees Retirement Sys Administrative Graphic Artist 98242.00000 9.824200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.824200e+04 9.824200e+04 0.00 NULL
2018 Nyc Employees Retirement Sys Administrative Labor Relations Analyst 146500.00000 2.930000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.930000e+05 2.930000e+05 0.00 NULL
2018 Nyc Employees Retirement Sys Administrative Management Auditor 128270.00000 1.282700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.282700e+05 1.282700e+05 0.00 NULL
2018 Nyc Employees Retirement Sys Administrative Manager 119600.00000 1.196000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.196000e+05 1.196000e+05 0.00 NULL
2018 Nyc Employees Retirement Sys Administrative Procurement Analyst 148000.00000 1.480000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.480000e+05 1.480000e+05 0.00 NULL
2018 Nyc Employees Retirement Sys Administrative Public Information Specialist 127529.66667 3.825890e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.825890e+05 3.825890e+05 0.00 NULL
2018 Nyc Employees Retirement Sys Administrative Retirement Benefits Specialist 116142.66667 2.090568e+06 387.05 2.150278e+01 0.000 0.00 18 0.000000e+00 0.00 2.090955e+06 2.090568e+06 387.05 NULL
2018 Nyc Employees Retirement Sys Administrative Staff Analyst 120680.81818 1.327489e+06 13504.70 1.227700e+03 0.000 210.75 11 0.000000e+00 0.00 1.340994e+06 1.327489e+06 13504.70 NULL
2018 Nyc Employees Retirement Sys Agency Attorney 82535.50000 3.301420e+05 15991.04 3.997760e+03 1606.835 275.75 4 1.606835e+03 6427.34 3.461330e+05 3.365693e+05 9563.70 NULL
2018 Nyc Employees Retirement Sys Assistant Retirement Benefits Examiner 45419.93333 3.406495e+06 69788.65 9.305153e+02 251.300 2195.50 75 2.513000e+02 18847.50 3.476284e+06 3.425342e+06 50941.15 NULL
2018 Nyc Employees Retirement Sys Associate Retirement Benefits Examiner 57930.90909 7.646880e+06 252050.29 1.909472e+03 490.865 6090.00 132 4.908650e+02 64794.18 7.898930e+06 7.711674e+06 187256.11 NULL
2018 Nyc Employees Retirement Sys Bookkeeper 35710.00000 3.571000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.571000e+04 3.571000e+04 0.00 NULL
2018 Nyc Employees Retirement Sys Certified It Administrator 97485.46154 1.267311e+06 86216.96 6.632074e+03 2728.160 1275.75 13 2.728160e+03 35466.08 1.353528e+06 1.302777e+06 50750.88 NULL
2018 Nyc Employees Retirement Sys Certified It Developer 105932.50000 2.118650e+05 14281.18 7.140590e+03 7140.590 209.75 2 7.140590e+03 14281.18 2.261462e+05 2.261462e+05 0.00 NULL
2018 Nyc Employees Retirement Sys Clerical Aide 34990.50000 6.998100e+04 25417.39 1.270869e+04 12708.695 948.00 2 1.270869e+04 25417.39 9.539839e+04 9.539839e+04 0.00 NULL
2018 Nyc Employees Retirement Sys Clerical Associate 35762.75255 1.859663e+06 240003.30 4.615448e+03 1582.385 9044.25 52 1.582385e+03 82284.02 2.099666e+06 1.941947e+06 157719.28 NULL
2018 Nyc Employees Retirement Sys Community Assistant 37259.60000 1.862980e+05 39326.08 7.865216e+03 2304.080 1411.00 5 2.304080e+03 11520.40 2.256241e+05 1.978184e+05 27805.68 NULL
2018 Nyc Employees Retirement Sys Community Associate 49018.00000 9.803600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.803600e+04 9.803600e+04 0.00 NULL
2018 Nyc Employees Retirement Sys Community Coordinator 57916.00000 5.791600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.791600e+04 5.791600e+04 0.00 NULL
2018 Nyc Employees Retirement Sys Computer Associate 70671.60000 7.067160e+05 23547.94 2.354794e+03 2731.955 530.50 10 2.354794e+03 23547.94 7.302639e+05 7.302639e+05 0.00 NULL
2018 Nyc Employees Retirement Sys Computer Programmer Analyst 65630.00000 6.563000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.563000e+04 6.563000e+04 0.00 NULL
2018 Nyc Employees Retirement Sys Computer Specialist 96411.83333 2.313884e+06 42998.70 1.791612e+03 46.740 594.00 24 4.674000e+01 1121.76 2.356883e+06 2.315006e+06 41876.94 NULL
2018 Nyc Employees Retirement Sys Computer Systems Manager 140195.31579 2.663711e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.663711e+06 2.663711e+06 0.00 NULL
2018 Nyc Employees Retirement Sys Customer Information Representative Ma L 1549 34442.76031 8.610690e+05 24172.05 9.668820e+02 503.720 1040.25 25 5.037200e+02 12593.00 8.852411e+05 8.736620e+05 11579.05 NULL
2018 Nyc Employees Retirement Sys Deputy Director 184836.00000 1.848360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.848360e+05 1.848360e+05 0.00 NULL
2018 Nyc Employees Retirement Sys Deputy Executive Director 201794.00000 2.017940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.017940e+05 2.017940e+05 0.00 NULL
2018 Nyc Employees Retirement Sys Executive Agency Counsel 138777.66667 4.163330e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.163330e+05 4.163330e+05 0.00 NULL
2018 Nyc Employees Retirement Sys Executive Director 224000.00000 2.240000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.240000e+05 2.240000e+05 0.00 NULL
2018 Nyc Employees Retirement Sys Legal Secretarial Assistant Al 2,3,4 Only 76652.00000 7.665200e+04 202.00 2.020000e+02 202.000 4.25 1 2.020000e+02 202.00 7.685400e+04 7.685400e+04 0.00 NULL
2018 Nyc Employees Retirement Sys Management Auditor 63191.25000 2.527650e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.527650e+05 2.527650e+05 0.00 NULL
2018 Nyc Employees Retirement Sys Office Machine Aide 19462.17256 3.892435e+05 46519.96 2.325998e+03 1470.835 2558.75 20 1.470835e+03 29416.70 4.357634e+05 4.186602e+05 17103.26 NULL
2018 Nyc Employees Retirement Sys Principal Administrative Associate - Lev 1 & 2 Non Supvr 62422.25000 1.498134e+06 49839.26 2.076636e+03 20.260 1060.00 24 2.026000e+01 486.24 1.547973e+06 1.498620e+06 49353.02 NULL
2018 Nyc Employees Retirement Sys Staff Analyst 57590.00000 1.727700e+05 9555.16 3.185053e+03 2975.770 277.50 3 2.975770e+03 8927.31 1.823252e+05 1.816973e+05 627.85 NULL
2018 Nyc Employees Retirement Sys Supervising Computer Service Technician 71252.00000 7.125200e+04 1805.64 1.805640e+03 1805.640 39.00 1 1.805640e+03 1805.64 7.305764e+04 7.305764e+04 0.00 NULL
2018 Nyc Employees Retirement Sys Telecommunications Associate 105549.00000 1.055490e+05 6780.04 6.780040e+03 6780.040 94.50 1 6.780040e+03 6780.04 1.123290e+05 1.123290e+05 0.00 NULL
2018 Nyc Fire Pension Fund Accountant 64760.00000 6.476000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.476000e+04 6.476000e+04 0.00 NULL
2018 Nyc Fire Pension Fund Actuarial Specialist Level Ii, Oj 95617.00000 9.561700e+04 25539.60 2.553960e+04 25539.600 399.50 1 2.553960e+04 25539.60 1.211566e+05 1.211566e+05 0.00 NULL
2018 Nyc Fire Pension Fund Adm Manager-Non-Mgrl From M1/M2 70122.66667 2.103680e+05 4925.44 1.641813e+03 293.500 117.75 3 2.935000e+02 880.50 2.152934e+05 2.112485e+05 4044.94 NULL
2018 Nyc Fire Pension Fund Administrative Retirement Benefits Specialist 113445.33333 3.403360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.403360e+05 3.403360e+05 0.00 NULL
2018 Nyc Fire Pension Fund Administrative Staff Analyst 83874.33333 2.516230e+05 180.65 6.021667e+01 0.000 5.25 3 0.000000e+00 0.00 2.518036e+05 2.516230e+05 180.65 NULL
2018 Nyc Fire Pension Fund Agency Attorney 91000.00000 9.100000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.100000e+04 9.100000e+04 0.00 NULL
2018 Nyc Fire Pension Fund Agency Chief Contracting Officer 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2018 Nyc Fire Pension Fund Associate Retirement Benefits Examiner 60074.83333 3.604490e+05 36854.92 6.142487e+03 865.170 795.00 6 8.651700e+02 5191.02 3.973039e+05 3.656400e+05 31663.90 NULL
2018 Nyc Fire Pension Fund Associate Staff Analyst 91214.00000 9.121400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.121400e+04 9.121400e+04 0.00 NULL
2018 Nyc Fire Pension Fund Certified It Administrator 78872.85000 7.887285e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.887285e+04 7.887285e+04 0.00 NULL
2018 Nyc Fire Pension Fund Clerical Associate 53673.50000 1.073470e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.073470e+05 1.073470e+05 0.00 NULL
2018 Nyc Fire Pension Fund Community Coordinator 59327.00000 1.186540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.186540e+05 1.186540e+05 0.00 NULL
2018 Nyc Fire Pension Fund Deputy Executive Director 194740.00000 3.894800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.894800e+05 3.894800e+05 0.00 NULL
2018 Nyc Fire Pension Fund Executive Agency Counsel 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2018 Nyc Fire Pension Fund Executive Director 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2018 Nyc Fire Pension Fund Principal Administrative Associate - Lev 1 & 2 Non Supvr 74956.66667 2.248700e+05 494.97 1.649900e+02 0.000 13.25 3 0.000000e+00 0.00 2.253650e+05 2.248700e+05 494.97 NULL
2018 Nyc Fire Pension Fund Research Assistant 59297.00000 5.929700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.929700e+04 5.929700e+04 0.00 NULL
2018 Nyc Housing Authority *Administrative Attorney 126492.00000 1.264920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.264920e+05 1.264920e+05 0.00 NULL
2018 Nyc Housing Authority *Attorney At Law 85029.00000 5.101740e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.101740e+05 5.101740e+05 0.00 NULL
2018 Nyc Housing Authority *Housing Caretaker 43079.00000 1.120054e+06 180564.67 6.944795e+03 5753.155 5017.00 26 5.753155e+03 149582.03 1.300619e+06 1.269636e+06 30982.64 NULL
2018 Nyc Housing Authority Accountant 60867.24242 2.008619e+06 322.87 9.783939e+00 0.000 10.00 33 0.000000e+00 0.00 2.008942e+06 2.008619e+06 322.87 NULL
2018 Nyc Housing Authority Adm Manager-Non-Mgrl From M1/M2 72830.89655 4.224192e+06 48702.92 8.397055e+02 0.000 874.50 58 0.000000e+00 0.00 4.272895e+06 4.224192e+06 48702.92 NULL
2018 Nyc Housing Authority Admin Community Relations Specialist 85702.38182 4.713631e+06 10683.39 1.942435e+02 0.000 182.75 55 0.000000e+00 0.00 4.724314e+06 4.713631e+06 10683.39 NULL
2018 Nyc Housing Authority Admin Contract Specialist 114452.63636 1.258979e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.258979e+06 1.258979e+06 0.00 NULL
2018 Nyc Housing Authority Administration Public Record Officer 124116.50000 2.482330e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.482330e+05 2.482330e+05 0.00 NULL
2018 Nyc Housing Authority Administrative Accountant 105379.79167 2.529115e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 2.529115e+06 2.529115e+06 0.00 NULL
2018 Nyc Housing Authority Administrative Architect 121081.80000 6.054090e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.054090e+05 6.054090e+05 0.00 NULL
2018 Nyc Housing Authority Administrative Business Promotion Coordinator 110182.60000 5.509130e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.509130e+05 5.509130e+05 0.00 NULL
2018 Nyc Housing Authority Administrative City Planner 129737.71429 9.081640e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.081640e+05 9.081640e+05 0.00 NULL
2018 Nyc Housing Authority Administrative Claim Examiner 109157.20000 5.457860e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.457860e+05 5.457860e+05 0.00 NULL
2018 Nyc Housing Authority Administrative Community Relations Specialist 150360.00000 6.014400e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.014400e+05 6.014400e+05 0.00 NULL
2018 Nyc Housing Authority Administrative Construction Project Manager 110547.15789 2.100396e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.100396e+06 2.100396e+06 0.00 NULL
2018 Nyc Housing Authority Administrative Engineer 119046.62500 9.523730e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.523730e+05 9.523730e+05 0.00 NULL
2018 Nyc Housing Authority Administrative Graphic Artist 92740.00000 9.274000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.274000e+04 9.274000e+04 0.00 NULL
2018 Nyc Housing Authority Administrative Housing Development Specialist 109108.37500 1.745734e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.745734e+06 1.745734e+06 0.00 NULL
2018 Nyc Housing Authority Administrative Housing Manager 119352.87097 3.699939e+06 20613.05 6.649371e+02 0.000 322.25 31 0.000000e+00 0.00 3.720552e+06 3.699939e+06 20613.05 NULL
2018 Nyc Housing Authority Administrative Housing Superintendent 117646.20000 7.647003e+06 6864.83 1.056128e+02 0.000 120.50 65 0.000000e+00 0.00 7.653868e+06 7.647003e+06 6864.83 NULL
2018 Nyc Housing Authority Administrative Inspector 116467.25000 1.397607e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.397607e+06 1.397607e+06 0.00 NULL
2018 Nyc Housing Authority Administrative Labor Relations Analyst 100363.00000 4.014520e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.014520e+05 4.014520e+05 0.00 NULL
2018 Nyc Housing Authority Administrative Landscape Architect 105016.00000 2.100320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.100320e+05 2.100320e+05 0.00 NULL
2018 Nyc Housing Authority Administrative Management Auditor 122336.00000 4.893440e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.893440e+05 4.893440e+05 0.00 NULL
2018 Nyc Housing Authority Administrative Printing Services Manager 106054.00000 1.060540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.060540e+05 1.060540e+05 0.00 NULL
2018 Nyc Housing Authority Administrative Procurement Analyst 96650.27273 1.063153e+06 24111.78 2.191980e+03 0.000 428.75 11 0.000000e+00 0.00 1.087265e+06 1.063153e+06 24111.78 NULL
2018 Nyc Housing Authority Administrative Project Manager 114753.70370 3.098350e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 3.098350e+06 3.098350e+06 0.00 NULL
2018 Nyc Housing Authority Administrative Public Information Specialist 107570.50000 1.936269e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.936269e+06 1.936269e+06 0.00 NULL
2018 Nyc Housing Authority Administrative Quality Assurance Specialist 81550.00000 8.155000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.155000e+04 8.155000e+04 0.00 NULL
2018 Nyc Housing Authority Administrative Real Property Manager 155354.50000 3.107090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.107090e+05 3.107090e+05 0.00 NULL
2018 Nyc Housing Authority Administrative Space Analyst 96813.25000 3.872530e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.872530e+05 3.872530e+05 0.00 NULL
2018 Nyc Housing Authority Administrative Staff Analyst 105907.64029 1.472116e+07 30545.41 2.197512e+02 0.000 612.50 139 0.000000e+00 0.00 1.475171e+07 1.472116e+07 30545.41 NULL
2018 Nyc Housing Authority Administrative Storekeeper 102332.00000 5.116600e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.116600e+05 5.116600e+05 0.00 NULL
2018 Nyc Housing Authority Administrative Supervisor Of Building Maintenance 103478.66667 6.208720e+05 3634.11 6.056850e+02 0.000 65.50 6 0.000000e+00 0.00 6.245061e+05 6.208720e+05 3634.11 NULL
2018 Nyc Housing Authority Agency Attorney 83763.23636 4.606978e+06 902.46 1.640836e+01 0.000 17.50 55 0.000000e+00 0.00 4.607880e+06 4.606978e+06 902.46 NULL
2018 Nyc Housing Authority Agency Attorney Interne 70353.00000 1.407060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.407060e+05 1.407060e+05 0.00 NULL
2018 Nyc Housing Authority Apprentice 54673.31579 3.116379e+06 42323.72 7.425214e+02 127.360 1123.00 57 1.273600e+02 7259.52 3.158703e+06 3.123639e+06 35064.20 NULL
2018 Nyc Housing Authority Architect 88982.90000 8.898290e+05 56466.14 5.646614e+03 0.000 745.00 10 0.000000e+00 0.00 9.462951e+05 8.898290e+05 56466.14 NULL
2018 Nyc Housing Authority Asbestos Handler 79767.76471 1.356052e+06 200900.81 1.181769e+04 9161.300 3485.00 17 9.161300e+03 155742.10 1.556953e+06 1.511794e+06 45158.71 NULL
2018 Nyc Housing Authority Asbestos Handler Supervisor 83767.00000 4.188350e+05 134966.13 2.699323e+04 41951.860 2182.25 5 2.699323e+04 134966.13 5.538011e+05 5.538011e+05 0.00 NULL
2018 Nyc Housing Authority Asbestos Hazard Investigator 72301.83333 4.338110e+05 108507.45 1.808458e+04 18511.300 1921.50 6 1.808458e+04 108507.45 5.423184e+05 5.423184e+05 0.00 NULL
2018 Nyc Housing Authority Assistant Architect 66243.25000 5.299460e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.299460e+05 5.299460e+05 0.00 NULL
2018 Nyc Housing Authority Assistant Civil Engineer 73758.80000 3.687940e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.687940e+05 3.687940e+05 0.00 NULL
2018 Nyc Housing Authority Assistant Director Of Intergroup Relations 94064.40000 4.703220e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.703220e+05 4.703220e+05 0.00 NULL
2018 Nyc Housing Authority Assistant Electrical Engineer 63081.00000 1.261620e+05 75.90 3.795000e+01 37.950 1.00 2 3.795000e+01 75.90 1.262379e+05 1.262379e+05 0.00 NULL
2018 Nyc Housing Authority Assistant Executive Director 171711.00000 3.434220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.434220e+05 3.434220e+05 0.00 NULL
2018 Nyc Housing Authority Assistant Housing Manager 70761.78307 1.337398e+07 353209.90 1.868835e+03 0.000 7906.75 189 0.000000e+00 0.00 1.372719e+07 1.337398e+07 353209.90 NULL
2018 Nyc Housing Authority Assistant Landscape Architect 77631.00000 7.763100e+04 16.58 1.658000e+01 16.580 0.00 1 1.658000e+01 16.58 7.764758e+04 7.764758e+04 0.00 NULL
2018 Nyc Housing Authority Assistant Mechanical Engineer 75779.50000 1.515590e+05 0.05 2.500000e-02 0.025 0.00 2 2.500000e-02 0.05 1.515590e+05 1.515590e+05 0.00 NULL
2018 Nyc Housing Authority Assistant Printing Press Operator 56959.60000 2.847980e+05 5125.65 1.025130e+03 180.250 165.75 5 1.802500e+02 901.25 2.899237e+05 2.856992e+05 4224.40 NULL
2018 Nyc Housing Authority Assistant Resident Building Supt 66278.53953 1.424989e+07 2118109.81 9.851674e+03 7723.010 45313.75 215 7.723010e+03 1660447.15 1.636800e+07 1.591033e+07 457662.66 NULL
2018 Nyc Housing Authority Assistant To The Chairman 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2018 Nyc Housing Authority Assistant Urban Designer 79726.00000 7.972600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.972600e+04 7.972600e+04 0.00 NULL
2018 Nyc Housing Authority Assoc Inspector 79176.66667 4.750600e+05 1042.96 1.738267e+02 0.000 17.75 6 0.000000e+00 0.00 4.761030e+05 4.750600e+05 1042.96 NULL
2018 Nyc Housing Authority Associate Contract Specialist 74253.50000 1.485070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.485070e+05 1.485070e+05 0.00 NULL
2018 Nyc Housing Authority Associate Fraud Investigator 87214.00000 8.721400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.721400e+04 8.721400e+04 0.00 NULL
2018 Nyc Housing Authority Associate Housing Development Specialist 87427.00000 6.994160e+05 96.58 1.207250e+01 0.000 2.00 8 0.000000e+00 0.00 6.995126e+05 6.994160e+05 96.58 NULL
2018 Nyc Housing Authority Associate Inspector 73042.50000 1.460850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.460850e+05 1.460850e+05 0.00 NULL
2018 Nyc Housing Authority Associate Investigator 61934.75000 4.954780e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.954780e+05 4.954780e+05 0.00 NULL
2018 Nyc Housing Authority Associate Labor Relations Analyst 84460.00000 8.446000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.446000e+04 8.446000e+04 0.00 NULL
2018 Nyc Housing Authority Associate Operations Communications Specialist 57074.00000 5.707400e+04 535.12 5.351200e+02 535.120 16.50 1 5.351200e+02 535.12 5.760912e+04 5.760912e+04 0.00 NULL
2018 Nyc Housing Authority Associate Project Manager 85061.57143 5.954310e+05 232.30 3.318571e+01 0.000 5.25 7 0.000000e+00 0.00 5.956633e+05 5.954310e+05 232.30 NULL
2018 Nyc Housing Authority Associate Public Information Specialist 54800.00000 5.480000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.480000e+04 5.480000e+04 0.00 NULL
2018 Nyc Housing Authority Associate Quality Assurance Specialist 65652.00000 6.565200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.565200e+04 6.565200e+04 0.00 NULL
2018 Nyc Housing Authority Associate Real Property Manager 70349.00000 1.406980e+05 224.31 1.121550e+02 112.155 5.75 2 1.121550e+02 224.31 1.409223e+05 1.409223e+05 0.00 NULL
2018 Nyc Housing Authority Associate Staff Analyst 79795.28571 3.909969e+06 43997.93 8.979169e+02 0.000 801.00 49 0.000000e+00 0.00 3.953967e+06 3.909969e+06 43997.93 NULL
2018 Nyc Housing Authority Associate Urban Designer 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2018 Nyc Housing Authority Auto Mechanic NA NA 22757.64 5.689410e+03 1685.070 392.25 4 1.685070e+03 6740.28 NA NA NA NULL
2018 Nyc Housing Authority Automotive Service Worker 50505.00000 1.515150e+05 819.09 2.730300e+02 121.350 25.00 3 1.213500e+02 364.05 1.523341e+05 1.518790e+05 455.04 NULL
2018 Nyc Housing Authority Bookkeeper 48122.26087 1.106812e+06 210.36 9.146087e+00 0.000 7.00 23 0.000000e+00 0.00 1.107022e+06 1.106812e+06 210.36 NULL
2018 Nyc Housing Authority Bricklayer NA NA 1177502.44 1.930332e+04 14151.220 17644.25 61 1.415122e+04 863224.42 NA NA NA NULL
2018 Nyc Housing Authority Business Promotion Coordinator 65120.83333 3.907250e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.907250e+05 3.907250e+05 0.00 NULL
2018 Nyc Housing Authority Caretaker 39149.80136 1.440713e+08 24773234.07 6.731857e+03 6683.100 786274.75 3680 6.683100e+03 24593808.00 1.688445e+08 1.686651e+08 179426.07 NULL
2018 Nyc Housing Authority Carpenter NA NA 5200077.83 1.969726e+04 14228.270 71367.75 264 1.422827e+04 3756263.28 NA NA NA NULL
2018 Nyc Housing Authority Cashier 47518.00000 4.751800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.751800e+04 4.751800e+04 0.00 NULL
2018 Nyc Housing Authority Certified It Administrator 101204.86667 1.518073e+06 59933.99 3.995599e+03 1817.130 726.25 15 1.817130e+03 27256.95 1.578007e+06 1.545330e+06 32677.04 NULL
2018 Nyc Housing Authority Chair 231684.00000 2.316840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.316840e+05 2.316840e+05 0.00 NULL
2018 Nyc Housing Authority Chief Caretaker 48238.00000 1.350664e+06 278920.94 9.961462e+03 8766.795 8587.50 28 8.766795e+03 245470.26 1.629585e+06 1.596134e+06 33450.68 NULL
2018 Nyc Housing Authority Chief Of Housing Community Activities 85455.66667 2.563670e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.563670e+05 2.563670e+05 0.00 NULL
2018 Nyc Housing Authority Chief, Publications & Reports 72055.00000 7.205500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.205500e+04 7.205500e+04 0.00 NULL
2018 Nyc Housing Authority City Attendant 30890.33333 2.780130e+05 1754.60 1.949556e+02 0.000 62.75 9 0.000000e+00 0.00 2.797676e+05 2.780130e+05 1754.60 NULL
2018 Nyc Housing Authority City Planner 68582.40000 3.429120e+05 40.25 8.050000e+00 0.000 3.00 5 0.000000e+00 0.00 3.429522e+05 3.429120e+05 40.25 NULL
2018 Nyc Housing Authority City Planning Technician 45000.00000 4.500000e+04 4910.78 4.910780e+03 4910.780 185.00 1 4.910780e+03 4910.78 4.991078e+04 4.991078e+04 0.00 NULL
2018 Nyc Housing Authority City Research Scientist 85040.00000 3.401600e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.401600e+05 3.401600e+05 0.00 NULL
2018 Nyc Housing Authority City Seasonal Aide 20101.00177 1.137717e+07 8589.99 1.517666e+01 0.000 232.75 566 0.000000e+00 0.00 1.138576e+07 1.137717e+07 8589.99 NULL
2018 Nyc Housing Authority City Security Aide 16821.27711 1.396166e+06 66320.30 7.990398e+02 0.000 3034.00 83 0.000000e+00 0.00 1.462486e+06 1.396166e+06 66320.30 NULL
2018 Nyc Housing Authority City Service Aide 24638.00000 1.010158e+06 1028.24 2.507902e+01 6.740 66.75 41 6.740000e+00 276.34 1.011186e+06 1.010434e+06 751.90 NULL
2018 Nyc Housing Authority Civil Engineer 89452.62500 7.156210e+05 370.57 4.632125e+01 0.000 3.25 8 0.000000e+00 0.00 7.159916e+05 7.156210e+05 370.57 NULL
2018 Nyc Housing Authority Claim Specialist 57110.50000 3.426630e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.426630e+05 3.426630e+05 0.00 NULL
2018 Nyc Housing Authority Clerical Aide 31460.40000 1.573020e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.573020e+05 1.573020e+05 0.00 NULL
2018 Nyc Housing Authority Clerical Associate 41507.84536 4.026261e+06 18804.64 1.938623e+02 0.000 649.00 97 0.000000e+00 0.00 4.045066e+06 4.026261e+06 18804.64 NULL
2018 Nyc Housing Authority College Aide 21469.75000 1.717580e+05 2854.65 3.568313e+02 0.000 170.50 8 0.000000e+00 0.00 1.746126e+05 1.717580e+05 2854.65 NULL
2018 Nyc Housing Authority Community Assistant 35320.00000 2.472400e+05 380.89 5.441286e+01 0.000 19.00 7 0.000000e+00 0.00 2.476209e+05 2.472400e+05 380.89 NULL
2018 Nyc Housing Authority Community Associate 43621.38667 3.271604e+06 28579.69 3.810625e+02 0.000 842.75 75 0.000000e+00 0.00 3.300184e+06 3.271604e+06 28579.69 NULL
2018 Nyc Housing Authority Community Coordinator 61812.29231 8.035598e+06 16360.05 1.258465e+02 0.000 380.50 130 0.000000e+00 0.00 8.051958e+06 8.035598e+06 16360.05 NULL
2018 Nyc Housing Authority Community Service Aide 10436.60526 3.965910e+05 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 3.965910e+05 3.965910e+05 0.00 NULL
2018 Nyc Housing Authority Computer Aide-Non-Spvr 43967.00000 4.396700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.396700e+04 4.396700e+04 0.00 NULL
2018 Nyc Housing Authority Computer Associate 69121.35294 1.175063e+06 12240.47 7.200276e+02 0.000 285.25 17 0.000000e+00 0.00 1.187303e+06 1.175063e+06 12240.47 NULL
2018 Nyc Housing Authority Computer Operations Manager 96245.71429 6.737200e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.737200e+05 6.737200e+05 0.00 NULL
2018 Nyc Housing Authority Computer Service Technician 50344.00000 1.510320e+05 2379.11 7.930367e+02 0.000 75.50 3 0.000000e+00 0.00 1.534111e+05 1.510320e+05 2379.11 NULL
2018 Nyc Housing Authority Computer Specialist 95905.46575 7.001099e+06 181994.24 2.493072e+03 0.000 2693.00 73 0.000000e+00 0.00 7.183093e+06 7.001099e+06 181994.24 NULL
2018 Nyc Housing Authority Computer Systems Manager 123481.02941 4.198355e+06 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 4.198355e+06 4.198355e+06 0.00 NULL
2018 Nyc Housing Authority Confidential Investigator 63789.17647 2.168832e+06 56092.98 1.649794e+03 0.000 1401.50 34 0.000000e+00 0.00 2.224925e+06 2.168832e+06 56092.98 NULL
2018 Nyc Housing Authority Construction Project Manager 77850.07767 8.018558e+06 138087.93 1.340660e+03 0.000 2233.50 103 0.000000e+00 0.00 8.156646e+06 8.018558e+06 138087.93 NULL
2018 Nyc Housing Authority Controller 155288.00000 3.105760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.105760e+05 3.105760e+05 0.00 NULL
2018 Nyc Housing Authority Counsel 147561.00000 1.475610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.475610e+05 1.475610e+05 0.00 NULL
2018 Nyc Housing Authority Customer Information Representative Ma L 1549 42195.34343 4.177339e+06 43468.85 4.390793e+02 0.000 1254.50 99 0.000000e+00 0.00 4.220808e+06 4.177339e+06 43468.85 NULL
2018 Nyc Housing Authority Dep Dir Of Audit & Prog Analysis 126690.00000 1.266900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.266900e+05 1.266900e+05 0.00 NULL
2018 Nyc Housing Authority Dep Dir Research & Pol Develp 107075.00000 2.141500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.141500e+05 2.141500e+05 0.00 NULL
2018 Nyc Housing Authority Dep Director Of Personnel & Lr 142140.00000 1.421400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.421400e+05 1.421400e+05 0.00 NULL
2018 Nyc Housing Authority Deputy Controller 155023.00000 1.550230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550230e+05 1.550230e+05 0.00 NULL
2018 Nyc Housing Authority Deputy Executive Director 194785.00000 1.947850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.947850e+05 1.947850e+05 0.00 NULL
2018 Nyc Housing Authority Deputy Inspector General 100148.75000 4.005950e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.005950e+05 4.005950e+05 0.00 NULL
2018 Nyc Housing Authority Dir Of Audit & Prog Analysis 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2018 Nyc Housing Authority Dir Of Quality & Cost Control 201955.00000 2.019550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.019550e+05 2.019550e+05 0.00 NULL
2018 Nyc Housing Authority Director Of Development 193000.00000 1.930000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.930000e+05 1.930000e+05 0.00 NULL
2018 Nyc Housing Authority Director Of Equal Opportunity 131272.00000 1.312720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.312720e+05 1.312720e+05 0.00 NULL
2018 Nyc Housing Authority Director Of General Services 148041.00000 1.480410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.480410e+05 1.480410e+05 0.00 NULL
2018 Nyc Housing Authority Director Of Housing Applicantions 148475.00000 2.969500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.969500e+05 2.969500e+05 0.00 NULL
2018 Nyc Housing Authority Director Of Information Systems 203135.00000 2.031350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.031350e+05 2.031350e+05 0.00 NULL
2018 Nyc Housing Authority Director Of Leased Housing 194000.00000 1.940000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.940000e+05 1.940000e+05 0.00 NULL
2018 Nyc Housing Authority Director Of Plant Operations & Maintenance 148765.00000 1.487650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.487650e+05 1.487650e+05 0.00 NULL
2018 Nyc Housing Authority Director Of Public & Community Relations 168000.00000 1.680000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.680000e+05 1.680000e+05 0.00 NULL
2018 Nyc Housing Authority Director Of Tenant & Community Affairs 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2018 Nyc Housing Authority Director Or Management 142526.00000 1.425260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.425260e+05 1.425260e+05 0.00 NULL
2018 Nyc Housing Authority Economist 69728.42857 4.880990e+05 6252.51 8.932157e+02 209.900 127.00 7 2.099000e+02 1469.30 4.943515e+05 4.895683e+05 4783.21 NULL
2018 Nyc Housing Authority Electrical Engineer 85565.00000 1.711300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.711300e+05 1.711300e+05 0.00 NULL
2018 Nyc Housing Authority Electrician NA NA 2203680.92 2.938241e+04 22515.770 26985.00 75 2.251577e+04 1688682.75 NA NA NA NULL
2018 Nyc Housing Authority Electrician’s Helper NA NA 1038541.10 1.622720e+04 14243.560 19957.00 64 1.424356e+04 911587.84 NA NA NA NULL
2018 Nyc Housing Authority Elevator Mechanic NA NA 4068298.87 1.558735e+04 15513.510 48389.00 261 1.551351e+04 4049026.11 NA NA NA NULL
2018 Nyc Housing Authority Elevator Mechanic Helper NA NA 2559488.23 1.184948e+04 12091.740 45175.75 216 1.184948e+04 2559488.23 NA NA NA NULL
2018 Nyc Housing Authority Emergency Service Aide 39102.31250 2.502548e+06 210379.35 3.287177e+03 876.850 7675.25 64 8.768500e+02 56118.40 2.712927e+06 2.558666e+06 154260.95 NULL
2018 Nyc Housing Authority Engineering Technician 73047.00000 7.304700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.304700e+04 7.304700e+04 0.00 NULL
2018 Nyc Housing Authority Executive Agency Counsel 120533.97143 4.218689e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 4.218689e+06 4.218689e+06 0.00 NULL
2018 Nyc Housing Authority Executive Director 216429.00000 4.328580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.328580e+05 4.328580e+05 0.00 NULL
2018 Nyc Housing Authority Executive Program Specialist 165000.00000 3.300000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.300000e+05 3.300000e+05 0.00 NULL
2018 Nyc Housing Authority Fraud Investigator 58945.00000 1.178900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.178900e+05 1.178900e+05 0.00 NULL
2018 Nyc Housing Authority Glazier NA NA 393620.93 1.640087e+04 14616.790 4633.75 24 1.461679e+04 350802.96 NA NA NA NULL
2018 Nyc Housing Authority Graphic Artist 48810.00000 1.464300e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.464300e+05 1.464300e+05 0.00 NULL
2018 Nyc Housing Authority Hearing Examiner 119910.00000 3.597300e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.597300e+05 3.597300e+05 0.00 NULL
2018 Nyc Housing Authority Heating Plant Technician 48745.64583 1.637854e+07 3166011.97 9.422655e+03 6542.705 95144.00 336 6.542705e+03 2198348.88 1.954455e+07 1.857689e+07 967663.09 NULL
2018 Nyc Housing Authority Housing Assistant 55548.39068 5.004910e+07 604325.56 6.707276e+02 0.000 17037.50 901 0.000000e+00 0.00 5.065343e+07 5.004910e+07 604325.56 NULL
2018 Nyc Housing Authority Housing Development Specialist 63205.66667 1.896170e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.896170e+05 1.896170e+05 0.00 NULL
2018 Nyc Housing Authority Housing Development Specialist Trainee 41311.00000 4.131100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.131100e+04 4.131100e+04 0.00 NULL
2018 Nyc Housing Authority Housing Exterminator 50337.19328 5.990126e+06 242162.53 2.034979e+03 487.930 6933.50 119 4.879300e+02 58063.67 6.232289e+06 6.048190e+06 184098.86 NULL
2018 Nyc Housing Authority Housing Exterminator-Al Ii & Iii 57051.00000 3.993570e+05 27884.36 3.983480e+03 3592.530 704.00 7 3.592530e+03 25147.71 4.272414e+05 4.245047e+05 2736.65 NULL
2018 Nyc Housing Authority Housing Exterminator-Al Iv 80369.00000 8.036900e+04 6691.90 6.691900e+03 6691.900 141.25 1 6.691900e+03 6691.90 8.706090e+04 8.706090e+04 0.00 NULL
2018 Nyc Housing Authority Housing Manager 87693.49744 1.710023e+07 861365.38 4.417258e+03 1734.560 15768.50 195 1.734560e+03 338239.20 1.796160e+07 1.743847e+07 523126.18 NULL
2018 Nyc Housing Authority Housing Stock Worker 50009.76190 1.050205e+06 1785.54 8.502571e+01 0.000 25.50 21 0.000000e+00 0.00 1.051991e+06 1.050205e+06 1785.54 NULL
2018 Nyc Housing Authority Industrial Hygienist 64631.00000 1.938930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.938930e+05 1.938930e+05 0.00 NULL
2018 Nyc Housing Authority Inspector 66565.25000 2.662610e+05 4038.59 1.009648e+03 0.000 95.25 4 0.000000e+00 0.00 2.702996e+05 2.662610e+05 4038.59 NULL
2018 Nyc Housing Authority Inspector General 147935.00000 1.479350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.479350e+05 1.479350e+05 0.00 NULL
2018 Nyc Housing Authority Interpreter 50539.00000 2.021560e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.021560e+05 2.021560e+05 0.00 NULL
2018 Nyc Housing Authority Interpreter/Translator 50960.66667 1.528820e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.528820e+05 1.528820e+05 0.00 NULL
2018 Nyc Housing Authority Investigator 50576.66667 3.034600e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.034600e+05 3.034600e+05 0.00 NULL
2018 Nyc Housing Authority Labor Relations Analyst 61739.57143 4.321770e+05 151.71 2.167286e+01 0.000 4.75 7 0.000000e+00 0.00 4.323287e+05 4.321770e+05 151.71 NULL
2018 Nyc Housing Authority Labor Relations Analyst Trainee 48375.27273 5.321280e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.321280e+05 5.321280e+05 0.00 NULL
2018 Nyc Housing Authority Landscape Architect 81549.00000 1.630980e+05 7630.92 3.815460e+03 3815.460 139.75 2 3.815460e+03 7630.92 1.707289e+05 1.707289e+05 0.00 NULL
2018 Nyc Housing Authority Lead Abatement Worker 49572.09091 1.635879e+06 88335.21 2.676825e+03 1507.230 2632.00 33 1.507230e+03 49738.59 1.724214e+06 1.685618e+06 38596.62 NULL
2018 Nyc Housing Authority Legal Secretarial Assistant - Al 1 Only 41024.00000 4.102400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.102400e+04 4.102400e+04 0.00 NULL
2018 Nyc Housing Authority Legal Secretarial Assistant Al 2,3,4 Only 46049.00000 4.604900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.604900e+04 4.604900e+04 0.00 NULL
2018 Nyc Housing Authority Machinist NA NA 8180.92 2.726973e+03 3264.310 170.00 3 2.726973e+03 8180.92 NA NA NA NULL
2018 Nyc Housing Authority Maintenance Worker NA NA 11183052.22 9.665559e+03 7974.630 265252.00 1157 7.974630e+03 9226646.91 NA NA NA NULL
2018 Nyc Housing Authority Management Auditor 66764.66667 1.201764e+06 398.11 2.211722e+01 0.000 10.25 18 0.000000e+00 0.00 1.202162e+06 1.201764e+06 398.11 NULL
2018 Nyc Housing Authority Masons Helper NA NA 584738.70 1.082849e+04 7089.270 12023.50 54 7.089270e+03 382820.58 NA NA NA NULL
2018 Nyc Housing Authority Mechanical Engineer 91952.16667 5.517130e+05 4574.50 7.624167e+02 0.000 73.75 6 0.000000e+00 0.00 5.562875e+05 5.517130e+05 4574.50 NULL
2018 Nyc Housing Authority Media Services Technician 58248.00000 5.824800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.824800e+04 5.824800e+04 0.00 NULL
2018 Nyc Housing Authority Motor Grader Operator NA NA 27373.42 2.737342e+04 27373.420 346.00 1 2.737342e+04 27373.42 NA NA NA NULL
2018 Nyc Housing Authority Motor Vehicle Operator 44744.52381 9.396350e+05 70197.21 3.342724e+03 0.000 1899.75 21 0.000000e+00 0.00 1.009832e+06 9.396350e+05 70197.21 NULL
2018 Nyc Housing Authority Motor Vehicle Supervisor 57906.00000 5.790600e+04 960.30 9.603000e+02 960.300 22.50 1 9.603000e+02 960.30 5.886630e+04 5.886630e+04 0.00 NULL
2018 Nyc Housing Authority Office Machine Aide 31608.00000 3.160800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.160800e+04 3.160800e+04 0.00 NULL
2018 Nyc Housing Authority Oil Burner Specialist 61382.69231 7.979750e+05 224219.23 1.724763e+04 9818.480 5498.75 13 9.818480e+03 127640.24 1.022194e+06 9.256152e+05 96578.99 NULL
2018 Nyc Housing Authority Painter NA NA 3191111.11 9.582916e+03 1864.900 54931.25 333 1.864900e+03 621011.70 NA NA NA NULL
2018 Nyc Housing Authority Plasterer NA NA 5067308.97 1.897869e+04 14472.670 60978.75 267 1.447267e+04 3864202.89 NA NA NA NULL
2018 Nyc Housing Authority Plumber NA NA 6608048.05 7.105428e+04 72631.660 62626.00 93 7.105428e+04 6608048.05 NA NA NA NULL
2018 Nyc Housing Authority Plumber’s Helper NA NA 3183706.16 3.790126e+04 39014.910 43555.50 84 3.790126e+04 3183706.16 NA NA NA NULL
2018 Nyc Housing Authority Principal Administrative Associate - Lev 1 & 2 Non Supvr 60183.11905 5.055382e+06 11805.40 1.405405e+02 0.000 294.25 84 0.000000e+00 0.00 5.067187e+06 5.055382e+06 11805.40 NULL
2018 Nyc Housing Authority Printing Press Operator NA NA 2594.62 2.594620e+03 2594.620 45.25 1 2.594620e+03 2594.62 NA NA NA NULL
2018 Nyc Housing Authority Procurement Analyst 61325.02174 2.820951e+06 86272.89 1.875498e+03 0.000 1855.50 46 0.000000e+00 0.00 2.907224e+06 2.820951e+06 86272.89 NULL
2018 Nyc Housing Authority Project Manager 69565.33333 2.086960e+05 24662.41 8.220803e+03 370.070 440.25 3 3.700700e+02 1110.21 2.333584e+05 2.098062e+05 23552.20 NULL
2018 Nyc Housing Authority Public Records Officer 56047.00000 5.604700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.604700e+04 5.604700e+04 0.00 NULL
2018 Nyc Housing Authority Quality Assurance Specialist 48205.33333 1.446160e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.446160e+05 1.446160e+05 0.00 NULL
2018 Nyc Housing Authority Recreation Director 48577.00000 4.857700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.857700e+04 4.857700e+04 0.00 NULL
2018 Nyc Housing Authority Research Assistant 51121.53333 7.668230e+05 1214.13 8.094200e+01 0.000 41.75 15 0.000000e+00 0.00 7.680371e+05 7.668230e+05 1214.13 NULL
2018 Nyc Housing Authority Resident Building Superintendent 85449.51364 1.879889e+07 2093498.75 9.515903e+03 5565.745 36477.00 220 5.565745e+03 1224463.90 2.089239e+07 2.002336e+07 869034.85 NULL
2018 Nyc Housing Authority Roofer NA NA 84356.87 3.667690e+03 1886.360 1645.50 23 1.886360e+03 43386.28 NA NA NA NULL
2018 Nyc Housing Authority Secretary 40858.09150 1.875386e+07 111668.35 2.432862e+02 0.000 4128.00 459 0.000000e+00 0.00 1.886553e+07 1.875386e+07 111668.35 NULL
2018 Nyc Housing Authority Secretary Of The Authority 164764.00000 1.647640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.647640e+05 1.647640e+05 0.00 NULL
2018 Nyc Housing Authority Secretary To Deputy Executive Director 70447.60000 3.522380e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.522380e+05 3.522380e+05 0.00 NULL
2018 Nyc Housing Authority Secretary To Member 71698.00000 7.169800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.169800e+04 7.169800e+04 0.00 NULL
2018 Nyc Housing Authority Secretary To The Chairman 66885.00000 6.688500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.688500e+04 6.688500e+04 0.00 NULL
2018 Nyc Housing Authority Senior Estimator 78256.83333 4.695410e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.695410e+05 4.695410e+05 0.00 NULL
2018 Nyc Housing Authority Senior General Deputy Manager 214671.00000 2.146710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.146710e+05 2.146710e+05 0.00 NULL
2018 Nyc Housing Authority Senior Intergroup Relations Officer 54577.00000 2.728850e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.728850e+05 2.728850e+05 0.00 NULL
2018 Nyc Housing Authority Senior Photographer 62627.00000 6.262700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.262700e+04 6.262700e+04 0.00 NULL
2018 Nyc Housing Authority Social Worker 56400.62500 4.512050e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.512050e+05 4.512050e+05 0.00 NULL
2018 Nyc Housing Authority Space Analyst 70763.00000 7.076300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.076300e+04 7.076300e+04 0.00 NULL
2018 Nyc Housing Authority Special Asst To Exec Dir 149389.00000 1.493890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.493890e+05 1.493890e+05 0.00 NULL
2018 Nyc Housing Authority Special Officer 43427.25000 1.737090e+05 2205.46 5.513650e+02 429.255 66.75 4 4.292550e+02 1717.02 1.759145e+05 1.754260e+05 488.44 NULL
2018 Nyc Housing Authority Staff Analyst 67250.85714 2.353780e+06 18539.05 5.296871e+02 0.000 406.00 35 0.000000e+00 0.00 2.372319e+06 2.353780e+06 18539.05 NULL
2018 Nyc Housing Authority Staff Analyst Trainee 44521.00000 1.335630e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.335630e+05 1.335630e+05 0.00 NULL
2018 Nyc Housing Authority Statistician 66558.66667 1.996760e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.996760e+05 1.996760e+05 0.00 NULL
2018 Nyc Housing Authority Summer College Intern 25860.00000 2.586000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.586000e+04 2.586000e+04 0.00 NULL
2018 Nyc Housing Authority Supervising Computer Service Technician 65827.50000 2.633100e+05 9757.49 2.439372e+03 1404.680 221.50 4 1.404680e+03 5618.72 2.730675e+05 2.689287e+05 4138.77 NULL
2018 Nyc Housing Authority Supervising Housing Groundskeeper 58351.92143 8.169269e+06 2094652.35 1.496180e+04 14891.785 45562.75 140 1.489178e+04 2084849.90 1.026392e+07 1.025412e+07 9802.45 NULL
2018 Nyc Housing Authority Supervising Special Officer 51993.00000 1.039860e+05 149.41 7.470500e+01 74.705 4.00 2 7.470500e+01 149.41 1.041354e+05 1.041354e+05 0.00 NULL
2018 Nyc Housing Authority Supervisor Bricklayer NA NA 345520.82 3.455208e+04 37861.245 4631.00 10 3.455208e+04 345520.82 NA NA NA NULL
2018 Nyc Housing Authority Supervisor Carpenter NA NA 595418.77 3.969458e+04 36090.600 7752.00 15 3.609060e+04 541359.00 NA NA NA NULL
2018 Nyc Housing Authority Supervisor Electrician NA NA 529851.74 4.075783e+04 33493.540 6037.50 13 3.349354e+04 435416.02 NA NA NA NULL
2018 Nyc Housing Authority Supervisor Elevator Mechanic NA NA 596868.81 1.755497e+04 20260.155 6276.75 34 1.755497e+04 596868.81 NA NA NA NULL
2018 Nyc Housing Authority Supervisor Glazier NA NA 149979.38 4.999313e+04 49941.030 1669.75 3 4.994103e+04 149823.09 NA NA NA NULL
2018 Nyc Housing Authority Supervisor Ii Social Work 71128.00000 4.978960e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.978960e+05 4.978960e+05 0.00 NULL
2018 Nyc Housing Authority Supervisor Of Electrical Installations & Maintenance 80292.66667 2.408780e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.408780e+05 2.408780e+05 0.00 NULL
2018 Nyc Housing Authority Supervisor Of Elevator Maintenance 123587.33333 3.707620e+05 804.43 2.681433e+02 0.000 0.00 3 0.000000e+00 0.00 3.715664e+05 3.707620e+05 804.43 NULL
2018 Nyc Housing Authority Supervisor Of Housing Caretaker 59775.87634 1.111831e+07 3040524.10 1.634690e+04 15298.630 65207.50 186 1.529863e+04 2845545.18 1.415884e+07 1.396386e+07 194978.92 NULL
2018 Nyc Housing Authority Supervisor Of Housing Stock Workers 65447.77778 1.178060e+06 23151.37 1.286187e+03 30.110 323.50 18 3.011000e+01 541.98 1.201211e+06 1.178602e+06 22609.39 NULL
2018 Nyc Housing Authority Supervisor Of Mechanical Installations & Maintenance 77488.73333 2.324662e+06 8100.26 2.700087e+02 0.000 154.75 30 0.000000e+00 0.00 2.332762e+06 2.324662e+06 8100.26 NULL
2018 Nyc Housing Authority Supervisor Of Mechanics 112821.00000 1.128210e+05 24314.90 2.431490e+04 24314.900 272.00 1 2.431490e+04 24314.90 1.371359e+05 1.371359e+05 0.00 NULL
2018 Nyc Housing Authority Supervisor Of Office Machine Operations 36943.00000 1.108290e+05 0.00 0.000000e+00 0.000 4.75 3 0.000000e+00 0.00 1.108290e+05 1.108290e+05 0.00 NULL
2018 Nyc Housing Authority Supervisor Painter NA NA 889917.93 1.390497e+04 4168.575 13257.50 64 4.168575e+03 266788.80 NA NA NA NULL
2018 Nyc Housing Authority Supervisor Plasterer NA NA 1103526.83 3.678423e+04 33558.590 12608.25 30 3.355859e+04 1006757.70 NA NA NA NULL
2018 Nyc Housing Authority Supervisor Plumber NA NA 1251341.57 7.820885e+04 72628.810 11254.50 16 7.262881e+04 1162060.96 NA NA NA NULL
2018 Nyc Housing Authority Supervisor Roofer NA NA 73635.81 1.227264e+04 12804.495 1328.50 6 1.227264e+04 73635.81 NA NA NA NULL
2018 Nyc Housing Authority Telecommunication Manager 105790.00000 1.057900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.057900e+05 1.057900e+05 0.00 NULL
2018 Nyc Housing Authority Telecommunications Associate 76839.28571 5.378750e+05 9325.11 1.332159e+03 0.000 186.25 7 0.000000e+00 0.00 5.472001e+05 5.378750e+05 9325.11 NULL
2018 Nyc Housing Authority Welder NA NA 207187.97 2.589850e+04 28720.950 2255.25 8 2.589850e+04 207187.97 NA NA NA NULL
2018 Nyc Housing Authority Worker’s Compensation Benefits Examiner 51709.50000 1.034190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.034190e+05 1.034190e+05 0.00 NULL
2018 Nyc Police Pension Fund Accountant 76103.66667 4.566220e+05 17124.96 2.854160e+03 28.325 303.25 6 2.832500e+01 169.95 4.737470e+05 4.567920e+05 16955.01 NULL
2018 Nyc Police Pension Fund Adm Manager-Non-Mgrl From M1/M2 78610.00000 7.861000e+04 10161.47 1.016147e+04 10161.470 210.00 1 1.016147e+04 10161.47 8.877147e+04 8.877147e+04 0.00 NULL
2018 Nyc Police Pension Fund Administrative Accountant 142042.25000 5.681690e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.681690e+05 5.681690e+05 0.00 NULL
2018 Nyc Police Pension Fund Administrative Labor Relations Analyst 175075.00000 1.750750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750750e+05 1.750750e+05 0.00 NULL
2018 Nyc Police Pension Fund Administrative Procurement Analyst 144625.00000 1.446250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.446250e+05 1.446250e+05 0.00 NULL
2018 Nyc Police Pension Fund Administrative Real Property Manager 104169.00000 1.041690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.041690e+05 1.041690e+05 0.00 NULL
2018 Nyc Police Pension Fund Administrative Retirement Benefits Specialist 120768.75000 1.449225e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.449225e+06 1.449225e+06 0.00 NULL
2018 Nyc Police Pension Fund Administrative Staff Analyst 124761.00000 3.742830e+05 626.06 2.086867e+02 0.000 1.25 3 0.000000e+00 0.00 3.749091e+05 3.742830e+05 626.06 NULL
2018 Nyc Police Pension Fund Agency Attorney 80955.00000 8.095500e+04 8866.69 8.866690e+03 8866.690 157.00 1 8.866690e+03 8866.69 8.982169e+04 8.982169e+04 0.00 NULL
2018 Nyc Police Pension Fund Assistant Retirement Benefits Examiner 51258.80000 2.562940e+05 1127.62 2.255240e+02 0.960 43.25 5 9.600000e-01 4.80 2.574216e+05 2.562988e+05 1122.82 NULL
2018 Nyc Police Pension Fund Associate Retirement Benefits Examiner 69969.90909 7.696690e+05 30297.43 2.754312e+03 2096.180 735.50 11 2.096180e+03 23057.98 7.999664e+05 7.927270e+05 7239.45 NULL
2018 Nyc Police Pension Fund Associate Staff Analyst 85591.00000 8.559100e+04 81.98 8.198000e+01 81.980 1.75 1 8.198000e+01 81.98 8.567298e+04 8.567298e+04 0.00 NULL
2018 Nyc Police Pension Fund Certified It Administrator 122528.00000 2.450560e+05 55985.66 2.799283e+04 27992.830 631.25 2 2.799283e+04 55985.66 3.010417e+05 3.010417e+05 0.00 NULL
2018 Nyc Police Pension Fund Clerical Associate 49311.06182 5.424217e+05 4779.11 4.344645e+02 0.000 126.75 11 0.000000e+00 0.00 5.472008e+05 5.424217e+05 4779.11 NULL
2018 Nyc Police Pension Fund College Aide 3462.13636 7.616700e+04 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 7.616700e+04 7.616700e+04 0.00 NULL
2018 Nyc Police Pension Fund Community Assistant 34527.15964 2.416901e+05 10428.94 1.489849e+03 895.500 390.75 7 8.955000e+02 6268.50 2.521191e+05 2.479586e+05 4160.44 NULL
2018 Nyc Police Pension Fund Community Associate 43937.38636 1.933245e+06 73310.60 1.666150e+03 43.740 2350.00 44 4.374000e+01 1924.56 2.006556e+06 1.935170e+06 71386.04 NULL
2018 Nyc Police Pension Fund Community Coordinator 72956.77778 6.566110e+05 17987.67 1.998630e+03 0.000 392.75 9 0.000000e+00 0.00 6.745987e+05 6.566110e+05 17987.67 NULL
2018 Nyc Police Pension Fund Computer Aide-Non-Spvr 42000.00000 4.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.200000e+04 4.200000e+04 0.00 NULL
2018 Nyc Police Pension Fund Computer Associate 54967.00000 5.496700e+04 5142.81 5.142810e+03 5142.810 159.25 1 5.142810e+03 5142.81 6.010981e+04 6.010981e+04 0.00 NULL
2018 Nyc Police Pension Fund Computer Specialist 115747.80000 5.787390e+05 18326.07 3.665214e+03 0.000 258.25 5 0.000000e+00 0.00 5.970651e+05 5.787390e+05 18326.07 NULL
2018 Nyc Police Pension Fund Computer Systems Manager 164584.40000 8.229220e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.229220e+05 8.229220e+05 0.00 NULL
2018 Nyc Police Pension Fund Deputy Director 204309.50000 4.086190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.086190e+05 4.086190e+05 0.00 NULL
2018 Nyc Police Pension Fund Executive Agency Counsel 164592.00000 1.645920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.645920e+05 1.645920e+05 0.00 NULL
2018 Nyc Police Pension Fund Executive Director 213041.00000 2.130410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.130410e+05 2.130410e+05 0.00 NULL
2018 Nyc Police Pension Fund Management Auditor 84891.66667 2.546750e+05 11132.52 3.710840e+03 278.980 269.50 3 2.789800e+02 836.94 2.658075e+05 2.555119e+05 10295.58 NULL
2018 Nyc Police Pension Fund Paralegal Aide 56609.00000 1.132180e+05 624.49 3.122450e+02 312.245 18.25 2 3.122450e+02 624.49 1.138425e+05 1.138425e+05 0.00 NULL
2018 Nyc Police Pension Fund Principal Administrative Associate - Lev 1 & 2 Non Supvr 66143.81818 7.275820e+05 18269.93 1.660903e+03 1072.570 426.00 11 1.072570e+03 11798.27 7.458519e+05 7.393803e+05 6471.66 NULL
2018 Nyc Police Pension Fund Procurement Analyst 70246.00000 7.024600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.024600e+04 7.024600e+04 0.00 NULL
2018 Nyc Police Pension Fund Secretary To The Executive Director 188652.00000 1.886520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.886520e+05 1.886520e+05 0.00 NULL
2018 Nyc Police Pension Fund Staff Analyst 50078.00000 5.007800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.007800e+04 5.007800e+04 0.00 NULL
2018 Nyc Police Pension Fund Staff Analyst Trainee 48729.00000 4.872900e+04 493.42 4.934200e+02 493.420 14.00 1 4.934200e+02 493.42 4.922242e+04 4.922242e+04 0.00 NULL
2018 Nyc Police Pension Fund Statistician 77341.00000 7.734100e+04 969.12 9.691200e+02 969.120 19.25 1 9.691200e+02 969.12 7.831012e+04 7.831012e+04 0.00 NULL
2018 Nyc Police Pension Fund Supervisor Of Office Machine Operations 63888.00000 6.388800e+04 1003.22 1.003220e+03 1003.220 23.00 1 1.003220e+03 1003.22 6.489122e+04 6.489122e+04 0.00 NULL
2018 Off Of Payroll Administration Accountant 66122.71429 4.628590e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.628590e+05 4.628590e+05 0.00 NULL
2018 Off Of Payroll Administration Adm Manager-Non-Mgrl From M1/M2 78424.72727 8.626720e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 8.626720e+05 8.626720e+05 0.00 NULL
2018 Off Of Payroll Administration Admin Contract Specialist 134294.00000 1.342940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.342940e+05 1.342940e+05 0.00 NULL
2018 Off Of Payroll Administration Administrative Accountant 103988.57143 7.279200e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.279200e+05 7.279200e+05 0.00 NULL
2018 Off Of Payroll Administration Administrative Public Information Specialist 129144.00000 1.291440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.291440e+05 1.291440e+05 0.00 NULL
2018 Off Of Payroll Administration Administrative Staff Analyst 115621.22222 2.081182e+06 149.92 8.328889e+00 0.000 3.75 18 0.000000e+00 0.00 2.081332e+06 2.081182e+06 149.92 NULL
2018 Off Of Payroll Administration Associate Staff Analyst 82627.25000 6.610180e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.610180e+05 6.610180e+05 0.00 NULL
2018 Off Of Payroll Administration Bookkeeper 63397.00000 6.339700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.339700e+04 6.339700e+04 0.00 NULL
2018 Off Of Payroll Administration Certified It Administrator 96039.00000 9.603900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.603900e+04 9.603900e+04 0.00 NULL
2018 Off Of Payroll Administration Certified It Developer 115512.00000 1.155120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.155120e+05 1.155120e+05 0.00 NULL
2018 Off Of Payroll Administration Clerical Associate 46694.72222 8.405050e+05 2341.95 1.301083e+02 0.000 62.50 18 0.000000e+00 0.00 8.428469e+05 8.405050e+05 2341.95 NULL
2018 Off Of Payroll Administration College Aide 3917.65000 3.917650e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.917650e+03 3.917650e+03 0.00 NULL
2018 Off Of Payroll Administration Community Assistant 29510.53000 5.902106e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.902106e+04 5.902106e+04 0.00 NULL
2018 Off Of Payroll Administration Community Associate 48801.00000 2.928060e+05 689.56 1.149267e+02 0.000 28.00 6 0.000000e+00 0.00 2.934956e+05 2.928060e+05 689.56 NULL
2018 Off Of Payroll Administration Community Coordinator 67265.75000 2.690630e+05 1423.29 3.558225e+02 3.115 28.00 4 3.115000e+00 12.46 2.704863e+05 2.690755e+05 1410.83 NULL
2018 Off Of Payroll Administration Computer Aide-Non-Spvr 47409.00000 4.740900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.740900e+04 4.740900e+04 0.00 NULL
2018 Off Of Payroll Administration Computer Associate 74931.66667 4.495900e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.495900e+05 4.495900e+05 0.00 NULL
2018 Off Of Payroll Administration Computer Programmer Analyst 59256.50000 1.185130e+05 65.26 3.263000e+01 32.630 2.00 2 3.263000e+01 65.26 1.185783e+05 1.185783e+05 0.00 NULL
2018 Off Of Payroll Administration Computer Specialist 99975.05556 1.799551e+06 7197.21 3.998450e+02 0.000 92.25 18 0.000000e+00 0.00 1.806748e+06 1.799551e+06 7197.21 NULL
2018 Off Of Payroll Administration Computer Systems Manager 122526.76000 3.063169e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 3.063169e+06 3.063169e+06 0.00 NULL
2018 Off Of Payroll Administration Custodian 56775.00000 5.677500e+04 2393.49 2.393490e+03 2393.490 49.25 1 2.393490e+03 2393.49 5.916849e+04 5.916849e+04 0.00 NULL
2018 Off Of Payroll Administration Customer Information Representative Ma L 1549 81957.00000 1.639140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.639140e+05 1.639140e+05 0.00 NULL
2018 Off Of Payroll Administration Executive Agency Counsel 131306.00000 1.313060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.313060e+05 1.313060e+05 0.00 NULL
2018 Off Of Payroll Administration Executive Director 222341.00000 2.223410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.223410e+05 2.223410e+05 0.00 NULL
2018 Off Of Payroll Administration Management Auditor 77165.00000 3.086600e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.086600e+05 3.086600e+05 0.00 NULL
2018 Off Of Payroll Administration Nycaps Process Analyst 89923.00000 1.798460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.798460e+05 1.798460e+05 0.00 NULL
2018 Off Of Payroll Administration Principal Administrative Associate - Lev 1 & 2 Non Supvr 66476.10526 1.263046e+06 8472.37 4.459142e+02 0.000 175.50 19 0.000000e+00 0.00 1.271518e+06 1.263046e+06 8472.37 NULL
2018 Off Of Payroll Administration Staff Analyst 67448.00000 2.697920e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.697920e+05 2.697920e+05 0.00 NULL
2018 Off Of Payroll Administration Telecommunication Manager 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2018 Office Of Collective Bargainin Administrative Staff Analyst 136990.00000 1.369900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.369900e+05 1.369900e+05 0.00 NULL
2018 Office Of Collective Bargainin College Aide - Assignment Levels Ii And Iii 4156.16250 4.156163e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.156163e+03 4.156163e+03 0.00 NULL
2018 Office Of Collective Bargainin Community Associate 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2018 Office Of Collective Bargainin Computer Systems Manager 99550.00000 9.955000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.955000e+04 9.955000e+04 0.00 NULL
2018 Office Of Collective Bargainin Deputy Director 175100.00000 3.502000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.502000e+05 3.502000e+05 0.00 NULL
2018 Office Of Collective Bargainin Director Of Information And Research 136990.00000 1.369900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.369900e+05 1.369900e+05 0.00 NULL
2018 Office Of Collective Bargainin Director Of The Office Of Collective Bargaining 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Office Of Collective Bargainin Executive Assistant To The Director 112270.00000 1.122700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.122700e+05 1.122700e+05 0.00 NULL
2018 Office Of Collective Bargainin Labor Relations Trial Examiner 121540.00000 6.077000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.077000e+05 6.077000e+05 0.00 NULL
2018 Office Of Collective Bargainin Legal Secretarial Assistant - Al 1 Only 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2018 Office Of Collective Bargainin Secretary To The Deputy Chair 50240.00000 5.024000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.024000e+04 5.024000e+04 0.00 NULL
2018 Office Of Collective Bargainin Secy To The Director Of Collective Bargaining 76993.00000 7.699300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.699300e+04 7.699300e+04 0.00 NULL
2018 Office Of Collective Bargainin Staff Analyst 70941.00000 7.094100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.094100e+04 7.094100e+04 0.00 NULL
2018 Office Of Collective Bargainin Summer Graduate Intern 3009.07500 3.009075e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.009075e+03 3.009075e+03 0.00 NULL
2018 Office Of Emergency Management Administrative Public Information Specialist 110130.00000 1.101300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.101300e+05 1.101300e+05 0.00 NULL
2018 Office Of Emergency Management Agency Attorney 74813.33333 2.244400e+05 14625.32 4.875107e+03 3580.370 296.50 3 3.580370e+03 10741.11 2.390653e+05 2.351811e+05 3884.21 NULL
2018 Office Of Emergency Management Certified It Administrator 127761.00000 1.277610e+05 5619.96 5.619960e+03 5619.960 71.25 1 5.619960e+03 5619.96 1.333810e+05 1.333810e+05 0.00 NULL
2018 Office Of Emergency Management Commissioner Of Emergency Management 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Office Of Emergency Management Community Associate 43088.00000 4.308800e+04 1061.27 1.061270e+03 1061.270 38.00 1 1.061270e+03 1061.27 4.414927e+04 4.414927e+04 0.00 NULL
2018 Office Of Emergency Management Community Coordinator 68000.00000 1.360000e+05 29611.91 1.480595e+04 14805.955 618.75 2 1.480595e+04 29611.91 1.656119e+05 1.656119e+05 0.00 NULL
2018 Office Of Emergency Management Deputy Commissioner 175774.50000 3.515490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.515490e+05 3.515490e+05 0.00 NULL
2018 Office Of Emergency Management Emergency Preparedness Manager 102070.42857 8.573916e+06 112983.57 1.345043e+03 0.000 2087.25 84 0.000000e+00 0.00 8.686900e+06 8.573916e+06 112983.57 NULL
2018 Office Of Emergency Management Emergency Preparedness Specialist 64635.77891 7.691658e+06 647481.78 5.441023e+03 3520.570 13488.75 119 3.520570e+03 418947.83 8.339139e+06 8.110606e+06 228533.95 NULL
2018 Office Of Emergency Management Executive Agency Counsel 147054.50000 2.941090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.941090e+05 2.941090e+05 0.00 NULL
2018 Office Of Emergency Management First Deputy Commissioner 215291.00000 2.152910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.152910e+05 2.152910e+05 0.00 NULL
2018 Office Of Labor Relations Accountant 60475.00000 3.628500e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.628500e+05 3.628500e+05 0.00 NULL
2018 Office Of Labor Relations Adm Manager-Non-Mgrl From M1/M2 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2018 Office Of Labor Relations Admin Community Relations Specialist 60248.00000 6.024800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.024800e+04 6.024800e+04 0.00 NULL
2018 Office Of Labor Relations Administrative Labor Relations Analyst 106782.28571 7.474760e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.474760e+05 7.474760e+05 0.00 NULL
2018 Office Of Labor Relations Administrative Manager 103652.00000 4.146080e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.146080e+05 4.146080e+05 0.00 NULL
2018 Office Of Labor Relations Administrative Public Information Specialist 98797.00000 2.963910e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.963910e+05 2.963910e+05 0.00 NULL
2018 Office Of Labor Relations Administrative Staff Analyst 132129.50000 2.642590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.642590e+05 2.642590e+05 0.00 NULL
2018 Office Of Labor Relations Agency Attorney 88207.50000 1.764150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.764150e+05 1.764150e+05 0.00 NULL
2018 Office Of Labor Relations Agency Chief Contracting Officer 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2018 Office Of Labor Relations Assistant Commissioner Of Labor Relations 159593.14286 1.117152e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.117152e+06 1.117152e+06 0.00 NULL
2018 Office Of Labor Relations Associate Counsel 154500.00000 1.545000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.545000e+05 1.545000e+05 0.00 NULL
2018 Office Of Labor Relations Associate Staff Analyst 75591.00000 2.267730e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.267730e+05 2.267730e+05 0.00 NULL
2018 Office Of Labor Relations City Research Scientist 74762.66667 2.242880e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.242880e+05 2.242880e+05 0.00 NULL
2018 Office Of Labor Relations Clerical Associate 43089.55576 3.878060e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 3.878060e+05 3.878060e+05 0.00 NULL
2018 Office Of Labor Relations Commissioner Of Labor Relations 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Office Of Labor Relations Community Assistant 37539.28423 3.003143e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 3.003143e+05 3.003143e+05 0.00 NULL
2018 Office Of Labor Relations Community Associate 41787.80000 8.357560e+05 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 8.357560e+05 8.357560e+05 0.00 NULL
2018 Office Of Labor Relations Community Coordinator 60962.00000 3.048100e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.048100e+05 3.048100e+05 0.00 NULL
2018 Office Of Labor Relations Computer Associate 79582.00000 1.591640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.591640e+05 1.591640e+05 0.00 NULL
2018 Office Of Labor Relations Computer Specialist 96583.00000 1.931660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.931660e+05 1.931660e+05 0.00 NULL
2018 Office Of Labor Relations Computer Systems Manager 136295.50000 2.725910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.725910e+05 2.725910e+05 0.00 NULL
2018 Office Of Labor Relations Counsel 191807.00000 1.918070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.918070e+05 1.918070e+05 0.00 NULL
2018 Office Of Labor Relations Customer Information Representative Ma L 1549 43721.00000 4.372100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.372100e+04 4.372100e+04 0.00 NULL
2018 Office Of Labor Relations Deputy Assistant Counsel 80507.62500 6.440610e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.440610e+05 6.440610e+05 0.00 NULL
2018 Office Of Labor Relations Deputy Commissioner Of Labor Relations 212905.50000 4.258110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.258110e+05 4.258110e+05 0.00 NULL
2018 Office Of Labor Relations Director 126278.00000 1.262780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.262780e+05 1.262780e+05 0.00 NULL
2018 Office Of Labor Relations Employee Assistance Program Specialist 58481.91667 7.017830e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.017830e+05 7.017830e+05 0.00 NULL
2018 Office Of Labor Relations Employee Health Benefits Program Director 203681.00000 2.036810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.036810e+05 2.036810e+05 0.00 NULL
2018 Office Of Labor Relations Executive Agency Counsel 146392.50000 2.927850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.927850e+05 2.927850e+05 0.00 NULL
2018 Office Of Labor Relations Insurance Advisor 58352.00000 5.835200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.835200e+04 5.835200e+04 0.00 NULL
2018 Office Of Labor Relations Labor Relations Analyst 62207.66667 7.464920e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.464920e+05 7.464920e+05 0.00 NULL
2018 Office Of Labor Relations Labor Relations Analyst Trainee 47576.50000 9.515300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.515300e+04 9.515300e+04 0.00 NULL
2018 Office Of Labor Relations Principal Administrative Associate - Lev 1 & 2 Non Supvr 60741.11769 9.718579e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 9.718579e+05 9.718579e+05 0.00 NULL
2018 Office Of Labor Relations Secretary 40391.50000 8.078300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.078300e+04 8.078300e+04 0.00 NULL
2018 Office Of Labor Relations Secretary To The Commissioner Of Labor Relations 85000.00000 8.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.500000e+04 8.500000e+04 0.00 NULL
2018 Office Of Labor Relations Secretary To The First Deputy Commissioner 55000.00000 5.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.500000e+04 5.500000e+04 0.00 NULL
2018 Office Of Labor Relations Staff Analyst 68485.00000 6.848500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.848500e+04 6.848500e+04 0.00 NULL
2018 Office Of Labor Relations Supervisor Of Office Machine Operations 59263.00000 5.926300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.926300e+04 5.926300e+04 0.00 NULL
2018 Office Of Labor Relations Tests And Measurement Specialist 84247.00000 8.424700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.424700e+04 8.424700e+04 0.00 NULL
2018 Office Of Management & Budget Administrative Manager 169705.00000 1.697050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.697050e+05 1.697050e+05 0.00 NULL
2018 Office Of Management & Budget Administrative Staff Analyst 150663.77778 1.355974e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.355974e+06 1.355974e+06 0.00 NULL
2018 Office Of Management & Budget Architect 104911.00000 1.049110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.049110e+05 1.049110e+05 0.00 NULL
2018 Office Of Management & Budget Budget Analyst 83188.91743 3.502253e+07 610341.73 1.449743e+03 0.000 14558.25 421 0.000000e+00 0.00 3.563288e+07 3.502253e+07 610341.73 NULL
2018 Office Of Management & Budget College Aide 3992.16000 3.992160e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.992160e+03 3.992160e+03 0.00 NULL
2018 Office Of Management & Budget College Aide - Assignment Levels Ii And Iii 6391.66000 6.391660e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.391660e+03 6.391660e+03 0.00 NULL
2018 Office Of Management & Budget Community Associate 35462.00000 3.546200e+04 2113.21 2.113210e+03 2113.210 88.75 1 2.113210e+03 2113.21 3.757521e+04 3.757521e+04 0.00 NULL
2018 Office Of Management & Budget Computer Operations Manager 123767.00000 1.237670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.237670e+05 1.237670e+05 0.00 NULL
2018 Office Of Management & Budget Computer Specialist 76551.00000 7.655100e+04 1044.42 1.044420e+03 1044.420 16.00 1 1.044420e+03 1044.42 7.759542e+04 7.759542e+04 0.00 NULL
2018 Office Of Management & Budget Computer Systems Manager 154899.40000 7.744970e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.744970e+05 7.744970e+05 0.00 NULL
2018 Office Of Management & Budget Deputy General Counsel 153139.00000 1.531390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.531390e+05 1.531390e+05 0.00 NULL
2018 Office Of Management & Budget Director Of Financing Policy Coordination 207518.00000 2.075180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.075180e+05 2.075180e+05 0.00 NULL
2018 Office Of Management & Budget Director Of Management & Budget 226366.00000 4.527320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.527320e+05 4.527320e+05 0.00 NULL
2018 Office Of Management & Budget Executive Agency Counsel 204251.00000 2.042510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.042510e+05 2.042510e+05 0.00 NULL
2018 Office Of Management & Budget Executive Assistant To The Director Of Management & Budget 215291.00000 2.152910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.152910e+05 2.152910e+05 0.00 NULL
2018 Office Of Management & Budget Statistical Secretary 60957.06250 9.753130e+05 18996.12 1.187257e+03 0.000 468.50 16 0.000000e+00 0.00 9.943091e+05 9.753130e+05 18996.12 NULL
2018 Office Of Management & Budget Summer College Intern 1733.76857 2.427276e+04 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.427276e+04 2.427276e+04 0.00 NULL
2018 Office Of Management & Budget Summer Graduate Intern 2131.77143 2.984480e+04 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.984480e+04 2.984480e+04 0.00 NULL
2018 Office Of Management & Budget Supervisor Of Office Machine Operations 46363.00000 4.636300e+04 2248.98 2.248980e+03 2248.980 68.50 1 2.248980e+03 2248.98 4.861198e+04 4.861198e+04 0.00 NULL
2018 Office Of The Actuary Actuarial Specialist Level I 68362.86957 1.572346e+06 31080.93 1.351345e+03 349.100 534.50 23 3.491000e+02 8029.30 1.603427e+06 1.580375e+06 23051.63 NULL
2018 Office Of The Actuary Administrative Actuary 161426.83333 1.937122e+06 1795.01 1.495842e+02 0.000 20.75 12 0.000000e+00 0.00 1.938917e+06 1.937122e+06 1795.01 NULL
2018 Office Of The Actuary Administrative Public Information Specialist 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2018 Office Of The Actuary Administrative Staff Analyst 111792.50000 2.235850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.235850e+05 2.235850e+05 0.00 NULL
2018 Office Of The Actuary Certified It Administrator 87731.00000 8.773100e+04 1326.44 1.326440e+03 1326.440 27.25 1 1.326440e+03 1326.44 8.905744e+04 8.905744e+04 0.00 NULL
2018 Office Of The Actuary Chief Actuary 290331.00000 2.903310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.903310e+05 2.903310e+05 0.00 NULL
2018 Office Of The Actuary Clerical Associate 48168.00000 4.816800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.816800e+04 4.816800e+04 0.00 NULL
2018 Office Of The Actuary Computer Systems Manager 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2018 Office Of The Actuary Executive Agency Counsel 177000.00000 1.770000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.770000e+05 1.770000e+05 0.00 NULL
2018 Office Of The Actuary Principal Administrative Associate - Lev 1 & 2 Non Supvr 74160.00000 7.416000e+04 9072.13 9.072130e+03 9072.130 166.00 1 9.072130e+03 9072.13 8.323213e+04 8.323213e+04 0.00 NULL
2018 Office Of The Actuary Procurement Analyst 49824.00000 4.982400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.982400e+04 4.982400e+04 0.00 NULL
2018 Office Of The Actuary Secretary 55222.00000 5.522200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.522200e+04 5.522200e+04 0.00 NULL
2018 Office Of The Actuary Secretary To The Chief Actuary 51150.00000 5.115000e+04 28.00 2.800000e+01 28.000 1.00 1 2.800000e+01 28.00 5.117800e+04 5.117800e+04 0.00 NULL
2018 Office Of The Comptroller Accountant 57432.62651 4.766908e+06 19066.02 2.297111e+02 0.000 343.25 83 0.000000e+00 0.00 4.785974e+06 4.766908e+06 19066.02 NULL
2018 Office Of The Comptroller Adm Manager-Non-Mgrl From M1/M2 73627.86364 1.619813e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 1.619813e+06 1.619813e+06 0.00 NULL
2018 Office Of The Comptroller Admin Community Relations Specialist 80384.00000 4.019200e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.019200e+05 4.019200e+05 0.00 NULL
2018 Office Of The Comptroller Administration Public Record Officer 75591.00000 7.559100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.559100e+04 7.559100e+04 0.00 NULL
2018 Office Of The Comptroller Administrative Accountant 119454.25926 3.225265e+06 8422.98 3.119622e+02 0.000 115.75 27 0.000000e+00 0.00 3.233688e+06 3.225265e+06 8422.98 NULL
2018 Office Of The Comptroller Administrative Assistant To The Comptroller 101662.50000 2.033250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.033250e+05 2.033250e+05 0.00 NULL
2018 Office Of The Comptroller Administrative Business Promotion Coordinator 125543.66667 3.766310e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.766310e+05 3.766310e+05 0.00 NULL
2018 Office Of The Comptroller Administrative City Planner 121444.18750 1.943107e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.943107e+06 1.943107e+06 0.00 NULL
2018 Office Of The Comptroller Administrative Claim Examiner 83645.66723 3.094890e+06 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 3.094890e+06 3.094890e+06 0.00 NULL
2018 Office Of The Comptroller Administrative Engineer 111269.95000 2.225399e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 2.225399e+06 2.225399e+06 0.00 NULL
2018 Office Of The Comptroller Administrative Graphic Artist 87500.00000 8.750000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.750000e+04 8.750000e+04 0.00 NULL
2018 Office Of The Comptroller Administrative Labor Relations Analyst 123431.33333 3.702940e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.702940e+05 3.702940e+05 0.00 NULL
2018 Office Of The Comptroller Administrative Management Auditor 123819.81250 1.981117e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.981117e+06 1.981117e+06 0.00 NULL
2018 Office Of The Comptroller Administrative Manager 115960.00000 2.319200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.319200e+05 2.319200e+05 0.00 NULL
2018 Office Of The Comptroller Administrative Procurement Analyst 101199.64286 1.416795e+06 18899.65 1.349975e+03 0.000 275.50 14 0.000000e+00 0.00 1.435695e+06 1.416795e+06 18899.65 NULL
2018 Office Of The Comptroller Administrative Project Manager 106466.72727 1.171134e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.171134e+06 1.171134e+06 0.00 NULL
2018 Office Of The Comptroller Administrative Public Information Specialist 90832.67500 1.089992e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.089992e+06 1.089992e+06 0.00 NULL
2018 Office Of The Comptroller Administrative Staff Analyst 107021.96154 2.782571e+06 4993.43 1.920550e+02 0.000 59.25 26 0.000000e+00 0.00 2.787564e+06 2.782571e+06 4993.43 NULL
2018 Office Of The Comptroller Administrative Supervisor Of Building Maintenance 80237.00000 8.023700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.023700e+04 8.023700e+04 0.00 NULL
2018 Office Of The Comptroller Agency Attorney 81507.83333 4.890470e+05 491.68 8.194667e+01 0.000 13.50 6 0.000000e+00 0.00 4.895387e+05 4.890470e+05 491.68 NULL
2018 Office Of The Comptroller Agency Chief Contracting Officer 152000.00000 1.520000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.520000e+05 1.520000e+05 0.00 NULL
2018 Office Of The Comptroller Architect 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2018 Office Of The Comptroller Assistant Budget Analyst 59261.80000 2.963090e+05 3289.46 6.578920e+02 0.000 73.00 5 0.000000e+00 0.00 2.995985e+05 2.963090e+05 3289.46 NULL
2018 Office Of The Comptroller Assistant Secretary To The Comptroller 53000.00000 1.060000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.060000e+05 1.060000e+05 0.00 NULL
2018 Office Of The Comptroller Assistant To The Comptroller 188556.00000 1.885560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.885560e+05 1.885560e+05 0.00 NULL
2018 Office Of The Comptroller Associate Fraud Investigator 73903.00000 7.390300e+04 4541.86 4.541860e+03 4541.860 100.00 1 4.541860e+03 4541.86 7.844486e+04 7.844486e+04 0.00 NULL
2018 Office Of The Comptroller Associate Project Manager 95529.71429 6.687080e+05 2001.76 2.859657e+02 0.000 0.00 7 0.000000e+00 0.00 6.707098e+05 6.687080e+05 2001.76 NULL
2018 Office Of The Comptroller Associate Staff Analyst 81757.28571 5.723010e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.723010e+05 5.723010e+05 0.00 NULL
2018 Office Of The Comptroller Bookkeeper 44922.50192 5.390700e+05 165.27 1.377250e+01 0.000 6.00 12 0.000000e+00 0.00 5.392353e+05 5.390700e+05 165.27 NULL
2018 Office Of The Comptroller Budget Analyst 84625.50000 5.077530e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.077530e+05 5.077530e+05 0.00 NULL
2018 Office Of The Comptroller Business Promotion Coordinator 58974.08696 1.356404e+06 7024.67 3.054204e+02 0.000 193.50 23 0.000000e+00 0.00 1.363429e+06 1.356404e+06 7024.67 NULL
2018 Office Of The Comptroller Certified It Administrator 111598.00000 1.115980e+05 4713.44 4.713440e+03 4713.440 66.75 1 4.713440e+03 4713.44 1.163114e+05 1.163114e+05 0.00 NULL
2018 Office Of The Comptroller City Custodial Assistant 28363.24613 2.552692e+05 45328.02 5.036447e+03 1795.240 1589.00 9 1.795240e+03 16157.16 3.005972e+05 2.714264e+05 29170.86 NULL
2018 Office Of The Comptroller Civil Engineer 104000.00000 1.040000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.040000e+05 1.040000e+05 0.00 NULL
2018 Office Of The Comptroller Claim Specialist 59423.66667 2.317523e+06 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 2.317523e+06 2.317523e+06 0.00 NULL
2018 Office Of The Comptroller Clerical Associate 46530.74286 1.628576e+06 13075.34 3.735811e+02 0.000 338.75 35 0.000000e+00 0.00 1.641651e+06 1.628576e+06 13075.34 NULL
2018 Office Of The Comptroller College Aide 3605.26137 6.849997e+04 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 6.849997e+04 6.849997e+04 0.00 NULL
2018 Office Of The Comptroller Community Assistant 36696.00000 7.339200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.339200e+04 7.339200e+04 0.00 NULL
2018 Office Of The Comptroller Community Associate 48984.00000 5.388240e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.388240e+05 5.388240e+05 0.00 NULL
2018 Office Of The Comptroller Community Coordinator 59003.66667 3.540220e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.540220e+05 3.540220e+05 0.00 NULL
2018 Office Of The Comptroller Community Service Aide 31000.00000 3.100000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.100000e+04 3.100000e+04 0.00 NULL
2018 Office Of The Comptroller Comptroller 209050.00000 2.090500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.090500e+05 2.090500e+05 0.00 NULL
2018 Office Of The Comptroller Computer Aide-Non-Spvr 48376.66667 2.902600e+05 341.40 5.690000e+01 0.000 10.00 6 0.000000e+00 0.00 2.906014e+05 2.902600e+05 341.40 NULL
2018 Office Of The Comptroller Computer Associate 69235.58824 1.177005e+06 13952.57 8.207394e+02 0.000 286.25 17 0.000000e+00 0.00 1.190958e+06 1.177005e+06 13952.57 NULL
2018 Office Of The Comptroller Computer Operations Manager 172403.50000 3.448070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.448070e+05 3.448070e+05 0.00 NULL
2018 Office Of The Comptroller Computer Programmer Analyst 61402.25000 2.456090e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.456090e+05 2.456090e+05 0.00 NULL
2018 Office Of The Comptroller Computer Service Technician 50085.66667 1.502570e+05 238.69 7.956333e+01 0.000 5.25 3 0.000000e+00 0.00 1.504957e+05 1.502570e+05 238.69 NULL
2018 Office Of The Comptroller Computer Specialist 92829.55556 8.354660e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.354660e+05 8.354660e+05 0.00 NULL
2018 Office Of The Comptroller Computer Systems Manager 119065.76471 2.024118e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.024118e+06 2.024118e+06 0.00 NULL
2018 Office Of The Comptroller Confidential Assistant To The Comptroller 129926.00000 1.299260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.299260e+05 1.299260e+05 0.00 NULL
2018 Office Of The Comptroller Confidential Investigator 64834.00000 2.593360e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.593360e+05 2.593360e+05 0.00 NULL
2018 Office Of The Comptroller Confidential Strategy Planner 74666.66667 2.240000e+05 182.26 6.075333e+01 0.000 0.00 3 0.000000e+00 0.00 2.241823e+05 2.240000e+05 182.26 NULL
2018 Office Of The Comptroller Construction Project Manager 98214.00000 9.821400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.821400e+04 9.821400e+04 0.00 NULL
2018 Office Of The Comptroller Custodian 56970.00000 1.139400e+05 4645.45 2.322725e+03 2322.725 113.25 2 2.322725e+03 4645.45 1.185854e+05 1.185854e+05 0.00 NULL
2018 Office Of The Comptroller Director Of Investments 250960.00000 1.254800e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.254800e+06 1.254800e+06 0.00 NULL
2018 Office Of The Comptroller Director Of Audits 204091.00000 2.040910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.040910e+05 2.040910e+05 0.00 NULL
2018 Office Of The Comptroller Economist 60505.90000 6.050590e+05 708.83 7.088300e+01 0.000 9.50 10 0.000000e+00 0.00 6.057678e+05 6.050590e+05 708.83 NULL
2018 Office Of The Comptroller Engineering Technician 55422.00000 5.542200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.542200e+04 5.542200e+04 0.00 NULL
2018 Office Of The Comptroller Executive Agency Counsel 140220.61290 4.346839e+06 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 4.346839e+06 4.346839e+06 0.00 NULL
2018 Office Of The Comptroller Executive Assistant To The Comptroller 157102.50000 3.142050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.142050e+05 3.142050e+05 0.00 NULL
2018 Office Of The Comptroller Executive Program Specialist 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2018 Office Of The Comptroller First Deputy Comptroller 212073.00000 2.120730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120730e+05 2.120730e+05 0.00 NULL
2018 Office Of The Comptroller Fraud Investigator 70945.66667 2.128370e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.128370e+05 2.128370e+05 0.00 NULL
2018 Office Of The Comptroller Investigator 56650.00000 5.665000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.665000e+04 5.665000e+04 0.00 NULL
2018 Office Of The Comptroller Investment Analyst 67933.80000 1.698345e+06 7480.73 2.992292e+02 0.000 156.75 25 0.000000e+00 0.00 1.705826e+06 1.698345e+06 7480.73 NULL
2018 Office Of The Comptroller Investment Manager 162994.23333 4.889827e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 4.889827e+06 4.889827e+06 0.00 NULL
2018 Office Of The Comptroller Legal Secretarial Assistant Al 2,3,4 Only 70865.33333 4.251920e+05 7137.81 1.189635e+03 0.000 149.25 6 0.000000e+00 0.00 4.323298e+05 4.251920e+05 7137.81 NULL
2018 Office Of The Comptroller Management Auditor 70707.34597 6.434368e+06 37317.78 4.100855e+02 0.000 599.75 91 0.000000e+00 0.00 6.471686e+06 6.434368e+06 37317.78 NULL
2018 Office Of The Comptroller Office Machine Aide 31249.95413 9.374986e+04 176.88 5.896000e+01 0.000 11.00 3 0.000000e+00 0.00 9.392674e+04 9.374986e+04 176.88 NULL
2018 Office Of The Comptroller Pension Investment Advisor 350000.00000 3.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.500000e+05 3.500000e+05 0.00 NULL
2018 Office Of The Comptroller Principal Administrative Associate - Lev 1 & 2 Non Supvr 61613.00853 2.094842e+06 23585.43 6.936891e+02 0.000 429.25 34 0.000000e+00 0.00 2.118428e+06 2.094842e+06 23585.43 NULL
2018 Office Of The Comptroller Principal Investment Officer 214283.00000 2.142830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.142830e+05 2.142830e+05 0.00 NULL
2018 Office Of The Comptroller Procurement Analyst 62811.62500 5.024930e+05 8787.40 1.098425e+03 0.000 170.00 8 0.000000e+00 0.00 5.112804e+05 5.024930e+05 8787.40 NULL
2018 Office Of The Comptroller Public Records Aide 20771.80000 2.077180e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.077180e+04 2.077180e+04 0.00 NULL
2018 Office Of The Comptroller Research And Liaison Coordinator 100881.12000 2.522028e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 2.522028e+06 2.522028e+06 0.00 NULL
2018 Office Of The Comptroller Research Assistant 52500.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2018 Office Of The Comptroller Second Deputy Comptroller 205376.00000 2.053760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.053760e+05 2.053760e+05 0.00 NULL
2018 Office Of The Comptroller Secretary 44741.20000 2.237060e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.237060e+05 2.237060e+05 0.00 NULL
2018 Office Of The Comptroller Secretary To The Comptroller 50155.00000 5.015500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.015500e+04 5.015500e+04 0.00 NULL
2018 Office Of The Comptroller Special Deputy Comptroller 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2018 Office Of The Comptroller Staff Analyst 62157.22222 5.594150e+05 8634.38 9.593756e+02 0.000 148.25 9 0.000000e+00 0.00 5.680494e+05 5.594150e+05 8634.38 NULL
2018 Office Of The Comptroller Staff Analyst Trainee 49583.00000 2.479150e+05 1453.93 2.907860e+02 0.000 47.00 5 0.000000e+00 0.00 2.493689e+05 2.479150e+05 1453.93 NULL
2018 Office Of The Comptroller Statistician 83000.00000 8.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.300000e+04 8.300000e+04 0.00 NULL
2018 Office Of The Comptroller Strategic Initiative Specialist 185400.00000 1.854000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.854000e+05 1.854000e+05 0.00 NULL
2018 Office Of The Comptroller Summer College Intern 1237.58928 8.539366e+04 0.00 0.000000e+00 0.000 0.00 69 0.000000e+00 0.00 8.539366e+04 8.539366e+04 0.00 NULL
2018 Office Of The Comptroller Summer Graduate Intern 1972.54720 4.931368e+04 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 4.931368e+04 4.931368e+04 0.00 NULL
2018 Office Of The Comptroller Supervising Computer Service Technician 80228.00000 8.022800e+04 2915.00 2.915000e+03 2915.000 55.50 1 2.915000e+03 2915.00 8.314300e+04 8.314300e+04 0.00 NULL
2018 Office Of The Comptroller Supervisor Of Motor Transport 54899.00000 5.489900e+04 1577.55 1.577550e+03 1577.550 32.00 1 1.577550e+03 1577.55 5.647655e+04 5.647655e+04 0.00 NULL
2018 Office Of The Comptroller Telecommunications Associate 86187.00000 8.618700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.618700e+04 8.618700e+04 0.00 NULL
2018 Office Of The Mayor Administrative Assistant To The Mayor 90446.00000 9.044600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.044600e+04 9.044600e+04 0.00 NULL
2018 Office Of The Mayor Administrative Printing Services Manager 93292.00000 9.329200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.329200e+04 9.329200e+04 0.00 NULL
2018 Office Of The Mayor Assistant Legislative Representative 87968.57143 6.157800e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.157800e+05 6.157800e+05 0.00 NULL
2018 Office Of The Mayor Assistant To The Deputy Mayor 198813.55556 1.789322e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.789322e+06 1.789322e+06 0.00 NULL
2018 Office Of The Mayor Assistant To The Mayor 183194.00000 3.663880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.663880e+05 3.663880e+05 0.00 NULL
2018 Office Of The Mayor Asst Dir Of Intergvnmental Reltns For The Albany Office 189898.00000 3.797960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.797960e+05 3.797960e+05 0.00 NULL
2018 Office Of The Mayor Asst Director Of Intergovermental Rel For City Legist Affs 168000.00000 1.680000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.680000e+05 1.680000e+05 0.00 NULL
2018 Office Of The Mayor Clerical Associate 45538.33333 1.366150e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.366150e+05 1.366150e+05 0.00 NULL
2018 Office Of The Mayor Commissioner, Un & Consular Corps Diplomatic Relations 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2018 Office Of The Mayor Community Associate 50474.00000 5.047400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.047400e+04 5.047400e+04 0.00 NULL
2018 Office Of The Mayor Computer Operations Manager 114214.75000 4.568590e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.568590e+05 4.568590e+05 0.00 NULL
2018 Office Of The Mayor Deputy Mayor 234569.00000 1.172845e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.172845e+06 1.172845e+06 0.00 NULL
2018 Office Of The Mayor Director Of Community Assistance Unit 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2018 Office Of The Mayor Director Of Intergovernmental Relations 212000.00000 2.120000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120000e+05 2.120000e+05 0.00 NULL
2018 Office Of The Mayor Director, Office Of Operations 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Office Of The Mayor Executive Administrator Of Gracie Mansion 220652.00000 2.206520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.206520e+05 2.206520e+05 0.00 NULL
2018 Office Of The Mayor Executive Agency Counsel 132216.77778 1.189951e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.189951e+06 1.189951e+06 0.00 NULL
2018 Office Of The Mayor Executive Assistant-Midtown Enforcement 81722.00000 8.172200e+04 1509.72 1.509720e+03 1509.720 33.75 1 1.509720e+03 1509.72 8.323172e+04 8.323172e+04 0.00 NULL
2018 Office Of The Mayor Executive Cook 82410.00000 2.472300e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.472300e+05 2.472300e+05 0.00 NULL
2018 Office Of The Mayor First Deputy Mayor 271136.00000 2.711360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.711360e+05 2.711360e+05 0.00 NULL
2018 Office Of The Mayor Legislative Aide 65000.00000 6.500000e+04 3913.43 3.913430e+03 3913.430 85.00 1 3.913430e+03 3913.43 6.891343e+04 6.891343e+04 0.00 NULL
2018 Office Of The Mayor Mayor 258750.00000 2.587500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.587500e+05 2.587500e+05 0.00 NULL
2018 Office Of The Mayor Mayoral Office Assistant 46083.75694 1.659015e+06 50627.65 1.406324e+03 179.430 1556.33 36 1.794300e+02 6459.48 1.709643e+06 1.665475e+06 44168.17 NULL
2018 Office Of The Mayor Mayoral Program Coordinator 64943.09091 7.143740e+05 12482.63 1.134785e+03 0.000 364.50 11 0.000000e+00 0.00 7.268566e+05 7.143740e+05 12482.63 NULL
2018 Office Of The Mayor Press Officer 117962.50000 9.437000e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.437000e+05 9.437000e+05 0.00 NULL
2018 Office Of The Mayor Project Planner 76998.00000 2.309940e+05 8003.06 2.667687e+03 368.600 182.00 3 3.686000e+02 1105.80 2.389971e+05 2.320998e+05 6897.26 NULL
2018 Office Of The Mayor Research Projects Coord 102914.92152 1.420226e+07 0.00 0.000000e+00 0.000 0.00 138 0.000000e+00 0.00 1.420226e+07 1.420226e+07 0.00 NULL
2018 Office Of The Mayor Research Projects Coordinator 66703.25000 2.668130e+05 4683.75 1.170938e+03 867.590 161.00 4 8.675900e+02 3470.36 2.714968e+05 2.702834e+05 1213.39 NULL
2018 Office Of The Mayor Secretary 81864.00000 2.455920e+05 13595.82 4.531940e+03 4925.060 314.75 3 4.531940e+03 13595.82 2.591878e+05 2.591878e+05 0.00 NULL
2018 Office Of The Mayor Senior Service Inspector 58364.00000 5.836400e+04 167.71 1.677100e+02 167.710 4.00 1 1.677100e+02 167.71 5.853171e+04 5.853171e+04 0.00 NULL
2018 Office Of The Mayor Service Inspector 42002.20000 2.100110e+05 330.46 6.609200e+01 0.000 11.50 5 0.000000e+00 0.00 2.103415e+05 2.100110e+05 330.46 NULL
2018 Office Of The Mayor Special Assistant 101083.12500 3.093144e+07 14491.50 4.735784e+01 0.000 326.33 306 0.000000e+00 0.00 3.094593e+07 3.093144e+07 14491.50 NULL
2018 Office Of The Mayor Sr Project Planner 99830.50000 1.996610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.996610e+05 1.996610e+05 0.00 NULL
2018 Office Of The Mayor Staff Assistant 55085.93333 8.262890e+05 11010.22 7.340147e+02 377.110 408.50 15 3.771100e+02 5656.65 8.372992e+05 8.319457e+05 5353.57 NULL
2018 Office Of The Mayor Summer College Intern 542.39583 1.952625e+04 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 1.952625e+04 1.952625e+04 0.00 NULL
2018 Office Of The Mayor Summer Graduate Intern 781.00000 1.327700e+04 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.327700e+04 1.327700e+04 0.00 NULL
2018 Personnel Monitors Monitor 2241.74115 1.457132e+06 19094.25 2.937577e+01 0.000 973.50 650 0.000000e+00 0.00 1.476226e+06 1.457132e+06 19094.25 NULL
2018 Police Department *Adm School Security Manager-U 82560.75000 3.302430e+05 38036.94 9.509235e+03 10666.860 635.25 4 9.509235e+03 38036.94 3.682799e+05 3.682799e+05 0.00 NULL
2018 Police Department *Admin Schl Secur Mgr-Mgl 162983.00000 1.629830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.629830e+05 1.629830e+05 0.00 NULL
2018 Police Department *Agency Attorney 110605.60000 5.530280e+05 35745.52 7.149104e+03 7287.020 502.75 5 7.149104e+03 35745.52 5.887735e+05 5.887735e+05 0.00 NULL
2018 Police Department *Assistant Advocate-Pd 98985.33333 2.969560e+05 12563.54 4.187847e+03 2614.440 233.25 3 2.614440e+03 7843.32 3.095195e+05 3.047993e+05 4720.22 NULL
2018 Police Department *Attorney At Law 92391.50000 3.695660e+05 66176.88 1.654422e+04 2372.360 671.50 4 2.372360e+03 9489.44 4.357429e+05 3.790554e+05 56687.44 NULL
2018 Police Department *Certified Applications Developer 114345.00000 1.143450e+05 182.25 1.822500e+02 182.250 0.00 1 1.822500e+02 182.25 1.145272e+05 1.145272e+05 0.00 NULL
2018 Police Department *Certified Local Area Network Administrator 98696.00000 9.869600e+04 22749.58 2.274958e+04 22749.580 322.50 1 2.274958e+04 22749.58 1.214456e+05 1.214456e+05 0.00 NULL
2018 Police Department *Certified Wide Area Network Administrator 106797.00000 1.067970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.067970e+05 1.067970e+05 0.00 NULL
2018 Police Department *Custodial Assistant 35859.80000 3.585980e+05 952.15 9.521500e+01 0.000 31.50 10 0.000000e+00 0.00 3.595502e+05 3.585980e+05 952.15 NULL
2018 Police Department Accountant 60125.34615 1.563259e+06 108118.29 4.158396e+03 423.660 2194.25 26 4.236600e+02 11015.16 1.671377e+06 1.574274e+06 97103.13 NULL
2018 Police Department Adm Manager-Non-Mgrl From M1/M2 80973.00000 2.996001e+06 129904.21 3.510925e+03 282.180 2378.50 37 2.821800e+02 10440.66 3.125905e+06 3.006442e+06 119463.55 NULL
2018 Police Department Adm Traffic Enfrcmnt Agent-Director Of Parking Enfrcmnt Dist 158268.00000 1.582680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.582680e+05 1.582680e+05 0.00 NULL
2018 Police Department Admin Community Relations Specialist 98096.50000 3.923860e+05 54960.62 1.374016e+04 13236.055 789.50 4 1.323606e+04 52944.22 4.473466e+05 4.453302e+05 2016.40 NULL
2018 Police Department Admin Contract Specialist 132951.57143 1.861322e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.861322e+06 1.861322e+06 0.00 NULL
2018 Police Department Admin Tests & Meas Spec 107500.00000 2.150000e+05 3048.02 1.524010e+03 1524.010 49.25 2 1.524010e+03 3048.02 2.180480e+05 2.180480e+05 0.00 NULL
2018 Police Department Admin Traffic Enf Agnt-Union 72035.24242 2.377163e+06 605949.72 1.836211e+04 23227.620 11015.75 33 1.836211e+04 605949.72 2.983113e+06 2.983113e+06 0.00 NULL
2018 Police Department Admin Traffic Enfrcmnt Agent 118817.25000 4.752690e+05 17370.43 4.342608e+03 3937.945 263.25 4 3.937945e+03 15751.78 4.926394e+05 4.910208e+05 1618.65 NULL
2018 Police Department Administrative Accountant 112970.37500 9.037630e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.037630e+05 9.037630e+05 0.00 NULL
2018 Police Department Administrative Architect 127530.00000 2.550600e+05 8704.50 4.352250e+03 4352.250 141.50 2 4.352250e+03 8704.50 2.637645e+05 2.637645e+05 0.00 NULL
2018 Police Department Administrative City Planner 108000.00000 1.080000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.080000e+05 1.080000e+05 0.00 NULL
2018 Police Department Administrative Community Relations Specialist 173639.00000 5.209170e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.209170e+05 5.209170e+05 0.00 NULL
2018 Police Department Administrative Engineer 114653.00000 2.293060e+05 88718.95 4.435947e+04 44359.475 1138.00 2 4.435947e+04 88718.95 3.180250e+05 3.180250e+05 0.00 NULL
2018 Police Department Administrative Graphic Artist 95054.00000 9.505400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.505400e+04 9.505400e+04 0.00 NULL
2018 Police Department Administrative Investigator 95594.00000 9.559400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.559400e+04 9.559400e+04 0.00 NULL
2018 Police Department Administrative Labor Relations Analyst 223353.00000 2.233530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.233530e+05 2.233530e+05 0.00 NULL
2018 Police Department Administrative Management Auditor 126690.00000 1.266900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.266900e+05 1.266900e+05 0.00 NULL
2018 Police Department Administrative Manager 93393.00000 9.339300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.339300e+04 9.339300e+04 0.00 NULL
2018 Police Department Administrative Printing Services Manager 114456.50000 2.289130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.289130e+05 2.289130e+05 0.00 NULL
2018 Police Department Administrative Procurement Analyst 93191.85714 1.304686e+06 209271.69 1.494798e+04 10347.620 3590.75 14 1.034762e+04 144866.68 1.513958e+06 1.449553e+06 64405.01 NULL
2018 Police Department Administrative Project Manager 124619.40000 1.246194e+06 76353.37 7.635337e+03 174.755 954.50 10 1.747550e+02 1747.55 1.322547e+06 1.247942e+06 74605.82 NULL
2018 Police Department Administrative Psychologist 116054.33333 3.481630e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.481630e+05 3.481630e+05 0.00 NULL
2018 Police Department Administrative Public Health Sanitarian 130139.00000 1.301390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.301390e+05 1.301390e+05 0.00 NULL
2018 Police Department Administrative Public Information Specialist 113098.50000 1.357182e+06 365.96 3.049667e+01 0.000 7.50 12 0.000000e+00 0.00 1.357548e+06 1.357182e+06 365.96 NULL
2018 Police Department Administrative Staff Analyst 103402.97778 9.306268e+06 447792.85 4.975476e+03 477.125 6949.25 90 4.771250e+02 42941.25 9.754061e+06 9.349209e+06 404851.60 NULL
2018 Police Department Administrative Supervisor Of Building Maintenance 118965.00000 1.189650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.189650e+05 1.189650e+05 0.00 NULL
2018 Police Department Administrative Transportation Coordinator 126074.00000 1.260740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.260740e+05 1.260740e+05 0.00 NULL
2018 Police Department Agency Attorney 86670.07955 7.626967e+06 699661.02 7.950693e+03 3499.910 10337.25 88 3.499910e+03 307992.08 8.326628e+06 7.934959e+06 391668.94 NULL
2018 Police Department Agency Attorney Interne 60121.00000 2.404840e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.404840e+05 2.404840e+05 0.00 NULL
2018 Police Department Agency Chief Contracting Officer 183914.00000 1.839140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.839140e+05 1.839140e+05 0.00 NULL
2018 Police Department Architect 86494.50000 1.729890e+05 728.24 3.641200e+02 364.120 14.50 2 3.641200e+02 728.24 1.737172e+05 1.737172e+05 0.00 NULL
2018 Police Department Assistant Advocate-Pd 94454.00000 1.889080e+05 4363.30 2.181650e+03 2181.650 64.50 2 2.181650e+03 4363.30 1.932713e+05 1.932713e+05 0.00 NULL
2018 Police Department Assistant Architect 75000.00000 7.500000e+04 21110.16 2.111016e+04 21110.160 375.25 1 2.111016e+04 21110.16 9.611016e+04 9.611016e+04 0.00 NULL
2018 Police Department Assistant Chemical Engineer 72535.00000 7.253500e+04 133.02 1.330200e+02 133.020 3.00 1 1.330200e+02 133.02 7.266802e+04 7.266802e+04 0.00 NULL
2018 Police Department Assistant Commissioner 180183.33333 5.405500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.405500e+05 5.405500e+05 0.00 NULL
2018 Police Department Assistant Counsel-Pd 107674.55556 9.690710e+05 74703.68 8.300409e+03 8060.920 1010.75 9 8.060920e+03 72548.28 1.043775e+06 1.041619e+06 2155.40 NULL
2018 Police Department Assistant Deputy Commissioner 137248.00000 1.372480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.372480e+05 1.372480e+05 0.00 NULL
2018 Police Department Assistant Mechanical Engineer 61104.00000 6.110400e+04 26325.93 2.632593e+04 26325.930 574.25 1 2.632593e+04 26325.93 8.742993e+04 8.742993e+04 0.00 NULL
2018 Police Department Assistant To Police Commissionor 214002.50000 4.280050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.280050e+05 4.280050e+05 0.00 NULL
2018 Police Department Assoc Spvr Of School Security 73921.25641 2.882929e+06 379713.75 9.736250e+03 9581.440 7038.25 39 9.581440e+03 373676.16 3.262643e+06 3.256605e+06 6037.59 NULL
2018 Police Department Assoc Supvr Of Schl Sec 105533.83333 6.332030e+05 12242.05 2.040342e+03 0.000 212.25 6 0.000000e+00 0.00 6.454451e+05 6.332030e+05 12242.05 NULL
2018 Police Department Associate Fingerprint Technician 41747.93548 1.294186e+06 28415.73 9.166365e+02 41.870 842.00 31 4.187000e+01 1297.97 1.322602e+06 1.295484e+06 27117.76 NULL
2018 Police Department Associate Investigator 47081.04184 2.777781e+06 385109.84 6.527285e+03 2237.400 8471.25 59 2.237400e+03 132006.60 3.162891e+06 2.909788e+06 253103.24 NULL
2018 Police Department Associate Labor Relations Analyst 100634.00000 1.006340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.006340e+05 1.006340e+05 0.00 NULL
2018 Police Department Associate Parking Control Specialist 57892.00000 4.052440e+05 109309.12 1.561559e+04 16609.880 2470.75 7 1.561559e+04 109309.12 5.145531e+05 5.145531e+05 0.00 NULL
2018 Police Department Associate Project Manager 97696.85714 6.838780e+05 83814.03 1.197343e+04 2200.510 1057.75 7 2.200510e+03 15403.57 7.676920e+05 6.992816e+05 68410.46 NULL
2018 Police Department Associate Public Information Specialist 61620.00000 6.162000e+04 297.50 2.975000e+02 297.500 8.75 1 2.975000e+02 297.50 6.191750e+04 6.191750e+04 0.00 NULL
2018 Police Department Associate Public Records Officer 58362.00000 5.836200e+04 79.86 7.986000e+01 79.860 2.00 1 7.986000e+01 79.86 5.844186e+04 5.844186e+04 0.00 NULL
2018 Police Department Associate Quality Assurance Specialist 77979.00000 7.797900e+04 21258.75 2.125875e+04 21258.750 386.25 1 2.125875e+04 21258.75 9.923775e+04 9.923775e+04 0.00 NULL
2018 Police Department Associate Staff Analyst 81303.10256 3.170821e+06 168195.17 4.312697e+03 277.990 2855.25 39 2.779900e+02 10841.61 3.339016e+06 3.181663e+06 157353.56 NULL
2018 Police Department Associate Traffic Enforcement Agent 49114.19048 2.372215e+07 8120601.93 1.681284e+04 17052.850 210942.36 483 1.681284e+04 8120601.93 3.184276e+07 3.184276e+07 0.00 NULL
2018 Police Department Auto Body Worker 58892.19048 1.236736e+06 213369.55 1.016045e+04 13286.960 4860.00 21 1.016045e+04 213369.55 1.450106e+06 1.450106e+06 0.00 NULL
2018 Police Department Auto Mechanic NA NA 1835682.66 1.014189e+04 8928.500 29427.62 181 8.928500e+03 1616058.50 NA NA NA NULL
2018 Police Department Automotive Service Worker 37006.05263 4.218690e+06 170463.34 1.495292e+03 698.380 5927.75 114 6.983800e+02 79615.32 4.389153e+06 4.298305e+06 90848.02 NULL
2018 Police Department Bookbinder 46496.66667 1.394900e+05 6074.24 2.024747e+03 2215.150 212.75 3 2.024747e+03 6074.24 1.455642e+05 1.455642e+05 0.00 NULL
2018 Police Department Bookkeeper 50020.15789 2.851149e+06 191762.47 3.364254e+03 86.010 4922.25 57 8.601000e+01 4902.57 3.042911e+06 2.856052e+06 186859.90 NULL
2018 Police Department Capt Det Chief Of Department 225826.00000 4.516520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.516520e+05 4.516520e+05 0.00 NULL
2018 Police Department Capt Det Chief Of The Housing Bureau 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2018 Police Department Capt Det Chief Of The Transit Bureau 224453.00000 4.489060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.489060e+05 4.489060e+05 0.00 NULL
2018 Police Department Captain 148640.83056 5.351070e+07 1342454.46 3.729040e+03 0.000 16068.57 360 0.000000e+00 0.00 5.485315e+07 5.351070e+07 1342454.46 NULL
2018 Police Department Captain Chief Of Counterterrorism 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2018 Police Department Captain D/A Deputy Chief Inspector 185158.35616 1.351656e+07 178692.72 2.447845e+03 0.000 0.00 73 0.000000e+00 0.00 1.369525e+07 1.351656e+07 178692.72 NULL
2018 Police Department Captain D/A Deputy Inspector 166625.95477 3.315856e+07 238264.09 1.197307e+03 0.000 189.30 199 0.000000e+00 0.00 3.339683e+07 3.315856e+07 238264.09 NULL
2018 Police Department Captain D/A Inspector 175621.59574 2.476264e+07 246635.23 1.749186e+03 0.000 0.00 141 0.000000e+00 0.00 2.500928e+07 2.476264e+07 246635.23 NULL
2018 Police Department Captain Detailed As Assistant Chief Inspector 223519.43333 6.705583e+06 11344.74 3.781580e+02 0.000 0.00 30 0.000000e+00 0.00 6.716928e+06 6.705583e+06 11344.74 NULL
2018 Police Department Captain Detailed As Chief Of Crime Control Strategies 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2018 Police Department Captain Detailed As Chief Of Detectives 224453.00000 4.489060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.489060e+05 4.489060e+05 0.00 NULL
2018 Police Department Captain Detailed As Chief Of Patrol 216279.00000 4.325580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.325580e+05 4.325580e+05 0.00 NULL
2018 Police Department Captain Detailed As Chief Of Personnel 224453.00000 4.489060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.489060e+05 4.489060e+05 0.00 NULL
2018 Police Department Captain Detailed As Chief Of Special Operations 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2018 Police Department Captain Detailed As Chief Of Strategic Initiatives 224453.00000 4.489060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.489060e+05 4.489060e+05 0.00 NULL
2018 Police Department Captain Detailed As Chief Of Training 224453.00000 4.489060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.489060e+05 4.489060e+05 0.00 NULL
2018 Police Department Captain-Chief Of Community Affairs 224453.00000 4.489060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.489060e+05 4.489060e+05 0.00 NULL
2018 Police Department Captain-Chief Of Intelligence 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2018 Police Department Captain-Chief Of Staff 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2018 Police Department Captain: Chief Of Transportation Bureau 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2018 Police Department Carpenter NA NA 581563.03 2.528535e+04 25900.190 8082.42 23 2.528535e+04 581563.03 NA NA NA NULL
2018 Police Department Case Management Nurse 78619.34783 1.808245e+06 117430.65 5.105680e+03 4021.610 2049.75 23 4.021610e+03 92497.03 1.925676e+06 1.900742e+06 24933.62 NULL
2018 Police Department Cashier 45016.50000 1.800660e+05 41936.44 1.048411e+04 8109.055 1184.00 4 8.109055e+03 32436.22 2.220024e+05 2.125022e+05 9500.22 NULL
2018 Police Department Certified It Administrator 103538.12195 4.245063e+06 613872.89 1.497251e+04 15343.510 8496.08 41 1.497251e+04 613872.89 4.858936e+06 4.858936e+06 0.00 NULL
2018 Police Department Certified It Developer 95218.00000 4.760900e+05 33495.23 6.699046e+03 106.550 433.25 5 1.065500e+02 532.75 5.095852e+05 4.766228e+05 32962.48 NULL
2018 Police Department Chaplain 36111.50000 4.333380e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 4.333380e+05 4.333380e+05 0.00 NULL
2018 Police Department City Attendant 35031.00000 3.503100e+04 18209.75 1.820975e+04 18209.750 615.00 1 1.820975e+04 18209.75 5.324075e+04 5.324075e+04 0.00 NULL
2018 Police Department City Custodial Assistant 34264.78488 1.027944e+07 550131.60 1.833772e+03 0.000 20503.92 300 0.000000e+00 0.00 1.082957e+07 1.027944e+07 550131.60 NULL
2018 Police Department City Dentist 74897.24000 7.489724e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.489724e+04 7.489724e+04 0.00 NULL
2018 Police Department City Deputy Medical Director 175100.00000 1.751000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.751000e+05 1.751000e+05 0.00 NULL
2018 Police Department City Laborer NA NA 341464.01 1.897022e+04 15625.255 6352.25 18 1.562525e+04 281254.59 NA NA NA NULL
2018 Police Department City Research Scientist 82687.50000 9.922500e+05 26063.82 2.171985e+03 259.465 514.50 12 2.594650e+02 3113.58 1.018314e+06 9.953636e+05 22950.24 NULL
2018 Police Department Clerical Aide 29235.73378 1.461787e+05 16751.36 3.350272e+03 4029.030 644.50 5 3.350272e+03 16751.36 1.629300e+05 1.629300e+05 0.00 NULL
2018 Police Department Clerical Associate 44193.80227 2.430659e+06 199309.26 3.623805e+03 254.360 5674.25 55 2.543600e+02 13989.80 2.629968e+06 2.444649e+06 185319.46 NULL
2018 Police Department College Aide 12401.42083 1.116128e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.116128e+05 1.116128e+05 0.00 NULL
2018 Police Department Commissioner 226366.00000 2.263660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263660e+05 2.263660e+05 0.00 NULL
2018 Police Department Community Assistant 15850.97979 7.925490e+05 25856.03 5.171206e+02 0.000 986.75 50 0.000000e+00 0.00 8.184050e+05 7.925490e+05 25856.03 NULL
2018 Police Department Community Associate 48976.90000 4.897690e+05 13200.29 1.320029e+03 408.965 417.25 10 4.089650e+02 4089.65 5.029693e+05 4.938587e+05 9110.64 NULL
2018 Police Department Community Coordinator 56132.22654 8.981156e+05 33062.29 2.066393e+03 333.035 837.25 16 3.330350e+02 5328.56 9.311779e+05 9.034442e+05 27733.73 NULL
2018 Police Department Compositor NA NA 49465.61 1.648854e+04 15044.950 622.25 3 1.504495e+04 45134.85 NA NA NA NULL
2018 Police Department Computer Associate 72369.24837 1.107250e+07 957099.58 6.255553e+03 2218.830 17011.57 153 2.218830e+03 339480.99 1.202959e+07 1.141198e+07 617618.59 NULL
2018 Police Department Computer Operations Manager 147366.53333 2.210498e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 2.210498e+06 2.210498e+06 0.00 NULL
2018 Police Department Computer Programmer Analyst 59872.75000 2.394910e+05 29957.21 7.489302e+03 4778.490 592.50 4 4.778490e+03 19113.96 2.694482e+05 2.586050e+05 10843.25 NULL
2018 Police Department Computer Specialist 100001.27500 4.000051e+06 322167.31 8.054183e+03 1579.735 4597.50 40 1.579735e+03 63189.40 4.322218e+06 4.063240e+06 258977.91 NULL
2018 Police Department Computer Systems Manager 150280.28571 2.103924e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.103924e+06 2.103924e+06 0.00 NULL
2018 Police Department Counsel To The Police Commissioner 219707.00000 4.394140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.394140e+05 4.394140e+05 0.00 NULL
2018 Police Department Crime Analyst 55353.72340 5.203250e+06 39543.23 4.206727e+02 204.125 1127.75 94 2.041250e+02 19187.75 5.242793e+06 5.222438e+06 20355.48 NULL
2018 Police Department Criminalist 68831.33186 1.555588e+07 2248394.15 9.948647e+03 9350.225 40191.25 226 9.350225e+03 2113150.85 1.780428e+07 1.766903e+07 135243.30 NULL
2018 Police Department Criminalist Assistant Director Of Laboratory 124580.50000 9.966440e+05 4559.69 5.699612e+02 0.000 48.50 8 0.000000e+00 0.00 1.001204e+06 9.966440e+05 4559.69 NULL
2018 Police Department Criminalist Deputy Director Of Labatory 157628.00000 1.576280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.576280e+05 1.576280e+05 0.00 NULL
2018 Police Department Criminalist Director Of Laboratory 158984.00000 1.589840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.589840e+05 1.589840e+05 0.00 NULL
2018 Police Department Custodian 39333.48000 9.833370e+05 196460.64 7.858426e+03 7563.520 6658.00 25 7.563520e+03 189088.00 1.179798e+06 1.172425e+06 7372.64 NULL
2018 Police Department Deputy Chief Surgeon 148972.80000 7.448640e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.448640e+05 7.448640e+05 0.00 NULL
2018 Police Department Deputy Commissioner 220366.62500 1.762933e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.762933e+06 1.762933e+06 0.00 NULL
2018 Police Department Director 110995.50000 2.219910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.219910e+05 2.219910e+05 0.00 NULL
2018 Police Department Director Employee Management Division 153145.00000 1.531450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.531450e+05 1.531450e+05 0.00 NULL
2018 Police Department Director Management Information Systems 191922.00000 1.919220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.919220e+05 1.919220e+05 0.00 NULL
2018 Police Department Director Of Department Advocates Office 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2018 Police Department Director Of Internal Affairs - Pd 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2018 Police Department Director Of Motor Transport 133302.00000 2.666040e+05 5430.33 2.715165e+03 2715.165 53.25 2 2.715165e+03 5430.33 2.720343e+05 2.720343e+05 0.00 NULL
2018 Police Department Director Of Photographic Services-Pd 77611.00000 7.761100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.761100e+04 7.761100e+04 0.00 NULL
2018 Police Department Director Of Psychological Services 131660.00000 2.633200e+05 9.63 4.815000e+00 4.815 0.00 2 4.815000e+00 9.63 2.633296e+05 2.633296e+05 0.00 NULL
2018 Police Department Director Of Support Services-Pd 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2018 Police Department Director Of Technology Development-Pd 210450.00000 2.104500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.104500e+05 2.104500e+05 0.00 NULL
2018 Police Department Director Of Training 128750.00000 1.287500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287500e+05 1.287500e+05 0.00 NULL
2018 Police Department Economist 59000.00000 5.900000e+04 884.01 8.840100e+02 884.010 25.50 1 8.840100e+02 884.01 5.988401e+04 5.988401e+04 0.00 NULL
2018 Police Department Electrician NA NA 1206571.27 3.447346e+04 41016.100 14265.25 35 3.447346e+04 1206571.27 NA NA NA NULL
2018 Police Department Elevator Mechanic NA NA 94580.05 4.729003e+04 47290.025 1234.00 2 4.729003e+04 94580.05 NA NA NA NULL
2018 Police Department Employee Assistance Program Specialist 60404.00000 6.040400e+04 3240.05 3.240050e+03 3240.050 82.00 1 3.240050e+03 3240.05 6.364405e+04 6.364405e+04 0.00 NULL
2018 Police Department Evidence And Property Control Specialist 53559.56173 8.676649e+06 330636.78 2.040968e+03 946.985 8312.27 162 9.469850e+02 153411.57 9.007286e+06 8.830061e+06 177225.21 NULL
2018 Police Department Executive Agency Counsel 137602.95059 4.678500e+06 5857.75 1.722868e+02 0.000 81.25 34 0.000000e+00 0.00 4.684358e+06 4.678500e+06 5857.75 NULL
2018 Police Department Fingerprint Technician Trainee 29476.93103 8.548310e+05 658.06 2.269172e+01 0.000 26.46 29 0.000000e+00 0.00 8.554891e+05 8.548310e+05 658.06 NULL
2018 Police Department First Deputy Commissioner 225826.00000 2.258260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.258260e+05 2.258260e+05 0.00 NULL
2018 Police Department Fitness Instructor 56213.93750 8.994230e+05 113.78 7.111250e+00 0.000 4.00 16 0.000000e+00 0.00 8.995368e+05 8.994230e+05 113.78 NULL
2018 Police Department Glazier NA NA 110848.50 5.542425e+04 55424.250 1209.00 2 5.542425e+04 110848.50 NA NA NA NULL
2018 Police Department Graphic Artist 59979.00000 4.798320e+05 72986.87 9.123359e+03 4913.160 1704.75 8 4.913160e+03 39305.28 5.528189e+05 5.191373e+05 33681.59 NULL
2018 Police Department Health Services Manager 80156.00000 8.015600e+04 2512.98 2.512980e+03 2512.980 54.50 1 2.512980e+03 2512.98 8.266898e+04 8.266898e+04 0.00 NULL
2018 Police Department Horseshoer NA NA 1227.89 4.092967e+02 370.680 26.50 3 3.706800e+02 1112.04 NA NA NA NULL
2018 Police Department Hostler 43137.82300 1.078446e+06 116340.00 4.653600e+03 2630.650 3365.42 25 2.630650e+03 65766.25 1.194786e+06 1.144212e+06 50573.75 NULL
2018 Police Department Intelligence Research Manager-Pd 146819.60000 7.340980e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.340980e+05 7.340980e+05 0.00 NULL
2018 Police Department Intelligence Research Specialist-Pd 90193.71930 5.141042e+06 581204.61 1.019657e+04 8717.820 9209.75 57 8.717820e+03 496915.74 5.722247e+06 5.637958e+06 84288.87 NULL
2018 Police Department Investigator 46730.77083 2.243077e+06 314864.99 6.559687e+03 6425.015 9108.75 48 6.425015e+03 308400.72 2.557942e+06 2.551478e+06 6464.27 NULL
2018 Police Department Investigator Trainee 40959.00000 3.276720e+05 5439.64 6.799550e+02 278.735 199.75 8 2.787350e+02 2229.88 3.331116e+05 3.299019e+05 3209.76 NULL
2018 Police Department It Project Specialist 106400.00000 2.128000e+05 32858.34 1.642917e+04 16429.170 466.25 2 1.642917e+04 32858.34 2.456583e+05 2.456583e+05 0.00 NULL
2018 Police Department Job Training Participant 5457.42800 2.728714e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.728714e+04 2.728714e+04 0.00 NULL
2018 Police Department Lieutenant 121535.60118 1.855849e+08 36331542.27 2.379276e+04 22930.100 369861.39 1527 2.293010e+04 35014262.70 2.219164e+08 2.205991e+08 1317279.57 NULL
2018 Police Department Lieutenant D/A Commander Of Detective Squad 132807.02439 2.722544e+07 7782322.96 3.796255e+04 43351.600 73644.85 205 3.796255e+04 7782322.96 3.500776e+07 3.500776e+07 0.00 NULL
2018 Police Department Lieutenant D/A Special Assignment 132076.88764 2.350969e+07 6114238.01 3.434965e+04 40193.035 58160.81 178 3.434965e+04 6114238.01 2.962392e+07 2.962392e+07 0.00 NULL
2018 Police Department Locksmith NA NA 30146.97 1.507349e+04 15073.485 631.75 2 1.507349e+04 30146.97 NA NA NA NULL
2018 Police Department Maintenance Worker NA NA 577100.80 1.603058e+04 14876.120 13246.00 36 1.487612e+04 535540.32 NA NA NA NULL
2018 Police Department Management Auditor 69803.80952 1.465880e+06 79415.93 3.781711e+03 159.150 1454.00 21 1.591500e+02 3342.15 1.545296e+06 1.469222e+06 76073.78 NULL
2018 Police Department Manager Of Radio Repair Operations 136168.66667 8.170120e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.170120e+05 8.170120e+05 0.00 NULL
2018 Police Department Marine Maintenance Mechanic 69605.00000 1.392100e+05 39.05 1.952500e+01 19.525 2.00 2 1.952500e+01 39.05 1.392490e+05 1.392490e+05 0.00 NULL
2018 Police Department Media Services Technician 44581.56522 1.025376e+06 28941.89 1.258343e+03 109.040 866.75 23 1.090400e+02 2507.92 1.054318e+06 1.027884e+06 26433.97 NULL
2018 Police Department Motor Vehicle Operator 45858.17073 1.880185e+06 271191.50 6.614427e+03 3245.770 7151.87 41 3.245770e+03 133076.57 2.151376e+06 2.013262e+06 138114.93 NULL
2018 Police Department Motor Vehicle Supervisor 54767.80000 2.738390e+05 44257.56 8.851512e+03 10996.610 1051.00 5 8.851512e+03 44257.56 3.180966e+05 3.180966e+05 0.00 NULL
2018 Police Department Office Machine Aide 36383.66667 1.091510e+05 42.90 1.430000e+01 0.000 2.00 3 0.000000e+00 0.00 1.091939e+05 1.091510e+05 42.90 NULL
2018 Police Department Oiler NA NA 767885.92 3.490391e+04 36914.715 8480.00 22 3.490391e+04 767885.92 NA NA NA NULL
2018 Police Department Operations Communications Specialist 43142.00000 1.294260e+05 6003.07 2.001023e+03 0.000 138.00 3 0.000000e+00 0.00 1.354291e+05 1.294260e+05 6003.07 NULL
2018 Police Department P.o. Da Det Gr3 94305.51807 3.158292e+08 91676499.57 2.737429e+04 30407.610 1205094.36 3349 2.737429e+04 91676499.57 4.075057e+08 4.075057e+08 0.00 NULL
2018 Police Department P.o. Det Spec 94281.76566 9.333895e+07 23580747.39 2.381894e+04 24752.430 309104.90 990 2.381894e+04 23580747.39 1.169197e+08 1.169197e+08 0.00 NULL
2018 Police Department Painter NA NA 460447.32 2.558041e+04 25007.185 7086.50 18 2.500719e+04 450129.33 NA NA NA NULL
2018 Police Department Paralegal Aide 44257.00000 4.425700e+05 19806.12 1.980612e+03 0.000 502.75 10 0.000000e+00 0.00 4.623761e+05 4.425700e+05 19806.12 NULL
2018 Police Department Parking Control Specialist 43822.85714 6.135200e+05 124415.32 8.886809e+03 3476.800 3794.17 14 3.476800e+03 48675.20 7.379353e+05 6.621952e+05 75740.12 NULL
2018 Police Department Photographer 48023.36364 1.056514e+06 74043.93 3.365633e+03 1765.645 2285.00 22 1.765645e+03 38844.19 1.130558e+06 1.095358e+06 35199.74 NULL
2018 Police Department Physician’s Assistant 23252.32475 4.650465e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.650465e+04 4.650465e+04 0.00 NULL
2018 Police Department Plumber NA NA 783507.90 4.608870e+04 52517.880 7329.00 17 4.608870e+04 783507.90 NA NA NA NULL
2018 Police Department Plumber’s Helper NA NA 36746.48 3.674648e+04 36746.480 488.25 1 3.674648e+04 36746.48 NA NA NA NULL
2018 Police Department Police Administrative Aide 39150.20273 5.445793e+07 1312564.38 9.436121e+02 0.000 44074.27 1391 0.000000e+00 0.00 5.577050e+07 5.445793e+07 1312564.38 NULL
2018 Police Department Police Attendant 38329.08696 1.763138e+06 371890.97 8.084586e+03 6574.075 12378.72 46 6.574075e+03 302407.45 2.135029e+06 2.065545e+06 69483.52 NULL
2018 Police Department Police Cadet 14246.97353 7.622131e+06 0.00 0.000000e+00 0.000 0.00 535 0.000000e+00 0.00 7.622131e+06 7.622131e+06 0.00 NULL
2018 Police Department Police Communications Technician 44757.26076 6.865764e+07 6192573.38 4.036880e+03 2208.865 187537.73 1534 2.208865e+03 3388398.91 7.485021e+07 7.204604e+07 2804174.47 NULL
2018 Police Department Police Officer 70850.83064 1.799682e+09 265341887.14 1.044612e+04 7539.590 4193784.34 25401 7.539590e+03 191513125.59 2.065024e+09 1.991195e+09 73828761.55 NULL
2018 Police Department Police Officer D/A Detective 1st Gr 121563.34521 5.458194e+07 15736387.87 3.504763e+04 38701.970 161157.20 449 3.504763e+04 15736387.87 7.031833e+07 7.031833e+07 0.00 NULL
2018 Police Department Police Officer D/A Detective 2nd Gr 105931.53950 1.099569e+08 32208772.64 3.102965e+04 34748.175 377702.16 1038 3.102965e+04 32208772.64 1.421657e+08 1.421657e+08 0.00 NULL
2018 Police Department Police Surgeon 134770.76923 3.504040e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 3.504040e+06 3.504040e+06 0.00 NULL
2018 Police Department Precinct Community Relations Aide 27050.06963 1.082003e+05 35.84 8.960000e+00 0.000 4.00 4 0.000000e+00 0.00 1.082361e+05 1.082003e+05 35.84 NULL
2018 Police Department Precinct Receptionist 21105.20872 2.532625e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 2.532625e+05 2.532625e+05 0.00 NULL
2018 Police Department Principal Administrative Associate - Lev 1 & 2 Non Supvr 58716.48693 1.796724e+07 1039764.45 3.397923e+03 31.075 24278.50 306 3.107500e+01 9508.95 1.900701e+07 1.797675e+07 1030255.50 NULL
2018 Police Department Principal Fingerprint Technician 51686.33333 3.101180e+05 3274.76 5.457933e+02 561.890 109.50 6 5.457933e+02 3274.76 3.133928e+05 3.133928e+05 0.00 NULL
2018 Police Department Principal Police Communication Technician 69921.86154 4.544921e+06 707472.59 1.088419e+04 8806.800 13756.38 65 8.806800e+03 572442.00 5.252394e+06 5.117363e+06 135030.59 NULL
2018 Police Department Printing Press Operator NA NA 172622.69 1.078892e+04 9379.280 3025.50 16 9.379280e+03 150068.48 NA NA NA NULL
2018 Police Department Procurement Analyst 62707.81818 1.379572e+06 182247.35 8.283970e+03 8059.160 4228.00 22 8.059160e+03 177301.52 1.561819e+06 1.556874e+06 4945.83 NULL
2018 Police Department Program Producer 57371.50000 1.147430e+05 1160.28 5.801400e+02 580.140 28.50 2 5.801400e+02 1160.28 1.159033e+05 1.159033e+05 0.00 NULL
2018 Police Department Psychologist 71033.32609 1.633766e+06 205097.76 8.917294e+03 3669.640 3682.00 23 3.669640e+03 84401.72 1.838864e+06 1.718168e+06 120696.04 NULL
2018 Police Department Public Health Assistant 35476.00000 3.547600e+04 1369.97 1.369970e+03 1369.970 66.25 1 1.369970e+03 1369.97 3.684597e+04 3.684597e+04 0.00 NULL
2018 Police Department Public Records Officer 53087.00000 1.061740e+05 1210.82 6.054100e+02 605.410 38.75 2 6.054100e+02 1210.82 1.073848e+05 1.073848e+05 0.00 NULL
2018 Police Department Radio Repair Mechanic NA NA 1034066.07 1.055169e+04 9952.145 13642.25 98 9.952145e+03 975310.21 NA NA NA NULL
2018 Police Department Research Assistant 61707.00000 6.170700e+04 9626.49 9.626490e+03 9626.490 236.25 1 9.626490e+03 9626.49 7.133349e+04 7.133349e+04 0.00 NULL
2018 Police Department Roofer NA NA 153653.50 3.073070e+04 24702.810 2339.50 5 2.470281e+04 123514.05 NA NA NA NULL
2018 Police Department School Crossing Guard 11473.68056 3.303273e+07 -1482.95 -5.150920e-01 0.000 192.83 2879 -5.150920e-01 -1482.95 3.303124e+07 3.303124e+07 0.00 NULL
2018 Police Department School Safety Agent 43045.85416 2.387754e+08 50667489.44 9.134215e+03 8018.020 1584312.20 5547 8.018020e+03 44475956.94 2.894428e+08 2.832513e+08 6191532.50 NULL
2018 Police Department Secretary 47639.76667 1.429193e+06 107790.84 3.593028e+03 534.675 2777.75 30 5.346750e+02 16040.25 1.536984e+06 1.445233e+06 91750.59 NULL
2018 Police Department Secretary To The Commissioner 105771.00000 1.057710e+05 24286.34 2.428634e+04 24286.340 339.25 1 2.428634e+04 24286.34 1.300573e+05 1.300573e+05 0.00 NULL
2018 Police Department Secretary To The First Deputy Commissioner-Pd 106793.00000 1.067930e+05 19538.00 1.953800e+04 19538.000 283.25 1 1.953800e+04 19538.00 1.263310e+05 1.263310e+05 0.00 NULL
2018 Police Department Senior Office Appliance Maintainer 47369.00000 4.736900e+04 231.63 2.316300e+02 231.630 0.00 1 2.316300e+02 231.63 4.760063e+04 4.760063e+04 0.00 NULL
2018 Police Department Senior Photographer 56992.77778 5.129350e+05 79961.65 8.884628e+03 8648.040 2057.50 9 8.648040e+03 77832.36 5.928967e+05 5.907674e+05 2129.29 NULL
2018 Police Department Senior Police Administrative Aide 48974.13298 4.603568e+07 1894214.24 2.015122e+03 0.000 51897.60 940 0.000000e+00 0.00 4.792990e+07 4.603568e+07 1894214.24 NULL
2018 Police Department Senior Stationary Engineer NA NA 111908.58 3.730286e+04 40754.290 1028.25 3 3.730286e+04 111908.58 NA NA NA NULL
2018 Police Department Sergeant- 103639.33120 4.377725e+08 76867412.89 1.819778e+04 15423.670 913543.66 4224 1.542367e+04 65149582.08 5.146399e+08 5.029221e+08 11717830.81 NULL
2018 Police Department Sergeant-D/A Special Assignment 120112.28114 3.375155e+07 8489221.75 3.021075e+04 32371.110 87511.97 281 3.021075e+04 8489221.75 4.224077e+07 4.224077e+07 0.00 NULL
2018 Police Department Sergeant-D/A Supervisor Detective Squad 120910.54342 4.872695e+07 13844039.65 3.435246e+04 40030.720 142616.62 403 3.435246e+04 13844039.65 6.257099e+07 6.257099e+07 0.00 NULL
2018 Police Department Sheet Metal Worker NA NA 401354.09 6.689235e+04 73557.825 3584.25 6 6.689235e+04 401354.09 NA NA NA NULL
2018 Police Department Special Officer 46861.66667 1.405850e+05 6818.10 2.272700e+03 2745.970 190.75 3 2.272700e+03 6818.10 1.474031e+05 1.474031e+05 0.00 NULL
2018 Police Department Staff Analyst 62769.69444 2.259709e+06 97114.40 2.697622e+03 70.220 1934.75 36 7.022000e+01 2527.92 2.356823e+06 2.262237e+06 94586.48 NULL
2018 Police Department Staff Analyst Trainee 45502.75000 3.640220e+05 8913.09 1.114136e+03 22.335 306.75 8 2.233500e+01 178.68 3.729351e+05 3.642007e+05 8734.41 NULL
2018 Police Department Stationary Engineer NA NA 837271.41 6.440549e+04 61148.680 8450.50 13 6.114868e+04 794932.84 NA NA NA NULL
2018 Police Department Statistician 48631.00000 4.863100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.863100e+04 4.863100e+04 0.00 NULL
2018 Police Department Steam Fitter NA NA 387722.50 5.538893e+04 56210.000 3398.25 7 5.538893e+04 387722.50 NA NA NA NULL
2018 Police Department Steam Fitter’s Helper NA NA 8662.50 8.662500e+03 8662.500 105.00 1 8.662500e+03 8662.50 NA NA NA NULL
2018 Police Department Stenographer To Each Deputy Commissioner 87441.00000 5.246460e+05 50703.55 8.450592e+03 6100.400 936.75 6 6.100400e+03 36602.40 5.753496e+05 5.612484e+05 14101.15 NULL
2018 Police Department Stenographic Specialist 51363.00000 1.027260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.027260e+05 1.027260e+05 0.00 NULL
2018 Police Department Stock Worker 37594.68293 1.541382e+06 137437.59 3.352136e+03 1398.680 5080.92 41 1.398680e+03 57345.88 1.678820e+06 1.598728e+06 80091.71 NULL
2018 Police Department Summer College Intern 1380.95818 2.389058e+05 0.00 0.000000e+00 0.000 0.00 173 0.000000e+00 0.00 2.389058e+05 2.389058e+05 0.00 NULL
2018 Police Department Summer Graduate Intern 2586.48464 9.569993e+04 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 9.569993e+04 9.569993e+04 0.00 NULL
2018 Police Department Supervising Chief Surgeon 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2018 Police Department Supervising Police Communications Technician 61713.82386 1.086163e+07 1686049.41 9.579826e+03 7376.430 37248.61 176 7.376430e+03 1298251.68 1.254768e+07 1.215988e+07 387797.73 NULL
2018 Police Department Supervisor 73013.00000 2.190390e+05 106439.15 3.547972e+04 42691.770 1827.75 3 3.547972e+04 106439.15 3.254782e+05 3.254782e+05 0.00 NULL
2018 Police Department Supervisor Carpenter NA NA 105812.88 5.290644e+04 52906.440 1349.50 2 5.290644e+04 105812.88 NA NA NA NULL
2018 Police Department Supervisor Electrician NA NA 184502.25 4.612556e+04 44906.075 2031.00 4 4.490607e+04 179624.30 NA NA NA NULL
2018 Police Department Supervisor Elevator Mechanic NA NA 60156.60 6.015660e+04 60156.600 716.00 1 6.015660e+04 60156.60 NA NA NA NULL
2018 Police Department Supervisor Glazier NA NA 61884.90 6.188490e+04 61884.900 657.00 1 6.188490e+04 61884.90 NA NA NA NULL
2018 Police Department Supervisor Locksmith NA NA 11337.78 1.133778e+04 11337.780 213.00 1 1.133778e+04 11337.78 NA NA NA NULL
2018 Police Department Supervisor Of Mechanical Installations & Maintenance 72535.00000 7.253500e+04 39466.92 3.946692e+04 39466.920 688.50 1 3.946692e+04 39466.92 1.120019e+05 1.120019e+05 0.00 NULL
2018 Police Department Supervisor Of Mechanics 115563.43636 6.355989e+06 500857.47 9.106499e+03 9020.580 5821.25 55 9.020580e+03 496131.90 6.856846e+06 6.852121e+06 4725.57 NULL
2018 Police Department Supervisor Of Office Machine Operations 48454.00000 4.845400e+04 34974.86 3.497486e+04 34974.860 818.50 1 3.497486e+04 34974.86 8.342886e+04 8.342886e+04 0.00 NULL
2018 Police Department Supervisor Of School Security 68080.09929 9.599294e+06 1630528.19 1.156403e+04 11738.550 32410.25 141 1.156403e+04 1630528.19 1.122982e+07 1.122982e+07 0.00 NULL
2018 Police Department Supervisor Of Stock Workers 50952.00000 3.566640e+05 40027.33 5.718190e+03 3774.000 1149.50 7 3.774000e+03 26418.00 3.966913e+05 3.830820e+05 13609.33 NULL
2018 Police Department Supervisor Painter NA NA 61753.68 3.087684e+04 30876.840 838.00 2 3.087684e+04 61753.68 NA NA NA NULL
2018 Police Department Supervisor Plumber NA NA 122636.59 6.131829e+04 61318.295 1093.25 2 6.131829e+04 122636.59 NA NA NA NULL
2018 Police Department Supervisor Roofer NA NA 46988.08 4.698808e+04 46988.080 681.50 1 4.698808e+04 46988.08 NA NA NA NULL
2018 Police Department Supervisor Sheet Metal Worker NA NA 81396.08 8.139608e+04 81396.080 684.50 1 8.139608e+04 81396.08 NA NA NA NULL
2018 Police Department Supervisor Steamfitter NA NA 76421.50 3.821075e+04 38210.750 648.75 2 3.821075e+04 76421.50 NA NA NA NULL
2018 Police Department Supervisor Thermostat Repair NA NA 48456.00 4.845600e+04 48456.000 426.00 1 4.845600e+04 48456.00 NA NA NA NULL
2018 Police Department Surgeon Detailed As Deputy Chief Surgeon 150341.00000 3.006820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.006820e+05 3.006820e+05 0.00 NULL
2018 Police Department Telecommunications Associate 71526.55556 6.437390e+05 70331.06 7.814562e+03 2860.410 1432.25 9 2.860410e+03 25743.69 7.140701e+05 6.694827e+05 44587.37 NULL
2018 Police Department Telephone Service Technician 68108.33333 2.043250e+05 44073.52 1.469117e+04 17857.000 899.75 3 1.469117e+04 44073.52 2.483985e+05 2.483985e+05 0.00 NULL
2018 Police Department Tests And Measurement Specialist 91229.00000 9.122900e+04 14713.57 1.471357e+04 14713.570 238.50 1 1.471357e+04 14713.57 1.059426e+05 1.059426e+05 0.00 NULL
2018 Police Department Thermostat Repairer NA NA 310853.85 3.885673e+04 44152.200 2932.25 8 3.885673e+04 310853.85 NA NA NA NULL
2018 Police Department Traffic Enforc Agent-L 3 & 4 Only 45449.84345 1.422580e+07 5220441.99 1.667873e+04 15883.790 139042.55 313 1.588379e+04 4971626.27 1.944624e+07 1.919743e+07 248815.72 NULL
2018 Police Department Traffic Enforcement Agent Al 1 & 2 Only 38999.14281 1.152425e+08 29105808.49 9.849681e+03 6990.120 992041.27 2955 6.990120e+03 20655804.60 1.443483e+08 1.358983e+08 8450003.89 NULL
2018 Police Department Welder NA NA 60017.23 3.000862e+04 30008.615 604.00 2 3.000862e+04 60017.23 NA NA NA NULL
2018 Public Administrator-Bronx Community Associate 41045.00000 1.641800e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.641800e+05 1.641800e+05 0.00 NULL
2018 Public Administrator-Bronx Decedent Property Agent 47993.00000 4.799300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.799300e+04 4.799300e+04 0.00 NULL
2018 Public Administrator-Bronx Deputy Public Administator 100200.00000 1.002000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.002000e+05 1.002000e+05 0.00 NULL
2018 Public Administrator-Bronx Principal Administrative Associate - Lev 1 & 2 Non Supvr 58504.00000 5.850400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.850400e+04 5.850400e+04 0.00 NULL
2018 Public Administrator-Bronx Public Administrator 158850.00000 3.177000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.177000e+05 3.177000e+05 0.00 NULL
2018 Public Administrator-Kings Community Assistant 35933.33333 1.078000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.078000e+05 1.078000e+05 0.00 NULL
2018 Public Administrator-Kings Community Associate 38107.41500 2.286445e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.286445e+05 2.286445e+05 0.00 NULL
2018 Public Administrator-Kings Community Coordinator 57916.00000 1.158320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.158320e+05 1.158320e+05 0.00 NULL
2018 Public Administrator-Kings Decedent Property Agent 47035.79250 1.881432e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.881432e+05 1.881432e+05 0.00 NULL
2018 Public Administrator-Kings Deputy Public Administator 124888.00000 1.248880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.248880e+05 1.248880e+05 0.00 NULL
2018 Public Administrator-Kings Public Administrator 187200.00000 1.872000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.872000e+05 1.872000e+05 0.00 NULL
2018 Public Administrator-New York Accountant 62392.00000 6.239200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.239200e+04 6.239200e+04 0.00 NULL
2018 Public Administrator-New York Clerical Associate 42839.00000 1.285170e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.285170e+05 1.285170e+05 0.00 NULL
2018 Public Administrator-New York Decedent Property Agent 46367.33333 1.391020e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.391020e+05 1.391020e+05 0.00 NULL
2018 Public Administrator-New York Deputy Public Administator 124800.00000 1.248000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.248000e+05 1.248000e+05 0.00 NULL
2018 Public Administrator-New York Principal Administrative Associate - Lev 1 & 2 Non Supvr 62834.00000 6.283400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.283400e+04 6.283400e+04 0.00 NULL
2018 Public Administrator-New York Public Administrator 187200.00000 1.872000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.872000e+05 1.872000e+05 0.00 NULL
2018 Public Administrator-Queens Decedent Property Agent 42592.85714 2.981500e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.981500e+05 2.981500e+05 0.00 NULL
2018 Public Administrator-Queens Deputy Public Administator 124888.00000 1.248880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.248880e+05 1.248880e+05 0.00 NULL
2018 Public Administrator-Queens Public Administrator 187200.00000 1.872000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.872000e+05 1.872000e+05 0.00 NULL
2018 Public Administrator-Queens Secretary 31673.00000 3.167300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.167300e+04 3.167300e+04 0.00 NULL
2018 Public Administrator-Richmond Deputy Public Administator 124800.00000 1.248000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.248000e+05 1.248000e+05 0.00 NULL
2018 Public Administrator-Richmond Public Administrator 187200.00000 1.872000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.872000e+05 1.872000e+05 0.00 NULL
2018 Public Administrator-Richmond Secretary To Public Administrator 63479.00000 1.904370e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.904370e+05 1.904370e+05 0.00 NULL
2018 Public Advocate Assistant To The Public Advocate 22925.52149 1.283829e+06 0.00 0.000000e+00 0.000 0.00 56 0.000000e+00 0.00 1.283829e+06 1.283829e+06 0.00 NULL
2018 Public Advocate Counsel To The Public Advocate 112374.24000 5.618712e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.618712e+05 5.618712e+05 0.00 NULL
2018 Public Advocate Director Of The Ombudsman Program 90701.36000 1.814027e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.814027e+05 1.814027e+05 0.00 NULL
2018 Public Advocate Executive Assistant And Counsel To The Public Advocate 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2018 Public Advocate Executive Secretary To The Public Advocate 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2018 Public Advocate First Assistant To The Public Advocate 145500.00000 2.910000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.910000e+05 2.910000e+05 0.00 NULL
2018 Public Advocate Legislative Attorney 79750.00000 7.975000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.975000e+04 7.975000e+04 0.00 NULL
2018 Public Advocate Legislative Information Officer 105375.00000 2.107500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.107500e+05 2.107500e+05 0.00 NULL
2018 Public Advocate Office Assistant 70590.42000 7.059042e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.059042e+04 7.059042e+04 0.00 NULL
2018 Public Advocate Office Manager 73605.55556 6.624500e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 6.624500e+05 6.624500e+05 0.00 NULL
2018 Public Advocate Principal Investigator 65750.00000 6.575000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.575000e+04 6.575000e+04 0.00 NULL
2018 Public Advocate Program Research Analyst To The Public Advocate 55250.00000 1.105000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.105000e+05 1.105000e+05 0.00 NULL
2018 Public Advocate Public Advocate 184800.00000 1.848000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.848000e+05 1.848000e+05 0.00 NULL
2018 Public Advocate Summer College Intern 175.05000 1.750500e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750500e+02 1.750500e+02 0.00 NULL
2018 Public Service Corps College Aide 2717.92357 7.148139e+05 0.00 0.000000e+00 0.000 0.00 263 0.000000e+00 0.00 7.148139e+05 7.148139e+05 0.00 NULL
2018 Queens Community Board #1 Community Assistant 31827.00000 3.182700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.182700e+04 3.182700e+04 0.00 NULL
2018 Queens Community Board #1 Community Service Aide 11005.81667 3.301745e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.301745e+04 3.301745e+04 0.00 NULL
2018 Queens Community Board #1 District Manager 91590.00000 9.159000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.159000e+04 9.159000e+04 0.00 NULL
2018 Queens Community Board #10 Community Associate 45231.00000 9.046200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.046200e+04 9.046200e+04 0.00 NULL
2018 Queens Community Board #10 Community Coordinator 5640.96000 5.640960e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.640960e+03 5.640960e+03 0.00 NULL
2018 Queens Community Board #10 District Manager 94144.00000 9.414400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.414400e+04 9.414400e+04 0.00 NULL
2018 Queens Community Board #11 Community Associate 49682.00000 4.968200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.968200e+04 4.968200e+04 0.00 NULL
2018 Queens Community Board #11 Community Coordinator 65170.00000 6.517000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.517000e+04 6.517000e+04 0.00 NULL
2018 Queens Community Board #11 District Manager 86384.50000 1.727690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.727690e+05 1.727690e+05 0.00 NULL
2018 Queens Community Board #12 Community Assistant 36489.00000 7.297800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.297800e+04 7.297800e+04 0.00 NULL
2018 Queens Community Board #12 Community Service Aide 19815.00000 1.981500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.981500e+04 1.981500e+04 0.00 NULL
2018 Queens Community Board #12 District Manager 111215.00000 1.112150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.112150e+05 1.112150e+05 0.00 NULL
2018 Queens Community Board #13 Community Assistant 35020.00000 3.502000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.502000e+04 3.502000e+04 0.00 NULL
2018 Queens Community Board #13 Community Coordinator 64890.00000 6.489000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.489000e+04 6.489000e+04 0.00 NULL
2018 Queens Community Board #13 District Manager 103485.00000 1.034850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.034850e+05 1.034850e+05 0.00 NULL
2018 Queens Community Board #14 Community Coordinator 69868.00000 6.986800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.986800e+04 6.986800e+04 0.00 NULL
2018 Queens Community Board #14 Community Service Aide 19944.50000 3.988900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.988900e+04 3.988900e+04 0.00 NULL
2018 Queens Community Board #14 District Manager 126171.00000 1.261710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.261710e+05 1.261710e+05 0.00 NULL
2018 Queens Community Board #2 Community Assistant 35334.00000 3.533400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.533400e+04 3.533400e+04 0.00 NULL
2018 Queens Community Board #2 Community Associate 58351.00000 5.835100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.835100e+04 5.835100e+04 0.00 NULL
2018 Queens Community Board #2 Community Service Aide 16321.72500 1.632173e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.632173e+04 1.632173e+04 0.00 NULL
2018 Queens Community Board #2 District Manager 102497.00000 1.024970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.024970e+05 1.024970e+05 0.00 NULL
2018 Queens Community Board #3 Community Associate 48451.00000 4.845100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.845100e+04 4.845100e+04 0.00 NULL
2018 Queens Community Board #3 Community Service Aide 21899.00000 6.569700e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.569700e+04 6.569700e+04 0.00 NULL
2018 Queens Community Board #3 District Manager 102768.00000 1.027680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.027680e+05 1.027680e+05 0.00 NULL
2018 Queens Community Board #4 Community Assistant 39275.00000 3.927500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.927500e+04 3.927500e+04 0.00 NULL
2018 Queens Community Board #4 Community Coordinator 78201.00000 7.820100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.820100e+04 7.820100e+04 0.00 NULL
2018 Queens Community Board #4 District Manager 96579.00000 9.657900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.657900e+04 9.657900e+04 0.00 NULL
2018 Queens Community Board #5 Community Associate 39770.92433 1.193128e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.193128e+05 1.193128e+05 0.00 NULL
2018 Queens Community Board #5 District Manager 92328.00000 9.232800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.232800e+04 9.232800e+04 0.00 NULL
2018 Queens Community Board #6 Community Associate 58850.00000 5.885000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.885000e+04 5.885000e+04 0.00 NULL
2018 Queens Community Board #6 Community Service Aide 20085.00000 2.008500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.008500e+04 2.008500e+04 0.00 NULL
2018 Queens Community Board #6 District Manager 102473.00000 1.024730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.024730e+05 1.024730e+05 0.00 NULL
2018 Queens Community Board #6 Secretary 36444.00000 3.644400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.644400e+04 3.644400e+04 0.00 NULL
2018 Queens Community Board #7 Community Assistant 10928.85290 1.092885e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.092885e+04 1.092885e+04 0.00 NULL
2018 Queens Community Board #7 Community Associate 41036.00000 4.103600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.103600e+04 4.103600e+04 0.00 NULL
2018 Queens Community Board #7 Community Service Aide 24577.00000 2.457700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.457700e+04 2.457700e+04 0.00 NULL
2018 Queens Community Board #7 District Manager 85367.00000 8.536700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.536700e+04 8.536700e+04 0.00 NULL
2018 Queens Community Board #8 Community Assistant 26985.00000 2.698500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.698500e+04 2.698500e+04 0.00 NULL
2018 Queens Community Board #8 Community Associate 42677.50000 8.535500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.535500e+04 8.535500e+04 0.00 NULL
2018 Queens Community Board #8 District Manager 108292.00000 1.082920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.082920e+05 1.082920e+05 0.00 NULL
2018 Queens Community Board #9 Community Assistant 37547.00000 3.754700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.754700e+04 3.754700e+04 0.00 NULL
2018 Queens Community Board #9 Community Associate 45000.00000 4.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.500000e+04 4.500000e+04 0.00 NULL
2018 Queens Community Board #9 Community Service Aide 20278.00000 2.027800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.027800e+04 2.027800e+04 0.00 NULL
2018 Queens Community Board #9 District Manager 69525.00000 6.952500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.952500e+04 6.952500e+04 0.00 NULL
2018 Staten Island Community Bd #1 Community Associate 47760.00000 4.776000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.776000e+04 4.776000e+04 0.00 NULL
2018 Staten Island Community Bd #1 Community Coordinator 64828.00000 6.482800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.482800e+04 6.482800e+04 0.00 NULL
2018 Staten Island Community Bd #1 District Manager 91257.91000 9.125791e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.125791e+04 9.125791e+04 0.00 NULL
2018 Staten Island Community Bd #2 Community Assistant 20990.09000 2.099009e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.099009e+04 2.099009e+04 0.00 NULL
2018 Staten Island Community Bd #2 Community Associate 22120.66500 2.212067e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.212067e+04 2.212067e+04 0.00 NULL
2018 Staten Island Community Bd #2 Community Coordinator 31572.87510 3.157288e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.157288e+04 3.157288e+04 0.00 NULL
2018 Staten Island Community Bd #2 District Manager 92708.69000 9.270869e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.270869e+04 9.270869e+04 0.00 NULL
2018 Staten Island Community Bd #3 Community Coordinator 60733.00000 1.821990e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.821990e+05 1.821990e+05 0.00 NULL
2018 Staten Island Community Bd #3 District Manager 97000.00000 9.700000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.700000e+04 9.700000e+04 0.00 NULL
2018 Tax Commission *Administrative Attorney 146111.00000 1.461110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.461110e+05 1.461110e+05 0.00 NULL
2018 Tax Commission *Certified Database Administrator 96862.00000 9.686200e+04 8943.06 8.943060e+03 8943.060 122.25 1 8.943060e+03 8943.06 1.058051e+05 1.058051e+05 0.00 NULL
2018 Tax Commission Adm Manager-Non-Mgrl From M1/M2 74918.50000 1.498370e+05 4610.65 2.305325e+03 2305.325 89.00 2 2.305325e+03 4610.65 1.544476e+05 1.544476e+05 0.00 NULL
2018 Tax Commission Administrative Assessor 137500.00000 1.375000e+05 16.49 1.649000e+01 16.490 0.00 1 1.649000e+01 16.49 1.375165e+05 1.375165e+05 0.00 NULL
2018 Tax Commission Agency Attorney 78711.30352 3.935565e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.935565e+05 3.935565e+05 0.00 NULL
2018 Tax Commission Assistant Counsel 123563.00000 1.235630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.235630e+05 1.235630e+05 0.00 NULL
2018 Tax Commission Associate Staff Analyst 86273.00000 8.627300e+04 5096.46 5.096460e+03 5096.460 100.00 1 5.096460e+03 5096.46 9.136946e+04 9.136946e+04 0.00 NULL
2018 Tax Commission City Assessor 88012.61538 1.144164e+06 136399.08 1.049224e+04 11213.050 1758.00 13 1.049224e+04 136399.08 1.280563e+06 1.280563e+06 0.00 NULL
2018 Tax Commission Clerical Associate 57410.00000 5.741000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.741000e+04 5.741000e+04 0.00 NULL
2018 Tax Commission College Aide 12135.29635 1.577589e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.577589e+05 1.577589e+05 0.00 NULL
2018 Tax Commission Commissioner 81618.00000 4.897080e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.897080e+05 4.897080e+05 0.00 NULL
2018 Tax Commission Community Assistant 47026.00000 4.702600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.702600e+04 4.702600e+04 0.00 NULL
2018 Tax Commission Computer Associate 72959.66667 2.188790e+05 4605.10 1.535033e+03 2165.080 89.75 3 1.535033e+03 4605.10 2.234841e+05 2.234841e+05 0.00 NULL
2018 Tax Commission Computer Specialist 108691.00000 1.086910e+05 8288.11 8.288110e+03 8288.110 109.50 1 8.288110e+03 8288.11 1.169791e+05 1.169791e+05 0.00 NULL
2018 Tax Commission Computer Systems Manager 152241.50000 3.044830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.044830e+05 3.044830e+05 0.00 NULL
2018 Tax Commission Executive Agency Counsel 150458.00000 1.504580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.504580e+05 1.504580e+05 0.00 NULL
2018 Tax Commission Executive Assistant To The President Of The Tax Commission 134483.00000 1.344830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.344830e+05 1.344830e+05 0.00 NULL
2018 Tax Commission President 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2018 Tax Commission Principal Administrative Associate - Lev 1 & 2 Non Supvr 60145.25000 2.405810e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.405810e+05 2.405810e+05 0.00 NULL
2018 Tax Commission Secretary 59243.50000 1.184870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.184870e+05 1.184870e+05 0.00 NULL
2018 Tax Commission Secretary Of The Tax Commission 76542.00000 7.654200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.654200e+04 7.654200e+04 0.00 NULL
2018 Tax Commission Secretary To The President 76542.00000 7.654200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.654200e+04 7.654200e+04 0.00 NULL
2018 Tax Commission Special Assistant 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2018 Taxi & Limousine Commission *Certified Database Administrator 94042.00000 9.404200e+04 640.74 6.407400e+02 640.740 0.00 1 6.407400e+02 640.74 9.468274e+04 9.468274e+04 0.00 NULL
2018 Taxi & Limousine Commission Accountant 77523.00000 2.325690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.325690e+05 2.325690e+05 0.00 NULL
2018 Taxi & Limousine Commission Adm Manager-Non-Mgrl From M1/M2 77067.66667 6.936090e+05 2753.81 3.059789e+02 0.000 56.50 9 0.000000e+00 0.00 6.963628e+05 6.936090e+05 2753.81 NULL
2018 Taxi & Limousine Commission Admin Community Relations Specialist 80088.50000 1.601770e+05 3463.79 1.731895e+03 1731.895 63.25 2 1.731895e+03 3463.79 1.636408e+05 1.636408e+05 0.00 NULL
2018 Taxi & Limousine Commission Administratiive Taxi & Limousine Inspector 112951.92857 1.581327e+06 24824.73 1.773195e+03 0.000 478.00 14 0.000000e+00 0.00 1.606152e+06 1.581327e+06 24824.73 NULL
2018 Taxi & Limousine Commission Administrative Accountant 108150.00000 1.081500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081500e+05 1.081500e+05 0.00 NULL
2018 Taxi & Limousine Commission Administrative City Planner 108724.50000 2.174490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.174490e+05 2.174490e+05 0.00 NULL
2018 Taxi & Limousine Commission Administrative Manager 134868.00000 1.348680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.348680e+05 1.348680e+05 0.00 NULL
2018 Taxi & Limousine Commission Administrative Procurement Analyst 93000.00000 9.300000e+04 1435.77 1.435770e+03 1435.770 21.50 1 1.435770e+03 1435.77 9.443577e+04 9.443577e+04 0.00 NULL
2018 Taxi & Limousine Commission Administrative Project Manager 94000.00000 9.400000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.400000e+04 9.400000e+04 0.00 NULL
2018 Taxi & Limousine Commission Administrative Public Information Specialist 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2018 Taxi & Limousine Commission Administrative Quality Assurance Specialist 154189.50000 3.083790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.083790e+05 3.083790e+05 0.00 NULL
2018 Taxi & Limousine Commission Administrative Staff Analyst 113212.10531 1.358545e+06 266.23 2.218583e+01 0.000 4.75 12 0.000000e+00 0.00 1.358811e+06 1.358545e+06 266.23 NULL
2018 Taxi & Limousine Commission Agency Attorney 71313.25641 2.781217e+06 13921.59 3.569638e+02 0.000 318.75 39 0.000000e+00 0.00 2.795139e+06 2.781217e+06 13921.59 NULL
2018 Taxi & Limousine Commission Agency Attorney Interne 58909.77778 1.060376e+06 6961.60 3.867556e+02 0.000 177.00 18 0.000000e+00 0.00 1.067338e+06 1.060376e+06 6961.60 NULL
2018 Taxi & Limousine Commission Associate Staff Analyst 81000.00000 8.100000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.100000e+04 8.100000e+04 0.00 NULL
2018 Taxi & Limousine Commission Associate Taxi & Limousine Inspector 56193.11111 3.540166e+06 300244.36 4.765783e+03 2240.310 7324.25 63 2.240310e+03 141139.53 3.840410e+06 3.681306e+06 159104.83 NULL
2018 Taxi & Limousine Commission Bookkeeper 52118.00000 5.211800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.211800e+04 5.211800e+04 0.00 NULL
2018 Taxi & Limousine Commission Cashier 36806.58375 3.680658e+05 571.31 5.713100e+01 13.905 19.25 10 1.390500e+01 139.05 3.686371e+05 3.682049e+05 432.26 NULL
2018 Taxi & Limousine Commission Certified It Administrator 103508.40000 5.175420e+05 4272.34 8.544680e+02 0.000 42.00 5 0.000000e+00 0.00 5.218143e+05 5.175420e+05 4272.34 NULL
2018 Taxi & Limousine Commission Certified It Developer 64451.75000 1.933552e+05 47.90 1.596667e+01 0.000 0.00 3 0.000000e+00 0.00 1.934031e+05 1.933552e+05 47.90 NULL
2018 Taxi & Limousine Commission Chairman 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2018 Taxi & Limousine Commission Clerical Aide 23380.13000 9.352052e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 9.352052e+04 9.352052e+04 0.00 NULL
2018 Taxi & Limousine Commission Clerical Associate 42538.74297 1.573933e+06 11595.88 3.134022e+02 0.000 370.75 37 0.000000e+00 0.00 1.585529e+06 1.573933e+06 11595.88 NULL
2018 Taxi & Limousine Commission College Aide 5570.15625 4.456125e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.456125e+04 4.456125e+04 0.00 NULL
2018 Taxi & Limousine Commission College Aide - Assignment Levels Ii And Iii 2706.16500 2.706165e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.706165e+03 2.706165e+03 0.00 NULL
2018 Taxi & Limousine Commission Community Assistant 28858.43430 1.789223e+06 29559.89 4.767724e+02 33.965 1182.00 62 3.396500e+01 2105.83 1.818783e+06 1.791329e+06 27454.06 NULL
2018 Taxi & Limousine Commission Community Associate 42583.97962 3.960310e+06 67405.21 7.247872e+02 0.000 2127.50 93 0.000000e+00 0.00 4.027715e+06 3.960310e+06 67405.21 NULL
2018 Taxi & Limousine Commission Community Coordinator 62816.21588 2.135751e+06 10717.69 3.152262e+02 0.000 237.75 34 0.000000e+00 0.00 2.146469e+06 2.135751e+06 10717.69 NULL
2018 Taxi & Limousine Commission Computer Aide-Non-Spvr 43510.49438 1.740420e+05 3102.59 7.756475e+02 724.975 98.00 4 7.249750e+02 2899.90 1.771446e+05 1.769419e+05 202.69 NULL
2018 Taxi & Limousine Commission Computer Associate 78622.30833 4.717338e+05 33452.84 5.575473e+03 5247.000 572.25 6 5.247000e+03 31482.00 5.051867e+05 5.032158e+05 1970.84 NULL
2018 Taxi & Limousine Commission Computer Operations Manager 100296.00000 1.002960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.002960e+05 1.002960e+05 0.00 NULL
2018 Taxi & Limousine Commission Computer Specialist 98225.25000 7.858020e+05 4402.17 5.502713e+02 0.000 63.25 8 0.000000e+00 0.00 7.902042e+05 7.858020e+05 4402.17 NULL
2018 Taxi & Limousine Commission Computer Systems Manager 133174.80000 6.658740e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.658740e+05 6.658740e+05 0.00 NULL
2018 Taxi & Limousine Commission Executive Agency Counsel 123174.66667 1.108572e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.108572e+06 1.108572e+06 0.00 NULL
2018 Taxi & Limousine Commission Investigator 59551.00000 1.191020e+05 1762.59 8.812950e+02 881.295 50.75 2 8.812950e+02 1762.59 1.208646e+05 1.208646e+05 0.00 NULL
2018 Taxi & Limousine Commission Maintenance Worker NA NA 4542.19 2.271095e+03 2271.095 106.25 2 2.271095e+03 4542.19 NA NA NA NULL
2018 Taxi & Limousine Commission Operations Communications Specialist 25909.06877 3.368179e+05 3379.68 2.599754e+02 163.360 127.25 13 1.633600e+02 2123.68 3.401976e+05 3.389416e+05 1256.00 NULL
2018 Taxi & Limousine Commission Principal Administrative Associate - Lev 1 & 2 Non Supvr 60577.41214 1.272126e+06 15505.11 7.383386e+02 0.000 365.00 21 0.000000e+00 0.00 1.287631e+06 1.272126e+06 15505.11 NULL
2018 Taxi & Limousine Commission Procurement Analyst 79196.00000 7.919600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.919600e+04 7.919600e+04 0.00 NULL
2018 Taxi & Limousine Commission Secretary 35468.00000 3.546800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.546800e+04 3.546800e+04 0.00 NULL
2018 Taxi & Limousine Commission Staff Analyst 57590.00000 5.759000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.759000e+04 5.759000e+04 0.00 NULL
2018 Taxi & Limousine Commission Staff Analyst Trainee 47132.00000 1.413960e+05 1528.91 5.096367e+02 21.480 57.25 3 2.148000e+01 64.44 1.429249e+05 1.414604e+05 1464.47 NULL
2018 Taxi & Limousine Commission Summer College Intern 911.76000 9.117600e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.117600e+02 9.117600e+02 0.00 NULL
2018 Taxi & Limousine Commission Summer Graduate Intern 2272.78800 1.136394e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.136394e+04 1.136394e+04 0.00 NULL
2018 Taxi & Limousine Commission Supervisor Of Stock Workers 50890.42500 2.035617e+05 5865.25 1.466312e+03 1549.290 170.75 4 1.466312e+03 5865.25 2.094270e+05 2.094270e+05 0.00 NULL
2018 Taxi & Limousine Commission Taxi And Limousine Inspector 41501.18483 8.756750e+06 616410.20 2.921375e+03 504.020 19350.75 211 5.040200e+02 106348.22 9.373160e+06 8.863098e+06 510061.98 NULL
2018 Taxi & Limousine Commission Telecommunications Associate 105581.00000 1.055810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.055810e+05 1.055810e+05 0.00 NULL
2018 Teachers Retirement System *Certified Applications Developer 99645.00000 9.964500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.964500e+04 9.964500e+04 0.00 NULL
2018 Teachers Retirement System Accountant 64829.87500 5.186390e+05 3728.42 4.660525e+02 0.000 81.50 8 0.000000e+00 0.00 5.223674e+05 5.186390e+05 3728.42 NULL
2018 Teachers Retirement System Adm Manager-Non-Mgrl From M1/M2 72625.20000 3.631260e+05 358.68 7.173600e+01 0.000 10.25 5 0.000000e+00 0.00 3.634847e+05 3.631260e+05 358.68 NULL
2018 Teachers Retirement System Administrative Accountant 88078.16667 5.284690e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.284690e+05 5.284690e+05 0.00 NULL
2018 Teachers Retirement System Administrative Community Relations Specialist 91273.00000 9.127300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.127300e+04 9.127300e+04 0.00 NULL
2018 Teachers Retirement System Administrative Labor Relations Analyst 119007.00000 1.190070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.190070e+05 1.190070e+05 0.00 NULL
2018 Teachers Retirement System Administrative Management Auditor 131446.50000 2.628930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.628930e+05 2.628930e+05 0.00 NULL
2018 Teachers Retirement System Administrative Manager 100308.87500 8.024710e+05 53.48 6.685000e+00 0.000 1.25 8 0.000000e+00 0.00 8.025245e+05 8.024710e+05 53.48 NULL
2018 Teachers Retirement System Administrative Project Manager 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2018 Teachers Retirement System Administrative Public Information Specialist 95450.00000 9.545000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.545000e+04 9.545000e+04 0.00 NULL
2018 Teachers Retirement System Administrative Retirement Benefits Specialist 102872.28571 2.160318e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 2.160318e+06 2.160318e+06 0.00 NULL
2018 Teachers Retirement System Administrative Staff Analyst 92011.00000 1.196143e+06 20415.93 1.570456e+03 0.000 401.50 13 0.000000e+00 0.00 1.216559e+06 1.196143e+06 20415.93 NULL
2018 Teachers Retirement System Agency Attorney 80334.33333 2.410030e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.410030e+05 2.410030e+05 0.00 NULL
2018 Teachers Retirement System Assistant Executive Director 171667.00000 5.150010e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.150010e+05 5.150010e+05 0.00 NULL
2018 Teachers Retirement System Assistant Retirement Benefits Examiner 51019.00000 4.591710e+05 8235.61 9.150678e+02 0.000 268.00 9 0.000000e+00 0.00 4.674066e+05 4.591710e+05 8235.61 NULL
2018 Teachers Retirement System Associate Public Information Specialist 57311.50000 1.146230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.146230e+05 1.146230e+05 0.00 NULL
2018 Teachers Retirement System Associate Retirement Benefits Examiner 58751.04545 6.462615e+06 145916.75 1.326516e+03 0.000 3319.00 110 0.000000e+00 0.00 6.608532e+06 6.462615e+06 145916.75 NULL
2018 Teachers Retirement System Associate Staff Analyst 80754.33333 2.422630e+05 2486.65 8.288833e+02 0.000 52.75 3 0.000000e+00 0.00 2.447496e+05 2.422630e+05 2486.65 NULL
2018 Teachers Retirement System Bookkeeper 51466.00000 4.117280e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.117280e+05 4.117280e+05 0.00 NULL
2018 Teachers Retirement System Certified It Administrator 94550.00000 9.455000e+04 2394.86 2.394860e+03 2394.860 37.50 1 2.394860e+03 2394.86 9.694486e+04 9.694486e+04 0.00 NULL
2018 Teachers Retirement System Certified It Developer 113661.00000 1.136610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.136610e+05 1.136610e+05 0.00 NULL
2018 Teachers Retirement System Clerical Associate 48457.64706 8.237800e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 8.237800e+05 8.237800e+05 0.00 NULL
2018 Teachers Retirement System College Aide 7646.31250 7.646312e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.646312e+04 7.646312e+04 0.00 NULL
2018 Teachers Retirement System College Aide - Assignment Levels Ii And Iii 7243.04000 1.448608e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.448608e+04 1.448608e+04 0.00 NULL
2018 Teachers Retirement System Community Associate 45063.66667 1.351910e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.351910e+05 1.351910e+05 0.00 NULL
2018 Teachers Retirement System Computer Associate 64684.10000 6.468410e+05 523.69 5.236900e+01 0.000 11.25 10 0.000000e+00 0.00 6.473647e+05 6.468410e+05 523.69 NULL
2018 Teachers Retirement System Computer Operations Manager 117654.00000 2.353080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.353080e+05 2.353080e+05 0.00 NULL
2018 Teachers Retirement System Computer Specialist 105480.55556 2.847975e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 2.847975e+06 2.847975e+06 0.00 NULL
2018 Teachers Retirement System Computer Systems Manager 144156.42593 7.784447e+06 3212.74 5.949519e+01 0.000 47.25 54 0.000000e+00 0.00 7.787660e+06 7.784447e+06 3212.74 NULL
2018 Teachers Retirement System Customer Information Representative Ma L 1549 60074.50000 4.805960e+05 6736.60 8.420750e+02 0.000 163.50 8 0.000000e+00 0.00 4.873326e+05 4.805960e+05 6736.60 NULL
2018 Teachers Retirement System Deputy Executive Director 210756.00000 2.107560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.107560e+05 2.107560e+05 0.00 NULL
2018 Teachers Retirement System Executive Agency Counsel 153286.00000 3.065720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.065720e+05 3.065720e+05 0.00 NULL
2018 Teachers Retirement System Executive Director 227595.00000 2.275950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.275950e+05 2.275950e+05 0.00 NULL
2018 Teachers Retirement System Graphic Artist 65581.00000 1.311620e+05 4076.70 2.038350e+03 2038.350 95.25 2 2.038350e+03 4076.70 1.352387e+05 1.352387e+05 0.00 NULL
2018 Teachers Retirement System Investment Analyst 76545.33333 2.296360e+05 1710.18 5.700600e+02 0.000 31.25 3 0.000000e+00 0.00 2.313462e+05 2.296360e+05 1710.18 NULL
2018 Teachers Retirement System Management Auditor 70761.33333 2.122840e+05 9881.90 3.293967e+03 0.000 218.25 3 0.000000e+00 0.00 2.221659e+05 2.122840e+05 9881.90 NULL
2018 Teachers Retirement System Office Machine Aide 45000.00000 2.700000e+05 228.81 3.813500e+01 0.000 2.00 6 0.000000e+00 0.00 2.702288e+05 2.700000e+05 228.81 NULL
2018 Teachers Retirement System Paralegal Aide 46244.00000 4.624400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.624400e+04 4.624400e+04 0.00 NULL
2018 Teachers Retirement System Principal Administrative Associate - Lev 1 & 2 Non Supvr 64845.93333 9.726890e+05 44331.42 2.955428e+03 0.000 956.75 15 0.000000e+00 0.00 1.017020e+06 9.726890e+05 44331.42 NULL
2018 Teachers Retirement System Secretary To The Executive Director Of Retirement System 45000.00000 4.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.500000e+04 4.500000e+04 0.00 NULL
2018 Teachers Retirement System Staff Analyst 63142.00000 1.894260e+05 4750.03 1.583343e+03 0.000 102.00 3 0.000000e+00 0.00 1.941760e+05 1.894260e+05 4750.03 NULL
2018 Teachers Retirement System Staff Analyst Trainee 45123.00000 4.512300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.512300e+04 4.512300e+04 0.00 NULL
2018 Teachers Retirement System Summer College Intern 1529.23026 5.811075e+04 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 5.811075e+04 5.811075e+04 0.00 NULL
2018 Teachers Retirement System Supervisor Of Office Machine Operations 45000.00000 4.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.500000e+04 4.500000e+04 0.00 NULL
2018 Teachers Retirement System Supervisor Of Stock Workers 51377.66667 1.541330e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.541330e+05 1.541330e+05 0.00 NULL
2019 Admin For Children’s Svcs Accountant 67161.76923 8.731030e+05 1019.60 7.843077e+01 0.000 20.00 13 0.000000e+00 0.00 8.741226e+05 8.731030e+05 1019.60 NULL
2019 Admin For Children’s Svcs Adm Manager-Non-Mgrl From M1/M2 70483.80882 4.792899e+06 460903.50 6.777993e+03 154.345 9079.50 68 1.543450e+02 10495.46 5.253802e+06 4.803394e+06 450408.04 NULL
2019 Admin For Children’s Svcs Admin Community Relations Specialist 84858.10204 4.158047e+06 250992.28 5.122291e+03 0.000 4109.00 49 0.000000e+00 0.00 4.409039e+06 4.158047e+06 250992.28 NULL
2019 Admin For Children’s Svcs Admin Construction Project Manager 119939.00000 1.199390e+05 52281.15 5.228115e+04 52281.150 644.75 1 5.228115e+04 52281.15 1.722201e+05 1.722201e+05 0.00 NULL
2019 Admin For Children’s Svcs Admin Contract Specialist 133499.37500 1.067995e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.067995e+06 1.067995e+06 0.00 NULL
2019 Admin For Children’s Svcs Administrative Architect 131360.50000 2.627210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.627210e+05 2.627210e+05 0.00 NULL
2019 Admin For Children’s Svcs Administrative Business Promotion Coordinator 108879.83333 6.532790e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.532790e+05 6.532790e+05 0.00 NULL
2019 Admin For Children’s Svcs Administrative Construction Project Manager 127613.00000 1.276130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.276130e+05 1.276130e+05 0.00 NULL
2019 Admin For Children’s Svcs Administrative Contract Specialist 101620.33333 9.145830e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.145830e+05 9.145830e+05 0.00 NULL
2019 Admin For Children’s Svcs Administrative Director Of Residential Child Care 89072.30000 2.672169e+06 185488.93 6.182964e+03 255.275 3029.75 30 2.552750e+02 7658.25 2.857658e+06 2.679827e+06 177830.68 NULL
2019 Admin For Children’s Svcs Administrative Director Of Social Services 103114.17921 2.876886e+07 369082.82 1.322877e+03 0.000 6737.25 279 0.000000e+00 0.00 2.913794e+07 2.876886e+07 369082.82 NULL
2019 Admin For Children’s Svcs Administrative Juvenile Counselor 112550.00000 2.251000e+05 14841.46 7.420730e+03 7420.730 278.75 2 7.420730e+03 14841.46 2.399415e+05 2.399415e+05 0.00 NULL
2019 Admin For Children’s Svcs Administrative Management Auditor 102326.50000 2.046530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.046530e+05 2.046530e+05 0.00 NULL
2019 Admin For Children’s Svcs Administrative Manager 131583.00000 1.315830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.315830e+05 1.315830e+05 0.00 NULL
2019 Admin For Children’s Svcs Administrative Nutritionist 102018.00000 2.040360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.040360e+05 2.040360e+05 0.00 NULL
2019 Admin For Children’s Svcs Administrative Procurement Analyst 79678.42857 5.577490e+05 700.40 1.000571e+02 0.000 76.25 7 0.000000e+00 0.00 5.584494e+05 5.577490e+05 700.40 NULL
2019 Admin For Children’s Svcs Administrative Project Manager 103158.75000 4.126350e+05 37399.78 9.349945e+03 2260.320 494.00 4 2.260320e+03 9041.28 4.500348e+05 4.216763e+05 28358.50 NULL
2019 Admin For Children’s Svcs Administrative Public Health Nurse 125994.50000 5.039780e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.039780e+05 5.039780e+05 0.00 NULL
2019 Admin For Children’s Svcs Administrative Public Information Specialist 123861.60000 6.193080e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.193080e+05 6.193080e+05 0.00 NULL
2019 Admin For Children’s Svcs Administrative Staff Analyst 102473.22059 1.393636e+07 342425.93 2.517838e+03 0.000 5045.00 136 0.000000e+00 0.00 1.427878e+07 1.393636e+07 342425.93 NULL
2019 Admin For Children’s Svcs Agency Attorney 83355.94585 2.308960e+07 1908433.26 6.889651e+03 3813.570 33249.75 277 3.813570e+03 1056358.89 2.499803e+07 2.414596e+07 852074.37 NULL
2019 Admin For Children’s Svcs Agency Attorney Interne 69461.59524 2.917387e+06 136903.01 3.259595e+03 2139.900 3077.00 42 2.139900e+03 89875.80 3.054290e+06 3.007263e+06 47027.21 NULL
2019 Admin For Children’s Svcs Agency Chief Contracting Officer 182516.00000 1.825160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.825160e+05 1.825160e+05 0.00 NULL
2019 Admin For Children’s Svcs Architect 86991.66667 2.609750e+05 71875.82 2.395861e+04 4.000 1121.50 3 4.000000e+00 12.00 3.328508e+05 2.609870e+05 71863.82 NULL
2019 Admin For Children’s Svcs Assistant Architect 63728.00000 6.372800e+04 521.32 5.213200e+02 521.320 8.00 1 5.213200e+02 521.32 6.424932e+04 6.424932e+04 0.00 NULL
2019 Admin For Children’s Svcs Assistant Commissioner 141097.50000 2.821950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.821950e+05 2.821950e+05 0.00 NULL
2019 Admin For Children’s Svcs Assistant Commissioner For Aftercare & Preventive Svcs 116018.00000 1.160180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.160180e+05 1.160180e+05 0.00 NULL
2019 Admin For Children’s Svcs Assistant Commissioner For Facilities Operations 155699.00000 1.556990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.556990e+05 1.556990e+05 0.00 NULL
2019 Admin For Children’s Svcs Assistant Commissioner For Management Acd-Doss 220141.00000 2.201410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.201410e+05 2.201410e+05 0.00 NULL
2019 Admin For Children’s Svcs Assistant Deputy Administrator 114725.00000 1.147250e+05 7949.32 7.949320e+03 7949.320 112.00 1 7.949320e+03 7949.32 1.226743e+05 1.226743e+05 0.00 NULL
2019 Admin For Children’s Svcs Assistant Mechanical Engineer 61000.00000 6.100000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.100000e+04 6.100000e+04 0.00 NULL
2019 Admin For Children’s Svcs Associate Investigator 71975.00000 7.197500e+04 12405.45 1.240545e+04 12405.450 218.75 1 1.240545e+04 12405.45 8.438045e+04 8.438045e+04 0.00 NULL
2019 Admin For Children’s Svcs Associate Juvenile Counselor 63319.50000 1.266390e+05 3.62 1.810000e+00 1.810 0.00 2 1.810000e+00 3.62 1.266426e+05 1.266426e+05 0.00 NULL
2019 Admin For Children’s Svcs Associate Project Manager 81086.00000 1.621720e+05 132334.85 6.616743e+04 66167.425 1779.25 2 6.616743e+04 132334.85 2.945068e+05 2.945068e+05 0.00 NULL
2019 Admin For Children’s Svcs Associate Staff Analyst 80694.15789 6.132756e+06 268211.01 3.529092e+03 0.000 4232.00 76 0.000000e+00 0.00 6.400967e+06 6.132756e+06 268211.01 NULL
2019 Admin For Children’s Svcs Associate Youth Development Specialist 69727.11290 4.323081e+06 1406363.62 2.268328e+04 18250.655 26097.03 62 1.825065e+04 1131540.61 5.729445e+06 5.454622e+06 274823.01 NULL
2019 Admin For Children’s Svcs Asst Commissioner For Non-Secure Detention Juvenile Justice 167269.00000 1.672690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.672690e+05 1.672690e+05 0.00 NULL
2019 Admin For Children’s Svcs Asst Commissioner For Planning & Prg Deve 130288.00000 1.302880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.302880e+05 1.302880e+05 0.00 NULL
2019 Admin For Children’s Svcs Attorney At Law 93855.92308 1.220127e+06 26863.97 2.066459e+03 0.000 425.00 13 0.000000e+00 0.00 1.246991e+06 1.220127e+06 26863.97 NULL
2019 Admin For Children’s Svcs Bookkeeper 46172.60000 2.308630e+05 0.00 0.000000e+00 0.000 3.25 5 0.000000e+00 0.00 2.308630e+05 2.308630e+05 0.00 NULL
2019 Admin For Children’s Svcs Carpenter NA NA 186469.06 6.215635e+04 65046.720 2704.00 3 6.215635e+04 186469.06 NA NA NA NULL
2019 Admin For Children’s Svcs Caseworker 46133.17742 2.860257e+06 77343.42 1.247475e+03 1.455 2477.83 62 1.455000e+00 90.21 2.937600e+06 2.860347e+06 77253.21 NULL
2019 Admin For Children’s Svcs Certified Applications Developer 105694.00000 1.056940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.056940e+05 1.056940e+05 0.00 NULL
2019 Admin For Children’s Svcs Certified Database Administrator 110091.00000 2.201820e+05 2431.02 1.215510e+03 1215.510 36.50 2 1.215510e+03 2431.02 2.226130e+05 2.226130e+05 0.00 NULL
2019 Admin For Children’s Svcs Certified It Administrator 94696.33333 8.522670e+05 29244.44 3.249382e+03 1971.380 464.25 9 1.971380e+03 17742.42 8.815114e+05 8.700094e+05 11502.02 NULL
2019 Admin For Children’s Svcs Certified It Developer 94300.66667 2.829020e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.829020e+05 2.829020e+05 0.00 NULL
2019 Admin For Children’s Svcs Certified Local Area Network Administrator 98667.33333 2.960020e+05 13054.61 4.351537e+03 4601.020 183.75 3 4.351537e+03 13054.61 3.090566e+05 3.090566e+05 0.00 NULL
2019 Admin For Children’s Svcs Chaplain 60955.00000 1.219100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.219100e+05 1.219100e+05 0.00 NULL
2019 Admin For Children’s Svcs Child And Family Specialist 83015.83142 2.166713e+07 1527145.10 5.851131e+03 540.490 26054.00 261 5.404900e+02 141067.89 2.319428e+07 2.180820e+07 1386077.21 NULL
2019 Admin For Children’s Svcs Child Protective Specialist 55089.27427 1.560679e+08 24641891.99 8.698162e+03 5995.600 590946.41 2833 5.995600e+03 16985534.80 1.807098e+08 1.730534e+08 7656357.19 NULL
2019 Admin For Children’s Svcs Child Protective Specialist Supervisor 79496.94419 5.127553e+07 12323808.57 1.910668e+04 16252.330 199037.37 645 1.625233e+04 10482752.85 6.359934e+07 6.175828e+07 1841055.72 NULL
2019 Admin For Children’s Svcs Child Welfare Specialist 57882.48718 1.354450e+07 1457320.05 6.227863e+03 634.165 30941.50 234 6.341650e+02 148394.61 1.500182e+07 1.369290e+07 1308925.44 NULL
2019 Admin For Children’s Svcs Child Welfare Specialist Supervisor 76374.64045 1.359469e+07 832014.60 4.674239e+03 284.980 15271.75 178 2.849800e+02 50726.44 1.442670e+07 1.364541e+07 781288.16 NULL
2019 Admin For Children’s Svcs Children’s Counselor 30294.29030 1.817657e+05 20276.16 3.379360e+03 20.975 590.25 6 2.097500e+01 125.85 2.020419e+05 1.818916e+05 20150.31 NULL
2019 Admin For Children’s Svcs City Custodial Assistant 37986.00000 7.597200e+04 7700.52 3.850260e+03 3850.260 339.75 2 3.850260e+03 7700.52 8.367252e+04 8.367252e+04 0.00 NULL
2019 Admin For Children’s Svcs City Laborer NA NA 334750.14 4.782145e+04 40386.470 6031.00 7 4.038647e+04 282705.29 NA NA NA NULL
2019 Admin For Children’s Svcs City Medical Director 200835.80000 1.004179e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.004179e+06 1.004179e+06 0.00 NULL
2019 Admin For Children’s Svcs City Research Scientist 89851.12500 2.156427e+06 7.78 3.241667e-01 0.000 2.50 24 0.000000e+00 0.00 2.156435e+06 2.156427e+06 7.78 NULL
2019 Admin For Children’s Svcs Clerical Aide 34246.00000 6.849200e+04 941.84 4.709200e+02 470.920 40.00 2 4.709200e+02 941.84 6.943384e+04 6.943384e+04 0.00 NULL
2019 Admin For Children’s Svcs Clerical Associate 41815.29592 8.195798e+06 642380.42 3.277451e+03 26.300 18585.55 196 2.630000e+01 5154.80 8.838178e+06 8.200953e+06 637225.62 NULL
2019 Admin For Children’s Svcs Commissioner Of Children’s Services 236088.00000 2.360880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.360880e+05 2.360880e+05 0.00 NULL
2019 Admin For Children’s Svcs Community Assistant 36774.30202 1.912264e+06 207458.64 3.989589e+03 0.000 7276.50 52 0.000000e+00 0.00 2.119722e+06 1.912264e+06 207458.64 NULL
2019 Admin For Children’s Svcs Community Associate 46604.82726 3.402152e+06 407929.20 5.588071e+03 281.300 11514.21 73 2.813000e+02 20534.90 3.810082e+06 3.422687e+06 387394.30 NULL
2019 Admin For Children’s Svcs Community Coordinator 64711.06424 2.795518e+07 1195118.22 2.766477e+03 0.000 26682.75 432 0.000000e+00 0.00 2.915030e+07 2.795518e+07 1195118.22 NULL
2019 Admin For Children’s Svcs Computer Aide-Non-Spvr 53747.04545 1.182435e+06 12215.20 5.552364e+02 96.370 332.25 22 9.637000e+01 2120.14 1.194650e+06 1.184555e+06 10095.06 NULL
2019 Admin For Children’s Svcs Computer Associate 67687.71429 2.369070e+06 21385.46 6.110131e+02 0.000 487.50 35 0.000000e+00 0.00 2.390455e+06 2.369070e+06 21385.46 NULL
2019 Admin For Children’s Svcs Computer Programmer Analyst 60548.00000 6.054800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.054800e+04 6.054800e+04 0.00 NULL
2019 Admin For Children’s Svcs Computer Service Technician 41703.62500 3.336290e+05 5603.56 7.004450e+02 87.130 119.75 8 8.713000e+01 697.04 3.392326e+05 3.343260e+05 4906.52 NULL
2019 Admin For Children’s Svcs Computer Specialist 98791.37838 3.655281e+06 14740.56 3.983935e+02 0.000 213.00 37 0.000000e+00 0.00 3.670022e+06 3.655281e+06 14740.56 NULL
2019 Admin For Children’s Svcs Computer Systems Manager 111602.56757 4.129295e+06 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 4.129295e+06 4.129295e+06 0.00 NULL
2019 Admin For Children’s Svcs Confidential Agency Investigator 150393.00000 1.503930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503930e+05 1.503930e+05 0.00 NULL
2019 Admin For Children’s Svcs Confidential Strategy Planner 88824.66667 2.664740e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.664740e+05 2.664740e+05 0.00 NULL
2019 Admin For Children’s Svcs Congreg Care Spec - Acs 45202.36364 4.972260e+06 1796144.29 1.632858e+04 9727.845 52901.70 110 9.727845e+03 1070062.95 6.768404e+06 6.042323e+06 726081.34 NULL
2019 Admin For Children’s Svcs Congreg Care Spec- Djj 53688.83333 9.663990e+05 284508.24 1.580601e+04 11465.485 7557.65 18 1.146549e+04 206378.73 1.250907e+06 1.172778e+06 78129.51 NULL
2019 Admin For Children’s Svcs Construction Project Manager 90018.22222 8.101640e+05 383582.32 4.262026e+04 28184.840 4919.50 9 2.818484e+04 253663.56 1.193746e+06 1.063828e+06 129918.76 NULL
2019 Admin For Children’s Svcs Consultant 74911.85714 1.048766e+06 2.92 2.085714e-01 0.000 0.00 14 0.000000e+00 0.00 1.048769e+06 1.048766e+06 2.92 NULL
2019 Admin For Children’s Svcs Contract Specialist 45454.00000 4.545400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.545400e+04 4.545400e+04 0.00 NULL
2019 Admin For Children’s Svcs Cook 38378.18182 4.221600e+05 38197.24 3.472476e+03 1810.150 1555.75 11 1.810150e+03 19911.65 4.603572e+05 4.420717e+05 18285.59 NULL
2019 Admin For Children’s Svcs Custodial Assistant 40149.00000 4.014900e+04 3944.31 3.944310e+03 3944.310 81.50 1 3.944310e+03 3944.31 4.409331e+04 4.409331e+04 0.00 NULL
2019 Admin For Children’s Svcs Custodian 41325.25000 3.306020e+05 79707.96 9.963495e+03 3458.015 2941.00 8 3.458015e+03 27664.12 4.103100e+05 3.582661e+05 52043.84 NULL
2019 Admin For Children’s Svcs Deputy Asst Commissioner For Program Dev & Anal 198197.00000 1.981970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.981970e+05 1.981970e+05 0.00 NULL
2019 Admin For Children’s Svcs Deputy Commissioner 193151.16667 1.158907e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.158907e+06 1.158907e+06 0.00 NULL
2019 Admin For Children’s Svcs Deputy Director Of Administration 154098.50000 3.081970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.081970e+05 3.081970e+05 0.00 NULL
2019 Admin For Children’s Svcs Deputy General Counsel 167883.00000 1.678830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.678830e+05 1.678830e+05 0.00 NULL
2019 Admin For Children’s Svcs Deputy Superintendent 82899.00000 5.802930e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.802930e+05 5.802930e+05 0.00 NULL
2019 Admin For Children’s Svcs Director Of Advocacy 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2019 Admin For Children’s Svcs Director Of Field Operations 104695.77617 2.900073e+07 294883.54 1.064562e+03 0.000 3871.75 277 0.000000e+00 0.00 2.929561e+07 2.900073e+07 294883.54 NULL
2019 Admin For Children’s Svcs Director Of Program Planning 129207.00000 1.292070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.292070e+05 1.292070e+05 0.00 NULL
2019 Admin For Children’s Svcs Director Of Public Information 166872.00000 1.668720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.668720e+05 1.668720e+05 0.00 NULL
2019 Admin For Children’s Svcs Director Of Security 117853.00000 1.178530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.178530e+05 1.178530e+05 0.00 NULL
2019 Admin For Children’s Svcs Electrician NA NA 105916.07 5.295804e+04 52958.035 1364.50 2 5.295804e+04 105916.07 NA NA NA NULL
2019 Admin For Children’s Svcs Eligibility Specialist 49496.50000 9.899300e+04 6366.33 3.183165e+03 3183.165 131.75 2 3.183165e+03 6366.33 1.053593e+05 1.053593e+05 0.00 NULL
2019 Admin For Children’s Svcs Exec Asst To The Deputy Commissioner 146750.00000 1.467500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.467500e+05 1.467500e+05 0.00 NULL
2019 Admin For Children’s Svcs Executive Agency Counsel 133231.04348 9.192942e+06 17690.36 2.563820e+02 0.000 228.50 69 0.000000e+00 0.00 9.210632e+06 9.192942e+06 17690.36 NULL
2019 Admin For Children’s Svcs Executive Assistant 130369.00000 1.303690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.303690e+05 1.303690e+05 0.00 NULL
2019 Admin For Children’s Svcs Executive Assistant To The Executive Deputy Adm 133659.50000 2.673190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.673190e+05 2.673190e+05 0.00 NULL
2019 Admin For Children’s Svcs Executive Deputy Administrator 225945.00000 2.259450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.259450e+05 2.259450e+05 0.00 NULL
2019 Admin For Children’s Svcs Food Service Manager 74252.00000 7.425200e+04 1473.70 1.473700e+03 1473.700 24.00 1 1.473700e+03 1473.70 7.572570e+04 7.572570e+04 0.00 NULL
2019 Admin For Children’s Svcs Graphic Artist 65184.50000 1.303690e+05 2622.53 1.311265e+03 1311.265 66.75 2 1.311265e+03 2622.53 1.329915e+05 1.329915e+05 0.00 NULL
2019 Admin For Children’s Svcs Home Aide 35229.00000 3.522900e+04 12541.54 1.254154e+04 12541.540 498.75 1 1.254154e+04 12541.54 4.777054e+04 4.777054e+04 0.00 NULL
2019 Admin For Children’s Svcs Homemaker 36527.40000 1.826370e+05 7135.04 1.427008e+03 1502.480 292.25 5 1.427008e+03 7135.04 1.897720e+05 1.897720e+05 0.00 NULL
2019 Admin For Children’s Svcs Institutional Aide 38034.08511 1.787602e+06 283892.71 6.040270e+03 2549.380 10409.00 47 2.549380e+03 119820.86 2.071495e+06 1.907423e+06 164071.85 NULL
2019 Admin For Children’s Svcs Investigator 72905.25000 2.916210e+05 25711.04 6.427760e+03 0.000 585.00 4 0.000000e+00 0.00 3.173320e+05 2.916210e+05 25711.04 NULL
2019 Admin For Children’s Svcs Juvenile Counselor 42816.57576 1.412947e+06 3661.89 1.109664e+02 10.130 79.00 33 1.013000e+01 334.29 1.416609e+06 1.413281e+06 3327.60 NULL
2019 Admin For Children’s Svcs Maintenance Worker 8066.46050 1.613292e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.613292e+04 1.613292e+04 0.00 NULL
2019 Admin For Children’s Svcs Management Auditor 76932.50000 3.077300e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.077300e+05 3.077300e+05 0.00 NULL
2019 Admin For Children’s Svcs Motor Vehicle Operator 46856.94737 8.902820e+05 566734.37 2.982812e+04 27239.990 16366.95 19 2.723999e+04 517559.81 1.457016e+06 1.407842e+06 49174.56 NULL
2019 Admin For Children’s Svcs Motor Vehicle Supervisor 56334.00000 1.126680e+05 30955.52 1.547776e+04 15477.760 740.25 2 1.547776e+04 30955.52 1.436235e+05 1.436235e+05 0.00 NULL
2019 Admin For Children’s Svcs Office Machine Aide 37210.50000 7.442100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.442100e+04 7.442100e+04 0.00 NULL
2019 Admin For Children’s Svcs Ombudsman 67857.00000 6.785700e+04 306.70 3.067000e+02 306.700 6.00 1 3.067000e+02 306.70 6.816370e+04 6.816370e+04 0.00 NULL
2019 Admin For Children’s Svcs Painter NA NA 237765.10 7.925503e+04 96942.610 3833.00 3 7.925503e+04 237765.10 NA NA NA NULL
2019 Admin For Children’s Svcs Paralegal Aide 44380.28571 9.319860e+05 1700.43 8.097286e+01 0.000 59.50 21 0.000000e+00 0.00 9.336864e+05 9.319860e+05 1700.43 NULL
2019 Admin For Children’s Svcs Plumber NA NA 219070.67 3.651178e+04 29680.105 2198.75 6 2.968010e+04 178080.63 NA NA NA NULL
2019 Admin For Children’s Svcs Principal Administrative Associate - Lev 1 & 2 Non Supvr 56557.46766 1.447871e+07 703742.65 2.748995e+03 0.000 16929.75 256 0.000000e+00 0.00 1.518245e+07 1.447871e+07 703742.65 NULL
2019 Admin For Children’s Svcs Procurement Analyst 66546.22222 5.989160e+05 47.21 5.245556e+00 0.000 10.75 9 0.000000e+00 0.00 5.989632e+05 5.989160e+05 47.21 NULL
2019 Admin For Children’s Svcs Program Coordinator 85001.00000 8.500100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.500100e+04 8.500100e+04 0.00 NULL
2019 Admin For Children’s Svcs Program Evaluator 77486.65169 6.896312e+06 308946.99 3.471314e+03 0.000 5352.50 89 0.000000e+00 0.00 7.205259e+06 6.896312e+06 308946.99 NULL
2019 Admin For Children’s Svcs Protection Agent 66341.69613 1.200785e+07 876146.54 4.840589e+03 495.190 17231.19 181 4.951900e+02 89629.39 1.288399e+07 1.209748e+07 786517.15 NULL
2019 Admin For Children’s Svcs Recreation Supervisor 57543.00000 5.754300e+04 24560.53 2.456053e+04 24560.530 539.75 1 2.456053e+04 24560.53 8.210353e+04 8.210353e+04 0.00 NULL
2019 Admin For Children’s Svcs Research Assistant 54958.60000 2.747930e+05 50128.56 1.002571e+04 11402.400 1189.50 5 1.002571e+04 50128.56 3.249216e+05 3.249216e+05 0.00 NULL
2019 Admin For Children’s Svcs Secretary 44982.08333 5.397850e+05 22745.21 1.895434e+03 0.000 702.25 12 0.000000e+00 0.00 5.625302e+05 5.397850e+05 22745.21 NULL
2019 Admin For Children’s Svcs Secretary Of Comm 82909.00000 8.290900e+04 4.75 4.750000e+00 4.750 0.00 1 4.750000e+00 4.75 8.291375e+04 8.291375e+04 0.00 NULL
2019 Admin For Children’s Svcs Senior Cook 41864.83333 2.511890e+05 58998.54 9.833090e+03 8369.870 1983.25 6 8.369870e+03 50219.22 3.101875e+05 3.014082e+05 8779.32 NULL
2019 Admin For Children’s Svcs Sheet Metal Worker NA NA 88861.08 8.886108e+04 88861.080 871.50 1 8.886108e+04 88861.08 NA NA NA NULL
2019 Admin For Children’s Svcs Space Analyst 83090.33333 4.985420e+05 104379.96 1.739666e+04 10389.955 1861.75 6 1.038995e+04 62339.73 6.029220e+05 5.608817e+05 42040.23 NULL
2019 Admin For Children’s Svcs Special Assistant To The Human Resources Administrator 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2019 Admin For Children’s Svcs Special Officer 41773.95775 2.965951e+06 722820.58 1.018057e+04 8257.250 22801.53 71 8.257250e+03 586264.75 3.688772e+06 3.552216e+06 136555.83 NULL
2019 Admin For Children’s Svcs Staff Analyst 62284.69388 3.051950e+06 149468.28 3.050373e+03 0.000 2928.75 49 0.000000e+00 0.00 3.201418e+06 3.051950e+06 149468.28 NULL
2019 Admin For Children’s Svcs Staff Nurse 78965.68421 1.500348e+06 12420.04 6.536863e+02 0.000 208.75 19 0.000000e+00 0.00 1.512768e+06 1.500348e+06 12420.04 NULL
2019 Admin For Children’s Svcs Stock Worker 35190.00000 1.407600e+05 15599.02 3.899755e+03 2927.945 681.50 4 2.927945e+03 11711.78 1.563590e+05 1.524718e+05 3887.24 NULL
2019 Admin For Children’s Svcs Strategic Initiative Specialist 104367.33333 6.262040e+05 22287.31 3.714552e+03 290.775 368.00 6 2.907750e+02 1744.65 6.484913e+05 6.279487e+05 20542.66 NULL
2019 Admin For Children’s Svcs Summer College Intern 3612.07407 9.752600e+04 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 9.752600e+04 9.752600e+04 0.00 NULL
2019 Admin For Children’s Svcs Summer Graduate Intern 6190.56375 2.476226e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.476226e+04 2.476226e+04 0.00 NULL
2019 Admin For Children’s Svcs Superintendent 113432.00000 2.268640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.268640e+05 2.268640e+05 0.00 NULL
2019 Admin For Children’s Svcs Supervising Computer Service Technician 69037.60000 3.451880e+05 9524.92 1.904984e+03 709.050 109.25 5 7.090500e+02 3545.25 3.547129e+05 3.487332e+05 5979.67 NULL
2019 Admin For Children’s Svcs Supervising Special Officer 53508.59259 1.444732e+06 407008.61 1.507439e+04 10088.300 10641.75 27 1.008830e+04 272384.10 1.851741e+06 1.717116e+06 134624.51 NULL
2019 Admin For Children’s Svcs Supervisor I 59956.44444 1.079216e+06 32279.56 1.793309e+03 0.000 658.00 18 0.000000e+00 0.00 1.111496e+06 1.079216e+06 32279.56 NULL
2019 Admin For Children’s Svcs Supervisor I Social Work 65977.52941 1.121618e+06 12027.56 7.075035e+02 0.000 291.50 17 0.000000e+00 0.00 1.133646e+06 1.121618e+06 12027.56 NULL
2019 Admin For Children’s Svcs Supervisor Ii 68610.64516 2.126930e+06 74260.91 2.395513e+03 24.940 1270.00 31 2.494000e+01 773.14 2.201191e+06 2.127703e+06 73487.77 NULL
2019 Admin For Children’s Svcs Supervisor Ii Social Work 74183.00000 1.483660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.483660e+05 1.483660e+05 0.00 NULL
2019 Admin For Children’s Svcs Supervisor Iii 76831.70000 7.683170e+05 120756.52 1.207565e+04 77.125 2042.00 10 7.712500e+01 771.25 8.890735e+05 7.690882e+05 119985.27 NULL
2019 Admin For Children’s Svcs Supervisor Of Child Care 66784.57143 4.674920e+05 165522.13 2.364602e+04 18396.140 3433.50 7 1.839614e+04 128772.98 6.330141e+05 5.962650e+05 36749.15 NULL
2019 Admin For Children’s Svcs Supervisor Of Mechanical Installations & Maintenance 86107.33333 2.583220e+05 95860.83 3.195361e+04 9896.590 1281.75 3 9.896590e+03 29689.77 3.541828e+05 2.880118e+05 66171.06 NULL
2019 Admin For Children’s Svcs Supervisor Of Mechanics NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2019 Admin For Children’s Svcs Supervisor Of Nurses 88591.54545 9.745070e+05 1477.92 1.343564e+02 0.000 24.00 11 0.000000e+00 0.00 9.759849e+05 9.745070e+05 1477.92 NULL
2019 Admin For Children’s Svcs Telecommunications Associate 73438.81818 8.078270e+05 89351.30 8.122845e+03 4556.740 1459.25 11 4.556740e+03 50124.14 8.971783e+05 8.579511e+05 39227.16 NULL
2019 Admin For Children’s Svcs Youth Development Specialist 47998.94157 2.875137e+07 3120064.12 5.208788e+03 1266.330 78787.78 599 1.266330e+03 758531.67 3.187143e+07 2.950990e+07 2361532.45 NULL
2019 Admin Trials And Hearings Adm Manager-Non-Mgrl From M1/M2 70443.92857 9.862150e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 9.862150e+05 9.862150e+05 0.00 NULL
2019 Admin Trials And Hearings Admin Community Relations Specialist 93319.80000 4.665990e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.665990e+05 4.665990e+05 0.00 NULL
2019 Admin Trials And Hearings Admin Contract Specialist 88000.00000 8.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.800000e+04 8.800000e+04 0.00 NULL
2019 Admin Trials And Hearings Administrative Accountant 99080.00000 9.908000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.908000e+04 9.908000e+04 0.00 NULL
2019 Admin Trials And Hearings Administrative Community Relations Specialist 99099.00000 9.909900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.909900e+04 9.909900e+04 0.00 NULL
2019 Admin Trials And Hearings Administrative Contract Specialist 67792.00000 6.779200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.779200e+04 6.779200e+04 0.00 NULL
2019 Admin Trials And Hearings Administrative Labor Relations Analyst 93866.00000 9.386600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.386600e+04 9.386600e+04 0.00 NULL
2019 Admin Trials And Hearings Administrative Law Judge 159787.00000 1.917444e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.917444e+06 1.917444e+06 0.00 NULL
2019 Admin Trials And Hearings Administrative Procurement Analyst 92025.00000 9.202500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.202500e+04 9.202500e+04 0.00 NULL
2019 Admin Trials And Hearings Administrative Public Information Specialist 167915.00000 1.679150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.679150e+05 1.679150e+05 0.00 NULL
2019 Admin Trials And Hearings Administrative Space Analyst 118086.00000 1.180860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.180860e+05 1.180860e+05 0.00 NULL
2019 Admin Trials And Hearings Administrative Staff Analyst 125516.42857 8.786150e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.786150e+05 8.786150e+05 0.00 NULL
2019 Admin Trials And Hearings Agency Attorney 88553.97297 3.276497e+06 4.52 1.221622e-01 0.000 0.00 37 0.000000e+00 0.00 3.276502e+06 3.276497e+06 4.52 NULL
2019 Admin Trials And Hearings Agency Attorney Interne 39742.29000 3.974229e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.974229e+04 3.974229e+04 0.00 NULL
2019 Admin Trials And Hearings Agency Chief Contracting Officer 127240.00000 1.272400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.272400e+05 1.272400e+05 0.00 NULL
2019 Admin Trials And Hearings Associate Public Information Specialist 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2019 Admin Trials And Hearings Associate Staff Analyst 77766.00000 2.332980e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.332980e+05 2.332980e+05 0.00 NULL
2019 Admin Trials And Hearings Attorney At Law 92485.33333 2.774560e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.774560e+05 2.774560e+05 0.00 NULL
2019 Admin Trials And Hearings Bookkeeper 49349.75000 1.973990e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.973990e+05 1.973990e+05 0.00 NULL
2019 Admin Trials And Hearings Certified It Administrator 91499.00000 9.149900e+04 73.33 7.333000e+01 73.330 0.00 1 7.333000e+01 73.33 9.157233e+04 9.157233e+04 0.00 NULL
2019 Admin Trials And Hearings Certified It Developer 120508.00000 1.205080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.205080e+05 1.205080e+05 0.00 NULL
2019 Admin Trials And Hearings Chief Administrative Law Judge 221151.00000 2.211510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.211510e+05 2.211510e+05 0.00 NULL
2019 Admin Trials And Hearings City Laborer NA NA 297.90 1.489500e+02 148.950 5.50 2 1.489500e+02 297.90 NA NA NA NULL
2019 Admin Trials And Hearings Clerical Aide 33698.86250 1.347955e+05 1352.48 3.381200e+02 0.000 76.00 4 0.000000e+00 0.00 1.361479e+05 1.347955e+05 1352.48 NULL
2019 Admin Trials And Hearings Clerical Associate 41734.25311 1.878041e+06 12.44 2.764444e-01 0.000 0.00 45 0.000000e+00 0.00 1.878054e+06 1.878041e+06 12.44 NULL
2019 Admin Trials And Hearings College Aide 10309.30625 1.030931e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.030931e+05 1.030931e+05 0.00 NULL
2019 Admin Trials And Hearings Community Assistant 30773.18972 9.231957e+05 1.00 3.333330e-02 0.000 0.00 30 0.000000e+00 0.00 9.231967e+05 9.231957e+05 1.00 NULL
2019 Admin Trials And Hearings Community Associate 43150.04005 2.804753e+06 38975.11 5.996171e+02 0.000 1130.00 65 0.000000e+00 0.00 2.843728e+06 2.804753e+06 38975.11 NULL
2019 Admin Trials And Hearings Community Coordinator 64331.96000 3.216598e+06 4715.94 9.431880e+01 0.000 123.50 50 0.000000e+00 0.00 3.221314e+06 3.216598e+06 4715.94 NULL
2019 Admin Trials And Hearings Community Service Aide 19871.11721 1.132654e+06 1772.66 3.109930e+01 0.000 94.25 57 0.000000e+00 0.00 1.134426e+06 1.132654e+06 1772.66 NULL
2019 Admin Trials And Hearings Computer Associate 69947.00000 2.797880e+05 4009.75 1.002438e+03 0.000 54.00 4 0.000000e+00 0.00 2.837978e+05 2.797880e+05 4009.75 NULL
2019 Admin Trials And Hearings Computer Specialist 101706.25000 4.068250e+05 5.84 1.460000e+00 0.000 0.00 4 0.000000e+00 0.00 4.068308e+05 4.068250e+05 5.84 NULL
2019 Admin Trials And Hearings Computer Systems Manager 153397.40000 7.669870e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.669870e+05 7.669870e+05 0.00 NULL
2019 Admin Trials And Hearings Confidential Secretary Of Administrative Law Judge 57327.66667 1.719830e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.719830e+05 1.719830e+05 0.00 NULL
2019 Admin Trials And Hearings Customer Information Representative Ma L 1549 37183.23000 1.487329e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.487329e+05 1.487329e+05 0.00 NULL
2019 Admin Trials And Hearings Executive Agency Counsel 120589.84375 3.858875e+06 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 3.858875e+06 3.858875e+06 0.00 NULL
2019 Admin Trials And Hearings Executive Assistant To The Chief Administrative Law Judge 146013.00000 1.460130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.460130e+05 1.460130e+05 0.00 NULL
2019 Admin Trials And Hearings Hearing Officer 36020.38542 1.170663e+07 0.00 0.000000e+00 0.000 0.00 325 0.000000e+00 0.00 1.170663e+07 1.170663e+07 0.00 NULL
2019 Admin Trials And Hearings Maintenance Worker NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2019 Admin Trials And Hearings Member Of The Environmental Control Board - Oath 28.89150 1.155660e+02 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.155660e+02 1.155660e+02 0.00 NULL
2019 Admin Trials And Hearings Principal Administrative Associate - Lev 1 & 2 Non Supvr 58805.50000 7.056660e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.056660e+05 7.056660e+05 0.00 NULL
2019 Admin Trials And Hearings Procurement Analyst 64821.00000 6.482100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.482100e+04 6.482100e+04 0.00 NULL
2019 Admin Trials And Hearings Public Records Aide 41340.37500 3.307230e+05 20.24 2.530000e+00 0.000 0.00 8 0.000000e+00 0.00 3.307432e+05 3.307230e+05 20.24 NULL
2019 Admin Trials And Hearings Secretary 42651.33333 1.279540e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.279540e+05 1.279540e+05 0.00 NULL
2019 Admin Trials And Hearings Staff Analyst 59079.00000 5.907900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.907900e+04 5.907900e+04 0.00 NULL
2019 Board Of Correction Administrative Public Information Specialist 81350.00000 8.135000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.135000e+04 8.135000e+04 0.00 NULL
2019 Board Of Correction City Research Scientist 83509.66667 5.010580e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.010580e+05 5.010580e+05 0.00 NULL
2019 Board Of Correction Community Coordinator 55546.00000 3.888220e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.888220e+05 3.888220e+05 0.00 NULL
2019 Board Of Correction Computer Specialist 118499.00000 1.184990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.184990e+05 1.184990e+05 0.00 NULL
2019 Board Of Correction Computer Systems Manager 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2019 Board Of Correction Correctional Standards Review Specialist 64928.30769 8.440680e+05 4.85 3.730769e-01 0.000 0.00 13 0.000000e+00 0.00 8.440728e+05 8.440680e+05 4.85 NULL
2019 Board Of Correction Counsel 166507.00000 1.665070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.665070e+05 1.665070e+05 0.00 NULL
2019 Board Of Correction Deputy Executive Director 160099.00000 1.600990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600990e+05 1.600990e+05 0.00 NULL
2019 Board Of Correction Director Of Correctional Standards Review 89694.00000 1.793880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.793880e+05 1.793880e+05 0.00 NULL
2019 Board Of Correction Executive Agency Counsel 125154.00000 1.251540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.251540e+05 1.251540e+05 0.00 NULL
2019 Board Of Correction Executive Director 176175.00000 1.761750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.761750e+05 1.761750e+05 0.00 NULL
2019 Board Of Correction Secretary 55738.00000 5.573800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.573800e+04 5.573800e+04 0.00 NULL
2019 Board Of Correction Secretary To The Board Of Correction 65706.00000 6.570600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.570600e+04 6.570600e+04 0.00 NULL
2019 Board Of Election Administrative Assistant 52324.33333 4.081298e+06 1191893.40 1.528068e+04 10755.235 29241.50 78 1.075524e+04 838908.33 5.273191e+06 4.920206e+06 352985.07 NULL
2019 Board Of Election Administrative Associate 65763.22581 4.077320e+06 1489401.11 2.402260e+04 18115.090 28633.50 62 1.811509e+04 1123135.58 5.566721e+06 5.200456e+06 366265.53 NULL
2019 Board Of Election Administrative Manager 177452.00000 3.549040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.549040e+05 3.549040e+05 0.00 NULL
2019 Board Of Election Assistance Finance Officer 68629.33333 2.058880e+05 31881.68 1.062723e+04 9019.710 642.25 3 9.019710e+03 27059.13 2.377697e+05 2.329471e+05 4822.55 NULL
2019 Board Of Election Associate Staff Analyst 89570.54545 9.852760e+05 384580.86 3.496190e+04 31319.020 5607.75 11 3.131902e+04 344509.22 1.369857e+06 1.329785e+06 40071.64 NULL
2019 Board Of Election Chief Clerk 139074.42857 9.735210e+05 44.60 6.371429e+00 0.000 0.00 7 0.000000e+00 0.00 9.735656e+05 9.735210e+05 44.60 NULL
2019 Board Of Election Clerk To The Board 37021.34193 3.998305e+06 1166430.80 1.080029e+04 10308.650 41377.42 108 1.030865e+04 1113334.20 5.164736e+06 5.111639e+06 53096.60 NULL
2019 Board Of Election Commissioner 22615.38462 2.940000e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 2.940000e+05 2.940000e+05 0.00 NULL
2019 Board Of Election Computer Operator 48087.00000 1.442610e+05 41074.15 1.369138e+04 20424.690 1121.75 3 1.369138e+04 41074.15 1.853351e+05 1.853351e+05 0.00 NULL
2019 Board Of Election Computer Specialist 123913.20000 6.195660e+05 199015.32 3.980306e+04 17946.950 3537.50 5 1.794695e+04 89734.75 8.185813e+05 7.093008e+05 109280.57 NULL
2019 Board Of Election Computer System Manager 134814.00000 4.044420e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.044420e+05 4.044420e+05 0.00 NULL
2019 Board Of Election Coordinator, Election Day Operations 112803.00000 1.128030e+05 13254.68 1.325468e+04 13254.680 172.00 1 1.325468e+04 13254.68 1.260577e+05 1.260577e+05 0.00 NULL
2019 Board Of Election Coordinator, Voter Registration Activities 98152.00000 9.815200e+04 29618.88 2.961888e+04 29618.880 398.50 1 2.961888e+04 29618.88 1.277709e+05 1.277709e+05 0.00 NULL
2019 Board Of Election Counsel 175843.50000 3.516870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.516870e+05 3.516870e+05 0.00 NULL
2019 Board Of Election Counsel To The Board 58957.50000 1.179150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.179150e+05 1.179150e+05 0.00 NULL
2019 Board Of Election Deputy Chief Clerk 138634.00000 8.318040e+05 322.19 5.369833e+01 0.000 0.00 6 0.000000e+00 0.00 8.321262e+05 8.318040e+05 322.19 NULL
2019 Board Of Election Deputy Executive Director 207951.00000 2.079510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.079510e+05 2.079510e+05 0.00 NULL
2019 Board Of Election Director Of Equipment 77468.33333 2.324050e+05 51415.31 1.713844e+04 18425.360 978.25 3 1.713844e+04 51415.31 2.838203e+05 2.838203e+05 0.00 NULL
2019 Board Of Election Director Of Training 95342.50000 1.906850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.906850e+05 1.906850e+05 0.00 NULL
2019 Board Of Election Director, Public Affairs And Communication 121238.00000 1.212380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.212380e+05 1.212380e+05 0.00 NULL
2019 Board Of Election Executive Director 225840.00000 2.258400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.258400e+05 2.258400e+05 0.00 NULL
2019 Board Of Election Finance Officer 120141.00000 1.201410e+05 19882.24 1.988224e+04 19882.240 231.75 1 1.988224e+04 19882.24 1.400232e+05 1.400232e+05 0.00 NULL
2019 Board Of Election Financial Clerk 33537.46365 5.064157e+06 1315695.65 8.713216e+03 7427.830 45461.00 151 7.427830e+03 1121602.33 6.379853e+06 6.185759e+06 194093.32 NULL
2019 Board Of Election Project Coordinator 96312.88235 1.637319e+06 558836.95 3.287276e+04 31106.900 7443.50 17 3.110690e+04 528817.30 2.196156e+06 2.166136e+06 30019.65 NULL
2019 Board Of Election Senior Adminisrator 101620.50000 4.064820e+05 62581.53 1.564538e+04 13850.385 870.97 4 1.385039e+04 55401.54 4.690635e+05 4.618835e+05 7179.99 NULL
2019 Board Of Election Senior Administrative Assistant 75004.27273 8.250470e+05 292298.47 2.657259e+04 23874.820 5089.25 11 2.387482e+04 262623.02 1.117345e+06 1.087670e+06 29675.45 NULL
2019 Board Of Election Senior Computer Programmer 77684.11111 6.991570e+05 276616.60 3.073518e+04 20425.010 5197.50 9 2.042501e+04 183825.09 9.757736e+05 8.829821e+05 92791.51 NULL
2019 Board Of Election Senior Systems Analysts 106472.50000 4.258900e+05 160708.57 4.017714e+04 10616.610 2328.50 4 1.061661e+04 42466.44 5.865986e+05 4.683564e+05 118242.13 NULL
2019 Board Of Election Senior Voting Machine Technician 41999.94545 2.309997e+06 1021248.55 1.856816e+04 16230.970 30989.50 55 1.623097e+04 892703.35 3.331246e+06 3.202700e+06 128545.20 NULL
2019 Board Of Election Stenographic/Secretarial Associate 52760.00000 5.276000e+04 5081.18 5.081180e+03 5081.180 130.00 1 5.081180e+03 5081.18 5.784118e+04 5.784118e+04 0.00 NULL
2019 Board Of Election Temporary Clerk 16678.74737 6.154458e+06 1508597.19 4.088339e+03 2208.990 74633.00 369 2.208990e+03 815117.31 7.663055e+06 6.969575e+06 693479.88 NULL
2019 Board Of Election Trainer Assistant 52230.62748 3.029376e+06 976867.93 1.684255e+04 16347.455 23442.00 58 1.634745e+04 948152.39 4.006244e+06 3.977529e+06 28715.54 NULL
2019 Board Of Election Voting Machine Technician 36191.38158 2.750545e+06 912407.06 1.200536e+04 12088.315 33567.50 76 1.200536e+04 912407.06 3.662952e+06 3.662952e+06 0.00 NULL
2019 Board Of Election Poll Workers Election Trainer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 376 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2019 Board Of Election Poll Workers Election Worker 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 36627 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2019 Borough President-Bronx Administrative Business Promotion Coordinator 120437.00000 1.204370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.204370e+05 1.204370e+05 0.00 NULL
2019 Borough President-Bronx Administrative City Planner 96941.00000 9.694100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.694100e+04 9.694100e+04 0.00 NULL
2019 Borough President-Bronx Administrative Education Officer 111929.00000 1.119290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.119290e+05 1.119290e+05 0.00 NULL
2019 Borough President-Bronx Administrative Manager 80535.00000 8.053500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.053500e+04 8.053500e+04 0.00 NULL
2019 Borough President-Bronx Administrative Staff Analyst 114648.50000 2.292970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.292970e+05 2.292970e+05 0.00 NULL
2019 Borough President-Bronx Assistant To The President 57716.40000 2.885820e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.885820e+05 2.885820e+05 0.00 NULL
2019 Borough President-Bronx Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2019 Borough President-Bronx Clerical Associate 47520.00000 4.752000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.752000e+04 4.752000e+04 0.00 NULL
2019 Borough President-Bronx College Aide 1785.16500 3.570330e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.570330e+03 3.570330e+03 0.00 NULL
2019 Borough President-Bronx Community Assistant 22185.06720 4.437013e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.437013e+04 4.437013e+04 0.00 NULL
2019 Borough President-Bronx Community Associate 51732.17647 8.794470e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 8.794470e+05 8.794470e+05 0.00 NULL
2019 Borough President-Bronx Community Coordinator 67647.33786 9.470627e+05 57072.16 4.076583e+03 0.000 964.75 14 0.000000e+00 0.00 1.004135e+06 9.470627e+05 57072.16 NULL
2019 Borough President-Bronx Computer Systems Manager 80070.00000 8.007000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.007000e+04 8.007000e+04 0.00 NULL
2019 Borough President-Bronx Counsel To The Borough President 130369.00000 1.303690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.303690e+05 1.303690e+05 0.00 NULL
2019 Borough President-Bronx Deputy Borough President 161657.00000 1.616570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.616570e+05 1.616570e+05 0.00 NULL
2019 Borough President-Bronx Director Of Community Planning Boards 117266.00000 1.172660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.172660e+05 1.172660e+05 0.00 NULL
2019 Borough President-Bronx Executive Assistant 178741.00000 1.787410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.787410e+05 1.787410e+05 0.00 NULL
2019 Borough President-Bronx Principal Administrative Associate - Lev 1 & 2 Non Supvr 61517.00000 6.151700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.151700e+04 6.151700e+04 0.00 NULL
2019 Borough President-Bronx Public Information Officer 109442.00000 1.094420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.094420e+05 1.094420e+05 0.00 NULL
2019 Borough President-Bronx Research And Liaison Coordinator 70628.00000 7.062800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.062800e+04 7.062800e+04 0.00 NULL
2019 Borough President-Bronx Research Liaison Adn Governmental Coordinator 97040.00000 1.940800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.940800e+05 1.940800e+05 0.00 NULL
2019 Borough President-Bronx Secretary To Assistant To President 102170.00000 1.021700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.021700e+05 1.021700e+05 0.00 NULL
2019 Borough President-Bronx Secretary To The Deputy Boro President 79235.00000 7.923500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.923500e+04 7.923500e+04 0.00 NULL
2019 Borough President-Bronx Secretary To The Excutive Assistant 79358.00000 7.935800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.935800e+04 7.935800e+04 0.00 NULL
2019 Borough President-Bronx Secretary To The President 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2019 Borough President-Bronx Special Assistant To The Borough President 89641.50000 3.585660e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.585660e+05 3.585660e+05 0.00 NULL
2019 Borough President-Brooklyn Administrative Engineer 31537.50000 3.153750e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.153750e+04 3.153750e+04 0.00 NULL
2019 Borough President-Brooklyn Administrative Housing Development Specialist 156102.00000 1.561020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.561020e+05 1.561020e+05 0.00 NULL
2019 Borough President-Brooklyn Assistant To The President 85424.62875 1.708493e+06 166.52 8.326000e+00 0.000 4.00 20 0.000000e+00 0.00 1.708659e+06 1.708493e+06 166.52 NULL
2019 Borough President-Brooklyn Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2019 Borough President-Brooklyn Chauffeur-Attendant 83580.00000 8.358000e+04 480.34 4.803400e+02 480.340 8.00 1 4.803400e+02 480.34 8.406034e+04 8.406034e+04 0.00 NULL
2019 Borough President-Brooklyn City Planner 116135.00000 1.161350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.161350e+05 1.161350e+05 0.00 NULL
2019 Borough President-Brooklyn Clerical Associate 58747.00000 1.174940e+05 1537.14 7.685700e+02 768.570 27.75 2 7.685700e+02 1537.14 1.190311e+05 1.190311e+05 0.00 NULL
2019 Borough President-Brooklyn Community Assistant 37894.00000 3.789400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.789400e+04 3.789400e+04 0.00 NULL
2019 Borough President-Brooklyn Community Associate 44155.32180 5.740192e+05 3662.28 2.817138e+02 0.000 74.50 13 0.000000e+00 0.00 5.776815e+05 5.740192e+05 3662.28 NULL
2019 Borough President-Brooklyn Community Coordinator 63907.73905 1.278155e+06 4543.84 2.271920e+02 0.000 101.75 20 0.000000e+00 0.00 1.282699e+06 1.278155e+06 4543.84 NULL
2019 Borough President-Brooklyn Community Service Aide 33721.00000 3.372100e+04 417.42 4.174200e+02 417.420 10.00 1 4.174200e+02 417.42 3.413842e+04 3.413842e+04 0.00 NULL
2019 Borough President-Brooklyn Counsel To The Borough President 34422.76500 3.442276e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.442276e+04 3.442276e+04 0.00 NULL
2019 Borough President-Brooklyn Deputy Borough President 167867.00000 1.678670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.678670e+05 1.678670e+05 0.00 NULL
2019 Borough President-Brooklyn Executive Agency Counsel 151698.00000 1.516980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.516980e+05 1.516980e+05 0.00 NULL
2019 Borough President-Brooklyn Executive Assistant 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2019 Borough President-Brooklyn Principal Administrative Associate - Lev 1 & 2 Non Supvr 72110.50000 1.442210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.442210e+05 1.442210e+05 0.00 NULL
2019 Borough President-Brooklyn Program Producer 80989.00000 8.098900e+04 7748.24 7.748240e+03 7748.240 115.00 1 7.748240e+03 7748.24 8.873724e+04 8.873724e+04 0.00 NULL
2019 Borough President-Brooklyn Public Information Officer 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2019 Borough President-Brooklyn Research & Liaison Coordinator 66190.54075 1.323811e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.323811e+05 1.323811e+05 0.00 NULL
2019 Borough President-Brooklyn Secretary To The President 71525.00000 7.152500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.152500e+04 7.152500e+04 0.00 NULL
2019 Borough President-Brooklyn Special Assistant To The Borough President 106254.00000 1.062540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.062540e+05 1.062540e+05 0.00 NULL
2019 Borough President-Manhattan Adm Manager-Non-Mgrl From M1/M2 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2019 Borough President-Manhattan Admin Contract Specialist 89980.00000 8.998000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.998000e+04 8.998000e+04 0.00 NULL
2019 Borough President-Manhattan Administrative City Planner 75258.75000 3.010350e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.010350e+05 3.010350e+05 0.00 NULL
2019 Borough President-Manhattan Administrative Public Information Specialist 80858.00000 8.085800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.085800e+04 8.085800e+04 0.00 NULL
2019 Borough President-Manhattan Administrative Staff Analyst 111300.00000 1.113000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.113000e+05 1.113000e+05 0.00 NULL
2019 Borough President-Manhattan Assistant To The President 86355.00000 2.590650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.590650e+05 2.590650e+05 0.00 NULL
2019 Borough President-Manhattan Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2019 Borough President-Manhattan Chauffeur Attendant 67964.50000 1.359290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.359290e+05 1.359290e+05 0.00 NULL
2019 Borough President-Manhattan Clerical Associate 55215.00000 5.521500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.521500e+04 5.521500e+04 0.00 NULL
2019 Borough President-Manhattan Community Associate 44599.02333 5.351883e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 5.351883e+05 5.351883e+05 0.00 NULL
2019 Borough President-Manhattan Community Coordinator 60008.11769 1.560211e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 1.560211e+06 1.560211e+06 0.00 NULL
2019 Borough President-Manhattan Community Planning Board Coordinator 54498.33333 4.904850e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.904850e+05 4.904850e+05 0.00 NULL
2019 Borough President-Manhattan Computer Operations Manager 79271.00000 7.927100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.927100e+04 7.927100e+04 0.00 NULL
2019 Borough President-Manhattan Counsel To The Borough President 133252.69000 1.332527e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.332527e+05 1.332527e+05 0.00 NULL
2019 Borough President-Manhattan Deputy Borough President 162311.00000 1.623110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.623110e+05 1.623110e+05 0.00 NULL
2019 Borough President-Manhattan Director Of Community Planning Boards 92331.00000 1.846620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.846620e+05 1.846620e+05 0.00 NULL
2019 Borough President-Manhattan Executive Assistant 151949.50000 3.038990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.038990e+05 3.038990e+05 0.00 NULL
2019 Borough President-Manhattan General Counsel 125900.00000 1.259000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.259000e+05 1.259000e+05 0.00 NULL
2019 Borough President-Manhattan Principal Administrative Associate - Lev 1 & 2 Non Supvr 50763.00000 5.076300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.076300e+04 5.076300e+04 0.00 NULL
2019 Borough President-Manhattan Public Information Officer 110413.50000 2.208270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.208270e+05 2.208270e+05 0.00 NULL
2019 Borough President-Manhattan Public Relations Officer 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2019 Borough President-Manhattan Secretary To The President 93736.50000 1.874730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.874730e+05 1.874730e+05 0.00 NULL
2019 Borough President-Queens Administrative Staff Analyst 109465.00000 1.094650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.094650e+05 1.094650e+05 0.00 NULL
2019 Borough President-Queens Agency Attorney 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2019 Borough President-Queens Assistant Civil Engineer 80349.00000 8.034900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.034900e+04 8.034900e+04 0.00 NULL
2019 Borough President-Queens Assistant To The President 72500.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2019 Borough President-Queens Associate Staff Analyst 80335.00000 8.033500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.033500e+04 8.033500e+04 0.00 NULL
2019 Borough President-Queens Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2019 Borough President-Queens Cashier 34440.00000 3.444000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.444000e+04 3.444000e+04 0.00 NULL
2019 Borough President-Queens Chauffeur-Attendant 76000.00000 1.520000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.520000e+05 1.520000e+05 0.00 NULL
2019 Borough President-Queens City Planner 72848.00000 7.284800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.284800e+04 7.284800e+04 0.00 NULL
2019 Borough President-Queens Community Assistant 25855.50000 5.171100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.171100e+04 5.171100e+04 0.00 NULL
2019 Borough President-Queens Community Associate 52577.82353 8.938230e+05 1172.39 6.896412e+01 0.000 40.60 17 0.000000e+00 0.00 8.949954e+05 8.938230e+05 1172.39 NULL
2019 Borough President-Queens Community Coordinator 66883.28571 9.363660e+05 553.68 3.954857e+01 0.000 0.00 14 0.000000e+00 0.00 9.369197e+05 9.363660e+05 553.68 NULL
2019 Borough President-Queens Computer Systems Manager 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2019 Borough President-Queens Counsel To The Borough President 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2019 Borough President-Queens Deputy Borough President 155000.00000 3.100000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.100000e+05 3.100000e+05 0.00 NULL
2019 Borough President-Queens Director Borough President’s Office Of Administration Queens 118000.00000 1.180000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.180000e+05 1.180000e+05 0.00 NULL
2019 Borough President-Queens Director Of Community Planning Boards 107000.00000 1.070000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.070000e+05 1.070000e+05 0.00 NULL
2019 Borough President-Queens Engineering Technician 66729.00000 1.334580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.334580e+05 1.334580e+05 0.00 NULL
2019 Borough President-Queens Executive Assistant 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2019 Borough President-Queens Fiscal And Policy Analyst 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2019 Borough President-Queens Principal Administrative Associate - Lev 1 & 2 Non Supvr 72699.00000 2.180970e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.180970e+05 2.180970e+05 0.00 NULL
2019 Borough President-Queens Research And Liaison Specialist 67500.00000 2.700000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.700000e+05 2.700000e+05 0.00 NULL
2019 Borough President-Queens Secretary To The President 93000.00000 9.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.300000e+04 9.300000e+04 0.00 NULL
2019 Borough President-Queens Special Assistant To The Borough President 87571.42857 6.130000e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.130000e+05 6.130000e+05 0.00 NULL
2019 Borough President-Staten Is Administrative Architect 147650.00000 1.476500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.476500e+05 1.476500e+05 0.00 NULL
2019 Borough President-Staten Is Assistant To The President 73500.00000 1.470000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.470000e+05 1.470000e+05 0.00 NULL
2019 Borough President-Staten Is Asst Project Planner 49599.74320 4.959974e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.959974e+05 4.959974e+05 0.00 NULL
2019 Borough President-Staten Is Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2019 Borough President-Staten Is Clerical Associate 58673.00000 5.867300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.867300e+04 5.867300e+04 0.00 NULL
2019 Borough President-Staten Is College Aide 2363.52000 2.363520e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.363520e+03 2.363520e+03 0.00 NULL
2019 Borough President-Staten Is Community Associate 57450.66667 1.723520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.723520e+05 1.723520e+05 0.00 NULL
2019 Borough President-Staten Is Community Coordinator 73351.95000 8.802234e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 8.802234e+05 8.802234e+05 0.00 NULL
2019 Borough President-Staten Is Confidential Assistant To Boro President 148000.00000 1.480000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.480000e+05 1.480000e+05 0.00 NULL
2019 Borough President-Staten Is Counsel To The Borough President 69882.81000 6.988281e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.988281e+04 6.988281e+04 0.00 NULL
2019 Borough President-Staten Is Deputy Borough President 148820.00000 1.488200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.488200e+05 1.488200e+05 0.00 NULL
2019 Borough President-Staten Is Engineering Technician 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2019 Borough President-Staten Is Executive Assistant 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2019 Borough President-Staten Is Project Planner 51431.06143 3.600174e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.600174e+05 3.600174e+05 0.00 NULL
2019 Borough President-Staten Is Public Information Officer 123500.00000 1.235000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.235000e+05 1.235000e+05 0.00 NULL
2019 Borough President-Staten Is Secretary 47101.52083 1.413046e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.413046e+05 1.413046e+05 0.00 NULL
2019 Borough President-Staten Is Special Assistant To The Borough President 79378.29333 2.381349e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.381349e+05 2.381349e+05 0.00 NULL
2019 Borough President-Staten Is Staff Analyst 67137.00000 6.713700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.713700e+04 6.713700e+04 0.00 NULL
2019 Borough President-Staten Is Summer Graduate Intern 864.00000 8.640000e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.640000e+02 8.640000e+02 0.00 NULL
2019 Borough President-Staten Is Surveyor 97637.00000 9.763700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.763700e+04 9.763700e+04 0.00 NULL
2019 Bronx Community Board #1 Community Coordinator 81583.00000 8.158300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.158300e+04 8.158300e+04 0.00 NULL
2019 Bronx Community Board #1 District Manager 140964.00000 1.409640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.409640e+05 1.409640e+05 0.00 NULL
2019 Bronx Community Board #10 Clerical Associate 25329.24000 5.065848e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.065848e+04 5.065848e+04 0.00 NULL
2019 Bronx Community Board #10 Community Assistant 14758.91200 2.951782e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.951782e+04 2.951782e+04 0.00 NULL
2019 Bronx Community Board #10 Community Associate 45096.00000 4.509600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.509600e+04 4.509600e+04 0.00 NULL
2019 Bronx Community Board #10 District Manager 78400.00000 7.840000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.840000e+04 7.840000e+04 0.00 NULL
2019 Bronx Community Board #11 Administrative Business Promotion Coordinator 12991.45250 1.299145e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.299145e+04 1.299145e+04 0.00 NULL
2019 Bronx Community Board #11 Community Coordinator 67552.00000 1.351040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.351040e+05 1.351040e+05 0.00 NULL
2019 Bronx Community Board #11 District Manager 89754.00000 8.975400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.975400e+04 8.975400e+04 0.00 NULL
2019 Bronx Community Board #12 Community Coordinator 81535.00000 8.153500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.153500e+04 8.153500e+04 0.00 NULL
2019 Bronx Community Board #12 District Manager 125892.00000 1.258920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.258920e+05 1.258920e+05 0.00 NULL
2019 Bronx Community Board #2 Community Assistant 15195.85000 4.558755e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.558755e+04 4.558755e+04 0.00 NULL
2019 Bronx Community Board #2 Community Coordinator 62300.00000 6.230000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.230000e+04 6.230000e+04 0.00 NULL
2019 Bronx Community Board #2 District Manager 121948.00000 1.219480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.219480e+05 1.219480e+05 0.00 NULL
2019 Bronx Community Board #3 District Manager 136345.00000 1.363450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.363450e+05 1.363450e+05 0.00 NULL
2019 Bronx Community Board #3 Principal Administrative Associate - Lev 1 & 2 Non Supvr 83500.00000 8.350000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.350000e+04 8.350000e+04 0.00 NULL
2019 Bronx Community Board #4 Community Associate 59594.50000 1.191890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.191890e+05 1.191890e+05 0.00 NULL
2019 Bronx Community Board #4 District Manager 97136.00000 9.713600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.713600e+04 9.713600e+04 0.00 NULL
2019 Bronx Community Board #5 Community Assistant 31573.00000 3.157300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.157300e+04 3.157300e+04 0.00 NULL
2019 Bronx Community Board #5 Community Coordinator 60403.00000 6.040300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.040300e+04 6.040300e+04 0.00 NULL
2019 Bronx Community Board #5 District Manager 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2019 Bronx Community Board #6 Community Associate 41626.94400 8.325389e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.325389e+04 8.325389e+04 0.00 NULL
2019 Bronx Community Board #6 District Manager 114539.00000 1.145390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.145390e+05 1.145390e+05 0.00 NULL
2019 Bronx Community Board #7 Community Associate 42799.00000 4.279900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.279900e+04 4.279900e+04 0.00 NULL
2019 Bronx Community Board #7 Community Coordinator 60403.00000 6.040300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.040300e+04 6.040300e+04 0.00 NULL
2019 Bronx Community Board #7 District Manager 85271.00000 8.527100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.527100e+04 8.527100e+04 0.00 NULL
2019 Bronx Community Board #8 Community Associate 48269.66667 1.448090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.448090e+05 1.448090e+05 0.00 NULL
2019 Bronx Community Board #8 District Manager 76688.00000 7.668800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.668800e+04 7.668800e+04 0.00 NULL
2019 Bronx Community Board #9 Assistant District Manager 60742.00000 6.074200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.074200e+04 6.074200e+04 0.00 NULL
2019 Bronx Community Board #9 College Aide 6175.96875 1.235194e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.235194e+04 1.235194e+04 0.00 NULL
2019 Bronx Community Board #9 Community Service Aide 34238.00000 3.423800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.423800e+04 3.423800e+04 0.00 NULL
2019 Bronx Community Board #9 District Manager 116810.00000 1.168100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.168100e+05 1.168100e+05 0.00 NULL
2019 Bronx District Attorney Adm Manager-Non-Mgrl From M1/M2 65086.00000 1.301720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.301720e+05 1.301720e+05 0.00 NULL
2019 Bronx District Attorney Administrative Accountant 144200.00000 1.442000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.442000e+05 1.442000e+05 0.00 NULL
2019 Bronx District Attorney Administrative Chief 114140.00000 5.707000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.707000e+05 5.707000e+05 0.00 NULL
2019 Bronx District Attorney Administrative Community Relations Specialist 121050.00000 2.421000e+05 37.15 1.857500e+01 18.575 0.00 2 1.857500e+01 37.15 2.421371e+05 2.421371e+05 0.00 NULL
2019 Bronx District Attorney Administrative Staff Analyst 106691.00000 2.133820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.133820e+05 2.133820e+05 0.00 NULL
2019 Bronx District Attorney Agency Chief Contracting Officer 208500.00000 2.085000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.085000e+05 2.085000e+05 0.00 NULL
2019 Bronx District Attorney Assistant District Attorney 93639.06526 5.309335e+07 2053.20 3.621164e+00 0.000 64.25 567 0.000000e+00 0.00 5.309540e+07 5.309335e+07 2053.20 NULL
2019 Bronx District Attorney Certified It Developer 91499.00000 1.829980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.829980e+05 1.829980e+05 0.00 NULL
2019 Bronx District Attorney City Tax Auditor 64942.00000 6.494200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.494200e+04 6.494200e+04 0.00 NULL
2019 Bronx District Attorney Clerical Associate 45113.25581 1.939870e+06 55647.87 1.294137e+03 0.000 1624.50 43 0.000000e+00 0.00 1.995518e+06 1.939870e+06 55647.87 NULL
2019 Bronx District Attorney College Aide 1081.01333 1.621520e+04 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.621520e+04 1.621520e+04 0.00 NULL
2019 Bronx District Attorney Community Assistant 34622.98522 7.028466e+06 184776.40 9.102286e+02 0.000 7403.75 203 0.000000e+00 0.00 7.213242e+06 7.028466e+06 184776.40 NULL
2019 Bronx District Attorney Community Associate 44432.82496 1.217459e+07 72416.65 2.642943e+02 0.000 2391.00 274 0.000000e+00 0.00 1.224701e+07 1.217459e+07 72416.65 NULL
2019 Bronx District Attorney Community Coordinator 64412.98276 3.735953e+06 78130.02 1.347069e+03 3.270 1740.25 58 3.270000e+00 189.66 3.814083e+06 3.736143e+06 77940.36 NULL
2019 Bronx District Attorney Community Service Aide 29054.57143 6.101460e+05 20742.49 9.877376e+02 78.450 1041.75 21 7.845000e+01 1647.45 6.308885e+05 6.117934e+05 19095.04 NULL
2019 Bronx District Attorney Computer Associate 84715.50000 3.388620e+05 2587.76 6.469400e+02 143.920 50.00 4 1.439200e+02 575.68 3.414498e+05 3.394377e+05 2012.08 NULL
2019 Bronx District Attorney Director Of Public Information 117900.00000 1.179000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.179000e+05 1.179000e+05 0.00 NULL
2019 Bronx District Attorney District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2019 Bronx District Attorney Interpreter 57885.06250 9.261610e+05 29584.26 1.849016e+03 1368.990 901.75 16 1.368990e+03 21903.84 9.557453e+05 9.480648e+05 7680.42 NULL
2019 Bronx District Attorney Management Auditor 93663.00000 9.366300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.366300e+04 9.366300e+04 0.00 NULL
2019 Bronx District Attorney Media Services Technician 54271.00000 1.085420e+05 2492.28 1.246140e+03 1246.140 69.25 2 1.246140e+03 2492.28 1.110343e+05 1.110343e+05 0.00 NULL
2019 Bronx District Attorney Paralegal Aide 52044.50000 1.040890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.040890e+05 1.040890e+05 0.00 NULL
2019 Bronx District Attorney Principal Accountant Investigator 115866.66667 3.476000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.476000e+05 3.476000e+05 0.00 NULL
2019 Bronx District Attorney Principal Administrative Associate - Lev 1 & 2 Non Supvr 68548.66667 8.225840e+05 9553.66 7.961383e+02 0.000 232.50 12 0.000000e+00 0.00 8.321377e+05 8.225840e+05 9553.66 NULL
2019 Bronx District Attorney Private Secretary 91300.00000 9.130000e+04 107.76 1.077600e+02 107.760 2.25 1 1.077600e+02 107.76 9.140776e+04 9.140776e+04 0.00 NULL
2019 Bronx District Attorney Procurement Analyst 89699.00000 8.969900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.969900e+04 8.969900e+04 0.00 NULL
2019 Bronx District Attorney Reporter/ Stenographer 70348.42310 1.477317e+06 18170.63 8.652681e+02 1.440 396.75 21 1.440000e+00 30.24 1.495488e+06 1.477347e+06 18140.39 NULL
2019 Bronx District Attorney Secretary 49953.33333 2.997200e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.997200e+05 2.997200e+05 0.00 NULL
2019 Bronx District Attorney Special Assistant To The District Attorney 142128.57143 9.949000e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.949000e+05 9.949000e+05 0.00 NULL
2019 Bronx District Attorney Special Officer 41451.10000 4.145110e+05 32485.98 3.248598e+03 2850.750 1031.75 10 2.850750e+03 28507.50 4.469970e+05 4.430185e+05 3978.48 NULL
2019 Bronx District Attorney Staff Analyst 74479.00000 7.447900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.447900e+04 7.447900e+04 0.00 NULL
2019 Bronx District Attorney Student Legal Assistant 1292.94500 4.783896e+04 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 4.783896e+04 4.783896e+04 0.00 NULL
2019 Brooklyn Community Board #1 Assistant District Manager 61413.00000 6.141300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.141300e+04 6.141300e+04 0.00 NULL
2019 Brooklyn Community Board #1 Community Associate 42799.00000 4.279900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.279900e+04 4.279900e+04 0.00 NULL
2019 Brooklyn Community Board #1 District Manager 129205.00000 1.292050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.292050e+05 1.292050e+05 0.00 NULL
2019 Brooklyn Community Board #10 College Aide 3069.72750 9.209183e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.209183e+03 9.209183e+03 0.00 NULL
2019 Brooklyn Community Board #10 Community Assistant 11061.18720 2.212237e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.212237e+04 2.212237e+04 0.00 NULL
2019 Brooklyn Community Board #10 Community Coordinator 75598.00000 7.559800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.559800e+04 7.559800e+04 0.00 NULL
2019 Brooklyn Community Board #10 District Manager 125027.00000 1.250270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250270e+05 1.250270e+05 0.00 NULL
2019 Brooklyn Community Board #11 Community Assistant 12898.14400 2.579629e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.579629e+04 2.579629e+04 0.00 NULL
2019 Brooklyn Community Board #11 Community Coordinator 67279.00000 6.727900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.727900e+04 6.727900e+04 0.00 NULL
2019 Brooklyn Community Board #11 District Manager 100285.00000 1.002850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.002850e+05 1.002850e+05 0.00 NULL
2019 Brooklyn Community Board #12 Community Assistant 38013.00000 3.801300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.801300e+04 3.801300e+04 0.00 NULL
2019 Brooklyn Community Board #12 Community Coordinator 15481.87500 1.548188e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.548188e+04 1.548188e+04 0.00 NULL
2019 Brooklyn Community Board #12 District Manager 113898.00000 1.138980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.138980e+05 1.138980e+05 0.00 NULL
2019 Brooklyn Community Board #13 Community Associate 46223.00000 4.622300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.622300e+04 4.622300e+04 0.00 NULL
2019 Brooklyn Community Board #13 Community Service Aide 39441.00000 3.944100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.944100e+04 3.944100e+04 0.00 NULL
2019 Brooklyn Community Board #13 District Manager 92234.00000 9.223400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.223400e+04 9.223400e+04 0.00 NULL
2019 Brooklyn Community Board #13 Secretary 43875.59420 4.387559e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.387559e+04 4.387559e+04 0.00 NULL
2019 Brooklyn Community Board #14 Community Coordinator 58756.20000 1.175124e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.175124e+05 1.175124e+05 0.00 NULL
2019 Brooklyn Community Board #14 District Manager 110714.00000 1.107140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.107140e+05 1.107140e+05 0.00 NULL
2019 Brooklyn Community Board #15 Community Associate 50272.50000 1.005450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.005450e+05 1.005450e+05 0.00 NULL
2019 Brooklyn Community Board #15 District Manager 66792.00000 6.679200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.679200e+04 6.679200e+04 0.00 NULL
2019 Brooklyn Community Board #16 Community Assistant 29026.63000 5.805326e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.805326e+04 5.805326e+04 0.00 NULL
2019 Brooklyn Community Board #16 District Manager 117917.00000 1.179170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.179170e+05 1.179170e+05 0.00 NULL
2019 Brooklyn Community Board #17 Community Assistant 37660.50000 7.532100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.532100e+04 7.532100e+04 0.00 NULL
2019 Brooklyn Community Board #17 Community Coordinator 60403.00000 6.040300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.040300e+04 6.040300e+04 0.00 NULL
2019 Brooklyn Community Board #17 District Manager 84829.00000 8.482900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.482900e+04 8.482900e+04 0.00 NULL
2019 Brooklyn Community Board #18 Community Assistant 36328.00000 3.632800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.632800e+04 3.632800e+04 0.00 NULL
2019 Brooklyn Community Board #18 Community Service Aide 32781.00000 3.278100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.278100e+04 3.278100e+04 0.00 NULL
2019 Brooklyn Community Board #18 District Manager 157557.00000 1.575570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.575570e+05 1.575570e+05 0.00 NULL
2019 Brooklyn Community Board #2 Community Assistant 20178.20160 2.017820e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.017820e+04 2.017820e+04 0.00 NULL
2019 Brooklyn Community Board #2 Community Associate 42799.00000 4.279900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.279900e+04 4.279900e+04 0.00 NULL
2019 Brooklyn Community Board #2 Community Coordinator 64588.00000 6.458800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.458800e+04 6.458800e+04 0.00 NULL
2019 Brooklyn Community Board #2 District Manager 105360.00000 1.053600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.053600e+05 1.053600e+05 0.00 NULL
2019 Brooklyn Community Board #3 Assistant District Manager 63466.00000 6.346600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.346600e+04 6.346600e+04 0.00 NULL
2019 Brooklyn Community Board #3 Community Assistant 40659.00000 4.065900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.065900e+04 4.065900e+04 0.00 NULL
2019 Brooklyn Community Board #3 District Manager 93697.00000 9.369700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.369700e+04 9.369700e+04 0.00 NULL
2019 Brooklyn Community Board #4 Community Associate 61659.00000 6.165900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.165900e+04 6.165900e+04 0.00 NULL
2019 Brooklyn Community Board #4 District Manager 68111.00000 6.811100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.811100e+04 6.811100e+04 0.00 NULL
2019 Brooklyn Community Board #4 Principal Administrative Associate - Lev 1 & 2 Non Supvr 54778.00000 5.477800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.477800e+04 5.477800e+04 0.00 NULL
2019 Brooklyn Community Board #5 Community Associate 37433.90000 7.486780e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.486780e+04 7.486780e+04 0.00 NULL
2019 Brooklyn Community Board #5 Community Coordinator 60403.00000 6.040300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.040300e+04 6.040300e+04 0.00 NULL
2019 Brooklyn Community Board #5 District Manager 93500.00000 9.350000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.350000e+04 9.350000e+04 0.00 NULL
2019 Brooklyn Community Board #6 Assistant District Manager 54211.00000 5.421100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.421100e+04 5.421100e+04 0.00 NULL
2019 Brooklyn Community Board #6 Community Associate 53401.00000 5.340100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.340100e+04 5.340100e+04 0.00 NULL
2019 Brooklyn Community Board #6 District Manager 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2019 Brooklyn Community Board #7 Community Associate 49915.00000 4.991500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.991500e+04 4.991500e+04 0.00 NULL
2019 Brooklyn Community Board #7 Community Coordinator 69143.00000 6.914300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.914300e+04 6.914300e+04 0.00 NULL
2019 Brooklyn Community Board #7 District Manager 100498.00000 1.004980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.004980e+05 1.004980e+05 0.00 NULL
2019 Brooklyn Community Board #8 Community Assistant 36309.00000 3.630900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.630900e+04 3.630900e+04 0.00 NULL
2019 Brooklyn Community Board #8 Community Coordinator 67243.00000 6.724300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.724300e+04 6.724300e+04 0.00 NULL
2019 Brooklyn Community Board #8 District Manager 102093.00000 1.020930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020930e+05 1.020930e+05 0.00 NULL
2019 Brooklyn Community Board #9 Community Assistant 29157.71280 5.831543e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.831543e+04 5.831543e+04 0.00 NULL
2019 Brooklyn Community Board #9 Community Coordinator 60403.00000 6.040300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.040300e+04 6.040300e+04 0.00 NULL
2019 Business Integrity Commission Adm Manager-Non-Mgrl From M1/M2 70855.00000 7.085500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.085500e+04 7.085500e+04 0.00 NULL
2019 Business Integrity Commission Administrative Accountant 110553.00000 1.105530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.105530e+05 1.105530e+05 0.00 NULL
2019 Business Integrity Commission Administrative Community Relations Specialist 119939.00000 1.199390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.199390e+05 1.199390e+05 0.00 NULL
2019 Business Integrity Commission Administrative Investigator 142363.00000 1.423630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.423630e+05 1.423630e+05 0.00 NULL
2019 Business Integrity Commission Administrative Staff Analyst 107451.25000 4.298050e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.298050e+05 4.298050e+05 0.00 NULL
2019 Business Integrity Commission Agency Attorney 84525.00000 1.690500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.690500e+05 1.690500e+05 0.00 NULL
2019 Business Integrity Commission Associate Fraud Investigator 62422.83333 3.745370e+05 13330.92 2.221820e+03 1489.285 323.75 6 1.489285e+03 8935.71 3.878679e+05 3.834727e+05 4395.21 NULL
2019 Business Integrity Commission Associate Staff Analyst 89093.50000 1.781870e+05 456.85 2.284250e+02 228.425 0.00 2 2.284250e+02 456.85 1.786439e+05 1.786439e+05 0.00 NULL
2019 Business Integrity Commission Chair 236088.00000 4.721760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.721760e+05 4.721760e+05 0.00 NULL
2019 Business Integrity Commission Clerical Associate 54347.00000 1.086940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.086940e+05 1.086940e+05 0.00 NULL
2019 Business Integrity Commission Community Assistant 32065.37500 6.413075e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.413075e+04 6.413075e+04 0.00 NULL
2019 Business Integrity Commission Community Associate 48191.15043 2.120411e+06 26016.06 5.912741e+02 0.000 913.25 44 0.000000e+00 0.00 2.146427e+06 2.120411e+06 26016.06 NULL
2019 Business Integrity Commission Community Coordinator 70867.62500 5.669410e+05 25089.73 3.136216e+03 151.535 546.75 8 1.515350e+02 1212.28 5.920307e+05 5.681533e+05 23877.45 NULL
2019 Business Integrity Commission Computer Programmer Analyst 69129.00000 6.912900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.912900e+04 6.912900e+04 0.00 NULL
2019 Business Integrity Commission Computer Systems Manager 90207.50000 1.804150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.804150e+05 1.804150e+05 0.00 NULL
2019 Business Integrity Commission Deputy Commissioner Of Investigations 114725.00000 1.147250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.147250e+05 1.147250e+05 0.00 NULL
2019 Business Integrity Commission Director Of Investigations 85629.50000 1.712590e+05 275.72 1.378600e+02 137.860 7.50 2 1.378600e+02 275.72 1.715347e+05 1.715347e+05 0.00 NULL
2019 Business Integrity Commission Director Of Investigative Audits 114725.00000 1.147250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.147250e+05 1.147250e+05 0.00 NULL
2019 Business Integrity Commission Executive Agency Counsel 110612.44444 9.955120e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.955120e+05 9.955120e+05 0.00 NULL
2019 Business Integrity Commission Management Auditor 75665.00000 1.513300e+05 11752.07 5.876035e+03 5876.035 190.00 2 5.876035e+03 11752.07 1.630821e+05 1.630821e+05 0.00 NULL
2019 Business Integrity Commission Market Agent 53616.80000 5.361680e+05 35505.24 3.550524e+03 446.785 940.50 10 4.467850e+02 4467.85 5.716732e+05 5.406358e+05 31037.39 NULL
2019 Business Integrity Commission Principal Administrative Associate - Lev 1 & 2 Non Supvr 59429.50000 1.188590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.188590e+05 1.188590e+05 0.00 NULL
2019 Business Integrity Commission Statistician 62577.00000 6.257700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.257700e+04 6.257700e+04 0.00 NULL
2019 Campaign Finance Board Admin Asst-Campaign Fin Board 53683.70273 8.589392e+05 4884.48 3.052800e+02 9.015 113.50 16 9.015000e+00 144.24 8.638237e+05 8.590835e+05 4740.24 NULL
2019 Campaign Finance Board Analyst 72532.82334 5.802626e+06 210388.87 2.629861e+03 495.410 3972.50 80 4.954100e+02 39632.80 6.013015e+06 5.842259e+06 170756.07 NULL
2019 Campaign Finance Board Associate Staff Analyst 109750.00000 1.097500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.097500e+05 1.097500e+05 0.00 NULL
2019 Campaign Finance Board Attorney-Campaign Fin Board 101321.37500 8.105710e+05 985.14 1.231425e+02 0.000 12.75 8 0.000000e+00 0.00 8.115561e+05 8.105710e+05 985.14 NULL
2019 Campaign Finance Board College Aide 4381.02692 5.695335e+04 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 5.695335e+04 5.695335e+04 0.00 NULL
2019 Campaign Finance Board Deputy Executive Director Campaign Finance Board 151228.00000 3.024560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.024560e+05 3.024560e+05 0.00 NULL
2019 Campaign Finance Board Director Of Public Relations 151228.00000 1.512280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.512280e+05 1.512280e+05 0.00 NULL
2019 Campaign Finance Board Executive Agency Counsel 175631.50000 3.512630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.512630e+05 3.512630e+05 0.00 NULL
2019 Campaign Finance Board Executive Director 255356.00000 2.553560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.553560e+05 2.553560e+05 0.00 NULL
2019 Campaign Finance Board Systems Administrator-Cam Fin Bd 99248.56309 2.580463e+06 70845.56 2.724829e+03 0.000 1194.25 26 0.000000e+00 0.00 2.651308e+06 2.580463e+06 70845.56 NULL
2019 City Clerk Administrative Investigator 83790.00000 8.379000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.379000e+04 8.379000e+04 0.00 NULL
2019 City Clerk Administrative Management Auditor 196165.00000 1.961650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.961650e+05 1.961650e+05 0.00 NULL
2019 City Clerk Agency Attorney 83000.00000 8.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.300000e+04 8.300000e+04 0.00 NULL
2019 City Clerk Assistant Administrator 77284.00000 7.728400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.728400e+04 7.728400e+04 0.00 NULL
2019 City Clerk Associate Investigator 58740.00000 5.874000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.874000e+04 5.874000e+04 0.00 NULL
2019 City Clerk Chief Of Staff 107908.00000 1.079080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.079080e+05 1.079080e+05 0.00 NULL
2019 City Clerk City Clerk & Clerk Of Council 231278.00000 2.312780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.312780e+05 2.312780e+05 0.00 NULL
2019 City Clerk Clerical Associate 43091.08889 1.939099e+06 0.00 0.000000e+00 0.000 0.00 45 0.000000e+00 0.00 1.939099e+06 1.939099e+06 0.00 NULL
2019 City Clerk College Aide 9786.64062 1.174397e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.174397e+05 1.174397e+05 0.00 NULL
2019 City Clerk Community Assistant 43820.00000 4.382000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.382000e+04 4.382000e+04 0.00 NULL
2019 City Clerk Community Associate 47527.40000 2.376370e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.376370e+05 2.376370e+05 0.00 NULL
2019 City Clerk Community Coordinator 81688.00000 1.633760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.633760e+05 1.633760e+05 0.00 NULL
2019 City Clerk Deputy City Clerk 141564.00000 7.078200e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.078200e+05 7.078200e+05 0.00 NULL
2019 City Clerk Executive Agency Counsel 166168.00000 1.661680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.661680e+05 1.661680e+05 0.00 NULL
2019 City Clerk Executive Assistant To The City Clerk 91662.00000 9.166200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.166200e+04 9.166200e+04 0.00 NULL
2019 City Clerk Executive Assistant To The First Deputy Clerk 51228.00000 5.122800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.122800e+04 5.122800e+04 0.00 NULL
2019 City Clerk Principal Administrative Associate - Lev 1 & 2 Non Supvr 65284.00000 4.569880e+05 564.79 8.068429e+01 0.000 9.25 7 0.000000e+00 0.00 4.575528e+05 4.569880e+05 564.79 NULL
2019 City Clerk Public Records Officer 57521.00000 5.752100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.752100e+04 5.752100e+04 0.00 NULL
2019 City Clerk Secretary 32918.00000 3.291800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.291800e+04 3.291800e+04 0.00 NULL
2019 City Council Assistant Director Of Administration 137317.62500 1.098541e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.098541e+06 1.098541e+06 0.00 NULL
2019 City Council Assistant Director Of Finance 148263.00000 1.482630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.482630e+05 1.482630e+05 0.00 NULL
2019 City Council Assistant Director Of Legal Services 130014.77778 1.170133e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.170133e+06 1.170133e+06 0.00 NULL
2019 City Council Assistant Sergeant At Arms 47909.57143 6.707340e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 6.707340e+05 6.707340e+05 0.00 NULL
2019 City Council Chief Of Staff 248581.50000 4.971630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.971630e+05 4.971630e+05 0.00 NULL
2019 City Council Communication Assistant 81548.61538 1.060132e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.060132e+06 1.060132e+06 0.00 NULL
2019 City Council Council Member 148500.00000 7.425000e+06 0.00 0.000000e+00 0.000 0.00 50 0.000000e+00 0.00 7.425000e+06 7.425000e+06 0.00 NULL
2019 City Council Councilmanic Aide 46287.84335 2.541203e+07 0.00 0.000000e+00 0.000 0.00 549 0.000000e+00 0.00 2.541203e+07 2.541203e+07 0.00 NULL
2019 City Council Deputy Chief Of Staff 214725.00000 2.147250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.147250e+05 2.147250e+05 0.00 NULL
2019 City Council Deputy Director 144046.28571 2.016648e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.016648e+06 2.016648e+06 0.00 NULL
2019 City Council Deputy Director- Finance 186606.25000 7.464250e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.464250e+05 7.464250e+05 0.00 NULL
2019 City Council Deputy Director-Legal Division 194275.00000 1.942750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.942750e+05 1.942750e+05 0.00 NULL
2019 City Council Deputy Director-Office Of Communications 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2019 City Council Deputy Unit Chief 81657.00000 8.165700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.165700e+04 8.165700e+04 0.00 NULL
2019 City Council Director 156030.44444 1.404274e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.404274e+06 1.404274e+06 0.00 NULL
2019 City Council Director Legal Division/Gen Counsel& Spec Counsel 182516.00000 1.825160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.825160e+05 1.825160e+05 0.00 NULL
2019 City Council Director Of Council Services Bureau 194275.00000 1.942750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.942750e+05 1.942750e+05 0.00 NULL
2019 City Council Director Of Finance 224950.00000 2.249500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.249500e+05 2.249500e+05 0.00 NULL
2019 City Council Director Of Land Use Division 194275.00000 1.942750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.942750e+05 1.942750e+05 0.00 NULL
2019 City Council Director-Office Of Communications 189163.00000 1.891630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.891630e+05 1.891630e+05 0.00 NULL
2019 City Council Director-Office Of Policy 148952.50000 2.979050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.979050e+05 2.979050e+05 0.00 NULL
2019 City Council Executive Legislative Coordinator 199510.00000 3.990200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.990200e+05 3.990200e+05 0.00 NULL
2019 City Council Legislative Administrative Assistant 56174.10526 1.067308e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.067308e+06 1.067308e+06 0.00 NULL
2019 City Council Legislative Administrative Manager 85309.55556 1.535572e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.535572e+06 1.535572e+06 0.00 NULL
2019 City Council Legislative Analyst 97137.50000 1.942750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.942750e+05 1.942750e+05 0.00 NULL
2019 City Council Legislative Assistant 64649.44100 4.525461e+06 0.00 0.000000e+00 0.000 0.00 70 0.000000e+00 0.00 4.525461e+06 4.525461e+06 0.00 NULL
2019 City Council Legislative Clerk 31048.87602 1.552444e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.552444e+05 1.552444e+05 0.00 NULL
2019 City Council Legislative Computer Support Specialist 68946.14286 4.826230e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.826230e+05 4.826230e+05 0.00 NULL
2019 City Council Legislative Coordinator 75138.28571 5.259680e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.259680e+05 5.259680e+05 0.00 NULL
2019 City Council Legislative Counsel 97767.50000 7.821400e+06 0.00 0.000000e+00 0.000 0.00 80 0.000000e+00 0.00 7.821400e+06 7.821400e+06 0.00 NULL
2019 City Council Legislative Financial Analyst 64143.22222 1.731867e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 1.731867e+06 1.731867e+06 0.00 NULL
2019 City Council Legislative Intern 3084.01050 1.542005e+05 0.00 0.000000e+00 0.000 0.00 50 0.000000e+00 0.00 1.542005e+05 1.542005e+05 0.00 NULL
2019 City Council Legislative Investigator 55612.55556 5.005130e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.005130e+05 5.005130e+05 0.00 NULL
2019 City Council Legislative Messenger 43000.00000 4.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.300000e+04 4.300000e+04 0.00 NULL
2019 City Council Legislative Policy Analyst 69480.34783 1.598048e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 1.598048e+06 1.598048e+06 0.00 NULL
2019 City Council Legislative Programmer/Analyst 68653.85714 4.805770e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.805770e+05 4.805770e+05 0.00 NULL
2019 City Council Legislative Project Manager 78644.44444 7.078000e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.078000e+05 7.078000e+05 0.00 NULL
2019 City Council Legislative Support Service Coord 52472.66667 1.574180e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.574180e+05 1.574180e+05 0.00 NULL
2019 City Council Legislative Systems Manager 117587.50000 2.351750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.351750e+05 2.351750e+05 0.00 NULL
2019 City Council Minority Leader 148500.00000 1.485000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.485000e+05 1.485000e+05 0.00 NULL
2019 City Council Principal Legislative Financial Analyst 105828.90000 1.058289e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.058289e+06 1.058289e+06 0.00 NULL
2019 City Council Senior Legislative Financial Analyst 75430.00000 6.034400e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.034400e+05 6.034400e+05 0.00 NULL
2019 City Council Senior Legislative Investigator 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2019 City Council Senior Legislative Policy Analyst 86052.14286 1.204730e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.204730e+06 1.204730e+06 0.00 NULL
2019 City Council Sergeant At Arms 107363.00000 1.073630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.073630e+05 1.073630e+05 0.00 NULL
2019 City Council Speaker/Majority Leader 164500.00000 1.645000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.645000e+05 1.645000e+05 0.00 NULL
2019 City Council Special Advisor To The Director 129711.27273 1.426824e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.426824e+06 1.426824e+06 0.00 NULL
2019 Civil Service Commission Agency Attorney 79126.33333 2.373790e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.373790e+05 2.373790e+05 0.00 NULL
2019 Civil Service Commission Chairman 1556.37550 1.556376e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.556376e+03 1.556376e+03 0.00 NULL
2019 Civil Service Commission Commissioner 1384.80590 4.154418e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.154418e+03 4.154418e+03 0.00 NULL
2019 Civil Service Commission Community Associate 45348.00000 2.267400e+05 110.51 2.210200e+01 0.000 0.00 5 0.000000e+00 0.00 2.268505e+05 2.267400e+05 110.51 NULL
2019 Civil Service Commission Executive Agency Counsel 144764.00000 1.447640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.447640e+05 1.447640e+05 0.00 NULL
2019 Civil Service Commission Secretary Of The Commission 109055.00000 1.090550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.090550e+05 1.090550e+05 0.00 NULL
2019 Civilian Complaint Review Bd Adm Manager-Non-Mgrl From M1/M2 98000.00000 9.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.800000e+04 9.800000e+04 0.00 NULL
2019 Civilian Complaint Review Bd Administrative Public Information Specialist 123068.00000 2.461360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.461360e+05 2.461360e+05 0.00 NULL
2019 Civilian Complaint Review Bd Administrative Staff Analyst 144126.50000 2.882530e+05 17632.61 8.816305e+03 8816.305 180.00 2 8.816305e+03 17632.61 3.058856e+05 3.058856e+05 0.00 NULL
2019 Civilian Complaint Review Bd Agency Attorney 76275.00000 7.627500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.627500e+04 7.627500e+04 0.00 NULL
2019 Civilian Complaint Review Bd Certified It Administrator 112271.00000 1.122710e+05 8620.83 8.620830e+03 8620.830 133.00 1 8.620830e+03 8620.83 1.208918e+05 1.208918e+05 0.00 NULL
2019 Civilian Complaint Review Bd Clerical Associate 51734.88031 2.069395e+05 25434.28 6.358570e+03 649.640 523.25 4 6.496400e+02 2598.56 2.323738e+05 2.095381e+05 22835.72 NULL
2019 Civilian Complaint Review Bd College Aide 20603.37500 2.060338e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.060338e+04 2.060338e+04 0.00 NULL
2019 Civilian Complaint Review Bd Community Assistant 28104.95000 5.620990e+04 16514.09 8.257045e+03 8257.045 539.00 2 8.257045e+03 16514.09 7.272399e+04 7.272399e+04 0.00 NULL
2019 Civilian Complaint Review Bd Community Associate 46386.36958 5.566364e+05 2039.63 1.699692e+02 57.270 63.50 12 5.727000e+01 687.24 5.586761e+05 5.573237e+05 1352.39 NULL
2019 Civilian Complaint Review Bd Community Coordinator 72085.00450 7.208500e+05 26483.03 2.648303e+03 286.305 786.75 10 2.863050e+02 2863.05 7.473331e+05 7.237131e+05 23619.98 NULL
2019 Civilian Complaint Review Bd Computer Operations Manager 123574.00000 1.235740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.235740e+05 1.235740e+05 0.00 NULL
2019 Civilian Complaint Review Bd Computer Specialist 109284.00000 1.092840e+05 1994.72 1.994720e+03 1994.720 31.00 1 1.994720e+03 1994.72 1.112787e+05 1.112787e+05 0.00 NULL
2019 Civilian Complaint Review Bd Computer Systems Manager 108294.00000 2.165880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.165880e+05 2.165880e+05 0.00 NULL
2019 Civilian Complaint Review Bd Deputy Assistant Director 114424.29412 1.945213e+06 113.55 6.679412e+00 0.000 0.00 17 0.000000e+00 0.00 1.945327e+06 1.945213e+06 113.55 NULL
2019 Civilian Complaint Review Bd Deputy Executive Director 173021.20000 8.651060e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.651060e+05 8.651060e+05 0.00 NULL
2019 Civilian Complaint Review Bd Executive Agency Counsel 109987.84105 2.089769e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.089769e+06 2.089769e+06 0.00 NULL
2019 Civilian Complaint Review Bd Executive Director 203375.00000 2.033750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.033750e+05 2.033750e+05 0.00 NULL
2019 Civilian Complaint Review Bd Executive Program Specialist 65000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2019 Civilian Complaint Review Bd Investigative Manager 101195.90000 2.023918e+06 9397.89 4.698945e+02 0.000 171.75 20 0.000000e+00 0.00 2.033316e+06 2.023918e+06 9397.89 NULL
2019 Civilian Complaint Review Bd Investigator 56043.19167 6.725183e+06 293219.24 2.443494e+03 606.820 8136.50 120 6.068200e+02 72818.40 7.018402e+06 6.798001e+06 220400.84 NULL
2019 Civilian Complaint Review Bd Member, Civilian Complaint Review Board 164.59364 1.810530e+03 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.810530e+03 1.810530e+03 0.00 NULL
2019 Civilian Complaint Review Bd Principal Administrative Associate - Lev 1 & 2 Non Supvr 73870.00000 1.477400e+05 17700.07 8.850035e+03 8850.035 369.50 2 8.850035e+03 17700.07 1.654401e+05 1.654401e+05 0.00 NULL
2019 Civilian Complaint Review Bd Procurement Analyst 75461.00000 7.546100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.546100e+04 7.546100e+04 0.00 NULL
2019 Civilian Complaint Review Bd Secretary 62566.00000 1.251320e+05 33739.93 1.686997e+04 16869.965 628.00 2 1.686997e+04 33739.93 1.588719e+05 1.588719e+05 0.00 NULL
2019 Civilian Complaint Review Bd Special Officer 56087.34750 5.608735e+04 8941.36 8.941360e+03 8941.360 299.75 1 8.941360e+03 8941.36 6.502871e+04 6.502871e+04 0.00 NULL
2019 Civilian Complaint Review Bd Strategic Initiative Specialist 77308.00000 1.546160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.546160e+05 1.546160e+05 0.00 NULL
2019 Civilian Complaint Review Bd Summer College Intern 3584.37500 7.168750e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.168750e+03 7.168750e+03 0.00 NULL
2019 Civilian Complaint Review Bd Summer Graduate Intern 4140.00000 8.280000e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.280000e+03 8.280000e+03 0.00 NULL
2019 Civilian Complaint Review Bd Supervisor Of Investigators 83428.18182 9.177100e+05 80461.16 7.314651e+03 7212.380 1745.25 11 7.212380e+03 79336.18 9.981712e+05 9.970462e+05 1124.98 NULL
2019 Community College (Bronx) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 170 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Bronx) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Bronx) Adjunct College Lab Tech 7025.33375 3.512667e+05 0.00 0.000000e+00 0.000 0.00 50 0.000000e+00 0.00 3.512667e+05 3.512667e+05 0.00 NULL
2019 Community College (Bronx) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 513 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Bronx) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Bronx) Adjunct Senior College Lab Tech 16911.95000 1.691195e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.691195e+04 1.691195e+04 0.00 NULL
2019 Community College (Bronx) Administrator 152535.00000 6.101400e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.101400e+05 6.101400e+05 0.00 NULL
2019 Community College (Bronx) Administrator Supt Campus B/G 96688.00000 9.668800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.668800e+04 9.668800e+04 0.00 NULL
2019 Community College (Bronx) Assistant Administrator 136633.00000 2.732660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.732660e+05 2.732660e+05 0.00 NULL
2019 Community College (Bronx) Assistant College Security Director 87898.50000 1.757970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.757970e+05 1.757970e+05 0.00 NULL
2019 Community College (Bronx) Assistant Dean 128282.00000 1.282820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.282820e+05 1.282820e+05 0.00 NULL
2019 Community College (Bronx) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 174 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Bronx) Assistant Purchasing Agent 44506.00000 8.901200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.901200e+04 8.901200e+04 0.00 NULL
2019 Community College (Bronx) Assistant To Heo 63680.69231 3.311396e+06 1928.94 3.709500e+01 0.000 39.50 52 0.000000e+00 0.00 3.313325e+06 3.311396e+06 1928.94 NULL
2019 Community College (Bronx) Assistant Vice President 145123.00000 4.353690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.353690e+05 4.353690e+05 0.00 NULL
2019 Community College (Bronx) Associate Administrator 142000.00000 1.420000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.420000e+05 1.420000e+05 0.00 NULL
2019 Community College (Bronx) Associate Dean 141974.00000 4.259220e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.259220e+05 4.259220e+05 0.00 NULL
2019 Community College (Bronx) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 110 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Bronx) Auto Mechanic NA NA 3785.67 1.892835e+03 1892.835 73.00 2 1.892835e+03 3785.67 NA NA NA NULL
2019 Community College (Bronx) Business Data And Reporting Analyst 46077.30769 5.990050e+05 3627.37 2.790285e+02 0.000 151.75 13 0.000000e+00 0.00 6.026324e+05 5.990050e+05 3627.37 NULL
2019 Community College (Bronx) Campus Peace Officer 41092.17391 9.451200e+05 103417.50 4.496413e+03 2271.640 3412.00 23 2.271640e+03 52247.72 1.048538e+06 9.973677e+05 51169.78 NULL
2019 Community College (Bronx) Campus Public Safety Sergeant 55560.81818 6.111690e+05 59930.24 5.448204e+03 3389.880 1510.00 11 3.389880e+03 37288.68 6.710992e+05 6.484577e+05 22641.56 NULL
2019 Community College (Bronx) Campus Security Assistant 26287.26750 1.130353e+06 68886.26 1.602006e+03 302.990 2997.25 43 3.029900e+02 13028.57 1.199239e+06 1.143381e+06 55857.69 NULL
2019 Community College (Bronx) Carpenter NA NA 10484.16 5.242080e+03 5242.080 85.00 2 5.242080e+03 10484.16 NA NA NA NULL
2019 Community College (Bronx) Cement Mason NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Bronx) Chief Administrative Supt Campus B/G 113579.00000 1.135790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.135790e+05 1.135790e+05 0.00 NULL
2019 Community College (Bronx) Chief College Lab Technician 62234.18750 2.489368e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.489368e+05 2.489368e+05 0.00 NULL
2019 Community College (Bronx) City Laborer NA NA 38691.27 3.869127e+03 4071.625 681.50 10 3.869127e+03 38691.27 NA NA NA NULL
2019 Community College (Bronx) Clip Instructor 47170.53846 6.132170e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 6.132170e+05 6.132170e+05 0.00 NULL
2019 Community College (Bronx) College Accountant 54356.00000 2.174240e+05 1821.51 4.553775e+02 0.000 52.50 4 0.000000e+00 0.00 2.192455e+05 2.174240e+05 1821.51 NULL
2019 Community College (Bronx) College Accounting Assistant 43032.83333 2.581970e+05 683.63 1.139383e+02 0.000 36.00 6 0.000000e+00 0.00 2.588806e+05 2.581970e+05 683.63 NULL
2019 Community College (Bronx) College Assistant 7116.55438 3.522694e+06 10.13 2.046460e-02 0.000 0.50 495 0.000000e+00 0.00 3.522705e+06 3.522694e+06 10.13 NULL
2019 Community College (Bronx) College Graph Designer 59572.00000 5.957200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.957200e+04 5.957200e+04 0.00 NULL
2019 Community College (Bronx) College Lab Technician 51872.56250 9.337061e+05 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 9.337061e+05 9.337061e+05 0.00 NULL
2019 Community College (Bronx) College Print Shop Assistant 36184.00000 3.618400e+04 128.74 1.287400e+02 128.740 6.00 1 1.287400e+02 128.74 3.631274e+04 3.631274e+04 0.00 NULL
2019 Community College (Bronx) College Print Shop Associate 42191.00000 8.438200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.438200e+04 8.438200e+04 0.00 NULL
2019 Community College (Bronx) College Security Director 126763.00000 1.267630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.267630e+05 1.267630e+05 0.00 NULL
2019 Community College (Bronx) College Security Specialist 60146.80000 3.007340e+05 44082.68 8.816536e+03 7007.030 1006.00 5 7.007030e+03 35035.15 3.448167e+05 3.357692e+05 9047.53 NULL
2019 Community College (Bronx) Computer Systems Manager 98401.00000 2.952030e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.952030e+05 2.952030e+05 0.00 NULL
2019 Community College (Bronx) Continuing Education Teacher 11482.51711 7.808112e+05 0.00 0.000000e+00 0.000 0.00 68 0.000000e+00 0.00 7.808112e+05 7.808112e+05 0.00 NULL
2019 Community College (Bronx) Cuny Administrator Assistant 50310.50000 7.043470e+05 12212.76 8.723400e+02 0.000 378.00 14 0.000000e+00 0.00 7.165598e+05 7.043470e+05 12212.76 NULL
2019 Community College (Bronx) Cuny Art Model 1320.83333 3.962500e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.962500e+03 3.962500e+03 0.00 NULL
2019 Community College (Bronx) Cuny Custodial Assistant 30937.68533 1.392196e+06 10914.76 2.425502e+02 0.000 409.00 45 0.000000e+00 0.00 1.403111e+06 1.392196e+06 10914.76 NULL
2019 Community College (Bronx) Cuny Office Assistant 36206.12346 2.932696e+06 6557.06 8.095136e+01 0.000 305.50 81 0.000000e+00 0.00 2.939253e+06 2.932696e+06 6557.06 NULL
2019 Community College (Bronx) Cuny Start Instructor 57080.60000 5.708060e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.708060e+05 5.708060e+05 0.00 NULL
2019 Community College (Bronx) Custodial Supervisor 35931.66667 2.155900e+05 4103.74 6.839567e+02 200.915 118.75 6 2.009150e+02 1205.49 2.196937e+05 2.167955e+05 2898.25 NULL
2019 Community College (Bronx) Dean 160107.33333 4.803220e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.803220e+05 4.803220e+05 0.00 NULL
2019 Community College (Bronx) Disability Accommodations Specialist 56305.00000 5.630500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.630500e+04 5.630500e+04 0.00 NULL
2019 Community College (Bronx) Electrician NA NA 47482.91 9.496582e+03 11556.150 504.75 5 9.496582e+03 47482.91 NA NA NA NULL
2019 Community College (Bronx) Eoc Accounting Assistant 38833.50000 7.766700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.766700e+04 7.766700e+04 0.00 NULL
2019 Community College (Bronx) Eoc Adjunct Lecturer 8096.55365 1.052552e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.052552e+05 1.052552e+05 0.00 NULL
2019 Community College (Bronx) Eoc Administrative Assistant 53239.50000 1.064790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.064790e+05 1.064790e+05 0.00 NULL
2019 Community College (Bronx) Eoc Assistant To Heo 61213.33333 5.509200e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.509200e+05 5.509200e+05 0.00 NULL
2019 Community College (Bronx) Eoc College Lab Technician 62786.00000 1.255720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.255720e+05 1.255720e+05 0.00 NULL
2019 Community College (Bronx) Eoc Custodial Assistant 33434.50000 6.686900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.686900e+04 6.686900e+04 0.00 NULL
2019 Community College (Bronx) Eoc Custodial Supervisor 39855.00000 3.985500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.985500e+04 3.985500e+04 0.00 NULL
2019 Community College (Bronx) Eoc Higher Education Assistant 80439.66667 2.413190e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.413190e+05 2.413190e+05 0.00 NULL
2019 Community College (Bronx) Eoc Higher Education Associate 86363.00000 1.727260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.727260e+05 1.727260e+05 0.00 NULL
2019 Community College (Bronx) Eoc Higher Education Officer 117120.00000 2.342400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.342400e+05 2.342400e+05 0.00 NULL
2019 Community College (Bronx) Eoc Lecturer 74430.66667 2.232920e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.232920e+05 2.232920e+05 0.00 NULL
2019 Community College (Bronx) Eoc Office Assistant 33975.85714 2.378310e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.378310e+05 2.378310e+05 0.00 NULL
2019 Community College (Bronx) High Pressure Plant Tender NA NA 25003.14 4.167190e+03 3955.000 497.50 6 3.955000e+03 23730.00 NA NA NA NULL
2019 Community College (Bronx) Higher Education Assistant 73666.54945 6.703656e+06 3222.60 3.541319e+01 0.000 106.25 91 0.000000e+00 0.00 6.706879e+06 6.703656e+06 3222.60 NULL
2019 Community College (Bronx) Higher Education Associate 92400.22222 3.326408e+06 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 3.326408e+06 3.326408e+06 0.00 NULL
2019 Community College (Bronx) Higher Education Officer 116371.84375 3.723899e+06 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 3.723899e+06 3.723899e+06 0.00 NULL
2019 Community College (Bronx) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Bronx) It Assistant 54454.90909 5.990040e+05 12409.05 1.128095e+03 0.000 312.50 11 0.000000e+00 0.00 6.114131e+05 5.990040e+05 12409.05 NULL
2019 Community College (Bronx) It Associate 79434.42857 5.560410e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.560410e+05 5.560410e+05 0.00 NULL
2019 Community College (Bronx) It Senior Associate 107987.50000 2.159750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.159750e+05 2.159750e+05 0.00 NULL
2019 Community College (Bronx) It Support Assistant 29193.61888 1.109358e+06 7019.74 1.847300e+02 0.000 290.50 38 0.000000e+00 0.00 1.116377e+06 1.109358e+06 7019.74 NULL
2019 Community College (Bronx) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 83 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Bronx) Lecturer/Doctoral Schedule 64634.00000 6.463400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.463400e+04 6.463400e+04 0.00 NULL
2019 Community College (Bronx) Locksmith NA NA 1513.30 7.566500e+02 756.650 33.75 2 7.566500e+02 1513.30 NA NA NA NULL
2019 Community College (Bronx) Mail/Message Services Worker 35474.50000 7.094900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.094900e+04 7.094900e+04 0.00 NULL
2019 Community College (Bronx) Maintenance Worker NA NA 9301.69 1.328813e+03 1305.000 199.75 7 1.305000e+03 9135.00 NA NA NA NULL
2019 Community College (Bronx) Media Services Technician 59712.00000 5.971200e+04 6629.37 6.629370e+03 6629.370 188.50 1 6.629370e+03 6629.37 6.634137e+04 6.634137e+04 0.00 NULL
2019 Community College (Bronx) Motor Vehicle Operator 44887.00000 4.488700e+04 7106.25 7.106250e+03 7106.250 230.00 1 7.106250e+03 7106.25 5.199325e+04 5.199325e+04 0.00 NULL
2019 Community College (Bronx) Non-Teaching Adjunct I 5833.24000 5.833240e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.833240e+03 5.833240e+03 0.00 NULL
2019 Community College (Bronx) Non-Teaching Adjunct Ii 2442.34826 6.545493e+05 0.00 0.000000e+00 0.000 0.00 268 0.000000e+00 0.00 6.545493e+05 6.545493e+05 0.00 NULL
2019 Community College (Bronx) Non-Teaching Adjunct Iii 577.81343 6.529292e+04 0.00 0.000000e+00 0.000 0.00 113 0.000000e+00 0.00 6.529292e+04 6.529292e+04 0.00 NULL
2019 Community College (Bronx) Non-Teaching Adjunct Iv 968.00311 4.356014e+04 0.00 0.000000e+00 0.000 0.00 45 0.000000e+00 0.00 4.356014e+04 4.356014e+04 0.00 NULL
2019 Community College (Bronx) Non-Teaching Adjunct V 2454.56686 1.153646e+05 0.00 0.000000e+00 0.000 0.00 47 0.000000e+00 0.00 1.153646e+05 1.153646e+05 0.00 NULL
2019 Community College (Bronx) Oiler NA NA 1029.06 5.145300e+02 514.530 12.00 2 5.145300e+02 1029.06 NA NA NA NULL
2019 Community College (Bronx) Painter NA NA 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Bronx) Plumber NA NA 26505.73 8.835243e+03 5842.810 224.75 3 5.842810e+03 17528.43 NA NA NA NULL
2019 Community College (Bronx) Plumber’s Helper NA NA 18874.79 9.437395e+03 9437.395 217.25 2 9.437395e+03 18874.79 NA NA NA NULL
2019 Community College (Bronx) President 226000.00000 2.260000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.260000e+05 2.260000e+05 0.00 NULL
2019 Community College (Bronx) Principal Custodial Supervisor 60704.00000 6.070400e+04 2728.36 2.728360e+03 2728.360 44.25 1 2.728360e+03 2728.36 6.343236e+04 6.343236e+04 0.00 NULL
2019 Community College (Bronx) Professor NA NA 0.00 0.000000e+00 0.000 0.00 125 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Bronx) Project Manager 91331.50000 1.826630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.826630e+05 1.826630e+05 0.00 NULL
2019 Community College (Bronx) Purchasing Agent 60362.00000 6.036200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.036200e+04 6.036200e+04 0.00 NULL
2019 Community College (Bronx) Senior College Lab Tech 65251.85714 9.135260e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 9.135260e+05 9.135260e+05 0.00 NULL
2019 Community College (Bronx) Senior Custodial Supervisor 38816.00000 1.164480e+05 1131.87 3.772900e+02 178.720 37.00 3 1.787200e+02 536.16 1.175799e+05 1.169842e+05 595.71 NULL
2019 Community College (Bronx) Senior Stationary Engineer NA NA 16476.97 1.647697e+04 16476.970 152.75 1 1.647697e+04 16476.97 NA NA NA NULL
2019 Community College (Bronx) Senior Vice President 208547.50000 4.170950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.170950e+05 4.170950e+05 0.00 NULL
2019 Community College (Bronx) Stationary Engineer NA NA 135407.04 1.934386e+04 18982.080 1652.75 7 1.898208e+04 132874.56 NA NA NA NULL
2019 Community College (Bronx) Steam Fitter NA NA 26675.00 8.891667e+03 385.000 230.50 3 3.850000e+02 1155.00 NA NA NA NULL
2019 Community College (Bronx) Stock Worker 34482.33333 2.068940e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.068940e+05 2.068940e+05 0.00 NULL
2019 Community College (Bronx) Student Aide 2693.56633 1.319848e+05 0.00 0.000000e+00 0.000 0.00 49 0.000000e+00 0.00 1.319848e+05 1.319848e+05 0.00 NULL
2019 Community College (Bronx) Supervisor Carpenter NA NA 5295.20 5.295200e+03 5295.200 13.00 1 5.295200e+03 5295.20 NA NA NA NULL
2019 Community College (Bronx) Supervisor Electrician NA NA 41967.32 4.196732e+04 41967.320 490.50 1 4.196732e+04 41967.32 NA NA NA NULL
2019 Community College (Bronx) Supervisor Painter NA NA 71.64 7.164000e+01 71.640 1.00 1 7.164000e+01 71.64 NA NA NA NULL
2019 Community College (Bronx) Thermostat Repairer NA NA 6290.96 3.145480e+03 3145.480 60.50 2 3.145480e+03 6290.96 NA NA NA NULL
2019 Community College (Bronx) Vice President 175902.75000 7.036110e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.036110e+05 7.036110e+05 0.00 NULL
2019 Community College (Hostos) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 134 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Hostos) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Hostos) Adjunct College Lab Tech 11720.81400 1.172081e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.172081e+05 1.172081e+05 0.00 NULL
2019 Community College (Hostos) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 193 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Hostos) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Hostos) Administrator 147704.00000 1.477040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.477040e+05 1.477040e+05 0.00 NULL
2019 Community College (Hostos) Administrator Supt Campus B/G 86120.00000 8.612000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.612000e+04 8.612000e+04 0.00 NULL
2019 Community College (Hostos) Assistant Administrator 126742.50000 2.534850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.534850e+05 2.534850e+05 0.00 NULL
2019 Community College (Hostos) Assistant College Security Director 76588.50000 1.531770e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.531770e+05 1.531770e+05 0.00 NULL
2019 Community College (Hostos) Assistant Dean 118390.33333 3.551710e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.551710e+05 3.551710e+05 0.00 NULL
2019 Community College (Hostos) Assistant Principal Custodial Supervisor 43503.00000 4.350300e+04 2649.68 2.649680e+03 2649.680 77.75 1 2.649680e+03 2649.68 4.615268e+04 4.615268e+04 0.00 NULL
2019 Community College (Hostos) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 117 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Hostos) Assistant Purchasing Agent 46251.00000 4.625100e+04 883.29 8.832900e+02 883.290 0.00 1 8.832900e+02 883.29 4.713429e+04 4.713429e+04 0.00 NULL
2019 Community College (Hostos) Assistant To Heo 48543.63265 2.378638e+06 21215.53 4.329700e+02 0.000 513.50 49 0.000000e+00 0.00 2.399854e+06 2.378638e+06 21215.53 NULL
2019 Community College (Hostos) Assistant Vice President 163880.00000 3.277600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.277600e+05 3.277600e+05 0.00 NULL
2019 Community College (Hostos) Associate Administrator 134574.00000 1.345740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.345740e+05 1.345740e+05 0.00 NULL
2019 Community College (Hostos) Associate Dean 130236.00000 3.907080e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.907080e+05 3.907080e+05 0.00 NULL
2019 Community College (Hostos) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 47 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Hostos) Business Data And Reporting Analyst 40639.00000 4.063900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.063900e+04 4.063900e+04 0.00 NULL
2019 Community College (Hostos) Campus Peace Officer 42571.66667 1.021720e+06 346980.59 1.445752e+04 10825.370 11421.00 24 1.082537e+04 259808.88 1.368701e+06 1.281529e+06 87171.71 NULL
2019 Community College (Hostos) Campus Public Safety Sergeant 55370.00000 3.875900e+05 48731.28 6.961611e+03 7763.760 1218.00 7 6.961611e+03 48731.28 4.363213e+05 4.363213e+05 0.00 NULL
2019 Community College (Hostos) Campus Security Assistant 29200.92708 3.504111e+05 44672.53 3.722711e+03 3725.370 1972.75 12 3.722711e+03 44672.53 3.950837e+05 3.950837e+05 0.00 NULL
2019 Community College (Hostos) Carpenter NA NA 5431.44 5.431440e+03 5431.440 66.25 1 5.431440e+03 5431.44 NA NA NA NULL
2019 Community College (Hostos) Chief Administrative Supt Campus B/G 142233.00000 1.422330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.422330e+05 1.422330e+05 0.00 NULL
2019 Community College (Hostos) City Laborer NA NA 25700.79 8.566930e+03 11437.640 470.50 3 8.566930e+03 25700.79 NA NA NA NULL
2019 Community College (Hostos) Clip Instructor 51554.00000 6.186480e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 6.186480e+05 6.186480e+05 0.00 NULL
2019 Community College (Hostos) College Accountant 58941.00000 5.894100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.894100e+04 5.894100e+04 0.00 NULL
2019 Community College (Hostos) College Accounting Assistant 45315.33333 1.359460e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.359460e+05 1.359460e+05 0.00 NULL
2019 Community College (Hostos) College Assistant 6447.62135 3.152887e+06 3811.60 7.794683e+00 0.000 180.50 489 0.000000e+00 0.00 3.156698e+06 3.152887e+06 3811.60 NULL
2019 Community College (Hostos) College Lab Technician 60592.00000 5.453280e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.453280e+05 5.453280e+05 0.00 NULL
2019 Community College (Hostos) College Print Shop Assistant 33599.50000 6.719900e+04 7309.91 3.654955e+03 3654.955 287.50 2 3.654955e+03 7309.91 7.450891e+04 7.450891e+04 0.00 NULL
2019 Community College (Hostos) College Security Director 137913.00000 1.379130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.379130e+05 1.379130e+05 0.00 NULL
2019 Community College (Hostos) College Security Specialist 58317.00000 1.166340e+05 18066.93 9.033465e+03 9033.465 431.75 2 9.033465e+03 18066.93 1.347009e+05 1.347009e+05 0.00 NULL
2019 Community College (Hostos) Computer Systems Manager 115000.00000 2.300000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.300000e+05 2.300000e+05 0.00 NULL
2019 Community College (Hostos) Continuing Education Teacher 8305.00285 1.362020e+06 0.00 0.000000e+00 0.000 0.00 164 0.000000e+00 0.00 1.362020e+06 1.362020e+06 0.00 NULL
2019 Community College (Hostos) Cuny Administrator Assistant 54540.60000 5.454060e+05 7169.20 7.169200e+02 0.000 216.00 10 0.000000e+00 0.00 5.525752e+05 5.454060e+05 7169.20 NULL
2019 Community College (Hostos) Cuny Custodial Assistant 32076.21277 1.507582e+06 44349.56 9.436077e+02 362.450 1943.75 47 3.624500e+02 17035.15 1.551932e+06 1.524617e+06 27314.41 NULL
2019 Community College (Hostos) Cuny Office Assistant 36755.00000 2.021525e+06 3036.45 5.520818e+01 0.000 107.25 55 0.000000e+00 0.00 2.024561e+06 2.021525e+06 3036.45 NULL
2019 Community College (Hostos) Cuny Start Instructor 58313.58333 6.997630e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 6.997630e+05 6.997630e+05 0.00 NULL
2019 Community College (Hostos) Custodial Supervisor 33158.33333 1.989500e+05 12857.89 2.142982e+03 1741.190 546.50 6 1.741190e+03 10447.14 2.118079e+05 2.093971e+05 2410.75 NULL
2019 Community College (Hostos) Dean 148000.00000 1.480000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.480000e+05 1.480000e+05 0.00 NULL
2019 Community College (Hostos) Disability Accommodations Specialist 20262.85906 1.621029e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.621029e+05 1.621029e+05 0.00 NULL
2019 Community College (Hostos) Distinguished Lecturer 124629.00000 1.246290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.246290e+05 1.246290e+05 0.00 NULL
2019 Community College (Hostos) Distinguished Professor 157079.00000 1.570790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.570790e+05 1.570790e+05 0.00 NULL
2019 Community College (Hostos) Electrician NA NA 29950.59 1.497530e+04 14975.295 344.25 2 1.497530e+04 29950.59 NA NA NA NULL
2019 Community College (Hostos) Electrician’s Helper NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Hostos) High Pressure Plant Tender NA NA 10119.38 1.011938e+04 10119.380 210.25 1 1.011938e+04 10119.38 NA NA NA NULL
2019 Community College (Hostos) Higher Education Assistant 67623.14433 6.559445e+06 0.00 0.000000e+00 0.000 0.00 97 0.000000e+00 0.00 6.559445e+06 6.559445e+06 0.00 NULL
2019 Community College (Hostos) Higher Education Associate 92784.97368 3.525829e+06 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 3.525829e+06 3.525829e+06 0.00 NULL
2019 Community College (Hostos) Higher Education Officer 117797.18919 4.358496e+06 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 4.358496e+06 4.358496e+06 0.00 NULL
2019 Community College (Hostos) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Hostos) It Assistant 46927.03700 7.039056e+05 8204.03 5.469353e+02 0.000 165.75 15 0.000000e+00 0.00 7.121096e+05 7.039056e+05 8204.03 NULL
2019 Community College (Hostos) It Associate 73609.00000 1.472180e+05 1282.98 6.414900e+02 641.490 25.75 2 6.414900e+02 1282.98 1.485010e+05 1.485010e+05 0.00 NULL
2019 Community College (Hostos) It Senior Associate 93317.75000 3.732710e+05 1747.83 4.369575e+02 0.000 29.50 4 0.000000e+00 0.00 3.750188e+05 3.732710e+05 1747.83 NULL
2019 Community College (Hostos) It Support Assistant 31559.51591 3.471547e+05 426.26 3.875091e+01 0.000 15.75 11 0.000000e+00 0.00 3.475809e+05 3.471547e+05 426.26 NULL
2019 Community College (Hostos) Lead Theatre Technician 5722.87125 1.602404e+05 9571.04 3.418229e+02 47.200 266.50 28 4.720000e+01 1321.60 1.698114e+05 1.615620e+05 8249.44 NULL
2019 Community College (Hostos) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 56 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Hostos) Lecturer/Doctoral Schedule 77114.50000 1.542290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.542290e+05 1.542290e+05 0.00 NULL
2019 Community College (Hostos) Locksmith NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Hostos) Mail/Message Services Worker 38790.33333 1.163710e+05 12487.52 4.162507e+03 445.300 400.00 3 4.453000e+02 1335.90 1.288585e+05 1.177069e+05 11151.62 NULL
2019 Community College (Hostos) Maintenance Worker NA NA 55883.26 6.985408e+03 1691.065 1410.25 8 1.691065e+03 13528.52 NA NA NA NULL
2019 Community College (Hostos) Non-Teaching Adjunct I 3894.68780 2.258919e+05 0.00 0.000000e+00 0.000 0.00 58 0.000000e+00 0.00 2.258919e+05 2.258919e+05 0.00 NULL
2019 Community College (Hostos) Non-Teaching Adjunct Ii 3023.51565 8.163492e+04 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 8.163492e+04 8.163492e+04 0.00 NULL
2019 Community College (Hostos) Non-Teaching Adjunct Iii 1479.33850 5.917354e+04 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 5.917354e+04 5.917354e+04 0.00 NULL
2019 Community College (Hostos) Non-Teaching Adjunct Iv 1260.84792 1.513017e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.513017e+04 1.513017e+04 0.00 NULL
2019 Community College (Hostos) Non-Teaching Adjunct V 3914.83615 5.089287e+04 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 5.089287e+04 5.089287e+04 0.00 NULL
2019 Community College (Hostos) Oiler NA NA 40497.89 2.024894e+04 20248.945 450.25 2 2.024894e+04 40497.89 NA NA NA NULL
2019 Community College (Hostos) Painter NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Hostos) Plumber NA NA 4431.75 4.431750e+03 4431.750 41.00 1 4.431750e+03 4431.75 NA NA NA NULL
2019 Community College (Hostos) Plumber’s Helper NA NA 5747.94 5.747940e+03 5747.940 74.50 1 5.747940e+03 5747.94 NA NA NA NULL
2019 Community College (Hostos) President 226000.00000 2.260000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.260000e+05 2.260000e+05 0.00 NULL
2019 Community College (Hostos) Principal Custodial Supervisor 69411.00000 6.941100e+04 15257.81 1.525781e+04 15257.810 316.50 1 1.525781e+04 15257.81 8.466881e+04 8.466881e+04 0.00 NULL
2019 Community College (Hostos) Professor NA NA 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Hostos) Purchasing Agent 61942.00000 6.194200e+04 1218.93 1.218930e+03 1218.930 0.00 1 1.218930e+03 1218.93 6.316093e+04 6.316093e+04 0.00 NULL
2019 Community College (Hostos) Senior College Lab Tech 67101.40000 3.355070e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.355070e+05 3.355070e+05 0.00 NULL
2019 Community College (Hostos) Senior Custodial Supervisor 38721.00000 3.872100e+04 1244.81 1.244810e+03 1244.810 44.75 1 1.244810e+03 1244.81 3.996581e+04 3.996581e+04 0.00 NULL
2019 Community College (Hostos) Senior Stationary Engineer NA NA 29491.56 2.949156e+04 29491.560 311.75 1 2.949156e+04 29491.56 NA NA NA NULL
2019 Community College (Hostos) Senior Vice President 216250.00000 2.162500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.162500e+05 2.162500e+05 0.00 NULL
2019 Community College (Hostos) Staff Nurse 68838.00000 6.883800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.883800e+04 6.883800e+04 0.00 NULL
2019 Community College (Hostos) Stationary Engineer NA NA 184527.77 3.690555e+04 28518.780 1978.25 5 2.851878e+04 142593.90 NA NA NA NULL
2019 Community College (Hostos) Stock Worker 37205.00000 3.720500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.720500e+04 3.720500e+04 0.00 NULL
2019 Community College (Hostos) Supervisor Thermostat Repair NA NA 45118.94 4.511894e+04 45118.940 405.25 1 4.511894e+04 45118.94 NA NA NA NULL
2019 Community College (Hostos) Vice President 162833.25000 6.513330e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.513330e+05 6.513330e+05 0.00 NULL
2019 Community College (Kingsboro) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 93 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Kingsboro) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Kingsboro) Adjunct College Lab Tech 11547.23819 1.374121e+06 0.00 0.000000e+00 0.000 0.00 119 0.000000e+00 0.00 1.374121e+06 1.374121e+06 0.00 NULL
2019 Community College (Kingsboro) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 586 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Kingsboro) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Kingsboro) Administrator 147000.00000 1.470000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.470000e+05 1.470000e+05 0.00 NULL
2019 Community College (Kingsboro) Administrator Supt Campus B/G 103070.50000 2.061410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.061410e+05 2.061410e+05 0.00 NULL
2019 Community College (Kingsboro) Assistant Administrator 137100.00000 2.742000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.742000e+05 2.742000e+05 0.00 NULL
2019 Community College (Kingsboro) Assistant College Security Director 81006.66667 2.430200e+05 1262.92 4.209733e+02 0.000 28.00 3 0.000000e+00 0.00 2.442829e+05 2.430200e+05 1262.92 NULL
2019 Community College (Kingsboro) Assistant Principal Custodial Supervisor 43536.00000 8.707200e+04 11300.91 5.650455e+03 5650.455 358.00 2 5.650455e+03 11300.91 9.837291e+04 9.837291e+04 0.00 NULL
2019 Community College (Kingsboro) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 187 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Kingsboro) Assistant To Heo 57109.46875 3.655006e+06 2736.48 4.275750e+01 0.000 52.50 64 0.000000e+00 0.00 3.657742e+06 3.655006e+06 2736.48 NULL
2019 Community College (Kingsboro) Assistant Vice President 154751.75000 6.190070e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.190070e+05 6.190070e+05 0.00 NULL
2019 Community College (Kingsboro) Associate Administrator 143852.00000 2.877040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.877040e+05 2.877040e+05 0.00 NULL
2019 Community College (Kingsboro) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 129 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Kingsboro) Auto Mechanic NA NA 60.45 3.022500e+01 30.225 1.00 2 3.022500e+01 60.45 NA NA NA NULL
2019 Community College (Kingsboro) Campus Peace Officer 37778.08696 8.688960e+05 104458.60 4.541678e+03 3728.550 4017.90 23 3.728550e+03 85756.65 9.733546e+05 9.546527e+05 18701.95 NULL
2019 Community College (Kingsboro) Campus Public Safety Sergeant 56145.00000 5.614500e+05 89622.80 8.962280e+03 6295.020 2245.00 10 6.295020e+03 62950.20 6.510728e+05 6.244002e+05 26672.60 NULL
2019 Community College (Kingsboro) Campus Security Assistant 32705.00000 3.597550e+05 65073.03 5.915730e+03 3740.960 2858.75 11 3.740960e+03 41150.56 4.248280e+05 4.009056e+05 23922.47 NULL
2019 Community College (Kingsboro) Carpenter NA NA 49200.96 1.230024e+04 10125.120 642.00 4 1.012512e+04 40500.48 NA NA NA NULL
2019 Community College (Kingsboro) Chief Administrative Supt Campus B/G 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2019 Community College (Kingsboro) Chief College Lab Technician 54851.37333 3.291082e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.291082e+05 3.291082e+05 0.00 NULL
2019 Community College (Kingsboro) City Laborer NA NA 108125.97 8.317382e+03 8663.030 1985.75 13 8.317382e+03 108125.97 NA NA NA NULL
2019 Community College (Kingsboro) Clip Instructor 52636.28571 3.684540e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.684540e+05 3.684540e+05 0.00 NULL
2019 Community College (Kingsboro) College Accountant 56752.00000 1.135040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.135040e+05 1.135040e+05 0.00 NULL
2019 Community College (Kingsboro) College Accounting Assistant 42905.75000 1.716230e+05 470.94 1.177350e+02 53.370 9.50 4 5.337000e+01 213.48 1.720939e+05 1.718365e+05 257.46 NULL
2019 Community College (Kingsboro) College Assistant 8488.50040 4.303670e+06 0.00 0.000000e+00 0.000 9.50 507 0.000000e+00 0.00 4.303670e+06 4.303670e+06 0.00 NULL
2019 Community College (Kingsboro) College Lab Technician 41541.61840 1.038540e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.038540e+06 1.038540e+06 0.00 NULL
2019 Community College (Kingsboro) College Print Shop Assistant 36184.00000 1.085520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.085520e+05 1.085520e+05 0.00 NULL
2019 Community College (Kingsboro) College Print Shop Associate 47617.00000 4.761700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.761700e+04 4.761700e+04 0.00 NULL
2019 Community College (Kingsboro) College Print Shop Coordinator 59450.00000 5.945000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.945000e+04 5.945000e+04 0.00 NULL
2019 Community College (Kingsboro) College Security Director 144200.00000 1.442000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.442000e+05 1.442000e+05 0.00 NULL
2019 Community College (Kingsboro) College Security Specialist 58317.00000 1.166340e+05 15354.31 7.677155e+03 7677.155 368.75 2 7.677155e+03 15354.31 1.319883e+05 1.319883e+05 0.00 NULL
2019 Community College (Kingsboro) Computer Operator Manager 100672.33333 3.020170e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.020170e+05 3.020170e+05 0.00 NULL
2019 Community College (Kingsboro) Computer Systems Manager 92545.00000 1.850900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.850900e+05 1.850900e+05 0.00 NULL
2019 Community College (Kingsboro) Continuing Education Teacher NA NA 0.00 0.000000e+00 0.000 0.00 356 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Kingsboro) Cuny Administrator Assistant 50429.15789 9.581540e+05 19075.21 1.003958e+03 0.000 531.75 19 0.000000e+00 0.00 9.772292e+05 9.581540e+05 19075.21 NULL
2019 Community College (Kingsboro) Cuny Broadcast Associate 57132.00000 5.713200e+04 1490.33 1.490330e+03 1490.330 14.00 1 1.490330e+03 1490.33 5.862233e+04 5.862233e+04 0.00 NULL
2019 Community College (Kingsboro) Cuny Custodial Assistant 25455.60008 2.316460e+06 76964.85 8.457676e+02 213.750 3282.50 91 2.137500e+02 19451.25 2.393424e+06 2.335911e+06 57513.60 NULL
2019 Community College (Kingsboro) Cuny Office Assistant 36276.77193 2.067776e+06 15238.81 2.673475e+02 0.000 660.00 57 0.000000e+00 0.00 2.083015e+06 2.067776e+06 15238.81 NULL
2019 Community College (Kingsboro) Cuny Start Instructor 60508.14286 4.235570e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.235570e+05 4.235570e+05 0.00 NULL
2019 Community College (Kingsboro) Custodial Supervisor 35913.00000 1.077390e+05 6008.59 2.002863e+03 1971.440 231.25 3 1.971440e+03 5914.32 1.137476e+05 1.136533e+05 94.27 NULL
2019 Community College (Kingsboro) Dean 148626.00000 4.458780e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.458780e+05 4.458780e+05 0.00 NULL
2019 Community College (Kingsboro) Disability Accommodations Specialist 38872.28500 3.887229e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.887229e+04 3.887229e+04 0.00 NULL
2019 Community College (Kingsboro) Electrician NA NA 51498.29 2.574915e+04 25749.145 609.00 2 2.574915e+04 51498.29 NA NA NA NULL
2019 Community College (Kingsboro) Electrician’s Helper NA NA 10111.47 1.011147e+04 10111.470 195.50 1 1.011147e+04 10111.47 NA NA NA NULL
2019 Community College (Kingsboro) Facilities Coordinator 67075.50000 1.341510e+05 256.99 1.284950e+02 128.495 7.00 2 1.284950e+02 256.99 1.344080e+05 1.344080e+05 0.00 NULL
2019 Community College (Kingsboro) High Pressure Plant Tender NA NA 39007.50 4.334167e+03 2940.000 717.50 9 2.940000e+03 26460.00 NA NA NA NULL
2019 Community College (Kingsboro) Higher Education Assistant 70702.49398 5.868307e+06 8589.46 1.034875e+02 0.000 131.75 83 0.000000e+00 0.00 5.876896e+06 5.868307e+06 8589.46 NULL
2019 Community College (Kingsboro) Higher Education Associate 90419.39655 5.244325e+06 0.00 0.000000e+00 0.000 0.00 58 0.000000e+00 0.00 5.244325e+06 5.244325e+06 0.00 NULL
2019 Community College (Kingsboro) Higher Education Officer 112912.88000 5.645644e+06 0.00 0.000000e+00 0.000 0.00 50 0.000000e+00 0.00 5.645644e+06 5.645644e+06 0.00 NULL
2019 Community College (Kingsboro) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Kingsboro) It Assistant 54527.00000 1.036013e+06 3350.09 1.763205e+02 0.000 123.75 19 0.000000e+00 0.00 1.039363e+06 1.036013e+06 3350.09 NULL
2019 Community College (Kingsboro) It Associate 70566.50000 2.822660e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.822660e+05 2.822660e+05 0.00 NULL
2019 Community College (Kingsboro) It Senior Associate 96615.50000 1.932310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.932310e+05 1.932310e+05 0.00 NULL
2019 Community College (Kingsboro) It Support Assistant 40413.00000 3.637170e+05 966.97 1.074411e+02 0.000 38.50 9 0.000000e+00 0.00 3.646840e+05 3.637170e+05 966.97 NULL
2019 Community College (Kingsboro) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 175 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Kingsboro) Lecturer/Doctoral Schedule 82443.85714 5.771070e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.771070e+05 5.771070e+05 0.00 NULL
2019 Community College (Kingsboro) Locksmith NA NA 547.60 5.476000e+02 547.600 14.00 1 5.476000e+02 547.60 NA NA NA NULL
2019 Community College (Kingsboro) Mail/Message Services Worker 36235.50000 1.449420e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.449420e+05 1.449420e+05 0.00 NULL
2019 Community College (Kingsboro) Maintenance Worker NA NA 45602.50 5.700312e+03 6590.250 1081.50 8 5.700312e+03 45602.50 NA NA NA NULL
2019 Community College (Kingsboro) Media Services Technician 68453.00000 6.845300e+04 15310.28 1.531028e+04 15310.280 312.75 1 1.531028e+04 15310.28 8.376328e+04 8.376328e+04 0.00 NULL
2019 Community College (Kingsboro) Non-Teaching Adjunct I 7349.31549 2.719247e+06 0.00 0.000000e+00 0.000 0.00 370 0.000000e+00 0.00 2.719247e+06 2.719247e+06 0.00 NULL
2019 Community College (Kingsboro) Non-Teaching Adjunct Ii 5070.45000 1.014090e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.014090e+04 1.014090e+04 0.00 NULL
2019 Community College (Kingsboro) Non-Teaching Adjunct Iii 4479.56537 1.209483e+05 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 1.209483e+05 1.209483e+05 0.00 NULL
2019 Community College (Kingsboro) Non-Teaching Adjunct Iv 13983.95333 1.678074e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.678074e+05 1.678074e+05 0.00 NULL
2019 Community College (Kingsboro) Non-Teaching Adjunct V 11433.91462 1.486409e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.486409e+05 1.486409e+05 0.00 NULL
2019 Community College (Kingsboro) Oiler NA NA 19680.92 6.560307e+03 8618.450 224.00 3 6.560307e+03 19680.92 NA NA NA NULL
2019 Community College (Kingsboro) Painter NA NA 48643.95 4.422177e+03 626.860 806.00 11 6.268600e+02 6895.46 NA NA NA NULL
2019 Community College (Kingsboro) Plumber NA NA 39010.32 1.300344e+04 11350.230 356.50 3 1.135023e+04 34050.69 NA NA NA NULL
2019 Community College (Kingsboro) President 226000.00000 2.260000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.260000e+05 2.260000e+05 0.00 NULL
2019 Community College (Kingsboro) Principal Custodial Supervisor 53631.00000 1.072620e+05 6857.93 3.428965e+03 3428.965 162.25 2 3.428965e+03 6857.93 1.141199e+05 1.141199e+05 0.00 NULL
2019 Community College (Kingsboro) Professor NA NA 0.00 0.000000e+00 0.000 0.00 118 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Kingsboro) Project Manager 83416.00000 8.341600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.341600e+04 8.341600e+04 0.00 NULL
2019 Community College (Kingsboro) Purchasing Agent 64322.00000 2.572880e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.572880e+05 2.572880e+05 0.00 NULL
2019 Community College (Kingsboro) Senior College Lab Tech 66158.14286 9.262140e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 9.262140e+05 9.262140e+05 0.00 NULL
2019 Community College (Kingsboro) Senior Custodial Supervisor 38841.00000 3.884100e+04 2178.55 2.178550e+03 2178.550 74.50 1 2.178550e+03 2178.55 4.101955e+04 4.101955e+04 0.00 NULL
2019 Community College (Kingsboro) Senior Stationary Engineer NA NA 37167.67 3.716767e+04 37167.670 346.50 1 3.716767e+04 37167.67 NA NA NA NULL
2019 Community College (Kingsboro) Sign Language Interpreter 14222.16285 2.844433e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.844433e+04 2.844433e+04 0.00 NULL
2019 Community College (Kingsboro) Sr College Laboratory Tech 5439.54929 3.807685e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.807685e+04 3.807685e+04 0.00 NULL
2019 Community College (Kingsboro) Staff Nurse 14331.86993 2.579737e+05 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.579737e+05 2.579737e+05 0.00 NULL
2019 Community College (Kingsboro) Stationary Engineer NA NA 66984.84 1.116414e+04 10951.200 774.00 6 1.095120e+04 65707.20 NA NA NA NULL
2019 Community College (Kingsboro) Stock Worker 32200.00000 6.440000e+04 435.05 2.175250e+02 217.525 19.00 2 2.175250e+02 435.05 6.483505e+04 6.483505e+04 0.00 NULL
2019 Community College (Kingsboro) Student Aide 2864.84099 6.359947e+05 0.00 0.000000e+00 0.000 0.00 222 0.000000e+00 0.00 6.359947e+05 6.359947e+05 0.00 NULL
2019 Community College (Kingsboro) Supervisor Of Stock Workers 47071.00000 4.707100e+04 779.39 7.793900e+02 779.390 26.50 1 7.793900e+02 779.39 4.785039e+04 4.785039e+04 0.00 NULL
2019 Community College (Kingsboro) Supervisor Painter NA NA 12107.16 1.210716e+04 12107.160 169.00 1 1.210716e+04 12107.16 NA NA NA NULL
2019 Community College (Kingsboro) Thermostat Repairer NA NA 1079.80 1.079800e+03 1079.800 10.00 1 1.079800e+03 1079.80 NA NA NA NULL
2019 Community College (Kingsboro) University Architect 91191.00000 1.823820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.823820e+05 1.823820e+05 0.00 NULL
2019 Community College (Kingsboro) Vice President 176420.00000 1.234940e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.234940e+06 1.234940e+06 0.00 NULL
2019 Community College (Laguardia) Adjunct Assistant Professor 18403.93915 4.214502e+06 0.00 0.000000e+00 0.000 0.00 229 0.000000e+00 0.00 4.214502e+06 4.214502e+06 0.00 NULL
2019 Community College (Laguardia) Adjunct Associate Professor 22574.29286 4.740602e+05 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 4.740602e+05 4.740602e+05 0.00 NULL
2019 Community College (Laguardia) Adjunct College Lab Tech 9834.30994 8.359163e+05 0.00 0.000000e+00 0.000 0.00 85 0.000000e+00 0.00 8.359163e+05 8.359163e+05 0.00 NULL
2019 Community College (Laguardia) Adjunct Lecturer 15404.12642 1.158390e+07 0.00 0.000000e+00 0.000 0.00 752 0.000000e+00 0.00 1.158390e+07 1.158390e+07 0.00 NULL
2019 Community College (Laguardia) Adjunct Professor 14326.65000 1.289399e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.289399e+05 1.289399e+05 0.00 NULL
2019 Community College (Laguardia) Adjunct Senior College Lab Tech 33531.25000 3.353125e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.353125e+04 3.353125e+04 0.00 NULL
2019 Community College (Laguardia) Administrator 164115.00000 1.641150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.641150e+05 1.641150e+05 0.00 NULL
2019 Community College (Laguardia) Administrator Supt Campus B/G 81095.33333 2.432860e+05 8913.90 2.971300e+03 0.000 308.50 3 0.000000e+00 0.00 2.521999e+05 2.432860e+05 8913.90 NULL
2019 Community College (Laguardia) Assistant College Security Director 78943.00000 1.578860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.578860e+05 1.578860e+05 0.00 NULL
2019 Community College (Laguardia) Assistant Dean 134597.33333 4.037920e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.037920e+05 4.037920e+05 0.00 NULL
2019 Community College (Laguardia) Assistant Professor 61841.25953 7.915681e+06 0.00 0.000000e+00 0.000 0.00 128 0.000000e+00 0.00 7.915681e+06 7.915681e+06 0.00 NULL
2019 Community College (Laguardia) Assistant To Heo 57700.76136 5.077667e+06 0.00 0.000000e+00 0.000 0.00 88 0.000000e+00 0.00 5.077667e+06 5.077667e+06 0.00 NULL
2019 Community College (Laguardia) Assistant Vice President 149891.00000 1.498910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.498910e+05 1.498910e+05 0.00 NULL
2019 Community College (Laguardia) Associate Administrator 147360.80000 7.368040e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.368040e+05 7.368040e+05 0.00 NULL
2019 Community College (Laguardia) Associate Dean 140785.00000 7.039250e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.039250e+05 7.039250e+05 0.00 NULL
2019 Community College (Laguardia) Associate Professor 66605.37541 1.378731e+07 0.00 0.000000e+00 0.000 0.00 207 0.000000e+00 0.00 1.378731e+07 1.378731e+07 0.00 NULL
2019 Community College (Laguardia) Business Data And Reporting Analyst 38550.52445 3.084042e+05 2296.66 2.870825e+02 0.000 38.50 8 0.000000e+00 0.00 3.107009e+05 3.084042e+05 2296.66 NULL
2019 Community College (Laguardia) Campus Peace Officer 43118.60714 1.207321e+06 169984.30 6.070868e+03 5375.000 5501.67 28 5.375000e+03 150500.00 1.377305e+06 1.357821e+06 19484.30 NULL
2019 Community College (Laguardia) Campus Public Safety Sergeant 55550.22222 4.999520e+05 58846.19 6.538466e+03 6245.040 1396.00 9 6.245040e+03 56205.36 5.587982e+05 5.561574e+05 2640.83 NULL
2019 Community College (Laguardia) Campus Security Assistant 33348.40541 1.233891e+06 113218.65 3.059964e+03 2384.000 4950.34 37 2.384000e+03 88208.00 1.347110e+06 1.322099e+06 25010.65 NULL
2019 Community College (Laguardia) Chief Administrative Supt Campus B/G 121731.50000 2.434630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.434630e+05 2.434630e+05 0.00 NULL
2019 Community College (Laguardia) Chief College Lab Technician 82807.22222 7.452650e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.452650e+05 7.452650e+05 0.00 NULL
2019 Community College (Laguardia) Clip Instructor 50756.81818 5.583250e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.583250e+05 5.583250e+05 0.00 NULL
2019 Community College (Laguardia) College Accountant 46537.00000 1.396110e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.396110e+05 1.396110e+05 0.00 NULL
2019 Community College (Laguardia) College Accounting Assistant 46536.83333 2.792210e+05 902.63 1.504383e+02 0.000 24.00 6 0.000000e+00 0.00 2.801236e+05 2.792210e+05 902.63 NULL
2019 Community College (Laguardia) College Assistant 7160.39257 6.630524e+06 8593.42 9.280151e+00 0.000 255.67 926 0.000000e+00 0.00 6.639117e+06 6.630524e+06 8593.42 NULL
2019 Community College (Laguardia) College Graph Designer 63000.00000 6.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.300000e+04 6.300000e+04 0.00 NULL
2019 Community College (Laguardia) College Lab Technician 54592.49040 1.364812e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.364812e+06 1.364812e+06 0.00 NULL
2019 Community College (Laguardia) College Print Shop Coordinator 59450.00000 5.945000e+04 6581.20 6.581200e+03 6581.200 134.50 1 6.581200e+03 6581.20 6.603120e+04 6.603120e+04 0.00 NULL
2019 Community College (Laguardia) College Security Director 122750.00000 1.227500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.227500e+05 1.227500e+05 0.00 NULL
2019 Community College (Laguardia) College Security Specialist 63487.66667 1.904630e+05 62362.60 2.078753e+04 24387.070 1353.25 3 2.078753e+04 62362.60 2.528256e+05 2.528256e+05 0.00 NULL
2019 Community College (Laguardia) Computer Systems Manager 106232.40000 5.311620e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.311620e+05 5.311620e+05 0.00 NULL
2019 Community College (Laguardia) Continuing Education Teacher 6675.71506 1.695632e+06 0.00 0.000000e+00 0.000 0.00 254 0.000000e+00 0.00 1.695632e+06 1.695632e+06 0.00 NULL
2019 Community College (Laguardia) Cuny Administrator Assistant 53216.00000 9.046720e+05 4931.27 2.900747e+02 0.000 149.00 17 0.000000e+00 0.00 9.096033e+05 9.046720e+05 4931.27 NULL
2019 Community College (Laguardia) Cuny Art Model 1756.12500 1.053675e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.053675e+04 1.053675e+04 0.00 NULL
2019 Community College (Laguardia) Cuny Broadcast Associate 46035.00000 1.381050e+05 48662.25 1.622075e+04 16365.660 1347.00 3 1.622075e+04 48662.25 1.867672e+05 1.867672e+05 0.00 NULL
2019 Community College (Laguardia) Cuny Custodial Assistant 25435.69465 1.500706e+06 115116.53 1.951128e+03 416.740 4526.58 59 4.167400e+02 24587.66 1.615823e+06 1.525294e+06 90528.87 NULL
2019 Community College (Laguardia) Cuny Office Assistant 37671.39474 2.863026e+06 12731.42 1.675187e+02 0.000 499.00 76 0.000000e+00 0.00 2.875757e+06 2.863026e+06 12731.42 NULL
2019 Community College (Laguardia) Cuny Start Instructor 56680.00000 6.801600e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 6.801600e+05 6.801600e+05 0.00 NULL
2019 Community College (Laguardia) Custodial Supervisor 39522.00000 1.185660e+05 22683.20 7.561067e+03 8379.680 819.00 3 7.561067e+03 22683.20 1.412492e+05 1.412492e+05 0.00 NULL
2019 Community College (Laguardia) Dean 152682.00000 1.526820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.526820e+05 1.526820e+05 0.00 NULL
2019 Community College (Laguardia) Facilities Coordinator 59557.00000 1.786710e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.786710e+05 1.786710e+05 0.00 NULL
2019 Community College (Laguardia) Higher Education Assistant 72746.97222 1.047556e+07 1221.23 8.480764e+00 0.000 16.50 144 0.000000e+00 0.00 1.047679e+07 1.047556e+07 1221.23 NULL
2019 Community College (Laguardia) Higher Education Associate 93012.40816 9.115216e+06 0.00 0.000000e+00 0.000 0.00 98 0.000000e+00 0.00 9.115216e+06 9.115216e+06 0.00 NULL
2019 Community College (Laguardia) Higher Education Officer 121253.25926 6.547676e+06 0.00 0.000000e+00 0.000 0.00 54 0.000000e+00 0.00 6.547676e+06 6.547676e+06 0.00 NULL
2019 Community College (Laguardia) Instructor 41549.06944 3.739416e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 3.739416e+05 3.739416e+05 0.00 NULL
2019 Community College (Laguardia) It Assistant 49188.35174 1.131332e+06 7829.63 3.404187e+02 0.000 155.50 23 0.000000e+00 0.00 1.139162e+06 1.131332e+06 7829.63 NULL
2019 Community College (Laguardia) It Associate 71101.00000 1.564222e+06 16374.59 7.442995e+02 0.000 222.00 22 0.000000e+00 0.00 1.580597e+06 1.564222e+06 16374.59 NULL
2019 Community College (Laguardia) It Senior Associate 94739.30769 1.231611e+06 5491.54 4.224262e+02 0.000 64.00 13 0.000000e+00 0.00 1.237103e+06 1.231611e+06 5491.54 NULL
2019 Community College (Laguardia) It Support Assistant 34460.75728 7.925974e+05 1630.68 7.089913e+01 0.000 128.00 23 0.000000e+00 0.00 7.942281e+05 7.925974e+05 1630.68 NULL
2019 Community College (Laguardia) Lecturer 51937.21368 3.947228e+06 0.00 0.000000e+00 0.000 0.00 76 0.000000e+00 0.00 3.947228e+06 3.947228e+06 0.00 NULL
2019 Community College (Laguardia) Lecturer/Doctoral Schedule 80174.33333 2.405230e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.405230e+05 2.405230e+05 0.00 NULL
2019 Community College (Laguardia) Mail/Message Services Worker 38972.18182 4.286940e+05 25164.94 2.287722e+03 474.420 813.75 11 4.744200e+02 5218.62 4.538589e+05 4.339126e+05 19946.32 NULL
2019 Community College (Laguardia) Media Services Technician 62490.00000 6.249000e+04 31607.60 3.160760e+04 31607.600 670.25 1 3.160760e+04 31607.60 9.409760e+04 9.409760e+04 0.00 NULL
2019 Community College (Laguardia) Non-Teaching Adjunct I 1185.44173 4.172755e+05 0.00 0.000000e+00 0.000 0.00 352 0.000000e+00 0.00 4.172755e+05 4.172755e+05 0.00 NULL
2019 Community College (Laguardia) Non-Teaching Adjunct Ii 280.03000 1.120120e+03 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.120120e+03 1.120120e+03 0.00 NULL
2019 Community College (Laguardia) Non-Teaching Adjunct Iii 3039.60452 2.370892e+05 0.00 0.000000e+00 0.000 0.00 78 0.000000e+00 0.00 2.370892e+05 2.370892e+05 0.00 NULL
2019 Community College (Laguardia) Non-Teaching Adjunct Iv 3429.00056 1.680210e+05 0.00 0.000000e+00 0.000 0.00 49 0.000000e+00 0.00 1.680210e+05 1.680210e+05 0.00 NULL
2019 Community College (Laguardia) Non-Teaching Adjunct V 2211.77800 6.635334e+04 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 6.635334e+04 6.635334e+04 0.00 NULL
2019 Community College (Laguardia) President 293000.00000 2.930000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.930000e+05 2.930000e+05 0.00 NULL
2019 Community College (Laguardia) Professor 80010.65253 1.368182e+07 0.00 0.000000e+00 0.000 0.00 171 0.000000e+00 0.00 1.368182e+07 1.368182e+07 0.00 NULL
2019 Community College (Laguardia) Project Manager 83416.00000 8.341600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.341600e+04 8.341600e+04 0.00 NULL
2019 Community College (Laguardia) Purchasing Agent 59390.75000 2.375630e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.375630e+05 2.375630e+05 0.00 NULL
2019 Community College (Laguardia) Senior College Lab Tech 66773.00000 7.345030e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.345030e+05 7.345030e+05 0.00 NULL
2019 Community College (Laguardia) Senior Vice President 198032.00000 1.980320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.980320e+05 1.980320e+05 0.00 NULL
2019 Community College (Laguardia) Sign Language Interpreter 21162.81190 4.867447e+05 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 4.867447e+05 4.867447e+05 0.00 NULL
2019 Community College (Laguardia) Staff Nurse 89608.00000 8.960800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.960800e+04 8.960800e+04 0.00 NULL
2019 Community College (Laguardia) Supervisor Of Stock Workers 36461.00000 3.646100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.646100e+04 3.646100e+04 0.00 NULL
2019 Community College (Laguardia) University Assistant Architect 60516.50000 1.210330e+05 7968.78 3.984390e+03 3984.390 202.00 2 3.984390e+03 7968.78 1.290018e+05 1.290018e+05 0.00 NULL
2019 Community College (Laguardia) University Assistant Engineer 69411.00000 6.941100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.941100e+04 6.941100e+04 0.00 NULL
2019 Community College (Laguardia) Vice President 179979.85714 1.259859e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.259859e+06 1.259859e+06 0.00 NULL
2019 Community College (Manhattan) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 390 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Manhattan) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Manhattan) Adjunct College Lab Tech 8504.51318 6.633520e+05 0.00 0.000000e+00 0.000 0.00 78 0.000000e+00 0.00 6.633520e+05 6.633520e+05 0.00 NULL
2019 Community College (Manhattan) Adjunct Lecturer NA NA 364.50 3.161318e-01 0.000 27.00 1153 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Manhattan) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Manhattan) Adjunct Senior College Lab Tech 5665.04897 2.209369e+05 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 2.209369e+05 2.209369e+05 0.00 NULL
2019 Community College (Manhattan) Administrator 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2019 Community College (Manhattan) Administrator Supt Campus B/G 99159.50000 3.966380e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.966380e+05 3.966380e+05 0.00 NULL
2019 Community College (Manhattan) Assistant Administrator 123666.66667 3.710000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.710000e+05 3.710000e+05 0.00 NULL
2019 Community College (Manhattan) Assistant College Security Director 77512.42857 5.425870e+05 1869.52 2.670743e+02 0.000 39.00 7 0.000000e+00 0.00 5.444565e+05 5.425870e+05 1869.52 NULL
2019 Community College (Manhattan) Assistant Dean 122000.00000 1.220000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.220000e+05 1.220000e+05 0.00 NULL
2019 Community College (Manhattan) Assistant Media Services Technican 20279.26600 1.013963e+05 2980.16 5.960320e+02 172.500 188.50 5 1.725000e+02 862.50 1.043765e+05 1.022588e+05 2117.66 NULL
2019 Community College (Manhattan) Assistant Principal Custodial Supervisor 43503.00000 8.700600e+04 50581.19 2.529060e+04 25290.595 1664.00 2 2.529060e+04 50581.19 1.375872e+05 1.375872e+05 0.00 NULL
2019 Community College (Manhattan) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 308 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Manhattan) Assistant Purchasing Agent 44506.00000 4.450600e+04 120.51 1.205100e+02 120.510 5.25 1 1.205100e+02 120.51 4.462651e+04 4.462651e+04 0.00 NULL
2019 Community College (Manhattan) Assistant To Heo 52468.47059 4.459820e+06 3746.24 4.407341e+01 0.000 78.00 85 0.000000e+00 0.00 4.463566e+06 4.459820e+06 3746.24 NULL
2019 Community College (Manhattan) Assistant Vice President 144381.50000 2.887630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.887630e+05 2.887630e+05 0.00 NULL
2019 Community College (Manhattan) Associate Administrator 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2019 Community College (Manhattan) Associate Dean 148495.00000 1.484950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.484950e+05 1.484950e+05 0.00 NULL
2019 Community College (Manhattan) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 219 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Manhattan) Business Data And Reporting Analyst 42912.19531 3.432976e+05 9907.57 1.238446e+03 995.385 403.50 8 9.953850e+02 7963.08 3.532051e+05 3.512606e+05 1944.49 NULL
2019 Community College (Manhattan) Campus Peace Officer 40013.50000 1.520513e+06 215790.15 5.678688e+03 4341.995 7664.83 38 4.341995e+03 164995.81 1.736303e+06 1.685509e+06 50794.34 NULL
2019 Community College (Manhattan) Campus Public Safety Sergeant 55409.42857 7.757320e+05 55983.42 3.998816e+03 3535.160 1500.75 14 3.535160e+03 49492.24 8.317154e+05 8.252242e+05 6491.18 NULL
2019 Community College (Manhattan) Campus Security Assistant 31857.61389 1.433593e+06 206220.31 4.582674e+03 2522.930 8821.09 45 2.522930e+03 113531.85 1.639813e+06 1.547124e+06 92688.46 NULL
2019 Community College (Manhattan) Carpenter NA NA 118453.49 1.480669e+04 13417.345 1469.75 8 1.341734e+04 107338.76 NA NA NA NULL
2019 Community College (Manhattan) Chief Administrator Supt Campus B/G 140902.00000 1.409020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.409020e+05 1.409020e+05 0.00 NULL
2019 Community College (Manhattan) City Laborer NA NA 165298.16 2.361402e+04 18689.010 3013.00 7 1.868901e+04 130823.07 NA NA NA NULL
2019 Community College (Manhattan) Clip Instructor 52893.90000 5.289390e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.289390e+05 5.289390e+05 0.00 NULL
2019 Community College (Manhattan) College Accountant 51334.00000 5.133400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.133400e+04 5.133400e+04 0.00 NULL
2019 Community College (Manhattan) College Accounting Assistant 45847.16667 5.501660e+05 7562.45 6.302042e+02 0.000 250.75 12 0.000000e+00 0.00 5.577284e+05 5.501660e+05 7562.45 NULL
2019 Community College (Manhattan) College Assistant 5840.22196 6.873941e+06 175188.26 1.488430e+02 0.000 12036.92 1177 0.000000e+00 0.00 7.049130e+06 6.873941e+06 175188.26 NULL
2019 Community College (Manhattan) College Graph Designer 45840.00000 9.168000e+04 12.55 6.275000e+00 6.275 0.50 2 6.275000e+00 12.55 9.169255e+04 9.169255e+04 0.00 NULL
2019 Community College (Manhattan) College Lab Technician 55254.73684 1.049840e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.049840e+06 1.049840e+06 0.00 NULL
2019 Community College (Manhattan) College Print Shop Assistant 30505.57143 2.135390e+05 1632.01 2.331443e+02 89.140 93.25 7 8.914000e+01 623.98 2.151710e+05 2.141630e+05 1008.03 NULL
2019 Community College (Manhattan) College Print Shop Associate 33350.00000 3.335000e+04 91.26 9.126000e+01 91.260 4.00 1 9.126000e+01 91.26 3.344126e+04 3.344126e+04 0.00 NULL
2019 Community College (Manhattan) College Print Shop Coordinator 59450.00000 5.945000e+04 2180.11 2.180110e+03 2180.110 56.25 1 2.180110e+03 2180.11 6.163011e+04 6.163011e+04 0.00 NULL
2019 Community College (Manhattan) College Security Director 125292.00000 1.252920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.252920e+05 1.252920e+05 0.00 NULL
2019 Community College (Manhattan) Computer Systems Manager 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2019 Community College (Manhattan) Continuing Education Teacher 10114.32295 1.618292e+06 0.00 0.000000e+00 0.000 0.00 160 0.000000e+00 0.00 1.618292e+06 1.618292e+06 0.00 NULL
2019 Community College (Manhattan) Cuny Administrator Assistant 51319.63636 5.645160e+05 2962.84 2.693491e+02 0.000 107.00 11 0.000000e+00 0.00 5.674788e+05 5.645160e+05 2962.84 NULL
2019 Community College (Manhattan) Cuny Art Model 4035.00000 2.421000e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.421000e+04 2.421000e+04 0.00 NULL
2019 Community College (Manhattan) Cuny Broadcast Associate 66154.00000 6.615400e+04 506.93 5.069300e+02 506.930 11.00 1 5.069300e+02 506.93 6.666093e+04 6.666093e+04 0.00 NULL
2019 Community College (Manhattan) Cuny Custodial Assistant 26353.00917 3.346832e+06 367787.55 2.895965e+03 1147.500 17566.50 127 1.147500e+03 145732.50 3.714620e+06 3.492565e+06 222055.05 NULL
2019 Community College (Manhattan) Cuny Office Assistant 36552.16304 3.362799e+06 30860.82 3.354437e+02 0.000 1251.75 92 0.000000e+00 0.00 3.393660e+06 3.362799e+06 30860.82 NULL
2019 Community College (Manhattan) Cuny Start Instructor 57147.90476 1.200106e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.200106e+06 1.200106e+06 0.00 NULL
2019 Community College (Manhattan) Custodial Supervisor 35277.30769 4.586050e+05 35918.76 2.762982e+03 903.310 1455.25 13 9.033100e+02 11743.03 4.945238e+05 4.703480e+05 24175.73 NULL
2019 Community College (Manhattan) Dean 157980.00000 6.319200e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.319200e+05 6.319200e+05 0.00 NULL
2019 Community College (Manhattan) Disability Accommodations Specialist 43282.00000 4.328200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.328200e+04 4.328200e+04 0.00 NULL
2019 Community College (Manhattan) Electrician NA NA 78071.58 7.097416e+03 4278.700 898.00 11 4.278700e+03 47065.70 NA NA NA NULL
2019 Community College (Manhattan) Electrician’s Helper NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Manhattan) Eoc Accounting Assistant 41204.00000 8.240800e+04 972.77 4.863850e+02 486.385 41.14 2 4.863850e+02 972.77 8.338077e+04 8.338077e+04 0.00 NULL
2019 Community College (Manhattan) Eoc Adjunct College Lab Tech 14098.99500 1.409900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.409900e+04 1.409900e+04 0.00 NULL
2019 Community College (Manhattan) Eoc Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Manhattan) Eoc Assistant To Heo 58917.10000 5.891710e+05 813.11 8.131100e+01 0.000 8.50 10 0.000000e+00 0.00 5.899841e+05 5.891710e+05 813.11 NULL
2019 Community College (Manhattan) Eoc College Lab Technician 58921.00000 1.178420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.178420e+05 1.178420e+05 0.00 NULL
2019 Community College (Manhattan) Eoc Higher Education Assistant 88075.50000 3.523020e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.523020e+05 3.523020e+05 0.00 NULL
2019 Community College (Manhattan) Eoc Higher Education Associate 87495.00000 8.749500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.749500e+04 8.749500e+04 0.00 NULL
2019 Community College (Manhattan) Eoc Higher Education Officer 112901.50000 4.516060e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.516060e+05 4.516060e+05 0.00 NULL
2019 Community College (Manhattan) Eoc Lecturer 79487.66667 7.153890e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.153890e+05 7.153890e+05 0.00 NULL
2019 Community College (Manhattan) Eoc Lecturer/ Doctral Schedule 83411.50000 1.668230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.668230e+05 1.668230e+05 0.00 NULL
2019 Community College (Manhattan) Eoc Mail/Message Services Worker 32995.00000 6.599000e+04 66.93 3.346500e+01 33.465 2.42 2 3.346500e+01 66.93 6.605693e+04 6.605693e+04 0.00 NULL
2019 Community College (Manhattan) Eoc Office Assistant 39939.60000 3.993960e+05 2340.65 2.340650e+02 103.625 97.75 10 1.036250e+02 1036.25 4.017367e+05 4.004322e+05 1304.40 NULL
2019 Community College (Manhattan) Facilities Coordinator 59557.00000 5.955700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.955700e+04 5.955700e+04 0.00 NULL
2019 Community College (Manhattan) Higher Education Assistant 68834.06250 1.101345e+07 3388.39 2.117744e+01 0.000 60.75 160 0.000000e+00 0.00 1.101684e+07 1.101345e+07 3388.39 NULL
2019 Community College (Manhattan) Higher Education Associate 90323.00000 6.954871e+06 633.91 8.232597e+00 0.000 11.00 77 0.000000e+00 0.00 6.955505e+06 6.954871e+06 633.91 NULL
2019 Community College (Manhattan) Higher Education Officer 119513.63636 5.258600e+06 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 5.258600e+06 5.258600e+06 0.00 NULL
2019 Community College (Manhattan) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 42 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Manhattan) It Assistant 52692.42375 8.430788e+05 11562.41 7.226506e+02 0.000 246.50 16 0.000000e+00 0.00 8.546412e+05 8.430788e+05 11562.41 NULL
2019 Community College (Manhattan) It Associate 62127.65625 4.970212e+05 9446.38 1.180797e+03 756.920 203.25 8 7.569200e+02 6055.36 5.064676e+05 5.030766e+05 3391.02 NULL
2019 Community College (Manhattan) It Senior Associate 94186.40000 4.709320e+05 1042.87 2.085740e+02 0.000 39.25 5 0.000000e+00 0.00 4.719749e+05 4.709320e+05 1042.87 NULL
2019 Community College (Manhattan) It Support Assistant 24996.24694 6.748987e+05 965.25 3.575000e+01 0.000 35.50 27 0.000000e+00 0.00 6.758639e+05 6.748987e+05 965.25 NULL
2019 Community College (Manhattan) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 103 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Manhattan) Lecturer/Doctoral Schedule 73367.00000 3.668350e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.668350e+05 3.668350e+05 0.00 NULL
2019 Community College (Manhattan) Locksmith NA NA 4954.30 2.477150e+03 2477.150 112.50 2 2.477150e+03 4954.30 NA NA NA NULL
2019 Community College (Manhattan) Mail/Message Services Worker 32943.75000 1.317750e+05 233.09 5.827250e+01 16.645 10.00 4 1.664500e+01 66.58 1.320081e+05 1.318416e+05 166.51 NULL
2019 Community College (Manhattan) Maintenance Worker NA NA 24646.45 6.161613e+03 7130.395 576.75 4 6.161613e+03 24646.45 NA NA NA NULL
2019 Community College (Manhattan) Non-Teaching Adjunct I NA NA 0.00 0.000000e+00 0.000 0.00 455 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Manhattan) Non-Teaching Adjunct Ii NA NA 0.00 0.000000e+00 0.000 0.00 114 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Manhattan) Non-Teaching Adjunct Iii 1404.64988 1.713673e+05 0.00 0.000000e+00 0.000 0.00 122 0.000000e+00 0.00 1.713673e+05 1.713673e+05 0.00 NULL
2019 Community College (Manhattan) Non-Teaching Adjunct Iv 1298.47149 4.804344e+04 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 4.804344e+04 4.804344e+04 0.00 NULL
2019 Community College (Manhattan) Non-Teaching Adjunct V 3194.50100 6.389002e+04 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 6.389002e+04 6.389002e+04 0.00 NULL
2019 Community College (Manhattan) Oiler NA NA 226603.40 1.743103e+04 15350.180 2527.50 13 1.535018e+04 199552.34 NA NA NA NULL
2019 Community College (Manhattan) Painter NA NA 75451.75 1.257529e+04 16841.185 1183.25 6 1.257529e+04 75451.75 NA NA NA NULL
2019 Community College (Manhattan) Plumber NA NA 149355.54 2.987111e+04 29991.010 1377.50 5 2.987111e+04 149355.54 NA NA NA NULL
2019 Community College (Manhattan) President 230500.00000 4.610000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.610000e+05 4.610000e+05 0.00 NULL
2019 Community College (Manhattan) Principal Custodial Supervisor 57330.66667 1.719920e+05 27089.89 9.029963e+03 8213.890 596.00 3 8.213890e+03 24641.67 1.990819e+05 1.966337e+05 2448.22 NULL
2019 Community College (Manhattan) Professor NA NA 0.00 0.000000e+00 0.000 0.00 159 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Manhattan) Purchasing Agent 57930.60000 2.896530e+05 945.36 1.890720e+02 175.910 33.50 5 1.759100e+02 879.55 2.905984e+05 2.905325e+05 65.81 NULL
2019 Community College (Manhattan) Research Assistant 42014.00000 4.201400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.201400e+04 4.201400e+04 0.00 NULL
2019 Community College (Manhattan) Senior College Lab Tech 69083.23529 1.174415e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.174415e+06 1.174415e+06 0.00 NULL
2019 Community College (Manhattan) Senior Custodial Supervisor 38721.00000 7.744200e+04 25413.20 1.270660e+04 12706.600 911.00 2 1.270660e+04 25413.20 1.028552e+05 1.028552e+05 0.00 NULL
2019 Community College (Manhattan) Senior Stationary Engineer NA NA 75332.58 3.766629e+04 37666.290 748.25 2 3.766629e+04 75332.58 NA NA NA NULL
2019 Community College (Manhattan) Senior Vice President 195450.00000 1.954500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.954500e+05 1.954500e+05 0.00 NULL
2019 Community College (Manhattan) Sign Language Interpreter 23811.01875 9.524407e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 9.524407e+04 9.524407e+04 0.00 NULL
2019 Community College (Manhattan) Staff Nurse 95434.00000 9.543400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.543400e+04 9.543400e+04 0.00 NULL
2019 Community College (Manhattan) Stationary Engineer NA NA 244581.91 2.223472e+04 23286.510 2602.00 11 2.223472e+04 244581.91 NA NA NA NULL
2019 Community College (Manhattan) Stock Worker 33735.00000 1.012050e+05 1269.43 4.231433e+02 166.170 63.25 3 1.661700e+02 498.51 1.024744e+05 1.017035e+05 770.92 NULL
2019 Community College (Manhattan) Student Aide 2177.31250 1.959581e+05 5478.75 6.087500e+01 0.000 500.25 90 0.000000e+00 0.00 2.014369e+05 1.959581e+05 5478.75 NULL
2019 Community College (Manhattan) Supervisor Of Stock Workers 56785.00000 5.678500e+04 388.51 3.885100e+02 388.510 11.00 1 3.885100e+02 388.51 5.717351e+04 5.717351e+04 0.00 NULL
2019 Community College (Manhattan) Supervisor Painter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Manhattan) Thermostat Repairer NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Manhattan) Vice President 190731.00000 1.144386e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.144386e+06 1.144386e+06 0.00 NULL
2019 Community College (Queensboro) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 130 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Queensboro) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Queensboro) Adjunct College Lab Tech 9029.83730 7.314168e+05 0.00 0.000000e+00 0.000 0.00 81 0.000000e+00 0.00 7.314168e+05 7.314168e+05 0.00 NULL
2019 Community College (Queensboro) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 436 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Queensboro) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Queensboro) Adjunct Senior College Lab Tech 8739.50050 8.739501e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 8.739501e+04 8.739501e+04 0.00 NULL
2019 Community College (Queensboro) Administrator 155622.66667 4.668680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.668680e+05 4.668680e+05 0.00 NULL
2019 Community College (Queensboro) Administrator Supt Campus B/G 87017.34000 2.610520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.610520e+05 2.610520e+05 0.00 NULL
2019 Community College (Queensboro) Assistant Administrator 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2019 Community College (Queensboro) Assistant College Security Director 89368.00000 1.787360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.787360e+05 1.787360e+05 0.00 NULL
2019 Community College (Queensboro) Assistant Dean 130000.00000 5.200000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.200000e+05 5.200000e+05 0.00 NULL
2019 Community College (Queensboro) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 218 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Queensboro) Assistant To Heo 52690.70149 3.530277e+06 0.00 0.000000e+00 0.000 0.00 67 0.000000e+00 0.00 3.530277e+06 3.530277e+06 0.00 NULL
2019 Community College (Queensboro) Associate Administrator 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2019 Community College (Queensboro) Associate Dean 142500.00000 1.425000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.425000e+05 1.425000e+05 0.00 NULL
2019 Community College (Queensboro) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 183 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Queensboro) Auto Mechanic NA NA 725.41 7.254100e+02 725.410 12.00 1 7.254100e+02 725.41 NA NA NA NULL
2019 Community College (Queensboro) Campus Peace Officer 44214.63333 1.326439e+06 180738.59 6.024620e+03 4848.705 5373.50 30 4.848705e+03 145461.15 1.507178e+06 1.471900e+06 35277.44 NULL
2019 Community College (Queensboro) Campus Public Safety Sergeant 55370.00000 4.983300e+05 47505.07 5.278341e+03 3261.750 1190.75 9 3.261750e+03 29355.75 5.458351e+05 5.276858e+05 18149.32 NULL
2019 Community College (Queensboro) Campus Security Assistant 33135.75000 5.301720e+05 29806.64 1.862915e+03 978.890 1194.75 16 9.788900e+02 15662.24 5.599786e+05 5.458342e+05 14144.40 NULL
2019 Community College (Queensboro) Carpenter NA NA 132619.48 3.315487e+04 39232.360 1630.00 4 3.315487e+04 132619.48 NA NA NA NULL
2019 Community College (Queensboro) Cement Mason NA NA 33926.92 3.392692e+04 33926.920 338.00 1 3.392692e+04 33926.92 NA NA NA NULL
2019 Community College (Queensboro) Chief Administrative Supt Campus B/G 142658.00000 1.426580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.426580e+05 1.426580e+05 0.00 NULL
2019 Community College (Queensboro) Chief College Lab Technician 46818.84167 4.213696e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.213696e+05 4.213696e+05 0.00 NULL
2019 Community College (Queensboro) City Laborer NA NA 168538.89 2.407698e+04 22223.800 2944.00 7 2.222380e+04 155566.60 NA NA NA NULL
2019 Community College (Queensboro) Clip Instructor 51655.60000 5.165560e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.165560e+05 5.165560e+05 0.00 NULL
2019 Community College (Queensboro) College Accountant 57971.50000 2.318860e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.318860e+05 2.318860e+05 0.00 NULL
2019 Community College (Queensboro) College Accounting Assistant 49710.00000 4.971000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.971000e+04 4.971000e+04 0.00 NULL
2019 Community College (Queensboro) College Assistant 5951.26098 4.826473e+06 50.63 6.242910e-02 0.000 2.50 811 0.000000e+00 0.00 4.826523e+06 4.826473e+06 50.63 NULL
2019 Community College (Queensboro) College Graph Designer 63742.00000 6.374200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.374200e+04 6.374200e+04 0.00 NULL
2019 Community College (Queensboro) College Lab Technician 46596.63520 1.164916e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.164916e+06 1.164916e+06 0.00 NULL
2019 Community College (Queensboro) College Print Shop Assistant 36295.00000 3.629500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.629500e+04 3.629500e+04 0.00 NULL
2019 Community College (Queensboro) College Print Shop Associate 42570.00000 8.514000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.514000e+04 8.514000e+04 0.00 NULL
2019 Community College (Queensboro) College Security Director 147704.00000 1.477040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.477040e+05 1.477040e+05 0.00 NULL
2019 Community College (Queensboro) College Security Specialist 58317.00000 1.166340e+05 9049.23 4.524615e+03 4524.615 216.00 2 4.524615e+03 9049.23 1.256832e+05 1.256832e+05 0.00 NULL
2019 Community College (Queensboro) Computer Systems Manager 131602.80000 6.580140e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.580140e+05 6.580140e+05 0.00 NULL
2019 Community College (Queensboro) Continuing Education Teacher 5884.41227 1.271033e+06 0.00 0.000000e+00 0.000 0.00 216 0.000000e+00 0.00 1.271033e+06 1.271033e+06 0.00 NULL
2019 Community College (Queensboro) Cuny Administrator Assistant 51441.70968 1.594693e+06 1863.30 6.010645e+01 0.000 53.50 31 0.000000e+00 0.00 1.596556e+06 1.594693e+06 1863.30 NULL
2019 Community College (Queensboro) Cuny Broadcast Associate 50558.00000 5.055800e+04 69.18 6.918000e+01 69.180 2.50 1 6.918000e+01 69.18 5.062718e+04 5.062718e+04 0.00 NULL
2019 Community College (Queensboro) Cuny Custodial Assistant 27211.21974 1.605462e+06 171499.14 2.906765e+03 570.420 6414.92 59 5.704200e+02 33654.78 1.776961e+06 1.639117e+06 137844.36 NULL
2019 Community College (Queensboro) Cuny Office Assistant 37451.93421 2.846347e+06 2514.45 3.308487e+01 0.000 103.50 76 0.000000e+00 0.00 2.848861e+06 2.846347e+06 2514.45 NULL
2019 Community College (Queensboro) Cuny Start Instructor 58802.13333 8.820320e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 8.820320e+05 8.820320e+05 0.00 NULL
2019 Community College (Queensboro) Custodial Supervisor 35913.00000 2.513910e+05 12752.54 1.821791e+03 915.900 465.00 7 9.159000e+02 6411.30 2.641435e+05 2.578023e+05 6341.24 NULL
2019 Community College (Queensboro) Dean 156333.33333 9.380000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.380000e+05 9.380000e+05 0.00 NULL
2019 Community College (Queensboro) Disability Accommodations Specialist 24736.35964 1.731545e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.731545e+05 1.731545e+05 0.00 NULL
2019 Community College (Queensboro) Electrician NA NA 101740.10 1.271751e+04 11998.625 1358.25 8 1.199862e+04 95989.00 NA NA NA NULL
2019 Community College (Queensboro) Facilities Coordinator 71949.00000 7.194900e+04 3214.63 3.214630e+03 3214.630 74.50 1 3.214630e+03 3214.63 7.516363e+04 7.516363e+04 0.00 NULL
2019 Community College (Queensboro) High Pressure Plant Tender NA NA 55107.51 1.102150e+04 12775.000 1098.00 5 1.102150e+04 55107.51 NA NA NA NULL
2019 Community College (Queensboro) Higher Education Assistant 72726.70213 6.836310e+06 0.00 0.000000e+00 0.000 0.00 94 0.000000e+00 0.00 6.836310e+06 6.836310e+06 0.00 NULL
2019 Community College (Queensboro) Higher Education Associate 95009.28571 5.320520e+06 0.00 0.000000e+00 0.000 0.00 56 0.000000e+00 0.00 5.320520e+06 5.320520e+06 0.00 NULL
2019 Community College (Queensboro) Higher Education Officer 116585.45833 5.596102e+06 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 5.596102e+06 5.596102e+06 0.00 NULL
2019 Community College (Queensboro) Higher Education Officer/Asst Administrator 136155.00000 1.361550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.361550e+05 1.361550e+05 0.00 NULL
2019 Community College (Queensboro) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Queensboro) It Assistant 55974.00000 1.679220e+05 8385.57 2.795190e+03 2771.900 232.50 3 2.771900e+03 8315.70 1.763076e+05 1.762377e+05 69.87 NULL
2019 Community College (Queensboro) It Associate 69296.33333 4.157780e+05 7723.14 1.287190e+03 0.000 175.75 6 0.000000e+00 0.00 4.235011e+05 4.157780e+05 7723.14 NULL
2019 Community College (Queensboro) It Senior Associate 97425.55556 8.768300e+05 33528.80 3.725422e+03 2223.680 460.25 9 2.223680e+03 20013.12 9.103588e+05 8.968431e+05 13515.68 NULL
2019 Community College (Queensboro) It Support Assistant 15829.84367 2.374477e+05 77.88 5.192000e+00 0.000 3.00 15 0.000000e+00 0.00 2.375255e+05 2.374477e+05 77.88 NULL
2019 Community College (Queensboro) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 140 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Queensboro) Lecturer/Doctoral Schedule 76621.50000 6.129720e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.129720e+05 6.129720e+05 0.00 NULL
2019 Community College (Queensboro) Locksmith NA NA 5106.00 5.106000e+03 5106.000 125.00 1 5.106000e+03 5106.00 NA NA NA NULL
2019 Community College (Queensboro) Mail/Message Services Worker 37912.00000 7.582400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.582400e+04 7.582400e+04 0.00 NULL
2019 Community College (Queensboro) Maintenance Worker NA NA 87758.68 2.193967e+04 18613.075 1928.00 4 1.861308e+04 74452.30 NA NA NA NULL
2019 Community College (Queensboro) Motor Vehicle Operator 42113.33333 1.263400e+05 5522.47 1.840823e+03 2300.240 199.08 3 1.840823e+03 5522.47 1.318625e+05 1.318625e+05 0.00 NULL
2019 Community College (Queensboro) Non-Teaching Adjunct I 4902.55240 8.432390e+05 0.00 0.000000e+00 0.000 0.00 172 0.000000e+00 0.00 8.432390e+05 8.432390e+05 0.00 NULL
2019 Community College (Queensboro) Non-Teaching Adjunct Iii 1100.12603 9.571096e+04 0.00 0.000000e+00 0.000 0.00 87 0.000000e+00 0.00 9.571096e+04 9.571096e+04 0.00 NULL
2019 Community College (Queensboro) Non-Teaching Adjunct Iv 1236.81370 5.689343e+04 0.00 0.000000e+00 0.000 0.00 46 0.000000e+00 0.00 5.689343e+04 5.689343e+04 0.00 NULL
2019 Community College (Queensboro) Non-Teaching Adjunct V 784.05429 1.646514e+04 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.646514e+04 1.646514e+04 0.00 NULL
2019 Community College (Queensboro) Oiler NA NA 44999.94 2.249997e+04 22499.970 509.75 2 2.249997e+04 44999.94 NA NA NA NULL
2019 Community College (Queensboro) Painter NA NA 23789.20 2.378920e+04 23789.200 373.75 1 2.378920e+04 23789.20 NA NA NA NULL
2019 Community College (Queensboro) Plumber NA NA 49052.06 2.452603e+04 24526.030 468.75 2 2.452603e+04 49052.06 NA NA NA NULL
2019 Community College (Queensboro) President 225500.00000 4.510000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.510000e+05 4.510000e+05 0.00 NULL
2019 Community College (Queensboro) Professor NA NA 0.00 0.000000e+00 0.000 0.00 121 0.000000e+00 0.00 NA NA NA NULL
2019 Community College (Queensboro) Project Manager 87828.00000 8.782800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.782800e+04 8.782800e+04 0.00 NULL
2019 Community College (Queensboro) Senior College Lab Tech 68567.83333 1.645628e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 1.645628e+06 1.645628e+06 0.00 NULL
2019 Community College (Queensboro) Senior Custodial Supervisor 38777.00000 7.755400e+04 20438.67 1.021933e+04 10219.335 650.25 2 1.021933e+04 20438.67 9.799267e+04 9.799267e+04 0.00 NULL
2019 Community College (Queensboro) Senior Stationary Engineer NA NA 9656.93 9.656930e+03 9656.930 91.00 1 9.656930e+03 9656.93 NA NA NA NULL
2019 Community College (Queensboro) Senior Vice President 199500.00000 1.995000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.995000e+05 1.995000e+05 0.00 NULL
2019 Community College (Queensboro) Sr College Laboratory Tech 6295.46500 7.554558e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.554558e+04 7.554558e+04 0.00 NULL
2019 Community College (Queensboro) Staff Nurse 75982.98500 1.519660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.519660e+05 1.519660e+05 0.00 NULL
2019 Community College (Queensboro) Stationary Engineer NA NA 229199.49 3.819992e+04 38990.835 2569.00 6 3.819992e+04 229199.49 NA NA NA NULL
2019 Community College (Queensboro) Stock Worker 33735.00000 3.373500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.373500e+04 3.373500e+04 0.00 NULL
2019 Community College (Queensboro) Supervisor Of Stock Workers 56785.00000 5.678500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.678500e+04 5.678500e+04 0.00 NULL
2019 Community College (Queensboro) Supervisor Painter NA NA 37169.12 3.716912e+04 37169.120 469.00 1 3.716912e+04 37169.12 NA NA NA NULL
2019 Community College (Queensboro) Thermostat Repairer NA NA 59697.28 5.969728e+04 59697.280 554.50 1 5.969728e+04 59697.28 NA NA NA NULL
2019 Community College (Queensboro) University Engineer 92311.00000 9.231100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.231100e+04 9.231100e+04 0.00 NULL
2019 Community College (Queensboro) Vice President 183431.83333 1.100591e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.100591e+06 1.100591e+06 0.00 NULL
2019 Community College (Queensboro) NA 56405.00000 1.128100e+05 35486.28 1.774314e+04 17743.140 849.25 2 1.774314e+04 35486.28 1.482963e+05 1.482963e+05 0.00 NULL
2019 Conflicts Of Interest Board Administrative Claim Examiner 107864.00000 1.078640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.078640e+05 1.078640e+05 0.00 NULL
2019 Conflicts Of Interest Board Administrative Staff Analyst 146013.00000 1.460130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.460130e+05 1.460130e+05 0.00 NULL
2019 Conflicts Of Interest Board Agency Attorney 79020.28571 5.531420e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.531420e+05 5.531420e+05 0.00 NULL
2019 Conflicts Of Interest Board Agency Chief Contracting Officer 126354.00000 1.263540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.263540e+05 1.263540e+05 0.00 NULL
2019 Conflicts Of Interest Board Community Associate 51506.16667 3.090370e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.090370e+05 3.090370e+05 0.00 NULL
2019 Conflicts Of Interest Board Community Coordinator 63380.00000 6.338000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.338000e+04 6.338000e+04 0.00 NULL
2019 Conflicts Of Interest Board Computer Operations Manager 123381.00000 1.233810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.233810e+05 1.233810e+05 0.00 NULL
2019 Conflicts Of Interest Board Computer Specialist 94552.00000 9.455200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.455200e+04 9.455200e+04 0.00 NULL
2019 Conflicts Of Interest Board Confidential Investigator 49013.00000 1.960520e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.960520e+05 1.960520e+05 0.00 NULL
2019 Conflicts Of Interest Board Counsel 217218.00000 2.172180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.172180e+05 2.172180e+05 0.00 NULL
2019 Conflicts Of Interest Board Executive Agency Counsel 150659.60000 7.532980e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.532980e+05 7.532980e+05 0.00 NULL
2019 Conflicts Of Interest Board Principal Administrative Associate - Lev 1 & 2 Non Supvr 54000.00000 5.400000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.400000e+04 5.400000e+04 0.00 NULL
2019 Conflicts Of Interest Board Secretary To Conflicts Of Interest Board 58405.00000 5.840500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.840500e+04 5.840500e+04 0.00 NULL
2019 Consumer Affairs Adm Manager-Non-Mgrl From M1/M2 69202.00000 1.384040e+05 1522.79 7.613950e+02 761.395 12.50 2 7.613950e+02 1522.79 1.399268e+05 1.399268e+05 0.00 NULL
2019 Consumer Affairs Admin Community Relations Specialist 63623.00000 1.272460e+05 2225.43 1.112715e+03 1112.715 48.75 2 1.112715e+03 2225.43 1.294714e+05 1.294714e+05 0.00 NULL
2019 Consumer Affairs Admin Contract Specialist 135439.00000 1.354390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.354390e+05 1.354390e+05 0.00 NULL
2019 Consumer Affairs Administrative Accountant 122307.00000 1.223070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.223070e+05 1.223070e+05 0.00 NULL
2019 Consumer Affairs Administrative Business Promotion Coordinator 93899.00000 9.389900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.389900e+04 9.389900e+04 0.00 NULL
2019 Consumer Affairs Administrative Contract Specialist 88035.50000 1.760710e+05 1083.30 5.416500e+02 541.650 20.00 2 5.416500e+02 1083.30 1.771543e+05 1.771543e+05 0.00 NULL
2019 Consumer Affairs Administrative Procurement Analyst 69693.00000 6.969300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.969300e+04 6.969300e+04 0.00 NULL
2019 Consumer Affairs Administrative Public Information Specialist 91960.50000 1.839210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.839210e+05 1.839210e+05 0.00 NULL
2019 Consumer Affairs Administrative Staff Analyst 115449.25000 1.847188e+06 5924.55 3.702844e+02 0.000 135.00 16 0.000000e+00 0.00 1.853113e+06 1.847188e+06 5924.55 NULL
2019 Consumer Affairs Agency Attorney 79949.53659 3.277931e+06 5095.46 1.242795e+02 0.000 102.50 41 0.000000e+00 0.00 3.283026e+06 3.277931e+06 5095.46 NULL
2019 Consumer Affairs Agency Attorney Interne 66500.00000 1.330000e+05 1283.52 6.417600e+02 641.760 29.00 2 6.417600e+02 1283.52 1.342835e+05 1.342835e+05 0.00 NULL
2019 Consumer Affairs Assistant To The Commissioner 91821.50000 1.836430e+05 268.30 1.341500e+02 134.150 0.00 2 1.341500e+02 268.30 1.839113e+05 1.839113e+05 0.00 NULL
2019 Consumer Affairs Associate Inspector 74715.36364 1.643738e+06 1796.01 8.163682e+01 0.000 42.25 22 0.000000e+00 0.00 1.645534e+06 1.643738e+06 1796.01 NULL
2019 Consumer Affairs Bookkeeper 43804.00000 4.380400e+04 5.99 5.990000e+00 5.990 0.25 1 5.990000e+00 5.99 4.380999e+04 4.380999e+04 0.00 NULL
2019 Consumer Affairs Business Promotion Coordinator 72722.50000 4.363350e+05 6283.85 1.047308e+03 123.805 106.00 6 1.238050e+02 742.83 4.426188e+05 4.370778e+05 5541.02 NULL
2019 Consumer Affairs Certified It Administrator 99746.00000 1.994920e+05 9470.01 4.735005e+03 4735.005 157.25 2 4.735005e+03 9470.01 2.089620e+05 2.089620e+05 0.00 NULL
2019 Consumer Affairs Certified It Developer 101592.00000 1.015920e+05 74.48 7.448000e+01 74.480 1.00 1 7.448000e+01 74.48 1.016665e+05 1.016665e+05 0.00 NULL
2019 Consumer Affairs City Research Scientist 88984.57143 6.228920e+05 409.98 5.856857e+01 0.000 9.00 7 0.000000e+00 0.00 6.233020e+05 6.228920e+05 409.98 NULL
2019 Consumer Affairs Clerical Associate 44270.81356 2.611978e+06 62432.97 1.058186e+03 6.890 1911.00 59 6.890000e+00 406.51 2.674411e+06 2.612385e+06 62026.46 NULL
2019 Consumer Affairs Commissioner 221151.00000 2.211510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.211510e+05 2.211510e+05 0.00 NULL
2019 Consumer Affairs Community Assistant 39751.20000 1.987560e+05 5315.94 1.063188e+03 0.000 207.00 5 0.000000e+00 0.00 2.040719e+05 1.987560e+05 5315.94 NULL
2019 Consumer Affairs Community Associate 47569.27273 4.709358e+06 63013.39 6.364989e+02 0.450 1881.00 99 4.500000e-01 44.55 4.772371e+06 4.709403e+06 62968.84 NULL
2019 Consumer Affairs Community Coordinator 68156.92982 3.884945e+06 51659.13 9.063005e+02 0.000 1004.50 57 0.000000e+00 0.00 3.936604e+06 3.884945e+06 51659.13 NULL
2019 Consumer Affairs Computer Associate 65631.57143 4.594210e+05 21802.25 3.114607e+03 3186.200 471.00 7 3.114607e+03 21802.25 4.812232e+05 4.812232e+05 0.00 NULL
2019 Consumer Affairs Computer Specialist 107613.55556 9.685220e+05 520.70 5.785556e+01 0.000 7.50 9 0.000000e+00 0.00 9.690427e+05 9.685220e+05 520.70 NULL
2019 Consumer Affairs Computer Systems Manager 114300.00000 1.714500e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.714500e+06 1.714500e+06 0.00 NULL
2019 Consumer Affairs Confidential Examiner 95951.00000 9.595100e+04 3.02 3.020000e+00 3.020 0.00 1 3.020000e+00 3.02 9.595402e+04 9.595402e+04 0.00 NULL
2019 Consumer Affairs Consumer Advocate 94581.00000 9.458100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.458100e+04 9.458100e+04 0.00 NULL
2019 Consumer Affairs Counsel 188100.00000 1.881000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.881000e+05 1.881000e+05 0.00 NULL
2019 Consumer Affairs Customer Information Representative Ma L 1549 54025.00000 5.942750e+05 20091.34 1.826485e+03 402.290 632.50 11 4.022900e+02 4425.19 6.143663e+05 5.987002e+05 15666.15 NULL
2019 Consumer Affairs Deputy Commissioner 198976.00000 1.989760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.989760e+05 1.989760e+05 0.00 NULL
2019 Consumer Affairs Director Bureau Of Weights And Measures 110422.00000 1.104220e+05 20.95 2.095000e+01 20.950 0.00 1 2.095000e+01 20.95 1.104429e+05 1.104429e+05 0.00 NULL
2019 Consumer Affairs Director Of Bureau Of Consumer Services 98162.00000 9.816200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.816200e+04 9.816200e+04 0.00 NULL
2019 Consumer Affairs Director Of Consumer Information 104295.00000 1.042950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.042950e+05 1.042950e+05 0.00 NULL
2019 Consumer Affairs Executive Agency Counsel 125987.13333 1.889807e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.889807e+06 1.889807e+06 0.00 NULL
2019 Consumer Affairs Executive Assistant To The Commissioner 125154.00000 1.251540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.251540e+05 1.251540e+05 0.00 NULL
2019 Consumer Affairs General Inspector 62416.00000 6.241600e+04 5.90 5.900000e+00 5.900 0.00 1 5.900000e+00 5.90 6.242190e+04 6.242190e+04 0.00 NULL
2019 Consumer Affairs Graphic Artist 62413.00000 1.248260e+05 353.59 1.767950e+02 176.795 7.75 2 1.767950e+02 353.59 1.251796e+05 1.251796e+05 0.00 NULL
2019 Consumer Affairs Inspector 50220.26866 3.364758e+06 20694.51 3.088733e+02 0.000 647.75 67 0.000000e+00 0.00 3.385453e+06 3.364758e+06 20694.51 NULL
2019 Consumer Affairs Principal Administrative Associate - Lev 1 & 2 Non Supvr 66590.42857 4.661330e+05 10107.88 1.443983e+03 49.820 218.75 7 4.982000e+01 348.74 4.762409e+05 4.664817e+05 9759.14 NULL
2019 Consumer Affairs Project Manager 70658.00000 7.065800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.065800e+04 7.065800e+04 0.00 NULL
2019 Consumer Affairs Public Records Aide 42799.00000 4.279900e+04 39.86 3.986000e+01 39.860 1.50 1 3.986000e+01 39.86 4.283886e+04 4.283886e+04 0.00 NULL
2019 Consumer Affairs Research Assistant 51561.31250 8.249810e+05 2672.49 1.670306e+02 0.000 101.00 16 0.000000e+00 0.00 8.276535e+05 8.249810e+05 2672.49 NULL
2019 Consumer Affairs Secretary 42630.00000 8.526000e+04 3313.77 1.656885e+03 1656.885 102.25 2 1.656885e+03 3313.77 8.857377e+04 8.857377e+04 0.00 NULL
2019 Consumer Affairs Secretary Of The Department 105210.00000 2.104200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.104200e+05 2.104200e+05 0.00 NULL
2019 Consumer Affairs Secretary To The Commissioner 89572.00000 8.957200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.957200e+04 8.957200e+04 0.00 NULL
2019 Consumer Affairs Staff Analyst 68611.00000 1.372220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.372220e+05 1.372220e+05 0.00 NULL
2019 Cultural Affairs Adm Manager-Non-Mgrl From M1/M2 63929.00000 6.392900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.392900e+04 6.392900e+04 0.00 NULL
2019 Cultural Affairs Administrative Community Relations Specialist 132455.00000 1.324550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.324550e+05 1.324550e+05 0.00 NULL
2019 Cultural Affairs Administrative Project Manager 136576.50000 2.731530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.731530e+05 2.731530e+05 0.00 NULL
2019 Cultural Affairs Administrative Staff Analyst 92776.00000 1.855520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.855520e+05 1.855520e+05 0.00 NULL
2019 Cultural Affairs Agency Attorney 93192.50000 1.863850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.863850e+05 1.863850e+05 0.00 NULL
2019 Cultural Affairs Agency Attorney Interne 63000.00000 6.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.300000e+04 6.300000e+04 0.00 NULL
2019 Cultural Affairs Agency Chief Contracting Officer 102250.00000 1.022500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.022500e+05 1.022500e+05 0.00 NULL
2019 Cultural Affairs Arts Program Specialist 54139.50000 2.165580e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.165580e+05 2.165580e+05 0.00 NULL
2019 Cultural Affairs Assistant Commissioner 126997.00000 3.809910e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.809910e+05 3.809910e+05 0.00 NULL
2019 Cultural Affairs Associate Arts Programs Specialist 62338.07961 1.122085e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.122085e+06 1.122085e+06 0.00 NULL
2019 Cultural Affairs City Laborer 58591.35000 5.859135e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.859135e+04 5.859135e+04 0.00 NULL
2019 Cultural Affairs Commissioner Of Cultural Affairs 221151.00000 2.211510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.211510e+05 2.211510e+05 0.00 NULL
2019 Cultural Affairs Community Assistant 39034.22040 3.903422e+04 237.54 2.375400e+02 237.540 7.60 1 2.375400e+02 237.54 3.927176e+04 3.927176e+04 0.00 NULL
2019 Cultural Affairs Community Associate 43831.12780 6.574669e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 6.574669e+05 6.574669e+05 0.00 NULL
2019 Cultural Affairs Community Coordinator 67107.87492 1.073726e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.073726e+06 1.073726e+06 0.00 NULL
2019 Cultural Affairs Computer Associate 92882.00000 9.288200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.288200e+04 9.288200e+04 0.00 NULL
2019 Cultural Affairs Computer Systems Manager 121502.00000 1.215020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.215020e+05 1.215020e+05 0.00 NULL
2019 Cultural Affairs Executive Agency Counsel 131341.50000 2.626830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.626830e+05 2.626830e+05 0.00 NULL
2019 Cultural Affairs Executive Director Of Materials For The Arts 110456.00000 1.104560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.104560e+05 1.104560e+05 0.00 NULL
2019 Cultural Affairs Secretary To The Commissioner 60399.00000 6.039900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.039900e+04 6.039900e+04 0.00 NULL
2019 Cultural Affairs Staff Analyst 71826.50000 1.436530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.436530e+05 1.436530e+05 0.00 NULL
2019 Cuny Central Office Administrator Supt Campus B/G 8960.00000 8.960000e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.960000e+03 8.960000e+03 0.00 NULL
2019 Cuny Central Office Assistant College Security Director 74900.00000 7.490000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.490000e+04 7.490000e+04 0.00 NULL
2019 Cuny Central Office Assistant To Heo 53045.36000 1.326134e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.326134e+06 1.326134e+06 0.00 NULL
2019 Cuny Central Office Campus Peace Officer 46342.33333 1.390270e+05 5505.76 1.835253e+03 2162.280 185.50 3 1.835253e+03 5505.76 1.445328e+05 1.445328e+05 0.00 NULL
2019 Cuny Central Office College Accounting Assistant 46442.00000 4.644200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.644200e+04 4.644200e+04 0.00 NULL
2019 Cuny Central Office College Assistant 8852.78917 1.062335e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.062335e+05 1.062335e+05 0.00 NULL
2019 Cuny Central Office Continuing Education Teacher 16190.00000 3.238000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.238000e+04 3.238000e+04 0.00 NULL
2019 Cuny Central Office Higher Education Assistant 69222.50000 1.107560e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.107560e+06 1.107560e+06 0.00 NULL
2019 Cuny Central Office Higher Education Associate 84141.23077 2.187672e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 2.187672e+06 2.187672e+06 0.00 NULL
2019 Cuny Central Office Higher Education Officer 101516.25000 8.121300e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.121300e+05 8.121300e+05 0.00 NULL
2019 Cuny Central Office It Assistant 58274.00000 5.827400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.827400e+04 5.827400e+04 0.00 NULL
2019 Cuny Central Office It Associate 70159.50000 2.806380e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.806380e+05 2.806380e+05 0.00 NULL
2019 Cuny Central Office It Senior Associate 92700.00000 9.270000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.270000e+04 9.270000e+04 0.00 NULL
2019 Cuny Central Office It Support Assistant 40639.00000 4.063900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.063900e+04 4.063900e+04 0.00 NULL
2019 Cuny Central Office Non-Teaching Adjunct I 5469.73750 2.187895e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.187895e+04 2.187895e+04 0.00 NULL
2019 Cuny Central Office Non-Teaching Adjunct Ii 19398.04000 3.879608e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.879608e+04 3.879608e+04 0.00 NULL
2019 Cuny Central Office Non-Teaching Adjunct V 13389.31800 6.694659e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.694659e+04 6.694659e+04 0.00 NULL
2019 Cuny Central Office University Administrator 85729.00000 1.714580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.714580e+05 1.714580e+05 0.00 NULL
2019 Cuny Central Office University Assistant Administrator 137000.00000 1.370000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.370000e+05 1.370000e+05 0.00 NULL
2019 Cuny Central Office University Assistant Dean 137000.00000 1.370000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.370000e+05 1.370000e+05 0.00 NULL
2019 Cuny Central Office University Associate Dean 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2019 Cuny Central Office University Payroll Analyst 46122.00000 9.224400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.224400e+04 9.224400e+04 0.00 NULL
2019 Department For The Aging Accountant 64672.00000 1.293440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.293440e+05 1.293440e+05 0.00 NULL
2019 Department For The Aging Adm Manager-Non-Mgrl From M1/M2 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2019 Department For The Aging Admin Community Relations Specialist 73979.50000 1.479590e+05 42.72 2.136000e+01 21.360 0.00 2 2.136000e+01 42.72 1.480017e+05 1.480017e+05 0.00 NULL
2019 Department For The Aging Admin Contract Specialist 114074.00000 1.140740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.140740e+05 1.140740e+05 0.00 NULL
2019 Department For The Aging Administrative Program Officer 107944.68875 3.238341e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 3.238341e+06 3.238341e+06 0.00 NULL
2019 Department For The Aging Administrative Accountant 116557.00000 1.165570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.165570e+05 1.165570e+05 0.00 NULL
2019 Department For The Aging Administrative Community Relations Specialist 136836.00000 1.368360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.368360e+05 1.368360e+05 0.00 NULL
2019 Department For The Aging Administrative Director Of Social Services 105872.50000 2.117450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.117450e+05 2.117450e+05 0.00 NULL
2019 Department For The Aging Administrative Manager 119939.00000 1.199390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.199390e+05 1.199390e+05 0.00 NULL
2019 Department For The Aging Administrative Procurement Analyst 88491.00000 1.769820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.769820e+05 1.769820e+05 0.00 NULL
2019 Department For The Aging Administrative Project Manager 124222.00000 1.242220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.242220e+05 1.242220e+05 0.00 NULL
2019 Department For The Aging Administrative Public Information Specialist 79473.00000 1.589460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.589460e+05 1.589460e+05 0.00 NULL
2019 Department For The Aging Administrative Staff Analyst 115504.79167 2.772115e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 2.772115e+06 2.772115e+06 0.00 NULL
2019 Department For The Aging Agency Chief Contracting Officer 143406.00000 1.434060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.434060e+05 1.434060e+05 0.00 NULL
2019 Department For The Aging Architect 75651.00000 7.565100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.565100e+04 7.565100e+04 0.00 NULL
2019 Department For The Aging Assistant Architect 70225.50000 1.404510e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.404510e+05 1.404510e+05 0.00 NULL
2019 Department For The Aging Associate Staff Analyst 86924.40000 8.692440e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 8.692440e+05 8.692440e+05 0.00 NULL
2019 Department For The Aging Attorney At Law 92081.00000 9.208100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.208100e+04 9.208100e+04 0.00 NULL
2019 Department For The Aging Bookkeeper 61756.00000 1.235120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.235120e+05 1.235120e+05 0.00 NULL
2019 Department For The Aging Certified It Administrator 91499.00000 9.149900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.149900e+04 9.149900e+04 0.00 NULL
2019 Department For The Aging City Custodial Assistant 41603.00000 4.160300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.160300e+04 4.160300e+04 0.00 NULL
2019 Department For The Aging City Research Scientist 90198.00000 9.019800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.019800e+04 9.019800e+04 0.00 NULL
2019 Department For The Aging Clerical Associate 43863.59700 2.631816e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.631816e+05 2.631816e+05 0.00 NULL
2019 Department For The Aging College Aide 14430.93750 1.443094e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.443094e+04 1.443094e+04 0.00 NULL
2019 Department For The Aging Commissioner 234142.00000 4.682840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.682840e+05 4.682840e+05 0.00 NULL
2019 Department For The Aging Community Assistant 23032.86234 1.842629e+05 3.61 4.512500e-01 0.000 0.00 8 0.000000e+00 0.00 1.842665e+05 1.842629e+05 3.61 NULL
2019 Department For The Aging Community Associate 48955.03809 2.007157e+06 31060.86 7.575820e+02 0.000 772.25 41 0.000000e+00 0.00 2.038217e+06 2.007157e+06 31060.86 NULL
2019 Department For The Aging Community Coordinator 66545.78605 4.857842e+06 12.29 1.683562e-01 0.000 0.00 73 0.000000e+00 0.00 4.857855e+06 4.857842e+06 12.29 NULL
2019 Department For The Aging Community Service Aide 8339.66588 3.544358e+06 0.00 0.000000e+00 0.000 0.00 425 0.000000e+00 0.00 3.544358e+06 3.544358e+06 0.00 NULL
2019 Department For The Aging Computer Associate 74299.56167 4.457974e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.457974e+05 4.457974e+05 0.00 NULL
2019 Department For The Aging Computer Operations Manager 117135.20000 1.171352e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.171352e+05 1.171352e+05 0.00 NULL
2019 Department For The Aging Computer Specialist 95195.58545 1.047151e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.047151e+06 1.047151e+06 0.00 NULL
2019 Department For The Aging Computer Systems Manager 145652.33333 4.369570e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.369570e+05 4.369570e+05 0.00 NULL
2019 Department For The Aging Counsel 178833.00000 1.788330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.788330e+05 1.788330e+05 0.00 NULL
2019 Department For The Aging Deputy Commissioner 186809.00000 1.868090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.868090e+05 1.868090e+05 0.00 NULL
2019 Department For The Aging Director Of Administration 177818.00000 1.778180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.778180e+05 1.778180e+05 0.00 NULL
2019 Department For The Aging Director Of Community Programs 142530.00000 1.425300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.425300e+05 1.425300e+05 0.00 NULL
2019 Department For The Aging Director Of Direct Service Programs 161988.00000 1.619880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.619880e+05 1.619880e+05 0.00 NULL
2019 Department For The Aging Director Of Research Planning And Policy Analysis 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2019 Department For The Aging Foster Grandparent 2391.38512 9.159005e+05 0.00 0.000000e+00 0.000 0.00 383 0.000000e+00 0.00 9.159005e+05 9.159005e+05 0.00 NULL
2019 Department For The Aging Housing Development Specialist 63728.00000 6.372800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.372800e+04 6.372800e+04 0.00 NULL
2019 Department For The Aging Management Auditor 74472.16667 8.936660e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 8.936660e+05 8.936660e+05 0.00 NULL
2019 Department For The Aging Nutrition Consultant 69069.14286 9.669680e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 9.669680e+05 9.669680e+05 0.00 NULL
2019 Department For The Aging Photographer 26683.23000 2.668323e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.668323e+04 2.668323e+04 0.00 NULL
2019 Department For The Aging Principal Administrative Associate - Lev 1 & 2 Non Supvr 60119.89474 1.142278e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.142278e+06 1.142278e+06 0.00 NULL
2019 Department For The Aging Principal Nutrition Consultant 81452.33333 2.443570e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.443570e+05 2.443570e+05 0.00 NULL
2019 Department For The Aging Procurement Analyst 66749.00000 2.669960e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.669960e+05 2.669960e+05 0.00 NULL
2019 Department For The Aging Program Officer 69256.73205 2.770269e+06 15.50 3.875000e-01 0.000 0.00 40 0.000000e+00 0.00 2.770285e+06 2.770269e+06 15.50 NULL
2019 Department For The Aging Secretary 45889.60000 2.294480e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.294480e+05 2.294480e+05 0.00 NULL
2019 Department For The Aging Special Assistant To Commissioner 71731.00000 7.173100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.173100e+04 7.173100e+04 0.00 NULL
2019 Department For The Aging Summer College Intern 2484.85714 1.739400e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.739400e+04 1.739400e+04 0.00 NULL
2019 Department For The Aging Summer Graduate Intern 3340.62500 2.004375e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.004375e+04 2.004375e+04 0.00 NULL
2019 Department For The Aging Supervising Computer Service Technician 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2019 Department For The Aging Supervisor Ii 82809.00000 1.656180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.656180e+05 1.656180e+05 0.00 NULL
2019 Department For The Aging Supervisor Iii 76198.29725 4.571898e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.571898e+05 4.571898e+05 0.00 NULL
2019 Department Of Buildings Adm Manager-Non-Mgrl From M1/M2 77419.38000 3.870969e+06 137481.08 2.749622e+03 0.000 2858.50 50 0.000000e+00 0.00 4.008450e+06 3.870969e+06 137481.08 NULL
2019 Department Of Buildings Admin Community Relations Specialist 83465.05882 1.418906e+06 37873.57 2.227857e+03 0.000 708.50 17 0.000000e+00 0.00 1.456780e+06 1.418906e+06 37873.57 NULL
2019 Department Of Buildings Admin Inspector 104428.45238 4.385995e+06 488711.43 1.163599e+04 4822.515 7687.25 42 4.822515e+03 202545.63 4.874706e+06 4.588541e+06 286165.80 NULL
2019 Department Of Buildings Administrative Architect 129294.08333 4.654587e+06 32546.17 9.040603e+02 0.000 465.25 36 0.000000e+00 0.00 4.687133e+06 4.654587e+06 32546.17 NULL
2019 Department Of Buildings Administrative Borough Superintendent 129811.20000 6.490560e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.490560e+05 6.490560e+05 0.00 NULL
2019 Department Of Buildings Administrative City Planner 112558.75000 4.502350e+05 21595.98 5.398995e+03 0.000 281.50 4 0.000000e+00 0.00 4.718310e+05 4.502350e+05 21595.98 NULL
2019 Department Of Buildings Administrative Engineer 124749.88679 6.611744e+06 96445.76 1.819731e+03 0.000 1501.25 53 0.000000e+00 0.00 6.708190e+06 6.611744e+06 96445.76 NULL
2019 Department Of Buildings Administrative Inspector 143345.70000 1.433457e+06 12736.08 1.273608e+03 0.000 163.75 10 0.000000e+00 0.00 1.446193e+06 1.433457e+06 12736.08 NULL
2019 Department Of Buildings Administrative Investigator 119046.00000 3.571380e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.571380e+05 3.571380e+05 0.00 NULL
2019 Department Of Buildings Administrative Management Auditor 122700.00000 1.227000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.227000e+05 1.227000e+05 0.00 NULL
2019 Department Of Buildings Administrative Manager 136748.00000 5.469920e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.469920e+05 5.469920e+05 0.00 NULL
2019 Department Of Buildings Administrative Procurement Analyst 77026.00000 7.702600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.702600e+04 7.702600e+04 0.00 NULL
2019 Department Of Buildings Administrative Project Manager 135679.25000 5.427170e+05 15050.42 3.762605e+03 0.000 195.00 4 0.000000e+00 0.00 5.577674e+05 5.427170e+05 15050.42 NULL
2019 Department Of Buildings Administrative Public Information Specialist 158412.00000 3.168240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.168240e+05 3.168240e+05 0.00 NULL
2019 Department Of Buildings Administrative Public Records Officer 75092.00000 7.509200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.509200e+04 7.509200e+04 0.00 NULL
2019 Department Of Buildings Administrative Staff Analyst 110146.78261 5.066752e+06 58280.27 1.266962e+03 0.000 819.75 46 0.000000e+00 0.00 5.125032e+06 5.066752e+06 58280.27 NULL
2019 Department Of Buildings Agency Attorney 80732.36364 3.552224e+06 10915.59 2.480816e+02 0.000 251.75 44 0.000000e+00 0.00 3.563140e+06 3.552224e+06 10915.59 NULL
2019 Department Of Buildings Agency Attorney Interne 61863.00000 3.093150e+05 33.86 6.772000e+00 0.000 1.00 5 0.000000e+00 0.00 3.093489e+05 3.093150e+05 33.86 NULL
2019 Department Of Buildings Agency Chief Contracting Officer 136300.50000 2.726010e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.726010e+05 2.726010e+05 0.00 NULL
2019 Department Of Buildings Architect 90919.94737 1.727479e+06 28754.45 1.513392e+03 0.000 449.00 19 0.000000e+00 0.00 1.756233e+06 1.727479e+06 28754.45 NULL
2019 Department Of Buildings Assistant Architect 77580.84211 1.474036e+06 3263.32 1.717537e+02 0.000 69.75 19 0.000000e+00 0.00 1.477299e+06 1.474036e+06 3263.32 NULL
2019 Department Of Buildings Assistant Civil Engineer 69655.87500 1.114494e+06 17264.23 1.079014e+03 0.000 388.00 16 0.000000e+00 0.00 1.131758e+06 1.114494e+06 17264.23 NULL
2019 Department Of Buildings Assistant Commissioner 171616.80000 8.580840e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.580840e+05 8.580840e+05 0.00 NULL
2019 Department Of Buildings Assistant Commissioner For Labor Relations & Admin 174804.00000 1.748040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.748040e+05 1.748040e+05 0.00 NULL
2019 Department Of Buildings Assistant Electrical Engineer 75729.20000 3.786460e+05 13739.12 2.747824e+03 0.000 253.75 5 0.000000e+00 0.00 3.923851e+05 3.786460e+05 13739.12 NULL
2019 Department Of Buildings Assistant Mechanical Engineer 61490.35656 4.919229e+05 21713.38 2.714173e+03 7.810 456.50 8 7.810000e+00 62.48 5.136362e+05 4.919853e+05 21650.90 NULL
2019 Department Of Buildings Assistant Plan Examiner 70225.99454 1.285136e+07 137717.49 7.525546e+02 0.000 2892.25 183 0.000000e+00 0.00 1.298907e+07 1.285136e+07 137717.49 NULL
2019 Department Of Buildings Associate Inspector 80680.29018 1.363497e+07 2914799.74 1.724734e+04 13281.010 55778.37 169 1.328101e+04 2244490.69 1.654977e+07 1.587946e+07 670309.05 NULL
2019 Department Of Buildings Associate Investigator 65574.00000 2.622960e+05 44629.36 1.115734e+04 854.930 1420.00 4 8.549300e+02 3419.72 3.069254e+05 2.657157e+05 41209.64 NULL
2019 Department Of Buildings Associate Labor Relations Analyst 92500.00000 1.850000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.850000e+05 1.850000e+05 0.00 NULL
2019 Department Of Buildings Associate Project Manager 92014.80000 4.600740e+05 8380.76 1.676152e+03 0.000 151.75 5 0.000000e+00 0.00 4.684548e+05 4.600740e+05 8380.76 NULL
2019 Department Of Buildings Associate Public Information Specialist 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2019 Department Of Buildings Associate Staff Analyst 77720.42857 1.088086e+06 1496.65 1.069036e+02 0.000 28.00 14 0.000000e+00 0.00 1.089583e+06 1.088086e+06 1496.65 NULL
2019 Department Of Buildings Borough Commissioner 178000.00000 1.780000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.780000e+05 1.780000e+05 0.00 NULL
2019 Department Of Buildings Business Promotion Coordinator 68532.00000 6.853200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.853200e+04 6.853200e+04 0.00 NULL
2019 Department Of Buildings Certified It Administrator 91769.50000 3.670780e+05 26421.29 6.605323e+03 111.190 348.75 4 1.111900e+02 444.76 3.934993e+05 3.675228e+05 25976.53 NULL
2019 Department Of Buildings Chief Of Staff 156443.00000 1.564430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.564430e+05 1.564430e+05 0.00 NULL
2019 Department Of Buildings Chief Strategy Officer 153375.00000 1.533750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.533750e+05 1.533750e+05 0.00 NULL
2019 Department Of Buildings City Planner 96982.00000 9.698200e+04 561.85 5.618500e+02 561.850 9.00 1 5.618500e+02 561.85 9.754385e+04 9.754385e+04 0.00 NULL
2019 Department Of Buildings City Research Scientist 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2019 Department Of Buildings Civil Engineer 96737.87500 2.321709e+06 73836.81 3.076534e+03 20.850 1146.50 24 2.085000e+01 500.40 2.395546e+06 2.322209e+06 73336.41 NULL
2019 Department Of Buildings Civil Engineering Intern 10695.18353 2.139037e+04 345.01 1.725050e+02 172.505 10.75 2 1.725050e+02 345.01 2.173538e+04 2.173538e+04 0.00 NULL
2019 Department Of Buildings Clerical Associate 44034.46487 1.012793e+07 277044.82 1.204543e+03 0.215 9323.03 230 2.150000e-01 49.45 1.040497e+07 1.012798e+07 276995.37 NULL
2019 Department Of Buildings College Aide 9056.43620 7.516842e+05 0.00 0.000000e+00 0.000 0.00 83 0.000000e+00 0.00 7.516842e+05 7.516842e+05 0.00 NULL
2019 Department Of Buildings College Aide - Assignment Levels Ii And Iii 13224.88625 2.644977e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.644977e+04 2.644977e+04 0.00 NULL
2019 Department Of Buildings Commissioner Of Buildings 236088.00000 4.721760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.721760e+05 4.721760e+05 0.00 NULL
2019 Department Of Buildings Community Assistant 36667.19771 2.566704e+05 6686.55 9.552214e+02 0.000 252.00 7 0.000000e+00 0.00 2.633569e+05 2.566704e+05 6686.55 NULL
2019 Department Of Buildings Community Associate 45999.89141 1.425997e+06 107901.29 3.480687e+03 110.520 3684.50 31 1.105200e+02 3426.12 1.533898e+06 1.429423e+06 104475.17 NULL
2019 Department Of Buildings Community Coordinator 69033.45455 3.037472e+06 107153.29 2.435302e+03 382.870 2390.75 44 3.828700e+02 16846.28 3.144625e+06 3.054318e+06 90307.01 NULL
2019 Department Of Buildings Computer Associate 77015.33333 1.155230e+06 20764.78 1.384319e+03 0.000 390.25 15 0.000000e+00 0.00 1.175995e+06 1.155230e+06 20764.78 NULL
2019 Department Of Buildings Computer Operations Manager 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2019 Department Of Buildings Computer Service Technician 62714.00000 6.271400e+04 7895.44 7.895440e+03 7895.440 164.25 1 7.895440e+03 7895.44 7.060944e+04 7.060944e+04 0.00 NULL
2019 Department Of Buildings Computer Specialist 105812.61111 1.904627e+06 51206.51 2.844806e+03 0.000 766.00 18 0.000000e+00 0.00 1.955834e+06 1.904627e+06 51206.51 NULL
2019 Department Of Buildings Computer Systems Manager 124091.86957 2.854113e+06 114.74 4.988696e+00 0.000 0.00 23 0.000000e+00 0.00 2.854228e+06 2.854113e+06 114.74 NULL
2019 Department Of Buildings Confidential Strategy Planner 85099.33333 5.105960e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.105960e+05 5.105960e+05 0.00 NULL
2019 Department Of Buildings Deputy Commissioner 212960.00000 4.259200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.259200e+05 4.259200e+05 0.00 NULL
2019 Department Of Buildings Electrical Engineer 107362.50000 2.147250e+05 556.92 2.784600e+02 278.460 8.50 2 2.784600e+02 556.92 2.152819e+05 2.152819e+05 0.00 NULL
2019 Department Of Buildings Electrical Engineering Intern 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2019 Department Of Buildings Engineering Technician 0.00000 0.000000e+00 10.94 1.094000e+01 10.940 0.00 1 1.094000e+01 10.94 1.094000e+01 1.094000e+01 0.00 NULL
2019 Department Of Buildings Equal Employment Opportunity Officer 116580.00000 1.165800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.165800e+05 1.165800e+05 0.00 NULL
2019 Department Of Buildings Estimator 66178.50000 1.323570e+05 757.96 3.789800e+02 378.980 17.25 2 3.789800e+02 757.96 1.331150e+05 1.331150e+05 0.00 NULL
2019 Department Of Buildings Executive Agency Counsel 136640.26316 2.596165e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.596165e+06 2.596165e+06 0.00 NULL
2019 Department Of Buildings Executive Assistant 72016.33333 2.160490e+05 355.23 1.184100e+02 0.000 11.00 3 0.000000e+00 0.00 2.164042e+05 2.160490e+05 355.23 NULL
2019 Department Of Buildings Executive Director Of Professional Development 151227.00000 1.512270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.512270e+05 1.512270e+05 0.00 NULL
2019 Department Of Buildings Executive Director, New York City Loft Board 161101.00000 1.611010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.611010e+05 1.611010e+05 0.00 NULL
2019 Department Of Buildings First Deputy Commissioner 225738.00000 2.257380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.257380e+05 2.257380e+05 0.00 NULL
2019 Department Of Buildings Inspector 65518.99344 2.994218e+07 2080628.99 4.552799e+03 564.520 46889.40 457 5.645200e+02 257985.64 3.202281e+07 3.020017e+07 1822643.35 NULL
2019 Department Of Buildings Investigator 34847.23333 1.045417e+06 1728.14 5.760467e+01 0.000 67.50 30 0.000000e+00 0.00 1.047145e+06 1.045417e+06 1728.14 NULL
2019 Department Of Buildings Investigator Empl Disc 54711.51228 1.531922e+06 36798.95 1.314248e+03 87.250 1030.50 28 8.725000e+01 2443.00 1.568721e+06 1.534365e+06 34355.95 NULL
2019 Department Of Buildings It Security Specialist 95317.00000 9.531700e+04 12950.50 1.295050e+04 12950.500 166.25 1 1.295050e+04 12950.50 1.082675e+05 1.082675e+05 0.00 NULL
2019 Department Of Buildings Labor Relations Analyst 73000.00000 7.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.300000e+04 7.300000e+04 0.00 NULL
2019 Department Of Buildings Mechanical Engineer 94765.87500 7.581270e+05 11262.11 1.407764e+03 0.000 152.75 8 0.000000e+00 0.00 7.693891e+05 7.581270e+05 11262.11 NULL
2019 Department Of Buildings Mechanical Engineering Intern 54229.34900 5.422935e+04 4.80 4.800000e+00 4.800 0.00 1 4.800000e+00 4.80 5.423415e+04 5.423415e+04 0.00 NULL
2019 Department Of Buildings Multiple Dwelling Specialist 74592.00000 1.491840e+05 8672.04 4.336020e+03 4336.020 178.25 2 4.336020e+03 8672.04 1.578560e+05 1.578560e+05 0.00 NULL
2019 Department Of Buildings Plan Examiner 85693.74286 2.999281e+06 27116.17 7.747477e+02 0.000 621.75 35 0.000000e+00 0.00 3.026397e+06 2.999281e+06 27116.17 NULL
2019 Department Of Buildings Principal Administrative Associate - Lev 1 & 2 Non Supvr 62640.95939 4.134303e+06 157128.96 2.380742e+03 76.520 3749.17 66 7.652000e+01 5050.32 4.291432e+06 4.139354e+06 152078.64 NULL
2019 Department Of Buildings Principal Multiple Dwelling Specialist 94252.33333 2.827570e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.827570e+05 2.827570e+05 0.00 NULL
2019 Department Of Buildings Procurement Analyst 66230.25000 2.649210e+05 0.00 0.000000e+00 0.000 5.50 4 0.000000e+00 0.00 2.649210e+05 2.649210e+05 0.00 NULL
2019 Department Of Buildings Public Records Aide 41360.00000 8.272000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.272000e+04 8.272000e+04 0.00 NULL
2019 Department Of Buildings Secretary 44067.54545 9.694860e+05 40078.38 1.821745e+03 50.180 997.75 22 5.018000e+01 1103.96 1.009564e+06 9.705900e+05 38974.42 NULL
2019 Department Of Buildings Secretary To Department 119939.00000 1.199390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.199390e+05 1.199390e+05 0.00 NULL
2019 Department Of Buildings Secretary To The Commissioner Of Bldgs 100460.00000 1.004600e+05 10.30 1.030000e+01 10.300 0.00 1 1.030000e+01 10.30 1.004703e+05 1.004703e+05 0.00 NULL
2019 Department Of Buildings Senior Estimator 86491.00000 8.649100e+04 278.80 2.788000e+02 278.800 5.00 1 2.788000e+02 278.80 8.676980e+04 8.676980e+04 0.00 NULL
2019 Department Of Buildings Space Analyst 62358.53547 1.870756e+05 1084.79 3.615967e+02 247.500 32.00 3 2.475000e+02 742.50 1.881604e+05 1.878181e+05 342.29 NULL
2019 Department Of Buildings Staff Analyst 66027.20000 6.602720e+05 6105.78 6.105780e+02 0.000 156.25 10 0.000000e+00 0.00 6.663778e+05 6.602720e+05 6105.78 NULL
2019 Department Of Buildings Statistician 26846.87625 2.684688e+04 326.12 3.261200e+02 326.120 8.75 1 3.261200e+02 326.12 2.717300e+04 2.717300e+04 0.00 NULL
2019 Department Of Buildings Strategic Initiative Specialist 117210.50000 7.032630e+05 17.22 2.870000e+00 0.000 0.00 6 0.000000e+00 0.00 7.032802e+05 7.032630e+05 17.22 NULL
2019 Department Of Buildings Summer College Intern 3128.40286 4.379764e+04 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 4.379764e+04 4.379764e+04 0.00 NULL
2019 Department Of Buildings Summer Graduate Intern 5144.61269 6.687996e+04 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 6.687996e+04 6.687996e+04 0.00 NULL
2019 Department Of Business Serv. Adm Manager-Non-Mgrl From M1/M2 88382.77778 7.954450e+05 122.47 1.360778e+01 0.000 3.50 9 0.000000e+00 0.00 7.955675e+05 7.954450e+05 122.47 NULL
2019 Department Of Business Serv. Admin Contract Specialist 104852.00000 2.097040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.097040e+05 2.097040e+05 0.00 NULL
2019 Department Of Business Serv. Administrative Architect 155827.00000 1.558270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.558270e+05 1.558270e+05 0.00 NULL
2019 Department Of Business Serv. Administrative Business Promotion Coordinator 102431.10909 5.633711e+06 0.00 0.000000e+00 0.000 0.00 55 0.000000e+00 0.00 5.633711e+06 5.633711e+06 0.00 NULL
2019 Department Of Business Serv. Administrative Contract Specialist 90149.00000 2.704470e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.704470e+05 2.704470e+05 0.00 NULL
2019 Department Of Business Serv. Administrative Manager 119859.00000 2.397180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.397180e+05 2.397180e+05 0.00 NULL
2019 Department Of Business Serv. Administrative Procurement Analyst 111723.00000 1.117230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.117230e+05 1.117230e+05 0.00 NULL
2019 Department Of Business Serv. Administrative Public Information Specialist 103434.50000 2.068690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.068690e+05 2.068690e+05 0.00 NULL
2019 Department Of Business Serv. Administrative Space Analyst 116079.00000 1.160790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.160790e+05 1.160790e+05 0.00 NULL
2019 Department Of Business Serv. Administrative Staff Analyst 105411.25000 4.216450e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.216450e+05 4.216450e+05 0.00 NULL
2019 Department Of Business Serv. Agency Attorney 84445.33333 2.533360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.533360e+05 2.533360e+05 0.00 NULL
2019 Department Of Business Serv. Agency Chief Contracting Officer 138726.00000 1.387260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.387260e+05 1.387260e+05 0.00 NULL
2019 Department Of Business Serv. Assistant Architect 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2019 Department Of Business Serv. Assistant Commissioner 132953.00000 1.329530e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.329530e+06 1.329530e+06 0.00 NULL
2019 Department Of Business Serv. Assistant Plan Examiner 80526.00000 8.052600e+04 158.07 1.580700e+02 158.070 0.00 1 1.580700e+02 158.07 8.068407e+04 8.068407e+04 0.00 NULL
2019 Department Of Business Serv. Associate Contract Specialist 72777.00000 4.366620e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.366620e+05 4.366620e+05 0.00 NULL
2019 Department Of Business Serv. Associate Staff Analyst 86715.00000 6.070050e+05 203.03 2.900429e+01 0.000 0.00 7 0.000000e+00 0.00 6.072080e+05 6.070050e+05 203.03 NULL
2019 Department Of Business Serv. Business Promotion Coordinator 66029.90185 6.140781e+06 6993.58 7.519978e+01 0.000 147.75 93 0.000000e+00 0.00 6.147774e+06 6.140781e+06 6993.58 NULL
2019 Department Of Business Serv. Certified It Developer 90483.00000 2.714490e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.714490e+05 2.714490e+05 0.00 NULL
2019 Department Of Business Serv. Clerical Associate 51941.50000 4.155320e+05 65.97 8.246250e+00 0.000 2.00 8 0.000000e+00 0.00 4.155980e+05 4.155320e+05 65.97 NULL
2019 Department Of Business Serv. College Aide 2602.20536 1.821544e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.821544e+04 1.821544e+04 0.00 NULL
2019 Department Of Business Serv. Commissioner Of Business Services 221151.00000 2.211510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.211510e+05 2.211510e+05 0.00 NULL
2019 Department Of Business Serv. Community Associate 23416.07951 9.600593e+05 41655.33 1.015984e+03 0.000 1119.00 41 0.000000e+00 0.00 1.001715e+06 9.600593e+05 41655.33 NULL
2019 Department Of Business Serv. Community Coordinator 61527.89779 2.645700e+06 2631.70 6.120233e+01 0.000 112.75 43 0.000000e+00 0.00 2.648331e+06 2.645700e+06 2631.70 NULL
2019 Department Of Business Serv. Computer Associate 76896.50000 3.075860e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.075860e+05 3.075860e+05 0.00 NULL
2019 Department Of Business Serv. Computer Operations Manager 100113.00000 1.001130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.001130e+05 1.001130e+05 0.00 NULL
2019 Department Of Business Serv. Computer Service Technician 51814.00000 5.181400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.181400e+04 5.181400e+04 0.00 NULL
2019 Department Of Business Serv. Computer Specialist 93610.00000 1.872200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.872200e+05 1.872200e+05 0.00 NULL
2019 Department Of Business Serv. Computer Systems Manager 112062.60000 5.603130e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.603130e+05 5.603130e+05 0.00 NULL
2019 Department Of Business Serv. Contract Reviewer 57701.04672 2.308042e+06 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 2.308042e+06 2.308042e+06 0.00 NULL
2019 Department Of Business Serv. Contract Specialist 58775.00000 5.877500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.877500e+04 5.877500e+04 0.00 NULL
2019 Department Of Business Serv. Deputy Commissioner 183799.83333 1.102799e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.102799e+06 1.102799e+06 0.00 NULL
2019 Department Of Business Serv. Executive Agency Counsel 127700.00000 2.554000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.554000e+05 2.554000e+05 0.00 NULL
2019 Department Of Business Serv. Graphic Artist 74642.00000 1.492840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.492840e+05 1.492840e+05 0.00 NULL
2019 Department Of Business Serv. Management Auditor 79076.00000 1.581520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.581520e+05 1.581520e+05 0.00 NULL
2019 Department Of Business Serv. Principal Administrative Associate - Lev 1 & 2 Non Supvr 67504.25000 8.100510e+05 3633.84 3.028200e+02 0.000 104.50 12 0.000000e+00 0.00 8.136848e+05 8.100510e+05 3633.84 NULL
2019 Department Of Business Serv. Procurement Analyst 70827.75000 2.833110e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.833110e+05 2.833110e+05 0.00 NULL
2019 Department Of Business Serv. Project Manager 85742.00000 8.574200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.574200e+04 8.574200e+04 0.00 NULL
2019 Department Of Business Serv. Public Health Sanitarian 70194.00000 1.403880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.403880e+05 1.403880e+05 0.00 NULL
2019 Department Of Business Serv. Public Relations Adviser 76688.00000 7.668800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.668800e+04 7.668800e+04 0.00 NULL
2019 Department Of Business Serv. Secretary To The Deputy Commissioner 58283.00000 5.828300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.828300e+04 5.828300e+04 0.00 NULL
2019 Department Of Business Serv. Space Analyst 73338.00000 7.333800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.333800e+04 7.333800e+04 0.00 NULL
2019 Department Of Business Serv. Staff Analyst 69130.50000 2.765220e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.765220e+05 2.765220e+05 0.00 NULL
2019 Department Of Business Serv. Summer College Intern 4527.19846 5.885358e+04 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 5.885358e+04 5.885358e+04 0.00 NULL
2019 Department Of Business Serv. Supervising Computer Service Technician 86332.00000 8.633200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.633200e+04 8.633200e+04 0.00 NULL
2019 Department Of Business Serv. Telecommunications Associate 66252.00000 6.625200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.625200e+04 6.625200e+04 0.00 NULL
2019 Department Of City Planning Accountant 76320.50000 1.526410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.526410e+05 1.526410e+05 0.00 NULL
2019 Department Of City Planning Adm Manager-Non-Mgrl From M1/M2 67200.50000 2.688020e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.688020e+05 2.688020e+05 0.00 NULL
2019 Department Of City Planning Administrative Business Promotion Coordinator 127500.00000 3.825000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.825000e+05 3.825000e+05 0.00 NULL
2019 Department Of City Planning Administrative City Planner 123127.15000 4.925086e+06 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 4.925086e+06 4.925086e+06 0.00 NULL
2019 Department Of City Planning Administrative Labor Relations Analyst 106347.33333 3.190420e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.190420e+05 3.190420e+05 0.00 NULL
2019 Department Of City Planning Administrative Staff Analyst 112639.20000 5.631960e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.631960e+05 5.631960e+05 0.00 NULL
2019 Department Of City Planning Agency Attorney 94789.14286 6.635240e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.635240e+05 6.635240e+05 0.00 NULL
2019 Department Of City Planning Architectural Intern 31040.00000 6.208000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.208000e+04 6.208000e+04 0.00 NULL
2019 Department Of City Planning Assistant Architect 62978.50000 1.259570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.259570e+05 1.259570e+05 0.00 NULL
2019 Department Of City Planning Assistant Environmental Engineer 65500.00000 1.310000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.310000e+05 1.310000e+05 0.00 NULL
2019 Department Of City Planning Assistant Highway Transportation Specialist 63265.20000 6.326520e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 6.326520e+05 6.326520e+05 0.00 NULL
2019 Department Of City Planning Assistant Urban Designer 59757.87571 8.366103e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 8.366103e+05 8.366103e+05 0.00 NULL
2019 Department Of City Planning Associate Staff Analyst 79749.20000 3.987460e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.987460e+05 3.987460e+05 0.00 NULL
2019 Department Of City Planning Associate Urban Designer 83971.70000 8.397170e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 8.397170e+05 8.397170e+05 0.00 NULL
2019 Department Of City Planning Bookbinder 53105.00000 5.310500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.310500e+04 5.310500e+04 0.00 NULL
2019 Department Of City Planning Certified It Administrator 91499.00000 1.829980e+05 15.04 7.520000e+00 7.520 0.00 2 7.520000e+00 15.04 1.830130e+05 1.830130e+05 0.00 NULL
2019 Department Of City Planning Certified It Developer 106552.00000 4.262080e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.262080e+05 4.262080e+05 0.00 NULL
2019 Department Of City Planning Certified Local Area Network Administrator 112025.00000 1.120250e+05 20.57 2.057000e+01 20.570 0.00 1 2.057000e+01 20.57 1.120456e+05 1.120456e+05 0.00 NULL
2019 Department Of City Planning Chairman 236088.00000 2.360880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.360880e+05 2.360880e+05 0.00 NULL
2019 Department Of City Planning City Planner 78357.94333 7.992510e+06 0.00 0.000000e+00 0.000 0.00 102 0.000000e+00 0.00 7.992510e+06 7.992510e+06 0.00 NULL
2019 Department Of City Planning City Planning Technician 3889.60740 7.779215e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.779215e+03 7.779215e+03 0.00 NULL
2019 Department Of City Planning City Research Scientist 84639.66667 7.617570e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.617570e+05 7.617570e+05 0.00 NULL
2019 Department Of City Planning Civil Engineer 93866.00000 9.386600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.386600e+04 9.386600e+04 0.00 NULL
2019 Department Of City Planning Clerical Associate 46136.37064 2.306819e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.306819e+05 2.306819e+05 0.00 NULL
2019 Department Of City Planning College Aide 2966.65747 5.636649e+04 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 5.636649e+04 5.636649e+04 0.00 NULL
2019 Department Of City Planning Commissioner 62353.00000 7.482360e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.482360e+05 7.482360e+05 0.00 NULL
2019 Department Of City Planning Commissioner Designated As Vice Chairman 71704.00000 7.170400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.170400e+04 7.170400e+04 0.00 NULL
2019 Department Of City Planning Community Assistant 2220.18080 2.220181e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 2.220181e+04 2.220181e+04 0.00 NULL
2019 Department Of City Planning Community Associate 48033.93219 7.205090e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 7.205090e+05 7.205090e+05 0.00 NULL
2019 Department Of City Planning Community Coordinator 64079.80295 4.101107e+06 0.00 0.000000e+00 0.000 0.00 64 0.000000e+00 0.00 4.101107e+06 4.101107e+06 0.00 NULL
2019 Department Of City Planning Computer Aide-Non-Spvr 63906.00000 6.390600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.390600e+04 6.390600e+04 0.00 NULL
2019 Department Of City Planning Computer Associate 62259.65120 5.603369e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.603369e+05 5.603369e+05 0.00 NULL
2019 Department Of City Planning Computer Operations Manager 108278.00000 4.331120e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.331120e+05 4.331120e+05 0.00 NULL
2019 Department Of City Planning Computer Programmer Analyst 64454.00000 6.445400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.445400e+04 6.445400e+04 0.00 NULL
2019 Department Of City Planning Computer Service Technician 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2019 Department Of City Planning Computer Specialist 89316.02308 1.161108e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.161108e+06 1.161108e+06 0.00 NULL
2019 Department Of City Planning Computer Systems Manager 129066.80000 6.453340e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.453340e+05 6.453340e+05 0.00 NULL
2019 Department Of City Planning Contract Specialist 76563.00000 7.656300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.656300e+04 7.656300e+04 0.00 NULL
2019 Department Of City Planning Counsel 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2019 Department Of City Planning Deputy Executive Director 201507.00000 2.015070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.015070e+05 2.015070e+05 0.00 NULL
2019 Department Of City Planning Director Of Public Information 144518.66667 4.335560e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.335560e+05 4.335560e+05 0.00 NULL
2019 Department Of City Planning Economist 61910.42857 4.333730e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.333730e+05 4.333730e+05 0.00 NULL
2019 Department Of City Planning Executive Agency Counsel 121121.00000 1.211210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.211210e+05 1.211210e+05 0.00 NULL
2019 Department Of City Planning Executive Assistant For Planning 125773.00000 1.257730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.257730e+05 1.257730e+05 0.00 NULL
2019 Department Of City Planning Executive Assistant To The Chairman 65831.50000 1.316630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.316630e+05 1.316630e+05 0.00 NULL
2019 Department Of City Planning Executive Director 211432.50000 4.228650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.228650e+05 4.228650e+05 0.00 NULL
2019 Department Of City Planning Geologist 83200.00000 8.320000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.320000e+04 8.320000e+04 0.00 NULL
2019 Department Of City Planning Graphic Artist 77640.00000 7.764000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.764000e+04 7.764000e+04 0.00 NULL
2019 Department Of City Planning Highway Transportation Specialist 95187.00000 2.855610e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.855610e+05 2.855610e+05 0.00 NULL
2019 Department Of City Planning Motor Vehicle Supervisor 56287.00000 5.628700e+04 27008.47 2.700847e+04 27008.470 614.75 1 2.700847e+04 27008.47 8.329547e+04 8.329547e+04 0.00 NULL
2019 Department Of City Planning Principal Administrative Associate - Lev 1 & 2 Non Supvr 63511.83333 3.810710e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.810710e+05 3.810710e+05 0.00 NULL
2019 Department Of City Planning Principal Planning Consultant 122546.50000 2.450930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.450930e+05 2.450930e+05 0.00 NULL
2019 Department Of City Planning Public Records Officer 57500.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2019 Department Of City Planning Secretary 57236.00000 5.723600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.723600e+04 5.723600e+04 0.00 NULL
2019 Department Of City Planning Secretary To The Chairman 81640.00000 8.164000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.164000e+04 8.164000e+04 0.00 NULL
2019 Department Of City Planning Space Analyst 55000.00000 5.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.500000e+04 5.500000e+04 0.00 NULL
2019 Department Of City Planning Staff Analyst 71575.00000 7.157500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.157500e+04 7.157500e+04 0.00 NULL
2019 Department Of City Planning Summer College Intern 2316.06596 5.790165e+04 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 5.790165e+04 5.790165e+04 0.00 NULL
2019 Department Of City Planning Telecommunications Associate 78411.50000 1.568230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.568230e+05 1.568230e+05 0.00 NULL
2019 Department Of Correction Adm Manager-Non-Mgrl From M1/M2 71943.23890 3.812992e+06 495479.12 9.348663e+03 1164.030 9912.25 53 1.164030e+03 61693.59 4.308471e+06 3.874685e+06 433785.53 NULL
2019 Department Of Correction Admin Community Relations Specialist 95335.66667 2.860070e+05 5413.50 1.804500e+03 1349.030 103.25 3 1.349030e+03 4047.09 2.914205e+05 2.900541e+05 1366.41 NULL
2019 Department Of Correction Admin Construction Project Manager 114008.00000 1.140080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.140080e+05 1.140080e+05 0.00 NULL
2019 Department Of Correction Admin Inspector 103632.00000 1.036320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.036320e+05 1.036320e+05 0.00 NULL
2019 Department Of Correction Administrative Architect 146387.50000 2.927750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.927750e+05 2.927750e+05 0.00 NULL
2019 Department Of Correction Administrative Business Promotion Coordinator 130000.00000 5.200000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.200000e+05 5.200000e+05 0.00 NULL
2019 Department Of Correction Administrative Construction Project Manager 149567.00000 1.495670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.495670e+05 1.495670e+05 0.00 NULL
2019 Department Of Correction Administrative Contract Specialist 67792.00000 6.779200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.779200e+04 6.779200e+04 0.00 NULL
2019 Department Of Correction Administrative Director Of Social Services 113237.83333 1.358854e+06 197.26 1.643833e+01 0.000 6.25 12 0.000000e+00 0.00 1.359051e+06 1.358854e+06 197.26 NULL
2019 Department Of Correction Administrative Engineer 145389.00000 2.907780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.907780e+05 2.907780e+05 0.00 NULL
2019 Department Of Correction Administrative Graphic Artist 99099.00000 9.909900e+04 373.62 3.736200e+02 373.620 6.00 1 3.736200e+02 373.62 9.947262e+04 9.947262e+04 0.00 NULL
2019 Department Of Correction Administrative Investigator 96095.36889 8.648583e+05 76115.87 8.457319e+03 5562.330 1228.00 9 5.562330e+03 50060.97 9.409742e+05 9.149193e+05 26054.90 NULL
2019 Department Of Correction Administrative Management Auditor 102250.00000 1.022500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.022500e+05 1.022500e+05 0.00 NULL
2019 Department Of Correction Administrative Procurement Analyst 86359.77778 7.772380e+05 24672.65 2.741406e+03 0.000 312.50 9 0.000000e+00 0.00 8.019107e+05 7.772380e+05 24672.65 NULL
2019 Department Of Correction Administrative Project Manager 126434.80000 6.321740e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.321740e+05 6.321740e+05 0.00 NULL
2019 Department Of Correction Administrative Psychologist 177249.00000 1.772490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.772490e+05 1.772490e+05 0.00 NULL
2019 Department Of Correction Administrative Public Health Sanitarian 169479.50000 3.389590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.389590e+05 3.389590e+05 0.00 NULL
2019 Department Of Correction Administrative Public Information Specialist 114244.93750 9.139595e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.139595e+05 9.139595e+05 0.00 NULL
2019 Department Of Correction Administrative Public Records Officer 118919.00000 1.189190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.189190e+05 1.189190e+05 0.00 NULL
2019 Department Of Correction Administrative Staff Analyst 111660.19231 5.806330e+06 405954.12 7.806810e+03 0.000 5765.25 52 0.000000e+00 0.00 6.212284e+06 5.806330e+06 405954.12 NULL
2019 Department Of Correction Administrative Supervisor Of Building Maintenance 154001.00000 3.080020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.080020e+05 3.080020e+05 0.00 NULL
2019 Department Of Correction Agency Attorney 97993.10204 4.801662e+06 51209.07 1.045083e+03 0.000 1124.75 49 0.000000e+00 0.00 4.852871e+06 4.801662e+06 51209.07 NULL
2019 Department Of Correction Agency Attorney Interne 69826.00000 6.982600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.982600e+04 6.982600e+04 0.00 NULL
2019 Department Of Correction Agency Chief Contracting Officer 159217.00000 1.592170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.592170e+05 1.592170e+05 0.00 NULL
2019 Department Of Correction Architect 109248.00000 1.092480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.092480e+05 1.092480e+05 0.00 NULL
2019 Department Of Correction Asbestos Handler Supervisor 83740.00000 1.674800e+05 51112.15 2.555608e+04 25556.075 839.25 2 2.555608e+04 51112.15 2.185921e+05 2.185921e+05 0.00 NULL
2019 Department Of Correction Assistant Architect 83151.00000 8.315100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.315100e+04 8.315100e+04 0.00 NULL
2019 Department Of Correction Assistant Commissioner 132925.00000 1.329250e+05 2125.79 2.125790e+03 2125.790 21.75 1 2.125790e+03 2125.79 1.350508e+05 1.350508e+05 0.00 NULL
2019 Department Of Correction Assistant Printing Press Operator 49252.00000 4.925200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.925200e+04 4.925200e+04 0.00 NULL
2019 Department Of Correction Associate Correctional Counselor 59526.49451 5.416911e+06 110070.37 1.209565e+03 105.870 2094.25 91 1.058700e+02 9634.17 5.526981e+06 5.426545e+06 100436.20 NULL
2019 Department Of Correction Associate Investigator 64529.79625 6.452980e+05 186110.95 1.861110e+04 13410.645 3419.00 10 1.341065e+04 134106.45 8.314089e+05 7.794044e+05 52004.50 NULL
2019 Department Of Correction Associate Project Manager 93101.25000 3.724050e+05 117.26 2.931500e+01 0.000 2.00 4 0.000000e+00 0.00 3.725223e+05 3.724050e+05 117.26 NULL
2019 Department Of Correction Associate Public Health Sanitarian 72879.00000 2.915160e+05 148.29 3.707250e+01 0.000 2.25 4 0.000000e+00 0.00 2.916643e+05 2.915160e+05 148.29 NULL
2019 Department Of Correction Associate Quality Assurance Specialist 72598.00000 7.259800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.259800e+04 7.259800e+04 0.00 NULL
2019 Department Of Correction Associate Staff Analyst 87607.43750 1.401719e+06 73615.32 4.600958e+03 0.000 1113.00 16 0.000000e+00 0.00 1.475334e+06 1.401719e+06 73615.32 NULL
2019 Department Of Correction Attorney At Law 97550.00000 9.755000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.755000e+04 9.755000e+04 0.00 NULL
2019 Department Of Correction Auto Body Worker 60675.00000 1.213500e+05 138537.67 6.926884e+04 69268.835 3026.00 2 6.926884e+04 138537.67 2.598877e+05 2.598877e+05 0.00 NULL
2019 Department Of Correction Auto Mechanic NA NA 403301.30 2.372361e+04 24627.320 6825.43 17 2.372361e+04 403301.30 NA NA NA NULL
2019 Department Of Correction Automotive Service Worker 37302.77778 3.357250e+05 79106.27 8.789586e+03 3047.900 2803.25 9 3.047900e+03 27431.10 4.148313e+05 3.631561e+05 51675.17 NULL
2019 Department Of Correction Baker 35404.75000 1.416190e+05 1447.03 3.617575e+02 208.055 59.25 4 2.080550e+02 832.22 1.430660e+05 1.424512e+05 614.81 NULL
2019 Department Of Correction Bookkeeper 42830.00000 4.283000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.283000e+04 4.283000e+04 0.00 NULL
2019 Department Of Correction Bricklayer NA NA 202678.11 2.895402e+04 33962.880 3114.25 7 2.895402e+04 202678.11 NA NA NA NULL
2019 Department Of Correction Captain 98018.56990 9.184340e+07 27611762.27 2.946826e+04 27319.790 368381.90 937 2.731979e+04 25598643.23 1.194552e+08 1.174420e+08 2013119.04 NULL
2019 Department Of Correction Carpenter NA NA 821078.52 4.321466e+04 45511.040 11461.00 19 4.321466e+04 821078.52 NA NA NA NULL
2019 Department Of Correction Case Management Nurse 85554.00575 3.422160e+05 9481.36 2.370340e+03 0.000 176.50 4 0.000000e+00 0.00 3.516974e+05 3.422160e+05 9481.36 NULL
2019 Department Of Correction Cashier 39003.13333 1.170094e+06 251750.07 8.391669e+03 891.400 7691.00 30 8.914000e+02 26742.00 1.421844e+06 1.196836e+06 225008.07 NULL
2019 Department Of Correction Cement Mason NA NA 50990.81 5.099081e+04 50990.810 570.75 1 5.099081e+04 50990.81 NA NA NA NULL
2019 Department Of Correction Certified It Administrator 96996.62500 7.759730e+05 51186.74 6.398342e+03 5246.975 733.25 8 5.246975e+03 41975.80 8.271597e+05 8.179488e+05 9210.94 NULL
2019 Department Of Correction Chaplain 40687.57280 1.302002e+06 23195.79 7.248684e+02 0.000 569.50 32 0.000000e+00 0.00 1.325198e+06 1.302002e+06 23195.79 NULL
2019 Department Of Correction City Elevator Operator 39661.00000 1.189830e+05 10585.08 3.528360e+03 154.010 261.75 3 1.540100e+02 462.03 1.295681e+05 1.194450e+05 10123.05 NULL
2019 Department Of Correction City Medical Specialist 146911.10388 1.616022e+06 5381.88 4.892618e+02 0.000 61.50 11 0.000000e+00 0.00 1.621404e+06 1.616022e+06 5381.88 NULL
2019 Department Of Correction City Research Scientist 96282.77778 8.665450e+05 46803.16 5.200351e+03 1278.920 721.25 9 1.278920e+03 11510.28 9.133482e+05 8.780553e+05 35292.88 NULL
2019 Department Of Correction Civil Engineer 92534.00000 9.253400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.253400e+04 9.253400e+04 0.00 NULL
2019 Department Of Correction Clerical Associate 43654.83592 2.837564e+06 256308.72 3.943211e+03 532.290 7527.00 65 5.322900e+02 34598.85 3.093873e+06 2.872163e+06 221709.87 NULL
2019 Department Of Correction College Aide 3274.51038 1.735490e+05 0.00 0.000000e+00 0.000 0.00 53 0.000000e+00 0.00 1.735490e+05 1.735490e+05 0.00 NULL
2019 Department Of Correction Commissary Manager 34877.87500 2.790230e+05 12697.92 1.587240e+03 1299.250 557.50 8 1.299250e+03 10394.00 2.917209e+05 2.894170e+05 2303.92 NULL
2019 Department Of Correction Commissioner 231227.00000 4.624540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.624540e+05 4.624540e+05 0.00 NULL
2019 Department Of Correction Community Assistant 36114.25000 1.444570e+05 15391.54 3.847885e+03 2206.260 652.50 4 2.206260e+03 8825.04 1.598485e+05 1.532820e+05 6566.50 NULL
2019 Department Of Correction Community Associate 40811.98422 9.386756e+05 53836.44 2.340715e+03 20.370 1573.25 23 2.037000e+01 468.51 9.925121e+05 9.391441e+05 53367.93 NULL
2019 Department Of Correction Community Coordinator 58435.40946 7.947216e+06 473983.47 3.485173e+03 25.735 10124.25 136 2.573500e+01 3499.96 8.421199e+06 7.950716e+06 470483.51 NULL
2019 Department Of Correction Computer Aide-Non-Spvr 50672.66667 1.520180e+05 44755.51 1.491850e+04 0.850 1058.75 3 8.500000e-01 2.55 1.967735e+05 1.520205e+05 44752.96 NULL
2019 Department Of Correction Computer Associate 68901.64286 9.646230e+05 28730.66 2.052190e+03 225.325 565.50 14 2.253250e+02 3154.55 9.933537e+05 9.677776e+05 25576.11 NULL
2019 Department Of Correction Computer Operations Manager 136024.80000 6.801240e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.801240e+05 6.801240e+05 0.00 NULL
2019 Department Of Correction Computer Specialist 98268.07407 2.653238e+06 34734.88 1.286477e+03 0.000 565.75 27 0.000000e+00 0.00 2.687973e+06 2.653238e+06 34734.88 NULL
2019 Department Of Correction Computer Systems Manager 123647.88000 3.091197e+06 28.01 1.120400e+00 0.000 5.00 25 0.000000e+00 0.00 3.091225e+06 3.091197e+06 28.01 NULL
2019 Department Of Correction Confidential Agency Investigator 117223.58333 1.406683e+06 77346.19 6.445516e+03 0.000 1326.75 12 0.000000e+00 0.00 1.484029e+06 1.406683e+06 77346.19 NULL
2019 Department Of Correction Construction Project Manager 100858.00000 3.025740e+05 93.29 3.109667e+01 0.000 1.50 3 0.000000e+00 0.00 3.026673e+05 3.025740e+05 93.29 NULL
2019 Department Of Correction Cook 38094.87597 4.914239e+06 557573.10 4.322272e+03 3246.350 18643.79 129 3.246350e+03 418779.15 5.471812e+06 5.333018e+06 138793.95 NULL
2019 Department Of Correction Correction Administrative Aide 35393.02455 3.893233e+05 7489.01 6.808191e+02 4.730 266.75 11 4.730000e+00 52.03 3.968123e+05 3.893753e+05 7436.98 NULL
2019 Department Of Correction Correction Officer 67307.78529 7.047125e+08 123998535.71 1.184322e+04 7973.760 2309968.01 10470 7.973760e+03 83485267.20 8.287110e+08 7.881978e+08 40513268.51 NULL
2019 Department Of Correction Correctional Standards Review Specialist 71316.52500 2.852661e+06 97606.96 2.440174e+03 148.940 2099.50 40 1.489400e+02 5957.60 2.950268e+06 2.858619e+06 91649.36 NULL
2019 Department Of Correction Counselor 55345.00000 1.106900e+05 221.07 1.105350e+02 110.535 0.00 2 1.105350e+02 221.07 1.109111e+05 1.109111e+05 0.00 NULL
2019 Department Of Correction Deputy Commissioner 201535.00000 4.030700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.030700e+05 4.030700e+05 0.00 NULL
2019 Department Of Correction Dietary Aide 36793.50000 2.943480e+05 14664.75 1.833094e+03 1469.650 569.75 8 1.469650e+03 11757.20 3.090128e+05 3.061052e+05 2907.55 NULL
2019 Department Of Correction Dietitian 54634.08333 6.556090e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 6.556090e+05 6.556090e+05 0.00 NULL
2019 Department Of Correction Director Of Correctional Standards Review 104576.89362 4.915114e+06 1029.53 2.190489e+01 0.000 0.00 47 0.000000e+00 0.00 4.916144e+06 4.915114e+06 1029.53 NULL
2019 Department Of Correction Director Of Public Affairs 112475.00000 1.124750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.124750e+05 1.124750e+05 0.00 NULL
2019 Department Of Correction Electrical Engineer 99919.00000 9.991900e+04 668.69 6.686900e+02 668.690 9.50 1 6.686900e+02 668.69 1.005877e+05 1.005877e+05 0.00 NULL
2019 Department Of Correction Electrician NA NA 2144628.38 4.124285e+04 41332.300 25401.25 52 4.124285e+04 2144628.38 NA NA NA NULL
2019 Department Of Correction Electrician’s Helper NA NA 823888.55 2.657705e+04 26617.500 14487.75 31 2.657705e+04 823888.55 NA NA NA NULL
2019 Department Of Correction Executive Agency Counsel 149483.08696 3.438111e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 3.438111e+06 3.438111e+06 0.00 NULL
2019 Department Of Correction Executive Assistant To The Commissioner 215373.00000 2.153730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.153730e+05 2.153730e+05 0.00 NULL
2019 Department Of Correction Executive Director Of Food Services 140798.00000 1.407980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.407980e+05 1.407980e+05 0.00 NULL
2019 Department Of Correction Executive Program Specialist 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2019 Department Of Correction Exterminator 38339.16667 4.600700e+05 94598.95 7.883246e+03 1637.730 3085.50 12 1.637730e+03 19652.76 5.546689e+05 4.797228e+05 74946.19 NULL
2019 Department Of Correction Film Manager 84114.00000 8.411400e+04 965.38 9.653800e+02 965.380 21.00 1 9.653800e+02 965.38 8.507938e+04 8.507938e+04 0.00 NULL
2019 Department Of Correction Fitness Instructor 50561.21192 2.528061e+05 66651.52 1.333030e+04 12518.410 2408.00 5 1.251841e+04 62592.05 3.194576e+05 3.153981e+05 4059.47 NULL
2019 Department Of Correction Food Service Administrator 80041.50000 3.201660e+05 10904.39 2.726097e+03 645.025 239.25 4 6.450250e+02 2580.10 3.310704e+05 3.227461e+05 8324.29 NULL
2019 Department Of Correction Food Service Manager 58739.61538 7.636150e+05 32316.41 2.485878e+03 1082.880 855.25 13 1.082880e+03 14077.44 7.959314e+05 7.776924e+05 18238.97 NULL
2019 Department Of Correction Fraud Investigator 65038.00000 6.503800e+04 38.16 3.816000e+01 38.160 1.00 1 3.816000e+01 38.16 6.507616e+04 6.507616e+04 0.00 NULL
2019 Department Of Correction Graphic Artist 68365.50000 1.367310e+05 1698.67 8.493350e+02 849.335 56.00 2 8.493350e+02 1698.67 1.384297e+05 1.384297e+05 0.00 NULL
2019 Department Of Correction Health Services Manager Non Managerial Level I 107140.00000 1.071400e+05 2125.79 2.125790e+03 2125.790 30.25 1 2.125790e+03 2125.79 1.092658e+05 1.092658e+05 0.00 NULL
2019 Department Of Correction High Pressure Plant Tender NA NA 308805.03 2.375423e+04 19018.130 5798.75 13 1.901813e+04 247235.69 NA NA NA NULL
2019 Department Of Correction Industrial Hygienist 65765.00000 1.972950e+05 1736.11 5.787033e+02 683.420 32.25 3 5.787033e+02 1736.11 1.990311e+05 1.990311e+05 0.00 NULL
2019 Department Of Correction Institutional Aide 38501.89474 7.315360e+05 159089.59 8.373136e+03 439.410 5501.50 19 4.394100e+02 8348.79 8.906256e+05 7.398848e+05 150740.80 NULL
2019 Department Of Correction Investigator 56587.55914 7.695908e+06 1438640.52 1.057824e+04 6695.155 35374.75 136 6.695155e+03 910541.08 9.134549e+06 8.606449e+06 528099.44 NULL
2019 Department Of Correction Legal Coordinator 54201.62857 1.897057e+06 386505.09 1.104300e+04 4970.000 8992.77 35 4.970000e+03 173950.00 2.283562e+06 2.071007e+06 212555.09 NULL
2019 Department Of Correction Licensed Barber 39366.00000 4.723920e+05 37107.61 3.092301e+03 106.465 1278.50 12 1.064650e+02 1277.58 5.094996e+05 4.736696e+05 35830.03 NULL
2019 Department Of Correction Locksmith NA NA 174157.67 1.024457e+04 9484.560 3669.25 17 9.484560e+03 161237.52 NA NA NA NULL
2019 Department Of Correction Machinist NA NA 110189.53 3.672984e+04 35733.020 1796.25 3 3.573302e+04 107199.06 NA NA NA NULL
2019 Department Of Correction Maintenance Worker NA NA 872308.41 1.744617e+04 13936.750 20593.65 50 1.393675e+04 696837.50 NA NA NA NULL
2019 Department Of Correction Management Auditor 86762.00000 2.602860e+05 15940.93 5.313643e+03 0.000 245.00 3 0.000000e+00 0.00 2.762269e+05 2.602860e+05 15940.93 NULL
2019 Department Of Correction Marine Engineer 88914.30000 4.445715e+05 227572.04 4.551441e+04 48756.360 3951.00 5 4.551441e+04 227572.04 6.721435e+05 6.721435e+05 0.00 NULL
2019 Department Of Correction Marine Oiler 113643.80980 2.272876e+05 116410.86 5.820543e+04 58205.430 2191.50 2 5.820543e+04 116410.86 3.436985e+05 3.436985e+05 0.00 NULL
2019 Department Of Correction Masons Helper NA NA 51383.00 5.138300e+04 51383.000 986.50 1 5.138300e+04 51383.00 NA NA NA NULL
2019 Department Of Correction Mate 57875.00000 5.787500e+04 2442.24 2.442240e+03 2442.240 0.00 1 2.442240e+03 2442.24 6.031724e+04 6.031724e+04 0.00 NULL
2019 Department Of Correction Metal Work Mechanic 82962.25000 3.318490e+05 173848.67 4.346217e+04 49077.835 2897.25 4 4.346217e+04 173848.67 5.056977e+05 5.056977e+05 0.00 NULL
2019 Department Of Correction Motor Vehicle Operator 45201.69811 2.395690e+06 415566.40 7.840875e+03 6514.390 11779.25 53 6.514390e+03 345262.67 2.811256e+06 2.740953e+06 70303.73 NULL
2019 Department Of Correction Motor Vehicle Supervisor 54581.14286 3.820680e+05 19610.77 2.801539e+03 2025.530 476.25 7 2.025530e+03 14178.71 4.016788e+05 3.962467e+05 5432.06 NULL
2019 Department Of Correction New York City Public Service Fellow 45000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2019 Department Of Correction Office Machine Aide 19943.00000 3.988600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.988600e+04 3.988600e+04 0.00 NULL
2019 Department Of Correction Oiler NA NA 1523258.74 4.116916e+04 38804.860 17438.75 37 3.880486e+04 1435779.82 NA NA NA NULL
2019 Department Of Correction Operations Communications Specialist 28525.84600 5.705169e+04 255.85 1.279250e+02 127.925 10.25 2 1.279250e+02 255.85 5.730754e+04 5.730754e+04 0.00 NULL
2019 Department Of Correction Paralegal Aide 45710.38000 4.571038e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.571038e+04 4.571038e+04 0.00 NULL
2019 Department Of Correction Plasterer NA NA 244947.83 1.224739e+05 122473.915 2688.50 2 1.224739e+05 244947.83 NA NA NA NULL
2019 Department Of Correction Plumber NA NA 1901913.08 5.005034e+04 41296.270 18003.00 38 4.129627e+04 1569258.26 NA NA NA NULL
2019 Department Of Correction Plumber’s Helper NA NA 757405.77 3.606694e+04 36519.590 10446.25 21 3.606694e+04 757405.77 NA NA NA NULL
2019 Department Of Correction Principal Administrative Associate - Lev 1 & 2 Non Supvr 59625.66667 4.650802e+06 356918.23 4.575875e+03 776.240 8588.75 78 7.762400e+02 60546.72 5.007720e+06 4.711349e+06 296371.51 NULL
2019 Department Of Correction Printing Press Operator NA NA 50122.78 5.012278e+04 50122.780 868.00 1 5.012278e+04 50122.78 NA NA NA NULL
2019 Department Of Correction Procurement Analyst 67159.00000 8.730670e+05 3571.93 2.747638e+02 0.000 114.50 13 0.000000e+00 0.00 8.766389e+05 8.730670e+05 3571.93 NULL
2019 Department Of Correction Program Specialist Correction 67244.32152 9.145228e+06 991813.44 7.292746e+03 179.630 19525.78 136 1.796300e+02 24429.68 1.013704e+07 9.169657e+06 967383.76 NULL
2019 Department Of Correction Project Manager 69464.00000 6.946400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.946400e+04 6.946400e+04 0.00 NULL
2019 Department Of Correction Psychologist 66848.89931 8.021868e+05 67489.68 5.624140e+03 746.830 1102.75 12 7.468300e+02 8961.96 8.696765e+05 8.111488e+05 58527.72 NULL
2019 Department Of Correction Public Health Sanitarian 61559.42857 4.309160e+05 16005.78 2.286540e+03 529.530 305.50 7 5.295300e+02 3706.71 4.469218e+05 4.346227e+05 12299.07 NULL
2019 Department Of Correction Public Records Aide 37726.00000 3.772600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.772600e+04 3.772600e+04 0.00 NULL
2019 Department Of Correction Radio Repair Mechanic NA NA 11146.23 2.786557e+03 1206.980 151.50 4 1.206980e+03 4827.92 NA NA NA NULL
2019 Department Of Correction Recreation Director 42754.05263 8.123270e+05 10731.39 5.648100e+02 34.180 425.00 19 3.418000e+01 649.42 8.230584e+05 8.129764e+05 10081.97 NULL
2019 Department Of Correction Recreation Supervisor 55232.11111 4.970890e+05 18642.04 2.071338e+03 976.960 509.50 9 9.769600e+02 8792.64 5.157310e+05 5.058816e+05 9849.40 NULL
2019 Department Of Correction Research Assistant 27800.83500 2.780083e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.780083e+04 2.780083e+04 0.00 NULL
2019 Department Of Correction Roofer NA NA 191201.90 2.390024e+04 24358.550 3456.25 8 2.390024e+04 191201.90 NA NA NA NULL
2019 Department Of Correction Rubber Tire Repairer NA NA 4003.90 2.001950e+03 2001.950 90.25 2 2.001950e+03 4003.90 NA NA NA NULL
2019 Department Of Correction Secretary 40855.00000 8.171000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.171000e+04 8.171000e+04 0.00 NULL
2019 Department Of Correction Secretary To The Commissioner Of Correction 82823.00000 8.282300e+04 11708.33 1.170833e+04 11708.330 253.00 1 1.170833e+04 11708.33 9.453133e+04 9.453133e+04 0.00 NULL
2019 Department Of Correction Senior Baker 43220.00000 2.161000e+05 1308.44 2.616880e+02 0.000 45.25 5 0.000000e+00 0.00 2.174084e+05 2.161000e+05 1308.44 NULL
2019 Department Of Correction Senior Cook 41924.28571 1.173880e+06 323805.84 1.156449e+04 10752.395 9967.08 28 1.075240e+04 301067.06 1.497686e+06 1.474947e+06 22738.78 NULL
2019 Department Of Correction Senior Institutional Trades Instructor 45045.00000 9.009000e+04 66497.51 3.324875e+04 33248.755 1962.50 2 3.324875e+04 66497.51 1.565875e+05 1.565875e+05 0.00 NULL
2019 Department Of Correction Senior Stationary Engineer NA NA 525771.30 7.511019e+04 81748.350 5025.25 7 7.511019e+04 525771.30 NA NA NA NULL
2019 Department Of Correction Sheet Metal Worker NA NA 152669.96 3.053399e+04 37133.930 1457.50 5 3.053399e+04 152669.96 NA NA NA NULL
2019 Department Of Correction Social Worker 60684.00000 1.820520e+05 2237.83 7.459433e+02 99.810 54.75 3 9.981000e+01 299.43 1.842898e+05 1.823514e+05 1938.40 NULL
2019 Department Of Correction Staff Analyst 66359.20308 8.626696e+05 21837.22 1.679786e+03 112.490 504.75 13 1.124900e+02 1462.37 8.845069e+05 8.641320e+05 20374.85 NULL
2019 Department Of Correction Staff Nurse 79764.83333 4.785890e+05 466.97 7.782833e+01 0.000 8.50 6 0.000000e+00 0.00 4.790560e+05 4.785890e+05 466.97 NULL
2019 Department Of Correction Stationary Engineer NA NA 1521969.02 6.341538e+04 78868.880 16641.50 24 6.341538e+04 1521969.02 NA NA NA NULL
2019 Department Of Correction Steam Fitter NA NA 361979.71 4.021997e+04 36301.820 3377.50 9 3.630182e+04 326716.38 NA NA NA NULL
2019 Department Of Correction Steam Fitter’s Helper NA NA 307819.14 4.397416e+04 55728.750 3704.43 7 4.397416e+04 307819.14 NA NA NA NULL
2019 Department Of Correction Stock Worker 34584.06667 5.187610e+05 68100.93 4.540062e+03 3802.890 2855.25 15 3.802890e+03 57043.35 5.868619e+05 5.758043e+05 11057.58 NULL
2019 Department Of Correction Summer Graduate Intern 2519.96774 2.343570e+05 0.00 0.000000e+00 0.000 0.00 93 0.000000e+00 0.00 2.343570e+05 2.343570e+05 0.00 NULL
2019 Department Of Correction Superintendent Of Laundries 57539.00000 5.753900e+04 5871.70 5.871700e+03 5871.700 153.75 1 5.871700e+03 5871.70 6.341070e+04 6.341070e+04 0.00 NULL
2019 Department Of Correction Supervising Computer Service Technician 82886.51125 1.657730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.657730e+05 1.657730e+05 0.00 NULL
2019 Department Of Correction Supervising Housekeeper 48203.00000 9.640600e+04 12563.34 6.281670e+03 6281.670 385.75 2 6.281670e+03 12563.34 1.089693e+05 1.089693e+05 0.00 NULL
2019 Department Of Correction Supervisor 48341.00000 4.834100e+04 759.74 7.597400e+02 759.740 27.00 1 7.597400e+02 759.74 4.910074e+04 4.910074e+04 0.00 NULL
2019 Department Of Correction Supervisor Electrician NA NA 99815.68 9.981568e+04 99815.680 1064.50 1 9.981568e+04 99815.68 NA NA NA NULL
2019 Department Of Correction Supervisor Of Electrical Installations & Maintenance 72403.00000 7.240300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.240300e+04 7.240300e+04 0.00 NULL
2019 Department Of Correction Supervisor Of Mechanics NA NA 1382919.32 5.318920e+04 53418.130 15009.25 26 5.318920e+04 1382919.32 NA NA NA NULL
2019 Department Of Correction Supervisor Of Stock Workers 43783.53846 5.691860e+05 37453.85 2.881065e+03 492.420 1132.00 13 4.924200e+02 6401.46 6.066398e+05 5.755875e+05 31052.39 NULL
2019 Department Of Correction Supervisor Plumber NA NA 92907.04 9.290704e+04 92907.040 868.00 1 9.290704e+04 92907.04 NA NA NA NULL
2019 Department Of Correction Supervisor Steamfitter NA NA 114259.35 1.142594e+05 114259.350 996.00 1 1.142594e+05 114259.35 NA NA NA NULL
2019 Department Of Correction Telecommunications Associate 86643.00000 1.732860e+05 51075.57 2.553778e+04 25537.785 709.75 2 2.553778e+04 51075.57 2.243616e+05 2.243616e+05 0.00 NULL
2019 Department Of Correction Telephone Service Technician 58199.00000 5.819900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.819900e+04 5.819900e+04 0.00 NULL
2019 Department Of Correction Thermostat Repairer NA NA 725001.01 6.590918e+04 59994.000 6826.50 11 5.999400e+04 659934.00 NA NA NA NULL
2019 Department Of Correction Tractor Operator NA NA 158188.81 5.272960e+04 53530.440 1388.99 3 5.272960e+04 158188.81 NA NA NA NULL
2019 Department Of Correction Warden 198599.34615 5.163583e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 5.163583e+06 5.163583e+06 0.00 NULL
2019 Department Of Correction Warden-Assistant Deputy Warden Ted < 11/1/92 119911.37778 1.079202e+07 4532376.17 5.035974e+04 51885.455 49193.26 90 5.035974e+04 4532376.17 1.532440e+07 1.532440e+07 0.00 NULL
2019 Department Of Correction Warden-Deputy Warden In Comm Ted < 11/1/92 170791.66667 1.024750e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.024750e+06 1.024750e+06 0.00 NULL
2019 Department Of Correction Warden-Deputy Warden Ted < 11/1/92 149911.59524 6.296287e+06 231120.09 5.502859e+03 0.000 2348.52 42 0.000000e+00 0.00 6.527407e+06 6.296287e+06 231120.09 NULL
2019 Department Of Correction Welder NA NA 359346.24 3.593462e+04 37280.660 3669.75 10 3.593462e+04 359346.24 NA NA NA NULL
2019 Department Of Correction Worker’s Compensation Benefits Examiner 50580.00000 5.058000e+04 4583.47 4.583470e+03 4583.470 133.50 1 4.583470e+03 4583.47 5.516347e+04 5.516347e+04 0.00 NULL
2019 Department Of Education Admin Accountant 61893.34091 2.723307e+06 44358.20 1.008141e+03 0.000 1133.00 44 0.000000e+00 0.00 2.767665e+06 2.723307e+06 44358.20 NULL
2019 Department Of Education Admin Adm Manager-Non-Mgrl From M1/M2 74183.75000 5.934700e+05 53.82 6.727500e+00 0.000 1.50 8 0.000000e+00 0.00 5.935238e+05 5.934700e+05 53.82 NULL
2019 Department Of Education Admin Admin Contract Specialist 80570.00000 8.057000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.057000e+04 8.057000e+04 0.00 NULL
2019 Department Of Education Admin Administrative Accountant 116665.46154 1.516651e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.516651e+06 1.516651e+06 0.00 NULL
2019 Department Of Education Admin Administrative Assistant To Community Education Council 43517.61905 9.138700e+05 584.54 2.783524e+01 0.000 42.00 21 0.000000e+00 0.00 9.144545e+05 9.138700e+05 584.54 NULL
2019 Department Of Education Admin Administrative Attorney 221690.00000 2.216900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.216900e+05 2.216900e+05 0.00 NULL
2019 Department Of Education Admin Administrative Community Relations Specialist 102497.75000 1.639964e+06 -8517.12 -5.323200e+02 0.000 14.50 16 -5.323200e+02 -8517.12 1.631447e+06 1.631447e+06 0.00 NULL
2019 Department Of Education Admin Administrative Education Analyst 107422.70779 4.962929e+07 147652.83 3.195949e+02 0.000 2279.75 462 0.000000e+00 0.00 4.977694e+07 4.962929e+07 147652.83 NULL
2019 Department Of Education Admin Administrative Education Officer 103110.22275 6.526877e+07 269104.83 4.251261e+02 0.000 3576.00 633 0.000000e+00 0.00 6.553788e+07 6.526877e+07 269104.83 NULL
2019 Department Of Education Admin Administrative Engineer 125000.00000 1.250000e+05 54681.01 5.468101e+04 54681.010 637.00 1 5.468101e+04 54681.01 1.796810e+05 1.796810e+05 0.00 NULL
2019 Department Of Education Admin Administrative Management Auditor 106536.37500 8.522910e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.522910e+05 8.522910e+05 0.00 NULL
2019 Department Of Education Admin Administrative Manager 117919.84615 1.532958e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.532958e+06 1.532958e+06 0.00 NULL
2019 Department Of Education Admin Administrative Procurement Analyst 95076.39394 3.137521e+06 6725.71 2.038094e+02 0.000 121.00 33 0.000000e+00 0.00 3.144247e+06 3.137521e+06 6725.71 NULL
2019 Department Of Education Admin Administrative Project Manager 97984.00000 1.959680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.959680e+05 1.959680e+05 0.00 NULL
2019 Department Of Education Admin Administrative Public Health Nurse 155337.00000 1.553370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.553370e+05 1.553370e+05 0.00 NULL
2019 Department Of Education Admin Administrative Public Information Specialist 102652.60000 2.053052e+06 13729.63 6.864815e+02 0.000 271.75 20 0.000000e+00 0.00 2.066782e+06 2.053052e+06 13729.63 NULL
2019 Department Of Education Admin Administrative Quality Assurance Specialist 99582.41176 3.385802e+06 7674.76 2.257282e+02 0.000 162.75 34 0.000000e+00 0.00 3.393477e+06 3.385802e+06 7674.76 NULL
2019 Department Of Education Admin Administrative Retirement Benefits Specialist 140034.77778 1.260313e+06 10030.75 1.114528e+03 0.000 126.25 9 0.000000e+00 0.00 1.270344e+06 1.260313e+06 10030.75 NULL
2019 Department Of Education Admin Administrative School Food Service Manager 106760.47368 2.028449e+06 5949.11 3.131111e+02 0.000 237.75 19 0.000000e+00 0.00 2.034398e+06 2.028449e+06 5949.11 NULL
2019 Department Of Education Admin Administrative Space Analyst 110295.33333 1.654430e+06 140.64 9.376000e+00 0.000 3.25 15 0.000000e+00 0.00 1.654571e+06 1.654430e+06 140.64 NULL
2019 Department Of Education Admin Administrative Staff Analyst 123671.40088 2.807341e+07 0.00 0.000000e+00 0.000 0.00 227 0.000000e+00 0.00 2.807341e+07 2.807341e+07 0.00 NULL
2019 Department Of Education Admin Administrative Storekeeper 100345.00000 3.010350e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.010350e+05 3.010350e+05 0.00 NULL
2019 Department Of Education Admin Agency Attorney 93533.57979 1.758431e+07 12209.40 6.494362e+01 0.000 187.75 188 0.000000e+00 0.00 1.759652e+07 1.758431e+07 12209.40 NULL
2019 Department Of Education Admin Agency Attorney Interne 68002.00000 5.440160e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.440160e+05 5.440160e+05 0.00 NULL
2019 Department Of Education Admin Agency Chief Contracting Officer 192332.00000 1.923320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.923320e+05 1.923320e+05 0.00 NULL
2019 Department Of Education Admin Architect 90618.50000 3.624740e+05 18283.94 4.570985e+03 3232.210 224.50 4 3.232210e+03 12928.84 3.807579e+05 3.754028e+05 5355.10 NULL
2019 Department Of Education Admin Area Manager Of School Maintenance 133403.07692 3.468480e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 3.468480e+06 3.468480e+06 0.00 NULL
2019 Department Of Education Admin Asbestos Handler 79890.66667 7.190160e+05 280037.07 3.111523e+04 35700.240 3983.50 9 3.111523e+04 280037.07 9.990531e+05 9.990531e+05 0.00 NULL
2019 Department Of Education Admin Asbestos Hazard Investigator 67888.00000 6.788800e+04 5460.13 5.460130e+03 5460.130 108.50 1 5.460130e+03 5460.13 7.334813e+04 7.334813e+04 0.00 NULL
2019 Department Of Education Admin Assistant Accountant 61327.00000 6.132700e+04 2.44 2.440000e+00 2.440 0.00 1 2.440000e+00 2.44 6.132944e+04 6.132944e+04 0.00 NULL
2019 Department Of Education Admin Assistant Architect 82885.00000 8.288500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.288500e+04 8.288500e+04 0.00 NULL
2019 Department Of Education Admin Assistant Executive Director 156443.00000 1.564430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.564430e+05 1.564430e+05 0.00 NULL
2019 Department Of Education Admin Associate Education Analyst 96684.95238 4.060768e+06 54875.08 1.306550e+03 0.000 713.00 42 0.000000e+00 0.00 4.115643e+06 4.060768e+06 54875.08 NULL
2019 Department Of Education Admin Associate Education Officer 94733.25000 5.305062e+06 14221.53 2.539559e+02 0.000 260.75 56 0.000000e+00 0.00 5.319284e+06 5.305062e+06 14221.53 NULL
2019 Department Of Education Admin Associate Fingerprint Technician 44932.42857 3.145270e+05 49983.32 7.140474e+03 195.600 1577.75 7 1.956000e+02 1369.20 3.645103e+05 3.158962e+05 48614.12 NULL
2019 Department Of Education Admin Associate Human Rights Specialist 96995.00000 9.699500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.699500e+04 9.699500e+04 0.00 NULL
2019 Department Of Education Admin Associate Investigator 60496.00000 2.419840e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.419840e+05 2.419840e+05 0.00 NULL
2019 Department Of Education Admin Associate Project Manager 79028.50000 1.580570e+05 30726.41 1.536320e+04 15363.205 651.50 2 1.536320e+04 30726.41 1.887834e+05 1.887834e+05 0.00 NULL
2019 Department Of Education Admin Associate Quality Assurance Specialist 66581.19608 3.395641e+06 261956.69 5.136406e+03 2380.430 6602.25 51 2.380430e+03 121401.93 3.657598e+06 3.517043e+06 140554.76 NULL
2019 Department Of Education Admin Associate Retirement Benefits Examiner 66138.79688 4.232883e+06 347932.92 5.436452e+03 916.630 7867.75 64 9.166300e+02 58664.32 4.580816e+06 4.291547e+06 289268.60 NULL
2019 Department Of Education Admin Associate School Food Service Manager 68050.36066 4.151072e+06 177432.29 2.908726e+03 1768.240 4227.75 61 1.768240e+03 107862.64 4.328504e+06 4.258935e+06 69569.65 NULL
2019 Department Of Education Admin Associate Staff Analyst 81332.75000 9.759930e+05 7607.19 6.339325e+02 0.000 158.50 12 0.000000e+00 0.00 9.836002e+05 9.759930e+05 7607.19 NULL
2019 Department Of Education Admin Attorney At Law 105622.42270 3.168673e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.168673e+05 3.168673e+05 0.00 NULL
2019 Department Of Education Admin Bookkeeper 47644.94231 2.477537e+06 19282.68 3.708208e+02 0.000 597.50 52 0.000000e+00 0.00 2.496820e+06 2.477537e+06 19282.68 NULL
2019 Department Of Education Admin Bricklayer NA NA 37753.43 1.887672e+04 18876.715 602.50 2 1.887672e+04 37753.43 NA NA NA NULL
2019 Department Of Education Admin Carpenter NA NA 562545.59 9.869221e+03 9947.040 7069.25 57 9.869221e+03 562545.59 NA NA NA NULL
2019 Department Of Education Admin Certified Applications Developer 114178.50000 2.283570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.283570e+05 2.283570e+05 0.00 NULL
2019 Department Of Education Admin Certified It Administrator 107318.14286 9.765951e+06 140508.18 1.544046e+03 54.210 2066.00 91 5.421000e+01 4933.11 9.906459e+06 9.770884e+06 135575.07 NULL
2019 Department Of Education Admin Certified It Developer 111861.72000 5.593086e+06 61758.84 1.235177e+03 0.000 994.75 50 0.000000e+00 0.00 5.654845e+06 5.593086e+06 61758.84 NULL
2019 Department Of Education Admin Certified Wide Area Network Administrator 122680.50000 2.453610e+05 1153.16 5.765800e+02 576.580 13.75 2 5.765800e+02 1153.16 2.465142e+05 2.465142e+05 0.00 NULL
2019 Department Of Education Admin Chauffeur-Attendant 42472.00000 4.247200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.247200e+04 4.247200e+04 0.00 NULL
2019 Department Of Education Admin Chief Administrator Of Impartial Hearings 148631.00000 1.486310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.486310e+05 1.486310e+05 0.00 NULL
2019 Department Of Education Admin Chief Information Technology Officer 187731.00000 1.877310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.877310e+05 1.877310e+05 0.00 NULL
2019 Department Of Education Admin Chief School Business Executive 210284.50000 4.205690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.205690e+05 4.205690e+05 0.00 NULL
2019 Department Of Education Admin City Dentist 37483.92200 3.748392e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.748392e+04 3.748392e+04 0.00 NULL
2019 Department Of Education Admin City Elevator Operator 36493.75000 1.459750e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.459750e+05 1.459750e+05 0.00 NULL
2019 Department Of Education Admin City Laborer NA NA 60743.77 3.197041e+03 1338.510 1100.00 19 1.338510e+03 25431.69 NA NA NA NULL
2019 Department Of Education Admin City Medical Specialist 91270.79121 1.095249e+06 3721.52 3.101267e+02 0.000 49.25 12 0.000000e+00 0.00 1.098971e+06 1.095249e+06 3721.52 NULL
2019 Department Of Education Admin City Planner 94580.00000 9.458000e+04 0.00 0.000000e+00 0.000 20.75 1 0.000000e+00 0.00 9.458000e+04 9.458000e+04 0.00 NULL
2019 Department Of Education Admin City Research Scientist 93344.33333 2.800330e+05 13292.58 4.430860e+03 223.660 232.75 3 2.236600e+02 670.98 2.933256e+05 2.807040e+05 12621.60 NULL
2019 Department Of Education Admin Civil Engineer 100730.40000 5.036520e+05 34612.05 6.922410e+03 24.210 409.50 5 2.421000e+01 121.05 5.382641e+05 5.037730e+05 34491.00 NULL
2019 Department Of Education Admin Clerical Aide 33891.27688 3.389128e+05 669.61 6.696100e+01 0.000 32.25 10 0.000000e+00 0.00 3.395824e+05 3.389128e+05 669.61 NULL
2019 Department Of Education Admin Clerical Associate 46128.06129 1.429970e+07 189641.01 6.117452e+02 0.000 5674.00 310 0.000000e+00 0.00 1.448934e+07 1.429970e+07 189641.01 NULL
2019 Department Of Education Admin Community Assistant 36729.92661 8.007124e+06 156496.01 7.178716e+02 42.620 5546.50 218 4.262000e+01 9291.16 8.163620e+06 8.016415e+06 147204.85 NULL
2019 Department Of Education Admin Community Associate 46531.46307 1.052076e+08 2151792.42 9.516994e+02 286.910 57360.25 2261 2.869100e+02 648703.51 1.073594e+08 1.058563e+08 1503088.91 NULL
2019 Department Of Education Admin Community Coordinator 63133.15678 6.281749e+07 996904.97 1.001915e+03 89.160 20807.75 995 8.916000e+01 88714.20 6.381440e+07 6.290621e+07 908190.77 NULL
2019 Department Of Education Admin Computer Aide-Non-Spvr 50564.32906 4.045146e+05 5326.50 6.658125e+02 0.000 98.50 8 0.000000e+00 0.00 4.098411e+05 4.045146e+05 5326.50 NULL
2019 Department Of Education Admin Computer Associate 73173.71667 8.780846e+06 40592.40 3.382700e+02 0.000 1127.25 120 0.000000e+00 0.00 8.821438e+06 8.780846e+06 40592.40 NULL
2019 Department Of Education Admin Computer Programmer Analyst 60147.83333 3.608870e+05 161.11 2.685167e+01 0.000 9.50 6 0.000000e+00 0.00 3.610481e+05 3.608870e+05 161.11 NULL
2019 Department Of Education Admin Computer Service Technician 54006.33333 3.564418e+06 104907.01 1.589500e+03 77.325 2373.75 66 7.732500e+01 5103.45 3.669325e+06 3.569521e+06 99803.56 NULL
2019 Department Of Education Admin Computer Specialist 107154.34071 2.421688e+07 201869.52 8.932280e+02 0.000 2544.25 226 0.000000e+00 0.00 2.441875e+07 2.421688e+07 201869.52 NULL
2019 Department Of Education Admin Computer Systems Manager 133170.26562 1.704579e+07 17204.47 1.344099e+02 0.000 203.00 128 0.000000e+00 0.00 1.706300e+07 1.704579e+07 17204.47 NULL
2019 Department Of Education Admin Confidential Agency Investigator 94759.00000 9.475900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.475900e+04 9.475900e+04 0.00 NULL
2019 Department Of Education Admin Confidential Investigator 71384.77000 7.138477e+06 10923.57 1.092357e+02 0.000 291.25 100 0.000000e+00 0.00 7.149401e+06 7.138477e+06 10923.57 NULL
2019 Department Of Education Admin Confidential Strategy Planner 85333.66667 5.120020e+05 10175.80 1.695967e+03 73.275 194.25 6 7.327500e+01 439.65 5.221778e+05 5.124417e+05 9736.15 NULL
2019 Department Of Education Admin Construction Laborer NA NA 113711.38 5.685569e+03 3980.415 1725.25 20 3.980415e+03 79608.30 NA NA NA NULL
2019 Department Of Education Admin Construction Project Manager 78067.35294 1.327145e+06 193498.96 1.138229e+04 11081.810 3745.00 17 1.108181e+04 188390.77 1.520644e+06 1.515536e+06 5108.19 NULL
2019 Department Of Education Admin Counsel To The Chancellor 209477.00000 2.094770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.094770e+05 2.094770e+05 0.00 NULL
2019 Department Of Education Admin Customer Information Representative Ma L 1549 53533.15738 1.632761e+07 169226.80 5.548420e+02 0.000 4695.25 305 0.000000e+00 0.00 1.649684e+07 1.632761e+07 169226.80 NULL
2019 Department Of Education Admin Deputy Auditor General 142787.50000 2.855750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.855750e+05 2.855750e+05 0.00 NULL
2019 Department Of Education Admin Deputy Chancellor Financial Affairs 197425.00000 1.974250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.974250e+05 1.974250e+05 0.00 NULL
2019 Department Of Education Admin Deputy Executive Director 255000.00000 2.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.550000e+05 2.550000e+05 0.00 NULL
2019 Department Of Education Admin Deputy Executive Director Of Financial Operations 136761.00000 1.367610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.367610e+05 1.367610e+05 0.00 NULL
2019 Department Of Education Admin Deputy Inspector General 164037.00000 3.280740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.280740e+05 3.280740e+05 0.00 NULL
2019 Department Of Education Admin Director 164891.00000 1.648910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.648910e+05 1.648910e+05 0.00 NULL
2019 Department Of Education Admin Director Of Audit And Investigation 158905.00000 1.589050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.589050e+05 1.589050e+05 0.00 NULL
2019 Department Of Education Admin Director Of Equal Opportunity 151811.00000 1.518110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.518110e+05 1.518110e+05 0.00 NULL
2019 Department Of Education Admin Director Of School Safety 188505.00000 1.885050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.885050e+05 1.885050e+05 0.00 NULL
2019 Department Of Education Admin District Manager Of Administration And Business Affairs 92307.88235 1.569234e+06 5856.08 3.444753e+02 0.000 134.75 17 0.000000e+00 0.00 1.575090e+06 1.569234e+06 5856.08 NULL
2019 Department Of Education Admin Education Analyst 69354.38462 1.803214e+06 1690.13 6.500500e+01 0.000 28.00 26 0.000000e+00 0.00 1.804904e+06 1.803214e+06 1690.13 NULL
2019 Department Of Education Admin Education Analyst Trainee 37010.40532 1.702479e+06 37688.96 8.193252e+02 0.000 1395.00 46 0.000000e+00 0.00 1.740168e+06 1.702479e+06 37688.96 NULL
2019 Department Of Education Admin Education Officer 79315.11170 1.491124e+07 75389.29 4.010069e+02 0.000 1572.75 188 0.000000e+00 0.00 1.498663e+07 1.491124e+07 75389.29 NULL
2019 Department Of Education Admin Educational Management Associate 171050.48000 4.276262e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 4.276262e+06 4.276262e+06 0.00 NULL
2019 Department Of Education Admin Electrician NA NA 1240284.47 1.159144e+04 9879.930 14753.25 107 9.879930e+03 1057152.51 NA NA NA NULL
2019 Department Of Education Admin Electrician’s Helper NA NA 106.08 1.060800e+02 106.080 2.00 1 1.060800e+02 106.08 NA NA NA NULL
2019 Department Of Education Admin Elevator Mechanic NA NA 42826.84 8.565368e+03 10113.150 775.00 5 8.565368e+03 42826.84 NA NA NA NULL
2019 Department Of Education Admin Equal Rights Compliance Specialist 71127.65385 1.849319e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 1.849319e+06 1.849319e+06 0.00 NULL
2019 Department Of Education Admin Executive Agency Counsel 129248.64062 8.271913e+06 0.00 0.000000e+00 0.000 0.00 64 0.000000e+00 0.00 8.271913e+06 8.271913e+06 0.00 NULL
2019 Department Of Education Admin Executive Assistant To The Chancellor 127817.50000 2.556350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.556350e+05 2.556350e+05 0.00 NULL
2019 Department Of Education Admin Executive Director 219501.00000 6.585030e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.585030e+05 6.585030e+05 0.00 NULL
2019 Department Of Education Admin Executive Program Specialist 220420.50000 4.408410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.408410e+05 4.408410e+05 0.00 NULL
2019 Department Of Education Admin Exterminator 42481.09524 8.921030e+05 20302.58 9.667895e+02 258.520 797.00 21 2.585200e+02 5428.92 9.124056e+05 8.975319e+05 14873.66 NULL
2019 Department Of Education Admin Glazier NA NA 66965.55 7.440617e+03 4694.760 801.00 9 4.694760e+03 42252.84 NA NA NA NULL
2019 Department Of Education Admin Health Services Manager 90644.75000 1.450316e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.450316e+06 1.450316e+06 0.00 NULL
2019 Department Of Education Admin Industrial Hygienist 73124.00000 1.462480e+05 30909.07 1.545453e+04 15454.535 652.75 2 1.545453e+04 30909.07 1.771571e+05 1.771571e+05 0.00 NULL
2019 Department Of Education Admin Interpreter 45033.80760 9.006762e+04 107.84 5.392000e+01 53.920 2.75 2 5.392000e+01 107.84 9.017546e+04 9.017546e+04 0.00 NULL
2019 Department Of Education Admin Interpreter/Translator 60049.20690 1.741427e+06 400.50 1.381034e+01 0.000 9.50 29 0.000000e+00 0.00 1.741828e+06 1.741427e+06 400.50 NULL
2019 Department Of Education Admin Investigator Empl Disc 60192.38235 2.046541e+06 27342.16 8.041812e+02 0.000 734.25 34 0.000000e+00 0.00 2.073883e+06 2.046541e+06 27342.16 NULL
2019 Department Of Education Admin Investment Analyst 93000.00000 9.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.300000e+04 9.300000e+04 0.00 NULL
2019 Department Of Education Admin It Security Specialist 104510.33333 9.405930e+05 15772.04 1.752449e+03 838.870 211.50 9 8.388700e+02 7549.83 9.563650e+05 9.481428e+05 8222.21 NULL
2019 Department Of Education Admin Legal Secretarial Assistant Al 2,3,4 Only 51807.33333 1.554220e+05 16.10 5.366667e+00 0.000 1.25 3 0.000000e+00 0.00 1.554381e+05 1.554220e+05 16.10 NULL
2019 Department Of Education Admin Locksmith NA NA 2183.15 3.118786e+02 0.000 45.00 7 0.000000e+00 0.00 NA NA NA NULL
2019 Department Of Education Admin Machinist NA NA 686270.14 1.805974e+04 16177.940 11908.50 38 1.617794e+04 614761.72 NA NA NA NULL
2019 Department Of Education Admin Machinist’s Helper NA NA 9878.79 3.292930e+03 0.000 181.75 3 0.000000e+00 0.00 NA NA NA NULL
2019 Department Of Education Admin Maintenance Worker NA NA 9424.10 1.346300e+03 783.000 223.00 7 7.830000e+02 5481.00 NA NA NA NULL
2019 Department Of Education Admin Management Auditor 66478.95000 1.329579e+06 10787.91 5.393955e+02 0.000 231.00 20 0.000000e+00 0.00 1.340367e+06 1.329579e+06 10787.91 NULL
2019 Department Of Education Admin Media Services Technician 58503.00000 1.170060e+05 729.45 3.647250e+02 364.725 21.25 2 3.647250e+02 729.45 1.177354e+05 1.177354e+05 0.00 NULL
2019 Department Of Education Admin Mental Health Worker 44898.00000 8.979600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.979600e+04 8.979600e+04 0.00 NULL
2019 Department Of Education Admin Motor Vehicle Operator 47002.60000 7.050390e+05 158497.58 1.056651e+04 12503.460 4650.25 15 1.056651e+04 158497.58 8.635366e+05 8.635366e+05 0.00 NULL
2019 Department Of Education Admin New York City Public Service Fellow 40900.00000 4.090000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.090000e+04 4.090000e+04 0.00 NULL
2019 Department Of Education Admin Occupational Therapist 56326.10807 1.545025e+08 296946.12 1.082560e+02 0.000 4285.50 2743 0.000000e+00 0.00 1.547995e+08 1.545025e+08 296946.12 NULL
2019 Department Of Education Admin Office Machine Aide 43999.80000 2.199990e+05 576.23 1.152460e+02 0.000 39.00 5 0.000000e+00 0.00 2.205752e+05 2.199990e+05 576.23 NULL
2019 Department Of Education Admin Painter NA NA 14260.87 2.037267e+03 0.000 208.50 7 0.000000e+00 0.00 NA NA NA NULL
2019 Department Of Education Admin Paralegal Aide 53894.00000 5.389400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.389400e+04 5.389400e+04 0.00 NULL
2019 Department Of Education Admin Physical Therapist 55998.82794 6.204670e+07 89993.45 8.122153e+01 0.000 1227.25 1108 0.000000e+00 0.00 6.213669e+07 6.204670e+07 89993.45 NULL
2019 Department Of Education Admin Plasterer NA NA 188154.36 1.343960e+04 14510.475 2490.00 14 1.343960e+04 188154.36 NA NA NA NULL
2019 Department Of Education Admin Plumber NA NA 766265.39 1.419010e+04 13637.470 6835.50 54 1.363747e+04 736423.38 NA NA NA NULL
2019 Department Of Education Admin Principal Administrative Associate - Lev 1 & 2 Non Supvr 59037.53008 1.263403e+07 231382.43 1.081226e+03 0.000 5764.00 214 0.000000e+00 0.00 1.286541e+07 1.263403e+07 231382.43 NULL
2019 Department Of Education Admin Principal School-Neighborhood Worker 54387.00000 5.438700e+04 431.62 4.316200e+02 431.620 11.00 1 4.316200e+02 431.62 5.481862e+04 5.481862e+04 0.00 NULL
2019 Department Of Education Admin Procurement Analyst 64853.67164 4.345196e+06 104980.06 1.566867e+03 0.000 2894.25 67 0.000000e+00 0.00 4.450176e+06 4.345196e+06 104980.06 NULL
2019 Department Of Education Admin Program Producer 75717.00000 7.571700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.571700e+04 7.571700e+04 0.00 NULL
2019 Department Of Education Admin Public Records Aide 45120.00000 5.865600e+05 29184.42 2.244955e+03 515.100 1145.75 13 5.151000e+02 6696.30 6.157444e+05 5.932563e+05 22488.12 NULL
2019 Department Of Education Admin Quality Assurance Specialist 59389.71429 1.662912e+06 20966.37 7.487989e+02 5.475 543.25 28 5.475000e+00 153.30 1.683878e+06 1.663065e+06 20813.07 NULL
2019 Department Of Education Admin Quality Assurance Specialist Trainee 35128.00000 7.025600e+04 0.00 0.000000e+00 0.000 3.75 2 0.000000e+00 0.00 7.025600e+04 7.025600e+04 0.00 NULL
2019 Department Of Education Admin Radio Repair Mechanic NA NA 240340.22 1.264949e+04 8373.830 3002.50 19 8.373830e+03 159102.77 NA NA NA NULL
2019 Department Of Education Admin Research Assistant 61324.88889 5.519240e+05 19435.58 2.159509e+03 0.000 451.50 9 0.000000e+00 0.00 5.713596e+05 5.519240e+05 19435.58 NULL
2019 Department Of Education Admin Roofer NA NA 69573.00 4.638200e+03 2649.400 1223.00 15 2.649400e+03 39741.00 NA NA NA NULL
2019 Department Of Education Admin School Business Manager 77974.17647 1.193005e+07 366371.33 2.394584e+03 0.000 7240.00 153 0.000000e+00 0.00 1.229642e+07 1.193005e+07 366371.33 NULL
2019 Department Of Education Admin School Computer Technology Specialist 53063.70483 1.522928e+07 370749.51 1.291810e+03 2.280 8568.25 287 2.280000e+00 654.36 1.560003e+07 1.522994e+07 370095.15 NULL
2019 Department Of Education Admin School Equipment Maintainer 41288.00000 4.128800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.128800e+04 4.128800e+04 0.00 NULL
2019 Department Of Education Admin School Food Service Manager 51553.26037 2.237412e+07 236346.48 5.445771e+02 82.510 7837.25 434 8.251000e+01 35809.34 2.261046e+07 2.240992e+07 200537.14 NULL
2019 Department Of Education Admin School Lunch Aide 31568.50929 2.547579e+07 1984657.34 2.459303e+03 2109.610 21131.00 807 2.109610e+03 1702455.27 2.746044e+07 2.717824e+07 282202.07 NULL
2019 Department Of Education Admin School Lunch Assistant 40820.52381 4.286155e+06 163823.41 1.560223e+03 80.250 5989.25 105 8.025000e+01 8426.25 4.449978e+06 4.294581e+06 155397.16 NULL
2019 Department Of Education Admin School Lunch Assistant Cook 40195.95775 2.853913e+06 52425.14 7.383823e+02 173.140 1986.00 71 1.731400e+02 12292.94 2.906338e+06 2.866206e+06 40132.20 NULL
2019 Department Of Education Admin School Lunch Loader And Handler 51687.16129 1.602302e+06 151231.06 4.878421e+03 2846.730 4209.00 31 2.846730e+03 88248.63 1.753533e+06 1.690551e+06 62982.43 NULL
2019 Department Of Education Admin School Plant Manager 129117.33333 5.810280e+06 0.00 0.000000e+00 0.000 0.00 45 0.000000e+00 0.00 5.810280e+06 5.810280e+06 0.00 NULL
2019 Department Of Education Admin School-Neighborhood Worker 41546.66667 1.246400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.246400e+05 1.246400e+05 0.00 NULL
2019 Department Of Education Admin Secretary 47508.57812 3.040549e+06 36082.64 5.637912e+02 0.000 1051.50 64 0.000000e+00 0.00 3.076632e+06 3.040549e+06 36082.64 NULL
2019 Department Of Education Admin Secretary To Community School Board 50541.07143 7.075750e+05 2596.69 1.854779e+02 0.000 52.50 14 0.000000e+00 0.00 7.101717e+05 7.075750e+05 2596.69 NULL
2019 Department Of Education Admin Secretary To The Chancellor 71539.00000 7.153900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.153900e+04 7.153900e+04 0.00 NULL
2019 Department Of Education Admin Secretary To The Counsel To The Chancellor 73007.00000 7.300700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.300700e+04 7.300700e+04 0.00 NULL
2019 Department Of Education Admin Secretary To The Deputy Chancellor 86875.83333 5.212550e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.212550e+05 5.212550e+05 0.00 NULL
2019 Department Of Education Admin Secretary To The Special Commissioner Investigation Nyc Sch 88280.00000 8.828000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.828000e+04 8.828000e+04 0.00 NULL
2019 Department Of Education Admin Senior Estimator 86676.00000 8.667600e+04 11251.14 1.125114e+04 11251.140 214.00 1 1.125114e+04 11251.14 9.792714e+04 9.792714e+04 0.00 NULL
2019 Department Of Education Admin Senior Physical Therapist 32201.50000 6.440300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.440300e+04 6.440300e+04 0.00 NULL
2019 Department Of Education Admin Senior School Lunch Aide 36985.78302 1.176148e+07 283483.05 8.914561e+02 77.495 10369.00 318 7.749500e+01 24643.41 1.204496e+07 1.178612e+07 258839.64 NULL
2019 Department Of Education Admin Senior School-Neighborhood Worker 51324.00000 1.539720e+05 3056.24 1.018747e+03 1174.920 87.75 3 1.018747e+03 3056.24 1.570282e+05 1.570282e+05 0.00 NULL
2019 Department Of Education Admin Service Inspector 44723.80000 2.236190e+05 0.65 1.300000e-01 0.000 0.00 5 0.000000e+00 0.00 2.236196e+05 2.236190e+05 0.65 NULL
2019 Department Of Education Admin Sign Language Interpreter 89157.57663 2.228939e+06 40172.21 1.606888e+03 1269.470 592.75 25 1.269470e+03 31736.75 2.269112e+06 2.260676e+06 8435.46 NULL
2019 Department Of Education Admin Special Assistant 113813.00000 7.966910e+05 265.23 3.789000e+01 0.000 0.00 7 0.000000e+00 0.00 7.969562e+05 7.966910e+05 265.23 NULL
2019 Department Of Education Admin Special Assistant To Member Of The Board Of Education 154081.33333 9.244880e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.244880e+05 9.244880e+05 0.00 NULL
2019 Department Of Education Admin Special Assistant To The Chancellor 129071.22222 1.161641e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.161641e+06 1.161641e+06 0.00 NULL
2019 Department Of Education Admin Special Commissioner Of Investigation-Nyc School Dist. Doi 223142.00000 2.231420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.231420e+05 2.231420e+05 0.00 NULL
2019 Department Of Education Admin Special Officer 41727.56757 1.543920e+06 280713.53 7.586852e+03 4219.350 9353.75 37 4.219350e+03 156115.95 1.824634e+06 1.700036e+06 124597.58 NULL
2019 Department Of Education Admin Staff Analyst 57590.00000 5.759000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.759000e+04 5.759000e+04 0.00 NULL
2019 Department Of Education Admin Staff Audiologist 70318.00000 2.109540e+05 60.54 2.018000e+01 0.000 1.50 3 0.000000e+00 0.00 2.110145e+05 2.109540e+05 60.54 NULL
2019 Department Of Education Admin Staff Nurse 51092.28524 5.533294e+07 5613835.09 5.183597e+03 204.360 76840.25 1083 2.043600e+02 221321.88 6.094678e+07 5.555427e+07 5392513.21 NULL
2019 Department Of Education Admin Statistician 61598.00000 6.159800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.159800e+04 6.159800e+04 0.00 NULL
2019 Department Of Education Admin Steam Fitter NA NA 691625.18 1.686891e+04 17270.000 5948.25 41 1.686891e+04 691625.18 NA NA NA NULL
2019 Department Of Education Admin Steam Fitter’s Helper NA NA 35310.00 1.765500e+04 17655.000 472.50 2 1.765500e+04 35310.00 NA NA NA NULL
2019 Department Of Education Admin Stock Worker 36889.44722 4.426734e+05 6943.26 5.786050e+02 0.000 353.25 12 0.000000e+00 0.00 4.496166e+05 4.426734e+05 6943.26 NULL
2019 Department Of Education Admin Strategi Initiative Specialist 82501.50000 1.650030e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.650030e+05 1.650030e+05 0.00 NULL
2019 Department Of Education Admin Strategic Initiative Specialist 96000.00000 2.880000e+05 220.53 7.351000e+01 0.000 4.50 3 0.000000e+00 0.00 2.882205e+05 2.880000e+05 220.53 NULL
2019 Department Of Education Admin Substance Abuse Prevention & Intervention Specialist 60266.63807 1.946612e+07 31914.66 9.880700e+01 0.000 850.50 323 0.000000e+00 0.00 1.949804e+07 1.946612e+07 31914.66 NULL
2019 Department Of Education Admin Summer College Intern 3151.50389 2.836353e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 2.836353e+04 2.836353e+04 0.00 NULL
2019 Department Of Education Admin Summer Graduate Intern 3388.66308 1.694332e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.694332e+04 1.694332e+04 0.00 NULL
2019 Department Of Education Admin Supervising Computer Service Technician 74087.43786 2.296711e+06 50472.22 1.628136e+03 165.320 995.50 31 1.653200e+02 5124.92 2.347183e+06 2.301835e+06 45347.30 NULL
2019 Department Of Education Admin Supervising Therapist 48742.85154 3.412000e+06 55692.50 7.956071e+02 0.000 613.00 70 0.000000e+00 0.00 3.467692e+06 3.412000e+06 55692.50 NULL
2019 Department Of Education Admin Supervisor 68831.00000 2.753240e+05 16345.09 4.086273e+03 3302.995 326.00 4 3.302995e+03 13211.98 2.916691e+05 2.885360e+05 3133.11 NULL
2019 Department Of Education Admin Supervisor Bricklayer NA NA 29613.09 2.961309e+04 29613.090 464.25 1 2.961309e+04 29613.09 NA NA NA NULL
2019 Department Of Education Admin Supervisor Carpenter NA NA 55399.26 1.107985e+04 15763.980 722.50 5 1.107985e+04 55399.26 NA NA NA NULL
2019 Department Of Education Admin Supervisor Electrician NA NA 181373.38 1.395180e+04 1496.360 1992.75 13 1.496360e+03 19452.68 NA NA NA NULL
2019 Department Of Education Admin Supervisor Of Electrical Installations & Maintenance 77047.80000 1.540956e+06 176081.16 8.804058e+03 3229.530 3466.00 20 3.229530e+03 64590.60 1.717037e+06 1.605547e+06 111490.56 NULL
2019 Department Of Education Admin Supervisor Of Mechanical Installations & Maintenance 76366.17391 1.756422e+06 152143.34 6.614928e+03 5620.850 2997.75 23 5.620850e+03 129279.55 1.908565e+06 1.885702e+06 22863.79 NULL
2019 Department Of Education Admin Supervisor Of Mechanics NA NA 293782.38 1.013043e+04 8855.650 3229.25 29 8.855650e+03 256813.85 NA NA NA NULL
2019 Department Of Education Admin Supervisor Of Nurses 51921.89264 2.128798e+06 53100.96 1.295145e+03 0.000 600.50 41 0.000000e+00 0.00 2.181899e+06 2.128798e+06 53100.96 NULL
2019 Department Of Education Admin Supervisor Of Office Machine Operations 44216.60000 2.210830e+05 484.00 9.680000e+01 16.780 37.50 5 1.678000e+01 83.90 2.215670e+05 2.211669e+05 400.10 NULL
2019 Department Of Education Admin Supervisor Of Stock Workers 59301.00000 1.186020e+05 446.98 2.234900e+02 223.490 12.75 2 2.234900e+02 446.98 1.190490e+05 1.190490e+05 0.00 NULL
2019 Department Of Education Admin Supervisor Painter NA NA 5802.84 1.934280e+03 0.000 81.00 3 0.000000e+00 0.00 NA NA NA NULL
2019 Department Of Education Admin Supervisor Plasterer NA NA 36209.87 1.810494e+04 18104.935 443.00 2 1.810494e+04 36209.87 NA NA NA NULL
2019 Department Of Education Admin Supervisor Plumber NA NA 175954.87 2.932581e+04 31062.065 1557.75 6 2.932581e+04 175954.87 NA NA NA NULL
2019 Department Of Education Admin Supervisor Roofer NA NA 23532.29 7.844097e+03 6787.530 406.00 3 6.787530e+03 20362.59 NA NA NA NULL
2019 Department Of Education Admin Supervisor Steamfitter NA NA 110169.00 2.754225e+04 25393.500 881.50 4 2.539350e+04 101574.00 NA NA NA NULL
2019 Department Of Education Admin Telecommunication Manager 126737.50000 2.534750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.534750e+05 2.534750e+05 0.00 NULL
2019 Department Of Education Admin Telecommunications Associate 77710.13636 1.709623e+06 5622.75 2.555795e+02 0.000 133.50 22 0.000000e+00 0.00 1.715246e+06 1.709623e+06 5622.75 NULL
2019 Department Of Education Admin Thermostat Repairer NA NA 74784.63 9.348079e+03 3705.000 670.25 8 3.705000e+03 29640.00 NA NA NA NULL
2019 Department Of Finance Accountant 67748.15385 8.807260e+05 21269.68 1.636129e+03 14.520 473.50 13 1.452000e+01 188.76 9.019957e+05 8.809148e+05 21080.92 NULL
2019 Department Of Finance Adm Manager-Non-Mgrl From M1/M2 76329.88571 8.014638e+06 307060.51 2.924386e+03 0.000 6479.50 105 0.000000e+00 0.00 8.321699e+06 8.014638e+06 307060.51 NULL
2019 Department Of Finance Admin Contract Specialist 101176.40000 5.058820e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.058820e+05 5.058820e+05 0.00 NULL
2019 Department Of Finance Administrative Accountant 100153.00000 9.013770e+05 4440.94 4.934378e+02 0.000 102.50 9 0.000000e+00 0.00 9.058179e+05 9.013770e+05 4440.94 NULL
2019 Department Of Finance Administrative Actuary 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2019 Department Of Finance Administrative Architect 92025.00000 9.202500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.202500e+04 9.202500e+04 0.00 NULL
2019 Department Of Finance Administrative Assessor 136273.66667 8.176420e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.176420e+05 8.176420e+05 0.00 NULL
2019 Department Of Finance Administrative City Planner 137584.50000 5.503380e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.503380e+05 5.503380e+05 0.00 NULL
2019 Department Of Finance Administrative Deputy Register 115834.33333 3.475030e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.475030e+05 3.475030e+05 0.00 NULL
2019 Department Of Finance Administrative Investigator 128941.66667 3.868250e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.868250e+05 3.868250e+05 0.00 NULL
2019 Department Of Finance Administrative Labor Relations Analyst 108775.87500 8.702070e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.702070e+05 8.702070e+05 0.00 NULL
2019 Department Of Finance Administrative Management Auditor 123991.00000 2.479820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.479820e+05 2.479820e+05 0.00 NULL
2019 Department Of Finance Administrative Manager 111397.33333 3.341920e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.341920e+05 3.341920e+05 0.00 NULL
2019 Department Of Finance Administrative Procurement Analyst 101845.85714 7.129210e+05 185.80 2.654286e+01 0.000 3.75 7 0.000000e+00 0.00 7.131068e+05 7.129210e+05 185.80 NULL
2019 Department Of Finance Administrative Public Information Specialist 105129.33333 3.153880e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.153880e+05 3.153880e+05 0.00 NULL
2019 Department Of Finance Administrative Quality Assurance Specialist 81800.00000 8.180000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.180000e+04 8.180000e+04 0.00 NULL
2019 Department Of Finance Administrative Space Analyst 86320.50000 1.726410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.726410e+05 1.726410e+05 0.00 NULL
2019 Department Of Finance Administrative Staff Analyst 108286.75410 1.321098e+07 153665.53 1.259554e+03 0.000 2608.75 122 0.000000e+00 0.00 1.336465e+07 1.321098e+07 153665.53 NULL
2019 Department Of Finance Administrative Storekeeper 100982.66667 3.029480e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.029480e+05 3.029480e+05 0.00 NULL
2019 Department Of Finance Administrative Supervisor Of Building Maintenance 94865.00000 1.897300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.897300e+05 1.897300e+05 0.00 NULL
2019 Department Of Finance Administrative Tax Auditor 114805.34286 4.018187e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 4.018187e+06 4.018187e+06 0.00 NULL
2019 Department Of Finance Agency Attorney 90123.51852 2.433335e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 2.433335e+06 2.433335e+06 0.00 NULL
2019 Department Of Finance Agency Attorney Interne 66636.00000 6.663600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.663600e+04 6.663600e+04 0.00 NULL
2019 Department Of Finance Agency Chief Contracting Officer 156238.00000 1.562380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.562380e+05 1.562380e+05 0.00 NULL
2019 Department Of Finance Assistant City Assessor 43131.32759 2.501617e+06 16037.25 2.765043e+02 0.000 508.75 58 0.000000e+00 0.00 2.517654e+06 2.501617e+06 16037.25 NULL
2019 Department Of Finance Assistant Commissioner 173837.75000 6.953510e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.953510e+05 6.953510e+05 0.00 NULL
2019 Department Of Finance Associate Fraud Investigator 70065.86207 2.031910e+06 142142.96 4.901481e+03 1134.620 3165.00 29 1.134620e+03 32903.98 2.174053e+06 2.064814e+06 109238.98 NULL
2019 Department Of Finance Associate Labor Relations Analyst 84307.00000 1.686140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.686140e+05 1.686140e+05 0.00 NULL
2019 Department Of Finance Associate Staff Analyst 80669.88000 2.016747e+06 41049.48 1.641979e+03 0.000 811.00 25 0.000000e+00 0.00 2.057796e+06 2.016747e+06 41049.48 NULL
2019 Department Of Finance Asst Commissioner 172066.00000 1.720660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.720660e+05 1.720660e+05 0.00 NULL
2019 Department Of Finance Attorney At Law 107088.00000 1.392144e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.392144e+06 1.392144e+06 0.00 NULL
2019 Department Of Finance Cashier 45918.00000 2.295900e+05 4304.50 8.609000e+02 0.000 148.75 5 0.000000e+00 0.00 2.338945e+05 2.295900e+05 4304.50 NULL
2019 Department Of Finance Certified It Administrator 117756.53333 1.766348e+06 68843.57 4.589571e+03 57.480 987.75 15 5.748000e+01 862.20 1.835192e+06 1.767210e+06 67981.37 NULL
2019 Department Of Finance Chief Review Assessor 139701.00000 1.397010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.397010e+05 1.397010e+05 0.00 NULL
2019 Department Of Finance City Assessor 76244.49573 8.920606e+06 449918.66 3.845459e+03 987.970 7666.50 117 9.879700e+02 115592.49 9.370525e+06 9.036198e+06 334326.17 NULL
2019 Department Of Finance City Collector 136110.00000 1.361100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.361100e+05 1.361100e+05 0.00 NULL
2019 Department Of Finance City Laborer NA NA 138427.44 9.887674e+03 9562.255 2645.50 14 9.562255e+03 133871.57 NA NA NA NULL
2019 Department Of Finance City Planner 71932.50000 1.438650e+05 15507.35 7.753675e+03 7753.675 287.50 2 7.753675e+03 15507.35 1.593724e+05 1.593724e+05 0.00 NULL
2019 Department Of Finance City Planning Technician 43465.00000 1.303950e+05 4712.80 1.570933e+03 976.240 176.75 3 9.762400e+02 2928.72 1.351078e+05 1.333237e+05 1784.08 NULL
2019 Department Of Finance City Register 172558.00000 1.725580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.725580e+05 1.725580e+05 0.00 NULL
2019 Department Of Finance City Research Scientist 87682.55172 2.542794e+06 7444.60 2.567103e+02 0.000 133.25 29 0.000000e+00 0.00 2.550239e+06 2.542794e+06 7444.60 NULL
2019 Department Of Finance City Tax Auditor 64943.19652 2.610716e+07 240674.60 5.986930e+02 0.000 4407.50 402 0.000000e+00 0.00 2.634784e+07 2.610716e+07 240674.60 NULL
2019 Department Of Finance Clerical Aide 37903.14286 7.959660e+05 322.60 1.536190e+01 0.000 13.25 21 0.000000e+00 0.00 7.962886e+05 7.959660e+05 322.60 NULL
2019 Department Of Finance Clerical Associate 42742.12052 1.312183e+07 92007.73 2.996994e+02 0.000 2935.50 307 0.000000e+00 0.00 1.321384e+07 1.312183e+07 92007.73 NULL
2019 Department Of Finance College Aide 8811.83900 2.467315e+05 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 2.467315e+05 2.467315e+05 0.00 NULL
2019 Department Of Finance College Aide - Assignment Levels Ii And Iii 2006.59240 6.019777e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.019777e+03 6.019777e+03 0.00 NULL
2019 Department Of Finance Commissioner Of Finance 236088.00000 2.360880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.360880e+05 2.360880e+05 0.00 NULL
2019 Department Of Finance Community Assistant 36573.00000 7.314600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.314600e+04 7.314600e+04 0.00 NULL
2019 Department Of Finance Community Associate 51140.63636 5.625470e+05 21894.47 1.990406e+03 975.910 684.75 11 9.759100e+02 10735.01 5.844415e+05 5.732820e+05 11159.46 NULL
2019 Department Of Finance Community Coordinator 71377.53846 9.279080e+05 22933.67 1.764128e+03 92.360 593.00 13 9.236000e+01 1200.68 9.508417e+05 9.291087e+05 21732.99 NULL
2019 Department Of Finance Community Service Aide 34503.00000 3.450300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.450300e+04 3.450300e+04 0.00 NULL
2019 Department Of Finance Computer Aide-Non-Spvr 57808.00000 1.156160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.156160e+05 1.156160e+05 0.00 NULL
2019 Department Of Finance Computer Associate 74077.40741 2.000090e+06 16503.41 6.112374e+02 0.000 348.50 27 0.000000e+00 0.00 2.016593e+06 2.000090e+06 16503.41 NULL
2019 Department Of Finance Computer Programmer Analyst 69651.90000 6.965190e+05 2491.21 2.491210e+02 5.975 56.50 10 5.975000e+00 59.75 6.990102e+05 6.965788e+05 2431.46 NULL
2019 Department Of Finance Computer Service Technician 49118.00000 4.911800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.911800e+04 4.911800e+04 0.00 NULL
2019 Department Of Finance Computer Specialist 103163.99020 1.052273e+07 142327.88 1.395371e+03 0.000 2056.75 102 0.000000e+00 0.00 1.066505e+07 1.052273e+07 142327.88 NULL
2019 Department Of Finance Computer Systems Manager 134992.29457 1.741401e+07 3993.34 3.095612e+01 0.000 60.25 129 0.000000e+00 0.00 1.741800e+07 1.741401e+07 3993.34 NULL
2019 Department Of Finance Confidential Strategy Planner 83115.00000 8.311500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.311500e+04 8.311500e+04 0.00 NULL
2019 Department Of Finance Counsel 195583.00000 1.955830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.955830e+05 1.955830e+05 0.00 NULL
2019 Department Of Finance Deputy City Sheriff - Non-Spvr 66359.96094 8.494075e+06 2244567.66 1.753568e+04 14729.140 41245.42 128 1.472914e+04 1885329.92 1.073864e+07 1.037940e+07 359237.74 NULL
2019 Department Of Finance Deputy Commissioner 205286.00000 8.211440e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.211440e+05 8.211440e+05 0.00 NULL
2019 Department Of Finance Director Of Public Information 126737.00000 1.267370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.267370e+05 1.267370e+05 0.00 NULL
2019 Department Of Finance Economist 75478.33333 4.528700e+05 15244.31 2.540718e+03 0.000 269.25 6 0.000000e+00 0.00 4.681143e+05 4.528700e+05 15244.31 NULL
2019 Department Of Finance Examiner Of Accounts 92949.00000 1.858980e+05 365.14 1.825700e+02 182.570 5.75 2 1.825700e+02 365.14 1.862631e+05 1.862631e+05 0.00 NULL
2019 Department Of Finance Executive Agency Counsel 140590.20000 2.811804e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 2.811804e+06 2.811804e+06 0.00 NULL
2019 Department Of Finance Executive Program Specialist 192691.00000 1.926910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.926910e+05 1.926910e+05 0.00 NULL
2019 Department Of Finance Graphic Artist 83299.00000 1.665980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.665980e+05 1.665980e+05 0.00 NULL
2019 Department Of Finance Hearing Officer 46242.64523 6.011544e+06 0.00 0.000000e+00 0.000 0.00 130 0.000000e+00 0.00 6.011544e+06 6.011544e+06 0.00 NULL
2019 Department Of Finance Investigator 50757.20000 2.537860e+05 396.80 7.936000e+01 0.000 36.00 5 0.000000e+00 0.00 2.541828e+05 2.537860e+05 396.80 NULL
2019 Department Of Finance Labor Relations Analyst 74442.50000 1.488850e+05 14257.70 7.128850e+03 7128.850 314.00 2 7.128850e+03 14257.70 1.631427e+05 1.631427e+05 0.00 NULL
2019 Department Of Finance Legal Secretarial Assistant Al 2,3,4 Only 52807.50000 1.056150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.056150e+05 1.056150e+05 0.00 NULL
2019 Department Of Finance Management Auditor 83257.62500 6.660610e+05 5526.68 6.908350e+02 0.000 105.00 8 0.000000e+00 0.00 6.715877e+05 6.660610e+05 5526.68 NULL
2019 Department Of Finance Mortgage Tax Examiner 64016.00000 6.401600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.401600e+04 6.401600e+04 0.00 NULL
2019 Department Of Finance Motor Vehicle Operator 44972.00000 1.349160e+05 131.20 4.373333e+01 27.880 4.00 3 2.788000e+01 83.64 1.350472e+05 1.349996e+05 47.56 NULL
2019 Department Of Finance Motor Vehicle Supervisor 56287.00000 1.125740e+05 11255.59 5.627795e+03 5627.795 303.50 2 5.627795e+03 11255.59 1.238296e+05 1.238296e+05 0.00 NULL
2019 Department Of Finance Principal Administrative Associate - Lev 1 & 2 Non Supvr 57891.17358 1.534116e+07 404870.34 1.527813e+03 0.000 9711.25 265 0.000000e+00 0.00 1.574603e+07 1.534116e+07 404870.34 NULL
2019 Department Of Finance Procurement Analyst 71644.33333 6.447990e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 6.447990e+05 6.447990e+05 0.00 NULL
2019 Department Of Finance Public Records Aide 40732.00000 4.073200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.073200e+04 4.073200e+04 0.00 NULL
2019 Department Of Finance Quality Assurance Specialist 58533.00000 5.853300e+04 1276.82 1.276820e+03 1276.820 51.75 1 1.276820e+03 1276.82 5.980982e+04 5.980982e+04 0.00 NULL
2019 Department Of Finance Secretary 47853.60000 2.392680e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.392680e+05 2.392680e+05 0.00 NULL
2019 Department Of Finance Secretary Of Comm 90526.00000 9.052600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.052600e+04 9.052600e+04 0.00 NULL
2019 Department Of Finance Secretary To Deputy Commissioner 56922.00000 1.138440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.138440e+05 1.138440e+05 0.00 NULL
2019 Department Of Finance Senior Estimator 85541.00000 8.554100e+04 21.25 2.125000e+01 21.250 0.00 1 2.125000e+01 21.25 8.556225e+04 8.556225e+04 0.00 NULL
2019 Department Of Finance Senior Photographer 57020.00000 5.702000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.702000e+04 5.702000e+04 0.00 NULL
2019 Department Of Finance Special Officer 46737.00000 1.402110e+05 10860.65 3.620217e+03 4555.490 342.00 3 3.620217e+03 10860.65 1.510716e+05 1.510716e+05 0.00 NULL
2019 Department Of Finance Staff Analyst 66683.09524 1.400345e+06 49638.39 2.363733e+03 198.720 1108.50 21 1.987200e+02 4173.12 1.449983e+06 1.404518e+06 45465.27 NULL
2019 Department Of Finance Summer College Intern 2808.38086 8.144304e+04 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 8.144304e+04 8.144304e+04 0.00 NULL
2019 Department Of Finance Summer Graduate Intern 3732.12774 1.082317e+05 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 1.082317e+05 1.082317e+05 0.00 NULL
2019 Department Of Finance Supervising Computer Service Technician 68632.00000 6.863200e+04 2.73 2.730000e+00 2.730 0.00 1 2.730000e+00 2.73 6.863473e+04 6.863473e+04 0.00 NULL
2019 Department Of Finance Supervising Deputy Sheriff - Al 1 Only 40 Hr 107294.66667 1.609420e+06 514468.93 3.429793e+04 37469.760 6319.25 15 3.429793e+04 514468.93 2.123889e+06 2.123889e+06 0.00 NULL
2019 Department Of Finance Supervising Special Officer 56912.83333 3.414770e+05 14479.99 2.413332e+03 772.860 393.75 6 7.728600e+02 4637.16 3.559570e+05 3.461142e+05 9842.83 NULL
2019 Department Of Finance Tax Map Cartographer 69780.00000 1.395600e+05 2676.89 1.338445e+03 1338.445 59.25 2 1.338445e+03 2676.89 1.422369e+05 1.422369e+05 0.00 NULL
2019 Department Of Finance Telecommunications Associate 52425.00000 5.242500e+04 9965.63 9.965630e+03 9965.630 299.75 1 9.965630e+03 9965.63 6.239063e+04 6.239063e+04 0.00 NULL
2019 Department Of Investigation Adm Manager-Non-Mgrl From M1/M2 74482.88889 6.703460e+05 7157.35 7.952611e+02 0.000 176.25 9 0.000000e+00 0.00 6.775033e+05 6.703460e+05 7157.35 NULL
2019 Department Of Investigation Administrative Manager 115323.00000 4.612920e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.612920e+05 4.612920e+05 0.00 NULL
2019 Department Of Investigation Administrative Public Information Specialist 122521.75000 4.900870e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.900870e+05 4.900870e+05 0.00 NULL
2019 Department Of Investigation Administrative Staff Analyst 114767.00000 2.295340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.295340e+05 2.295340e+05 0.00 NULL
2019 Department Of Investigation Clerical Associate 50186.42857 7.026100e+05 6719.55 4.799679e+02 0.000 193.75 14 0.000000e+00 0.00 7.093296e+05 7.026100e+05 6719.55 NULL
2019 Department Of Investigation Commissioner 230330.00000 2.303300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.303300e+05 2.303300e+05 0.00 NULL
2019 Department Of Investigation Community Assistant 25728.03500 7.718410e+04 20.29 6.763333e+00 0.000 0.00 3 0.000000e+00 0.00 7.720440e+04 7.718410e+04 20.29 NULL
2019 Department Of Investigation Community Associate 49463.29167 1.187119e+06 54480.07 2.270003e+03 38.970 1530.50 24 3.897000e+01 935.28 1.241599e+06 1.188054e+06 53544.79 NULL
2019 Department Of Investigation Community Coordinator 68158.00000 3.407900e+05 14419.04 2.883808e+03 478.290 328.75 5 4.782900e+02 2391.45 3.552090e+05 3.431815e+05 12027.59 NULL
2019 Department Of Investigation Computer Associate 77324.25000 3.092970e+05 6205.82 1.551455e+03 780.175 123.75 4 7.801750e+02 3120.70 3.155028e+05 3.124177e+05 3085.12 NULL
2019 Department Of Investigation Computer Specialist 107046.66667 3.211400e+05 5673.30 1.891100e+03 894.120 73.75 3 8.941200e+02 2682.36 3.268133e+05 3.238224e+05 2990.94 NULL
2019 Department Of Investigation Computer Systems Manager 129279.25000 1.034234e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.034234e+06 1.034234e+06 0.00 NULL
2019 Department Of Investigation Confidential Investigator 60928.03883 6.275588e+06 179868.73 1.746298e+03 100.030 4388.75 103 1.000300e+02 10303.09 6.455457e+06 6.285891e+06 169565.64 NULL
2019 Department Of Investigation Confidential Secretary To The Deputy Commissioner 62853.66667 1.885610e+05 1030.76 3.435867e+02 3.300 37.25 3 3.300000e+00 9.90 1.895918e+05 1.885709e+05 1020.86 NULL
2019 Department Of Investigation Customer Information Representative Ma L 1549 42970.00000 4.297000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.297000e+04 4.297000e+04 0.00 NULL
2019 Department Of Investigation Deputy Commissioner 211139.00000 4.222780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.222780e+05 4.222780e+05 0.00 NULL
2019 Department Of Investigation Deputy Inspector General 110089.91892 4.073327e+06 3439.45 9.295811e+01 0.000 49.25 37 0.000000e+00 0.00 4.076766e+06 4.073327e+06 3439.45 NULL
2019 Department Of Investigation Examiner Of Accounts 102520.25000 4.100810e+05 6404.51 1.601128e+03 1638.065 111.75 4 1.601128e+03 6404.51 4.164855e+05 4.164855e+05 0.00 NULL
2019 Department Of Investigation Examining Attorney 107870.25000 1.725924e+06 11969.39 7.480869e+02 0.000 169.00 16 0.000000e+00 0.00 1.737893e+06 1.725924e+06 11969.39 NULL
2019 Department Of Investigation Executive Director 161521.00000 1.615210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.615210e+05 1.615210e+05 0.00 NULL
2019 Department Of Investigation Inspector General 152295.61290 4.721164e+06 297.94 9.610968e+00 0.000 0.00 31 0.000000e+00 0.00 4.721462e+06 4.721164e+06 297.94 NULL
2019 Department Of Investigation Principal Administrative Associate - Lev 1 & 2 Non Supvr 65273.00000 3.916380e+05 8626.34 1.437723e+03 0.000 191.00 6 0.000000e+00 0.00 4.002643e+05 3.916380e+05 8626.34 NULL
2019 Department Of Investigation Procurement Analyst 71462.00000 1.429240e+05 868.73 4.343650e+02 434.365 19.25 2 4.343650e+02 868.73 1.437927e+05 1.437927e+05 0.00 NULL
2019 Department Of Investigation Secretary 49039.00000 9.807800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.807800e+04 9.807800e+04 0.00 NULL
2019 Department Of Investigation Special Commissioner Of Investigation-Nyc School Dist. Doi 213953.00000 2.139530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.139530e+05 2.139530e+05 0.00 NULL
2019 Department Of Investigation Special Investigator 74271.84058 1.024951e+07 622511.00 4.510949e+03 2219.850 13106.75 138 2.219850e+03 306339.30 1.087202e+07 1.055585e+07 316171.70 NULL
2019 Department Of Investigation Stock Worker 35190.00000 3.519000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.519000e+04 3.519000e+04 0.00 NULL
2019 Department Of Probation Adm Manager-Non-Mgrl From M1/M2 73182.21429 1.024551e+06 13379.13 9.556521e+02 0.000 299.75 14 0.000000e+00 0.00 1.037930e+06 1.024551e+06 13379.13 NULL
2019 Department Of Probation Admin Contract Specialist 149233.00000 4.476990e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.476990e+05 4.476990e+05 0.00 NULL
2019 Department Of Probation Administrative Contract Specialist 76000.00000 7.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.600000e+04 7.600000e+04 0.00 NULL
2019 Department Of Probation Administrative Director Of Social Services 156443.00000 1.564430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.564430e+05 1.564430e+05 0.00 NULL
2019 Department Of Probation Administrative Graphic Artist 95300.00000 9.530000e+04 247.77 2.477700e+02 247.770 4.75 1 2.477700e+02 247.77 9.554777e+04 9.554777e+04 0.00 NULL
2019 Department Of Probation Administrative Probation Officer 99910.63265 4.895621e+06 4630.76 9.450531e+01 0.000 79.50 49 0.000000e+00 0.00 4.900252e+06 4.895621e+06 4630.76 NULL
2019 Department Of Probation Administrative Procurement Analyst 72116.00000 1.442320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.442320e+05 1.442320e+05 0.00 NULL
2019 Department Of Probation Administrative Public Information Specialist 91524.50000 1.830490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.830490e+05 1.830490e+05 0.00 NULL
2019 Department Of Probation Administrative Space Analyst 128909.00000 1.289090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.289090e+05 1.289090e+05 0.00 NULL
2019 Department Of Probation Administrative Staff Analyst 120020.60000 1.200206e+06 1268.74 1.268740e+02 0.000 20.75 10 0.000000e+00 0.00 1.201475e+06 1.200206e+06 1268.74 NULL
2019 Department Of Probation Agency Attorney 87731.55556 7.895840e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.895840e+05 7.895840e+05 0.00 NULL
2019 Department Of Probation Agency Chief Contracting Officer 128948.00000 1.289480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.289480e+05 1.289480e+05 0.00 NULL
2019 Department Of Probation Attorney At Law 88236.33333 2.647090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.647090e+05 2.647090e+05 0.00 NULL
2019 Department Of Probation Bookkeeper 46933.00000 4.693300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.693300e+04 4.693300e+04 0.00 NULL
2019 Department Of Probation Certified It Administrator 91499.00000 9.149900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.149900e+04 9.149900e+04 0.00 NULL
2019 Department Of Probation City Attendant 41488.00000 4.148800e+04 5227.57 5.227570e+03 5227.570 156.50 1 5.227570e+03 5227.57 4.671557e+04 4.671557e+04 0.00 NULL
2019 Department Of Probation City Laborer NA NA 8709.64 8.709640e+03 8709.640 212.75 1 8.709640e+03 8709.64 NA NA NA NULL
2019 Department Of Probation City Research Scientist 102749.71429 7.192480e+05 2087.89 2.982700e+02 0.000 33.25 7 0.000000e+00 0.00 7.213359e+05 7.192480e+05 2087.89 NULL
2019 Department Of Probation Clerical Associate 41307.85000 1.652314e+06 45048.23 1.126206e+03 0.000 1404.75 40 0.000000e+00 0.00 1.697362e+06 1.652314e+06 45048.23 NULL
2019 Department Of Probation College Aide 17794.90500 7.117962e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.117962e+04 7.117962e+04 0.00 NULL
2019 Department Of Probation Community Associate 44362.59375 1.419603e+06 46723.51 1.460110e+03 81.220 1638.90 32 8.122000e+01 2599.04 1.466327e+06 1.422202e+06 44124.47 NULL
2019 Department Of Probation Community Coordinator 71569.72222 1.288255e+06 6740.03 3.744461e+02 0.000 172.50 18 0.000000e+00 0.00 1.294995e+06 1.288255e+06 6740.03 NULL
2019 Department Of Probation Community Service Aide 30198.75000 8.455650e+05 7904.08 2.822886e+02 0.000 484.75 28 0.000000e+00 0.00 8.534691e+05 8.455650e+05 7904.08 NULL
2019 Department Of Probation Computer Associate 64657.00000 1.293140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.293140e+05 1.293140e+05 0.00 NULL
2019 Department Of Probation Computer Service Technician 47605.50000 9.521100e+04 4628.11 2.314055e+03 2314.055 156.00 2 2.314055e+03 4628.11 9.983911e+04 9.983911e+04 0.00 NULL
2019 Department Of Probation Computer Specialist 99925.75000 7.994060e+05 74955.25 9.369406e+03 1538.315 1015.25 8 1.538315e+03 12306.52 8.743612e+05 8.117125e+05 62648.73 NULL
2019 Department Of Probation Computer Systems Manager 140273.00000 1.402730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.402730e+05 1.402730e+05 0.00 NULL
2019 Department Of Probation Counsel 186292.00000 1.862920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.862920e+05 1.862920e+05 0.00 NULL
2019 Department Of Probation Custodian 78217.50000 1.564350e+05 17800.09 8.900045e+03 8900.045 225.75 2 8.900045e+03 17800.09 1.742351e+05 1.742351e+05 0.00 NULL
2019 Department Of Probation Deputy Director Of Probation 180975.00000 3.619500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.619500e+05 3.619500e+05 0.00 NULL
2019 Department Of Probation Director Of Probation 221151.00000 2.211510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.211510e+05 2.211510e+05 0.00 NULL
2019 Department Of Probation Executive Agency Counsel 138938.50000 8.336310e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.336310e+05 8.336310e+05 0.00 NULL
2019 Department Of Probation Executive Director Of Administration 187066.00000 1.870660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.870660e+05 1.870660e+05 0.00 NULL
2019 Department Of Probation Executive Program Specialist 128726.00000 1.287260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287260e+05 1.287260e+05 0.00 NULL
2019 Department Of Probation Press Officer 118926.50000 2.378530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.378530e+05 2.378530e+05 0.00 NULL
2019 Department Of Probation Principal Administrative Associate - Lev 1 & 2 Non Supvr 55230.00000 1.767360e+06 21210.29 6.628216e+02 0.000 604.00 32 0.000000e+00 0.00 1.788570e+06 1.767360e+06 21210.29 NULL
2019 Department Of Probation Probation Assistant 35889.33333 3.230040e+05 319.70 3.552222e+01 0.000 15.25 9 0.000000e+00 0.00 3.233237e+05 3.230040e+05 319.70 NULL
2019 Department Of Probation Probation Officer 56508.62313 4.543293e+07 2052887.58 2.553343e+03 292.645 54602.12 804 2.926450e+02 235286.58 4.748582e+07 4.566822e+07 1817601.00 NULL
2019 Department Of Probation Probation Officer Trainee 41156.25641 1.605094e+06 20600.02 5.282056e+02 68.490 848.75 39 6.849000e+01 2671.11 1.625694e+06 1.607765e+06 17928.91 NULL
2019 Department Of Probation Procurement Analyst 34549.44000 6.909888e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.909888e+04 6.909888e+04 0.00 NULL
2019 Department Of Probation Secretary 40398.28571 1.131152e+06 10156.67 3.627382e+02 0.000 315.50 28 0.000000e+00 0.00 1.141309e+06 1.131152e+06 10156.67 NULL
2019 Department Of Probation Senior Consultant 83406.66667 2.502200e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.502200e+05 2.502200e+05 0.00 NULL
2019 Department Of Probation Senior Mental Health Worker 44042.00000 6.165880e+05 344.58 2.461286e+01 0.000 7.00 14 0.000000e+00 0.00 6.169326e+05 6.165880e+05 344.58 NULL
2019 Department Of Probation Staff Analyst 65351.83333 3.921110e+05 12151.82 2.025303e+03 0.000 209.00 6 0.000000e+00 0.00 4.042628e+05 3.921110e+05 12151.82 NULL
2019 Department Of Probation Stock Worker 35190.00000 3.519000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.519000e+04 3.519000e+04 0.00 NULL
2019 Department Of Probation Strategic Initiative Specialist 97044.00000 9.704400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.704400e+04 9.704400e+04 0.00 NULL
2019 Department Of Probation Summer College Intern 3257.36706 5.537524e+04 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 5.537524e+04 5.537524e+04 0.00 NULL
2019 Department Of Probation Summer Graduate Intern 3478.09167 2.086855e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.086855e+04 2.086855e+04 0.00 NULL
2019 Department Of Probation Supervising Computer Service Technician 76291.00000 7.629100e+04 1.63 1.630000e+00 1.630 0.00 1 1.630000e+00 1.63 7.629263e+04 7.629263e+04 0.00 NULL
2019 Department Of Probation Supervising Probation Officer 76635.93583 1.433092e+07 850685.80 4.549122e+03 1020.050 16165.75 187 1.020050e+03 190749.35 1.518161e+07 1.452167e+07 659936.45 NULL
2019 Department Of Probation Supervisor Ii Social Work 71575.00000 7.157500e+04 1674.76 1.674760e+03 1674.760 35.00 1 1.674760e+03 1674.76 7.324976e+04 7.324976e+04 0.00 NULL
2019 Department Of Sanitation Accountant 63505.71429 4.445400e+05 552.52 7.893143e+01 0.000 17.00 7 0.000000e+00 0.00 4.450925e+05 4.445400e+05 552.52 NULL
2019 Department Of Sanitation Adm Manager-Non-Mgrl From M1/M2 76703.75000 1.534075e+06 93727.70 4.686385e+03 0.000 1929.00 20 0.000000e+00 0.00 1.627803e+06 1.534075e+06 93727.70 NULL
2019 Department Of Sanitation Admin Community Relations Specialist 101914.33333 6.114860e+05 26992.25 4.498708e+03 3040.330 440.75 6 3.040330e+03 18241.98 6.384782e+05 6.297280e+05 8750.27 NULL
2019 Department Of Sanitation Administrative Accountant 114755.00000 1.147550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.147550e+05 1.147550e+05 0.00 NULL
2019 Department Of Sanitation Administrative Architect 118158.33333 3.544750e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.544750e+05 3.544750e+05 0.00 NULL
2019 Department Of Sanitation Administrative Business Promotion Coordinator 99242.00000 1.984840e+05 2658.27 1.329135e+03 1329.135 61.00 2 1.329135e+03 2658.27 2.011423e+05 2.011423e+05 0.00 NULL
2019 Department Of Sanitation Administrative City Planner 121044.00000 4.841760e+05 1851.40 4.628500e+02 13.635 34.75 4 1.363500e+01 54.54 4.860274e+05 4.842305e+05 1796.86 NULL
2019 Department Of Sanitation Administrative Construction Project Manager 140564.20000 7.028210e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.028210e+05 7.028210e+05 0.00 NULL
2019 Department Of Sanitation Administrative Engineer 146427.58333 1.757131e+06 4.13 3.441667e-01 0.000 4.50 12 0.000000e+00 0.00 1.757135e+06 1.757131e+06 4.13 NULL
2019 Department Of Sanitation Administrative Management Auditor 93866.00000 9.386600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.386600e+04 9.386600e+04 0.00 NULL
2019 Department Of Sanitation Administrative Manager 150040.50000 3.000810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.000810e+05 3.000810e+05 0.00 NULL
2019 Department Of Sanitation Administrative Procurement Analyst 91283.92308 1.186691e+06 36091.23 2.776248e+03 400.270 796.25 13 4.002700e+02 5203.51 1.222782e+06 1.191895e+06 30887.72 NULL
2019 Department Of Sanitation Administrative Project Manager 143571.85714 1.005003e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.005003e+06 1.005003e+06 0.00 NULL
2019 Department Of Sanitation Administrative Public Information Specialist 138667.50000 5.546700e+05 11057.53 2.764383e+03 0.000 211.00 4 0.000000e+00 0.00 5.657275e+05 5.546700e+05 11057.53 NULL
2019 Department Of Sanitation Administrative Sanitation Enforcement Agent 95404.00000 9.540400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.540400e+04 9.540400e+04 0.00 NULL
2019 Department Of Sanitation Administrative Staff Analyst 106492.09680 5.324605e+06 199859.57 3.997191e+03 0.000 3050.75 50 0.000000e+00 0.00 5.524464e+06 5.324605e+06 199859.57 NULL
2019 Department Of Sanitation Administrative Supervisor Of Building Maintenance 148059.00000 4.441770e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.441770e+05 4.441770e+05 0.00 NULL
2019 Department Of Sanitation Agency Attorney 103316.50000 1.033165e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.033165e+06 1.033165e+06 0.00 NULL
2019 Department Of Sanitation Agency Attorney Interne 67794.00000 6.779400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.779400e+04 6.779400e+04 0.00 NULL
2019 Department Of Sanitation Agency Chief Contracting Officer 159229.00000 1.592290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.592290e+05 1.592290e+05 0.00 NULL
2019 Department Of Sanitation Architect 89942.00000 8.994200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.994200e+04 8.994200e+04 0.00 NULL
2019 Department Of Sanitation Assistant Architect 73582.00000 1.471640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.471640e+05 1.471640e+05 0.00 NULL
2019 Department Of Sanitation Assistant Civil Engineer 67368.20000 3.368410e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.368410e+05 3.368410e+05 0.00 NULL
2019 Department Of Sanitation Assistant Electrical Engineer 72484.00000 2.174520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.174520e+05 2.174520e+05 0.00 NULL
2019 Department Of Sanitation Assistant Mechanical Engineer 68981.00000 6.898100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.898100e+04 6.898100e+04 0.00 NULL
2019 Department Of Sanitation Associate Fingerprint Technician 50436.00000 2.017440e+05 4358.48 1.089620e+03 730.010 119.83 4 7.300100e+02 2920.04 2.061025e+05 2.046640e+05 1438.44 NULL
2019 Department Of Sanitation Associate Fraud Investigator 85349.00000 8.534900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.534900e+04 8.534900e+04 0.00 NULL
2019 Department Of Sanitation Associate Human Rights Specialist 100445.00000 1.004450e+05 5.34 5.340000e+00 5.340 0.00 1 5.340000e+00 5.34 1.004503e+05 1.004503e+05 0.00 NULL
2019 Department Of Sanitation Associate Project Manager 89301.28000 1.339519e+06 17407.08 1.160472e+03 0.000 283.75 15 0.000000e+00 0.00 1.356926e+06 1.339519e+06 17407.08 NULL
2019 Department Of Sanitation Associate Public Records Officer 70900.00000 7.090000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.090000e+04 7.090000e+04 0.00 NULL
2019 Department Of Sanitation Associate Sanitation Enforcement Agent 45754.72549 2.333491e+06 118139.57 2.316462e+03 1584.460 3472.25 51 1.584460e+03 80807.46 2.451631e+06 2.414298e+06 37332.11 NULL
2019 Department Of Sanitation Associate Staff Analyst 79373.20690 2.301823e+06 51862.24 1.788353e+03 248.060 1037.25 29 2.480600e+02 7193.74 2.353685e+06 2.309017e+06 44668.50 NULL
2019 Department Of Sanitation Attorney At Law 103127.50000 4.125100e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.125100e+05 4.125100e+05 0.00 NULL
2019 Department Of Sanitation Auto Machinist NA NA 203520.83 1.453720e+04 11907.420 3454.76 14 1.190742e+04 166703.88 NA NA NA NULL
2019 Department Of Sanitation Auto Mechanic NA NA 6615676.09 1.138671e+04 10540.520 110310.70 581 1.054052e+04 6124042.12 NA NA NA NULL
2019 Department Of Sanitation Automotive Service Worker 42653.44444 3.838810e+05 35069.55 3.896617e+03 1822.710 1148.47 9 1.822710e+03 16404.39 4.189505e+05 4.002854e+05 18665.16 NULL
2019 Department Of Sanitation Blacksmith NA NA 4992.84 4.992840e+03 4992.840 57.00 1 4.992840e+03 4992.84 NA NA NA NULL
2019 Department Of Sanitation Boiler Maker NA NA 26049.60 2.604960e+04 26049.600 334.00 1 2.604960e+04 26049.60 NA NA NA NULL
2019 Department Of Sanitation Bookkeeper 48396.33333 7.259450e+05 1645.37 1.096913e+02 0.000 49.50 15 0.000000e+00 0.00 7.275904e+05 7.259450e+05 1645.37 NULL
2019 Department Of Sanitation Carpenter NA NA 103750.76 9.431887e+03 10761.120 1132.00 11 9.431887e+03 103750.76 NA NA NA NULL
2019 Department Of Sanitation Carriage Upholsterer NA NA 400.20 2.001000e+02 200.100 8.00 2 2.001000e+02 400.20 NA NA NA NULL
2019 Department Of Sanitation Case Mgmt Nurse 85619.00000 8.561900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.561900e+04 8.561900e+04 0.00 NULL
2019 Department Of Sanitation Cement Mason NA NA 73780.00 1.054000e+04 4824.360 869.00 7 4.824360e+03 33770.52 NA NA NA NULL
2019 Department Of Sanitation Certified It Administrator 123138.23529 2.093350e+06 216839.25 1.275525e+04 11298.250 2958.75 17 1.129825e+04 192070.25 2.310189e+06 2.285420e+06 24769.00 NULL
2019 Department Of Sanitation Certified It Developer 122336.41379 3.547756e+06 102632.53 3.539053e+03 171.260 1813.75 29 1.712600e+02 4966.54 3.650389e+06 3.552723e+06 97665.99 NULL
2019 Department Of Sanitation Chaplain 28577.00000 1.143080e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.143080e+05 1.143080e+05 0.00 NULL
2019 Department Of Sanitation City Attendant 35320.82432 2.613741e+06 150559.77 2.034591e+03 215.585 5743.78 74 2.155850e+02 15953.29 2.764301e+06 2.629694e+06 134606.48 NULL
2019 Department Of Sanitation City Clinician 127117.90000 1.271179e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.271179e+05 1.271179e+05 0.00 NULL
2019 Department Of Sanitation City Custodial Assistant 43385.00000 8.677000e+04 27107.53 1.355376e+04 13553.765 747.91 2 1.355376e+04 27107.53 1.138775e+05 1.138775e+05 0.00 NULL
2019 Department Of Sanitation City Deputy Medical Director 173825.00000 1.738250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.738250e+05 1.738250e+05 0.00 NULL
2019 Department Of Sanitation City Laborer NA NA 132301.03 8.268814e+03 6105.485 2203.59 16 6.105485e+03 97687.76 NA NA NA NULL
2019 Department Of Sanitation City Medical Specialist 54145.63440 7.038932e+05 1094.78 8.421385e+01 0.000 13.75 13 0.000000e+00 0.00 7.049880e+05 7.038932e+05 1094.78 NULL
2019 Department Of Sanitation City Planner 89111.66667 2.673350e+05 14.76 4.920000e+00 2.310 0.00 3 2.310000e+00 6.93 2.673498e+05 2.673419e+05 7.83 NULL
2019 Department Of Sanitation City Research Scientist 90017.60000 4.500880e+05 2300.28 4.600560e+02 39.620 46.00 5 3.962000e+01 198.10 4.523883e+05 4.502861e+05 2102.18 NULL
2019 Department Of Sanitation City Seasonal Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2019 Department Of Sanitation Civil Engineer 97292.50000 3.891700e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.891700e+05 3.891700e+05 0.00 NULL
2019 Department Of Sanitation Clerical Aide 34906.85714 2.443480e+05 4016.49 5.737843e+02 63.990 156.88 7 6.399000e+01 447.93 2.483645e+05 2.447959e+05 3568.56 NULL
2019 Department Of Sanitation Clerical Associate 42111.75510 1.238086e+07 1083472.03 3.685279e+03 1427.150 35849.03 294 1.427150e+03 419582.10 1.346433e+07 1.280044e+07 663889.93 NULL
2019 Department Of Sanitation College Aide 11526.41457 8.644811e+05 0.00 0.000000e+00 0.000 0.00 75 0.000000e+00 0.00 8.644811e+05 8.644811e+05 0.00 NULL
2019 Department Of Sanitation College Aide - Assignment Levels Ii And Iii 13511.93200 1.080955e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.080955e+05 1.080955e+05 0.00 NULL
2019 Department Of Sanitation Commissioner Of Sanitation 236088.00000 2.360880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.360880e+05 2.360880e+05 0.00 NULL
2019 Department Of Sanitation Community Assistant 36159.28571 5.062300e+05 8923.81 6.374150e+02 35.435 336.42 14 3.543500e+01 496.09 5.151538e+05 5.067261e+05 8427.72 NULL
2019 Department Of Sanitation Community Associate 45473.87500 1.455164e+06 44977.11 1.405535e+03 17.275 1357.44 32 1.727500e+01 552.80 1.500141e+06 1.455717e+06 44424.31 NULL
2019 Department Of Sanitation Community Coordinator 65063.60606 4.294198e+06 156043.65 2.364298e+03 1045.455 3604.50 66 1.045455e+03 69000.03 4.450242e+06 4.363198e+06 87043.62 NULL
2019 Department Of Sanitation Computer Aide-Non-Spvr 74983.00000 7.498300e+04 139.80 1.398000e+02 139.800 3.00 1 1.398000e+02 139.80 7.512280e+04 7.512280e+04 0.00 NULL
2019 Department Of Sanitation Computer Associate 73188.19048 1.536952e+06 50761.87 2.417232e+03 0.000 835.87 21 0.000000e+00 0.00 1.587714e+06 1.536952e+06 50761.87 NULL
2019 Department Of Sanitation Computer Specialist 100647.70455 4.428499e+06 194705.81 4.425132e+03 325.525 2728.00 44 3.255250e+02 14323.10 4.623205e+06 4.442822e+06 180382.71 NULL
2019 Department Of Sanitation Computer Systems Manager 137901.30645 8.549881e+06 0.00 0.000000e+00 0.000 0.00 62 0.000000e+00 0.00 8.549881e+06 8.549881e+06 0.00 NULL
2019 Department Of Sanitation Confidential Assistant To The Commissioner 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2019 Department Of Sanitation Construction Laborer NA NA 69502.65 7.722517e+03 4705.710 961.43 9 4.705710e+03 42351.39 NA NA NA NULL
2019 Department Of Sanitation Construction Project Manager 88246.00000 1.147198e+06 2739.53 2.107331e+02 0.000 50.75 13 0.000000e+00 0.00 1.149938e+06 1.147198e+06 2739.53 NULL
2019 Department Of Sanitation Counselor 75937.33333 2.278120e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.278120e+05 2.278120e+05 0.00 NULL
2019 Department Of Sanitation Custodial Assistant 36857.00000 3.685700e+04 -31.09 -3.109000e+01 -31.090 0.00 1 -3.109000e+01 -31.09 3.682591e+04 3.682591e+04 0.00 NULL
2019 Department Of Sanitation Custodian 36432.00000 3.643200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.643200e+04 3.643200e+04 0.00 NULL
2019 Department Of Sanitation Dep Dir Mtr Eq Mntc 153584.33333 4.607530e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.607530e+05 4.607530e+05 0.00 NULL
2019 Department Of Sanitation Deputy Commissioner 222533.66667 6.676010e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.676010e+05 6.676010e+05 0.00 NULL
2019 Department Of Sanitation Deputy Director Of Motor Equipment Maintenance 150730.00000 7.536500e+05 19414.83 3.882966e+03 2366.240 169.25 5 2.366240e+03 11831.20 7.730648e+05 7.654812e+05 7583.63 NULL
2019 Department Of Sanitation Director Of Motor Equipment Maintenance 213969.00000 2.139690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.139690e+05 2.139690e+05 0.00 NULL
2019 Department Of Sanitation Director Of Motor Equipment Maintenance-Nm 179680.50000 3.593610e+05 5954.68 2.977340e+03 2977.340 47.25 2 2.977340e+03 5954.68 3.653157e+05 3.653157e+05 0.00 NULL
2019 Department Of Sanitation Economist 75977.00000 7.597700e+04 0.81 8.100000e-01 0.810 0.00 1 8.100000e-01 0.81 7.597781e+04 7.597781e+04 0.00 NULL
2019 Department Of Sanitation Electrician NA NA 769762.91 1.132004e+04 8624.605 11198.74 68 8.624605e+03 586473.14 NA NA NA NULL
2019 Department Of Sanitation Estimator 63728.00000 6.372800e+04 27.34 2.734000e+01 27.340 0.00 1 2.734000e+01 27.34 6.375534e+04 6.375534e+04 0.00 NULL
2019 Department Of Sanitation Executive Agency Counsel 141764.50000 5.670580e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.670580e+05 5.670580e+05 0.00 NULL
2019 Department Of Sanitation Executive Assistant To The Commissioner 89944.00000 8.994400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.994400e+04 8.994400e+04 0.00 NULL
2019 Department Of Sanitation General Superintendent 137271.27899 3.788687e+07 5110462.39 1.851617e+04 15528.780 54339.22 276 1.552878e+04 4285943.28 4.299734e+07 4.217282e+07 824519.11 NULL
2019 Department Of Sanitation Geologist 87608.00000 8.760800e+04 8063.19 8.063190e+03 8063.190 133.75 1 8.063190e+03 8063.19 9.567119e+04 9.567119e+04 0.00 NULL
2019 Department Of Sanitation Graphic Artist 76442.60000 3.822130e+05 10883.84 2.176768e+03 2105.190 194.75 5 2.105190e+03 10525.95 3.930968e+05 3.927390e+05 357.89 NULL
2019 Department Of Sanitation Health Services Manager 181473.00000 1.814730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.814730e+05 1.814730e+05 0.00 NULL
2019 Department Of Sanitation High Pressure Plant Tender NA NA 151029.38 1.678104e+04 13860.000 2900.75 9 1.386000e+04 124740.00 NA NA NA NULL
2019 Department Of Sanitation Incinerator Facility Manager 108740.00000 1.087400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.087400e+05 1.087400e+05 0.00 NULL
2019 Department Of Sanitation Investigator 50745.00000 6.596850e+05 18804.81 1.446524e+03 0.000 579.50 13 0.000000e+00 0.00 6.784898e+05 6.596850e+05 18804.81 NULL
2019 Department Of Sanitation Job Training Participant 6202.23179 7.665958e+06 6.72 5.436900e-03 0.000 0.00 1236 0.000000e+00 0.00 7.665965e+06 7.665958e+06 6.72 NULL
2019 Department Of Sanitation Laboratory Associate 45626.50000 9.125300e+04 23.10 1.155000e+01 11.550 1.00 2 1.155000e+01 23.10 9.127610e+04 9.127610e+04 0.00 NULL
2019 Department Of Sanitation Laboratory Microbiologist 57130.00000 5.713000e+04 292.93 2.929300e+02 292.930 1.00 1 2.929300e+02 292.93 5.742293e+04 5.742293e+04 0.00 NULL
2019 Department Of Sanitation Letterer And Sign Painter NA NA 4862.00 2.431000e+03 2431.000 102.00 2 2.431000e+03 4862.00 NA NA NA NULL
2019 Department Of Sanitation Machinist NA NA 227099.21 8.734585e+03 6233.925 3973.24 26 6.233925e+03 162082.05 NA NA NA NULL
2019 Department Of Sanitation Maintenance Worker NA NA 131166.29 4.684510e+03 3572.955 3043.74 28 3.572955e+03 100042.74 NA NA NA NULL
2019 Department Of Sanitation Management Auditor 74067.83333 4.444070e+05 1177.95 1.963250e+02 0.000 31.00 6 0.000000e+00 0.00 4.455850e+05 4.444070e+05 1177.95 NULL
2019 Department Of Sanitation Mechanical Engineer 98081.25000 3.923250e+05 6306.91 1.576727e+03 0.000 104.00 4 0.000000e+00 0.00 3.986319e+05 3.923250e+05 6306.91 NULL
2019 Department Of Sanitation Medical Director 188098.00000 1.880980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.880980e+05 1.880980e+05 0.00 NULL
2019 Department Of Sanitation Medical Record Librarian 55511.71429 3.885820e+05 2278.23 3.254614e+02 0.000 60.00 7 0.000000e+00 0.00 3.908602e+05 3.885820e+05 2278.23 NULL
2019 Department Of Sanitation Metal Work Mechanic 84128.50000 5.047710e+06 618041.07 1.030068e+04 8769.920 9825.55 60 8.769920e+03 526195.20 5.665751e+06 5.573905e+06 91845.87 NULL
2019 Department Of Sanitation Motor Vehicle Operator 48545.75000 1.941830e+05 15757.07 3.939267e+03 1454.080 424.83 4 1.454080e+03 5816.32 2.099401e+05 1.999993e+05 9940.75 NULL
2019 Department Of Sanitation Motor Vehicle Supervisor 56287.00000 5.628700e+04 62.34 6.234000e+01 62.340 1.50 1 6.234000e+01 62.34 5.634934e+04 5.634934e+04 0.00 NULL
2019 Department Of Sanitation Office Machine Aide 39704.00000 1.588160e+05 12.47 3.117500e+00 0.000 0.00 4 0.000000e+00 0.00 1.588285e+05 1.588160e+05 12.47 NULL
2019 Department Of Sanitation Oiler NA NA 140125.50 2.802510e+04 40760.830 1606.19 5 2.802510e+04 140125.50 NA NA NA NULL
2019 Department Of Sanitation Painter NA NA 37611.05 5.373007e+03 4262.580 574.00 7 4.262580e+03 29838.06 NA NA NA NULL
2019 Department Of Sanitation Plumber NA NA 201982.43 1.346550e+04 13564.950 1878.75 15 1.346550e+04 201982.43 NA NA NA NULL
2019 Department Of Sanitation Principal Administrative Associate - Lev 1 & 2 Non Supvr 57347.48387 3.555544e+06 299218.56 4.826106e+03 1334.145 7335.95 62 1.334145e+03 82716.99 3.854763e+06 3.638261e+06 216501.57 NULL
2019 Department Of Sanitation Procurement Analyst 58289.78000 8.743467e+05 32448.45 2.163230e+03 0.000 581.50 15 0.000000e+00 0.00 9.067952e+05 8.743467e+05 32448.45 NULL
2019 Department Of Sanitation Project Manager 70943.50000 2.837740e+05 11802.87 2.950718e+03 70.820 263.00 4 7.082000e+01 283.28 2.955769e+05 2.840573e+05 11519.59 NULL
2019 Department Of Sanitation Public Health Sanitarian 101787.00000 1.017870e+05 4230.49 4.230490e+03 4230.490 47.30 1 4.230490e+03 4230.49 1.060175e+05 1.060175e+05 0.00 NULL
2019 Department Of Sanitation Research Assistant 54897.66667 1.646930e+05 1848.87 6.162900e+02 0.000 34.00 3 0.000000e+00 0.00 1.665419e+05 1.646930e+05 1848.87 NULL
2019 Department Of Sanitation Rubber Tire Repairer NA NA 24945.39 2.267763e+03 1341.600 585.50 11 1.341600e+03 14757.60 NA NA NA NULL
2019 Department Of Sanitation Sanitation Compliance Agent 38346.25000 3.067700e+05 461.13 5.764125e+01 1.555 19.00 8 1.555000e+00 12.44 3.072311e+05 3.067824e+05 448.69 NULL
2019 Department Of Sanitation Sanitation Enforcement Agent 38814.07784 6.481951e+06 233000.16 1.395211e+03 964.040 8285.44 167 9.640400e+02 160994.68 6.714951e+06 6.642946e+06 72005.48 NULL
2019 Department Of Sanitation Sanitation Worker 67741.26491 4.656535e+08 91864147.67 1.336400e+04 12381.280 1713482.58 6874 1.238128e+04 85108918.72 5.575176e+08 5.507624e+08 6755228.95 NULL
2019 Department Of Sanitation Secretary 51589.88889 4.643090e+05 8142.66 9.047400e+02 574.190 213.00 9 5.741900e+02 5167.71 4.724517e+05 4.694767e+05 2974.95 NULL
2019 Department Of Sanitation Secretary To The Commissioner 86868.00000 8.686800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.686800e+04 8.686800e+04 0.00 NULL
2019 Department Of Sanitation Senior Automotive Specialist 101851.00000 1.018510e+05 7952.36 7.952360e+03 7952.360 125.65 1 7.952360e+03 7952.36 1.098034e+05 1.098034e+05 0.00 NULL
2019 Department Of Sanitation Senior Estimator 89925.00000 2.697750e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.697750e+05 2.697750e+05 0.00 NULL
2019 Department Of Sanitation Senior Photographer 65442.00000 6.544200e+04 4077.14 4.077140e+03 4077.140 98.55 1 4.077140e+03 4077.14 6.951914e+04 6.951914e+04 0.00 NULL
2019 Department Of Sanitation Senior Stationary Engineer NA NA 201660.27 5.041507e+04 54193.590 1921.00 4 5.041507e+04 201660.27 NA NA NA NULL
2019 Department Of Sanitation Sheet Metal Worker NA NA 132592.35 1.325924e+04 8391.240 1136.25 10 8.391240e+03 83912.40 NA NA NA NULL
2019 Department Of Sanitation Special Investigator 132439.00000 1.324390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.324390e+05 1.324390e+05 0.00 NULL
2019 Department Of Sanitation Staff Analyst 67965.80000 6.796580e+05 1015.16 1.015160e+02 0.000 25.00 10 0.000000e+00 0.00 6.806732e+05 6.796580e+05 1015.16 NULL
2019 Department Of Sanitation Staff Analyst Trainee 42373.00000 4.237300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.237300e+04 4.237300e+04 0.00 NULL
2019 Department Of Sanitation Staff Nurse 87931.00000 4.396550e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.396550e+05 4.396550e+05 0.00 NULL
2019 Department Of Sanitation Stationary Engineer NA NA 805311.72 2.597780e+04 23658.390 8876.35 31 2.365839e+04 733410.09 NA NA NA NULL
2019 Department Of Sanitation Statistician 56367.00000 5.636700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.636700e+04 5.636700e+04 0.00 NULL
2019 Department Of Sanitation Steam Fitter NA NA 295020.00 3.278000e+04 36080.000 2656.00 9 3.278000e+04 295020.00 NA NA NA NULL
2019 Department Of Sanitation Steam Fitter’s Helper NA NA 2970.00 2.970000e+03 2970.000 36.00 1 2.970000e+03 2970.00 NA NA NA NULL
2019 Department Of Sanitation Stock Worker 39341.40000 1.967070e+05 33159.18 6.631836e+03 6853.320 1373.37 5 6.631836e+03 33159.18 2.298662e+05 2.298662e+05 0.00 NULL
2019 Department Of Sanitation Summer College Intern 3417.64028 2.460701e+05 0.00 0.000000e+00 0.000 0.00 72 0.000000e+00 0.00 2.460701e+05 2.460701e+05 0.00 NULL
2019 Department Of Sanitation Summer Graduate Intern 4225.90870 1.648104e+05 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 1.648104e+05 1.648104e+05 0.00 NULL
2019 Department Of Sanitation Supervising Computer Service Technician 72211.00000 1.444220e+05 6009.13 3.004565e+03 3004.565 103.00 2 3.004565e+03 6009.13 1.504311e+05 1.504311e+05 0.00 NULL
2019 Department Of Sanitation Supervisor 94658.60233 1.054497e+08 25279603.80 2.269264e+04 20081.520 345586.34 1114 2.008152e+04 22370813.28 1.307293e+08 1.278205e+08 2908790.52 NULL
2019 Department Of Sanitation Supervisor Bricklayer NA NA 1770.62 1.770620e+03 1770.620 21.00 1 1.770620e+03 1770.62 NA NA NA NULL
2019 Department Of Sanitation Supervisor Carpenter NA NA 47954.53 2.397726e+04 23977.265 503.00 2 2.397726e+04 47954.53 NA NA NA NULL
2019 Department Of Sanitation Supervisor Electrician NA NA 45833.61 1.145840e+04 7134.205 481.75 4 7.134205e+03 28536.82 NA NA NA NULL
2019 Department Of Sanitation Supervisor Of Ironwork 125151.00000 1.251510e+05 21737.79 2.173779e+04 21737.790 224.00 1 2.173779e+04 21737.79 1.468888e+05 1.468888e+05 0.00 NULL
2019 Department Of Sanitation Supervisor Of Mechanics 126518.15789 1.201922e+07 1375115.63 1.447490e+04 16354.080 15053.73 95 1.447490e+04 1375115.63 1.339434e+07 1.339434e+07 0.00 NULL
2019 Department Of Sanitation Supervisor Of Office Machine Operations 50745.50000 2.029820e+05 1283.09 3.207725e+02 98.110 32.25 4 9.811000e+01 392.44 2.042651e+05 2.033744e+05 890.65 NULL
2019 Department Of Sanitation Supervisor Of Stock Workers 49994.73684 9.499000e+05 270620.77 1.424320e+04 12280.190 7535.75 19 1.228019e+04 233323.61 1.220521e+06 1.183224e+06 37297.16 NULL
2019 Department Of Sanitation Supervisor Painter NA NA 19289.07 9.644535e+03 9644.535 270.75 2 9.644535e+03 19289.07 NA NA NA NULL
2019 Department Of Sanitation Supervisor Plumber NA NA 25476.48 1.273824e+04 12738.240 240.50 2 1.273824e+04 25476.48 NA NA NA NULL
2019 Department Of Sanitation Supervisor Sheet Metal Worker NA NA 29546.72 2.954672e+04 29546.720 245.75 1 2.954672e+04 29546.72 NA NA NA NULL
2019 Department Of Sanitation Supervisor Steamfitter NA NA 26676.00 2.667600e+04 26676.000 199.25 1 2.667600e+04 26676.00 NA NA NA NULL
2019 Department Of Sanitation Telecommunications Associate 65995.25000 2.639810e+05 2293.17 5.732925e+02 13.560 71.10 4 1.356000e+01 54.24 2.662742e+05 2.640352e+05 2238.93 NULL
2019 Department Of Sanitation Thermostat Repairer NA NA 16867.92 8.433960e+03 8433.960 165.00 2 8.433960e+03 16867.92 NA NA NA NULL
2019 Department Of Sanitation Tractor Operator NA NA 18722.37 4.680592e+03 4729.565 169.50 4 4.680592e+03 18722.37 NA NA NA NULL
2019 Department Of Sanitation Welder NA NA 93323.04 2.333076e+04 27653.040 957.00 4 2.333076e+04 93323.04 NA NA NA NULL
2019 Department Of Transportation Accountant 60359.21053 2.293650e+06 39003.08 1.026397e+03 0.000 945.00 38 0.000000e+00 0.00 2.332653e+06 2.293650e+06 39003.08 NULL
2019 Department Of Transportation Adm Manager-Non-Mgrl From M1/M2 78570.02188 1.398546e+07 740518.06 4.160214e+03 384.645 14328.50 178 3.846450e+02 68466.81 1.472598e+07 1.405393e+07 672051.25 NULL
2019 Department Of Transportation Admin Community Relations Specialist 85525.39949 1.881559e+06 110431.20 5.019600e+03 1248.400 2230.50 22 1.248400e+03 27464.80 1.991990e+06 1.909024e+06 82966.40 NULL
2019 Department Of Transportation Admin Construction Project Manager 126000.00000 1.260000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.260000e+05 1.260000e+05 0.00 NULL
2019 Department Of Transportation Admin Inspector 117382.37500 9.390590e+05 106033.76 1.325422e+04 9416.165 1456.00 8 9.416165e+03 75329.32 1.045093e+06 1.014388e+06 30704.44 NULL
2019 Department Of Transportation Administrative Accountant 130539.33333 3.916180e+05 2243.98 7.479933e+02 0.000 36.25 3 0.000000e+00 0.00 3.938620e+05 3.916180e+05 2243.98 NULL
2019 Department Of Transportation Administrative City Planner 109762.77778 4.939325e+06 135422.55 3.009390e+03 0.000 2098.75 45 0.000000e+00 0.00 5.074748e+06 4.939325e+06 135422.55 NULL
2019 Department Of Transportation Administrative Community Relations Specialist 144306.33333 4.329190e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.329190e+05 4.329190e+05 0.00 NULL
2019 Department Of Transportation Administrative Construction Project Manager 153991.00000 6.159640e+05 34743.60 8.685900e+03 9112.410 464.75 4 8.685900e+03 34743.60 6.507076e+05 6.507076e+05 0.00 NULL
2019 Department Of Transportation Administrative Contract Specialist 97024.00000 1.940480e+05 23756.47 1.187824e+04 11878.235 398.25 2 1.187824e+04 23756.47 2.178045e+05 2.178045e+05 0.00 NULL
2019 Department Of Transportation Administrative Director Of Marine Maintenance 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2019 Department Of Transportation Administrative Engineer 126188.39416 1.728781e+07 857793.04 6.261263e+03 3.750 11623.75 137 3.750000e+00 513.75 1.814560e+07 1.728832e+07 857279.29 NULL
2019 Department Of Transportation Administrative Graphic Artist 124170.00000 1.241700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.241700e+05 1.241700e+05 0.00 NULL
2019 Department Of Transportation Administrative Inspector 138444.00000 2.768880e+05 33938.84 1.696942e+04 16969.420 410.25 2 1.696942e+04 33938.84 3.108268e+05 3.108268e+05 0.00 NULL
2019 Department Of Transportation Administrative Investigator 92086.60000 4.604330e+05 29092.17 5.818434e+03 6254.270 604.50 5 5.818434e+03 29092.17 4.895252e+05 4.895252e+05 0.00 NULL
2019 Department Of Transportation Administrative Labor Relations Analyst 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2019 Department Of Transportation Administrative Management Auditor 125643.33333 7.538600e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.538600e+05 7.538600e+05 0.00 NULL
2019 Department Of Transportation Administrative Manager 137621.25000 5.504850e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.504850e+05 5.504850e+05 0.00 NULL
2019 Department Of Transportation Administrative Procurement Analyst 87079.27273 2.873616e+06 125637.25 3.807189e+03 283.330 2381.25 33 2.833300e+02 9349.89 2.999253e+06 2.882966e+06 116287.36 NULL
2019 Department Of Transportation Administrative Project Manager 133525.37288 7.877997e+06 388802.27 6.589869e+03 0.000 4916.25 59 0.000000e+00 0.00 8.266799e+06 7.877997e+06 388802.27 NULL
2019 Department Of Transportation Administrative Public Information Specialist 176780.00000 3.535600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.535600e+05 3.535600e+05 0.00 NULL
2019 Department Of Transportation Administrative Quality Assurance Specialist 112906.33333 3.387190e+05 53107.20 1.770240e+04 18025.830 802.50 3 1.770240e+04 53107.20 3.918262e+05 3.918262e+05 0.00 NULL
2019 Department Of Transportation Administrative Real Property Manager 192691.00000 1.926910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.926910e+05 1.926910e+05 0.00 NULL
2019 Department Of Transportation Administrative Staff Analyst 113164.50138 1.437189e+07 484770.59 3.817091e+03 0.000 7514.25 127 0.000000e+00 0.00 1.485666e+07 1.437189e+07 484770.59 NULL
2019 Department Of Transportation Administrative Superintendent Of Bridge Operations 127117.00000 1.271170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.271170e+05 1.271170e+05 0.00 NULL
2019 Department Of Transportation Administrative Superintendent Of Highway Operations 137559.29167 3.301423e+06 27694.34 1.153931e+03 0.000 377.75 24 0.000000e+00 0.00 3.329117e+06 3.301423e+06 27694.34 NULL
2019 Department Of Transportation Administrative Supervisor Of Building Maintenance 117588.00000 1.175880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.175880e+05 1.175880e+05 0.00 NULL
2019 Department Of Transportation Administrative Transportation Coordinator 141073.30435 3.244686e+06 56218.95 2.444302e+03 0.000 811.25 23 0.000000e+00 0.00 3.300905e+06 3.244686e+06 56218.95 NULL
2019 Department Of Transportation Agency Attorney 94297.23810 1.980242e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.980242e+06 1.980242e+06 0.00 NULL
2019 Department Of Transportation Agency Attorney Interne 66636.00000 6.663600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.663600e+04 6.663600e+04 0.00 NULL
2019 Department Of Transportation Agency Chief Contracting Officer 188396.00000 1.883960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.883960e+05 1.883960e+05 0.00 NULL
2019 Department Of Transportation Apprentice Inspector 37608.12414 5.453178e+06 327664.39 2.259754e+03 683.190 12040.50 145 6.831900e+02 99062.55 5.780842e+06 5.552241e+06 228601.84 NULL
2019 Department Of Transportation Architect 99562.66667 2.986880e+05 128.09 4.269667e+01 0.000 3.00 3 0.000000e+00 0.00 2.988161e+05 2.986880e+05 128.09 NULL
2019 Department Of Transportation Area Supervisor 107638.24615 6.996486e+06 2358297.75 3.628150e+04 36006.470 29339.50 65 3.600647e+04 2340420.55 9.354784e+06 9.336907e+06 17877.20 NULL
2019 Department Of Transportation Asphalt Plant Manager 167304.00000 3.346080e+05 56755.92 2.837796e+04 28377.960 658.00 2 2.837796e+04 56755.92 3.913639e+05 3.913639e+05 0.00 NULL
2019 Department Of Transportation Assistant Accountant 54871.00000 5.487100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.487100e+04 5.487100e+04 0.00 NULL
2019 Department Of Transportation Assistant Architect 43540.59505 8.708119e+04 2480.85 1.240425e+03 1240.425 73.50 2 1.240425e+03 2480.85 8.956204e+04 8.956204e+04 0.00 NULL
2019 Department Of Transportation Assistant Captain 63014.00000 1.071238e+06 532538.15 3.132577e+04 35934.220 8378.50 17 3.132577e+04 532538.15 1.603776e+06 1.603776e+06 0.00 NULL
2019 Department Of Transportation Assistant City Highway Repairer 38646.15116 2.647261e+07 2779399.59 4.057518e+03 1961.230 74846.35 685 1.961230e+03 1343442.55 2.925201e+07 2.781606e+07 1435957.04 NULL
2019 Department Of Transportation Assistant Civil Engineer 70227.52174 1.130663e+07 692266.36 4.299791e+03 233.950 14355.75 161 2.339500e+02 37665.95 1.199890e+07 1.134430e+07 654600.41 NULL
2019 Department Of Transportation Assistant Commissioner 171636.00000 3.432720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.432720e+05 3.432720e+05 0.00 NULL
2019 Department Of Transportation Assistant Director 114179.00000 2.283580e+05 17154.72 8.577360e+03 8577.360 294.00 2 8.577360e+03 17154.72 2.455127e+05 2.455127e+05 0.00 NULL
2019 Department Of Transportation Assistant Electrical Engineer 68494.51351 2.534297e+06 214053.26 5.785223e+03 1822.480 4436.00 37 1.822480e+03 67431.76 2.748350e+06 2.601729e+06 146621.50 NULL
2019 Department Of Transportation Assistant Environmental Engineer 83151.00000 8.315100e+04 149.17 1.491700e+02 149.170 3.25 1 1.491700e+02 149.17 8.330017e+04 8.330017e+04 0.00 NULL
2019 Department Of Transportation Assistant Highway Transportation Specialist 58953.63934 3.596172e+06 218800.17 3.586888e+03 120.580 5318.25 61 1.205800e+02 7355.38 3.814972e+06 3.603527e+06 211444.79 NULL
2019 Department Of Transportation Assistant Mechanical Engineer 68957.33333 6.206160e+05 52516.98 5.835220e+03 565.610 1093.25 9 5.656100e+02 5090.49 6.731330e+05 6.257065e+05 47426.49 NULL
2019 Department Of Transportation Assistant Printing Press Operator 62546.00000 1.250920e+05 485.26 2.426300e+02 242.630 13.25 2 2.426300e+02 485.26 1.255773e+05 1.255773e+05 0.00 NULL
2019 Department Of Transportation Assistant To The Deputy Commissioner 148620.00000 1.486200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.486200e+05 1.486200e+05 0.00 NULL
2019 Department Of Transportation Assistant Urban Designer 66364.42857 4.645510e+05 522.18 7.459714e+01 0.000 14.50 7 0.000000e+00 0.00 4.650732e+05 4.645510e+05 522.18 NULL
2019 Department Of Transportation Associate Fraud Investigator 72510.00000 7.251000e+04 955.07 9.550700e+02 955.070 26.50 1 9.550700e+02 955.07 7.346507e+04 7.346507e+04 0.00 NULL
2019 Department Of Transportation Associate Inspector 69351.84314 3.536944e+06 650126.60 1.274758e+04 10546.400 13077.75 51 1.054640e+04 537866.40 4.187071e+06 4.074810e+06 112260.20 NULL
2019 Department Of Transportation Associate Investigator 70041.00000 2.801640e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.801640e+05 2.801640e+05 0.00 NULL
2019 Department Of Transportation Associate Labor Relations Analyst 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2019 Department Of Transportation Associate Operations Communications Specialist 64336.50000 1.286730e+05 35364.94 1.768247e+04 17682.470 671.50 2 1.768247e+04 35364.94 1.640379e+05 1.640379e+05 0.00 NULL
2019 Department Of Transportation Associate Project Manager 88522.83636 4.868756e+06 327932.85 5.962415e+03 830.410 5235.25 55 8.304100e+02 45672.55 5.196689e+06 4.914429e+06 282260.30 NULL
2019 Department Of Transportation Associate Quality Assurance Specialist 68861.00000 2.754440e+05 37969.97 9.492493e+03 9318.760 805.50 4 9.318760e+03 37275.04 3.134140e+05 3.127190e+05 694.93 NULL
2019 Department Of Transportation Associate Retirement Benefits Examiner 70315.00000 1.406300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.406300e+05 1.406300e+05 0.00 NULL
2019 Department Of Transportation Associate Staff Analyst 83679.15217 3.849241e+06 137910.54 2.998055e+03 0.000 2398.00 46 0.000000e+00 0.00 3.987152e+06 3.849241e+06 137910.54 NULL
2019 Department Of Transportation Associate Urban Designer 85154.00917 2.554620e+05 10.92 3.640000e+00 0.000 0.00 3 0.000000e+00 0.00 2.554729e+05 2.554620e+05 10.92 NULL
2019 Department Of Transportation Auto Machinist NA NA 19518.30 1.951830e+04 19518.300 322.00 1 1.951830e+04 19518.30 NA NA NA NULL
2019 Department Of Transportation Auto Body Worker 50457.33333 1.513720e+05 768.92 2.563067e+02 0.000 18.00 3 0.000000e+00 0.00 1.521409e+05 1.513720e+05 768.92 NULL
2019 Department Of Transportation Auto Mechanic NA NA 1349884.80 1.163694e+04 12891.250 22805.88 116 1.163694e+04 1349884.80 NA NA NA NULL
2019 Department Of Transportation Automotive Service Worker 37193.62500 5.950980e+05 62556.45 3.909778e+03 3345.525 2237.75 16 3.345525e+03 53528.40 6.576544e+05 6.486264e+05 9028.05 NULL
2019 Department Of Transportation Automotive Specialist 83436.00000 8.343600e+04 28524.27 2.852427e+04 28524.270 500.25 1 2.852427e+04 28524.27 1.119603e+05 1.119603e+05 0.00 NULL
2019 Department Of Transportation Blacksmith NA NA 79258.32 1.981458e+04 17658.855 1092.00 4 1.765885e+04 70635.42 NA NA NA NULL
2019 Department Of Transportation Blacksmith’s Helper NA NA 30526.89 1.526344e+04 15263.445 562.50 2 1.526344e+04 30526.89 NA NA NA NULL
2019 Department Of Transportation Boiler Maker NA NA 167459.13 2.392273e+04 23643.630 2359.25 7 2.364363e+04 165505.41 NA NA NA NULL
2019 Department Of Transportation Bookkeeper 48811.12500 3.904890e+05 11824.97 1.478121e+03 14.270 310.00 8 1.427000e+01 114.16 4.023140e+05 3.906032e+05 11710.81 NULL
2019 Department Of Transportation Borough Commissioner 153369.80000 7.668490e+05 4880.92 9.761840e+02 0.000 46.75 5 0.000000e+00 0.00 7.717299e+05 7.668490e+05 4880.92 NULL
2019 Department Of Transportation Bricklayer NA NA 316837.45 3.520416e+04 36982.800 4876.67 9 3.520416e+04 316837.45 NA NA NA NULL
2019 Department Of Transportation Bridge Operator 45903.84091 4.039538e+06 674675.97 7.666772e+03 6364.320 18411.55 88 6.364320e+03 560060.16 4.714214e+06 4.599598e+06 114615.81 NULL
2019 Department Of Transportation Bridge Painter NA NA 307385.98 6.830800e+03 7751.140 3201.50 45 6.830800e+03 307385.98 NA NA NA NULL
2019 Department Of Transportation Bridge Repairer And Riveter NA NA 1121688.22 2.670686e+04 27768.125 17084.10 42 2.670686e+04 1121688.22 NA NA NA NULL
2019 Department Of Transportation Captain 70926.00000 1.702224e+06 1121150.79 4.671462e+04 46029.475 15930.50 24 4.602947e+04 1104707.40 2.823375e+06 2.806931e+06 16443.39 NULL
2019 Department Of Transportation Carpenter NA NA 355658.55 1.546342e+04 19677.340 5232.25 23 1.546342e+04 355658.55 NA NA NA NULL
2019 Department Of Transportation Cement Mason NA NA 1077257.27 4.143297e+04 51967.965 12356.92 26 4.143297e+04 1077257.27 NA NA NA NULL
2019 Department Of Transportation Certified Database Administrator 118000.00000 1.180000e+05 2123.02 2.123020e+03 2123.020 29.25 1 2.123020e+03 2123.02 1.201230e+05 1.201230e+05 0.00 NULL
2019 Department Of Transportation Certified It Administrator 114621.38889 2.063185e+06 273912.42 1.521736e+04 18044.685 3434.75 18 1.521736e+04 273912.42 2.337097e+06 2.337097e+06 0.00 NULL
2019 Department Of Transportation Certified It Developer 111682.87500 8.934630e+05 44057.66 5.507208e+03 945.995 622.50 8 9.459950e+02 7567.96 9.375207e+05 9.010310e+05 36489.70 NULL
2019 Department Of Transportation Chief Marine Engineer 68789.00000 1.857303e+06 1576383.12 5.838456e+04 63564.480 23382.00 27 5.838456e+04 1576383.12 3.433686e+06 3.433686e+06 0.00 NULL
2019 Department Of Transportation Chief Of Staff 187949.00000 1.879490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.879490e+05 1.879490e+05 0.00 NULL
2019 Department Of Transportation City Attendant 40059.32124 1.362017e+06 96823.62 2.847754e+03 925.250 3323.95 34 9.252500e+02 31458.50 1.458841e+06 1.393475e+06 65365.12 NULL
2019 Department Of Transportation City Custodial Assistant 44872.06487 1.346162e+05 17155.29 5.718430e+03 3936.540 514.00 3 3.936540e+03 11809.62 1.517715e+05 1.464258e+05 5345.67 NULL
2019 Department Of Transportation City Debris Remover 43002.48417 2.580149e+05 51013.66 8.502277e+03 7990.580 1603.50 6 7.990580e+03 47943.48 3.090286e+05 3.059584e+05 3070.18 NULL
2019 Department Of Transportation City Laborer NA NA 423485.61 1.460295e+04 11155.120 7850.60 29 1.115512e+04 323498.48 NA NA NA NULL
2019 Department Of Transportation City Parking Equipment Service Worker 40839.80000 4.696577e+06 485962.29 4.225759e+03 3093.000 14919.50 115 3.093000e+03 355695.00 5.182539e+06 5.052272e+06 130267.29 NULL
2019 Department Of Transportation City Planner 80625.78495 7.498198e+06 424439.59 4.563867e+03 463.800 7735.75 93 4.638000e+02 43133.40 7.922638e+06 7.541331e+06 381306.19 NULL
2019 Department Of Transportation City Research Scientist 93204.16667 1.118450e+06 18141.98 1.511832e+03 10.490 236.75 12 1.049000e+01 125.88 1.136592e+06 1.118576e+06 18016.10 NULL
2019 Department Of Transportation City Tax Auditor 54101.00000 5.410100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.410100e+04 5.410100e+04 0.00 NULL
2019 Department Of Transportation Civil Engineer 98266.37500 6.289048e+06 305895.62 4.779619e+03 105.875 4736.25 64 1.058750e+02 6776.00 6.594944e+06 6.295824e+06 299119.62 NULL
2019 Department Of Transportation Civil Engineering Intern 59313.97059 2.016675e+06 50067.48 1.472573e+03 0.000 1310.25 34 0.000000e+00 0.00 2.066742e+06 2.016675e+06 50067.48 NULL
2019 Department Of Transportation Claim Specialist 50152.51000 1.003050e+05 672.31 3.361550e+02 336.155 28.00 2 3.361550e+02 672.31 1.009773e+05 1.009773e+05 0.00 NULL
2019 Department Of Transportation Clerical Aide 39889.00000 3.988900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.988900e+04 3.988900e+04 0.00 NULL
2019 Department Of Transportation Clerical Associate 45022.27372 1.139064e+07 434285.94 1.716545e+03 89.210 13562.47 253 8.921000e+01 22570.13 1.182492e+07 1.141321e+07 411715.81 NULL
2019 Department Of Transportation Climber & Pruner 66684.66667 4.001080e+05 68387.94 1.139799e+04 11603.640 1396.50 6 1.139799e+04 68387.94 4.684959e+05 4.684959e+05 0.00 NULL
2019 Department Of Transportation College Aide 9642.77314 1.079991e+06 0.00 0.000000e+00 0.000 0.00 112 0.000000e+00 0.00 1.079991e+06 1.079991e+06 0.00 NULL
2019 Department Of Transportation College Aide - Assignment Levels Ii And Iii 10293.20941 4.631944e+05 149.92 3.331556e+00 0.000 7.00 45 0.000000e+00 0.00 4.633443e+05 4.631944e+05 149.92 NULL
2019 Department Of Transportation Commissioner Of Transportation 236088.00000 2.360880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.360880e+05 2.360880e+05 0.00 NULL
2019 Department Of Transportation Community Assistant 39757.58771 9.541821e+05 40256.47 1.677353e+03 136.630 1516.75 24 1.366300e+02 3279.12 9.944386e+05 9.574612e+05 36977.35 NULL
2019 Department Of Transportation Community Associate 45809.99816 2.153070e+06 73027.10 1.553768e+03 0.000 2121.50 47 0.000000e+00 0.00 2.226097e+06 2.153070e+06 73027.10 NULL
2019 Department Of Transportation Community Coordinator 66153.57546 7.210740e+06 313675.78 2.877759e+03 760.390 7434.25 109 7.603900e+02 82882.51 7.524416e+06 7.293622e+06 230793.27 NULL
2019 Department Of Transportation Community Service Aide 29245.11075 2.924511e+04 332.21 3.322100e+02 332.210 17.75 1 3.322100e+02 332.21 2.957732e+04 2.957732e+04 0.00 NULL
2019 Department Of Transportation Computer Aide-Non-Spvr 55055.26806 2.202211e+05 14981.26 3.745315e+03 2555.355 438.50 4 2.555355e+03 10221.42 2.352023e+05 2.304425e+05 4759.84 NULL
2019 Department Of Transportation Computer Associate 77317.66750 1.855624e+06 130228.00 5.426167e+03 352.005 2511.50 24 3.520050e+02 8448.12 1.985852e+06 1.864072e+06 121779.88 NULL
2019 Department Of Transportation Computer Service Technician 48872.00000 4.887200e+04 4560.77 4.560770e+03 4560.770 141.75 1 4.560770e+03 4560.77 5.343277e+04 5.343277e+04 0.00 NULL
2019 Department Of Transportation Computer Specialist 103997.59259 2.807935e+06 93549.91 3.464811e+03 34.780 1083.75 27 3.478000e+01 939.06 2.901485e+06 2.808874e+06 92610.85 NULL
2019 Department Of Transportation Computer Systems Manager 151442.38462 1.968751e+06 228.69 1.759154e+01 0.000 0.00 13 0.000000e+00 0.00 1.968980e+06 1.968751e+06 228.69 NULL
2019 Department Of Transportation Confidential Strategy Planner 90051.00000 8.104590e+05 34500.62 3.833402e+03 3559.630 599.00 9 3.559630e+03 32036.67 8.449596e+05 8.424957e+05 2463.95 NULL
2019 Department Of Transportation Construction Project Manager 83736.23333 2.512087e+06 377159.42 1.257198e+04 9680.770 6176.25 30 9.680770e+03 290423.10 2.889246e+06 2.802510e+06 86736.32 NULL
2019 Department Of Transportation Counsel 230486.00000 2.304860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.304860e+05 2.304860e+05 0.00 NULL
2019 Department Of Transportation Crane Operator Ampes NA NA 430687.41 7.178124e+04 72486.825 3452.00 6 7.178124e+04 430687.41 NA NA NA NULL
2019 Department Of Transportation Customer Information Representative Ma L 1549 46794.62267 6.083301e+05 74537.05 5.733619e+03 3440.240 1800.75 13 3.440240e+03 44723.12 6.828671e+05 6.530532e+05 29813.93 NULL
2019 Department Of Transportation Deckhand 53406.23361 1.303112e+07 5133518.63 2.103901e+04 19904.320 92028.50 244 1.990432e+04 4856654.08 1.816464e+07 1.788778e+07 276864.55 NULL
2019 Department Of Transportation Deputy Commissioner 211648.00000 6.349440e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.349440e+05 6.349440e+05 0.00 NULL
2019 Department Of Transportation Deputy Director 142403.00000 1.424030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.424030e+05 1.424030e+05 0.00 NULL
2019 Department Of Transportation Director Of Public Relations 166872.00000 1.668720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.668720e+05 1.668720e+05 0.00 NULL
2019 Department Of Transportation Dockbuilder NA NA 218500.00 2.427778e+04 28985.600 2893.75 9 2.427778e+04 218500.00 NA NA NA NULL
2019 Department Of Transportation Economist 66529.14286 4.657040e+05 6005.29 8.578986e+02 340.360 163.25 7 3.403600e+02 2382.52 4.717093e+05 4.680865e+05 3622.77 NULL
2019 Department Of Transportation Electrical Engineer 93357.00000 9.335700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.335700e+04 9.335700e+04 0.00 NULL
2019 Department Of Transportation Electrical Engineering Intern 59842.85714 4.189000e+05 272.03 3.886143e+01 0.000 8.25 7 0.000000e+00 0.00 4.191720e+05 4.189000e+05 272.03 NULL
2019 Department Of Transportation Electrician NA NA 2204838.07 2.345572e+04 17289.620 26053.00 94 1.728962e+04 1625224.28 NA NA NA NULL
2019 Department Of Transportation Electrician’s Helper NA NA 221887.28 5.547182e+04 53981.045 3574.25 4 5.398104e+04 215924.18 NA NA NA NULL
2019 Department Of Transportation Engineering Technician 58226.71429 4.075870e+05 26081.13 3.725876e+03 1799.860 799.75 7 1.799860e+03 12599.02 4.336681e+05 4.201860e+05 13482.11 NULL
2019 Department Of Transportation Estimator 63764.00000 6.376400e+04 21.78 2.178000e+01 21.780 0.00 1 2.178000e+01 21.78 6.378578e+04 6.378578e+04 0.00 NULL
2019 Department Of Transportation Executive Agency Counsel 153661.23077 1.997596e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.997596e+06 1.997596e+06 0.00 NULL
2019 Department Of Transportation Executive Program Specialist 170345.50000 3.406910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.406910e+05 3.406910e+05 0.00 NULL
2019 Department Of Transportation Ferry Terminal Supervisor 74312.00000 9.660560e+05 341290.21 2.625309e+04 28001.640 6005.75 13 2.625309e+04 341290.21 1.307346e+06 1.307346e+06 0.00 NULL
2019 Department Of Transportation Gardener 57694.66667 1.730840e+05 28321.55 9.440517e+03 9304.730 695.00 3 9.304730e+03 27914.19 2.014055e+05 2.009982e+05 407.36 NULL
2019 Department Of Transportation Gasoline Roller Engineer-L15 NA NA 1761539.00 2.024757e+04 15939.160 18672.25 87 1.593916e+04 1386706.92 NA NA NA NULL
2019 Department Of Transportation Graphic Artist 67830.75000 2.713230e+05 13.87 3.467500e+00 0.000 0.00 4 0.000000e+00 0.00 2.713369e+05 2.713230e+05 13.87 NULL
2019 Department Of Transportation High Pressure Plant Tender NA NA 310642.56 5.177376e+04 51653.450 5912.00 6 5.165345e+04 309920.70 NA NA NA NULL
2019 Department Of Transportation Highway Repairer NA NA 7443553.78 1.473971e+04 12079.990 105186.16 505 1.207999e+04 6100394.95 NA NA NA NULL
2019 Department Of Transportation Highway Transportation Specialist 77070.41585 1.325611e+07 1644435.50 9.560672e+03 8055.270 29628.77 172 8.055270e+03 1385506.44 1.490055e+07 1.464162e+07 258929.06 NULL
2019 Department Of Transportation Highways And Sewers Inspector 59658.85437 6.144862e+06 844867.95 8.202601e+03 5321.590 19257.75 103 5.321590e+03 548123.77 6.989730e+06 6.692986e+06 296744.18 NULL
2019 Department Of Transportation Industrial Hygienist 61711.44444 5.554030e+05 17341.48 1.926831e+03 5.080 457.00 9 5.080000e+00 45.72 5.727445e+05 5.554487e+05 17295.76 NULL
2019 Department Of Transportation Inspector 61533.00000 6.153300e+04 169.44 1.694400e+02 169.440 5.75 1 1.694400e+02 169.44 6.170244e+04 6.170244e+04 0.00 NULL
2019 Department Of Transportation Investigator 48528.46154 6.308700e+05 19201.94 1.477072e+03 257.640 528.00 13 2.576400e+02 3349.32 6.500719e+05 6.342193e+05 15852.62 NULL
2019 Department Of Transportation Investigator Empl Disc 47233.00000 4.723300e+04 240.04 2.400400e+02 240.040 8.50 1 2.400400e+02 240.04 4.747304e+04 4.747304e+04 0.00 NULL
2019 Department Of Transportation Laborer NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2019 Department Of Transportation Letterer And Sign Painter NA NA 77832.80 8.648089e+03 9452.000 1863.75 9 8.648089e+03 77832.80 NA NA NA NULL
2019 Department Of Transportation Machinist NA NA 225297.21 2.252972e+04 30030.330 3774.50 10 2.252972e+04 225297.21 NA NA NA NULL
2019 Department Of Transportation Management Auditor 73897.47619 1.551847e+06 47740.52 2.273358e+03 1810.440 1006.25 21 1.810440e+03 38019.24 1.599588e+06 1.589866e+06 9721.28 NULL
2019 Department Of Transportation Marine Electronics Technician 101245.50000 4.049820e+05 50287.81 1.257195e+04 7585.005 617.50 4 7.585005e+03 30340.02 4.552698e+05 4.353220e+05 19947.79 NULL
2019 Department Of Transportation Marine Engineer 64231.25000 1.541550e+06 1089675.93 4.540316e+04 48657.815 17220.75 24 4.540316e+04 1089675.93 2.631226e+06 2.631226e+06 0.00 NULL
2019 Department Of Transportation Marine Oiler 56035.56604 2.969885e+06 2234452.53 4.215948e+04 43760.170 41905.50 53 4.215948e+04 2234452.53 5.204338e+06 5.204338e+06 0.00 NULL
2019 Department Of Transportation Masons Helper NA NA 2974.38 2.974380e+03 2974.380 82.00 1 2.974380e+03 2974.38 NA NA NA NULL
2019 Department Of Transportation Mate 57875.00000 3.819750e+06 2128007.47 3.224254e+04 31685.520 36281.75 66 3.168552e+04 2091244.32 5.947757e+06 5.910994e+06 36763.15 NULL
2019 Department Of Transportation Mechanical Engineer 102370.00000 2.047400e+05 9.45 4.725000e+00 4.725 0.00 2 4.725000e+00 9.45 2.047495e+05 2.047495e+05 0.00 NULL
2019 Department Of Transportation Mechanical Engineering Intern 60447.00000 1.208940e+05 20715.29 1.035765e+04 10357.645 503.00 2 1.035765e+04 20715.29 1.416093e+05 1.416093e+05 0.00 NULL
2019 Department Of Transportation Motor Grader Operator NA NA 545423.71 1.947942e+04 16693.485 6566.50 28 1.669349e+04 467417.58 NA NA NA NULL
2019 Department Of Transportation Motor Vehicle Operator 43635.50000 8.727100e+04 2120.40 1.060200e+03 1060.200 69.00 2 1.060200e+03 2120.40 8.939140e+04 8.939140e+04 0.00 NULL
2019 Department Of Transportation New York City Public Service Fellow 45000.00000 4.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.500000e+04 4.500000e+04 0.00 NULL
2019 Department Of Transportation Office Machine Aide 39155.87500 3.132470e+05 8075.61 1.009451e+03 0.000 319.50 8 0.000000e+00 0.00 3.213226e+05 3.132470e+05 8075.61 NULL
2019 Department Of Transportation Oiler NA NA 494700.75 3.091880e+04 30593.680 5916.75 16 3.059368e+04 489498.88 NA NA NA NULL
2019 Department Of Transportation Operations Communications Specialist 48155.38889 8.667970e+05 75471.82 4.192879e+03 2838.785 2074.75 18 2.838785e+03 51098.13 9.422688e+05 9.178951e+05 24373.69 NULL
2019 Department Of Transportation Painter NA NA 69502.20 1.158370e+04 9457.615 1063.75 6 9.457615e+03 56745.69 NA NA NA NULL
2019 Department Of Transportation Paralegal Aide 45111.50000 9.022300e+04 1849.78 9.248900e+02 924.890 86.50 2 9.248900e+02 1849.78 9.207278e+04 9.207278e+04 0.00 NULL
2019 Department Of Transportation Plumber NA NA 395510.16 3.595547e+04 34971.570 3790.25 11 3.497157e+04 384687.27 NA NA NA NULL
2019 Department Of Transportation Principal Administrative Associate - Lev 1 & 2 Non Supvr 58851.01426 8.474546e+06 377209.67 2.619512e+03 51.515 9178.75 144 5.151500e+01 7418.16 8.851756e+06 8.481964e+06 369791.51 NULL
2019 Department Of Transportation Procurement Analyst 65509.77778 1.179176e+06 79831.54 4.435086e+03 290.525 1681.50 18 2.905250e+02 5229.45 1.259008e+06 1.184405e+06 74602.09 NULL
2019 Department Of Transportation Project Manager 70768.25000 8.492190e+05 38563.65 3.213637e+03 573.665 806.50 12 5.736650e+02 6883.98 8.877827e+05 8.561030e+05 31679.67 NULL
2019 Department Of Transportation Public Records Aide 40880.41833 2.452825e+05 1.90 3.166667e-01 0.000 0.00 6 0.000000e+00 0.00 2.452844e+05 2.452825e+05 1.90 NULL
2019 Department Of Transportation Public Records Officer 41969.00000 4.196900e+04 783.89 7.838900e+02 783.890 27.75 1 7.838900e+02 783.89 4.275289e+04 4.275289e+04 0.00 NULL
2019 Department Of Transportation Quality Assurance Specialist 53801.84452 3.766129e+05 48460.48 6.922926e+03 2582.700 1505.25 7 2.582700e+03 18078.90 4.250734e+05 3.946918e+05 30381.58 NULL
2019 Department Of Transportation Radio Repair Mechanic NA NA 42187.91 8.437582e+03 12576.930 594.75 5 8.437582e+03 42187.91 NA NA NA NULL
2019 Department Of Transportation Research Assistant 54129.55383 8.119433e+05 3921.82 2.614547e+02 0.000 147.75 15 0.000000e+00 0.00 8.158651e+05 8.119433e+05 3921.82 NULL
2019 Department Of Transportation Rigger NA NA 224158.84 3.202269e+04 30391.790 2972.25 7 3.039179e+04 212742.53 NA NA NA NULL
2019 Department Of Transportation Rubber Tire Repairer NA NA 18363.16 3.060527e+03 1849.940 458.00 6 1.849940e+03 11099.64 NA NA NA NULL
2019 Department Of Transportation Secretary 44324.65030 7.091944e+05 20661.93 1.291371e+03 2.345 716.00 16 2.345000e+00 37.52 7.298563e+05 7.092319e+05 20624.41 NULL
2019 Department Of Transportation Secretary To The Deputy Commissioner 62695.00000 6.269500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.269500e+04 6.269500e+04 0.00 NULL
2019 Department Of Transportation Senior Photographer 71595.00000 7.159500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.159500e+04 7.159500e+04 0.00 NULL
2019 Department Of Transportation Senior Service Inspector 48400.50000 9.680100e+04 10586.60 5.293300e+03 5293.300 321.00 2 5.293300e+03 10586.60 1.073876e+05 1.073876e+05 0.00 NULL
2019 Department Of Transportation Service Inspector 34641.66667 1.039250e+05 4190.86 1.396953e+03 1360.240 182.00 3 1.360240e+03 4080.72 1.081159e+05 1.080057e+05 110.14 NULL
2019 Department Of Transportation Sheet Metal Worker NA NA 106921.14 2.673028e+04 28831.445 999.50 4 2.673028e+04 106921.14 NA NA NA NULL
2019 Department Of Transportation Ship Carpenter NA NA 141327.93 2.355465e+04 24121.640 1730.00 6 2.355465e+04 141327.93 NA NA NA NULL
2019 Department Of Transportation Staff Analyst 65576.64727 2.164029e+06 73312.77 2.221599e+03 0.000 1752.00 33 0.000000e+00 0.00 2.237342e+06 2.164029e+06 73312.77 NULL
2019 Department Of Transportation Staff Analyst Trainee 43826.33333 2.629580e+05 2119.51 3.532517e+02 218.880 68.50 6 2.188800e+02 1313.28 2.650775e+05 2.642713e+05 806.23 NULL
2019 Department Of Transportation Stationary Engineer NA NA 133717.76 3.342944e+04 27900.630 1442.00 4 2.790063e+04 111602.52 NA NA NA NULL
2019 Department Of Transportation Steam Fitter NA NA 269830.00 2.075615e+04 23567.500 2425.50 13 2.075615e+04 269830.00 NA NA NA NULL
2019 Department Of Transportation Stock Worker 38360.50000 6.137680e+05 60688.74 3.793046e+03 216.955 2146.75 16 2.169550e+02 3471.28 6.744567e+05 6.172393e+05 57217.46 NULL
2019 Department Of Transportation Strategic Initiative Specialist 111429.40000 1.671441e+06 54508.80 3.633920e+03 27.950 805.63 15 2.795000e+01 419.25 1.725950e+06 1.671860e+06 54089.55 NULL
2019 Department Of Transportation Summer College Intern 2702.88258 8.919512e+04 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 8.919512e+04 8.919512e+04 0.00 NULL
2019 Department Of Transportation Summer Graduate Intern 5436.90297 1.250488e+05 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 1.250488e+05 1.250488e+05 0.00 NULL
2019 Department Of Transportation Supervising Special Officer 59754.00000 4.182780e+05 96155.30 1.373647e+04 13049.670 2305.25 7 1.304967e+04 91347.69 5.144333e+05 5.096257e+05 4807.61 NULL
2019 Department Of Transportation Supervisor 76097.00000 7.609700e+04 14436.94 1.443694e+04 14436.940 234.50 1 1.443694e+04 14436.94 9.053394e+04 9.053394e+04 0.00 NULL
2019 Department Of Transportation Supervisor Boiler Maker NA NA 1797.35 1.797350e+03 1797.350 4.75 1 1.797350e+03 1797.35 NA NA NA NULL
2019 Department Of Transportation Supervisor Bricklayer NA NA 293306.13 5.866123e+04 58135.790 3870.33 5 5.813579e+04 290678.95 NA NA NA NULL
2019 Department Of Transportation Supervisor Bridge Painter NA NA 97483.07 7.498698e+03 6980.830 908.75 13 6.980830e+03 90750.79 NA NA NA NULL
2019 Department Of Transportation Supervisor Bridge Repairer And Riveter NA NA 114762.84 2.869071e+04 26144.215 1637.00 4 2.614422e+04 104576.86 NA NA NA NULL
2019 Department Of Transportation Supervisor Carpenter NA NA 157058.81 2.617647e+04 35351.615 2264.75 6 2.617647e+04 157058.81 NA NA NA NULL
2019 Department Of Transportation Supervisor Dockbuilder NA NA 81560.57 8.156057e+04 81560.570 1024.25 1 8.156057e+04 81560.57 NA NA NA NULL
2019 Department Of Transportation Supervisor Electrician NA NA 927963.78 4.418875e+04 51449.900 10393.75 21 4.418875e+04 927963.78 NA NA NA NULL
2019 Department Of Transportation Supervisor Highway Repairer NA NA 4369260.27 2.070739e+04 16985.080 58763.25 211 1.698508e+04 3583851.88 NA NA NA NULL
2019 Department Of Transportation Supervisor Of Electrical Installations & Maintenance 69952.45000 2.798098e+06 636114.33 1.590286e+04 10110.340 11479.08 40 1.011034e+04 404413.60 3.434212e+06 3.202512e+06 231700.73 NULL
2019 Department Of Transportation Supervisor Of Mechanics NA NA 902701.93 2.314620e+04 24342.810 9754.81 39 2.314620e+04 902701.93 NA NA NA NULL
2019 Department Of Transportation Supervisor Of Office Machine Operations 45278.50000 9.055700e+04 848.77 4.243850e+02 424.385 34.00 2 4.243850e+02 848.77 9.140577e+04 9.140577e+04 0.00 NULL
2019 Department Of Transportation Supervisor Of Stock Workers 50901.16667 3.054070e+05 50576.43 8.429405e+03 6846.545 1329.00 6 6.846545e+03 41079.27 3.559834e+05 3.464863e+05 9497.16 NULL
2019 Department Of Transportation Supervisor Of Traffic Device Maintainers 65573.94118 3.344271e+06 899444.87 1.763617e+04 18235.530 18317.85 51 1.763617e+04 899444.87 4.243716e+06 4.243716e+06 0.00 NULL
2019 Department Of Transportation Supervisor Of Traffic Device Maintainers L2 & L3 75122.42308 1.953183e+06 611994.79 2.353826e+04 23993.095 11395.75 26 2.353826e+04 611994.79 2.565178e+06 2.565178e+06 0.00 NULL
2019 Department Of Transportation Supervisor Painter NA NA 67031.16 3.351558e+04 33515.580 969.25 2 3.351558e+04 67031.16 NA NA NA NULL
2019 Department Of Transportation Supervisor Plumber NA NA 103461.95 5.173097e+04 51730.975 897.25 2 5.173097e+04 103461.95 NA NA NA NULL
2019 Department Of Transportation Supervisor Sheet Metal Worker NA NA 61004.28 6.100428e+04 61004.280 544.50 1 6.100428e+04 61004.28 NA NA NA NULL
2019 Department Of Transportation Supervisor Ship Carpenter NA NA 44721.85 4.472185e+04 44721.850 527.25 1 4.472185e+04 44721.85 NA NA NA NULL
2019 Department Of Transportation Supervisor Steamfitter NA NA 57074.00 5.707400e+04 57074.000 510.00 1 5.707400e+04 57074.00 NA NA NA NULL
2019 Department Of Transportation Telecommunications Associate 87684.10194 1.578314e+06 423793.77 2.354410e+04 13888.415 6463.40 18 1.388842e+04 249991.47 2.002108e+06 1.828305e+06 173802.30 NULL
2019 Department Of Transportation Thermostat Repairer NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2019 Department Of Transportation Tractor Operator NA NA 785879.15 3.416866e+04 26194.480 7170.00 23 2.619448e+04 602473.04 NA NA NA NULL
2019 Department Of Transportation Traffic Control Inspector 53100.33333 5.894137e+06 763449.07 6.877920e+03 3551.350 20399.25 111 3.551350e+03 394199.85 6.657586e+06 6.288337e+06 369249.22 NULL
2019 Department Of Transportation Traffic Device Maintainer 58801.50226 1.299513e+07 2115775.84 9.573646e+03 8383.950 47703.23 221 8.383950e+03 1852852.95 1.511091e+07 1.484798e+07 262922.89 NULL
2019 Department Of Transportation Welder NA NA 31449.96 1.048332e+04 5731.200 319.25 3 5.731200e+03 17193.60 NA NA NA NULL
2019 Department Of Transportation Worker’s Compensation Benefits Examiner 62138.00000 6.213800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.213800e+04 6.213800e+04 0.00 NULL
2019 Dept Of Citywide Admin Svcs Accountant 73283.91667 8.794070e+05 59.86 4.988333e+00 0.000 0.00 12 0.000000e+00 0.00 8.794669e+05 8.794070e+05 59.86 NULL
2019 Dept Of Citywide Admin Svcs Adm Manager-Non-Mgrl From M1/M2 76986.88270 5.697029e+06 91211.10 1.232582e+03 0.000 1864.00 74 0.000000e+00 0.00 5.788240e+06 5.697029e+06 91211.10 NULL
2019 Dept Of Citywide Admin Svcs Admin Community Relations Specialist 78554.42857 5.498810e+05 6261.96 8.945657e+02 0.000 123.00 7 0.000000e+00 0.00 5.561430e+05 5.498810e+05 6261.96 NULL
2019 Dept Of Citywide Admin Svcs Admin Construction Project Manager 95982.00000 6.718740e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.718740e+05 6.718740e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Admin Inspector 108733.50000 2.174670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.174670e+05 2.174670e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Admin Tests & Meas Spec 109695.50000 2.193910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.193910e+05 2.193910e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Administrative Architect 132733.20000 6.636660e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.636660e+05 6.636660e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Administrative Business Promotion Coordinator 113214.16667 6.792850e+05 3874.04 6.456733e+02 0.000 68.75 6 0.000000e+00 0.00 6.831590e+05 6.792850e+05 3874.04 NULL
2019 Dept Of Citywide Admin Svcs Administrative City Planner 128683.20000 6.434160e+05 44.79 8.958000e+00 0.000 1.00 5 0.000000e+00 0.00 6.434608e+05 6.434160e+05 44.79 NULL
2019 Dept Of Citywide Admin Svcs Administrative Community Relations Specialist 163476.83333 9.808610e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.808610e+05 9.808610e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Administrative Construction Project Manager 124403.66667 3.732110e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.732110e+05 3.732110e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Administrative Engineer 134576.90909 1.480346e+06 35223.58 3.202144e+03 0.000 419.50 11 0.000000e+00 0.00 1.515570e+06 1.480346e+06 35223.58 NULL
2019 Dept Of Citywide Admin Svcs Administrative Graphic Artist 97406.00000 1.948120e+05 6082.70 3.041350e+03 3041.350 133.75 2 3.041350e+03 6082.70 2.008947e+05 2.008947e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Administrative Inspector 119203.00000 2.384060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.384060e+05 2.384060e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Administrative Investigator 85137.20000 4.256860e+05 -471.80 -9.436000e+01 0.000 0.00 5 -9.436000e+01 -471.80 4.252142e+05 4.252142e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Administrative Management Auditor 116805.00000 1.168050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.168050e+05 1.168050e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Administrative Manager 116417.10000 1.164171e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.164171e+06 1.164171e+06 0.00 NULL
2019 Dept Of Citywide Admin Svcs Administrative Printing Services Manager 97734.00000 9.773400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.773400e+04 9.773400e+04 0.00 NULL
2019 Dept Of Citywide Admin Svcs Administrative Procurement Analyst 85462.20833 2.051093e+06 2024.43 8.435125e+01 0.000 46.25 24 0.000000e+00 0.00 2.053117e+06 2.051093e+06 2024.43 NULL
2019 Dept Of Citywide Admin Svcs Administrative Project Manager 120019.18182 1.320211e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.320211e+06 1.320211e+06 0.00 NULL
2019 Dept Of Citywide Admin Svcs Administrative Public Information Specialist 104604.00000 1.046040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.046040e+05 1.046040e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Administrative Quality Assurance Specialist 90311.85636 9.934304e+05 45228.68 4.111698e+03 4643.570 1000.50 11 4.111698e+03 45228.68 1.038659e+06 1.038659e+06 0.00 NULL
2019 Dept Of Citywide Admin Svcs Administrative Real Property Manager 102866.00000 1.028660e+05 591.15 5.911500e+02 591.150 10.50 1 5.911500e+02 591.15 1.034571e+05 1.034571e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Administrative Space Analyst 123721.50000 2.474430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.474430e+05 2.474430e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Administrative Staff Analyst 107567.17600 1.344590e+07 99191.64 7.935331e+02 0.000 1577.25 125 0.000000e+00 0.00 1.354509e+07 1.344590e+07 99191.64 NULL
2019 Dept Of Citywide Admin Svcs Agency Attorney 98017.89655 2.842519e+06 165.36 5.702069e+00 0.000 3.00 29 0.000000e+00 0.00 2.842684e+06 2.842519e+06 165.36 NULL
2019 Dept Of Citywide Admin Svcs Appraiser 99127.40000 4.956370e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.956370e+05 4.956370e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Architect 99131.18750 1.586099e+06 554.07 3.462938e+01 0.000 9.00 16 0.000000e+00 0.00 1.586653e+06 1.586099e+06 554.07 NULL
2019 Dept Of Citywide Admin Svcs Asbestos Handler 79750.00000 2.392500e+05 88558.34 2.951945e+04 18447.750 1558.75 3 1.844775e+04 55343.25 3.278083e+05 2.945932e+05 33215.09 NULL
2019 Dept Of Citywide Admin Svcs Assistant Architect 73736.28571 5.161540e+05 6469.56 9.242229e+02 0.000 113.75 7 0.000000e+00 0.00 5.226236e+05 5.161540e+05 6469.56 NULL
2019 Dept Of Citywide Admin Svcs Assistant Civil Engineer 79173.50000 1.583470e+05 577.69 2.888450e+02 288.845 9.25 2 2.888450e+02 577.69 1.589247e+05 1.589247e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Assistant Commissioner 158516.33333 1.426647e+06 7355.19 8.172433e+02 0.000 0.00 9 0.000000e+00 0.00 1.434002e+06 1.426647e+06 7355.19 NULL
2019 Dept Of Citywide Admin Svcs Assistant Mechanical Engineer 78261.20000 3.913060e+05 1680.47 3.360940e+02 0.000 28.00 5 0.000000e+00 0.00 3.929865e+05 3.913060e+05 1680.47 NULL
2019 Dept Of Citywide Admin Svcs Assistant Printing Press Operator 58718.00000 5.871800e+04 6.79 6.790000e+00 6.790 0.00 1 6.790000e+00 6.79 5.872479e+04 5.872479e+04 0.00 NULL
2019 Dept Of Citywide Admin Svcs Associate Chemist 72687.00000 7.268700e+04 2771.65 2.771650e+03 2771.650 60.00 1 2.771650e+03 2771.65 7.545865e+04 7.545865e+04 0.00 NULL
2019 Dept Of Citywide Admin Svcs Associate Investigator 59418.40000 2.970920e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.970920e+05 2.970920e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Associate Project Manager 94488.00000 2.173224e+06 34733.80 1.510165e+03 0.000 385.00 23 0.000000e+00 0.00 2.207958e+06 2.173224e+06 34733.80 NULL
2019 Dept Of Citywide Admin Svcs Associate Quality Assurance Specialist 77995.20000 3.899760e+05 28946.99 5.789398e+03 6360.330 564.75 5 5.789398e+03 28946.99 4.189230e+05 4.189230e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Associate Real Property Manager 65003.40000 3.250170e+05 10404.50 2.080900e+03 33.840 238.75 5 3.384000e+01 169.20 3.354215e+05 3.251862e+05 10235.30 NULL
2019 Dept Of Citywide Admin Svcs Associate Staff Analyst 81279.50000 2.600944e+06 40490.41 1.265325e+03 0.000 645.00 32 0.000000e+00 0.00 2.641434e+06 2.600944e+06 40490.41 NULL
2019 Dept Of Citywide Admin Svcs Attorney At Law 109612.66667 3.288380e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.288380e+05 3.288380e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Auto Mechanic NA NA 2112.77 5.281925e+02 0.000 15.00 4 0.000000e+00 0.00 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Bookkeeper 52185.50000 3.131130e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.131130e+05 3.131130e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Bricklayer NA NA 53572.54 5.357254e+04 53572.540 807.00 1 5.357254e+04 53572.54 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Business Promotion Coordinator 81109.20000 4.055460e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.055460e+05 4.055460e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Carpenter NA NA 699992.27 4.117602e+04 41308.280 9493.75 17 4.117602e+04 699992.27 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Cement Mason NA NA 72008.08 7.200808e+04 72008.080 816.75 1 7.200808e+04 72008.08 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Certified It Administrator 102862.00000 7.200340e+05 20163.05 2.880436e+03 2265.260 236.50 7 2.265260e+03 15856.82 7.401971e+05 7.358908e+05 4306.23 NULL
2019 Dept Of Citywide Admin Svcs Certified It Developer 114909.50000 2.298190e+05 408.98 2.044900e+02 204.490 6.00 2 2.044900e+02 408.98 2.302280e+05 2.302280e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Chairman 221151.00000 2.211510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.211510e+05 2.211510e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Chauffeur-Attendant 56126.68421 2.132814e+06 660139.92 1.737210e+04 16858.100 15806.13 38 1.685810e+04 640607.80 2.792954e+06 2.773422e+06 19532.12 NULL
2019 Dept Of Citywide Admin Svcs Chief Of Staff 207556.00000 2.075560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.075560e+05 2.075560e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs City Custodial Assistant NA NA 4029775.76 7.886058e+03 4453.200 153405.07 511 4.453200e+03 2275585.20 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs City Laborer NA NA 385342.68 2.140793e+04 4026.005 7197.75 18 4.026005e+03 72468.09 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs City Planner 86524.49786 1.211343e+06 10897.99 7.784279e+02 0.000 149.50 14 0.000000e+00 0.00 1.222241e+06 1.211343e+06 10897.99 NULL
2019 Dept Of Citywide Admin Svcs City Research Scientist 83103.66667 7.479330e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.479330e+05 7.479330e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs City Security Aide 39318.50000 1.887288e+06 326682.46 6.805885e+03 4718.990 11383.15 48 4.718990e+03 226511.52 2.213970e+06 2.113800e+06 100170.94 NULL
2019 Dept Of Citywide Admin Svcs City Tax Auditor 67792.00000 6.779200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.779200e+04 6.779200e+04 0.00 NULL
2019 Dept Of Citywide Admin Svcs Clerical Associate 48044.21493 3.218962e+06 92275.13 1.377241e+03 0.000 3087.25 67 0.000000e+00 0.00 3.311238e+06 3.218962e+06 92275.13 NULL
2019 Dept Of Citywide Admin Svcs Clock Repairer 5047.11000 5.047110e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.047110e+03 5.047110e+03 0.00 NULL
2019 Dept Of Citywide Admin Svcs College Aide 9421.17889 4.239530e+05 0.00 0.000000e+00 0.000 0.00 45 0.000000e+00 0.00 4.239530e+05 4.239530e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Commissioner 173908.00000 6.956320e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.956320e+05 6.956320e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Commissioner Of Citywide Administrative Services 236088.00000 2.360880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.360880e+05 2.360880e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Community Assistant 35508.82927 1.455862e+06 50246.62 1.225527e+03 86.990 2291.00 41 8.699000e+01 3566.59 1.506109e+06 1.459429e+06 46680.03 NULL
2019 Dept Of Citywide Admin Svcs Community Associate 49329.50389 4.686303e+06 275144.14 2.896254e+03 455.570 8156.50 95 4.555700e+02 43279.15 4.961447e+06 4.729582e+06 231864.99 NULL
2019 Dept Of Citywide Admin Svcs Community Coordinator 66687.10224 3.867852e+06 235875.31 4.066816e+03 286.330 5567.00 58 2.863300e+02 16607.14 4.103727e+06 3.884459e+06 219268.17 NULL
2019 Dept Of Citywide Admin Svcs Community Service Aide 34605.33333 1.038160e+05 7877.31 2.625770e+03 0.000 311.25 3 0.000000e+00 0.00 1.116933e+05 1.038160e+05 7877.31 NULL
2019 Dept Of Citywide Admin Svcs Computer Aide-Non-Spvr 59447.00000 1.188940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.188940e+05 1.188940e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Computer Associate 75662.85000 1.513257e+06 33538.32 1.676916e+03 0.000 486.00 20 0.000000e+00 0.00 1.546795e+06 1.513257e+06 33538.32 NULL
2019 Dept Of Citywide Admin Svcs Computer Operations Manager 129934.00000 1.299340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.299340e+05 1.299340e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Computer Programmer Analyst 67120.00000 6.712000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.712000e+04 6.712000e+04 0.00 NULL
2019 Dept Of Citywide Admin Svcs Computer Specialist 102579.26000 5.128963e+06 74399.90 1.487998e+03 0.000 1175.25 50 0.000000e+00 0.00 5.203363e+06 5.128963e+06 74399.90 NULL
2019 Dept Of Citywide Admin Svcs Computer Systems Manager 132620.16667 6.365768e+06 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 6.365768e+06 6.365768e+06 0.00 NULL
2019 Dept Of Citywide Admin Svcs Confidential Strategy Planner 73972.73333 1.109591e+06 13036.38 8.690920e+02 0.000 294.00 15 0.000000e+00 0.00 1.122627e+06 1.109591e+06 13036.38 NULL
2019 Dept Of Citywide Admin Svcs Construction Project Manager 86817.61400 8.681761e+05 80208.19 8.020819e+03 4542.450 1154.50 10 4.542450e+03 45424.50 9.483843e+05 9.136006e+05 34783.69 NULL
2019 Dept Of Citywide Admin Svcs Custodial Assistant 36805.80000 1.840290e+05 38834.23 7.766846e+03 11034.710 1332.75 5 7.766846e+03 38834.23 2.228632e+05 2.228632e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Custodian 41067.98750 8.213598e+06 3072029.05 1.536015e+04 13994.405 101802.01 200 1.399441e+04 2798881.00 1.128563e+07 1.101248e+07 273148.05 NULL
2019 Dept Of Citywide Admin Svcs Deputy Assistant Commissioner 95505.11228 5.443791e+06 18.63 3.268421e-01 0.000 0.00 57 0.000000e+00 0.00 5.443810e+06 5.443791e+06 18.63 NULL
2019 Dept Of Citywide Admin Svcs Deputy Commissioner 207556.00000 6.226680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.226680e+05 6.226680e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Deputy Commissioner For City Personnel Services 207556.00000 2.075560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.075560e+05 2.075560e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Director Of Energy Conservation 207556.00000 2.075560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.075560e+05 2.075560e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Director Of Public Information 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Director Of Public Relations 153375.00000 1.533750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.533750e+05 1.533750e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Director Of Stores 102053.00000 1.020530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020530e+05 1.020530e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Director Of The City Record 155449.00000 1.554490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.554490e+05 1.554490e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Director,Citywide Occupational Safety & Health Program 127221.00000 1.272210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.272210e+05 1.272210e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Electrical Engineer 99386.66667 2.981600e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.981600e+05 2.981600e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Electrician NA NA 1033523.04 5.439595e+04 48108.630 12180.25 19 4.810863e+04 914063.97 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Elevator Mechanic NA NA 791748.23 2.399237e+04 23352.160 10966.50 33 2.335216e+04 770621.28 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Elevator Mechanic Helper NA NA 43884.93 1.097123e+04 8117.145 918.25 4 8.117145e+03 32468.58 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Estimator 84070.50000 1.681410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.681410e+05 1.681410e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Exec Asst To The Deputy Com For Citywide Personnel Svcs-Dcas 100585.00000 1.005850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.005850e+05 1.005850e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Executive Agency Counsel 132799.95000 2.655999e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 2.655999e+06 2.655999e+06 0.00 NULL
2019 Dept Of Citywide Admin Svcs Executive Assistant To The Commissioner 72306.00000 7.230600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.230600e+04 7.230600e+04 0.00 NULL
2019 Dept Of Citywide Admin Svcs Executive Program Specialist 149004.33333 4.470130e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.470130e+05 4.470130e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs First Deputy Commissioner 230000.00000 2.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.300000e+05 2.300000e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs General Counsel 207556.00000 2.075560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.075560e+05 2.075560e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Graphic Artist 66833.50000 2.673340e+05 7185.62 1.796405e+03 492.875 140.50 4 4.928750e+02 1971.50 2.745196e+05 2.693055e+05 5214.12 NULL
2019 Dept Of Citywide Admin Svcs High Pressure Plant Tender NA NA 948255.62 1.756029e+04 14640.940 18442.50 54 1.464094e+04 790610.76 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Industrial Hygienist 73246.00000 7.324600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.324600e+04 7.324600e+04 0.00 NULL
2019 Dept Of Citywide Admin Svcs Inspector 59814.00000 5.981400e+04 492.96 4.929600e+02 492.960 12.00 1 4.929600e+02 492.96 6.030696e+04 6.030696e+04 0.00 NULL
2019 Dept Of Citywide Admin Svcs Investigator 44208.25000 3.536660e+05 157.30 1.966250e+01 0.000 4.50 8 0.000000e+00 0.00 3.538233e+05 3.536660e+05 157.30 NULL
2019 Dept Of Citywide Admin Svcs Job Training Participant 6838.34515 6.633195e+05 0.00 0.000000e+00 0.000 0.00 97 0.000000e+00 0.00 6.633195e+05 6.633195e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Landscape Architect 90765.00000 9.076500e+04 580.86 5.808600e+02 580.860 1.50 1 5.808600e+02 580.86 9.134586e+04 9.134586e+04 0.00 NULL
2019 Dept Of Citywide Admin Svcs Locksmith NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Machinist NA NA 21465.87 2.146587e+04 21465.870 322.00 1 2.146587e+04 21465.87 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Maintenance Worker NA NA 1242816.67 3.186709e+04 28225.330 30379.52 39 2.822533e+04 1100787.87 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Management Auditor 73898.00000 3.694900e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.694900e+05 3.694900e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Mechanical Engineer 98500.00000 1.970000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.970000e+05 1.970000e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Media Services Technician 56602.00000 5.660200e+04 1180.94 1.180940e+03 1180.940 40.50 1 1.180940e+03 1180.94 5.778294e+04 5.778294e+04 0.00 NULL
2019 Dept Of Citywide Admin Svcs Motor Vehicle Supervisor 56287.00000 1.125740e+05 4443.53 2.221765e+03 2221.765 61.00 2 2.221765e+03 4443.53 1.170175e+05 1.170175e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs New York City Fellow 20302.74639 7.715044e+05 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 7.715044e+05 7.715044e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs New York City Public Service Fellow 40900.00000 2.045000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.045000e+05 2.045000e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs New York City Urban Fellow 22876.71964 7.778085e+05 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 7.778085e+05 7.778085e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Office Machine Aide 44172.50000 8.834500e+04 765.26 3.826300e+02 382.630 1.00 2 3.826300e+02 765.26 8.911026e+04 8.911026e+04 0.00 NULL
2019 Dept Of Citywide Admin Svcs Oiler NA NA 1149103.17 2.946418e+04 24644.640 13667.75 39 2.464464e+04 961140.96 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Painter NA NA 184671.62 3.077860e+04 31551.930 2877.25 6 3.077860e+04 184671.62 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Plasterer NA NA 150281.47 5.009382e+04 60663.880 3266.75 3 5.009382e+04 150281.47 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Plumber NA NA 774694.46 5.533532e+04 60877.065 7599.75 14 5.533532e+04 774694.46 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Plumber’s Helper NA NA 188065.36 6.268845e+04 52893.860 2535.50 3 5.289386e+04 158681.58 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Principal Administrative Associate - Lev 1 & 2 Non Supvr 61156.35530 7.032981e+06 204531.23 1.778532e+03 0.000 5101.75 115 0.000000e+00 0.00 7.237512e+06 7.032981e+06 204531.23 NULL
2019 Dept Of Citywide Admin Svcs Procurement Analyst 69036.31250 1.104581e+06 7919.41 4.949631e+02 0.000 207.25 16 0.000000e+00 0.00 1.112500e+06 1.104581e+06 7919.41 NULL
2019 Dept Of Citywide Admin Svcs Project Manager 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2019 Dept Of Citywide Admin Svcs Public Records Officer 66615.00000 1.332300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.332300e+05 1.332300e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Quality Assurance Specialist 57065.38462 7.418500e+05 27841.84 2.141680e+03 1541.320 831.50 13 1.541320e+03 20037.16 7.696918e+05 7.618872e+05 7804.68 NULL
2019 Dept Of Citywide Admin Svcs Radio And Television Operator 50250.00000 1.005000e+05 6757.61 3.378805e+03 3378.805 194.00 2 3.378805e+03 6757.61 1.072576e+05 1.072576e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Real Property Assistant 43804.00000 4.380400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.380400e+04 4.380400e+04 0.00 NULL
2019 Dept Of Citywide Admin Svcs Secretary 48507.00000 6.305910e+05 3086.25 2.374038e+02 0.000 93.25 13 0.000000e+00 0.00 6.336772e+05 6.305910e+05 3086.25 NULL
2019 Dept Of Citywide Admin Svcs Secretary Of Comm 64671.00000 6.467100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.467100e+04 6.467100e+04 0.00 NULL
2019 Dept Of Citywide Admin Svcs Secretary Of The Department 104295.00000 1.042950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.042950e+05 1.042950e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Secretary To The Deputy Commissioner 84090.33333 2.522710e+05 9448.80 3.149600e+03 12.740 154.75 3 1.274000e+01 38.22 2.617198e+05 2.523092e+05 9410.58 NULL
2019 Dept Of Citywide Admin Svcs Senior Estimator 93330.50000 1.866610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.866610e+05 1.866610e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Senior Salvage Appraiser 75349.00000 7.534900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.534900e+04 7.534900e+04 0.00 NULL
2019 Dept Of Citywide Admin Svcs Senior Stationary Engineer NA NA 1356973.05 5.219127e+04 47956.600 13206.50 26 4.795660e+04 1246871.60 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Sheet Metal Worker NA NA 153297.01 7.664851e+04 76648.505 1456.00 2 7.664851e+04 153297.01 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Space Analyst 74443.60000 3.722180e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.722180e+05 3.722180e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Special Examiner 13690.52031 4.654777e+05 522.23 1.535971e+01 0.000 12.00 34 0.000000e+00 0.00 4.659999e+05 4.654777e+05 522.23 NULL
2019 Dept Of Citywide Admin Svcs Special Officer 46738.28571 1.963008e+06 484431.29 1.153408e+04 8535.625 14353.70 42 8.535625e+03 358496.25 2.447439e+06 2.321504e+06 125935.04 NULL
2019 Dept Of Citywide Admin Svcs Staff Analyst 60458.50000 2.902008e+06 58855.17 1.226149e+03 0.000 1460.50 48 0.000000e+00 0.00 2.960863e+06 2.902008e+06 58855.17 NULL
2019 Dept Of Citywide Admin Svcs Staff Analyst Trainee 43742.76471 7.436270e+05 1018.99 5.994059e+01 0.000 49.75 17 0.000000e+00 0.00 7.446460e+05 7.436270e+05 1018.99 NULL
2019 Dept Of Citywide Admin Svcs Stationary Engineer NA NA 4629182.90 3.990675e+04 36731.385 49572.38 116 3.673139e+04 4260840.66 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Statistician 72599.00000 7.259900e+04 5499.16 5.499160e+03 5499.160 128.75 1 5.499160e+03 5499.16 7.809816e+04 7.809816e+04 0.00 NULL
2019 Dept Of Citywide Admin Svcs Steam Fitter NA NA 756175.30 6.301461e+04 73200.420 7041.25 12 6.301461e+04 756175.30 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Steam Fitter’s Helper NA NA 80891.25 8.089125e+04 80891.250 992.50 1 8.089125e+04 80891.25 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Stock Worker 34918.60000 3.491860e+05 5391.09 5.391090e+02 455.625 218.75 10 4.556250e+02 4556.25 3.545771e+05 3.537422e+05 834.84 NULL
2019 Dept Of Citywide Admin Svcs Strategic Initiative Specialist 101522.25000 4.060890e+05 100.49 2.512250e+01 0.000 1.50 4 0.000000e+00 0.00 4.061895e+05 4.060890e+05 100.49 NULL
2019 Dept Of Citywide Admin Svcs Summer College Intern 3376.75000 6.078150e+04 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 6.078150e+04 6.078150e+04 0.00 NULL
2019 Dept Of Citywide Admin Svcs Summer Graduate Intern 4466.34000 2.233170e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.233170e+04 2.233170e+04 0.00 NULL
2019 Dept Of Citywide Admin Svcs Supervising Special Officer 59118.87500 1.891804e+06 680788.31 2.127463e+04 17699.910 15650.00 32 1.769991e+04 566397.12 2.572592e+06 2.458201e+06 114391.19 NULL
2019 Dept Of Citywide Admin Svcs Supervisor NA NA 92732.17 9.273217e+04 92732.170 1828.50 1 9.273217e+04 92732.17 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Supervisor Bricklayer NA NA 69075.75 6.907575e+04 69075.750 908.25 1 6.907575e+04 69075.75 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Supervisor Carpenter NA NA 191349.58 4.783739e+04 50977.385 2510.25 4 4.783739e+04 191349.58 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Supervisor Electrician NA NA 174875.89 8.743795e+04 87437.945 1877.75 2 8.743795e+04 174875.89 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Supervisor Elevator Mechanic NA NA 244048.50 4.880970e+04 46292.640 3092.00 5 4.629264e+04 231463.20 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Supervisor Locksmith NA NA 28514.76 2.851476e+04 28514.760 550.00 1 2.851476e+04 28514.76 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Supervisor Of Electrical Installations & Maintenance 89839.00000 8.983900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.983900e+04 8.983900e+04 0.00 NULL
2019 Dept Of Citywide Admin Svcs Supervisor Of Mechanics NA NA 20322.09 6.774030e+03 2565.880 200.50 3 2.565880e+03 7697.64 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Supervisor Of Motor Transport 60531.00000 6.053100e+04 13714.68 1.371468e+04 13714.680 254.00 1 1.371468e+04 13714.68 7.424568e+04 7.424568e+04 0.00 NULL
2019 Dept Of Citywide Admin Svcs Supervisor Of Radio And Television Operators 85189.50000 1.703790e+05 25954.47 1.297724e+04 12977.235 435.00 2 1.297724e+04 25954.47 1.963335e+05 1.963335e+05 0.00 NULL
2019 Dept Of Citywide Admin Svcs Supervisor Of Stock Workers 50079.22222 4.507130e+05 39993.17 4.443686e+03 3719.740 1101.75 9 3.719740e+03 33477.66 4.907062e+05 4.841907e+05 6515.51 NULL
2019 Dept Of Citywide Admin Svcs Supervisor Plumber NA NA 152180.08 1.521801e+05 152180.080 1354.50 1 1.521801e+05 152180.08 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Supervisor Sheet Metal Worker NA NA 110543.52 1.105435e+05 110543.520 1004.25 1 1.105435e+05 110543.52 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Supervisor Steamfitter NA NA 21717.00 2.171700e+04 21717.000 192.00 1 2.171700e+04 21717.00 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Supervisor Thermostat Repair NA NA 54830.58 5.483058e+04 54830.580 511.25 1 5.483058e+04 54830.58 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Telecommunications Associate 68066.00000 6.806600e+04 2435.59 2.435590e+03 2435.590 52.00 1 2.435590e+03 2435.59 7.050159e+04 7.050159e+04 0.00 NULL
2019 Dept Of Citywide Admin Svcs Tests And Measurement Specialist 64903.16129 2.011998e+06 7662.46 2.471761e+02 0.000 168.50 31 0.000000e+00 0.00 2.019660e+06 2.011998e+06 7662.46 NULL
2019 Dept Of Citywide Admin Svcs Thermostat Repairer NA NA 237974.25 1.830571e+04 17518.610 2268.50 13 1.751861e+04 227741.93 NA NA NA NULL
2019 Dept Of Citywide Admin Svcs Watchperson 47555.00000 4.755500e+04 13179.89 1.317989e+04 13179.890 387.50 1 1.317989e+04 13179.89 6.073489e+04 6.073489e+04 0.00 NULL
2019 Dept Of Ed Hrly Support Staff Coop Education Trainee Computer Tech Aide/Jr 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 53 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2019 Dept Of Ed Hrly Support Staff Coop Education Trainee Computer Tech Aide/Sr 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2019 Dept Of Ed Hrly Support Staff Coop Trainee Typist 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2019 Dept Of Ed Hrly Support Staff F/T Dc 37 Family Para 0.00000 0.000000e+00 124811.81 7.372227e+01 0.000 0.00 1693 0.000000e+00 0.00 1.248118e+05 0.000000e+00 124811.81 NULL
2019 Dept Of Ed Hrly Support Staff F/T Film Inspection Asst. 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2019 Dept Of Ed Hrly Support Staff F/T Group Leader 0.00000 0.000000e+00 20822.38 5.205595e+03 4008.465 0.00 4 4.008465e+03 16033.86 2.082238e+04 1.603386e+04 4788.52 NULL
2019 Dept Of Ed Hrly Support Staff F/T Health Service Aide 0.00000 0.000000e+00 15453.10 1.153216e+02 0.000 0.00 134 0.000000e+00 0.00 1.545310e+04 0.000000e+00 15453.10 NULL
2019 Dept Of Ed Hrly Support Staff F/T School Aide 0.00000 0.000000e+00 1888190.86 2.228480e+02 0.000 0.00 8473 0.000000e+00 0.00 1.888191e+06 0.000000e+00 1888190.86 NULL
2019 Dept Of Ed Hrly Support Staff F/T School Guard 0.00000 0.000000e+00 16200.98 5.226123e+02 0.000 0.00 31 0.000000e+00 0.00 1.620098e+04 0.000000e+00 16200.98 NULL
2019 Dept Of Ed Hrly Support Staff F/T School Lunch Helper 0.00000 0.000000e+00 159117.87 3.840644e+01 0.000 0.00 4143 0.000000e+00 0.00 1.591179e+05 0.000000e+00 159117.87 NULL
2019 Dept Of Ed Hrly Support Staff F/T School Safety Officer 0.00000 0.000000e+00 54517.68 5.451768e+03 5326.420 0.00 10 5.326420e+03 53264.20 5.451768e+04 5.326420e+04 1253.48 NULL
2019 Dept Of Ed Hrly Support Staff F/T Sr. School Lunch Helper 0.00000 0.000000e+00 484584.76 1.511493e+02 0.000 0.00 3206 0.000000e+00 0.00 4.845848e+05 0.000000e+00 484584.76 NULL
2019 Dept Of Ed Hrly Support Staff Student Aide 0.00000 0.000000e+00 11713.20 4.153617e+00 0.000 0.00 2820 0.000000e+00 0.00 1.171320e+04 0.000000e+00 11713.20 NULL
2019 Dept Of Ed Hrly Support Staff Substitute Recreation Assistant 0.00000 0.000000e+00 855.05 1.295530e+01 0.000 0.00 66 0.000000e+00 0.00 8.550500e+02 0.000000e+00 855.05 NULL
2019 Dept Of Ed Hrly Support Staff Substitute School Aide 0.00000 0.000000e+00 3578.44 6.506254e+00 0.000 0.00 550 0.000000e+00 0.00 3.578440e+03 0.000000e+00 3578.44 NULL
2019 Dept Of Ed Hrly Support Staff Substitute School Lunch Helper 0.00000 0.000000e+00 3252.85 5.696760e+00 0.000 0.00 571 0.000000e+00 0.00 3.252850e+03 0.000000e+00 3252.85 NULL
2019 Dept Of Ed Hrly Support Staff Substitute Sr. School Lunch Helper 0.00000 0.000000e+00 2310.19 4.894470e+00 0.000 0.00 472 0.000000e+00 0.00 2.310190e+03 0.000000e+00 2310.19 NULL
2019 Dept Of Ed Hrly Support Staff Supervising School Aide 0.00000 0.000000e+00 474072.88 1.019512e+03 0.000 0.00 465 0.000000e+00 0.00 4.740729e+05 0.000000e+00 474072.88 NULL
2019 Dept Of Ed Hrly Support Staff NA NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2019 Dept Of Ed Para Professionals Adult Ed-30 H 42260.93548 1.310089e+06 11127.12 3.589394e+02 0.000 0.00 31 0.000000e+00 0.00 1.321216e+06 1.310089e+06 11127.12 NULL
2019 Dept Of Ed Para Professionals Adult Ed-35 H 45684.50000 9.136900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.136900e+04 9.136900e+04 0.00 NULL
2019 Dept Of Ed Para Professionals Annual Ed Para 37717.57642 1.170150e+09 2228231.66 7.182284e+01 0.000 0.00 31024 0.000000e+00 0.00 1.172378e+09 1.170150e+09 2228231.66 NULL
2019 Dept Of Ed Para Professionals Pre-Ses Ed Para 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 206 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2019 Dept Of Ed Para Professionals Substitute Ed Para NA NA 0.00 0.000000e+00 0.000 0.00 9499 0.000000e+00 0.00 NA NA NA NULL
2019 Dept Of Ed Para Professionals Teacher Aide 27261.94565 5.016198e+06 21635.42 1.175838e+02 0.000 0.00 184 0.000000e+00 0.00 5.037833e+06 5.016198e+06 21635.42 NULL
2019 Dept Of Ed Para Professionals NA 30777.50000 6.155500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.155500e+04 6.155500e+04 0.00 NULL
2019 Dept Of Ed Pedagogical 12 Month Special Education Asst. Principal 138475.23828 3.544966e+07 0.00 0.000000e+00 0.000 0.00 256 0.000000e+00 0.00 3.544966e+07 3.544966e+07 0.00 NULL
2019 Dept Of Ed Pedagogical 12 Month Special Education Supervisor 141471.56522 3.253846e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 3.253846e+06 3.253846e+06 0.00 NULL
2019 Dept Of Ed Pedagogical Adult Educat Teach - Reg Sub 35854.25000 1.434170e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.434170e+05 1.434170e+05 0.00 NULL
2019 Dept Of Ed Pedagogical Adult Education Teacher 103406.59130 2.378352e+07 0.00 0.000000e+00 0.000 0.00 230 0.000000e+00 0.00 2.378352e+07 2.378352e+07 0.00 NULL
2019 Dept Of Ed Pedagogical Aspiring Principal 119357.00000 1.193570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.193570e+05 1.193570e+05 0.00 NULL
2019 Dept Of Ed Pedagogical Assistant Principal 129287.87649 4.888375e+08 0.00 0.000000e+00 0.000 0.00 3781 0.000000e+00 0.00 4.888375e+08 4.888375e+08 0.00 NULL
2019 Dept Of Ed Pedagogical Assistant Principal Assigned 132257.00000 3.967710e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.967710e+05 3.967710e+05 0.00 NULL
2019 Dept Of Ed Pedagogical Assistant Superintendent 165338.04783 3.802775e+07 0.00 0.000000e+00 0.000 0.00 230 0.000000e+00 0.00 3.802775e+07 3.802775e+07 0.00 NULL
2019 Dept Of Ed Pedagogical Chancellor 293666.00000 5.873320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.873320e+05 5.873320e+05 0.00 NULL
2019 Dept Of Ed Pedagogical Community Supertindent 184212.82258 1.142120e+07 0.00 0.000000e+00 0.000 0.00 62 0.000000e+00 0.00 1.142120e+07 1.142120e+07 0.00 NULL
2019 Dept Of Ed Pedagogical Cse Chairperson 150906.21429 2.112687e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.112687e+06 2.112687e+06 0.00 NULL
2019 Dept Of Ed Pedagogical Deputy Chancellor 225948.00000 2.259480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.259480e+05 2.259480e+05 0.00 NULL
2019 Dept Of Ed Pedagogical Deputy Community Superintendent 169104.00000 3.382080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.382080e+05 3.382080e+05 0.00 NULL
2019 Dept Of Ed Pedagogical Deputy Regional Superintendent 209437.00000 6.283110e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.283110e+05 6.283110e+05 0.00 NULL
2019 Dept Of Ed Pedagogical Director 142311.33333 2.988538e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 2.988538e+06 2.988538e+06 0.00 NULL
2019 Dept Of Ed Pedagogical Educational Administrator Csa 133105.10996 1.537364e+08 0.00 0.000000e+00 0.000 0.00 1155 0.000000e+00 0.00 1.537364e+08 1.537364e+08 0.00 NULL
2019 Dept Of Ed Pedagogical Educational Administrator Uft 136569.90909 1.502269e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.502269e+06 1.502269e+06 0.00 NULL
2019 Dept Of Ed Pedagogical Guidance Counselor 101502.07202 3.410470e+08 0.00 0.000000e+00 0.000 0.00 3360 0.000000e+00 0.00 3.410470e+08 3.410470e+08 0.00 NULL
2019 Dept Of Ed Pedagogical Guidance Counselor Assigned A 89927.08046 7.823656e+06 0.00 0.000000e+00 0.000 0.00 87 0.000000e+00 0.00 7.823656e+06 7.823656e+06 0.00 NULL
2019 Dept Of Ed Pedagogical Guidance Counselor-Reg Sub 65629.43750 1.050071e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.050071e+06 1.050071e+06 0.00 NULL
2019 Dept Of Ed Pedagogical Lab Specialist/Assistant 86570.10345 1.004213e+07 0.00 0.000000e+00 0.000 0.00 116 0.000000e+00 0.00 1.004213e+07 1.004213e+07 0.00 NULL
2019 Dept Of Ed Pedagogical Local Instructional Supervisor 192844.60000 9.642230e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.642230e+05 9.642230e+05 0.00 NULL
2019 Dept Of Ed Pedagogical Principal 165209.27048 3.206712e+08 0.00 0.000000e+00 0.000 0.00 1941 0.000000e+00 0.00 3.206712e+08 3.206712e+08 0.00 NULL
2019 Dept Of Ed Pedagogical Principal Assigned 174280.62857 6.099822e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 6.099822e+06 6.099822e+06 0.00 NULL
2019 Dept Of Ed Pedagogical Psychologist In Train - Reg Sub 50743.00000 1.116346e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 1.116346e+06 1.116346e+06 0.00 NULL
2019 Dept Of Ed Pedagogical Regional Instructional Superintendent 215391.00000 2.153910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.153910e+05 2.153910e+05 0.00 NULL
2019 Dept Of Ed Pedagogical School Medical Inspector 87829.00000 2.634870e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.634870e+05 2.634870e+05 0.00 NULL
2019 Dept Of Ed Pedagogical School Medical Inspector - Reg Sub 73558.00000 7.355800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.355800e+04 7.355800e+04 0.00 NULL
2019 Dept Of Ed Pedagogical School Psychiatrist 95595.00000 9.559500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.559500e+04 9.559500e+04 0.00 NULL
2019 Dept Of Ed Pedagogical School Psycholgist 101648.71964 1.598934e+08 0.00 0.000000e+00 0.000 0.00 1573 0.000000e+00 0.00 1.598934e+08 1.598934e+08 0.00 NULL
2019 Dept Of Ed Pedagogical School Psychologist - Reg Sub 69191.57143 4.843410e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.843410e+05 4.843410e+05 0.00 NULL
2019 Dept Of Ed Pedagogical School Secretary 63905.72202 2.335754e+08 0.00 0.000000e+00 0.000 0.00 3655 0.000000e+00 0.00 2.335754e+08 2.335754e+08 0.00 NULL
2019 Dept Of Ed Pedagogical School Secretary-Reg Sub 44488.28261 1.023230e+07 0.00 0.000000e+00 0.000 0.00 230 0.000000e+00 0.00 1.023230e+07 1.023230e+07 0.00 NULL
2019 Dept Of Ed Pedagogical School Social Worker 102041.22264 1.911232e+08 0.00 0.000000e+00 0.000 0.00 1873 0.000000e+00 0.00 1.911232e+08 1.911232e+08 0.00 NULL
2019 Dept Of Ed Pedagogical School Social Worker - Reg Sub 69794.87500 1.116718e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.116718e+06 1.116718e+06 0.00 NULL
2019 Dept Of Ed Pedagogical Supervisor 125856.89855 8.684126e+06 0.00 0.000000e+00 0.000 0.00 69 0.000000e+00 0.00 8.684126e+06 8.684126e+06 0.00 NULL
2019 Dept Of Ed Pedagogical Supervisor Assigned 144694.41667 3.472666e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 3.472666e+06 3.472666e+06 0.00 NULL
2019 Dept Of Ed Pedagogical Teach Asst Vocation - Reg Sub 53025.37736 2.810345e+06 0.00 0.000000e+00 0.000 0.00 53 0.000000e+00 0.00 2.810345e+06 2.810345e+06 0.00 NULL
2019 Dept Of Ed Pedagogical Teacher 92656.39232 5.827438e+09 0.00 0.000000e+00 0.000 0.00 62893 0.000000e+00 0.00 5.827438e+09 5.827438e+09 0.00 NULL
2019 Dept Of Ed Pedagogical Teacher Assigned A 101227.07000 1.012271e+08 0.00 0.000000e+00 0.000 0.00 1000 0.000000e+00 0.00 1.012271e+08 1.012271e+08 0.00 NULL
2019 Dept Of Ed Pedagogical Teacher Assigned B 90519.66667 2.715590e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.715590e+05 2.715590e+05 0.00 NULL
2019 Dept Of Ed Pedagogical Teacher Assistant - Reg Sub 22500.00000 3.150000e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 3.150000e+05 3.150000e+05 0.00 NULL
2019 Dept Of Ed Pedagogical Teacher Attendance 97680.49762 4.102581e+07 0.00 0.000000e+00 0.000 0.00 420 0.000000e+00 0.00 4.102581e+07 4.102581e+07 0.00 NULL
2019 Dept Of Ed Pedagogical Teacher Resource Room 121862.00000 1.218620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.218620e+05 1.218620e+05 0.00 NULL
2019 Dept Of Ed Pedagogical Teacher Special Education 86921.94604 2.374360e+09 0.00 0.000000e+00 0.000 0.00 27316 0.000000e+00 0.00 2.374360e+09 2.374360e+09 0.00 NULL
2019 Dept Of Ed Pedagogical Teacher Special Education-Reg Sub 59979.43905 5.068263e+07 0.00 0.000000e+00 0.000 0.00 845 0.000000e+00 0.00 5.068263e+07 5.068263e+07 0.00 NULL
2019 Dept Of Ed Pedagogical Teacher Trainer 107968.66667 3.239060e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.239060e+05 3.239060e+05 0.00 NULL
2019 Dept Of Ed Pedagogical Teacher-Reg Sub 65178.65390 4.425631e+07 0.00 0.000000e+00 0.000 0.00 679 0.000000e+00 0.00 4.425631e+07 4.425631e+07 0.00 NULL
2019 Dept Of Ed Pedagogical Uft School Secretary Assigned - Non School Based- 12 Month 58088.00000 1.161760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.161760e+05 1.161760e+05 0.00 NULL
2019 Dept Of Ed Per Diem Teachers Assistant Principal NA NA 0.00 0.000000e+00 0.000 0.00 95 0.000000e+00 0.00 NA NA NA NULL
2019 Dept Of Ed Per Diem Teachers Guidance Counselor NA NA 0.00 0.000000e+00 0.000 0.00 130 0.000000e+00 0.00 NA NA NA NULL
2019 Dept Of Ed Per Diem Teachers Lab Specialist/Assistant NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2019 Dept Of Ed Per Diem Teachers Principal NA NA 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 NA NA NA NULL
2019 Dept Of Ed Per Diem Teachers School Psychologist NA NA 0.00 0.000000e+00 0.000 0.00 45 0.000000e+00 0.00 NA NA NA NULL
2019 Dept Of Ed Per Diem Teachers School Social Worker NA NA 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 NA NA NA NULL
2019 Dept Of Ed Per Diem Teachers Secretary NA NA 0.00 0.000000e+00 0.000 0.00 188 0.000000e+00 0.00 NA NA NA NULL
2019 Dept Of Ed Per Diem Teachers Supervisor NA NA 0.00 0.000000e+00 0.000 0.00 115 0.000000e+00 0.00 NA NA NA NULL
2019 Dept Of Ed Per Diem Teachers Teacher-General Ed NA NA 0.00 0.000000e+00 0.000 0.00 11047 0.000000e+00 0.00 NA NA NA NULL
2019 Dept Of Ed Per Diem Teachers Teacher-Special Ed NA NA 0.00 0.000000e+00 0.000 0.00 219 0.000000e+00 0.00 NA NA NA NULL
2019 Dept Of Ed Per Session Teacher School Secretary Per Session NA NA 0.00 0.000000e+00 0.000 0.00 1212 0.000000e+00 0.00 NA NA NA NULL
2019 Dept Of Ed Per Session Teacher Supervisor Per Session NA NA 0.00 0.000000e+00 0.000 0.00 1187 0.000000e+00 0.00 NA NA NA NULL
2019 Dept Of Ed Per Session Teacher Teacher- Per Session NA NA 0.00 0.000000e+00 0.000 0.00 102277 0.000000e+00 0.00 NA NA NA NULL
2019 Dept Of Environment Protection Accountant 71675.50000 5.734040e+05 4.96 6.200000e-01 0.000 0.00 8 0.000000e+00 0.00 5.734090e+05 5.734040e+05 4.96 NULL
2019 Dept Of Environment Protection Adm Manager-Non-Mgrl From M1/M2 83375.03846 8.671004e+06 216435.33 2.081109e+03 0.000 4636.25 104 0.000000e+00 0.00 8.887439e+06 8.671004e+06 216435.33 NULL
2019 Dept Of Environment Protection Admin Community Relations Specialist 108751.62500 8.700130e+05 23693.15 2.961644e+03 0.000 460.25 8 0.000000e+00 0.00 8.937062e+05 8.700130e+05 23693.15 NULL
2019 Dept Of Environment Protection Admin Contract Specialist 115455.00000 1.154550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.154550e+05 1.154550e+05 0.00 NULL
2019 Dept Of Environment Protection Admin Dir Of Laboratory 102781.00000 1.027810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.027810e+05 1.027810e+05 0.00 NULL
2019 Dept Of Environment Protection Admin Housing Development Spec 119527.20000 5.976360e+05 18171.76 3.634352e+03 2190.580 172.75 5 2.190580e+03 10952.90 6.158078e+05 6.085889e+05 7218.86 NULL
2019 Dept Of Environment Protection Administrative Accountant 102528.66667 3.075860e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.075860e+05 3.075860e+05 0.00 NULL
2019 Dept Of Environment Protection Administrative Architect 135673.00000 1.356730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.356730e+05 1.356730e+05 0.00 NULL
2019 Dept Of Environment Protection Administrative City Planner 115485.15000 2.309703e+06 5573.27 2.786635e+02 0.000 55.75 20 0.000000e+00 0.00 2.315276e+06 2.309703e+06 5573.27 NULL
2019 Dept Of Environment Protection Administrative Construction Project Manager 140798.00000 1.407980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.407980e+05 1.407980e+05 0.00 NULL
2019 Dept Of Environment Protection Administrative Director Of Laboratory 135123.63158 2.567349e+06 16399.95 8.631553e+02 0.000 256.00 19 0.000000e+00 0.00 2.583749e+06 2.567349e+06 16399.95 NULL
2019 Dept Of Environment Protection Administrative Engineer 133473.68592 3.697221e+07 178589.90 6.447289e+02 0.000 2416.25 277 0.000000e+00 0.00 3.715080e+07 3.697221e+07 178589.90 NULL
2019 Dept Of Environment Protection Administrative Horticulturist 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2019 Dept Of Environment Protection Administrative Landscape Architect 141000.00000 1.410000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.410000e+05 1.410000e+05 0.00 NULL
2019 Dept Of Environment Protection Administrative Manager 151555.80000 7.577790e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.577790e+05 7.577790e+05 0.00 NULL
2019 Dept Of Environment Protection Administrative Procurement Analyst 81739.08824 2.779129e+06 187413.18 5.512152e+03 267.760 4025.75 34 2.677600e+02 9103.84 2.966542e+06 2.788233e+06 178309.34 NULL
2019 Dept Of Environment Protection Administrative Project Manager 115333.61030 2.110605e+07 226044.64 1.235217e+03 0.000 3834.00 183 0.000000e+00 0.00 2.133210e+07 2.110605e+07 226044.64 NULL
2019 Dept Of Environment Protection Administrative Public Health Sanitarian 125128.20000 1.251282e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.251282e+06 1.251282e+06 0.00 NULL
2019 Dept Of Environment Protection Administrative Public Information Specialist 123536.20000 6.176810e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.176810e+05 6.176810e+05 0.00 NULL
2019 Dept Of Environment Protection Administrative Quality Assurance Specialist 110041.00000 3.301230e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.301230e+05 3.301230e+05 0.00 NULL
2019 Dept Of Environment Protection Administrative Real Property Manager 119842.66667 3.595280e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.595280e+05 3.595280e+05 0.00 NULL
2019 Dept Of Environment Protection Administrative Staff Analyst 116905.65812 1.367796e+07 141390.80 1.208468e+03 0.000 1794.25 117 0.000000e+00 0.00 1.381935e+07 1.367796e+07 141390.80 NULL
2019 Dept Of Environment Protection Administrative Storekeeper 113761.00000 2.275220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.275220e+05 2.275220e+05 0.00 NULL
2019 Dept Of Environment Protection Administrative Supervisor Of Building Maintenance 117469.50000 2.349390e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.349390e+05 2.349390e+05 0.00 NULL
2019 Dept Of Environment Protection Agency Attorney 94644.51351 3.501847e+06 10855.99 2.934051e+02 0.000 160.25 37 0.000000e+00 0.00 3.512703e+06 3.501847e+06 10855.99 NULL
2019 Dept Of Environment Protection Agency Attorney Interne 63448.00000 1.268960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.268960e+05 1.268960e+05 0.00 NULL
2019 Dept Of Environment Protection Air Pollution Inspector 48043.64286 2.690444e+06 362771.95 6.478071e+03 2243.005 10167.50 56 2.243005e+03 125608.28 3.053216e+06 2.816052e+06 237163.67 NULL
2019 Dept Of Environment Protection Apprentice 43621.89024 3.576995e+06 357147.06 4.355452e+03 4150.685 13896.25 82 4.150685e+03 340356.17 3.934142e+06 3.917351e+06 16790.89 NULL
2019 Dept Of Environment Protection Architect 96100.83333 5.766050e+05 153.84 2.564000e+01 0.000 2.75 6 0.000000e+00 0.00 5.767588e+05 5.766050e+05 153.84 NULL
2019 Dept Of Environment Protection Assistant Architect 67840.57143 4.748840e+05 8550.14 1.221449e+03 0.000 189.00 7 0.000000e+00 0.00 4.834341e+05 4.748840e+05 8550.14 NULL
2019 Dept Of Environment Protection Assistant Chemical Engineer 66083.33333 1.586000e+06 115332.22 4.805509e+03 471.330 2717.50 24 4.713300e+02 11311.92 1.701332e+06 1.597312e+06 104020.30 NULL
2019 Dept Of Environment Protection Assistant Civil Engineer 66577.57434 8.588507e+06 478892.31 3.712343e+03 36.900 10340.25 129 3.690000e+01 4760.10 9.067399e+06 8.593267e+06 474132.21 NULL
2019 Dept Of Environment Protection Assistant Commissioner 182761.66667 1.096570e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.096570e+06 1.096570e+06 0.00 NULL
2019 Dept Of Environment Protection Assistant Electrical Engineer 68203.40625 2.182509e+06 106370.82 3.324088e+03 272.310 2455.75 32 2.723100e+02 8713.92 2.288880e+06 2.191223e+06 97656.90 NULL
2019 Dept Of Environment Protection Assistant Environmental Engineer 65878.14545 3.623298e+06 138604.79 2.520087e+03 140.800 3063.75 55 1.408000e+02 7744.00 3.761903e+06 3.631042e+06 130860.79 NULL
2019 Dept Of Environment Protection Assistant Landscape Architect 60309.33333 1.809280e+05 265.40 8.846667e+01 0.000 7.50 3 0.000000e+00 0.00 1.811934e+05 1.809280e+05 265.40 NULL
2019 Dept Of Environment Protection Assistant Mechanical Engineer 65583.70732 5.377864e+06 267658.97 3.264134e+03 301.640 6738.00 82 3.016400e+02 24734.48 5.645523e+06 5.402598e+06 242924.49 NULL
2019 Dept Of Environment Protection Assoc Water Use Inspector-Mgrl 146013.00000 1.460130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.460130e+05 1.460130e+05 0.00 NULL
2019 Dept Of Environment Protection Associate Air Pollution Inspr 63523.67105 1.206950e+06 355821.14 1.872743e+04 17811.760 7587.00 19 1.781176e+04 338423.44 1.562771e+06 1.545373e+06 17397.70 NULL
2019 Dept Of Environment Protection Associate Chemist 71646.01274 1.124842e+07 937877.23 5.973740e+03 518.290 24446.75 157 5.182900e+02 81371.53 1.218630e+07 1.132980e+07 856505.70 NULL
2019 Dept Of Environment Protection Associate Housing Development Specialist 92660.62500 7.412850e+05 6223.46 7.779325e+02 39.055 68.25 8 3.905500e+01 312.44 7.475085e+05 7.415974e+05 5911.02 NULL
2019 Dept Of Environment Protection Associate Investigator 67138.00000 1.342760e+05 114.17 5.708500e+01 57.085 5.50 2 5.708500e+01 114.17 1.343902e+05 1.343902e+05 0.00 NULL
2019 Dept Of Environment Protection Associate Laboratory Microbiologist 72893.86364 1.603665e+06 105238.74 4.783579e+03 1579.950 2042.00 22 1.579950e+03 34758.90 1.708904e+06 1.638424e+06 70479.84 NULL
2019 Dept Of Environment Protection Associate Project Manager 84829.83781 1.535420e+07 315144.04 1.741127e+03 0.000 5494.00 181 0.000000e+00 0.00 1.566934e+07 1.535420e+07 315144.04 NULL
2019 Dept Of Environment Protection Associate Public Health Sanitarian 77814.85000 3.112594e+06 77403.17 1.935079e+03 125.240 1518.25 40 1.252400e+02 5009.60 3.189997e+06 3.117604e+06 72393.57 NULL
2019 Dept Of Environment Protection Associate Public Records Officer 80724.00000 8.072400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.072400e+04 8.072400e+04 0.00 NULL
2019 Dept Of Environment Protection Associate Quality Assurance Specialist 82921.00000 8.292100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.292100e+04 8.292100e+04 0.00 NULL
2019 Dept Of Environment Protection Associate Staff Analyst 79205.21311 3.247414e+06 48611.36 1.185643e+03 0.000 940.50 41 0.000000e+00 0.00 3.296025e+06 3.247414e+06 48611.36 NULL
2019 Dept Of Environment Protection Associate Water Use Inpector 64940.27778 3.506775e+06 656826.80 1.216346e+04 9916.490 14470.00 54 9.916490e+03 535490.46 4.163602e+06 4.042265e+06 121336.34 NULL
2019 Dept Of Environment Protection Attorney At Law 106185.00000 4.247400e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.247400e+05 4.247400e+05 0.00 NULL
2019 Dept Of Environment Protection Auto Mechanic NA NA 77904.58 8.656064e+03 9993.530 1331.75 9 8.656064e+03 77904.58 NA NA NA NULL
2019 Dept Of Environment Protection Bricklayer NA NA 22913.66 1.145683e+04 11456.830 300.25 2 1.145683e+04 22913.66 NA NA NA NULL
2019 Dept Of Environment Protection Captain 90926.72727 1.000194e+06 204059.66 1.855088e+04 20392.250 3042.75 11 1.855088e+04 204059.66 1.204254e+06 1.204254e+06 0.00 NULL
2019 Dept Of Environment Protection Carpenter NA NA 102866.83 1.285835e+04 14541.915 1277.25 8 1.285835e+04 102866.83 NA NA NA NULL
2019 Dept Of Environment Protection Certified It Administrator 111255.44444 3.003897e+06 231249.35 8.564791e+03 6623.110 3368.25 27 6.623110e+03 178823.97 3.235146e+06 3.182721e+06 52425.38 NULL
2019 Dept Of Environment Protection Certified It Developer 106626.20000 5.331310e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.331310e+05 5.331310e+05 0.00 NULL
2019 Dept Of Environment Protection Chemical Engineer 91035.00000 2.731050e+05 6706.36 2.235453e+03 2351.410 123.25 3 2.235453e+03 6706.36 2.798114e+05 2.798114e+05 0.00 NULL
2019 Dept Of Environment Protection Chemical Engineering Intern 52390.00000 6.286800e+05 270.39 2.253250e+01 0.000 12.25 12 0.000000e+00 0.00 6.289504e+05 6.286800e+05 270.39 NULL
2019 Dept Of Environment Protection Chief Marine Engineer 85029.00000 6.802320e+05 323689.48 4.046118e+04 37495.405 5214.25 8 3.749540e+04 299963.24 1.003921e+06 9.801952e+05 23726.24 NULL
2019 Dept Of Environment Protection City Custodial Assistant 21158.07000 4.231614e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.231614e+04 4.231614e+04 0.00 NULL
2019 Dept Of Environment Protection City Laborer NA NA 110982.57 7.398838e+03 2368.250 1832.75 15 2.368250e+03 35523.75 NA NA NA NULL
2019 Dept Of Environment Protection City Park Worker 12623.82926 1.918822e+06 47873.40 3.149566e+02 24.245 2158.88 152 2.424500e+01 3685.24 1.966695e+06 1.922507e+06 44188.16 NULL
2019 Dept Of Environment Protection City Planner 73968.07143 3.106659e+06 51777.05 1.232787e+03 0.000 1086.75 42 0.000000e+00 0.00 3.158436e+06 3.106659e+06 51777.05 NULL
2019 Dept Of Environment Protection City Planning Technician 37796.00000 1.133880e+05 1213.39 4.044633e+02 0.000 50.25 3 0.000000e+00 0.00 1.146014e+05 1.133880e+05 1213.39 NULL
2019 Dept Of Environment Protection City Research Scientist 88096.11399 8.721515e+06 175596.72 1.773704e+03 0.000 3807.25 99 0.000000e+00 0.00 8.897112e+06 8.721515e+06 175596.72 NULL
2019 Dept Of Environment Protection City Seasonal Aide 19021.20588 1.902121e+05 1920.12 1.920120e+02 0.000 101.25 10 0.000000e+00 0.00 1.921322e+05 1.902121e+05 1920.12 NULL
2019 Dept Of Environment Protection Civil Engineer 92622.28571 2.593424e+06 27006.02 9.645007e+02 0.000 356.50 28 0.000000e+00 0.00 2.620430e+06 2.593424e+06 27006.02 NULL
2019 Dept Of Environment Protection Civil Engineering Intern 52585.00000 1.472380e+06 18979.18 6.778279e+02 0.000 683.50 28 0.000000e+00 0.00 1.491359e+06 1.472380e+06 18979.18 NULL
2019 Dept Of Environment Protection Claim Specialist 47285.14286 3.309960e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.309960e+05 3.309960e+05 0.00 NULL
2019 Dept Of Environment Protection Clerical Aide 39949.00000 3.994900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.994900e+04 3.994900e+04 0.00 NULL
2019 Dept Of Environment Protection Clerical Associate 38090.30785 1.416959e+07 575166.47 1.546146e+03 0.000 17730.35 372 0.000000e+00 0.00 1.474476e+07 1.416959e+07 575166.47 NULL
2019 Dept Of Environment Protection College Aide 10712.90539 4.713678e+05 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 4.713678e+05 4.713678e+05 0.00 NULL
2019 Dept Of Environment Protection Commissioner Of Environmental Protection 236088.00000 2.360880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.360880e+05 2.360880e+05 0.00 NULL
2019 Dept Of Environment Protection Community Assistant 36907.01026 7.012332e+05 20064.43 1.056023e+03 13.960 682.25 19 1.396000e+01 265.24 7.212976e+05 7.014984e+05 19799.19 NULL
2019 Dept Of Environment Protection Community Associate 52048.01185 3.226977e+06 137806.14 2.222680e+03 68.790 3630.25 62 6.879000e+01 4264.98 3.364783e+06 3.231242e+06 133541.16 NULL
2019 Dept Of Environment Protection Community Coordinator 70406.93750 5.632555e+06 167437.76 2.092972e+03 7.130 3401.75 80 7.130000e+00 570.40 5.799993e+06 5.633125e+06 166867.36 NULL
2019 Dept Of Environment Protection Community Service Aide 33388.25000 1.335530e+05 1422.67 3.556675e+02 14.950 62.00 4 1.495000e+01 59.80 1.349757e+05 1.336128e+05 1362.87 NULL
2019 Dept Of Environment Protection Computer Aide-Non-Spvr 50544.00000 2.527200e+05 461.39 9.227800e+01 0.000 4.75 5 0.000000e+00 0.00 2.531814e+05 2.527200e+05 461.39 NULL
2019 Dept Of Environment Protection Computer Associate 78138.93511 5.157170e+06 237386.85 3.596770e+03 58.135 4799.23 66 5.813500e+01 3836.91 5.394557e+06 5.161007e+06 233549.94 NULL
2019 Dept Of Environment Protection Computer Programmer Analyst 60543.08229 9.081462e+05 48885.72 3.259048e+03 4.510 1064.00 15 4.510000e+00 67.65 9.570320e+05 9.082139e+05 48818.07 NULL
2019 Dept Of Environment Protection Computer Service Technician 53626.50000 1.072530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.072530e+05 1.072530e+05 0.00 NULL
2019 Dept Of Environment Protection Computer Specialist 101839.88601 1.008215e+07 311340.64 3.144855e+03 3.990 4855.25 99 3.990000e+00 395.01 1.039349e+07 1.008254e+07 310945.63 NULL
2019 Dept Of Environment Protection Computer Systems Manager 138174.60000 1.381746e+06 138.89 1.388900e+01 0.000 2.00 10 0.000000e+00 0.00 1.381885e+06 1.381746e+06 138.89 NULL
2019 Dept Of Environment Protection Confidential Asst To The Executive Deputy Commissioner 114725.00000 1.147250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.147250e+05 1.147250e+05 0.00 NULL
2019 Dept Of Environment Protection Construction Laborer NA NA 3787221.06 1.120480e+04 8473.015 59956.18 338 8.473015e+03 2863879.07 NA NA NA NULL
2019 Dept Of Environment Protection Construction Project Manager 76103.90244 3.120260e+06 234108.12 5.709954e+03 899.280 4174.00 41 8.992800e+02 36870.48 3.354368e+06 3.157130e+06 197237.64 NULL
2019 Dept Of Environment Protection Construction Project Manager Intern 58417.66667 1.752530e+05 22084.78 7.361593e+03 3558.550 576.00 3 3.558550e+03 10675.65 1.973378e+05 1.859286e+05 11409.13 NULL
2019 Dept Of Environment Protection Counsel 218587.00000 2.185870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.185870e+05 2.185870e+05 0.00 NULL
2019 Dept Of Environment Protection Crane Operator Ampes NA NA 47386.57 4.738657e+04 47386.570 364.00 1 4.738657e+04 47386.57 NA NA NA NULL
2019 Dept Of Environment Protection Custodial Assistant 39174.00000 3.917400e+04 3607.28 3.607280e+03 3607.280 116.00 1 3.607280e+03 3607.28 4.278128e+04 4.278128e+04 0.00 NULL
2019 Dept Of Environment Protection Custodian 36412.55077 1.092377e+06 50701.40 1.690047e+03 430.385 1985.00 30 4.303850e+02 12911.55 1.143078e+06 1.105288e+06 37789.85 NULL
2019 Dept Of Environment Protection Customer Information Representative Ma L 1549 62481.17625 4.998494e+05 19695.33 2.461916e+03 43.155 634.25 8 4.315500e+01 345.24 5.195447e+05 5.001947e+05 19350.09 NULL
2019 Dept Of Environment Protection Deputy Commissioner 218163.00000 1.308978e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.308978e+06 1.308978e+06 0.00 NULL
2019 Dept Of Environment Protection Director Of Noise Abatement 178794.00000 1.787940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.787940e+05 1.787940e+05 0.00 NULL
2019 Dept Of Environment Protection Director Of Technical Services 159785.50000 3.195710e+05 33233.21 1.661660e+04 16616.605 418.25 2 1.661660e+04 33233.21 3.528042e+05 3.528042e+05 0.00 NULL
2019 Dept Of Environment Protection District Supervisor 98243.55556 2.652576e+06 1007217.66 3.730436e+04 41493.890 13706.50 27 3.730436e+04 1007217.66 3.659794e+06 3.659794e+06 0.00 NULL
2019 Dept Of Environment Protection Electrical Engineer 92294.42857 6.460610e+05 10377.12 1.482446e+03 0.000 147.00 7 0.000000e+00 0.00 6.564381e+05 6.460610e+05 10377.12 NULL
2019 Dept Of Environment Protection Electrical Engineering Intern 52744.54545 5.801900e+05 1714.24 1.558400e+02 28.460 56.00 11 2.846000e+01 313.06 5.819042e+05 5.805031e+05 1401.18 NULL
2019 Dept Of Environment Protection Electrician NA NA 1751954.96 1.946617e+04 17183.555 20780.00 90 1.718356e+04 1546519.95 NA NA NA NULL
2019 Dept Of Environment Protection Electrician’s Helper NA NA 373122.92 7.040055e+03 3900.820 7069.00 53 3.900820e+03 206743.46 NA NA NA NULL
2019 Dept Of Environment Protection Engineering Technician 52828.68539 4.701753e+06 856851.64 9.627547e+03 6570.930 22388.27 89 6.570930e+03 584812.77 5.558605e+06 5.286566e+06 272038.87 NULL
2019 Dept Of Environment Protection Environmental Engineer 97125.66667 2.913770e+05 9485.04 3.161680e+03 0.000 159.00 3 0.000000e+00 0.00 3.008620e+05 2.913770e+05 9485.04 NULL
2019 Dept Of Environment Protection Environmental Engineering Intern 52539.39286 1.471103e+06 2711.20 9.682857e+01 0.000 83.75 28 0.000000e+00 0.00 1.473814e+06 1.471103e+06 2711.20 NULL
2019 Dept Of Environment Protection Environmental Police Officer 62253.17062 1.313542e+07 527027.55 2.497761e+03 1177.840 15016.26 211 1.177840e+03 248524.24 1.366245e+07 1.338394e+07 278503.31 NULL
2019 Dept Of Environment Protection Environmental Police Officer-Managerial 136626.60000 1.366266e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.366266e+06 1.366266e+06 0.00 NULL
2019 Dept Of Environment Protection Executive Agency Counsel 156988.92308 4.081712e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 4.081712e+06 4.081712e+06 0.00 NULL
2019 Dept Of Environment Protection Executive Chief Of Staff 153375.00000 1.533750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.533750e+05 1.533750e+05 0.00 NULL
2019 Dept Of Environment Protection Executive Program Specialist 126294.14286 8.840590e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.840590e+05 8.840590e+05 0.00 NULL
2019 Dept Of Environment Protection First Asst Marine Engineer 80570.00000 2.417100e+05 35566.86 1.185562e+04 12358.110 590.50 3 1.185562e+04 35566.86 2.772769e+05 2.772769e+05 0.00 NULL
2019 Dept Of Environment Protection Forester 52183.33333 1.565500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.565500e+05 1.565500e+05 0.00 NULL
2019 Dept Of Environment Protection Gardener 50582.05556 9.104770e+05 54136.32 3.007573e+03 510.415 1424.50 18 5.104150e+02 9187.47 9.646133e+05 9.196645e+05 44948.85 NULL
2019 Dept Of Environment Protection Geologist 69138.85714 1.451916e+06 595.57 2.836048e+01 0.000 17.25 21 0.000000e+00 0.00 1.452512e+06 1.451916e+06 595.57 NULL
2019 Dept Of Environment Protection Graphic Artist 61224.00000 6.122400e+04 0.00 0.000000e+00 0.000 6.00 1 0.000000e+00 0.00 6.122400e+04 6.122400e+04 0.00 NULL
2019 Dept Of Environment Protection Helicopter Mechanic 81800.00000 8.180000e+04 3123.44 3.123440e+03 3123.440 61.75 1 3.123440e+03 3123.44 8.492344e+04 8.492344e+04 0.00 NULL
2019 Dept Of Environment Protection Helicopter Pilot 81800.00000 1.636000e+05 6372.07 3.186035e+03 3186.035 113.75 2 3.186035e+03 6372.07 1.699721e+05 1.699721e+05 0.00 NULL
2019 Dept Of Environment Protection Industrial Hygienist 58223.76190 3.668097e+06 262744.95 4.170555e+03 935.510 8175.50 63 9.355100e+02 58937.13 3.930842e+06 3.727034e+06 203807.82 NULL
2019 Dept Of Environment Protection Instrumental Specialist 64946.15152 4.286446e+06 181587.98 2.751333e+03 929.085 4026.50 66 9.290850e+02 61319.61 4.468034e+06 4.347766e+06 120268.37 NULL
2019 Dept Of Environment Protection Instrumental Specialist Trainee 46302.00000 4.630200e+04 7.23 7.230000e+00 7.230 0.00 1 7.230000e+00 7.23 4.630923e+04 4.630923e+04 0.00 NULL
2019 Dept Of Environment Protection Investigator 43295.50000 8.659100e+04 13120.12 6.560060e+03 6560.060 442.25 2 6.560060e+03 13120.12 9.971112e+04 9.971112e+04 0.00 NULL
2019 Dept Of Environment Protection Laboratory Associate 48879.00000 4.887900e+04 6387.30 6.387300e+03 6387.300 227.00 1 6.387300e+03 6387.30 5.526630e+04 5.526630e+04 0.00 NULL
2019 Dept Of Environment Protection Laboratory Helper 40513.14286 2.835920e+05 18692.92 2.670417e+03 906.110 677.50 7 9.061100e+02 6342.77 3.022849e+05 2.899348e+05 12350.15 NULL
2019 Dept Of Environment Protection Laboratory Microbiologist 55678.63636 6.124650e+05 9973.88 9.067164e+02 678.720 295.25 11 6.787200e+02 7465.92 6.224389e+05 6.199309e+05 2507.96 NULL
2019 Dept Of Environment Protection Landscape Architect 75651.00000 1.513020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.513020e+05 1.513020e+05 0.00 NULL
2019 Dept Of Environment Protection Landscape Architect Intern 57403.00000 5.740300e+04 78.54 7.854000e+01 78.540 2.50 1 7.854000e+01 78.54 5.748154e+04 5.748154e+04 0.00 NULL
2019 Dept Of Environment Protection Machinist NA NA 587564.85 9.792747e+03 6096.720 10216.00 60 6.096720e+03 365803.20 NA NA NA NULL
2019 Dept Of Environment Protection Machinist’s Helper NA NA 58662.97 4.512536e+03 4070.670 1045.50 13 4.070670e+03 52918.71 NA NA NA NULL
2019 Dept Of Environment Protection Management Auditor 81608.66667 2.448260e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.448260e+05 2.448260e+05 0.00 NULL
2019 Dept Of Environment Protection Manager, Water Supply 131719.00000 1.317190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.317190e+05 1.317190e+05 0.00 NULL
2019 Dept Of Environment Protection Marine Electronics Technician 96712.00000 9.671200e+04 7.08 7.080000e+00 7.080 0.00 1 7.080000e+00 7.08 9.671908e+04 9.671908e+04 0.00 NULL
2019 Dept Of Environment Protection Marine Engineer 78761.66667 4.725700e+05 160164.52 2.669409e+04 25361.955 2897.50 6 2.536196e+04 152171.73 6.327345e+05 6.247417e+05 7992.79 NULL
2019 Dept Of Environment Protection Marine Oiler 66607.25000 5.328580e+05 230855.29 2.885691e+04 35098.440 4767.75 8 2.885691e+04 230855.29 7.637133e+05 7.637133e+05 0.00 NULL
2019 Dept Of Environment Protection Mariner 66627.66667 1.199298e+06 277387.02 1.541039e+04 9315.305 5673.00 18 9.315305e+03 167675.49 1.476685e+06 1.366973e+06 109711.53 NULL
2019 Dept Of Environment Protection Mate 73988.60000 1.109829e+06 298008.20 1.986721e+04 12647.420 5469.50 15 1.264742e+04 189711.30 1.407837e+06 1.299540e+06 108296.90 NULL
2019 Dept Of Environment Protection Mechanical Engineer 88144.52381 1.851035e+06 6844.76 3.259410e+02 6.010 108.25 21 6.010000e+00 126.21 1.857880e+06 1.851161e+06 6718.55 NULL
2019 Dept Of Environment Protection Mechanical Engineering Intern 52604.12000 1.315103e+06 22777.31 9.110924e+02 29.100 762.50 25 2.910000e+01 727.50 1.337880e+06 1.315830e+06 22049.81 NULL
2019 Dept Of Environment Protection Motor Vehicle Operator 45923.80952 9.644000e+05 200110.35 9.529064e+03 8659.480 5587.25 21 8.659480e+03 181849.08 1.164510e+06 1.146249e+06 18261.27 NULL
2019 Dept Of Environment Protection Motor Vehicle Supervisor 55545.50000 2.221820e+05 30728.66 7.682165e+03 7144.980 723.75 4 7.144980e+03 28579.92 2.529107e+05 2.507619e+05 2148.74 NULL
2019 Dept Of Environment Protection New York City Public Service Fellow 44180.00000 2.209000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.209000e+05 2.209000e+05 0.00 NULL
2019 Dept Of Environment Protection Oiler NA NA 764951.34 1.108625e+04 7464.030 8807.00 69 7.464030e+03 515018.07 NA NA NA NULL
2019 Dept Of Environment Protection Painter NA NA 16548.88 8.274440e+03 8274.440 282.00 2 8.274440e+03 16548.88 NA NA NA NULL
2019 Dept Of Environment Protection Paralegal Aide 39859.33333 1.195780e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.195780e+05 1.195780e+05 0.00 NULL
2019 Dept Of Environment Protection Photographer 57331.00000 5.733100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.733100e+04 5.733100e+04 0.00 NULL
2019 Dept Of Environment Protection Physicist 74586.00000 7.458600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.458600e+04 7.458600e+04 0.00 NULL
2019 Dept Of Environment Protection Plumber NA NA 352088.78 2.071110e+04 20461.980 3580.50 17 2.046198e+04 347853.66 NA NA NA NULL
2019 Dept Of Environment Protection Plumber’s Helper NA NA 33867.33 4.233416e+03 4346.235 485.50 8 4.233416e+03 33867.33 NA NA NA NULL
2019 Dept Of Environment Protection Port Marine Engineer 95440.50000 1.908810e+05 32529.52 1.626476e+04 16264.760 487.25 2 1.626476e+04 32529.52 2.234105e+05 2.234105e+05 0.00 NULL
2019 Dept Of Environment Protection Principal Administrative Associate - Lev 1 & 2 Non Supvr 59927.89270 1.827801e+07 692031.81 2.268957e+03 0.000 17450.75 305 0.000000e+00 0.00 1.897004e+07 1.827801e+07 692031.81 NULL
2019 Dept Of Environment Protection Procurement Analyst 63484.74477 3.174237e+06 42204.77 8.440954e+02 0.000 1027.75 50 0.000000e+00 0.00 3.216442e+06 3.174237e+06 42204.77 NULL
2019 Dept Of Environment Protection Project Manager 65448.33333 1.963450e+06 66441.09 2.214703e+03 0.000 1579.00 30 0.000000e+00 0.00 2.029891e+06 1.963450e+06 66441.09 NULL
2019 Dept Of Environment Protection Project Manager Intern# 55830.40000 2.791520e+05 2376.83 4.753660e+02 0.000 68.00 5 0.000000e+00 0.00 2.815288e+05 2.791520e+05 2376.83 NULL
2019 Dept Of Environment Protection Public Health Epidemiologist 62921.50000 1.258430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.258430e+05 1.258430e+05 0.00 NULL
2019 Dept Of Environment Protection Public Health Sanitarian 58884.53846 7.654990e+05 24031.20 1.848554e+03 690.770 542.25 13 6.907700e+02 8980.01 7.895302e+05 7.744790e+05 15051.19 NULL
2019 Dept Of Environment Protection Public Records Aide 45046.16667 2.702770e+05 5310.70 8.851167e+02 423.110 222.00 6 4.231100e+02 2538.66 2.755877e+05 2.728157e+05 2772.04 NULL
2019 Dept Of Environment Protection Public Records Officer 49229.00000 4.922900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.922900e+04 4.922900e+04 0.00 NULL
2019 Dept Of Environment Protection Quality Assurance Specialist 64002.50000 1.280050e+05 35056.42 1.752821e+04 17528.210 780.00 2 1.752821e+04 35056.42 1.630614e+05 1.630614e+05 0.00 NULL
2019 Dept Of Environment Protection Radio Repair Mechanic NA NA 6281.88 3.140940e+03 3140.940 91.75 2 3.140940e+03 6281.88 NA NA NA NULL
2019 Dept Of Environment Protection Research Assistant 42109.37387 1.263281e+05 3255.09 1.085030e+03 182.120 90.50 3 1.821200e+02 546.36 1.295832e+05 1.268745e+05 2708.73 NULL
2019 Dept Of Environment Protection Research Scientist 106199.00000 1.061990e+05 29.85 2.985000e+01 29.850 0.00 1 2.985000e+01 29.85 1.062289e+05 1.062289e+05 0.00 NULL
2019 Dept Of Environment Protection Scientist 65160.55263 4.952202e+06 189018.73 2.487089e+03 537.920 4139.50 76 5.379200e+02 40881.92 5.141221e+06 4.993084e+06 148136.81 NULL
2019 Dept Of Environment Protection Secretary 46771.33535 3.741707e+05 2980.41 3.725512e+02 0.000 99.00 8 0.000000e+00 0.00 3.771511e+05 3.741707e+05 2980.41 NULL
2019 Dept Of Environment Protection Secretary To The Exec Deputy Commissioner 62322.50000 1.246450e+05 4399.48 2.199740e+03 2199.740 113.75 2 2.199740e+03 4399.48 1.290445e+05 1.290445e+05 0.00 NULL
2019 Dept Of Environment Protection Senior Sewage Treatment Worker NA NA 3370113.12 1.306245e+04 8370.460 48355.25 258 8.370460e+03 2159578.68 NA NA NA NULL
2019 Dept Of Environment Protection Senior Stationary Engineer NA NA 2751215.13 4.106291e+04 42810.840 23500.00 67 4.106291e+04 2751215.13 NA NA NA NULL
2019 Dept Of Environment Protection Sewage Treatment Worker NA NA 7598248.89 9.077956e+03 3643.850 119590.43 837 3.643850e+03 3049902.45 NA NA NA NULL
2019 Dept Of Environment Protection Staff Analyst 64027.21212 2.112898e+06 7370.80 2.233576e+02 0.000 163.25 33 0.000000e+00 0.00 2.120269e+06 2.112898e+06 7370.80 NULL
2019 Dept Of Environment Protection Staff Analyst Trainee 48729.00000 4.872900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.872900e+04 4.872900e+04 0.00 NULL
2019 Dept Of Environment Protection Stationary Engineer NA NA 5339226.64 2.281721e+04 15982.410 54623.75 234 1.598241e+04 3739883.94 NA NA NA NULL
2019 Dept Of Environment Protection Statistician 51482.50000 1.029650e+05 1165.90 5.829500e+02 582.950 35.50 2 5.829500e+02 1165.90 1.041309e+05 1.041309e+05 0.00 NULL
2019 Dept Of Environment Protection Stock Worker 35722.00000 1.428880e+05 5972.83 1.493207e+03 66.225 274.50 4 6.622500e+01 264.90 1.488608e+05 1.431529e+05 5707.93 NULL
2019 Dept Of Environment Protection Strategic Initiative Specialist 92294.75000 1.107537e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.107537e+06 1.107537e+06 0.00 NULL
2019 Dept Of Environment Protection Summer College Intern 2409.98216 3.349875e+05 0.00 0.000000e+00 0.000 0.00 139 0.000000e+00 0.00 3.349875e+05 3.349875e+05 0.00 NULL
2019 Dept Of Environment Protection Summer Graduate Intern 2903.48984 7.258725e+04 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 7.258725e+04 7.258725e+04 0.00 NULL
2019 Dept Of Environment Protection Superintendent Of Water And Sewer Systems 136068.09524 2.857430e+06 68869.14 3.279483e+03 0.000 894.75 21 0.000000e+00 0.00 2.926299e+06 2.857430e+06 68869.14 NULL
2019 Dept Of Environment Protection Supervising Special Officer 51993.00000 5.199300e+04 18806.43 1.880643e+04 18806.430 518.50 1 1.880643e+04 18806.43 7.079943e+04 7.079943e+04 0.00 NULL
2019 Dept Of Environment Protection Supervisor 84686.85532 1.990141e+07 3663915.93 1.559113e+04 10886.210 55228.25 235 1.088621e+04 2558259.35 2.356533e+07 2.245967e+07 1105656.58 NULL
2019 Dept Of Environment Protection Supervisor Bricklayer NA NA 11277.19 1.127719e+04 11277.190 132.75 1 1.127719e+04 11277.19 NA NA NA NULL
2019 Dept Of Environment Protection Supervisor Carpenter NA NA 24568.52 2.456852e+04 24568.520 280.50 1 2.456852e+04 24568.52 NA NA NA NULL
2019 Dept Of Environment Protection Supervisor Electrician NA NA 841096.29 3.115171e+04 33986.900 9112.50 27 3.115171e+04 841096.29 NA NA NA NULL
2019 Dept Of Environment Protection Supervisor Of Mechanics 122813.35294 2.087827e+06 384799.42 2.263526e+04 11817.710 4187.25 17 1.181771e+04 200901.07 2.472626e+06 2.288728e+06 183898.35 NULL
2019 Dept Of Environment Protection Supervisor Of Motor Transport 70550.00000 7.055000e+04 43520.69 4.352069e+04 43520.690 887.50 1 4.352069e+04 43520.69 1.140707e+05 1.140707e+05 0.00 NULL
2019 Dept Of Environment Protection Supervisor Of Stock Workers 44423.91667 1.599261e+06 150391.91 4.177553e+03 580.995 4596.00 36 5.809950e+02 20915.82 1.749653e+06 1.620177e+06 129476.09 NULL
2019 Dept Of Environment Protection Supervisor Painter NA NA 1468.62 7.343100e+02 734.310 29.50 2 7.343100e+02 1468.62 NA NA NA NULL
2019 Dept Of Environment Protection Supervisor Plumber NA NA 183288.82 2.618412e+04 21754.540 1688.75 7 2.175454e+04 152281.78 NA NA NA NULL
2019 Dept Of Environment Protection Surveyor 75703.88889 6.813350e+05 281.63 3.129222e+01 0.000 6.25 9 0.000000e+00 0.00 6.816166e+05 6.813350e+05 281.63 NULL
2019 Dept Of Environment Protection Telecommunication Manager 143561.00000 1.435610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.435610e+05 1.435610e+05 0.00 NULL
2019 Dept Of Environment Protection Telecommunications Associate 76934.38044 6.924094e+05 110011.43 1.222349e+04 6931.710 1881.25 9 6.931710e+03 62385.39 8.024209e+05 7.547948e+05 47626.04 NULL
2019 Dept Of Environment Protection Water Use Inspector 43325.50820 2.642856e+06 208092.27 3.411349e+03 317.320 7369.77 61 3.173200e+02 19356.52 2.850948e+06 2.662213e+06 188735.75 NULL
2019 Dept Of Environment Protection Watershed Maintainer 53604.10345 1.243615e+07 927576.37 3.998174e+03 1346.990 23010.13 232 1.346990e+03 312501.68 1.336373e+07 1.274865e+07 615074.69 NULL
2019 Dept Of Environment Protection Welder NA NA 955.20 9.552000e+02 955.200 10.00 1 9.552000e+02 955.20 NA NA NA NULL
2019 Dept Of Health/Mental Hygiene Accountant 65125.17682 4.884388e+06 56140.38 7.485384e+02 0.000 1344.25 75 0.000000e+00 0.00 4.940529e+06 4.884388e+06 56140.38 NULL
2019 Dept Of Health/Mental Hygiene Adm Manager-Non-Mgrl From M1/M2 76335.55102 7.480884e+06 206883.65 2.111058e+03 0.000 4541.00 98 0.000000e+00 0.00 7.687768e+06 7.480884e+06 206883.65 NULL
2019 Dept Of Health/Mental Hygiene Admin Community Relations Specialist 80211.74286 2.807411e+06 25168.16 7.190903e+02 0.000 565.00 35 0.000000e+00 0.00 2.832579e+06 2.807411e+06 25168.16 NULL
2019 Dept Of Health/Mental Hygiene Admin Contract Specialist 125103.33333 1.876550e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.876550e+06 1.876550e+06 0.00 NULL
2019 Dept Of Health/Mental Hygiene Administrative Accountant 130234.75000 5.209390e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.209390e+05 5.209390e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Administrative Business Promotion Coordinator 109557.50000 1.095575e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.095575e+06 1.095575e+06 0.00 NULL
2019 Dept Of Health/Mental Hygiene Administrative Community Relations Specialist 174115.00000 3.482300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.482300e+05 3.482300e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Administrative Consultant 102356.00000 4.094240e+05 8163.09 2.040773e+03 1837.170 164.25 4 1.837170e+03 7348.68 4.175871e+05 4.167727e+05 814.41 NULL
2019 Dept Of Health/Mental Hygiene Administrative Contract Specialist 92532.64706 1.573055e+06 10212.07 6.007100e+02 0.000 189.00 17 0.000000e+00 0.00 1.583267e+06 1.573055e+06 10212.07 NULL
2019 Dept Of Health/Mental Hygiene Administrative Director Of Social Services 111960.00000 3.358800e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.358800e+05 3.358800e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Administrative Investigator 66992.00000 1.339840e+05 16248.38 8.124190e+03 8124.190 370.75 2 8.124190e+03 16248.38 1.502324e+05 1.502324e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Administrative Labor Relations Analyst 117817.00000 5.890850e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.890850e+05 5.890850e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Administrative Management Auditor 114515.85714 8.016110e+05 -0.32 -4.571430e-02 0.000 0.00 7 -4.571430e-02 -0.32 8.016107e+05 8.016107e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Administrative Manager 129677.00000 3.890310e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.890310e+05 3.890310e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Administrative Printing Services Manager 132743.00000 1.327430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.327430e+05 1.327430e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Administrative Procurement Analyst 87752.46154 2.281564e+06 30828.76 1.185722e+03 0.000 546.00 26 0.000000e+00 0.00 2.312393e+06 2.281564e+06 30828.76 NULL
2019 Dept Of Health/Mental Hygiene Administrative Psychologist 185400.00000 1.854000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.854000e+05 1.854000e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Administrative Public Health Nurse 106928.78788 3.528650e+06 667.83 2.023727e+01 0.000 27.00 33 0.000000e+00 0.00 3.529318e+06 3.528650e+06 667.83 NULL
2019 Dept Of Health/Mental Hygiene Administrative Public Health Sanitarian 124466.71429 1.742534e+06 14013.57 1.000969e+03 0.000 185.50 14 0.000000e+00 0.00 1.756548e+06 1.742534e+06 14013.57 NULL
2019 Dept Of Health/Mental Hygiene Administrative Public Information Specialist 98938.85714 2.077716e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 2.077716e+06 2.077716e+06 0.00 NULL
2019 Dept Of Health/Mental Hygiene Administrative Quality Assurance Specialist 111757.80000 5.587890e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.587890e+05 5.587890e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Administrative Space Analyst 142720.00000 1.427200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.427200e+05 1.427200e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Administrative Staff Analyst 99781.71706 1.756158e+07 90133.59 5.121227e+02 0.000 1300.75 176 0.000000e+00 0.00 1.765172e+07 1.756158e+07 90133.59 NULL
2019 Dept Of Health/Mental Hygiene Administrative Storekeeper 83467.00000 1.669340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.669340e+05 1.669340e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Administrative Supervisor Of Building Maintenance 98107.37500 7.848590e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.848590e+05 7.848590e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Agency Attorney 91725.64643 3.210398e+06 157.60 4.502857e+00 0.000 4.00 35 0.000000e+00 0.00 3.210555e+06 3.210398e+06 157.60 NULL
2019 Dept Of Health/Mental Hygiene Agency Attorney Interne 60433.00000 6.043300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.043300e+04 6.043300e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Agency Chief Contracting Officer 156114.00000 1.561140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.561140e+05 1.561140e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Agency Deputy Medical Director 162923.25000 6.516930e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.516930e+05 6.516930e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Agency Medical Director 187807.44444 5.070801e+06 -14.50 -5.370370e-01 0.000 0.00 27 -5.370370e-01 -14.50 5.070786e+06 5.070786e+06 0.00 NULL
2019 Dept Of Health/Mental Hygiene Architect 103925.00000 6.235500e+05 12482.21 2.080368e+03 0.000 140.75 6 0.000000e+00 0.00 6.360322e+05 6.235500e+05 12482.21 NULL
2019 Dept Of Health/Mental Hygiene Asist Systms Analyst 65507.00000 1.310140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.310140e+05 1.310140e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Assist Coordinating Manager 50873.42857 3.561140e+05 1754.70 2.506714e+02 0.000 52.00 7 0.000000e+00 0.00 3.578687e+05 3.561140e+05 1754.70 NULL
2019 Dept Of Health/Mental Hygiene Assistant Architect 67302.40000 3.365120e+05 0.00 0.000000e+00 0.000 10.00 5 0.000000e+00 0.00 3.365120e+05 3.365120e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Assistant Commissioner 185934.00000 1.859340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.859340e+05 1.859340e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Assistant Director Of Toxicology 120000.00000 1.200000e+05 7779.37 7.779370e+03 7779.370 108.00 1 7.779370e+03 7779.37 1.277794e+05 1.277794e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Assistant Printing Press Operator 36951.60000 1.108548e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.108548e+05 1.108548e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Associate Chemist 68735.00000 2.749400e+05 185.04 4.626000e+01 0.000 5.00 4 0.000000e+00 0.00 2.751250e+05 2.749400e+05 185.04 NULL
2019 Dept Of Health/Mental Hygiene Associate Contract Specialist 70326.75000 2.813070e+05 132.57 3.314250e+01 0.000 3.00 4 0.000000e+00 0.00 2.814396e+05 2.813070e+05 132.57 NULL
2019 Dept Of Health/Mental Hygiene Associate Executive Director 106527.00000 2.130540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.130540e+05 2.130540e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Associate Investigator 65559.66667 1.966790e+05 147.78 4.926000e+01 0.000 4.50 3 0.000000e+00 0.00 1.968268e+05 1.966790e+05 147.78 NULL
2019 Dept Of Health/Mental Hygiene Associate Labor Relations Analyst 87775.66667 2.633270e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.633270e+05 2.633270e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Associate Laboratory Microbiologist 72535.45283 3.844379e+06 60868.16 1.148456e+03 0.000 1603.25 53 0.000000e+00 0.00 3.905247e+06 3.844379e+06 60868.16 NULL
2019 Dept Of Health/Mental Hygiene Associate Project Manager 105284.50000 2.105690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.105690e+05 2.105690e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Associate Public Health Sanitarian 72731.31507 1.061877e+07 393942.85 2.698239e+03 54.820 8717.75 146 5.482000e+01 8003.72 1.101271e+07 1.062678e+07 385939.13 NULL
2019 Dept Of Health/Mental Hygiene Associate Staff Analyst 83003.93295 3.652173e+06 5510.83 1.252461e+02 0.000 111.25 44 0.000000e+00 0.00 3.657684e+06 3.652173e+06 5510.83 NULL
2019 Dept Of Health/Mental Hygiene Asst Commissioner 172046.66667 5.161400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.161400e+05 5.161400e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Asst Pb Hlth Adv 36391.90703 4.367029e+05 3166.55 2.638792e+02 0.000 109.50 12 0.000000e+00 0.00 4.398694e+05 4.367029e+05 3166.55 NULL
2019 Dept Of Health/Mental Hygiene Attorney At Law 117283.50000 2.345670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.345670e+05 2.345670e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Bookbinder 42955.50000 8.591100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.591100e+04 8.591100e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Bookkeeper 58880.20000 2.944010e+05 5284.85 1.056970e+03 195.670 109.75 5 1.956700e+02 978.35 2.996858e+05 2.953793e+05 4306.50 NULL
2019 Dept Of Health/Mental Hygiene Carpenter NA NA 16388.80 1.638880e+04 16388.800 151.25 1 1.638880e+04 16388.80 NA NA NA NULL
2019 Dept Of Health/Mental Hygiene Caseworker 55158.00000 1.103160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.103160e+05 1.103160e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Certified It Administrator 100777.04174 2.317872e+06 101885.19 4.429791e+03 0.000 1277.00 23 0.000000e+00 0.00 2.419757e+06 2.317872e+06 101885.19 NULL
2019 Dept Of Health/Mental Hygiene Certified It Developer 101600.85714 1.422412e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.422412e+06 1.422412e+06 0.00 NULL
2019 Dept Of Health/Mental Hygiene Certified Local Area Network Administrator 98854.00000 9.885400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.885400e+04 9.885400e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Chief City Medical Examiner 236088.00000 2.360880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.360880e+05 2.360880e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene City Clinician 102838.77813 1.028388e+06 39237.02 3.923702e+03 2712.385 534.25 10 2.712385e+03 27123.85 1.067625e+06 1.055512e+06 12113.17 NULL
2019 Dept Of Health/Mental Hygiene City Custodial Assistant 37505.45832 2.437855e+06 90470.88 1.391860e+03 473.180 3022.67 65 4.731800e+02 30756.70 2.528326e+06 2.468611e+06 59714.18 NULL
2019 Dept Of Health/Mental Hygiene City Dentist 79924.73500 7.992474e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.992474e+04 7.992474e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene City Deputy Medical Director 143000.00000 1.430000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.430000e+05 1.430000e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene City Laborer NA NA 136815.06 8.550941e+03 3879.650 2466.00 16 3.879650e+03 62074.40 NA NA NA NULL
2019 Dept Of Health/Mental Hygiene City Medical Examiner 198365.51282 7.736255e+06 219454.98 5.627051e+03 0.000 2134.50 39 0.000000e+00 0.00 7.955710e+06 7.736255e+06 219454.98 NULL
2019 Dept Of Health/Mental Hygiene City Medical Specialist 115192.69473 1.405351e+07 207893.47 1.704045e+03 0.000 2637.75 122 0.000000e+00 0.00 1.426140e+07 1.405351e+07 207893.47 NULL
2019 Dept Of Health/Mental Hygiene City Mortuary Technician 42609.03125 1.363489e+06 140225.90 4.382059e+03 1250.185 4319.53 32 1.250185e+03 40005.92 1.503715e+06 1.403495e+06 100219.98 NULL
2019 Dept Of Health/Mental Hygiene City Pest Control Aide 30224.42665 9.369572e+05 11367.02 3.666781e+02 0.000 419.50 31 0.000000e+00 0.00 9.483242e+05 9.369572e+05 11367.02 NULL
2019 Dept Of Health/Mental Hygiene City Research Scientist 87239.17156 7.040201e+07 143657.98 1.780148e+02 0.000 2787.00 807 0.000000e+00 0.00 7.054567e+07 7.040201e+07 143657.98 NULL
2019 Dept Of Health/Mental Hygiene City Veterinarian 43223.80500 1.728952e+05 118.81 2.970250e+01 0.000 2.00 4 0.000000e+00 0.00 1.730140e+05 1.728952e+05 118.81 NULL
2019 Dept Of Health/Mental Hygiene Civil Engineer 90012.00000 9.001200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.001200e+04 9.001200e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Clerical Aide 30848.83384 4.935813e+05 1695.13 1.059456e+02 0.000 106.75 16 0.000000e+00 0.00 4.952765e+05 4.935813e+05 1695.13 NULL
2019 Dept Of Health/Mental Hygiene Clerical Associate 43637.11240 9.600165e+06 488773.88 2.221699e+03 0.000 14469.25 220 0.000000e+00 0.00 1.008894e+07 9.600165e+06 488773.88 NULL
2019 Dept Of Health/Mental Hygiene College Aide 6384.01555 1.723684e+06 0.00 0.000000e+00 0.000 0.00 270 0.000000e+00 0.00 1.723684e+06 1.723684e+06 0.00 NULL
2019 Dept Of Health/Mental Hygiene College Aide - Assignment Levels Ii And Iii 7088.52100 5.670817e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.670817e+04 5.670817e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Commissioner Of Health 231227.00000 4.624540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.624540e+05 4.624540e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Community Assistant 38934.10965 2.180310e+06 27265.52 4.868843e+02 0.000 961.00 56 0.000000e+00 0.00 2.207576e+06 2.180310e+06 27265.52 NULL
2019 Dept Of Health/Mental Hygiene Community Associate 46563.66108 2.095365e+06 54878.00 1.219511e+03 0.000 1489.25 45 0.000000e+00 0.00 2.150243e+06 2.095365e+06 54878.00 NULL
2019 Dept Of Health/Mental Hygiene Community Coordinator 65117.00591 2.135838e+07 155374.48 4.737027e+02 0.000 3459.25 328 0.000000e+00 0.00 2.151375e+07 2.135838e+07 155374.48 NULL
2019 Dept Of Health/Mental Hygiene Community Service Aide 33387.28571 2.337110e+05 19037.17 2.719596e+03 868.370 759.75 7 8.683700e+02 6078.59 2.527482e+05 2.397896e+05 12958.58 NULL
2019 Dept Of Health/Mental Hygiene Computer Aide-Non-Spvr 49910.00000 5.989200e+05 16963.08 1.413590e+03 1.200 500.25 12 1.200000e+00 14.40 6.158831e+05 5.989344e+05 16948.68 NULL
2019 Dept Of Health/Mental Hygiene Computer Associate 67197.31916 5.308588e+06 65393.43 8.277649e+02 0.000 1562.25 79 0.000000e+00 0.00 5.373982e+06 5.308588e+06 65393.43 NULL
2019 Dept Of Health/Mental Hygiene Computer Operations Manager 109358.00000 1.093580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.093580e+05 1.093580e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Computer Programmer Analyst 62038.33333 3.722300e+05 37.13 6.188333e+00 0.000 1.00 6 0.000000e+00 0.00 3.722671e+05 3.722300e+05 37.13 NULL
2019 Dept Of Health/Mental Hygiene Computer Service Technician 44619.38264 8.031489e+05 3335.62 1.853122e+02 6.305 101.75 18 6.305000e+00 113.49 8.064845e+05 8.032624e+05 3222.13 NULL
2019 Dept Of Health/Mental Hygiene Computer Specialist 101299.05276 7.293532e+06 31075.66 4.316064e+02 0.000 478.75 72 0.000000e+00 0.00 7.324607e+06 7.293532e+06 31075.66 NULL
2019 Dept Of Health/Mental Hygiene Computer Systems Manager 112721.78302 1.194851e+07 1068.74 1.008245e+01 0.000 23.25 106 0.000000e+00 0.00 1.194958e+07 1.194851e+07 1068.74 NULL
2019 Dept Of Health/Mental Hygiene Confidential Strategy Planner 84479.40000 4.223970e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.223970e+05 4.223970e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Construction Project Manager 102921.00000 1.029210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.029210e+05 1.029210e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Consultant 73429.27143 5.140049e+06 50372.23 7.196033e+02 79.395 994.75 70 7.939500e+01 5557.65 5.190421e+06 5.145607e+06 44814.58 NULL
2019 Dept Of Health/Mental Hygiene Consultant Public Health Nurse 81798.00000 8.997780e+05 129.74 1.179455e+01 0.000 3.25 11 0.000000e+00 0.00 8.999077e+05 8.997780e+05 129.74 NULL
2019 Dept Of Health/Mental Hygiene Contract Specialist 60683.70370 1.638460e+06 2723.02 1.008526e+02 0.000 104.50 27 0.000000e+00 0.00 1.641183e+06 1.638460e+06 2723.02 NULL
2019 Dept Of Health/Mental Hygiene Coordinating Manager 68208.71429 4.774610e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.774610e+05 4.774610e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Counsel 215019.00000 2.150190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.150190e+05 2.150190e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Counselor 76304.66667 4.578280e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.578280e+05 4.578280e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Criminalist 73134.52094 1.938065e+07 1071426.30 4.043118e+03 419.440 20442.25 265 4.194400e+02 111151.60 2.045207e+07 1.949180e+07 960274.70 NULL
2019 Dept Of Health/Mental Hygiene Criminalist Assistant Director Of Laboratory 131917.60000 1.978764e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.978764e+06 1.978764e+06 0.00 NULL
2019 Dept Of Health/Mental Hygiene Criminalist Deputy Director Of Labatory 180804.50000 3.616090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.616090e+05 3.616090e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Criminalist Director Of Laboratory 155897.66667 4.676930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.676930e+05 4.676930e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Custodial Assistant 40710.66667 1.221320e+05 11410.49 3.803497e+03 4261.170 337.05 3 3.803497e+03 11410.49 1.335425e+05 1.335425e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Custodian 41141.14124 6.582583e+05 36003.91 2.250244e+03 1897.275 1238.50 16 1.897275e+03 30356.40 6.942622e+05 6.886147e+05 5647.51 NULL
2019 Dept Of Health/Mental Hygiene Customer Information Representative Ma L 1549 45330.27778 8.159450e+05 130668.34 7.259352e+03 785.510 4296.50 18 7.855100e+02 14139.18 9.466133e+05 8.300842e+05 116529.16 NULL
2019 Dept Of Health/Mental Hygiene Dental Hygienist 24849.94000 2.484994e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.484994e+04 2.484994e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Deputy Chief City Medical Examiner 234402.00000 2.344020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.344020e+05 2.344020e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Deputy Commissioner 215019.00000 6.450570e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.450570e+05 6.450570e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Deputy Commissioner For Administation 194915.00000 1.949150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.949150e+05 1.949150e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Deputy Director Of Emergency Management 142910.00000 1.429100e+05 59.51 5.951000e+01 59.510 0.00 1 5.951000e+01 59.51 1.429695e+05 1.429695e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Deputy Director Of Medicolegal Investigations 120238.50000 1.202385e+06 8.92 8.920000e-01 0.000 0.00 10 0.000000e+00 0.00 1.202394e+06 1.202385e+06 8.92 NULL
2019 Dept Of Health/Mental Hygiene Director 137021.83333 8.221310e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.221310e+05 8.221310e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Director Of Biodetection And Response 100205.00000 1.002050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.002050e+05 1.002050e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Director Of Community Engagement And Response 118737.00000 2.374740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.374740e+05 2.374740e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Director Of Crisis Assistance And Training 105338.00000 1.053380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.053380e+05 1.053380e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Director Of Forensic Biology 211028.00000 2.110280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.110280e+05 2.110280e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Director Of Health Care Program Planning/Analysis 105535.66667 3.166070e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.166070e+05 3.166070e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Director Of Interagency Planning 119462.00000 1.194620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.194620e+05 1.194620e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Director Of Nyc Medical Reserve Corps 106594.00000 1.065940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.065940e+05 1.065940e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Director Of Public Health Emergency Planning 101167.00000 1.011670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.011670e+05 1.011670e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Director Of Public Relations 143150.00000 1.431500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.431500e+05 1.431500e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Director Of Security 103984.00000 1.039840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.039840e+05 1.039840e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Economist 56666.66667 1.700000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Electrician NA NA 18826.70 2.689529e+03 1169.910 211.25 7 1.169910e+03 8189.37 NA NA NA NULL
2019 Dept Of Health/Mental Hygiene Engineering Work Study Trainee 42716.00000 4.271600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.271600e+04 4.271600e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Environmental Health Technician 39160.36400 1.958018e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.958018e+05 1.958018e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Evidence And Property Control Specialist 59785.13333 2.690331e+06 668495.70 1.485546e+04 1800.310 14145.50 45 1.800310e+03 81013.95 3.358827e+06 2.771345e+06 587481.75 NULL
2019 Dept Of Health/Mental Hygiene Executive Agency Counsel 140231.63636 1.542548e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.542548e+06 1.542548e+06 0.00 NULL
2019 Dept Of Health/Mental Hygiene Executive Assistant 82400.00000 8.240000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.240000e+04 8.240000e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Executive Program Specialist 156459.00000 4.693770e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.693770e+05 4.693770e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Executive Secretary 58480.31250 5.848031e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.848031e+04 5.848031e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Exterminator 42429.91304 1.951776e+06 232711.66 5.058949e+03 1491.955 7000.50 46 1.491955e+03 68629.93 2.184488e+06 2.020406e+06 164081.73 NULL
2019 Dept Of Health/Mental Hygiene Family Pub Health Nurse 86177.23810 5.429166e+06 581.15 9.224603e+00 0.000 0.00 63 0.000000e+00 0.00 5.429747e+06 5.429166e+06 581.15 NULL
2019 Dept Of Health/Mental Hygiene Forensic Mortuary Technician 55606.18367 2.724703e+06 783908.09 1.599812e+04 12732.570 20060.58 49 1.273257e+04 623895.93 3.508611e+06 3.348599e+06 160012.16 NULL
2019 Dept Of Health/Mental Hygiene Graphic Artist 57801.95833 3.468118e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.468118e+05 3.468118e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Health Care Prog Plan/Analyst 55778.14286 3.904470e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.904470e+05 3.904470e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Health Services Manager 136938.21538 8.900984e+06 0.00 0.000000e+00 0.000 0.00 65 0.000000e+00 0.00 8.900984e+06 8.900984e+06 0.00 NULL
2019 Dept Of Health/Mental Hygiene Health Services Manager Non Managerial Level I 98865.95455 1.522536e+07 32596.99 2.116688e+02 0.000 654.50 154 0.000000e+00 0.00 1.525795e+07 1.522536e+07 32596.99 NULL
2019 Dept Of Health/Mental Hygiene Health Services Manager Non Managerial Level Ii 112573.76744 4.840672e+06 1589.57 3.696674e+01 0.000 28.75 43 0.000000e+00 0.00 4.842262e+06 4.840672e+06 1589.57 NULL
2019 Dept Of Health/Mental Hygiene Institutional Aide 38001.68889 6.840304e+05 413485.49 2.297142e+04 23967.730 14835.50 18 2.297142e+04 413485.49 1.097516e+06 1.097516e+06 0.00 NULL
2019 Dept Of Health/Mental Hygiene Interpreter 57000.00000 5.700000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.700000e+04 5.700000e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Investigator 63406.33333 3.804380e+05 15509.33 2.584888e+03 0.690 350.75 6 6.900000e-01 4.14 3.959473e+05 3.804421e+05 15505.19 NULL
2019 Dept Of Health/Mental Hygiene It Automation And Monitoring Engineer 10095.75000 1.009575e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.009575e+04 1.009575e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene It Infrastructure Engineer 87095.60000 4.354780e+05 277.66 5.553200e+01 0.000 8.00 5 0.000000e+00 0.00 4.357557e+05 4.354780e+05 277.66 NULL
2019 Dept Of Health/Mental Hygiene It Project Specialist 89280.11000 6.249608e+05 2657.36 3.796229e+02 0.000 47.50 7 0.000000e+00 0.00 6.276181e+05 6.249608e+05 2657.36 NULL
2019 Dept Of Health/Mental Hygiene It Security Specialist 98240.33333 2.947210e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.947210e+05 2.947210e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene It Service Management Specialist 91917.25000 7.353380e+05 401.33 5.016625e+01 0.000 8.25 8 0.000000e+00 0.00 7.357393e+05 7.353380e+05 401.33 NULL
2019 Dept Of Health/Mental Hygiene Jr Phnurse 35838.00349 1.781149e+07 678702.07 1.365598e+03 4.900 16186.85 497 4.900000e+00 2435.30 1.849019e+07 1.781392e+07 676266.77 NULL
2019 Dept Of Health/Mental Hygiene Junior Public Health Nurse 63557.60971 1.398267e+06 35080.41 1.594564e+03 698.665 595.50 22 6.986650e+02 15370.63 1.433348e+06 1.413638e+06 19709.78 NULL
2019 Dept Of Health/Mental Hygiene Labor Relations Analyst 69278.00000 6.927800e+04 0.00 0.000000e+00 0.000 4.25 1 0.000000e+00 0.00 6.927800e+04 6.927800e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Laboratory Associate 44447.54279 2.400167e+06 35042.88 6.489422e+02 0.000 1253.75 54 0.000000e+00 0.00 2.435210e+06 2.400167e+06 35042.88 NULL
2019 Dept Of Health/Mental Hygiene Laboratory Helper 41611.64286 5.825630e+05 4546.24 3.247314e+02 0.000 191.50 14 0.000000e+00 0.00 5.871092e+05 5.825630e+05 4546.24 NULL
2019 Dept Of Health/Mental Hygiene Laboratory Microbiologist 53985.68564 2.321384e+06 1994.67 4.638767e+01 0.000 80.50 43 0.000000e+00 0.00 2.323379e+06 2.321384e+06 1994.67 NULL
2019 Dept Of Health/Mental Hygiene Legal Secretarial Assistant Al 2,3,4 Only 62513.00000 6.251300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.251300e+04 6.251300e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Machinist NA NA 10905.02 2.726255e+03 2626.260 251.25 4 2.626260e+03 10505.04 NA NA NA NULL
2019 Dept Of Health/Mental Hygiene Maintenance Worker NA NA 110271.17 8.482398e+03 2506.950 2735.50 13 2.506950e+03 32590.35 NA NA NA NULL
2019 Dept Of Health/Mental Hygiene Management Auditor 72737.78947 1.382018e+06 37715.43 1.985023e+03 0.000 982.50 19 0.000000e+00 0.00 1.419733e+06 1.382018e+06 37715.43 NULL
2019 Dept Of Health/Mental Hygiene Mechanical Engineer 81750.00000 1.635000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.635000e+05 1.635000e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Medical Investigator 30808.66667 9.242600e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.242600e+04 9.242600e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Medical Record Librarian 56335.00000 5.633500e+04 42643.14 4.264314e+04 42643.140 894.25 1 4.264314e+04 42643.14 9.897814e+04 9.897814e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Medical Specialist 102854.66250 2.057093e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.057093e+05 2.057093e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Medicolegal Investigator 92350.25725 3.509310e+06 566622.47 1.491112e+04 9761.475 7112.59 38 9.761475e+03 370936.05 4.075932e+06 3.880246e+06 195686.42 NULL
2019 Dept Of Health/Mental Hygiene Motor Vehicle Operator 44335.73512 1.773429e+06 228960.52 5.724013e+03 763.610 5849.93 40 7.636100e+02 30544.40 2.002390e+06 1.803974e+06 198416.12 NULL
2019 Dept Of Health/Mental Hygiene Motor Vehicle Supervisor 57349.25000 2.293970e+05 51370.36 1.284259e+04 13490.685 1138.25 4 1.284259e+04 51370.36 2.807674e+05 2.807674e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene New York City Public Service Fellow 40900.00000 4.090000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.090000e+04 4.090000e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Nurse Practicioner 103253.81250 1.652061e+06 31804.05 1.987753e+03 2381.470 552.25 16 1.987753e+03 31804.05 1.683865e+06 1.683865e+06 0.00 NULL
2019 Dept Of Health/Mental Hygiene Nurse’s Aide 41797.00000 4.179700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.179700e+04 4.179700e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Nutritionist 71682.38462 9.318710e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 9.318710e+05 9.318710e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Office Machine Aide 42396.40000 2.119820e+05 7237.77 1.447554e+03 482.640 233.75 5 4.826400e+02 2413.20 2.192198e+05 2.143952e+05 4824.57 NULL
2019 Dept Of Health/Mental Hygiene Oiler NA NA 162608.17 5.420272e+04 70909.400 1936.25 3 5.420272e+04 162608.17 NA NA NA NULL
2019 Dept Of Health/Mental Hygiene Paralegal Aide 48536.33333 2.912180e+05 5415.16 9.025267e+02 0.000 222.50 6 0.000000e+00 0.00 2.966332e+05 2.912180e+05 5415.16 NULL
2019 Dept Of Health/Mental Hygiene Peer Counselor 36461.00000 3.646100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.646100e+04 3.646100e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Photographer 46806.00000 9.361200e+04 14040.53 7.020265e+03 7020.265 457.50 2 7.020265e+03 14040.53 1.076525e+05 1.076525e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Physicist 84279.00000 8.427900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.427900e+04 8.427900e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Plumber NA NA 36.38 3.638000e+01 36.380 0.00 1 3.638000e+01 36.38 NA NA NA NULL
2019 Dept Of Health/Mental Hygiene Poison Information Specialist 94285.97866 2.074292e+06 25254.13 1.147915e+03 0.520 391.75 22 5.200000e-01 11.44 2.099546e+06 2.074303e+06 25242.69 NULL
2019 Dept Of Health/Mental Hygiene Principal Administrative Associate - Lev 1 & 2 Non Supvr 58054.81333 1.532647e+07 269850.56 1.022161e+03 0.000 6930.25 264 0.000000e+00 0.00 1.559632e+07 1.532647e+07 269850.56 NULL
2019 Dept Of Health/Mental Hygiene Printing Press Operator NA NA 7588.65 1.264775e+03 687.760 133.00 6 6.877600e+02 4126.56 NA NA NA NULL
2019 Dept Of Health/Mental Hygiene Procurement Analyst 66501.83753 4.655129e+06 23547.97 3.363996e+02 0.000 688.75 70 0.000000e+00 0.00 4.678677e+06 4.655129e+06 23547.97 NULL
2019 Dept Of Health/Mental Hygiene Psychiatrist 110327.39265 2.206548e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.206548e+05 2.206548e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Public Health Adviser 41275.51008 2.447638e+07 205799.69 3.470484e+02 0.000 6578.75 593 0.000000e+00 0.00 2.468218e+07 2.447638e+07 205799.69 NULL
2019 Dept Of Health/Mental Hygiene Public Health Assistant 27515.42329 4.897745e+06 49780.06 2.796633e+02 0.000 2099.00 178 0.000000e+00 0.00 4.947525e+06 4.897745e+06 49780.06 NULL
2019 Dept Of Health/Mental Hygiene Public Health Educator 62557.33784 4.629243e+06 792.96 1.071568e+01 0.000 16.75 74 0.000000e+00 0.00 4.630036e+06 4.629243e+06 792.96 NULL
2019 Dept Of Health/Mental Hygiene Public Health Emergency Preparedness Specialist 78361.40000 2.350842e+06 7817.60 2.605867e+02 0.000 135.50 30 0.000000e+00 0.00 2.358660e+06 2.350842e+06 7817.60 NULL
2019 Dept Of Health/Mental Hygiene Public Health Epidemiologist 66121.77778 3.570576e+06 46659.74 8.640693e+02 0.000 976.00 54 0.000000e+00 0.00 3.617236e+06 3.570576e+06 46659.74 NULL
2019 Dept Of Health/Mental Hygiene Public Health Nurse 43088.80149 3.451413e+07 1177588.61 1.470148e+03 8.240 26475.25 801 8.240000e+00 6600.24 3.569172e+07 3.452073e+07 1170988.37 NULL
2019 Dept Of Health/Mental Hygiene Public Health Sanitarian 54711.03069 2.139201e+07 439463.29 1.123947e+03 0.000 11252.16 391 0.000000e+00 0.00 2.183148e+07 2.139201e+07 439463.29 NULL
2019 Dept Of Health/Mental Hygiene Public Health/Preventive Medicine Resident 78208.87500 6.256710e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.256710e+05 6.256710e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Public Records Aide 38629.64462 1.004371e+06 11022.64 4.239477e+02 0.445 381.00 26 4.450000e-01 11.57 1.015393e+06 1.004382e+06 11011.07 NULL
2019 Dept Of Health/Mental Hygiene Public Records Officer 49229.00000 4.922900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.922900e+04 4.922900e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Regional Director Mental Health Mental Retard & Alc Service 112475.00000 1.124750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.124750e+05 1.124750e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Research Assistant 55486.00000 1.664580e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.664580e+05 1.664580e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Scientist 62280.83099 4.421939e+06 31569.51 4.446410e+02 0.000 576.75 71 0.000000e+00 0.00 4.453509e+06 4.421939e+06 31569.51 NULL
2019 Dept Of Health/Mental Hygiene Secretary 47511.51174 2.185530e+06 28372.41 6.167915e+02 0.000 820.00 46 0.000000e+00 0.00 2.213902e+06 2.185530e+06 28372.41 NULL
2019 Dept Of Health/Mental Hygiene Senior It Architect 10237.92000 1.023792e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.023792e+04 1.023792e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Senior Medical Specialist 121185.78000 1.211858e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.211858e+05 1.211858e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Senior Mental Health Worker 42809.50000 1.712380e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.712380e+05 1.712380e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Senior Photographer 55621.20000 2.781060e+05 17388.68 3.477736e+03 3073.780 520.50 5 3.073780e+03 15368.90 2.954947e+05 2.934749e+05 2019.78 NULL
2019 Dept Of Health/Mental Hygiene Senior Staff Officer 85847.00000 8.584700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.584700e+04 8.584700e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Senior Stationary Engineer NA NA 89314.87 4.465743e+04 44657.435 832.00 2 4.465743e+04 89314.87 NA NA NA NULL
2019 Dept Of Health/Mental Hygiene Senior Systems Analyst 47995.00000 4.799500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.799500e+04 4.799500e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Social Worker 63125.56667 3.787534e+06 7959.46 1.326577e+02 0.000 233.75 60 0.000000e+00 0.00 3.795493e+06 3.787534e+06 7959.46 NULL
2019 Dept Of Health/Mental Hygiene Space Analyst 83859.50000 1.677190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.677190e+05 1.677190e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Spec Consultant 79431.96113 7.704900e+06 10921.62 1.125940e+02 0.000 244.25 97 0.000000e+00 0.00 7.715822e+06 7.704900e+06 10921.62 NULL
2019 Dept Of Health/Mental Hygiene Special Advisor To The Mayor For Health Services 100836.14286 7.058530e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.058530e+05 7.058530e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Special Consultant 67950.68528 9.648997e+06 76.25 5.369718e-01 0.000 0.00 142 0.000000e+00 0.00 9.649074e+06 9.648997e+06 76.25 NULL
2019 Dept Of Health/Mental Hygiene Special Officer 38501.85246 2.348613e+06 371020.58 6.082305e+03 3871.510 13025.69 61 3.871510e+03 236162.11 2.719634e+06 2.584775e+06 134858.47 NULL
2019 Dept Of Health/Mental Hygiene Sr Healthcare Prog Plan Anlyst 61806.06000 4.450036e+06 2050.08 2.847333e+01 0.000 56.25 72 0.000000e+00 0.00 4.452086e+06 4.450036e+06 2050.08 NULL
2019 Dept Of Health/Mental Hygiene Sr Management Consultant 86034.61538 1.118450e+06 1318.20 1.014000e+02 0.000 31.50 13 0.000000e+00 0.00 1.119768e+06 1.118450e+06 1318.20 NULL
2019 Dept Of Health/Mental Hygiene Sr Systems Analyst - Edp 61962.00000 6.196200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.196200e+04 6.196200e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Staff Analyst 66356.41528 1.791623e+06 19617.57 7.265767e+02 0.000 412.75 27 0.000000e+00 0.00 1.811241e+06 1.791623e+06 19617.57 NULL
2019 Dept Of Health/Mental Hygiene Staff Analyst Trainee 8063.44000 8.063440e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.063440e+03 8.063440e+03 0.00 NULL
2019 Dept Of Health/Mental Hygiene Stationary Engineer NA NA 1198624.00 5.707733e+04 50500.300 12915.00 21 5.050030e+04 1060506.30 NA NA NA NULL
2019 Dept Of Health/Mental Hygiene Statistician 54698.00000 5.469800e+04 61.18 6.118000e+01 61.180 2.00 1 6.118000e+01 61.18 5.475918e+04 5.475918e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Steam Fitter NA NA 6160.00 6.160000e+03 6160.000 56.00 1 6.160000e+03 6160.00 NA NA NA NULL
2019 Dept Of Health/Mental Hygiene Stock Worker 36694.92857 5.137290e+05 48426.73 3.459052e+03 32.355 2070.00 14 3.235500e+01 452.97 5.621557e+05 5.141820e+05 47973.76 NULL
2019 Dept Of Health/Mental Hygiene Strategic Initiative Specialist 98216.20000 4.910810e+05 2096.29 4.192580e+02 0.000 41.25 5 0.000000e+00 0.00 4.931773e+05 4.910810e+05 2096.29 NULL
2019 Dept Of Health/Mental Hygiene Summer College Intern 6974.76062 5.579808e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.579808e+04 5.579808e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Summer Graduate Intern 5079.93287 1.981174e+05 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 1.981174e+05 1.981174e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Supervising Computer Service Technician 77399.50000 3.095980e+05 515.54 1.288850e+02 0.000 10.50 4 0.000000e+00 0.00 3.101135e+05 3.095980e+05 515.54 NULL
2019 Dept Of Health/Mental Hygiene Supervising Public Health Adviser 62378.34455 6.861618e+06 137868.19 1.253347e+03 0.000 3478.00 110 0.000000e+00 0.00 6.999486e+06 6.861618e+06 137868.19 NULL
2019 Dept Of Health/Mental Hygiene Supervising Special Officer 53673.70000 1.073474e+06 223141.70 1.115708e+04 8688.840 5930.50 20 8.688840e+03 173776.80 1.296616e+06 1.247251e+06 49364.90 NULL
2019 Dept Of Health/Mental Hygiene Supervisor 49383.93750 7.901430e+05 47757.05 2.984816e+03 594.330 1112.75 16 5.943300e+02 9509.28 8.379001e+05 7.996523e+05 38247.77 NULL
2019 Dept Of Health/Mental Hygiene Supervisor Electrician NA NA 78878.93 2.629298e+04 4221.140 845.25 3 4.221140e+03 12663.42 NA NA NA NULL
2019 Dept Of Health/Mental Hygiene Supervisor I Social Work 66686.50000 1.333730e+05 194.80 9.740000e+01 97.400 5.00 2 9.740000e+01 194.80 1.335678e+05 1.335678e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Supervisor Ii Social Work 78421.23529 1.333161e+06 245.03 1.441353e+01 0.000 5.50 17 0.000000e+00 0.00 1.333406e+06 1.333161e+06 245.03 NULL
2019 Dept Of Health/Mental Hygiene Supervisor Iii Social Work 81619.37500 1.305910e+06 3558.72 2.224200e+02 0.000 69.00 16 0.000000e+00 0.00 1.309469e+06 1.305910e+06 3558.72 NULL
2019 Dept Of Health/Mental Hygiene Supervisor Of Mechanical Installations & Maintenance 92571.66667 2.777150e+05 18759.37 6.253123e+03 4502.790 267.25 3 4.502790e+03 13508.37 2.964744e+05 2.912234e+05 5251.00 NULL
2019 Dept Of Health/Mental Hygiene Supervisor Of Motor Transport 64373.57143 4.506150e+05 115047.47 1.643535e+04 17961.400 2600.75 7 1.643535e+04 115047.47 5.656625e+05 5.656625e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Supervisor Of Office Machine Operations 39485.00000 3.948500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.948500e+04 3.948500e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Supervisor Of Stock Workers 49649.60000 2.482480e+05 15669.93 3.133986e+03 0.000 439.75 5 0.000000e+00 0.00 2.639179e+05 2.482480e+05 15669.93 NULL
2019 Dept Of Health/Mental Hygiene Supvsng Systems Analyst 61788.33333 1.853650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.853650e+05 1.853650e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Systems Analyst 49151.33333 5.898160e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 5.898160e+05 5.898160e+05 0.00 NULL
2019 Dept Of Health/Mental Hygiene Telecommunications Associate 78571.00000 7.857100e+04 47.03 4.703000e+01 47.030 0.00 1 4.703000e+01 47.03 7.861803e+04 7.861803e+04 0.00 NULL
2019 Dept Of Health/Mental Hygiene Thermostat Repairer NA NA 2560.32 2.560320e+03 2560.320 34.00 1 2.560320e+03 2560.32 NA NA NA NULL
2019 Dept Of Health/Mental Hygiene X-Ray Technician 48554.58570 5.826550e+05 31346.90 2.612242e+03 146.995 863.00 12 1.469950e+02 1763.94 6.140019e+05 5.844190e+05 29582.96 NULL
2019 Dept Of Info Tech & Telecomm Accountant 77710.00000 7.771000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.771000e+04 7.771000e+04 0.00 NULL
2019 Dept Of Info Tech & Telecomm Adm Manager-Non-Mgrl From M1/M2 84935.88889 3.057692e+06 20959.61 5.822114e+02 0.000 548.75 36 0.000000e+00 0.00 3.078652e+06 3.057692e+06 20959.61 NULL
2019 Dept Of Info Tech & Telecomm Admin Construction Project Manager 139993.00000 1.399930e+05 41.30 4.130000e+01 41.300 0.00 1 4.130000e+01 41.30 1.400343e+05 1.400343e+05 0.00 NULL
2019 Dept Of Info Tech & Telecomm Administrative Business Promotion Coordinator 127358.76000 3.183969e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 3.183969e+06 3.183969e+06 0.00 NULL
2019 Dept Of Info Tech & Telecomm Administrative Community Relations Specialist 223756.00000 2.237560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.237560e+05 2.237560e+05 0.00 NULL
2019 Dept Of Info Tech & Telecomm Administrative Construction Project Manager 139003.33333 4.170100e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.170100e+05 4.170100e+05 0.00 NULL
2019 Dept Of Info Tech & Telecomm Administrative Graphic Artist 163600.00000 1.636000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.636000e+05 1.636000e+05 0.00 NULL
2019 Dept Of Info Tech & Telecomm Administrative Manager 176596.75000 7.063870e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.063870e+05 7.063870e+05 0.00 NULL
2019 Dept Of Info Tech & Telecomm Administrative Procurement Analyst 99911.63636 1.099028e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.099028e+06 1.099028e+06 0.00 NULL
2019 Dept Of Info Tech & Telecomm Administrative Project Manager 100123.00000 1.001230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.001230e+05 1.001230e+05 0.00 NULL
2019 Dept Of Info Tech & Telecomm Administrative Public Information Specialist 123772.61538 1.609044e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.609044e+06 1.609044e+06 0.00 NULL
2019 Dept Of Info Tech & Telecomm Administrative Real Property Manager 138038.00000 1.380380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.380380e+05 1.380380e+05 0.00 NULL
2019 Dept Of Info Tech & Telecomm Administrative Staff Analyst 114058.84127 7.185707e+06 5796.89 9.201413e+01 0.000 187.50 63 0.000000e+00 0.00 7.191504e+06 7.185707e+06 5796.89 NULL
2019 Dept Of Info Tech & Telecomm Agency Attorney 101819.33333 9.163740e+05 2051.28 2.279200e+02 0.000 26.00 9 0.000000e+00 0.00 9.184253e+05 9.163740e+05 2051.28 NULL
2019 Dept Of Info Tech & Telecomm Agency Attorney Interne 68931.50000 1.378630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.378630e+05 1.378630e+05 0.00 NULL
2019 Dept Of Info Tech & Telecomm Agency Chief Contracting Officer 149071.50000 2.981430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.981430e+05 2.981430e+05 0.00 NULL
2019 Dept Of Info Tech & Telecomm Assistant Commissioner 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2019 Dept Of Info Tech & Telecomm Associate Call Center Representative-Non-Spvr 59786.38462 3.886115e+06 30643.23 4.714343e+02 38.930 953.25 65 3.893000e+01 2530.45 3.916758e+06 3.888645e+06 28112.78 NULL
2019 Dept Of Info Tech & Telecomm Associate Inspector 73007.00000 7.300700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.300700e+04 7.300700e+04 0.00 NULL
2019 Dept Of Info Tech & Telecomm Associate Investigator 67460.50000 1.349210e+05 43.74 2.187000e+01 21.870 0.00 2 2.187000e+01 43.74 1.349647e+05 1.349647e+05 0.00 NULL
2019 Dept Of Info Tech & Telecomm Associate Labor Relations Analyst 97138.00000 9.713800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.713800e+04 9.713800e+04 0.00 NULL
2019 Dept Of Info Tech & Telecomm Associate Staff Analyst 85049.12500 6.803930e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.803930e+05 6.803930e+05 0.00 NULL
2019 Dept Of Info Tech & Telecomm Business Promotion Coordinator 65868.05882 1.119757e+06 183.53 1.079588e+01 0.000 1.50 17 0.000000e+00 0.00 1.119941e+06 1.119757e+06 183.53 NULL
2019 Dept Of Info Tech & Telecomm Call Center Representative 36453.66176 1.487309e+07 146465.04 3.589829e+02 0.000 6086.25 408 0.000000e+00 0.00 1.501956e+07 1.487309e+07 146465.04 NULL
2019 Dept Of Info Tech & Telecomm Certified Database Administrator 135456.00000 2.709120e+05 32491.33 1.624567e+04 16245.665 332.00 2 1.624567e+04 32491.33 3.034033e+05 3.034033e+05 0.00 NULL
2019 Dept Of Info Tech & Telecomm Certified It Administrator 114260.85135 1.691061e+07 457819.50 3.093375e+03 62.235 5344.00 148 6.223500e+01 9210.78 1.736843e+07 1.691982e+07 448608.72 NULL
2019 Dept Of Info Tech & Telecomm Certified It Developer 109297.73333 1.639466e+06 6336.46 4.224307e+02 0.000 89.50 15 0.000000e+00 0.00 1.645802e+06 1.639466e+06 6336.46 NULL
2019 Dept Of Info Tech & Telecomm Certified Local Area Network Administrator 95393.00000 9.539300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.539300e+04 9.539300e+04 0.00 NULL
2019 Dept Of Info Tech & Telecomm City Research Scientist 94309.00000 9.430900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.430900e+04 9.430900e+04 0.00 NULL
2019 Dept Of Info Tech & Telecomm Clerical Associate 49542.23040 1.238556e+06 2456.06 9.824240e+01 0.000 76.00 25 0.000000e+00 0.00 1.241012e+06 1.238556e+06 2456.06 NULL
2019 Dept Of Info Tech & Telecomm College Aide 3972.69000 3.972690e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 3.972690e+04 3.972690e+04 0.00 NULL
2019 Dept Of Info Tech & Telecomm College Aide - Assignment Levels Ii And Iii 5399.62500 1.079925e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.079925e+04 1.079925e+04 0.00 NULL
2019 Dept Of Info Tech & Telecomm Commissioner Of Dept Of Info Technology & Telecommunications 231459.00000 2.314590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.314590e+05 2.314590e+05 0.00 NULL
2019 Dept Of Info Tech & Telecomm Community Assistant 36368.00000 3.636800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.636800e+04 3.636800e+04 0.00 NULL
2019 Dept Of Info Tech & Telecomm Community Associate 49152.56410 1.916950e+06 6267.45 1.607038e+02 0.000 222.50 39 0.000000e+00 0.00 1.923217e+06 1.916950e+06 6267.45 NULL
2019 Dept Of Info Tech & Telecomm Community Coordinator 71809.18237 2.800558e+06 51315.39 1.315779e+03 0.000 1096.00 39 0.000000e+00 0.00 2.851874e+06 2.800558e+06 51315.39 NULL
2019 Dept Of Info Tech & Telecomm Computer Aide-Non-Spvr 50629.93333 7.594490e+05 2693.54 1.795693e+02 3.910 82.50 15 3.910000e+00 58.65 7.621425e+05 7.595077e+05 2634.89 NULL
2019 Dept Of Info Tech & Telecomm Computer Associate 76027.49351 1.170823e+07 580836.85 3.771668e+03 75.495 10120.50 154 7.549500e+01 11626.23 1.228907e+07 1.171986e+07 569210.62 NULL
2019 Dept Of Info Tech & Telecomm Computer Operations Manager 131665.83333 4.739970e+06 226.86 6.301667e+00 0.000 1.00 36 0.000000e+00 0.00 4.740197e+06 4.739970e+06 226.86 NULL
2019 Dept Of Info Tech & Telecomm Computer Programmer Analyst 59656.69231 7.755370e+05 324.65 2.497308e+01 0.000 7.00 13 0.000000e+00 0.00 7.758617e+05 7.755370e+05 324.65 NULL
2019 Dept Of Info Tech & Telecomm Computer Service Technician 59238.00000 5.923800e+04 204.37 2.043700e+02 204.370 4.00 1 2.043700e+02 204.37 5.944237e+04 5.944237e+04 0.00 NULL
2019 Dept Of Info Tech & Telecomm Computer Specialist 109962.45854 2.254230e+07 298544.98 1.456317e+03 0.000 3841.50 205 0.000000e+00 0.00 2.284085e+07 2.254230e+07 298544.98 NULL
2019 Dept Of Info Tech & Telecomm Computer Systems Manager 136207.07261 3.759315e+07 21525.41 7.799062e+01 0.000 345.50 276 0.000000e+00 0.00 3.761468e+07 3.759315e+07 21525.41 NULL
2019 Dept Of Info Tech & Telecomm Confidential Strategy Planner 55752.00000 5.575200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.575200e+04 5.575200e+04 0.00 NULL
2019 Dept Of Info Tech & Telecomm Customer Information Representative Ma L 1549 68323.50000 1.366470e+05 3801.44 1.900720e+03 1900.720 73.25 2 1.900720e+03 3801.44 1.404484e+05 1.404484e+05 0.00 NULL
2019 Dept Of Info Tech & Telecomm Deputy Commissioner 194207.66667 5.826230e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.826230e+05 5.826230e+05 0.00 NULL
2019 Dept Of Info Tech & Telecomm Deputy Commissioner Of It 230000.00000 2.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.300000e+05 2.300000e+05 0.00 NULL
2019 Dept Of Info Tech & Telecomm Director Of Television 58678.50000 1.173570e+05 2640.41 1.320205e+03 1320.205 62.00 2 1.320205e+03 2640.41 1.199974e+05 1.199974e+05 0.00 NULL
2019 Dept Of Info Tech & Telecomm Economist 56204.00000 5.620400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.620400e+04 5.620400e+04 0.00 NULL
2019 Dept Of Info Tech & Telecomm Executive Agency Counsel 144422.27273 1.588645e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.588645e+06 1.588645e+06 0.00 NULL
2019 Dept Of Info Tech & Telecomm Film Manager 72797.00000 7.279700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.279700e+04 7.279700e+04 0.00 NULL
2019 Dept Of Info Tech & Telecomm Graphic Artist 67171.00000 1.343420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.343420e+05 1.343420e+05 0.00 NULL
2019 Dept Of Info Tech & Telecomm Inspector 56000.00000 1.120000e+05 0.54 2.700000e-01 0.270 0.00 2 2.700000e-01 0.54 1.120005e+05 1.120005e+05 0.00 NULL
2019 Dept Of Info Tech & Telecomm It Automation And Monitoring Engineer 114596.66667 3.437900e+05 55.17 1.839000e+01 0.000 0.00 3 0.000000e+00 0.00 3.438452e+05 3.437900e+05 55.17 NULL
2019 Dept Of Info Tech & Telecomm It Infrastructure Engineer 109274.80000 5.463740e+05 3924.80 7.849600e+02 295.420 43.50 5 2.954200e+02 1477.10 5.502988e+05 5.478511e+05 2447.70 NULL
2019 Dept Of Info Tech & Telecomm It Project Specialist 100506.96000 2.512674e+06 5197.06 2.078824e+02 0.000 73.50 25 0.000000e+00 0.00 2.517871e+06 2.512674e+06 5197.06 NULL
2019 Dept Of Info Tech & Telecomm It Security Specialist 130542.00000 3.655176e+06 9060.55 3.235911e+02 0.000 139.75 28 0.000000e+00 0.00 3.664237e+06 3.655176e+06 9060.55 NULL
2019 Dept Of Info Tech & Telecomm Principal Administrative Associate - Lev 1 & 2 Non Supvr 66295.38889 1.193317e+06 27377.16 1.520953e+03 0.000 549.50 18 0.000000e+00 0.00 1.220694e+06 1.193317e+06 27377.16 NULL
2019 Dept Of Info Tech & Telecomm Procurement Analyst 80505.25000 6.440420e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.440420e+05 6.440420e+05 0.00 NULL
2019 Dept Of Info Tech & Telecomm Program Producer 73099.40000 7.309940e+05 7151.39 7.151390e+02 0.000 155.50 10 0.000000e+00 0.00 7.381454e+05 7.309940e+05 7151.39 NULL
2019 Dept Of Info Tech & Telecomm Project Manager 63728.00000 6.372800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.372800e+04 6.372800e+04 0.00 NULL
2019 Dept Of Info Tech & Telecomm Quality Assurance Specialist Trainee 38673.00000 3.867300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.867300e+04 3.867300e+04 0.00 NULL
2019 Dept Of Info Tech & Telecomm Radio And Television Operator 52701.80648 1.422949e+06 59846.55 2.216539e+03 1247.960 1589.50 27 1.247960e+03 33694.92 1.482795e+06 1.456644e+06 26151.63 NULL
2019 Dept Of Info Tech & Telecomm Secretary 60715.00000 6.071500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.071500e+04 6.071500e+04 0.00 NULL
2019 Dept Of Info Tech & Telecomm Secretary Of Commissioner 60000.00000 6.000000e+04 18156.62 1.815662e+04 18156.620 454.25 1 1.815662e+04 18156.62 7.815662e+04 7.815662e+04 0.00 NULL
2019 Dept Of Info Tech & Telecomm Secretary To The Deputy Commissioner 73007.00000 7.300700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.300700e+04 7.300700e+04 0.00 NULL
2019 Dept Of Info Tech & Telecomm Senior It Architect 138221.50000 5.528860e+05 873.39 2.183475e+02 0.000 17.00 4 0.000000e+00 0.00 5.537594e+05 5.528860e+05 873.39 NULL
2019 Dept Of Info Tech & Telecomm Staff Analyst 61856.05882 1.051553e+06 6844.65 4.026265e+02 0.000 209.75 17 0.000000e+00 0.00 1.058398e+06 1.051553e+06 6844.65 NULL
2019 Dept Of Info Tech & Telecomm Staff Analyst Trainee 49303.16667 2.958190e+05 346.73 5.778833e+01 0.000 0.00 6 0.000000e+00 0.00 2.961657e+05 2.958190e+05 346.73 NULL
2019 Dept Of Info Tech & Telecomm Summer College Intern 3150.47727 6.931050e+04 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 6.931050e+04 6.931050e+04 0.00 NULL
2019 Dept Of Info Tech & Telecomm Summer Graduate Intern 3432.04650 5.148070e+04 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 5.148070e+04 5.148070e+04 0.00 NULL
2019 Dept Of Info Tech & Telecomm Supervising Computer Service Technician 68632.00000 6.863200e+04 211.00 2.110000e+02 211.000 16.50 1 2.110000e+02 211.00 6.884300e+04 6.884300e+04 0.00 NULL
2019 Dept Of Info Tech & Telecomm Supervisor Of Office Machine Operations 46117.00000 4.611700e+04 1786.44 1.786440e+03 1786.440 68.50 1 1.786440e+03 1786.44 4.790344e+04 4.790344e+04 0.00 NULL
2019 Dept Of Info Tech & Telecomm Supervisor Of Radio And Television Operators 80515.33333 4.830920e+05 11349.10 1.891517e+03 273.305 214.50 6 2.733050e+02 1639.83 4.944411e+05 4.847318e+05 9709.27 NULL
2019 Dept Of Info Tech & Telecomm Telecommunication Manager 134780.30769 1.752144e+06 4608.21 3.544777e+02 0.000 69.00 13 0.000000e+00 0.00 1.756752e+06 1.752144e+06 4608.21 NULL
2019 Dept Of Info Tech & Telecomm Telecommunications Associate 73376.16176 4.989579e+06 57039.73 8.388196e+02 0.000 1075.75 68 0.000000e+00 0.00 5.046619e+06 4.989579e+06 57039.73 NULL
2019 Dept Of Info Tech & Telecomm Telecommunications Manager 108522.33333 3.255670e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.255670e+05 3.255670e+05 0.00 NULL
2019 Dept Of Parks & Recreation Accountant 77276.50000 1.545530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.545530e+05 1.545530e+05 0.00 NULL
2019 Dept Of Parks & Recreation Adm Manager-Non-Mgrl From M1/M2 74539.57538 4.845072e+06 134148.08 2.063817e+03 0.000 2419.50 65 0.000000e+00 0.00 4.979220e+06 4.845072e+06 134148.08 NULL
2019 Dept Of Parks & Recreation Admin Community Relations Specialist 92660.15385 7.227492e+06 287805.34 3.689812e+03 680.690 4838.00 78 6.806900e+02 53093.82 7.515297e+06 7.280586e+06 234711.52 NULL
2019 Dept Of Parks & Recreation Admin Landmarks Preservationist 113371.50000 2.267430e+05 7309.21 3.654605e+03 3654.605 115.50 2 3.654605e+03 7309.21 2.340522e+05 2.340522e+05 0.00 NULL
2019 Dept Of Parks & Recreation Administrative Architect 122645.00000 3.679350e+05 8253.91 2.751303e+03 0.000 119.00 3 0.000000e+00 0.00 3.761889e+05 3.679350e+05 8253.91 NULL
2019 Dept Of Parks & Recreation Administrative City Planner 114325.40000 5.716270e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.716270e+05 5.716270e+05 0.00 NULL
2019 Dept Of Parks & Recreation Administrative Community Relations Specialist 120403.92857 1.685655e+06 9.77 6.978571e-01 0.000 0.00 14 0.000000e+00 0.00 1.685665e+06 1.685655e+06 9.77 NULL
2019 Dept Of Parks & Recreation Administrative Construction Project Manager 146013.00000 1.460130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.460130e+05 1.460130e+05 0.00 NULL
2019 Dept Of Parks & Recreation Administrative Engineer 120338.00000 3.610140e+05 3926.50 1.308833e+03 1455.930 55.50 3 1.308833e+03 3926.50 3.649405e+05 3.649405e+05 0.00 NULL
2019 Dept Of Parks & Recreation Administrative Graphic Artist 95000.00000 1.900000e+05 1161.24 5.806200e+02 580.620 14.25 2 5.806200e+02 1161.24 1.911612e+05 1.911612e+05 0.00 NULL
2019 Dept Of Parks & Recreation Administrative Horticulturist 86711.04167 4.162130e+06 36231.75 7.548281e+02 0.000 689.75 48 0.000000e+00 0.00 4.198362e+06 4.162130e+06 36231.75 NULL
2019 Dept Of Parks & Recreation Administrative Landscape Architect 131052.66667 3.931580e+05 1324.34 4.414467e+02 32.960 15.00 3 3.296000e+01 98.88 3.944823e+05 3.932569e+05 1225.46 NULL
2019 Dept Of Parks & Recreation Administrative Management Auditor 98675.00000 9.867500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.867500e+04 9.867500e+04 0.00 NULL
2019 Dept Of Parks & Recreation Administrative Manager 124812.00000 6.240600e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.240600e+05 6.240600e+05 0.00 NULL
2019 Dept Of Parks & Recreation Administrative Parks & Recreation Manager 96113.47575 8.361872e+06 197577.24 2.271003e+03 27.990 3473.75 87 2.799000e+01 2435.13 8.559450e+06 8.364308e+06 195142.11 NULL
2019 Dept Of Parks & Recreation Administrative Procurement Analyst 81611.62500 6.528930e+05 27783.27 3.472909e+03 896.335 475.75 8 8.963350e+02 7170.68 6.806763e+05 6.600637e+05 20612.59 NULL
2019 Dept Of Parks & Recreation Administrative Project Manager 113597.24708 4.089501e+06 12450.18 3.458383e+02 0.000 166.00 36 0.000000e+00 0.00 4.101951e+06 4.089501e+06 12450.18 NULL
2019 Dept Of Parks & Recreation Administrative Public Information Specialist 125382.33333 3.761470e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.761470e+05 3.761470e+05 0.00 NULL
2019 Dept Of Parks & Recreation Administrative Staff Analyst 100862.29337 8.875882e+06 213133.62 2.421973e+03 0.000 3310.25 88 0.000000e+00 0.00 9.089015e+06 8.875882e+06 213133.62 NULL
2019 Dept Of Parks & Recreation Administrative Supervisor Of Building Maintenance 111096.00000 2.221920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.221920e+05 2.221920e+05 0.00 NULL
2019 Dept Of Parks & Recreation Agency Attorney 84564.23529 1.437592e+06 5904.82 3.473424e+02 0.000 98.75 17 0.000000e+00 0.00 1.443497e+06 1.437592e+06 5904.82 NULL
2019 Dept Of Parks & Recreation Agency Chief Contracting Officer 138199.50000 2.763990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.763990e+05 2.763990e+05 0.00 NULL
2019 Dept Of Parks & Recreation Architect 99624.90909 1.095874e+06 564.50 5.131818e+01 0.000 9.00 11 0.000000e+00 0.00 1.096438e+06 1.095874e+06 564.50 NULL
2019 Dept Of Parks & Recreation Assistant Architect 70340.00000 2.110200e+05 5318.52 1.772840e+03 294.030 116.50 3 2.940300e+02 882.09 2.163385e+05 2.119021e+05 4436.43 NULL
2019 Dept Of Parks & Recreation Assistant Civil Engineer 73288.27273 8.061710e+05 37588.36 3.417124e+03 2.250 721.75 11 2.250000e+00 24.75 8.437594e+05 8.061958e+05 37563.61 NULL
2019 Dept Of Parks & Recreation Assistant Commissioner 163680.00000 4.910400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.910400e+05 4.910400e+05 0.00 NULL
2019 Dept Of Parks & Recreation Assistant Electrical Engineer 74764.40000 3.738220e+05 27.96 5.592000e+00 0.000 3.50 5 0.000000e+00 0.00 3.738500e+05 3.738220e+05 27.96 NULL
2019 Dept Of Parks & Recreation Assistant Environmental Engineer 75651.00000 1.513020e+05 25449.50 1.272475e+04 12724.750 464.25 2 1.272475e+04 25449.50 1.767515e+05 1.767515e+05 0.00 NULL
2019 Dept Of Parks & Recreation Assistant Landscape Architect 63418.77778 2.853845e+06 19589.06 4.353124e+02 0.000 464.00 45 0.000000e+00 0.00 2.873434e+06 2.853845e+06 19589.06 NULL
2019 Dept Of Parks & Recreation Assistant Mechanical Engineer 68075.14286 4.765260e+05 3596.00 5.137143e+02 0.000 69.50 7 0.000000e+00 0.00 4.801220e+05 4.765260e+05 3596.00 NULL
2019 Dept Of Parks & Recreation Assistant To The Commissioner Of Parks And Recreation 158500.00000 3.170000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.170000e+05 3.170000e+05 0.00 NULL
2019 Dept Of Parks & Recreation Associate Fraud Investigator 90822.00000 1.816440e+05 12847.55 6.423775e+03 6423.775 205.75 2 6.423775e+03 12847.55 1.944915e+05 1.944915e+05 0.00 NULL
2019 Dept Of Parks & Recreation Associate Labor Relations Analyst 82206.50000 1.644130e+05 11384.19 5.692095e+03 5692.095 186.50 2 5.692095e+03 11384.19 1.757972e+05 1.757972e+05 0.00 NULL
2019 Dept Of Parks & Recreation Associate Park Service Worker 44495.47669 1.717525e+07 1725941.70 4.471352e+03 1658.670 44699.11 386 1.658670e+03 640246.62 1.890120e+07 1.781550e+07 1085695.08 NULL
2019 Dept Of Parks & Recreation Associate Project Manager 85201.58281 8.179352e+06 250964.93 2.614218e+03 331.530 4218.00 96 3.315300e+02 31826.88 8.430317e+06 8.211179e+06 219138.05 NULL
2019 Dept Of Parks & Recreation Associate Quality Assurance Specialist 80398.50000 1.607970e+05 14065.24 7.032620e+03 7032.620 275.00 2 7.032620e+03 14065.24 1.748622e+05 1.748622e+05 0.00 NULL
2019 Dept Of Parks & Recreation Associate Staff Analyst 78590.71111 1.414633e+06 25555.81 1.419767e+03 68.250 511.50 18 6.825000e+01 1228.50 1.440189e+06 1.415861e+06 24327.31 NULL
2019 Dept Of Parks & Recreation Associate Urban Designer 80155.00000 1.042015e+06 55273.43 4.251802e+03 178.380 926.25 13 1.783800e+02 2318.94 1.097288e+06 1.044334e+06 52954.49 NULL
2019 Dept Of Parks & Recreation Associate Urban Park Ranger 54956.96721 6.704750e+06 374986.69 3.073661e+03 2127.140 9890.27 122 2.127140e+03 259511.08 7.079737e+06 6.964261e+06 115475.61 NULL
2019 Dept Of Parks & Recreation Auto Mechanic NA NA 133543.00 5.806217e+03 6256.230 2440.75 23 5.806217e+03 133543.00 NA NA NA NULL
2019 Dept Of Parks & Recreation Automotive Service Worker 39349.35192 4.721922e+05 21363.08 1.780257e+03 324.810 632.75 12 3.248100e+02 3897.72 4.935553e+05 4.760899e+05 17465.36 NULL
2019 Dept Of Parks & Recreation Blacksmith NA NA 291084.99 2.239115e+04 20194.470 4031.57 13 2.019447e+04 262528.11 NA NA NA NULL
2019 Dept Of Parks & Recreation Blacksmith’s Helper NA NA 99180.15 1.416859e+04 12962.980 2040.50 7 1.296298e+04 90740.86 NA NA NA NULL
2019 Dept Of Parks & Recreation Borough Commissioner 171896.40000 8.594820e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.594820e+05 8.594820e+05 0.00 NULL
2019 Dept Of Parks & Recreation Borough Director Of Recreation 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2019 Dept Of Parks & Recreation Carpenter NA NA 564977.18 1.661698e+04 6382.260 7248.50 34 6.382260e+03 216996.84 NA NA NA NULL
2019 Dept Of Parks & Recreation Cement Mason NA NA 282939.12 1.664348e+04 12150.240 3278.33 17 1.215024e+04 206554.08 NA NA NA NULL
2019 Dept Of Parks & Recreation Certified It Administrator 99409.04545 2.186999e+06 88951.68 4.043258e+03 1788.630 1284.25 22 1.788630e+03 39349.86 2.275951e+06 2.226349e+06 49601.82 NULL
2019 Dept Of Parks & Recreation Certified It Developer 93275.33333 2.798260e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.798260e+05 2.798260e+05 0.00 NULL
2019 Dept Of Parks & Recreation Chief Lifeguard 31487.61060 4.439753e+06 227316.11 1.612171e+03 1088.980 4853.75 141 1.088980e+03 153546.18 4.667069e+06 4.593299e+06 73769.93 NULL
2019 Dept Of Parks & Recreation City Park Worker 24476.93542 3.879594e+07 2474369.74 1.561117e+03 377.780 88522.17 1585 3.777800e+02 598781.30 4.127031e+07 3.939472e+07 1875588.44 NULL
2019 Dept Of Parks & Recreation City Planner 81991.08806 1.475840e+06 4205.14 2.336189e+02 0.000 54.50 18 0.000000e+00 0.00 1.480045e+06 1.475840e+06 4205.14 NULL
2019 Dept Of Parks & Recreation City Research Scientist 85904.76190 1.804000e+06 7647.82 3.641819e+02 0.000 119.25 21 0.000000e+00 0.00 1.811648e+06 1.804000e+06 7647.82 NULL
2019 Dept Of Parks & Recreation City Seasonal Aide 11873.25533 1.627823e+07 648949.77 4.733405e+02 99.640 27531.59 1371 9.964000e+01 136606.44 1.692718e+07 1.641484e+07 512343.33 NULL
2019 Dept Of Parks & Recreation Civil Engineer 103649.75000 8.291980e+05 18705.53 2.338191e+03 614.785 229.00 8 6.147850e+02 4918.28 8.479035e+05 8.341163e+05 13787.25 NULL
2019 Dept Of Parks & Recreation Civil Engineering Intern 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2019 Dept Of Parks & Recreation Clerical Aide 7257.59595 1.451519e+04 5569.92 2.784960e+03 2784.960 234.50 2 2.784960e+03 5569.92 2.008511e+04 2.008511e+04 0.00 NULL
2019 Dept Of Parks & Recreation Clerical Associate 45611.67855 4.241886e+06 60284.73 6.482229e+02 0.000 1837.00 93 0.000000e+00 0.00 4.302171e+06 4.241886e+06 60284.73 NULL
2019 Dept Of Parks & Recreation Climber & Pruner 65961.62500 7.915395e+06 1224286.10 1.020238e+04 8642.190 23923.57 120 8.642190e+03 1037062.80 9.139681e+06 8.952458e+06 187223.30 NULL
2019 Dept Of Parks & Recreation College Aide 4940.92500 9.881850e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.881850e+03 9.881850e+03 0.00 NULL
2019 Dept Of Parks & Recreation Commissioner Of Parks & Recreation 236088.00000 2.360880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.360880e+05 2.360880e+05 0.00 NULL
2019 Dept Of Parks & Recreation Community Assistant 20045.18420 2.806326e+05 8796.03 6.282879e+02 0.000 330.00 14 0.000000e+00 0.00 2.894286e+05 2.806326e+05 8796.03 NULL
2019 Dept Of Parks & Recreation Community Associate 37411.42228 7.631930e+06 81639.50 4.001936e+02 0.000 2552.73 204 0.000000e+00 0.00 7.713570e+06 7.631930e+06 81639.50 NULL
2019 Dept Of Parks & Recreation Community Coordinator 67142.89307 3.572002e+07 933886.79 1.755426e+03 2.820 19362.75 532 2.820000e+00 1500.24 3.665391e+07 3.572152e+07 932386.55 NULL
2019 Dept Of Parks & Recreation Community Service Aide 4895.58123 2.349879e+05 3002.64 6.255500e+01 0.000 183.88 48 0.000000e+00 0.00 2.379905e+05 2.349879e+05 3002.64 NULL
2019 Dept Of Parks & Recreation Computer Aide-Non-Spvr 44619.83333 2.677190e+05 15410.85 2.568475e+03 36.160 428.75 6 3.616000e+01 216.96 2.831298e+05 2.679360e+05 15193.89 NULL
2019 Dept Of Parks & Recreation Computer Associate 70435.91978 1.690462e+06 74703.25 3.112635e+03 28.290 1421.75 24 2.829000e+01 678.96 1.765165e+06 1.691141e+06 74024.29 NULL
2019 Dept Of Parks & Recreation Computer Operations Manager 100239.33333 3.007180e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.007180e+05 3.007180e+05 0.00 NULL
2019 Dept Of Parks & Recreation Computer Specialist 91837.00000 1.285718e+06 18478.28 1.319877e+03 305.135 307.00 14 3.051350e+02 4271.89 1.304196e+06 1.289990e+06 14206.39 NULL
2019 Dept Of Parks & Recreation Construction Project Manager 81708.47547 7.026929e+06 331198.62 3.851147e+03 506.220 5785.75 86 5.062200e+02 43534.92 7.358128e+06 7.070464e+06 287663.70 NULL
2019 Dept Of Parks & Recreation Construction Project Manager Intern 57344.14286 4.014090e+05 26820.56 3.831509e+03 366.750 536.00 7 3.667500e+02 2567.25 4.282296e+05 4.039762e+05 24253.31 NULL
2019 Dept Of Parks & Recreation Cooperative Education Trainee-Seasonal Park Help 3030.08333 4.545125e+04 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 4.545125e+04 4.545125e+04 0.00 NULL
2019 Dept Of Parks & Recreation Counsel 192768.00000 1.927680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.927680e+05 1.927680e+05 0.00 NULL
2019 Dept Of Parks & Recreation Deputy Borough Commissioner 151041.66667 9.062500e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.062500e+05 9.062500e+05 0.00 NULL
2019 Dept Of Parks & Recreation Deputy Chief Of Operations 125040.33333 1.500484e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.500484e+06 1.500484e+06 0.00 NULL
2019 Dept Of Parks & Recreation Deputy Commissioner 188245.71429 1.317720e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.317720e+06 1.317720e+06 0.00 NULL
2019 Dept Of Parks & Recreation Director Of Community Involvement 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2019 Dept Of Parks & Recreation Director Of Neighborhood Park Restoration 96780.00000 1.935600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.935600e+05 1.935600e+05 0.00 NULL
2019 Dept Of Parks & Recreation Director Of Puppetry 60155.00000 6.015500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.015500e+04 6.015500e+04 0.00 NULL
2019 Dept Of Parks & Recreation Director Of Regional Joint Interest Park 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2019 Dept Of Parks & Recreation Director Of Urban Park Ranger Program 99951.66667 2.998550e+05 2.08 6.933333e-01 0.000 0.00 3 0.000000e+00 0.00 2.998571e+05 2.998550e+05 2.08 NULL
2019 Dept Of Parks & Recreation Electrical Engineer 97238.00000 9.723800e+04 1824.30 1.824300e+03 1824.300 26.75 1 1.824300e+03 1824.30 9.906230e+04 9.906230e+04 0.00 NULL
2019 Dept Of Parks & Recreation Electrician NA NA 746175.57 1.776608e+04 12650.610 8687.75 42 1.265061e+04 531325.62 NA NA NA NULL
2019 Dept Of Parks & Recreation Engineering Technician 58000.00000 5.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.800000e+04 5.800000e+04 0.00 NULL
2019 Dept Of Parks & Recreation Environmental Engineer 101791.00000 1.017910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.017910e+05 1.017910e+05 0.00 NULL
2019 Dept Of Parks & Recreation Environmental Engineering Intern 53170.00000 5.317000e+04 0.00 0.000000e+00 0.000 7.00 1 0.000000e+00 0.00 5.317000e+04 5.317000e+04 0.00 NULL
2019 Dept Of Parks & Recreation Executive Agency Counsel 141770.50000 5.670820e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.670820e+05 5.670820e+05 0.00 NULL
2019 Dept Of Parks & Recreation Exterminator 46207.66667 2.772460e+05 23481.95 3.913658e+03 2065.965 838.50 6 2.065965e+03 12395.79 3.007280e+05 2.896418e+05 11086.16 NULL
2019 Dept Of Parks & Recreation Forester 55992.85518 3.527550e+06 60568.55 9.614056e+02 229.810 1548.00 63 2.298100e+02 14478.03 3.588118e+06 3.542028e+06 46090.52 NULL
2019 Dept Of Parks & Recreation Gardener 44854.69441 8.387828e+06 608453.81 3.253764e+03 744.120 17615.18 187 7.441200e+02 139150.44 8.996282e+06 8.526978e+06 469303.37 NULL
2019 Dept Of Parks & Recreation Investigator 67125.54545 7.383810e+05 57904.99 5.264090e+03 1787.810 1201.75 11 1.787810e+03 19665.91 7.962860e+05 7.580469e+05 38239.08 NULL
2019 Dept Of Parks & Recreation It Automation And Monitoring Engineer 82749.00000 8.274900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.274900e+04 8.274900e+04 0.00 NULL
2019 Dept Of Parks & Recreation It Infrastructure Engineer 85000.00000 8.500000e+04 5505.18 5.505180e+03 5505.180 123.00 1 5.505180e+03 5505.18 9.050518e+04 9.050518e+04 0.00 NULL
2019 Dept Of Parks & Recreation It Project Specialist 94914.00000 2.847420e+05 19346.55 6.448850e+03 6976.860 364.75 3 6.448850e+03 19346.55 3.040885e+05 3.040885e+05 0.00 NULL
2019 Dept Of Parks & Recreation Job Training Participant 5913.12135 4.460859e+07 2491017.93 3.301986e+02 2.880 125066.88 7544 2.880000e+00 21726.72 4.709961e+07 4.463031e+07 2469291.21 NULL
2019 Dept Of Parks & Recreation Labor Relations Analyst 72524.00000 1.450480e+05 339.90 1.699500e+02 169.950 6.00 2 1.699500e+02 339.90 1.453879e+05 1.453879e+05 0.00 NULL
2019 Dept Of Parks & Recreation Landmarks Preservationist 79351.80000 3.967590e+05 3668.87 7.337740e+02 434.460 82.00 5 4.344600e+02 2172.30 4.004279e+05 3.989313e+05 1496.57 NULL
2019 Dept Of Parks & Recreation Landscape Architect 94314.93258 8.394029e+06 167287.69 1.879637e+03 328.290 2527.50 89 3.282900e+02 29217.81 8.561317e+06 8.423247e+06 138069.88 NULL
2019 Dept Of Parks & Recreation Landscape Architect Intern 56208.50000 1.124170e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.124170e+05 1.124170e+05 0.00 NULL
2019 Dept Of Parks & Recreation Letterer And Sign Painter NA NA 11156.25 3.718750e+03 4135.250 245.00 3 3.718750e+03 11156.25 NA NA NA NULL
2019 Dept Of Parks & Recreation Life Guard 8370.76839 1.104941e+07 390422.26 2.957744e+02 221.760 13512.75 1320 2.217600e+02 292723.20 1.143984e+07 1.134214e+07 97699.06 NULL
2019 Dept Of Parks & Recreation Machinist NA NA 23855.74 7.951913e+03 6419.850 487.00 3 6.419850e+03 19259.55 NA NA NA NULL
2019 Dept Of Parks & Recreation Maintenance Worker NA NA 451138.15 5.435399e+03 2257.670 10421.23 83 2.257670e+03 187386.61 NA NA NA NULL
2019 Dept Of Parks & Recreation Management Auditor 73620.00000 7.362000e+04 51.95 5.195000e+01 51.950 1.25 1 5.195000e+01 51.95 7.367195e+04 7.367195e+04 0.00 NULL
2019 Dept Of Parks & Recreation Manager Of Park License Agreements 155449.00000 1.554490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.554490e+05 1.554490e+05 0.00 NULL
2019 Dept Of Parks & Recreation Marine Maintenance Mechanic 72041.33333 2.161240e+05 1099.87 3.666233e+02 525.200 22.00 3 3.666233e+02 1099.87 2.172239e+05 2.172239e+05 0.00 NULL
2019 Dept Of Parks & Recreation Masons Helper NA NA 34687.96 1.734398e+04 17343.980 614.00 2 1.734398e+04 34687.96 NA NA NA NULL
2019 Dept Of Parks & Recreation Mechanical Engineer 102551.75000 4.102070e+05 9136.43 2.284108e+03 2061.515 159.00 4 2.061515e+03 8246.06 4.193434e+05 4.184531e+05 890.37 NULL
2019 Dept Of Parks & Recreation Monuments Officer 93866.00000 9.386600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.386600e+04 9.386600e+04 0.00 NULL
2019 Dept Of Parks & Recreation Oiler NA NA 106283.59 2.657090e+04 23517.660 1251.25 4 2.351766e+04 94070.64 NA NA NA NULL
2019 Dept Of Parks & Recreation Painter NA NA 458188.90 1.579962e+04 14272.650 7720.00 29 1.427265e+04 413906.85 NA NA NA NULL
2019 Dept Of Parks & Recreation Park Borough Commissioner 172009.00000 1.720090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.720090e+05 1.720090e+05 0.00 NULL
2019 Dept Of Parks & Recreation Park Supervisor 73052.75936 3.762217e+07 3441390.38 6.682311e+03 3438.960 66984.83 515 3.438960e+03 1771064.40 4.106356e+07 3.939324e+07 1670325.98 NULL
2019 Dept Of Parks & Recreation Playground Associate 11755.32190 3.056384e+06 69251.03 2.663501e+02 1.995 3329.00 260 1.995000e+00 518.70 3.125635e+06 3.056902e+06 68732.33 NULL
2019 Dept Of Parks & Recreation Plumber NA NA 1731679.26 3.206813e+04 32461.175 17465.75 54 3.206813e+04 1731679.26 NA NA NA NULL
2019 Dept Of Parks & Recreation Plumber’s Helper NA NA 121794.61 2.435892e+04 23011.600 1992.00 5 2.301160e+04 115058.00 NA NA NA NULL
2019 Dept Of Parks & Recreation Principal Administrative Associate - Lev 1 & 2 Non Supvr 63921.32941 5.433313e+06 141066.83 1.659610e+03 0.000 3090.00 85 0.000000e+00 0.00 5.574380e+06 5.433313e+06 141066.83 NULL
2019 Dept Of Parks & Recreation Principal Park Supervisor 83081.00000 1.661620e+05 4705.00 2.352500e+03 2352.500 73.25 2 2.352500e+03 4705.00 1.708670e+05 1.708670e+05 0.00 NULL
2019 Dept Of Parks & Recreation Procurement Analyst 73699.95455 1.621399e+06 28950.01 1.315910e+03 144.305 611.00 22 1.443050e+02 3174.71 1.650349e+06 1.624574e+06 25775.30 NULL
2019 Dept Of Parks & Recreation Project Manager 74182.11111 6.676390e+05 4397.05 4.885611e+02 0.000 115.50 9 0.000000e+00 0.00 6.720361e+05 6.676390e+05 4397.05 NULL
2019 Dept Of Parks & Recreation Public Records Officer 51978.40000 2.598920e+05 2711.98 5.423960e+02 0.000 79.50 5 0.000000e+00 0.00 2.626040e+05 2.598920e+05 2711.98 NULL
2019 Dept Of Parks & Recreation Puppeteer 45110.50000 1.804420e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.804420e+05 1.804420e+05 0.00 NULL
2019 Dept Of Parks & Recreation Quality Assurance Specialist 55421.33333 1.662640e+05 1917.58 6.391933e+02 0.000 58.50 3 0.000000e+00 0.00 1.681816e+05 1.662640e+05 1917.58 NULL
2019 Dept Of Parks & Recreation Recreation Director 45198.30972 1.536743e+06 76508.98 2.250264e+03 1139.125 2365.25 34 1.139125e+03 38730.25 1.613252e+06 1.575473e+06 37778.73 NULL
2019 Dept Of Parks & Recreation Recreation Specialist 28827.90803 8.215954e+06 177114.46 6.214542e+02 48.340 5870.72 285 4.834000e+01 13776.90 8.393068e+06 8.229731e+06 163337.56 NULL
2019 Dept Of Parks & Recreation Recreation Supervisor 52881.08542 6.292849e+06 294372.44 2.473718e+03 1028.450 6703.28 119 1.028450e+03 122385.55 6.587222e+06 6.415235e+06 171986.89 NULL
2019 Dept Of Parks & Recreation Research Assistant 32573.73625 1.302949e+05 5701.29 1.425322e+03 5.125 133.50 4 5.125000e+00 20.50 1.359962e+05 1.303154e+05 5680.79 NULL
2019 Dept Of Parks & Recreation Secretary 54380.50000 1.087610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.087610e+05 1.087610e+05 0.00 NULL
2019 Dept Of Parks & Recreation Senior Estimator 90491.20000 4.524560e+05 966.00 1.932000e+02 0.000 28.25 5 0.000000e+00 0.00 4.534220e+05 4.524560e+05 966.00 NULL
2019 Dept Of Parks & Recreation Senior Photographer 70567.50000 1.411350e+05 3853.13 1.926565e+03 1926.565 94.25 2 1.926565e+03 3853.13 1.449881e+05 1.449881e+05 0.00 NULL
2019 Dept Of Parks & Recreation Senior Stationary Engineer NA NA 234678.91 7.822630e+04 82351.260 2243.00 3 7.822630e+04 234678.91 NA NA NA NULL
2019 Dept Of Parks & Recreation Sheet Metal Worker NA NA 38398.92 7.679784e+03 2259.180 335.75 5 2.259180e+03 11295.90 NA NA NA NULL
2019 Dept Of Parks & Recreation Staff Analyst 64338.40000 6.433840e+05 17449.34 1.744934e+03 342.345 355.50 10 3.423450e+02 3423.45 6.608333e+05 6.468074e+05 14025.89 NULL
2019 Dept Of Parks & Recreation Stationary Engineer NA NA 1243708.11 2.144324e+04 16349.205 13267.75 58 1.634920e+04 948253.89 NA NA NA NULL
2019 Dept Of Parks & Recreation Steam Fitter NA NA 176930.41 3.538608e+04 35415.410 1610.00 5 3.538608e+04 176930.41 NA NA NA NULL
2019 Dept Of Parks & Recreation Steam Fitter’s Helper NA NA 2041.88 2.041880e+03 2041.880 24.75 1 2.041880e+03 2041.88 NA NA NA NULL
2019 Dept Of Parks & Recreation Stock Worker 39007.00000 3.900700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.900700e+04 3.900700e+04 0.00 NULL
2019 Dept Of Parks & Recreation Supervising Computer Service Technician 70128.00000 2.103840e+05 1312.20 4.374000e+02 0.000 40.75 3 0.000000e+00 0.00 2.116962e+05 2.103840e+05 1312.20 NULL
2019 Dept Of Parks & Recreation Supervising Dockmaster 63107.16667 3.786430e+05 5992.18 9.986967e+02 623.560 112.00 6 6.235600e+02 3741.36 3.846352e+05 3.823844e+05 2250.82 NULL
2019 Dept Of Parks & Recreation Supervisor 69753.00000 6.975300e+04 20841.55 2.084155e+04 20841.550 427.25 1 2.084155e+04 20841.55 9.059455e+04 9.059455e+04 0.00 NULL
2019 Dept Of Parks & Recreation Supervisor Carpenter NA NA 111365.91 2.784148e+04 24759.775 1442.25 4 2.475978e+04 99039.10 NA NA NA NULL
2019 Dept Of Parks & Recreation Supervisor Electrician NA NA 110993.20 5.549660e+04 55496.600 1207.50 2 5.549660e+04 110993.20 NA NA NA NULL
2019 Dept Of Parks & Recreation Supervisor Of Mechanics NA NA 453660.31 3.240431e+04 17446.375 4970.25 14 1.744638e+04 244249.25 NA NA NA NULL
2019 Dept Of Parks & Recreation Supervisor Of Stock Workers 49297.00000 4.929700e+04 6711.82 6.711820e+03 6711.820 177.50 1 6.711820e+03 6711.82 5.600882e+04 5.600882e+04 0.00 NULL
2019 Dept Of Parks & Recreation Supervisor Painter NA NA 128293.92 4.276464e+04 36272.340 1887.50 3 3.627234e+04 108817.02 NA NA NA NULL
2019 Dept Of Parks & Recreation Supervisor Plumber NA NA 420210.42 8.404208e+04 82421.200 3812.50 5 8.242120e+04 412106.00 NA NA NA NULL
2019 Dept Of Parks & Recreation Surveyor 71804.60000 7.180460e+05 36706.14 3.670614e+03 3443.415 829.75 10 3.443415e+03 34434.15 7.547521e+05 7.524802e+05 2271.99 NULL
2019 Dept Of Parks & Recreation Telecommunications Associate 77866.66667 7.008000e+05 37119.60 4.124400e+03 3182.140 608.75 9 3.182140e+03 28639.26 7.379196e+05 7.294393e+05 8480.34 NULL
2019 Dept Of Parks & Recreation Telephone Service Technician 62206.66667 3.732400e+05 68503.63 1.141727e+04 13495.865 1574.75 6 1.141727e+04 68503.63 4.417436e+05 4.417436e+05 0.00 NULL
2019 Dept Of Parks & Recreation Thermostat Repairer NA NA 13928.66 1.392866e+04 13928.660 130.50 1 1.392866e+04 13928.66 NA NA NA NULL
2019 Dept Of Parks & Recreation Urban Park Ranger 46750.38449 1.453937e+07 441970.68 1.421128e+03 592.380 12606.58 311 5.923800e+02 184230.18 1.498134e+07 1.472360e+07 257740.50 NULL
2019 Dept Of Records & Info Service Adm Manager-Non-Mgrl From M1/M2 71277.25000 2.851090e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.851090e+05 2.851090e+05 0.00 NULL
2019 Dept Of Records & Info Service Administrative Public Records Officer 112150.66667 3.364520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.364520e+05 3.364520e+05 0.00 NULL
2019 Dept Of Records & Info Service Agency Attorney 86135.00000 8.613500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.613500e+04 8.613500e+04 0.00 NULL
2019 Dept Of Records & Info Service Assistant Commissioner 152400.00000 1.524000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.524000e+05 1.524000e+05 0.00 NULL
2019 Dept Of Records & Info Service Associate Public Records Officer 64615.28571 4.523070e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.523070e+05 4.523070e+05 0.00 NULL
2019 Dept Of Records & Info Service Associate Staff Analyst 97873.00000 9.787300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.787300e+04 9.787300e+04 0.00 NULL
2019 Dept Of Records & Info Service Certified It Developer 105464.50000 2.109290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.109290e+05 2.109290e+05 0.00 NULL
2019 Dept Of Records & Info Service City Custodial Assistant 38344.00000 3.834400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.834400e+04 3.834400e+04 0.00 NULL
2019 Dept Of Records & Info Service Clerical Associate 46511.33333 2.790680e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.790680e+05 2.790680e+05 0.00 NULL
2019 Dept Of Records & Info Service College Aide 20682.49600 2.068250e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.068250e+04 2.068250e+04 0.00 NULL
2019 Dept Of Records & Info Service Commissioner 212044.00000 2.120440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.120440e+05 2.120440e+05 0.00 NULL
2019 Dept Of Records & Info Service Community Assistant 36324.12000 3.632412e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.632412e+04 3.632412e+04 0.00 NULL
2019 Dept Of Records & Info Service Community Associate 42799.00000 8.559800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.559800e+04 8.559800e+04 0.00 NULL
2019 Dept Of Records & Info Service Community Coordinator 74855.83333 4.491350e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.491350e+05 4.491350e+05 0.00 NULL
2019 Dept Of Records & Info Service Computer Systems Manager 134341.00000 5.373640e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.373640e+05 5.373640e+05 0.00 NULL
2019 Dept Of Records & Info Service Motor Vehicle Operator 48831.00000 4.883100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.883100e+04 4.883100e+04 0.00 NULL
2019 Dept Of Records & Info Service Principal Administrative Associate - Lev 1 & 2 Non Supvr 57101.50000 2.284060e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.284060e+05 2.284060e+05 0.00 NULL
2019 Dept Of Records & Info Service Procurement Analyst 47683.00000 4.768300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.768300e+04 4.768300e+04 0.00 NULL
2019 Dept Of Records & Info Service Public Records Aide 31599.49542 4.423929e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 4.423929e+05 4.423929e+05 0.00 NULL
2019 Dept Of Records & Info Service Public Records Officer 47361.13216 7.104170e+05 23.17 1.544667e+00 0.000 0.00 15 0.000000e+00 0.00 7.104402e+05 7.104170e+05 23.17 NULL
2019 Dept Of Records & Info Service Research Assistant 58662.00000 1.173240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.173240e+05 1.173240e+05 0.00 NULL
2019 Dept Of Records & Info Service Staff Analyst 57930.00000 5.793000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.793000e+04 5.793000e+04 0.00 NULL
2019 Dept Of Records & Info Service Stock Worker 25533.82035 1.021353e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.021353e+05 1.021353e+05 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Accountant 70511.00000 1.410220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.410220e+05 1.410220e+05 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Adm Manager-Non-Mgrl From M1/M2 74527.00000 1.266959e+06 463.29 2.725235e+01 0.000 14.25 17 0.000000e+00 0.00 1.267422e+06 1.266959e+06 463.29 NULL
2019 Dept Of Youth & Comm Dev Srvs Admin Community Relations Specialist 81153.33333 3.408440e+06 9746.31 2.320550e+02 0.000 228.00 42 0.000000e+00 0.00 3.418186e+06 3.408440e+06 9746.31 NULL
2019 Dept Of Youth & Comm Dev Srvs Admin Contract Specialist 119925.00000 1.678950e+06 144.88 1.034857e+01 0.000 0.00 14 0.000000e+00 0.00 1.679095e+06 1.678950e+06 144.88 NULL
2019 Dept Of Youth & Comm Dev Srvs Administrative Community Relations Specialist 114837.66667 2.067078e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.067078e+06 2.067078e+06 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Administrative Contract Specialist 79687.33333 5.737488e+06 241.97 3.360694e+00 0.000 8.50 72 0.000000e+00 0.00 5.737730e+06 5.737488e+06 241.97 NULL
2019 Dept Of Youth & Comm Dev Srvs Administrative Graphic Artist 103244.00000 1.032440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.032440e+05 1.032440e+05 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Administrative Labor Relations Analyst 105912.66667 3.177380e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.177380e+05 3.177380e+05 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Administrative Management Auditor 115615.00000 3.468450e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.468450e+05 3.468450e+05 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Administrative Manager 109921.68750 1.758747e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.758747e+06 1.758747e+06 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Administrative Procurement Analyst 94889.14286 6.642240e+05 348.12 4.973143e+01 0.000 8.75 7 0.000000e+00 0.00 6.645721e+05 6.642240e+05 348.12 NULL
2019 Dept Of Youth & Comm Dev Srvs Administrative Public Information Specialist 105651.00000 1.056510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.056510e+05 1.056510e+05 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Administrative Staff Analyst 110454.27577 5.743622e+06 5387.84 1.036123e+02 0.000 89.25 52 0.000000e+00 0.00 5.749010e+06 5.743622e+06 5387.84 NULL
2019 Dept Of Youth & Comm Dev Srvs Agency Attorney 97770.33333 5.866220e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.866220e+05 5.866220e+05 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Agency Chief Contracting Officer 186000.00000 1.860000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.860000e+05 1.860000e+05 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Associate Contract Specialist 70002.98571 4.900209e+06 1840.50 2.629286e+01 0.000 32.25 70 0.000000e+00 0.00 4.902050e+06 4.900209e+06 1840.50 NULL
2019 Dept Of Youth & Comm Dev Srvs Associate Staff Analyst 82236.22222 7.401260e+05 4676.86 5.196511e+02 0.000 93.50 9 0.000000e+00 0.00 7.448029e+05 7.401260e+05 4676.86 NULL
2019 Dept Of Youth & Comm Dev Srvs Certified It Administrator 111909.50000 2.238190e+05 545.63 2.728150e+02 272.815 9.25 2 2.728150e+02 545.63 2.243646e+05 2.243646e+05 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Certified It Developer 115649.57143 8.095470e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.095470e+05 8.095470e+05 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs City Research Scientist 88203.00000 6.174210e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.174210e+05 6.174210e+05 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Clerical Associate 56410.00000 5.641000e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.641000e+05 5.641000e+05 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs College Aide - Assignment Levels Ii And Iii 11018.77665 1.101878e+05 1.50 1.500000e-01 0.000 0.00 10 0.000000e+00 0.00 1.101893e+05 1.101878e+05 1.50 NULL
2019 Dept Of Youth & Comm Dev Srvs Commissioner Of Community Development 221151.00000 2.211510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.211510e+05 2.211510e+05 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Community Assistant 14401.68275 1.584185e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.584185e+05 1.584185e+05 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Community Associate 51274.87800 4.614739e+05 3.84 4.266667e-01 0.000 0.00 9 0.000000e+00 0.00 4.614777e+05 4.614739e+05 3.84 NULL
2019 Dept Of Youth & Comm Dev Srvs Community Coordinator 66824.97531 1.603799e+06 1846.31 7.692958e+01 0.000 36.50 24 0.000000e+00 0.00 1.605646e+06 1.603799e+06 1846.31 NULL
2019 Dept Of Youth & Comm Dev Srvs Community Service Aide 23819.79600 4.763959e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.763959e+04 4.763959e+04 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Computer Associate 82657.00000 6.612560e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.612560e+05 6.612560e+05 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Computer Specialist 110650.47059 1.881058e+06 469.53 2.761941e+01 0.000 0.00 17 0.000000e+00 0.00 1.881528e+06 1.881058e+06 469.53 NULL
2019 Dept Of Youth & Comm Dev Srvs Computer Systems Manager 114820.25000 1.837124e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.837124e+06 1.837124e+06 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Contract Specialist 62873.08621 3.646639e+06 13102.10 2.258983e+02 0.000 290.00 58 0.000000e+00 0.00 3.659741e+06 3.646639e+06 13102.10 NULL
2019 Dept Of Youth & Comm Dev Srvs Deputy Commissioner 188129.00000 3.762580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.762580e+05 3.762580e+05 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Executive Agency Counsel 163686.00000 3.273720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.273720e+05 3.273720e+05 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Graphic Artist 64454.00000 6.445400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.445400e+04 6.445400e+04 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Management Auditor 74827.37500 5.986190e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.986190e+05 5.986190e+05 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Motor Vehicle Operator 60403.00000 6.040300e+04 3953.69 3.953690e+03 3953.690 90.25 1 3.953690e+03 3953.69 6.435669e+04 6.435669e+04 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Photographer 52252.50000 5.225250e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.225250e+04 5.225250e+04 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Principal Administrative Associate - Lev 1 & 2 Non Supvr 66203.98745 1.324080e+06 1215.61 6.078050e+01 0.000 27.00 20 0.000000e+00 0.00 1.325295e+06 1.324080e+06 1215.61 NULL
2019 Dept Of Youth & Comm Dev Srvs Procurement Analyst 58868.33333 5.298150e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.298150e+05 5.298150e+05 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Secretary 51681.00000 5.168100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.168100e+04 5.168100e+04 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Senior Field Supervisor 7553.01039 8.534902e+05 0.00 0.000000e+00 0.000 0.00 113 0.000000e+00 0.00 8.534902e+05 8.534902e+05 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Staff Analyst 73779.75000 2.951190e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.951190e+05 2.951190e+05 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Staff Analyst Trainee 42373.00000 4.237300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.237300e+04 4.237300e+04 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Summer Graduate Intern 1640.31210 1.640312e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.640312e+03 1.640312e+03 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Supervisor Of Motor Transport 63658.00000 6.365800e+04 10024.73 1.002473e+04 10024.730 222.25 1 1.002473e+04 10024.73 7.368273e+04 7.368273e+04 0.00 NULL
2019 Dept Of Youth & Comm Dev Srvs Youth Coordinator 55275.18911 5.527519e+05 6225.69 6.225690e+02 199.440 166.75 10 1.994400e+02 1994.40 5.589776e+05 5.547463e+05 4231.29 NULL
2019 Dept. Of Design & Construction Accountant 68009.50000 1.632228e+06 10206.13 4.252554e+02 0.000 253.50 24 0.000000e+00 0.00 1.642434e+06 1.632228e+06 10206.13 NULL
2019 Dept. Of Design & Construction Adm Manager-Non-Mgrl From M1/M2 76639.91304 1.762718e+06 7604.35 3.306239e+02 0.000 198.25 23 0.000000e+00 0.00 1.770322e+06 1.762718e+06 7604.35 NULL
2019 Dept. Of Design & Construction Admin Community Relations Specialist 85718.00000 7.714620e+05 23397.26 2.599696e+03 2201.090 540.75 9 2.201090e+03 19809.81 7.948593e+05 7.912718e+05 3587.45 NULL
2019 Dept. Of Design & Construction Admin Construction Project Manager 107919.04348 2.482138e+06 60406.74 2.626380e+03 331.000 941.75 23 3.310000e+02 7613.00 2.542545e+06 2.489751e+06 52793.74 NULL
2019 Dept. Of Design & Construction Administrative Accountant 108918.33333 3.267550e+05 5276.09 1.758697e+03 0.000 105.00 3 0.000000e+00 0.00 3.320311e+05 3.267550e+05 5276.09 NULL
2019 Dept. Of Design & Construction Administrative Architect 122035.74419 5.247537e+06 13704.19 3.187021e+02 0.000 198.75 43 0.000000e+00 0.00 5.261241e+06 5.247537e+06 13704.19 NULL
2019 Dept. Of Design & Construction Administrative City Planner 141799.00000 1.417990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.417990e+05 1.417990e+05 0.00 NULL
2019 Dept. Of Design & Construction Administrative Community Relations Specialist 183838.33333 5.515150e+05 564.06 1.880200e+02 0.000 0.00 3 0.000000e+00 0.00 5.520791e+05 5.515150e+05 564.06 NULL
2019 Dept. Of Design & Construction Administrative Construction Project Manager 148439.20000 7.421960e+05 4131.89 8.263780e+02 0.000 74.75 5 0.000000e+00 0.00 7.463279e+05 7.421960e+05 4131.89 NULL
2019 Dept. Of Design & Construction Administrative Engineer 133510.82759 1.161544e+07 318195.99 3.657425e+03 0.000 4629.75 87 0.000000e+00 0.00 1.193364e+07 1.161544e+07 318195.99 NULL
2019 Dept. Of Design & Construction Administrative Graphic Artist 105143.50000 2.102870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.102870e+05 2.102870e+05 0.00 NULL
2019 Dept. Of Design & Construction Administrative Landmarks Preservationist 137637.00000 1.376370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.376370e+05 1.376370e+05 0.00 NULL
2019 Dept. Of Design & Construction Administrative Landscape Architect 129162.75000 5.166510e+05 27634.89 6.908722e+03 0.000 354.50 4 0.000000e+00 0.00 5.442859e+05 5.166510e+05 27634.89 NULL
2019 Dept. Of Design & Construction Administrative Manager 136030.50000 2.720610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.720610e+05 2.720610e+05 0.00 NULL
2019 Dept. Of Design & Construction Administrative Procurement Analyst 89189.31250 1.427029e+06 1782.96 1.114350e+02 0.000 31.00 16 0.000000e+00 0.00 1.428812e+06 1.427029e+06 1782.96 NULL
2019 Dept. Of Design & Construction Administrative Project Manager 112310.32117 1.538651e+07 252869.01 1.845759e+03 0.000 3827.25 137 0.000000e+00 0.00 1.563938e+07 1.538651e+07 252869.01 NULL
2019 Dept. Of Design & Construction Administrative Public Information Specialist 150393.50000 3.007870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.007870e+05 3.007870e+05 0.00 NULL
2019 Dept. Of Design & Construction Administrative Public Records Officer 91000.00000 9.100000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.100000e+04 9.100000e+04 0.00 NULL
2019 Dept. Of Design & Construction Administrative Staff Analyst 108045.51351 3.997684e+06 5767.01 1.558651e+02 0.000 104.25 37 0.000000e+00 0.00 4.003451e+06 3.997684e+06 5767.01 NULL
2019 Dept. Of Design & Construction Administrative Supervisor Of Building Maintenance 96363.00000 9.636300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.636300e+04 9.636300e+04 0.00 NULL
2019 Dept. Of Design & Construction Agency Attorney 80251.60000 4.012580e+05 1318.68 2.637360e+02 0.000 21.25 5 0.000000e+00 0.00 4.025767e+05 4.012580e+05 1318.68 NULL
2019 Dept. Of Design & Construction Agency Attorney Interne 60000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2019 Dept. Of Design & Construction Agency Chief Contracting Officer 155497.50000 3.109950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.109950e+05 3.109950e+05 0.00 NULL
2019 Dept. Of Design & Construction Architect 98499.71429 2.068494e+06 1429.52 6.807238e+01 0.000 23.50 21 0.000000e+00 0.00 2.069924e+06 2.068494e+06 1429.52 NULL
2019 Dept. Of Design & Construction Architectural Intern 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2019 Dept. Of Design & Construction Asbestos Hazard Investigator 67345.83333 4.040750e+05 18.66 3.110000e+00 0.000 0.00 6 0.000000e+00 0.00 4.040937e+05 4.040750e+05 18.66 NULL
2019 Dept. Of Design & Construction Assistant Architect 78622.25000 3.144890e+05 3.18 7.950000e-01 0.000 0.00 4 0.000000e+00 0.00 3.144922e+05 3.144890e+05 3.18 NULL
2019 Dept. Of Design & Construction Assistant Chemical Engineer 83151.00000 8.315100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.315100e+04 8.315100e+04 0.00 NULL
2019 Dept. Of Design & Construction Assistant Civil Engineer 69241.16327 1.017845e+07 298802.80 2.032672e+03 29.360 6536.25 147 2.936000e+01 4315.92 1.047725e+07 1.018277e+07 294486.88 NULL
2019 Dept. Of Design & Construction Assistant Electrical Engineer 69311.75000 2.772470e+05 3075.67 7.689175e+02 249.070 61.50 4 2.490700e+02 996.28 2.803227e+05 2.782433e+05 2079.39 NULL
2019 Dept. Of Design & Construction Assistant Environmental Engineer 68702.50000 1.374050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.374050e+05 1.374050e+05 0.00 NULL
2019 Dept. Of Design & Construction Assistant Landscape Architect 70255.80000 3.512790e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.512790e+05 3.512790e+05 0.00 NULL
2019 Dept. Of Design & Construction Assistant Mechanical Engineer 71084.75000 2.843390e+05 16803.75 4.200938e+03 4065.035 365.25 4 4.065035e+03 16260.14 3.011428e+05 3.005991e+05 543.61 NULL
2019 Dept. Of Design & Construction Assistant Urban Designer 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2019 Dept. Of Design & Construction Associate Inspector 70590.00000 7.059000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.059000e+04 7.059000e+04 0.00 NULL
2019 Dept. Of Design & Construction Associate Investigator 67499.00000 3.374950e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.374950e+05 3.374950e+05 0.00 NULL
2019 Dept. Of Design & Construction Associate Project Manager 89262.27399 1.097926e+07 363710.42 2.956995e+03 6.410 5911.50 123 6.410000e+00 788.43 1.134297e+07 1.098005e+07 362921.99 NULL
2019 Dept. Of Design & Construction Associate Public Health Sanitarian 95577.00000 9.557700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.557700e+04 9.557700e+04 0.00 NULL
2019 Dept. Of Design & Construction Associate Staff Analyst 86098.00000 1.119274e+06 167.37 1.287462e+01 0.000 3.50 13 0.000000e+00 0.00 1.119441e+06 1.119274e+06 167.37 NULL
2019 Dept. Of Design & Construction Associate Urban Designer 88324.70588 1.501520e+06 2863.28 1.684282e+02 0.000 43.00 17 0.000000e+00 0.00 1.504383e+06 1.501520e+06 2863.28 NULL
2019 Dept. Of Design & Construction Certified It Administrator 91499.00000 3.659960e+05 375.05 9.376250e+01 0.000 0.00 4 0.000000e+00 0.00 3.663710e+05 3.659960e+05 375.05 NULL
2019 Dept. Of Design & Construction Certified It Developer 103266.25000 8.261300e+05 10.26 1.282500e+00 0.000 0.00 8 0.000000e+00 0.00 8.261403e+05 8.261300e+05 10.26 NULL
2019 Dept. Of Design & Construction Certified Local Area Network Administrator 124190.00000 1.241900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.241900e+05 1.241900e+05 0.00 NULL
2019 Dept. Of Design & Construction City Planner 95618.50000 3.824740e+05 0.47 1.175000e-01 0.000 0.00 4 0.000000e+00 0.00 3.824745e+05 3.824740e+05 0.47 NULL
2019 Dept. Of Design & Construction Civil Engineer 94299.47917 4.526375e+06 156471.09 3.259814e+03 145.700 2460.25 48 1.457000e+02 6993.60 4.682846e+06 4.533369e+06 149477.49 NULL
2019 Dept. Of Design & Construction Civil Engineering Intern 54550.29851 3.654870e+06 78142.29 1.166303e+03 2.620 2325.00 67 2.620000e+00 175.54 3.733012e+06 3.655046e+06 77966.75 NULL
2019 Dept. Of Design & Construction Clerical Aide 39868.00000 3.986800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.986800e+04 3.986800e+04 0.00 NULL
2019 Dept. Of Design & Construction Clerical Associate 51345.95122 2.105184e+06 12258.91 2.989978e+02 0.000 418.50 41 0.000000e+00 0.00 2.117443e+06 2.105184e+06 12258.91 NULL
2019 Dept. Of Design & Construction College Aide 8115.31250 1.460756e+05 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.460756e+05 1.460756e+05 0.00 NULL
2019 Dept. Of Design & Construction College Aide - Assignment Levels Ii And Iii 7800.65750 3.120263e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.120263e+04 3.120263e+04 0.00 NULL
2019 Dept. Of Design & Construction Community Assistant 30100.94794 2.107066e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.107066e+05 2.107066e+05 0.00 NULL
2019 Dept. Of Design & Construction Community Associate 45358.01437 9.525183e+05 2179.37 1.037795e+02 0.000 86.50 21 0.000000e+00 0.00 9.546977e+05 9.525183e+05 2179.37 NULL
2019 Dept. Of Design & Construction Community Coordinator 62839.91030 2.136557e+06 7553.82 2.221712e+02 0.000 180.50 34 0.000000e+00 0.00 2.144111e+06 2.136557e+06 7553.82 NULL
2019 Dept. Of Design & Construction Computer Aide-Non-Spvr 63629.00000 6.362900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.362900e+04 6.362900e+04 0.00 NULL
2019 Dept. Of Design & Construction Computer Associate 76064.85714 5.324540e+05 7683.62 1.097660e+03 0.000 148.50 7 0.000000e+00 0.00 5.401376e+05 5.324540e+05 7683.62 NULL
2019 Dept. Of Design & Construction Computer Operations Manager 123742.00000 2.474840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.474840e+05 2.474840e+05 0.00 NULL
2019 Dept. Of Design & Construction Computer Programmer Analyst 66398.25000 2.655930e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.655930e+05 2.655930e+05 0.00 NULL
2019 Dept. Of Design & Construction Computer Service Technician 54876.25000 2.195050e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.195050e+05 2.195050e+05 0.00 NULL
2019 Dept. Of Design & Construction Computer Specialist 102212.57692 2.657527e+06 2201.19 8.466115e+01 0.000 11.75 26 0.000000e+00 0.00 2.659728e+06 2.657527e+06 2201.19 NULL
2019 Dept. Of Design & Construction Computer Systems Manager 125969.00000 1.259690e+06 1487.11 1.487110e+02 0.000 32.00 10 0.000000e+00 0.00 1.261177e+06 1.259690e+06 1487.11 NULL
2019 Dept. Of Design & Construction Construction Project Manager 84223.24728 1.061213e+07 434228.37 3.446257e+03 144.205 7589.25 126 1.442050e+02 18169.83 1.104636e+07 1.063030e+07 416058.54 NULL
2019 Dept. Of Design & Construction Construction Project Manager Intern 58805.85714 8.232820e+05 12806.40 9.147429e+02 19.240 325.25 14 1.924000e+01 269.36 8.360884e+05 8.235514e+05 12537.04 NULL
2019 Dept. Of Design & Construction Deputy Commissioner 194311.00000 1.943110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.943110e+05 1.943110e+05 0.00 NULL
2019 Dept. Of Design & Construction Director For Equal Employement Opportunity 123633.00000 1.236330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.236330e+05 1.236330e+05 0.00 NULL
2019 Dept. Of Design & Construction Electrical Engineer 83822.00000 8.382200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.382200e+04 8.382200e+04 0.00 NULL
2019 Dept. Of Design & Construction Engineering Technician 63961.08696 1.471105e+06 26177.13 1.138136e+03 0.000 682.50 23 0.000000e+00 0.00 1.497282e+06 1.471105e+06 26177.13 NULL
2019 Dept. Of Design & Construction Environmental Engineer 86025.00000 8.602500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.602500e+04 8.602500e+04 0.00 NULL
2019 Dept. Of Design & Construction Estimator 73405.30000 7.340530e+05 4684.79 4.684790e+02 0.000 111.00 10 0.000000e+00 0.00 7.387378e+05 7.340530e+05 4684.79 NULL
2019 Dept. Of Design & Construction Executive Agency Counsel 162899.00000 1.303192e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.303192e+06 1.303192e+06 0.00 NULL
2019 Dept. Of Design & Construction Executive Program Specialist 204500.00000 2.045000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.045000e+05 2.045000e+05 0.00 NULL
2019 Dept. Of Design & Construction Geologist 71011.87500 5.680950e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.680950e+05 5.680950e+05 0.00 NULL
2019 Dept. Of Design & Construction Graphic Artist 82025.00000 3.281000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.281000e+05 3.281000e+05 0.00 NULL
2019 Dept. Of Design & Construction Highway Transportation Specialist 95733.50000 1.914670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.914670e+05 1.914670e+05 0.00 NULL
2019 Dept. Of Design & Construction Highways And Sewers Inspector 61732.33333 1.851970e+05 11314.99 3.771663e+03 1056.990 249.00 3 1.056990e+03 3170.97 1.965120e+05 1.883680e+05 8144.02 NULL
2019 Dept. Of Design & Construction Industrial Hygienist 66572.66667 1.997180e+05 38.59 1.286333e+01 0.000 0.00 3 0.000000e+00 0.00 1.997566e+05 1.997180e+05 38.59 NULL
2019 Dept. Of Design & Construction Inspector 77921.00000 7.792100e+04 1037.80 1.037800e+03 1037.800 12.75 1 1.037800e+03 1037.80 7.895880e+04 7.895880e+04 0.00 NULL
2019 Dept. Of Design & Construction Investigator 61637.00000 6.163700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.163700e+04 6.163700e+04 0.00 NULL
2019 Dept. Of Design & Construction Investigator Empl Disc 51242.00000 2.562100e+05 4294.88 8.589760e+02 943.000 118.25 5 8.589760e+02 4294.88 2.605049e+05 2.605049e+05 0.00 NULL
2019 Dept. Of Design & Construction Landscape Architect 96292.00000 7.703360e+05 21792.47 2.724059e+03 0.000 336.50 8 0.000000e+00 0.00 7.921285e+05 7.703360e+05 21792.47 NULL
2019 Dept. Of Design & Construction Management Auditor 77417.00000 3.870850e+05 6927.27 1.385454e+03 0.000 116.25 5 0.000000e+00 0.00 3.940123e+05 3.870850e+05 6927.27 NULL
2019 Dept. Of Design & Construction Mechanical Engineer 96265.20000 4.813260e+05 74.38 1.487600e+01 0.000 0.00 5 0.000000e+00 0.00 4.814004e+05 4.813260e+05 74.38 NULL
2019 Dept. Of Design & Construction Mechanical Engineering Intern 60447.00000 1.208940e+05 141.65 7.082500e+01 70.825 4.25 2 7.082500e+01 141.65 1.210356e+05 1.210356e+05 0.00 NULL
2019 Dept. Of Design & Construction Motor Vehicle Operator 47429.00000 9.485800e+04 111.67 5.583500e+01 55.835 0.00 2 5.583500e+01 111.67 9.496967e+04 9.496967e+04 0.00 NULL
2019 Dept. Of Design & Construction Motor Vehicle Supervisor 58380.50000 1.167610e+05 3707.10 1.853550e+03 1853.550 82.00 2 1.853550e+03 3707.10 1.204681e+05 1.204681e+05 0.00 NULL
2019 Dept. Of Design & Construction Principal Administrative Associate - Lev 1 & 2 Non Supvr 62346.67742 1.932747e+06 34347.98 1.107999e+03 0.000 816.75 31 0.000000e+00 0.00 1.967095e+06 1.932747e+06 34347.98 NULL
2019 Dept. Of Design & Construction Principal Title Examiner 62306.00000 1.246120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.246120e+05 1.246120e+05 0.00 NULL
2019 Dept. Of Design & Construction Procurement Analyst 71733.78571 1.004273e+06 9435.89 6.739921e+02 0.000 237.25 14 0.000000e+00 0.00 1.013709e+06 1.004273e+06 9435.89 NULL
2019 Dept. Of Design & Construction Program Producer 88087.00000 8.808700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.808700e+04 8.808700e+04 0.00 NULL
2019 Dept. Of Design & Construction Project Manager 66869.55932 3.945304e+06 105102.36 1.781396e+03 0.000 2199.25 59 0.000000e+00 0.00 4.050406e+06 3.945304e+06 105102.36 NULL
2019 Dept. Of Design & Construction Project Manager Intern# 53394.46667 8.009170e+05 4466.86 2.977907e+02 0.000 126.00 15 0.000000e+00 0.00 8.053839e+05 8.009170e+05 4466.86 NULL
2019 Dept. Of Design & Construction Public Records Aide 46202.28571 6.468320e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 6.468320e+05 6.468320e+05 0.00 NULL
2019 Dept. Of Design & Construction Research Assistant 66739.00000 6.673900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.673900e+04 6.673900e+04 0.00 NULL
2019 Dept. Of Design & Construction Secretary 53840.16667 6.460820e+05 1438.88 1.199067e+02 0.000 47.00 12 0.000000e+00 0.00 6.475209e+05 6.460820e+05 1438.88 NULL
2019 Dept. Of Design & Construction Secretary To The Commissioner Of Ddc 80808.00000 8.080800e+04 1428.29 1.428290e+03 1428.290 38.00 1 1.428290e+03 1428.29 8.223629e+04 8.223629e+04 0.00 NULL
2019 Dept. Of Design & Construction Senior Estimator 86273.15385 2.243102e+06 26739.93 1.028459e+03 0.000 443.75 26 0.000000e+00 0.00 2.269842e+06 2.243102e+06 26739.93 NULL
2019 Dept. Of Design & Construction Special Assistant 126000.00000 1.260000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.260000e+05 1.260000e+05 0.00 NULL
2019 Dept. Of Design & Construction Special Assistant To The Commissioner 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2019 Dept. Of Design & Construction Staff Analyst 66087.02857 2.313046e+06 5460.60 1.560171e+02 0.000 132.25 35 0.000000e+00 0.00 2.318507e+06 2.313046e+06 5460.60 NULL
2019 Dept. Of Design & Construction Staff Analyst Trainee 49310.33333 4.437930e+05 170.14 1.890444e+01 0.000 6.50 9 0.000000e+00 0.00 4.439631e+05 4.437930e+05 170.14 NULL
2019 Dept. Of Design & Construction Statistician 67571.00000 6.757100e+04 4005.68 4.005680e+03 4005.680 90.50 1 4.005680e+03 4005.68 7.157668e+04 7.157668e+04 0.00 NULL
2019 Dept. Of Design & Construction Stock Worker 46406.50000 9.281300e+04 1364.30 6.821500e+02 682.150 46.50 2 6.821500e+02 1364.30 9.417730e+04 9.417730e+04 0.00 NULL
2019 Dept. Of Design & Construction Summer College Intern 2409.07500 1.204538e+05 0.00 0.000000e+00 0.000 0.00 50 0.000000e+00 0.00 1.204538e+05 1.204538e+05 0.00 NULL
2019 Dept. Of Design & Construction Summer Graduate Intern 3350.10000 5.025150e+04 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 5.025150e+04 5.025150e+04 0.00 NULL
2019 Dept. Of Design & Construction Supervising Special Officer 68778.00000 6.877800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.877800e+04 6.877800e+04 0.00 NULL
2019 Dept. Of Design & Construction Supervisor Of Electrical Installations & Maintenance 81972.60000 4.098630e+05 20113.35 4.022670e+03 0.000 332.25 5 0.000000e+00 0.00 4.299763e+05 4.098630e+05 20113.35 NULL
2019 Dept. Of Design & Construction Supervisor Of Mechanical Installations & Maintenance 82661.00000 8.266100e+04 113.17 1.131700e+02 113.170 0.00 1 1.131700e+02 113.17 8.277417e+04 8.277417e+04 0.00 NULL
2019 Dept. Of Design & Construction Supervisor Of Stock Workers 61926.00000 6.192600e+04 3548.40 3.548400e+03 3548.400 96.00 1 3.548400e+03 3548.40 6.547440e+04 6.547440e+04 0.00 NULL
2019 Dept. Of Design & Construction Surveyor 74737.81818 3.288464e+06 96018.97 2.182249e+03 36.695 1930.00 44 3.669500e+01 1614.58 3.384483e+06 3.290079e+06 94404.39 NULL
2019 Dept. Of Homeless Services Adm Manager-Non-Mgrl From M1/M2 66698.83333 1.200579e+06 45987.48 2.554860e+03 1.380 923.00 18 1.380000e+00 24.84 1.246566e+06 1.200604e+06 45962.64 NULL
2019 Dept. Of Homeless Services Admin Community Relations Specialist 85475.12121 2.820679e+06 89458.82 2.710873e+03 1226.080 1687.50 33 1.226080e+03 40460.64 2.910138e+06 2.861140e+06 48998.18 NULL
2019 Dept. Of Homeless Services Admin Contract Specialist 112872.60000 5.643630e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.643630e+05 5.643630e+05 0.00 NULL
2019 Dept. Of Homeless Services Admin Job Opor Spec-Managerial 125155.00000 7.509300e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.509300e+05 7.509300e+05 0.00 NULL
2019 Dept. Of Homeless Services Admin Job Opportunity Spec Nm 90237.57143 6.316630e+05 241.55 3.450714e+01 0.000 5.50 7 0.000000e+00 0.00 6.319046e+05 6.316630e+05 241.55 NULL
2019 Dept. Of Homeless Services Administrative City Planner 112753.00000 2.255060e+05 1458.32 7.291600e+02 729.160 23.75 2 7.291600e+02 1458.32 2.269643e+05 2.269643e+05 0.00 NULL
2019 Dept. Of Homeless Services Administrative Community Relations Specialist 182509.00000 1.825090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.825090e+05 1.825090e+05 0.00 NULL
2019 Dept. Of Homeless Services Administrative Construction Project Manager 127579.50000 2.551590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.551590e+05 2.551590e+05 0.00 NULL
2019 Dept. Of Homeless Services Administrative Contract Specialist 92973.75000 7.437900e+05 1795.13 2.243913e+02 0.000 43.00 8 0.000000e+00 0.00 7.455851e+05 7.437900e+05 1795.13 NULL
2019 Dept. Of Homeless Services Administrative Director Of Social Services 108475.13194 1.562042e+07 131758.44 9.149892e+02 0.000 2439.75 144 0.000000e+00 0.00 1.575218e+07 1.562042e+07 131758.44 NULL
2019 Dept. Of Homeless Services Administrative Engineer 107000.00000 1.070000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.070000e+05 1.070000e+05 0.00 NULL
2019 Dept. Of Homeless Services Administrative Housing Development Specialist 83480.00000 1.669600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.669600e+05 1.669600e+05 0.00 NULL
2019 Dept. Of Homeless Services Administrative Management Auditor 99363.00000 9.936300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.936300e+04 9.936300e+04 0.00 NULL
2019 Dept. Of Homeless Services Administrative Nutritionist 93866.00000 9.386600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.386600e+04 9.386600e+04 0.00 NULL
2019 Dept. Of Homeless Services Administrative Public Information Specialist 101947.50000 2.038950e+05 7362.10 3.681050e+03 3681.050 114.50 2 3.681050e+03 7362.10 2.112571e+05 2.112571e+05 0.00 NULL
2019 Dept. Of Homeless Services Administrative Staff Analyst 86697.50847 5.115153e+06 56338.43 9.548886e+02 0.000 985.75 59 0.000000e+00 0.00 5.171491e+06 5.115153e+06 56338.43 NULL
2019 Dept. Of Homeless Services Administrative Supervisor Of Building Maintenance 109965.78571 1.539521e+06 2697.95 1.927107e+02 0.000 52.00 14 0.000000e+00 0.00 1.542219e+06 1.539521e+06 2697.95 NULL
2019 Dept. Of Homeless Services Agency Medical Director 213076.00000 2.130760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.130760e+05 2.130760e+05 0.00 NULL
2019 Dept. Of Homeless Services Architect 89942.00000 8.994200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.994200e+04 8.994200e+04 0.00 NULL
2019 Dept. Of Homeless Services Assistant Comissioner For Family Operations 166872.00000 1.668720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.668720e+05 1.668720e+05 0.00 NULL
2019 Dept. Of Homeless Services Assistant Deputy Administrator 214848.00000 2.148480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.148480e+05 2.148480e+05 0.00 NULL
2019 Dept. Of Homeless Services Assistant Deputy Commissioner Ss 177021.66667 5.310650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.310650e+05 5.310650e+05 0.00 NULL
2019 Dept. Of Homeless Services Assistant Superintendent Of Welfare Shelters 66673.64103 5.200544e+06 768691.81 9.855023e+03 9469.500 16010.50 78 9.469500e+03 738621.00 5.969236e+06 5.939165e+06 30070.81 NULL
2019 Dept. Of Homeless Services Associate Commissioner For Adult Services 209546.00000 2.095460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.095460e+05 2.095460e+05 0.00 NULL
2019 Dept. Of Homeless Services Associate Contract Specialist 67265.00000 6.726500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.726500e+04 6.726500e+04 0.00 NULL
2019 Dept. Of Homeless Services Associate Fraud Investigator 69450.26471 4.722618e+06 506142.12 7.443266e+03 6440.850 9970.25 68 6.440850e+03 437977.80 5.228760e+06 5.160596e+06 68164.32 NULL
2019 Dept. Of Homeless Services Associate Investigator 74506.00000 7.450600e+04 13224.59 1.322459e+04 13224.590 253.25 1 1.322459e+04 13224.59 8.773059e+04 8.773059e+04 0.00 NULL
2019 Dept. Of Homeless Services Associate Labor Relations Analyst 74071.00000 7.407100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.407100e+04 7.407100e+04 0.00 NULL
2019 Dept. Of Homeless Services Associate Project Manager 79047.92857 1.106671e+06 36440.01 2.602858e+03 0.235 742.00 14 2.350000e-01 3.29 1.143111e+06 1.106674e+06 36436.72 NULL
2019 Dept. Of Homeless Services Associate Staff Analyst 77060.53125 2.465937e+06 15414.75 4.817109e+02 0.000 310.25 32 0.000000e+00 0.00 2.481352e+06 2.465937e+06 15414.75 NULL
2019 Dept. Of Homeless Services Asst Commissioner For Planning & Program Dev 146013.00000 1.460130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.460130e+05 1.460130e+05 0.00 NULL
2019 Dept. Of Homeless Services Business Promotion Coordinator 77423.00000 1.548460e+05 11362.62 5.681310e+03 5681.310 190.25 2 5.681310e+03 11362.62 1.662086e+05 1.662086e+05 0.00 NULL
2019 Dept. Of Homeless Services Carpenter NA NA 409790.24 2.048951e+04 16996.140 5327.25 20 1.699614e+04 339922.80 NA NA NA NULL
2019 Dept. Of Homeless Services Caseworker 44769.68635 4.835126e+06 244398.96 2.262953e+03 368.195 7048.25 108 3.681950e+02 39765.06 5.079525e+06 4.874891e+06 204633.90 NULL
2019 Dept. Of Homeless Services Cement Mason NA NA 228509.40 3.808490e+04 49014.160 2587.75 6 3.808490e+04 228509.40 NA NA NA NULL
2019 Dept. Of Homeless Services City Laborer NA NA 393953.11 2.073437e+04 19221.870 6589.00 19 1.922187e+04 365215.53 NA NA NA NULL
2019 Dept. Of Homeless Services City Research Scientist 77986.00000 3.899300e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.899300e+05 3.899300e+05 0.00 NULL
2019 Dept. Of Homeless Services Clerical Associate 45232.38095 9.498800e+05 72702.29 3.462014e+03 268.640 1932.75 21 2.686400e+02 5641.44 1.022582e+06 9.555214e+05 67060.85 NULL
2019 Dept. Of Homeless Services Community Assistant 36211.84024 6.119801e+06 823682.63 4.873862e+03 2024.850 30470.10 169 2.024850e+03 342199.65 6.943484e+06 6.462001e+06 481482.98 NULL
2019 Dept. Of Homeless Services Community Associate 43157.84028 6.214729e+06 514169.62 3.570622e+03 600.945 17327.40 144 6.009450e+02 86536.08 6.728899e+06 6.301265e+06 427633.54 NULL
2019 Dept. Of Homeless Services Community Coordinator 59636.92521 2.152893e+07 1661785.52 4.603284e+03 1027.300 38767.18 361 1.027300e+03 370855.30 2.319072e+07 2.189979e+07 1290930.22 NULL
2019 Dept. Of Homeless Services Computer Specialist 91499.00000 9.149900e+04 7.58 7.580000e+00 7.580 0.00 1 7.580000e+00 7.58 9.150658e+04 9.150658e+04 0.00 NULL
2019 Dept. Of Homeless Services Computer Systems Manager 131156.25000 5.246250e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.246250e+05 5.246250e+05 0.00 NULL
2019 Dept. Of Homeless Services Construction Project Manager 82622.00000 4.131100e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.131100e+05 4.131100e+05 0.00 NULL
2019 Dept. Of Homeless Services Counselor 57855.75000 2.314230e+05 3528.18 8.820450e+02 84.955 98.50 4 8.495500e+01 339.82 2.349512e+05 2.317628e+05 3188.36 NULL
2019 Dept. Of Homeless Services Deputy Commissioner 182516.00000 3.650320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.650320e+05 3.650320e+05 0.00 NULL
2019 Dept. Of Homeless Services Director Of Management Planning 162553.00000 1.625530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.625530e+05 1.625530e+05 0.00 NULL
2019 Dept. Of Homeless Services Electrician NA NA 485253.23 2.426266e+04 33132.405 5527.50 20 2.426266e+04 485253.23 NA NA NA NULL
2019 Dept. Of Homeless Services Electrician’s Helper NA NA 16821.33 8.410665e+03 8410.665 311.50 2 8.410665e+03 16821.33 NA NA NA NULL
2019 Dept. Of Homeless Services Executive Assistant To The Commissioner 140802.00000 1.408020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.408020e+05 1.408020e+05 0.00 NULL
2019 Dept. Of Homeless Services Executive Program Specialist 105266.00000 3.157980e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.157980e+05 3.157980e+05 0.00 NULL
2019 Dept. Of Homeless Services Fraud Investigator 49550.60140 7.085736e+06 864485.65 6.045354e+03 2722.410 22003.25 143 2.722410e+03 389304.63 7.950222e+06 7.475041e+06 475181.02 NULL
2019 Dept. Of Homeless Services Housekeeper 40529.25000 1.621170e+05 77332.07 1.933302e+04 16072.325 2459.50 4 1.607233e+04 64289.30 2.394491e+05 2.264063e+05 13042.77 NULL
2019 Dept. Of Homeless Services Human Resources Technician 37888.00000 3.788800e+04 418.00 4.180000e+02 418.000 18.75 1 4.180000e+02 418.00 3.830600e+04 3.830600e+04 0.00 NULL
2019 Dept. Of Homeless Services Investigator Empl Disc 70779.00000 7.077900e+04 701.78 7.017800e+02 701.780 0.00 1 7.017800e+02 701.78 7.148078e+04 7.148078e+04 0.00 NULL
2019 Dept. Of Homeless Services Locksmith NA NA 8255.64 4.127820e+03 4127.820 180.00 2 4.127820e+03 8255.64 NA NA NA NULL
2019 Dept. Of Homeless Services Maintenance Worker NA NA 178997.05 1.118732e+04 12753.195 4162.70 16 1.118732e+04 178997.05 NA NA NA NULL
2019 Dept. Of Homeless Services Mechanical Engineer 76925.00000 1.538500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.538500e+05 1.538500e+05 0.00 NULL
2019 Dept. Of Homeless Services Motor Vehicle Operator 47455.69048 1.993139e+06 372644.79 8.872495e+03 3339.875 9889.78 42 3.339875e+03 140274.75 2.365784e+06 2.133414e+06 232370.04 NULL
2019 Dept. Of Homeless Services Motor Vehicle Supervisor 56450.80000 5.645080e+05 139144.40 1.391444e+04 11228.170 3530.75 10 1.122817e+04 112281.70 7.036524e+05 6.767897e+05 26862.70 NULL
2019 Dept. Of Homeless Services Oiler NA NA 137733.02 1.147775e+04 11327.635 1692.75 12 1.132764e+04 135931.62 NA NA NA NULL
2019 Dept. Of Homeless Services Painter NA NA 23068.38 2.306838e+03 0.000 368.00 10 0.000000e+00 0.00 NA NA NA NULL
2019 Dept. Of Homeless Services Plumber NA NA 397157.54 1.891226e+04 19681.730 3724.75 21 1.891226e+04 397157.54 NA NA NA NULL
2019 Dept. Of Homeless Services Plumber’s Helper NA NA 34116.65 1.705833e+04 17058.325 470.00 2 1.705833e+04 34116.65 NA NA NA NULL
2019 Dept. Of Homeless Services Principal Administrative Associate - Lev 1 & 2 Non Supvr 56428.19355 1.749274e+06 151670.41 4.892594e+03 532.640 3641.50 31 5.326400e+02 16511.84 1.900944e+06 1.765786e+06 135158.57 NULL
2019 Dept. Of Homeless Services Procurement Analyst 57362.00000 5.736200e+04 61.60 6.160000e+01 61.600 0.00 1 6.160000e+01 61.60 5.742360e+04 5.742360e+04 0.00 NULL
2019 Dept. Of Homeless Services Recreation Director 46514.00000 4.651400e+04 13249.87 1.324987e+04 13249.870 398.00 1 1.324987e+04 13249.87 5.976387e+04 5.976387e+04 0.00 NULL
2019 Dept. Of Homeless Services Recreation Supervisor 57543.00000 5.754300e+04 3516.07 3.516070e+03 3516.070 125.25 1 3.516070e+03 3516.07 6.105907e+04 6.105907e+04 0.00 NULL
2019 Dept. Of Homeless Services Research Assistant 55907.00000 5.590700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.590700e+04 5.590700e+04 0.00 NULL
2019 Dept. Of Homeless Services Secretary 48712.00000 1.948480e+05 38.31 9.577500e+00 0.000 1.00 4 0.000000e+00 0.00 1.948863e+05 1.948480e+05 38.31 NULL
2019 Dept. Of Homeless Services Secretary To The Commissioner 79261.00000 7.926100e+04 3709.21 3.709210e+03 3709.210 84.75 1 3.709210e+03 3709.21 8.297021e+04 8.297021e+04 0.00 NULL
2019 Dept. Of Homeless Services Senior Stationary Engineer NA NA 44446.12 4.444612e+04 44446.120 443.00 1 4.444612e+04 44446.12 NA NA NA NULL
2019 Dept. Of Homeless Services Sheet Metal Worker NA NA 69147.05 3.457353e+04 34573.525 653.75 2 3.457353e+04 69147.05 NA NA NA NULL
2019 Dept. Of Homeless Services Social Worker 56763.63333 1.702909e+06 31755.53 1.058518e+03 1.720 698.75 30 1.720000e+00 51.60 1.734665e+06 1.702961e+06 31703.93 NULL
2019 Dept. Of Homeless Services Space Analyst 67078.30000 6.707830e+05 49911.80 4.991180e+03 0.000 1051.00 10 0.000000e+00 0.00 7.206948e+05 6.707830e+05 49911.80 NULL
2019 Dept. Of Homeless Services Special Officer 37997.15393 3.431143e+07 6495791.93 7.193568e+03 5605.650 233047.35 903 5.605650e+03 5061901.95 4.080722e+07 3.937333e+07 1433889.98 NULL
2019 Dept. Of Homeless Services Staff Analyst 67598.30000 6.759830e+05 1320.78 1.320780e+02 0.000 34.25 10 0.000000e+00 0.00 6.773038e+05 6.759830e+05 1320.78 NULL
2019 Dept. Of Homeless Services Stationary Engineer NA NA 5250.50 2.625250e+03 2625.250 57.00 2 2.625250e+03 5250.50 NA NA NA NULL
2019 Dept. Of Homeless Services Stock Worker 33590.50000 2.015430e+05 3820.09 6.366817e+02 535.690 184.75 6 5.356900e+02 3214.14 2.053631e+05 2.047571e+05 605.95 NULL
2019 Dept. Of Homeless Services Strategic Initiative Specialist 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2019 Dept. Of Homeless Services Superintendent Of Adult Institutions 74129.36364 8.154230e+05 41248.76 3.749887e+03 2645.010 825.25 11 2.645010e+03 29095.11 8.566718e+05 8.445181e+05 12153.65 NULL
2019 Dept. Of Homeless Services Supervising Special Officer 54374.99091 5.981249e+06 1202051.65 1.092774e+04 8964.825 31158.53 110 8.964825e+03 986130.75 7.183301e+06 6.967380e+06 215920.90 NULL
2019 Dept. Of Homeless Services Supervisor Bricklayer NA NA 57180.14 5.718014e+04 57180.140 678.50 1 5.718014e+04 57180.14 NA NA NA NULL
2019 Dept. Of Homeless Services Supervisor Carpenter NA NA 97083.24 3.236108e+04 28237.600 1235.00 3 2.823760e+04 84712.80 NA NA NA NULL
2019 Dept. Of Homeless Services Supervisor Electrician NA NA 148572.44 2.476207e+04 20646.725 1592.50 6 2.064672e+04 123880.35 NA NA NA NULL
2019 Dept. Of Homeless Services Supervisor I 56800.28571 1.590408e+06 135148.12 4.826719e+03 3235.985 3153.00 28 3.235985e+03 90607.58 1.725556e+06 1.681016e+06 44540.54 NULL
2019 Dept. Of Homeless Services Supervisor I Social Work 63468.00000 6.346800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.346800e+04 6.346800e+04 0.00 NULL
2019 Dept. Of Homeless Services Supervisor Ii 67172.30000 6.717230e+05 75957.11 7.595711e+03 5958.135 1570.25 10 5.958135e+03 59581.35 7.476801e+05 7.313043e+05 16375.76 NULL
2019 Dept. Of Homeless Services Supervisor Ii Social Work 73050.63158 1.387962e+06 68201.44 3.589549e+03 2962.140 1344.50 19 2.962140e+03 56280.66 1.456163e+06 1.444243e+06 11920.78 NULL
2019 Dept. Of Homeless Services Supervisor Iii Social Work 78876.25000 3.155050e+05 7711.78 1.927945e+03 1923.320 115.00 4 1.923320e+03 7693.28 3.232168e+05 3.231983e+05 18.50 NULL
2019 Dept. Of Homeless Services Supervisor Of Mechanics NA NA 192373.68 2.404671e+04 81.205 2063.75 8 8.120500e+01 649.64 NA NA NA NULL
2019 Dept. Of Homeless Services Supervisor Of Motor Transport 72060.00000 7.206000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.206000e+04 7.206000e+04 0.00 NULL
2019 Dept. Of Homeless Services Supervisor Of Stock Workers 55429.00000 1.662870e+05 39447.22 1.314907e+04 13204.460 928.75 3 1.314907e+04 39447.22 2.057342e+05 2.057342e+05 0.00 NULL
2019 Dept. Of Homeless Services Supervisor Painter NA NA 12017.61 1.201761e+04 12017.610 167.75 1 1.201761e+04 12017.61 NA NA NA NULL
2019 Dept. Of Homeless Services Supervisor Plumber NA NA 138168.25 4.605608e+04 48925.160 1264.50 3 4.605608e+04 138168.25 NA NA NA NULL
2019 District Attorney Kings County Accountant 71636.00000 1.432720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.432720e+05 1.432720e+05 0.00 NULL
2019 District Attorney Kings County Adm Manager-Non-Mgrl From M1/M2 80088.66667 9.610640e+05 37191.33 3.099278e+03 0.000 715.00 12 0.000000e+00 0.00 9.982553e+05 9.610640e+05 37191.33 NULL
2019 District Attorney Kings County Administrative Chief 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2019 District Attorney Kings County Administrative Procurement Analyst 70289.00000 7.028900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.028900e+04 7.028900e+04 0.00 NULL
2019 District Attorney Kings County Administrative Project Manager 94332.00000 3.773280e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.773280e+05 3.773280e+05 0.00 NULL
2019 District Attorney Kings County Administrative Staff Analyst 137410.66667 4.122320e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.122320e+05 4.122320e+05 0.00 NULL
2019 District Attorney Kings County Assistant District Attorney 95571.15345 5.543127e+07 0.00 0.000000e+00 0.000 0.00 580 0.000000e+00 0.00 5.543127e+07 5.543127e+07 0.00 NULL
2019 District Attorney Kings County City Research Scientist 125185.00000 1.251850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.251850e+05 1.251850e+05 0.00 NULL
2019 District Attorney Kings County City Tax Auditor 72645.00000 7.264500e+04 8.41 8.410000e+00 8.410 0.00 1 8.410000e+00 8.41 7.265341e+04 7.265341e+04 0.00 NULL
2019 District Attorney Kings County Clerical Associate 47375.15385 6.158770e+05 7430.85 5.716038e+02 0.000 228.25 13 0.000000e+00 0.00 6.233078e+05 6.158770e+05 7430.85 NULL
2019 District Attorney Kings County Community Assistant 35961.61313 3.596161e+06 66956.47 6.695647e+02 0.000 2264.75 100 0.000000e+00 0.00 3.663118e+06 3.596161e+06 66956.47 NULL
2019 District Attorney Kings County Community Associate 45559.18526 1.512565e+07 72985.75 2.198366e+02 0.000 2043.18 332 0.000000e+00 0.00 1.519864e+07 1.512565e+07 72985.75 NULL
2019 District Attorney Kings County Community Coordinator 67989.42603 4.283334e+06 42959.56 6.818978e+02 0.000 932.50 63 0.000000e+00 0.00 4.326293e+06 4.283334e+06 42959.56 NULL
2019 District Attorney Kings County Computer Associate 76634.50000 4.598070e+05 37154.94 6.192490e+03 4026.430 722.50 6 4.026430e+03 24158.58 4.969619e+05 4.839656e+05 12996.36 NULL
2019 District Attorney Kings County Computer Specialist 115198.50000 4.607940e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.607940e+05 4.607940e+05 0.00 NULL
2019 District Attorney Kings County Computer Systems Manager 190638.00000 1.906380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.906380e+05 1.906380e+05 0.00 NULL
2019 District Attorney Kings County Confidential Strategy Planner 112984.00000 4.519360e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.519360e+05 4.519360e+05 0.00 NULL
2019 District Attorney Kings County District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2019 District Attorney Kings County Executive Assistant 96479.28571 1.350710e+06 4040.09 2.885779e+02 0.000 62.50 14 0.000000e+00 0.00 1.354750e+06 1.350710e+06 4040.09 NULL
2019 District Attorney Kings County Executive Program Specialist 102534.00000 1.025340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.025340e+05 1.025340e+05 0.00 NULL
2019 District Attorney Kings County Media Services Technician 52745.44444 4.747090e+05 32830.65 3.647850e+03 3580.810 839.25 9 3.580810e+03 32227.29 5.075397e+05 5.069363e+05 603.36 NULL
2019 District Attorney Kings County Office Assistant 37822.00000 3.782200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.782200e+04 3.782200e+04 0.00 NULL
2019 District Attorney Kings County Paralegal Aide 48695.30000 4.869530e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.869530e+05 4.869530e+05 0.00 NULL
2019 District Attorney Kings County Principal Administrative Associate - Lev 1 & 2 Non Supvr 63012.30769 8.191600e+05 8764.16 6.741662e+02 0.000 251.75 13 0.000000e+00 0.00 8.279242e+05 8.191600e+05 8764.16 NULL
2019 District Attorney Kings County Procurement Analyst 62517.50000 1.250350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.250350e+05 1.250350e+05 0.00 NULL
2019 District Attorney Kings County Reporter/ Stenographer 54570.47826 1.255121e+06 741.57 3.224217e+01 0.000 23.75 23 0.000000e+00 0.00 1.255863e+06 1.255121e+06 741.57 NULL
2019 District Attorney Kings County Secretary 50077.16667 3.004630e+05 269.37 4.489500e+01 0.000 8.75 6 0.000000e+00 0.00 3.007324e+05 3.004630e+05 269.37 NULL
2019 District Attorney Kings County Social Worker 42772.50000 1.710900e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.710900e+05 1.710900e+05 0.00 NULL
2019 District Attorney Kings County Special Officer 37752.00000 7.550400e+04 10061.93 5.030965e+03 5030.965 348.50 2 5.030965e+03 10061.93 8.556593e+04 8.556593e+04 0.00 NULL
2019 District Attorney Kings County Staff Analyst 65086.00000 6.508600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.508600e+04 6.508600e+04 0.00 NULL
2019 District Attorney Kings County Strategic Initiative Specialist 131858.00000 5.274320e+05 1232.81 3.082025e+02 0.000 26.25 4 0.000000e+00 0.00 5.286648e+05 5.274320e+05 1232.81 NULL
2019 District Attorney Kings County Supervising Accountant Investigator 93530.00000 8.417700e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.417700e+05 8.417700e+05 0.00 NULL
2019 District Attorney Qns County Adm Manager-Non-Mgrl From M1/M2 82166.66667 7.395000e+05 50355.59 5.595066e+03 5855.510 897.75 9 5.595066e+03 50355.59 7.898556e+05 7.898556e+05 0.00 NULL
2019 District Attorney Qns County Administrative Manager 143165.00000 2.863300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.863300e+05 2.863300e+05 0.00 NULL
2019 District Attorney Qns County Administrative Public Information Specialist 134766.00000 1.347660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.347660e+05 1.347660e+05 0.00 NULL
2019 District Attorney Qns County Administrative Staff Analyst 130021.20000 6.501060e+05 259.64 5.192800e+01 0.000 5.75 5 0.000000e+00 0.00 6.503656e+05 6.501060e+05 259.64 NULL
2019 District Attorney Qns County Agency Chief Contracting Officer 125018.00000 1.250180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250180e+05 1.250180e+05 0.00 NULL
2019 District Attorney Qns County Assistant District Attorney 105054.94079 3.739956e+07 3.18 8.932600e-03 0.000 0.00 356 0.000000e+00 0.00 3.739956e+07 3.739956e+07 3.18 NULL
2019 District Attorney Qns County Certified It Administrator 124092.00000 1.240920e+05 10969.35 1.096935e+04 10969.350 117.25 1 1.096935e+04 10969.35 1.350614e+05 1.350614e+05 0.00 NULL
2019 District Attorney Qns County Certified It Developer 95317.00000 9.531700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.531700e+04 9.531700e+04 0.00 NULL
2019 District Attorney Qns County City Seasonal Aide 3532.34215 4.592045e+04 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 4.592045e+04 4.592045e+04 0.00 NULL
2019 District Attorney Qns County Clerical Associate 51103.18182 1.124270e+06 28462.50 1.293750e+03 0.000 762.00 22 0.000000e+00 0.00 1.152732e+06 1.124270e+06 28462.50 NULL
2019 District Attorney Qns County Community Assistant 36406.98430 1.820349e+06 114518.69 2.290374e+03 227.175 4397.50 50 2.271750e+02 11358.75 1.934868e+06 1.831708e+06 103159.94 NULL
2019 District Attorney Qns County Community Associate 41165.02042 6.380578e+06 161810.27 1.043937e+03 1.060 5051.40 155 1.060000e+00 164.30 6.542388e+06 6.380742e+06 161645.97 NULL
2019 District Attorney Qns County Community Coordinator 69626.81167 1.671043e+06 58869.18 2.452883e+03 0.190 1170.00 24 1.900000e-01 4.56 1.729913e+06 1.671048e+06 58864.62 NULL
2019 District Attorney Qns County Community Service Aide 28505.00000 1.140200e+05 5536.70 1.384175e+03 442.690 304.75 4 4.426900e+02 1770.76 1.195567e+05 1.157908e+05 3765.94 NULL
2019 District Attorney Qns County Computer Associate 71655.66667 2.149670e+05 20504.43 6.834810e+03 9080.380 356.25 3 6.834810e+03 20504.43 2.354714e+05 2.354714e+05 0.00 NULL
2019 District Attorney Qns County Computer Specialist 97744.00000 2.932320e+05 20105.11 6.701703e+03 8282.540 311.50 3 6.701703e+03 20105.11 3.133371e+05 3.133371e+05 0.00 NULL
2019 District Attorney Qns County Customer Information Representative Ma L 1549 39170.00000 3.917000e+04 3186.89 3.186890e+03 3186.890 125.25 1 3.186890e+03 3186.89 4.235689e+04 4.235689e+04 0.00 NULL
2019 District Attorney Qns County Director Of Public Information 31338.90000 3.133890e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.133890e+04 3.133890e+04 0.00 NULL
2019 District Attorney Qns County District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2019 District Attorney Qns County It Security Specialist 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2019 District Attorney Qns County Paralegal Aide 50916.88889 1.374756e+06 47788.54 1.769946e+03 241.810 1383.50 27 2.418100e+02 6528.87 1.422545e+06 1.381285e+06 41259.67 NULL
2019 District Attorney Qns County Principal Administrative Associate - Lev 1 & 2 Non Supvr 67521.33333 8.102560e+05 45150.57 3.762548e+03 367.635 938.25 12 3.676350e+02 4411.62 8.554066e+05 8.146676e+05 40738.95 NULL
2019 District Attorney Qns County Private Secretary 100911.50000 2.018230e+05 84.32 4.216000e+01 42.160 0.00 2 4.216000e+01 84.32 2.019073e+05 2.019073e+05 0.00 NULL
2019 District Attorney Qns County Reporter/ Stenographer 66976.16667 1.205571e+06 20229.72 1.123873e+03 3.860 458.50 18 3.860000e+00 69.48 1.225801e+06 1.205640e+06 20160.24 NULL
2019 District Attorney Qns County Secretary 62161.28571 4.351290e+05 33089.88 4.727126e+03 0.700 691.75 7 7.000000e-01 4.90 4.682189e+05 4.351339e+05 33084.98 NULL
2019 District Attorney Qns County Special Assistant To Da 114413.94000 5.720697e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.720697e+05 5.720697e+05 0.00 NULL
2019 District Attorney Qns County Staff Analyst 92966.00000 9.296600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.296600e+04 9.296600e+04 0.00 NULL
2019 District Attorney Qns County Summer College Intern 621.00000 6.210000e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.210000e+02 6.210000e+02 0.00 NULL
2019 District Attorney Qns County Supervising Accountant Investigator 94500.00000 1.890000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.890000e+05 1.890000e+05 0.00 NULL
2019 District Attorney Richmond Cou Administrative Procurement Analyst 105215.25000 1.052152e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.052152e+05 1.052152e+05 0.00 NULL
2019 District Attorney Richmond Cou Administrative Public Information Specialist 75010.60000 7.501060e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.501060e+04 7.501060e+04 0.00 NULL
2019 District Attorney Richmond Cou Administrative Staff Analyst 151227.75000 1.512278e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.512278e+05 1.512278e+05 0.00 NULL
2019 District Attorney Richmond Cou Assistant District Attorney 97744.74408 7.428601e+06 0.00 0.000000e+00 0.000 0.00 76 0.000000e+00 0.00 7.428601e+06 7.428601e+06 0.00 NULL
2019 District Attorney Richmond Cou Clerical Associate 57593.42857 4.031540e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.031540e+05 4.031540e+05 0.00 NULL
2019 District Attorney Richmond Cou Community Assistant 25400.36875 1.016015e+05 298.14 7.453500e+01 63.940 13.25 4 6.394000e+01 255.76 1.018996e+05 1.018572e+05 42.38 NULL
2019 District Attorney Richmond Cou Community Associate 52898.85385 2.750740e+06 5102.89 9.813250e+01 0.000 150.25 52 0.000000e+00 0.00 2.755843e+06 2.750740e+06 5102.89 NULL
2019 District Attorney Richmond Cou Community Coordinator 72459.46667 1.086892e+06 6100.09 4.066727e+02 0.000 134.75 15 0.000000e+00 0.00 1.092992e+06 1.086892e+06 6100.09 NULL
2019 District Attorney Richmond Cou Computer Programmer Analyst 76688.00000 7.668800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.668800e+04 7.668800e+04 0.00 NULL
2019 District Attorney Richmond Cou Computer Systems Manager 125685.66500 2.513713e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.513713e+05 2.513713e+05 0.00 NULL
2019 District Attorney Richmond Cou District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2019 District Attorney Richmond Cou Paralegal Aide 64513.00000 6.451300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.451300e+04 6.451300e+04 0.00 NULL
2019 District Attorney Richmond Cou Principal Administrative Associate - Lev 1 & 2 Non Supvr 69691.50000 1.393830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.393830e+05 1.393830e+05 0.00 NULL
2019 District Attorney Richmond Cou Reporter/ Stenographer 58416.36450 2.920818e+05 1.05 2.100000e-01 0.000 0.00 5 0.000000e+00 0.00 2.920829e+05 2.920818e+05 1.05 NULL
2019 District Attorney Richmond Cou Secretary 53771.00000 5.377100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.377100e+04 5.377100e+04 0.00 NULL
2019 District Attorney Richmond Cou Social Worker 64888.50000 1.297770e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.297770e+05 1.297770e+05 0.00 NULL
2019 District Attorney Richmond Cou Special Assistant To The District Attorney 104921.25833 6.295276e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.295276e+05 6.295276e+05 0.00 NULL
2019 District Attorney-Manhattan Admin Contract Specialist 135898.00000 2.717960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.717960e+05 2.717960e+05 0.00 NULL
2019 District Attorney-Manhattan Administrative Chief 137230.73684 7.822152e+06 58.44 1.025263e+00 0.000 0.00 57 0.000000e+00 0.00 7.822210e+06 7.822152e+06 58.44 NULL
2019 District Attorney-Manhattan Administrative Public Records Officer 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2019 District Attorney-Manhattan Assistant District Attorney 107340.22820 6.504818e+07 0.00 0.000000e+00 0.000 0.00 606 0.000000e+00 0.00 6.504818e+07 6.504818e+07 0.00 NULL
2019 District Attorney-Manhattan Assistant Media Services Technican 35393.00000 1.061790e+05 8480.15 2.826717e+03 1939.530 404.50 3 1.939530e+03 5818.59 1.146591e+05 1.119976e+05 2661.56 NULL
2019 District Attorney-Manhattan Carpenter NA NA 3317.65 8.294125e+02 998.635 45.50 4 8.294125e+02 3317.65 NA NA NA NULL
2019 District Attorney-Manhattan Chief Investigating Accountant 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2019 District Attorney-Manhattan City Custodial Assistant 37875.05882 6.438760e+05 25554.21 1.503189e+03 0.860 703.50 17 8.600000e-01 14.62 6.694302e+05 6.438906e+05 25539.59 NULL
2019 District Attorney-Manhattan City Laborer NA NA 31532.68 5.255447e+03 4799.565 476.00 6 4.799565e+03 28797.39 NA NA NA NULL
2019 District Attorney-Manhattan Clerical Associate 59081.44444 1.063466e+06 9383.99 5.213328e+02 17.570 196.00 18 1.757000e+01 316.26 1.072850e+06 1.063782e+06 9067.73 NULL
2019 District Attorney-Manhattan College Aide 168.94972 3.716894e+04 0.00 0.000000e+00 0.000 0.00 220 0.000000e+00 0.00 3.716894e+04 3.716894e+04 0.00 NULL
2019 District Attorney-Manhattan Community Assistant 41501.19271 1.577045e+06 75560.99 1.988447e+03 76.195 1915.75 38 7.619500e+01 2895.41 1.652606e+06 1.579941e+06 72665.58 NULL
2019 District Attorney-Manhattan Community Associate 48635.08058 3.263414e+07 560527.61 8.353616e+02 0.120 15709.35 671 1.200000e-01 80.52 3.319467e+07 3.263422e+07 560447.09 NULL
2019 District Attorney-Manhattan Community Coordinator 80199.04795 1.170906e+07 350382.89 2.399883e+03 0.000 5624.25 146 0.000000e+00 0.00 1.205944e+07 1.170906e+07 350382.89 NULL
2019 District Attorney-Manhattan County Detective 62384.62500 4.990770e+05 55475.48 6.934435e+03 3776.600 1198.75 8 3.776600e+03 30212.80 5.545525e+05 5.292898e+05 25262.68 NULL
2019 District Attorney-Manhattan District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2019 District Attorney-Manhattan Electrician NA NA 13864.02 6.932010e+03 6932.010 157.00 2 6.932010e+03 13864.02 NA NA NA NULL
2019 District Attorney-Manhattan Electrician’s Helper NA NA 6115.84 6.115840e+03 6115.840 109.75 1 6.115840e+03 6115.84 NA NA NA NULL
2019 District Attorney-Manhattan Engineering Technician 62173.50000 1.243470e+05 44.41 2.220500e+01 22.205 1.50 2 2.220500e+01 44.41 1.243914e+05 1.243914e+05 0.00 NULL
2019 District Attorney-Manhattan High School Student Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2019 District Attorney-Manhattan Interpreter 59098.42857 4.136890e+05 10517.96 1.502566e+03 0.000 176.00 7 0.000000e+00 0.00 4.242070e+05 4.136890e+05 10517.96 NULL
2019 District Attorney-Manhattan Management Auditor 105870.00000 1.058700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.058700e+05 1.058700e+05 0.00 NULL
2019 District Attorney-Manhattan Media Services Technician 66120.45455 7.273250e+05 243086.29 2.209875e+04 15293.100 4370.75 11 1.529310e+04 168224.10 9.704113e+05 8.955491e+05 74862.19 NULL
2019 District Attorney-Manhattan Office Assistant 48770.50000 9.754100e+04 6308.75 3.154375e+03 3154.375 173.00 2 3.154375e+03 6308.75 1.038498e+05 1.038498e+05 0.00 NULL
2019 District Attorney-Manhattan Painter NA NA 10202.10 5.101050e+03 5101.050 162.75 2 5.101050e+03 10202.10 NA NA NA NULL
2019 District Attorney-Manhattan Paralegal Aide 77813.00000 7.781300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.781300e+04 7.781300e+04 0.00 NULL
2019 District Attorney-Manhattan Photographer 57764.00000 1.732920e+05 40446.46 1.348215e+04 15101.100 1024.75 3 1.348215e+04 40446.46 2.137385e+05 2.137385e+05 0.00 NULL
2019 District Attorney-Manhattan Principal Accountant Investigator 120655.94737 2.292463e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.292463e+06 2.292463e+06 0.00 NULL
2019 District Attorney-Manhattan Principal Administrative Associate - Lev 1 & 2 Non Supvr 76967.75000 3.078710e+05 3056.81 7.642025e+02 294.170 59.75 4 2.941700e+02 1176.68 3.109278e+05 3.090477e+05 1880.13 NULL
2019 District Attorney-Manhattan Reporter/ Stenographer 76274.70968 2.364516e+06 4668.28 1.505897e+02 0.000 88.75 31 0.000000e+00 0.00 2.369184e+06 2.364516e+06 4668.28 NULL
2019 District Attorney-Manhattan Secretary 85106.33333 5.106380e+05 16829.85 2.804975e+03 1348.430 327.75 6 1.348430e+03 8090.58 5.274678e+05 5.187286e+05 8739.27 NULL
2019 District Attorney-Manhattan Senior Accountant Investigator 73788.75000 1.106831e+06 25965.58 1.731039e+03 1.380 457.00 15 1.380000e+00 20.70 1.132797e+06 1.106852e+06 25944.88 NULL
2019 District Attorney-Manhattan Senior Secretary 62282.00000 2.491280e+05 211.84 5.296000e+01 0.000 4.50 4 0.000000e+00 0.00 2.493398e+05 2.491280e+05 211.84 NULL
2019 District Attorney-Manhattan Special Officer 42018.55556 3.781670e+05 20013.87 2.223763e+03 920.690 576.25 9 9.206900e+02 8286.21 3.981809e+05 3.864532e+05 11727.66 NULL
2019 District Attorney-Manhattan Staff Analyst Trainee 83996.00000 8.399600e+04 728.31 7.283100e+02 728.310 15.50 1 7.283100e+02 728.31 8.472431e+04 8.472431e+04 0.00 NULL
2019 District Attorney-Manhattan Supervising Accountant Investigator 86407.50000 1.728150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.728150e+05 1.728150e+05 0.00 NULL
2019 District Attorney-Manhattan Supervising Special Officer 51993.00000 5.199300e+04 3921.84 3.921840e+03 3921.840 105.00 1 3.921840e+03 3921.84 5.591484e+04 5.591484e+04 0.00 NULL
2019 District Attorney-Manhattan Supervisor Electrician NA NA 8354.84 8.354840e+03 8354.840 88.50 1 8.354840e+03 8354.84 NA NA NA NULL
2019 District Attorney-Manhattan Supervisor Of Mechanics 129686.00000 1.296860e+05 17068.40 1.706840e+04 17068.400 186.50 1 1.706840e+04 17068.40 1.467544e+05 1.467544e+05 0.00 NULL
2019 District Attorney-Special Narc Administrative Chief 178692.00000 5.360760e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.360760e+05 5.360760e+05 0.00 NULL
2019 District Attorney-Special Narc Administrative Public Records Officer 131580.00000 2.631600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.631600e+05 2.631600e+05 0.00 NULL
2019 District Attorney-Special Narc Assistant District Attorney 106071.95588 1.442579e+07 0.00 0.000000e+00 0.000 0.00 136 0.000000e+00 0.00 1.442579e+07 1.442579e+07 0.00 NULL
2019 District Attorney-Special Narc Clerical Associate 85542.60000 8.554260e+05 16060.77 1.606077e+03 0.000 197.75 10 0.000000e+00 0.00 8.714868e+05 8.554260e+05 16060.77 NULL
2019 District Attorney-Special Narc College Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2019 District Attorney-Special Narc Community Assistant 44854.50000 1.794180e+05 2275.81 5.689525e+02 127.460 87.50 4 1.274600e+02 509.84 1.816938e+05 1.799278e+05 1765.97 NULL
2019 District Attorney-Special Narc Community Associate 56618.47826 2.604450e+06 42509.10 9.241109e+02 0.000 860.50 46 0.000000e+00 0.00 2.646959e+06 2.604450e+06 42509.10 NULL
2019 District Attorney-Special Narc Community Coordinator 88528.72727 9.738160e+05 4798.25 4.362045e+02 0.000 62.25 11 0.000000e+00 0.00 9.786142e+05 9.738160e+05 4798.25 NULL
2019 District Attorney-Special Narc Computer Specialist 102205.00000 2.044100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.044100e+05 2.044100e+05 0.00 NULL
2019 District Attorney-Special Narc Confidential Secretary 95317.00000 1.906340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.906340e+05 1.906340e+05 0.00 NULL
2019 District Attorney-Special Narc Director Of Public Information 162700.00000 1.627000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.627000e+05 1.627000e+05 0.00 NULL
2019 District Attorney-Special Narc Paralegal Aide 82866.00000 4.971960e+05 609.21 1.015350e+02 0.000 11.75 6 0.000000e+00 0.00 4.978052e+05 4.971960e+05 609.21 NULL
2019 District Attorney-Special Narc Reporter/ Stenographer 78866.71429 5.520670e+05 3497.33 4.996186e+02 0.000 57.00 7 0.000000e+00 0.00 5.555643e+05 5.520670e+05 3497.33 NULL
2019 District Attorney-Special Narc Secretary 78458.66667 2.353760e+05 162.35 5.411667e+01 0.000 4.25 3 0.000000e+00 0.00 2.355384e+05 2.353760e+05 162.35 NULL
2019 District Attorney-Special Narc Special Assistant District Attorney 206416.00000 2.064160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.064160e+05 2.064160e+05 0.00 NULL
2019 District Attorney-Special Narc Supervising Computer Service Technician 86281.00000 8.628100e+04 375.01 3.750100e+02 375.010 0.00 1 3.750100e+02 375.01 8.665601e+04 8.665601e+04 0.00 NULL
2019 Doe Custodial Payrol Custodian Engineer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1318 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2019 Equal Employ Practices Comm Administrative Labor Relations Analyst 158488.00000 1.584880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.584880e+05 1.584880e+05 0.00 NULL
2019 Equal Employ Practices Comm Administrative Staff Analyst 84356.00000 8.435600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.435600e+04 8.435600e+04 0.00 NULL
2019 Equal Employ Practices Comm City Research Scientist 94625.86000 2.838776e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.838776e+05 2.838776e+05 0.00 NULL
2019 Equal Employ Practices Comm Community Coordinator 55032.36600 2.751618e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.751618e+05 2.751618e+05 0.00 NULL
2019 Equal Employ Practices Comm Computer Associate 68835.00000 6.883500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.883500e+04 6.883500e+04 0.00 NULL
2019 Equal Employ Practices Comm Executive Agency Counsel 108664.00000 2.173280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.173280e+05 2.173280e+05 0.00 NULL
2019 Equal Employ Practices Comm Executive Secretary 68378.00000 6.837800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.837800e+04 6.837800e+04 0.00 NULL
2019 Equal Employ Practices Comm Labor Relations Analyst 74000.00000 7.400000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.400000e+04 7.400000e+04 0.00 NULL
2019 Financial Info Svcs Agency Accountant 65016.00000 6.501600e+04 1616.35 1.616350e+03 1616.350 36.25 1 1.616350e+03 1616.35 6.663235e+04 6.663235e+04 0.00 NULL
2019 Financial Info Svcs Agency Adm Manager-Non-Mgrl From M1/M2 82280.80000 4.114040e+05 607.52 1.215040e+02 0.000 11.25 5 0.000000e+00 0.00 4.120115e+05 4.114040e+05 607.52 NULL
2019 Financial Info Svcs Agency Admin Contract Specialist 141247.00000 1.412470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.412470e+05 1.412470e+05 0.00 NULL
2019 Financial Info Svcs Agency Administrative Procurement Analyst 91592.50000 1.831850e+05 1313.49 6.567450e+02 656.745 27.00 2 6.567450e+02 1313.49 1.844985e+05 1.844985e+05 0.00 NULL
2019 Financial Info Svcs Agency Administrative Space Analyst 145069.00000 2.901380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.901380e+05 2.901380e+05 0.00 NULL
2019 Financial Info Svcs Agency Administrative Staff Analyst 117487.83333 1.409854e+06 52.56 4.380000e+00 0.000 1.00 12 0.000000e+00 0.00 1.409907e+06 1.409854e+06 52.56 NULL
2019 Financial Info Svcs Agency Agency Attorney 104604.00000 1.046040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.046040e+05 1.046040e+05 0.00 NULL
2019 Financial Info Svcs Agency Agency Chief Contracting Officer 148598.00000 1.485980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.485980e+05 1.485980e+05 0.00 NULL
2019 Financial Info Svcs Agency Associate Staff Analyst 88905.00000 2.667150e+05 3698.00 1.232667e+03 0.000 72.50 3 0.000000e+00 0.00 2.704130e+05 2.667150e+05 3698.00 NULL
2019 Financial Info Svcs Agency Certified It Administrator 101751.00000 1.017510e+05 3.06 3.060000e+00 3.060 0.00 1 3.060000e+00 3.06 1.017541e+05 1.017541e+05 0.00 NULL
2019 Financial Info Svcs Agency Certified Wide Area Network Administrator 126179.00000 1.261790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.261790e+05 1.261790e+05 0.00 NULL
2019 Financial Info Svcs Agency City Attendant 39087.00000 3.908700e+04 13234.63 1.323463e+04 13234.630 442.00 1 1.323463e+04 13234.63 5.232163e+04 5.232163e+04 0.00 NULL
2019 Financial Info Svcs Agency City Custodial Assistant 34878.00000 1.046340e+05 3609.31 1.203103e+03 0.000 167.50 3 0.000000e+00 0.00 1.082433e+05 1.046340e+05 3609.31 NULL
2019 Financial Info Svcs Agency Clerical Associate 41626.34868 2.081317e+05 174.59 3.491800e+01 0.000 1.00 5 0.000000e+00 0.00 2.083063e+05 2.081317e+05 174.59 NULL
2019 Financial Info Svcs Agency College Aide 8217.89150 8.217891e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.217891e+03 8.217891e+03 0.00 NULL
2019 Financial Info Svcs Agency College Aide - Assignment Levels Ii And Iii 10456.12625 5.228063e+04 920.18 1.840360e+02 0.000 59.25 5 0.000000e+00 0.00 5.320081e+04 5.228063e+04 920.18 NULL
2019 Financial Info Svcs Agency Community Associate 53551.00000 4.284080e+05 9752.13 1.219016e+03 0.000 300.00 8 0.000000e+00 0.00 4.381601e+05 4.284080e+05 9752.13 NULL
2019 Financial Info Svcs Agency Community Coordinator 71611.71429 5.012820e+05 1329.80 1.899714e+02 0.000 27.75 7 0.000000e+00 0.00 5.026118e+05 5.012820e+05 1329.80 NULL
2019 Financial Info Svcs Agency Computer Associate 74466.94118 3.797814e+06 295345.06 5.791080e+03 2854.030 5513.75 51 2.854030e+03 145555.53 4.093159e+06 3.943370e+06 149789.53 NULL
2019 Financial Info Svcs Agency Computer Operations Manager 130620.00000 1.306200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.306200e+05 1.306200e+05 0.00 NULL
2019 Financial Info Svcs Agency Computer Programmer Analyst 64843.50000 1.296870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.296870e+05 1.296870e+05 0.00 NULL
2019 Financial Info Svcs Agency Computer Specialist 107614.98305 6.349284e+06 25.25 4.279661e-01 0.000 0.50 59 0.000000e+00 0.00 6.349309e+06 6.349284e+06 25.25 NULL
2019 Financial Info Svcs Agency Computer Systems Manager 133722.71491 3.048878e+07 0.00 0.000000e+00 0.000 0.00 228 0.000000e+00 0.00 3.048878e+07 3.048878e+07 0.00 NULL
2019 Financial Info Svcs Agency Executive Agency Counsel 171625.80000 8.581290e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.581290e+05 8.581290e+05 0.00 NULL
2019 Financial Info Svcs Agency Executive Director 231227.00000 4.624540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.624540e+05 4.624540e+05 0.00 NULL
2019 Financial Info Svcs Agency It Automation And Monitoring Engineer 105561.42857 1.477860e+06 265.94 1.899571e+01 0.000 5.50 14 0.000000e+00 0.00 1.478126e+06 1.477860e+06 265.94 NULL
2019 Financial Info Svcs Agency It Infrastructure Engineer 119155.50000 4.766220e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.766220e+05 4.766220e+05 0.00 NULL
2019 Financial Info Svcs Agency It Project Specialist 116742.66667 1.050684e+06 25.47 2.830000e+00 0.000 0.00 9 0.000000e+00 0.00 1.050709e+06 1.050684e+06 25.47 NULL
2019 Financial Info Svcs Agency It Security Specialist 99069.46667 1.486042e+06 15240.66 1.016044e+03 0.000 269.00 15 0.000000e+00 0.00 1.501283e+06 1.486042e+06 15240.66 NULL
2019 Financial Info Svcs Agency It Service Management Specialist 91161.00000 9.116100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.116100e+04 9.116100e+04 0.00 NULL
2019 Financial Info Svcs Agency Motor Vehicle Operator 48473.00000 4.847300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.847300e+04 4.847300e+04 0.00 NULL
2019 Financial Info Svcs Agency Nycaps Process Analyst 120875.00000 1.208750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.208750e+05 1.208750e+05 0.00 NULL
2019 Financial Info Svcs Agency Principal Administrative Associate - Lev 1 & 2 Non Supvr 65176.42857 4.562350e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.562350e+05 4.562350e+05 0.00 NULL
2019 Financial Info Svcs Agency Secretary 61110.00000 6.111000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.111000e+04 6.111000e+04 0.00 NULL
2019 Financial Info Svcs Agency Senior It Architect 134843.33333 4.045300e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.045300e+05 4.045300e+05 0.00 NULL
2019 Financial Info Svcs Agency Staff Analyst 67304.00000 2.019120e+05 616.18 2.053933e+02 0.000 18.00 3 0.000000e+00 0.00 2.025282e+05 2.019120e+05 616.18 NULL
2019 Financial Info Svcs Agency Supervisor Of Office Machine Operations 49043.50000 9.808700e+04 15456.04 7.728020e+03 7728.020 473.25 2 7.728020e+03 15456.04 1.135430e+05 1.135430e+05 0.00 NULL
2019 Financial Info Svcs Agency Supervisor Of Stock Workers 78151.00000 7.815100e+04 64.57 6.457000e+01 64.570 1.50 1 6.457000e+01 64.57 7.821557e+04 7.821557e+04 0.00 NULL
2019 Financial Info Svcs Agency Telecommunications Associate 69971.00000 1.399420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.399420e+05 1.399420e+05 0.00 NULL
2019 Fire Department Accountant 63592.00000 1.271840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.271840e+05 1.271840e+05 0.00 NULL
2019 Fire Department Adm Manager-Non-Mgrl From M1/M2 75342.64571 5.650698e+06 184024.18 2.453656e+03 664.810 3855.75 75 6.648100e+02 49860.75 5.834723e+06 5.700559e+06 134163.43 NULL
2019 Fire Department Admin Community Relations Specialist 76836.90083 9.220428e+05 75741.88 6.311823e+03 0.000 1586.75 12 0.000000e+00 0.00 9.977847e+05 9.220428e+05 75741.88 NULL
2019 Fire Department Admin Inspector 78374.42857 5.486210e+05 229615.56 3.280222e+04 39569.770 4007.50 7 3.280222e+04 229615.56 7.782366e+05 7.782366e+05 0.00 NULL
2019 Fire Department Admin Tests & Meas Spec 137503.00000 1.375030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.375030e+05 1.375030e+05 0.00 NULL
2019 Fire Department Administrative Architect 126752.00000 1.267520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.267520e+05 1.267520e+05 0.00 NULL
2019 Fire Department Administrative Blasting Inspector 119939.00000 1.199390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.199390e+05 1.199390e+05 0.00 NULL
2019 Fire Department Administrative Community Relations Specialist 152600.00000 1.526000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.526000e+05 1.526000e+05 0.00 NULL
2019 Fire Department Administrative Construction Project Manager 144524.50000 2.890490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.890490e+05 2.890490e+05 0.00 NULL
2019 Fire Department Administrative Director Of Marine Maintenance 120510.00000 1.205100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.205100e+05 1.205100e+05 0.00 NULL
2019 Fire Department Administrative Engineer 120362.25000 4.814490e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.814490e+05 4.814490e+05 0.00 NULL
2019 Fire Department Administrative Fire Protection Inspector 106513.55556 9.586220e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.586220e+05 9.586220e+05 0.00 NULL
2019 Fire Department Administrative Graphic Artist 87548.00000 8.754800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.754800e+04 8.754800e+04 0.00 NULL
2019 Fire Department Administrative Inspector 101616.50000 2.032330e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.032330e+05 2.032330e+05 0.00 NULL
2019 Fire Department Administrative Investigator 103029.50000 2.060590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.060590e+05 2.060590e+05 0.00 NULL
2019 Fire Department Administrative Labor Relations Analyst 126300.50000 2.526010e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.526010e+05 2.526010e+05 0.00 NULL
2019 Fire Department Administrative Procurement Analyst 88886.34938 1.422182e+06 31647.44 1.977965e+03 51.010 707.00 16 5.101000e+01 816.16 1.453829e+06 1.422998e+06 30831.28 NULL
2019 Fire Department Administrative Project Manager 113462.15789 2.155781e+06 135.01 7.105790e+00 0.000 1.00 19 0.000000e+00 0.00 2.155916e+06 2.155781e+06 135.01 NULL
2019 Fire Department Administrative Public Information Specialist 110801.25000 4.432050e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.432050e+05 4.432050e+05 0.00 NULL
2019 Fire Department Administrative Public Records Officer 104295.00000 1.042950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.042950e+05 1.042950e+05 0.00 NULL
2019 Fire Department Administrative Quality Assurance Specialist 53053.10500 5.305311e+04 65.69 6.569000e+01 65.690 1.50 1 6.569000e+01 65.69 5.311879e+04 5.311879e+04 0.00 NULL
2019 Fire Department Administrative Staff Analyst 97445.23099 6.626276e+06 109576.78 1.611423e+03 0.000 1822.50 68 0.000000e+00 0.00 6.735852e+06 6.626276e+06 109576.78 NULL
2019 Fire Department Administrative Storekeeper 139427.00000 1.394270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.394270e+05 1.394270e+05 0.00 NULL
2019 Fire Department Administrative Supervisor Of Building Maintenance 133135.50000 2.662710e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.662710e+05 2.662710e+05 0.00 NULL
2019 Fire Department Administrator Of Medical Affairs 207387.00000 2.073870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.073870e+05 2.073870e+05 0.00 NULL
2019 Fire Department Agency Attorney 92765.86043 2.690210e+06 30683.61 1.058056e+03 0.000 557.25 29 0.000000e+00 0.00 2.720894e+06 2.690210e+06 30683.61 NULL
2019 Fire Department Agency Chief Contracting Officer 166580.00000 1.665800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.665800e+05 1.665800e+05 0.00 NULL
2019 Fire Department Agency Deputy Medical Director 171030.62500 1.368245e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.368245e+06 1.368245e+06 0.00 NULL
2019 Fire Department Architect 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2019 Fire Department Assistant Architect 64037.00000 6.403700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.403700e+04 6.403700e+04 0.00 NULL
2019 Fire Department Assistant Chemical Engineer 72524.50000 1.450490e+05 457.80 2.289000e+02 228.900 12.50 2 2.289000e+02 457.80 1.455068e+05 1.455068e+05 0.00 NULL
2019 Fire Department Assistant Chief Fire Marshal 209080.00000 4.181600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.181600e+05 4.181600e+05 0.00 NULL
2019 Fire Department Assistant Chief Of Department 230629.64706 3.920704e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 3.920704e+06 3.920704e+06 0.00 NULL
2019 Fire Department Assistant Civil Engineer 63728.00000 6.372800e+04 963.09 9.630900e+02 963.090 24.00 1 9.630900e+02 963.09 6.469109e+04 6.469109e+04 0.00 NULL
2019 Fire Department Assistant Commissioner 167097.16667 1.002583e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.002583e+06 1.002583e+06 0.00 NULL
2019 Fire Department Assistant Electrical Engineer 60997.66667 1.829930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.829930e+05 1.829930e+05 0.00 NULL
2019 Fire Department Assistant Environmental Engineer 74167.00000 7.416700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.416700e+04 7.416700e+04 0.00 NULL
2019 Fire Department Assistant Mechanical Engineer 68839.25000 2.753570e+05 20890.60 5.222650e+03 3541.715 372.50 4 3.541715e+03 14166.86 2.962476e+05 2.895239e+05 6723.74 NULL
2019 Fire Department Associate Commissioner 207000.00000 4.140000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.140000e+05 4.140000e+05 0.00 NULL
2019 Fire Department Associate Fire Protection Inspector 66871.10593 1.578158e+07 3630232.59 1.538234e+04 13064.305 71896.25 236 1.306431e+04 3083175.98 1.941181e+07 1.886476e+07 547056.61 NULL
2019 Fire Department Associate Inspector 67088.52632 1.274682e+06 554566.33 2.918770e+04 24259.600 10795.75 19 2.425960e+04 460932.40 1.829248e+06 1.735614e+06 93633.93 NULL
2019 Fire Department Associate Investigator 62108.00000 1.863240e+05 13901.44 4.633813e+03 1560.240 259.25 3 1.560240e+03 4680.72 2.002254e+05 1.910047e+05 9220.72 NULL
2019 Fire Department Associate Project Manager 85459.00000 1.367344e+06 30526.24 1.907890e+03 0.000 572.00 16 0.000000e+00 0.00 1.397870e+06 1.367344e+06 30526.24 NULL
2019 Fire Department Associate Staff Analyst 82463.31250 1.319413e+06 2743.75 1.714844e+02 0.000 45.25 16 0.000000e+00 0.00 1.322157e+06 1.319413e+06 2743.75 NULL
2019 Fire Department Attending Physician 57266.43416 2.863322e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.863322e+05 2.863322e+05 0.00 NULL
2019 Fire Department Auto Machinist NA NA 4973.06 4.973060e+03 4973.060 65.50 1 4.973060e+03 4973.06 NA NA NA NULL
2019 Fire Department Auto Mechanic NA NA 3031140.78 2.119679e+04 20563.390 51643.75 143 2.056339e+04 2940564.77 NA NA NA NULL
2019 Fire Department Automotive Service Worker 41404.90909 9.109080e+05 133880.50 6.085477e+03 3996.315 4488.25 22 3.996315e+03 87918.93 1.044788e+06 9.988269e+05 45961.57 NULL
2019 Fire Department Battalion Chief 155752.67990 6.276833e+07 1502638.51 3.728632e+03 0.000 13630.82 403 0.000000e+00 0.00 6.427097e+07 6.276833e+07 1502638.51 NULL
2019 Fire Department Bio-Medical Equipment Technician 51226.00000 5.122600e+04 68.65 6.865000e+01 68.650 0.00 1 6.865000e+01 68.65 5.129465e+04 5.129465e+04 0.00 NULL
2019 Fire Department Blacksmith’s Helper NA NA 6539.54 6.539540e+03 6539.540 120.50 1 6.539540e+03 6539.54 NA NA NA NULL
2019 Fire Department Captain 120383.16103 7.475794e+07 25632814.70 4.127667e+04 43190.380 264613.65 621 4.127667e+04 25632814.70 1.003908e+08 1.003908e+08 0.00 NULL
2019 Fire Department Carpenter NA NA 446105.86 2.478366e+04 23249.725 5902.75 18 2.324972e+04 418495.05 NA NA NA NULL
2019 Fire Department Case - Management Nurse 74887.27359 2.321505e+06 5801.07 1.871313e+02 0.000 102.25 31 0.000000e+00 0.00 2.327307e+06 2.321505e+06 5801.07 NULL
2019 Fire Department Cashier 44688.24000 4.468824e+04 2119.70 2.119700e+03 2119.700 57.00 1 2.119700e+03 2119.70 4.680794e+04 4.680794e+04 0.00 NULL
2019 Fire Department Cement Mason NA NA 46367.63 2.318381e+04 23183.815 533.75 2 2.318381e+04 46367.63 NA NA NA NULL
2019 Fire Department Certified Applications Developer 102719.00000 1.027190e+05 9580.24 9.580240e+03 9580.240 145.25 1 9.580240e+03 9580.24 1.122992e+05 1.122992e+05 0.00 NULL
2019 Fire Department Certified It Administrator 98159.89077 1.276079e+06 88963.89 6.843376e+03 3954.310 1345.25 13 3.954310e+03 51406.03 1.365042e+06 1.327485e+06 37557.86 NULL
2019 Fire Department Certified It Developer 107915.40000 5.395770e+05 508.67 1.017340e+02 0.000 9.75 5 0.000000e+00 0.00 5.400857e+05 5.395770e+05 508.67 NULL
2019 Fire Department Chaplain 28502.37500 2.280190e+05 21433.12 2.679140e+03 1193.815 600.25 8 1.193815e+03 9550.52 2.494521e+05 2.375695e+05 11882.60 NULL
2019 Fire Department Chief Fire Marshal 223897.00000 4.477940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.477940e+05 4.477940e+05 0.00 NULL
2019 Fire Department Chief Of Department 235526.00000 4.710520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.710520e+05 4.710520e+05 0.00 NULL
2019 Fire Department City Laborer NA NA 187434.98 1.249567e+04 9311.680 3496.75 15 9.311680e+03 139675.20 NA NA NA NULL
2019 Fire Department City Medical Specialist 44778.92477 1.074694e+06 59684.85 2.486869e+03 0.000 884.00 24 0.000000e+00 0.00 1.134379e+06 1.074694e+06 59684.85 NULL
2019 Fire Department City Research Scientist 92070.87500 1.473134e+06 7868.03 4.917519e+02 0.000 159.75 16 0.000000e+00 0.00 1.481002e+06 1.473134e+06 7868.03 NULL
2019 Fire Department Civil Engineer 100679.00000 1.006790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.006790e+05 1.006790e+05 0.00 NULL
2019 Fire Department Clerical Associate 47756.01040 4.727845e+06 328623.34 3.319428e+03 1.690 9036.75 99 1.690000e+00 167.31 5.056468e+06 4.728012e+06 328456.03 NULL
2019 Fire Department College Aide - Assignment Levels Ii And Iii 4177.50000 8.355000e+03 420.00 2.100000e+02 210.000 21.00 2 2.100000e+02 420.00 8.775000e+03 8.775000e+03 0.00 NULL
2019 Fire Department Commissioner 236088.00000 2.360880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.360880e+05 2.360880e+05 0.00 NULL
2019 Fire Department Communication Electrician NA NA 1761952.42 3.037849e+04 31298.500 24993.50 58 3.037849e+04 1761952.42 NA NA NA NULL
2019 Fire Department Community Assistant 40962.00000 4.096200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.096200e+04 4.096200e+04 0.00 NULL
2019 Fire Department Community Associate 44504.74018 1.112619e+06 66706.23 2.668249e+03 0.000 1776.25 25 0.000000e+00 0.00 1.179325e+06 1.112619e+06 66706.23 NULL
2019 Fire Department Community Coordinator 64070.36364 2.114322e+06 147966.05 4.483820e+03 2945.790 3117.25 33 2.945790e+03 97211.07 2.262288e+06 2.211533e+06 50754.98 NULL
2019 Fire Department Computer Associate 73394.04545 3.229338e+06 541946.56 1.231697e+04 7490.730 10016.75 44 7.490730e+03 329592.12 3.771285e+06 3.558930e+06 212354.44 NULL
2019 Fire Department Computer Service Technician 63969.00000 6.396900e+04 8226.30 8.226300e+03 8226.300 155.50 1 8.226300e+03 8226.30 7.219530e+04 7.219530e+04 0.00 NULL
2019 Fire Department Computer Specialist 100713.43529 8.560642e+06 212171.74 2.496138e+03 6.460 3137.50 85 6.460000e+00 549.10 8.772814e+06 8.561191e+06 211622.64 NULL
2019 Fire Department Computer Systems Manager 132005.50000 3.168132e+06 9548.33 3.978471e+02 0.000 119.50 24 0.000000e+00 0.00 3.177680e+06 3.168132e+06 9548.33 NULL
2019 Fire Department Construction Project Manager 75974.00000 7.597400e+04 4283.78 4.283780e+03 4283.780 61.75 1 4.283780e+03 4283.78 8.025778e+04 8.025778e+04 0.00 NULL
2019 Fire Department Counsel 179676.00000 1.796760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.796760e+05 1.796760e+05 0.00 NULL
2019 Fire Department Customer Information Representative Ma L 1549 55438.60000 2.771930e+05 2337.82 4.675640e+02 405.820 64.75 5 4.058200e+02 2029.10 2.795308e+05 2.792221e+05 308.72 NULL
2019 Fire Department Deputy Assistant Chief Of Department 227259.14286 3.181628e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 3.181628e+06 3.181628e+06 0.00 NULL
2019 Fire Department Deputy Chief 179515.96970 1.184805e+07 0.00 0.000000e+00 0.000 0.00 66 0.000000e+00 0.00 1.184805e+07 1.184805e+07 0.00 NULL
2019 Fire Department Deputy Commissioner 218779.00000 1.312674e+06 2248.75 3.747917e+02 0.000 0.00 6 0.000000e+00 0.00 1.314923e+06 1.312674e+06 2248.75 NULL
2019 Fire Department Director 111493.50000 2.229870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.229870e+05 2.229870e+05 0.00 NULL
2019 Fire Department Electrical Engineer 107424.00000 1.074240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074240e+05 1.074240e+05 0.00 NULL
2019 Fire Department Electrician NA NA 785537.95 4.364100e+04 34639.710 9200.25 18 3.463971e+04 623514.78 NA NA NA NULL
2019 Fire Department Emergency Medical Specialist Trainee 32520.60000 4.878090e+05 1149.69 7.664600e+01 0.000 71.25 15 0.000000e+00 0.00 4.889587e+05 4.878090e+05 1149.69 NULL
2019 Fire Department Emergency Medical Specialist-Emt 43465.26159 1.294395e+08 25590301.12 8.593117e+03 5523.090 715779.33 2978 5.523090e+03 16447762.02 1.550299e+08 1.458873e+08 9142539.10 NULL
2019 Fire Department Emergency Medical Specialist-Paramedic 61514.95503 5.198014e+07 15819493.64 1.872129e+04 14441.470 317515.94 845 1.444147e+04 12203042.15 6.779963e+07 6.418318e+07 3616451.49 NULL
2019 Fire Department Employee Assistance Program Specialist 58172.17252 7.562382e+05 231.94 1.784154e+01 0.000 5.00 13 0.000000e+00 0.00 7.564702e+05 7.562382e+05 231.94 NULL
2019 Fire Department Engineering Technician 54713.00000 5.471300e+04 12140.55 1.214055e+04 12140.550 284.00 1 1.214055e+04 12140.55 6.685355e+04 6.685355e+04 0.00 NULL
2019 Fire Department Executive Agency Counsel 135458.06667 2.031871e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 2.031871e+06 2.031871e+06 0.00 NULL
2019 Fire Department Executive Program Specialist 124612.00000 1.246120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.246120e+05 1.246120e+05 0.00 NULL
2019 Fire Department Fingerprint Technician Trainee 30458.00000 3.045800e+04 399.46 3.994600e+02 399.460 20.75 1 3.994600e+02 399.46 3.085746e+04 3.085746e+04 0.00 NULL
2019 Fire Department Fire Alarm Dispatcher 52884.37198 1.094706e+07 2207680.01 1.066512e+04 10246.290 61264.81 207 1.024629e+04 2120982.03 1.315475e+07 1.306805e+07 86697.98 NULL
2019 Fire Department Fire Marshal 95527.00000 1.404247e+07 4550338.06 3.095468e+04 26415.420 58141.43 147 2.641542e+04 3883066.74 1.859281e+07 1.792554e+07 667271.32 NULL
2019 Fire Department Fire Medical Officer 147145.22222 3.972921e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 3.972921e+06 3.972921e+06 0.00 NULL
2019 Fire Department Fire Protection Inspector 49869.92638 8.128798e+06 462079.90 2.834846e+03 660.700 12916.25 163 6.607000e+02 107694.10 8.590878e+06 8.236492e+06 354385.80 NULL
2019 Fire Department Firefighter 73620.67243 6.519847e+08 173850050.05 1.963076e+04 18078.535 2896279.53 8856 1.807853e+04 160103505.96 8.258347e+08 8.120882e+08 13746544.09 NULL
2019 Fire Department First Deputy Commissioner 235696.00000 2.356960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.356960e+05 2.356960e+05 0.00 NULL
2019 Fire Department Head Nurse 89172.00000 3.566880e+05 1888.26 4.720650e+02 466.785 30.50 4 4.667850e+02 1867.14 3.585763e+05 3.585551e+05 21.12 NULL
2019 Fire Department Industrial Hygienist 52912.00000 5.291200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.291200e+04 5.291200e+04 0.00 NULL
2019 Fire Department Institutional Aide 38642.42857 2.704970e+05 26571.57 3.795939e+03 4.260 878.50 7 4.260000e+00 29.82 2.970686e+05 2.705268e+05 26541.75 NULL
2019 Fire Department Investigator 48303.22381 1.014368e+06 40686.75 1.937464e+03 209.950 1096.50 21 2.099500e+02 4408.95 1.055054e+06 1.018777e+06 36277.80 NULL
2019 Fire Department Investigator Empl Disc 66690.11111 6.002110e+05 24265.19 2.696132e+03 1141.530 455.50 9 1.141530e+03 10273.77 6.244762e+05 6.104848e+05 13991.42 NULL
2019 Fire Department It Infrastructure Engineer 136428.00000 1.364280e+05 7844.43 7.844430e+03 7844.430 88.50 1 7.844430e+03 7844.43 1.442724e+05 1.442724e+05 0.00 NULL
2019 Fire Department Lieutenant 103828.80386 1.667491e+08 51929770.87 3.233485e+04 30975.645 625886.12 1606 3.097565e+04 49746885.87 2.186788e+08 2.164959e+08 2182885.00 NULL
2019 Fire Department Locksmith NA NA 45292.94 9.058588e+03 567.660 998.25 5 5.676600e+02 2838.30 NA NA NA NULL
2019 Fire Department Machinist NA NA 26776.69 2.677669e+04 26776.690 467.00 1 2.677669e+04 26776.69 NA NA NA NULL
2019 Fire Department Maintenance Worker NA NA 15650.33 1.565033e+04 15650.330 389.50 1 1.565033e+04 15650.33 NA NA NA NULL
2019 Fire Department Management Auditor 54382.00000 5.438200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.438200e+04 5.438200e+04 0.00 NULL
2019 Fire Department Marine Engineer 97940.23810 2.056745e+06 1371725.19 6.532025e+04 57808.020 17934.31 21 5.780802e+04 1213968.42 3.428470e+06 3.270713e+06 157756.77 NULL
2019 Fire Department Marine Maintenance Mechanic 69918.83333 4.195130e+05 44147.99 7.357998e+03 5700.735 1056.00 6 5.700735e+03 34204.41 4.636610e+05 4.537174e+05 9943.58 NULL
2019 Fire Department Mechanical Engineering Intern 56557.00000 1.696710e+05 626.04 2.086800e+02 0.000 25.50 3 0.000000e+00 0.00 1.702970e+05 1.696710e+05 626.04 NULL
2019 Fire Department Metal Work Mechanic 81018.50000 1.620370e+05 40404.95 2.020247e+04 20202.475 725.50 2 2.020247e+04 40404.95 2.024420e+05 2.024420e+05 0.00 NULL
2019 Fire Department Motor Vehicle Operator 43718.58908 8.306532e+05 108845.17 5.728693e+03 2174.700 2842.50 19 2.174700e+03 41319.30 9.394984e+05 8.719725e+05 67525.87 NULL
2019 Fire Department Motor Vehicle Supervisor 58396.00000 1.167920e+05 28142.85 1.407142e+04 14071.425 643.00 2 1.407142e+04 28142.85 1.449349e+05 1.449349e+05 0.00 NULL
2019 Fire Department New York City Public Service Fellow 40000.00000 4.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.000000e+04 4.000000e+04 0.00 NULL
2019 Fire Department Oiler NA NA 210658.11 4.213162e+04 48932.060 2483.50 5 4.213162e+04 210658.11 NA NA NA NULL
2019 Fire Department Painter NA NA 29665.72 1.483286e+04 14832.860 466.25 2 1.483286e+04 29665.72 NA NA NA NULL
2019 Fire Department Physician 53701.99615 2.148080e+05 72.09 1.802250e+01 0.000 1.00 4 0.000000e+00 0.00 2.148801e+05 2.148080e+05 72.09 NULL
2019 Fire Department Physician’s Assistant 90806.00000 9.080600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.080600e+04 9.080600e+04 0.00 NULL
2019 Fire Department Pilot 101778.38462 1.323119e+06 782059.33 6.015841e+04 58722.620 9540.05 13 5.872262e+04 763394.06 2.105178e+06 2.086513e+06 18665.27 NULL
2019 Fire Department Planner: Production Cntrl & Scheduling 61808.33333 1.854250e+05 72093.43 2.403114e+04 33444.470 1534.75 3 2.403114e+04 72093.43 2.575184e+05 2.575184e+05 0.00 NULL
2019 Fire Department Plasterer NA NA 14790.60 1.479060e+04 14790.600 226.00 1 1.479060e+04 14790.60 NA NA NA NULL
2019 Fire Department Plumber NA NA 432126.85 2.700793e+04 23601.850 4061.50 16 2.360185e+04 377629.60 NA NA NA NULL
2019 Fire Department Principal Administrative Associate - Lev 1 & 2 Non Supvr 60388.98177 6.884344e+06 220369.95 1.933070e+03 0.000 5445.25 114 0.000000e+00 0.00 7.104714e+06 6.884344e+06 220369.95 NULL
2019 Fire Department Procurement Analyst 59487.42885 1.249236e+06 29014.61 1.381648e+03 0.000 755.75 21 0.000000e+00 0.00 1.278251e+06 1.249236e+06 29014.61 NULL
2019 Fire Department Program Producer 73499.60400 2.204988e+05 14181.23 4.727077e+03 4707.220 263.75 3 4.707220e+03 14121.66 2.346800e+05 2.346205e+05 59.57 NULL
2019 Fire Department Project Manager 61321.44444 5.518930e+05 14004.62 1.556069e+03 70.870 304.00 9 7.087000e+01 637.83 5.658976e+05 5.525308e+05 13366.79 NULL
2019 Fire Department Project Manager Intern# 56906.00000 1.138120e+05 11427.64 5.713820e+03 5713.820 294.75 2 5.713820e+03 11427.64 1.252396e+05 1.252396e+05 0.00 NULL
2019 Fire Department Public Records Aide 39865.00000 2.790550e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.790550e+05 2.790550e+05 0.00 NULL
2019 Fire Department Public Records Officer 51221.33333 1.536640e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.536640e+05 1.536640e+05 0.00 NULL
2019 Fire Department Radio Repair Mechanic NA NA 911377.26 1.859954e+04 12133.890 12931.26 49 1.213389e+04 594560.61 NA NA NA NULL
2019 Fire Department Research Assistant 63294.30333 1.898829e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.898829e+05 1.898829e+05 0.00 NULL
2019 Fire Department Roofer NA NA 11090.60 5.545300e+03 5545.300 256.25 2 5.545300e+03 11090.60 NA NA NA NULL
2019 Fire Department Rubber Tire Repairer NA NA 154244.49 1.542445e+04 11896.035 3756.75 10 1.189603e+04 118960.35 NA NA NA NULL
2019 Fire Department Secretary To The Deputy Commissioner 76213.66667 2.286410e+05 11840.42 3.946807e+03 2302.840 257.00 3 2.302840e+03 6908.52 2.404814e+05 2.355495e+05 4931.90 NULL
2019 Fire Department Secretary To The Fire Commissioner 123323.00000 1.233230e+05 47606.86 4.760686e+04 47606.860 539.25 1 4.760686e+04 47606.86 1.709299e+05 1.709299e+05 0.00 NULL
2019 Fire Department Secretary To The First Deputy Commissioner 89714.00000 8.971400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.971400e+04 8.971400e+04 0.00 NULL
2019 Fire Department Senior It Architect 129039.50000 2.580790e+05 4419.93 2.209965e+03 2209.965 61.25 2 2.209965e+03 4419.93 2.624989e+05 2.624989e+05 0.00 NULL
2019 Fire Department Senior Management Consultant 137503.00000 1.375030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.375030e+05 1.375030e+05 0.00 NULL
2019 Fire Department Senior Photographer 68538.35620 6.853836e+04 3639.46 3.639460e+03 3639.460 96.75 1 3.639460e+03 3639.46 7.217782e+04 7.217782e+04 0.00 NULL
2019 Fire Department Senior Stationary Engineer NA NA 87556.64 4.377832e+04 43778.320 850.00 2 4.377832e+04 87556.64 NA NA NA NULL
2019 Fire Department Senior Supervisor Communication Electrician NA NA 59468.03 2.973401e+04 29734.015 743.50 2 2.973401e+04 59468.03 NA NA NA NULL
2019 Fire Department Sheet Metal Worker NA NA 210924.12 5.273103e+04 47940.370 2025.00 4 4.794037e+04 191761.48 NA NA NA NULL
2019 Fire Department Special Assistant To The Fire Commissioner 98830.00000 9.883000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.883000e+04 9.883000e+04 0.00 NULL
2019 Fire Department Spvsg Fad-Asst Commiss Detail 158200.00000 1.582000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.582000e+05 1.582000e+05 0.00 NULL
2019 Fire Department Spvsg Fad-Dep Dir Dsptch Dtail 109510.00000 2.190200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.190200e+05 2.190200e+05 0.00 NULL
2019 Fire Department Spvsg Fad-Dir Dsptch Op Detail 112311.00000 1.123110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.123110e+05 1.123110e+05 0.00 NULL
2019 Fire Department Staff Analyst 61224.60181 1.102043e+06 4323.65 2.402028e+02 0.000 92.50 18 0.000000e+00 0.00 1.106366e+06 1.102043e+06 4323.65 NULL
2019 Fire Department Staff Analyst Trainee 50983.50000 2.039340e+05 3100.55 7.751375e+02 0.000 87.75 4 0.000000e+00 0.00 2.070345e+05 2.039340e+05 3100.55 NULL
2019 Fire Department Stationary Engineer NA NA 71988.80 7.198880e+04 71988.800 775.50 1 7.198880e+04 71988.80 NA NA NA NULL
2019 Fire Department Steam Fitter NA NA 6875.00 6.875000e+03 6875.000 59.75 1 6.875000e+03 6875.00 NA NA NA NULL
2019 Fire Department Steam Fitter’s Helper NA NA 75250.38 2.508346e+04 14169.390 914.00 3 1.416939e+04 42508.17 NA NA NA NULL
2019 Fire Department Stock Worker 33861.12500 2.708890e+05 29937.64 3.742205e+03 2019.675 1374.73 8 2.019675e+03 16157.40 3.008266e+05 2.870464e+05 13780.24 NULL
2019 Fire Department Summer College Intern 2470.99798 9.883992e+03 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 9.883992e+03 9.883992e+03 0.00 NULL
2019 Fire Department Summer Graduate Intern 4600.20733 2.760124e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.760124e+04 2.760124e+04 0.00 NULL
2019 Fire Department Supervising Blasting Inspector 71303.11111 6.417280e+05 321610.23 3.573447e+04 26083.860 5928.20 9 2.608386e+04 234754.74 9.633382e+05 8.764827e+05 86855.49 NULL
2019 Fire Department Supervising Communication Electrician NA NA 469536.77 4.268516e+04 51044.830 6162.75 11 4.268516e+04 469536.77 NA NA NA NULL
2019 Fire Department Supervising Computer Service Technician 68632.00000 6.863200e+04 10356.28 1.035628e+04 10356.280 203.50 1 1.035628e+04 10356.28 7.898828e+04 7.898828e+04 0.00 NULL
2019 Fire Department Supervising Emergency Medical Service Specialist 72163.85008 4.380346e+07 14755415.96 2.430876e+04 20426.490 261359.98 607 2.042649e+04 12398879.43 5.855887e+07 5.620234e+07 2356536.53 NULL
2019 Fire Department Supervising Emergency Medical Service Specialist-Dpty Chiefs 114683.67391 5.275449e+06 115546.06 2.511871e+03 0.000 1941.75 46 0.000000e+00 0.00 5.390995e+06 5.275449e+06 115546.06 NULL
2019 Fire Department Supervising Fire Alarm Dispatcher 75465.54762 3.169553e+06 849565.31 2.022775e+04 18255.180 18005.02 42 1.825518e+04 766717.56 4.019118e+06 3.936271e+06 82847.75 NULL
2019 Fire Department Supervising Fire Marshal 127539.70270 4.718969e+06 1232170.77 3.330191e+04 28382.700 13249.91 37 2.838270e+04 1050159.90 5.951140e+06 5.769129e+06 182010.87 NULL
2019 Fire Department Supervisor Carpenter NA NA 171795.83 8.589791e+04 85897.915 2172.00 2 8.589791e+04 171795.83 NA NA NA NULL
2019 Fire Department Supervisor Electrician NA NA 232104.73 7.736824e+04 86690.070 2509.75 3 7.736824e+04 232104.73 NA NA NA NULL
2019 Fire Department Supervisor Locksmith NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2019 Fire Department Supervisor Of Electrical Installations & Maintenance 79706.25000 3.188250e+05 75606.52 1.890163e+04 21320.330 1325.00 4 1.890163e+04 75606.52 3.944315e+05 3.944315e+05 0.00 NULL
2019 Fire Department Supervisor Of Mechanics NA NA 1902102.54 3.881842e+04 41647.900 21284.73 49 3.881842e+04 1902102.54 NA NA NA NULL
2019 Fire Department Supervisor Of Stock Workers 52376.50000 1.152283e+06 248708.38 1.130493e+04 8001.645 6540.50 22 8.001645e+03 176036.19 1.400991e+06 1.328319e+06 72672.19 NULL
2019 Fire Department Supervisor Plumber NA NA 313043.01 5.217383e+04 57091.225 2788.00 6 5.217383e+04 313043.01 NA NA NA NULL
2019 Fire Department Telecommunication Manager 149006.00000 1.490060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.490060e+05 1.490060e+05 0.00 NULL
2019 Fire Department Telecommunications Associate 76836.84615 9.988790e+05 10800.07 8.307746e+02 6.720 303.25 13 6.720000e+00 87.36 1.009679e+06 9.989664e+05 10712.71 NULL
2019 Fire Department Telecommunications Manager 130369.00000 1.303690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.303690e+05 1.303690e+05 0.00 NULL
2019 Fire Department Welder NA NA 38303.52 1.915176e+04 19151.760 353.00 2 1.915176e+04 38303.52 NA NA NA NULL
2019 Fire Department Wiper 88400.00000 9.724000e+05 274170.39 2.492458e+04 24962.730 4090.67 11 2.492458e+04 274170.39 1.246570e+06 1.246570e+06 0.00 NULL
2019 Fire Department Worker’s Compensation Benefits Examiner 48589.00000 4.858900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.858900e+04 4.858900e+04 0.00 NULL
2019 Guttman Community College Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 NA NA NA NULL
2019 Guttman Community College Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 50 0.000000e+00 0.00 NA NA NA NULL
2019 Guttman Community College Assistant Administrator 145006.00000 1.450060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450060e+05 1.450060e+05 0.00 NULL
2019 Guttman Community College Assistant Dean 126000.00000 2.520000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.520000e+05 2.520000e+05 0.00 NULL
2019 Guttman Community College Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 42 0.000000e+00 0.00 NA NA NA NULL
2019 Guttman Community College Assistant To Heo 58312.09091 6.414330e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 6.414330e+05 6.414330e+05 0.00 NULL
2019 Guttman Community College Assistant Vice President 165286.00000 3.305720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.305720e+05 3.305720e+05 0.00 NULL
2019 Guttman Community College Associate Administrator 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2019 Guttman Community College Associate Dean 137110.66667 4.113320e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.113320e+05 4.113320e+05 0.00 NULL
2019 Guttman Community College Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 NA NA NA NULL
2019 Guttman Community College Campus Peace Officer 43308.75000 1.732350e+05 42121.06 1.053026e+04 9792.270 1410.75 4 9.792270e+03 39169.08 2.153561e+05 2.124041e+05 2951.98 NULL
2019 Guttman Community College Campus Public Safety Sergeant 55370.00000 1.661100e+05 66291.95 2.209732e+04 19848.900 1698.50 3 1.984890e+04 59546.70 2.324020e+05 2.256567e+05 6745.25 NULL
2019 Guttman Community College Campus Security Assistant 33741.00000 1.349640e+05 29189.65 7.297413e+03 7129.280 1186.25 4 7.129280e+03 28517.12 1.641536e+05 1.634811e+05 672.53 NULL
2019 Guttman Community College Clinical Professor 94248.00000 9.424800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.424800e+04 9.424800e+04 0.00 NULL
2019 Guttman Community College College Assistant 6768.06050 8.189353e+05 0.00 0.000000e+00 0.000 0.00 121 0.000000e+00 0.00 8.189353e+05 8.189353e+05 0.00 NULL
2019 Guttman Community College College Lab Technician 51378.00000 5.137800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.137800e+04 5.137800e+04 0.00 NULL
2019 Guttman Community College College Security Director 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2019 Guttman Community College College Security Specialist 62373.00000 6.237300e+04 22583.56 2.258356e+04 22583.560 499.50 1 2.258356e+04 22583.56 8.495656e+04 8.495656e+04 0.00 NULL
2019 Guttman Community College Computer Systems Manager 111300.00000 2.226000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.226000e+05 2.226000e+05 0.00 NULL
2019 Guttman Community College Continuing Education Teacher 3754.10050 1.126230e+05 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 1.126230e+05 1.126230e+05 0.00 NULL
2019 Guttman Community College Cuny Administrator Assistant 45412.00000 4.541200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.541200e+04 4.541200e+04 0.00 NULL
2019 Guttman Community College Cuny Office Assistant 35429.33333 1.062880e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.062880e+05 1.062880e+05 0.00 NULL
2019 Guttman Community College Dean 154087.00000 3.081740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.081740e+05 3.081740e+05 0.00 NULL
2019 Guttman Community College Disability Accommodations Specialist 30488.41000 1.219536e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.219536e+05 1.219536e+05 0.00 NULL
2019 Guttman Community College Higher Education Assistant 72885.12121 2.405209e+06 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 2.405209e+06 2.405209e+06 0.00 NULL
2019 Guttman Community College Higher Education Associate 92702.61111 1.668647e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.668647e+06 1.668647e+06 0.00 NULL
2019 Guttman Community College Higher Education Officer 122377.00000 1.835655e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.835655e+06 1.835655e+06 0.00 NULL
2019 Guttman Community College Instructor NA NA 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 NA NA NA NULL
2019 Guttman Community College It Assistant 51374.00000 1.027480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.027480e+05 1.027480e+05 0.00 NULL
2019 Guttman Community College It Associate 73609.00000 7.360900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.360900e+04 7.360900e+04 0.00 NULL
2019 Guttman Community College It Senior Associate 92525.33333 2.775760e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.775760e+05 2.775760e+05 0.00 NULL
2019 Guttman Community College It Support Assistant 40639.00000 8.127800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.127800e+04 8.127800e+04 0.00 NULL
2019 Guttman Community College Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 NA NA NA NULL
2019 Guttman Community College Non-Teaching Adjunct I 4412.12195 2.206061e+05 0.00 0.000000e+00 0.000 0.00 50 0.000000e+00 0.00 2.206061e+05 2.206061e+05 0.00 NULL
2019 Guttman Community College Non-Teaching Adjunct Ii 7647.93143 5.353552e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.353552e+04 5.353552e+04 0.00 NULL
2019 Guttman Community College Non-Teaching Adjunct Iii 3433.05722 1.235901e+05 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 1.235901e+05 1.235901e+05 0.00 NULL
2019 Guttman Community College Non-Teaching Adjunct Iv 5243.99700 5.243997e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.243997e+04 5.243997e+04 0.00 NULL
2019 Guttman Community College Non-Teaching Adjunct V 7357.61100 3.678806e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.678806e+04 3.678806e+04 0.00 NULL
2019 Guttman Community College President 228000.00000 2.280000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.280000e+05 2.280000e+05 0.00 NULL
2019 Guttman Community College Professor NA NA 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 NA NA NA NULL
2019 Guttman Community College Student Aide 4572.52841 2.011912e+05 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 2.011912e+05 2.011912e+05 0.00 NULL
2019 Guttman Community College Vice President 180000.00000 1.800000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.800000e+05 1.800000e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Accountant 57862.18783 2.372350e+06 0.00 0.000000e+00 0.000 0.00 41 0.000000e+00 0.00 2.372350e+06 2.372350e+06 0.00 NULL
2019 Housing Preservation & Dvlpmnt Adm Manager-Non-Mgrl From M1/M2 75359.64940 6.330211e+06 63427.65 7.550911e+02 0.000 1348.50 84 0.000000e+00 0.00 6.393638e+06 6.330211e+06 63427.65 NULL
2019 Housing Preservation & Dvlpmnt Admin Community Relations Specialist 68700.09380 3.160204e+06 108618.68 2.361276e+03 0.000 2504.50 46 0.000000e+00 0.00 3.268823e+06 3.160204e+06 108618.68 NULL
2019 Housing Preservation & Dvlpmnt Admin Construction Project Manager 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Admin Housing Development Spec 96788.48148 5.226578e+06 89888.81 1.664608e+03 0.000 1539.75 54 0.000000e+00 0.00 5.316467e+06 5.226578e+06 89888.81 NULL
2019 Housing Preservation & Dvlpmnt Administrative Accountant 118000.00000 1.180000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.180000e+05 1.180000e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Administrative Architect 103470.50000 2.069410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.069410e+05 2.069410e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Administrative City Planner 117556.10000 1.175561e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.175561e+06 1.175561e+06 0.00 NULL
2019 Housing Preservation & Dvlpmnt Administrative Community Relations Specialist 142523.00000 1.425230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.425230e+05 1.425230e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Administrative Engineer 111743.25000 4.469730e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.469730e+05 4.469730e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Administrative Housing Development Specialist 120406.50000 2.889756e+06 3056.49 1.273538e+02 0.000 37.75 24 0.000000e+00 0.00 2.892812e+06 2.889756e+06 3056.49 NULL
2019 Housing Preservation & Dvlpmnt Administrative Inspector 110004.16667 1.320050e+06 1863.54 1.552950e+02 0.000 35.75 12 0.000000e+00 0.00 1.321914e+06 1.320050e+06 1863.54 NULL
2019 Housing Preservation & Dvlpmnt Administrative Labor Relations Analyst 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Administrative Management Auditor 116077.00000 2.321540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.321540e+05 2.321540e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Administrative Manager 149327.20000 7.466360e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.466360e+05 7.466360e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Administrative Procurement Analyst 83561.71429 1.169864e+06 18957.17 1.354084e+03 0.000 457.75 14 0.000000e+00 0.00 1.188821e+06 1.169864e+06 18957.17 NULL
2019 Housing Preservation & Dvlpmnt Administrative Project Director 111470.17647 3.789986e+06 8333.13 2.450921e+02 0.000 170.75 34 0.000000e+00 0.00 3.798319e+06 3.789986e+06 8333.13 NULL
2019 Housing Preservation & Dvlpmnt Administrative Project Manager 116819.85714 8.177390e+05 15388.20 2.198314e+03 0.000 212.50 7 0.000000e+00 0.00 8.331272e+05 8.177390e+05 15388.20 NULL
2019 Housing Preservation & Dvlpmnt Administrative Public Information Specialist 99080.00000 9.908000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.908000e+04 9.908000e+04 0.00 NULL
2019 Housing Preservation & Dvlpmnt Administrative Real Property Manager 99770.40000 4.988520e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.988520e+05 4.988520e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Administrative Staff Analyst 106746.60526 8.112742e+06 57514.22 7.567661e+02 0.000 1036.00 76 0.000000e+00 0.00 8.170256e+06 8.112742e+06 57514.22 NULL
2019 Housing Preservation & Dvlpmnt Administrative Supervisor Of Building Maintenance 107412.00000 1.074120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074120e+05 1.074120e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Agency Attorney 92955.64815 5.019605e+06 21925.98 4.060367e+02 0.000 416.75 54 0.000000e+00 0.00 5.041531e+06 5.019605e+06 21925.98 NULL
2019 Housing Preservation & Dvlpmnt Agency Chief Contracting Officer 143927.00000 1.439270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.439270e+05 1.439270e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Appraiser 72635.00000 4.358100e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.358100e+05 4.358100e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Architect 89328.00000 8.932800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.932800e+04 8.932800e+04 0.00 NULL
2019 Housing Preservation & Dvlpmnt Assistant Architect 69337.66667 1.248078e+06 7485.36 4.158533e+02 0.000 167.25 18 0.000000e+00 0.00 1.255563e+06 1.248078e+06 7485.36 NULL
2019 Housing Preservation & Dvlpmnt Assistant Civil Engineer 73692.66667 2.210780e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.210780e+05 2.210780e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Assistant Commissioner 148263.15385 1.927421e+06 23.01 1.770000e+00 0.000 0.00 13 0.000000e+00 0.00 1.927444e+06 1.927421e+06 23.01 NULL
2019 Housing Preservation & Dvlpmnt Assistant Mechanical Engineer 70941.80000 3.547090e+05 10277.76 2.055552e+03 0.000 214.75 5 0.000000e+00 0.00 3.649868e+05 3.547090e+05 10277.76 NULL
2019 Housing Preservation & Dvlpmnt Associate Housing Development Specialist 92648.52778 3.335347e+06 78122.48 2.170069e+03 0.000 1276.75 36 0.000000e+00 0.00 3.413469e+06 3.335347e+06 78122.48 NULL
2019 Housing Preservation & Dvlpmnt Associate Inspector 71382.65306 3.497750e+06 209205.44 4.269499e+03 2192.410 4084.37 49 2.192410e+03 107428.09 3.706955e+06 3.605178e+06 101777.35 NULL
2019 Housing Preservation & Dvlpmnt Associate Investigator 71883.50000 1.437670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.437670e+05 1.437670e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Associate Project Manager 91343.83333 5.480630e+05 37411.47 6.235245e+03 91.245 549.50 6 9.124500e+01 547.47 5.854745e+05 5.486105e+05 36864.00 NULL
2019 Housing Preservation & Dvlpmnt Associate Quality Assurance Specialist 68458.33333 2.053750e+05 28269.28 9.423093e+03 10271.430 692.50 3 9.423093e+03 28269.28 2.336443e+05 2.336443e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Associate Real Property Manager 67149.14286 2.820264e+06 31711.64 7.550390e+02 0.000 559.50 42 0.000000e+00 0.00 2.851976e+06 2.820264e+06 31711.64 NULL
2019 Housing Preservation & Dvlpmnt Associate Rehabilitation Specialist 70161.00000 1.403220e+05 306.34 1.531700e+02 153.170 6.00 2 1.531700e+02 306.34 1.406283e+05 1.406283e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Associate Staff Analyst 83619.28454 2.174101e+06 9082.17 3.493142e+02 0.000 186.75 26 0.000000e+00 0.00 2.183184e+06 2.174101e+06 9082.17 NULL
2019 Housing Preservation & Dvlpmnt Attorney At Law 99239.91479 1.190879e+06 16648.67 1.387389e+03 0.000 237.75 12 0.000000e+00 0.00 1.207528e+06 1.190879e+06 16648.67 NULL
2019 Housing Preservation & Dvlpmnt Bookkeeper 58971.40000 2.948570e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.948570e+05 2.948570e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Certified It Administrator 121642.00000 1.216420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.216420e+05 1.216420e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Certified It Developer 98472.00000 9.847200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.847200e+04 9.847200e+04 0.00 NULL
2019 Housing Preservation & Dvlpmnt City Planner 86086.90625 2.754781e+06 2623.42 8.198188e+01 0.000 48.00 32 0.000000e+00 0.00 2.757404e+06 2.754781e+06 2623.42 NULL
2019 Housing Preservation & Dvlpmnt City Research Scientist 92802.83333 5.568170e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.568170e+05 5.568170e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Civil Engineer 86901.00000 8.690100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.690100e+04 8.690100e+04 0.00 NULL
2019 Housing Preservation & Dvlpmnt Clerical Aide 39554.00000 3.955400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.955400e+04 3.955400e+04 0.00 NULL
2019 Housing Preservation & Dvlpmnt Clerical Associate 46834.26782 7.352980e+06 165912.06 1.056765e+03 0.000 4495.15 157 0.000000e+00 0.00 7.518892e+06 7.352980e+06 165912.06 NULL
2019 Housing Preservation & Dvlpmnt Commissioner Of Housing Preservation & Development 236088.00000 4.721760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.721760e+05 4.721760e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Community Assistant 39342.13556 1.219606e+06 27500.56 8.871148e+02 0.000 1147.75 31 0.000000e+00 0.00 1.247107e+06 1.219606e+06 27500.56 NULL
2019 Housing Preservation & Dvlpmnt Community Associate 45936.75118 1.479163e+07 451637.72 1.402602e+03 0.000 15097.17 322 0.000000e+00 0.00 1.524327e+07 1.479163e+07 451637.72 NULL
2019 Housing Preservation & Dvlpmnt Community Coordinator 66077.12381 2.081429e+07 239270.87 7.595901e+02 0.000 5180.75 315 0.000000e+00 0.00 2.105356e+07 2.081429e+07 239270.87 NULL
2019 Housing Preservation & Dvlpmnt Community Service Aide 30995.12192 2.479610e+05 6115.62 7.644525e+02 0.000 270.50 8 0.000000e+00 0.00 2.540766e+05 2.479610e+05 6115.62 NULL
2019 Housing Preservation & Dvlpmnt Computer Associate 88845.21622 3.287273e+06 10558.38 2.853616e+02 0.000 213.00 37 0.000000e+00 0.00 3.297831e+06 3.287273e+06 10558.38 NULL
2019 Housing Preservation & Dvlpmnt Computer Operations Manager 122963.14286 8.607420e+05 52.10 7.442857e+00 0.000 0.00 7 0.000000e+00 0.00 8.607941e+05 8.607420e+05 52.10 NULL
2019 Housing Preservation & Dvlpmnt Computer Programmer Analyst 67023.00000 6.702300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.702300e+04 6.702300e+04 0.00 NULL
2019 Housing Preservation & Dvlpmnt Computer Specialist 104456.24490 5.118356e+06 19554.11 3.990635e+02 0.000 268.50 49 0.000000e+00 0.00 5.137910e+06 5.118356e+06 19554.11 NULL
2019 Housing Preservation & Dvlpmnt Computer Systems Manager 111105.56098 4.555328e+06 5.91 1.441463e-01 0.000 0.00 41 0.000000e+00 0.00 4.555334e+06 4.555328e+06 5.91 NULL
2019 Housing Preservation & Dvlpmnt Confidential Strategy Planner 77900.00000 3.895000e+05 4803.66 9.607320e+02 0.000 117.00 5 0.000000e+00 0.00 3.943037e+05 3.895000e+05 4803.66 NULL
2019 Housing Preservation & Dvlpmnt Construction Project Manager 75237.80720 1.587518e+07 910396.44 4.314675e+03 245.380 15099.50 211 2.453800e+02 51775.18 1.678557e+07 1.592695e+07 858621.26 NULL
2019 Housing Preservation & Dvlpmnt Customer Information Representative Ma L 1549 59595.00000 2.383800e+05 4668.11 1.167027e+03 0.000 110.00 4 0.000000e+00 0.00 2.430481e+05 2.383800e+05 4668.11 NULL
2019 Housing Preservation & Dvlpmnt Deputy Commissioner 206648.20000 1.033241e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.033241e+06 1.033241e+06 0.00 NULL
2019 Housing Preservation & Dvlpmnt Deputy Counsel 150393.00000 1.503930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503930e+05 1.503930e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Deputy General Counsel 165745.33333 9.944720e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.944720e+05 9.944720e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Director Of Neighborhood Conservation 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Director Of Property Management 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Electrician NA NA 99787.62 9.978762e+04 99787.620 1163.50 1 9.978762e+04 99787.62 NA NA NA NULL
2019 Housing Preservation & Dvlpmnt Eligibility Specialist 52803.00000 1.056060e+05 7539.58 3.769790e+03 3769.790 230.50 2 3.769790e+03 7539.58 1.131456e+05 1.131456e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Estimator 66206.00000 1.986180e+05 1788.40 5.961333e+02 0.000 45.00 3 0.000000e+00 0.00 2.004064e+05 1.986180e+05 1788.40 NULL
2019 Housing Preservation & Dvlpmnt Executive Agency Counsel 137056.75000 3.837589e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 3.837589e+06 3.837589e+06 0.00 NULL
2019 Housing Preservation & Dvlpmnt Executive Assistant To The Deputy Commissioner 102821.00000 2.056420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.056420e+05 2.056420e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Executive Director 137410.00000 1.374100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.374100e+05 1.374100e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Executive Program Specialist 98333.33333 2.950000e+05 1847.31 6.157700e+02 356.230 43.75 3 3.562300e+02 1068.69 2.968473e+05 2.960687e+05 778.62 NULL
2019 Housing Preservation & Dvlpmnt General Counsel 192691.00000 1.926910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.926910e+05 1.926910e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Housing Development Specialist 74873.72538 8.086362e+06 228776.86 2.118304e+03 0.000 4226.25 108 0.000000e+00 0.00 8.315139e+06 8.086362e+06 228776.86 NULL
2019 Housing Preservation & Dvlpmnt Housing Development Specialist Trainee 49548.00000 4.954800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.954800e+04 4.954800e+04 0.00 NULL
2019 Housing Preservation & Dvlpmnt Industrial Hygienist 67598.00000 6.759800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.759800e+04 6.759800e+04 0.00 NULL
2019 Housing Preservation & Dvlpmnt Inspector 58184.76923 2.117926e+07 401788.86 1.103816e+03 22.615 9640.93 364 2.261500e+01 8231.86 2.158104e+07 2.118749e+07 393557.00 NULL
2019 Housing Preservation & Dvlpmnt Investigator 63942.68750 1.023083e+06 14825.52 9.265950e+02 0.000 321.50 16 0.000000e+00 0.00 1.037909e+06 1.023083e+06 14825.52 NULL
2019 Housing Preservation & Dvlpmnt Investigator Empl Disc 58673.33333 1.760200e+05 51.32 1.710667e+01 0.000 0.00 3 0.000000e+00 0.00 1.760713e+05 1.760200e+05 51.32 NULL
2019 Housing Preservation & Dvlpmnt Lead Abatement Worker 52404.60000 2.620230e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.620230e+05 2.620230e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Legislative Assistant 97235.33333 2.917060e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.917060e+05 2.917060e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Management Auditor 78156.37500 6.252510e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.252510e+05 6.252510e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Mechanical Engineer 87121.00000 8.712100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.712100e+04 8.712100e+04 0.00 NULL
2019 Housing Preservation & Dvlpmnt Multiple Dwelling Specialist 71852.50000 1.437050e+05 4399.42 2.199710e+03 2199.710 98.00 2 2.199710e+03 4399.42 1.481044e+05 1.481044e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Paralegal Aide 57675.00000 2.307000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.307000e+05 2.307000e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Principal Administrative Associate - Lev 1 & 2 Non Supvr 60046.95118 7.625963e+06 105582.14 8.313554e+02 0.000 2293.75 127 0.000000e+00 0.00 7.731545e+06 7.625963e+06 105582.14 NULL
2019 Housing Preservation & Dvlpmnt Principal Appraiser 127243.00000 1.272430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.272430e+05 1.272430e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Procurement Analyst 64746.20000 3.237310e+05 3835.61 7.671220e+02 37.920 117.50 5 3.792000e+01 189.60 3.275666e+05 3.239206e+05 3646.01 NULL
2019 Housing Preservation & Dvlpmnt Project Manager 72723.50000 1.454470e+05 2191.03 1.095515e+03 1095.515 47.00 2 1.095515e+03 2191.03 1.476380e+05 1.476380e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Quality Assurance Specialist 55125.80000 2.756290e+05 5354.39 1.070878e+03 0.000 113.25 5 0.000000e+00 0.00 2.809834e+05 2.756290e+05 5354.39 NULL
2019 Housing Preservation & Dvlpmnt Real Property Manager 59521.00000 1.904672e+06 3285.10 1.026594e+02 0.000 88.50 32 0.000000e+00 0.00 1.907957e+06 1.904672e+06 3285.10 NULL
2019 Housing Preservation & Dvlpmnt Repair Crew Chief 41827.57143 2.927930e+05 15785.13 2.255019e+03 1743.430 537.58 7 1.743430e+03 12204.01 3.085781e+05 3.049970e+05 3581.12 NULL
2019 Housing Preservation & Dvlpmnt Repair Crew Worker 37603.50000 7.520700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.520700e+04 7.520700e+04 0.00 NULL
2019 Housing Preservation & Dvlpmnt Repair Shop Manager 76014.00000 7.601400e+04 41428.35 4.142835e+04 41428.350 709.75 1 4.142835e+04 41428.35 1.174424e+05 1.174424e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Secretary 45447.47619 9.543970e+05 2865.22 1.364390e+02 0.000 105.75 21 0.000000e+00 0.00 9.572622e+05 9.543970e+05 2865.22 NULL
2019 Housing Preservation & Dvlpmnt Secretary Of Comm 94071.00000 9.407100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.407100e+04 9.407100e+04 0.00 NULL
2019 Housing Preservation & Dvlpmnt Secretary To The Deputy Commissioner 76549.00000 7.654900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.654900e+04 7.654900e+04 0.00 NULL
2019 Housing Preservation & Dvlpmnt Senior Estimator 85964.00000 1.719280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.719280e+05 1.719280e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Senior Repair Crew Chief 57187.80000 2.859390e+05 185160.13 3.703203e+04 49592.630 4331.00 5 3.703203e+04 185160.13 4.710991e+05 4.710991e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Special Assistant To The Commissioner 190400.00000 1.904000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.904000e+05 1.904000e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Staff Analyst 61722.83333 7.406740e+05 18831.69 1.569307e+03 0.000 508.25 12 0.000000e+00 0.00 7.595057e+05 7.406740e+05 18831.69 NULL
2019 Housing Preservation & Dvlpmnt Strategic Initiative Specialist 106370.20000 5.318510e+05 10590.17 2.118034e+03 0.000 212.00 5 0.000000e+00 0.00 5.424412e+05 5.318510e+05 10590.17 NULL
2019 Housing Preservation & Dvlpmnt Supervising Demolition Inspector 79015.50000 3.160620e+05 28062.36 7.015590e+03 7417.120 481.25 4 7.015590e+03 28062.36 3.441244e+05 3.441244e+05 0.00 NULL
2019 Housing Preservation & Dvlpmnt Supervisor Of Electrical Installations & Maintenance 81931.14286 5.735180e+05 25027.00 3.575286e+03 0.000 346.50 7 0.000000e+00 0.00 5.985450e+05 5.735180e+05 25027.00 NULL
2019 Housing Preservation & Dvlpmnt Supervisor Of Mechanical Installations & Maintenance 75959.09091 8.355500e+05 76676.38 6.970580e+03 2751.740 1377.25 11 2.751740e+03 30269.14 9.122264e+05 8.658191e+05 46407.24 NULL
2019 Housing Preservation & Dvlpmnt Supervisor Of Stock Workers 65341.96000 1.306839e+05 6571.19 3.285595e+03 3285.595 164.00 2 3.285595e+03 6571.19 1.372551e+05 1.372551e+05 0.00 NULL
2019 Hra/Dept Of Social Services Accountant 63219.72222 1.137955e+06 1206.67 6.703722e+01 0.000 35.00 18 0.000000e+00 0.00 1.139162e+06 1.137955e+06 1206.67 NULL
2019 Hra/Dept Of Social Services Adm Manager-Non-Mgrl From M1/M2 71312.22917 6.845974e+06 323706.13 3.371939e+03 516.115 7412.50 96 5.161150e+02 49547.04 7.169680e+06 6.895521e+06 274159.09 NULL
2019 Hra/Dept Of Social Services Admin Community Relations Specialist 94702.37037 2.556964e+06 21279.26 7.881207e+02 0.000 437.50 27 0.000000e+00 0.00 2.578243e+06 2.556964e+06 21279.26 NULL
2019 Hra/Dept Of Social Services Admin Construction Project Manager 114917.00000 1.149170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.149170e+05 1.149170e+05 0.00 NULL
2019 Hra/Dept Of Social Services Admin Contract Specialist 110489.55500 1.325875e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.325875e+06 1.325875e+06 0.00 NULL
2019 Hra/Dept Of Social Services Admin Job Opor Spec-Managerial 130658.03846 3.397109e+06 12562.78 4.831838e+02 0.000 167.00 26 0.000000e+00 0.00 3.409672e+06 3.397109e+06 12562.78 NULL
2019 Hra/Dept Of Social Services Admin Job Opportunity Spec Nm 82111.67619 8.621726e+06 623981.16 5.942678e+03 5424.840 10720.25 105 5.424840e+03 569608.20 9.245707e+06 9.191334e+06 54372.96 NULL
2019 Hra/Dept Of Social Services Administrative Accountant 101984.36364 1.121828e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.121828e+06 1.121828e+06 0.00 NULL
2019 Hra/Dept Of Social Services Administrative Architect 119020.00000 2.380400e+05 -1415.44 -7.077200e+02 -707.720 0.00 2 -7.077200e+02 -1415.44 2.366246e+05 2.366246e+05 0.00 NULL
2019 Hra/Dept Of Social Services Administrative Business Promotion Coordinator 114098.00000 2.281960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.281960e+05 2.281960e+05 0.00 NULL
2019 Hra/Dept Of Social Services Administrative City Planner 86188.00000 8.618800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.618800e+04 8.618800e+04 0.00 NULL
2019 Hra/Dept Of Social Services Administrative Community Relations Specialist 175198.00000 3.503960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.503960e+05 3.503960e+05 0.00 NULL
2019 Hra/Dept Of Social Services Administrative Construction Project Manager 119563.00000 1.195630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.195630e+05 1.195630e+05 0.00 NULL
2019 Hra/Dept Of Social Services Administrative Contract Specialist 86296.18750 1.380739e+06 9696.84 6.060525e+02 0.000 186.00 16 0.000000e+00 0.00 1.390436e+06 1.380739e+06 9696.84 NULL
2019 Hra/Dept Of Social Services Administrative Director Of Social Services 105404.61905 1.770798e+07 23847.24 1.419479e+02 0.000 427.50 168 0.000000e+00 0.00 1.773182e+07 1.770798e+07 23847.24 NULL
2019 Hra/Dept Of Social Services Administrative Engineer 111370.50000 2.227410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.227410e+05 2.227410e+05 0.00 NULL
2019 Hra/Dept Of Social Services Administrative Graphic Artist 92112.00000 9.211200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.211200e+04 9.211200e+04 0.00 NULL
2019 Hra/Dept Of Social Services Administrative Investigator 92511.40000 3.700456e+06 8140.81 2.035203e+02 0.000 172.25 40 0.000000e+00 0.00 3.708597e+06 3.700456e+06 8140.81 NULL
2019 Hra/Dept Of Social Services Administrative Labor Relations Analyst 98447.00000 9.844700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.844700e+04 9.844700e+04 0.00 NULL
2019 Hra/Dept Of Social Services Administrative Management Auditor 109717.76923 1.426331e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.426331e+06 1.426331e+06 0.00 NULL
2019 Hra/Dept Of Social Services Administrative Manager 122068.75000 4.882750e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.882750e+05 4.882750e+05 0.00 NULL
2019 Hra/Dept Of Social Services Administrative Printing Services Manager 106319.33333 3.189580e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.189580e+05 3.189580e+05 0.00 NULL
2019 Hra/Dept Of Social Services Administrative Procurement Analyst 89770.52632 3.411280e+06 3398.54 8.943526e+01 0.000 48.00 38 0.000000e+00 0.00 3.414679e+06 3.411280e+06 3398.54 NULL
2019 Hra/Dept Of Social Services Administrative Public Information Specialist 113304.68750 1.812875e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.812875e+06 1.812875e+06 0.00 NULL
2019 Hra/Dept Of Social Services Administrative Retirement Benefits Specialist 89225.00000 8.922500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.922500e+04 8.922500e+04 0.00 NULL
2019 Hra/Dept Of Social Services Administrative Space Analyst 95585.60000 9.558560e+05 1371.76 1.371760e+02 0.000 26.50 10 0.000000e+00 0.00 9.572278e+05 9.558560e+05 1371.76 NULL
2019 Hra/Dept Of Social Services Administrative Staff Analyst 99106.65266 3.538108e+07 102813.69 2.879935e+02 0.000 1825.75 357 0.000000e+00 0.00 3.548389e+07 3.538108e+07 102813.69 NULL
2019 Hra/Dept Of Social Services Administrative Storekeeper 106808.66667 3.204260e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.204260e+05 3.204260e+05 0.00 NULL
2019 Hra/Dept Of Social Services Administrative Supervisor Of Building Maintenance 133899.66667 8.033980e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.033980e+05 8.033980e+05 0.00 NULL
2019 Hra/Dept Of Social Services Agency Attorney 82049.25806 1.017411e+07 45365.46 3.658505e+02 0.000 755.75 124 0.000000e+00 0.00 1.021947e+07 1.017411e+07 45365.46 NULL
2019 Hra/Dept Of Social Services Agency Attorney Interne 58750.60800 8.812591e+05 95.16 6.344000e+00 0.000 3.00 15 0.000000e+00 0.00 8.813543e+05 8.812591e+05 95.16 NULL
2019 Hra/Dept Of Social Services Agency Chief Contracting Officer 198161.00000 1.981610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.981610e+05 1.981610e+05 0.00 NULL
2019 Hra/Dept Of Social Services Architect 94860.00000 2.845800e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.845800e+05 2.845800e+05 0.00 NULL
2019 Hra/Dept Of Social Services Assist Commissioner For Policy Analysis & Prog Deve 131412.00000 1.314120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.314120e+05 1.314120e+05 0.00 NULL
2019 Hra/Dept Of Social Services Assistant Administrator Of Public Affairs 122831.50000 2.456630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.456630e+05 2.456630e+05 0.00 NULL
2019 Hra/Dept Of Social Services Assistant Architect 83151.00000 8.315100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.315100e+04 8.315100e+04 0.00 NULL
2019 Hra/Dept Of Social Services Assistant Commissioner 183379.40000 9.168970e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.168970e+05 9.168970e+05 0.00 NULL
2019 Hra/Dept Of Social Services Assistant Deputy Administrator 188037.66667 5.641130e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.641130e+05 5.641130e+05 0.00 NULL
2019 Hra/Dept Of Social Services Assistant Deputy Commissioner Ss 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2019 Hra/Dept Of Social Services Assistant Printing Press Operator 58976.50000 1.179530e+05 559.33 2.796650e+02 279.665 12.75 2 2.796650e+02 559.33 1.185123e+05 1.185123e+05 0.00 NULL
2019 Hra/Dept Of Social Services Assistant Superintendent Of Welfare Shelters 67232.86667 1.008493e+06 121256.26 8.083751e+03 7132.870 2623.50 15 7.132870e+03 106993.05 1.129749e+06 1.115486e+06 14263.21 NULL
2019 Hra/Dept Of Social Services Associate Commissioner For Employment Service 151341.00000 1.513410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.513410e+05 1.513410e+05 0.00 NULL
2019 Hra/Dept Of Social Services Associate Commissioner For Personnel Service 126169.00000 1.261690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.261690e+05 1.261690e+05 0.00 NULL
2019 Hra/Dept Of Social Services Associate Contract Specialist 66185.55556 5.956700e+05 386.24 4.291556e+01 0.000 10.00 9 0.000000e+00 0.00 5.960562e+05 5.956700e+05 386.24 NULL
2019 Hra/Dept Of Social Services Associate Fraud Investigator 70091.50220 1.591077e+07 284473.82 1.253189e+03 0.000 5877.75 227 0.000000e+00 0.00 1.619524e+07 1.591077e+07 284473.82 NULL
2019 Hra/Dept Of Social Services Associate Housing Development Specialist 86843.40000 4.342170e+05 19428.69 3.885738e+03 3401.530 356.00 5 3.401530e+03 17007.65 4.536457e+05 4.512247e+05 2421.04 NULL
2019 Hra/Dept Of Social Services Associate Job Opportunity Specialist 62285.54435 5.618156e+07 7342216.74 8.139930e+03 6166.335 161560.25 902 6.166335e+03 5562034.17 6.352378e+07 6.174360e+07 1780182.57 NULL
2019 Hra/Dept Of Social Services Associate Labor Relations Analyst 83673.25000 3.346930e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.346930e+05 3.346930e+05 0.00 NULL
2019 Hra/Dept Of Social Services Associate Project Manager 80312.50000 1.606250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.606250e+05 1.606250e+05 0.00 NULL
2019 Hra/Dept Of Social Services Associate Staff Analyst 77324.77949 1.507833e+07 113767.78 5.834245e+02 0.000 2101.75 195 0.000000e+00 0.00 1.519210e+07 1.507833e+07 113767.78 NULL
2019 Hra/Dept Of Social Services Asst Commissioner For Public & Legis Affairs 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2019 Hra/Dept Of Social Services Attorney At Law 86891.37500 6.951310e+05 3311.42 4.139275e+02 0.000 50.50 8 0.000000e+00 0.00 6.984424e+05 6.951310e+05 3311.42 NULL
2019 Hra/Dept Of Social Services Bookbinder 37004.00000 3.700400e+04 725.48 7.254800e+02 725.480 27.75 1 7.254800e+02 725.48 3.772948e+04 3.772948e+04 0.00 NULL
2019 Hra/Dept Of Social Services Bookkeeper 48404.30769 5.034048e+06 261355.55 2.513034e+03 0.000 7315.50 104 0.000000e+00 0.00 5.295404e+06 5.034048e+06 261355.55 NULL
2019 Hra/Dept Of Social Services Business Promotion Coordinator 76705.00000 3.835250e+05 2664.45 5.328900e+02 0.000 56.25 5 0.000000e+00 0.00 3.861895e+05 3.835250e+05 2664.45 NULL
2019 Hra/Dept Of Social Services Carpenter NA NA 83622.60 5.226413e+03 5334.900 894.00 16 5.226413e+03 83622.60 NA NA NA NULL
2019 Hra/Dept Of Social Services Caseworker 46190.02410 7.090169e+07 1957231.03 1.275069e+03 0.000 54788.27 1535 0.000000e+00 0.00 7.285892e+07 7.090169e+07 1957231.03 NULL
2019 Hra/Dept Of Social Services Cement Mason NA NA 2501.52 1.250760e+03 1250.760 20.00 2 1.250760e+03 2501.52 NA NA NA NULL
2019 Hra/Dept Of Social Services Certified Applications Developer 125799.00000 1.257990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.257990e+05 1.257990e+05 0.00 NULL
2019 Hra/Dept Of Social Services Certified Database Administrator 111748.00000 1.117480e+05 5607.57 5.607570e+03 5607.570 57.00 1 5.607570e+03 5607.57 1.173556e+05 1.173556e+05 0.00 NULL
2019 Hra/Dept Of Social Services Certified It Administrator 100405.18919 3.714992e+06 264571.63 7.150585e+03 2869.360 3506.25 37 2.869360e+03 106166.32 3.979564e+06 3.821158e+06 158405.31 NULL
2019 Hra/Dept Of Social Services Certified It Developer 109567.00000 8.765360e+05 73060.29 9.132536e+03 7219.020 883.25 8 7.219020e+03 57752.16 9.495963e+05 9.342882e+05 15308.13 NULL
2019 Hra/Dept Of Social Services Certified Local Area Network Administrator 99748.53846 1.296731e+06 98652.54 7.588657e+03 67.220 1158.25 13 6.722000e+01 873.86 1.395384e+06 1.297605e+06 97778.68 NULL
2019 Hra/Dept Of Social Services Certified Wide Area Network Administrator 110440.00000 1.104400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.104400e+05 1.104400e+05 0.00 NULL
2019 Hra/Dept Of Social Services City Custodial Assistant 38663.50000 7.732700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.732700e+04 7.732700e+04 0.00 NULL
2019 Hra/Dept Of Social Services City Laborer NA NA 43267.85 2.403769e+03 2268.630 649.75 18 2.268630e+03 40835.34 NA NA NA NULL
2019 Hra/Dept Of Social Services City Planner 84848.00000 8.484800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.484800e+04 8.484800e+04 0.00 NULL
2019 Hra/Dept Of Social Services City Research Scientist 88186.72414 5.114830e+06 16525.36 2.849200e+02 0.000 407.00 58 0.000000e+00 0.00 5.131355e+06 5.114830e+06 16525.36 NULL
2019 Hra/Dept Of Social Services Clerical Aide 33940.80000 1.697040e+05 102.62 2.052400e+01 0.000 3.00 5 0.000000e+00 0.00 1.698066e+05 1.697040e+05 102.62 NULL
2019 Hra/Dept Of Social Services Clerical Associate 40168.00187 3.711523e+07 1263784.61 1.367732e+03 0.000 41725.55 924 0.000000e+00 0.00 3.837902e+07 3.711523e+07 1263784.61 NULL
2019 Hra/Dept Of Social Services Community Assistant 36705.05479 2.679469e+06 80228.26 1.099017e+03 0.000 3119.75 73 0.000000e+00 0.00 2.759697e+06 2.679469e+06 80228.26 NULL
2019 Hra/Dept Of Social Services Community Associate 43908.34090 1.391894e+07 234202.46 7.388090e+02 0.000 7194.00 317 0.000000e+00 0.00 1.415315e+07 1.391894e+07 234202.46 NULL
2019 Hra/Dept Of Social Services Community Coordinator 64044.79825 2.062243e+07 426835.30 1.325575e+03 0.000 9846.00 322 0.000000e+00 0.00 2.104926e+07 2.062243e+07 426835.30 NULL
2019 Hra/Dept Of Social Services Computer Aide-Non-Spvr 50028.70000 5.002870e+05 69.46 6.946000e+00 0.000 2.00 10 0.000000e+00 0.00 5.003565e+05 5.002870e+05 69.46 NULL
2019 Hra/Dept Of Social Services Computer Associate 72041.85897 1.123853e+07 378194.98 2.424327e+03 0.000 7753.50 156 0.000000e+00 0.00 1.161672e+07 1.123853e+07 378194.98 NULL
2019 Hra/Dept Of Social Services Computer Operations Manager 111330.77778 1.001977e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.001977e+06 1.001977e+06 0.00 NULL
2019 Hra/Dept Of Social Services Computer Programmer Analyst 63058.66667 1.891760e+05 7.13 2.376667e+00 2.910 0.00 3 2.376667e+00 7.13 1.891831e+05 1.891831e+05 0.00 NULL
2019 Hra/Dept Of Social Services Computer Service Technician 47758.45455 5.253430e+05 34077.78 3.097980e+03 188.770 893.75 11 1.887700e+02 2076.47 5.594208e+05 5.274195e+05 32001.31 NULL
2019 Hra/Dept Of Social Services Computer Specialist 100324.70461 3.701982e+07 1256788.53 3.405931e+03 0.000 16910.50 369 0.000000e+00 0.00 3.827660e+07 3.701982e+07 1256788.53 NULL
2019 Hra/Dept Of Social Services Computer Systems Manager 125827.76724 1.459602e+07 3222.50 2.778017e+01 0.000 45.50 116 0.000000e+00 0.00 1.459924e+07 1.459602e+07 3222.50 NULL
2019 Hra/Dept Of Social Services Confidential Strategy Planner 87450.00000 4.372500e+05 10345.59 2.069118e+03 0.000 241.25 5 0.000000e+00 0.00 4.475956e+05 4.372500e+05 10345.59 NULL
2019 Hra/Dept Of Social Services Construction Project Manager 84220.00000 2.526600e+05 6.55 2.183333e+00 0.000 0.00 3 0.000000e+00 0.00 2.526665e+05 2.526600e+05 6.55 NULL
2019 Hra/Dept Of Social Services Consultant 73716.72727 8.108840e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 8.108840e+05 8.108840e+05 0.00 NULL
2019 Hra/Dept Of Social Services Contract Specialist 58020.38462 7.542650e+05 280.47 2.157462e+01 0.000 4.00 13 0.000000e+00 0.00 7.545455e+05 7.542650e+05 280.47 NULL
2019 Hra/Dept Of Social Services Counselor 71867.00000 7.186700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.186700e+04 7.186700e+04 0.00 NULL
2019 Hra/Dept Of Social Services Custodial Assistant 36094.00000 1.443760e+05 138.70 3.467500e+01 0.000 4.50 4 0.000000e+00 0.00 1.445147e+05 1.443760e+05 138.70 NULL
2019 Hra/Dept Of Social Services Custodian 41219.28889 3.709736e+06 589754.74 6.552830e+03 6870.220 19638.50 90 6.552830e+03 589754.74 4.299491e+06 4.299491e+06 0.00 NULL
2019 Hra/Dept Of Social Services Deputy Assistant Commissioner 141694.00000 1.416940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.416940e+05 1.416940e+05 0.00 NULL
2019 Hra/Dept Of Social Services Deputy Commissioner 193052.50000 3.861050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.861050e+05 3.861050e+05 0.00 NULL
2019 Hra/Dept Of Social Services Deputy Director Of Administration 117886.81250 1.886189e+06 5122.78 3.201737e+02 0.000 61.00 16 0.000000e+00 0.00 1.891312e+06 1.886189e+06 5122.78 NULL
2019 Hra/Dept Of Social Services Deputy Director Of Labor Relations 111467.50000 2.229350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.229350e+05 2.229350e+05 0.00 NULL
2019 Hra/Dept Of Social Services Deputy Director Of Security 93773.00000 2.813190e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.813190e+05 2.813190e+05 0.00 NULL
2019 Hra/Dept Of Social Services Deputy General Counsel 105337.00000 2.106740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.106740e+05 2.106740e+05 0.00 NULL
2019 Hra/Dept Of Social Services Dir Of Home Care Services/Family And Adult Services 162548.00000 1.625480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.625480e+05 1.625480e+05 0.00 NULL
2019 Hra/Dept Of Social Services Dir Of Mgnt System, Planning, Research And Eval 164784.00000 1.647840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.647840e+05 1.647840e+05 0.00 NULL
2019 Hra/Dept Of Social Services Dir Policy Econom Resrch 80204.00000 8.020400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.020400e+04 8.020400e+04 0.00 NULL
2019 Hra/Dept Of Social Services Director Of Admin 209561.00000 2.095610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.095610e+05 2.095610e+05 0.00 NULL
2019 Hra/Dept Of Social Services Director Of Community Participation Programs 94799.00000 9.479900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.479900e+04 9.479900e+04 0.00 NULL
2019 Hra/Dept Of Social Services Director Of Compliance & Legislative Development 89694.00000 8.969400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.969400e+04 8.969400e+04 0.00 NULL
2019 Hra/Dept Of Social Services Director Of Eeo 102637.00000 1.026370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.026370e+05 1.026370e+05 0.00 NULL
2019 Hra/Dept Of Social Services Director Of Eeo/Contract Compliance 135405.00000 1.354050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.354050e+05 1.354050e+05 0.00 NULL
2019 Hra/Dept Of Social Services Director Of Fiscal Operations 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2019 Hra/Dept Of Social Services Director Of Food Stamp Program 156000.00000 1.560000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.560000e+05 1.560000e+05 0.00 NULL
2019 Hra/Dept Of Social Services Director Of Labor Relations 160713.00000 1.607130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.607130e+05 1.607130e+05 0.00 NULL
2019 Hra/Dept Of Social Services Director Of Management Design 91000.00000 9.100000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.100000e+04 9.100000e+04 0.00 NULL
2019 Hra/Dept Of Social Services Director Of Management Planning 95956.00000 9.595600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.595600e+04 9.595600e+04 0.00 NULL
2019 Hra/Dept Of Social Services Director Of Management Planning Ss 135779.00000 6.788950e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.788950e+05 6.788950e+05 0.00 NULL
2019 Hra/Dept Of Social Services Director Of Policy Analysis 157651.00000 3.153020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.153020e+05 3.153020e+05 0.00 NULL
2019 Hra/Dept Of Social Services Director Of Public Information 99080.00000 9.908000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.908000e+04 9.908000e+04 0.00 NULL
2019 Hra/Dept Of Social Services Director Of Security 98165.00000 9.816500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.816500e+04 9.816500e+04 0.00 NULL
2019 Hra/Dept Of Social Services Electrical Engineer 89942.00000 8.994200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.994200e+04 8.994200e+04 0.00 NULL
2019 Hra/Dept Of Social Services Electrician NA NA 20725.77 1.727148e+03 702.480 228.75 12 7.024800e+02 8429.76 NA NA NA NULL
2019 Hra/Dept Of Social Services Electrician’s Helper NA NA 9468.25 1.578042e+03 1280.340 161.00 6 1.280340e+03 7682.04 NA NA NA NULL
2019 Hra/Dept Of Social Services Eligibility Specialist 41785.06050 1.056744e+08 6004976.48 2.374447e+03 48.110 190896.87 2529 4.811000e+01 121670.19 1.116794e+08 1.057961e+08 5883306.29 NULL
2019 Hra/Dept Of Social Services Exec Asst To The Deputy Commissioner 95134.75000 3.805390e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.805390e+05 3.805390e+05 0.00 NULL
2019 Hra/Dept Of Social Services Executive Agency Counsel 134783.72549 6.873970e+06 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 6.873970e+06 6.873970e+06 0.00 NULL
2019 Hra/Dept Of Social Services Executive Assistant To The Executive Deputy Adm 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2019 Hra/Dept Of Social Services Executive Assistant To The Human Resources Admin 135582.00000 1.355820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.355820e+05 1.355820e+05 0.00 NULL
2019 Hra/Dept Of Social Services Executive Asst-Domestic Violence-Hra 61592.66667 3.695560e+05 5.36 8.933333e-01 0.000 0.00 6 0.000000e+00 0.00 3.695614e+05 3.695560e+05 5.36 NULL
2019 Hra/Dept Of Social Services Executive Deputy Administrator 209564.00000 6.286920e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.286920e+05 6.286920e+05 0.00 NULL
2019 Hra/Dept Of Social Services Executive Program Specialist 130950.60000 6.547530e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.547530e+05 6.547530e+05 0.00 NULL
2019 Hra/Dept Of Social Services Fraud Investigator 53312.29372 3.140094e+07 292805.26 4.971227e+02 0.000 7556.50 589 0.000000e+00 0.00 3.169375e+07 3.140094e+07 292805.26 NULL
2019 Hra/Dept Of Social Services General Counsel 209570.00000 2.095700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.095700e+05 2.095700e+05 0.00 NULL
2019 Hra/Dept Of Social Services Graphic Artist 53832.77778 4.844950e+05 1556.79 1.729767e+02 0.000 43.50 9 0.000000e+00 0.00 4.860518e+05 4.844950e+05 1556.79 NULL
2019 Hra/Dept Of Social Services Head Nurse 82351.00000 1.564669e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.564669e+06 1.564669e+06 0.00 NULL
2019 Hra/Dept Of Social Services Health Services Manager Non Managerial Level I 115664.00000 1.156640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.156640e+05 1.156640e+05 0.00 NULL
2019 Hra/Dept Of Social Services Homemaker 36385.50000 7.277100e+04 7480.80 3.740400e+03 3740.400 310.50 2 3.740400e+03 7480.80 8.025180e+04 8.025180e+04 0.00 NULL
2019 Hra/Dept Of Social Services Human Resources Administrator 236088.00000 2.360880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.360880e+05 2.360880e+05 0.00 NULL
2019 Hra/Dept Of Social Services Human Resources Technician 35774.00000 3.577400e+04 145.13 1.451300e+02 145.130 6.50 1 1.451300e+02 145.13 3.591913e+04 3.591913e+04 0.00 NULL
2019 Hra/Dept Of Social Services Institutional Aide 38872.66667 1.166180e+05 4437.19 1.479063e+03 602.890 137.75 3 6.028900e+02 1808.67 1.210552e+05 1.184267e+05 2628.52 NULL
2019 Hra/Dept Of Social Services Investigator 69181.28571 4.842690e+05 13857.18 1.979597e+03 221.200 361.25 7 2.212000e+02 1548.40 4.981262e+05 4.858174e+05 12308.78 NULL
2019 Hra/Dept Of Social Services It Project Specialist 102764.43750 4.932693e+06 75939.04 1.582063e+03 0.000 1093.25 48 0.000000e+00 0.00 5.008632e+06 4.932693e+06 75939.04 NULL
2019 Hra/Dept Of Social Services Job Opportunity Specialist 46667.83661 6.598832e+07 7254964.75 5.130810e+03 1408.600 209668.87 1414 1.408600e+03 1991760.40 7.324329e+07 6.798008e+07 5263204.35 NULL
2019 Hra/Dept Of Social Services Locksmith NA NA 2390.52 1.195260e+03 1195.260 58.00 2 1.195260e+03 2390.52 NA NA NA NULL
2019 Hra/Dept Of Social Services Maintenance Worker NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2019 Hra/Dept Of Social Services Management Auditor 68540.41667 2.467455e+06 1175.49 3.265250e+01 0.000 27.50 36 0.000000e+00 0.00 2.468630e+06 2.467455e+06 1175.49 NULL
2019 Hra/Dept Of Social Services Management Auditor Trainee 62539.00000 1.250780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.250780e+05 1.250780e+05 0.00 NULL
2019 Hra/Dept Of Social Services Mechanical Engineer 100785.00000 3.023550e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.023550e+05 3.023550e+05 0.00 NULL
2019 Hra/Dept Of Social Services Medical Specialist 36447.94627 1.093438e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.093438e+05 1.093438e+05 0.00 NULL
2019 Hra/Dept Of Social Services Motor Vehicle Operator 47038.77778 4.233490e+05 49265.87 5.473986e+03 1524.250 1366.35 9 1.524250e+03 13718.25 4.726149e+05 4.370672e+05 35547.62 NULL
2019 Hra/Dept Of Social Services Motor Vehicle Supervisor 59468.50000 2.378740e+05 84236.20 2.105905e+04 11767.655 1713.75 4 1.176766e+04 47070.62 3.221102e+05 2.849446e+05 37165.58 NULL
2019 Hra/Dept Of Social Services New York City Public Service Fellow 45000.00000 4.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.500000e+04 4.500000e+04 0.00 NULL
2019 Hra/Dept Of Social Services Office Machine Aide 35755.64286 5.005790e+05 8935.48 6.382486e+02 0.000 329.50 14 0.000000e+00 0.00 5.095145e+05 5.005790e+05 8935.48 NULL
2019 Hra/Dept Of Social Services Oiler NA NA 77982.35 1.949559e+04 21000.960 985.50 4 1.949559e+04 77982.35 NA NA NA NULL
2019 Hra/Dept Of Social Services Painter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2019 Hra/Dept Of Social Services Paralegal Aide 45862.04348 1.054827e+06 22681.81 9.861657e+02 0.000 525.25 23 0.000000e+00 0.00 1.077509e+06 1.054827e+06 22681.81 NULL
2019 Hra/Dept Of Social Services Plumber NA NA 97592.19 1.219902e+04 13697.360 875.75 8 1.219902e+04 97592.19 NA NA NA NULL
2019 Hra/Dept Of Social Services Principal Administrative Associate - Lev 1 & 2 Non Supvr 55118.60961 8.146530e+07 5686963.83 3.847743e+03 119.775 143741.22 1478 1.197750e+02 177027.45 8.715227e+07 8.164233e+07 5509936.38 NULL
2019 Hra/Dept Of Social Services Printing Press Operator NA NA 866.70 4.333500e+02 433.350 14.00 2 4.333500e+02 866.70 NA NA NA NULL
2019 Hra/Dept Of Social Services Procurement Analyst 61061.79310 1.770792e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 1.770792e+06 1.770792e+06 0.00 NULL
2019 Hra/Dept Of Social Services Psychiatrist 146546.05855 1.612007e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.612007e+06 1.612007e+06 0.00 NULL
2019 Hra/Dept Of Social Services Public Health Educator 57988.97619 2.435537e+06 75684.68 1.802016e+03 484.165 1988.00 42 4.841650e+02 20334.93 2.511222e+06 2.455872e+06 55349.75 NULL
2019 Hra/Dept Of Social Services Real Property Manager 65329.00000 6.532900e+04 6018.81 6.018810e+03 6018.810 131.25 1 6.018810e+03 6018.81 7.134781e+04 7.134781e+04 0.00 NULL
2019 Hra/Dept Of Social Services Research Assistant 56062.66667 1.681880e+05 1838.22 6.127400e+02 0.000 39.75 3 0.000000e+00 0.00 1.700262e+05 1.681880e+05 1838.22 NULL
2019 Hra/Dept Of Social Services Secretary 41452.36000 1.036309e+06 127954.69 5.118188e+03 1778.350 4081.25 25 1.778350e+03 44458.75 1.164264e+06 1.080768e+06 83495.94 NULL
2019 Hra/Dept Of Social Services Secretary Of Comm 62834.00000 6.283400e+04 3384.38 3.384380e+03 3384.380 108.75 1 3.384380e+03 3384.38 6.621838e+04 6.621838e+04 0.00 NULL
2019 Hra/Dept Of Social Services Secretary To One Deputy Commissioner 90135.00000 9.013500e+04 1704.61 1.704610e+03 1704.610 27.25 1 1.704610e+03 1704.61 9.183961e+04 9.183961e+04 0.00 NULL
2019 Hra/Dept Of Social Services Secretary To The Commissioner 83436.00000 8.343600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.343600e+04 8.343600e+04 0.00 NULL
2019 Hra/Dept Of Social Services Secretary To The Department 125151.00000 1.251510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.251510e+05 1.251510e+05 0.00 NULL
2019 Hra/Dept Of Social Services Secretary To The Human Resources Administrator 83436.00000 8.343600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.343600e+04 8.343600e+04 0.00 NULL
2019 Hra/Dept Of Social Services Senior Consultant 79446.38889 1.430035e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.430035e+06 1.430035e+06 0.00 NULL
2019 Hra/Dept Of Social Services Senior Stationary Engineer NA NA 84148.30 2.804943e+04 23856.380 904.00 3 2.385638e+04 71569.14 NA NA NA NULL
2019 Hra/Dept Of Social Services Sheet Metal Worker NA NA 5217.63 2.608815e+03 2608.815 8.00 2 2.608815e+03 5217.63 NA NA NA NULL
2019 Hra/Dept Of Social Services Social Worker 55424.11650 5.708684e+06 118529.78 1.150775e+03 0.000 2980.25 103 0.000000e+00 0.00 5.827214e+06 5.708684e+06 118529.78 NULL
2019 Hra/Dept Of Social Services Space Analyst 75147.45833 1.803539e+06 21873.04 9.113767e+02 0.000 454.50 24 0.000000e+00 0.00 1.825412e+06 1.803539e+06 21873.04 NULL
2019 Hra/Dept Of Social Services Special Assistant To The Human Resources Administrator 87505.33333 2.625160e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.625160e+05 2.625160e+05 0.00 NULL
2019 Hra/Dept Of Social Services Special Officer 41278.17143 2.889472e+06 172209.86 2.460141e+03 778.395 5510.87 70 7.783950e+02 54487.65 3.061682e+06 2.943960e+06 117722.21 NULL
2019 Hra/Dept Of Social Services Staff Analyst 66175.37500 1.111746e+07 307760.76 1.831909e+03 0.000 6734.00 168 0.000000e+00 0.00 1.142522e+07 1.111746e+07 307760.76 NULL
2019 Hra/Dept Of Social Services Staff Nurse 79179.35000 3.167174e+06 2947.97 7.369925e+01 0.000 43.00 40 0.000000e+00 0.00 3.170122e+06 3.167174e+06 2947.97 NULL
2019 Hra/Dept Of Social Services Stationary Engineer NA NA 34812.64 1.160421e+04 387.860 405.25 3 3.878600e+02 1163.58 NA NA NA NULL
2019 Hra/Dept Of Social Services Steam Fitter’s Helper NA NA 3258.75 3.258750e+03 3258.750 26.50 1 3.258750e+03 3258.75 NA NA NA NULL
2019 Hra/Dept Of Social Services Stock Worker 40518.28571 2.836280e+05 20708.79 2.958399e+03 0.000 664.50 7 0.000000e+00 0.00 3.043368e+05 2.836280e+05 20708.79 NULL
2019 Hra/Dept Of Social Services Strategic Initiative Specialist 95235.00000 3.809400e+05 1061.62 2.654050e+02 0.000 25.25 4 0.000000e+00 0.00 3.820016e+05 3.809400e+05 1061.62 NULL
2019 Hra/Dept Of Social Services Superintendent Of Adult Institutions 88900.00000 8.890000e+04 48.91 4.891000e+01 48.910 0.00 1 4.891000e+01 48.91 8.894891e+04 8.894891e+04 0.00 NULL
2019 Hra/Dept Of Social Services Supervising Bookbinder 63485.00000 6.348500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.348500e+04 6.348500e+04 0.00 NULL
2019 Hra/Dept Of Social Services Supervising Computer Service Technician 77084.00000 1.541680e+05 219.27 1.096350e+02 109.635 5.00 2 1.096350e+02 219.27 1.543873e+05 1.543873e+05 0.00 NULL
2019 Hra/Dept Of Social Services Supervising Special Officer 54968.57447 2.583523e+06 221823.64 4.719652e+03 3000.020 5501.75 47 3.000020e+03 141000.94 2.805347e+06 2.724524e+06 80822.70 NULL
2019 Hra/Dept Of Social Services Supervisor Carpenter NA NA 17501.12 8.750560e+03 8750.560 176.50 2 8.750560e+03 17501.12 NA NA NA NULL
2019 Hra/Dept Of Social Services Supervisor Electrician NA NA 17916.81 5.972270e+03 6712.270 188.75 3 5.972270e+03 17916.81 NA NA NA NULL
2019 Hra/Dept Of Social Services Supervisor I 57372.26904 2.260467e+07 1074005.77 2.725903e+03 1.055 24568.25 394 1.055000e+00 415.67 2.367868e+07 2.260509e+07 1073590.10 NULL
2019 Hra/Dept Of Social Services Supervisor I Social Work 63503.35135 2.349624e+06 102088.19 2.759140e+03 0.000 2204.75 37 0.000000e+00 0.00 2.451712e+06 2.349624e+06 102088.19 NULL
2019 Hra/Dept Of Social Services Supervisor Ii 67263.29375 1.076213e+07 436234.79 2.726467e+03 160.525 9285.25 160 1.605250e+02 25684.00 1.119836e+07 1.078781e+07 410550.79 NULL
2019 Hra/Dept Of Social Services Supervisor Ii Social Work 74198.00000 3.709900e+05 7564.89 1.512978e+03 0.000 114.50 5 0.000000e+00 0.00 3.785549e+05 3.709900e+05 7564.89 NULL
2019 Hra/Dept Of Social Services Supervisor Iii 74492.04545 3.277650e+06 62744.79 1.426018e+03 0.000 1222.00 44 0.000000e+00 0.00 3.340395e+06 3.277650e+06 62744.79 NULL
2019 Hra/Dept Of Social Services Supervisor Iii Social Work 80827.33333 9.699280e+05 2170.96 1.809133e+02 0.000 35.00 12 0.000000e+00 0.00 9.720990e+05 9.699280e+05 2170.96 NULL
2019 Hra/Dept Of Social Services Supervisor Of Electrical Installations & Maintenance 75830.00000 7.583000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.583000e+04 7.583000e+04 0.00 NULL
2019 Hra/Dept Of Social Services Supervisor Of Nurses 99996.55556 8.999690e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.999690e+05 8.999690e+05 0.00 NULL
2019 Hra/Dept Of Social Services Supervisor Of Office Machine Operations 43701.88889 7.866340e+05 124115.78 6.895321e+03 79.685 3621.25 18 7.968500e+01 1434.33 9.107498e+05 7.880683e+05 122681.45 NULL
2019 Hra/Dept Of Social Services Supervisor Of Stock Workers 47780.66667 2.866840e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.866840e+05 2.866840e+05 0.00 NULL
2019 Hra/Dept Of Social Services Supervisor Plumber NA NA 69958.94 3.497947e+04 34979.470 640.00 2 3.497947e+04 69958.94 NA NA NA NULL
2019 Hra/Dept Of Social Services Telecommunications Associate 74340.00000 5.203800e+05 14837.77 2.119681e+03 1286.390 344.50 7 1.286390e+03 9004.73 5.352178e+05 5.293847e+05 5833.04 NULL
2019 Hra/Dept Of Social Services Telecommunications Manager 99634.00000 9.963400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.963400e+04 9.963400e+04 0.00 NULL
2019 Hra/Dept Of Social Services Title Examiner 42827.00000 4.282700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.282700e+04 4.282700e+04 0.00 NULL
2019 Human Rights Commission Administrative Business Promotion Coordinator 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2019 Human Rights Commission Administrative Public Information Specialist 133707.00000 2.674140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.674140e+05 2.674140e+05 0.00 NULL
2019 Human Rights Commission Agency Attorney 69059.89130 3.176755e+06 0.00 0.000000e+00 0.000 0.00 46 0.000000e+00 0.00 3.176755e+06 3.176755e+06 0.00 NULL
2019 Human Rights Commission Agency Attorney Interne 57944.00000 5.794400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.794400e+04 5.794400e+04 0.00 NULL
2019 Human Rights Commission Associate Human Rights Specialist 66220.40625 2.119053e+06 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 2.119053e+06 2.119053e+06 0.00 NULL
2019 Human Rights Commission Attorney At Law 87526.00000 1.750520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.750520e+05 1.750520e+05 0.00 NULL
2019 Human Rights Commission Certified It Developer 77814.00000 7.781400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.781400e+04 7.781400e+04 0.00 NULL
2019 Human Rights Commission Chairman Commission On Human Rights 221151.00000 2.211510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.211510e+05 2.211510e+05 0.00 NULL
2019 Human Rights Commission College Aide 10698.87500 1.069888e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.069888e+04 1.069888e+04 0.00 NULL
2019 Human Rights Commission Community Assistant 14200.56833 1.278051e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.278051e+05 1.278051e+05 0.00 NULL
2019 Human Rights Commission Community Associate 47446.25000 1.897850e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.897850e+05 1.897850e+05 0.00 NULL
2019 Human Rights Commission Community Coordinator 59740.84615 7.766310e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 7.766310e+05 7.766310e+05 0.00 NULL
2019 Human Rights Commission Computer Associate 68632.00000 1.372640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.372640e+05 1.372640e+05 0.00 NULL
2019 Human Rights Commission Computer Operations Manager 108136.33333 3.244090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.244090e+05 3.244090e+05 0.00 NULL
2019 Human Rights Commission Counsel 160345.00000 1.603450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.603450e+05 1.603450e+05 0.00 NULL
2019 Human Rights Commission Dep Commissioner For Community Relations 174750.66667 5.242520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.242520e+05 5.242520e+05 0.00 NULL
2019 Human Rights Commission Deputy Commissioner For Law Enforcement 153000.00000 1.530000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.530000e+05 1.530000e+05 0.00 NULL
2019 Human Rights Commission Deputy Executive Director 80460.50000 1.609210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.609210e+05 1.609210e+05 0.00 NULL
2019 Human Rights Commission Executive Agency Counsel 108757.27778 1.957631e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.957631e+06 1.957631e+06 0.00 NULL
2019 Human Rights Commission Executive Director 105180.87500 8.414470e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.414470e+05 8.414470e+05 0.00 NULL
2019 Human Rights Commission Graphic Artist 60560.00000 6.056000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.056000e+04 6.056000e+04 0.00 NULL
2019 Human Rights Commission Human Rights Specialist 53129.31579 1.009457e+06 3887.14 2.045863e+02 0.000 48.25 19 0.000000e+00 0.00 1.013344e+06 1.009457e+06 3887.14 NULL
2019 Human Rights Commission Principal Administrative Associate - Lev 1 & 2 Non Supvr 61964.00000 1.858920e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.858920e+05 1.858920e+05 0.00 NULL
2019 Human Rights Commission Prinicipal Human Rights Specialist 78537.00000 3.926850e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.926850e+05 3.926850e+05 0.00 NULL
2019 Human Rights Commission Secretary 47714.00000 4.771400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.771400e+04 4.771400e+04 0.00 NULL
2019 Human Rights Commission Secretary To The Chairperson 60403.00000 6.040300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.040300e+04 6.040300e+04 0.00 NULL
2019 Hunter College High School Assistant Principal 116652.42857 8.165670e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.165670e+05 8.165670e+05 0.00 NULL
2019 Hunter College High School Assistant Principal Admin 122567.00000 1.225670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.225670e+05 1.225670e+05 0.00 NULL
2019 Hunter College High School Assistant Teacher 30635.59091 6.739830e+05 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 6.739830e+05 6.739830e+05 0.00 NULL
2019 Hunter College High School Assistant To Heo 70026.33333 2.100790e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.100790e+05 2.100790e+05 0.00 NULL
2019 Hunter College High School Business Data And Reporting Analyst 51374.00000 1.027480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.027480e+05 1.027480e+05 0.00 NULL
2019 Hunter College High School Coach NA NA 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 NA NA NA NULL
2019 Hunter College High School College Accountant 49794.00000 4.979400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.979400e+04 4.979400e+04 0.00 NULL
2019 Hunter College High School College Assistant 11958.66560 2.630906e+05 781.13 3.550591e+01 0.000 35.25 22 0.000000e+00 0.00 2.638718e+05 2.630906e+05 781.13 NULL
2019 Hunter College High School Computer Systems Manager 99471.00000 9.947100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.947100e+04 9.947100e+04 0.00 NULL
2019 Hunter College High School Cuny Administrator Assistant 50547.00000 3.538290e+05 1516.22 2.166029e+02 0.000 44.00 7 0.000000e+00 0.00 3.553452e+05 3.538290e+05 1516.22 NULL
2019 Hunter College High School Cuny Custodial Assistant 33350.66667 1.000520e+05 11075.90 3.691967e+03 3728.360 411.25 3 3.691967e+03 11075.90 1.111279e+05 1.111279e+05 0.00 NULL
2019 Hunter College High School Cuny Office Assistant 34068.62500 2.725490e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 2.725490e+05 2.725490e+05 0.00 NULL
2019 Hunter College High School Education & Vocat Counselor 94156.20000 4.707810e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.707810e+05 4.707810e+05 0.00 NULL
2019 Hunter College High School Hccs Sr College Lab Tech 68562.75000 2.742510e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.742510e+05 2.742510e+05 0.00 NULL
2019 Hunter College High School Higher Education Assistant 75110.00000 1.502200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.502200e+05 1.502200e+05 0.00 NULL
2019 Hunter College High School Higher Education Associate 106700.00000 2.134000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.134000e+05 2.134000e+05 0.00 NULL
2019 Hunter College High School Higher Education Officer 104461.00000 1.044610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.044610e+05 1.044610e+05 0.00 NULL
2019 Hunter College High School It Assistant 66197.33333 1.985920e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.985920e+05 1.985920e+05 0.00 NULL
2019 Hunter College High School It Associate 66710.00000 6.671000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.671000e+04 6.671000e+04 0.00 NULL
2019 Hunter College High School It Senior Associate 84345.00000 2.530350e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.530350e+05 2.530350e+05 0.00 NULL
2019 Hunter College High School It Support Assistant 32333.92250 6.466785e+04 1393.48 6.967400e+02 696.740 42.00 2 6.967400e+02 1393.48 6.606132e+04 6.606132e+04 0.00 NULL
2019 Hunter College High School Substitute Teacher 27077.40829 3.168057e+06 0.00 0.000000e+00 0.000 0.00 117 0.000000e+00 0.00 3.168057e+06 3.168057e+06 0.00 NULL
2019 Hunter College High School Teacher NA NA 0.00 0.000000e+00 0.000 0.00 111 0.000000e+00 0.00 NA NA NA NULL
2019 Hunter College High School Teacher Of Library 82278.00000 8.227800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.227800e+04 8.227800e+04 0.00 NULL
2019 Independent Budget Office Agency Chief Contracting Officer 122463.00000 1.224630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.224630e+05 1.224630e+05 0.00 NULL
2019 Independent Budget Office Assistant Budget Analyst 67825.50000 1.356510e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.356510e+05 1.356510e+05 0.00 NULL
2019 Independent Budget Office Budget Analyst 100536.42424 3.317702e+06 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 3.317702e+06 3.317702e+06 0.00 NULL
2019 Independent Budget Office Director Of Independent Budget Office 212402.00000 2.124020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.124020e+05 2.124020e+05 0.00 NULL
2019 Independent Budget Office Executive Agency Counsel 100834.51840 1.008345e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.008345e+05 1.008345e+05 0.00 NULL
2019 Independent Budget Office Principal Administrative Associate - Lev 1 & 2 Non Supvr 82580.00000 8.258000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.258000e+04 8.258000e+04 0.00 NULL
2019 Landmarks Preservation Comm Admin Landmarks Preservationist 78000.00000 7.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.800000e+04 7.800000e+04 0.00 NULL
2019 Landmarks Preservation Comm Administrative Landmarks Preservationist 94978.01778 8.548022e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.548022e+05 8.548022e+05 0.00 NULL
2019 Landmarks Preservation Comm Administrative Public Information Specialist 90111.00000 9.011100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.011100e+04 9.011100e+04 0.00 NULL
2019 Landmarks Preservation Comm Administrative Staff Analyst 114725.00000 1.147250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.147250e+05 1.147250e+05 0.00 NULL
2019 Landmarks Preservation Comm Associate Landmarks Preservationist 82011.00000 8.201100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.201100e+04 8.201100e+04 0.00 NULL
2019 Landmarks Preservation Comm Associate Staff Analyst 90830.00000 9.083000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.083000e+04 9.083000e+04 0.00 NULL
2019 Landmarks Preservation Comm Attorney At Law 88681.00000 8.868100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.868100e+04 8.868100e+04 0.00 NULL
2019 Landmarks Preservation Comm Chair-Landmarks Preservation Commission 214429.50000 4.288590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.288590e+05 4.288590e+05 0.00 NULL
2019 Landmarks Preservation Comm Chauffeur-Attendant 45055.00000 4.505500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.505500e+04 4.505500e+04 0.00 NULL
2019 Landmarks Preservation Comm Clerical Associate 57579.00000 5.757900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.757900e+04 5.757900e+04 0.00 NULL
2019 Landmarks Preservation Comm College Aide 16494.71200 1.649471e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.649471e+04 1.649471e+04 0.00 NULL
2019 Landmarks Preservation Comm Community Associate 39229.72727 4.315270e+05 929.02 8.445636e+01 0.000 28.25 11 0.000000e+00 0.00 4.324560e+05 4.315270e+05 929.02 NULL
2019 Landmarks Preservation Comm Community Coordinator 63924.00000 1.278480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.278480e+05 1.278480e+05 0.00 NULL
2019 Landmarks Preservation Comm Computer Programmer Analyst 53943.00000 1.078860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.078860e+05 1.078860e+05 0.00 NULL
2019 Landmarks Preservation Comm Computer Systems Manager 117348.00000 1.173480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.173480e+05 1.173480e+05 0.00 NULL
2019 Landmarks Preservation Comm Counsel 157299.00000 1.572990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.572990e+05 1.572990e+05 0.00 NULL
2019 Landmarks Preservation Comm Director Of Public Relations 90111.00000 9.011100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.011100e+04 9.011100e+04 0.00 NULL
2019 Landmarks Preservation Comm Director Of Urban Archaeology 94457.00000 9.445700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.445700e+04 9.445700e+04 0.00 NULL
2019 Landmarks Preservation Comm Executive Director 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2019 Landmarks Preservation Comm Executive Program Specialist 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2019 Landmarks Preservation Comm Landmarks Preservationist 63554.61400 2.987067e+06 9181.89 1.953594e+02 0.000 248.00 47 0.000000e+00 0.00 2.996249e+06 2.987067e+06 9181.89 NULL
2019 Landmarks Preservation Comm Principal Administrative Associate - Lev 1 & 2 Non Supvr 64166.00000 6.416600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.416600e+04 6.416600e+04 0.00 NULL
2019 Landmarks Preservation Comm Procurement Analyst 61350.00000 6.135000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.135000e+04 6.135000e+04 0.00 NULL
2019 Landmarks Preservation Comm Secretary To The Chair, Landmarks Preservation Commission 65012.00000 6.501200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.501200e+04 6.501200e+04 0.00 NULL
2019 Landmarks Preservation Comm Secretary To The Executive Director 50062.00000 5.006200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.006200e+04 5.006200e+04 0.00 NULL
2019 Landmarks Preservation Comm Staff Analyst 59481.00000 5.948100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.948100e+04 5.948100e+04 0.00 NULL
2019 Landmarks Preservation Comm Urban Archeologist 41443.48893 1.243305e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.243305e+05 1.243305e+05 0.00 NULL
2019 Law Department Accountant 70332.00000 1.406640e+05 304.66 1.523300e+02 152.330 8.00 2 1.523300e+02 304.66 1.409687e+05 1.409687e+05 0.00 NULL
2019 Law Department Administrative Accountant 131201.00000 3.936030e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.936030e+05 3.936030e+05 0.00 NULL
2019 Law Department Administrative Procurement Analyst 87778.00000 1.755560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.755560e+05 1.755560e+05 0.00 NULL
2019 Law Department Administrative Public Information Specialist 162624.50000 3.252490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.252490e+05 3.252490e+05 0.00 NULL
2019 Law Department Administrative Staff Analyst 117831.28571 1.649638e+06 28532.29 2.038021e+03 0.000 361.25 14 0.000000e+00 0.00 1.678170e+06 1.649638e+06 28532.29 NULL
2019 Law Department Assistant Corporation Counsel 105909.36535 1.188303e+08 932.65 8.312389e-01 0.000 33.25 1122 0.000000e+00 0.00 1.188312e+08 1.188303e+08 932.65 NULL
2019 Law Department Associate Quality Assurance Specialist 75786.12500 6.062890e+05 83720.66 1.046508e+04 8563.165 1727.25 8 8.563165e+03 68505.32 6.900097e+05 6.747943e+05 15215.34 NULL
2019 Law Department Associate Staff Analyst 80976.79260 4.858608e+05 25939.35 4.323225e+03 1379.890 473.75 6 1.379890e+03 8279.34 5.118001e+05 4.941401e+05 17660.01 NULL
2019 Law Department Bookkeeper 50000.09091 5.500010e+05 106322.34 9.665667e+03 5765.880 2676.75 11 5.765880e+03 63424.68 6.563233e+05 6.134257e+05 42897.66 NULL
2019 Law Department Certified Applications Developer 106623.00000 1.066230e+05 66.67 6.667000e+01 66.670 0.00 1 6.667000e+01 66.67 1.066897e+05 1.066897e+05 0.00 NULL
2019 Law Department Certified It Administrator 108088.33333 3.242650e+05 15693.25 5.231083e+03 6664.940 183.00 3 5.231083e+03 15693.25 3.399582e+05 3.399582e+05 0.00 NULL
2019 Law Department Certified It Developer 108087.00000 1.080870e+05 5452.49 5.452490e+03 5452.490 76.00 1 5.452490e+03 5452.49 1.135395e+05 1.135395e+05 0.00 NULL
2019 Law Department City Assessor 86741.50000 3.469660e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.469660e+05 3.469660e+05 0.00 NULL
2019 Law Department City Custodial Assistant 34418.50000 6.883700e+04 7132.73 3.566365e+03 3566.365 229.50 2 3.566365e+03 7132.73 7.596973e+04 7.596973e+04 0.00 NULL
2019 Law Department Claim Specialist 47845.37226 6.554816e+06 323082.46 2.358266e+03 0.000 9074.00 137 0.000000e+00 0.00 6.877898e+06 6.554816e+06 323082.46 NULL
2019 Law Department Clerical Associate 33868.77018 8.670405e+06 412177.45 1.610068e+03 0.000 13389.50 256 0.000000e+00 0.00 9.082583e+06 8.670405e+06 412177.45 NULL
2019 Law Department College Aide 4629.54162 9.259083e+04 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 9.259083e+04 9.259083e+04 0.00 NULL
2019 Law Department College Aide - Assignment Levels Ii And Iii 8082.42350 8.082423e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.082423e+03 8.082423e+03 0.00 NULL
2019 Law Department Community Associate 48383.00000 9.676600e+04 254.63 1.273150e+02 127.315 14.50 2 1.273150e+02 254.63 9.702063e+04 9.702063e+04 0.00 NULL
2019 Law Department Community Coordinator 56867.39535 2.445298e+06 16919.72 3.934819e+02 86.250 478.50 43 8.625000e+01 3708.75 2.462218e+06 2.449007e+06 13210.97 NULL
2019 Law Department Computer Aide-Non-Spvr 28347.52466 1.984327e+05 15500.30 2.214329e+03 0.000 483.75 7 0.000000e+00 0.00 2.139330e+05 1.984327e+05 15500.30 NULL
2019 Law Department Computer Associate 75859.74021 1.441335e+06 60555.82 3.187148e+03 1348.800 1172.50 19 1.348800e+03 25627.20 1.501891e+06 1.466962e+06 34928.62 NULL
2019 Law Department Computer Operations Manager 112087.00000 1.120870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.120870e+05 1.120870e+05 0.00 NULL
2019 Law Department Computer Programmer Analyst 57202.00000 5.720200e+04 334.58 3.345800e+02 334.580 9.50 1 3.345800e+02 334.58 5.753658e+04 5.753658e+04 0.00 NULL
2019 Law Department Computer Service Technician 54490.71700 1.089814e+05 22298.46 1.114923e+04 11149.230 564.50 2 1.114923e+04 22298.46 1.312799e+05 1.312799e+05 0.00 NULL
2019 Law Department Computer Specialist 99096.90000 9.909690e+05 26242.75 2.624275e+03 959.615 370.50 10 9.596150e+02 9596.15 1.017212e+06 1.000565e+06 16646.60 NULL
2019 Law Department Computer Systems Manager 155518.37500 1.244147e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.244147e+06 1.244147e+06 0.00 NULL
2019 Law Department Corporation Counsel 236088.00000 2.360880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.360880e+05 2.360880e+05 0.00 NULL
2019 Law Department Custodian 50708.28571 3.549580e+05 73230.21 1.046146e+04 3418.090 1875.75 7 3.418090e+03 23926.63 4.281882e+05 3.788846e+05 49303.58 NULL
2019 Law Department Customer Information Representative Ma L 1549 57098.57143 3.996900e+05 55428.97 7.918424e+03 5206.500 1466.25 7 5.206500e+03 36445.50 4.551190e+05 4.361355e+05 18983.47 NULL
2019 Law Department Department Librarian 38936.86800 3.893687e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.893687e+04 3.893687e+04 0.00 NULL
2019 Law Department Deputy Director Of Admin Worker’s Comp Benefits 102517.50000 2.050350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.050350e+05 2.050350e+05 0.00 NULL
2019 Law Department Deputy Operation Support Manager 139351.50000 2.787030e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.787030e+05 2.787030e+05 0.00 NULL
2019 Law Department Dir Of Administration, Worker’s Comp Benefits 139651.00000 1.396510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.396510e+05 1.396510e+05 0.00 NULL
2019 Law Department Director Of Administration 184151.00000 1.841510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.841510e+05 1.841510e+05 0.00 NULL
2019 Law Department Executive Agency Counsel 221151.00000 2.211510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.211510e+05 2.211510e+05 0.00 NULL
2019 Law Department Executive Program Specialist 172232.00000 1.722320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.722320e+05 1.722320e+05 0.00 NULL
2019 Law Department First Assistant Corporation Counsel 236186.00000 2.361860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.361860e+05 2.361860e+05 0.00 NULL
2019 Law Department It Security Specialist 135584.00000 1.355840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.355840e+05 1.355840e+05 0.00 NULL
2019 Law Department It Service Management Specialist 89850.00000 8.985000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.985000e+04 8.985000e+04 0.00 NULL
2019 Law Department Legal Secretarial Assistant - Al 1 Only 43011.00000 1.290330e+05 6204.36 2.068120e+03 0.000 213.75 3 0.000000e+00 0.00 1.352374e+05 1.290330e+05 6204.36 NULL
2019 Law Department Legal Secretarial Assistant Al 2,3,4 Only 53369.63791 1.601089e+06 144308.88 4.810296e+03 1156.985 3668.50 30 1.156985e+03 34709.55 1.745398e+06 1.635799e+06 109599.33 NULL
2019 Law Department Management Auditor 80036.00000 8.003600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.003600e+04 8.003600e+04 0.00 NULL
2019 Law Department Medicolegal Analyst 80095.00000 8.009500e+04 13551.87 1.355187e+04 13551.870 283.50 1 1.355187e+04 13551.87 9.364687e+04 9.364687e+04 0.00 NULL
2019 Law Department Motor Vehicle Operator 32702.70250 2.289189e+05 7272.52 1.038931e+03 47.160 216.25 7 4.716000e+01 330.12 2.361914e+05 2.292490e+05 6942.40 NULL
2019 Law Department Paralegal Aide 46777.55685 1.347194e+07 408117.82 1.417076e+03 0.000 11666.75 288 0.000000e+00 0.00 1.388005e+07 1.347194e+07 408117.82 NULL
2019 Law Department Principal Administrative Associate - Lev 1 & 2 Non Supvr 59353.00000 7.715890e+05 86659.50 6.666115e+03 0.000 2031.25 13 0.000000e+00 0.00 8.582485e+05 7.715890e+05 86659.50 NULL
2019 Law Department Principal Title Examiner 67914.40000 3.395720e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.395720e+05 3.395720e+05 0.00 NULL
2019 Law Department Procurement Analyst 69903.00000 1.398060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.398060e+05 1.398060e+05 0.00 NULL
2019 Law Department Psychologist 95269.00000 1.905380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.905380e+05 1.905380e+05 0.00 NULL
2019 Law Department Public Records Aide 34533.06333 4.143968e+05 58313.75 4.859479e+03 438.140 1949.75 12 4.381400e+02 5257.68 4.727105e+05 4.196544e+05 53056.07 NULL
2019 Law Department Secretary 38489.50000 7.697900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.697900e+04 7.697900e+04 0.00 NULL
2019 Law Department Secretary To The Corporation Counsel 98681.00000 9.868100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.868100e+04 9.868100e+04 0.00 NULL
2019 Law Department Secretary To The First Assistant Corporation Counsel 74055.00000 7.405500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.405500e+04 7.405500e+04 0.00 NULL
2019 Law Department Senior Photographer 53167.00000 5.316700e+04 1802.12 1.802120e+03 1802.120 68.50 1 1.802120e+03 1802.12 5.496912e+04 5.496912e+04 0.00 NULL
2019 Law Department Senior Student Legal Specialist 39820.82367 4.380291e+05 0.00 0.000000e+00 0.000 14.00 11 0.000000e+00 0.00 4.380291e+05 4.380291e+05 0.00 NULL
2019 Law Department Senior Title Examiner 54574.00000 5.457400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.457400e+04 5.457400e+04 0.00 NULL
2019 Law Department Space Analyst 69689.50000 1.393790e+05 41965.22 2.098261e+04 20982.610 927.50 2 2.098261e+04 41965.22 1.813442e+05 1.813442e+05 0.00 NULL
2019 Law Department Staff Analyst 65757.43158 1.249391e+06 21020.59 1.106347e+03 70.310 535.50 19 7.031000e+01 1335.89 1.270412e+06 1.250727e+06 19684.70 NULL
2019 Law Department Stenographer To The Corporation Counsel 69659.00000 6.965900e+04 114.38 1.143800e+02 114.380 3.00 1 1.143800e+02 114.38 6.977338e+04 6.977338e+04 0.00 NULL
2019 Law Department Student Legal Specialist 32323.76000 1.616188e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.616188e+05 1.616188e+05 0.00 NULL
2019 Law Department Summer Graduate Intern 3157.10601 3.346532e+05 0.00 0.000000e+00 0.000 0.00 106 0.000000e+00 0.00 3.346532e+05 3.346532e+05 0.00 NULL
2019 Law Department Supervising Computer Service Technician 66447.03390 2.657881e+05 24636.74 6.159185e+03 5578.275 554.75 4 5.578275e+03 22313.10 2.904249e+05 2.881012e+05 2323.64 NULL
2019 Law Department Supervisor Of Office Machine Operations 39288.00000 3.928800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.928800e+04 3.928800e+04 0.00 NULL
2019 Law Department Worker’s Compensation Benefits Examiner 45237.77668 3.528547e+06 257644.91 3.303140e+03 2925.990 8090.00 78 2.925990e+03 228227.22 3.786191e+06 3.756774e+06 29417.69 NULL
2019 Manhattan Community Board #1 Community Coordinator 70458.50000 1.409170e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.409170e+05 1.409170e+05 0.00 NULL
2019 Manhattan Community Board #1 District Manager 85891.00000 8.589100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.589100e+04 8.589100e+04 0.00 NULL
2019 Manhattan Community Board #10 Community Assistant 38855.00000 3.885500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.885500e+04 3.885500e+04 0.00 NULL
2019 Manhattan Community Board #10 Community Associate 41928.50000 8.385700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.385700e+04 8.385700e+04 0.00 NULL
2019 Manhattan Community Board #10 District Manager 81014.50000 1.620290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.620290e+05 1.620290e+05 0.00 NULL
2019 Manhattan Community Board #11 Assistant District Manager 48497.00000 4.849700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.849700e+04 4.849700e+04 0.00 NULL
2019 Manhattan Community Board #11 Community Assistant 13778.71720 1.377872e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.377872e+04 1.377872e+04 0.00 NULL
2019 Manhattan Community Board #11 District Manager 96847.00000 9.684700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.684700e+04 9.684700e+04 0.00 NULL
2019 Manhattan Community Board #12 Community Assistant 39878.00000 3.987800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.987800e+04 3.987800e+04 0.00 NULL
2019 Manhattan Community Board #12 Community Associate 50469.00000 5.046900e+04 195.36 1.953600e+02 195.360 6.75 1 1.953600e+02 195.36 5.066436e+04 5.066436e+04 0.00 NULL
2019 Manhattan Community Board #12 District Manager 91786.00000 9.178600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.178600e+04 9.178600e+04 0.00 NULL
2019 Manhattan Community Board #2 Assistant District Manager 46933.00000 4.693300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.693300e+04 4.693300e+04 0.00 NULL
2019 Manhattan Community Board #2 Community Assistant 35764.00000 3.576400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.576400e+04 3.576400e+04 0.00 NULL
2019 Manhattan Community Board #2 Community Coordinator 60403.00000 6.040300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.040300e+04 6.040300e+04 0.00 NULL
2019 Manhattan Community Board #2 District Manager 86304.00000 8.630400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.630400e+04 8.630400e+04 0.00 NULL
2019 Manhattan Community Board #3 Assistant District Manager 50585.00000 1.011700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.011700e+05 1.011700e+05 0.00 NULL
2019 Manhattan Community Board #3 Community Associate 43937.00000 8.787400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.787400e+04 8.787400e+04 0.00 NULL
2019 Manhattan Community Board #3 District Manager 87676.00000 8.767600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.767600e+04 8.767600e+04 0.00 NULL
2019 Manhattan Community Board #4 Community Associate 42945.00000 4.294500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.294500e+04 4.294500e+04 0.00 NULL
2019 Manhattan Community Board #4 Community Coordinator 65933.00000 6.593300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.593300e+04 6.593300e+04 0.00 NULL
2019 Manhattan Community Board #4 District Manager 94251.00000 9.425100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.425100e+04 9.425100e+04 0.00 NULL
2019 Manhattan Community Board #5 Assistant District Manager 63726.00000 6.372600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.372600e+04 6.372600e+04 0.00 NULL
2019 Manhattan Community Board #5 Community Associate 43551.00000 1.306530e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.306530e+05 1.306530e+05 0.00 NULL
2019 Manhattan Community Board #5 District Manager 108284.00000 1.082840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.082840e+05 1.082840e+05 0.00 NULL
2019 Manhattan Community Board #6 Assistant District Manager 51125.00000 5.112500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.112500e+04 5.112500e+04 0.00 NULL
2019 Manhattan Community Board #6 Community Associate 41000.00000 8.200000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.200000e+04 8.200000e+04 0.00 NULL
2019 Manhattan Community Board #6 District Manager 90737.00000 9.073700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.073700e+04 9.073700e+04 0.00 NULL
2019 Manhattan Community Board #7 Community Associate 42799.00000 4.279900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.279900e+04 4.279900e+04 0.00 NULL
2019 Manhattan Community Board #7 Community Coordinator 72799.76000 7.279976e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.279976e+04 7.279976e+04 0.00 NULL
2019 Manhattan Community Board #7 District Manager 100909.00000 1.009090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.009090e+05 1.009090e+05 0.00 NULL
2019 Manhattan Community Board #8 Assistant District Manager 50562.50000 1.011250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.011250e+05 1.011250e+05 0.00 NULL
2019 Manhattan Community Board #8 Community Assistant 34673.33333 1.040200e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.040200e+05 1.040200e+05 0.00 NULL
2019 Manhattan Community Board #8 Community Associate 27094.43667 8.128331e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 8.128331e+04 8.128331e+04 0.00 NULL
2019 Manhattan Community Board #8 District Manager 80869.50000 1.617390e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.617390e+05 1.617390e+05 0.00 NULL
2019 Manhattan Community Board #9 Community Associate 42450.98920 8.490198e+04 2.63 1.315000e+00 1.315 0.00 2 1.315000e+00 2.63 8.490461e+04 8.490461e+04 0.00 NULL
2019 Manhattan Community Board #9 District Manager 92832.00000 9.283200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.283200e+04 9.283200e+04 0.00 NULL
2019 Mayors Office Of Contract Svcs Adm Manager-Non-Mgrl From M1/M2 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2019 Mayors Office Of Contract Svcs Admin Contract Specialist 121348.33333 3.640450e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.640450e+05 3.640450e+05 0.00 NULL
2019 Mayors Office Of Contract Svcs Administrative Manager 122571.50000 2.451430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.451430e+05 2.451430e+05 0.00 NULL
2019 Mayors Office Of Contract Svcs Administrative Procurement Analyst 98133.50000 1.962670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.962670e+05 1.962670e+05 0.00 NULL
2019 Mayors Office Of Contract Svcs Administrative Staff Analyst 146503.20000 7.325160e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.325160e+05 7.325160e+05 0.00 NULL
2019 Mayors Office Of Contract Svcs Computer Systems Manager 122771.86364 2.700981e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 2.700981e+06 2.700981e+06 0.00 NULL
2019 Mayors Office Of Contract Svcs Executive Agency Counsel 153188.00000 3.063760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.063760e+05 3.063760e+05 0.00 NULL
2019 Mayors Office Of Contract Svcs Graphic Artist 77077.00000 7.707700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.707700e+04 7.707700e+04 0.00 NULL
2019 Mayors Office Of Contract Svcs Mayoral Office Assistant 50431.38095 1.059059e+06 378.92 1.804381e+01 0.000 9.00 21 0.000000e+00 0.00 1.059438e+06 1.059059e+06 378.92 NULL
2019 Mayors Office Of Contract Svcs Mayoral Program Coordinator 70484.00000 7.048400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.048400e+04 7.048400e+04 0.00 NULL
2019 Mayors Office Of Contract Svcs New York City Public Service Fellow 45000.00000 4.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.500000e+04 4.500000e+04 0.00 NULL
2019 Mayors Office Of Contract Svcs Procurement Analyst 66463.00000 6.646300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.646300e+04 6.646300e+04 0.00 NULL
2019 Mayors Office Of Contract Svcs Research Projects Coord 88701.38878 1.037806e+07 1357.99 1.160675e+01 0.000 34.50 117 0.000000e+00 0.00 1.037942e+07 1.037806e+07 1357.99 NULL
2019 Mayors Office Of Contract Svcs Research Projects Coordinator 53426.78871 1.656230e+06 178.67 5.763548e+00 0.000 5.50 31 0.000000e+00 0.00 1.656409e+06 1.656230e+06 178.67 NULL
2019 Mayors Office Of Contract Svcs Special Assistant 126173.00000 8.832110e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.832110e+05 8.832110e+05 0.00 NULL
2019 Municipal Water Fin Authority Budget Analyst 103139.58333 1.237675e+06 3734.25 3.111875e+02 0.000 89.25 12 0.000000e+00 0.00 1.241409e+06 1.237675e+06 3734.25 NULL
2019 Municipal Water Fin Authority Statistical Secretary 65705.00000 6.570500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.570500e+04 6.570500e+04 0.00 NULL
2019 Nyc Dept Of Veterans’ Services Admin Community Relations Specialist 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2019 Nyc Dept Of Veterans’ Services Administrative Community Relations Specialist 82035.00000 1.640700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.640700e+05 1.640700e+05 0.00 NULL
2019 Nyc Dept Of Veterans’ Services Administrative Director Of Social Services 134885.50000 2.697710e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.697710e+05 2.697710e+05 0.00 NULL
2019 Nyc Dept Of Veterans’ Services Administrative Staff Analyst 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2019 Nyc Dept Of Veterans’ Services Agency Attorney 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2019 Nyc Dept Of Veterans’ Services Chauffeur-Attendant 52100.00000 5.210000e+04 10803.62 1.080362e+04 10803.620 273.75 1 1.080362e+04 10803.62 6.290362e+04 6.290362e+04 0.00 NULL
2019 Nyc Dept Of Veterans’ Services College Aide 7560.00000 7.560000e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.560000e+03 7.560000e+03 0.00 NULL
2019 Nyc Dept Of Veterans’ Services Commissioner Of Department Of Veteran’s Services 221151.00000 2.211510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.211510e+05 2.211510e+05 0.00 NULL
2019 Nyc Dept Of Veterans’ Services Community Associate 52533.00000 5.253300e+04 34.27 3.427000e+01 34.270 0.00 1 3.427000e+01 34.27 5.256727e+04 5.256727e+04 0.00 NULL
2019 Nyc Dept Of Veterans’ Services Community Coordinator 65006.18182 1.430136e+06 16265.83 7.393559e+02 209.345 369.00 22 2.093450e+02 4605.59 1.446402e+06 1.434742e+06 11660.24 NULL
2019 Nyc Dept Of Veterans’ Services Deputy Assistant Commissioner 113759.83333 1.365118e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.365118e+06 1.365118e+06 0.00 NULL
2019 Nyc Dept Of Veterans’ Services Mayoral Office Assistant 90000.00000 9.000000e+04 2356.02 2.356020e+03 2356.020 44.00 1 2.356020e+03 2356.02 9.235602e+04 9.235602e+04 0.00 NULL
2019 Nyc Dept Of Veterans’ Services Special Assistant 143690.00000 5.747600e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.747600e+05 5.747600e+05 0.00 NULL
2019 Nyc Employees Retirement Sys Accountant 70974.33333 6.387690e+05 12760.30 1.417811e+03 83.270 267.25 9 8.327000e+01 749.43 6.515293e+05 6.395184e+05 12010.87 NULL
2019 Nyc Employees Retirement Sys Adm Manager-Non-Mgrl From M1/M2 83931.57143 5.875210e+05 14399.68 2.057097e+03 1035.450 302.25 7 1.035450e+03 7248.15 6.019207e+05 5.947692e+05 7151.53 NULL
2019 Nyc Employees Retirement Sys Administrative Accountant 118687.25000 4.747490e+05 1091.64 2.729100e+02 55.405 39.50 4 5.540500e+01 221.62 4.758406e+05 4.749706e+05 870.02 NULL
2019 Nyc Employees Retirement Sys Administrative Actuary 103866.00000 1.038660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.038660e+05 1.038660e+05 0.00 NULL
2019 Nyc Employees Retirement Sys Administrative Graphic Artist 102462.00000 1.024620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.024620e+05 1.024620e+05 0.00 NULL
2019 Nyc Employees Retirement Sys Administrative Labor Relations Analyst 146927.33333 4.407820e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.407820e+05 4.407820e+05 0.00 NULL
2019 Nyc Employees Retirement Sys Administrative Management Auditor 151504.50000 3.030090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.030090e+05 3.030090e+05 0.00 NULL
2019 Nyc Employees Retirement Sys Administrative Manager 127528.50000 2.550570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.550570e+05 2.550570e+05 0.00 NULL
2019 Nyc Employees Retirement Sys Administrative Procurement Analyst 154274.00000 1.542740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.542740e+05 1.542740e+05 0.00 NULL
2019 Nyc Employees Retirement Sys Administrative Public Information Specialist 133045.00000 2.660900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.660900e+05 2.660900e+05 0.00 NULL
2019 Nyc Employees Retirement Sys Administrative Retirement Benefits Specialist 123559.68750 1.976955e+06 3984.61 2.490381e+02 0.000 79.50 16 0.000000e+00 0.00 1.980940e+06 1.976955e+06 3984.61 NULL
2019 Nyc Employees Retirement Sys Administrative Retirements Benefits Specialist 101545.00000 2.030900e+05 0.00 0.000000e+00 0.000 12.50 2 0.000000e+00 0.00 2.030900e+05 2.030900e+05 0.00 NULL
2019 Nyc Employees Retirement Sys Administrative Staff Analyst 125526.00000 1.129734e+06 20320.10 2.257789e+03 0.000 285.75 9 0.000000e+00 0.00 1.150054e+06 1.129734e+06 20320.10 NULL
2019 Nyc Employees Retirement Sys Agency Attorney 87894.50000 5.273670e+05 6381.87 1.063645e+03 40.235 118.75 6 4.023500e+01 241.41 5.337489e+05 5.276084e+05 6140.46 NULL
2019 Nyc Employees Retirement Sys Assistant Retirement Benefits Examiner 46779.01282 3.648763e+06 140244.64 1.798008e+03 5.000 4525.00 78 5.000000e+00 390.00 3.789008e+06 3.649153e+06 139854.64 NULL
2019 Nyc Employees Retirement Sys Associate Retirement Benefits Examiner 60487.13669 8.407712e+06 510368.75 3.671718e+03 1752.940 12717.00 139 1.752940e+03 243658.66 8.918081e+06 8.651371e+06 266710.09 NULL
2019 Nyc Employees Retirement Sys Associate Staff Analyst 75591.00000 1.511820e+05 2370.99 1.185495e+03 1185.495 95.50 2 1.185495e+03 2370.99 1.535530e+05 1.535530e+05 0.00 NULL
2019 Nyc Employees Retirement Sys Bookkeeper 39672.50000 7.934500e+04 214.02 1.070100e+02 107.010 10.50 2 1.070100e+02 214.02 7.955902e+04 7.955902e+04 0.00 NULL
2019 Nyc Employees Retirement Sys Certified It Administrator 100930.17647 1.715813e+06 66964.72 3.939101e+03 1587.610 1016.25 17 1.587610e+03 26989.37 1.782778e+06 1.742802e+06 39975.35 NULL
2019 Nyc Employees Retirement Sys Certified It Developer 110482.50000 2.209650e+05 6968.94 3.484470e+03 3484.470 112.00 2 3.484470e+03 6968.94 2.279339e+05 2.279339e+05 0.00 NULL
2019 Nyc Employees Retirement Sys Clerical Aide 36677.00000 3.667700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.667700e+04 3.667700e+04 0.00 NULL
2019 Nyc Employees Retirement Sys Clerical Associate 39103.54062 1.955177e+06 344475.90 6.889518e+03 1496.280 11669.25 50 1.496280e+03 74814.00 2.299653e+06 2.029991e+06 269661.90 NULL
2019 Nyc Employees Retirement Sys Community Assistant 38044.00000 3.423960e+05 74000.78 8.222309e+03 3060.190 2848.00 9 3.060190e+03 27541.71 4.163968e+05 3.699377e+05 46459.07 NULL
2019 Nyc Employees Retirement Sys Community Associate 42799.00000 8.559800e+04 3549.12 1.774560e+03 1774.560 174.00 2 1.774560e+03 3549.12 8.914712e+04 8.914712e+04 0.00 NULL
2019 Nyc Employees Retirement Sys Community Coordinator 67139.00000 3.356950e+05 4574.78 9.149560e+02 775.950 102.00 5 7.759500e+02 3879.75 3.402698e+05 3.395748e+05 695.03 NULL
2019 Nyc Employees Retirement Sys Computer Associate 74015.71429 5.181100e+05 15555.90 2.222271e+03 604.380 324.25 7 6.043800e+02 4230.66 5.336659e+05 5.223407e+05 11325.24 NULL
2019 Nyc Employees Retirement Sys Computer Programmer Analyst 65263.00000 6.526300e+04 2.75 2.750000e+00 2.750 0.00 1 2.750000e+00 2.75 6.526575e+04 6.526575e+04 0.00 NULL
2019 Nyc Employees Retirement Sys Computer Specialist 100748.66667 2.115722e+06 37010.53 1.762406e+03 753.380 532.25 21 7.533800e+02 15820.98 2.152733e+06 2.131543e+06 21189.55 NULL
2019 Nyc Employees Retirement Sys Computer Systems Manager 148092.37500 3.554217e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 3.554217e+06 3.554217e+06 0.00 NULL
2019 Nyc Employees Retirement Sys Customer Information Representative Ma L 1549 38622.04955 1.158661e+06 32256.39 1.075213e+03 831.755 1420.50 30 8.317550e+02 24952.65 1.190918e+06 1.183614e+06 7303.74 NULL
2019 Nyc Employees Retirement Sys Deputy Director 192775.00000 1.927750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.927750e+05 1.927750e+05 0.00 NULL
2019 Nyc Employees Retirement Sys Deputy Executive Director 217667.00000 2.176670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.176670e+05 2.176670e+05 0.00 NULL
2019 Nyc Employees Retirement Sys Executive Agency Counsel 136343.75000 5.453750e+05 1871.41 4.678525e+02 0.000 32.25 4 0.000000e+00 0.00 5.472464e+05 5.453750e+05 1871.41 NULL
2019 Nyc Employees Retirement Sys Executive Director 233621.00000 2.336210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.336210e+05 2.336210e+05 0.00 NULL
2019 Nyc Employees Retirement Sys Legal Secretarial Assistant Al 2,3,4 Only 76652.00000 7.665200e+04 348.19 3.481900e+02 348.190 8.00 1 3.481900e+02 348.19 7.700019e+04 7.700019e+04 0.00 NULL
2019 Nyc Employees Retirement Sys Management Auditor 66115.75000 2.644630e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.644630e+05 2.644630e+05 0.00 NULL
2019 Nyc Employees Retirement Sys Office Machine Aide 15294.24086 3.364733e+05 41319.88 1.878176e+03 572.780 2379.50 22 5.727800e+02 12601.16 3.777932e+05 3.490745e+05 28718.72 NULL
2019 Nyc Employees Retirement Sys Principal Administrative Associate - Lev 1 & 2 Non Supvr 61716.74272 1.542919e+06 96019.76 3.840790e+03 972.320 2198.75 25 9.723200e+02 24308.00 1.638938e+06 1.567227e+06 71711.76 NULL
2019 Nyc Employees Retirement Sys Staff Analyst 57590.00000 1.151800e+05 5321.90 2.660950e+03 2660.950 130.50 2 2.660950e+03 5321.90 1.205019e+05 1.205019e+05 0.00 NULL
2019 Nyc Employees Retirement Sys Supervising Computer Service Technician 74347.00000 7.434700e+04 7422.39 7.422390e+03 7422.390 136.75 1 7.422390e+03 7422.39 8.176939e+04 8.176939e+04 0.00 NULL
2019 Nyc Employees Retirement Sys Telecommunications Associate 110117.00000 1.101170e+05 1835.90 1.835900e+03 1835.900 23.75 1 1.835900e+03 1835.90 1.119529e+05 1.119529e+05 0.00 NULL
2019 Nyc Fire Pension Fund Accountant 67541.00000 6.754100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.754100e+04 6.754100e+04 0.00 NULL
2019 Nyc Fire Pension Fund Actuarial Specialist Level Ii, Oj 99723.00000 9.972300e+04 15854.46 1.585446e+04 15854.460 251.75 1 1.585446e+04 15854.46 1.155775e+05 1.155775e+05 0.00 NULL
2019 Nyc Fire Pension Fund Adm Manager-Non-Mgrl From M1/M2 70122.66667 2.103680e+05 25869.86 8.623287e+03 684.820 586.75 3 6.848200e+02 2054.46 2.362379e+05 2.124225e+05 23815.40 NULL
2019 Nyc Fire Pension Fund Administrative Retirement Benefits Specialist 118317.66667 3.549530e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.549530e+05 3.549530e+05 0.00 NULL
2019 Nyc Fire Pension Fund Administrative Staff Analyst 84605.00000 2.538150e+05 2285.85 7.619500e+02 0.000 60.00 3 0.000000e+00 0.00 2.561009e+05 2.538150e+05 2285.85 NULL
2019 Nyc Fire Pension Fund Agency Attorney 91000.00000 9.100000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.100000e+04 9.100000e+04 0.00 NULL
2019 Nyc Fire Pension Fund Agency Chief Contracting Officer 177302.00000 1.773020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.773020e+05 1.773020e+05 0.00 NULL
2019 Nyc Fire Pension Fund Associate Retirement Benefits Examiner 63181.14286 4.422680e+05 46640.34 6.662906e+03 2857.090 954.25 7 2.857090e+03 19999.63 4.889083e+05 4.622676e+05 26640.71 NULL
2019 Nyc Fire Pension Fund Certified It Administrator 85409.45000 8.540945e+04 49.10 4.910000e+01 49.100 1.00 1 4.910000e+01 49.10 8.545855e+04 8.545855e+04 0.00 NULL
2019 Nyc Fire Pension Fund Clerical Associate 57648.66667 1.729460e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.729460e+05 1.729460e+05 0.00 NULL
2019 Nyc Fire Pension Fund Community Coordinator 56903.50000 2.276140e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.276140e+05 2.276140e+05 0.00 NULL
2019 Nyc Fire Pension Fund Confidential Asst To The Executive Dir 84000.00000 8.400000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.400000e+04 8.400000e+04 0.00 NULL
2019 Nyc Fire Pension Fund Deputy Executive Director 187731.00000 1.877310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.877310e+05 1.877310e+05 0.00 NULL
2019 Nyc Fire Pension Fund Executive Agency Counsel 182516.00000 1.825160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.825160e+05 1.825160e+05 0.00 NULL
2019 Nyc Fire Pension Fund Executive Director 221151.00000 2.211510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.211510e+05 2.211510e+05 0.00 NULL
2019 Nyc Fire Pension Fund Principal Administrative Associate - Lev 1 & 2 Non Supvr 74956.66667 2.248700e+05 9212.65 3.070883e+03 2889.760 235.75 3 2.889760e+03 8669.28 2.340826e+05 2.335393e+05 543.37 NULL
2019 Nyc Fire Pension Fund Research Assistant 61954.00000 6.195400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.195400e+04 6.195400e+04 0.00 NULL
2019 Nyc Housing Authority Accountant 63436.09677 1.966519e+06 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 1.966519e+06 1.966519e+06 0.00 NULL
2019 Nyc Housing Authority Adm Manager-Non-Mgrl From M1/M2 74987.04054 5.549041e+06 85785.19 1.159259e+03 0.000 1317.50 74 0.000000e+00 0.00 5.634826e+06 5.549041e+06 85785.19 NULL
2019 Nyc Housing Authority Admin Community Relations Specialist 87425.38462 4.546120e+06 10394.95 1.999029e+02 0.000 233.50 52 0.000000e+00 0.00 4.556515e+06 4.546120e+06 10394.95 NULL
2019 Nyc Housing Authority Admin Contract Specialist 118890.27273 1.307793e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.307793e+06 1.307793e+06 0.00 NULL
2019 Nyc Housing Authority Administrative Accountant 112525.26087 2.588081e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 2.588081e+06 2.588081e+06 0.00 NULL
2019 Nyc Housing Authority Administrative Architect 123750.50000 4.950020e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.950020e+05 4.950020e+05 0.00 NULL
2019 Nyc Housing Authority Administrative Attorney 131925.00000 1.319250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.319250e+05 1.319250e+05 0.00 NULL
2019 Nyc Housing Authority Administrative Business Promotion Coordinator 124931.20000 6.246560e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.246560e+05 6.246560e+05 0.00 NULL
2019 Nyc Housing Authority Administrative City Planner 141665.16667 8.499910e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.499910e+05 8.499910e+05 0.00 NULL
2019 Nyc Housing Authority Administrative Claim Examiner 119196.00000 4.767840e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.767840e+05 4.767840e+05 0.00 NULL
2019 Nyc Housing Authority Administrative Community Relations Specialist 146209.28571 1.023465e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.023465e+06 1.023465e+06 0.00 NULL
2019 Nyc Housing Authority Administrative Construction Project Manager 114827.69231 2.985520e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 2.985520e+06 2.985520e+06 0.00 NULL
2019 Nyc Housing Authority Administrative Engineer 113948.83333 6.836930e+05 2835.04 4.725067e+02 0.000 41.50 6 0.000000e+00 0.00 6.865280e+05 6.836930e+05 2835.04 NULL
2019 Nyc Housing Authority Administrative Graphic Artist 85936.50000 1.718730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.718730e+05 1.718730e+05 0.00 NULL
2019 Nyc Housing Authority Administrative Housing Development Specialist 102365.46667 1.535482e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.535482e+06 1.535482e+06 0.00 NULL
2019 Nyc Housing Authority Administrative Housing Manager 125122.29630 3.378302e+06 3478.10 1.288185e+02 0.000 57.50 27 0.000000e+00 0.00 3.381780e+06 3.378302e+06 3478.10 NULL
2019 Nyc Housing Authority Administrative Housing Superintendent 123513.33871 7.657827e+06 30575.29 4.931498e+02 0.000 388.00 62 0.000000e+00 0.00 7.688402e+06 7.657827e+06 30575.29 NULL
2019 Nyc Housing Authority Administrative Inspector 127753.70000 1.277537e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.277537e+06 1.277537e+06 0.00 NULL
2019 Nyc Housing Authority Administrative Investigator 88595.00000 1.771900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.771900e+05 1.771900e+05 0.00 NULL
2019 Nyc Housing Authority Administrative Labor Relations Analyst 109757.40000 5.487870e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.487870e+05 5.487870e+05 0.00 NULL
2019 Nyc Housing Authority Administrative Landscape Architect 109526.00000 2.190520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.190520e+05 2.190520e+05 0.00 NULL
2019 Nyc Housing Authority Administrative Management Auditor 127393.25000 5.095730e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.095730e+05 5.095730e+05 0.00 NULL
2019 Nyc Housing Authority Administrative Printing Services Manager 110609.00000 1.106090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.106090e+05 1.106090e+05 0.00 NULL
2019 Nyc Housing Authority Administrative Procurement Analyst 85878.00000 1.975194e+06 17330.59 7.535039e+02 0.000 228.75 23 0.000000e+00 0.00 1.992525e+06 1.975194e+06 17330.59 NULL
2019 Nyc Housing Authority Administrative Project Manager 118408.09091 2.604978e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 2.604978e+06 2.604978e+06 0.00 NULL
2019 Nyc Housing Authority Administrative Public Information Specialist 102003.27273 1.122036e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.122036e+06 1.122036e+06 0.00 NULL
2019 Nyc Housing Authority Administrative Public Records Officer 129447.50000 2.588950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.588950e+05 2.588950e+05 0.00 NULL
2019 Nyc Housing Authority Administrative Quality Assurance Specialist 98192.00000 9.819200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.819200e+04 9.819200e+04 0.00 NULL
2019 Nyc Housing Authority Administrative Real Property Manager 142319.33333 4.269580e+05 4888.47 1.629490e+03 0.000 65.00 3 0.000000e+00 0.00 4.318465e+05 4.269580e+05 4888.47 NULL
2019 Nyc Housing Authority Administrative Space Analyst 100757.40000 5.037870e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.037870e+05 5.037870e+05 0.00 NULL
2019 Nyc Housing Authority Administrative Staff Analyst 108410.94776 1.452707e+07 19158.07 1.429707e+02 0.000 351.00 134 0.000000e+00 0.00 1.454623e+07 1.452707e+07 19158.07 NULL
2019 Nyc Housing Authority Administrative Storekeeper 107804.50000 4.312180e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.312180e+05 4.312180e+05 0.00 NULL
2019 Nyc Housing Authority Administrative Supervisor Of Building Maintenance 110698.62500 8.855890e+05 5248.32 6.560400e+02 0.000 95.50 8 0.000000e+00 0.00 8.908373e+05 8.855890e+05 5248.32 NULL
2019 Nyc Housing Authority Agency Attorney 82495.72000 4.124786e+06 0.00 0.000000e+00 0.000 0.00 50 0.000000e+00 0.00 4.124786e+06 4.124786e+06 0.00 NULL
2019 Nyc Housing Authority Agency Attorney Interne 62907.60000 3.145380e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.145380e+05 3.145380e+05 0.00 NULL
2019 Nyc Housing Authority Apprentice 62785.83673 3.076506e+06 14281.61 2.914614e+02 29.660 469.00 49 2.966000e+01 1453.34 3.090788e+06 3.077959e+06 12828.27 NULL
2019 Nyc Housing Authority Architect 94001.27273 1.034014e+06 20048.34 1.822576e+03 0.000 297.00 11 0.000000e+00 0.00 1.054062e+06 1.034014e+06 20048.34 NULL
2019 Nyc Housing Authority Asbestos Handler 79764.42857 1.116702e+06 177138.41 1.265274e+04 10868.145 3166.00 14 1.086815e+04 152154.03 1.293840e+06 1.268856e+06 24984.38 NULL
2019 Nyc Housing Authority Asbestos Handler Supervisor 83762.50000 5.025750e+05 148179.59 2.469660e+04 29825.050 2463.75 6 2.469660e+04 148179.59 6.507546e+05 6.507546e+05 0.00 NULL
2019 Nyc Housing Authority Asbestos Hazard Investigator 76646.60000 3.832330e+05 66509.72 1.330194e+04 17086.070 1071.75 5 1.330194e+04 66509.72 4.497427e+05 4.497427e+05 0.00 NULL
2019 Nyc Housing Authority Assistant Architect 69126.00000 6.912600e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 6.912600e+05 6.912600e+05 0.00 NULL
2019 Nyc Housing Authority Assistant Civil Engineer 76265.00000 3.813250e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.813250e+05 3.813250e+05 0.00 NULL
2019 Nyc Housing Authority Assistant Director Of Intergroup Relations 96773.75000 3.870950e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.870950e+05 3.870950e+05 0.00 NULL
2019 Nyc Housing Authority Assistant Electrical Engineer 65791.00000 1.315820e+05 0.73 3.650000e-01 0.365 0.00 2 3.650000e-01 0.73 1.315827e+05 1.315827e+05 0.00 NULL
2019 Nyc Housing Authority Assistant Executive Director 194697.50000 3.893950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.893950e+05 3.893950e+05 0.00 NULL
2019 Nyc Housing Authority Assistant Housing Manager 71566.97861 1.338302e+07 218477.43 1.168329e+03 142.860 4525.75 187 1.428600e+02 26714.82 1.360150e+07 1.340974e+07 191762.61 NULL
2019 Nyc Housing Authority Assistant Landscape Architect 80966.00000 8.096600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.096600e+04 8.096600e+04 0.00 NULL
2019 Nyc Housing Authority Assistant Mechanical Engineer 74919.00000 7.491900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.491900e+04 7.491900e+04 0.00 NULL
2019 Nyc Housing Authority Assistant Printing Press Operator 59437.00000 2.971850e+05 3848.12 7.696240e+02 171.240 31.25 5 1.712400e+02 856.20 3.010331e+05 2.980412e+05 2991.92 NULL
2019 Nyc Housing Authority Assistant Resident Building Supt 68402.63677 1.525379e+07 2528474.73 1.133845e+04 9147.620 51326.25 223 9.147620e+03 2039919.26 1.778226e+07 1.729371e+07 488555.47 NULL
2019 Nyc Housing Authority Assistant To The Chairman 202516.00000 2.025160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.025160e+05 2.025160e+05 0.00 NULL
2019 Nyc Housing Authority Assoc Inspector 86635.00000 6.064450e+05 1554.51 2.220729e+02 0.000 26.50 7 0.000000e+00 0.00 6.079995e+05 6.064450e+05 1554.51 NULL
2019 Nyc Housing Authority Associate Contract Specialist 87198.50000 1.743970e+05 13155.66 6.577830e+03 6577.830 279.00 2 6.577830e+03 13155.66 1.875527e+05 1.875527e+05 0.00 NULL
2019 Nyc Housing Authority Associate Housing Development Specialist 90239.18182 9.926310e+05 2567.14 2.333764e+02 0.000 50.50 11 0.000000e+00 0.00 9.951981e+05 9.926310e+05 2567.14 NULL
2019 Nyc Housing Authority Associate Inspector 78464.50000 1.569290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.569290e+05 1.569290e+05 0.00 NULL
2019 Nyc Housing Authority Associate Investigator 63170.83333 7.580500e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.580500e+05 7.580500e+05 0.00 NULL
2019 Nyc Housing Authority Associate Operations Communications Specialist 59525.00000 5.952500e+04 3076.92 3.076920e+03 3076.920 92.00 1 3.076920e+03 3076.92 6.260192e+04 6.260192e+04 0.00 NULL
2019 Nyc Housing Authority Associate Project Manager 88293.55556 7.946420e+05 3778.85 4.198722e+02 0.000 76.25 9 0.000000e+00 0.00 7.984208e+05 7.946420e+05 3778.85 NULL
2019 Nyc Housing Authority Associate Public Health Sanitarian 98000.00000 1.960000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.960000e+05 1.960000e+05 0.00 NULL
2019 Nyc Housing Authority Associate Public Information Specialist 54800.00000 5.480000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.480000e+04 5.480000e+04 0.00 NULL
2019 Nyc Housing Authority Associate Quality Assurance Specialist 68485.00000 6.848500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.848500e+04 6.848500e+04 0.00 NULL
2019 Nyc Housing Authority Associate Real Property Manager 75120.66667 2.253620e+05 86.42 2.880667e+01 0.000 2.00 3 0.000000e+00 0.00 2.254484e+05 2.253620e+05 86.42 NULL
2019 Nyc Housing Authority Associate Staff Analyst 79557.50000 3.500530e+06 16876.11 3.835480e+02 0.000 272.00 44 0.000000e+00 0.00 3.517406e+06 3.500530e+06 16876.11 NULL
2019 Nyc Housing Authority Associate Urban Designer 92025.00000 9.202500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.202500e+04 9.202500e+04 0.00 NULL
2019 Nyc Housing Authority Attorney At Law 85029.00000 4.251450e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.251450e+05 4.251450e+05 0.00 NULL
2019 Nyc Housing Authority Auto Mechanic NA NA 23107.21 7.702403e+03 4896.540 349.50 3 4.896540e+03 14689.62 NA NA NA NULL
2019 Nyc Housing Authority Automotive Service Worker 49083.75000 1.963350e+05 522.90 1.307250e+02 103.145 21.00 4 1.031450e+02 412.58 1.968579e+05 1.967476e+05 110.32 NULL
2019 Nyc Housing Authority Bookkeeper 52825.00000 1.267800e+06 409.80 1.707500e+01 0.000 16.00 24 0.000000e+00 0.00 1.268210e+06 1.267800e+06 409.80 NULL
2019 Nyc Housing Authority Bricklayer NA NA 924005.64 1.566111e+04 10575.530 14551.75 59 1.057553e+04 623956.27 NA NA NA NULL
2019 Nyc Housing Authority Business Promotion Coordinator 72589.71429 5.081280e+05 612.27 8.746714e+01 0.000 12.75 7 0.000000e+00 0.00 5.087403e+05 5.081280e+05 612.27 NULL
2019 Nyc Housing Authority Caretaker 39697.92797 1.548616e+08 24081878.89 6.173258e+03 6212.370 769176.25 3901 6.173258e+03 24081878.89 1.789435e+08 1.789435e+08 0.00 NULL
2019 Nyc Housing Authority Carpenter NA NA 3890810.56 1.662740e+04 14389.560 53534.50 234 1.438956e+04 3367157.04 NA NA NA NULL
2019 Nyc Housing Authority Cashier 49575.00000 4.957500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.957500e+04 4.957500e+04 0.00 NULL
2019 Nyc Housing Authority Certified It Administrator 108252.23077 1.407279e+06 42254.52 3.250348e+03 976.960 573.25 13 9.769600e+02 12700.48 1.449534e+06 1.419979e+06 29554.04 NULL
2019 Nyc Housing Authority Chair 236659.50000 4.733190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.733190e+05 4.733190e+05 0.00 NULL
2019 Nyc Housing Authority Chauffeur-Attendant 58321.00000 5.832100e+04 34836.62 3.483662e+04 34836.620 820.50 1 3.483662e+04 34836.62 9.315762e+04 9.315762e+04 0.00 NULL
2019 Nyc Housing Authority Chief Caretaker 49203.00000 1.180872e+06 238060.63 9.919193e+03 9627.080 7170.00 24 9.627080e+03 231049.92 1.418933e+06 1.411922e+06 7010.71 NULL
2019 Nyc Housing Authority Chief Of Housing Community Activities 90533.33333 2.716000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.716000e+05 2.716000e+05 0.00 NULL
2019 Nyc Housing Authority Chief, Publications & Reports 119121.00000 1.191210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.191210e+05 1.191210e+05 0.00 NULL
2019 Nyc Housing Authority City Attendant 35290.33333 3.176130e+05 635.77 7.064111e+01 0.000 29.50 9 0.000000e+00 0.00 3.182488e+05 3.176130e+05 635.77 NULL
2019 Nyc Housing Authority City Laborer NA NA 419289.23 1.677157e+04 8195.080 7962.75 25 8.195080e+03 204877.00 NA NA NA NULL
2019 Nyc Housing Authority City Planner 68486.75000 2.739470e+05 813.13 2.032825e+02 0.000 14.25 4 0.000000e+00 0.00 2.747601e+05 2.739470e+05 813.13 NULL
2019 Nyc Housing Authority City Research Scientist 88434.20000 4.421710e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.421710e+05 4.421710e+05 0.00 NULL
2019 Nyc Housing Authority City Seasonal Aide 23599.66815 1.585898e+07 517.28 7.697619e-01 0.000 22.75 672 0.000000e+00 0.00 1.585949e+07 1.585898e+07 517.28 NULL
2019 Nyc Housing Authority City Security Aide 19217.84722 1.383685e+06 54319.70 7.544403e+02 0.000 2146.00 72 0.000000e+00 0.00 1.438005e+06 1.383685e+06 54319.70 NULL
2019 Nyc Housing Authority City Service Aide 24638.00000 7.391400e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.391400e+04 7.391400e+04 0.00 NULL
2019 Nyc Housing Authority Civil Engineer 94167.22222 8.475050e+05 2431.07 2.701189e+02 0.000 48.00 9 0.000000e+00 0.00 8.499361e+05 8.475050e+05 2431.07 NULL
2019 Nyc Housing Authority Claim Specialist 61377.83333 3.682670e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.682670e+05 3.682670e+05 0.00 NULL
2019 Nyc Housing Authority Clerical Aide 31400.83333 1.884050e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.884050e+05 1.884050e+05 0.00 NULL
2019 Nyc Housing Authority Clerical Associate 43038.33333 4.002565e+06 13309.42 1.431120e+02 0.000 458.00 93 0.000000e+00 0.00 4.015874e+06 4.002565e+06 13309.42 NULL
2019 Nyc Housing Authority College Aide 27572.25000 2.205780e+05 235.90 2.948750e+01 0.000 16.50 8 0.000000e+00 0.00 2.208139e+05 2.205780e+05 235.90 NULL
2019 Nyc Housing Authority Community Assistant 36909.80000 5.536470e+05 912.07 6.080467e+01 0.000 37.50 15 0.000000e+00 0.00 5.545591e+05 5.536470e+05 912.07 NULL
2019 Nyc Housing Authority Community Associate 45148.28571 3.476418e+06 35200.15 4.571448e+02 0.000 1033.25 77 0.000000e+00 0.00 3.511618e+06 3.476418e+06 35200.15 NULL
2019 Nyc Housing Authority Community Coordinator 65230.21290 1.011068e+07 38715.13 2.497750e+02 0.000 869.50 155 0.000000e+00 0.00 1.014940e+07 1.011068e+07 38715.13 NULL
2019 Nyc Housing Authority Community Service Aide 10946.47222 3.940730e+05 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 3.940730e+05 3.940730e+05 0.00 NULL
2019 Nyc Housing Authority Computer Associate 73003.11111 1.314056e+06 10317.58 5.731989e+02 0.000 243.00 18 0.000000e+00 0.00 1.324374e+06 1.314056e+06 10317.58 NULL
2019 Nyc Housing Authority Computer Operations Manager 100379.28571 7.026550e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.026550e+05 7.026550e+05 0.00 NULL
2019 Nyc Housing Authority Computer Service Technician 52559.50000 1.051190e+05 1152.85 5.764250e+02 576.425 46.25 2 5.764250e+02 1152.85 1.062719e+05 1.062719e+05 0.00 NULL
2019 Nyc Housing Authority Computer Specialist 100437.28767 7.331922e+06 95255.16 1.304865e+03 0.000 1359.25 73 0.000000e+00 0.00 7.427177e+06 7.331922e+06 95255.16 NULL
2019 Nyc Housing Authority Computer Systems Manager 130950.09091 4.321353e+06 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 4.321353e+06 4.321353e+06 0.00 NULL
2019 Nyc Housing Authority Confidential Investigator 66683.65625 2.133877e+06 111621.80 3.488181e+03 195.550 2341.75 32 1.955500e+02 6257.60 2.245499e+06 2.140135e+06 105364.20 NULL
2019 Nyc Housing Authority Construction Project Manager 82566.29000 8.256629e+06 68369.36 6.836936e+02 0.000 1025.25 100 0.000000e+00 0.00 8.324998e+06 8.256629e+06 68369.36 NULL
2019 Nyc Housing Authority Consultant On Race Relations 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2019 Nyc Housing Authority Controller 229449.00000 2.294490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.294490e+05 2.294490e+05 0.00 NULL
2019 Nyc Housing Authority Coordinator, Tenant Patrol 93733.00000 9.373300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.373300e+04 9.373300e+04 0.00 NULL
2019 Nyc Housing Authority Counsel 180781.50000 3.615630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.615630e+05 3.615630e+05 0.00 NULL
2019 Nyc Housing Authority Customer Information Representative Ma L 1549 45000.87912 4.095080e+06 42626.52 4.684233e+02 3.290 1372.00 91 3.290000e+00 299.39 4.137707e+06 4.095379e+06 42327.13 NULL
2019 Nyc Housing Authority Dep Dir Research & Pol Develp 109354.50000 2.187090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.187090e+05 2.187090e+05 0.00 NULL
2019 Nyc Housing Authority Deputy Controller 161681.00000 1.616810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.616810e+05 1.616810e+05 0.00 NULL
2019 Nyc Housing Authority Deputy Director Of Construction 125154.00000 1.251540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.251540e+05 1.251540e+05 0.00 NULL
2019 Nyc Housing Authority Deputy Director Of Design 132455.00000 1.324550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.324550e+05 1.324550e+05 0.00 NULL
2019 Nyc Housing Authority Deputy Executive Director 213167.00000 2.131670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.131670e+05 2.131670e+05 0.00 NULL
2019 Nyc Housing Authority Deputy Inspector General 105729.00000 4.229160e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.229160e+05 4.229160e+05 0.00 NULL
2019 Nyc Housing Authority Dir Of Audit & Prog Analysis 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2019 Nyc Housing Authority Dir Of Quality & Cost Control 210527.00000 2.105270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.105270e+05 2.105270e+05 0.00 NULL
2019 Nyc Housing Authority Director Of Construction 180430.00000 1.804300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.804300e+05 1.804300e+05 0.00 NULL
2019 Nyc Housing Authority Director Of Design 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2019 Nyc Housing Authority Director Of Development 185124.50000 3.702490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.702490e+05 3.702490e+05 0.00 NULL
2019 Nyc Housing Authority Director Of Equal Opportunity 136910.00000 1.369100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.369100e+05 1.369100e+05 0.00 NULL
2019 Nyc Housing Authority Director Of General Services 154297.00000 1.542970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.542970e+05 1.542970e+05 0.00 NULL
2019 Nyc Housing Authority Director Of Housing Applicantions 151228.00000 1.512280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.512280e+05 1.512280e+05 0.00 NULL
2019 Nyc Housing Authority Director Of Hud Acquired Properties 180000.00000 1.800000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.800000e+05 1.800000e+05 0.00 NULL
2019 Nyc Housing Authority Director Of Information Systems 211758.00000 2.117580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.117580e+05 2.117580e+05 0.00 NULL
2019 Nyc Housing Authority Director Of Methods & Analysis 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2019 Nyc Housing Authority Director Of Plant Operations & Maintenance 148765.00000 1.487650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.487650e+05 1.487650e+05 0.00 NULL
2019 Nyc Housing Authority Director Of Program Planning 123737.00000 1.237370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.237370e+05 1.237370e+05 0.00 NULL
2019 Nyc Housing Authority Director Of Public & Community Relations 195000.00000 1.950000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.950000e+05 1.950000e+05 0.00 NULL
2019 Nyc Housing Authority Director Of Research & Policy Development 175216.00000 1.752160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.752160e+05 1.752160e+05 0.00 NULL
2019 Nyc Housing Authority Director Of Tenant & Community Affairs 109510.00000 1.095100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.095100e+05 1.095100e+05 0.00 NULL
2019 Nyc Housing Authority Director Or Management 148648.00000 1.486480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.486480e+05 1.486480e+05 0.00 NULL
2019 Nyc Housing Authority Economist 77430.00000 5.420100e+05 1290.81 1.844014e+02 0.000 21.50 7 0.000000e+00 0.00 5.433008e+05 5.420100e+05 1290.81 NULL
2019 Nyc Housing Authority Electrical Engineer 89407.50000 1.788150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.788150e+05 1.788150e+05 0.00 NULL
2019 Nyc Housing Authority Electrician NA NA 2552801.07 3.231394e+04 26343.680 30719.75 79 2.634368e+04 2081150.72 NA NA NA NULL
2019 Nyc Housing Authority Electrician’s Helper NA NA 918496.97 1.669994e+04 13680.620 16274.75 55 1.368062e+04 752434.10 NA NA NA NULL
2019 Nyc Housing Authority Elevator Mechanic NA NA 4047370.15 1.945851e+04 18280.180 52494.75 208 1.828018e+04 3802277.44 NA NA NA NULL
2019 Nyc Housing Authority Elevator Mechanic Helper NA NA 2647771.33 1.415920e+04 12648.160 52784.00 187 1.264816e+04 2365205.92 NA NA NA NULL
2019 Nyc Housing Authority Emergency Service Aide 40672.51724 2.359006e+06 188055.07 3.242329e+03 1061.440 6740.25 58 1.061440e+03 61563.52 2.547061e+06 2.420570e+06 126491.55 NULL
2019 Nyc Housing Authority Engineering Technician 76219.00000 7.621900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.621900e+04 7.621900e+04 0.00 NULL
2019 Nyc Housing Authority Executive Agency Counsel 124859.46341 5.119238e+06 0.00 0.000000e+00 0.000 0.00 41 0.000000e+00 0.00 5.119238e+06 5.119238e+06 0.00 NULL
2019 Nyc Housing Authority Executive Director 233036.00000 2.330360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.330360e+05 2.330360e+05 0.00 NULL
2019 Nyc Housing Authority Executive Program Specialist 130369.00000 1.303690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.303690e+05 1.303690e+05 0.00 NULL
2019 Nyc Housing Authority Fraud Investigator 59176.00000 1.183520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.183520e+05 1.183520e+05 0.00 NULL
2019 Nyc Housing Authority Glazier NA NA 183204.38 7.965408e+03 7520.310 1696.50 23 7.520310e+03 172967.13 NA NA NA NULL
2019 Nyc Housing Authority Graphic Artist 58300.00000 1.166000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.166000e+05 1.166000e+05 0.00 NULL
2019 Nyc Housing Authority Hearing Examiner 125060.00000 3.751800e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.751800e+05 3.751800e+05 0.00 NULL
2019 Nyc Housing Authority Heating Plant Technician 49377.78246 1.407267e+07 3234495.54 1.134911e+04 7075.050 99074.00 285 7.075050e+03 2016389.25 1.730716e+07 1.608906e+07 1218106.29 NULL
2019 Nyc Housing Authority Housing Assistant 55641.86889 5.007768e+07 419776.45 4.664183e+02 0.000 10710.00 900 0.000000e+00 0.00 5.049746e+07 5.007768e+07 419776.45 NULL
2019 Nyc Housing Authority Housing Caretaker 43890.29412 7.461350e+05 104793.65 6.164332e+03 4945.680 2706.00 17 4.945680e+03 84076.56 8.509287e+05 8.302116e+05 20717.09 NULL
2019 Nyc Housing Authority Housing Development Specialist 66066.00000 6.606600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.606600e+04 6.606600e+04 0.00 NULL
2019 Nyc Housing Authority Housing Development Specialist Trainee 49548.00000 4.954800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.954800e+04 4.954800e+04 0.00 NULL
2019 Nyc Housing Authority Housing Exterminator 49531.30357 5.547506e+06 156881.90 1.400731e+03 288.770 3624.75 112 2.887700e+02 32342.24 5.704388e+06 5.579848e+06 124539.66 NULL
2019 Nyc Housing Authority Housing Exterminator-Al Ii & Iii 57294.88889 5.156540e+05 35154.90 3.906100e+03 3540.970 958.25 9 3.540970e+03 31868.73 5.508089e+05 5.475227e+05 3286.17 NULL
2019 Nyc Housing Authority Housing Exterminator-Al Iv 84410.00000 1.688200e+05 24430.02 1.221501e+04 12215.010 405.00 2 1.221501e+04 24430.02 1.932500e+05 1.932500e+05 0.00 NULL
2019 Nyc Housing Authority Housing Manager 88865.44792 1.706217e+07 705838.58 3.676243e+03 2006.855 12493.75 192 2.006855e+03 385316.16 1.776800e+07 1.744748e+07 320522.42 NULL
2019 Nyc Housing Authority Housing Stock Worker 47782.57143 1.003434e+06 451.71 2.151000e+01 0.000 17.75 21 0.000000e+00 0.00 1.003886e+06 1.003434e+06 451.71 NULL
2019 Nyc Housing Authority Industrial Hygienist 61297.00000 1.838910e+05 0.00 0.000000e+00 0.000 24.00 3 0.000000e+00 0.00 1.838910e+05 1.838910e+05 0.00 NULL
2019 Nyc Housing Authority Inspector 71506.75000 2.860270e+05 1856.67 4.641675e+02 106.310 10.50 4 1.063100e+02 425.24 2.878837e+05 2.864522e+05 1431.43 NULL
2019 Nyc Housing Authority Inspector General 154289.00000 1.542890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.542890e+05 1.542890e+05 0.00 NULL
2019 Nyc Housing Authority Interpreter 52423.50000 2.096940e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.096940e+05 2.096940e+05 0.00 NULL
2019 Nyc Housing Authority Interpreter/Translator 54623.75000 2.184950e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.184950e+05 2.184950e+05 0.00 NULL
2019 Nyc Housing Authority Investigator 49435.60000 2.471780e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.471780e+05 2.471780e+05 0.00 NULL
2019 Nyc Housing Authority Labor Relations Analyst 60858.00000 6.085800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.085800e+04 6.085800e+04 0.00 NULL
2019 Nyc Housing Authority Labor Relations Analyst Trainee 50296.42857 7.041500e+05 561.71 4.012214e+01 0.000 18.00 14 0.000000e+00 0.00 7.047117e+05 7.041500e+05 561.71 NULL
2019 Nyc Housing Authority Landscape Architect 85219.50000 1.704390e+05 6960.47 3.480235e+03 3480.235 142.25 2 3.480235e+03 6960.47 1.773995e+05 1.773995e+05 0.00 NULL
2019 Nyc Housing Authority Lead Abatement Worker 52208.83871 1.618474e+06 124173.39 4.005593e+03 2961.460 3398.50 31 2.961460e+03 91805.26 1.742647e+06 1.710279e+06 32368.13 NULL
2019 Nyc Housing Authority Legal Secretarial Assistant - Al 1 Only 42785.00000 4.278500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.278500e+04 4.278500e+04 0.00 NULL
2019 Nyc Housing Authority Legal Secretarial Assistant Al 2,3,4 Only 46869.00000 4.686900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.686900e+04 4.686900e+04 0.00 NULL
2019 Nyc Housing Authority Machinist NA NA 16185.53 5.395177e+03 6468.180 188.75 3 5.395177e+03 16185.53 NA NA NA NULL
2019 Nyc Housing Authority Maintenance Worker NA NA 11884484.98 1.026294e+04 8306.535 287940.00 1158 8.306535e+03 9618967.53 NA NA NA NULL
2019 Nyc Housing Authority Management Auditor 67994.72222 1.223905e+06 46.81 2.600556e+00 0.000 1.00 18 0.000000e+00 0.00 1.223952e+06 1.223905e+06 46.81 NULL
2019 Nyc Housing Authority Management Auditor Trainee 45758.00000 1.830320e+05 0.00 0.000000e+00 0.000 12.00 4 0.000000e+00 0.00 1.830320e+05 1.830320e+05 0.00 NULL
2019 Nyc Housing Authority Masons Helper NA NA 411535.23 8.230705e+03 3813.525 8692.50 50 3.813525e+03 190676.25 NA NA NA NULL
2019 Nyc Housing Authority Mechanical Engineer 94921.50000 5.695290e+05 537.64 8.960667e+01 0.000 10.25 6 0.000000e+00 0.00 5.700666e+05 5.695290e+05 537.64 NULL
2019 Nyc Housing Authority Media Services Technician 58248.00000 5.824800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.824800e+04 5.824800e+04 0.00 NULL
2019 Nyc Housing Authority Motor Grader Operator NA NA 36479.28 3.647928e+04 36479.280 448.00 1 3.647928e+04 36479.28 NA NA NA NULL
2019 Nyc Housing Authority Motor Vehicle Operator 46752.83333 8.415510e+05 32472.45 1.804025e+03 16.760 809.50 18 1.676000e+01 301.68 8.740234e+05 8.418527e+05 32170.77 NULL
2019 Nyc Housing Authority Motor Vehicle Supervisor 59256.50000 1.185130e+05 1907.04 9.535200e+02 953.520 41.50 2 9.535200e+02 1907.04 1.204200e+05 1.204200e+05 0.00 NULL
2019 Nyc Housing Authority Office Machine Aide 33000.00000 3.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.300000e+04 3.300000e+04 0.00 NULL
2019 Nyc Housing Authority Oil Burner Specialist 62463.28571 4.372430e+05 92683.35 1.324048e+04 8916.650 1843.00 7 8.916650e+03 62416.55 5.299263e+05 4.996595e+05 30266.80 NULL
2019 Nyc Housing Authority Oiler NA NA 44649.58 7.441597e+03 1775.665 591.25 6 1.775665e+03 10653.99 NA NA NA NULL
2019 Nyc Housing Authority Painter NA NA 4835819.51 1.575186e+04 10875.930 84404.50 307 1.087593e+04 3338910.51 NA NA NA NULL
2019 Nyc Housing Authority Plasterer NA NA 4365773.85 1.672710e+04 12751.290 51754.00 261 1.275129e+04 3328086.69 NA NA NA NULL
2019 Nyc Housing Authority Plumber NA NA 7207619.51 6.378424e+04 60352.810 68587.50 113 6.035281e+04 6819867.53 NA NA NA NULL
2019 Nyc Housing Authority Plumber’s Helper NA NA 2591129.25 3.454839e+04 32940.940 35921.75 75 3.294094e+04 2470570.50 NA NA NA NULL
2019 Nyc Housing Authority Principal Administrative Associate - Lev 1 & 2 Non Supvr 60182.89535 5.175729e+06 15071.25 1.752471e+02 0.000 380.25 86 0.000000e+00 0.00 5.190800e+06 5.175729e+06 15071.25 NULL
2019 Nyc Housing Authority Printing Press Operator NA NA 942.22 9.422200e+02 942.220 19.50 1 9.422200e+02 942.22 NA NA NA NULL
2019 Nyc Housing Authority Procurement Analyst 62716.65000 2.508666e+06 22369.04 5.592260e+02 0.000 559.00 40 0.000000e+00 0.00 2.531035e+06 2.508666e+06 22369.04 NULL
2019 Nyc Housing Authority Project Manager 72553.00000 2.176590e+05 10577.42 3.525807e+03 249.740 162.50 3 2.497400e+02 749.22 2.282364e+05 2.184082e+05 9828.20 NULL
2019 Nyc Housing Authority Public Records Aide 50876.00000 5.087600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.087600e+04 5.087600e+04 0.00 NULL
2019 Nyc Housing Authority Quality Assurance Specialist 50279.66667 1.508390e+05 204.67 6.822333e+01 0.000 6.00 3 0.000000e+00 0.00 1.510437e+05 1.508390e+05 204.67 NULL
2019 Nyc Housing Authority Recreation Director 50664.00000 5.066400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.066400e+04 5.066400e+04 0.00 NULL
2019 Nyc Housing Authority Research Assistant 54092.46154 7.032020e+05 24.24 1.864615e+00 0.000 0.00 13 0.000000e+00 0.00 7.032262e+05 7.032020e+05 24.24 NULL
2019 Nyc Housing Authority Resident Building Superintendent 85143.11416 1.864634e+07 2453766.26 1.120441e+04 7020.060 42552.00 219 7.020060e+03 1537393.14 2.110011e+07 2.018374e+07 916373.12 NULL
2019 Nyc Housing Authority Roofer NA NA 142479.09 7.498899e+03 1557.850 2851.75 19 1.557850e+03 29599.15 NA NA NA NULL
2019 Nyc Housing Authority Secretary 42087.10730 1.961259e+07 94697.63 2.032138e+02 0.000 3096.25 466 0.000000e+00 0.00 1.970729e+07 1.961259e+07 94697.63 NULL
2019 Nyc Housing Authority Secretary To Deputy Executive Director 77284.00000 1.545680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.545680e+05 1.545680e+05 0.00 NULL
2019 Nyc Housing Authority Secretary To Executive Director 76967.00000 7.696700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.696700e+04 7.696700e+04 0.00 NULL
2019 Nyc Housing Authority Secretary To Member 74777.00000 7.477700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.477700e+04 7.477700e+04 0.00 NULL
2019 Nyc Housing Authority Senior Estimator 82184.00000 4.931040e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.931040e+05 4.931040e+05 0.00 NULL
2019 Nyc Housing Authority Senior General Deputy Manager 223707.00000 2.237070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.237070e+05 2.237070e+05 0.00 NULL
2019 Nyc Housing Authority Senior Intergroup Relations Officer 60546.00000 1.210920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.210920e+05 1.210920e+05 0.00 NULL
2019 Nyc Housing Authority Senior Photographer 62627.00000 6.262700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.262700e+04 6.262700e+04 0.00 NULL
2019 Nyc Housing Authority Social Worker 57801.44444 5.202130e+05 538.17 5.979667e+01 0.000 15.50 9 0.000000e+00 0.00 5.207512e+05 5.202130e+05 538.17 NULL
2019 Nyc Housing Authority Space Analyst 73802.00000 7.380200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.380200e+04 7.380200e+04 0.00 NULL
2019 Nyc Housing Authority Special Assistant To The Deputy Executive Director 116171.16667 6.970270e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.970270e+05 6.970270e+05 0.00 NULL
2019 Nyc Housing Authority Special Assistant To The Executive Director 150372.00000 3.007440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.007440e+05 3.007440e+05 0.00 NULL
2019 Nyc Housing Authority Special Officer 43427.25000 1.737090e+05 951.83 2.379575e+02 226.635 29.50 4 2.266350e+02 906.54 1.746608e+05 1.746155e+05 45.29 NULL
2019 Nyc Housing Authority Staff Analyst 65856.57576 2.173267e+06 16294.76 4.937806e+02 0.000 318.50 33 0.000000e+00 0.00 2.189562e+06 2.173267e+06 16294.76 NULL
2019 Nyc Housing Authority Staff Analyst Trainee 48729.00000 4.872900e+04 152.86 1.528600e+02 152.860 5.75 1 1.528600e+02 152.86 4.888186e+04 4.888186e+04 0.00 NULL
2019 Nyc Housing Authority Stationary Engineer NA NA 4683.12 2.464800e+02 0.000 51.25 19 0.000000e+00 0.00 NA NA NA NULL
2019 Nyc Housing Authority Statistician 75768.00000 3.030720e+05 842.72 2.106800e+02 1.515 17.00 4 1.515000e+00 6.06 3.039147e+05 3.030781e+05 836.66 NULL
2019 Nyc Housing Authority Summer Graduate Intern 32667.00000 3.266700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.266700e+04 3.266700e+04 0.00 NULL
2019 Nyc Housing Authority Supervising Computer Service Technician 69452.00000 2.778080e+05 5659.24 1.414810e+03 817.025 133.75 4 8.170250e+02 3268.10 2.834672e+05 2.810761e+05 2391.14 NULL
2019 Nyc Housing Authority Supervising Housing Groundskeeper 59181.48872 7.871138e+06 1876125.88 1.410621e+04 14262.090 42154.00 133 1.410621e+04 1876125.88 9.747264e+06 9.747264e+06 0.00 NULL
2019 Nyc Housing Authority Supervising Special Officer 51993.00000 1.039860e+05 793.72 3.968600e+02 396.860 21.25 2 3.968600e+02 793.72 1.047797e+05 1.047797e+05 0.00 NULL
2019 Nyc Housing Authority Supervisor 61311.00000 6.131100e+04 36.70 3.670000e+01 36.700 8.75 1 3.670000e+01 36.70 6.134770e+04 6.134770e+04 0.00 NULL
2019 Nyc Housing Authority Supervisor Bricklayer NA NA 384008.28 3.840083e+04 37552.070 5104.00 10 3.755207e+04 375520.70 NA NA NA NULL
2019 Nyc Housing Authority Supervisor Carpenter NA NA 468801.62 2.757657e+04 21630.830 5854.25 17 2.163083e+04 367724.11 NA NA NA NULL
2019 Nyc Housing Authority Supervisor Electrician NA NA 670625.64 4.790183e+04 50895.445 7399.50 14 4.790183e+04 670625.64 NA NA NA NULL
2019 Nyc Housing Authority Supervisor Elevator Mechanic NA NA 658076.60 2.531064e+04 27440.880 7305.25 26 2.531064e+04 658076.60 NA NA NA NULL
2019 Nyc Housing Authority Supervisor Glazier NA NA 93005.98 3.100199e+04 31902.430 966.50 3 3.100199e+04 93005.98 NA NA NA NULL
2019 Nyc Housing Authority Supervisor Ii Social Work 73979.00000 5.918320e+05 276.23 3.452875e+01 0.000 6.50 8 0.000000e+00 0.00 5.921082e+05 5.918320e+05 276.23 NULL
2019 Nyc Housing Authority Supervisor Of Electrical Installations & Maintenance 85397.66667 2.561930e+05 436.35 1.454500e+02 0.000 7.00 3 0.000000e+00 0.00 2.566294e+05 2.561930e+05 436.35 NULL
2019 Nyc Housing Authority Supervisor Of Elevator Maintenance 127278.66667 3.818360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.818360e+05 3.818360e+05 0.00 NULL
2019 Nyc Housing Authority Supervisor Of Housing Caretaker 60700.42941 1.031907e+07 2620592.97 1.541525e+04 15596.760 55764.25 170 1.541525e+04 2620592.97 1.293967e+07 1.293967e+07 0.00 NULL
2019 Nyc Housing Authority Supervisor Of Housing Stock Workers 70509.05882 1.198654e+06 2907.53 1.710312e+02 0.000 155.75 17 0.000000e+00 0.00 1.201562e+06 1.198654e+06 2907.53 NULL
2019 Nyc Housing Authority Supervisor Of Mechanical Installations & Maintenance 81874.55172 2.374362e+06 25531.65 8.804017e+02 0.000 487.75 29 0.000000e+00 0.00 2.399894e+06 2.374362e+06 25531.65 NULL
2019 Nyc Housing Authority Supervisor Of Mechanics 117666.00000 1.176660e+05 569.12 5.691200e+02 569.120 0.00 1 5.691200e+02 569.12 1.182351e+05 1.182351e+05 0.00 NULL
2019 Nyc Housing Authority Supervisor Of Office Machine Operations 41867.33333 1.256020e+05 112.16 3.738667e+01 0.000 0.00 3 0.000000e+00 0.00 1.257142e+05 1.256020e+05 112.16 NULL
2019 Nyc Housing Authority Supervisor Painter NA NA 2658251.71 2.507785e+04 17408.625 39748.00 106 1.740862e+04 1845314.25 NA NA NA NULL
2019 Nyc Housing Authority Supervisor Plasterer NA NA 1065550.57 3.329846e+04 28584.975 12100.50 32 2.858497e+04 914719.20 NA NA NA NULL
2019 Nyc Housing Authority Supervisor Plumber NA NA 1358590.96 7.150479e+04 72512.640 12491.75 19 7.150479e+04 1358590.96 NA NA NA NULL
2019 Nyc Housing Authority Supervisor Roofer NA NA 130256.14 2.170936e+04 10468.720 2354.75 6 1.046872e+04 62812.32 NA NA NA NULL
2019 Nyc Housing Authority Telecommunications Associate 79281.00000 6.342480e+05 13788.33 1.723541e+03 113.410 348.25 8 1.134100e+02 907.28 6.480363e+05 6.351553e+05 12881.05 NULL
2019 Nyc Housing Authority Welder NA NA 325635.64 4.070446e+04 42589.980 3604.00 8 4.070446e+04 325635.64 NA NA NA NULL
2019 Nyc Housing Authority Worker’s Compensation Benefits Examiner 54429.50000 1.088590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.088590e+05 1.088590e+05 0.00 NULL
2019 Nyc Police Pension Fund Accountant 83532.80000 4.176640e+05 19348.74 3.869748e+03 0.000 299.50 5 0.000000e+00 0.00 4.370127e+05 4.176640e+05 19348.74 NULL
2019 Nyc Police Pension Fund Adm Manager-Non-Mgrl From M1/M2 78610.00000 7.861000e+04 12617.55 1.261755e+04 12617.550 212.75 1 1.261755e+04 12617.55 9.122755e+04 9.122755e+04 0.00 NULL
2019 Nyc Police Pension Fund Administrative Accountant 151603.25000 6.064130e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.064130e+05 6.064130e+05 0.00 NULL
2019 Nyc Police Pension Fund Administrative Procurement Analyst 155837.00000 1.558370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.558370e+05 1.558370e+05 0.00 NULL
2019 Nyc Police Pension Fund Administrative Real Property Manager 108643.00000 1.086430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.086430e+05 1.086430e+05 0.00 NULL
2019 Nyc Police Pension Fund Administrative Retirement Benefits Specialist 128144.41667 1.537733e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.537733e+06 1.537733e+06 0.00 NULL
2019 Nyc Police Pension Fund Administrative Staff Analyst 127761.00000 3.832830e+05 27822.55 9.274183e+03 7180.350 356.25 3 7.180350e+03 21541.05 4.111055e+05 4.048240e+05 6281.50 NULL
2019 Nyc Police Pension Fund Agency Attorney 92432.00000 9.243200e+04 7629.82 7.629820e+03 7629.820 120.00 1 7.629820e+03 7629.82 1.000618e+05 1.000618e+05 0.00 NULL
2019 Nyc Police Pension Fund Assistant Retirement Benefits Examiner 52583.42857 3.680840e+05 5847.20 8.353143e+02 7.320 218.75 7 7.320000e+00 51.24 3.739312e+05 3.681352e+05 5795.96 NULL
2019 Nyc Police Pension Fund Associate Retirement Benefits Examiner 72552.91667 8.706350e+05 44011.30 3.667608e+03 195.490 937.50 12 1.954900e+02 2345.88 9.146463e+05 8.729809e+05 41665.42 NULL
2019 Nyc Police Pension Fund Associate Staff Analyst 85591.00000 8.559100e+04 1747.49 1.747490e+03 1747.490 34.75 1 1.747490e+03 1747.49 8.733849e+04 8.733849e+04 0.00 NULL
2019 Nyc Police Pension Fund Certified It Administrator 127790.50000 2.555810e+05 57237.75 2.861888e+04 28618.875 671.50 2 2.861888e+04 57237.75 3.128188e+05 3.128188e+05 0.00 NULL
2019 Nyc Police Pension Fund Clerical Aide 35012.25000 1.400490e+05 27.42 6.855000e+00 0.000 1.75 4 0.000000e+00 0.00 1.400764e+05 1.400490e+05 27.42 NULL
2019 Nyc Police Pension Fund Clerical Associate 51546.92614 5.670162e+05 20267.57 1.842506e+03 150.750 524.00 11 1.507500e+02 1658.25 5.872838e+05 5.686744e+05 18609.32 NULL
2019 Nyc Police Pension Fund College Aide 2558.81250 7.676438e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.676438e+03 7.676438e+03 0.00 NULL
2019 Nyc Police Pension Fund Community Assistant 35454.57143 2.481820e+05 6441.16 9.201657e+02 1.990 212.25 7 1.990000e+00 13.93 2.546232e+05 2.481959e+05 6427.23 NULL
2019 Nyc Police Pension Fund Community Associate 45424.75676 1.680716e+06 73136.78 1.976670e+03 5.270 2253.50 37 5.270000e+00 194.99 1.753853e+06 1.680911e+06 72941.79 NULL
2019 Nyc Police Pension Fund Community Coordinator 78777.55556 7.089980e+05 4736.10 5.262333e+02 0.000 101.75 9 0.000000e+00 0.00 7.137341e+05 7.089980e+05 4736.10 NULL
2019 Nyc Police Pension Fund Computer Aide-Non-Spvr 45338.00000 4.533800e+04 24.82 2.482000e+01 24.820 1.00 1 2.482000e+01 24.82 4.536282e+04 4.536282e+04 0.00 NULL
2019 Nyc Police Pension Fund Computer Associate 54967.00000 5.496700e+04 5948.14 5.948140e+03 5948.140 170.00 1 5.948140e+03 5948.14 6.091514e+04 6.091514e+04 0.00 NULL
2019 Nyc Police Pension Fund Computer Specialist 120585.20000 6.029260e+05 21093.06 4.218612e+03 0.000 290.50 5 0.000000e+00 0.00 6.240191e+05 6.029260e+05 21093.06 NULL
2019 Nyc Police Pension Fund Computer Systems Manager 173412.60000 8.670630e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.670630e+05 8.670630e+05 0.00 NULL
2019 Nyc Police Pension Fund Customer Information Representative Ma L 1549 57100.42857 3.997030e+05 22669.08 3.238440e+03 1140.630 615.75 7 1.140630e+03 7984.41 4.223721e+05 4.076874e+05 14684.67 NULL
2019 Nyc Police Pension Fund Deputy Director 213033.00000 4.260660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.260660e+05 4.260660e+05 0.00 NULL
2019 Nyc Police Pension Fund Executive Agency Counsel 177387.00000 1.773870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.773870e+05 1.773870e+05 0.00 NULL
2019 Nyc Police Pension Fund Executive Director 222191.00000 2.221910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.221910e+05 2.221910e+05 0.00 NULL
2019 Nyc Police Pension Fund Investment Analyst 64011.50000 1.280230e+05 109.15 5.457500e+01 54.575 3.75 2 5.457500e+01 109.15 1.281321e+05 1.281321e+05 0.00 NULL
2019 Nyc Police Pension Fund Management Auditor 89830.00000 3.593200e+05 26026.08 6.506520e+03 3183.870 523.75 4 3.183870e+03 12735.48 3.853461e+05 3.720555e+05 13290.60 NULL
2019 Nyc Police Pension Fund Paralegal Aide 60489.50000 1.209790e+05 2552.41 1.276205e+03 1276.205 68.00 2 1.276205e+03 2552.41 1.235314e+05 1.235314e+05 0.00 NULL
2019 Nyc Police Pension Fund Principal Administrative Associate - Lev 1 & 2 Non Supvr 66019.00000 6.601900e+05 24377.38 2.437738e+03 1799.190 646.75 10 1.799190e+03 17991.90 6.845674e+05 6.781819e+05 6385.48 NULL
2019 Nyc Police Pension Fund Procurement Analyst 74797.00000 7.479700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.479700e+04 7.479700e+04 0.00 NULL
2019 Nyc Police Pension Fund Secretary To The Executive Director 196755.00000 1.967550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.967550e+05 1.967550e+05 0.00 NULL
2019 Nyc Police Pension Fund Staff Analyst Trainee 48729.00000 4.872900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.872900e+04 4.872900e+04 0.00 NULL
2019 Nyc Police Pension Fund Statistician 81050.00000 8.105000e+04 19.37 1.937000e+01 19.370 0.00 1 1.937000e+01 19.37 8.106937e+04 8.106937e+04 0.00 NULL
2019 Nyc Police Pension Fund Supervisor Of Office Machine Operations 63888.00000 6.388800e+04 297.25 2.972500e+02 297.250 7.00 1 2.972500e+02 297.25 6.418525e+04 6.418525e+04 0.00 NULL
2019 Off Of Payroll Administration Accountant 70227.57143 4.915930e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.915930e+05 4.915930e+05 0.00 NULL
2019 Off Of Payroll Administration Adm Manager-Non-Mgrl From M1/M2 79758.90909 8.773480e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 8.773480e+05 8.773480e+05 0.00 NULL
2019 Off Of Payroll Administration Admin Contract Specialist 144264.00000 1.442640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.442640e+05 1.442640e+05 0.00 NULL
2019 Off Of Payroll Administration Administrative Accountant 115709.16667 6.942550e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.942550e+05 6.942550e+05 0.00 NULL
2019 Off Of Payroll Administration Administrative Public Information Specialist 134691.00000 1.346910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.346910e+05 1.346910e+05 0.00 NULL
2019 Off Of Payroll Administration Administrative Staff Analyst 119871.94444 2.157695e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.157695e+06 2.157695e+06 0.00 NULL
2019 Off Of Payroll Administration Associate Staff Analyst 82674.14286 5.787190e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.787190e+05 5.787190e+05 0.00 NULL
2019 Off Of Payroll Administration Bookkeeper 60574.00000 1.211480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.211480e+05 1.211480e+05 0.00 NULL
2019 Off Of Payroll Administration Certified It Administrator 100164.00000 1.001640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.001640e+05 1.001640e+05 0.00 NULL
2019 Off Of Payroll Administration Certified It Developer 117822.00000 1.178220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.178220e+05 1.178220e+05 0.00 NULL
2019 Off Of Payroll Administration Clerical Associate 49757.21053 9.453870e+05 20535.47 1.080814e+03 0.000 532.50 19 0.000000e+00 0.00 9.659225e+05 9.453870e+05 20535.47 NULL
2019 Off Of Payroll Administration College Aide 6552.86875 2.621147e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.621147e+04 2.621147e+04 0.00 NULL
2019 Off Of Payroll Administration Community Assistant 37598.00000 3.759800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.759800e+04 3.759800e+04 0.00 NULL
2019 Off Of Payroll Administration Community Associate 52264.50000 3.135870e+05 231.36 3.856000e+01 0.000 7.50 6 0.000000e+00 0.00 3.138184e+05 3.135870e+05 231.36 NULL
2019 Off Of Payroll Administration Community Coordinator 70782.25000 2.831290e+05 707.10 1.767750e+02 25.750 29.00 4 2.575000e+01 103.00 2.838361e+05 2.832320e+05 604.10 NULL
2019 Off Of Payroll Administration Computer Associate 77718.12500 6.217450e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.217450e+05 6.217450e+05 0.00 NULL
2019 Off Of Payroll Administration Computer Programmer Analyst 65573.00000 1.311460e+05 -65.26 -3.263000e+01 -32.630 0.00 2 -3.263000e+01 -65.26 1.310807e+05 1.310807e+05 0.00 NULL
2019 Off Of Payroll Administration Computer Specialist 103225.61905 2.167738e+06 7326.69 3.488900e+02 0.000 112.25 21 0.000000e+00 0.00 2.175065e+06 2.167738e+06 7326.69 NULL
2019 Off Of Payroll Administration Computer Systems Manager 127385.59091 2.802483e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 2.802483e+06 2.802483e+06 0.00 NULL
2019 Off Of Payroll Administration Custodian 56775.00000 5.677500e+04 4587.74 4.587740e+03 4587.740 131.75 1 4.587740e+03 4587.74 6.136274e+04 6.136274e+04 0.00 NULL
2019 Off Of Payroll Administration Customer Information Representative Ma L 1549 76641.25000 3.065650e+05 267.74 6.693500e+01 0.000 7.50 4 0.000000e+00 0.00 3.068327e+05 3.065650e+05 267.74 NULL
2019 Off Of Payroll Administration Executive Agency Counsel 162578.00000 1.625780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.625780e+05 1.625780e+05 0.00 NULL
2019 Off Of Payroll Administration Executive Director 231891.00000 2.318910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.318910e+05 2.318910e+05 0.00 NULL
2019 Off Of Payroll Administration Management Auditor 82146.66667 2.464400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.464400e+05 2.464400e+05 0.00 NULL
2019 Off Of Payroll Administration Nycaps Process Analyst 95698.50000 1.913970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.913970e+05 1.913970e+05 0.00 NULL
2019 Off Of Payroll Administration Principal Administrative Associate - Lev 1 & 2 Non Supvr 66576.50000 1.331530e+06 4577.16 2.288580e+02 0.000 91.25 20 0.000000e+00 0.00 1.336107e+06 1.331530e+06 4577.16 NULL
2019 Off Of Payroll Administration Staff Analyst 68709.20000 3.435460e+05 286.62 5.732400e+01 0.000 7.25 5 0.000000e+00 0.00 3.438326e+05 3.435460e+05 286.62 NULL
2019 Off Of Payroll Administration Telecommunications Manager 67792.00000 6.779200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.779200e+04 6.779200e+04 0.00 NULL
2019 Office Of Collective Bargainin Administrative Staff Analyst 147160.00000 1.471600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.471600e+05 1.471600e+05 0.00 NULL
2019 Office Of Collective Bargainin College Aide - Assignment Levels Ii And Iii 5290.88750 5.290887e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.290887e+03 5.290887e+03 0.00 NULL
2019 Office Of Collective Bargainin Community Associate 53712.00000 5.371200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.371200e+04 5.371200e+04 0.00 NULL
2019 Office Of Collective Bargainin Computer Systems Manager 106941.00000 1.069410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.069410e+05 1.069410e+05 0.00 NULL
2019 Office Of Collective Bargainin Deputy Director 192199.50000 3.843990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.843990e+05 3.843990e+05 0.00 NULL
2019 Office Of Collective Bargainin Director Of Information And Research 157009.00000 1.570090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.570090e+05 1.570090e+05 0.00 NULL
2019 Office Of Collective Bargainin Director Of The Office Of Collective Bargaining 236088.00000 2.360880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.360880e+05 2.360880e+05 0.00 NULL
2019 Office Of Collective Bargainin Executive Assistant To The Director 101135.00000 2.022700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.022700e+05 2.022700e+05 0.00 NULL
2019 Office Of Collective Bargainin Labor Relations Trial Examiner 123420.00000 7.405200e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.405200e+05 7.405200e+05 0.00 NULL
2019 Office Of Collective Bargainin Legal Secretarial Assistant Al 2,3,4 Only 45000.00000 4.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.500000e+04 4.500000e+04 0.00 NULL
2019 Office Of Collective Bargainin Secretary To The Deputy Chair 58983.00000 5.898300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.898300e+04 5.898300e+04 0.00 NULL
2019 Office Of Collective Bargainin Secy To The Director Of Collective Bargaining 82709.00000 8.270900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.270900e+04 8.270900e+04 0.00 NULL
2019 Office Of Collective Bargainin Staff Analyst 73180.00000 7.318000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.318000e+04 7.318000e+04 0.00 NULL
2019 Office Of Emergency Management Administrative Public Information Specialist 114860.00000 1.148600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.148600e+05 1.148600e+05 0.00 NULL
2019 Office Of Emergency Management Agency Attorney 79278.66667 2.378360e+05 12701.88 4.233960e+03 4024.250 257.25 3 4.024250e+03 12072.75 2.505379e+05 2.499088e+05 629.13 NULL
2019 Office Of Emergency Management Certified It Administrator 133248.00000 1.332480e+05 7843.20 7.843200e+03 7843.200 92.50 1 7.843200e+03 7843.20 1.410912e+05 1.410912e+05 0.00 NULL
2019 Office Of Emergency Management Commissioner Of Emergency Management 236088.00000 2.360880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.360880e+05 2.360880e+05 0.00 NULL
2019 Office Of Emergency Management Community Associate 45092.50000 9.018500e+04 2624.33 1.312165e+03 1312.165 86.50 2 1.312165e+03 2624.33 9.280933e+04 9.280933e+04 0.00 NULL
2019 Office Of Emergency Management Community Coordinator 68835.00000 6.883500e+04 22028.01 2.202801e+04 22028.010 461.50 1 2.202801e+04 22028.01 9.086301e+04 9.086301e+04 0.00 NULL
2019 Office Of Emergency Management Computer Systems Manager 151131.00000 1.511310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.511310e+05 1.511310e+05 0.00 NULL
2019 Office Of Emergency Management Deputy Commissioner 183324.00000 3.666480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.666480e+05 3.666480e+05 0.00 NULL
2019 Office Of Emergency Management Emergency Preparedness Manager 106243.59062 9.561923e+06 41761.60 4.640178e+02 0.000 752.25 90 0.000000e+00 0.00 9.603685e+06 9.561923e+06 41761.60 NULL
2019 Office Of Emergency Management Emergency Preparedness Specialist 68256.13727 8.258993e+06 528774.68 4.370039e+03 2270.930 11192.00 121 2.270930e+03 274782.53 8.787767e+06 8.533775e+06 253992.15 NULL
2019 Office Of Emergency Management Executive Agency Counsel 153370.00000 3.067400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.067400e+05 3.067400e+05 0.00 NULL
2019 Office Of Emergency Management First Deputy Commissioner 224538.00000 2.245380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.245380e+05 2.245380e+05 0.00 NULL
2019 Office Of Labor Relations Accountant 64500.80000 3.225040e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.225040e+05 3.225040e+05 0.00 NULL
2019 Office Of Labor Relations Adm Manager-Non-Mgrl From M1/M2 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2019 Office Of Labor Relations Admin Community Relations Specialist 60248.00000 6.024800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.024800e+04 6.024800e+04 0.00 NULL
2019 Office Of Labor Relations Administrative Labor Relations Analyst 115565.33333 6.933920e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.933920e+05 6.933920e+05 0.00 NULL
2019 Office Of Labor Relations Administrative Manager 98305.00000 3.932200e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.932200e+05 3.932200e+05 0.00 NULL
2019 Office Of Labor Relations Administrative Public Information Specialist 107456.50000 2.149130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.149130e+05 2.149130e+05 0.00 NULL
2019 Office Of Labor Relations Administrative Staff Analyst 141099.00000 1.410990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.410990e+05 1.410990e+05 0.00 NULL
2019 Office Of Labor Relations Agency Attorney 91996.00000 1.839920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.839920e+05 1.839920e+05 0.00 NULL
2019 Office Of Labor Relations Agency Chief Contracting Officer 90652.00000 9.065200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.065200e+04 9.065200e+04 0.00 NULL
2019 Office Of Labor Relations Assistant Commissioner Of Labor Relations 167816.62500 1.342533e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.342533e+06 1.342533e+06 0.00 NULL
2019 Office Of Labor Relations Associate Counsel 156494.00000 3.129880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.129880e+05 3.129880e+05 0.00 NULL
2019 Office Of Labor Relations Associate Labor Relations Analyst 80000.00000 1.600000e+05 166.55 8.327500e+01 83.275 5.00 2 8.327500e+01 166.55 1.601665e+05 1.601665e+05 0.00 NULL
2019 Office Of Labor Relations Associate Staff Analyst 75591.00000 2.267730e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.267730e+05 2.267730e+05 0.00 NULL
2019 Office Of Labor Relations City Research Scientist 86101.66667 2.583050e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.583050e+05 2.583050e+05 0.00 NULL
2019 Office Of Labor Relations Clerical Associate 46214.56711 4.159311e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.159311e+05 4.159311e+05 0.00 NULL
2019 Office Of Labor Relations Commissioner Of Labor Relations 236088.00000 4.721760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.721760e+05 4.721760e+05 0.00 NULL
2019 Office Of Labor Relations Community Assistant 39480.05510 2.763604e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.763604e+05 2.763604e+05 0.00 NULL
2019 Office Of Labor Relations Community Associate 43045.11111 1.162218e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 1.162218e+06 1.162218e+06 0.00 NULL
2019 Office Of Labor Relations Community Coordinator 65259.71429 4.568180e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.568180e+05 4.568180e+05 0.00 NULL
2019 Office Of Labor Relations Computer Associate 82047.66667 2.461430e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.461430e+05 2.461430e+05 0.00 NULL
2019 Office Of Labor Relations Computer Specialist 100766.00000 2.015320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.015320e+05 2.015320e+05 0.00 NULL
2019 Office Of Labor Relations Computer Systems Manager 142149.50000 2.842990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.842990e+05 2.842990e+05 0.00 NULL
2019 Office Of Labor Relations Customer Information Representative Ma L 1549 45598.00000 4.559800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.559800e+04 4.559800e+04 0.00 NULL
2019 Office Of Labor Relations Deputy Assistant Counsel 89952.62500 7.196210e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.196210e+05 7.196210e+05 0.00 NULL
2019 Office Of Labor Relations Deputy Commissioner Of Labor Relations 222049.50000 4.440990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.440990e+05 4.440990e+05 0.00 NULL
2019 Office Of Labor Relations Director 131702.00000 1.317020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.317020e+05 1.317020e+05 0.00 NULL
2019 Office Of Labor Relations Employee Assistance Program Specialist 61281.90000 6.128190e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 6.128190e+05 6.128190e+05 0.00 NULL
2019 Office Of Labor Relations Employee Health Benefits Program Director 212429.00000 2.124290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.124290e+05 2.124290e+05 0.00 NULL
2019 Office Of Labor Relations Executive Agency Counsel 165722.66667 4.971680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.971680e+05 4.971680e+05 0.00 NULL
2019 Office Of Labor Relations Insurance Advisor 60858.00000 6.085800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.085800e+04 6.085800e+04 0.00 NULL
2019 Office Of Labor Relations Labor Relations Analyst 64846.42857 9.078500e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 9.078500e+05 9.078500e+05 0.00 NULL
2019 Office Of Labor Relations Principal Administrative Associate - Lev 1 & 2 Non Supvr 62705.26586 8.778737e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 8.778737e+05 8.778737e+05 0.00 NULL
2019 Office Of Labor Relations Secretary 42126.50000 8.425300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.425300e+04 8.425300e+04 0.00 NULL
2019 Office Of Labor Relations Secretary To The Commissioner Of Labor Relations 88651.00000 8.865100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.865100e+04 8.865100e+04 0.00 NULL
2019 Office Of Labor Relations Staff Analyst 68485.00000 6.848500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.848500e+04 6.848500e+04 0.00 NULL
2019 Office Of Labor Relations Supervisor Of Office Machine Operations 59263.00000 5.926300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.926300e+04 5.926300e+04 0.00 NULL
2019 Office Of Labor Relations Tests And Measurement Specialist 84247.00000 8.424700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.424700e+04 8.424700e+04 0.00 NULL
2019 Office Of Management & Budget Administrative Manager 176994.00000 1.769940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.769940e+05 1.769940e+05 0.00 NULL
2019 Office Of Management & Budget Administrative Staff Analyst 157402.11111 1.416619e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.416619e+06 1.416619e+06 0.00 NULL
2019 Office Of Management & Budget Architect 109417.00000 1.094170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.094170e+05 1.094170e+05 0.00 NULL
2019 Office Of Management & Budget Budget Analyst 86978.53633 3.879243e+07 672313.69 1.507430e+03 0.000 15177.75 446 0.000000e+00 0.00 3.946474e+07 3.879243e+07 672313.69 NULL
2019 Office Of Management & Budget College Aide 8276.50900 4.138254e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.138254e+04 4.138254e+04 0.00 NULL
2019 Office Of Management & Budget Community Associate 36985.00000 3.698500e+04 1978.30 1.978300e+03 1978.300 89.50 1 1.978300e+03 1978.30 3.896330e+04 3.896330e+04 0.00 NULL
2019 Office Of Management & Budget Computer Operations Manager 129082.00000 1.290820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.290820e+05 1.290820e+05 0.00 NULL
2019 Office Of Management & Budget Computer Specialist 79839.00000 7.983900e+04 19.69 1.969000e+01 19.690 0.00 1 1.969000e+01 19.69 7.985869e+04 7.985869e+04 0.00 NULL
2019 Office Of Management & Budget Computer Systems Manager 160914.60000 8.045730e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.045730e+05 8.045730e+05 0.00 NULL
2019 Office Of Management & Budget Deputy General Counsel 168171.00000 1.681710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.681710e+05 1.681710e+05 0.00 NULL
2019 Office Of Management & Budget Director Of Financing Policy Coordination 216431.00000 2.164310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.164310e+05 2.164310e+05 0.00 NULL
2019 Office Of Management & Budget Director Of Management & Budget 233490.50000 4.669810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.669810e+05 4.669810e+05 0.00 NULL
2019 Office Of Management & Budget Executive Agency Counsel 216431.00000 2.164310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.164310e+05 2.164310e+05 0.00 NULL
2019 Office Of Management & Budget Statistical Secretary 62041.44444 1.116746e+06 17303.07 9.612817e+02 0.000 394.50 18 0.000000e+00 0.00 1.134049e+06 1.116746e+06 17303.07 NULL
2019 Office Of Management & Budget Summer College Intern 2281.39827 2.965818e+04 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 2.965818e+04 2.965818e+04 0.00 NULL
2019 Office Of Management & Budget Summer Graduate Intern 3540.87000 3.540870e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 3.540870e+04 3.540870e+04 0.00 NULL
2019 Office Of Management & Budget Supervisor Of Office Machine Operations 46363.00000 4.636300e+04 1795.40 1.795400e+03 1795.400 74.75 1 1.795400e+03 1795.40 4.815840e+04 4.815840e+04 0.00 NULL
2019 Office Of The Actuary Actuarial Specialist Level I 72652.34783 1.671004e+06 17427.97 7.577378e+02 0.700 287.50 23 7.000000e-01 16.10 1.688432e+06 1.671020e+06 17411.87 NULL
2019 Office Of The Actuary Administrative Actuary 171766.81818 1.889435e+06 8.51 7.736364e-01 0.000 0.00 11 0.000000e+00 0.00 1.889444e+06 1.889435e+06 8.51 NULL
2019 Office Of The Actuary Administrative Public Information Specialist 100170.00000 1.001700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.001700e+05 1.001700e+05 0.00 NULL
2019 Office Of The Actuary Administrative Staff Analyst 105885.00000 2.117700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.117700e+05 2.117700e+05 0.00 NULL
2019 Office Of The Actuary Certified It Administrator 91499.00000 9.149900e+04 1012.30 1.012300e+03 1012.300 16.50 1 1.012300e+03 1012.30 9.251130e+04 9.251130e+04 0.00 NULL
2019 Office Of The Actuary Chief Actuary 302801.00000 3.028010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.028010e+05 3.028010e+05 0.00 NULL
2019 Office Of The Actuary Clerical Associate 50236.00000 5.023600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.023600e+04 5.023600e+04 0.00 NULL
2019 Office Of The Actuary Community Associate 45000.00000 9.000000e+04 2820.22 1.410110e+03 1410.110 148.50 2 1.410110e+03 2820.22 9.282022e+04 9.282022e+04 0.00 NULL
2019 Office Of The Actuary Computer Systems Manager 182516.00000 1.825160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.825160e+05 1.825160e+05 0.00 NULL
2019 Office Of The Actuary Executive Agency Counsel 155000.00000 3.100000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.100000e+05 3.100000e+05 0.00 NULL
2019 Office Of The Actuary Principal Administrative Associate - Lev 1 & 2 Non Supvr 74160.00000 7.416000e+04 89.71 8.971000e+01 89.710 0.00 1 8.971000e+01 89.71 7.424971e+04 7.424971e+04 0.00 NULL
2019 Office Of The Actuary Procurement Analyst 55202.00000 5.520200e+04 0.00 0.000000e+00 0.000 16.00 1 0.000000e+00 0.00 5.520200e+04 5.520200e+04 0.00 NULL
2019 Office Of The Actuary Secretary 56906.00000 5.690600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.690600e+04 5.690600e+04 0.00 NULL
2019 Office Of The Actuary Secretary To The Chief Actuary 51800.00000 5.180000e+04 70.88 7.088000e+01 70.880 2.50 1 7.088000e+01 70.88 5.187088e+04 5.187088e+04 0.00 NULL
2019 Office Of The Comptroller Accountant 58540.42857 5.736962e+06 23744.23 2.422881e+02 0.000 553.50 98 0.000000e+00 0.00 5.760706e+06 5.736962e+06 23744.23 NULL
2019 Office Of The Comptroller Adm Manager-Non-Mgrl From M1/M2 70999.11155 1.490981e+06 0.00 0.000000e+00 0.000 11.50 21 0.000000e+00 0.00 1.490981e+06 1.490981e+06 0.00 NULL
2019 Office Of The Comptroller Admin Community Relations Specialist 71434.75000 2.857390e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.857390e+05 2.857390e+05 0.00 NULL
2019 Office Of The Comptroller Administrative Accountant 116661.76923 3.033206e+06 23.39 8.996154e-01 0.000 0.00 26 0.000000e+00 0.00 3.033229e+06 3.033206e+06 23.39 NULL
2019 Office Of The Comptroller Administrative Assistant To The Comptroller 125454.60000 6.272730e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.272730e+05 6.272730e+05 0.00 NULL
2019 Office Of The Comptroller Administrative Business Promotion Coordinator 108306.88889 9.747620e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.747620e+05 9.747620e+05 0.00 NULL
2019 Office Of The Comptroller Administrative City Planner 132892.75000 1.594713e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.594713e+06 1.594713e+06 0.00 NULL
2019 Office Of The Comptroller Administrative Claim Examiner 86370.82353 2.936608e+06 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 2.936608e+06 2.936608e+06 0.00 NULL
2019 Office Of The Comptroller Administrative Engineer 117470.66667 2.114472e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.114472e+06 2.114472e+06 0.00 NULL
2019 Office Of The Comptroller Administrative Graphic Artist 91258.00000 9.125800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.125800e+04 9.125800e+04 0.00 NULL
2019 Office Of The Comptroller Administrative Labor Relations Analyst 128630.66667 3.858920e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.858920e+05 3.858920e+05 0.00 NULL
2019 Office Of The Comptroller Administrative Management Auditor 126295.81250 2.020733e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.020733e+06 2.020733e+06 0.00 NULL
2019 Office Of The Comptroller Administrative Manager 120940.00000 2.418800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.418800e+05 2.418800e+05 0.00 NULL
2019 Office Of The Comptroller Administrative Procurement Analyst 93354.75000 1.120257e+06 34618.03 2.884836e+03 2911.610 642.25 12 2.884836e+03 34618.03 1.154875e+06 1.154875e+06 0.00 NULL
2019 Office Of The Comptroller Administrative Project Manager 110566.63636 1.216233e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.216233e+06 1.216233e+06 0.00 NULL
2019 Office Of The Comptroller Administrative Public Information Specialist 85226.86333 1.022722e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.022722e+06 1.022722e+06 0.00 NULL
2019 Office Of The Comptroller Administrative Public Records Officer 78781.00000 7.878100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.878100e+04 7.878100e+04 0.00 NULL
2019 Office Of The Comptroller Administrative Staff Analyst 111896.84000 2.797421e+06 1663.96 6.655840e+01 0.000 6.50 25 0.000000e+00 0.00 2.799085e+06 2.797421e+06 1663.96 NULL
2019 Office Of The Comptroller Administrative Supervisor Of Building Maintenance 83683.00000 8.368300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.368300e+04 8.368300e+04 0.00 NULL
2019 Office Of The Comptroller Agency Attorney 77756.37500 6.220510e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.220510e+05 6.220510e+05 0.00 NULL
2019 Office Of The Comptroller Agency Chief Contracting Officer 156764.00000 3.135280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.135280e+05 3.135280e+05 0.00 NULL
2019 Office Of The Comptroller Architect 99080.00000 9.908000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.908000e+04 9.908000e+04 0.00 NULL
2019 Office Of The Comptroller Assistant Budget Analyst 57497.10526 1.092445e+06 3839.01 2.020532e+02 0.000 70.75 19 0.000000e+00 0.00 1.096284e+06 1.092445e+06 3839.01 NULL
2019 Office Of The Comptroller Assistant Secretary To The Comptroller 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2019 Office Of The Comptroller Assistant To Deputy Comptroller 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2019 Office Of The Comptroller Assistant To The Comptroller 143627.50000 2.872550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.872550e+05 2.872550e+05 0.00 NULL
2019 Office Of The Comptroller Associate Fraud Investigator 77077.00000 7.707700e+04 1620.33 1.620330e+03 1620.330 34.25 1 1.620330e+03 1620.33 7.869733e+04 7.869733e+04 0.00 NULL
2019 Office Of The Comptroller Associate Investigator 66396.00000 1.327920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.327920e+05 1.327920e+05 0.00 NULL
2019 Office Of The Comptroller Associate Project Manager 99761.83333 5.985710e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.985710e+05 5.985710e+05 0.00 NULL
2019 Office Of The Comptroller Associate Staff Analyst 81757.28571 5.723010e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.723010e+05 5.723010e+05 0.00 NULL
2019 Office Of The Comptroller Bookkeeper 41690.07200 2.918305e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.918305e+05 2.918305e+05 0.00 NULL
2019 Office Of The Comptroller Budget Analyst 86337.50000 3.453500e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.453500e+05 3.453500e+05 0.00 NULL
2019 Office Of The Comptroller Business Promotion Coordinator 60263.87500 1.446333e+06 19251.80 8.021583e+02 0.000 410.00 24 0.000000e+00 0.00 1.465585e+06 1.446333e+06 19251.80 NULL
2019 Office Of The Comptroller Certified It Administrator 116391.00000 1.163910e+05 7727.87 7.727870e+03 7727.870 101.50 1 7.727870e+03 7727.87 1.241189e+05 1.241189e+05 0.00 NULL
2019 Office Of The Comptroller City Custodial Assistant 30145.33912 2.411627e+05 28338.64 3.542330e+03 2945.595 942.50 8 2.945595e+03 23564.76 2.695014e+05 2.647275e+05 4773.88 NULL
2019 Office Of The Comptroller Civil Engineer 108467.00000 1.084670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.084670e+05 1.084670e+05 0.00 NULL
2019 Office Of The Comptroller Claim Specialist 62452.12195 2.560537e+06 0.00 0.000000e+00 0.000 0.00 41 0.000000e+00 0.00 2.560537e+06 2.560537e+06 0.00 NULL
2019 Office Of The Comptroller Clerical Associate 48920.73529 1.663305e+06 9953.93 2.927626e+02 0.000 273.75 34 0.000000e+00 0.00 1.673259e+06 1.663305e+06 9953.93 NULL
2019 Office Of The Comptroller College Aide 3583.40200 5.375103e+04 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 5.375103e+04 5.375103e+04 0.00 NULL
2019 Office Of The Comptroller Community Assistant 38306.50000 7.661300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.661300e+04 7.661300e+04 0.00 NULL
2019 Office Of The Comptroller Community Associate 52708.27273 5.797910e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.797910e+05 5.797910e+05 0.00 NULL
2019 Office Of The Comptroller Community Coordinator 63435.50000 5.074840e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.074840e+05 5.074840e+05 0.00 NULL
2019 Office Of The Comptroller Community Service Aide 32331.00000 3.233100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.233100e+04 3.233100e+04 0.00 NULL
2019 Office Of The Comptroller Comptroller 209050.00000 2.090500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.090500e+05 2.090500e+05 0.00 NULL
2019 Office Of The Comptroller Computer Aide-Non-Spvr 50477.33333 3.028640e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.028640e+05 3.028640e+05 0.00 NULL
2019 Office Of The Comptroller Computer Associate 71238.00000 1.139808e+06 9211.76 5.757350e+02 0.000 160.00 16 0.000000e+00 0.00 1.149020e+06 1.139808e+06 9211.76 NULL
2019 Office Of The Comptroller Computer Operations Manager 119185.60000 5.959280e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.959280e+05 5.959280e+05 0.00 NULL
2019 Office Of The Comptroller Computer Programmer Analyst 66280.33333 1.988410e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.988410e+05 1.988410e+05 0.00 NULL
2019 Office Of The Comptroller Computer Service Technician 52313.00000 1.569390e+05 4.47 1.490000e+00 0.000 0.00 3 0.000000e+00 0.00 1.569435e+05 1.569390e+05 4.47 NULL
2019 Office Of The Comptroller Computer Specialist 100165.80000 1.001658e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.001658e+06 1.001658e+06 0.00 NULL
2019 Office Of The Comptroller Computer Systems Manager 119372.36842 2.268075e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.268075e+06 2.268075e+06 0.00 NULL
2019 Office Of The Comptroller Confidential Assistant To The Comptroller 135507.00000 1.355070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.355070e+05 1.355070e+05 0.00 NULL
2019 Office Of The Comptroller Confidential Investigator 62577.00000 6.257700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.257700e+04 6.257700e+04 0.00 NULL
2019 Office Of The Comptroller Confidential Strategy Planner 84047.50000 1.680950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.680950e+05 1.680950e+05 0.00 NULL
2019 Office Of The Comptroller Construction Project Manager 102634.00000 1.026340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.026340e+05 1.026340e+05 0.00 NULL
2019 Office Of The Comptroller Custodian 56970.00000 1.139400e+05 3855.41 1.927705e+03 1927.705 92.25 2 1.927705e+03 3855.41 1.177954e+05 1.177954e+05 0.00 NULL
2019 Office Of The Comptroller Director Of Investments 250469.50000 1.001878e+06 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.001878e+06 1.001878e+06 0.00 NULL
2019 Office Of The Comptroller Director Of Audits 212857.00000 2.128570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128570e+05 2.128570e+05 0.00 NULL
2019 Office Of The Comptroller Economist 63558.00000 5.720220e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.720220e+05 5.720220e+05 0.00 NULL
2019 Office Of The Comptroller Engineering Technician 62000.00000 6.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.200000e+04 6.200000e+04 0.00 NULL
2019 Office Of The Comptroller Executive Agency Counsel 141907.40625 4.541037e+06 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 4.541037e+06 4.541037e+06 0.00 NULL
2019 Office Of The Comptroller Executive Assistant To The Comptroller 163850.00000 3.277000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.277000e+05 3.277000e+05 0.00 NULL
2019 Office Of The Comptroller Executive Program Specialist 135584.00000 1.355840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.355840e+05 1.355840e+05 0.00 NULL
2019 Office Of The Comptroller First Deputy Comptroller 221181.00000 2.211810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.211810e+05 2.211810e+05 0.00 NULL
2019 Office Of The Comptroller Fraud Investigator 74004.33333 2.220130e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.220130e+05 2.220130e+05 0.00 NULL
2019 Office Of The Comptroller Investigator 62000.00000 6.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.200000e+04 6.200000e+04 0.00 NULL
2019 Office Of The Comptroller Investment Analyst 72181.96875 2.309823e+06 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 2.309823e+06 2.309823e+06 0.00 NULL
2019 Office Of The Comptroller Investment Manager 168013.90625 5.376445e+06 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 5.376445e+06 5.376445e+06 0.00 NULL
2019 Office Of The Comptroller Legal Secretarial Assistant Al 2,3,4 Only 67170.28571 4.701920e+05 3020.90 4.315571e+02 0.000 32.75 7 0.000000e+00 0.00 4.732129e+05 4.701920e+05 3020.90 NULL
2019 Office Of The Comptroller Management Auditor 74088.69747 6.667983e+06 18216.53 2.024059e+02 0.000 281.00 90 0.000000e+00 0.00 6.686199e+06 6.667983e+06 18216.53 NULL
2019 Office Of The Comptroller Office Machine Aide 18641.45377 1.118487e+05 3.52 5.866667e-01 0.000 0.00 6 0.000000e+00 0.00 1.118522e+05 1.118487e+05 3.52 NULL
2019 Office Of The Comptroller Pension Investment Advisor 350000.00000 7.000000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.000000e+05 7.000000e+05 0.00 NULL
2019 Office Of The Comptroller Principal Administrative Associate - Lev 1 & 2 Non Supvr 62573.39772 2.127496e+06 12453.75 3.662868e+02 0.000 238.25 34 0.000000e+00 0.00 2.139949e+06 2.127496e+06 12453.75 NULL
2019 Office Of The Comptroller Principal Investment Officer 211436.50000 4.228730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.228730e+05 4.228730e+05 0.00 NULL
2019 Office Of The Comptroller Procurement Analyst 63692.50000 3.821550e+05 12187.25 2.031208e+03 179.810 289.25 6 1.798100e+02 1078.86 3.943422e+05 3.832339e+05 11108.39 NULL
2019 Office Of The Comptroller Public Records Aide 22831.00170 2.283100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.283100e+04 2.283100e+04 0.00 NULL
2019 Office Of The Comptroller Research And Liaison Coordinator 107412.45000 2.148249e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 2.148249e+06 2.148249e+06 0.00 NULL
2019 Office Of The Comptroller Research Assistant 54676.00000 1.093520e+05 841.28 4.206400e+02 420.640 32.75 2 4.206400e+02 841.28 1.101933e+05 1.101933e+05 0.00 NULL
2019 Office Of The Comptroller Second Deputy Comptroller 214197.00000 2.141970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.141970e+05 2.141970e+05 0.00 NULL
2019 Office Of The Comptroller Secretary 45668.50000 2.740110e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.740110e+05 2.740110e+05 0.00 NULL
2019 Office Of The Comptroller Secretary To The Comptroller 52309.00000 5.230900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.230900e+04 5.230900e+04 0.00 NULL
2019 Office Of The Comptroller Special Deputy Comptroller 208590.00000 2.085900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.085900e+05 2.085900e+05 0.00 NULL
2019 Office Of The Comptroller Staff Analyst 61059.61538 7.937750e+05 9099.91 6.999931e+02 0.000 164.00 13 0.000000e+00 0.00 8.028749e+05 7.937750e+05 9099.91 NULL
2019 Office Of The Comptroller Staff Analyst Trainee 14014.43615 1.821877e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.821877e+05 1.821877e+05 0.00 NULL
2019 Office Of The Comptroller Statistician 86782.00000 8.678200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.678200e+04 8.678200e+04 0.00 NULL
2019 Office Of The Comptroller Strategic Initiative Specialist 146681.50000 2.933630e+05 89.76 4.488000e+01 44.880 2.00 2 4.488000e+01 89.76 2.934528e+05 2.934528e+05 0.00 NULL
2019 Office Of The Comptroller Summer College Intern 1932.50152 1.333426e+05 0.00 0.000000e+00 0.000 0.00 69 0.000000e+00 0.00 1.333426e+05 1.333426e+05 0.00 NULL
2019 Office Of The Comptroller Summer Graduate Intern 1940.27225 3.880544e+04 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 3.880544e+04 3.880544e+04 0.00 NULL
2019 Office Of The Comptroller Supervising Computer Service Technician 83674.00000 8.367400e+04 23.08 2.308000e+01 23.080 0.00 1 2.308000e+01 23.08 8.369708e+04 8.369708e+04 0.00 NULL
2019 Office Of The Comptroller Supervisor Of Motor Transport 54899.00000 5.489900e+04 3017.05 3.017050e+03 3017.050 95.50 1 3.017050e+03 3017.05 5.791605e+04 5.791605e+04 0.00 NULL
2019 Office Of The Comptroller Supervisor Of Stock Workers 41844.00000 4.184400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.184400e+04 4.184400e+04 0.00 NULL
2019 Office Of The Comptroller Telecommunications Associate 89923.00000 8.992300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.992300e+04 8.992300e+04 0.00 NULL
2019 Office Of The Mayor Administrative Assistant To The Mayor 102675.00000 1.026750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.026750e+05 1.026750e+05 0.00 NULL
2019 Office Of The Mayor Assistant Legislative Representative 106837.11111 9.615340e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.615340e+05 9.615340e+05 0.00 NULL
2019 Office Of The Mayor Assistant To The Deputy Mayor 180169.00000 1.261183e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.261183e+06 1.261183e+06 0.00 NULL
2019 Office Of The Mayor Assistant To The Mayor 186324.00000 3.726480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.726480e+05 3.726480e+05 0.00 NULL
2019 Office Of The Mayor Asst Dir Of Intergvnmental Reltns For The Albany Office 198054.00000 1.980540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.980540e+05 1.980540e+05 0.00 NULL
2019 Office Of The Mayor Asst Director Of Intergovermental Rel For City Legist Affs 175216.00000 1.752160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.752160e+05 1.752160e+05 0.00 NULL
2019 Office Of The Mayor Chief Of Staff - Mayor’s Office 236750.00000 2.367500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.367500e+05 2.367500e+05 0.00 NULL
2019 Office Of The Mayor Chief Service Officer 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2019 Office Of The Mayor Clerical Associate 47203.66667 1.416110e+05 112.58 3.752667e+01 0.000 4.00 3 0.000000e+00 0.00 1.417236e+05 1.416110e+05 112.58 NULL
2019 Office Of The Mayor College Aide 5477.21474 4.272228e+05 0.00 0.000000e+00 0.000 0.00 78 0.000000e+00 0.00 4.272228e+05 4.272228e+05 0.00 NULL
2019 Office Of The Mayor Commiss Of The Off To End Domest And Gend Ba Viol 221151.00000 2.211510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.211510e+05 2.211510e+05 0.00 NULL
2019 Office Of The Mayor Commissioner, Un & Consular Corps Diplomatic Relations 221151.00000 2.211510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.211510e+05 2.211510e+05 0.00 NULL
2019 Office Of The Mayor Communications Director 195032.00000 1.950320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.950320e+05 1.950320e+05 0.00 NULL
2019 Office Of The Mayor Community Associate 52676.00000 5.267600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.267600e+04 5.267600e+04 0.00 NULL
2019 Office Of The Mayor Computer Operations Manager 123425.00000 3.702750e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.702750e+05 3.702750e+05 0.00 NULL
2019 Office Of The Mayor Counsel To The Mayor 214225.00000 2.142250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.142250e+05 2.142250e+05 0.00 NULL
2019 Office Of The Mayor Deputy Mayor 244643.00000 1.223215e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.223215e+06 1.223215e+06 0.00 NULL
2019 Office Of The Mayor Director Of Community Assistance Unit 221151.00000 2.211510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.211510e+05 2.211510e+05 0.00 NULL
2019 Office Of The Mayor Director Of Criminal Justice 236088.00000 2.360880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.360880e+05 2.360880e+05 0.00 NULL
2019 Office Of The Mayor Director Of Immigrant Affairs 221151.00000 2.211510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.211510e+05 2.211510e+05 0.00 NULL
2019 Office Of The Mayor Director Of Intergovernmental Relations 221105.00000 2.211050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.211050e+05 2.211050e+05 0.00 NULL
2019 Office Of The Mayor Director Of Office For People With Disabilities 221151.00000 2.211510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.211510e+05 2.211510e+05 0.00 NULL
2019 Office Of The Mayor Director, Office Of Operations 236088.00000 2.360880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.360880e+05 2.360880e+05 0.00 NULL
2019 Office Of The Mayor Executive Administrator Of Gracie Mansion 230129.00000 2.301290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.301290e+05 2.301290e+05 0.00 NULL
2019 Office Of The Mayor Executive Agency Counsel 151752.45455 1.669277e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.669277e+06 1.669277e+06 0.00 NULL
2019 Office Of The Mayor Executive Assistant-Midtown Enforcement 85232.00000 8.523200e+04 1199.28 1.199280e+03 1199.280 23.50 1 1.199280e+03 1199.28 8.643128e+04 8.643128e+04 0.00 NULL
2019 Office Of The Mayor Executive Cook 91140.98750 3.645640e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.645640e+05 3.645640e+05 0.00 NULL
2019 Office Of The Mayor Executive Director On Commission On Gender Equality 182516.00000 1.825160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.825160e+05 1.825160e+05 0.00 NULL
2019 Office Of The Mayor First Deputy Mayor 282659.00000 2.826590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.826590e+05 2.826590e+05 0.00 NULL
2019 Office Of The Mayor High School Student Aide 1832.17500 1.832175e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.832175e+04 1.832175e+04 0.00 NULL
2019 Office Of The Mayor Legislative Aide 67792.00000 6.779200e+04 3991.05 3.991050e+03 3991.050 101.25 1 3.991050e+03 3991.05 7.178305e+04 7.178305e+04 0.00 NULL
2019 Office Of The Mayor Mayor 258750.00000 2.587500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.587500e+05 2.587500e+05 0.00 NULL
2019 Office Of The Mayor Mayoral Office Assistant 48681.69281 1.752541e+06 41356.48 1.148791e+03 176.445 1317.50 36 1.764450e+02 6352.02 1.793897e+06 1.758893e+06 35004.46 NULL
2019 Office Of The Mayor Mayoral Program Coordinator 69289.44444 6.236050e+05 6398.73 7.109700e+02 0.000 143.00 9 0.000000e+00 0.00 6.300037e+05 6.236050e+05 6398.73 NULL
2019 Office Of The Mayor Press Officer 138908.00000 1.389080e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.389080e+06 1.389080e+06 0.00 NULL
2019 Office Of The Mayor Project Planner 79789.66667 2.393690e+05 5622.92 1.874307e+03 1.860 127.50 3 1.860000e+00 5.58 2.449919e+05 2.393746e+05 5617.34 NULL
2019 Office Of The Mayor Research Projects Coord 106310.74830 1.562768e+07 1773.60 1.206531e+01 0.000 54.75 147 0.000000e+00 0.00 1.562945e+07 1.562768e+07 1773.60 NULL
2019 Office Of The Mayor Research Projects Coordinator 68759.83333 4.125590e+05 4071.31 6.785517e+02 0.000 188.50 6 0.000000e+00 0.00 4.166303e+05 4.125590e+05 4071.31 NULL
2019 Office Of The Mayor Secretary 85380.33333 2.561410e+05 10565.97 3.521990e+03 1159.770 218.25 3 1.159770e+03 3479.31 2.667070e+05 2.596203e+05 7086.66 NULL
2019 Office Of The Mayor Senior Advisor To The Mayor 232000.00000 2.320000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.320000e+05 2.320000e+05 0.00 NULL
2019 Office Of The Mayor Senior Policy Advisor To The Mayor 213751.50000 4.275030e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.275030e+05 4.275030e+05 0.00 NULL
2019 Office Of The Mayor Senior Service Inspector 60870.00000 6.087000e+04 134.55 1.345500e+02 134.550 3.00 1 1.345500e+02 134.55 6.100455e+04 6.100455e+04 0.00 NULL
2019 Office Of The Mayor Service Inspector 43462.60000 2.173130e+05 213.90 4.278000e+01 29.970 7.00 5 2.997000e+01 149.85 2.175269e+05 2.174629e+05 64.05 NULL
2019 Office Of The Mayor Special Assistant 101991.70618 3.386125e+07 11299.47 3.403455e+01 0.000 215.25 332 0.000000e+00 0.00 3.387255e+07 3.386125e+07 11299.47 NULL
2019 Office Of The Mayor Sr Project Planner 104118.00000 2.082360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.082360e+05 2.082360e+05 0.00 NULL
2019 Office Of The Mayor Staff Assistant 55319.05000 1.106381e+06 16176.03 8.088015e+02 286.380 599.50 20 2.863800e+02 5727.60 1.122557e+06 1.112109e+06 10448.43 NULL
2019 Office Of The Mayor Summer College Intern 3143.58272 3.206454e+05 0.00 0.000000e+00 0.000 0.00 102 0.000000e+00 0.00 3.206454e+05 3.206454e+05 0.00 NULL
2019 Office Of The Mayor Summer Graduate Intern 3670.58654 1.908705e+05 0.00 0.000000e+00 0.000 0.00 52 0.000000e+00 0.00 1.908705e+05 1.908705e+05 0.00 NULL
2019 Personnel Monitors Monitor 3375.54280 1.616885e+06 10465.50 2.184864e+01 0.000 483.00 479 0.000000e+00 0.00 1.627350e+06 1.616885e+06 10465.50 NULL
2019 Police Department Accountant 62576.54167 1.501837e+06 118500.50 4.937521e+03 1253.765 2256.75 24 1.253765e+03 30090.36 1.620338e+06 1.531927e+06 88410.14 NULL
2019 Police Department Adm Manager-Non-Mgrl From M1/M2 83502.51351 3.089593e+06 171471.61 4.634368e+03 513.650 3215.25 37 5.136500e+02 19005.05 3.261065e+06 3.108598e+06 152466.56 NULL
2019 Police Department Adm School Security Manager-U 85725.00000 2.571750e+05 12527.40 4.175800e+03 898.370 204.00 3 8.983700e+02 2695.11 2.697024e+05 2.598701e+05 9832.29 NULL
2019 Police Department Adm Traffic Enfrcmnt Agent-Director Of Parking Enfrcmnt Dist 158268.00000 1.582680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.582680e+05 1.582680e+05 0.00 NULL
2019 Police Department Admin Community Relations Specialist 105632.00000 4.225280e+05 70197.39 1.754935e+04 15602.195 955.00 4 1.560219e+04 62408.78 4.927254e+05 4.849368e+05 7788.61 NULL
2019 Police Department Admin Construction Project Manager 132925.00000 1.329250e+05 106.73 1.067300e+02 106.730 1.50 1 1.067300e+02 106.73 1.330317e+05 1.330317e+05 0.00 NULL
2019 Police Department Admin Contract Specialist 152657.72727 1.679235e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.679235e+06 1.679235e+06 0.00 NULL
2019 Police Department Admin Schl Secur Mgr-Mgl 180182.00000 1.801820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.801820e+05 1.801820e+05 0.00 NULL
2019 Police Department Admin Tests & Meas Spec 107500.00000 2.150000e+05 25715.54 1.285777e+04 12857.770 360.25 2 1.285777e+04 25715.54 2.407155e+05 2.407155e+05 0.00 NULL
2019 Police Department Admin Traffic Enf Agnt-Union 71489.08571 2.502118e+06 584216.06 1.669189e+04 15821.380 10593.75 35 1.582138e+04 553748.30 3.086334e+06 3.055866e+06 30467.76 NULL
2019 Police Department Admin Traffic Enfrcmnt Agent 127497.66667 3.824930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.824930e+05 3.824930e+05 0.00 NULL
2019 Police Department Administrative Accountant 119984.00000 8.398880e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.398880e+05 8.398880e+05 0.00 NULL
2019 Police Department Administrative Architect 142523.33333 4.275700e+05 10447.99 3.482663e+03 0.000 166.75 3 0.000000e+00 0.00 4.380180e+05 4.275700e+05 10447.99 NULL
2019 Police Department Administrative City Planner 110430.00000 1.104300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.104300e+05 1.104300e+05 0.00 NULL
2019 Police Department Administrative Community Relations Specialist 178258.00000 1.782580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.782580e+05 1.782580e+05 0.00 NULL
2019 Police Department Administrative Contract Specialist 110469.50000 2.209390e+05 5446.58 2.723290e+03 2723.290 76.75 2 2.723290e+03 5446.58 2.263856e+05 2.263856e+05 0.00 NULL
2019 Police Department Administrative Engineer 119409.50000 2.388190e+05 78799.44 3.939972e+04 39399.720 901.25 2 3.939972e+04 78799.44 3.176184e+05 3.176184e+05 0.00 NULL
2019 Police Department Administrative Graphic Artist 99136.00000 9.913600e+04 637.58 6.375800e+02 637.580 11.75 1 6.375800e+02 637.58 9.977358e+04 9.977358e+04 0.00 NULL
2019 Police Department Administrative Investigator 99700.00000 9.970000e+04 7350.49 7.350490e+03 7350.490 113.25 1 7.350490e+03 7350.49 1.070505e+05 1.070505e+05 0.00 NULL
2019 Police Department Administrative Labor Relations Analyst 126662.00000 1.266620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.266620e+05 1.266620e+05 0.00 NULL
2019 Police Department Administrative Manager 97404.00000 9.740400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.740400e+04 9.740400e+04 0.00 NULL
2019 Police Department Administrative Printing Services Manager 119373.00000 2.387460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.387460e+05 2.387460e+05 0.00 NULL
2019 Police Department Administrative Procurement Analyst 83359.46667 1.250392e+06 215083.99 1.433893e+04 7143.680 3582.50 15 7.143680e+03 107155.20 1.465476e+06 1.357547e+06 107928.79 NULL
2019 Police Department Administrative Project Manager 132153.63636 1.453690e+06 71141.61 6.467419e+03 0.000 804.00 11 0.000000e+00 0.00 1.524832e+06 1.453690e+06 71141.61 NULL
2019 Police Department Administrative Psychologist 121039.00000 3.631170e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.631170e+05 3.631170e+05 0.00 NULL
2019 Police Department Administrative Public Health Sanitarian 135729.00000 1.357290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.357290e+05 1.357290e+05 0.00 NULL
2019 Police Department Administrative Public Information Specialist 120695.71429 1.689740e+06 946.35 6.759643e+01 0.000 20.25 14 0.000000e+00 0.00 1.690686e+06 1.689740e+06 946.35 NULL
2019 Police Department Administrative Quality Assurance Specialist 85909.00000 8.590900e+04 19477.79 1.947779e+04 19477.790 342.25 1 1.947779e+04 19477.79 1.053868e+05 1.053868e+05 0.00 NULL
2019 Police Department Administrative Staff Analyst 106408.45833 1.021521e+07 499708.99 5.205302e+03 833.405 7531.50 96 8.334050e+02 80006.88 1.071492e+07 1.029522e+07 419702.11 NULL
2019 Police Department Administrative Supervisor Of Building Maintenance 138962.00000 1.389620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.389620e+05 1.389620e+05 0.00 NULL
2019 Police Department Administrative Transportation Coordinator 131488.00000 1.314880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.314880e+05 1.314880e+05 0.00 NULL
2019 Police Department Agency Attorney 89902.48810 7.551809e+06 625107.67 7.441758e+03 3963.175 8951.50 84 3.963175e+03 332906.70 8.176917e+06 7.884716e+06 292200.97 NULL
2019 Police Department Agency Attorney Interne 65529.50000 2.621180e+05 3552.13 8.880325e+02 0.000 77.50 4 0.000000e+00 0.00 2.656701e+05 2.621180e+05 3552.13 NULL
2019 Police Department Agency Chief Contracting Officer 188406.50000 3.768130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.768130e+05 3.768130e+05 0.00 NULL
2019 Police Department Architect 90355.00000 1.807100e+05 14.02 7.010000e+00 7.010 0.00 2 7.010000e+00 14.02 1.807240e+05 1.807240e+05 0.00 NULL
2019 Police Department Assistant Advocate-Pd 106251.00000 3.187530e+05 28678.07 9.559357e+03 9244.540 441.25 3 9.244540e+03 27733.62 3.474311e+05 3.464866e+05 944.45 NULL
2019 Police Department Assistant Architect 83151.00000 8.315100e+04 21714.54 2.171454e+04 21714.540 351.00 1 2.171454e+04 21714.54 1.048655e+05 1.048655e+05 0.00 NULL
2019 Police Department Assistant Chemical Engineer 75651.00000 7.565100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.565100e+04 7.565100e+04 0.00 NULL
2019 Police Department Assistant Commissioner 176562.50000 7.062500e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.062500e+05 7.062500e+05 0.00 NULL
2019 Police Department Assistant Counsel-Pd 112880.22222 1.015922e+06 161219.77 1.791331e+04 15683.180 1996.00 9 1.568318e+04 141148.62 1.177142e+06 1.157071e+06 20071.15 NULL
2019 Police Department Assistant Deputy Commissioner 143143.00000 1.431430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.431430e+05 1.431430e+05 0.00 NULL
2019 Police Department Assistant Mechanical Engineer 63728.00000 6.372800e+04 26044.94 2.604494e+04 26044.940 549.50 1 2.604494e+04 26044.94 8.977294e+04 8.977294e+04 0.00 NULL
2019 Police Department Assistant To Police Commissionor 217244.00000 2.172440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.172440e+05 2.172440e+05 0.00 NULL
2019 Police Department Assoc Spvr Of School Security 74511.95238 3.129502e+06 503724.86 1.199345e+04 11212.230 9221.75 42 1.121223e+04 470913.66 3.633227e+06 3.600416e+06 32811.20 NULL
2019 Police Department Assoc Supvr Of Schl Sec 109394.83333 6.563690e+05 3285.31 5.475517e+02 0.000 55.75 6 0.000000e+00 0.00 6.596543e+05 6.563690e+05 3285.31 NULL
2019 Police Department Associate Fingerprint Technician 42105.88235 1.431600e+06 26407.99 7.767056e+02 103.140 748.50 34 1.031400e+02 3506.76 1.458008e+06 1.435107e+06 22901.23 NULL
2019 Police Department Associate Investigator 49123.02630 3.192997e+06 363757.76 5.596273e+03 1927.560 7385.90 65 1.927560e+03 125291.40 3.556754e+06 3.318288e+06 238466.36 NULL
2019 Police Department Associate Labor Relations Analyst 104957.00000 1.049570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.049570e+05 1.049570e+05 0.00 NULL
2019 Police Department Associate Parking Control Specialist 57275.83333 3.436550e+05 68454.91 1.140915e+04 12873.050 1573.25 6 1.140915e+04 68454.91 4.121099e+05 4.121099e+05 0.00 NULL
2019 Police Department Associate Project Manager 102324.85714 7.162740e+05 125916.52 1.798807e+04 11375.960 1544.50 7 1.137596e+04 79631.72 8.421905e+05 7.959057e+05 46284.80 NULL
2019 Police Department Associate Public Records Officer 60868.00000 6.086800e+04 82.40 8.240000e+01 82.400 2.00 1 8.240000e+01 82.40 6.095040e+04 6.095040e+04 0.00 NULL
2019 Police Department Associate Staff Analyst 81552.17021 3.832952e+06 184582.77 3.927293e+03 803.950 3171.00 47 8.039500e+02 37785.65 4.017535e+06 3.870738e+06 146797.12 NULL
2019 Police Department Associate Traffic Enforcement Agent 49276.87387 2.187893e+07 7191761.16 1.619766e+04 16467.845 183348.01 444 1.619766e+04 7191761.16 2.907069e+07 2.907069e+07 0.00 NULL
2019 Police Department Attorney At Law 95590.00000 2.867700e+05 46364.16 1.545472e+04 2596.810 450.00 3 2.596810e+03 7790.43 3.331342e+05 2.945604e+05 38573.73 NULL
2019 Police Department Auto Body Worker 57663.00000 1.326249e+06 315134.91 1.370152e+04 12759.290 7093.75 23 1.275929e+04 293463.67 1.641384e+06 1.619713e+06 21671.24 NULL
2019 Police Department Auto Mechanic NA NA 2300545.11 1.179767e+04 9586.450 36548.84 195 9.586450e+03 1869357.75 NA NA NA NULL
2019 Police Department Automotive Service Worker 38378.21978 3.492418e+06 264973.08 2.911792e+03 1473.270 9182.25 91 1.473270e+03 134067.57 3.757391e+06 3.626486e+06 130905.51 NULL
2019 Police Department Bookbinder 47428.66667 1.422860e+05 5703.83 1.901277e+03 2580.150 167.25 3 1.901277e+03 5703.83 1.479898e+05 1.479898e+05 0.00 NULL
2019 Police Department Bookkeeper 52358.41667 3.141505e+06 246346.03 4.105767e+03 198.030 5734.50 60 1.980300e+02 11881.80 3.387851e+06 3.153387e+06 234464.23 NULL
2019 Police Department Capt Det Chief Of Department 230676.00000 4.613520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.613520e+05 4.613520e+05 0.00 NULL
2019 Police Department Capt Det Chief Of The Housing Bureau 234093.00000 2.340930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.340930e+05 2.340930e+05 0.00 NULL
2019 Police Department Capt Det Chief Of The Transit Bureau 229273.00000 4.585460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.585460e+05 4.585460e+05 0.00 NULL
2019 Police Department Captain 151928.31635 5.666926e+07 1705093.04 4.571295e+03 225.670 19015.92 373 2.256700e+02 84174.91 5.837436e+07 5.675344e+07 1620918.13 NULL
2019 Police Department Captain Chief Of Counterterrorism 234093.00000 2.340930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.340930e+05 2.340930e+05 0.00 NULL
2019 Police Department Captain D/A Deputy Chief Inspector 190504.18072 1.581185e+07 260597.24 3.139726e+03 0.000 0.00 83 0.000000e+00 0.00 1.607244e+07 1.581185e+07 260597.24 NULL
2019 Police Department Captain D/A Deputy Inspector 171952.39785 3.198315e+07 235436.59 1.265788e+03 0.000 247.48 186 0.000000e+00 0.00 3.221858e+07 3.198315e+07 235436.59 NULL
2019 Police Department Captain D/A Inspector 181016.79412 2.461828e+07 261580.66 1.923387e+03 0.000 0.00 136 0.000000e+00 0.00 2.487986e+07 2.461828e+07 261580.66 NULL
2019 Police Department Captain Detailed As Assistant Chief Inspector 232265.22581 7.200222e+06 7036.43 2.269816e+02 0.000 0.00 31 0.000000e+00 0.00 7.207258e+06 7.200222e+06 7036.43 NULL
2019 Police Department Captain Detailed As Chief Of Crime Control Strategies 234093.00000 2.340930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.340930e+05 2.340930e+05 0.00 NULL
2019 Police Department Captain Detailed As Chief Of Detectives 229273.00000 4.585460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.585460e+05 4.585460e+05 0.00 NULL
2019 Police Department Captain Detailed As Chief Of Patrol 234093.00000 2.340930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.340930e+05 2.340930e+05 0.00 NULL
2019 Police Department Captain Detailed As Chief Of Personnel 229273.00000 4.585460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.585460e+05 4.585460e+05 0.00 NULL
2019 Police Department Captain Detailed As Chief Of Special Operations 234093.00000 2.340930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.340930e+05 2.340930e+05 0.00 NULL
2019 Police Department Captain Detailed As Chief Of Strategic Initiatives 229273.00000 4.585460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.585460e+05 4.585460e+05 0.00 NULL
2019 Police Department Captain Detailed As Chief Of Training 229273.00000 4.585460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.585460e+05 4.585460e+05 0.00 NULL
2019 Police Department Captain-Chief Of Community Affairs 229273.00000 4.585460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.585460e+05 4.585460e+05 0.00 NULL
2019 Police Department Captain-Chief Of Intelligence 234093.00000 2.340930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.340930e+05 2.340930e+05 0.00 NULL
2019 Police Department Captain-Chief Of Staff 234093.00000 2.340930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.340930e+05 2.340930e+05 0.00 NULL
2019 Police Department Captain: Chief Of Transportation Bureau 234093.00000 2.340930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.340930e+05 2.340930e+05 0.00 NULL
2019 Police Department Carpenter NA NA 493981.38 2.352292e+04 23905.850 6604.75 21 2.352292e+04 493981.38 NA NA NA NULL
2019 Police Department Case Management Nurse 82668.00000 2.066700e+06 188209.61 7.528384e+03 4572.680 2845.25 25 4.572680e+03 114317.00 2.254910e+06 2.181017e+06 73892.61 NULL
2019 Police Department Cashier 46999.25000 1.879970e+05 51772.81 1.294320e+04 10530.725 1378.25 4 1.053073e+04 42122.90 2.397698e+05 2.301199e+05 9649.91 NULL
2019 Police Department Certified Applications Developer 129256.00000 1.292560e+05 1106.37 1.106370e+03 1106.370 12.50 1 1.106370e+03 1106.37 1.303624e+05 1.303624e+05 0.00 NULL
2019 Police Department Certified It Administrator 108445.13043 4.988476e+06 786988.52 1.710845e+04 19927.390 9958.75 46 1.710845e+04 786988.52 5.775465e+06 5.775465e+06 0.00 NULL
2019 Police Department Certified It Developer 103188.25000 4.127530e+05 26629.26 6.657315e+03 6618.045 339.75 4 6.618045e+03 26472.18 4.393823e+05 4.392252e+05 157.08 NULL
2019 Police Department Certified Local Area Network Administrator 102935.00000 1.029350e+05 22845.25 2.284525e+04 22845.250 303.50 1 2.284525e+04 22845.25 1.257802e+05 1.257802e+05 0.00 NULL
2019 Police Department Certified Wide Area Network Administrator 111384.00000 1.113840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.113840e+05 1.113840e+05 0.00 NULL
2019 Police Department Chaplain 38278.58333 4.593430e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 4.593430e+05 4.593430e+05 0.00 NULL
2019 Police Department City Attendant 36570.00000 3.657000e+04 18435.70 1.843570e+04 18435.700 583.25 1 1.843570e+04 18435.70 5.500570e+04 5.500570e+04 0.00 NULL
2019 Police Department City Custodial Assistant 36095.12002 1.205577e+07 633268.49 1.896013e+03 0.000 21805.89 334 0.000000e+00 0.00 1.268904e+07 1.205577e+07 633268.49 NULL
2019 Police Department City Dentist 74932.77000 7.493277e+04 213.18 2.131800e+02 213.180 3.00 1 2.131800e+02 213.18 7.514595e+04 7.514595e+04 0.00 NULL
2019 Police Department City Deputy Medical Director 182621.00000 1.826210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.826210e+05 1.826210e+05 0.00 NULL
2019 Police Department City Laborer NA NA 411770.48 1.419898e+04 8392.900 7290.25 29 8.392900e+03 243394.10 NA NA NA NULL
2019 Police Department City Research Scientist 87491.00000 1.399856e+06 28183.51 1.761469e+03 761.210 512.75 16 7.612100e+02 12179.36 1.428040e+06 1.412035e+06 16004.15 NULL
2019 Police Department Clerical Aide 34248.71768 1.712436e+05 11548.45 2.309690e+03 783.680 378.00 5 7.836800e+02 3918.40 1.827920e+05 1.751620e+05 7630.05 NULL
2019 Police Department Clerical Associate 46273.35788 2.313668e+06 180444.38 3.608888e+03 159.525 4660.75 50 1.595250e+02 7976.25 2.494112e+06 2.321644e+06 172468.13 NULL
2019 Police Department College Aide 9511.16200 9.511162e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 9.511162e+04 9.511162e+04 0.00 NULL
2019 Police Department College Aide - Assignment Levels Ii And Iii 19892.67000 1.989267e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.989267e+04 1.989267e+04 0.00 NULL
2019 Police Department Commissioner 236088.00000 2.360880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.360880e+05 2.360880e+05 0.00 NULL
2019 Police Department Community Assistant 18450.77332 1.457611e+06 28422.56 3.597792e+02 0.000 1018.00 79 0.000000e+00 0.00 1.486034e+06 1.457611e+06 28422.56 NULL
2019 Police Department Community Associate 49527.84615 6.438620e+05 11674.50 8.980385e+02 387.450 368.25 13 3.874500e+02 5036.85 6.555365e+05 6.488988e+05 6637.65 NULL
2019 Police Department Community Coordinator 64981.65849 1.754505e+06 112856.01 4.179852e+03 854.730 2528.25 27 8.547300e+02 23077.71 1.867361e+06 1.777582e+06 89778.30 NULL
2019 Police Department Compositor NA NA 54583.59 1.819453e+04 20814.940 697.25 3 1.819453e+04 54583.59 NA NA NA NULL
2019 Police Department Computer Associate 72828.36585 8.957889e+06 934716.58 7.599322e+03 4882.960 16950.78 123 4.882960e+03 600604.08 9.892606e+06 9.558493e+06 334112.50 NULL
2019 Police Department Computer Operations Manager 155504.80000 2.332572e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 2.332572e+06 2.332572e+06 0.00 NULL
2019 Police Department Computer Programmer Analyst 62656.33333 1.879690e+05 17480.88 5.826960e+03 978.390 346.25 3 9.783900e+02 2935.17 2.054499e+05 1.909042e+05 14545.71 NULL
2019 Police Department Computer Specialist 100528.40000 7.036988e+06 522337.90 7.461970e+03 1331.075 7097.75 70 1.331075e+03 93175.25 7.559326e+06 7.130163e+06 429162.65 NULL
2019 Police Department Computer Systems Manager 162110.37500 2.593766e+06 -41.17 -2.573125e+00 0.000 0.00 16 -2.573125e+00 -41.17 2.593725e+06 2.593725e+06 0.00 NULL
2019 Police Department Construction Project Manager 109030.00000 2.180600e+05 17759.54 8.879770e+03 8879.770 254.25 2 8.879770e+03 17759.54 2.358195e+05 2.358195e+05 0.00 NULL
2019 Police Department Counsel To The Police Commissioner 224426.50000 4.488530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.488530e+05 4.488530e+05 0.00 NULL
2019 Police Department Crime Analyst 58102.68041 5.635960e+06 149007.32 1.536158e+03 840.440 3793.00 97 8.404400e+02 81522.68 5.784967e+06 5.717483e+06 67484.64 NULL
2019 Police Department Criminalist 71610.87342 1.697178e+07 2117738.31 8.935605e+03 6966.850 37051.75 237 6.966850e+03 1651143.45 1.908952e+07 1.862292e+07 466594.86 NULL
2019 Police Department Criminalist Assistant Director Of Laboratory 130859.00000 1.046872e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.046872e+06 1.046872e+06 0.00 NULL
2019 Police Department Criminalist Deputy Director Of Labatory 164399.00000 1.643990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.643990e+05 1.643990e+05 0.00 NULL
2019 Police Department Criminalist Director Of Laboratory 185711.00000 1.857110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.857110e+05 1.857110e+05 0.00 NULL
2019 Police Department Custodial Assistant 37267.60000 3.726760e+05 3167.61 3.167610e+02 0.000 103.75 10 0.000000e+00 0.00 3.758436e+05 3.726760e+05 3167.61 NULL
2019 Police Department Custodian 40434.95652 9.300040e+05 213578.34 9.286015e+03 9419.320 6920.00 23 9.286015e+03 213578.34 1.143582e+06 1.143582e+06 0.00 NULL
2019 Police Department Deputy Chief Surgeon 153243.80000 7.662190e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.662190e+05 7.662190e+05 0.00 NULL
2019 Police Department Deputy Commissioner 226241.62500 1.809933e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.809933e+06 1.809933e+06 0.00 NULL
2019 Police Department Director 140798.00000 1.407980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.407980e+05 1.407980e+05 0.00 NULL
2019 Police Department Director Employee Management Division 159723.00000 1.597230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.597230e+05 1.597230e+05 0.00 NULL
2019 Police Department Director Management Information Systems 200165.00000 2.001650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.001650e+05 2.001650e+05 0.00 NULL
2019 Police Department Director Of Communications 125154.00000 1.251540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.251540e+05 1.251540e+05 0.00 NULL
2019 Police Department Director Of Department Advocates Office 234093.00000 2.340930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.340930e+05 2.340930e+05 0.00 NULL
2019 Police Department Director Of Internal Affairs - Pd 234093.00000 2.340930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.340930e+05 2.340930e+05 0.00 NULL
2019 Police Department Director Of Motor Transport 138790.00000 2.775800e+05 1300.59 6.502950e+02 650.295 8.75 2 6.502950e+02 1300.59 2.788806e+05 2.788806e+05 0.00 NULL
2019 Police Department Director Of Psychological Services 135584.00000 1.355840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.355840e+05 1.355840e+05 0.00 NULL
2019 Police Department Director Of Support Services-Pd 234093.00000 2.340930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.340930e+05 2.340930e+05 0.00 NULL
2019 Police Department Director Of Technology Development-Pd 219489.00000 2.194890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.194890e+05 2.194890e+05 0.00 NULL
2019 Police Department Director Of Training 134280.00000 1.342800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.342800e+05 1.342800e+05 0.00 NULL
2019 Police Department Economist 66090.00000 1.321800e+05 185.90 9.295000e+01 92.950 4.50 2 9.295000e+01 185.90 1.323659e+05 1.323659e+05 0.00 NULL
2019 Police Department Electrician NA NA 1166042.92 3.068534e+04 36394.940 13128.25 38 3.068534e+04 1166042.92 NA NA NA NULL
2019 Police Department Elevator Mechanic NA NA 88940.28 4.447014e+04 44470.140 1164.75 2 4.447014e+04 88940.28 NA NA NA NULL
2019 Police Department Employee Assistance Program Specialist 64448.66667 1.933460e+05 2242.70 7.475667e+02 214.890 49.50 3 2.148900e+02 644.67 1.955887e+05 1.939907e+05 1598.03 NULL
2019 Police Department Evidence And Property Control Specialist 54494.51948 8.392156e+06 388421.21 2.522216e+03 1719.735 9337.50 154 1.719735e+03 264839.19 8.780577e+06 8.656995e+06 123582.02 NULL
2019 Police Department Executive Agency Counsel 157699.72222 5.677190e+06 5819.78 1.616606e+02 0.000 55.25 36 0.000000e+00 0.00 5.683010e+06 5.677190e+06 5819.78 NULL
2019 Police Department Fingerprint Technician Trainee 30551.85714 6.415890e+05 729.78 3.475143e+01 0.000 42.00 21 0.000000e+00 0.00 6.423188e+05 6.415890e+05 729.78 NULL
2019 Police Department First Deputy Commissioner 235526.00000 2.355260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.355260e+05 2.355260e+05 0.00 NULL
2019 Police Department Fitness Instructor 58018.47059 9.863140e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 9.863140e+05 9.863140e+05 0.00 NULL
2019 Police Department Glazier NA NA 115811.38 3.860379e+04 43781.590 1615.00 3 3.860379e+04 115811.38 NA NA NA NULL
2019 Police Department Graphic Artist 60825.50000 6.082550e+05 99131.15 9.913115e+03 6122.105 2148.75 10 6.122105e+03 61221.05 7.073862e+05 6.694761e+05 37910.10 NULL
2019 Police Department Health Services Manager Non Managerial Level I 83599.00000 8.359900e+04 50.23 5.023000e+01 50.230 0.00 1 5.023000e+01 50.23 8.364923e+04 8.364923e+04 0.00 NULL
2019 Police Department Horseshoer NA NA 3401.01 1.133670e+03 961.460 36.75 3 9.614600e+02 2884.38 NA NA NA NULL
2019 Police Department Hostler 43568.55326 1.002077e+06 125482.30 5.455752e+03 3733.440 3698.25 23 3.733440e+03 85869.12 1.127559e+06 1.087946e+06 39613.18 NULL
2019 Police Department Intelligence Research Manager-Pd 155422.71429 1.087959e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.087959e+06 1.087959e+06 0.00 NULL
2019 Police Department Intelligence Research Specialist-Pd 91661.62000 4.583081e+06 582036.88 1.164074e+04 8179.400 8817.75 50 8.179400e+03 408970.00 5.165118e+06 4.992051e+06 173066.88 NULL
2019 Police Department Investigator 48928.06122 2.397475e+06 359338.93 7.333448e+03 6784.490 9458.75 49 6.784490e+03 332440.01 2.756814e+06 2.729915e+06 26898.92 NULL
2019 Police Department Investigator Trainee 43820.60000 4.382060e+05 28778.44 2.877844e+03 1253.680 960.25 10 1.253680e+03 12536.80 4.669844e+05 4.507428e+05 16241.64 NULL
2019 Police Department It Project Specialist 103284.50000 4.131380e+05 56853.07 1.421327e+04 11482.240 781.25 4 1.148224e+04 45928.96 4.699911e+05 4.590670e+05 10924.11 NULL
2019 Police Department Job Training Participant 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2019 Police Department Lieutenant 121380.75066 1.830422e+08 36333659.50 2.409394e+04 23727.530 357241.76 1508 2.372753e+04 35781115.24 2.193758e+08 2.188233e+08 552544.26 NULL
2019 Police Department Lieutenant D/A Commander Of Detective Squad 134409.70647 2.701635e+07 7865806.80 3.913337e+04 45222.380 71759.58 201 3.913337e+04 7865806.80 3.488216e+07 3.488216e+07 0.00 NULL
2019 Police Department Lieutenant D/A Special Assignment 134136.14917 2.427864e+07 6375471.18 3.522360e+04 39673.800 58309.11 181 3.522360e+04 6375471.18 3.065411e+07 3.065411e+07 0.00 NULL
2019 Police Department Locksmith NA NA 32212.73 1.610636e+04 16106.365 641.00 2 1.610636e+04 32212.73 NA NA NA NULL
2019 Police Department Maintenance Worker NA NA 438220.62 1.460735e+04 13960.075 10039.00 30 1.396008e+04 418802.25 NA NA NA NULL
2019 Police Department Management Auditor 73206.04167 1.756945e+06 110282.53 4.595105e+03 541.135 2038.67 24 5.411350e+02 12987.24 1.867228e+06 1.769932e+06 97295.29 NULL
2019 Police Department Manager Of Radio Repair Operations 144824.16667 8.689450e+05 32691.50 5.448583e+03 3758.750 395.50 6 3.758750e+03 22552.50 9.016365e+05 8.914975e+05 10139.00 NULL
2019 Police Department Marine Maintenance Mechanic 73085.00000 1.461700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.461700e+05 1.461700e+05 0.00 NULL
2019 Police Department Media Services Technician 44094.44444 1.190550e+06 42713.02 1.581964e+03 302.580 1360.25 27 3.025800e+02 8169.66 1.233263e+06 1.198720e+06 34543.36 NULL
2019 Police Department Motor Vehicle Operator 47448.16279 2.040271e+06 294350.12 6.845352e+03 3972.700 7332.42 43 3.972700e+03 170826.10 2.334621e+06 2.211097e+06 123524.02 NULL
2019 Police Department Motor Vehicle Supervisor 57130.60000 2.856530e+05 40929.17 8.185834e+03 8818.990 934.00 5 8.185834e+03 40929.17 3.265822e+05 3.265822e+05 0.00 NULL
2019 Police Department Office Machine Aide 40035.00000 1.201050e+05 49.22 1.640667e+01 0.000 2.00 3 0.000000e+00 0.00 1.201542e+05 1.201050e+05 49.22 NULL
2019 Police Department Oiler NA NA 712193.74 3.237244e+04 33876.105 7827.00 22 3.237244e+04 712193.74 NA NA NA NULL
2019 Police Department Operations Communications Specialist 44620.33333 1.338610e+05 25932.47 8.644157e+03 8396.460 700.75 3 8.396460e+03 25189.38 1.597935e+05 1.590504e+05 743.09 NULL
2019 Police Department P.o. Da Det Gr3 97046.01114 3.397581e+08 96781729.13 2.764402e+04 30771.890 1226525.70 3501 2.764402e+04 96781729.13 4.365398e+08 4.365398e+08 0.00 NULL
2019 Police Department P.o. Det Spec 97059.90979 1.011364e+08 24740238.28 2.374303e+04 25251.025 312148.88 1042 2.374303e+04 24740238.28 1.258767e+08 1.258767e+08 0.00 NULL
2019 Police Department Painter NA NA 510181.51 2.834342e+04 35793.505 7786.25 18 2.834342e+04 510181.51 NA NA NA NULL
2019 Police Department Paralegal Aide 45592.10000 4.559210e+05 30578.49 3.057849e+03 1026.920 805.25 10 1.026920e+03 10269.20 4.864995e+05 4.661902e+05 20309.29 NULL
2019 Police Department Parking Control Specialist 43822.85714 6.135200e+05 95628.10 6.830579e+03 5149.380 2926.28 14 5.149380e+03 72091.32 7.091481e+05 6.856113e+05 23536.78 NULL
2019 Police Department Photographer 48684.33333 1.022371e+06 83366.04 3.969811e+03 2847.530 2372.25 21 2.847530e+03 59798.13 1.105737e+06 1.082169e+06 23567.91 NULL
2019 Police Department Physician’s Assistant 29361.53880 5.872308e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.872308e+04 5.872308e+04 0.00 NULL
2019 Police Department Plumber NA NA 793018.36 3.965092e+04 41039.830 7194.00 20 3.965092e+04 793018.36 NA NA NA NULL
2019 Police Department Plumber’s Helper NA NA 34701.25 3.470125e+04 34701.250 458.00 1 3.470125e+04 34701.25 NA NA NA NULL
2019 Police Department Police Administrative Aide 41553.93764 5.597315e+07 1435139.59 1.065434e+03 0.000 44813.51 1347 0.000000e+00 0.00 5.740829e+07 5.597315e+07 1435139.59 NULL
2019 Police Department Police Attendant 40432.45833 1.940758e+06 443316.34 9.235757e+03 8549.075 14074.23 48 8.549075e+03 410355.60 2.384074e+06 2.351114e+06 32960.74 NULL
2019 Police Department Police Cadet 14093.75463 7.258284e+06 1082.16 2.101282e+00 0.000 39.00 515 0.000000e+00 0.00 7.259366e+06 7.258284e+06 1082.16 NULL
2019 Police Department Police Communications Technician 45795.22235 8.114913e+07 7133862.54 4.025882e+03 1914.970 205632.33 1772 1.914970e+03 3393326.84 8.828300e+07 8.454246e+07 3740535.70 NULL
2019 Police Department Police Officer 71146.82209 1.782014e+09 269249925.95 1.074979e+04 8107.920 4223050.28 25047 8.107920e+03 203079072.24 2.051264e+09 1.985094e+09 66170853.71 NULL
2019 Police Department Police Officer D/A Detective 1st Gr 125016.51333 5.625743e+07 15696353.18 3.488078e+04 41054.825 155357.00 450 3.488078e+04 15696353.18 7.195378e+07 7.195378e+07 0.00 NULL
2019 Police Department Police Officer D/A Detective 2nd Gr 109098.33578 1.039707e+08 29847673.82 3.131970e+04 35952.590 337309.89 953 3.131970e+04 29847673.82 1.338184e+08 1.338184e+08 0.00 NULL
2019 Police Department Police Surgeon 137826.39286 3.859139e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 3.859139e+06 3.859139e+06 0.00 NULL
2019 Police Department Precinct Community Relations Aide 23862.32625 9.544930e+04 0.72 1.800000e-01 0.000 0.00 4 0.000000e+00 0.00 9.545002e+04 9.544930e+04 0.72 NULL
2019 Police Department Precinct Receptionist 20271.83703 2.432620e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 2.432620e+05 2.432620e+05 0.00 NULL
2019 Police Department Principal Administrative Associate - Lev 1 & 2 Non Supvr 59813.37829 1.818327e+07 1095341.71 3.603098e+03 70.610 24720.00 304 7.061000e+01 21465.44 1.927861e+07 1.820473e+07 1073876.27 NULL
2019 Police Department Principal Fingerprint Technician 55261.33333 3.315680e+05 3656.25 6.093750e+02 423.285 109.75 6 4.232850e+02 2539.71 3.352242e+05 3.341077e+05 1116.54 NULL
2019 Police Department Principal Police Communication Technician 69984.38235 4.758938e+06 864965.58 1.272008e+04 10405.100 16318.33 68 1.040510e+04 707546.80 5.623904e+06 5.466485e+06 157418.78 NULL
2019 Police Department Printing Press Operator NA NA 213927.93 1.258400e+04 13127.640 3759.75 17 1.258400e+04 213927.93 NA NA NA NULL
2019 Police Department Procurement Analyst 63004.90909 1.386108e+06 145798.11 6.627187e+03 6354.440 3571.42 22 6.354440e+03 139797.68 1.531906e+06 1.525906e+06 6000.43 NULL
2019 Police Department Program Producer 54205.33333 1.626160e+05 5710.17 1.903390e+03 186.480 201.75 3 1.864800e+02 559.44 1.683262e+05 1.631754e+05 5150.73 NULL
2019 Police Department Project Manager 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2019 Police Department Psychologist 75888.96552 2.200780e+06 153759.00 5.302034e+03 3541.780 2719.00 29 3.541780e+03 102711.62 2.354539e+06 2.303492e+06 51047.38 NULL
2019 Police Department Public Health Assistant 32745.25000 1.309810e+05 1681.22 4.203050e+02 79.330 74.00 4 7.933000e+01 317.32 1.326622e+05 1.312983e+05 1363.90 NULL
2019 Police Department Public Records Officer 51180.33333 1.535410e+05 5563.38 1.854460e+03 1975.240 188.25 3 1.854460e+03 5563.38 1.591044e+05 1.591044e+05 0.00 NULL
2019 Police Department Quality Assurance Specialist 56000.00000 5.600000e+04 7134.13 7.134130e+03 7134.130 198.25 1 7.134130e+03 7134.13 6.313413e+04 6.313413e+04 0.00 NULL
2019 Police Department Radio Repair Mechanic NA NA 1269773.88 1.282600e+04 13059.640 16320.83 99 1.282600e+04 1269773.88 NA NA NA NULL
2019 Police Department Research Assistant 64464.00000 6.446400e+04 273.38 2.733800e+02 273.380 0.00 1 2.733800e+02 273.38 6.473738e+04 6.473738e+04 0.00 NULL
2019 Police Department Roofer NA NA 116106.32 2.322126e+04 27564.110 1753.00 5 2.322126e+04 116106.32 NA NA NA NULL
2019 Police Department School Crossing Guard 12302.46782 3.735029e+07 2243.71 7.390349e-01 0.000 147.25 3036 0.000000e+00 0.00 3.735254e+07 3.735029e+07 2243.71 NULL
2019 Police Department School Safety Agent 42406.57728 2.403605e+08 53987796.16 9.525017e+03 8337.120 1638029.09 5668 8.337120e+03 47254796.16 2.943483e+08 2.876153e+08 6733000.00 NULL
2019 Police Department Secretary 50361.46154 1.309398e+06 100608.78 3.869568e+03 386.405 2487.75 26 3.864050e+02 10046.53 1.410007e+06 1.319445e+06 90562.25 NULL
2019 Police Department Secretary To The Commissioner 128087.00000 1.280870e+05 27586.27 2.758627e+04 27586.270 331.00 1 2.758627e+04 27586.27 1.556733e+05 1.556733e+05 0.00 NULL
2019 Police Department Secretary To The First Deputy Commissioner-Pd 108929.00000 1.089290e+05 24761.51 2.476151e+04 24761.510 372.25 1 2.476151e+04 24761.51 1.336905e+05 1.336905e+05 0.00 NULL
2019 Police Department Senior Office Appliance Maintainer 49350.00000 4.935000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.935000e+04 4.935000e+04 0.00 NULL
2019 Police Department Senior Photographer 57745.00000 5.197050e+05 79829.19 8.869910e+03 9315.550 1981.50 9 8.869910e+03 79829.19 5.995342e+05 5.995342e+05 0.00 NULL
2019 Police Department Senior Police Administrative Aide 51621.32492 4.909188e+07 1985420.51 2.087719e+03 0.000 50871.54 951 0.000000e+00 0.00 5.107730e+07 4.909188e+07 1985420.51 NULL
2019 Police Department Senior Stationary Engineer NA NA 177176.37 5.905879e+04 76262.940 1639.25 3 5.905879e+04 177176.37 NA NA NA NULL
2019 Police Department Sergeant- 103538.88410 4.350704e+08 79535503.99 1.892801e+04 16706.805 913954.50 4202 1.670681e+04 70201994.61 5.146059e+08 5.052724e+08 9333509.38 NULL
2019 Police Department Sergeant-D/A Special Assignment 121729.20539 3.615357e+07 8952146.95 3.014191e+04 33432.120 90093.14 297 3.014191e+04 8952146.95 4.510572e+07 4.510572e+07 0.00 NULL
2019 Police Department Sergeant-D/A Supervisor Detective Squad 122335.36761 4.758846e+07 13667961.07 3.513615e+04 40556.910 135318.52 389 3.513615e+04 13667961.07 6.125642e+07 6.125642e+07 0.00 NULL
2019 Police Department Sheet Metal Worker NA NA 323815.81 5.396930e+04 64225.265 2901.50 6 5.396930e+04 323815.81 NA NA NA NULL
2019 Police Department Special Officer 46855.00000 9.371000e+04 8788.72 4.394360e+03 4394.360 258.25 2 4.394360e+03 8788.72 1.024987e+05 1.024987e+05 0.00 NULL
2019 Police Department Staff Analyst 63209.80488 2.591602e+06 98624.76 2.405482e+03 57.940 1992.25 41 5.794000e+01 2375.54 2.690227e+06 2.593978e+06 96249.22 NULL
2019 Police Department Staff Analyst Trainee 46166.00000 2.769960e+05 6037.87 1.006312e+03 0.000 195.25 6 0.000000e+00 0.00 2.830339e+05 2.769960e+05 6037.87 NULL
2019 Police Department Stationary Engineer NA NA 840572.78 6.465944e+04 60730.340 8532.50 13 6.073034e+04 789494.42 NA NA NA NULL
2019 Police Department Steam Fitter NA NA 212492.52 2.656156e+04 29452.500 1828.00 8 2.656156e+04 212492.52 NA NA NA NULL
2019 Police Department Steam Fitter’s Helper NA NA 34113.75 3.411375e+04 34113.750 397.00 1 3.411375e+04 34113.75 NA NA NA NULL
2019 Police Department Stenographer To Each Deputy Commissioner 98131.00000 5.887860e+05 57650.95 9.608492e+03 6375.550 917.75 6 6.375550e+03 38253.30 6.464369e+05 6.270393e+05 19397.65 NULL
2019 Police Department Stenographic Specialist 53817.00000 1.076340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.076340e+05 1.076340e+05 0.00 NULL
2019 Police Department Stock Worker 38877.67568 1.438474e+06 132696.23 3.586385e+03 1486.240 4667.75 37 1.486240e+03 54990.88 1.571170e+06 1.493465e+06 77705.35 NULL
2019 Police Department Summer College Intern 2512.56030 3.341705e+05 0.00 0.000000e+00 0.000 0.00 133 0.000000e+00 0.00 3.341705e+05 3.341705e+05 0.00 NULL
2019 Police Department Summer Graduate Intern 3868.83646 7.737673e+04 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 7.737673e+04 7.737673e+04 0.00 NULL
2019 Police Department Supervising Chief Surgeon 234093.00000 2.340930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.340930e+05 2.340930e+05 0.00 NULL
2019 Police Department Supervising Police Communications Technician 64723.60773 1.171497e+07 1954991.21 1.080106e+04 8237.210 40233.53 181 8.237210e+03 1490935.01 1.366996e+07 1.320591e+07 464056.20 NULL
2019 Police Department Supervisor 74151.50000 2.966060e+05 88986.27 2.224657e+04 17452.330 1531.75 4 1.745233e+04 69809.32 3.855923e+05 3.664153e+05 19176.95 NULL
2019 Police Department Supervisor Carpenter NA NA 106953.55 5.347678e+04 53476.775 1351.50 2 5.347678e+04 106953.55 NA NA NA NULL
2019 Police Department Supervisor Electrician NA NA 218247.06 5.456176e+04 58437.040 2333.50 4 5.456176e+04 218247.06 NA NA NA NULL
2019 Police Department Supervisor Elevator Mechanic NA NA 55817.19 5.581719e+04 55817.190 658.00 1 5.581719e+04 55817.19 NA NA NA NULL
2019 Police Department Supervisor Glazier NA NA 71707.90 7.170790e+04 71707.900 775.00 1 7.170790e+04 71707.90 NA NA NA NULL
2019 Police Department Supervisor Locksmith NA NA 801.22 8.012200e+02 801.220 10.00 1 8.012200e+02 801.22 NA NA NA NULL
2019 Police Department Supervisor Of Mechanical Installations & Maintenance 81703.00000 8.170300e+04 25784.87 2.578487e+04 25784.870 410.25 1 2.578487e+04 25784.87 1.074879e+05 1.074879e+05 0.00 NULL
2019 Police Department Supervisor Of Mechanics 123185.30508 7.267933e+06 734132.86 1.244293e+04 12467.920 7720.50 59 1.244293e+04 734132.86 8.002066e+06 8.002066e+06 0.00 NULL
2019 Police Department Supervisor Of Office Machine Operations 51493.00000 5.149300e+04 30762.15 3.076215e+04 30762.150 729.00 1 3.076215e+04 30762.15 8.225515e+04 8.225515e+04 0.00 NULL
2019 Police Department Supervisor Of School Security 69180.67785 1.030792e+07 1735923.91 1.165050e+04 11410.750 32935.00 149 1.141075e+04 1700201.75 1.204384e+07 1.200812e+07 35722.16 NULL
2019 Police Department Supervisor Of Stock Workers 53265.66667 3.195940e+05 38563.36 6.427227e+03 3507.535 968.00 6 3.507535e+03 21045.21 3.581574e+05 3.406392e+05 17518.15 NULL
2019 Police Department Supervisor Painter NA NA 61037.28 3.051864e+04 30518.640 822.00 2 3.051864e+04 61037.28 NA NA NA NULL
2019 Police Department Supervisor Plumber NA NA 116213.47 5.810674e+04 58106.735 1000.50 2 5.810674e+04 116213.47 NA NA NA NULL
2019 Police Department Supervisor Roofer NA NA 41118.66 4.111866e+04 41118.660 605.00 1 4.111866e+04 41118.66 NA NA NA NULL
2019 Police Department Supervisor Sheet Metal Worker NA NA 74608.32 7.460832e+04 74608.320 648.00 1 7.460832e+04 74608.32 NA NA NA NULL
2019 Police Department Supervisor Steamfitter NA NA 75354.00 7.535400e+04 75354.000 619.50 1 7.535400e+04 75354.00 NA NA NA NULL
2019 Police Department Supervisor Thermostat Repair NA NA 40870.05 4.087005e+04 40870.050 355.50 1 4.087005e+04 40870.05 NA NA NA NULL
2019 Police Department Surgeon Detailed As Deputy Chief Surgeon 147809.50000 2.956190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.956190e+05 2.956190e+05 0.00 NULL
2019 Police Department Telecommunications Associate 77217.64286 1.081047e+06 132655.51 9.475394e+03 8048.835 2359.75 14 8.048835e+03 112683.69 1.213703e+06 1.193731e+06 19971.82 NULL
2019 Police Department Telephone Service Technician 72855.00000 2.185650e+05 34377.42 1.145914e+04 9930.030 689.25 3 9.930030e+03 29790.09 2.529424e+05 2.483551e+05 4587.33 NULL
2019 Police Department Tests And Measurement Specialist 91229.00000 9.122900e+04 3982.69 3.982690e+03 3982.690 64.00 1 3.982690e+03 3982.69 9.521169e+04 9.521169e+04 0.00 NULL
2019 Police Department Thermostat Repairer NA NA 275098.00 3.056644e+04 35364.850 2578.25 9 3.056644e+04 275098.00 NA NA NA NULL
2019 Police Department Traffic Enforc Agent-L 3 & 4 Only 45504.22115 1.419732e+07 4214843.91 1.350912e+04 14053.495 110726.72 312 1.350912e+04 4214843.91 1.841216e+07 1.841216e+07 0.00 NULL
2019 Police Department Traffic Enforcement Agent Al 1 & 2 Only 40056.79664 1.144423e+08 27447612.21 9.607145e+03 8074.810 886683.22 2857 8.074810e+03 23069732.17 1.418899e+08 1.375120e+08 4377880.04 NULL
2019 Police Department Welder NA NA 59723.88 5.972388e+04 59723.880 614.25 1 5.972388e+04 59723.88 NA NA NA NULL
2019 Public Administrator-Bronx Community Associate 47241.50000 2.834490e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.834490e+05 2.834490e+05 0.00 NULL
2019 Public Administrator-Bronx Decedent Property Agent 50054.00000 1.001080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.001080e+05 1.001080e+05 0.00 NULL
2019 Public Administrator-Bronx Deputy Public Administator 126540.00000 1.265400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.265400e+05 1.265400e+05 0.00 NULL
2019 Public Administrator-Bronx Principal Administrative Associate - Lev 1 & 2 Non Supvr 71794.00000 7.179400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.179400e+04 7.179400e+04 0.00 NULL
2019 Public Administrator-Bronx Public Administrator 189810.00000 1.898100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.898100e+05 1.898100e+05 0.00 NULL
2019 Public Administrator-Kings Community Assistant 36682.00000 7.336400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.336400e+04 7.336400e+04 0.00 NULL
2019 Public Administrator-Kings Community Associate 39340.74833 2.360445e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.360445e+05 2.360445e+05 0.00 NULL
2019 Public Administrator-Kings Community Coordinator 59811.00000 1.196220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.196220e+05 1.196220e+05 0.00 NULL
2019 Public Administrator-Kings Decedent Property Agent 49366.25000 1.974650e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.974650e+05 1.974650e+05 0.00 NULL
2019 Public Administrator-Kings Deputy Public Administator 126540.00000 1.265400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.265400e+05 1.265400e+05 0.00 NULL
2019 Public Administrator-Kings Public Administrator 189810.00000 1.898100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.898100e+05 1.898100e+05 0.00 NULL
2019 Public Administrator-New York Accountant 64004.00000 6.400400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.400400e+04 6.400400e+04 0.00 NULL
2019 Public Administrator-New York Clerical Associate 43821.00000 1.314630e+05 2068.17 6.893900e+02 0.000 157.50 3 0.000000e+00 0.00 1.335312e+05 1.314630e+05 2068.17 NULL
2019 Public Administrator-New York Decedent Property Agent 43848.83333 2.630930e+05 1359.18 2.265300e+02 0.000 119.25 6 0.000000e+00 0.00 2.644522e+05 2.630930e+05 1359.18 NULL
2019 Public Administrator-New York Deputy Public Administator 126540.00000 1.265400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.265400e+05 1.265400e+05 0.00 NULL
2019 Public Administrator-New York Principal Administrative Associate - Lev 1 & 2 Non Supvr 62834.00000 6.283400e+04 0.00 0.000000e+00 0.000 21.00 1 0.000000e+00 0.00 6.283400e+04 6.283400e+04 0.00 NULL
2019 Public Administrator-New York Public Administrator 189810.00000 1.898100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.898100e+05 1.898100e+05 0.00 NULL
2019 Public Administrator-Queens Decedent Property Agent 44978.00000 2.248900e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.248900e+05 2.248900e+05 0.00 NULL
2019 Public Administrator-Queens Deputy Public Administator 126540.00000 1.265400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.265400e+05 1.265400e+05 0.00 NULL
2019 Public Administrator-Queens Public Administrator 189810.00000 1.898100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.898100e+05 1.898100e+05 0.00 NULL
2019 Public Administrator-Queens Secretary 36677.00000 3.667700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.667700e+04 3.667700e+04 0.00 NULL
2019 Public Administrator-Richmond Community Coordinator 70298.00000 7.029800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.029800e+04 7.029800e+04 0.00 NULL
2019 Public Administrator-Richmond Deputy Public Administator 124800.00000 2.496000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.496000e+05 2.496000e+05 0.00 NULL
2019 Public Administrator-Richmond Public Administrator 187200.00000 3.744000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.744000e+05 3.744000e+05 0.00 NULL
2019 Public Administrator-Richmond Secretary To Public Administrator 73873.33333 2.216200e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.216200e+05 2.216200e+05 0.00 NULL
2019 Public Advocate Assistant To The Public Advocate 24441.20580 1.564237e+06 0.00 0.000000e+00 0.000 0.00 64 0.000000e+00 0.00 1.564237e+06 1.564237e+06 0.00 NULL
2019 Public Advocate Counsel To The Public Advocate 112042.48750 4.481700e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.481700e+05 4.481700e+05 0.00 NULL
2019 Public Advocate Director Of Communications 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2019 Public Advocate Director Of The Ombudsman Program 90670.70750 3.626828e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.626828e+05 3.626828e+05 0.00 NULL
2019 Public Advocate Executive Assistant And Counsel To The Public Advocate 99080.25000 9.908025e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.908025e+04 9.908025e+04 0.00 NULL
2019 Public Advocate Executive Secretary To The Public Advocate 61350.00000 6.135000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.135000e+04 6.135000e+04 0.00 NULL
2019 Public Advocate First Assistant To The Public Advocate 137449.25000 5.497970e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.497970e+05 5.497970e+05 0.00 NULL
2019 Public Advocate Legislative Attorney 81544.38000 8.154438e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.154438e+04 8.154438e+04 0.00 NULL
2019 Public Advocate Legislative Information Officer 104556.25000 4.182250e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.182250e+05 4.182250e+05 0.00 NULL
2019 Public Advocate Office Assistant 39002.52920 7.800506e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.800506e+04 7.800506e+04 0.00 NULL
2019 Public Advocate Office Manager 75255.01750 6.020401e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.020401e+05 6.020401e+05 0.00 NULL
2019 Public Advocate Principal Investigator 68573.97000 6.857397e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.857397e+04 6.857397e+04 0.00 NULL
2019 Public Advocate Program Research Analyst To The Public Advocate 56930.24500 1.138605e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.138605e+05 1.138605e+05 0.00 NULL
2019 Public Advocate Public Advocate 184800.00000 3.696000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.696000e+05 3.696000e+05 0.00 NULL
2019 Public Advocate Special Assistant 55000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2019 Public Advocate Summer College Intern 695.70000 6.957000e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.957000e+02 6.957000e+02 0.00 NULL
2019 Public Service Corps College Aide 2874.77337 6.611979e+05 0.00 0.000000e+00 0.000 0.00 230 0.000000e+00 0.00 6.611979e+05 6.611979e+05 0.00 NULL
2019 Queens Community Board #1 Community Assistant 33194.00000 3.319400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.319400e+04 3.319400e+04 0.00 NULL
2019 Queens Community Board #1 Community Service Aide 13575.99000 2.715198e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.715198e+04 2.715198e+04 0.00 NULL
2019 Queens Community Board #1 District Manager 100154.00000 1.001540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.001540e+05 1.001540e+05 0.00 NULL
2019 Queens Community Board #10 Community Associate 47173.50000 9.434700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.434700e+04 9.434700e+04 0.00 NULL
2019 Queens Community Board #10 Community Coordinator 5793.38730 5.793387e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.793387e+03 5.793387e+03 0.00 NULL
2019 Queens Community Board #10 District Manager 98188.00000 9.818800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.818800e+04 9.818800e+04 0.00 NULL
2019 Queens Community Board #11 Community Associate 51816.00000 5.181600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.181600e+04 5.181600e+04 0.00 NULL
2019 Queens Community Board #11 Community Coordinator 67987.00000 6.798700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.798700e+04 6.798700e+04 0.00 NULL
2019 Queens Community Board #11 District Manager 79751.00000 7.975100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.975100e+04 7.975100e+04 0.00 NULL
2019 Queens Community Board #12 Community Assistant 38056.00000 7.611200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.611200e+04 7.611200e+04 0.00 NULL
2019 Queens Community Board #12 Community Service Aide 20666.00000 2.066600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.066600e+04 2.066600e+04 0.00 NULL
2019 Queens Community Board #12 District Manager 115991.00000 1.159910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.159910e+05 1.159910e+05 0.00 NULL
2019 Queens Community Board #13 Community Assistant 40000.00000 4.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.000000e+04 4.000000e+04 0.00 NULL
2019 Queens Community Board #13 Community Coordinator 69369.00000 6.936900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.936900e+04 6.936900e+04 0.00 NULL
2019 Queens Community Board #13 District Manager 107930.00000 1.079300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.079300e+05 1.079300e+05 0.00 NULL
2019 Queens Community Board #14 Community Coordinator 73814.00000 7.381400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.381400e+04 7.381400e+04 0.00 NULL
2019 Queens Community Board #14 Community Service Aide 21236.00000 6.370800e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.370800e+04 6.370800e+04 0.00 NULL
2019 Queens Community Board #14 District Manager 133893.00000 1.338930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.338930e+05 1.338930e+05 0.00 NULL
2019 Queens Community Board #2 Community Assistant 36852.00000 3.685200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.685200e+04 3.685200e+04 0.00 NULL
2019 Queens Community Board #2 Community Associate 59664.00000 5.966400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.966400e+04 5.966400e+04 0.00 NULL
2019 Queens Community Board #2 Community Service Aide 18490.36100 1.849036e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.849036e+04 1.849036e+04 0.00 NULL
2019 Queens Community Board #2 District Manager 106877.00000 1.068770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.068770e+05 1.068770e+05 0.00 NULL
2019 Queens Community Board #3 Community Associate 50532.00000 5.053200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.053200e+04 5.053200e+04 0.00 NULL
2019 Queens Community Board #3 Community Service Aide 25434.00000 5.086800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.086800e+04 5.086800e+04 0.00 NULL
2019 Queens Community Board #3 District Manager 107182.00000 1.071820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.071820e+05 1.071820e+05 0.00 NULL
2019 Queens Community Board #4 Community Assistant 40962.00000 4.096200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.096200e+04 4.096200e+04 0.00 NULL
2019 Queens Community Board #4 Community Coordinator 81594.00000 8.159400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.159400e+04 8.159400e+04 0.00 NULL
2019 Queens Community Board #4 District Manager 100686.00000 1.006860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.006860e+05 1.006860e+05 0.00 NULL
2019 Queens Community Board #5 Community Associate 42499.32127 1.274980e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.274980e+05 1.274980e+05 0.00 NULL
2019 Queens Community Board #5 District Manager 96294.00000 9.629400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.629400e+04 9.629400e+04 0.00 NULL
2019 Queens Community Board #6 Community Coordinator 63219.00000 6.321900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.321900e+04 6.321900e+04 0.00 NULL
2019 Queens Community Board #6 Community Service Aide 24936.00000 4.987200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.987200e+04 4.987200e+04 0.00 NULL
2019 Queens Community Board #6 District Manager 110017.00000 1.100170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100170e+05 1.100170e+05 0.00 NULL
2019 Queens Community Board #7 Community Assistant 24690.78640 2.469079e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.469079e+04 2.469079e+04 0.00 NULL
2019 Queens Community Board #7 Community Associate 46154.00000 4.615400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.615400e+04 4.615400e+04 0.00 NULL
2019 Queens Community Board #7 Community Service Aide 22369.00000 4.473800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.473800e+04 4.473800e+04 0.00 NULL
2019 Queens Community Board #7 District Manager 88890.00000 8.889000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.889000e+04 8.889000e+04 0.00 NULL
2019 Queens Community Board #8 Community Assistant 32931.00000 6.586200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.586200e+04 6.586200e+04 0.00 NULL
2019 Queens Community Board #8 Community Associate 45144.50000 9.028900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.028900e+04 9.028900e+04 0.00 NULL
2019 Queens Community Board #8 District Manager 123108.00000 1.231080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.231080e+05 1.231080e+05 0.00 NULL
2019 Queens Community Board #9 Community Assistant 38392.00000 3.839200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.839200e+04 3.839200e+04 0.00 NULL
2019 Queens Community Board #9 Community Associate 46031.00000 4.603100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.603100e+04 4.603100e+04 0.00 NULL
2019 Queens Community Board #9 Community Service Aide 20734.00000 2.073400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.073400e+04 2.073400e+04 0.00 NULL
2019 Queens Community Board #9 District Manager 69512.50000 1.390250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.390250e+05 1.390250e+05 0.00 NULL
2019 Staten Island Community Bd #1 Community Associate 51750.00000 5.175000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.175000e+04 5.175000e+04 0.00 NULL
2019 Staten Island Community Bd #1 Community Coordinator 69586.00000 6.958600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.958600e+04 6.958600e+04 0.00 NULL
2019 Staten Island Community Bd #1 District Manager 95177.44000 9.517744e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.517744e+04 9.517744e+04 0.00 NULL
2019 Staten Island Community Bd #2 Community Assistant 24033.25470 2.403325e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.403325e+04 2.403325e+04 0.00 NULL
2019 Staten Island Community Bd #2 Community Associate 7041.06000 7.041060e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.041060e+03 7.041060e+03 0.00 NULL
2019 Staten Island Community Bd #2 Community Coordinator 4173.83530 8.347671e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.347671e+03 8.347671e+03 0.00 NULL
2019 Staten Island Community Bd #2 District Manager 105690.52000 1.056905e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.056905e+05 1.056905e+05 0.00 NULL
2019 Staten Island Community Bd #3 Community Coordinator 60660.00000 1.213200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.213200e+05 1.213200e+05 0.00 NULL
2019 Staten Island Community Bd #3 District Manager 101166.15000 1.011661e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.011661e+05 1.011661e+05 0.00 NULL
2019 Tax Commission Adm Manager-Non-Mgrl From M1/M2 77800.00000 1.556000e+05 5775.53 2.887765e+03 2887.765 110.50 2 2.887765e+03 5775.53 1.613755e+05 1.613755e+05 0.00 NULL
2019 Tax Commission Administrative Assessor 143406.00000 1.434060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.434060e+05 1.434060e+05 0.00 NULL
2019 Tax Commission Administrative Attorney 152386.00000 1.523860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.523860e+05 1.523860e+05 0.00 NULL
2019 Tax Commission Agency Attorney 81472.12500 4.073606e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.073606e+05 4.073606e+05 0.00 NULL
2019 Tax Commission Assistant City Assessor 40119.00000 4.011900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.011900e+04 4.011900e+04 0.00 NULL
2019 Tax Commission Assistant Counsel 141757.00000 1.417570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.417570e+05 1.417570e+05 0.00 NULL
2019 Tax Commission Associate Staff Analyst 102326.00000 1.023260e+05 8855.64 8.855640e+03 8855.640 171.00 1 8.855640e+03 8855.64 1.111816e+05 1.111816e+05 0.00 NULL
2019 Tax Commission Certified Database Administrator 101022.00000 1.010220e+05 1964.31 1.964310e+03 1964.310 23.00 1 1.964310e+03 1964.31 1.029863e+05 1.029863e+05 0.00 NULL
2019 Tax Commission City Assessor 90985.50000 1.455768e+06 119910.04 7.494377e+03 7519.070 1719.25 16 7.494377e+03 119910.04 1.575678e+06 1.575678e+06 0.00 NULL
2019 Tax Commission College Aide 21474.07812 1.717926e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.717926e+05 1.717926e+05 0.00 NULL
2019 Tax Commission Commissioner 81618.00000 4.897080e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.897080e+05 4.897080e+05 0.00 NULL
2019 Tax Commission Community Assistant 10001.00000 1.000100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000100e+04 1.000100e+04 0.00 NULL
2019 Tax Commission Computer Associate 77670.66667 2.330120e+05 129.88 4.329333e+01 45.330 1.00 3 4.329333e+01 129.88 2.331419e+05 2.331419e+05 0.00 NULL
2019 Tax Commission Computer Specialist 113394.00000 1.133940e+05 8597.48 8.597480e+03 8597.480 89.25 1 8.597480e+03 8597.48 1.219915e+05 1.219915e+05 0.00 NULL
2019 Tax Commission Computer Systems Manager 173825.00000 1.738250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.738250e+05 1.738250e+05 0.00 NULL
2019 Tax Commission Executive Agency Counsel 156920.00000 1.569200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.569200e+05 1.569200e+05 0.00 NULL
2019 Tax Commission Executive Assistant To The President Of The Tax Commission 143406.00000 1.434060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.434060e+05 1.434060e+05 0.00 NULL
2019 Tax Commission President 221151.00000 2.211510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.211510e+05 2.211510e+05 0.00 NULL
2019 Tax Commission Principal Administrative Associate - Lev 1 & 2 Non Supvr 66945.00000 3.347250e+05 53.09 1.061800e+01 0.000 1.50 5 0.000000e+00 0.00 3.347781e+05 3.347250e+05 53.09 NULL
2019 Tax Commission Secretary 68305.00000 1.366100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.366100e+05 1.366100e+05 0.00 NULL
2019 Tax Commission Secretary Of The Tax Commission 61853.00000 6.185300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.185300e+04 6.185300e+04 0.00 NULL
2019 Tax Commission Secretary To The President 82000.00000 8.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.200000e+04 8.200000e+04 0.00 NULL
2019 Tax Commission Special Assistant 158488.00000 1.584880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.584880e+05 1.584880e+05 0.00 NULL
2019 Tax Commission Summer College Intern 1883.25000 1.883250e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.883250e+03 1.883250e+03 0.00 NULL
2019 Taxi & Limousine Commission Accountant 75574.50000 3.022980e+05 49.86 1.246500e+01 0.000 1.00 4 0.000000e+00 0.00 3.023479e+05 3.022980e+05 49.86 NULL
2019 Taxi & Limousine Commission Adm Manager-Non-Mgrl From M1/M2 75407.28571 5.278510e+05 5508.93 7.869900e+02 0.000 150.75 7 0.000000e+00 0.00 5.333599e+05 5.278510e+05 5508.93 NULL
2019 Taxi & Limousine Commission Admin Community Relations Specialist 83690.50000 1.673810e+05 1466.04 7.330200e+02 733.020 16.25 2 7.330200e+02 1466.04 1.688470e+05 1.688470e+05 0.00 NULL
2019 Taxi & Limousine Commission Administratiive Taxi & Limousine Inspector 117129.66667 1.756945e+06 20956.65 1.397110e+03 0.000 468.25 15 0.000000e+00 0.00 1.777902e+06 1.756945e+06 20956.65 NULL
2019 Taxi & Limousine Commission Administrative Accountant 112795.00000 1.127950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.127950e+05 1.127950e+05 0.00 NULL
2019 Taxi & Limousine Commission Administrative City Planner 135579.00000 2.711580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.711580e+05 2.711580e+05 0.00 NULL
2019 Taxi & Limousine Commission Administrative Manager 140660.00000 1.406600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.406600e+05 1.406600e+05 0.00 NULL
2019 Taxi & Limousine Commission Administrative Project Manager 102843.00000 1.028430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.028430e+05 1.028430e+05 0.00 NULL
2019 Taxi & Limousine Commission Administrative Public Information Specialist 177203.00000 1.772030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.772030e+05 1.772030e+05 0.00 NULL
2019 Taxi & Limousine Commission Administrative Quality Assurance Specialist 189163.00000 1.891630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.891630e+05 1.891630e+05 0.00 NULL
2019 Taxi & Limousine Commission Administrative Staff Analyst 129833.00000 1.168497e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.168497e+06 1.168497e+06 0.00 NULL
2019 Taxi & Limousine Commission Agency Attorney 71810.25000 3.734133e+06 33349.10 6.413288e+02 0.000 731.00 52 0.000000e+00 0.00 3.767482e+06 3.734133e+06 33349.10 NULL
2019 Taxi & Limousine Commission Agency Attorney Interne 60100.50000 2.404020e+05 79.30 1.982500e+01 0.000 2.50 4 0.000000e+00 0.00 2.404813e+05 2.404020e+05 79.30 NULL
2019 Taxi & Limousine Commission Associate Contract Specialist 74643.00000 7.464300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.464300e+04 7.464300e+04 0.00 NULL
2019 Taxi & Limousine Commission Associate Staff Analyst 81000.00000 8.100000e+04 121.92 1.219200e+02 121.920 2.75 1 1.219200e+02 121.92 8.112192e+04 8.112192e+04 0.00 NULL
2019 Taxi & Limousine Commission Associate Taxi & Limousine Inspector 55464.82540 3.494284e+06 438913.39 6.966879e+03 5579.970 11657.00 63 5.579970e+03 351538.11 3.933197e+06 3.845822e+06 87375.28 NULL
2019 Taxi & Limousine Commission Cashier 40141.40659 4.415555e+05 1018.07 9.255182e+01 1.200 33.50 11 1.200000e+00 13.20 4.425735e+05 4.415687e+05 1004.87 NULL
2019 Taxi & Limousine Commission Certified Database Administrator 98116.00000 9.811600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.811600e+04 9.811600e+04 0.00 NULL
2019 Taxi & Limousine Commission Certified It Administrator 110490.00000 6.629400e+05 2688.37 4.480617e+02 0.000 31.25 6 0.000000e+00 0.00 6.656284e+05 6.629400e+05 2688.37 NULL
2019 Taxi & Limousine Commission Certified It Developer 87520.07000 8.752007e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.752007e+04 8.752007e+04 0.00 NULL
2019 Taxi & Limousine Commission Chairman 221151.00000 2.211510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.211510e+05 2.211510e+05 0.00 NULL
2019 Taxi & Limousine Commission City Research Scientist 85000.00000 8.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.500000e+04 8.500000e+04 0.00 NULL
2019 Taxi & Limousine Commission Clerical Aide 34235.00000 6.847000e+04 11.14 5.570000e+00 5.570 0.00 2 5.570000e+00 11.14 6.848114e+04 6.848114e+04 0.00 NULL
2019 Taxi & Limousine Commission Clerical Associate 43786.53552 1.576315e+06 24919.79 6.922164e+02 0.000 830.00 36 0.000000e+00 0.00 1.601235e+06 1.576315e+06 24919.79 NULL
2019 Taxi & Limousine Commission College Aide 6871.77787 1.030767e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.030767e+05 1.030767e+05 0.00 NULL
2019 Taxi & Limousine Commission Community Assistant 30490.66412 1.433061e+06 13857.18 2.948336e+02 1.150 599.50 47 1.150000e+00 54.05 1.446918e+06 1.433115e+06 13803.13 NULL
2019 Taxi & Limousine Commission Community Associate 43582.18079 4.401800e+06 70746.22 7.004576e+02 0.000 2284.75 101 0.000000e+00 0.00 4.472546e+06 4.401800e+06 70746.22 NULL
2019 Taxi & Limousine Commission Community Coordinator 64451.15909 2.835851e+06 7637.73 1.735848e+02 0.000 250.75 44 0.000000e+00 0.00 2.843489e+06 2.835851e+06 7637.73 NULL
2019 Taxi & Limousine Commission Computer Aide-Non-Spvr 44354.05300 2.217703e+05 4807.02 9.614040e+02 0.000 141.00 5 0.000000e+00 0.00 2.265773e+05 2.217703e+05 4807.02 NULL
2019 Taxi & Limousine Commission Computer Associate 80718.15062 4.843089e+05 16771.79 2.795298e+03 2730.670 528.00 6 2.730670e+03 16384.02 5.010807e+05 5.006929e+05 387.77 NULL
2019 Taxi & Limousine Commission Computer Operations Manager 144000.00000 2.880000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.880000e+05 2.880000e+05 0.00 NULL
2019 Taxi & Limousine Commission Computer Specialist 101453.46667 1.521802e+06 3795.65 2.530433e+02 0.000 53.25 15 0.000000e+00 0.00 1.525598e+06 1.521802e+06 3795.65 NULL
2019 Taxi & Limousine Commission Computer Systems Manager 133813.66667 8.028820e+05 1067.89 1.779817e+02 0.000 13.00 6 0.000000e+00 0.00 8.039499e+05 8.028820e+05 1067.89 NULL
2019 Taxi & Limousine Commission Customer Information Representative Ma L 1549 43456.00000 4.345600e+04 9.76 9.760000e+00 9.760 0.00 1 9.760000e+00 9.76 4.346576e+04 4.346576e+04 0.00 NULL
2019 Taxi & Limousine Commission Economist 52524.00000 5.252400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.252400e+04 5.252400e+04 0.00 NULL
2019 Taxi & Limousine Commission Executive Agency Counsel 125841.63636 1.384258e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.384258e+06 1.384258e+06 0.00 NULL
2019 Taxi & Limousine Commission Executive Assistant 96860.00000 9.686000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.686000e+04 9.686000e+04 0.00 NULL
2019 Taxi & Limousine Commission First Deputy Commissioner General Counsel 148503.00000 1.485030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.485030e+05 1.485030e+05 0.00 NULL
2019 Taxi & Limousine Commission Investigator 62126.00000 1.242520e+05 1938.49 9.692450e+02 969.245 44.50 2 9.692450e+02 1938.49 1.261905e+05 1.261905e+05 0.00 NULL
2019 Taxi & Limousine Commission Maintenance Worker NA NA 9922.23 3.307410e+03 4003.990 249.00 3 3.307410e+03 9922.23 NA NA NA NULL
2019 Taxi & Limousine Commission Operations Communications Specialist 22832.71596 3.196580e+05 5274.09 3.767207e+02 24.065 221.00 14 2.406500e+01 336.91 3.249321e+05 3.199949e+05 4937.18 NULL
2019 Taxi & Limousine Commission Principal Administrative Associate - Lev 1 & 2 Non Supvr 61153.14750 1.467676e+06 40239.09 1.676629e+03 11.980 961.75 24 1.198000e+01 287.52 1.507915e+06 1.467963e+06 39951.57 NULL
2019 Taxi & Limousine Commission Procurement Analyst 80780.00000 8.078000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.078000e+04 8.078000e+04 0.00 NULL
2019 Taxi & Limousine Commission Secretary 37025.00000 3.702500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.702500e+04 3.702500e+04 0.00 NULL
2019 Taxi & Limousine Commission Staff Analyst 50597.01853 1.517911e+05 149.59 4.986333e+01 0.000 4.25 3 0.000000e+00 0.00 1.519406e+05 1.517911e+05 149.59 NULL
2019 Taxi & Limousine Commission Staff Analyst Trainee 39237.00000 3.923700e+04 53.69 5.369000e+01 53.690 2.50 1 5.369000e+01 53.69 3.929069e+04 3.929069e+04 0.00 NULL
2019 Taxi & Limousine Commission Stock Worker 31142.00000 3.114200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.114200e+04 3.114200e+04 0.00 NULL
2019 Taxi & Limousine Commission Summer College Intern 4128.97222 3.716075e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 3.716075e+04 3.716075e+04 0.00 NULL
2019 Taxi & Limousine Commission Summer Graduate Intern 2761.48350 1.380742e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.380742e+04 1.380742e+04 0.00 NULL
2019 Taxi & Limousine Commission Supervisor Of Stock Workers 50463.12817 1.513894e+05 6389.22 2.129740e+03 2558.090 204.50 3 2.129740e+03 6389.22 1.577786e+05 1.577786e+05 0.00 NULL
2019 Taxi & Limousine Commission Taxi And Limousine Inspector 41111.64683 1.036014e+07 787273.97 3.124103e+03 937.545 27231.69 252 9.375450e+02 236261.34 1.114741e+07 1.059640e+07 551012.63 NULL
2019 Taxi & Limousine Commission Telecommunications Associate 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2019 Teachers Retirement System Accountant 68300.25000 5.464020e+05 33019.76 4.127470e+03 2064.995 624.50 8 2.064995e+03 16519.96 5.794218e+05 5.629220e+05 16499.80 NULL
2019 Teachers Retirement System Adm Manager-Non-Mgrl From M1/M2 77524.33333 4.651460e+05 15548.39 2.591398e+03 0.000 293.75 6 0.000000e+00 0.00 4.806944e+05 4.651460e+05 15548.39 NULL
2019 Teachers Retirement System Administrative Accountant 88923.80000 4.446190e+05 3033.40 6.066800e+02 0.000 75.75 5 0.000000e+00 0.00 4.476524e+05 4.446190e+05 3033.40 NULL
2019 Teachers Retirement System Administrative Community Relations Specialist 95194.00000 9.519400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.519400e+04 9.519400e+04 0.00 NULL
2019 Teachers Retirement System Administrative Labor Relations Analyst 124118.00000 1.241180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.241180e+05 1.241180e+05 0.00 NULL
2019 Teachers Retirement System Administrative Management Auditor 137814.50000 2.756290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.756290e+05 2.756290e+05 0.00 NULL
2019 Teachers Retirement System Administrative Manager 104837.75000 8.387020e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.387020e+05 8.387020e+05 0.00 NULL
2019 Teachers Retirement System Administrative Project Manager 158375.00000 1.583750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.583750e+05 1.583750e+05 0.00 NULL
2019 Teachers Retirement System Administrative Public Information Specialist 99550.00000 9.955000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.955000e+04 9.955000e+04 0.00 NULL
2019 Teachers Retirement System Administrative Retirement Benefits Specialist 109882.18182 2.417408e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 2.417408e+06 2.417408e+06 0.00 NULL
2019 Teachers Retirement System Administrative Retirements Benefits Specialist 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2019 Teachers Retirement System Administrative Staff Analyst 94948.85714 1.329284e+06 25027.36 1.787669e+03 0.000 484.25 14 0.000000e+00 0.00 1.354311e+06 1.329284e+06 25027.36 NULL
2019 Teachers Retirement System Agency Attorney 88622.50000 3.544900e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.544900e+05 3.544900e+05 0.00 NULL
2019 Teachers Retirement System Assistant Executive Director 179040.33333 5.371210e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.371210e+05 5.371210e+05 0.00 NULL
2019 Teachers Retirement System Assistant Retirement Benefits Examiner 52958.88889 4.766300e+05 26653.93 2.961548e+03 3263.340 831.75 9 2.961548e+03 26653.93 5.032839e+05 5.032839e+05 0.00 NULL
2019 Teachers Retirement System Associate Public Information Specialist 50763.00000 5.076300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.076300e+04 5.076300e+04 0.00 NULL
2019 Teachers Retirement System Associate Public Records Officer 69530.00000 6.953000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.953000e+04 6.953000e+04 0.00 NULL
2019 Teachers Retirement System Associate Retirement Benefits Examiner 61684.01786 6.908610e+06 250389.22 2.235618e+03 0.000 5881.25 112 0.000000e+00 0.00 7.158999e+06 6.908610e+06 250389.22 NULL
2019 Teachers Retirement System Associate Staff Analyst 79463.50000 3.178540e+05 12380.13 3.095032e+03 2337.970 243.25 4 2.337970e+03 9351.88 3.302341e+05 3.272059e+05 3028.25 NULL
2019 Teachers Retirement System Bookkeeper 53231.71429 3.726220e+05 1609.47 2.299243e+02 0.000 44.75 7 0.000000e+00 0.00 3.742315e+05 3.726220e+05 1609.47 NULL
2019 Teachers Retirement System Certified It Administrator 98645.00000 9.864500e+04 2121.51 2.121510e+03 2121.510 31.75 1 2.121510e+03 2121.51 1.007665e+05 1.007665e+05 0.00 NULL
2019 Teachers Retirement System Certified It Developer 121671.00000 1.216710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.216710e+05 1.216710e+05 0.00 NULL
2019 Teachers Retirement System Clerical Associate 50430.88235 8.573250e+05 585.08 3.441647e+01 0.000 11.00 17 0.000000e+00 0.00 8.579101e+05 8.573250e+05 585.08 NULL
2019 Teachers Retirement System College Aide 12604.80469 1.008384e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.008384e+05 1.008384e+05 0.00 NULL
2019 Teachers Retirement System College Aide - Assignment Levels Ii And Iii 19891.88600 9.945943e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.945943e+04 9.945943e+04 0.00 NULL
2019 Teachers Retirement System Community Associate 47166.00000 4.716600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.716600e+04 4.716600e+04 0.00 NULL
2019 Teachers Retirement System Computer Associate 67168.40000 6.716840e+05 8461.56 8.461560e+02 0.000 155.75 10 0.000000e+00 0.00 6.801456e+05 6.716840e+05 8461.56 NULL
2019 Teachers Retirement System Computer Operations Manager 121582.50000 2.431650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.431650e+05 2.431650e+05 0.00 NULL
2019 Teachers Retirement System Computer Programmer Analyst 81301.00000 8.130100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.130100e+04 8.130100e+04 0.00 NULL
2019 Teachers Retirement System Computer Specialist 108058.68966 3.133702e+06 15817.93 5.454459e+02 0.000 218.00 29 0.000000e+00 0.00 3.149520e+06 3.133702e+06 15817.93 NULL
2019 Teachers Retirement System Computer Systems Manager 152473.72222 8.233581e+06 66.08 1.223704e+00 0.000 0.00 54 0.000000e+00 0.00 8.233647e+06 8.233581e+06 66.08 NULL
2019 Teachers Retirement System Customer Information Representative Ma L 1549 59755.15385 7.768170e+05 3900.15 3.000115e+02 0.000 125.00 13 0.000000e+00 0.00 7.807172e+05 7.768170e+05 3900.15 NULL
2019 Teachers Retirement System Deputy Executive Director 219808.00000 2.198080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.198080e+05 2.198080e+05 0.00 NULL
2019 Teachers Retirement System Executive Agency Counsel 159869.50000 3.197390e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.197390e+05 3.197390e+05 0.00 NULL
2019 Teachers Retirement System Executive Director 237370.00000 2.373700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.373700e+05 2.373700e+05 0.00 NULL
2019 Teachers Retirement System Graphic Artist 68414.50000 1.368290e+05 4084.10 2.042050e+03 2042.050 102.25 2 2.042050e+03 4084.10 1.409131e+05 1.409131e+05 0.00 NULL
2019 Teachers Retirement System Investment Analyst 81614.66667 2.448440e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.448440e+05 2.448440e+05 0.00 NULL
2019 Teachers Retirement System Labor Relations Analyst Trainee 44214.00000 4.421400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.421400e+04 4.421400e+04 0.00 NULL
2019 Teachers Retirement System Management Auditor 73497.00000 2.204910e+05 22302.58 7.434193e+03 0.000 415.25 3 0.000000e+00 0.00 2.427936e+05 2.204910e+05 22302.58 NULL
2019 Teachers Retirement System Office Machine Aide 46950.20000 2.347510e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.347510e+05 2.347510e+05 0.00 NULL
2019 Teachers Retirement System Paralegal Aide 51606.00000 5.160600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.160600e+04 5.160600e+04 0.00 NULL
2019 Teachers Retirement System Principal Administrative Associate - Lev 1 & 2 Non Supvr 63680.31250 1.018885e+06 19931.78 1.245736e+03 0.000 477.25 16 0.000000e+00 0.00 1.038817e+06 1.018885e+06 19931.78 NULL
2019 Teachers Retirement System Secretary To The Executive Director Of Retirement System 46013.00000 4.601300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.601300e+04 4.601300e+04 0.00 NULL
2019 Teachers Retirement System Staff Analyst 60476.00000 6.047600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.047600e+04 6.047600e+04 0.00 NULL
2019 Teachers Retirement System Staff Analyst Trainee 45123.00000 4.512300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.512300e+04 4.512300e+04 0.00 NULL
2019 Teachers Retirement System Summer College Intern 2697.32102 1.186821e+05 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 1.186821e+05 1.186821e+05 0.00 NULL
2019 Teachers Retirement System Supervisor Of Office Machine Operations 45000.00000 4.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.500000e+04 4.500000e+04 0.00 NULL
2019 Teachers Retirement System Supervisor Of Stock Workers 51377.66667 1.541330e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.541330e+05 1.541330e+05 0.00 NULL
2020 Admin For Children’s Svcs *Attorney At Law 96689.23077 1.256960e+06 22219.71 1.709208e+03 0.000 323.00 13 0.000000e+00 0.00 1.279180e+06 1.256960e+06 22219.71 NULL
2020 Admin For Children’s Svcs *Certified Database Administrator 113393.50000 2.267870e+05 4601.62 2.300810e+03 2300.810 61.75 2 2.300810e+03 4601.62 2.313886e+05 2.313886e+05 0.00 NULL
2020 Admin For Children’s Svcs *Certified Local Area Network Administrator 102606.00000 3.078180e+05 5877.29 1.959097e+03 2232.610 88.75 3 1.959097e+03 5877.29 3.136953e+05 3.136953e+05 0.00 NULL
2020 Admin For Children’s Svcs *Cook 40663.16667 4.879580e+05 37849.43 3.154119e+03 2136.525 1332.87 12 2.136525e+03 25638.30 5.258074e+05 5.135963e+05 12211.13 NULL
2020 Admin For Children’s Svcs *Custodial Assistant 41377.00000 4.137700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.137700e+04 4.137700e+04 0.00 NULL
2020 Admin For Children’s Svcs *Senior Cook 43587.30000 4.358730e+05 54705.50 5.470550e+03 4835.050 1758.75 10 4.835050e+03 48350.50 4.905785e+05 4.842235e+05 6355.00 NULL
2020 Admin For Children’s Svcs Accountant 70125.63636 7.713820e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.713820e+05 7.713820e+05 0.00 NULL
2020 Admin For Children’s Svcs Adm Manager-Non-Mgrl 75958.35294 5.165168e+06 379104.88 5.575072e+03 7.415 6550.25 68 7.415000e+00 504.22 5.544273e+06 5.165672e+06 378600.66 NULL
2020 Admin For Children’s Svcs Admin Community Relations Specialist 84137.09091 2.776524e+06 85871.06 2.602153e+03 0.000 1454.75 33 0.000000e+00 0.00 2.862395e+06 2.776524e+06 85871.06 NULL
2020 Admin For Children’s Svcs Admin Construction Project Manager 123537.00000 1.235370e+05 44947.97 4.494797e+04 44947.970 499.50 1 4.494797e+04 44947.97 1.684850e+05 1.684850e+05 0.00 NULL
2020 Admin For Children’s Svcs Admin Contract Specialist 125154.00000 1.251540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.251540e+05 1.251540e+05 0.00 NULL
2020 Admin For Children’s Svcs Administrative Architect 135301.00000 2.706020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.706020e+05 2.706020e+05 0.00 NULL
2020 Admin For Children’s Svcs Administrative Business Promotion Coordinator 109033.87500 8.722710e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.722710e+05 8.722710e+05 0.00 NULL
2020 Admin For Children’s Svcs Administrative Construction Project Manager 141956.00000 1.419560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.419560e+05 1.419560e+05 0.00 NULL
2020 Admin For Children’s Svcs Administrative Contract Specialist 102495.20000 5.124760e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.124760e+05 5.124760e+05 0.00 NULL
2020 Admin For Children’s Svcs Administrative Director Of Residential Child Care 90591.29730 3.351878e+06 245113.40 6.624686e+03 1493.770 4003.75 37 1.493770e+03 55269.49 3.596991e+06 3.407147e+06 189843.91 NULL
2020 Admin For Children’s Svcs Administrative Director Of Social Services 106168.81060 3.195681e+07 711381.44 2.363393e+03 0.000 11509.50 301 0.000000e+00 0.00 3.266819e+07 3.195681e+07 711381.44 NULL
2020 Admin For Children’s Svcs Administrative Juvenile Counselor 102254.25000 4.090170e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.090170e+05 4.090170e+05 0.00 NULL
2020 Admin For Children’s Svcs Administrative Management Auditor 103793.00000 2.075860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.075860e+05 2.075860e+05 0.00 NULL
2020 Admin For Children’s Svcs Administrative Manager 135530.00000 1.355300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.355300e+05 1.355300e+05 0.00 NULL
2020 Admin For Children’s Svcs Administrative Nutritionist 105078.50000 2.101570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.101570e+05 2.101570e+05 0.00 NULL
2020 Admin For Children’s Svcs Administrative Procurement Analyst-Non-Mgrl 79678.42857 5.577490e+05 2686.84 3.838343e+02 0.000 59.00 7 0.000000e+00 0.00 5.604358e+05 5.577490e+05 2686.84 NULL
2020 Admin For Children’s Svcs Administrative Project Manager 104533.00000 4.181320e+05 162.51 4.062750e+01 0.000 3.00 4 0.000000e+00 0.00 4.182945e+05 4.181320e+05 162.51 NULL
2020 Admin For Children’s Svcs Administrative Public Health Nurse 129819.60000 6.490980e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.490980e+05 6.490980e+05 0.00 NULL
2020 Admin For Children’s Svcs Administrative Public Information Specialist 132165.25000 5.286610e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.286610e+05 5.286610e+05 0.00 NULL
2020 Admin For Children’s Svcs Administrative Staff Analyst 103269.85417 1.487086e+07 154937.13 1.075952e+03 0.000 2218.75 144 0.000000e+00 0.00 1.502580e+07 1.487086e+07 154937.13 NULL
2020 Admin For Children’s Svcs Agency Attorney 83965.17579 2.913592e+07 1258781.24 3.627612e+03 201.460 19508.75 347 2.014600e+02 69906.62 3.039470e+07 2.920582e+07 1188874.62 NULL
2020 Admin For Children’s Svcs Agency Attorney Interne 69842.13043 4.819107e+06 82585.80 1.196896e+03 78.560 1527.75 69 7.856000e+01 5420.64 4.901693e+06 4.824528e+06 77165.16 NULL
2020 Admin For Children’s Svcs Agency Chief Contracting Officer 187991.00000 1.879910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.879910e+05 1.879910e+05 0.00 NULL
2020 Admin For Children’s Svcs Architect 92251.50000 1.845030e+05 4651.26 2.325630e+03 2325.630 67.75 2 2.325630e+03 4651.26 1.891543e+05 1.891543e+05 0.00 NULL
2020 Admin For Children’s Svcs Assistant Architect 63728.00000 6.372800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.372800e+04 6.372800e+04 0.00 NULL
2020 Admin For Children’s Svcs Assistant Commissioner 143223.00000 4.296690e+05 140.18 4.672667e+01 0.000 2.50 3 0.000000e+00 0.00 4.298092e+05 4.296690e+05 140.18 NULL
2020 Admin For Children’s Svcs Assistant Commissioner For Aftercare & Preventive Svcs 119499.00000 1.194990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.194990e+05 1.194990e+05 0.00 NULL
2020 Admin For Children’s Svcs Assistant Commissioner For Facilities Operations 160370.00000 1.603700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.603700e+05 1.603700e+05 0.00 NULL
2020 Admin For Children’s Svcs Assistant Commissioner For Management Acd-Doss 226745.00000 2.267450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.267450e+05 2.267450e+05 0.00 NULL
2020 Admin For Children’s Svcs Assistant Deputy Administrator 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2020 Admin For Children’s Svcs Associate Investigator 74158.00000 7.415800e+04 3957.21 3.957210e+03 3957.210 75.00 1 3.957210e+03 3957.21 7.811521e+04 7.811521e+04 0.00 NULL
2020 Admin For Children’s Svcs Associate Juvenile Counselor 54991.00000 5.499100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.499100e+04 5.499100e+04 0.00 NULL
2020 Admin For Children’s Svcs Associate Project Manager 82350.50000 1.647010e+05 42306.55 2.115328e+04 21153.275 599.25 2 2.115328e+04 42306.55 2.070075e+05 2.070075e+05 0.00 NULL
2020 Admin For Children’s Svcs Associate Staff Analyst 81070.79221 6.242451e+06 76270.89 9.905310e+02 0.000 1288.25 77 0.000000e+00 0.00 6.318722e+06 6.242451e+06 76270.89 NULL
2020 Admin For Children’s Svcs Associate Youth Development Specialist 69892.81111 6.290353e+06 1560536.43 1.733929e+04 14404.695 30000.50 90 1.440469e+04 1296422.55 7.850889e+06 7.586776e+06 264113.88 NULL
2020 Admin For Children’s Svcs Asst Commissioner For Non-Secure Detention Juvenile Justice 172287.00000 1.722870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.722870e+05 1.722870e+05 0.00 NULL
2020 Admin For Children’s Svcs Asst Commissioner For Planning & Prg Deve 134197.00000 1.341970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.341970e+05 1.341970e+05 0.00 NULL
2020 Admin For Children’s Svcs Bookkeeper 47558.00000 2.377900e+05 351.03 7.020600e+01 45.410 13.75 5 4.541000e+01 227.05 2.381410e+05 2.380170e+05 123.98 NULL
2020 Admin For Children’s Svcs Carpenter NA NA 154960.62 5.165354e+04 62493.520 2111.75 3 5.165354e+04 154960.62 NA NA NA NULL
2020 Admin For Children’s Svcs Caseworker 50156.76087 2.307211e+06 46340.99 1.007413e+03 0.000 1215.00 46 0.000000e+00 0.00 2.353552e+06 2.307211e+06 46340.99 NULL
2020 Admin For Children’s Svcs Certified It Administrator 107632.00000 1.183952e+06 21290.80 1.935527e+03 1454.920 315.25 11 1.454920e+03 16004.12 1.205243e+06 1.199956e+06 5286.68 NULL
2020 Admin For Children’s Svcs Certified It Developer 100315.50000 4.012620e+05 2917.99 7.294975e+02 629.910 40.50 4 6.299100e+02 2519.64 4.041800e+05 4.037816e+05 398.35 NULL
2020 Admin For Children’s Svcs Chaplain 62784.00000 1.255680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.255680e+05 1.255680e+05 0.00 NULL
2020 Admin For Children’s Svcs Child And Family Specialist 85979.75720 2.089308e+07 985630.19 4.056091e+03 614.210 17370.75 243 6.142100e+02 149253.03 2.187871e+07 2.104233e+07 836377.16 NULL
2020 Admin For Children’s Svcs Child Protective Specialist 58481.06335 1.550918e+08 14983399.29 5.649849e+03 3832.625 367752.81 2652 3.832625e+03 10164121.50 1.700752e+08 1.652559e+08 4819277.79 NULL
2020 Admin For Children’s Svcs Child Protective Specialist Supervisor 81994.45395 4.985263e+07 6866766.28 1.129402e+04 9156.680 115760.07 608 9.156680e+03 5567261.44 5.671939e+07 5.541989e+07 1299504.84 NULL
2020 Admin For Children’s Svcs Child Welfare Specialist 59826.75455 1.316189e+07 736523.42 3.347834e+03 177.765 15950.00 220 1.777650e+02 39108.30 1.389841e+07 1.320099e+07 697415.12 NULL
2020 Admin For Children’s Svcs Child Welfare Specialist Supervisor 79074.57595 1.249378e+07 559016.02 3.538076e+03 307.475 10546.10 158 3.074750e+02 48581.05 1.305280e+07 1.254236e+07 510434.97 NULL
2020 Admin For Children’s Svcs Children’s Counselor 45976.55550 1.839062e+05 19444.86 4.861215e+03 2180.010 607.25 4 2.180010e+03 8720.04 2.033511e+05 1.926263e+05 10724.82 NULL
2020 Admin For Children’s Svcs City Custodial Assistant 37080.00000 3.708000e+04 22586.87 2.258687e+04 22586.870 856.50 1 2.258687e+04 22586.87 5.966687e+04 5.966687e+04 0.00 NULL
2020 Admin For Children’s Svcs City Laborer NA NA 162245.37 3.244907e+04 22749.230 2932.25 5 2.274923e+04 113746.15 NA NA NA NULL
2020 Admin For Children’s Svcs City Medical Director 186968.90000 9.348445e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.348445e+05 9.348445e+05 0.00 NULL
2020 Admin For Children’s Svcs City Research Scientist 95033.53125 3.041073e+06 650.78 2.033687e+01 0.000 24.00 32 0.000000e+00 0.00 3.041724e+06 3.041073e+06 650.78 NULL
2020 Admin For Children’s Svcs Clerical Aide 29483.00000 2.948300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.948300e+04 2.948300e+04 0.00 NULL
2020 Admin For Children’s Svcs Clerical Associate 44633.86076 7.052150e+06 362940.43 2.297091e+03 0.000 10239.75 158 0.000000e+00 0.00 7.415090e+06 7.052150e+06 362940.43 NULL
2020 Admin For Children’s Svcs Commissioner Of Children’s Services 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2020 Admin For Children’s Svcs Community Assistant 37683.23930 1.733429e+06 113873.18 2.475504e+03 0.000 4056.50 46 0.000000e+00 0.00 1.847302e+06 1.733429e+06 113873.18 NULL
2020 Admin For Children’s Svcs Community Associate 48293.16000 3.621987e+06 283542.43 3.780566e+03 123.420 7965.50 75 1.234200e+02 9256.50 3.905529e+06 3.631244e+06 274285.93 NULL
2020 Admin For Children’s Svcs Community Coordinator 66955.12461 3.106718e+07 779713.53 1.680417e+03 0.000 18270.52 464 0.000000e+00 0.00 3.184689e+07 3.106718e+07 779713.53 NULL
2020 Admin For Children’s Svcs Computer Aide-Non-Spvr 55216.10000 5.521610e+05 8083.53 8.083530e+02 135.385 211.00 10 1.353850e+02 1353.85 5.602445e+05 5.535148e+05 6729.68 NULL
2020 Admin For Children’s Svcs Computer Associate 66715.64474 2.535194e+06 23823.46 6.269332e+02 0.000 574.00 38 0.000000e+00 0.00 2.559018e+06 2.535194e+06 23823.46 NULL
2020 Admin For Children’s Svcs Computer Service Technician 44863.12500 3.589050e+05 1998.63 2.498288e+02 42.070 64.50 8 4.207000e+01 336.56 3.609036e+05 3.592416e+05 1662.07 NULL
2020 Admin For Children’s Svcs Computer Specialist 104082.05556 3.746954e+06 16234.03 4.509453e+02 0.000 234.00 36 0.000000e+00 0.00 3.763188e+06 3.746954e+06 16234.03 NULL
2020 Admin For Children’s Svcs Computer Systems Manager 120540.22581 3.736747e+06 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 3.736747e+06 3.736747e+06 0.00 NULL
2020 Admin For Children’s Svcs Confidential Agency Investigator 154905.00000 1.549050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.549050e+05 1.549050e+05 0.00 NULL
2020 Admin For Children’s Svcs Confidential Strategy Planner 87745.66667 5.264740e+05 2756.59 4.594317e+02 0.000 52.25 6 0.000000e+00 0.00 5.292306e+05 5.264740e+05 2756.59 NULL
2020 Admin For Children’s Svcs Congreg Care Spec - Acs 45956.48529 6.250082e+06 1795416.48 1.320159e+04 5782.715 51211.72 136 5.782715e+03 786449.24 8.045498e+06 7.036531e+06 1008967.24 NULL
2020 Admin For Children’s Svcs Congreg Care Spec- Djj 58461.60000 8.769240e+05 225681.42 1.504543e+04 11354.320 5333.50 15 1.135432e+04 170314.80 1.102605e+06 1.047239e+06 55366.62 NULL
2020 Admin For Children’s Svcs Construction Project Manager 93302.77778 8.397250e+05 81849.64 9.094404e+03 720.240 1039.25 9 7.202400e+02 6482.16 9.215746e+05 8.462072e+05 75367.48 NULL
2020 Admin For Children’s Svcs Consultant 76206.28571 5.334440e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.334440e+05 5.334440e+05 0.00 NULL
2020 Admin For Children’s Svcs Contract Specialist 47754.00000 4.775400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.775400e+04 4.775400e+04 0.00 NULL
2020 Admin For Children’s Svcs Custodian 45012.00000 5.401440e+05 67434.84 5.619570e+03 4322.340 2241.50 12 4.322340e+03 51868.08 6.075788e+05 5.920121e+05 15566.76 NULL
2020 Admin For Children’s Svcs Deputy Asst Commissioner For Program Dev & Anal 198197.00000 1.981970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.981970e+05 1.981970e+05 0.00 NULL
2020 Admin For Children’s Svcs Deputy Commissioner 200104.00000 1.000520e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.000520e+06 1.000520e+06 0.00 NULL
2020 Admin For Children’s Svcs Deputy Director Of Administration 137208.60000 6.860430e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.860430e+05 6.860430e+05 0.00 NULL
2020 Admin For Children’s Svcs Deputy General Counsel 172919.00000 1.729190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.729190e+05 1.729190e+05 0.00 NULL
2020 Admin For Children’s Svcs Deputy Superintendent 93743.33333 2.812300e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.812300e+05 2.812300e+05 0.00 NULL
2020 Admin For Children’s Svcs Director Of Advocacy 113300.00000 1.133000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133000e+05 1.133000e+05 0.00 NULL
2020 Admin For Children’s Svcs Director Of Field Operations 110400.60490 3.157457e+07 105497.76 3.688733e+02 0.000 1726.25 286 0.000000e+00 0.00 3.168007e+07 3.157457e+07 105497.76 NULL
2020 Admin For Children’s Svcs Director Of Program Planning 133083.00000 1.330830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.330830e+05 1.330830e+05 0.00 NULL
2020 Admin For Children’s Svcs Director Of Public Information 171878.00000 1.718780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.718780e+05 1.718780e+05 0.00 NULL
2020 Admin For Children’s Svcs Director Of Security 115926.50000 2.318530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.318530e+05 2.318530e+05 0.00 NULL
2020 Admin For Children’s Svcs Electrician NA NA 184186.71 9.209335e+04 92093.355 2062.50 2 9.209335e+04 184186.71 NA NA NA NULL
2020 Admin For Children’s Svcs Eligibility Specialist 51005.50000 1.020110e+05 1321.51 6.607550e+02 660.755 39.00 2 6.607550e+02 1321.51 1.033325e+05 1.033325e+05 0.00 NULL
2020 Admin For Children’s Svcs Exec Asst To The Deputy Commissioner 185400.00000 1.854000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.854000e+05 1.854000e+05 0.00 NULL
2020 Admin For Children’s Svcs Executive Agency Counsel 137529.37500 9.902115e+06 5686.63 7.898097e+01 0.000 78.50 72 0.000000e+00 0.00 9.907802e+06 9.902115e+06 5686.63 NULL
2020 Admin For Children’s Svcs Executive Assistant 139651.00000 1.396510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.396510e+05 1.396510e+05 0.00 NULL
2020 Admin For Children’s Svcs Executive Assistant To The Executive Deputy Adm 127396.00000 1.273960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.273960e+05 1.273960e+05 0.00 NULL
2020 Admin For Children’s Svcs Executive Deputy Administrator 232723.00000 2.327230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.327230e+05 2.327230e+05 0.00 NULL
2020 Admin For Children’s Svcs Food Service Manager 77325.00000 7.732500e+04 31.01 3.101000e+01 31.010 0.00 1 3.101000e+01 31.01 7.735601e+04 7.735601e+04 0.00 NULL
2020 Admin For Children’s Svcs Graphic Artist 70074.00000 1.401480e+05 669.53 3.347650e+02 334.765 13.25 2 3.347650e+02 669.53 1.408175e+05 1.408175e+05 0.00 NULL
2020 Admin For Children’s Svcs Home Aide 36310.00000 3.631000e+04 10662.38 1.066238e+04 10662.380 412.25 1 1.066238e+04 10662.38 4.697238e+04 4.697238e+04 0.00 NULL
2020 Admin For Children’s Svcs Homemaker 37673.00000 1.506920e+05 15123.77 3.780943e+03 2984.285 589.00 4 2.984285e+03 11937.14 1.658158e+05 1.626291e+05 3186.63 NULL
2020 Admin For Children’s Svcs Institutional Aide 39275.26190 1.649561e+06 267246.94 6.363022e+03 2727.760 9566.75 42 2.727760e+03 114565.92 1.916808e+06 1.764127e+06 152681.02 NULL
2020 Admin For Children’s Svcs Investigator 78716.66667 2.361500e+05 768.33 2.561100e+02 0.000 18.75 3 0.000000e+00 0.00 2.369183e+05 2.361500e+05 768.33 NULL
2020 Admin For Children’s Svcs It Project Specialist 100305.80000 5.015290e+05 1976.30 3.952600e+02 0.000 41.25 5 0.000000e+00 0.00 5.035053e+05 5.015290e+05 1976.30 NULL
2020 Admin For Children’s Svcs Juvenile Counselor 44409.00000 4.440900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.440900e+04 4.440900e+04 0.00 NULL
2020 Admin For Children’s Svcs Maintenance Worker 56021.00275 1.120420e+05 967.42 4.837100e+02 483.710 25.75 2 4.837100e+02 967.42 1.130094e+05 1.130094e+05 0.00 NULL
2020 Admin For Children’s Svcs Management Auditor 82617.75000 3.304710e+05 49.91 1.247750e+01 0.000 1.00 4 0.000000e+00 0.00 3.305209e+05 3.304710e+05 49.91 NULL
2020 Admin For Children’s Svcs Motor Vehicle Operator 49734.70588 8.454900e+05 479113.16 2.818313e+04 22700.460 13077.55 17 2.270046e+04 385907.82 1.324603e+06 1.231398e+06 93205.34 NULL
2020 Admin For Children’s Svcs Motor Vehicle Supervisor 58036.00000 1.160720e+05 22622.40 1.131120e+04 11311.200 531.50 2 1.131120e+04 22622.40 1.386944e+05 1.386944e+05 0.00 NULL
2020 Admin For Children’s Svcs Office Machine Aide 37744.00000 3.774400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.774400e+04 3.774400e+04 0.00 NULL
2020 Admin For Children’s Svcs Ombudsman 67857.00000 6.785700e+04 462.41 4.624100e+02 462.410 12.25 1 4.624100e+02 462.41 6.831941e+04 6.831941e+04 0.00 NULL
2020 Admin For Children’s Svcs Painter NA NA 102239.78 3.407993e+04 39648.460 1631.00 3 3.407993e+04 102239.78 NA NA NA NULL
2020 Admin For Children’s Svcs Paralegal Aide 45476.65000 9.095330e+05 158.49 7.924500e+00 0.000 7.25 20 0.000000e+00 0.00 9.096915e+05 9.095330e+05 158.49 NULL
2020 Admin For Children’s Svcs Plumber NA NA 137993.91 2.759878e+04 14042.980 1312.00 5 1.404298e+04 70214.90 NA NA NA NULL
2020 Admin For Children’s Svcs Principal Administrative Associate - Non Supvr 56209.15339 1.635686e+07 442825.34 1.521737e+03 0.000 10242.82 291 0.000000e+00 0.00 1.679969e+07 1.635686e+07 442825.34 NULL
2020 Admin For Children’s Svcs Procurement Analyst 63872.00000 4.471040e+05 1418.15 2.025929e+02 0.000 34.50 7 0.000000e+00 0.00 4.485222e+05 4.471040e+05 1418.15 NULL
2020 Admin For Children’s Svcs Program Evaluator 80131.89000 8.013189e+06 138164.24 1.381642e+03 0.000 2490.50 100 0.000000e+00 0.00 8.151353e+06 8.013189e+06 138164.24 NULL
2020 Admin For Children’s Svcs Protection Agent 68533.54321 1.110243e+07 295283.91 1.822740e+03 87.590 5875.83 162 8.759000e+01 14189.58 1.139772e+07 1.111662e+07 281094.33 NULL
2020 Admin For Children’s Svcs Recreation Supervisor 59269.00000 5.926900e+04 16646.41 1.664641e+04 16646.410 363.25 1 1.664641e+04 16646.41 7.591541e+04 7.591541e+04 0.00 NULL
2020 Admin For Children’s Svcs Research Assistant 57711.00000 2.308440e+05 36831.16 9.207790e+03 7714.815 858.50 4 7.714815e+03 30859.26 2.676752e+05 2.617033e+05 5971.90 NULL
2020 Admin For Children’s Svcs Secretary 42224.87500 3.377990e+05 11623.35 1.452919e+03 0.000 320.25 8 0.000000e+00 0.00 3.494223e+05 3.377990e+05 11623.35 NULL
2020 Admin For Children’s Svcs Secretary Of Comm 85396.00000 8.539600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.539600e+04 8.539600e+04 0.00 NULL
2020 Admin For Children’s Svcs Sheet Metal Worker NA NA 82586.48 8.258648e+04 82586.480 698.50 1 8.258648e+04 82586.48 NA NA NA NULL
2020 Admin For Children’s Svcs Space Analyst 83357.50000 3.334300e+05 33285.48 8.321370e+03 1632.930 620.75 4 1.632930e+03 6531.72 3.667155e+05 3.399617e+05 26753.76 NULL
2020 Admin For Children’s Svcs Special Assistant To The Human Resources Administrator 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2020 Admin For Children’s Svcs Special Officer 39875.79439 4.266710e+06 659888.98 6.167187e+03 2733.190 20940.53 107 2.733190e+03 292451.33 4.926599e+06 4.559161e+06 367437.65 NULL
2020 Admin For Children’s Svcs Staff Analyst 61209.81356 3.611379e+06 54584.12 9.251546e+02 0.000 1098.75 59 0.000000e+00 0.00 3.665963e+06 3.611379e+06 54584.12 NULL
2020 Admin For Children’s Svcs Staff Nurse 80562.08696 1.852928e+06 24051.91 1.045735e+03 207.580 407.00 23 2.075800e+02 4774.34 1.876980e+06 1.857702e+06 19277.57 NULL
2020 Admin For Children’s Svcs Stock Worker 37061.00000 1.111830e+05 13629.83 4.543277e+03 2576.040 548.50 3 2.576040e+03 7728.12 1.248128e+05 1.189111e+05 5901.71 NULL
2020 Admin For Children’s Svcs Strategic Initiative Specialist 117756.16667 7.065370e+05 5695.82 9.493033e+02 0.000 101.00 6 0.000000e+00 0.00 7.122328e+05 7.065370e+05 5695.82 NULL
2020 Admin For Children’s Svcs Summer College Intern 3951.46555 1.264469e+05 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 1.264469e+05 1.264469e+05 0.00 NULL
2020 Admin For Children’s Svcs Superintendent 116834.50000 2.336690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.336690e+05 2.336690e+05 0.00 NULL
2020 Admin For Children’s Svcs Supervising Computer Service Technician 71213.25000 2.848530e+05 732.05 1.830125e+02 0.000 14.00 4 0.000000e+00 0.00 2.855850e+05 2.848530e+05 732.05 NULL
2020 Admin For Children’s Svcs Supervising Special Officer 57528.30556 2.071019e+06 472534.60 1.312596e+04 10400.095 11981.75 36 1.040009e+04 374403.42 2.543554e+06 2.445422e+06 98131.18 NULL
2020 Admin For Children’s Svcs Supervisor I 62192.31250 9.950770e+05 23380.28 1.461267e+03 0.000 524.25 16 0.000000e+00 0.00 1.018457e+06 9.950770e+05 23380.28 NULL
2020 Admin For Children’s Svcs Supervisor I Social Work 66469.61538 8.641050e+05 7376.75 5.674423e+02 0.000 171.75 13 0.000000e+00 0.00 8.714818e+05 8.641050e+05 7376.75 NULL
2020 Admin For Children’s Svcs Supervisor Ii 70144.14286 1.964036e+06 59310.12 2.118219e+03 0.000 1097.00 28 0.000000e+00 0.00 2.023346e+06 1.964036e+06 59310.12 NULL
2020 Admin For Children’s Svcs Supervisor Ii Social Work 74183.00000 1.483660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.483660e+05 1.483660e+05 0.00 NULL
2020 Admin For Children’s Svcs Supervisor Iii 76578.33333 4.594700e+05 55011.72 9.168620e+03 2440.115 934.00 6 2.440115e+03 14640.69 5.144817e+05 4.741107e+05 40371.03 NULL
2020 Admin For Children’s Svcs Supervisor Of Child Care 69213.83333 4.152830e+05 175797.11 2.929952e+04 23577.850 3418.25 6 2.357785e+04 141467.10 5.910801e+05 5.567501e+05 34330.01 NULL
2020 Admin For Children’s Svcs Supervisor Of Mechanical Installations & Maintenance 87929.33333 2.637880e+05 10296.65 3.432217e+03 344.920 145.00 3 3.449200e+02 1034.76 2.740847e+05 2.648228e+05 9261.89 NULL
2020 Admin For Children’s Svcs Supervisor Of Mechanics NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2020 Admin For Children’s Svcs Supervisor Of Nurses 90165.18182 9.918170e+05 4086.32 3.714836e+02 0.000 55.75 11 0.000000e+00 0.00 9.959033e+05 9.918170e+05 4086.32 NULL
2020 Admin For Children’s Svcs Telecommunications Associate 77095.45455 8.480500e+05 38937.34 3.539758e+03 2682.730 654.00 11 2.682730e+03 29510.03 8.869873e+05 8.775600e+05 9427.31 NULL
2020 Admin For Children’s Svcs Youth Development Specialist 49258.62184 3.699322e+07 4329129.11 5.764486e+03 2726.230 113132.47 751 2.726230e+03 2047398.73 4.132235e+07 3.904062e+07 2281730.38 NULL
2020 Admin Trials And Hearings *Attorney At Law 93597.50000 1.871950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.871950e+05 1.871950e+05 0.00 NULL
2020 Admin Trials And Hearings Adm Manager-Non-Mgrl 76629.46667 1.149442e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.149442e+06 1.149442e+06 0.00 NULL
2020 Admin Trials And Hearings Admin Community Relations Specialist 90483.33333 5.429000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.429000e+05 5.429000e+05 0.00 NULL
2020 Admin Trials And Hearings Administrative Accountant 102052.00000 1.020520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020520e+05 1.020520e+05 0.00 NULL
2020 Admin Trials And Hearings Administrative City Planner 121629.00000 1.216290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.216290e+05 1.216290e+05 0.00 NULL
2020 Admin Trials And Hearings Administrative Community Relations Specialist 102072.00000 1.020720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020720e+05 1.020720e+05 0.00 NULL
2020 Admin Trials And Hearings Administrative Labor Relations Analyst 96682.00000 9.668200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.668200e+04 9.668200e+04 0.00 NULL
2020 Admin Trials And Hearings Administrative Law Judge 161663.18182 1.778295e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.778295e+06 1.778295e+06 0.00 NULL
2020 Admin Trials And Hearings Administrative Procurement Analyst-Non-Mgrl 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2020 Admin Trials And Hearings Administrative Staff Analyst 133827.66667 1.204449e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.204449e+06 1.204449e+06 0.00 NULL
2020 Admin Trials And Hearings Agency Attorney 93082.60000 3.723304e+06 147.17 3.679250e+00 0.000 0.00 40 0.000000e+00 0.00 3.723451e+06 3.723304e+06 147.17 NULL
2020 Admin Trials And Hearings Agency Attorney Interne 46546.54000 1.396396e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.396396e+05 1.396396e+05 0.00 NULL
2020 Admin Trials And Hearings Agency Chief Contracting Officer 131057.00000 1.310570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.310570e+05 1.310570e+05 0.00 NULL
2020 Admin Trials And Hearings Associate Public Information Specialist 53712.00000 5.371200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.371200e+04 5.371200e+04 0.00 NULL
2020 Admin Trials And Hearings Associate Staff Analyst 77766.00000 2.332980e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.332980e+05 2.332980e+05 0.00 NULL
2020 Admin Trials And Hearings Bookkeeper 50830.50000 2.033220e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.033220e+05 2.033220e+05 0.00 NULL
2020 Admin Trials And Hearings Certified It Administrator 94244.00000 9.424400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.424400e+04 9.424400e+04 0.00 NULL
2020 Admin Trials And Hearings Certified It Developer 124123.00000 1.241230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.241230e+05 1.241230e+05 0.00 NULL
2020 Admin Trials And Hearings Chief Administrative Law Judge 224468.50000 4.489370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.489370e+05 4.489370e+05 0.00 NULL
2020 Admin Trials And Hearings City Laborer NA NA 788.43 3.942150e+02 394.215 14.50 2 3.942150e+02 788.43 NA NA NA NULL
2020 Admin Trials And Hearings Clerical Aide 27574.17100 1.102967e+05 519.68 1.299200e+02 0.000 28.00 4 0.000000e+00 0.00 1.108164e+05 1.102967e+05 519.68 NULL
2020 Admin Trials And Hearings Clerical Associate 42180.55588 1.476319e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 1.476319e+06 1.476319e+06 0.00 NULL
2020 Admin Trials And Hearings College Aide 10964.18750 9.867769e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.867769e+04 9.867769e+04 0.00 NULL
2020 Admin Trials And Hearings Community Assistant 30789.08128 1.108407e+06 685.30 1.903611e+01 0.000 38.50 36 0.000000e+00 0.00 1.109092e+06 1.108407e+06 685.30 NULL
2020 Admin Trials And Hearings Community Associate 45474.78545 2.319214e+06 36213.16 7.100620e+02 0.000 1174.50 51 0.000000e+00 0.00 2.355427e+06 2.319214e+06 36213.16 NULL
2020 Admin Trials And Hearings Community Coordinator 66506.61538 3.458344e+06 2847.96 5.476846e+01 0.000 90.50 52 0.000000e+00 0.00 3.461192e+06 3.458344e+06 2847.96 NULL
2020 Admin Trials And Hearings Community Service Aide 25019.19575 1.275979e+06 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 1.275979e+06 1.275979e+06 0.00 NULL
2020 Admin Trials And Hearings Computer Associate 76869.33333 2.306080e+05 3509.00 1.169667e+03 0.000 72.00 3 0.000000e+00 0.00 2.341170e+05 2.306080e+05 3509.00 NULL
2020 Admin Trials And Hearings Computer Specialist 104775.75000 4.191030e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.191030e+05 4.191030e+05 0.00 NULL
2020 Admin Trials And Hearings Computer Systems Manager 157999.20000 7.899960e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.899960e+05 7.899960e+05 0.00 NULL
2020 Admin Trials And Hearings Confidential Secretary Of Administrative Law Judge 62789.00000 1.255780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.255780e+05 1.255780e+05 0.00 NULL
2020 Admin Trials And Hearings Customer Information Representative Ma L 1549 38134.53000 1.525381e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.525381e+05 1.525381e+05 0.00 NULL
2020 Admin Trials And Hearings Executive Agency Counsel 126486.25000 4.047560e+06 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 4.047560e+06 4.047560e+06 0.00 NULL
2020 Admin Trials And Hearings Executive Assistant To The Chief Administrative Law Judge 150393.00000 1.503930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503930e+05 1.503930e+05 0.00 NULL
2020 Admin Trials And Hearings Hearing Officer 32475.73185 9.677768e+06 0.00 0.000000e+00 0.000 0.00 298 0.000000e+00 0.00 9.677768e+06 9.677768e+06 0.00 NULL
2020 Admin Trials And Hearings Maintenance Worker NA NA 351.67 3.516700e+02 351.670 7.75 1 3.516700e+02 351.67 NA NA NA NULL
2020 Admin Trials And Hearings Member Of The Environmental Control Board - Oath 32.83125 1.313250e+02 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.313250e+02 1.313250e+02 0.00 NULL
2020 Admin Trials And Hearings Principal Administrative Associate - Non Supvr 60418.92308 7.854460e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 7.854460e+05 7.854460e+05 0.00 NULL
2020 Admin Trials And Hearings Procurement Analyst 64821.00000 6.482100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.482100e+04 6.482100e+04 0.00 NULL
2020 Admin Trials And Hearings Public Records Aide 42580.50000 3.406440e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 3.406440e+05 3.406440e+05 0.00 NULL
2020 Admin Trials And Hearings Secretary 46386.50000 9.277300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.277300e+04 9.277300e+04 0.00 NULL
2020 Admin Trials And Hearings Special Officer 48028.50000 2.881710e+05 982.18 1.636967e+02 228.450 30.00 6 1.636967e+02 982.18 2.891532e+05 2.891532e+05 0.00 NULL
2020 Admin Trials And Hearings Staff Analyst 54578.50000 1.091570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.091570e+05 1.091570e+05 0.00 NULL
2020 Board Of Correction Administrative Staff Analyst 113300.00000 1.133000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133000e+05 1.133000e+05 0.00 NULL
2020 Board Of Correction City Research Scientist 83194.25000 3.327770e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.327770e+05 3.327770e+05 0.00 NULL
2020 Board Of Correction Community Coordinator 58969.00000 2.948450e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.948450e+05 2.948450e+05 0.00 NULL
2020 Board Of Correction Computer Operations Manager 102935.00000 1.029350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.029350e+05 1.029350e+05 0.00 NULL
2020 Board Of Correction Computer Specialist 106023.00000 1.060230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.060230e+05 1.060230e+05 0.00 NULL
2020 Board Of Correction Computer Systems Manager 149350.00000 1.493500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.493500e+05 1.493500e+05 0.00 NULL
2020 Board Of Correction Correctional Standards Review Specialist 70508.90909 7.755980e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.755980e+05 7.755980e+05 0.00 NULL
2020 Board Of Correction Counsel 171502.00000 1.715020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.715020e+05 1.715020e+05 0.00 NULL
2020 Board Of Correction Deputy Executive Director 164902.00000 1.649020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.649020e+05 1.649020e+05 0.00 NULL
2020 Board Of Correction Director Of Correctional Standards Review 93350.35000 1.867007e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.867007e+05 1.867007e+05 0.00 NULL
2020 Board Of Correction Executive Agency Counsel 128909.00000 1.289090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.289090e+05 1.289090e+05 0.00 NULL
2020 Board Of Correction Executive Director 190087.50000 3.801750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.801750e+05 3.801750e+05 0.00 NULL
2020 Board Of Correction Secretary 57434.00000 5.743400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.743400e+04 5.743400e+04 0.00 NULL
2020 Board Of Correction Secretary To The Board Of Correction 74748.50000 1.494970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.494970e+05 1.494970e+05 0.00 NULL
2020 Board Of Election Administrative Assistant 53022.81818 4.082757e+06 860508.84 1.117544e+04 7769.350 21871.00 77 7.769350e+03 598239.95 4.943266e+06 4.680997e+06 262268.89 NULL
2020 Board Of Election Administrative Associate 67865.77465 4.818470e+06 1643319.91 2.314535e+04 21545.240 31493.50 71 2.154524e+04 1529712.04 6.461790e+06 6.348182e+06 113607.87 NULL
2020 Board Of Election Administrative Manager 182775.50000 7.311020e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.311020e+05 7.311020e+05 0.00 NULL
2020 Board Of Election Assistance Finance Officer 68689.33333 2.060680e+05 11798.85 3.932950e+03 0.000 298.50 3 0.000000e+00 0.00 2.178669e+05 2.060680e+05 11798.85 NULL
2020 Board Of Election Associate Staff Analyst 92094.26667 1.381414e+06 442741.91 2.951613e+04 19785.120 6359.75 15 1.978512e+04 296776.80 1.824156e+06 1.678191e+06 145965.11 NULL
2020 Board Of Election Chief Clerk 148449.00000 1.039143e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.039143e+06 1.039143e+06 0.00 NULL
2020 Board Of Election Clerk To The Board 37112.52941 2.523652e+06 342773.25 5.040783e+03 4033.975 12408.50 68 4.033975e+03 274310.30 2.866425e+06 2.797962e+06 68462.95 NULL
2020 Board Of Election Commissioner 26045.45455 2.865000e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 2.865000e+05 2.865000e+05 0.00 NULL
2020 Board Of Election Computer Operator 48033.00000 9.606600e+04 17306.31 8.653155e+03 8653.155 491.25 2 8.653155e+03 17306.31 1.133723e+05 1.133723e+05 0.00 NULL
2020 Board Of Election Computer Specialist 129410.33333 7.764620e+05 313725.36 5.228756e+04 49669.280 4819.25 6 4.966928e+04 298015.68 1.090187e+06 1.074478e+06 15709.68 NULL
2020 Board Of Election Computer System Manager 138858.33333 8.331500e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.331500e+05 8.331500e+05 0.00 NULL
2020 Board Of Election Coordinator, Election Day Operations 117217.00000 2.344340e+05 28872.86 1.443643e+04 14436.430 356.00 2 1.443643e+04 28872.86 2.633069e+05 2.633069e+05 0.00 NULL
2020 Board Of Election Coordinator, Voter Registration Activities 101097.00000 2.021940e+05 29431.46 1.471573e+04 14715.730 417.00 2 1.471573e+04 29431.46 2.316255e+05 2.316255e+05 0.00 NULL
2020 Board Of Election Counsel 176915.33333 5.307460e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.307460e+05 5.307460e+05 0.00 NULL
2020 Board Of Election Counsel To The Board 58957.50000 1.179150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.179150e+05 1.179150e+05 0.00 NULL
2020 Board Of Election Deputy Chief Clerk 143093.92308 1.860221e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.860221e+06 1.860221e+06 0.00 NULL
2020 Board Of Election Deputy Executive Director 214190.00000 4.283800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.283800e+05 4.283800e+05 0.00 NULL
2020 Board Of Election Director Of Equipment 89107.00000 2.673210e+05 123147.25 4.104908e+04 52484.040 1774.75 3 4.104908e+04 123147.25 3.904682e+05 3.904682e+05 0.00 NULL
2020 Board Of Election Director, Public Affairs And Communication 124875.00000 2.497500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.497500e+05 2.497500e+05 0.00 NULL
2020 Board Of Election Executive Director 232615.00000 4.652300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.652300e+05 4.652300e+05 0.00 NULL
2020 Board Of Election Finance Officer 123745.00000 1.237450e+05 12034.70 1.203470e+04 12034.700 140.50 1 1.203470e+04 12034.70 1.357797e+05 1.357797e+05 0.00 NULL
2020 Board Of Election Financial Clerk 35287.48904 2.470124e+06 428372.84 6.119612e+03 4393.855 14905.00 70 4.393855e+03 307569.85 2.898497e+06 2.777694e+06 120802.99 NULL
2020 Board Of Election Project Coordinator 99102.04348 2.279347e+06 509580.67 2.215568e+04 18346.380 6978.50 23 1.834638e+04 421966.74 2.788928e+06 2.701314e+06 87613.93 NULL
2020 Board Of Election Senior Adminisrator 91605.10000 1.832102e+06 466256.99 2.331285e+04 18755.540 7479.76 20 1.875554e+04 375110.80 2.298359e+06 2.207213e+06 91146.19 NULL
2020 Board Of Election Senior Administrative Assistant 80056.33333 9.606760e+05 283332.15 2.361101e+04 21195.050 4626.00 12 2.119505e+04 254340.60 1.244008e+06 1.215017e+06 28991.55 NULL
2020 Board Of Election Senior Computer Programmer 78278.45455 8.610630e+05 512825.23 4.662048e+04 28874.170 9758.25 11 2.887417e+04 317615.87 1.373888e+06 1.178679e+06 195209.36 NULL
2020 Board Of Election Senior Systems Analysts 108367.40000 5.418370e+05 220203.51 4.404070e+04 21366.680 2980.25 5 2.136668e+04 106833.40 7.620405e+05 6.486704e+05 113370.11 NULL
2020 Board Of Election Senior Voting Machine Technician 49566.54762 2.081795e+06 562536.82 1.339373e+04 11143.405 15013.75 42 1.114341e+04 468023.01 2.644332e+06 2.549818e+06 94513.81 NULL
2020 Board Of Election Temporary Clerk 15751.47267 5.150732e+06 638075.24 1.951300e+03 1251.960 31355.25 327 1.251960e+03 409390.92 5.788807e+06 5.560122e+06 228684.32 NULL
2020 Board Of Election Trainer Assistant 49467.42708 2.918578e+06 704385.80 1.193874e+04 12175.610 16992.75 59 1.193874e+04 704385.80 3.622964e+06 3.622964e+06 0.00 NULL
2020 Board Of Election Voting Machine Technician 45381.32110 4.946564e+06 1230416.94 1.128823e+04 11593.970 36543.25 109 1.128823e+04 1230416.94 6.176981e+06 6.176981e+06 0.00 NULL
2020 Board Of Election Poll Workers Election Trainer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 385 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Board Of Election Poll Workers Election Worker 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 30637 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Borough President-Bronx Administrative Business Promotion Coordinator 124050.00000 1.240500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.240500e+05 1.240500e+05 0.00 NULL
2020 Borough President-Bronx Administrative City Planner 99849.00000 9.984900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.984900e+04 9.984900e+04 0.00 NULL
2020 Borough President-Bronx Administrative Education Officer 115287.00000 1.152870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.152870e+05 1.152870e+05 0.00 NULL
2020 Borough President-Bronx Administrative Manager 82951.00000 8.295100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.295100e+04 8.295100e+04 0.00 NULL
2020 Borough President-Bronx Administrative Staff Analyst 122013.00000 2.440260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.440260e+05 2.440260e+05 0.00 NULL
2020 Borough President-Bronx Assistant To The President 63513.50000 2.540540e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.540540e+05 2.540540e+05 0.00 NULL
2020 Borough President-Bronx Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2020 Borough President-Bronx Community Assistant 24729.13133 7.418739e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.418739e+04 7.418739e+04 0.00 NULL
2020 Borough President-Bronx Community Associate 52922.06250 8.467530e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 8.467530e+05 8.467530e+05 0.00 NULL
2020 Borough President-Bronx Community Coordinator 69357.67408 1.040365e+06 29942.17 1.996145e+03 0.000 506.25 15 0.000000e+00 0.00 1.070307e+06 1.040365e+06 29942.17 NULL
2020 Borough President-Bronx Computer Systems Manager 82472.00000 8.247200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.247200e+04 8.247200e+04 0.00 NULL
2020 Borough President-Bronx Counsel To The Borough President 134280.00000 1.342800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.342800e+05 1.342800e+05 0.00 NULL
2020 Borough President-Bronx Deputy Borough President 166507.00000 1.665070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.665070e+05 1.665070e+05 0.00 NULL
2020 Borough President-Bronx Director Of Community Planning Boards 120784.00000 1.207840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.207840e+05 1.207840e+05 0.00 NULL
2020 Borough President-Bronx Executive Assistant 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2020 Borough President-Bronx Principal Administrative Associate - Non Supvr 64199.00000 6.419900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.419900e+04 6.419900e+04 0.00 NULL
2020 Borough President-Bronx Public Information Officer 112725.00000 1.127250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.127250e+05 1.127250e+05 0.00 NULL
2020 Borough President-Bronx Research And Liaison Coordinator 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2020 Borough President-Bronx Research Liaison Adn Governmental Coordinator 98736.00000 1.974720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.974720e+05 1.974720e+05 0.00 NULL
2020 Borough President-Bronx Secretary To Assistant To President 105235.00000 1.052350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.052350e+05 1.052350e+05 0.00 NULL
2020 Borough President-Bronx Secretary To The Deputy Boro President 81612.00000 8.161200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.161200e+04 8.161200e+04 0.00 NULL
2020 Borough President-Bronx Secretary To The Excutive Assistant 85826.00000 8.582600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.582600e+04 8.582600e+04 0.00 NULL
2020 Borough President-Bronx Secretary To The President 51500.00000 5.150000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.150000e+04 5.150000e+04 0.00 NULL
2020 Borough President-Bronx Special Assistant To The Borough President 99555.00000 2.986650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.986650e+05 2.986650e+05 0.00 NULL
2020 Borough President-Brooklyn Administrative Engineer 17550.00000 1.755000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.755000e+04 1.755000e+04 0.00 NULL
2020 Borough President-Brooklyn Administrative Housing Development Specialist 156102.00000 1.561020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.561020e+05 1.561020e+05 0.00 NULL
2020 Borough President-Brooklyn Assistant To The President 87949.10000 1.758982e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.758982e+06 1.758982e+06 0.00 NULL
2020 Borough President-Brooklyn Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2020 Borough President-Brooklyn Chauffeur-Attendant 86087.00000 8.608700e+04 510.36 5.103600e+02 510.360 8.00 1 5.103600e+02 510.36 8.659736e+04 8.659736e+04 0.00 NULL
2020 Borough President-Brooklyn City Planner 119619.00000 1.196190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.196190e+05 1.196190e+05 0.00 NULL
2020 Borough President-Brooklyn Clerical Associate 55050.00000 1.651500e+05 1202.87 4.009567e+02 0.000 27.25 3 0.000000e+00 0.00 1.663529e+05 1.651500e+05 1202.87 NULL
2020 Borough President-Brooklyn Community Assistant 39031.00000 3.903100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.903100e+04 3.903100e+04 0.00 NULL
2020 Borough President-Brooklyn Community Associate 49029.57063 3.922366e+05 2955.06 3.693825e+02 52.380 81.00 8 5.238000e+01 419.04 3.951916e+05 3.926556e+05 2536.02 NULL
2020 Borough President-Brooklyn Community Coordinator 64907.72278 1.492878e+06 4088.14 1.777452e+02 0.000 99.00 23 0.000000e+00 0.00 1.496966e+06 1.492878e+06 4088.14 NULL
2020 Borough President-Brooklyn Community Service Aide 34733.00000 3.473300e+04 293.01 2.930100e+02 293.010 12.25 1 2.930100e+02 293.01 3.502601e+04 3.502601e+04 0.00 NULL
2020 Borough President-Brooklyn Counsel To The Borough President 110684.00000 1.106840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.106840e+05 1.106840e+05 0.00 NULL
2020 Borough President-Brooklyn Deputy Borough President 172903.00000 1.729030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.729030e+05 1.729030e+05 0.00 NULL
2020 Borough President-Brooklyn Executive Agency Counsel 156249.00000 1.562490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.562490e+05 1.562490e+05 0.00 NULL
2020 Borough President-Brooklyn Executive Assistant 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2020 Borough President-Brooklyn Principal Administrative Associate - Non Supvr 74478.00000 1.489560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.489560e+05 1.489560e+05 0.00 NULL
2020 Borough President-Brooklyn Program Producer 83443.00000 8.344300e+04 6473.56 6.473560e+03 6473.560 99.00 1 6.473560e+03 6473.56 8.991656e+04 8.991656e+04 0.00 NULL
2020 Borough President-Brooklyn Public Information Officer 72100.00000 7.210000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.210000e+04 7.210000e+04 0.00 NULL
2020 Borough President-Brooklyn Research & Liaison Coordinator 80378.00000 8.037800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.037800e+04 8.037800e+04 0.00 NULL
2020 Borough President-Brooklyn Secretary To The President 73671.00000 7.367100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.367100e+04 7.367100e+04 0.00 NULL
2020 Borough President-Brooklyn Special Assistant To The Borough President 109442.00000 1.094420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.094420e+05 1.094420e+05 0.00 NULL
2020 Borough President-Manhattan Adm Manager-Non-Mgrl 81800.00000 8.180000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.180000e+04 8.180000e+04 0.00 NULL
2020 Borough President-Manhattan Admin Contract Specialist 92679.00000 9.267900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.267900e+04 9.267900e+04 0.00 NULL
2020 Borough President-Manhattan Administrative City Planner 88958.00000 8.895800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.895800e+04 8.895800e+04 0.00 NULL
2020 Borough President-Manhattan Administrative Public Information Specialist 80858.00000 8.085800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.085800e+04 8.085800e+04 0.00 NULL
2020 Borough President-Manhattan Administrative Staff Analyst 114639.00000 1.146390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.146390e+05 1.146390e+05 0.00 NULL
2020 Borough President-Manhattan Assistant To The President 94793.50000 1.895870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.895870e+05 1.895870e+05 0.00 NULL
2020 Borough President-Manhattan Associate Director, Borough Improvement Board 87550.00000 8.755000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.755000e+04 8.755000e+04 0.00 NULL
2020 Borough President-Manhattan Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2020 Borough President-Manhattan Chauffeur Attendant 70003.50000 1.400070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.400070e+05 1.400070e+05 0.00 NULL
2020 Borough President-Manhattan Clerical Associate 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2020 Borough President-Manhattan Community Associate 45454.98640 4.090949e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.090949e+05 4.090949e+05 0.00 NULL
2020 Borough President-Manhattan Community Coordinator 62790.20571 1.758126e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 1.758126e+06 1.758126e+06 0.00 NULL
2020 Borough President-Manhattan Community Planning Board Coordinator 56040.83333 3.362450e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.362450e+05 3.362450e+05 0.00 NULL
2020 Borough President-Manhattan Computer Operations Manager 81649.00000 8.164900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.164900e+04 8.164900e+04 0.00 NULL
2020 Borough President-Manhattan Counsel To The Borough President 18526.08000 1.852608e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.852608e+04 1.852608e+04 0.00 NULL
2020 Borough President-Manhattan Deputy Borough President 167180.00000 1.671800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.671800e+05 1.671800e+05 0.00 NULL
2020 Borough President-Manhattan Director Of Community Planning Boards 96159.00000 9.615900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.615900e+04 9.615900e+04 0.00 NULL
2020 Borough President-Manhattan Executive Assistant 156508.00000 3.130160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.130160e+05 3.130160e+05 0.00 NULL
2020 Borough President-Manhattan General Counsel 133900.00000 1.339000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339000e+05 1.339000e+05 0.00 NULL
2020 Borough President-Manhattan Principal Administrative Associate - Non Supvr 52943.00000 5.294300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.294300e+04 5.294300e+04 0.00 NULL
2020 Borough President-Manhattan Public Information Officer 138784.00000 1.387840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.387840e+05 1.387840e+05 0.00 NULL
2020 Borough President-Manhattan Public Relations Officer 81200.00000 1.624000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.624000e+05 1.624000e+05 0.00 NULL
2020 Borough President-Manhattan Secretary To The President 96548.50000 1.930970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.930970e+05 1.930970e+05 0.00 NULL
2020 Borough President-Queens Adm Manager-Non-Mgrl 83197.00000 8.319700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.319700e+04 8.319700e+04 0.00 NULL
2020 Borough President-Queens Administrative Community Relations Specialist 109465.00000 1.094650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.094650e+05 1.094650e+05 0.00 NULL
2020 Borough President-Queens Administrative Engineer 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2020 Borough President-Queens Agency Attorney 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2020 Borough President-Queens Assistant Civil Engineer 80349.00000 8.034900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.034900e+04 8.034900e+04 0.00 NULL
2020 Borough President-Queens Assistant To The President 72500.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2020 Borough President-Queens Associate Staff Analyst 80335.00000 8.033500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.033500e+04 8.033500e+04 0.00 NULL
2020 Borough President-Queens Borough President 179200.00000 3.584000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.584000e+05 3.584000e+05 0.00 NULL
2020 Borough President-Queens Cashier 35473.00000 3.547300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.547300e+04 3.547300e+04 0.00 NULL
2020 Borough President-Queens Chauffeur-Attendant 76000.00000 1.520000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.520000e+05 1.520000e+05 0.00 NULL
2020 Borough President-Queens City Planner 72848.00000 7.284800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.284800e+04 7.284800e+04 0.00 NULL
2020 Borough President-Queens Community Assistant 31883.00000 3.188300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.188300e+04 3.188300e+04 0.00 NULL
2020 Borough President-Queens Community Associate 55757.00000 1.003626e+06 1212.45 6.735833e+01 0.000 27.25 18 0.000000e+00 0.00 1.004838e+06 1.003626e+06 1212.45 NULL
2020 Borough President-Queens Community Coordinator 72996.92308 9.489600e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 9.489600e+05 9.489600e+05 0.00 NULL
2020 Borough President-Queens Computer Associate 68000.00000 6.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.800000e+04 6.800000e+04 0.00 NULL
2020 Borough President-Queens Computer Systems Manager 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2020 Borough President-Queens Director Borough President’s Office Of Administration Queens 118000.00000 1.180000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.180000e+05 1.180000e+05 0.00 NULL
2020 Borough President-Queens Director Of Community Planning Boards 93000.00000 9.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.300000e+04 9.300000e+04 0.00 NULL
2020 Borough President-Queens Engineering Technician 68743.00000 1.374860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.374860e+05 1.374860e+05 0.00 NULL
2020 Borough President-Queens Executive Assistant 155000.00000 3.100000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.100000e+05 3.100000e+05 0.00 NULL
2020 Borough President-Queens Fiscal And Policy Analyst 68000.00000 6.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.800000e+04 6.800000e+04 0.00 NULL
2020 Borough President-Queens Principal Administrative Associate - Non Supvr 75412.00000 1.508240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.508240e+05 1.508240e+05 0.00 NULL
2020 Borough President-Queens Research And Liaison Specialist 70333.33333 2.110000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.110000e+05 2.110000e+05 0.00 NULL
2020 Borough President-Queens Secretary To The President 93000.00000 9.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.300000e+04 9.300000e+04 0.00 NULL
2020 Borough President-Queens Special Assistant To The Borough President 86666.66667 5.200000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.200000e+05 5.200000e+05 0.00 NULL
2020 Borough President-Staten Is Administrative Architect 147650.00000 1.476500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.476500e+05 1.476500e+05 0.00 NULL
2020 Borough President-Staten Is Agency Attorney 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2020 Borough President-Staten Is Assistant To The President 116500.00000 2.330000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.330000e+05 2.330000e+05 0.00 NULL
2020 Borough President-Staten Is Asst Project Planner 34992.62400 3.499262e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.499262e+04 3.499262e+04 0.00 NULL
2020 Borough President-Staten Is Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2020 Borough President-Staten Is Community Associate 49197.24313 3.935779e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 3.935779e+05 3.935779e+05 0.00 NULL
2020 Borough President-Staten Is Community Coordinator 65282.78727 1.436221e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 1.436221e+06 1.436221e+06 0.00 NULL
2020 Borough President-Staten Is Counsel To The Borough President 45642.45000 4.564245e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.564245e+04 4.564245e+04 0.00 NULL
2020 Borough President-Staten Is Deputy Borough President 148820.00000 1.488200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.488200e+05 1.488200e+05 0.00 NULL
2020 Borough President-Staten Is Engineering Technician 72124.00000 7.212400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.212400e+04 7.212400e+04 0.00 NULL
2020 Borough President-Staten Is Executive Assistant 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2020 Borough President-Staten Is Project Planner 47415.06000 4.741506e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.741506e+04 4.741506e+04 0.00 NULL
2020 Borough President-Staten Is Public Information Officer 123500.00000 1.235000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.235000e+05 1.235000e+05 0.00 NULL
2020 Borough President-Staten Is Special Assistant To The Borough President 73134.88000 7.313488e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.313488e+04 7.313488e+04 0.00 NULL
2020 Borough President-Staten Is Summer Graduate Intern 2256.00000 2.256000e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.256000e+03 2.256000e+03 0.00 NULL
2020 Borough President-Staten Is Surveyor 19201.28000 1.920128e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.920128e+04 1.920128e+04 0.00 NULL
2020 Bronx Community Board #1 Community Coordinator 84054.00000 8.405400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.405400e+04 8.405400e+04 0.00 NULL
2020 Bronx Community Board #1 District Manager 145193.00000 1.451930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.451930e+05 1.451930e+05 0.00 NULL
2020 Bronx Community Board #10 Clerical Associate 26256.74000 5.251348e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.251348e+04 5.251348e+04 0.00 NULL
2020 Bronx Community Board #10 Community Assistant 30220.90240 3.022090e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.022090e+04 3.022090e+04 0.00 NULL
2020 Bronx Community Board #10 Community Associate 46449.00000 4.644900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.644900e+04 4.644900e+04 0.00 NULL
2020 Bronx Community Board #10 District Manager 80752.00000 8.075200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.075200e+04 8.075200e+04 0.00 NULL
2020 Bronx Community Board #11 Community Coordinator 69590.50000 1.391810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.391810e+05 1.391810e+05 0.00 NULL
2020 Bronx Community Board #11 District Manager 92447.00000 9.244700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.244700e+04 9.244700e+04 0.00 NULL
2020 Bronx Community Board #12 Community Coordinator 84005.00000 8.400500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.400500e+04 8.400500e+04 0.00 NULL
2020 Bronx Community Board #12 District Manager 129669.00000 1.296690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.296690e+05 1.296690e+05 0.00 NULL
2020 Bronx Community Board #2 Community Assistant 21352.23990 2.135224e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.135224e+04 2.135224e+04 0.00 NULL
2020 Bronx Community Board #2 Community Coordinator 64193.00000 6.419300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.419300e+04 6.419300e+04 0.00 NULL
2020 Bronx Community Board #2 District Manager 125606.00000 1.256060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.256060e+05 1.256060e+05 0.00 NULL
2020 Bronx Community Board #3 District Manager 140435.00000 1.404350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.404350e+05 1.404350e+05 0.00 NULL
2020 Bronx Community Board #3 Principal Administrative Associate - Non Supvr 87127.00000 8.712700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.712700e+04 8.712700e+04 0.00 NULL
2020 Bronx Community Board #4 Community Associate 61406.50000 1.228130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.228130e+05 1.228130e+05 0.00 NULL
2020 Bronx Community Board #4 District Manager 97136.00000 9.713600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.713600e+04 9.713600e+04 0.00 NULL
2020 Bronx Community Board #5 Adm Manager-Non-Mgrl 80798.00000 8.079800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.079800e+04 8.079800e+04 0.00 NULL
2020 Bronx Community Board #5 Community Assistant 27755.89600 2.775590e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.775590e+04 2.775590e+04 0.00 NULL
2020 Bronx Community Board #5 Community Coordinator 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2020 Bronx Community Board #5 District Manager 72100.00000 7.210000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.210000e+04 7.210000e+04 0.00 NULL
2020 Bronx Community Board #6 Community Associate 23332.73917 6.999822e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.999822e+04 6.999822e+04 0.00 NULL
2020 Bronx Community Board #6 District Manager 117975.00000 1.179750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.179750e+05 1.179750e+05 0.00 NULL
2020 Bronx Community Board #7 Community Associate 44083.00000 4.408300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.408300e+04 4.408300e+04 0.00 NULL
2020 Bronx Community Board #7 Community Coordinator 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2020 Bronx Community Board #7 District Manager 96611.00000 9.661100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.661100e+04 9.661100e+04 0.00 NULL
2020 Bronx Community Board #8 Community Associate 49546.33333 1.486390e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.486390e+05 1.486390e+05 0.00 NULL
2020 Bronx Community Board #8 Community Coordinator 63000.00000 6.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.300000e+04 6.300000e+04 0.00 NULL
2020 Bronx Community Board #8 District Manager 88467.00000 8.846700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.846700e+04 8.846700e+04 0.00 NULL
2020 Bronx Community Board #9 Assistant District Manager 65574.00000 6.557400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.557400e+04 6.557400e+04 0.00 NULL
2020 Bronx Community Board #9 College Aide 6740.00000 1.348000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.348000e+04 1.348000e+04 0.00 NULL
2020 Bronx Community Board #9 Community Associate 50985.00000 5.098500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.098500e+04 5.098500e+04 0.00 NULL
2020 Bronx Community Board #9 District Manager 120314.00000 1.203140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.203140e+05 1.203140e+05 0.00 NULL
2020 Bronx District Attorney Adm Manager-Non-Mgrl 74917.85714 5.244250e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.244250e+05 5.244250e+05 0.00 NULL
2020 Bronx District Attorney Administrative Accountant 148600.00000 1.486000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.486000e+05 1.486000e+05 0.00 NULL
2020 Bronx District Attorney Administrative Chief 112950.00000 4.518000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.518000e+05 4.518000e+05 0.00 NULL
2020 Bronx District Attorney Administrative Community Relations Specialist 124750.00000 2.495000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.495000e+05 2.495000e+05 0.00 NULL
2020 Bronx District Attorney Administrative Staff Analyst 103382.00000 1.033820e+05 618.12 6.181200e+02 618.120 10.75 1 6.181200e+02 618.12 1.040001e+05 1.040001e+05 0.00 NULL
2020 Bronx District Attorney Agency Chief Contracting Officer 211800.00000 2.118000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.118000e+05 2.118000e+05 0.00 NULL
2020 Bronx District Attorney Assistant District Attorney 95912.05036 5.332710e+07 1443.11 2.595522e+00 0.000 51.25 556 0.000000e+00 0.00 5.332854e+07 5.332710e+07 1443.11 NULL
2020 Bronx District Attorney Certified It Administrator 118450.00000 1.184500e+05 129.67 1.296700e+02 129.670 2.00 1 1.296700e+02 129.67 1.185797e+05 1.185797e+05 0.00 NULL
2020 Bronx District Attorney Certified It Developer 120779.66667 3.623390e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.623390e+05 3.623390e+05 0.00 NULL
2020 Bronx District Attorney City Tax Auditor 66890.00000 6.689000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.689000e+04 6.689000e+04 0.00 NULL
2020 Bronx District Attorney Clerical Associate 47027.65909 2.069217e+06 38514.88 8.753382e+02 25.715 1161.00 44 2.571500e+01 1131.46 2.107732e+06 2.070348e+06 37383.42 NULL
2020 Bronx District Attorney College Aide 3071.28000 4.299792e+04 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 4.299792e+04 4.299792e+04 0.00 NULL
2020 Bronx District Attorney Community Assistant 36222.24828 5.252226e+06 102871.77 7.094605e+02 17.800 4321.75 145 1.780000e+01 2581.00 5.355098e+06 5.254807e+06 100290.77 NULL
2020 Bronx District Attorney Community Associate 45983.80952 1.255358e+07 106088.59 3.886029e+02 0.000 3502.25 273 0.000000e+00 0.00 1.265967e+07 1.255358e+07 106088.59 NULL
2020 Bronx District Attorney Community Coordinator 66206.82456 3.773789e+06 79464.45 1.394113e+03 0.000 1852.75 57 0.000000e+00 0.00 3.853253e+06 3.773789e+06 79464.45 NULL
2020 Bronx District Attorney Community Service Aide 29360.00000 1.761600e+05 6278.14 1.046357e+03 263.740 316.25 6 2.637400e+02 1582.44 1.824381e+05 1.777424e+05 4695.70 NULL
2020 Bronx District Attorney Computer Associate 87199.75000 3.487990e+05 1799.46 4.498650e+02 220.380 29.00 4 2.203800e+02 881.52 3.505985e+05 3.496805e+05 917.94 NULL
2020 Bronx District Attorney Computer Systems Manager 133200.00000 1.332000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.332000e+05 1.332000e+05 0.00 NULL
2020 Bronx District Attorney Director Of Public Information 121500.00000 1.215000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.215000e+05 1.215000e+05 0.00 NULL
2020 Bronx District Attorney District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2020 Bronx District Attorney Interpreter 63147.27273 6.946200e+05 29861.30 2.714664e+03 3045.910 883.75 11 2.714664e+03 29861.30 7.244813e+05 7.244813e+05 0.00 NULL
2020 Bronx District Attorney Management Auditor 96473.00000 9.647300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.647300e+04 9.647300e+04 0.00 NULL
2020 Bronx District Attorney Media Services Technician 58300.00000 1.166000e+05 269.58 1.347900e+02 134.790 5.25 2 1.347900e+02 269.58 1.168696e+05 1.168696e+05 0.00 NULL
2020 Bronx District Attorney Paralegal Aide 53630.00000 1.072600e+05 89.73 4.486500e+01 44.865 2.75 2 4.486500e+01 89.73 1.073497e+05 1.073497e+05 0.00 NULL
2020 Bronx District Attorney Principal Accountant Investigator 128300.00000 5.132000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.132000e+05 5.132000e+05 0.00 NULL
2020 Bronx District Attorney Principal Administrative Associate - Non Supvr 70466.38462 9.160630e+05 17977.95 1.382919e+03 0.000 425.75 13 0.000000e+00 0.00 9.340409e+05 9.160630e+05 17977.95 NULL
2020 Bronx District Attorney Private Secretary 94100.00000 9.410000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.410000e+04 9.410000e+04 0.00 NULL
2020 Bronx District Attorney Procurement Analyst 91728.00000 9.172800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.172800e+04 9.172800e+04 0.00 NULL
2020 Bronx District Attorney Reporter/ Stenographer 73007.94500 1.606175e+06 3274.64 1.488473e+02 0.000 70.25 22 0.000000e+00 0.00 1.609449e+06 1.606175e+06 3274.64 NULL
2020 Bronx District Attorney Secretary 49604.60000 2.480230e+05 186.25 3.725000e+01 0.000 7.25 5 0.000000e+00 0.00 2.482092e+05 2.480230e+05 186.25 NULL
2020 Bronx District Attorney Special Assistant To The District Attorney 151800.00000 7.590000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.590000e+05 7.590000e+05 0.00 NULL
2020 Bronx District Attorney Special Officer 44618.30769 5.800380e+05 12437.48 9.567292e+02 378.040 343.00 13 3.780400e+02 4914.52 5.924755e+05 5.849525e+05 7522.96 NULL
2020 Bronx District Attorney Staff Analyst 74479.00000 7.447900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.447900e+04 7.447900e+04 0.00 NULL
2020 Bronx District Attorney Student Legal Assistant 3696.27302 1.367621e+05 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 1.367621e+05 1.367621e+05 0.00 NULL
2020 Brooklyn Community Board #1 Assistant District Manager 63255.00000 6.325500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.325500e+04 6.325500e+04 0.00 NULL
2020 Brooklyn Community Board #1 Community Associate 44083.00000 4.408300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.408300e+04 4.408300e+04 0.00 NULL
2020 Brooklyn Community Board #1 District Manager 133081.00000 1.330810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.330810e+05 1.330810e+05 0.00 NULL
2020 Brooklyn Community Board #10 College Aide 3237.57000 6.475140e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.475140e+03 6.475140e+03 0.00 NULL
2020 Brooklyn Community Board #10 Community Assistant 26401.18250 2.640118e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.640118e+04 2.640118e+04 0.00 NULL
2020 Brooklyn Community Board #10 Community Coordinator 77866.00000 7.786600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.786600e+04 7.786600e+04 0.00 NULL
2020 Brooklyn Community Board #10 District Manager 128778.00000 1.287780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287780e+05 1.287780e+05 0.00 NULL
2020 Brooklyn Community Board #11 Community Assistant 26467.32800 2.646733e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.646733e+04 2.646733e+04 0.00 NULL
2020 Brooklyn Community Board #11 Community Coordinator 69321.00000 6.932100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.932100e+04 6.932100e+04 0.00 NULL
2020 Brooklyn Community Board #11 District Manager 100285.00000 1.002850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.002850e+05 1.002850e+05 0.00 NULL
2020 Brooklyn Community Board #12 Community Assistant 39153.00000 3.915300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.915300e+04 3.915300e+04 0.00 NULL
2020 Brooklyn Community Board #12 Community Coordinator 28416.71700 2.841672e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.841672e+04 2.841672e+04 0.00 NULL
2020 Brooklyn Community Board #12 District Manager 125287.00000 1.252870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.252870e+05 1.252870e+05 0.00 NULL
2020 Brooklyn Community Board #13 Community Associate 47610.00000 4.761000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.761000e+04 4.761000e+04 0.00 NULL
2020 Brooklyn Community Board #13 Community Service Aide 40624.00000 4.062400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.062400e+04 4.062400e+04 0.00 NULL
2020 Brooklyn Community Board #13 District Manager 92234.00000 9.223400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.223400e+04 9.223400e+04 0.00 NULL
2020 Brooklyn Community Board #13 Secretary 44624.67780 4.462468e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.462468e+04 4.462468e+04 0.00 NULL
2020 Brooklyn Community Board #14 Community Coordinator 63902.73200 1.278055e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.278055e+05 1.278055e+05 0.00 NULL
2020 Brooklyn Community Board #14 District Manager 114035.00000 1.140350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.140350e+05 1.140350e+05 0.00 NULL
2020 Brooklyn Community Board #15 College Aide 6549.63750 6.549637e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.549637e+03 6.549637e+03 0.00 NULL
2020 Brooklyn Community Board #15 Community Associate 51780.50000 1.035610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.035610e+05 1.035610e+05 0.00 NULL
2020 Brooklyn Community Board #15 District Manager 68796.00000 6.879600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.879600e+04 6.879600e+04 0.00 NULL
2020 Brooklyn Community Board #16 Community Assistant 29826.69280 5.965339e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.965339e+04 5.965339e+04 0.00 NULL
2020 Brooklyn Community Board #16 District Manager 117917.00000 1.179170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.179170e+05 1.179170e+05 0.00 NULL
2020 Brooklyn Community Board #17 Community Assistant 38802.00000 7.760400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.760400e+04 7.760400e+04 0.00 NULL
2020 Brooklyn Community Board #17 Community Coordinator 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2020 Brooklyn Community Board #17 District Manager 84829.00000 8.482900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.482900e+04 8.482900e+04 0.00 NULL
2020 Brooklyn Community Board #18 Community Assistant 37442.00000 3.744200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.744200e+04 3.744200e+04 0.00 NULL
2020 Brooklyn Community Board #18 Community Service Aide 33764.00000 3.376400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.376400e+04 3.376400e+04 0.00 NULL
2020 Brooklyn Community Board #18 District Manager 162284.00000 1.622840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.622840e+05 1.622840e+05 0.00 NULL
2020 Brooklyn Community Board #2 Community Assistant 7678.20820 1.535642e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.535642e+04 1.535642e+04 0.00 NULL
2020 Brooklyn Community Board #2 Community Associate 40566.00000 8.113200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.113200e+04 8.113200e+04 0.00 NULL
2020 Brooklyn Community Board #2 Community Coordinator 66526.00000 6.652600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.652600e+04 6.652600e+04 0.00 NULL
2020 Brooklyn Community Board #2 District Manager 105360.00000 1.053600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.053600e+05 1.053600e+05 0.00 NULL
2020 Brooklyn Community Board #3 Assistant District Manager 65370.00000 6.537000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.537000e+04 6.537000e+04 0.00 NULL
2020 Brooklyn Community Board #3 Community Assistant 41879.00000 4.187900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.187900e+04 4.187900e+04 0.00 NULL
2020 Brooklyn Community Board #3 District Manager 101333.00000 1.013330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.013330e+05 1.013330e+05 0.00 NULL
2020 Brooklyn Community Board #4 Community Associate 63533.00000 6.353300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.353300e+04 6.353300e+04 0.00 NULL
2020 Brooklyn Community Board #4 District Manager 76468.00000 7.646800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.646800e+04 7.646800e+04 0.00 NULL
2020 Brooklyn Community Board #4 Principal Administrative Associate - Non Supvr 57131.00000 5.713100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.713100e+04 5.713100e+04 0.00 NULL
2020 Brooklyn Community Board #5 Community Associate 38558.00000 7.711600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.711600e+04 7.711600e+04 0.00 NULL
2020 Brooklyn Community Board #5 Community Coordinator 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2020 Brooklyn Community Board #5 District Manager 93500.00000 9.350000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.350000e+04 9.350000e+04 0.00 NULL
2020 Brooklyn Community Board #6 Community Coordinator 70443.00000 1.408860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.408860e+05 1.408860e+05 0.00 NULL
2020 Brooklyn Community Board #6 District Manager 105758.00000 2.115160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.115160e+05 2.115160e+05 0.00 NULL
2020 Brooklyn Community Board #7 Community Associate 51436.00000 5.143600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.143600e+04 5.143600e+04 0.00 NULL
2020 Brooklyn Community Board #7 Community Coordinator 71241.00000 7.124100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.124100e+04 7.124100e+04 0.00 NULL
2020 Brooklyn Community Board #7 District Manager 100498.00000 1.004980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.004980e+05 1.004980e+05 0.00 NULL
2020 Brooklyn Community Board #8 Community Coordinator 77600.00000 7.760000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.760000e+04 7.760000e+04 0.00 NULL
2020 Brooklyn Community Board #8 District Manager 117775.00000 1.177750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.177750e+05 1.177750e+05 0.00 NULL
2020 Brooklyn Community Board #9 Community Assistant 20242.96800 4.048594e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.048594e+04 4.048594e+04 0.00 NULL
2020 Brooklyn Community Board #9 Community Coordinator 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2020 Business Integrity Commission Accountant 66984.00000 6.698400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.698400e+04 6.698400e+04 0.00 NULL
2020 Business Integrity Commission Adm Manager-Non-Mgrl 73898.00000 7.389800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.389800e+04 7.389800e+04 0.00 NULL
2020 Business Integrity Commission Admin Contract Specialist 120847.00000 2.416940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.416940e+05 2.416940e+05 0.00 NULL
2020 Business Integrity Commission Administrative Accountant 113870.00000 1.138700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.138700e+05 1.138700e+05 0.00 NULL
2020 Business Integrity Commission Administrative Investigator 146634.00000 1.466340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.466340e+05 1.466340e+05 0.00 NULL
2020 Business Integrity Commission Administrative Staff Analyst 108180.66667 3.245420e+05 9320.92 3.106973e+03 0.000 137.75 3 0.000000e+00 0.00 3.338629e+05 3.245420e+05 9320.92 NULL
2020 Business Integrity Commission Agency Attorney 84635.88500 3.385435e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.385435e+05 3.385435e+05 0.00 NULL
2020 Business Integrity Commission Associate Fraud Investigator 69344.16667 4.160650e+05 42533.74 7.088957e+03 4345.990 886.50 6 4.345990e+03 26075.94 4.585987e+05 4.421409e+05 16457.80 NULL
2020 Business Integrity Commission Associate Staff Analyst 89093.50000 1.781870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.781870e+05 1.781870e+05 0.00 NULL
2020 Business Integrity Commission Certified It Developer 84254.00000 8.425400e+04 1740.87 1.740870e+03 1740.870 28.50 1 1.740870e+03 1740.87 8.599487e+04 8.599487e+04 0.00 NULL
2020 Business Integrity Commission Chair 239629.50000 4.792590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.792590e+05 4.792590e+05 0.00 NULL
2020 Business Integrity Commission Clerical Associate 56001.50000 1.120030e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.120030e+05 1.120030e+05 0.00 NULL
2020 Business Integrity Commission Community Assistant 36347.73500 7.269547e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.269547e+04 7.269547e+04 0.00 NULL
2020 Business Integrity Commission Community Associate 48909.66765 1.662929e+06 41670.68 1.225608e+03 0.000 1335.50 34 0.000000e+00 0.00 1.704599e+06 1.662929e+06 41670.68 NULL
2020 Business Integrity Commission Community Coordinator 72530.25000 5.802420e+05 10242.38 1.280297e+03 0.000 223.75 8 0.000000e+00 0.00 5.904844e+05 5.802420e+05 10242.38 NULL
2020 Business Integrity Commission Computer Programmer Analyst 71227.00000 7.122700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.122700e+04 7.122700e+04 0.00 NULL
2020 Business Integrity Commission Computer Systems Manager 98615.00000 9.861500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.861500e+04 9.861500e+04 0.00 NULL
2020 Business Integrity Commission Deputy Commissioner Of Investigations 124312.50000 2.486250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.486250e+05 2.486250e+05 0.00 NULL
2020 Business Integrity Commission Director Of Investigations 103000.00000 1.030000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030000e+05 1.030000e+05 0.00 NULL
2020 Business Integrity Commission Director Of Investigative Audits 118167.00000 1.181670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.181670e+05 1.181670e+05 0.00 NULL
2020 Business Integrity Commission Executive Agency Counsel 113624.66667 1.022622e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.022622e+06 1.022622e+06 0.00 NULL
2020 Business Integrity Commission Management Auditor 77935.00000 1.558700e+05 3407.92 1.703960e+03 1703.960 56.50 2 1.703960e+03 3407.92 1.592779e+05 1.592779e+05 0.00 NULL
2020 Business Integrity Commission Market Agent 55569.88889 5.001290e+05 59287.79 6.587532e+03 2967.680 1397.75 9 2.967680e+03 26709.12 5.594168e+05 5.268381e+05 32578.67 NULL
2020 Business Integrity Commission Principal Administrative Associate - Non Supvr 61298.00000 1.225960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.225960e+05 1.225960e+05 0.00 NULL
2020 Campaign Finance Board Admin Asst-Campaign Fin Board 60880.92379 9.132139e+05 5946.06 3.964040e+02 0.000 109.00 15 0.000000e+00 0.00 9.191599e+05 9.132139e+05 5946.06 NULL
2020 Campaign Finance Board Analyst 75625.07493 5.671881e+06 177317.20 2.364229e+03 529.230 3225.55 75 5.292300e+02 39692.25 5.849198e+06 5.711573e+06 137624.95 NULL
2020 Campaign Finance Board Associate Staff Analyst 115238.00000 1.152380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.152380e+05 1.152380e+05 0.00 NULL
2020 Campaign Finance Board Attorney-Campaign Fin Board 111281.75000 8.902540e+05 266.51 3.331375e+01 0.000 3.50 8 0.000000e+00 0.00 8.905205e+05 8.902540e+05 266.51 NULL
2020 Campaign Finance Board College Aide 7958.33611 7.162502e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.162502e+04 7.162502e+04 0.00 NULL
2020 Campaign Finance Board Deputy Executive Director Campaign Finance Board 173345.33333 5.200360e+05 14513.12 4.837707e+03 0.000 141.75 3 0.000000e+00 0.00 5.345491e+05 5.200360e+05 14513.12 NULL
2020 Campaign Finance Board Director Of Public Relations 158881.00000 1.588810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.588810e+05 1.588810e+05 0.00 NULL
2020 Campaign Finance Board Executive Agency Counsel 186369.50000 3.727390e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.727390e+05 3.727390e+05 0.00 NULL
2020 Campaign Finance Board Executive Director 263017.00000 2.630170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.630170e+05 2.630170e+05 0.00 NULL
2020 Campaign Finance Board Systems Administrator-Cam Fin Bd 110051.68000 2.751292e+06 179423.75 7.176950e+03 424.640 2419.00 25 4.246400e+02 10616.00 2.930716e+06 2.761908e+06 168807.75 NULL
2020 City Clerk Administrative Investigator 94934.00000 9.493400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.493400e+04 9.493400e+04 0.00 NULL
2020 City Clerk Administrative Management Auditor 202050.00000 2.020500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.020500e+05 2.020500e+05 0.00 NULL
2020 City Clerk Agency Attorney 83000.00000 8.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.300000e+04 8.300000e+04 0.00 NULL
2020 City Clerk Associate Investigator 58740.00000 5.874000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.874000e+04 5.874000e+04 0.00 NULL
2020 City Clerk Chief Of Staff 111145.00000 1.111450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.111450e+05 1.111450e+05 0.00 NULL
2020 City Clerk City Clerk & Clerk Of Council 238216.00000 2.382160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.382160e+05 2.382160e+05 0.00 NULL
2020 City Clerk Clerical Associate 44096.26667 1.984332e+06 0.00 0.000000e+00 0.000 0.00 45 0.000000e+00 0.00 1.984332e+06 1.984332e+06 0.00 NULL
2020 City Clerk College Aide 10804.78409 1.188526e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.188526e+05 1.188526e+05 0.00 NULL
2020 City Clerk Community Assistant 45159.00000 4.515900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.515900e+04 4.515900e+04 0.00 NULL
2020 City Clerk Community Associate 48573.75000 1.942950e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.942950e+05 1.942950e+05 0.00 NULL
2020 City Clerk Community Coordinator 82961.50000 1.659230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.659230e+05 1.659230e+05 0.00 NULL
2020 City Clerk Deputy City Clerk 154531.75000 6.181270e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.181270e+05 6.181270e+05 0.00 NULL
2020 City Clerk Executive Agency Counsel 171153.00000 1.711530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.711530e+05 1.711530e+05 0.00 NULL
2020 City Clerk Executive Assistant To The City Clerk 94412.00000 9.441200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.441200e+04 9.441200e+04 0.00 NULL
2020 City Clerk Executive Assistant To The First Deputy Clerk 52765.00000 5.276500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.276500e+04 5.276500e+04 0.00 NULL
2020 City Clerk Principal Administrative Associate - Non Supvr 67883.85714 4.751870e+05 12.05 1.721429e+00 0.000 0.00 7 0.000000e+00 0.00 4.751990e+05 4.751870e+05 12.05 NULL
2020 City Clerk Secretary 33906.00000 3.390600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.390600e+04 3.390600e+04 0.00 NULL
2020 City Council Assistant Director Of Administration 142765.75000 1.142126e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.142126e+06 1.142126e+06 0.00 NULL
2020 City Council Assistant Director Of Finance 152711.00000 1.527110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.527110e+05 1.527110e+05 0.00 NULL
2020 City Council Assistant Director Of Legal Services 132699.64286 1.857795e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.857795e+06 1.857795e+06 0.00 NULL
2020 City Council Assistant Sergeant At Arms 53250.61538 6.922580e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 6.922580e+05 6.922580e+05 0.00 NULL
2020 City Council Chief Of Staff 252762.00000 2.527620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.527620e+05 2.527620e+05 0.00 NULL
2020 City Council Communication Assistant 85534.40000 1.283016e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.283016e+06 1.283016e+06 0.00 NULL
2020 City Council Council Member 148500.00000 7.276500e+06 0.00 0.000000e+00 0.000 0.00 49 0.000000e+00 0.00 7.276500e+06 7.276500e+06 0.00 NULL
2020 City Council Councilmanic Aide 48475.07977 2.491619e+07 0.00 0.000000e+00 0.000 0.00 514 0.000000e+00 0.00 2.491619e+07 2.491619e+07 0.00 NULL
2020 City Council Deputy Chief Of Staff 202339.80000 1.011699e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.011699e+06 1.011699e+06 0.00 NULL
2020 City Council Deputy Director 145262.93750 2.324207e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.324207e+06 2.324207e+06 0.00 NULL
2020 City Council Deputy Director- Finance 192204.25000 7.688170e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.688170e+05 7.688170e+05 0.00 NULL
2020 City Council Deputy Director-Legal Division 187551.50000 3.751030e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.751030e+05 3.751030e+05 0.00 NULL
2020 City Council Deputy Director-Office Of Communications 154500.00000 1.545000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.545000e+05 1.545000e+05 0.00 NULL
2020 City Council Deputy Unit Chief 84107.00000 8.410700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.410700e+04 8.410700e+04 0.00 NULL
2020 City Council Director 169347.90000 1.693479e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.693479e+06 1.693479e+06 0.00 NULL
2020 City Council Director Legal Division/Gen Counsel& Spec Counsel 199570.50000 3.991410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.991410e+05 3.991410e+05 0.00 NULL
2020 City Council Director Of Council Services Bureau 200103.00000 2.001030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.001030e+05 2.001030e+05 0.00 NULL
2020 City Council Director Of Finance 235000.00000 2.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.350000e+05 2.350000e+05 0.00 NULL
2020 City Council Director Of Land Use Division 200103.00000 2.001030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.001030e+05 2.001030e+05 0.00 NULL
2020 City Council Director-Office Of Communications 194838.00000 1.948380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.948380e+05 1.948380e+05 0.00 NULL
2020 City Council Director-Office Of Policy 163600.00000 1.636000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.636000e+05 1.636000e+05 0.00 NULL
2020 City Council Executive Legislative Coordinator 205495.50000 4.109910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.109910e+05 4.109910e+05 0.00 NULL
2020 City Council Legislative Administrative Assistant 59266.14286 8.297260e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 8.297260e+05 8.297260e+05 0.00 NULL
2020 City Council Legislative Administrative Manager 90511.47619 1.900741e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.900741e+06 1.900741e+06 0.00 NULL
2020 City Council Legislative Analyst 104264.50000 2.085290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.085290e+05 2.085290e+05 0.00 NULL
2020 City Council Legislative Assistant 65863.56721 5.071495e+06 0.00 0.000000e+00 0.000 0.00 77 0.000000e+00 0.00 5.071495e+06 5.071495e+06 0.00 NULL
2020 City Council Legislative Clerk 33654.68750 1.346188e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.346188e+05 1.346188e+05 0.00 NULL
2020 City Council Legislative Computer Support Specialist 71013.28571 4.970930e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.970930e+05 4.970930e+05 0.00 NULL
2020 City Council Legislative Coordinator 79615.80000 7.961580e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.961580e+05 7.961580e+05 0.00 NULL
2020 City Council Legislative Counsel 101341.21429 7.093885e+06 0.00 0.000000e+00 0.000 0.00 70 0.000000e+00 0.00 7.093885e+06 7.093885e+06 0.00 NULL
2020 City Council Legislative Financial Analyst 64608.16667 1.550596e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 1.550596e+06 1.550596e+06 0.00 NULL
2020 City Council Legislative Intern 4043.22708 1.698155e+05 0.00 0.000000e+00 0.000 0.00 42 0.000000e+00 0.00 1.698155e+05 1.698155e+05 0.00 NULL
2020 City Council Legislative Investigator 63121.77778 5.680960e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.680960e+05 5.680960e+05 0.00 NULL
2020 City Council Legislative Messenger 52000.00000 5.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.200000e+04 5.200000e+04 0.00 NULL
2020 City Council Legislative Policy Analyst 71731.14286 1.506354e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.506354e+06 1.506354e+06 0.00 NULL
2020 City Council Legislative Programmer/Analyst 73732.72727 8.110600e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 8.110600e+05 8.110600e+05 0.00 NULL
2020 City Council Legislative Project Manager 84440.75000 6.755260e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.755260e+05 6.755260e+05 0.00 NULL
2020 City Council Legislative Support Service Coord 57783.66667 1.733510e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.733510e+05 1.733510e+05 0.00 NULL
2020 City Council Legislative Systems Manager 123680.00000 3.710400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.710400e+05 3.710400e+05 0.00 NULL
2020 City Council Minority Leader 148500.00000 1.485000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.485000e+05 1.485000e+05 0.00 NULL
2020 City Council Principal Legislative Financial Analyst 110583.66667 9.952530e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.952530e+05 9.952530e+05 0.00 NULL
2020 City Council Senior Legislative Financial Analyst 77205.50000 6.176440e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.176440e+05 6.176440e+05 0.00 NULL
2020 City Council Senior Legislative Investigator 82400.00000 8.240000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.240000e+04 8.240000e+04 0.00 NULL
2020 City Council Senior Legislative Policy Analyst 84725.87500 1.355614e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.355614e+06 1.355614e+06 0.00 NULL
2020 City Council Sergeant At Arms 110584.00000 1.105840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.105840e+05 1.105840e+05 0.00 NULL
2020 City Council Speaker/Majority Leader 164500.00000 1.645000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.645000e+05 1.645000e+05 0.00 NULL
2020 City Council Special Advisor To The Director 134805.00000 1.078440e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.078440e+06 1.078440e+06 0.00 NULL
2020 Civil Service Commission Agency Attorney 85279.00000 2.558370e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.558370e+05 2.558370e+05 0.00 NULL
2020 Civil Service Commission Agency Attorney Interne 62397.00000 6.239700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.239700e+04 6.239700e+04 0.00 NULL
2020 Civil Service Commission Chairman 1603.08130 1.603081e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.603081e+03 1.603081e+03 0.00 NULL
2020 Civil Service Commission Commissioner 1408.11300 4.224339e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.224339e+03 4.224339e+03 0.00 NULL
2020 Civil Service Commission Community Associate 46051.33333 1.381540e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.381540e+05 1.381540e+05 0.00 NULL
2020 Civil Service Commission Executive Agency Counsel 144553.50000 2.891070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.891070e+05 2.891070e+05 0.00 NULL
2020 Civil Service Commission Secretary Of The Commission 117558.00000 1.175580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.175580e+05 1.175580e+05 0.00 NULL
2020 Civilian Complaint Review Bd Adm Manager-Non-Mgrl 106193.00000 1.061930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.061930e+05 1.061930e+05 0.00 NULL
2020 Civilian Complaint Review Bd Administrative Director Of Social Services 103000.00000 1.030000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030000e+05 1.030000e+05 0.00 NULL
2020 Civilian Complaint Review Bd Administrative Staff Analyst 185711.09000 1.857111e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.857111e+05 1.857111e+05 0.00 NULL
2020 Civilian Complaint Review Bd Agency Attorney 86100.00000 8.610000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.610000e+04 8.610000e+04 0.00 NULL
2020 Civilian Complaint Review Bd Certified It Administrator 123600.00000 1.236000e+05 13758.80 1.375880e+04 13758.800 188.50 1 1.375880e+04 13758.80 1.373588e+05 1.373588e+05 0.00 NULL
2020 Civilian Complaint Review Bd Clerical Associate 56316.43000 1.689493e+05 1858.40 6.194667e+02 0.000 48.75 3 0.000000e+00 0.00 1.708077e+05 1.689493e+05 1858.40 NULL
2020 Civilian Complaint Review Bd College Aide 5936.50000 5.936500e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.936500e+03 5.936500e+03 0.00 NULL
2020 Civilian Complaint Review Bd Community Assistant 24581.77200 4.916354e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.916354e+04 4.916354e+04 0.00 NULL
2020 Civilian Complaint Review Bd Community Associate 43503.86076 3.915347e+05 12556.95 1.395217e+03 245.850 433.00 9 2.458500e+02 2212.65 4.040917e+05 3.937474e+05 10344.30 NULL
2020 Civilian Complaint Review Bd Community Coordinator 78220.01545 8.604202e+05 36954.81 3.359528e+03 2098.660 786.50 11 2.098660e+03 23085.26 8.973750e+05 8.835054e+05 13869.55 NULL
2020 Civilian Complaint Review Bd Computer Operations Manager 127281.00000 1.272810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.272810e+05 1.272810e+05 0.00 NULL
2020 Civilian Complaint Review Bd Computer Specialist 112587.00000 1.125870e+05 4510.53 4.510530e+03 4510.530 65.50 1 4.510530e+03 4510.53 1.170975e+05 1.170975e+05 0.00 NULL
2020 Civilian Complaint Review Bd Computer Systems Manager 111543.00000 2.230860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.230860e+05 2.230860e+05 0.00 NULL
2020 Civilian Complaint Review Bd Deputy Assistant Director 129841.49692 1.687939e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.687939e+06 1.687939e+06 0.00 NULL
2020 Civilian Complaint Review Bd Deputy Executive Director 193088.46000 5.792654e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.792654e+05 5.792654e+05 0.00 NULL
2020 Civilian Complaint Review Bd Executive Agency Counsel 130509.60529 2.218663e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.218663e+06 2.218663e+06 0.00 NULL
2020 Civilian Complaint Review Bd Executive Director 226385.43000 2.263854e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263854e+05 2.263854e+05 0.00 NULL
2020 Civilian Complaint Review Bd Executive Program Specialist 126760.00000 1.267600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.267600e+05 1.267600e+05 0.00 NULL
2020 Civilian Complaint Review Bd Investigative Manager 105533.11111 1.899596e+06 6188.78 3.438211e+02 0.000 128.25 18 0.000000e+00 0.00 1.905785e+06 1.899596e+06 6188.78 NULL
2020 Civilian Complaint Review Bd Investigator 54130.46610 6.387395e+06 181724.99 1.540042e+03 244.230 4829.50 118 2.442300e+02 28819.14 6.569120e+06 6.416214e+06 152905.85 NULL
2020 Civilian Complaint Review Bd Member, Civilian Complaint Review Board 135.10167 1.621220e+03 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.621220e+03 1.621220e+03 0.00 NULL
2020 Civilian Complaint Review Bd Principal Administrative Associate - Non Supvr 68365.33333 2.050960e+05 2854.09 9.513633e+02 0.000 52.00 3 0.000000e+00 0.00 2.079501e+05 2.050960e+05 2854.09 NULL
2020 Civilian Complaint Review Bd Procurement Analyst 77716.00000 1.554320e+05 640.16 3.200800e+02 320.080 14.00 2 3.200800e+02 640.16 1.560722e+05 1.560722e+05 0.00 NULL
2020 Civilian Complaint Review Bd Secretary 64467.00000 1.289340e+05 3098.12 1.549060e+03 1549.060 69.25 2 1.549060e+03 3098.12 1.320321e+05 1.320321e+05 0.00 NULL
2020 Civilian Complaint Review Bd Special Officer 49465.53750 4.946554e+04 3113.48 3.113480e+03 3113.480 89.50 1 3.113480e+03 3113.48 5.257902e+04 5.257902e+04 0.00 NULL
2020 Civilian Complaint Review Bd Strategic Initiative Specialist 95273.33333 2.858200e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.858200e+05 2.858200e+05 0.00 NULL
2020 Civilian Complaint Review Bd Supervisor Of Investigators 85986.31250 1.375781e+06 92750.60 5.796913e+03 4318.050 1745.25 16 4.318050e+03 69088.80 1.468532e+06 1.444870e+06 23661.80 NULL
2020 Community College (Bronx) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 201 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Bronx) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Bronx) Adjunct College Lab Tech 6280.25849 3.328537e+05 0.00 0.000000e+00 0.000 0.00 53 0.000000e+00 0.00 3.328537e+05 3.328537e+05 0.00 NULL
2020 Community College (Bronx) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 587 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Bronx) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Bronx) Adjunct Senior College Lab Tech 16416.70000 1.641670e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.641670e+04 1.641670e+04 0.00 NULL
2020 Community College (Bronx) Administrator 152535.00000 6.101400e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.101400e+05 6.101400e+05 0.00 NULL
2020 Community College (Bronx) Administrator Supt Campus B/G 96688.00000 9.668800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.668800e+04 9.668800e+04 0.00 NULL
2020 Community College (Bronx) Assistant Administrator 141974.00000 1.419740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.419740e+05 1.419740e+05 0.00 NULL
2020 Community College (Bronx) Assistant College Security Director 82728.00000 8.272800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.272800e+04 8.272800e+04 0.00 NULL
2020 Community College (Bronx) Assistant Dean 128282.00000 1.282820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.282820e+05 1.282820e+05 0.00 NULL
2020 Community College (Bronx) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 161 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Bronx) Assistant Purchasing Agent 44511.66667 1.335350e+05 233.45 7.781667e+01 0.000 9.58 3 0.000000e+00 0.00 1.337685e+05 1.335350e+05 233.45 NULL
2020 Community College (Bronx) Assistant To Heo 63829.86111 2.297875e+06 1185.23 3.292306e+01 0.000 21.50 36 0.000000e+00 0.00 2.299060e+06 2.297875e+06 1185.23 NULL
2020 Community College (Bronx) Assistant Vice President 145123.00000 4.353690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.353690e+05 4.353690e+05 0.00 NULL
2020 Community College (Bronx) Associate Administrator 142000.00000 1.420000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.420000e+05 1.420000e+05 0.00 NULL
2020 Community College (Bronx) Associate Dean 141974.00000 4.259220e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.259220e+05 4.259220e+05 0.00 NULL
2020 Community College (Bronx) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 123 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Bronx) Auto Mechanic NA NA 2458.98 1.229490e+03 1229.490 25.50 2 1.229490e+03 2458.98 NA NA NA NULL
2020 Community College (Bronx) Business Data And Reporting Analyst 49874.25000 7.979880e+05 2029.49 1.268431e+02 0.000 69.25 16 0.000000e+00 0.00 8.000175e+05 7.979880e+05 2029.49 NULL
2020 Community College (Bronx) Campus Peace Officer 41101.80769 1.068647e+06 55120.67 2.120026e+03 1119.545 1801.00 26 1.119545e+03 29108.17 1.123768e+06 1.097755e+06 26012.50 NULL
2020 Community College (Bronx) Campus Public Safety Sergeant 55566.37500 4.445310e+05 29342.37 3.667796e+03 1447.985 733.67 8 1.447985e+03 11583.88 4.738734e+05 4.561149e+05 17758.49 NULL
2020 Community College (Bronx) Campus Security Assistant 27817.48529 9.457945e+05 30651.21 9.015062e+02 326.250 1325.50 34 3.262500e+02 11092.50 9.764457e+05 9.568870e+05 19558.71 NULL
2020 Community College (Bronx) Carpenter NA NA 101.76 5.088000e+01 50.880 2.00 2 5.088000e+01 101.76 NA NA NA NULL
2020 Community College (Bronx) Cement Mason NA NA 325.74 3.257400e+02 325.740 0.00 1 3.257400e+02 325.74 NA NA NA NULL
2020 Community College (Bronx) Chief College Lab Technician 67621.75000 2.704870e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.704870e+05 2.704870e+05 0.00 NULL
2020 Community College (Bronx) City Laborer NA NA 18504.85 2.313106e+03 2357.630 312.00 8 2.313106e+03 18504.85 NA NA NA NULL
2020 Community College (Bronx) Clip Instructor 50953.91667 6.114470e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 6.114470e+05 6.114470e+05 0.00 NULL
2020 Community College (Bronx) College Accountant 58837.50000 2.353500e+05 1172.87 2.932175e+02 0.000 28.75 4 0.000000e+00 0.00 2.365229e+05 2.353500e+05 1172.87 NULL
2020 Community College (Bronx) College Accounting Assistant 47805.20000 2.390260e+05 688.47 1.376940e+02 1.780 24.50 5 1.780000e+00 8.90 2.397145e+05 2.390349e+05 679.57 NULL
2020 Community College (Bronx) College Assistant 4545.49538 3.350030e+06 53.13 7.208960e-02 0.000 0.00 737 0.000000e+00 0.00 3.350083e+06 3.350030e+06 53.13 NULL
2020 Community College (Bronx) College Graph Designer 64482.00000 6.448200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.448200e+04 6.448200e+04 0.00 NULL
2020 Community College (Bronx) College Lab Technician 53961.16526 1.025262e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.025262e+06 1.025262e+06 0.00 NULL
2020 Community College (Bronx) College Print Shop Assistant 39167.00000 3.916700e+04 5.20 5.200000e+00 5.200 0.00 1 5.200000e+00 5.20 3.917220e+04 3.917220e+04 0.00 NULL
2020 Community College (Bronx) College Print Shop Associate 45644.50000 9.128900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.128900e+04 9.128900e+04 0.00 NULL
2020 Community College (Bronx) College Security Director 115000.00000 2.300000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.300000e+05 2.300000e+05 0.00 NULL
2020 Community College (Bronx) College Security Specialist 60146.80000 3.007340e+05 18945.97 3.789194e+03 2848.830 433.25 5 2.848830e+03 14244.15 3.196800e+05 3.149782e+05 4701.82 NULL
2020 Community College (Bronx) Computer Systems Manager 98401.00000 2.952030e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.952030e+05 2.952030e+05 0.00 NULL
2020 Community College (Bronx) Continuing Education Teacher 11077.31983 7.975670e+05 0.00 0.000000e+00 0.000 0.00 72 0.000000e+00 0.00 7.975670e+05 7.975670e+05 0.00 NULL
2020 Community College (Bronx) Cuny Administrator Assistant 54537.20000 8.180580e+05 7552.56 5.035040e+02 0.000 171.25 15 0.000000e+00 0.00 8.256106e+05 8.180580e+05 7552.56 NULL
2020 Community College (Bronx) Cuny Art Model 521.25000 2.085000e+03 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.085000e+03 2.085000e+03 0.00 NULL
2020 Community College (Bronx) Cuny Custodial Assistant 32089.32610 2.182074e+06 5073.52 7.461059e+01 6.660 146.00 68 6.660000e+00 452.88 2.187148e+06 2.182527e+06 4620.64 NULL
2020 Community College (Bronx) Cuny Office Assistant 38329.69697 3.794640e+06 3710.82 3.748303e+01 0.000 124.00 99 0.000000e+00 0.00 3.798351e+06 3.794640e+06 3710.82 NULL
2020 Community College (Bronx) Cuny Start Instructor 62792.62500 5.023410e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.023410e+05 5.023410e+05 0.00 NULL
2020 Community College (Bronx) Custodial Supervisor 38257.14286 2.678000e+05 2661.35 3.801929e+02 31.810 79.50 7 3.181000e+01 222.67 2.704613e+05 2.680227e+05 2438.68 NULL
2020 Community College (Bronx) Dean 158484.25000 6.339370e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.339370e+05 6.339370e+05 0.00 NULL
2020 Community College (Bronx) Disability Accommodations Specialist 39720.05500 7.944011e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.944011e+04 7.944011e+04 0.00 NULL
2020 Community College (Bronx) Electrician NA NA 11590.94 3.863647e+03 4346.600 132.00 3 3.863647e+03 11590.94 NA NA NA NULL
2020 Community College (Bronx) Eoc Accounting Assistant 43735.00000 8.747000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.747000e+04 8.747000e+04 0.00 NULL
2020 Community College (Bronx) Eoc Adjunct Lecturer 4722.85786 6.612001e+04 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 6.612001e+04 6.612001e+04 0.00 NULL
2020 Community College (Bronx) Eoc Administrative Assistant 57629.00000 1.152580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.152580e+05 1.152580e+05 0.00 NULL
2020 Community College (Bronx) Eoc Assistant To Heo 64386.41667 7.726370e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.726370e+05 7.726370e+05 0.00 NULL
2020 Community College (Bronx) Eoc College Lab Technician 68486.50000 1.369730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.369730e+05 1.369730e+05 0.00 NULL
2020 Community College (Bronx) Eoc Custodial Assistant 36150.50000 7.230100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.230100e+04 7.230100e+04 0.00 NULL
2020 Community College (Bronx) Eoc Custodial Supervisor 42874.00000 4.287400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.287400e+04 4.287400e+04 0.00 NULL
2020 Community College (Bronx) Eoc Higher Education Assistant 83178.66667 2.495360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.495360e+05 2.495360e+05 0.00 NULL
2020 Community College (Bronx) Eoc Higher Education Associate 91609.00000 1.832180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.832180e+05 1.832180e+05 0.00 NULL
2020 Community College (Bronx) Eoc Higher Education Officer 121852.00000 2.437040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.437040e+05 2.437040e+05 0.00 NULL
2020 Community College (Bronx) Eoc It Support Assistant 38928.00000 3.892800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.892800e+04 3.892800e+04 0.00 NULL
2020 Community College (Bronx) Eoc Lecturer 75297.50000 1.505950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.505950e+05 1.505950e+05 0.00 NULL
2020 Community College (Bronx) Eoc Office Assistant 35460.81818 3.900690e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 3.900690e+05 3.900690e+05 0.00 NULL
2020 Community College (Bronx) High Pressure Plant Tender NA NA 69413.75 1.156896e+04 15601.250 1327.50 6 1.156896e+04 69413.75 NA NA NA NULL
2020 Community College (Bronx) Higher Education Assistant 76832.65741 8.297927e+06 7488.63 6.933917e+01 0.000 118.00 108 0.000000e+00 0.00 8.305416e+06 8.297927e+06 7488.63 NULL
2020 Community College (Bronx) Higher Education Associate 96353.05263 3.661416e+06 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 3.661416e+06 3.661416e+06 0.00 NULL
2020 Community College (Bronx) Higher Education Officer 122144.87879 4.030781e+06 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 4.030781e+06 4.030781e+06 0.00 NULL
2020 Community College (Bronx) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Bronx) It Assistant 58288.91667 6.994670e+05 8169.37 6.807808e+02 0.000 178.50 12 0.000000e+00 0.00 7.076364e+05 6.994670e+05 8169.37 NULL
2020 Community College (Bronx) It Associate 85249.57143 5.967470e+05 34.35 4.907143e+00 0.000 0.00 7 0.000000e+00 0.00 5.967813e+05 5.967470e+05 34.35 NULL
2020 Community College (Bronx) It Senior Associate 113640.00000 3.409200e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.409200e+05 3.409200e+05 0.00 NULL
2020 Community College (Bronx) It Support Assistant 28264.20722 1.498003e+06 5178.63 9.771000e+01 0.000 155.00 53 0.000000e+00 0.00 1.503182e+06 1.498003e+06 5178.63 NULL
2020 Community College (Bronx) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 76 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Bronx) Lecturer/Doctoral Schedule 73735.50000 1.474710e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.474710e+05 1.474710e+05 0.00 NULL
2020 Community College (Bronx) Locksmith NA NA 1229.13 6.145650e+02 614.565 24.00 2 6.145650e+02 1229.13 NA NA NA NULL
2020 Community College (Bronx) Mail/Message Services Worker 35944.33333 1.078330e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.078330e+05 1.078330e+05 0.00 NULL
2020 Community College (Bronx) Maintenance Worker NA NA 2044.50 3.407500e+02 0.000 47.00 6 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Bronx) Media Services Technician 60906.00000 6.090600e+04 5369.90 5.369900e+03 5369.900 118.00 1 5.369900e+03 5369.90 6.627590e+04 6.627590e+04 0.00 NULL
2020 Community College (Bronx) Motor Vehicle Operator 48588.00000 4.858800e+04 5540.82 5.540820e+03 5540.820 140.92 1 5.540820e+03 5540.82 5.412882e+04 5.412882e+04 0.00 NULL
2020 Community College (Bronx) Non-Teaching Adjunct I 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Community College (Bronx) Non-Teaching Adjunct Ii 2111.66553 5.532564e+05 0.00 0.000000e+00 0.000 0.00 262 0.000000e+00 0.00 5.532564e+05 5.532564e+05 0.00 NULL
2020 Community College (Bronx) Non-Teaching Adjunct Iii 559.07657 5.534858e+04 0.00 0.000000e+00 0.000 0.00 99 0.000000e+00 0.00 5.534858e+04 5.534858e+04 0.00 NULL
2020 Community College (Bronx) Non-Teaching Adjunct Iv 715.61708 2.576222e+04 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 2.576222e+04 2.576222e+04 0.00 NULL
2020 Community College (Bronx) Non-Teaching Adjunct V 2307.34819 8.306454e+04 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 8.306454e+04 8.306454e+04 0.00 NULL
2020 Community College (Bronx) Painter NA NA 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Bronx) Plumber NA NA 1742.07 8.710350e+02 871.035 16.50 2 8.710350e+02 1742.07 NA NA NA NULL
2020 Community College (Bronx) Plumber’s Helper NA NA 997.65 4.988250e+02 498.825 13.50 2 4.988250e+02 997.65 NA NA NA NULL
2020 Community College (Bronx) President 226000.00000 2.260000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.260000e+05 2.260000e+05 0.00 NULL
2020 Community College (Bronx) Principal Custodial Supervisor 65774.00000 6.577400e+04 306.10 3.061000e+02 306.100 0.00 1 3.061000e+02 306.10 6.608010e+04 6.608010e+04 0.00 NULL
2020 Community College (Bronx) Professor NA NA 0.00 0.000000e+00 0.000 0.00 137 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Bronx) Project Manager 101735.50000 2.034710e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.034710e+05 2.034710e+05 0.00 NULL
2020 Community College (Bronx) Senior College Lab Tech 70607.26667 1.059109e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.059109e+06 1.059109e+06 0.00 NULL
2020 Community College (Bronx) Senior Custodial Supervisor 42037.66667 1.261130e+05 270.82 9.027333e+01 113.250 4.00 3 9.027333e+01 270.82 1.263838e+05 1.263838e+05 0.00 NULL
2020 Community College (Bronx) Senior Stationary Engineer NA NA 15744.09 1.574409e+04 15744.090 155.75 1 1.574409e+04 15744.09 NA NA NA NULL
2020 Community College (Bronx) Senior Vice President 218820.00000 2.188200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.188200e+05 2.188200e+05 0.00 NULL
2020 Community College (Bronx) Sr College Laboratory Tech 10105.20000 1.010520e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.010520e+04 1.010520e+04 0.00 NULL
2020 Community College (Bronx) Stationary Engineer NA NA 208232.51 2.974750e+04 40063.140 2281.75 7 2.974750e+04 208232.51 NA NA NA NULL
2020 Community College (Bronx) Steam Fitter NA NA 16500.00 8.250000e+03 8250.000 150.00 2 8.250000e+03 16500.00 NA NA NA NULL
2020 Community College (Bronx) Stock Worker 34482.33333 2.068940e+05 25.80 4.300000e+00 0.000 1.25 6 0.000000e+00 0.00 2.069198e+05 2.068940e+05 25.80 NULL
2020 Community College (Bronx) Student Aide 2390.00000 5.019000e+04 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 5.019000e+04 5.019000e+04 0.00 NULL
2020 Community College (Bronx) Supervisor Carpenter NA NA 53.94 5.394000e+01 53.940 1.00 1 5.394000e+01 53.94 NA NA NA NULL
2020 Community College (Bronx) Supervisor Electrician NA NA 29455.44 2.945544e+04 29455.440 311.50 1 2.945544e+04 29455.44 NA NA NA NULL
2020 Community College (Bronx) Supervisor Painter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Bronx) Thermostat Repairer NA NA 4629.42 2.314710e+03 2314.710 44.00 2 2.314710e+03 4629.42 NA NA NA NULL
2020 Community College (Bronx) University Professor 157079.00000 1.570790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.570790e+05 1.570790e+05 0.00 NULL
2020 Community College (Bronx) Vice President 180902.75000 7.236110e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.236110e+05 7.236110e+05 0.00 NULL
2020 Community College (Hostos) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 163 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Hostos) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Hostos) Adjunct College Lab Tech 8737.36091 9.611097e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 9.611097e+04 9.611097e+04 0.00 NULL
2020 Community College (Hostos) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 220 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Hostos) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Hostos) Administrator 154704.00000 1.547040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.547040e+05 1.547040e+05 0.00 NULL
2020 Community College (Hostos) Administrator Supt Campus B/G 91120.00000 9.112000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.112000e+04 9.112000e+04 0.00 NULL
2020 Community College (Hostos) Assistant Administrator 126742.50000 2.534850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.534850e+05 2.534850e+05 0.00 NULL
2020 Community College (Hostos) Assistant College Security Director 76588.50000 1.531770e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.531770e+05 1.531770e+05 0.00 NULL
2020 Community College (Hostos) Assistant Dean 118390.33333 3.551710e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.551710e+05 3.551710e+05 0.00 NULL
2020 Community College (Hostos) Assistant Principal Custodial Supervisor 45764.00000 9.152800e+04 1335.30 6.676500e+02 667.650 27.00 2 6.676500e+02 1335.30 9.286330e+04 9.286330e+04 0.00 NULL
2020 Community College (Hostos) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 118 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Hostos) Assistant Purchasing Agent 44942.00000 8.988400e+04 137.87 6.893500e+01 68.935 0.00 2 6.893500e+01 137.87 9.002187e+04 9.002187e+04 0.00 NULL
2020 Community College (Hostos) Assistant To Heo 50629.93846 3.290946e+06 10972.09 1.688014e+02 0.000 227.25 65 0.000000e+00 0.00 3.301918e+06 3.290946e+06 10972.09 NULL
2020 Community College (Hostos) Assistant Vice President 160833.00000 1.608330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.608330e+05 1.608330e+05 0.00 NULL
2020 Community College (Hostos) Associate Administrator 134574.00000 1.345740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.345740e+05 1.345740e+05 0.00 NULL
2020 Community College (Hostos) Associate Dean 130236.00000 3.907080e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.907080e+05 3.907080e+05 0.00 NULL
2020 Community College (Hostos) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 56 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Hostos) Campus Peace Officer 40743.83333 9.778520e+05 303467.71 1.264449e+04 9607.720 9540.40 24 9.607720e+03 230585.28 1.281320e+06 1.208437e+06 72882.43 NULL
2020 Community College (Hostos) Campus Public Safety Sergeant 55370.00000 3.322200e+05 99595.06 1.659918e+04 17699.110 2489.20 6 1.659918e+04 99595.06 4.318151e+05 4.318151e+05 0.00 NULL
2020 Community College (Hostos) Campus Security Assistant 32112.66667 2.890140e+05 53777.69 5.975299e+03 6823.210 2295.00 9 5.975299e+03 53777.69 3.427917e+05 3.427917e+05 0.00 NULL
2020 Community College (Hostos) Carpenter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Hostos) Chief Administrative Supt Campus B/G 142233.00000 1.422330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.422330e+05 1.422330e+05 0.00 NULL
2020 Community College (Hostos) City Laborer NA NA 18353.71 6.117903e+03 4926.130 341.00 3 4.926130e+03 14778.39 NA NA NA NULL
2020 Community College (Hostos) Clip Instructor 54853.25000 6.582390e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 6.582390e+05 6.582390e+05 0.00 NULL
2020 Community College (Hostos) College Accountant 63799.00000 6.379900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.379900e+04 6.379900e+04 0.00 NULL
2020 Community College (Hostos) College Accounting Assistant 48696.33333 1.460890e+05 415.46 1.384867e+02 0.000 12.75 3 0.000000e+00 0.00 1.465045e+05 1.460890e+05 415.46 NULL
2020 Community College (Hostos) College Assistant 4615.30615 3.050717e+06 1166.97 1.765461e+00 0.000 47.50 661 0.000000e+00 0.00 3.051884e+06 3.050717e+06 1166.97 NULL
2020 Community College (Hostos) College Lab Technician 66407.22222 5.976650e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.976650e+05 5.976650e+05 0.00 NULL
2020 Community College (Hostos) College Print Shop Assistant 36377.00000 7.275400e+04 719.74 3.598700e+02 359.870 0.00 2 3.598700e+02 719.74 7.347374e+04 7.347374e+04 0.00 NULL
2020 Community College (Hostos) College Security Director 137913.00000 1.379130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.379130e+05 1.379130e+05 0.00 NULL
2020 Community College (Hostos) College Security Specialist 58317.00000 1.166340e+05 11049.56 5.524780e+03 5524.780 263.75 2 5.524780e+03 11049.56 1.276836e+05 1.276836e+05 0.00 NULL
2020 Community College (Hostos) Computer Systems Manager 115000.00000 2.300000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.300000e+05 2.300000e+05 0.00 NULL
2020 Community College (Hostos) Continuing Education Teacher 7271.96197 1.156242e+06 0.00 0.000000e+00 0.000 0.00 159 0.000000e+00 0.00 1.156242e+06 1.156242e+06 0.00 NULL
2020 Community College (Hostos) Cuny Administrator Assistant 58596.20000 5.859620e+05 2681.31 2.681310e+02 0.000 55.25 10 0.000000e+00 0.00 5.886433e+05 5.859620e+05 2681.31 NULL
2020 Community College (Hostos) Cuny Custodial Assistant 33881.78182 1.863498e+06 43553.49 7.918816e+02 128.750 1631.00 55 1.287500e+02 7081.25 1.907051e+06 1.870579e+06 36472.24 NULL
2020 Community College (Hostos) Cuny Office Assistant 39370.15873 2.480320e+06 3833.00 6.084127e+01 0.000 129.75 63 0.000000e+00 0.00 2.484153e+06 2.480320e+06 3833.00 NULL
2020 Community College (Hostos) Cuny Start Instructor 62494.09091 6.874350e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 6.874350e+05 6.874350e+05 0.00 NULL
2020 Community College (Hostos) Custodial Supervisor 34872.88889 3.138560e+05 11887.30 1.320811e+03 133.710 413.00 9 1.337100e+02 1203.39 3.257433e+05 3.150594e+05 10683.91 NULL
2020 Community College (Hostos) Dean 148000.00000 1.480000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.480000e+05 1.480000e+05 0.00 NULL
2020 Community College (Hostos) Disability Accommodations Specialist 22652.35550 2.265236e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 2.265236e+05 2.265236e+05 0.00 NULL
2020 Community College (Hostos) Distinguished Professor 159649.00000 1.596490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596490e+05 1.596490e+05 0.00 NULL
2020 Community College (Hostos) Electrician NA NA 15278.96 7.639480e+03 7639.480 174.00 2 7.639480e+03 15278.96 NA NA NA NULL
2020 Community College (Hostos) Electrician’s Helper NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Hostos) High Pressure Plant Tender NA NA 12521.26 1.252126e+04 12521.260 238.50 1 1.252126e+04 12521.26 NA NA NA NULL
2020 Community College (Hostos) Higher Education Assistant 71102.84536 6.896976e+06 0.00 0.000000e+00 0.000 0.00 97 0.000000e+00 0.00 6.896976e+06 6.896976e+06 0.00 NULL
2020 Community College (Hostos) Higher Education Associate 95978.63043 4.415017e+06 0.00 0.000000e+00 0.000 0.00 46 0.000000e+00 0.00 4.415017e+06 4.415017e+06 0.00 NULL
2020 Community College (Hostos) Higher Education Officer 122289.71795 4.769299e+06 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 4.769299e+06 4.769299e+06 0.00 NULL
2020 Community College (Hostos) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Hostos) It Assistant 54419.99313 8.707199e+05 1470.06 9.187875e+01 0.000 21.25 16 0.000000e+00 0.00 8.721899e+05 8.707199e+05 1470.06 NULL
2020 Community College (Hostos) It Associate 78667.33333 2.360020e+05 55.45 1.848333e+01 0.000 0.00 3 0.000000e+00 0.00 2.360575e+05 2.360020e+05 55.45 NULL
2020 Community College (Hostos) It Senior Associate 100971.25000 4.038850e+05 1725.32 4.313300e+02 0.000 26.00 4 0.000000e+00 0.00 4.056103e+05 4.038850e+05 1725.32 NULL
2020 Community College (Hostos) It Support Assistant 36860.70714 5.160499e+05 25.03 1.787857e+00 0.000 0.00 14 0.000000e+00 0.00 5.160749e+05 5.160499e+05 25.03 NULL
2020 Community College (Hostos) Lead Theatre Technician 4868.88723 1.363288e+05 10849.67 3.874882e+02 145.775 280.50 28 1.457750e+02 4081.70 1.471785e+05 1.404105e+05 6767.97 NULL
2020 Community College (Hostos) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 64 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Hostos) Lecturer/Doctoral Schedule 81310.50000 1.626210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.626210e+05 1.626210e+05 0.00 NULL
2020 Community College (Hostos) Locksmith NA NA 39.25 3.925000e+01 39.250 0.00 1 3.925000e+01 39.25 NA NA NA NULL
2020 Community College (Hostos) Mail/Message Services Worker 41966.33333 1.258990e+05 6118.76 2.039587e+03 174.630 166.00 3 1.746300e+02 523.89 1.320178e+05 1.264229e+05 5594.87 NULL
2020 Community College (Hostos) Maintenance Worker NA NA 37053.84 4.631730e+03 1946.625 856.50 8 1.946625e+03 15573.00 NA NA NA NULL
2020 Community College (Hostos) Non-Teaching Adjunct I 3970.99320 1.985497e+05 0.00 0.000000e+00 0.000 0.00 50 0.000000e+00 0.00 1.985497e+05 1.985497e+05 0.00 NULL
2020 Community College (Hostos) Non-Teaching Adjunct Ii 5081.37348 1.168716e+05 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 1.168716e+05 1.168716e+05 0.00 NULL
2020 Community College (Hostos) Non-Teaching Adjunct Iii 1822.65276 8.748733e+04 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 8.748733e+04 8.748733e+04 0.00 NULL
2020 Community College (Hostos) Non-Teaching Adjunct Iv 1318.43217 1.977648e+04 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.977648e+04 1.977648e+04 0.00 NULL
2020 Community College (Hostos) Non-Teaching Adjunct V 4545.22750 4.090705e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.090705e+04 4.090705e+04 0.00 NULL
2020 Community College (Hostos) Oiler NA NA 28127.70 2.812770e+04 28127.700 328.00 1 2.812770e+04 28127.70 NA NA NA NULL
2020 Community College (Hostos) Painter NA NA 250.74 8.358000e+01 0.000 4.00 3 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Hostos) Plumber’s Helper NA NA 4156.88 4.156880e+03 4156.880 56.25 1 4.156880e+03 4156.88 NA NA NA NULL
2020 Community College (Hostos) President 226000.00000 2.260000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.260000e+05 2.260000e+05 0.00 NULL
2020 Community College (Hostos) Principal Custodial Supervisor 75198.00000 7.519800e+04 16932.56 1.693256e+04 16932.560 288.25 1 1.693256e+04 16932.56 9.213056e+04 9.213056e+04 0.00 NULL
2020 Community College (Hostos) Professor NA NA 0.00 0.000000e+00 0.000 0.00 57 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Hostos) Purchasing Agent 63181.00000 6.318100e+04 183.43 1.834300e+02 183.430 0.00 1 1.834300e+02 183.43 6.336443e+04 6.336443e+04 0.00 NULL
2020 Community College (Hostos) Senior College Lab Tech 72478.60000 3.623930e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.623930e+05 3.623930e+05 0.00 NULL
2020 Community College (Hostos) Senior Custodial Supervisor 41913.00000 4.191300e+04 733.55 7.335500e+02 733.550 20.25 1 7.335500e+02 733.55 4.264655e+04 4.264655e+04 0.00 NULL
2020 Community College (Hostos) Senior Stationary Engineer NA NA 16401.03 1.640103e+04 16401.030 162.25 1 1.640103e+04 16401.03 NA NA NA NULL
2020 Community College (Hostos) Senior Vice President 216250.00000 2.162500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.162500e+05 2.162500e+05 0.00 NULL
2020 Community College (Hostos) Staff Nurse 71842.00000 7.184200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.184200e+04 7.184200e+04 0.00 NULL
2020 Community College (Hostos) Stationary Engineer NA NA 134540.08 3.363502e+04 31747.085 1474.25 4 3.174708e+04 126988.34 NA NA NA NULL
2020 Community College (Hostos) Stock Worker 37205.00000 3.720500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.720500e+04 3.720500e+04 0.00 NULL
2020 Community College (Hostos) Student Aide 2796.79688 1.789950e+05 0.00 0.000000e+00 0.000 0.00 64 0.000000e+00 0.00 1.789950e+05 1.789950e+05 0.00 NULL
2020 Community College (Hostos) Supervisor Plumber NA NA 5569.37 5.569370e+03 5569.370 52.75 1 5.569370e+03 5569.37 NA NA NA NULL
2020 Community College (Hostos) Supervisor Thermostat Repair NA NA 28695.58 2.869558e+04 28695.580 259.50 1 2.869558e+04 28695.58 NA NA NA NULL
2020 Community College (Hostos) Vice President 162833.25000 6.513330e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.513330e+05 6.513330e+05 0.00 NULL
2020 Community College (Kingsboro) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 102 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Kingsboro) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Kingsboro) Adjunct College Lab Tech 9332.78339 1.185263e+06 0.00 0.000000e+00 0.000 0.00 127 0.000000e+00 0.00 1.185263e+06 1.185263e+06 0.00 NULL
2020 Community College (Kingsboro) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 653 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Kingsboro) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Kingsboro) Administrator Supt Campus B/G 103070.50000 2.061410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.061410e+05 2.061410e+05 0.00 NULL
2020 Community College (Kingsboro) Assistant Administrator 137100.00000 2.742000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.742000e+05 2.742000e+05 0.00 NULL
2020 Community College (Kingsboro) Assistant College Security Director 76006.66667 2.280200e+05 10636.71 3.545570e+03 0.000 255.25 3 0.000000e+00 0.00 2.386567e+05 2.280200e+05 10636.71 NULL
2020 Community College (Kingsboro) Assistant Principal Custodial Supervisor 47165.00000 9.433000e+04 7768.70 3.884350e+03 3884.350 203.75 2 3.884350e+03 7768.70 1.020987e+05 1.020987e+05 0.00 NULL
2020 Community College (Kingsboro) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 181 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Kingsboro) Assistant Purchasing Agent 45396.00000 4.539600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.539600e+04 4.539600e+04 0.00 NULL
2020 Community College (Kingsboro) Assistant To Heo 59477.01538 3.866006e+06 3502.76 5.388862e+01 0.000 65.50 65 0.000000e+00 0.00 3.869509e+06 3.866006e+06 3502.76 NULL
2020 Community College (Kingsboro) Assistant Vice President 156335.66667 4.690070e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.690070e+05 4.690070e+05 0.00 NULL
2020 Community College (Kingsboro) Associate Administrator 145234.66667 4.357040e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.357040e+05 4.357040e+05 0.00 NULL
2020 Community College (Kingsboro) Associate Dean 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2020 Community College (Kingsboro) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 130 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Kingsboro) Auto Mechanic NA NA 259.00 1.295000e+02 129.500 3.50 2 1.295000e+02 259.00 NA NA NA NULL
2020 Community College (Kingsboro) Campus Peace Officer 37718.56522 8.675270e+05 91877.76 3.994685e+03 1799.110 3421.55 23 1.799110e+03 41379.53 9.594048e+05 9.089065e+05 50498.23 NULL
2020 Community College (Kingsboro) Campus Public Safety Sergeant 55722.27273 6.129450e+05 96127.72 8.738884e+03 7007.420 2433.30 11 7.007420e+03 77081.62 7.090727e+05 6.900266e+05 19046.10 NULL
2020 Community College (Kingsboro) Campus Security Assistant 33203.00000 2.988270e+05 71649.72 7.961080e+03 5607.290 3013.80 9 5.607290e+03 50465.61 3.704767e+05 3.492926e+05 21184.11 NULL
2020 Community College (Kingsboro) Carpenter NA NA 43480.74 8.696148e+03 1742.670 548.00 5 1.742670e+03 8713.35 NA NA NA NULL
2020 Community College (Kingsboro) Chief Administrative Supt Campus B/G 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2020 Community College (Kingsboro) Chief College Lab Technician 56912.30333 5.122107e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.122107e+05 5.122107e+05 0.00 NULL
2020 Community College (Kingsboro) City Laborer NA NA 30485.68 2.345052e+03 2304.110 558.00 13 2.304110e+03 29953.43 NA NA NA NULL
2020 Community College (Kingsboro) Clip Instructor 55737.50000 4.459000e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.459000e+05 4.459000e+05 0.00 NULL
2020 Community College (Kingsboro) College Accountant 62091.33333 1.862740e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.862740e+05 1.862740e+05 0.00 NULL
2020 Community College (Kingsboro) College Accounting Assistant 46215.75000 1.848630e+05 74.67 1.866750e+01 3.855 0.00 4 3.855000e+00 15.42 1.849377e+05 1.848784e+05 59.25 NULL
2020 Community College (Kingsboro) College Assistant 5452.89449 3.942443e+06 446.91 6.181328e-01 0.000 13.50 723 0.000000e+00 0.00 3.942890e+06 3.942443e+06 446.91 NULL
2020 Community College (Kingsboro) College Graph Designer 53894.00000 5.389400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.389400e+04 5.389400e+04 0.00 NULL
2020 Community College (Kingsboro) College Lab Technician 43558.17583 1.045396e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 1.045396e+06 1.045396e+06 0.00 NULL
2020 Community College (Kingsboro) College Print Shop Assistant 40114.00000 1.203420e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.203420e+05 1.203420e+05 0.00 NULL
2020 Community College (Kingsboro) College Print Shop Associate 50020.50000 1.000410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.000410e+05 1.000410e+05 0.00 NULL
2020 Community College (Kingsboro) College Print Shop Coordinator 62528.00000 1.250560e+05 4.77 2.385000e+00 2.385 0.00 2 2.385000e+00 4.77 1.250608e+05 1.250608e+05 0.00 NULL
2020 Community College (Kingsboro) College Security Director 132100.00000 2.642000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.642000e+05 2.642000e+05 0.00 NULL
2020 Community College (Kingsboro) College Security Specialist 58317.00000 1.166340e+05 12044.61 6.022305e+03 6022.305 288.75 2 6.022305e+03 12044.61 1.286786e+05 1.286786e+05 0.00 NULL
2020 Community College (Kingsboro) Computer Operator Manager 100672.33333 3.020170e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.020170e+05 3.020170e+05 0.00 NULL
2020 Community College (Kingsboro) Computer Systems Manager 96098.50000 1.921970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.921970e+05 1.921970e+05 0.00 NULL
2020 Community College (Kingsboro) Continuing Education Teacher NA NA 0.00 0.000000e+00 0.000 0.00 388 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Kingsboro) Cuny Administrator Assistant 54384.61905 1.142077e+06 7250.73 3.452729e+02 0.000 153.00 21 0.000000e+00 0.00 1.149328e+06 1.142077e+06 7250.73 NULL
2020 Community College (Kingsboro) Cuny Broadcast Associate 61875.00000 6.187500e+04 140.25 1.402500e+02 140.250 0.00 1 1.402500e+02 140.25 6.201525e+04 6.201525e+04 0.00 NULL
2020 Community College (Kingsboro) Cuny Custodial Assistant 23841.57096 2.813305e+06 60497.62 5.126917e+02 33.455 2267.25 118 3.345500e+01 3947.69 2.873803e+06 2.817253e+06 56549.93 NULL
2020 Community College (Kingsboro) Cuny Office Assistant 39140.90625 2.505018e+06 14123.53 2.206802e+02 0.000 477.50 64 0.000000e+00 0.00 2.519142e+06 2.505018e+06 14123.53 NULL
2020 Community College (Kingsboro) Cuny Start Instructor 62220.14286 4.355410e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.355410e+05 4.355410e+05 0.00 NULL
2020 Community College (Kingsboro) Custodial Supervisor 38629.66667 2.317780e+05 14198.42 2.366403e+03 2357.650 488.50 6 2.357650e+03 14145.90 2.459764e+05 2.459239e+05 52.52 NULL
2020 Community College (Kingsboro) Dean 148626.00000 4.458780e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.458780e+05 4.458780e+05 0.00 NULL
2020 Community College (Kingsboro) Disability Accommodations Specialist 20153.62500 4.030725e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.030725e+04 4.030725e+04 0.00 NULL
2020 Community College (Kingsboro) Electrician NA NA 51324.95 2.566247e+04 25662.475 584.50 2 2.566247e+04 51324.95 NA NA NA NULL
2020 Community College (Kingsboro) Electrician’s Helper NA NA 12417.49 1.241749e+04 12417.490 223.50 1 1.241749e+04 12417.49 NA NA NA NULL
2020 Community College (Kingsboro) Facilities Coordinator 75430.50000 1.508610e+05 10.38 5.190000e+00 5.190 0.00 2 5.190000e+00 10.38 1.508714e+05 1.508714e+05 0.00 NULL
2020 Community College (Kingsboro) High Pressure Plant Tender NA NA 25270.00 2.807778e+03 3570.000 495.00 9 2.807778e+03 25270.00 NA NA NA NULL
2020 Community College (Kingsboro) Higher Education Assistant 73801.92391 6.789777e+06 5230.17 5.684967e+01 0.000 77.25 92 0.000000e+00 0.00 6.795007e+06 6.789777e+06 5230.17 NULL
2020 Community College (Kingsboro) Higher Education Associate 93966.11864 5.544001e+06 0.00 0.000000e+00 0.000 0.00 59 0.000000e+00 0.00 5.544001e+06 5.544001e+06 0.00 NULL
2020 Community College (Kingsboro) Higher Education Officer 117607.73585 6.233210e+06 0.00 0.000000e+00 0.000 0.00 53 0.000000e+00 0.00 6.233210e+06 6.233210e+06 0.00 NULL
2020 Community College (Kingsboro) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Kingsboro) It Assistant 58991.10000 1.179822e+06 9373.81 4.686905e+02 27.360 253.50 20 2.736000e+01 547.20 1.189196e+06 1.180369e+06 8826.61 NULL
2020 Community College (Kingsboro) It Associate 80324.00000 4.016200e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.016200e+05 4.016200e+05 0.00 NULL
2020 Community College (Kingsboro) It Senior Associate 104579.50000 2.091590e+05 323.93 1.619650e+02 161.965 5.00 2 1.619650e+02 323.93 2.094829e+05 2.094829e+05 0.00 NULL
2020 Community College (Kingsboro) It Support Assistant 43114.91667 5.173790e+05 2303.69 1.919742e+02 0.000 81.00 12 0.000000e+00 0.00 5.196827e+05 5.173790e+05 2303.69 NULL
2020 Community College (Kingsboro) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 202 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Kingsboro) Lecturer/Doctoral Schedule 87608.11111 7.884730e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.884730e+05 7.884730e+05 0.00 NULL
2020 Community College (Kingsboro) Locksmith NA NA 788.38 3.941900e+02 394.190 16.00 2 3.941900e+02 788.38 NA NA NA NULL
2020 Community College (Kingsboro) Mail/Message Services Worker 39256.75000 1.570270e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.570270e+05 1.570270e+05 0.00 NULL
2020 Community College (Kingsboro) Maintenance Worker NA NA 18259.13 2.608447e+03 2827.500 432.75 7 2.608447e+03 18259.13 NA NA NA NULL
2020 Community College (Kingsboro) Media Services Technician 69832.00000 6.983200e+04 15682.92 1.568292e+04 15682.920 274.25 1 1.568292e+04 15682.92 8.551492e+04 8.551492e+04 0.00 NULL
2020 Community College (Kingsboro) Non-Teaching Adjunct I 5136.78332 2.111218e+06 0.00 0.000000e+00 0.000 0.00 411 0.000000e+00 0.00 2.111218e+06 2.111218e+06 0.00 NULL
2020 Community College (Kingsboro) Non-Teaching Adjunct Ii 26188.34000 2.618834e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.618834e+04 2.618834e+04 0.00 NULL
2020 Community College (Kingsboro) Non-Teaching Adjunct Iii 2548.67959 1.095932e+05 0.00 0.000000e+00 0.000 0.00 43 0.000000e+00 0.00 1.095932e+05 1.095932e+05 0.00 NULL
2020 Community College (Kingsboro) Non-Teaching Adjunct Iv 9909.16125 1.585466e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.585466e+05 1.585466e+05 0.00 NULL
2020 Community College (Kingsboro) Non-Teaching Adjunct V 8022.51571 1.123152e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.123152e+05 1.123152e+05 0.00 NULL
2020 Community College (Kingsboro) Oiler NA NA 19209.21 9.604605e+03 9604.605 224.00 2 9.604605e+03 19209.21 NA NA NA NULL
2020 Community College (Kingsboro) Painter NA NA 33685.40 2.245693e+03 1128.330 558.00 15 1.128330e+03 16924.95 NA NA NA NULL
2020 Community College (Kingsboro) Plumber NA NA 11561.01 2.312202e+03 263.950 109.50 5 2.639500e+02 1319.75 NA NA NA NULL
2020 Community College (Kingsboro) President 226000.00000 2.260000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.260000e+05 2.260000e+05 0.00 NULL
2020 Community College (Kingsboro) Principal Custodial Supervisor 57483.00000 1.149660e+05 4110.93 2.055465e+03 2055.465 91.50 2 2.055465e+03 4110.93 1.190769e+05 1.190769e+05 0.00 NULL
2020 Community College (Kingsboro) Professor NA NA 0.00 0.000000e+00 0.000 0.00 129 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Kingsboro) Project Manager 107428.00000 1.074280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074280e+05 1.074280e+05 0.00 NULL
2020 Community College (Kingsboro) Purchasing Agent 67570.60000 3.378530e+05 186.82 3.736400e+01 7.980 0.00 5 7.980000e+00 39.90 3.380398e+05 3.378929e+05 146.92 NULL
2020 Community College (Kingsboro) Senior College Lab Tech 70186.33333 1.052795e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.052795e+06 1.052795e+06 0.00 NULL
2020 Community College (Kingsboro) Senior Custodial Supervisor 41590.50000 8.318100e+04 595.48 2.977400e+02 297.740 9.00 2 2.977400e+02 595.48 8.377648e+04 8.377648e+04 0.00 NULL
2020 Community College (Kingsboro) Senior Stationary Engineer NA NA 14195.13 1.419513e+04 14195.130 134.50 1 1.419513e+04 14195.13 NA NA NA NULL
2020 Community College (Kingsboro) Sign Language Interpreter 17983.80520 5.395142e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.395142e+04 5.395142e+04 0.00 NULL
2020 Community College (Kingsboro) Sr College Laboratory Tech 3281.62571 2.297138e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.297138e+04 2.297138e+04 0.00 NULL
2020 Community College (Kingsboro) Staff Nurse 19647.79852 2.554214e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 2.554214e+05 2.554214e+05 0.00 NULL
2020 Community College (Kingsboro) Stationary Engineer NA NA 88370.10 9.818900e+03 8426.340 971.00 9 8.426340e+03 75837.06 NA NA NA NULL
2020 Community College (Kingsboro) Stock Worker 33735.00000 6.747000e+04 412.91 2.064550e+02 206.455 19.00 2 2.064550e+02 412.91 6.788291e+04 6.788291e+04 0.00 NULL
2020 Community College (Kingsboro) Student Aide 2108.08250 2.529699e+05 0.00 0.000000e+00 0.000 0.00 120 0.000000e+00 0.00 2.529699e+05 2.529699e+05 0.00 NULL
2020 Community College (Kingsboro) Supervisor Of Stock Workers 47071.00000 4.707100e+04 322.05 3.220500e+02 322.050 10.00 1 3.220500e+02 322.05 4.739305e+04 4.739305e+04 0.00 NULL
2020 Community College (Kingsboro) Thermostat Repairer NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Kingsboro) University Architect 97028.00000 1.940560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.940560e+05 1.940560e+05 0.00 NULL
2020 Community College (Kingsboro) Vice President 174369.80000 1.743698e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.743698e+06 1.743698e+06 0.00 NULL
2020 Community College (Laguardia) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 260 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Laguardia) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Laguardia) Adjunct College Lab Tech 8570.27240 8.484570e+05 0.00 0.000000e+00 0.000 0.00 99 0.000000e+00 0.00 8.484570e+05 8.484570e+05 0.00 NULL
2020 Community College (Laguardia) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 810 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Laguardia) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Laguardia) Adjunct Senior College Lab Tech 32144.16000 3.214416e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.214416e+04 3.214416e+04 0.00 NULL
2020 Community College (Laguardia) Administrator 164115.00000 1.641150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.641150e+05 1.641150e+05 0.00 NULL
2020 Community College (Laguardia) Administrator Supt Campus B/G 81095.33333 2.432860e+05 765.05 2.550167e+02 0.000 0.00 3 0.000000e+00 0.00 2.440510e+05 2.432860e+05 765.05 NULL
2020 Community College (Laguardia) Assistant College Security Director 78943.00000 1.578860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.578860e+05 1.578860e+05 0.00 NULL
2020 Community College (Laguardia) Assistant Dean 138714.28571 9.710000e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.710000e+05 9.710000e+05 0.00 NULL
2020 Community College (Laguardia) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 111 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Laguardia) Assistant To Heo 59999.92473 5.579993e+06 0.00 0.000000e+00 0.000 0.00 93 0.000000e+00 0.00 5.579993e+06 5.579993e+06 0.00 NULL
2020 Community College (Laguardia) Assistant Vice President 149891.00000 1.498910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.498910e+05 1.498910e+05 0.00 NULL
2020 Community College (Laguardia) Associate Administrator 147714.75000 5.908590e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.908590e+05 5.908590e+05 0.00 NULL
2020 Community College (Laguardia) Associate Dean 146615.66667 4.398470e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.398470e+05 4.398470e+05 0.00 NULL
2020 Community College (Laguardia) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 207 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Laguardia) Business Data And Reporting Analyst 43997.65550 3.519812e+05 769.73 9.621625e+01 0.000 19.50 8 0.000000e+00 0.00 3.527510e+05 3.519812e+05 769.73 NULL
2020 Community College (Laguardia) Campus Peace Officer 42789.65517 1.240900e+06 133358.47 4.598568e+03 3626.040 4427.67 29 3.626040e+03 105155.16 1.374258e+06 1.346055e+06 28203.31 NULL
2020 Community College (Laguardia) Campus Public Safety Sergeant 55503.75000 4.440300e+05 53357.61 6.669701e+03 6063.990 1331.25 8 6.063990e+03 48511.92 4.973876e+05 4.925419e+05 4845.69 NULL
2020 Community College (Laguardia) Campus Security Assistant 33527.38235 1.139931e+06 139412.88 4.100379e+03 2914.850 5808.17 34 2.914850e+03 99104.90 1.279344e+06 1.239036e+06 40307.98 NULL
2020 Community College (Laguardia) Chief Administrative Supt Campus B/G 116000.00000 1.160000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.160000e+05 1.160000e+05 0.00 NULL
2020 Community College (Laguardia) Chief College Lab Technician 88774.66667 7.989720e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.989720e+05 7.989720e+05 0.00 NULL
2020 Community College (Laguardia) Clip Instructor 54505.54545 5.995610e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.995610e+05 5.995610e+05 0.00 NULL
2020 Community College (Laguardia) College Accountant 49646.75000 1.985870e+05 351.39 8.784750e+01 0.000 13.00 4 0.000000e+00 0.00 1.989384e+05 1.985870e+05 351.39 NULL
2020 Community College (Laguardia) College Accounting Assistant 50372.83333 3.022370e+05 471.66 7.861000e+01 0.000 13.50 6 0.000000e+00 0.00 3.027087e+05 3.022370e+05 471.66 NULL
2020 Community College (Laguardia) College Assistant 5013.22496 6.502153e+06 3891.16 3.000123e+00 0.000 119.74 1297 0.000000e+00 0.00 6.506044e+06 6.502153e+06 3891.16 NULL
2020 Community College (Laguardia) College Graph Designer 68259.00000 6.825900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.825900e+04 6.825900e+04 0.00 NULL
2020 Community College (Laguardia) College Lab Technician 57120.37037 1.542250e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 1.542250e+06 1.542250e+06 0.00 NULL
2020 Community College (Laguardia) College Print Shop Coordinator 64351.00000 6.435100e+04 4708.25 4.708250e+03 4708.250 103.00 1 4.708250e+03 4708.25 6.905925e+04 6.905925e+04 0.00 NULL
2020 Community College (Laguardia) College Security Director 122750.00000 1.227500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.227500e+05 1.227500e+05 0.00 NULL
2020 Community College (Laguardia) College Security Specialist 63487.66667 1.904630e+05 69127.11 2.304237e+04 19530.430 1446.75 3 1.953043e+04 58591.29 2.595901e+05 2.490543e+05 10535.82 NULL
2020 Community College (Laguardia) Computer Systems Manager 128060.50000 5.122420e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.122420e+05 5.122420e+05 0.00 NULL
2020 Community College (Laguardia) Continuing Education Teacher 6345.35248 1.827462e+06 0.00 0.000000e+00 0.000 0.00 288 0.000000e+00 0.00 1.827462e+06 1.827462e+06 0.00 NULL
2020 Community College (Laguardia) Cuny Administrator Assistant 57399.52632 1.090591e+06 5117.56 2.693453e+02 0.000 141.00 19 0.000000e+00 0.00 1.095709e+06 1.090591e+06 5117.56 NULL
2020 Community College (Laguardia) Cuny Art Model 1203.73000 8.426110e+03 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.426110e+03 8.426110e+03 0.00 NULL
2020 Community College (Laguardia) Cuny Broadcast Associate 49830.00000 1.494900e+05 23499.50 7.833167e+03 8186.220 562.25 3 7.833167e+03 23499.50 1.729895e+05 1.729895e+05 0.00 NULL
2020 Community College (Laguardia) Cuny Custodial Assistant 24270.46228 1.723203e+06 69234.90 9.751394e+02 149.870 2320.83 71 1.498700e+02 10640.77 1.792438e+06 1.733844e+06 58594.13 NULL
2020 Community College (Laguardia) Cuny Office Assistant 40513.29412 3.443630e+06 10517.11 1.237307e+02 0.000 350.50 85 0.000000e+00 0.00 3.454147e+06 3.443630e+06 10517.11 NULL
2020 Community College (Laguardia) Cuny Start Instructor 61449.72727 6.759470e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 6.759470e+05 6.759470e+05 0.00 NULL
2020 Community College (Laguardia) Custodial Supervisor 42465.33333 1.273960e+05 18468.44 6.156147e+03 8449.240 613.00 3 6.156147e+03 18468.44 1.458644e+05 1.458644e+05 0.00 NULL
2020 Community College (Laguardia) Dean 153000.00000 1.530000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.530000e+05 1.530000e+05 0.00 NULL
2020 Community College (Laguardia) Facilities Coordinator 63631.66667 1.908950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.908950e+05 1.908950e+05 0.00 NULL
2020 Community College (Laguardia) Higher Education Assistant 76378.81507 1.115131e+07 0.00 0.000000e+00 0.000 0.00 146 0.000000e+00 0.00 1.115131e+07 1.115131e+07 0.00 NULL
2020 Community College (Laguardia) Higher Education Associate 98482.29670 8.961889e+06 0.00 0.000000e+00 0.000 0.00 91 0.000000e+00 0.00 8.961889e+06 8.961889e+06 0.00 NULL
2020 Community College (Laguardia) Higher Education Officer 123931.80000 6.816249e+06 0.00 0.000000e+00 0.000 0.00 55 0.000000e+00 0.00 6.816249e+06 6.816249e+06 0.00 NULL
2020 Community College (Laguardia) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Laguardia) It Assistant 55888.98371 1.397225e+06 5916.10 2.366440e+02 0.000 116.83 25 0.000000e+00 0.00 1.403141e+06 1.397225e+06 5916.10 NULL
2020 Community College (Laguardia) It Associate 76373.73913 1.756596e+06 9779.76 4.252070e+02 0.000 160.00 23 0.000000e+00 0.00 1.766376e+06 1.756596e+06 9779.76 NULL
2020 Community College (Laguardia) It Senior Associate 102564.07692 1.333333e+06 2186.76 1.682123e+02 0.000 21.00 13 0.000000e+00 0.00 1.335520e+06 1.333333e+06 2186.76 NULL
2020 Community College (Laguardia) It Support Assistant 36102.85016 1.010880e+06 6042.63 2.158082e+02 0.000 185.83 28 0.000000e+00 0.00 1.016922e+06 1.010880e+06 6042.63 NULL
2020 Community College (Laguardia) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 76 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Laguardia) Lecturer/Doctoral Schedule 87356.66667 2.620700e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.620700e+05 2.620700e+05 0.00 NULL
2020 Community College (Laguardia) Mail/Message Services Worker 43098.90000 4.309890e+05 21019.95 2.101995e+03 731.700 614.50 10 7.317000e+02 7317.00 4.520090e+05 4.383060e+05 13702.95 NULL
2020 Community College (Laguardia) Media Services Technician 63750.00000 6.375000e+04 14936.76 1.493676e+04 14936.760 267.50 1 1.493676e+04 14936.76 7.868676e+04 7.868676e+04 0.00 NULL
2020 Community College (Laguardia) Non-Teaching Adjunct I 1820.60105 4.387649e+05 0.00 0.000000e+00 0.000 0.00 241 0.000000e+00 0.00 4.387649e+05 4.387649e+05 0.00 NULL
2020 Community College (Laguardia) Non-Teaching Adjunct Ii 189.01333 1.134080e+03 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.134080e+03 1.134080e+03 0.00 NULL
2020 Community College (Laguardia) Non-Teaching Adjunct Iii 3081.38687 2.557551e+05 0.00 0.000000e+00 0.000 0.00 83 0.000000e+00 0.00 2.557551e+05 2.557551e+05 0.00 NULL
2020 Community College (Laguardia) Non-Teaching Adjunct Iv 2562.72750 1.204482e+05 0.00 0.000000e+00 0.000 0.00 47 0.000000e+00 0.00 1.204482e+05 1.204482e+05 0.00 NULL
2020 Community College (Laguardia) Non-Teaching Adjunct V 2089.51767 6.059601e+04 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 6.059601e+04 6.059601e+04 0.00 NULL
2020 Community College (Laguardia) President 256500.00000 5.130000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.130000e+05 5.130000e+05 0.00 NULL
2020 Community College (Laguardia) Professor NA NA 0.00 0.000000e+00 0.000 0.00 204 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Laguardia) Project Manager 90292.00000 9.029200e+04 545.09 5.450900e+02 545.090 7.50 1 5.450900e+02 545.09 9.083709e+04 9.083709e+04 0.00 NULL
2020 Community College (Laguardia) Purchasing Agent 62452.40000 3.122620e+05 88.76 1.775200e+01 16.360 0.00 5 1.636000e+01 81.80 3.123508e+05 3.123438e+05 6.96 NULL
2020 Community College (Laguardia) Senior College Lab Tech 73175.10000 7.317510e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.317510e+05 7.317510e+05 0.00 NULL
2020 Community College (Laguardia) Senior Vice President 190000.00000 1.900000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.900000e+05 1.900000e+05 0.00 NULL
2020 Community College (Laguardia) Sign Language Interpreter 17658.73471 5.474208e+05 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 5.474208e+05 5.474208e+05 0.00 NULL
2020 Community College (Laguardia) Staff Nurse 89625.50000 1.792510e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.792510e+05 1.792510e+05 0.00 NULL
2020 Community College (Laguardia) Student Aide 3324.34455 3.357588e+05 0.00 0.000000e+00 0.000 0.00 101 0.000000e+00 0.00 3.357588e+05 3.357588e+05 0.00 NULL
2020 Community College (Laguardia) Supervisor Of Stock Workers 40107.00000 4.010700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.010700e+04 4.010700e+04 0.00 NULL
2020 Community College (Laguardia) University Assistant Architect 64757.00000 1.295140e+05 4351.02 2.175510e+03 2175.510 109.00 2 2.175510e+03 4351.02 1.338650e+05 1.338650e+05 0.00 NULL
2020 Community College (Laguardia) University Assistant Engineer 75132.00000 7.513200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.513200e+04 7.513200e+04 0.00 NULL
2020 Community College (Laguardia) Vice President 180270.80000 9.013540e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.013540e+05 9.013540e+05 0.00 NULL
2020 Community College (Manhattan) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 472 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Manhattan) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Manhattan) Adjunct College Lab Tech 7899.02925 7.662058e+05 0.00 0.000000e+00 0.000 0.00 97 0.000000e+00 0.00 7.662058e+05 7.662058e+05 0.00 NULL
2020 Community College (Manhattan) Adjunct Lecturer NA NA 7.29 5.673200e-03 0.000 0.00 1285 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Manhattan) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Manhattan) Adjunct Senior College Lab Tech 4868.45231 1.898696e+05 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 1.898696e+05 1.898696e+05 0.00 NULL
2020 Community College (Manhattan) Administrator 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2020 Community College (Manhattan) Administrator Supt Campus B/G 95909.50000 3.836380e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.836380e+05 3.836380e+05 0.00 NULL
2020 Community College (Manhattan) Assistant Administrator 129000.00000 5.160000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.160000e+05 5.160000e+05 0.00 NULL
2020 Community College (Manhattan) Assistant College Security Director 74675.80000 3.733790e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.733790e+05 3.733790e+05 0.00 NULL
2020 Community College (Manhattan) Assistant Dean 122000.00000 1.220000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.220000e+05 1.220000e+05 0.00 NULL
2020 Community College (Manhattan) Assistant Media Services Technican 26687.55625 1.601253e+05 2132.27 3.553783e+02 241.160 107.50 6 2.411600e+02 1446.96 1.622576e+05 1.615723e+05 685.31 NULL
2020 Community College (Manhattan) Assistant Principal Custodial Supervisor 47088.00000 9.417600e+04 25261.10 1.263055e+04 12630.550 659.67 2 1.263055e+04 25261.10 1.194371e+05 1.194371e+05 0.00 NULL
2020 Community College (Manhattan) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 295 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Manhattan) Assistant Purchasing Agent 43212.25000 1.728490e+05 42.97 1.074250e+01 0.055 0.00 4 5.500000e-02 0.22 1.728920e+05 1.728492e+05 42.75 NULL
2020 Community College (Manhattan) Assistant To Heo 54722.96552 4.760898e+06 3027.84 3.480276e+01 0.000 63.50 87 0.000000e+00 0.00 4.763926e+06 4.760898e+06 3027.84 NULL
2020 Community College (Manhattan) Assistant Vice President 144381.50000 2.887630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.887630e+05 2.887630e+05 0.00 NULL
2020 Community College (Manhattan) Associate Administrator 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2020 Community College (Manhattan) Associate Dean 148495.00000 1.484950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.484950e+05 1.484950e+05 0.00 NULL
2020 Community College (Manhattan) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 237 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Manhattan) Business Data And Reporting Analyst 40812.30208 4.897476e+05 5385.19 4.487658e+02 209.450 184.00 12 2.094500e+02 2513.40 4.951328e+05 4.922610e+05 2871.79 NULL
2020 Community College (Manhattan) Campus Peace Officer 39435.25000 1.577410e+06 180500.43 4.512511e+03 3301.445 6457.75 40 3.301445e+03 132057.80 1.757910e+06 1.709468e+06 48442.63 NULL
2020 Community College (Manhattan) Campus Public Safety Sergeant 55425.20000 5.542520e+05 47793.16 4.779316e+03 4388.240 1202.50 10 4.388240e+03 43882.40 6.020452e+05 5.981344e+05 3910.76 NULL
2020 Community College (Manhattan) Campus Security Assistant 29675.53488 1.276048e+06 210883.40 4.904265e+03 1896.770 8994.05 43 1.896770e+03 81561.11 1.486931e+06 1.357609e+06 129322.29 NULL
2020 Community College (Manhattan) Carpenter NA NA 65137.36 9.305337e+03 5241.030 809.50 7 5.241030e+03 36687.21 NA NA NA NULL
2020 Community College (Manhattan) Chief Administrator Supt Campus B/G 140902.00000 1.409020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.409020e+05 1.409020e+05 0.00 NULL
2020 Community College (Manhattan) City Laborer NA NA 73396.58 1.048523e+04 9175.800 1376.25 7 9.175800e+03 64230.60 NA NA NA NULL
2020 Community College (Manhattan) Clip Instructor 57484.20000 5.748420e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.748420e+05 5.748420e+05 0.00 NULL
2020 Community College (Manhattan) College Accountant 55566.00000 5.556600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.556600e+04 5.556600e+04 0.00 NULL
2020 Community College (Manhattan) College Accounting Assistant 49691.50000 6.956810e+05 8330.17 5.950121e+02 0.000 241.00 14 0.000000e+00 0.00 7.040112e+05 6.956810e+05 8330.17 NULL
2020 Community College (Manhattan) College Assistant 3970.77020 7.171211e+06 165176.28 9.145973e+01 0.000 9897.00 1806 0.000000e+00 0.00 7.336387e+06 7.171211e+06 165176.28 NULL
2020 Community College (Manhattan) College Graph Designer 52842.33333 1.585270e+05 46.44 1.548000e+01 0.500 0.00 3 5.000000e-01 1.50 1.585734e+05 1.585285e+05 44.94 NULL
2020 Community College (Manhattan) College Lab Technician 60779.88889 1.094038e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.094038e+06 1.094038e+06 0.00 NULL
2020 Community College (Manhattan) College Print Shop Assistant 32564.14286 2.279490e+05 2012.15 2.874500e+02 115.600 96.50 7 1.156000e+02 809.20 2.299611e+05 2.287582e+05 1202.95 NULL
2020 Community College (Manhattan) College Print Shop Associate 40793.00000 4.079300e+04 221.40 2.214000e+02 221.400 10.25 1 2.214000e+02 221.40 4.101440e+04 4.101440e+04 0.00 NULL
2020 Community College (Manhattan) College Print Shop Coordinator 64351.00000 6.435100e+04 2859.02 2.859020e+03 2859.020 64.00 1 2.859020e+03 2859.02 6.721002e+04 6.721002e+04 0.00 NULL
2020 Community College (Manhattan) College Security Director 125292.00000 1.252920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.252920e+05 1.252920e+05 0.00 NULL
2020 Community College (Manhattan) Computer Systems Manager 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2020 Community College (Manhattan) Continuing Education Teacher 8424.64239 1.550134e+06 0.00 0.000000e+00 0.000 0.00 184 0.000000e+00 0.00 1.550134e+06 1.550134e+06 0.00 NULL
2020 Community College (Manhattan) Cuny Administrator Assistant 55956.90909 6.155260e+05 3270.10 2.972818e+02 0.000 97.75 11 0.000000e+00 0.00 6.187961e+05 6.155260e+05 3270.10 NULL
2020 Community College (Manhattan) Cuny Art Model 2927.13083 1.756278e+04 1519.15 2.531917e+02 239.320 73.00 6 2.393200e+02 1435.92 1.908194e+04 1.899871e+04 83.23 NULL
2020 Community College (Manhattan) Cuny Broadcast Associate 71608.00000 7.160800e+04 29.18 2.918000e+01 29.180 0.00 1 2.918000e+01 29.18 7.163718e+04 7.163718e+04 0.00 NULL
2020 Community College (Manhattan) Cuny Custodial Assistant 20484.19750 3.195535e+06 316778.80 2.030633e+03 174.820 12398.91 156 1.748200e+02 27271.92 3.512314e+06 3.222807e+06 289506.88 NULL
2020 Community College (Manhattan) Cuny Office Assistant 38812.27273 4.269350e+06 19613.42 1.783038e+02 0.000 662.75 110 0.000000e+00 0.00 4.288963e+06 4.269350e+06 19613.42 NULL
2020 Community College (Manhattan) Cuny Start Instructor 60495.14286 1.270398e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.270398e+06 1.270398e+06 0.00 NULL
2020 Community College (Manhattan) Custodial Supervisor 38555.42857 5.397760e+05 41512.74 2.965196e+03 2731.705 1410.25 14 2.731705e+03 38243.87 5.812887e+05 5.780199e+05 3268.87 NULL
2020 Community College (Manhattan) Dean 163823.50000 6.552940e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.552940e+05 6.552940e+05 0.00 NULL
2020 Community College (Manhattan) Disability Accommodations Specialist 46851.00000 4.685100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.685100e+04 4.685100e+04 0.00 NULL
2020 Community College (Manhattan) Electrician NA NA 56418.05 4.701504e+03 1712.300 642.50 12 1.712300e+03 20547.60 NA NA NA NULL
2020 Community College (Manhattan) Electrician’s Helper NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Manhattan) Eoc Accounting Assistant 44601.00000 8.920200e+04 498.66 2.493300e+02 249.330 16.75 2 2.493300e+02 498.66 8.970066e+04 8.970066e+04 0.00 NULL
2020 Community College (Manhattan) Eoc Adjunct College Lab Tech 10553.86000 1.055386e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.055386e+04 1.055386e+04 0.00 NULL
2020 Community College (Manhattan) Eoc Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Manhattan) Eoc Assistant 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Community College (Manhattan) Eoc Assistant To Heo 63425.27273 6.976780e+05 204.08 1.855273e+01 0.000 5.50 11 0.000000e+00 0.00 6.978821e+05 6.976780e+05 204.08 NULL
2020 Community College (Manhattan) Eoc College Lab Technician 64654.50000 1.293090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.293090e+05 1.293090e+05 0.00 NULL
2020 Community College (Manhattan) Eoc Higher Education Assistant 91633.75000 3.665350e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.665350e+05 3.665350e+05 0.00 NULL
2020 Community College (Manhattan) Eoc Higher Education Associate 94542.00000 9.454200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.454200e+04 9.454200e+04 0.00 NULL
2020 Community College (Manhattan) Eoc Higher Education Officer 120525.00000 4.821000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.821000e+05 4.821000e+05 0.00 NULL
2020 Community College (Manhattan) Eoc Lecturer 82339.50000 6.587160e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.587160e+05 6.587160e+05 0.00 NULL
2020 Community College (Manhattan) Eoc Lecturer/ Doctral Schedule 86781.00000 1.735620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.735620e+05 1.735620e+05 0.00 NULL
2020 Community College (Manhattan) Eoc Mail/Message Services Worker 35080.50000 7.016100e+04 27.58 1.379000e+01 13.790 1.00 2 1.379000e+01 27.58 7.018858e+04 7.018858e+04 0.00 NULL
2020 Community College (Manhattan) Eoc Office Assistant 40863.00000 4.903560e+05 2163.75 1.803125e+02 40.500 77.91 12 4.050000e+01 486.00 4.925198e+05 4.908420e+05 1677.75 NULL
2020 Community College (Manhattan) Facilities Coordinator 64466.00000 6.446600e+04 161.35 1.613500e+02 161.350 3.00 1 1.613500e+02 161.35 6.462735e+04 6.462735e+04 0.00 NULL
2020 Community College (Manhattan) Higher Education Assistant 72343.71023 1.273249e+07 4106.16 2.333045e+01 0.000 73.50 176 0.000000e+00 0.00 1.273660e+07 1.273249e+07 4106.16 NULL
2020 Community College (Manhattan) Higher Education Associate 95029.30556 6.842110e+06 12.67 1.759722e-01 0.000 0.00 72 0.000000e+00 0.00 6.842123e+06 6.842110e+06 12.67 NULL
2020 Community College (Manhattan) Higher Education Officer 121247.30769 6.304860e+06 0.00 0.000000e+00 0.000 0.00 52 0.000000e+00 0.00 6.304860e+06 6.304860e+06 0.00 NULL
2020 Community College (Manhattan) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Manhattan) It Assistant 56348.31579 1.070618e+06 3477.83 1.830437e+02 0.000 65.75 19 0.000000e+00 0.00 1.074096e+06 1.070618e+06 3477.83 NULL
2020 Community College (Manhattan) It Associate 65056.42857 4.553950e+05 4500.61 6.429443e+02 103.280 87.00 7 1.032800e+02 722.96 4.598956e+05 4.561180e+05 3777.65 NULL
2020 Community College (Manhattan) It Senior Associate 99832.00000 6.988240e+05 4718.16 6.740229e+02 0.000 72.75 7 0.000000e+00 0.00 7.035422e+05 6.988240e+05 4718.16 NULL
2020 Community College (Manhattan) It Support Assistant 22261.22562 7.123592e+05 459.06 1.434563e+01 0.000 14.00 32 0.000000e+00 0.00 7.128183e+05 7.123592e+05 459.06 NULL
2020 Community College (Manhattan) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 108 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Manhattan) Lecturer/Doctoral Schedule 78605.00000 3.144200e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.144200e+05 3.144200e+05 0.00 NULL
2020 Community College (Manhattan) Locksmith NA NA 2703.04 1.351520e+03 1351.520 59.50 2 1.351520e+03 2703.04 NA NA NA NULL
2020 Community College (Manhattan) Mail/Message Services Worker 35658.50000 1.426340e+05 39.60 9.900000e+00 6.045 0.00 4 6.045000e+00 24.18 1.426736e+05 1.426582e+05 15.42 NULL
2020 Community College (Manhattan) Maintenance Worker NA NA 9910.80 3.303600e+03 3509.000 253.50 3 3.303600e+03 9910.80 NA NA NA NULL
2020 Community College (Manhattan) Non-Teaching Adjunct I NA NA 0.00 0.000000e+00 0.000 0.00 279 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Manhattan) Non-Teaching Adjunct Ii NA NA 0.00 0.000000e+00 0.000 0.00 61 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Manhattan) Non-Teaching Adjunct Iii 2921.64875 2.746350e+05 0.00 0.000000e+00 0.000 0.00 94 0.000000e+00 0.00 2.746350e+05 2.746350e+05 0.00 NULL
2020 Community College (Manhattan) Non-Teaching Adjunct Iv 1238.50486 4.582468e+04 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 4.582468e+04 4.582468e+04 0.00 NULL
2020 Community College (Manhattan) Non-Teaching Adjunct V 3543.35437 7.086709e+04 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 7.086709e+04 7.086709e+04 0.00 NULL
2020 Community College (Manhattan) Oiler NA NA 148377.74 1.141367e+04 10376.370 1858.25 13 1.037637e+04 134892.81 NA NA NA NULL
2020 Community College (Manhattan) Painter NA NA 41573.85 5.939121e+03 7808.790 640.00 7 5.939121e+03 41573.85 NA NA NA NULL
2020 Community College (Manhattan) Plumber NA NA 112521.94 3.750731e+04 38167.190 1066.75 3 3.750731e+04 112521.94 NA NA NA NULL
2020 Community College (Manhattan) President 230500.00000 4.610000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.610000e+05 4.610000e+05 0.00 NULL
2020 Community College (Manhattan) Principal Custodial Supervisor 65631.00000 1.312620e+05 19205.46 9.602730e+03 9602.730 363.00 2 9.602730e+03 19205.46 1.504675e+05 1.504675e+05 0.00 NULL
2020 Community College (Manhattan) Professor NA NA 0.00 0.000000e+00 0.000 0.00 176 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Manhattan) Purchasing Agent 60279.00000 3.013950e+05 268.35 5.367000e+01 38.240 4.50 5 3.824000e+01 191.20 3.016633e+05 3.015862e+05 77.15 NULL
2020 Community College (Manhattan) Research Assistant 43942.50000 8.788500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.788500e+04 8.788500e+04 0.00 NULL
2020 Community College (Manhattan) Senior College Lab Tech 74276.82353 1.262706e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.262706e+06 1.262706e+06 0.00 NULL
2020 Community College (Manhattan) Senior Custodial Supervisor 41913.00000 8.382600e+04 22996.68 1.149834e+04 11498.340 712.50 2 1.149834e+04 22996.68 1.068227e+05 1.068227e+05 0.00 NULL
2020 Community College (Manhattan) Senior Stationary Engineer NA NA 46701.54 2.335077e+04 23350.770 458.00 2 2.335077e+04 46701.54 NA NA NA NULL
2020 Community College (Manhattan) Senior Vice President 195450.00000 1.954500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.954500e+05 1.954500e+05 0.00 NULL
2020 Community College (Manhattan) Sign Language Interpreter 20960.73375 8.384293e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.384293e+04 8.384293e+04 0.00 NULL
2020 Community College (Manhattan) Staff Nurse 97343.00000 9.734300e+04 1.13 1.130000e+00 1.130 0.00 1 1.130000e+00 1.13 9.734413e+04 9.734413e+04 0.00 NULL
2020 Community College (Manhattan) Stationary Engineer NA NA 201486.87 1.831699e+04 18738.720 2330.50 11 1.831699e+04 201486.87 NA NA NA NULL
2020 Community College (Manhattan) Stock Worker 33735.00000 1.012050e+05 1089.39 3.631300e+02 120.020 50.00 3 1.200200e+02 360.06 1.022944e+05 1.015651e+05 729.33 NULL
2020 Community College (Manhattan) Student Aide 327.89364 1.082049e+04 1852.50 5.613636e+01 0.000 123.50 33 0.000000e+00 0.00 1.267299e+04 1.082049e+04 1852.50 NULL
2020 Community College (Manhattan) Supervisor Of Stock Workers 56785.00000 5.678500e+04 404.05 4.040500e+02 404.050 11.00 1 4.040500e+02 404.05 5.718905e+04 5.718905e+04 0.00 NULL
2020 Community College (Manhattan) Supervisor Painter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Manhattan) Thermostat Repairer NA NA 739.06 7.390600e+02 739.060 7.00 1 7.390600e+02 739.06 NA NA NA NULL
2020 Community College (Manhattan) University Professor 162270.00000 1.622700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.622700e+05 1.622700e+05 0.00 NULL
2020 Community College (Manhattan) Vice President 185390.66667 1.112344e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.112344e+06 1.112344e+06 0.00 NULL
2020 Community College (Queensboro) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 147 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Queensboro) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Queensboro) Adjunct College Lab Tech 7062.21825 6.144130e+05 0.00 0.000000e+00 0.000 0.00 87 0.000000e+00 0.00 6.144130e+05 6.144130e+05 0.00 NULL
2020 Community College (Queensboro) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 499 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Queensboro) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Queensboro) Adjunct Senior College Lab Tech 6771.09364 7.448203e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.448203e+04 7.448203e+04 0.00 NULL
2020 Community College (Queensboro) Administrator 155622.66667 4.668680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.668680e+05 4.668680e+05 0.00 NULL
2020 Community College (Queensboro) Administrator Supt Campus B/G 90075.47333 2.702264e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.702264e+05 2.702264e+05 0.00 NULL
2020 Community College (Queensboro) Assistant Administrator 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2020 Community College (Queensboro) Assistant College Security Director 89368.00000 1.787360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.787360e+05 1.787360e+05 0.00 NULL
2020 Community College (Queensboro) Assistant Dean 130000.00000 3.900000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.900000e+05 3.900000e+05 0.00 NULL
2020 Community College (Queensboro) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 198 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Queensboro) Assistant Purchasing Agent 42777.00000 4.277700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.277700e+04 4.277700e+04 0.00 NULL
2020 Community College (Queensboro) Assistant To Heo 56238.05085 3.318045e+06 0.00 0.000000e+00 0.000 0.00 59 0.000000e+00 0.00 3.318045e+06 3.318045e+06 0.00 NULL
2020 Community College (Queensboro) Associate Administrator 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2020 Community College (Queensboro) Associate Dean 142500.00000 1.425000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.425000e+05 1.425000e+05 0.00 NULL
2020 Community College (Queensboro) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 212 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Queensboro) Auto Mechanic NA NA 106.77 1.067700e+02 106.770 0.00 1 1.067700e+02 106.77 NA NA NA NULL
2020 Community College (Queensboro) Campus Peace Officer 44350.28125 1.419209e+06 74790.59 2.337206e+03 1542.220 2376.75 32 1.542220e+03 49351.04 1.494000e+06 1.468560e+06 25439.55 NULL
2020 Community College (Queensboro) Campus Public Safety Sergeant 55370.00000 4.429600e+05 34885.75 4.360719e+03 3162.300 874.25 8 3.162300e+03 25298.40 4.778458e+05 4.682584e+05 9587.35 NULL
2020 Community College (Queensboro) Campus Security Assistant 33554.76923 4.362120e+05 10390.89 7.992992e+02 193.910 445.50 13 1.939100e+02 2520.83 4.466029e+05 4.387328e+05 7870.06 NULL
2020 Community College (Queensboro) Carpenter NA NA 51734.27 1.724476e+04 18389.070 669.00 3 1.724476e+04 51734.27 NA NA NA NULL
2020 Community College (Queensboro) Cement Mason NA NA 4150.23 4.150230e+03 4150.230 5.00 1 4.150230e+03 4150.23 NA NA NA NULL
2020 Community College (Queensboro) Chief Administrative Supt Campus B/G 142658.00000 1.426580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.426580e+05 1.426580e+05 0.00 NULL
2020 Community College (Queensboro) Chief College Lab Technician 47598.31111 4.283848e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.283848e+05 4.283848e+05 0.00 NULL
2020 Community College (Queensboro) City Laborer NA NA 53307.50 7.615357e+03 7242.730 991.00 7 7.242730e+03 50699.11 NA NA NA NULL
2020 Community College (Queensboro) Clip Instructor 55542.40000 5.554240e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.554240e+05 5.554240e+05 0.00 NULL
2020 Community College (Queensboro) College Accountant 63505.00000 2.540200e+05 14.12 3.530000e+00 0.000 0.00 4 0.000000e+00 0.00 2.540341e+05 2.540200e+05 14.12 NULL
2020 Community College (Queensboro) College Accounting Assistant 47883.50000 9.576700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.576700e+04 9.576700e+04 0.00 NULL
2020 Community College (Queensboro) College Assistant 2830.31875 4.024713e+06 443.48 3.118706e-01 0.000 12.25 1422 0.000000e+00 0.00 4.025157e+06 4.024713e+06 443.48 NULL
2020 Community College (Queensboro) College Graph Designer 68820.00000 6.882000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.882000e+04 6.882000e+04 0.00 NULL
2020 Community College (Queensboro) College Lab Technician 52363.92960 1.309098e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.309098e+06 1.309098e+06 0.00 NULL
2020 Community College (Queensboro) College Print Shop Assistant 39353.00000 3.935300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.935300e+04 3.935300e+04 0.00 NULL
2020 Community College (Queensboro) College Print Shop Associate 45702.50000 9.140500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.140500e+04 9.140500e+04 0.00 NULL
2020 Community College (Queensboro) College Print Shop Coordinator 60639.00000 6.063900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.063900e+04 6.063900e+04 0.00 NULL
2020 Community College (Queensboro) College Security Director 147704.00000 1.477040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.477040e+05 1.477040e+05 0.00 NULL
2020 Community College (Queensboro) College Security Specialist 58317.00000 1.166340e+05 3037.37 1.518685e+03 1518.685 72.50 2 1.518685e+03 3037.37 1.196714e+05 1.196714e+05 0.00 NULL
2020 Community College (Queensboro) Computer Systems Manager 131602.80000 6.580140e+05 40.92 8.184000e+00 7.820 0.00 5 7.820000e+00 39.10 6.580549e+05 6.580531e+05 1.82 NULL
2020 Community College (Queensboro) Continuing Education Teacher 4587.32022 9.725119e+05 0.00 0.000000e+00 0.000 0.00 212 0.000000e+00 0.00 9.725119e+05 9.725119e+05 0.00 NULL
2020 Community College (Queensboro) Cuny Administrator Assistant 55211.66667 1.821985e+06 201.10 6.093939e+00 0.000 0.00 33 0.000000e+00 0.00 1.822186e+06 1.821985e+06 201.10 NULL
2020 Community College (Queensboro) Cuny Broadcast Associate 54725.00000 5.472500e+04 5.03 5.030000e+00 5.030 0.00 1 5.030000e+00 5.03 5.473003e+04 5.473003e+04 0.00 NULL
2020 Community College (Queensboro) Cuny Custodial Assistant 29686.32652 1.959298e+06 24889.65 3.771159e+02 62.245 350.25 66 6.224500e+01 4108.17 1.984187e+06 1.963406e+06 20781.48 NULL
2020 Community College (Queensboro) Cuny Office Assistant 40272.62791 3.463446e+06 241.83 2.811977e+00 0.000 0.00 86 0.000000e+00 0.00 3.463688e+06 3.463446e+06 241.83 NULL
2020 Community College (Queensboro) Cuny Start Instructor 62368.56250 9.978970e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 9.978970e+05 9.978970e+05 0.00 NULL
2020 Community College (Queensboro) Custodial Supervisor 38414.37500 3.073150e+05 2954.52 3.693150e+02 223.895 71.00 8 2.238950e+02 1791.16 3.102695e+05 3.091062e+05 1163.36 NULL
2020 Community College (Queensboro) Dean 159200.00000 7.960000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.960000e+05 7.960000e+05 0.00 NULL
2020 Community College (Queensboro) Disability Accommodations Specialist 23843.77757 1.669064e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.669064e+05 1.669064e+05 0.00 NULL
2020 Community College (Queensboro) Electrician NA NA 72801.95 1.040028e+04 13149.590 829.75 7 1.040028e+04 72801.95 NA NA NA NULL
2020 Community College (Queensboro) Facilities Coordinator 77880.00000 7.788000e+04 232.53 2.325300e+02 232.530 0.00 1 2.325300e+02 232.53 7.811253e+04 7.811253e+04 0.00 NULL
2020 Community College (Queensboro) High Pressure Plant Tender NA NA 29575.00 3.696875e+03 3955.000 569.00 8 3.696875e+03 29575.00 NA NA NA NULL
2020 Community College (Queensboro) Higher Education Assistant 73926.42991 7.910128e+06 0.00 0.000000e+00 0.000 0.00 107 0.000000e+00 0.00 7.910128e+06 7.910128e+06 0.00 NULL
2020 Community College (Queensboro) Higher Education Associate 99446.69231 5.171228e+06 0.00 0.000000e+00 0.000 0.00 52 0.000000e+00 0.00 5.171228e+06 5.171228e+06 0.00 NULL
2020 Community College (Queensboro) Higher Education Officer 121277.26923 6.306418e+06 0.00 0.000000e+00 0.000 0.00 52 0.000000e+00 0.00 6.306418e+06 6.306418e+06 0.00 NULL
2020 Community College (Queensboro) Higher Education Officer/Asst Administrator 141346.00000 1.413460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.413460e+05 1.413460e+05 0.00 NULL
2020 Community College (Queensboro) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Queensboro) It Assistant 60588.00000 1.817640e+05 4586.22 1.528740e+03 2101.320 113.50 3 1.528740e+03 4586.22 1.863502e+05 1.863502e+05 0.00 NULL
2020 Community College (Queensboro) It Associate 74039.42857 5.182760e+05 3193.97 4.562814e+02 0.000 63.00 7 0.000000e+00 0.00 5.214700e+05 5.182760e+05 3193.97 NULL
2020 Community College (Queensboro) It Senior Associate 105284.72727 1.158132e+06 14271.08 1.297371e+03 34.570 150.00 11 3.457000e+01 380.27 1.172403e+06 1.158512e+06 13890.81 NULL
2020 Community College (Queensboro) It Support Assistant 16826.69385 2.187470e+05 1255.96 9.661231e+01 0.000 34.50 13 0.000000e+00 0.00 2.200030e+05 2.187470e+05 1255.96 NULL
2020 Community College (Queensboro) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 136 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Queensboro) Lecturer/Doctoral Schedule 80106.60000 8.010660e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 8.010660e+05 8.010660e+05 0.00 NULL
2020 Community College (Queensboro) Locksmith NA NA 4237.95 4.237950e+03 4237.950 82.50 1 4.237950e+03 4237.95 NA NA NA NULL
2020 Community College (Queensboro) Mail/Message Services Worker 41069.50000 8.213900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.213900e+04 8.213900e+04 0.00 NULL
2020 Community College (Queensboro) Maintenance Worker NA NA 19799.75 6.599917e+03 7003.500 466.50 3 6.599917e+03 19799.75 NA NA NA NULL
2020 Community College (Queensboro) Motor Vehicle Operator 44697.66667 1.340930e+05 3287.31 1.095770e+03 191.550 81.00 3 1.915500e+02 574.65 1.373803e+05 1.346676e+05 2712.66 NULL
2020 Community College (Queensboro) Non-Teaching Adjunct I 3122.66495 6.276557e+05 0.00 0.000000e+00 0.000 0.00 201 0.000000e+00 0.00 6.276557e+05 6.276557e+05 0.00 NULL
2020 Community College (Queensboro) Non-Teaching Adjunct Iii 973.64119 8.762771e+04 0.00 0.000000e+00 0.000 0.00 90 0.000000e+00 0.00 8.762771e+04 8.762771e+04 0.00 NULL
2020 Community College (Queensboro) Non-Teaching Adjunct Iv 817.37118 4.168593e+04 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 4.168593e+04 4.168593e+04 0.00 NULL
2020 Community College (Queensboro) Non-Teaching Adjunct V 926.75269 2.409557e+04 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 2.409557e+04 2.409557e+04 0.00 NULL
2020 Community College (Queensboro) Oiler NA NA 19466.40 1.946640e+04 19466.400 227.00 1 1.946640e+04 19466.40 NA NA NA NULL
2020 Community College (Queensboro) Painter NA NA 9230.41 9.230410e+03 9230.410 147.25 1 9.230410e+03 9230.41 NA NA NA NULL
2020 Community College (Queensboro) Plumber NA NA 21089.61 1.054481e+04 10544.805 199.75 2 1.054481e+04 21089.61 NA NA NA NULL
2020 Community College (Queensboro) President 220000.00000 2.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.200000e+05 2.200000e+05 0.00 NULL
2020 Community College (Queensboro) Professor NA NA 0.00 0.000000e+00 0.000 0.00 130 0.000000e+00 0.00 NA NA NA NULL
2020 Community College (Queensboro) Project Manager 95069.00000 9.506900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.506900e+04 9.506900e+04 0.00 NULL
2020 Community College (Queensboro) Senior College Lab Tech 73191.84000 1.829796e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.829796e+06 1.829796e+06 0.00 NULL
2020 Community College (Queensboro) Senior Custodial Supervisor 42039.50000 8.407900e+04 5352.04 2.676020e+03 2676.020 102.00 2 2.676020e+03 5352.04 8.943104e+04 8.943104e+04 0.00 NULL
2020 Community College (Queensboro) Senior Stationary Engineer NA NA 4749.31 4.749310e+03 4749.310 45.00 1 4.749310e+03 4749.31 NA NA NA NULL
2020 Community College (Queensboro) Senior Vice President 199500.00000 1.995000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.995000e+05 1.995000e+05 0.00 NULL
2020 Community College (Queensboro) Sr College Laboratory Tech 5179.08364 5.696992e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.696992e+04 5.696992e+04 0.00 NULL
2020 Community College (Queensboro) Staff Nurse 77064.47500 1.541290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.541290e+05 1.541290e+05 0.00 NULL
2020 Community College (Queensboro) Stationary Engineer NA NA 160237.35 2.670622e+04 23727.600 1758.50 6 2.372760e+04 142365.60 NA NA NA NULL
2020 Community College (Queensboro) Stock Worker 33735.00000 3.373500e+04 110.79 1.107900e+02 110.790 4.00 1 1.107900e+02 110.79 3.384579e+04 3.384579e+04 0.00 NULL
2020 Community College (Queensboro) Supervisor Of Stock Workers 56785.00000 5.678500e+04 376.26 3.762600e+02 376.260 8.00 1 3.762600e+02 376.26 5.716126e+04 5.716126e+04 0.00 NULL
2020 Community College (Queensboro) Supervisor Painter NA NA 12895.20 1.289520e+04 12895.200 180.00 1 1.289520e+04 12895.20 NA NA NA NULL
2020 Community College (Queensboro) Thermostat Repairer NA NA 27028.48 2.702848e+04 27028.480 256.00 1 2.702848e+04 27028.48 NA NA NA NULL
2020 Community College (Queensboro) University Architect 74486.00000 7.448600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.448600e+04 7.448600e+04 0.00 NULL
2020 Community College (Queensboro) University Engineer 96040.00000 9.604000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.604000e+04 9.604000e+04 0.00 NULL
2020 Community College (Queensboro) Vice President 185552.33333 1.113314e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.113314e+06 1.113314e+06 0.00 NULL
2020 Community College (Queensboro) NA 64280.33333 1.928410e+05 8223.81 2.741270e+03 2806.530 108.00 3 2.741270e+03 8223.81 2.010648e+05 2.010648e+05 0.00 NULL
2020 Conflicts Of Interest Board Administrative Claim Examiner 111100.00000 1.111000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.111000e+05 1.111000e+05 0.00 NULL
2020 Conflicts Of Interest Board Administrative Staff Analyst 150393.00000 1.503930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503930e+05 1.503930e+05 0.00 NULL
2020 Conflicts Of Interest Board Agency Attorney 80833.14286 5.658320e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.658320e+05 5.658320e+05 0.00 NULL
2020 Conflicts Of Interest Board Agency Chief Contracting Officer 130145.00000 1.301450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.301450e+05 1.301450e+05 0.00 NULL
2020 Conflicts Of Interest Board Community Associate 52893.75000 2.115750e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.115750e+05 2.115750e+05 0.00 NULL
2020 Conflicts Of Interest Board Community Coordinator 65281.00000 6.528100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.528100e+04 6.528100e+04 0.00 NULL
2020 Conflicts Of Interest Board Computer Operations Manager 127082.00000 1.270820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.270820e+05 1.270820e+05 0.00 NULL
2020 Conflicts Of Interest Board Computer Specialist 97389.00000 9.738900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.738900e+04 9.738900e+04 0.00 NULL
2020 Conflicts Of Interest Board Confidential Investigator 49740.50000 1.989620e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.989620e+05 1.989620e+05 0.00 NULL
2020 Conflicts Of Interest Board Counsel 223735.00000 2.237350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.237350e+05 2.237350e+05 0.00 NULL
2020 Conflicts Of Interest Board Executive Agency Counsel 155179.40000 7.758970e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.758970e+05 7.758970e+05 0.00 NULL
2020 Conflicts Of Interest Board Principal Administrative Associate - Non Supvr 56360.00000 5.636000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.636000e+04 5.636000e+04 0.00 NULL
2020 Conflicts Of Interest Board Secretary To Conflicts Of Interest Board 60157.00000 6.015700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.015700e+04 6.015700e+04 0.00 NULL
2020 Consumer Affairs Adm Manager-Non-Mgrl 73806.00000 2.214180e+05 146.45 4.881667e+01 9.760 0.00 3 9.760000e+00 29.28 2.215645e+05 2.214473e+05 117.17 NULL
2020 Consumer Affairs Admin Community Relations Specialist 63623.00000 1.272460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.272460e+05 1.272460e+05 0.00 NULL
2020 Consumer Affairs Admin Contract Specialist 120285.00000 2.405700e+05 3.22 1.610000e+00 1.610 0.00 2 1.610000e+00 3.22 2.405732e+05 2.405732e+05 0.00 NULL
2020 Consumer Affairs Administrative Business Promotion Coordinator 96716.00000 9.671600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.671600e+04 9.671600e+04 0.00 NULL
2020 Consumer Affairs Administrative Contract Specialist 76062.50000 1.521250e+05 268.88 1.344400e+02 134.440 6.75 2 1.344400e+02 268.88 1.523939e+05 1.523939e+05 0.00 NULL
2020 Consumer Affairs Administrative Procurement Analyst-Non-Mgrl 69693.00000 6.969300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.969300e+04 6.969300e+04 0.00 NULL
2020 Consumer Affairs Administrative Public Information Specialist 96060.50000 1.921210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.921210e+05 1.921210e+05 0.00 NULL
2020 Consumer Affairs Administrative Staff Analyst 122330.06667 1.834951e+06 3111.35 2.074233e+02 0.000 69.50 15 0.000000e+00 0.00 1.838062e+06 1.834951e+06 3111.35 NULL
2020 Consumer Affairs Agency Attorney 81617.62000 4.080881e+06 1959.87 3.919740e+01 0.000 19.75 50 0.000000e+00 0.00 4.082841e+06 4.080881e+06 1959.87 NULL
2020 Consumer Affairs Assistant To The Commissioner 96452.00000 9.645200e+04 128.14 1.281400e+02 128.140 2.00 1 1.281400e+02 128.14 9.658014e+04 9.658014e+04 0.00 NULL
2020 Consumer Affairs Associate Inspector 77035.33333 1.617742e+06 1387.00 6.604762e+01 0.000 30.00 21 0.000000e+00 0.00 1.619129e+06 1.617742e+06 1387.00 NULL
2020 Consumer Affairs Associate Staff Analyst 75591.00000 7.559100e+04 480.80 4.808000e+02 480.800 12.00 1 4.808000e+02 480.80 7.607180e+04 7.607180e+04 0.00 NULL
2020 Consumer Affairs Bookkeeper 45118.00000 4.511800e+04 17.98 1.798000e+01 17.980 0.75 1 1.798000e+01 17.98 4.513598e+04 4.513598e+04 0.00 NULL
2020 Consumer Affairs Business Promotion Coordinator 85813.60000 4.290680e+05 5.33 1.066000e+00 0.000 0.00 5 0.000000e+00 0.00 4.290733e+05 4.290680e+05 5.33 NULL
2020 Consumer Affairs Certified It Administrator 94244.00000 9.424400e+04 11980.30 1.198030e+04 11980.300 184.75 1 1.198030e+04 11980.30 1.062243e+05 1.062243e+05 0.00 NULL
2020 Consumer Affairs Certified It Developer 114539.83333 6.872390e+05 907.13 1.511883e+02 0.000 12.00 6 0.000000e+00 0.00 6.881461e+05 6.872390e+05 907.13 NULL
2020 Consumer Affairs City Research Scientist 94119.85714 6.588390e+05 1.17 1.671429e-01 0.000 0.00 7 0.000000e+00 0.00 6.588402e+05 6.588390e+05 1.17 NULL
2020 Consumer Affairs Clerical Associate 46040.88710 2.854535e+06 39606.93 6.388215e+02 0.000 1144.00 62 0.000000e+00 0.00 2.894142e+06 2.854535e+06 39606.93 NULL
2020 Consumer Affairs College Aide 4406.06250 4.406062e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.406062e+03 4.406062e+03 0.00 NULL
2020 Consumer Affairs Commissioner 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2020 Consumer Affairs Community Assistant 41192.50000 1.647700e+05 7760.45 1.940112e+03 0.000 244.00 4 0.000000e+00 0.00 1.725305e+05 1.647700e+05 7760.45 NULL
2020 Consumer Affairs Community Associate 49069.97403 3.778388e+06 39602.49 5.143181e+02 0.000 1143.25 77 0.000000e+00 0.00 3.817990e+06 3.778388e+06 39602.49 NULL
2020 Consumer Affairs Community Coordinator 70188.87234 3.298877e+06 5099.05 1.084904e+02 0.000 122.25 47 0.000000e+00 0.00 3.303976e+06 3.298877e+06 5099.05 NULL
2020 Consumer Affairs Computer Associate 67716.50000 5.417320e+05 12841.92 1.605240e+03 1057.620 260.25 8 1.057620e+03 8460.96 5.545739e+05 5.501930e+05 4380.96 NULL
2020 Consumer Affairs Computer Specialist 111701.37500 8.936110e+05 9240.24 1.155030e+03 0.000 109.50 8 0.000000e+00 0.00 9.028512e+05 8.936110e+05 9240.24 NULL
2020 Consumer Affairs Computer Systems Manager 119480.18182 1.314282e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.314282e+06 1.314282e+06 0.00 NULL
2020 Consumer Affairs Confidential Examiner 75475.50000 1.509510e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.509510e+05 1.509510e+05 0.00 NULL
2020 Consumer Affairs Consumer Advocate 91539.00000 9.153900e+04 66.94 6.694000e+01 66.940 1.50 1 6.694000e+01 66.94 9.160594e+04 9.160594e+04 0.00 NULL
2020 Consumer Affairs Counsel 193743.00000 1.937430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.937430e+05 1.937430e+05 0.00 NULL
2020 Consumer Affairs Customer Information Representative Ma L 1549 53774.54545 5.915200e+05 5029.84 4.572582e+02 0.000 185.75 11 0.000000e+00 0.00 5.965498e+05 5.915200e+05 5029.84 NULL
2020 Consumer Affairs Deputy Commissioner 204945.00000 2.049450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.049450e+05 2.049450e+05 0.00 NULL
2020 Consumer Affairs Director Of Bureau Of Consumer Services 101107.00000 1.011070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.011070e+05 1.011070e+05 0.00 NULL
2020 Consumer Affairs Director Of Consumer Information 107424.00000 1.074240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074240e+05 1.074240e+05 0.00 NULL
2020 Consumer Affairs Economist 45427.00000 4.542700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.542700e+04 4.542700e+04 0.00 NULL
2020 Consumer Affairs Executive Agency Counsel 134898.00000 1.888572e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.888572e+06 1.888572e+06 0.00 NULL
2020 Consumer Affairs Executive Assistant To The Commissioner 128909.00000 1.289090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.289090e+05 1.289090e+05 0.00 NULL
2020 Consumer Affairs General Inspector 82398.00000 1.647960e+05 1582.40 7.912000e+02 791.200 29.00 2 7.912000e+02 1582.40 1.663784e+05 1.663784e+05 0.00 NULL
2020 Consumer Affairs Graphic Artist 65285.50000 1.305710e+05 2.03 1.015000e+00 1.015 0.00 2 1.015000e+00 2.03 1.305730e+05 1.305730e+05 0.00 NULL
2020 Consumer Affairs Inspector 51858.59677 3.215233e+06 13859.12 2.235342e+02 0.000 365.75 62 0.000000e+00 0.00 3.229092e+06 3.215233e+06 13859.12 NULL
2020 Consumer Affairs Labor Relations Analyst 58127.00000 5.812700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.812700e+04 5.812700e+04 0.00 NULL
2020 Consumer Affairs Principal Administrative Associate - Non Supvr 69338.00000 6.240420e+05 5318.72 5.909689e+02 22.890 101.75 9 2.289000e+01 206.01 6.293607e+05 6.242480e+05 5112.71 NULL
2020 Consumer Affairs Project Manager 72778.00000 7.277800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.277800e+04 7.277800e+04 0.00 NULL
2020 Consumer Affairs Public Records Aide 44083.00000 4.408300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.408300e+04 4.408300e+04 0.00 NULL
2020 Consumer Affairs Research Assistant 53520.42857 7.492860e+05 2417.01 1.726436e+02 0.000 81.50 14 0.000000e+00 0.00 7.517030e+05 7.492860e+05 2417.01 NULL
2020 Consumer Affairs Secretary 43933.00000 8.786600e+04 2195.70 1.097850e+03 1097.850 65.00 2 1.097850e+03 2195.70 9.006170e+04 9.006170e+04 0.00 NULL
2020 Consumer Affairs Secretary Of The Department 112296.00000 1.122960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.122960e+05 1.122960e+05 0.00 NULL
2020 Consumer Affairs Secretary To The Commissioner 89572.00000 8.957200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.957200e+04 8.957200e+04 0.00 NULL
2020 Consumer Affairs Staff Analyst 61582.50000 1.231650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.231650e+05 1.231650e+05 0.00 NULL
2020 Cultural Affairs Adm Manager-Non-Mgrl 80910.00000 1.618200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.618200e+05 1.618200e+05 0.00 NULL
2020 Cultural Affairs Admin Contract Specialist 82000.00000 8.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.200000e+04 8.200000e+04 0.00 NULL
2020 Cultural Affairs Administrative Community Relations Specialist 140429.00000 1.404290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.404290e+05 1.404290e+05 0.00 NULL
2020 Cultural Affairs Administrative Project Manager 157598.00000 1.575980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.575980e+05 1.575980e+05 0.00 NULL
2020 Cultural Affairs Administrative Public Information Specialist 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2020 Cultural Affairs Administrative Staff Analyst 101279.50000 2.025590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.025590e+05 2.025590e+05 0.00 NULL
2020 Cultural Affairs Agency Attorney 95265.00000 2.857950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.857950e+05 2.857950e+05 0.00 NULL
2020 Cultural Affairs Agency Chief Contracting Officer 108818.00000 1.088180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.088180e+05 1.088180e+05 0.00 NULL
2020 Cultural Affairs Arts Program Specialist 52789.29507 1.583679e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.583679e+05 1.583679e+05 0.00 NULL
2020 Cultural Affairs Assistant Commissioner 162956.33333 4.888690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.888690e+05 4.888690e+05 0.00 NULL
2020 Cultural Affairs Associate Arts Programs Specialist 66058.98711 9.908848e+05 6256.74 4.171160e+02 0.000 174.50 15 0.000000e+00 0.00 9.971415e+05 9.908848e+05 6256.74 NULL
2020 Cultural Affairs City Laborer 61878.75000 6.187875e+04 3.11 3.110000e+00 3.110 0.00 1 3.110000e+00 3.11 6.188186e+04 6.188186e+04 0.00 NULL
2020 Cultural Affairs City Research Scientist 128750.00000 1.287500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287500e+05 1.287500e+05 0.00 NULL
2020 Cultural Affairs Commissioner Of Cultural Affairs 227786.00000 4.555720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.555720e+05 4.555720e+05 0.00 NULL
2020 Cultural Affairs Community Assistant 39922.38015 3.992238e+04 7.34 7.340000e+00 7.340 0.25 1 7.340000e+00 7.34 3.992972e+04 3.992972e+04 0.00 NULL
2020 Cultural Affairs Community Associate 43069.75413 7.321858e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 7.321858e+05 7.321858e+05 0.00 NULL
2020 Cultural Affairs Community Coordinator 74010.90909 8.141200e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 8.141200e+05 8.141200e+05 0.00 NULL
2020 Cultural Affairs Computer Associate 99495.00000 9.949500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.949500e+04 9.949500e+04 0.00 NULL
2020 Cultural Affairs Computer Systems Manager 128147.00000 1.281470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.281470e+05 1.281470e+05 0.00 NULL
2020 Cultural Affairs Deputy Commissioner 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2020 Cultural Affairs Executive Agency Counsel 134892.00000 2.697840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.697840e+05 2.697840e+05 0.00 NULL
2020 Cultural Affairs Executive Director Of Materials For The Arts 113770.00000 1.137700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.137700e+05 1.137700e+05 0.00 NULL
2020 Cultural Affairs Secretary To The Commissioner 62211.00000 6.221100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221100e+04 6.221100e+04 0.00 NULL
2020 Cultural Affairs Staff Analyst 73914.50000 1.478290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.478290e+05 1.478290e+05 0.00 NULL
2020 Cuny Central Office Administrator Supt Campus B/G 29100.00000 2.910000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.910000e+04 2.910000e+04 0.00 NULL
2020 Cuny Central Office Assistant College Security Director 74900.00000 7.490000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.490000e+04 7.490000e+04 0.00 NULL
2020 Cuny Central Office Assistant To Heo 55662.75000 1.558557e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 1.558557e+06 1.558557e+06 0.00 NULL
2020 Cuny Central Office Campus Peace Officer 45998.50000 9.199700e+04 14540.29 7.270145e+03 7270.145 443.50 2 7.270145e+03 14540.29 1.065373e+05 1.065373e+05 0.00 NULL
2020 Cuny Central Office College Accounting Assistant 50270.00000 5.027000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.027000e+04 5.027000e+04 0.00 NULL
2020 Cuny Central Office College Assistant 5631.85950 1.126372e+05 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.126372e+05 1.126372e+05 0.00 NULL
2020 Cuny Central Office Continuing Education Teacher 19336.00000 3.867200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.867200e+04 3.867200e+04 0.00 NULL
2020 Cuny Central Office Higher Education Assistant 74118.58333 1.778846e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 1.778846e+06 1.778846e+06 0.00 NULL
2020 Cuny Central Office Higher Education Associate 87285.09375 2.793123e+06 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 2.793123e+06 2.793123e+06 0.00 NULL
2020 Cuny Central Office Higher Education Officer 104592.41667 1.255109e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.255109e+06 1.255109e+06 0.00 NULL
2020 Cuny Central Office It Associate 75196.20000 3.759810e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.759810e+05 3.759810e+05 0.00 NULL
2020 Cuny Central Office It Senior Associate 99599.00000 9.959900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.959900e+04 9.959900e+04 0.00 NULL
2020 Cuny Central Office It Support Assistant 42281.00000 4.228100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.228100e+04 4.228100e+04 0.00 NULL
2020 Cuny Central Office Non-Teaching Adjunct I 13714.86943 1.645784e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.645784e+05 1.645784e+05 0.00 NULL
2020 Cuny Central Office Non-Teaching Adjunct Ii 12947.46375 5.178986e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.178986e+04 5.178986e+04 0.00 NULL
2020 Cuny Central Office Non-Teaching Adjunct Iii 14886.17250 2.977235e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.977235e+04 2.977235e+04 0.00 NULL
2020 Cuny Central Office Non-Teaching Adjunct Iv 14514.30000 5.805720e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.805720e+04 5.805720e+04 0.00 NULL
2020 Cuny Central Office Non-Teaching Adjunct V 10072.33500 4.028934e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.028934e+04 4.028934e+04 0.00 NULL
2020 Cuny Central Office University Administrator 85729.00000 1.714580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.714580e+05 1.714580e+05 0.00 NULL
2020 Cuny Central Office University Assistant Administrator 137000.00000 1.370000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.370000e+05 1.370000e+05 0.00 NULL
2020 Cuny Central Office University Assistant Dean 137000.00000 1.370000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.370000e+05 1.370000e+05 0.00 NULL
2020 Cuny Central Office University Associate Dean 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2020 Cuny Central Office University Dean 178000.00000 1.780000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.780000e+05 1.780000e+05 0.00 NULL
2020 Cuny Central Office University Payroll Analyst 57939.66667 1.738190e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.738190e+05 1.738190e+05 0.00 NULL
2020 Department For The Aging *Attorney At Law 95074.00000 9.507400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.507400e+04 9.507400e+04 0.00 NULL
2020 Department For The Aging Accountant 72596.66667 2.177900e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.177900e+05 2.177900e+05 0.00 NULL
2020 Department For The Aging Adm Manager-Non-Mgrl 107077.00000 2.141540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.141540e+05 2.141540e+05 0.00 NULL
2020 Department For The Aging Admin Community Relations Specialist 73979.50000 1.479590e+05 7274.85 3.637425e+03 3637.425 120.50 2 3.637425e+03 7274.85 1.552339e+05 1.552339e+05 0.00 NULL
2020 Department For The Aging Admin Contract Specialist 127000.00000 1.270000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.270000e+05 1.270000e+05 0.00 NULL
2020 Department For The Aging Administrative Program Officer 106701.18190 5.335059e+06 0.00 0.000000e+00 0.000 0.00 50 0.000000e+00 0.00 5.335059e+06 5.335059e+06 0.00 NULL
2020 Department For The Aging Administrative Accountant 120054.00000 1.200540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200540e+05 1.200540e+05 0.00 NULL
2020 Department For The Aging Administrative Community Relations Specialist 133894.00000 1.338940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.338940e+05 1.338940e+05 0.00 NULL
2020 Department For The Aging Administrative Director Of Social Services 145646.50000 5.825860e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.825860e+05 5.825860e+05 0.00 NULL
2020 Department For The Aging Administrative Manager 133000.00000 1.330000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.330000e+05 1.330000e+05 0.00 NULL
2020 Department For The Aging Administrative Procurement Analyst-Non-Mgrl 77845.50000 3.113820e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.113820e+05 3.113820e+05 0.00 NULL
2020 Department For The Aging Administrative Project Manager 127949.00000 1.279490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.279490e+05 1.279490e+05 0.00 NULL
2020 Department For The Aging Administrative Public Information Specialist 99258.50000 1.985170e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.985170e+05 1.985170e+05 0.00 NULL
2020 Department For The Aging Administrative Staff Analyst 122588.52000 3.064713e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 3.064713e+06 3.064713e+06 0.00 NULL
2020 Department For The Aging Agency Chief Contracting Officer 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2020 Department For The Aging Architect 77921.00000 7.792100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.792100e+04 7.792100e+04 0.00 NULL
2020 Department For The Aging Assistant Architect 72332.50000 1.446650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.446650e+05 1.446650e+05 0.00 NULL
2020 Department For The Aging Associate Project Manager 74650.00000 7.465000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.465000e+04 7.465000e+04 0.00 NULL
2020 Department For The Aging Associate Staff Analyst 86111.66667 7.750050e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.750050e+05 7.750050e+05 0.00 NULL
2020 Department For The Aging Bookkeeper 63632.50000 1.272650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.272650e+05 1.272650e+05 0.00 NULL
2020 Department For The Aging Certified It Administrator 98122.00000 1.962440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.962440e+05 1.962440e+05 0.00 NULL
2020 Department For The Aging Certified It Developer 106023.00000 1.060230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.060230e+05 1.060230e+05 0.00 NULL
2020 Department For The Aging City Custodial Assistant 42875.00000 4.287500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.287500e+04 4.287500e+04 0.00 NULL
2020 Department For The Aging City Research Scientist 89867.00000 1.797340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.797340e+05 1.797340e+05 0.00 NULL
2020 Department For The Aging Clerical Associate 43957.53939 3.077028e+05 79.64 1.137714e+01 0.000 4.00 7 0.000000e+00 0.00 3.077824e+05 3.077028e+05 79.64 NULL
2020 Department For The Aging College Aide 7502.73833 4.501643e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.501643e+04 4.501643e+04 0.00 NULL
2020 Department For The Aging Commissioner 241166.00000 2.411660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411660e+05 2.411660e+05 0.00 NULL
2020 Department For The Aging Community Assistant 26129.56618 1.306478e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.306478e+05 1.306478e+05 0.00 NULL
2020 Department For The Aging Community Associate 48666.04162 1.897976e+06 29061.77 7.451736e+02 0.000 735.00 39 0.000000e+00 0.00 1.927037e+06 1.897976e+06 29061.77 NULL
2020 Department For The Aging Community Coordinator 66836.24423 5.213227e+06 5668.65 7.267500e+01 0.000 99.00 78 0.000000e+00 0.00 5.218896e+06 5.213227e+06 5668.65 NULL
2020 Department For The Aging Community Service Aide 9252.08899 3.404769e+06 0.00 0.000000e+00 0.000 0.00 368 0.000000e+00 0.00 3.404769e+06 3.404769e+06 0.00 NULL
2020 Department For The Aging Computer Associate 73918.92600 3.695946e+05 408.93 8.178600e+01 0.000 7.75 5 0.000000e+00 0.00 3.700036e+05 3.695946e+05 408.93 NULL
2020 Department For The Aging Computer Operations Manager 126508.20000 1.265082e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.265082e+05 1.265082e+05 0.00 NULL
2020 Department For The Aging Computer Specialist 102569.78000 1.025698e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.025698e+06 1.025698e+06 0.00 NULL
2020 Department For The Aging Computer Systems Manager 168000.00000 1.680000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.680000e+05 1.680000e+05 0.00 NULL
2020 Department For The Aging Counsel 184198.00000 1.841980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.841980e+05 1.841980e+05 0.00 NULL
2020 Department For The Aging Deputy Commissioner 192413.00000 1.924130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.924130e+05 1.924130e+05 0.00 NULL
2020 Department For The Aging Director Of Administration 183153.00000 1.831530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.831530e+05 1.831530e+05 0.00 NULL
2020 Department For The Aging Director Of Community Programs 146806.00000 1.468060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.468060e+05 1.468060e+05 0.00 NULL
2020 Department For The Aging Director Of Direct Service Programs 133478.00000 1.334780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.334780e+05 1.334780e+05 0.00 NULL
2020 Department For The Aging Director Of Research Planning And Policy Analysis 123600.00000 1.236000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.236000e+05 1.236000e+05 0.00 NULL
2020 Department For The Aging Executive Agency Counsel 126545.33333 3.796360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.796360e+05 3.796360e+05 0.00 NULL
2020 Department For The Aging Foster Grandparent 2989.02705 1.019258e+06 0.00 0.000000e+00 0.000 0.00 341 0.000000e+00 0.00 1.019258e+06 1.019258e+06 0.00 NULL
2020 Department For The Aging Housing Development Specialist 65640.00000 6.564000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.564000e+04 6.564000e+04 0.00 NULL
2020 Department For The Aging Management Auditor 76613.54545 8.427490e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 8.427490e+05 8.427490e+05 0.00 NULL
2020 Department For The Aging Nutrition Consultant 69529.00000 9.038770e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 9.038770e+05 9.038770e+05 0.00 NULL
2020 Department For The Aging Photographer 23092.58240 2.309258e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.309258e+04 2.309258e+04 0.00 NULL
2020 Department For The Aging Principal Administrative Associate - Non Supvr 64375.40909 1.416259e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 1.416259e+06 1.416259e+06 0.00 NULL
2020 Department For The Aging Principal Nutrition Consultant 78970.50000 1.579410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.579410e+05 1.579410e+05 0.00 NULL
2020 Department For The Aging Procurement Analyst 62730.00000 6.273000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.273000e+04 6.273000e+04 0.00 NULL
2020 Department For The Aging Program Officer 70282.52075 2.811301e+06 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 2.811301e+06 2.811301e+06 0.00 NULL
2020 Department For The Aging Secretary 50682.66667 1.520480e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.520480e+05 1.520480e+05 0.00 NULL
2020 Department For The Aging Summer College Intern 4440.35714 3.108250e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.108250e+04 3.108250e+04 0.00 NULL
2020 Department For The Aging Summer Graduate Intern 5112.75000 1.533825e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.533825e+04 1.533825e+04 0.00 NULL
2020 Department For The Aging Supervisor Ii 85293.50000 1.705870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.705870e+05 1.705870e+05 0.00 NULL
2020 Department For The Aging Supervisor Iii 78993.80594 3.949690e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.949690e+05 3.949690e+05 0.00 NULL
2020 Department Of Buildings Adm Manager-Non-Mgrl 81514.39344 4.972378e+06 148640.74 2.436733e+03 0.000 2736.00 61 0.000000e+00 0.00 5.121019e+06 4.972378e+06 148640.74 NULL
2020 Department Of Buildings Admin Community Relations Specialist 83972.93333 1.259594e+06 12903.40 8.602267e+02 0.000 279.00 15 0.000000e+00 0.00 1.272497e+06 1.259594e+06 12903.40 NULL
2020 Department Of Buildings Admin Inspector 105605.53488 4.541038e+06 834385.28 1.940431e+04 12537.860 13318.50 43 1.253786e+04 539127.98 5.375423e+06 5.080166e+06 295257.30 NULL
2020 Department Of Buildings Administrative Architect 133652.31579 5.078788e+06 99111.98 2.608210e+03 0.000 1336.00 38 0.000000e+00 0.00 5.177900e+06 5.078788e+06 99111.98 NULL
2020 Department Of Buildings Administrative Borough Superintendent 134904.75000 5.396190e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.396190e+05 5.396190e+05 0.00 NULL
2020 Department Of Buildings Administrative City Planner 108164.00000 3.244920e+05 24500.53 8.166843e+03 0.000 347.25 3 0.000000e+00 0.00 3.489925e+05 3.244920e+05 24500.53 NULL
2020 Department Of Buildings Administrative Engineer 133193.76596 6.260107e+06 60218.31 1.281241e+03 0.000 950.25 47 0.000000e+00 0.00 6.320325e+06 6.260107e+06 60218.31 NULL
2020 Department Of Buildings Administrative Inspector 139352.60000 2.090289e+06 16257.75 1.083850e+03 0.000 196.75 15 0.000000e+00 0.00 2.106547e+06 2.090289e+06 16257.75 NULL
2020 Department Of Buildings Administrative Investigator 124535.00000 3.736050e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.736050e+05 3.736050e+05 0.00 NULL
2020 Department Of Buildings Administrative Management Auditor 122700.00000 1.227000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.227000e+05 1.227000e+05 0.00 NULL
2020 Department Of Buildings Administrative Manager 140242.00000 7.012100e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.012100e+05 7.012100e+05 0.00 NULL
2020 Department Of Buildings Administrative Procurement Analyst-Non-Mgrl 80266.50000 1.605330e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.605330e+05 1.605330e+05 0.00 NULL
2020 Department Of Buildings Administrative Project Manager 139755.75000 5.590230e+05 29226.58 7.306645e+03 0.000 333.75 4 0.000000e+00 0.00 5.882496e+05 5.590230e+05 29226.58 NULL
2020 Department Of Buildings Administrative Public Information Specialist 154046.00000 3.080920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.080920e+05 3.080920e+05 0.00 NULL
2020 Department Of Buildings Administrative Public Records Officer 77345.00000 7.734500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.734500e+04 7.734500e+04 0.00 NULL
2020 Department Of Buildings Administrative Staff Analyst 111231.83673 5.450360e+06 100863.35 2.058436e+03 0.000 1359.75 49 0.000000e+00 0.00 5.551223e+06 5.450360e+06 100863.35 NULL
2020 Department Of Buildings Agency Attorney 81332.71831 5.774623e+06 15802.96 2.225769e+02 0.000 285.50 71 0.000000e+00 0.00 5.790426e+06 5.774623e+06 15802.96 NULL
2020 Department Of Buildings Agency Attorney Interne 63279.57143 8.859140e+05 2713.77 1.938407e+02 0.000 77.50 14 0.000000e+00 0.00 8.886278e+05 8.859140e+05 2713.77 NULL
2020 Department Of Buildings Agency Chief Contracting Officer 138694.00000 1.386940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.386940e+05 1.386940e+05 0.00 NULL
2020 Department Of Buildings Architect 96763.50000 1.354689e+06 21134.97 1.509641e+03 0.000 330.50 14 0.000000e+00 0.00 1.375824e+06 1.354689e+06 21134.97 NULL
2020 Department Of Buildings Assistant Architect 81155.00000 1.217325e+06 10984.75 7.323167e+02 0.000 214.50 15 0.000000e+00 0.00 1.228310e+06 1.217325e+06 10984.75 NULL
2020 Department Of Buildings Assistant Civil Engineer 71427.64286 9.999870e+05 21006.35 1.500454e+03 149.180 487.25 14 1.491800e+02 2088.52 1.020993e+06 1.002076e+06 18917.83 NULL
2020 Department Of Buildings Assistant Commissioner 178045.00000 1.068270e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.068270e+06 1.068270e+06 0.00 NULL
2020 Department Of Buildings Assistant Electrical Engineer 80811.66667 2.424350e+05 2079.52 6.931733e+02 0.000 40.75 3 0.000000e+00 0.00 2.445145e+05 2.424350e+05 2079.52 NULL
2020 Department Of Buildings Assistant Mechanical Engineer 72093.00000 5.046510e+05 18763.17 2.680453e+03 0.000 303.75 7 0.000000e+00 0.00 5.234142e+05 5.046510e+05 18763.17 NULL
2020 Department Of Buildings Assistant Plan Examiner 72167.85165 1.313455e+07 340868.35 1.872903e+03 49.525 6685.00 182 4.952500e+01 9013.55 1.347542e+07 1.314356e+07 331854.80 NULL
2020 Department Of Buildings Associate Inspector 79253.21852 4.279674e+06 405718.18 7.513300e+03 565.220 8478.25 54 5.652200e+02 30521.88 4.685392e+06 4.310196e+06 375196.30 NULL
2020 Department Of Buildings Associate Investigator 67553.25000 2.702130e+05 40726.28 1.018157e+04 3507.720 1311.75 4 3.507720e+03 14030.88 3.109393e+05 2.842439e+05 26695.40 NULL
2020 Department Of Buildings Associate Labor Relations Analyst 98057.50000 1.961150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.961150e+05 1.961150e+05 0.00 NULL
2020 Department Of Buildings Associate Project Manager 92226.50000 3.689060e+05 13849.88 3.462470e+03 1780.195 240.50 4 1.780195e+03 7120.78 3.827559e+05 3.760268e+05 6729.10 NULL
2020 Department Of Buildings Associate Public Information Specialist 75197.00000 7.519700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.519700e+04 7.519700e+04 0.00 NULL
2020 Department Of Buildings Associate Staff Analyst 79852.50000 1.277640e+06 1661.68 1.038550e+02 0.000 34.00 16 0.000000e+00 0.00 1.279302e+06 1.277640e+06 1661.68 NULL
2020 Department Of Buildings Borough Commissioner 183971.00000 3.679420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.679420e+05 3.679420e+05 0.00 NULL
2020 Department Of Buildings Business Promotion Coordinator 82349.00000 8.234900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.234900e+04 8.234900e+04 0.00 NULL
2020 Department Of Buildings Certified It Administrator 101861.50000 4.074460e+05 123054.58 3.076365e+04 7786.405 1301.25 4 7.786405e+03 31145.62 5.305006e+05 4.385916e+05 91908.96 NULL
2020 Department Of Buildings Chief Of Staff 154500.00000 1.545000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.545000e+05 1.545000e+05 0.00 NULL
2020 Department Of Buildings Chief Strategy Officer 143442.50000 2.868850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.868850e+05 2.868850e+05 0.00 NULL
2020 Department Of Buildings City Planner 99891.00000 9.989100e+04 1868.80 1.868800e+03 1868.800 32.00 1 1.868800e+03 1868.80 1.017598e+05 1.017598e+05 0.00 NULL
2020 Department Of Buildings City Research Scientist 80326.80000 4.016340e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.016340e+05 4.016340e+05 0.00 NULL
2020 Department Of Buildings Civil Engineer 100788.47826 2.318135e+06 62430.98 2.714390e+03 935.810 1073.75 23 9.358100e+02 21523.63 2.380566e+06 2.339659e+06 40907.35 NULL
2020 Department Of Buildings Clerical Associate 44036.68574 9.820181e+06 222729.88 9.987887e+02 0.000 7231.07 223 0.000000e+00 0.00 1.004291e+07 9.820181e+06 222729.88 NULL
2020 Department Of Buildings College Aide 9208.53343 1.003730e+06 0.00 0.000000e+00 0.000 0.00 109 0.000000e+00 0.00 1.003730e+06 1.003730e+06 0.00 NULL
2020 Department Of Buildings College Aide - Assignment Levels Ii And Iii 11121.56460 2.224313e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.224313e+04 2.224313e+04 0.00 NULL
2020 Department Of Buildings Commissioner Of Buildings 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2020 Department Of Buildings Community Assistant 41438.40000 2.071920e+05 2112.75 4.225500e+02 57.370 91.50 5 5.737000e+01 286.85 2.093048e+05 2.074789e+05 1825.90 NULL
2020 Department Of Buildings Community Associate 47548.46875 1.093615e+06 67005.71 2.913292e+03 154.140 1952.50 23 1.541400e+02 3545.22 1.160620e+06 1.097160e+06 63460.49 NULL
2020 Department Of Buildings Community Coordinator 69417.29545 3.054361e+06 137026.06 3.114229e+03 1475.765 3020.25 44 1.475765e+03 64933.66 3.191387e+06 3.119295e+06 72092.40 NULL
2020 Department Of Buildings Computer Associate 78003.76923 1.014049e+06 66098.57 5.084505e+03 167.900 1132.00 13 1.679000e+02 2182.70 1.080148e+06 1.016232e+06 63915.87 NULL
2020 Department Of Buildings Computer Operations Manager 123600.00000 1.236000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.236000e+05 1.236000e+05 0.00 NULL
2020 Department Of Buildings Computer Programmer Analyst 68733.00000 6.873300e+04 573.71 5.737100e+02 573.710 11.75 1 5.737100e+02 573.71 6.930671e+04 6.930671e+04 0.00 NULL
2020 Department Of Buildings Computer Service Technician 65875.00000 6.587500e+04 4643.38 4.643380e+03 4643.380 104.25 1 4.643380e+03 4643.38 7.051838e+04 7.051838e+04 0.00 NULL
2020 Department Of Buildings Computer Specialist 108657.53846 1.412548e+06 18762.82 1.443294e+03 0.000 295.00 13 0.000000e+00 0.00 1.431311e+06 1.412548e+06 18762.82 NULL
2020 Department Of Buildings Computer Systems Manager 129264.55556 2.326762e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.326762e+06 2.326762e+06 0.00 NULL
2020 Department Of Buildings Confidential Strategy Planner 87834.00000 5.270040e+05 36999.38 6.166563e+03 0.000 568.50 6 0.000000e+00 0.00 5.640034e+05 5.270040e+05 36999.38 NULL
2020 Department Of Buildings Deputy Commissioner 216154.50000 4.323090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.323090e+05 4.323090e+05 0.00 NULL
2020 Department Of Buildings Electrical Engineer 110583.50000 2.211670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.211670e+05 2.211670e+05 0.00 NULL
2020 Department Of Buildings Equal Employment Opportunity Officer 120077.00000 1.200770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200770e+05 1.200770e+05 0.00 NULL
2020 Department Of Buildings Estimator 65640.00000 6.564000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.564000e+04 6.564000e+04 0.00 NULL
2020 Department Of Buildings Executive Agency Counsel 140880.63158 2.676732e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.676732e+06 2.676732e+06 0.00 NULL
2020 Department Of Buildings Executive Assistant 81193.50000 1.623870e+05 32.29 1.614500e+01 16.145 1.00 2 1.614500e+01 32.29 1.624193e+05 1.624193e+05 0.00 NULL
2020 Department Of Buildings Executive Director Of Professional Development 155764.00000 1.557640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.557640e+05 1.557640e+05 0.00 NULL
2020 Department Of Buildings Executive Director, New York City Loft Board 165934.00000 1.659340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.659340e+05 1.659340e+05 0.00 NULL
2020 Department Of Buildings Executive Inspector 120333.33333 3.610000e+05 29379.52 9.793173e+03 5038.250 690.50 3 5.038250e+03 15114.75 3.903795e+05 3.761148e+05 14264.77 NULL
2020 Department Of Buildings Executive Program Specialist 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2020 Department Of Buildings First Deputy Commissioner 232510.00000 2.325100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.325100e+05 2.325100e+05 0.00 NULL
2020 Department Of Buildings Industrial Hygienist 64447.00000 1.933410e+05 282.18 9.406000e+01 0.000 7.00 3 0.000000e+00 0.00 1.936232e+05 1.933410e+05 282.18 NULL
2020 Department Of Buildings Inspector 67208.60811 4.973437e+06 387636.07 5.238325e+03 1246.925 8419.50 74 1.246925e+03 92272.45 5.361073e+06 5.065709e+06 295363.62 NULL
2020 Department Of Buildings Inspector Boilers 77894.00000 3.115760e+05 33522.96 8.380740e+03 8900.070 1318.00 4 8.380740e+03 33522.96 3.450990e+05 3.450990e+05 0.00 NULL
2020 Department Of Buildings Inspector Construction 68021.50935 2.911321e+07 3933800.59 9.191123e+03 4645.300 76565.40 428 4.645300e+03 1988188.40 3.304701e+07 3.110139e+07 1945612.19 NULL
2020 Department Of Buildings Inspector Elevators 69271.80846 3.602134e+06 679088.87 1.305940e+04 6095.170 14043.25 52 6.095170e+03 316948.84 4.281223e+06 3.919083e+06 362140.03 NULL
2020 Department Of Buildings Inspector Hoists And Rigging 76074.00000 6.846660e+05 130919.33 1.454659e+04 17112.390 2236.25 9 1.454659e+04 130919.33 8.155853e+05 8.155853e+05 0.00 NULL
2020 Department Of Buildings Inspector Plumbing 67010.58025 5.427857e+06 410142.48 5.063487e+03 1828.650 8803.15 81 1.828650e+03 148120.65 5.837999e+06 5.575978e+06 262021.83 NULL
2020 Department Of Buildings Investigator 51337.58717 2.412867e+06 93718.75 1.994016e+03 66.570 2889.00 47 6.657000e+01 3128.79 2.506585e+06 2.415995e+06 90589.96 NULL
2020 Department Of Buildings Investigator Empl Disc 50472.50000 1.009450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.009450e+05 1.009450e+05 0.00 NULL
2020 Department Of Buildings Mechanical Engineer 95553.50000 7.644280e+05 9513.95 1.189244e+03 0.000 163.00 8 0.000000e+00 0.00 7.739419e+05 7.644280e+05 9513.95 NULL
2020 Department Of Buildings Mechanical Engineering Intern 56403.48000 5.640348e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.640348e+04 5.640348e+04 0.00 NULL
2020 Department Of Buildings Multiple Dwelling Specialist 72491.00000 2.174730e+05 20441.29 6.813763e+03 4774.830 364.25 3 4.774830e+03 14324.49 2.379143e+05 2.317975e+05 6116.80 NULL
2020 Department Of Buildings Plan Examiner 88678.03704 2.394307e+06 30234.38 1.119792e+03 0.000 565.00 27 0.000000e+00 0.00 2.424541e+06 2.394307e+06 30234.38 NULL
2020 Department Of Buildings Principal Administrative Associate - Non Supvr 64716.95158 4.918488e+06 177246.69 2.332193e+03 0.000 4305.48 76 0.000000e+00 0.00 5.095735e+06 4.918488e+06 177246.69 NULL
2020 Department Of Buildings Principal Multiple Dwelling Specialist 95468.66667 2.864060e+05 2668.08 8.893600e+02 89.680 33.00 3 8.968000e+01 269.04 2.890741e+05 2.866750e+05 2399.04 NULL
2020 Department Of Buildings Procurement Analyst 67984.20000 3.399210e+05 9932.75 1.986550e+03 0.000 279.75 5 0.000000e+00 0.00 3.498538e+05 3.399210e+05 9932.75 NULL
2020 Department Of Buildings Public Records Aide 43837.00000 4.383700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.383700e+04 4.383700e+04 0.00 NULL
2020 Department Of Buildings Public Records Officer 41159.35500 4.115936e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.115936e+04 4.115936e+04 0.00 NULL
2020 Department Of Buildings Safety Specialist 45068.00000 4.506800e+04 6530.76 6.530760e+03 6530.760 193.50 1 6.530760e+03 6530.76 5.159876e+04 5.159876e+04 0.00 NULL
2020 Department Of Buildings Secretary 45814.55000 9.162910e+05 33194.20 1.659710e+03 0.000 846.00 20 0.000000e+00 0.00 9.494852e+05 9.162910e+05 33194.20 NULL
2020 Department Of Buildings Secretary To Department 121254.50000 2.425090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.425090e+05 2.425090e+05 0.00 NULL
2020 Department Of Buildings Secretary To The Commissioner Of Bldgs 103474.00000 1.034740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.034740e+05 1.034740e+05 0.00 NULL
2020 Department Of Buildings Senior Estimator 89086.00000 8.908600e+04 154.26 1.542600e+02 154.260 3.00 1 1.542600e+02 154.26 8.924026e+04 8.924026e+04 0.00 NULL
2020 Department Of Buildings Space Analyst 72765.00000 2.182950e+05 815.61 2.718700e+02 0.000 19.25 3 0.000000e+00 0.00 2.191106e+05 2.182950e+05 815.61 NULL
2020 Department Of Buildings Staff Analyst 62836.45455 6.912010e+05 620.77 5.643364e+01 0.000 16.50 11 0.000000e+00 0.00 6.918218e+05 6.912010e+05 620.77 NULL
2020 Department Of Buildings Strategic Initiative Specialist 118296.66667 7.097800e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.097800e+05 7.097800e+05 0.00 NULL
2020 Department Of Buildings Summer College Intern 5328.75000 2.131500e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.131500e+04 2.131500e+04 0.00 NULL
2020 Department Of Buildings Summer Graduate Intern 6840.31800 3.420159e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.420159e+04 3.420159e+04 0.00 NULL
2020 Department Of Business Serv. Adm Manager-Non-Mgrl 76998.83333 1.385979e+06 2178.18 1.210100e+02 0.000 38.25 18 0.000000e+00 0.00 1.388157e+06 1.385979e+06 2178.18 NULL
2020 Department Of Business Serv. Admin Contract Specialist 123295.00000 1.232950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.232950e+05 1.232950e+05 0.00 NULL
2020 Department Of Business Serv. Administrative Architect 160502.00000 1.605020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.605020e+05 1.605020e+05 0.00 NULL
2020 Department Of Business Serv. Administrative Business Promotion Coordinator 105567.10909 5.806191e+06 9776.18 1.777487e+02 0.000 157.50 55 0.000000e+00 0.00 5.815967e+06 5.806191e+06 9776.18 NULL
2020 Department Of Business Serv. Administrative Contract Specialist 94940.50000 3.797620e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.797620e+05 3.797620e+05 0.00 NULL
2020 Department Of Business Serv. Administrative Manager 126381.00000 1.263810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.263810e+05 1.263810e+05 0.00 NULL
2020 Department Of Business Serv. Administrative Public Information Specialist 134280.00000 1.342800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.342800e+05 1.342800e+05 0.00 NULL
2020 Department Of Business Serv. Administrative Space Analyst 119561.00000 1.195610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.195610e+05 1.195610e+05 0.00 NULL
2020 Department Of Business Serv. Administrative Staff Analyst 105411.25000 4.216450e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.216450e+05 4.216450e+05 0.00 NULL
2020 Department Of Business Serv. Agency Attorney 89980.50000 3.599220e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.599220e+05 3.599220e+05 0.00 NULL
2020 Department Of Business Serv. Agency Chief Contracting Officer 142888.00000 1.428880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.428880e+05 1.428880e+05 0.00 NULL
2020 Department Of Business Serv. Assistant Architect 79181.50000 1.583630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.583630e+05 1.583630e+05 0.00 NULL
2020 Department Of Business Serv. Assistant Commissioner 141687.88889 1.275191e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.275191e+06 1.275191e+06 0.00 NULL
2020 Department Of Business Serv. Assistant Plan Examiner 82942.00000 8.294200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.294200e+04 8.294200e+04 0.00 NULL
2020 Department Of Business Serv. Associate Contract Specialist 79444.33333 4.766660e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.766660e+05 4.766660e+05 0.00 NULL
2020 Department Of Business Serv. Associate Staff Analyst 85149.20000 4.257460e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.257460e+05 4.257460e+05 0.00 NULL
2020 Department Of Business Serv. Business Promotion Coordinator 74010.62465 4.218606e+06 59109.36 1.037006e+03 0.000 1027.25 57 0.000000e+00 0.00 4.277715e+06 4.218606e+06 59109.36 NULL
2020 Department Of Business Serv. Certified It Developer 100519.28571 7.036350e+05 1277.04 1.824343e+02 0.000 23.25 7 0.000000e+00 0.00 7.049120e+05 7.036350e+05 1277.04 NULL
2020 Department Of Business Serv. Clerical Associate 60055.00000 3.603300e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.603300e+05 3.603300e+05 0.00 NULL
2020 Department Of Business Serv. College Aide 7419.24500 7.419245e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.419245e+04 7.419245e+04 0.00 NULL
2020 Department Of Business Serv. Commissioner Of Business Services 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2020 Department Of Business Serv. Community Associate 36202.75352 9.050688e+05 6552.26 2.620904e+02 34.760 256.75 25 3.476000e+01 869.00 9.116211e+05 9.059378e+05 5683.26 NULL
2020 Department Of Business Serv. Community Coordinator 63474.49560 4.760587e+06 73803.02 9.840403e+02 0.000 1510.75 75 0.000000e+00 0.00 4.834390e+06 4.760587e+06 73803.02 NULL
2020 Department Of Business Serv. Computer Associate 82320.25000 3.292810e+05 735.61 1.839025e+02 0.000 13.75 4 0.000000e+00 0.00 3.300166e+05 3.292810e+05 735.61 NULL
2020 Department Of Business Serv. Computer Service Technician 60262.00000 6.026200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.026200e+04 6.026200e+04 0.00 NULL
2020 Department Of Business Serv. Computer Specialist 98617.00000 9.861700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.861700e+04 9.861700e+04 0.00 NULL
2020 Department Of Business Serv. Computer Systems Manager 113460.00000 4.538400e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.538400e+05 4.538400e+05 0.00 NULL
2020 Department Of Business Serv. Contract Reviewer 65400.63398 2.877628e+06 11333.41 2.575775e+02 0.000 262.50 44 0.000000e+00 0.00 2.888961e+06 2.877628e+06 11333.41 NULL
2020 Department Of Business Serv. Deputy Commissioner 180243.66667 5.407310e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.407310e+05 5.407310e+05 0.00 NULL
2020 Department Of Business Serv. Executive Agency Counsel 140286.00000 2.805720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.805720e+05 2.805720e+05 0.00 NULL
2020 Department Of Business Serv. Executive Assistant To The Commissioner 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2020 Department Of Business Serv. General Counsel 211681.00000 2.116810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.116810e+05 2.116810e+05 0.00 NULL
2020 Department Of Business Serv. Graphic Artist 76881.50000 1.537630e+05 171.28 8.564000e+01 85.640 4.00 2 8.564000e+01 171.28 1.539343e+05 1.539343e+05 0.00 NULL
2020 Department Of Business Serv. Management Auditor 80785.00000 8.078500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.078500e+04 8.078500e+04 0.00 NULL
2020 Department Of Business Serv. Principal Administrative Associate - Non Supvr 72900.50000 8.748060e+05 2762.91 2.302425e+02 0.000 62.50 12 0.000000e+00 0.00 8.775689e+05 8.748060e+05 2762.91 NULL
2020 Department Of Business Serv. Procurement Analyst 75717.20000 3.785860e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.785860e+05 3.785860e+05 0.00 NULL
2020 Department Of Business Serv. Project Manager 127845.60000 6.392280e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.392280e+05 6.392280e+05 0.00 NULL
2020 Department Of Business Serv. Public Relations Adviser 76969.00000 1.539380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.539380e+05 1.539380e+05 0.00 NULL
2020 Department Of Business Serv. Secretary Of Department 17818.50000 1.781850e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.781850e+04 1.781850e+04 0.00 NULL
2020 Department Of Business Serv. Secretary To The Deputy Commissioner 67184.00000 6.718400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.718400e+04 6.718400e+04 0.00 NULL
2020 Department Of Business Serv. Space Analyst 79315.00000 7.931500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.931500e+04 7.931500e+04 0.00 NULL
2020 Department Of Business Serv. Staff Analyst 74193.25000 2.967730e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.967730e+05 2.967730e+05 0.00 NULL
2020 Department Of Business Serv. Telecommunications Associate 68240.00000 6.824000e+04 56.03 5.603000e+01 56.030 1.50 1 5.603000e+01 56.03 6.829603e+04 6.829603e+04 0.00 NULL
2020 Department Of City Planning *Certified Local Area Network Administrator 115410.00000 1.154100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.154100e+05 1.154100e+05 0.00 NULL
2020 Department Of City Planning Accountant 77410.00000 1.548200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.548200e+05 1.548200e+05 0.00 NULL
2020 Department Of City Planning Adm Manager-Non-Mgrl 70374.50000 4.222470e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.222470e+05 4.222470e+05 0.00 NULL
2020 Department Of City Planning Administrative Business Promotion Coordinator 124903.00000 6.245150e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.245150e+05 6.245150e+05 0.00 NULL
2020 Department Of City Planning Administrative City Planner 126231.00000 4.670547e+06 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 4.670547e+06 4.670547e+06 0.00 NULL
2020 Department Of City Planning Administrative Labor Relations Analyst 113063.50000 2.261270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.261270e+05 2.261270e+05 0.00 NULL
2020 Department Of City Planning Administrative Staff Analyst 121583.00000 6.079150e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.079150e+05 6.079150e+05 0.00 NULL
2020 Department Of City Planning Agency Attorney 99494.37500 7.959550e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.959550e+05 7.959550e+05 0.00 NULL
2020 Department Of City Planning Architectural Intern 58870.00000 1.177400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.177400e+05 1.177400e+05 0.00 NULL
2020 Department Of City Planning Assistant Architect 64868.00000 1.297360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.297360e+05 1.297360e+05 0.00 NULL
2020 Department Of City Planning Assistant Environmental Engineer 68870.00000 1.377400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.377400e+05 1.377400e+05 0.00 NULL
2020 Department Of City Planning Assistant Transportation Specialist 65891.55556 5.930240e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.930240e+05 5.930240e+05 0.00 NULL
2020 Department Of City Planning Assistant Urban Designer 66540.15385 8.650220e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 8.650220e+05 8.650220e+05 0.00 NULL
2020 Department Of City Planning Associate Staff Analyst 83782.00000 1.675640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.675640e+05 1.675640e+05 0.00 NULL
2020 Department Of City Planning Associate Urban Designer 85874.85714 6.011240e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.011240e+05 6.011240e+05 0.00 NULL
2020 Department Of City Planning Bookbinder 53105.00000 5.310500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.310500e+04 5.310500e+04 0.00 NULL
2020 Department Of City Planning Business Promotion Coordinator 69825.00000 6.982500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.982500e+04 6.982500e+04 0.00 NULL
2020 Department Of City Planning Certified It Administrator 94256.00000 1.885120e+05 2.08 1.040000e+00 1.040 0.00 2 1.040000e+00 2.08 1.885141e+05 1.885141e+05 0.00 NULL
2020 Department Of City Planning Certified It Developer 112384.00000 3.371520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.371520e+05 3.371520e+05 0.00 NULL
2020 Department Of City Planning Chairman 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2020 Department Of City Planning City Planner 81981.31646 6.476524e+06 0.00 0.000000e+00 0.000 0.00 79 0.000000e+00 0.00 6.476524e+06 6.476524e+06 0.00 NULL
2020 Department Of City Planning City Research Scientist 85927.42857 6.014920e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.014920e+05 6.014920e+05 0.00 NULL
2020 Department Of City Planning Civil Engineer 96682.00000 9.668200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.668200e+04 9.668200e+04 0.00 NULL
2020 Department Of City Planning Clerical Associate 54053.71571 3.783760e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.783760e+05 3.783760e+05 0.00 NULL
2020 Department Of City Planning Commissioner 64224.00000 7.064640e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.064640e+05 7.064640e+05 0.00 NULL
2020 Department Of City Planning Commissioner Designated As Vice Chairman 73855.00000 7.385500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.385500e+04 7.385500e+04 0.00 NULL
2020 Department Of City Planning Community Assistant 25275.35550 2.527536e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.527536e+04 2.527536e+04 0.00 NULL
2020 Department Of City Planning Community Associate 55296.00000 3.870720e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.870720e+05 3.870720e+05 0.00 NULL
2020 Department Of City Planning Community Coordinator 69279.88235 3.533274e+06 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 3.533274e+06 3.533274e+06 0.00 NULL
2020 Department Of City Planning Computer Aide-Non-Spvr 65847.00000 6.584700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.584700e+04 6.584700e+04 0.00 NULL
2020 Department Of City Planning Computer Associate 70620.24347 6.355822e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 6.355822e+05 6.355822e+05 0.00 NULL
2020 Department Of City Planning Computer Operations Manager 113776.50000 4.551060e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.551060e+05 4.551060e+05 0.00 NULL
2020 Department Of City Planning Computer Service Technician 51500.00000 5.150000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.150000e+04 5.150000e+04 0.00 NULL
2020 Department Of City Planning Computer Specialist 92303.46708 9.230347e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 9.230347e+05 9.230347e+05 0.00 NULL
2020 Department Of City Planning Computer Systems Manager 132938.80000 6.646940e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.646940e+05 6.646940e+05 0.00 NULL
2020 Department Of City Planning Contract Specialist 78860.00000 7.886000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.886000e+04 7.886000e+04 0.00 NULL
2020 Department Of City Planning Counsel 206000.00000 2.060000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.060000e+05 2.060000e+05 0.00 NULL
2020 Department Of City Planning Customer Information Representative Ma L 1549 65920.00000 6.592000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.592000e+04 6.592000e+04 0.00 NULL
2020 Department Of City Planning Deputy Executive Director 207552.00000 2.075520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.075520e+05 2.075520e+05 0.00 NULL
2020 Department Of City Planning Director Of Public Information 150999.00000 3.019980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.019980e+05 3.019980e+05 0.00 NULL
2020 Department Of City Planning Economist 67579.08000 1.689477e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.689477e+06 1.689477e+06 0.00 NULL
2020 Department Of City Planning Executive Agency Counsel 129755.00000 1.297550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.297550e+05 1.297550e+05 0.00 NULL
2020 Department Of City Planning Executive Assistant For Planning 129546.00000 1.295460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.295460e+05 1.295460e+05 0.00 NULL
2020 Department Of City Planning Executive Assistant To The Chairman 69550.00000 1.391000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.391000e+05 1.391000e+05 0.00 NULL
2020 Department Of City Planning Executive Director 222326.00000 2.223260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.223260e+05 2.223260e+05 0.00 NULL
2020 Department Of City Planning Geologist 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2020 Department Of City Planning Graphic Artist 88406.50000 1.768130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.768130e+05 1.768130e+05 0.00 NULL
2020 Department Of City Planning Housing Development Specialist 81660.00000 2.449800e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.449800e+05 2.449800e+05 0.00 NULL
2020 Department Of City Planning Labor Relations Analyst 77250.00000 7.725000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.725000e+04 7.725000e+04 0.00 NULL
2020 Department Of City Planning Motor Vehicle Supervisor 58000.00000 5.800000e+04 19237.08 1.923708e+04 19237.080 445.75 1 1.923708e+04 19237.08 7.723708e+04 7.723708e+04 0.00 NULL
2020 Department Of City Planning Principal Administrative Associate - Non Supvr 67609.33333 4.056560e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.056560e+05 4.056560e+05 0.00 NULL
2020 Department Of City Planning Principal Planning Consultant 119440.25000 4.777610e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.777610e+05 4.777610e+05 0.00 NULL
2020 Department Of City Planning Public Records Officer 56386.39667 1.691592e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.691592e+05 1.691592e+05 0.00 NULL
2020 Department Of City Planning Secretary 58953.00000 5.895300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.895300e+04 5.895300e+04 0.00 NULL
2020 Department Of City Planning Secretary To The Chairman 84089.00000 8.408900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.408900e+04 8.408900e+04 0.00 NULL
2020 Department Of City Planning Space Analyst 61078.00000 6.107800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.107800e+04 6.107800e+04 0.00 NULL
2020 Department Of City Planning Staff Analyst 65764.60000 3.288230e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.288230e+05 3.288230e+05 0.00 NULL
2020 Department Of City Planning Summer College Intern 4619.41667 9.700775e+04 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 9.700775e+04 9.700775e+04 0.00 NULL
2020 Department Of City Planning Telecommunications Associate 80257.66667 2.407730e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.407730e+05 2.407730e+05 0.00 NULL
2020 Department Of City Planning Telecommunications Manager 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2020 Department Of City Planning Transportation Specialist 96707.00000 3.868280e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.868280e+05 3.868280e+05 0.00 NULL
2020 Department Of Correction *Attorney At Law 100720.00000 1.007200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.007200e+05 1.007200e+05 0.00 NULL
2020 Department Of Correction *Cook 40525.42675 6.362492e+06 431635.44 2.749270e+03 1752.940 13164.58 157 1.752940e+03 275211.58 6.794127e+06 6.637704e+06 156423.86 NULL
2020 Department Of Correction *Senior Cook 44466.53659 1.823128e+06 284879.12 6.948271e+03 5323.340 7359.75 41 5.323340e+03 218256.94 2.108007e+06 2.041385e+06 66622.18 NULL
2020 Department Of Correction Adm Manager-Non-Mgrl 73881.42355 6.870972e+06 185503.29 1.994659e+03 61.300 3296.50 93 6.130000e+01 5700.90 7.056476e+06 6.876673e+06 179802.39 NULL
2020 Department Of Correction Admin Community Relations Specialist 92386.33333 2.771590e+05 9564.92 3.188307e+03 4782.460 156.00 3 3.188307e+03 9564.92 2.867239e+05 2.867239e+05 0.00 NULL
2020 Department Of Correction Admin Inspector 106741.00000 1.067410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.067410e+05 1.067410e+05 0.00 NULL
2020 Department Of Correction Administrative Architect 156958.00000 1.569580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.569580e+05 1.569580e+05 0.00 NULL
2020 Department Of Correction Administrative Business Promotion Coordinator 140657.14286 9.846000e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.846000e+05 9.846000e+05 0.00 NULL
2020 Department Of Correction Administrative Construction Project Manager 154054.00000 1.540540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.540540e+05 1.540540e+05 0.00 NULL
2020 Department Of Correction Administrative Contract Specialist 69317.00000 1.386340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.386340e+05 1.386340e+05 0.00 NULL
2020 Department Of Correction Administrative Director Of Social Services 105654.50000 6.339270e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.339270e+05 6.339270e+05 0.00 NULL
2020 Department Of Correction Administrative Investigator 103211.44444 9.289030e+05 45968.20 5.107578e+03 882.600 587.00 9 8.826000e+02 7943.40 9.748712e+05 9.368464e+05 38024.80 NULL
2020 Department Of Correction Administrative Procurement Analyst-Non-Mgrl 81145.36364 8.925990e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 8.925990e+05 8.925990e+05 0.00 NULL
2020 Department Of Correction Administrative Project Manager 122241.20000 6.112060e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.112060e+05 6.112060e+05 0.00 NULL
2020 Department Of Correction Administrative Public Health Sanitarian 174563.50000 3.491270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.491270e+05 3.491270e+05 0.00 NULL
2020 Department Of Correction Administrative Public Information Specialist 105188.90000 1.051889e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.051889e+06 1.051889e+06 0.00 NULL
2020 Department Of Correction Administrative Staff Analyst 105399.26923 5.480762e+06 66122.44 1.271585e+03 0.000 1231.25 52 0.000000e+00 0.00 5.546884e+06 5.480762e+06 66122.44 NULL
2020 Department Of Correction Administrative Supervisor Of Building Maintenance 165269.00000 4.958070e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.958070e+05 4.958070e+05 0.00 NULL
2020 Department Of Correction Agency Attorney 97681.96491 5.567872e+06 57447.28 1.007847e+03 0.000 1101.75 57 0.000000e+00 0.00 5.625319e+06 5.567872e+06 57447.28 NULL
2020 Department Of Correction Agency Attorney Interne 69826.00000 1.396520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.396520e+05 1.396520e+05 0.00 NULL
2020 Department Of Correction Agency Chief Contracting Officer 163994.00000 3.279880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.279880e+05 3.279880e+05 0.00 NULL
2020 Department Of Correction Asbestos Handler Supervisor 89992.00000 8.999200e+04 33837.02 3.383702e+04 33837.020 527.75 1 3.383702e+04 33837.02 1.238290e+05 1.238290e+05 0.00 NULL
2020 Department Of Correction Assistant Commissioner 154855.64286 2.167979e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.167979e+06 2.167979e+06 0.00 NULL
2020 Department Of Correction Associate Correctional Counselor 61679.05952 5.181041e+06 18786.26 2.236460e+02 0.000 108.00 84 0.000000e+00 0.00 5.199827e+06 5.181041e+06 18786.26 NULL
2020 Department Of Correction Associate Investigator 67016.32289 9.382285e+05 68889.13 4.920652e+03 1516.920 1411.50 14 1.516920e+03 21236.88 1.007118e+06 9.594654e+05 47652.25 NULL
2020 Department Of Correction Associate Project Manager 103839.00000 1.038390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.038390e+05 1.038390e+05 0.00 NULL
2020 Department Of Correction Associate Public Health Sanitarian 74868.00000 4.492080e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.492080e+05 4.492080e+05 0.00 NULL
2020 Department Of Correction Associate Quality Assurance Specialist 72598.00000 1.451960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.451960e+05 1.451960e+05 0.00 NULL
2020 Department Of Correction Associate Staff Analyst 80440.94737 1.528378e+06 3940.89 2.074153e+02 0.000 50.00 19 0.000000e+00 0.00 1.532319e+06 1.528378e+06 3940.89 NULL
2020 Department Of Correction Auto Body Worker 57977.00000 1.159540e+05 41715.78 2.085789e+04 20857.890 815.25 2 2.085789e+04 41715.78 1.576698e+05 1.576698e+05 0.00 NULL
2020 Department Of Correction Auto Mechanic NA NA 97110.80 8.092567e+03 3745.380 1356.00 12 3.745380e+03 44944.56 NA NA NA NULL
2020 Department Of Correction Automotive Service Worker 39266.36364 4.319300e+05 11217.15 1.019741e+03 320.300 291.50 11 3.203000e+02 3523.30 4.431472e+05 4.354533e+05 7693.85 NULL
2020 Department Of Correction Baker 37385.40000 1.869270e+05 1208.63 2.417260e+02 100.220 52.00 5 1.002200e+02 501.10 1.881356e+05 1.874281e+05 707.53 NULL
2020 Department Of Correction Bookkeeper 44115.00000 4.411500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.411500e+04 4.411500e+04 0.00 NULL
2020 Department Of Correction Bricklayer NA NA 436399.86 3.636665e+04 47316.545 5673.00 12 3.636665e+04 436399.86 NA NA NA NULL
2020 Department Of Correction Captain 102812.06737 7.782874e+07 26648204.81 3.520238e+04 34232.280 472855.82 757 3.423228e+04 25913835.96 1.044769e+08 1.037426e+08 734368.85 NULL
2020 Department Of Correction Carpenter NA NA 779849.13 4.104469e+04 35584.730 10358.25 19 3.558473e+04 676109.87 NA NA NA NULL
2020 Department Of Correction Case Management Nurse 82224.03333 2.466721e+05 1606.82 5.356067e+02 803.410 5.00 3 5.356067e+02 1606.82 2.482789e+05 2.482789e+05 0.00 NULL
2020 Department Of Correction Cashier 41918.28571 1.467140e+06 208517.77 5.957651e+03 4344.290 6977.00 35 4.344290e+03 152050.15 1.675658e+06 1.619190e+06 56467.62 NULL
2020 Department Of Correction Cement Mason NA NA 49512.08 4.951208e+04 49512.080 475.00 1 4.951208e+04 49512.08 NA NA NA NULL
2020 Department Of Correction Certified It Administrator 92985.66667 2.789570e+05 5581.66 1.860553e+03 544.370 81.50 3 5.443700e+02 1633.11 2.845387e+05 2.805901e+05 3948.55 NULL
2020 Department Of Correction Certified It Developer 112406.00000 3.372180e+05 19587.41 6.529137e+03 0.000 282.00 3 0.000000e+00 0.00 3.568054e+05 3.372180e+05 19587.41 NULL
2020 Department Of Correction Chaplain 45274.64393 1.675162e+06 32021.16 8.654368e+02 0.000 806.25 37 0.000000e+00 0.00 1.707183e+06 1.675162e+06 32021.16 NULL
2020 Department Of Correction Chief Of Staff 226771.00000 2.267710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.267710e+05 2.267710e+05 0.00 NULL
2020 Department Of Correction City Medical Specialist 124792.63959 2.121475e+06 36222.68 2.130746e+03 0.000 417.50 17 0.000000e+00 0.00 2.157698e+06 2.121475e+06 36222.68 NULL
2020 Department Of Correction City Research Scientist 88626.71429 1.240774e+06 5281.60 3.772571e+02 197.550 99.25 14 1.975500e+02 2765.70 1.246056e+06 1.243540e+06 2515.90 NULL
2020 Department Of Correction Clerical Associate 44929.38209 3.863927e+06 394853.90 4.591324e+03 377.915 10509.50 86 3.779150e+02 32500.69 4.258781e+06 3.896428e+06 362353.21 NULL
2020 Department Of Correction College Aide 4633.06364 2.548185e+05 0.00 0.000000e+00 0.000 0.00 55 0.000000e+00 0.00 2.548185e+05 2.548185e+05 0.00 NULL
2020 Department Of Correction Commissary Manager 35165.36364 3.868190e+05 3318.59 3.016900e+02 95.070 118.50 11 9.507000e+01 1045.77 3.901376e+05 3.878648e+05 2272.82 NULL
2020 Department Of Correction Commissioner 243171.00000 4.863420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863420e+05 4.863420e+05 0.00 NULL
2020 Department Of Correction Community Assistant 39794.00000 7.958800e+04 10403.81 5.201905e+03 5201.905 386.50 2 5.201905e+03 10403.81 8.999181e+04 8.999181e+04 0.00 NULL
2020 Department Of Correction Community Associate 40203.61828 8.442760e+05 5687.49 2.708329e+02 0.000 172.75 21 0.000000e+00 0.00 8.499635e+05 8.442760e+05 5687.49 NULL
2020 Department Of Correction Community Coordinator 62351.04728 1.047498e+07 522441.00 3.109768e+03 0.000 11672.00 168 0.000000e+00 0.00 1.099742e+07 1.047498e+07 522441.00 NULL
2020 Department Of Correction Computer Aide-Non-Spvr 52567.33333 1.577020e+05 36270.50 1.209017e+04 18135.250 917.00 3 1.209017e+04 36270.50 1.939725e+05 1.939725e+05 0.00 NULL
2020 Department Of Correction Computer Associate 66768.64706 1.135067e+06 19990.31 1.175901e+03 49.070 411.25 17 4.907000e+01 834.19 1.155057e+06 1.135901e+06 19156.12 NULL
2020 Department Of Correction Computer Operations Manager 126395.70000 1.263957e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.263957e+06 1.263957e+06 0.00 NULL
2020 Department Of Correction Computer Specialist 94902.50000 7.592200e+05 20053.32 2.506665e+03 313.510 278.75 8 3.135100e+02 2508.08 7.792733e+05 7.617281e+05 17545.24 NULL
2020 Department Of Correction Computer Systems Manager 126520.50000 2.277369e+06 7174.27 3.985706e+02 0.000 82.00 18 0.000000e+00 0.00 2.284543e+06 2.277369e+06 7174.27 NULL
2020 Department Of Correction Confidential Agency Investigator 123948.73333 1.859231e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.859231e+06 1.859231e+06 0.00 NULL
2020 Department Of Correction Construction Project Manager 104659.00000 4.186360e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.186360e+05 4.186360e+05 0.00 NULL
2020 Department Of Correction Correction Administrative Aide 25343.03272 2.534303e+05 2376.82 2.376820e+02 0.000 118.25 10 0.000000e+00 0.00 2.558071e+05 2.534303e+05 2376.82 NULL
2020 Department Of Correction Correction Officer 63758.55975 5.538068e+08 88982151.13 1.024432e+04 7500.380 2820326.73 8686 7.500380e+03 65148300.68 6.427890e+08 6.189552e+08 23833850.45 NULL
2020 Department Of Correction Correctional Standards Review Specialist 73669.35938 4.714839e+06 102027.26 1.594176e+03 493.775 2129.25 64 4.937750e+02 31601.60 4.816866e+06 4.746441e+06 70425.66 NULL
2020 Department Of Correction Counselor 57178.00000 5.717800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.717800e+04 5.717800e+04 0.00 NULL
2020 Department Of Correction Deputy Commissioner 204195.00000 1.837755e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.837755e+06 1.837755e+06 0.00 NULL
2020 Department Of Correction Dietary Aide 38693.44444 3.482410e+05 7747.06 8.607844e+02 392.400 272.75 9 3.924000e+02 3531.60 3.559881e+05 3.517726e+05 4215.46 NULL
2020 Department Of Correction Dietitian 54843.00000 7.129590e+05 33.63 2.586923e+00 0.000 1.00 13 0.000000e+00 0.00 7.129926e+05 7.129590e+05 33.63 NULL
2020 Department Of Correction Director Of Correctional Standards Review 94460.53333 4.250724e+06 0.00 0.000000e+00 0.000 0.00 45 0.000000e+00 0.00 4.250724e+06 4.250724e+06 0.00 NULL
2020 Department Of Correction Director Of Public Affairs 144200.00000 1.442000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.442000e+05 1.442000e+05 0.00 NULL
2020 Department Of Correction Electrical Engineer 102917.00000 1.029170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.029170e+05 1.029170e+05 0.00 NULL
2020 Department Of Correction Electrician NA NA 2452430.88 3.454128e+04 35036.670 27472.75 71 3.454128e+04 2452430.88 NA NA NA NULL
2020 Department Of Correction Electrician’s Helper NA NA 484636.70 1.425402e+04 6338.005 8457.50 34 6.338005e+03 215492.17 NA NA NA NULL
2020 Department Of Correction Executive Agency Counsel 144952.05263 2.754089e+06 0.58 3.052630e-02 0.000 0.00 19 0.000000e+00 0.00 2.754090e+06 2.754089e+06 0.58 NULL
2020 Department Of Correction Executive Assistant To The Commissioner 108150.00000 1.081500e+05 41.33 4.133000e+01 41.330 1.25 1 4.133000e+01 41.33 1.081913e+05 1.081913e+05 0.00 NULL
2020 Department Of Correction Executive Director Of Food Services 145022.00000 2.900440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.900440e+05 2.900440e+05 0.00 NULL
2020 Department Of Correction Exterminator 41825.21429 5.855530e+05 142332.47 1.016660e+04 2654.900 4695.00 14 2.654900e+03 37168.60 7.278855e+05 6.227216e+05 105163.87 NULL
2020 Department Of Correction Film Manager 86637.00000 1.732740e+05 844.22 4.221100e+02 422.110 18.00 2 4.221100e+02 844.22 1.741182e+05 1.741182e+05 0.00 NULL
2020 Department Of Correction Fitness Instructor 48422.16971 2.905330e+05 9967.01 1.661168e+03 891.080 360.75 6 8.910800e+02 5346.48 3.005000e+05 2.958795e+05 4620.53 NULL
2020 Department Of Correction Food Service Administrator 86171.00000 1.723420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.723420e+05 1.723420e+05 0.00 NULL
2020 Department Of Correction Food Service Manager 62607.46154 1.627794e+06 48289.40 1.857285e+03 1112.350 1121.50 26 1.112350e+03 28921.10 1.676083e+06 1.656715e+06 19368.30 NULL
2020 Department Of Correction Fraud Investigator 67013.00000 1.340260e+05 31340.82 1.567041e+04 15670.410 561.50 2 1.567041e+04 31340.82 1.653668e+05 1.653668e+05 0.00 NULL
2020 Department Of Correction Graphic Artist 72626.00000 1.452520e+05 20486.77 1.024339e+04 10243.385 336.50 2 1.024339e+04 20486.77 1.657388e+05 1.657388e+05 0.00 NULL
2020 Department Of Correction High Pressure Plant Tender NA NA 386728.89 4.296988e+04 45045.000 7267.75 9 4.296988e+04 386728.89 NA NA NA NULL
2020 Department Of Correction Industrial Hygienist 66484.80000 3.324240e+05 239.54 4.790800e+01 0.000 6.50 5 0.000000e+00 0.00 3.326635e+05 3.324240e+05 239.54 NULL
2020 Department Of Correction Institutional Aide 39938.83333 7.188990e+05 212009.15 1.177829e+04 5620.415 7046.50 18 5.620415e+03 101167.47 9.309082e+05 8.200665e+05 110841.68 NULL
2020 Department Of Correction Investigator 59298.68789 1.286782e+07 2092856.36 9.644499e+03 7718.580 49614.00 217 7.718580e+03 1674931.86 1.496067e+07 1.454275e+07 417924.50 NULL
2020 Department Of Correction Legal Coordinator 54988.16129 3.409266e+06 325464.71 5.249431e+03 563.095 7924.89 62 5.630950e+02 34911.89 3.734731e+06 3.444178e+06 290552.82 NULL
2020 Department Of Correction Licensed Barber 40541.33333 4.864960e+05 11981.14 9.984283e+02 155.740 394.75 12 1.557400e+02 1868.88 4.984771e+05 4.883649e+05 10112.26 NULL
2020 Department Of Correction Locksmith NA NA 221127.96 5.976431e+03 2553.610 5236.26 37 2.553610e+03 94483.57 NA NA NA NULL
2020 Department Of Correction Machinist NA NA 134962.40 1.687030e+04 3917.195 2037.00 8 3.917195e+03 31337.56 NA NA NA NULL
2020 Department Of Correction Maintenance Worker NA NA 804036.34 9.805321e+03 8926.130 17278.99 82 8.926130e+03 731942.66 NA NA NA NULL
2020 Department Of Correction Management Auditor 89555.50000 1.791110e+05 4666.05 2.333025e+03 2333.025 69.25 2 2.333025e+03 4666.05 1.837770e+05 1.837770e+05 0.00 NULL
2020 Department Of Correction Marine Engineer 96963.61219 7.757089e+05 396842.60 4.960532e+04 39288.900 7026.25 8 3.928890e+04 314311.20 1.172551e+06 1.090020e+06 82531.40 NULL
2020 Department Of Correction Marine Oiler 112142.22240 3.364267e+05 201201.40 6.706713e+04 97235.970 3617.00 3 6.706713e+04 201201.40 5.376281e+05 5.376281e+05 0.00 NULL
2020 Department Of Correction Mate 57875.00000 5.787500e+04 4070.40 4.070400e+03 4070.400 80.00 1 4.070400e+03 4070.40 6.194540e+04 6.194540e+04 0.00 NULL
2020 Department Of Correction Metal Work Mechanic 84906.00000 8.490600e+04 26872.45 2.687245e+04 26872.450 438.00 1 2.687245e+04 26872.45 1.117784e+05 1.117784e+05 0.00 NULL
2020 Department Of Correction Motor Vehicle Operator 48875.39394 3.225776e+06 747989.97 1.133318e+04 10670.580 20257.75 66 1.067058e+04 704258.28 3.973766e+06 3.930034e+06 43731.69 NULL
2020 Department Of Correction Motor Vehicle Supervisor 58709.83333 3.522590e+05 31841.72 5.306953e+03 5038.720 777.00 6 5.038720e+03 30232.32 3.841007e+05 3.824913e+05 1609.40 NULL
2020 Department Of Correction New York City Public Service Fellow 44154.42857 3.090810e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.090810e+05 3.090810e+05 0.00 NULL
2020 Department Of Correction Office Machine Aide 41107.00000 4.110700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.110700e+04 4.110700e+04 0.00 NULL
2020 Department Of Correction Oiler NA NA 1967739.43 3.784114e+04 28470.360 20360.00 52 2.847036e+04 1480458.72 NA NA NA NULL
2020 Department Of Correction Operations Communications Specialist 46973.00000 4.697300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.697300e+04 4.697300e+04 0.00 NULL
2020 Department Of Correction Paralegal Aide 46381.47750 4.638148e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.638148e+04 4.638148e+04 0.00 NULL
2020 Department Of Correction Plasterer NA NA 61881.43 6.188143e+04 61881.430 741.75 1 6.188143e+04 61881.43 NA NA NA NULL
2020 Department Of Correction Plumber NA NA 1729241.06 5.240124e+04 52103.730 16481.25 33 5.210373e+04 1719423.09 NA NA NA NULL
2020 Department Of Correction Plumber’s Helper NA NA 754083.99 3.016336e+04 22419.440 10274.25 25 2.241944e+04 560486.00 NA NA NA NULL
2020 Department Of Correction Principal Administrative Associate - Non Supvr 63569.89922 8.200517e+06 279578.44 2.167275e+03 60.890 6484.00 129 6.089000e+01 7854.81 8.480095e+06 8.208372e+06 271723.63 NULL
2020 Department Of Correction Printing Press Operator NA NA 37732.09 3.773209e+04 37732.090 642.50 1 3.773209e+04 37732.09 NA NA NA NULL
2020 Department Of Correction Procurement Analyst 69871.21053 1.327553e+06 5100.97 2.684721e+02 0.000 129.00 19 0.000000e+00 0.00 1.332654e+06 1.327553e+06 5100.97 NULL
2020 Department Of Correction Program Specialist Correction 71267.67696 1.126029e+07 801620.20 5.073546e+03 204.390 14879.75 158 2.043900e+02 32293.62 1.206191e+07 1.129259e+07 769326.58 NULL
2020 Department Of Correction Project Manager 71548.00000 1.430960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.430960e+05 1.430960e+05 0.00 NULL
2020 Department Of Correction Psychologist 70237.60237 1.053564e+06 288.84 1.925600e+01 0.000 5.75 15 0.000000e+00 0.00 1.053853e+06 1.053564e+06 288.84 NULL
2020 Department Of Correction Public Health Sanitarian 63165.80000 6.316580e+05 16460.01 1.646001e+03 0.000 326.50 10 0.000000e+00 0.00 6.481180e+05 6.316580e+05 16460.01 NULL
2020 Department Of Correction Radio Repair Mechanic NA NA 62.70 1.567500e+01 15.675 0.00 4 1.567500e+01 62.70 NA NA NA NULL
2020 Department Of Correction Recreation Director 44069.00000 1.189863e+06 7302.24 2.704533e+02 0.000 269.00 27 0.000000e+00 0.00 1.197165e+06 1.189863e+06 7302.24 NULL
2020 Department Of Correction Recreation Supervisor 59465.66667 5.351910e+05 11213.17 1.245908e+03 94.240 285.50 9 9.424000e+01 848.16 5.464042e+05 5.360392e+05 10365.01 NULL
2020 Department Of Correction Research Assistant 7512.17500 1.502435e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.502435e+04 1.502435e+04 0.00 NULL
2020 Department Of Correction Roofer NA NA 179932.68 2.998878e+04 29758.610 3049.00 6 2.975861e+04 178551.66 NA NA NA NULL
2020 Department Of Correction Rubber Tire Repairer NA NA 121.05 6.052500e+01 60.525 0.00 2 6.052500e+01 121.05 NA NA NA NULL
2020 Department Of Correction Secretary 38714.00000 3.871400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.871400e+04 3.871400e+04 0.00 NULL
2020 Department Of Correction Secretary To The Commissioner Of Correction 85308.00000 1.706160e+05 17029.66 8.514830e+03 8514.830 340.00 2 8.514830e+03 17029.66 1.876457e+05 1.876457e+05 0.00 NULL
2020 Department Of Correction Senior Baker 45176.25000 3.614100e+05 1738.85 2.173562e+02 2.180 50.50 8 2.180000e+00 17.44 3.631488e+05 3.614274e+05 1721.41 NULL
2020 Department Of Correction Senior Institutional Trades Instructor 45617.00000 9.123400e+04 64944.24 3.247212e+04 32472.120 1886.00 2 3.247212e+04 64944.24 1.561782e+05 1.561782e+05 0.00 NULL
2020 Department Of Correction Senior Stationary Engineer NA NA 987053.60 6.169085e+04 63689.960 8568.25 16 6.169085e+04 987053.60 NA NA NA NULL
2020 Department Of Correction Sheet Metal Worker NA NA 342457.65 3.805085e+04 51118.900 2899.75 9 3.805085e+04 342457.65 NA NA NA NULL
2020 Department Of Correction Social Worker 62504.66667 1.875140e+05 1790.72 5.969067e+02 167.360 38.75 3 1.673600e+02 502.08 1.893047e+05 1.880161e+05 1288.64 NULL
2020 Department Of Correction Staff Analyst 66883.64222 1.203906e+06 35833.20 1.990733e+03 0.000 787.50 18 0.000000e+00 0.00 1.239739e+06 1.203906e+06 35833.20 NULL
2020 Department Of Correction Staff Nurse 80014.55556 7.201310e+05 27214.54 3.023838e+03 3960.470 469.00 9 3.023838e+03 27214.54 7.473455e+05 7.473455e+05 0.00 NULL
2020 Department Of Correction Stationary Engineer NA NA 2001782.39 3.925064e+04 26427.390 20094.67 51 2.642739e+04 1347796.89 NA NA NA NULL
2020 Department Of Correction Steam Fitter NA NA 506695.75 5.629953e+04 60857.500 4726.50 9 5.629953e+04 506695.75 NA NA NA NULL
2020 Department Of Correction Steam Fitter’s Helper NA NA 239713.12 3.995219e+04 50061.550 2904.75 6 3.995219e+04 239713.12 NA NA NA NULL
2020 Department Of Correction Stock Worker 37648.70588 6.400280e+05 78704.96 4.629704e+03 832.440 2809.00 17 8.324400e+02 14151.48 7.187330e+05 6.541795e+05 64553.48 NULL
2020 Department Of Correction Summer Graduate Intern 3683.69340 3.904715e+05 0.00 0.000000e+00 0.000 0.00 106 0.000000e+00 0.00 3.904715e+05 3.904715e+05 0.00 NULL
2020 Department Of Correction Superintendent Of Laundries 61897.00000 1.237940e+05 13277.34 6.638670e+03 6638.670 307.00 2 6.638670e+03 13277.34 1.370713e+05 1.370713e+05 0.00 NULL
2020 Department Of Correction Supervising Computer Service Technician 84685.76000 3.387430e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.387430e+05 3.387430e+05 0.00 NULL
2020 Department Of Correction Supervising Housekeeper 51781.00000 1.553430e+05 49224.44 1.640815e+04 24556.310 1293.00 3 1.640815e+04 49224.44 2.045674e+05 2.045674e+05 0.00 NULL
2020 Department Of Correction Supervisor Electrician NA NA 113387.63 1.133876e+05 113387.630 1176.75 1 1.133876e+05 113387.63 NA NA NA NULL
2020 Department Of Correction Supervisor Of Mechanics NA NA 1435131.76 3.679825e+04 25957.960 15592.50 39 2.595796e+04 1012360.44 NA NA NA NULL
2020 Department Of Correction Supervisor Of Stock Workers 46845.75000 7.495320e+05 74800.54 4.675034e+03 1325.345 2436.75 16 1.325345e+03 21205.52 8.243325e+05 7.707375e+05 53595.02 NULL
2020 Department Of Correction Supervisor Plumber NA NA 117878.31 1.178783e+05 117878.310 1066.00 1 1.178783e+05 117878.31 NA NA NA NULL
2020 Department Of Correction Supervisor Steamfitter NA NA 87325.90 8.732590e+04 87325.900 767.00 1 8.732590e+04 87325.90 NA NA NA NULL
2020 Department Of Correction Telecommunications Associate 87164.33333 2.614930e+05 26327.71 8.775903e+03 873.200 358.00 3 8.732000e+02 2619.60 2.878207e+05 2.641126e+05 23708.11 NULL
2020 Department Of Correction Thermostat Repairer NA NA 1036100.58 7.400718e+04 69801.580 9813.75 14 6.980158e+04 977222.12 NA NA NA NULL
2020 Department Of Correction Tractor Operator NA NA 362796.46 6.046608e+04 66852.120 2821.86 6 6.046608e+04 362796.46 NA NA NA NULL
2020 Department Of Correction Warden 210502.90476 4.420561e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 4.420561e+06 4.420561e+06 0.00 NULL
2020 Department Of Correction Warden-Assistant Deputy Warden Ted < 11/1/92 122621.09174 1.336570e+07 6198784.35 5.686958e+04 52112.910 104615.00 109 5.211291e+04 5680307.19 1.956448e+07 1.904601e+07 518477.16 NULL
2020 Department Of Correction Warden-Deputy Warden In Comm Ted < 11/1/92 172466.00000 6.898640e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.898640e+05 6.898640e+05 0.00 NULL
2020 Department Of Correction Warden-Deputy Warden Ted < 11/1/92 152233.43396 8.068372e+06 0.00 0.000000e+00 0.000 0.00 53 0.000000e+00 0.00 8.068372e+06 8.068372e+06 0.00 NULL
2020 Department Of Correction Welder NA NA 558360.02 3.284471e+04 16499.790 5112.25 17 1.649979e+04 280496.43 NA NA NA NULL
2020 Department Of Correction Worker’s Compensation Benefits Examiner 52097.00000 1.041940e+05 23353.16 1.167658e+04 11676.580 574.50 2 1.167658e+04 23353.16 1.275472e+05 1.275472e+05 0.00 NULL
2020 Department Of Education Admin *Administrative Attorney 228341.00000 2.283410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.283410e+05 2.283410e+05 0.00 NULL
2020 Department Of Education Admin *Associate Education Officer 97818.09756 4.010542e+06 8951.81 2.183368e+02 0.000 142.75 41 0.000000e+00 0.00 4.019494e+06 4.010542e+06 8951.81 NULL
2020 Department Of Education Admin *Certified Wide Area Network Administrator 118003.00000 1.180030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.180030e+05 1.180030e+05 0.00 NULL
2020 Department Of Education Admin Accountant 63403.43137 3.233575e+06 34316.37 6.728700e+02 0.000 834.25 51 0.000000e+00 0.00 3.267891e+06 3.233575e+06 34316.37 NULL
2020 Department Of Education Admin Adm Manager-Non-Mgrl 80244.66667 7.222020e+05 39.71 4.412222e+00 0.000 0.50 9 0.000000e+00 0.00 7.222417e+05 7.222020e+05 39.71 NULL
2020 Department Of Education Admin Admin Community Relations Specialist 82219.00000 1.644380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.644380e+05 1.644380e+05 0.00 NULL
2020 Department Of Education Admin Admin Contract Specialist 109360.00000 2.187200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.187200e+05 2.187200e+05 0.00 NULL
2020 Department Of Education Admin Administrative Accountant 121304.84615 1.576963e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.576963e+06 1.576963e+06 0.00 NULL
2020 Department Of Education Admin Administrative Assistant To Community Education Council 43601.04545 9.592230e+05 89.24 4.056364e+00 0.000 8.00 22 0.000000e+00 0.00 9.593122e+05 9.592230e+05 89.24 NULL
2020 Department Of Education Admin Administrative Community Relations Specialist 105040.52174 2.415932e+06 74.19 3.225652e+00 0.000 13.75 23 0.000000e+00 0.00 2.416006e+06 2.415932e+06 74.19 NULL
2020 Department Of Education Admin Administrative Director Of Social Services 93605.22222 1.684894e+06 5104.84 2.836022e+02 0.000 77.00 18 0.000000e+00 0.00 1.689999e+06 1.684894e+06 5104.84 NULL
2020 Department Of Education Admin Administrative Education Analyst 111784.36242 4.996761e+07 151417.45 3.387415e+02 0.000 2393.50 447 0.000000e+00 0.00 5.011903e+07 4.996761e+07 151417.45 NULL
2020 Department Of Education Admin Administrative Education Officer 107772.19591 6.326228e+07 171313.55 2.918459e+02 0.000 2429.75 587 0.000000e+00 0.00 6.343359e+07 6.326228e+07 171313.55 NULL
2020 Department Of Education Admin Administrative Engineer 128750.00000 1.287500e+05 3147.74 3.147740e+03 3147.740 60.50 1 3.147740e+03 3147.74 1.318977e+05 1.318977e+05 0.00 NULL
2020 Department Of Education Admin Administrative Management Auditor 108269.22222 9.744230e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.744230e+05 9.744230e+05 0.00 NULL
2020 Department Of Education Admin Administrative Manager 121369.14286 1.699168e+06 2.63 1.878571e-01 0.000 0.00 14 0.000000e+00 0.00 1.699171e+06 1.699168e+06 2.63 NULL
2020 Department Of Education Admin Administrative Procurement Analyst 99077.56667 2.972327e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 2.972327e+06 2.972327e+06 0.00 NULL
2020 Department Of Education Admin Administrative Project Manager 102763.00000 3.082890e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.082890e+05 3.082890e+05 0.00 NULL
2020 Department Of Education Admin Administrative Public Health Nurse 136648.50000 2.732970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.732970e+05 2.732970e+05 0.00 NULL
2020 Department Of Education Admin Administrative Public Information Specialist 99196.63158 1.884736e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.884736e+06 1.884736e+06 0.00 NULL
2020 Department Of Education Admin Administrative Quality Assurance Specialist 100878.84444 4.539548e+06 31194.07 6.932016e+02 0.000 831.00 45 0.000000e+00 0.00 4.570742e+06 4.539548e+06 31194.07 NULL
2020 Department Of Education Admin Administrative Retirement Benefits Specialist 146268.90000 1.462689e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.462689e+06 1.462689e+06 0.00 NULL
2020 Department Of Education Admin Administrative School Food Service Manager 111534.11111 2.007614e+06 317.60 1.764444e+01 0.000 0.00 18 0.000000e+00 0.00 2.007932e+06 2.007614e+06 317.60 NULL
2020 Department Of Education Admin Administrative Space Analyst 115715.46667 1.735732e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.735732e+06 1.735732e+06 0.00 NULL
2020 Department Of Education Admin Administrative Staff Analyst 128897.22018 2.809959e+07 0.00 0.000000e+00 0.000 0.00 218 0.000000e+00 0.00 2.809959e+07 2.809959e+07 0.00 NULL
2020 Department Of Education Admin Administrative Storekeeper 103355.33333 3.100660e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.100660e+05 3.100660e+05 0.00 NULL
2020 Department Of Education Admin Administrative Supervisor Of Building Maintenance 95087.00000 9.508700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.508700e+04 9.508700e+04 0.00 NULL
2020 Department Of Education Admin Agency Attorney 95759.50598 2.269500e+07 17193.24 7.254532e+01 0.000 246.50 237 0.000000e+00 0.00 2.271220e+07 2.269500e+07 17193.24 NULL
2020 Department Of Education Admin Agency Attorney Interne 70042.00000 5.603360e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.603360e+05 5.603360e+05 0.00 NULL
2020 Department Of Education Admin Agency Chief Contracting Officer 198102.00000 1.981020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.981020e+05 1.981020e+05 0.00 NULL
2020 Department Of Education Admin Architect 95973.00000 2.879190e+05 8116.99 2.705663e+03 2952.250 126.50 3 2.705663e+03 8116.99 2.960360e+05 2.960360e+05 0.00 NULL
2020 Department Of Education Admin Area Manager Of School Maintenance 140622.32000 3.515558e+06 32973.32 1.318933e+03 0.000 351.75 25 0.000000e+00 0.00 3.548531e+06 3.515558e+06 32973.32 NULL
2020 Department Of Education Admin Asbestos Handler 84149.10000 8.414910e+05 235260.38 2.352604e+04 27179.940 3889.50 10 2.352604e+04 235260.38 1.076751e+06 1.076751e+06 0.00 NULL
2020 Department Of Education Admin Asbestos Hazard Investigator 69949.00000 6.994900e+04 744.42 7.444200e+02 744.420 19.50 1 7.444200e+02 744.42 7.069342e+04 7.069342e+04 0.00 NULL
2020 Department Of Education Admin Assistant Accountant 63186.00000 6.318600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.318600e+04 6.318600e+04 0.00 NULL
2020 Department Of Education Admin Assistant Architect 65640.00000 6.564000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.564000e+04 6.564000e+04 0.00 NULL
2020 Department Of Education Admin Associate Contract Specialist 83500.00000 8.350000e+04 484.02 4.840200e+02 484.020 9.25 1 4.840200e+02 484.02 8.398402e+04 8.398402e+04 0.00 NULL
2020 Department Of Education Admin Associate Education Analyst 98659.22500 3.946369e+06 56482.61 1.412065e+03 0.000 750.75 40 0.000000e+00 0.00 4.002852e+06 3.946369e+06 56482.61 NULL
2020 Department Of Education Admin Associate Fingerprint Technician 42941.83333 2.576510e+05 47894.41 7.982402e+03 3634.160 1508.00 6 3.634160e+03 21804.96 3.055454e+05 2.794560e+05 26089.45 NULL
2020 Department Of Education Admin Associate Human Rights Specialist 99929.00000 9.992900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.992900e+04 9.992900e+04 0.00 NULL
2020 Department Of Education Admin Associate Investigator 62007.37500 4.960590e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.960590e+05 4.960590e+05 0.00 NULL
2020 Department Of Education Admin Associate Project Manager 82928.00000 2.487840e+05 29354.20 9.784733e+03 1909.070 476.75 3 1.909070e+03 5727.21 2.781382e+05 2.545112e+05 23626.99 NULL
2020 Department Of Education Admin Associate Quality Assurance Specialist 67939.06000 3.396953e+06 170388.34 3.407767e+03 2299.255 4027.25 50 2.299255e+03 114962.75 3.567341e+06 3.511916e+06 55425.59 NULL
2020 Department Of Education Admin Associate Retirement Benefits Examiner 67021.68852 4.088323e+06 282413.70 4.629733e+03 826.530 6666.00 61 8.265300e+02 50418.33 4.370737e+06 4.138741e+06 231995.37 NULL
2020 Department Of Education Admin Associate School Food Service Manager 73098.34483 4.239704e+06 101015.21 1.741642e+03 1086.670 2413.75 58 1.086670e+03 63026.86 4.340719e+06 4.302731e+06 37988.35 NULL
2020 Department Of Education Admin Associate Staff Analyst 80418.95833 1.930055e+06 7857.60 3.274000e+02 0.000 163.00 24 0.000000e+00 0.00 1.937913e+06 1.930055e+06 7857.60 NULL
2020 Department Of Education Admin Attorney At Law 106597.79000 3.197934e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.197934e+05 3.197934e+05 0.00 NULL
2020 Department Of Education Admin Bookkeeper 49431.04348 2.273828e+06 10043.56 2.183383e+02 0.000 305.75 46 0.000000e+00 0.00 2.283872e+06 2.273828e+06 10043.56 NULL
2020 Department Of Education Admin Bricklayer NA NA 30135.03 1.506751e+04 15067.515 397.75 2 1.506751e+04 30135.03 NA NA NA NULL
2020 Department Of Education Admin Carpenter NA NA 388953.06 6.945590e+03 7003.200 5003.25 56 6.945590e+03 388953.06 NA NA NA NULL
2020 Department Of Education Admin Caseworker 47930.25000 1.917210e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.917210e+05 1.917210e+05 0.00 NULL
2020 Department Of Education Admin Certified It Administrator 109372.05618 9.734113e+06 275174.43 3.091848e+03 215.480 3569.00 89 2.154800e+02 19177.72 1.000929e+07 9.753291e+06 255996.71 NULL
2020 Department Of Education Admin Certified It Developer 117749.40580 8.124709e+06 173015.74 2.507474e+03 0.000 2164.75 69 0.000000e+00 0.00 8.297725e+06 8.124709e+06 173015.74 NULL
2020 Department Of Education Admin Chauffeur-Attendant 43746.00000 4.374600e+04 83.80 8.380000e+01 83.800 8.00 1 8.380000e+01 83.80 4.382980e+04 4.382980e+04 0.00 NULL
2020 Department Of Education Admin Chief Administrator Of Impartial Hearings 161815.50000 3.236310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.236310e+05 3.236310e+05 0.00 NULL
2020 Department Of Education Admin Chief Information Technology Officer 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2020 Department Of Education Admin Chief School Business Executive 214848.00000 2.148480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.148480e+05 2.148480e+05 0.00 NULL
2020 Department Of Education Admin City Dentist 34557.10720 3.455711e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.455711e+04 3.455711e+04 0.00 NULL
2020 Department Of Education Admin City Elevator Operator 37355.25000 1.494210e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.494210e+05 1.494210e+05 0.00 NULL
2020 Department Of Education Admin City Laborer NA NA 70875.38 4.169140e+03 2845.630 1327.75 17 2.845630e+03 48375.71 NA NA NA NULL
2020 Department Of Education Admin City Medical Specialist 85966.42717 1.117564e+06 444.05 3.415769e+01 0.000 5.25 13 0.000000e+00 0.00 1.118008e+06 1.117564e+06 444.05 NULL
2020 Department Of Education Admin City Planner 97417.00000 9.741700e+04 1369.56 1.369560e+03 1369.560 20.75 1 1.369560e+03 1369.56 9.878656e+04 9.878656e+04 0.00 NULL
2020 Department Of Education Admin City Research Scientist 103334.75000 4.133390e+05 2865.50 7.163750e+02 14.120 65.25 4 1.412000e+01 56.48 4.162045e+05 4.133955e+05 2809.02 NULL
2020 Department Of Education Admin Civil Engineer 106607.75000 4.264310e+05 18485.46 4.621365e+03 54.930 281.25 4 5.493000e+01 219.72 4.449165e+05 4.266507e+05 18265.74 NULL
2020 Department Of Education Admin Clerical Aide 34914.48367 3.491448e+05 314.50 3.145000e+01 0.000 18.75 10 0.000000e+00 0.00 3.494593e+05 3.491448e+05 314.50 NULL
2020 Department Of Education Admin Clerical Associate 47478.29110 1.386366e+07 124657.73 4.269100e+02 0.000 3776.00 292 0.000000e+00 0.00 1.398832e+07 1.386366e+07 124657.73 NULL
2020 Department Of Education Admin Community Assistant 37989.85714 6.914154e+06 102936.30 5.655841e+02 76.275 3512.00 182 7.627500e+01 13882.05 7.017090e+06 6.928036e+06 89054.25 NULL
2020 Department Of Education Admin Community Associate 47671.99827 1.102177e+08 1832055.28 7.924115e+02 221.515 48553.25 2312 2.215150e+02 512142.68 1.120497e+08 1.107298e+08 1319912.60 NULL
2020 Department Of Education Admin Community Coordinator 65020.81203 7.223812e+07 1028680.84 9.259053e+02 111.490 20535.75 1111 1.114900e+02 123865.39 7.326680e+07 7.236199e+07 904815.45 NULL
2020 Department Of Education Admin Computer Aide-Non-Spvr 46902.95208 2.814177e+05 3752.54 6.254233e+02 0.000 87.75 6 0.000000e+00 0.00 2.851703e+05 2.814177e+05 3752.54 NULL
2020 Department Of Education Admin Computer Associate 74347.76923 7.732168e+06 66607.15 6.404534e+02 0.000 1450.00 104 0.000000e+00 0.00 7.798775e+06 7.732168e+06 66607.15 NULL
2020 Department Of Education Admin Computer Operations Manager 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2020 Department Of Education Admin Computer Programmer Analyst 62837.80000 3.141890e+05 170.94 3.418800e+01 0.000 4.25 5 0.000000e+00 0.00 3.143599e+05 3.141890e+05 170.94 NULL
2020 Department Of Education Admin Computer Service Technician 56798.40000 3.123912e+06 106872.65 1.943139e+03 83.850 2339.25 55 8.385000e+01 4611.75 3.230785e+06 3.128524e+06 102260.90 NULL
2020 Department Of Education Admin Computer Specialist 109916.95610 2.253298e+07 217150.46 1.059271e+03 0.000 2762.00 205 0.000000e+00 0.00 2.275013e+07 2.253298e+07 217150.46 NULL
2020 Department Of Education Admin Computer Systems Manager 139390.03175 1.756314e+07 7088.14 5.625508e+01 0.000 80.50 126 0.000000e+00 0.00 1.757023e+07 1.756314e+07 7088.14 NULL
2020 Department Of Education Admin Confidential Investigator 73606.18750 7.066194e+06 7761.29 8.084677e+01 0.000 237.00 96 0.000000e+00 0.00 7.073955e+06 7.066194e+06 7761.29 NULL
2020 Department Of Education Admin Confidential Strategy Planner 85681.85714 5.997730e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.997730e+05 5.997730e+05 0.00 NULL
2020 Department Of Education Admin Construction Laborer NA NA 93175.09 4.658755e+03 3332.190 1427.00 20 3.332190e+03 66643.80 NA NA NA NULL
2020 Department Of Education Admin Construction Project Manager 81039.78947 1.539756e+06 119759.41 6.303127e+03 5313.110 2311.25 19 5.313110e+03 100949.09 1.659515e+06 1.640705e+06 18810.32 NULL
2020 Department Of Education Admin Consultant 76432.66667 4.585960e+05 2838.58 4.730967e+02 0.000 42.50 6 0.000000e+00 0.00 4.614346e+05 4.585960e+05 2838.58 NULL
2020 Department Of Education Admin Contract Specialist 51385.53846 6.680120e+05 3069.61 2.361238e+02 0.000 122.50 13 0.000000e+00 0.00 6.710816e+05 6.680120e+05 3069.61 NULL
2020 Department Of Education Admin Counsel To The Chancellor 215761.00000 2.157610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.157610e+05 2.157610e+05 0.00 NULL
2020 Department Of Education Admin Customer Information Representative Ma L 1549 54435.55161 1.687502e+07 223502.19 7.209748e+02 13.940 6780.25 310 1.394000e+01 4321.40 1.709852e+07 1.687934e+07 219180.79 NULL
2020 Department Of Education Admin Deputy Auditor General 147071.50000 2.941430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.941430e+05 2.941430e+05 0.00 NULL
2020 Department Of Education Admin Deputy Chancellor Financial Affairs 232702.00000 2.327020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.327020e+05 2.327020e+05 0.00 NULL
2020 Department Of Education Admin Deputy Executive Director 262650.00000 2.626500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.626500e+05 2.626500e+05 0.00 NULL
2020 Department Of Education Admin Deputy Executive Director Of Financial Operations 140864.00000 1.408640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.408640e+05 1.408640e+05 0.00 NULL
2020 Department Of Education Admin Deputy Inspector General 150972.00000 4.529160e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.529160e+05 4.529160e+05 0.00 NULL
2020 Department Of Education Admin Director 173166.50000 3.463330e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.463330e+05 3.463330e+05 0.00 NULL
2020 Department Of Education Admin Director Of Audit And Investigation 163672.00000 1.636720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.636720e+05 1.636720e+05 0.00 NULL
2020 Department Of Education Admin Director Of Equal Opportunity 156365.00000 1.563650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.563650e+05 1.563650e+05 0.00 NULL
2020 Department Of Education Admin Director Of Headstart Program 129014.00000 1.290140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.290140e+05 1.290140e+05 0.00 NULL
2020 Department Of Education Admin Director Of School Safety 194160.00000 1.941600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.941600e+05 1.941600e+05 0.00 NULL
2020 Department Of Education Admin District Manager Of Administration And Business Affairs 96277.86667 1.444168e+06 8518.03 5.678687e+02 0.000 148.25 15 0.000000e+00 0.00 1.452686e+06 1.444168e+06 8518.03 NULL
2020 Department Of Education Admin Education Analyst 74007.00000 4.070385e+06 10811.04 1.965644e+02 0.000 289.75 55 0.000000e+00 0.00 4.081196e+06 4.070385e+06 10811.04 NULL
2020 Department Of Education Admin Education Analyst Trainee 45973.10013 1.379193e+06 62400.35 2.080012e+03 0.000 2042.25 30 0.000000e+00 0.00 1.441593e+06 1.379193e+06 62400.35 NULL
2020 Department Of Education Admin Education Officer 81146.74384 1.647279e+07 81741.39 4.026669e+02 0.000 1436.75 203 0.000000e+00 0.00 1.655453e+07 1.647279e+07 81741.39 NULL
2020 Department Of Education Admin Educational Management Associate 166876.48000 4.171912e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 4.171912e+06 4.171912e+06 0.00 NULL
2020 Department Of Education Admin Electrician NA NA 1090246.53 9.318346e+03 3045.230 12211.75 117 3.045230e+03 356291.91 NA NA NA NULL
2020 Department Of Education Admin Electrician’s Helper NA NA 113.67 1.136700e+02 113.670 2.00 1 1.136700e+02 113.67 NA NA NA NULL
2020 Department Of Education Admin Elevator Mechanic NA NA 31410.54 6.282108e+03 6044.150 430.50 5 6.044150e+03 30220.75 NA NA NA NULL
2020 Department Of Education Admin Equal Rights Compliance Specialist 74239.47826 1.707508e+06 19474.66 8.467243e+02 706.710 452.50 23 7.067100e+02 16254.33 1.726983e+06 1.723762e+06 3220.33 NULL
2020 Department Of Education Admin Executive Agency Counsel 136775.25424 8.069740e+06 0.00 0.000000e+00 0.000 0.00 59 0.000000e+00 0.00 8.069740e+06 8.069740e+06 0.00 NULL
2020 Department Of Education Admin Executive Assistant To The Chancellor 131652.00000 2.633040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.633040e+05 2.633040e+05 0.00 NULL
2020 Department Of Education Admin Executive Director 226086.00000 6.782580e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.782580e+05 6.782580e+05 0.00 NULL
2020 Department Of Education Admin Executive Program Specialist 223659.00000 4.473180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.473180e+05 4.473180e+05 0.00 NULL
2020 Department Of Education Admin Exterminator 45538.83333 8.196990e+05 14142.50 7.856944e+02 569.185 549.25 18 5.691850e+02 10245.33 8.338415e+05 8.299443e+05 3897.17 NULL
2020 Department Of Education Admin Glazier NA NA 64205.27 7.133919e+03 6107.560 738.50 9 6.107560e+03 54968.04 NA NA NA NULL
2020 Department Of Education Admin Graphic Artist 71048.00000 7.104800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.104800e+04 7.104800e+04 0.00 NULL
2020 Department Of Education Admin Health Services Manager 96519.82353 1.640837e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.640837e+06 1.640837e+06 0.00 NULL
2020 Department Of Education Admin Industrial Hygienist 75318.00000 7.531800e+04 12304.70 1.230470e+04 12304.700 248.50 1 1.230470e+04 12304.70 8.762270e+04 8.762270e+04 0.00 NULL
2020 Department Of Education Admin Interpreter/Translator 61960.65385 1.610977e+06 112.16 4.313846e+00 0.000 6.25 26 0.000000e+00 0.00 1.611089e+06 1.610977e+06 112.16 NULL
2020 Department Of Education Admin Investigator Empl Disc 61021.71429 2.135760e+06 15431.56 4.409017e+02 0.000 410.00 35 0.000000e+00 0.00 2.151192e+06 2.135760e+06 15431.56 NULL
2020 Department Of Education Admin Investment Analyst 83860.00000 2.515800e+05 655.38 2.184600e+02 0.000 12.50 3 0.000000e+00 0.00 2.522354e+05 2.515800e+05 655.38 NULL
2020 Department Of Education Admin It Infrastructure Engineer 124333.33333 3.730000e+05 10105.09 3.368363e+03 1883.970 100.00 3 1.883970e+03 5651.91 3.831051e+05 3.786519e+05 4453.18 NULL
2020 Department Of Education Admin It Project Specialist 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2020 Department Of Education Admin It Security Specialist 113197.25000 9.055780e+05 53899.67 6.737459e+03 586.555 542.00 8 5.865550e+02 4692.44 9.594777e+05 9.102704e+05 49207.23 NULL
2020 Department Of Education Admin It Service Management Specialist 107967.50000 2.159350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.159350e+05 2.159350e+05 0.00 NULL
2020 Department Of Education Admin Legal Secretarial Assistant 53959.33333 1.618780e+05 101.07 3.369000e+01 0.000 7.50 3 0.000000e+00 0.00 1.619791e+05 1.618780e+05 101.07 NULL
2020 Department Of Education Admin Locksmith NA NA 5067.35 8.445583e+02 513.905 106.00 6 5.139050e+02 3083.43 NA NA NA NULL
2020 Department Of Education Admin Machinist NA NA 782818.07 2.236623e+04 19845.860 11888.00 35 1.984586e+04 694605.10 NA NA NA NULL
2020 Department Of Education Admin Machinist’s Helper NA NA 31871.10 1.062370e+04 491.640 518.25 3 4.916400e+02 1474.92 NA NA NA NULL
2020 Department Of Education Admin Maintenance Worker NA NA 6150.28 8.786114e+02 511.130 143.50 7 5.111300e+02 3577.91 NA NA NA NULL
2020 Department Of Education Admin Management Auditor 69216.66667 1.245900e+06 2948.05 1.637806e+02 0.000 63.00 18 0.000000e+00 0.00 1.248848e+06 1.245900e+06 2948.05 NULL
2020 Department Of Education Admin Mechanical Engineering Intern 51411.00000 5.141100e+04 341.43 3.414300e+02 341.430 12.25 1 3.414300e+02 341.43 5.175243e+04 5.175243e+04 0.00 NULL
2020 Department Of Education Admin Media Services Technician 63158.00000 1.263160e+05 302.96 1.514800e+02 151.480 14.75 2 1.514800e+02 302.96 1.266190e+05 1.266190e+05 0.00 NULL
2020 Department Of Education Admin Mental Health Worker 46020.00000 9.204000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.204000e+04 9.204000e+04 0.00 NULL
2020 Department Of Education Admin Motor Vehicle Operator 49196.23077 6.395510e+05 88908.13 6.839087e+03 7761.550 2432.75 13 6.839087e+03 88908.13 7.284591e+05 7.284591e+05 0.00 NULL
2020 Department Of Education Admin New York City Public Service Fellow 42127.00000 4.212700e+04 337.84 3.378400e+02 337.840 15.00 1 3.378400e+02 337.84 4.246484e+04 4.246484e+04 0.00 NULL
2020 Department Of Education Admin Occupational Therapist 49973.37958 1.698595e+08 295390.20 8.690503e+01 0.000 4167.50 3399 0.000000e+00 0.00 1.701549e+08 1.698595e+08 295390.20 NULL
2020 Department Of Education Admin Office Machine Aide 46805.25000 1.872210e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.872210e+05 1.872210e+05 0.00 NULL
2020 Department Of Education Admin Painter NA NA 26328.20 4.388033e+03 4168.780 420.00 6 4.168780e+03 25012.68 NA NA NA NULL
2020 Department Of Education Admin Paralegal Aide 53894.00000 5.389400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.389400e+04 5.389400e+04 0.00 NULL
2020 Department Of Education Admin Physical Therapist 48396.27430 6.422186e+07 70724.88 5.329682e+01 0.000 927.50 1327 0.000000e+00 0.00 6.429258e+07 6.422186e+07 70724.88 NULL
2020 Department Of Education Admin Plasterer NA NA 70849.22 6.440838e+03 7350.480 977.00 11 6.440838e+03 70849.22 NA NA NA NULL
2020 Department Of Education Admin Plumber NA NA 470834.03 9.416681e+03 8327.630 4459.50 50 8.327630e+03 416381.50 NA NA NA NULL
2020 Department Of Education Admin Principal Administrative Associate - Non Supvr 61708.33490 1.363754e+07 161414.63 7.303829e+02 0.000 3662.00 221 0.000000e+00 0.00 1.379896e+07 1.363754e+07 161414.63 NULL
2020 Department Of Education Admin Principal School-Neighborhood Worker 56043.00000 5.604300e+04 640.68 6.406800e+02 640.680 13.75 1 6.406800e+02 640.68 5.668368e+04 5.668368e+04 0.00 NULL
2020 Department Of Education Admin Procurement Analyst 66141.75439 3.770080e+06 85548.39 1.500849e+03 0.000 2122.75 57 0.000000e+00 0.00 3.855628e+06 3.770080e+06 85548.39 NULL
2020 Department Of Education Admin Program Producer 86293.00000 8.629300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.629300e+04 8.629300e+04 0.00 NULL
2020 Department Of Education Admin Public Records Aide 47522.00000 7.603520e+05 5314.68 3.321675e+02 205.195 289.50 16 2.051950e+02 3283.12 7.656667e+05 7.636351e+05 2031.56 NULL
2020 Department Of Education Admin Quality Assurance Specialist 56546.50000 1.809488e+06 27191.09 8.497216e+02 0.000 909.75 32 0.000000e+00 0.00 1.836679e+06 1.809488e+06 27191.09 NULL
2020 Department Of Education Admin Quality Assurance Specialist Trainee 32512.67742 1.007893e+06 18477.84 5.960594e+02 267.520 1026.50 31 2.675200e+02 8293.12 1.026371e+06 1.016186e+06 10184.72 NULL
2020 Department Of Education Admin Radio Repair Mechanic NA NA 102655.76 5.402935e+03 4981.100 1299.00 19 4.981100e+03 94640.90 NA NA NA NULL
2020 Department Of Education Admin Research Assistant 64458.60000 3.222930e+05 5927.81 1.185562e+03 0.000 136.50 5 0.000000e+00 0.00 3.282208e+05 3.222930e+05 5927.81 NULL
2020 Department Of Education Admin Roofer NA NA 15748.01 1.049867e+03 650.880 205.75 15 6.508800e+02 9763.20 NA NA NA NULL
2020 Department Of Education Admin School Business Manager 81871.66225 1.236262e+07 259901.58 1.721203e+03 0.980 4624.25 151 9.800000e-01 147.98 1.262252e+07 1.236277e+07 259753.60 NULL
2020 Department Of Education Admin School Computer Technology Specialist 56727.90513 1.412525e+07 328351.57 1.318681e+03 0.000 7482.25 249 0.000000e+00 0.00 1.445360e+07 1.412525e+07 328351.57 NULL
2020 Department Of Education Admin School Equipment Maintainer 41288.00000 4.128800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.128800e+04 4.128800e+04 0.00 NULL
2020 Department Of Education Admin School Food Service Manager 55032.90506 2.608560e+07 206373.37 4.353869e+02 119.170 7685.50 474 1.191700e+02 56486.58 2.629197e+07 2.614208e+07 149886.79 NULL
2020 Department Of Education Admin School Lunch Aide 32455.18519 2.453612e+07 1854054.90 2.452454e+03 2539.460 18042.50 756 2.452454e+03 1854054.90 2.639017e+07 2.639017e+07 0.00 NULL
2020 Department Of Education Admin School Lunch Assistant 42172.51020 4.132906e+06 89372.42 9.119635e+02 98.565 3523.50 98 9.856500e+01 9659.37 4.222278e+06 4.142565e+06 79713.05 NULL
2020 Department Of Education Admin School Lunch Assistant Cook 41293.41892 3.055713e+06 46682.46 6.308441e+02 109.755 1956.75 74 1.097550e+02 8121.87 3.102395e+06 3.063835e+06 38560.59 NULL
2020 Department Of Education Admin School Lunch Loader And Handler 53157.37500 1.701036e+06 165045.38 5.157668e+03 3361.735 4468.75 32 3.361735e+03 107575.52 1.866081e+06 1.808612e+06 57469.86 NULL
2020 Department Of Education Admin School Plant Manager 133682.63415 5.480988e+06 0.00 0.000000e+00 0.000 0.00 41 0.000000e+00 0.00 5.480988e+06 5.480988e+06 0.00 NULL
2020 Department Of Education Admin School-Neighborhood Worker 42817.00000 1.284510e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.284510e+05 1.284510e+05 0.00 NULL
2020 Department Of Education Admin Secretary 48944.66667 2.936680e+06 21756.45 3.626075e+02 0.000 659.75 60 0.000000e+00 0.00 2.958436e+06 2.936680e+06 21756.45 NULL
2020 Department Of Education Admin Secretary To Community School Board 51855.69231 6.741240e+05 517.99 3.984538e+01 0.000 14.00 13 0.000000e+00 0.00 6.746420e+05 6.741240e+05 517.99 NULL
2020 Department Of Education Admin Secretary To The Chancellor 73685.00000 7.368500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.368500e+04 7.368500e+04 0.00 NULL
2020 Department Of Education Admin Secretary To The Counsel To The Chancellor 75197.00000 7.519700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.519700e+04 7.519700e+04 0.00 NULL
2020 Department Of Education Admin Secretary To The Deputy Chancellor 93280.14286 6.529610e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.529610e+05 6.529610e+05 0.00 NULL
2020 Department Of Education Admin Secretary To The Special Commissioner Investigation Nyc Sch 90928.00000 9.092800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.092800e+04 9.092800e+04 0.00 NULL
2020 Department Of Education Admin Senior Estimator 89369.00000 8.936900e+04 13563.22 1.356322e+04 13563.220 232.25 1 1.356322e+04 13563.22 1.029322e+05 1.029322e+05 0.00 NULL
2020 Department Of Education Admin Senior Occupational Therapist 15930.37500 1.274430e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.274430e+05 1.274430e+05 0.00 NULL
2020 Department Of Education Admin Senior Physical Therapist 62155.00000 6.215500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.215500e+04 6.215500e+04 0.00 NULL
2020 Department Of Education Admin Senior School Lunch Aide 38182.74257 1.156937e+07 194331.37 6.413577e+02 74.540 8744.75 303 7.454000e+01 22585.62 1.176370e+07 1.159196e+07 171745.75 NULL
2020 Department Of Education Admin Senior School-Neighborhood Worker 53416.00000 1.602480e+05 2931.64 9.772133e+02 149.330 70.75 3 1.493300e+02 447.99 1.631796e+05 1.606960e+05 2483.65 NULL
2020 Department Of Education Admin Service Inspector 46065.40000 2.303270e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.303270e+05 2.303270e+05 0.00 NULL
2020 Department Of Education Admin Sign Language Interpreter 86670.15306 2.340094e+06 43043.58 1.594207e+03 1711.640 717.25 27 1.594207e+03 43043.58 2.383138e+06 2.383138e+06 0.00 NULL
2020 Department Of Education Admin Special Assistant 125391.12500 1.003129e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.003129e+06 1.003129e+06 0.00 NULL
2020 Department Of Education Admin Special Assistant To Member Of The Board Of Education 142545.50000 5.701820e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.701820e+05 5.701820e+05 0.00 NULL
2020 Department Of Education Admin Special Assistant To The Chancellor 137423.44444 1.236811e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.236811e+06 1.236811e+06 0.00 NULL
2020 Department Of Education Admin Special Commissioner Of Investigation-Nyc School Dist. Doi 229836.00000 2.298360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.298360e+05 2.298360e+05 0.00 NULL
2020 Department Of Education Admin Special Officer 44271.26190 1.859393e+06 287409.74 6.843089e+03 3753.340 8635.50 42 3.753340e+03 157640.28 2.146803e+06 2.017033e+06 129769.46 NULL
2020 Department Of Education Admin Staff Analyst 62276.00000 5.604840e+05 3246.10 3.606778e+02 0.000 115.25 9 0.000000e+00 0.00 5.637301e+05 5.604840e+05 3246.10 NULL
2020 Department Of Education Admin Staff Audiologist 72179.00000 2.887160e+05 451.15 1.127875e+02 40.310 7.50 4 4.031000e+01 161.24 2.891672e+05 2.888772e+05 289.91 NULL
2020 Department Of Education Admin Staff Nurse 45596.64528 6.333374e+07 4714470.57 3.394147e+03 0.000 63122.25 1389 0.000000e+00 0.00 6.804821e+07 6.333374e+07 4714470.57 NULL
2020 Department Of Education Admin Steam Fitter NA NA 475488.75 1.105788e+04 10010.000 4340.75 43 1.001000e+04 430430.00 NA NA NA NULL
2020 Department Of Education Admin Steam Fitter’s Helper NA NA 47437.50 1.581250e+04 0.000 575.00 3 0.000000e+00 0.00 NA NA NA NULL
2020 Department Of Education Admin Stock Worker 37319.27276 5.597891e+05 7006.12 4.670747e+02 0.000 324.25 15 0.000000e+00 0.00 5.667952e+05 5.597891e+05 7006.12 NULL
2020 Department Of Education Admin Strategi Initiative Specialist 89966.50000 1.799330e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.799330e+05 1.799330e+05 0.00 NULL
2020 Department Of Education Admin Strategic Initiative Specialist 102282.50000 2.045650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.045650e+05 2.045650e+05 0.00 NULL
2020 Department Of Education Admin Substance Abuse Prevention & Intervention Specialist 62377.48248 1.846373e+07 29478.37 9.958909e+01 0.000 751.75 296 0.000000e+00 0.00 1.849321e+07 1.846373e+07 29478.37 NULL
2020 Department Of Education Admin Summer College Intern 4018.99167 1.205698e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.205698e+04 1.205698e+04 0.00 NULL
2020 Department Of Education Admin Summer Graduate Intern 6114.36672 3.057183e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.057183e+04 3.057183e+04 0.00 NULL
2020 Department Of Education Admin Supervising Computer Service Technician 76716.05279 2.301482e+06 56792.19 1.893073e+03 16.860 1034.50 30 1.686000e+01 505.80 2.358274e+06 2.301987e+06 56286.39 NULL
2020 Department Of Education Admin Supervising Therapist 49124.23552 3.684318e+06 100154.94 1.335399e+03 0.000 979.75 75 0.000000e+00 0.00 3.784473e+06 3.684318e+06 100154.94 NULL
2020 Department Of Education Admin Supervisor 78512.00000 1.570240e+05 8899.91 4.449955e+03 4449.955 152.50 2 4.449955e+03 8899.91 1.659239e+05 1.659239e+05 0.00 NULL
2020 Department Of Education Admin Supervisor Bricklayer NA NA 30926.26 3.092626e+04 30926.260 398.25 1 3.092626e+04 30926.26 NA NA NA NULL
2020 Department Of Education Admin Supervisor Carpenter NA NA 48450.86 1.211272e+04 14779.170 613.00 4 1.211272e+04 48450.86 NA NA NA NULL
2020 Department Of Education Admin Supervisor Electrician NA NA 181957.67 1.299698e+04 810.375 1891.50 14 8.103750e+02 11345.25 NA NA NA NULL
2020 Department Of Education Admin Supervisor I 62398.50000 2.495940e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.495940e+05 2.495940e+05 0.00 NULL
2020 Department Of Education Admin Supervisor I Social Work 67392.50000 6.739250e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 6.739250e+05 6.739250e+05 0.00 NULL
2020 Department Of Education Admin Supervisor Ii 69275.00000 1.385500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.385500e+05 1.385500e+05 0.00 NULL
2020 Department Of Education Admin Supervisor Ii Social Work 74183.00000 7.418300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.418300e+04 7.418300e+04 0.00 NULL
2020 Department Of Education Admin Supervisor Of Electrical Installations & Maintenance 80000.68421 1.520013e+06 112907.85 5.942518e+03 3208.820 2201.25 19 3.208820e+03 60967.58 1.632921e+06 1.580981e+06 51940.27 NULL
2020 Department Of Education Admin Supervisor Of Mechanical Installations & Maintenance 78469.70000 1.569394e+06 130612.14 6.530607e+03 4281.380 2461.50 20 4.281380e+03 85627.60 1.700006e+06 1.655022e+06 44984.54 NULL
2020 Department Of Education Admin Supervisor Of Mechanics NA NA 213551.30 7.118377e+03 4147.690 2326.75 30 4.147690e+03 124430.70 NA NA NA NULL
2020 Department Of Education Admin Supervisor Of Nurses 51015.88236 2.499778e+06 81942.73 1.672301e+03 0.000 770.50 49 0.000000e+00 0.00 2.581721e+06 2.499778e+06 81942.73 NULL
2020 Department Of Education Admin Supervisor Of Office Machine Operations 46122.60000 2.306130e+05 285.45 5.709000e+01 0.700 21.50 5 7.000000e-01 3.50 2.308985e+05 2.306165e+05 281.95 NULL
2020 Department Of Education Admin Supervisor Of Stock Workers 63645.00000 1.272900e+05 682.74 3.413700e+02 341.370 23.50 2 3.413700e+02 682.74 1.279727e+05 1.279727e+05 0.00 NULL
2020 Department Of Education Admin Supervisor Painter NA NA 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2020 Department Of Education Admin Supervisor Plasterer NA NA 19784.30 9.892150e+03 9892.150 267.50 2 9.892150e+03 19784.30 NA NA NA NULL
2020 Department Of Education Admin Supervisor Plumber NA NA 143823.14 2.054616e+04 19162.770 1315.75 7 1.916277e+04 134139.39 NA NA NA NULL
2020 Department Of Education Admin Supervisor Roofer NA NA 3659.87 1.219957e+03 1059.390 67.50 3 1.059390e+03 3178.17 NA NA NA NULL
2020 Department Of Education Admin Supervisor Steamfitter NA NA 58311.00 1.457775e+04 15219.000 511.50 4 1.457775e+04 58311.00 NA NA NA NULL
2020 Department Of Education Admin Telecommunication Manager 130539.50000 2.610790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.610790e+05 2.610790e+05 0.00 NULL
2020 Department Of Education Admin Telecommunications Associate 78891.66667 1.656725e+06 14034.34 6.683019e+02 0.000 272.00 21 0.000000e+00 0.00 1.670759e+06 1.656725e+06 14034.34 NULL
2020 Department Of Education Admin Thermostat Repairer NA NA 82469.79 1.030872e+04 2164.390 796.25 8 2.164390e+03 17315.12 NA NA NA NULL
2020 Department Of Finance *Attorney At Law 110916.61538 1.441916e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.441916e+06 1.441916e+06 0.00 NULL
2020 Department Of Finance Accountant 72644.73333 1.089671e+06 13198.71 8.799140e+02 0.000 273.25 15 0.000000e+00 0.00 1.102870e+06 1.089671e+06 13198.71 NULL
2020 Department Of Finance Actuarial Specialist Level Ii, Oj 112293.00000 1.122930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.122930e+05 1.122930e+05 0.00 NULL
2020 Department Of Finance Adm Manager-Non-Mgrl 79440.28070 9.056192e+06 262790.82 2.305183e+03 0.000 5056.25 114 0.000000e+00 0.00 9.318983e+06 9.056192e+06 262790.82 NULL
2020 Department Of Finance Admin Contract Specialist 110156.40000 5.507820e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.507820e+05 5.507820e+05 0.00 NULL
2020 Department Of Finance Administrative Accountant 109709.60000 1.097096e+06 9593.20 9.593200e+02 0.000 174.00 10 0.000000e+00 0.00 1.106689e+06 1.097096e+06 9593.20 NULL
2020 Department Of Finance Administrative Actuary 144200.00000 1.442000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.442000e+05 1.442000e+05 0.00 NULL
2020 Department Of Finance Administrative Architect 94786.00000 9.478600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.478600e+04 9.478600e+04 0.00 NULL
2020 Department Of Finance Administrative Assessor 144201.80000 7.210090e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.210090e+05 7.210090e+05 0.00 NULL
2020 Department Of Finance Administrative City Planner 146550.50000 5.862020e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.862020e+05 5.862020e+05 0.00 NULL
2020 Department Of Finance Administrative Deputy Register 119309.33333 3.579280e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.579280e+05 3.579280e+05 0.00 NULL
2020 Department Of Finance Administrative Investigator 132810.00000 3.984300e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.984300e+05 3.984300e+05 0.00 NULL
2020 Department Of Finance Administrative Labor Relations Analyst 113869.62500 9.109570e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.109570e+05 9.109570e+05 0.00 NULL
2020 Department Of Finance Administrative Management Auditor 145293.00000 1.452930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.452930e+05 1.452930e+05 0.00 NULL
2020 Department Of Finance Administrative Manager 119529.75000 4.781190e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.781190e+05 4.781190e+05 0.00 NULL
2020 Department Of Finance Administrative Procurement Analyst-Non-Mgrl 99527.00000 7.962160e+05 5501.43 6.876788e+02 236.730 95.50 8 2.367300e+02 1893.84 8.017174e+05 7.981098e+05 3607.59 NULL
2020 Department Of Finance Administrative Public Information Specialist 112919.25000 4.516770e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.516770e+05 4.516770e+05 0.00 NULL
2020 Department Of Finance Administrative Quality Assurance Specialist 81800.00000 8.180000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.180000e+04 8.180000e+04 0.00 NULL
2020 Department Of Finance Administrative Space Analyst 88910.00000 1.778200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.778200e+05 1.778200e+05 0.00 NULL
2020 Department Of Finance Administrative Staff Analyst 111396.46491 1.269920e+07 144266.59 1.265496e+03 0.000 2275.25 114 0.000000e+00 0.00 1.284346e+07 1.269920e+07 144266.59 NULL
2020 Department Of Finance Administrative Storekeeper 106542.66667 3.196280e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.196280e+05 3.196280e+05 0.00 NULL
2020 Department Of Finance Administrative Supervisor Of Building Maintenance 97711.00000 1.954220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.954220e+05 1.954220e+05 0.00 NULL
2020 Department Of Finance Administrative Tax Auditor 121996.25714 4.269869e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 4.269869e+06 4.269869e+06 0.00 NULL
2020 Department Of Finance Agency Attorney 93077.77778 2.513100e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 2.513100e+06 2.513100e+06 0.00 NULL
2020 Department Of Finance Agency Attorney Interne 68802.00000 6.880200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.880200e+04 6.880200e+04 0.00 NULL
2020 Department Of Finance Agency Chief Contracting Officer 160925.00000 1.609250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.609250e+05 1.609250e+05 0.00 NULL
2020 Department Of Finance Assistant City Assessor 51642.25882 4.389592e+06 32269.86 3.796454e+02 0.000 997.75 85 0.000000e+00 0.00 4.421862e+06 4.389592e+06 32269.86 NULL
2020 Department Of Finance Assistant Commissioner 178760.25000 7.150410e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.150410e+05 7.150410e+05 0.00 NULL
2020 Department Of Finance Associate Fraud Investigator 72063.89286 2.017789e+06 488453.96 1.744478e+04 13415.305 8871.00 28 1.341531e+04 375628.54 2.506243e+06 2.393418e+06 112825.42 NULL
2020 Department Of Finance Associate Labor Relations Analyst 83322.33333 2.499670e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.499670e+05 2.499670e+05 0.00 NULL
2020 Department Of Finance Associate Staff Analyst 80133.46667 2.404004e+06 23360.37 7.786790e+02 0.000 449.25 30 0.000000e+00 0.00 2.427364e+06 2.404004e+06 23360.37 NULL
2020 Department Of Finance Asst Commissioner 177228.00000 1.772280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.772280e+05 1.772280e+05 0.00 NULL
2020 Department Of Finance Cashier 47313.00000 1.892520e+05 3974.74 9.936850e+02 103.410 128.75 4 1.034100e+02 413.64 1.932267e+05 1.896656e+05 3561.10 NULL
2020 Department Of Finance Certified It Administrator 120936.14286 1.693106e+06 201448.77 1.438920e+04 5009.615 2259.00 14 5.009615e+03 70134.61 1.894555e+06 1.763241e+06 131314.16 NULL
2020 Department Of Finance City Assessor 87427.66316 8.305628e+06 680142.66 7.159396e+03 4329.520 9882.25 95 4.329520e+03 411304.40 8.985771e+06 8.716932e+06 268838.26 NULL
2020 Department Of Finance City Laborer NA NA 58130.37 4.471567e+03 872.470 1086.50 13 8.724700e+02 11342.11 NA NA NA NULL
2020 Department Of Finance City Planner 73024.50000 1.460490e+05 5148.11 2.574055e+03 2574.055 90.50 2 2.574055e+03 5148.11 1.511971e+05 1.511971e+05 0.00 NULL
2020 Department Of Finance City Planning Technician 44271.33333 1.328140e+05 4007.23 1.335743e+03 1499.600 157.50 3 1.335743e+03 4007.23 1.368212e+05 1.368212e+05 0.00 NULL
2020 Department Of Finance City Register 177735.00000 1.777350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.777350e+05 1.777350e+05 0.00 NULL
2020 Department Of Finance City Research Scientist 91613.03448 2.656778e+06 6021.87 2.076507e+02 0.000 108.25 29 0.000000e+00 0.00 2.662800e+06 2.656778e+06 6021.87 NULL
2020 Department Of Finance City Tax Auditor 65639.40000 2.625576e+07 137416.35 3.435409e+02 0.000 2568.75 400 0.000000e+00 0.00 2.639318e+07 2.625576e+07 137416.35 NULL
2020 Department Of Finance Clerical Aide 38818.26316 7.375470e+05 295.65 1.556053e+01 0.000 12.50 19 0.000000e+00 0.00 7.378427e+05 7.375470e+05 295.65 NULL
2020 Department Of Finance Clerical Associate 43457.17254 1.234184e+07 92434.24 3.254727e+02 0.000 2974.50 284 0.000000e+00 0.00 1.243427e+07 1.234184e+07 92434.24 NULL
2020 Department Of Finance College Aide 12342.08156 2.715258e+05 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 2.715258e+05 2.715258e+05 0.00 NULL
2020 Department Of Finance College Aide - Assignment Levels Ii And Iii 6176.43760 6.176438e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.176438e+03 6.176438e+03 0.00 NULL
2020 Department Of Finance Commissioner Of Finance 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2020 Department Of Finance Community Assistant 39328.00000 1.573120e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.573120e+05 1.573120e+05 0.00 NULL
2020 Department Of Finance Community Associate 51794.37500 4.143550e+05 5940.56 7.425700e+02 247.920 211.50 8 2.479200e+02 1983.36 4.202956e+05 4.163384e+05 3957.20 NULL
2020 Department Of Finance Community Coordinator 71983.68750 1.151739e+06 20841.94 1.302621e+03 465.580 443.25 16 4.655800e+02 7449.28 1.172581e+06 1.159188e+06 13392.66 NULL
2020 Department Of Finance Community Service Aide 35562.00000 3.556200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.556200e+04 3.556200e+04 0.00 NULL
2020 Department Of Finance Computer Aide-Non-Spvr 65652.00000 1.313040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.313040e+05 1.313040e+05 0.00 NULL
2020 Department Of Finance Computer Associate 75424.80000 1.885620e+06 24092.06 9.636824e+02 0.000 476.75 25 0.000000e+00 0.00 1.909712e+06 1.885620e+06 24092.06 NULL
2020 Department Of Finance Computer Programmer Analyst 62265.00000 4.981200e+05 2078.72 2.598400e+02 0.000 48.50 8 0.000000e+00 0.00 5.001987e+05 4.981200e+05 2078.72 NULL
2020 Department Of Finance Computer Specialist 106720.07527 9.924967e+06 140363.15 1.509281e+03 0.000 2004.25 93 0.000000e+00 0.00 1.006533e+07 9.924967e+06 140363.15 NULL
2020 Department Of Finance Computer Systems Manager 140403.85385 1.825250e+07 0.00 0.000000e+00 0.000 0.00 130 0.000000e+00 0.00 1.825250e+07 1.825250e+07 0.00 NULL
2020 Department Of Finance Confidential Strategy Planner 85608.00000 8.560800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.560800e+04 8.560800e+04 0.00 NULL
2020 Department Of Finance Counsel 213000.00000 2.130000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.130000e+05 2.130000e+05 0.00 NULL
2020 Department Of Finance Deputy City Sheriff - Non-Spvr 68638.51515 9.060284e+06 3291337.90 2.493438e+04 18148.385 64062.98 132 1.814838e+04 2395586.82 1.235162e+07 1.145587e+07 895751.08 NULL
2020 Department Of Finance Deputy Commissioner 217309.25000 8.692370e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.692370e+05 8.692370e+05 0.00 NULL
2020 Department Of Finance Director Of Public Information 125868.50000 2.517370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.517370e+05 2.517370e+05 0.00 NULL
2020 Department Of Finance Economist 81209.40000 4.060470e+05 3264.37 6.528740e+02 342.680 69.00 5 3.426800e+02 1713.40 4.093114e+05 4.077604e+05 1550.97 NULL
2020 Department Of Finance Examiner Of Accounts 95737.50000 1.914750e+05 4496.82 2.248410e+03 2248.410 59.50 2 2.248410e+03 4496.82 1.959718e+05 1.959718e+05 0.00 NULL
2020 Department Of Finance Executive Agency Counsel 142993.95833 3.431855e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 3.431855e+06 3.431855e+06 0.00 NULL
2020 Department Of Finance Executive Program Specialist 213000.00000 2.130000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.130000e+05 2.130000e+05 0.00 NULL
2020 Department Of Finance Fraud Investigator 43094.00000 1.292820e+05 10459.98 3.486660e+03 2851.230 357.50 3 2.851230e+03 8553.69 1.397420e+05 1.378357e+05 1906.29 NULL
2020 Department Of Finance Graphic Artist 85798.00000 1.715960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.715960e+05 1.715960e+05 0.00 NULL
2020 Department Of Finance Hearing Officer 42068.67062 5.847545e+06 0.00 0.000000e+00 0.000 0.00 139 0.000000e+00 0.00 5.847545e+06 5.847545e+06 0.00 NULL
2020 Department Of Finance High School Student Aide 3207.48750 1.282995e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.282995e+04 1.282995e+04 0.00 NULL
2020 Department Of Finance Investigator 47903.77778 4.311340e+05 14024.33 1.558259e+03 0.000 481.00 9 0.000000e+00 0.00 4.451583e+05 4.311340e+05 14024.33 NULL
2020 Department Of Finance Labor Relations Analyst 75846.50000 1.516930e+05 4056.41 2.028205e+03 2028.205 92.00 2 2.028205e+03 4056.41 1.557494e+05 1.557494e+05 0.00 NULL
2020 Department Of Finance Legal Secretarial Assistant 53877.00000 1.077540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.077540e+05 1.077540e+05 0.00 NULL
2020 Department Of Finance Management Auditor 83480.00000 6.678400e+05 5016.44 6.270550e+02 0.000 84.25 8 0.000000e+00 0.00 6.728564e+05 6.678400e+05 5016.44 NULL
2020 Department Of Finance Motor Vehicle Operator 43734.66667 1.312040e+05 460.83 1.536100e+02 32.520 13.75 3 3.252000e+01 97.56 1.316648e+05 1.313016e+05 363.27 NULL
2020 Department Of Finance Motor Vehicle Supervisor 57976.00000 5.797600e+04 1675.26 1.675260e+03 1675.260 40.50 1 1.675260e+03 1675.26 5.965126e+04 5.965126e+04 0.00 NULL
2020 Department Of Finance Principal Administrative Associate - Non Supvr 60031.07560 1.746904e+07 250851.12 8.620313e+02 0.000 5862.75 291 0.000000e+00 0.00 1.771989e+07 1.746904e+07 250851.12 NULL
2020 Department Of Finance Procurement Analyst 72473.45455 7.972080e+05 953.76 8.670545e+01 0.000 22.75 11 0.000000e+00 0.00 7.981618e+05 7.972080e+05 953.76 NULL
2020 Department Of Finance Public Records Aide 41978.00000 4.197800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.197800e+04 4.197800e+04 0.00 NULL
2020 Department Of Finance Quality Assurance Specialist 58533.00000 5.853300e+04 2418.80 2.418800e+03 2418.800 58.25 1 2.418800e+03 2418.80 6.095180e+04 6.095180e+04 0.00 NULL
2020 Department Of Finance Secretary 49313.20000 2.465660e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.465660e+05 2.465660e+05 0.00 NULL
2020 Department Of Finance Secretary Of Comm 93242.00000 9.324200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.324200e+04 9.324200e+04 0.00 NULL
2020 Department Of Finance Secretary To Deputy Commissioner 61800.00000 6.180000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.180000e+04 6.180000e+04 0.00 NULL
2020 Department Of Finance Senior Estimator 77921.00000 7.792100e+04 1825.10 1.825100e+03 1825.100 36.75 1 1.825100e+03 1825.10 7.974610e+04 7.974610e+04 0.00 NULL
2020 Department Of Finance Senior Photographer 59490.00000 5.949000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.949000e+04 5.949000e+04 0.00 NULL
2020 Department Of Finance Special Officer 49719.66667 1.491590e+05 24266.76 8.088920e+03 10628.150 670.75 3 8.088920e+03 24266.76 1.734258e+05 1.734258e+05 0.00 NULL
2020 Department Of Finance Staff Analyst 67374.83333 1.212747e+06 33651.31 1.869517e+03 0.000 736.25 18 0.000000e+00 0.00 1.246398e+06 1.212747e+06 33651.31 NULL
2020 Department Of Finance Summer College Intern 5275.73958 6.330888e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 6.330888e+04 6.330888e+04 0.00 NULL
2020 Department Of Finance Summer Graduate Intern 8186.53088 1.146114e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.146114e+05 1.146114e+05 0.00 NULL
2020 Department Of Finance Supervising Deputy Sheriff - Al 1 Only 40 Hr 106285.41176 1.806852e+06 905398.89 5.325876e+04 53400.250 11036.25 17 5.325876e+04 905398.89 2.712251e+06 2.712251e+06 0.00 NULL
2020 Department Of Finance Supervising Special Officer 60890.16667 3.653410e+05 14803.82 2.467303e+03 1797.785 360.50 6 1.797785e+03 10786.71 3.801448e+05 3.761277e+05 4017.11 NULL
2020 Department Of Finance Tax Map Cartographer 75379.00000 1.507580e+05 7423.48 3.711740e+03 3711.740 131.75 2 3.711740e+03 7423.48 1.581815e+05 1.581815e+05 0.00 NULL
2020 Department Of Finance Telecommunications Associate 54022.00000 5.402200e+04 7944.87 7.944870e+03 7944.870 215.25 1 7.944870e+03 7944.87 6.196687e+04 6.196687e+04 0.00 NULL
2020 Department Of Investigation Adm Manager-Non-Mgrl 79223.18182 8.714550e+05 4328.10 3.934636e+02 0.000 86.00 11 0.000000e+00 0.00 8.757831e+05 8.714550e+05 4328.10 NULL
2020 Department Of Investigation Administrative Manager 118782.75000 4.751310e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.751310e+05 4.751310e+05 0.00 NULL
2020 Department Of Investigation Administrative Public Information Specialist 121809.33333 3.654280e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.654280e+05 3.654280e+05 0.00 NULL
2020 Department Of Investigation Administrative Staff Analyst 116576.00000 2.331520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.331520e+05 2.331520e+05 0.00 NULL
2020 Department Of Investigation Associate Staff Analyst 75591.00000 7.559100e+04 6127.26 6.127260e+03 6127.260 127.50 1 6.127260e+03 6127.26 8.171826e+04 8.171826e+04 0.00 NULL
2020 Department Of Investigation Clerical Associate 53168.23077 6.911870e+05 4296.75 3.305192e+02 0.000 117.50 13 0.000000e+00 0.00 6.954838e+05 6.911870e+05 4296.75 NULL
2020 Department Of Investigation Commissioner 237240.00000 2.372400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.372400e+05 2.372400e+05 0.00 NULL
2020 Department Of Investigation Community Assistant 26772.74333 8.031823e+04 3261.55 1.087183e+03 0.000 108.00 3 0.000000e+00 0.00 8.357978e+04 8.031823e+04 3261.55 NULL
2020 Department Of Investigation Community Associate 51566.25000 8.250600e+05 27619.41 1.726213e+03 830.060 766.75 16 8.300600e+02 13280.96 8.526794e+05 8.383410e+05 14338.45 NULL
2020 Department Of Investigation Community Coordinator 70955.50000 2.838220e+05 23225.52 5.806380e+03 5582.970 464.75 4 5.582970e+03 22331.88 3.070475e+05 3.061539e+05 893.64 NULL
2020 Department Of Investigation Computer Associate 71082.20000 3.554110e+05 13967.37 2.793474e+03 49.260 222.00 5 4.926000e+01 246.30 3.693784e+05 3.556573e+05 13721.07 NULL
2020 Department Of Investigation Computer Specialist 100405.50000 2.008110e+05 644.94 3.224700e+02 322.470 10.50 2 3.224700e+02 644.94 2.014559e+05 2.014559e+05 0.00 NULL
2020 Department Of Investigation Computer Systems Manager 135881.00000 1.087048e+06 6763.54 8.454425e+02 0.000 71.25 8 0.000000e+00 0.00 1.093812e+06 1.087048e+06 6763.54 NULL
2020 Department Of Investigation Confidential Investigator 60281.72000 7.535215e+06 124056.72 9.924538e+02 0.000 2879.25 125 0.000000e+00 0.00 7.659272e+06 7.535215e+06 124056.72 NULL
2020 Department Of Investigation Confidential Secretary To The Deputy Commissioner 67938.00000 1.358760e+05 4549.64 2.274820e+03 2274.820 105.25 2 2.274820e+03 4549.64 1.404256e+05 1.404256e+05 0.00 NULL
2020 Department Of Investigation Customer Information Representative Ma L 1549 42629.50000 8.525900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.525900e+04 8.525900e+04 0.00 NULL
2020 Department Of Investigation Deputy Commissioner 199982.33333 5.999470e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.999470e+05 5.999470e+05 0.00 NULL
2020 Department Of Investigation Deputy Inspector General 110712.26316 4.207066e+06 3474.33 9.142974e+01 0.000 74.00 38 0.000000e+00 0.00 4.210540e+06 4.207066e+06 3474.33 NULL
2020 Department Of Investigation Examiner Of Accounts 99594.33333 2.987830e+05 2885.91 9.619700e+02 0.000 46.25 3 0.000000e+00 0.00 3.016689e+05 2.987830e+05 2885.91 NULL
2020 Department Of Investigation Examining Attorney 110854.50000 1.551963e+06 3240.93 2.314950e+02 0.000 59.00 14 0.000000e+00 0.00 1.555204e+06 1.551963e+06 3240.93 NULL
2020 Department Of Investigation Inspector General 155298.53571 4.348359e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 4.348359e+06 4.348359e+06 0.00 NULL
2020 Department Of Investigation Principal Administrative Associate - Non Supvr 68538.62500 5.483090e+05 4594.93 5.743663e+02 0.000 94.25 8 0.000000e+00 0.00 5.529039e+05 5.483090e+05 4594.93 NULL
2020 Department Of Investigation Procurement Analyst 78767.00000 1.575340e+05 12530.96 6.265480e+03 6265.480 218.25 2 6.265480e+03 12530.96 1.700650e+05 1.700650e+05 0.00 NULL
2020 Department Of Investigation Secretary 50534.00000 1.010680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.010680e+05 1.010680e+05 0.00 NULL
2020 Department Of Investigation Special Investigator 77107.26891 9.175765e+06 467339.84 3.927226e+03 1349.720 9571.25 119 1.349720e+03 160616.68 9.643105e+06 9.336382e+06 306723.16 NULL
2020 Department Of Investigation Stock Worker 35894.00000 3.589400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.589400e+04 3.589400e+04 0.00 NULL
2020 Department Of Juvenile Justice Electrician NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2020 Department Of Probation *Attorney At Law 92135.75000 3.685430e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.685430e+05 3.685430e+05 0.00 NULL
2020 Department Of Probation Adm Manager-Non-Mgrl 76401.42857 1.069620e+06 10043.21 7.173721e+02 0.000 209.75 14 0.000000e+00 0.00 1.079663e+06 1.069620e+06 10043.21 NULL
2020 Department Of Probation Admin Contract Specialist 156302.00000 3.126040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.126040e+05 3.126040e+05 0.00 NULL
2020 Department Of Probation Administrative Contract Specialist 78280.00000 7.828000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.828000e+04 7.828000e+04 0.00 NULL
2020 Department Of Probation Administrative Director Of Social Services 185000.00000 1.850000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.850000e+05 1.850000e+05 0.00 NULL
2020 Department Of Probation Administrative Graphic Artist 98159.00000 9.815900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.815900e+04 9.815900e+04 0.00 NULL
2020 Department Of Probation Administrative Probation Officer 102066.22449 5.001245e+06 10118.89 2.065080e+02 0.000 161.50 49 0.000000e+00 0.00 5.011364e+06 5.001245e+06 10118.89 NULL
2020 Department Of Probation Administrative Procurement Analyst-Non-Mgrl 72116.00000 1.442320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.442320e+05 1.442320e+05 0.00 NULL
2020 Department Of Probation Administrative Public Information Specialist 94270.50000 1.885410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.885410e+05 1.885410e+05 0.00 NULL
2020 Department Of Probation Administrative Staff Analyst 123323.55556 1.109912e+06 2360.82 2.623133e+02 0.000 34.25 9 0.000000e+00 0.00 1.112273e+06 1.109912e+06 2360.82 NULL
2020 Department Of Probation Agency Attorney 93001.66667 8.370150e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.370150e+05 8.370150e+05 0.00 NULL
2020 Department Of Probation Agency Chief Contracting Officer 132816.00000 1.328160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.328160e+05 1.328160e+05 0.00 NULL
2020 Department Of Probation Certified It Administrator 94244.00000 9.424400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.424400e+04 9.424400e+04 0.00 NULL
2020 Department Of Probation City Attendant 42757.00000 4.275700e+04 4561.72 4.561720e+03 4561.720 136.50 1 4.561720e+03 4561.72 4.731872e+04 4.731872e+04 0.00 NULL
2020 Department Of Probation City Laborer NA NA 9349.99 4.674995e+03 4674.995 165.75 2 4.674995e+03 9349.99 NA NA NA NULL
2020 Department Of Probation City Research Scientist 105286.00000 8.422880e+05 1444.01 1.805012e+02 0.000 29.00 8 0.000000e+00 0.00 8.437320e+05 8.422880e+05 1444.01 NULL
2020 Department Of Probation Clerical Associate 43097.10526 1.637690e+06 49646.51 1.306487e+03 0.000 1577.98 38 0.000000e+00 0.00 1.687337e+06 1.637690e+06 49646.51 NULL
2020 Department Of Probation College Aide 11303.84700 1.130385e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.130385e+05 1.130385e+05 0.00 NULL
2020 Department Of Probation Community Assistant 31267.39515 3.126740e+05 371.80 3.718000e+01 0.000 20.50 10 0.000000e+00 0.00 3.130458e+05 3.126740e+05 371.80 NULL
2020 Department Of Probation Community Associate 45640.82051 1.779992e+06 55453.89 1.421895e+03 0.000 1886.00 39 0.000000e+00 0.00 1.835446e+06 1.779992e+06 55453.89 NULL
2020 Department Of Probation Community Coordinator 71703.90000 1.434078e+06 10664.86 5.332430e+02 0.000 278.50 20 0.000000e+00 0.00 1.444743e+06 1.434078e+06 10664.86 NULL
2020 Department Of Probation Community Service Aide 31631.11538 8.224090e+05 8447.23 3.248935e+02 0.000 443.50 26 0.000000e+00 0.00 8.308562e+05 8.224090e+05 8447.23 NULL
2020 Department Of Probation Computer Associate 66597.00000 6.659700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.659700e+04 6.659700e+04 0.00 NULL
2020 Department Of Probation Computer Service Technician 49033.50000 9.806700e+04 6014.07 3.007035e+03 3007.035 196.00 2 3.007035e+03 6014.07 1.040811e+05 1.040811e+05 0.00 NULL
2020 Department Of Probation Computer Specialist 104205.80000 5.210290e+05 91307.54 1.826151e+04 13711.420 1202.25 5 1.371142e+04 68557.10 6.123365e+05 5.895861e+05 22750.44 NULL
2020 Department Of Probation Counsel 191881.00000 1.918810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.918810e+05 1.918810e+05 0.00 NULL
2020 Department Of Probation Custodian 82450.00000 8.245000e+04 214.45 2.144500e+02 214.450 0.00 1 2.144500e+02 214.45 8.266445e+04 8.266445e+04 0.00 NULL
2020 Department Of Probation Deputy Director Of Probation 186404.50000 3.728090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.728090e+05 3.728090e+05 0.00 NULL
2020 Department Of Probation Director Of Probation 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2020 Department Of Probation District Supervisor 80784.00000 8.078400e+04 12410.23 1.241023e+04 12410.230 222.50 1 1.241023e+04 12410.23 9.319423e+04 9.319423e+04 0.00 NULL
2020 Department Of Probation Executive Agency Counsel 148667.50000 8.920050e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.920050e+05 8.920050e+05 0.00 NULL
2020 Department Of Probation Executive Director Of Administration 192678.00000 1.926780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.926780e+05 1.926780e+05 0.00 NULL
2020 Department Of Probation Executive Program Specialist 132588.00000 1.325880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.325880e+05 1.325880e+05 0.00 NULL
2020 Department Of Probation Press Officer 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2020 Department Of Probation Principal Administrative Associate - Non Supvr 57686.00000 1.845952e+06 29532.47 9.228897e+02 0.000 742.50 32 0.000000e+00 0.00 1.875484e+06 1.845952e+06 29532.47 NULL
2020 Department Of Probation Probation Assistant 36189.47133 5.428421e+05 7373.37 4.915580e+02 3.870 293.25 15 3.870000e+00 58.05 5.502154e+05 5.429001e+05 7315.32 NULL
2020 Department Of Probation Probation Officer 56846.79625 4.547744e+07 1761580.65 2.201976e+03 155.585 41296.84 800 1.555850e+02 124468.00 4.723902e+07 4.560190e+07 1637112.65 NULL
2020 Department Of Probation Probation Officer Trainee 41989.50000 1.595601e+06 71359.83 1.877890e+03 808.730 2357.90 38 8.087300e+02 30731.74 1.666961e+06 1.626333e+06 40628.09 NULL
2020 Department Of Probation Procurement Analyst 56970.00000 5.697000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.697000e+04 5.697000e+04 0.00 NULL
2020 Department Of Probation Secretary 41596.34615 1.081505e+06 5035.49 1.936727e+02 0.000 172.00 26 0.000000e+00 0.00 1.086540e+06 1.081505e+06 5035.49 NULL
2020 Department Of Probation Senior Consultant 84496.50000 1.689930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.689930e+05 1.689930e+05 0.00 NULL
2020 Department Of Probation Senior Mental Health Worker 49461.87500 3.956950e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 3.956950e+05 3.956950e+05 0.00 NULL
2020 Department Of Probation Social Worker 58741.00000 5.874100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.874100e+04 5.874100e+04 0.00 NULL
2020 Department Of Probation Staff Analyst 65985.16667 3.959110e+05 8213.85 1.368975e+03 84.715 151.75 6 8.471500e+01 508.29 4.041248e+05 3.964193e+05 7705.56 NULL
2020 Department Of Probation Staff Analyst Trainee 50688.00000 5.068800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.068800e+04 5.068800e+04 0.00 NULL
2020 Department Of Probation Stock Worker 37840.00000 3.784000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.784000e+04 3.784000e+04 0.00 NULL
2020 Department Of Probation Strategic Initiative Specialist 99955.00000 9.995500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.995500e+04 9.995500e+04 0.00 NULL
2020 Department Of Probation Summer College Intern 4636.60417 5.563925e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 5.563925e+04 5.563925e+04 0.00 NULL
2020 Department Of Probation Summer Graduate Intern 5043.33333 1.513000e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.513000e+04 1.513000e+04 0.00 NULL
2020 Department Of Probation Supervising Computer Service Technician 78604.00000 7.860400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.860400e+04 7.860400e+04 0.00 NULL
2020 Department Of Probation Supervising Probation Officer 76343.44920 1.427622e+07 858341.33 4.590061e+03 1467.660 15058.00 187 1.467660e+03 274452.42 1.513457e+07 1.455068e+07 583888.91 NULL
2020 Department Of Probation Supervisor Ii Social Work 73722.00000 7.372200e+04 1203.66 1.203660e+03 1203.660 24.00 1 1.203660e+03 1203.66 7.492566e+04 7.492566e+04 0.00 NULL
2020 Department Of Sanitation *Attorney At Law 104838.50000 4.193540e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.193540e+05 4.193540e+05 0.00 NULL
2020 Department Of Sanitation *Custodial Assistant 37987.00000 3.798700e+04 6.41 6.410000e+00 6.410 0.50 1 6.410000e+00 6.41 3.799341e+04 3.799341e+04 0.00 NULL
2020 Department Of Sanitation Accountant 63860.75000 5.108860e+05 249.40 3.117500e+01 0.000 5.25 8 0.000000e+00 0.00 5.111354e+05 5.108860e+05 249.40 NULL
2020 Department Of Sanitation Adm Manager-Non-Mgrl 81077.41379 2.351245e+06 109424.08 3.773244e+03 0.000 2091.75 29 0.000000e+00 0.00 2.460669e+06 2.351245e+06 109424.08 NULL
2020 Department Of Sanitation Admin Community Relations Specialist 103297.20000 5.164860e+05 23782.30 4.756460e+03 71.310 371.00 5 7.131000e+01 356.55 5.402683e+05 5.168425e+05 23425.75 NULL
2020 Department Of Sanitation Administrative Accountant 127653.00000 1.276530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.276530e+05 1.276530e+05 0.00 NULL
2020 Department Of Sanitation Administrative Architect 120786.00000 2.415720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.415720e+05 2.415720e+05 0.00 NULL
2020 Department Of Sanitation Administrative Business Promotion Coordinator 138609.75000 5.544390e+05 10590.95 2.647738e+03 0.000 182.50 4 0.000000e+00 0.00 5.650299e+05 5.544390e+05 10590.95 NULL
2020 Department Of Sanitation Administrative City Planner 125575.40000 6.278770e+05 1626.48 3.252960e+02 0.000 29.00 5 0.000000e+00 0.00 6.295035e+05 6.278770e+05 1626.48 NULL
2020 Department Of Sanitation Administrative Construction Project Manager 144781.20000 7.239060e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.239060e+05 7.239060e+05 0.00 NULL
2020 Department Of Sanitation Administrative Engineer 148318.18182 1.631500e+06 1848.72 1.680655e+02 0.000 22.50 11 0.000000e+00 0.00 1.633349e+06 1.631500e+06 1848.72 NULL
2020 Department Of Sanitation Administrative Management Auditor 96682.00000 9.668200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.668200e+04 9.668200e+04 0.00 NULL
2020 Department Of Sanitation Administrative Manager 205610.00000 2.056100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.056100e+05 2.056100e+05 0.00 NULL
2020 Department Of Sanitation Administrative Procurement Analyst 136986.00000 1.369860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.369860e+05 1.369860e+05 0.00 NULL
2020 Department Of Sanitation Administrative Procurement Analyst-Non-Mgrl 88552.41667 1.062629e+06 31651.79 2.637649e+03 1916.220 645.75 12 1.916220e+03 22994.64 1.094281e+06 1.085624e+06 8657.15 NULL
2020 Department Of Sanitation Administrative Project Manager 125258.21053 2.379906e+06 9483.42 4.991274e+02 0.000 149.50 19 0.000000e+00 0.00 2.389389e+06 2.379906e+06 9483.42 NULL
2020 Department Of Sanitation Administrative Public Information Specialist 142626.25000 5.705050e+05 237.37 5.934250e+01 0.000 0.00 4 0.000000e+00 0.00 5.707424e+05 5.705050e+05 237.37 NULL
2020 Department Of Sanitation Administrative Sanitation Enforcement Agent 98266.00000 9.826600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.826600e+04 9.826600e+04 0.00 NULL
2020 Department Of Sanitation Administrative Staff Analyst 107455.50240 5.157864e+06 154934.30 3.227798e+03 0.000 2313.75 48 0.000000e+00 0.00 5.312798e+06 5.157864e+06 154934.30 NULL
2020 Department Of Sanitation Administrative Supervisor Of Building Maintenance 152501.00000 4.575030e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.575030e+05 4.575030e+05 0.00 NULL
2020 Department Of Sanitation Agency Attorney 104833.41667 1.258001e+06 7153.01 5.960842e+02 0.000 82.25 12 0.000000e+00 0.00 1.265154e+06 1.258001e+06 7153.01 NULL
2020 Department Of Sanitation Agency Chief Contracting Officer 164006.00000 1.640060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.640060e+05 1.640060e+05 0.00 NULL
2020 Department Of Sanitation Architect 92640.00000 9.264000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.264000e+04 9.264000e+04 0.00 NULL
2020 Department Of Sanitation Assistant Architect 65640.00000 6.564000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.564000e+04 6.564000e+04 0.00 NULL
2020 Department Of Sanitation Assistant Civil Engineer 70232.50000 2.809300e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.809300e+05 2.809300e+05 0.00 NULL
2020 Department Of Sanitation Assistant Electrical Engineer 76265.00000 2.287950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.287950e+05 2.287950e+05 0.00 NULL
2020 Department Of Sanitation Assistant Mechanical Engineer 71050.00000 7.105000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.105000e+04 7.105000e+04 0.00 NULL
2020 Department Of Sanitation Associate Fingerprint Technician 53419.50000 1.068390e+05 6056.08 3.028040e+03 3028.040 169.00 2 3.028040e+03 6056.08 1.128951e+05 1.128951e+05 0.00 NULL
2020 Department Of Sanitation Associate Fraud Investigator 87909.00000 8.790900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.790900e+04 8.790900e+04 0.00 NULL
2020 Department Of Sanitation Associate Human Rights Specialist 103482.00000 1.034820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.034820e+05 1.034820e+05 0.00 NULL
2020 Department Of Sanitation Associate Project Manager 87683.97000 5.261038e+05 259.82 4.330333e+01 0.000 5.50 6 0.000000e+00 0.00 5.263636e+05 5.261038e+05 259.82 NULL
2020 Department Of Sanitation Associate Public Records Officer 73027.00000 7.302700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.302700e+04 7.302700e+04 0.00 NULL
2020 Department Of Sanitation Associate Sanitation Enforcement Agent 45768.88679 2.425751e+06 114140.61 2.153596e+03 1147.140 3391.25 53 1.147140e+03 60798.42 2.539892e+06 2.486549e+06 53342.19 NULL
2020 Department Of Sanitation Associate Staff Analyst 81227.44828 2.355596e+06 26381.31 9.097003e+02 65.140 553.75 29 6.514000e+01 1889.06 2.381977e+06 2.357485e+06 24492.25 NULL
2020 Department Of Sanitation Auto Machinist NA NA 156988.00 1.207600e+04 8134.270 2260.00 13 8.134270e+03 105745.51 NA NA NA NULL
2020 Department Of Sanitation Auto Mechanic NA NA 5557184.10 8.891495e+03 7376.370 80007.50 625 7.376370e+03 4610231.25 NA NA NA NULL
2020 Department Of Sanitation Automotive Service Worker 45882.44444 8.258840e+05 64311.37 3.572854e+03 2585.595 1958.00 18 2.585595e+03 46540.71 8.901954e+05 8.724247e+05 17770.66 NULL
2020 Department Of Sanitation Blacksmith NA NA 4631.04 4.631040e+03 4631.040 64.00 1 4.631040e+03 4631.04 NA NA NA NULL
2020 Department Of Sanitation Boiler Maker NA NA 2677.32 2.677320e+03 2677.320 37.00 1 2.677320e+03 2677.32 NA NA NA NULL
2020 Department Of Sanitation Bookkeeper 50567.40000 5.056740e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.056740e+05 5.056740e+05 0.00 NULL
2020 Department Of Sanitation Carpenter NA NA 134327.89 1.221163e+04 12315.740 1676.00 11 1.221163e+04 134327.89 NA NA NA NULL
2020 Department Of Sanitation Carriage Upholsterer NA NA 2240.82 1.120410e+03 1120.410 40.00 2 1.120410e+03 2240.82 NA NA NA NULL
2020 Department Of Sanitation Case Mgmt Nurse 85619.00000 8.561900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.561900e+04 8.561900e+04 0.00 NULL
2020 Department Of Sanitation Cement Mason NA NA 92499.32 1.321419e+04 3636.500 904.25 7 3.636500e+03 25455.50 NA NA NA NULL
2020 Department Of Sanitation Certified It Administrator 126873.14286 1.776224e+06 224707.41 1.605053e+04 14887.325 3892.75 14 1.488733e+04 208422.55 2.000931e+06 1.984647e+06 16284.86 NULL
2020 Department Of Sanitation Certified It Developer 124786.84848 4.117966e+06 94152.22 2.853098e+03 519.180 1995.25 33 5.191800e+02 17132.94 4.212118e+06 4.135099e+06 77019.28 NULL
2020 Department Of Sanitation Chaplain 29452.00000 1.178080e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.178080e+05 1.178080e+05 0.00 NULL
2020 Department Of Sanitation City Attendant 36971.40984 2.255256e+06 136544.18 2.238429e+03 437.200 5093.25 61 4.372000e+02 26669.20 2.391800e+06 2.281925e+06 109874.98 NULL
2020 Department Of Sanitation City Clinician 143802.62000 1.438026e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.438026e+05 1.438026e+05 0.00 NULL
2020 Department Of Sanitation City Custodial Assistant 47967.00000 9.593400e+04 12227.79 6.113895e+03 6113.895 346.00 2 6.113895e+03 12227.79 1.081618e+05 1.081618e+05 0.00 NULL
2020 Department Of Sanitation City Deputy Medical Director 179040.00000 1.790400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.790400e+05 1.790400e+05 0.00 NULL
2020 Department Of Sanitation City Laborer NA NA 89543.27 6.395948e+03 5115.340 1553.50 14 5.115340e+03 71614.76 NA NA NA NULL
2020 Department Of Sanitation City Medical Specialist 58158.81611 6.397470e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 6.397470e+05 6.397470e+05 0.00 NULL
2020 Department Of Sanitation City Planner 94884.66667 2.846540e+05 26.94 8.980000e+00 0.000 0.50 3 0.000000e+00 0.00 2.846809e+05 2.846540e+05 26.94 NULL
2020 Department Of Sanitation City Research Scientist 94640.40000 4.732020e+05 5314.23 1.062846e+03 652.730 84.75 5 6.527300e+02 3263.65 4.785162e+05 4.764657e+05 2050.58 NULL
2020 Department Of Sanitation Civil Engineer 108877.50000 2.177550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.177550e+05 2.177550e+05 0.00 NULL
2020 Department Of Sanitation Clerical Aide 38905.25000 1.556210e+05 5552.00 1.388000e+03 504.750 208.00 4 5.047500e+02 2019.00 1.611730e+05 1.576400e+05 3533.00 NULL
2020 Department Of Sanitation Clerical Associate 43552.74914 1.219477e+07 863716.20 3.084701e+03 1093.255 27865.25 280 1.093255e+03 306111.40 1.305849e+07 1.250088e+07 557604.80 NULL
2020 Department Of Sanitation College Aide 10744.49807 6.983924e+05 0.00 0.000000e+00 0.000 0.00 65 0.000000e+00 0.00 6.983924e+05 6.983924e+05 0.00 NULL
2020 Department Of Sanitation College Aide - Assignment Levels Ii And Iii 11774.40168 5.887201e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.887201e+04 5.887201e+04 0.00 NULL
2020 Department Of Sanitation Commissioner Of Sanitation 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2020 Department Of Sanitation Community Assistant 38314.20000 3.831420e+05 14213.39 1.421339e+03 55.750 481.00 10 5.575000e+01 557.50 3.973554e+05 3.836995e+05 13655.89 NULL
2020 Department Of Sanitation Community Associate 46614.31034 1.351815e+06 16004.31 5.518728e+02 0.000 445.00 29 0.000000e+00 0.00 1.367819e+06 1.351815e+06 16004.31 NULL
2020 Department Of Sanitation Community Coordinator 67309.81538 4.375138e+06 180523.95 2.777292e+03 1268.750 3848.50 65 1.268750e+03 82468.75 4.555662e+06 4.457607e+06 98055.20 NULL
2020 Department Of Sanitation Computer Aide-Non-Spvr 77256.00000 7.725600e+04 44.02 4.402000e+01 44.020 1.00 1 4.402000e+01 44.02 7.730002e+04 7.730002e+04 0.00 NULL
2020 Department Of Sanitation Computer Associate 76409.09524 1.604591e+06 26767.51 1.274643e+03 149.030 434.00 21 1.490300e+02 3129.63 1.631359e+06 1.607721e+06 23637.88 NULL
2020 Department Of Sanitation Computer Operations Manager 113300.00000 1.133000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133000e+05 1.133000e+05 0.00 NULL
2020 Department Of Sanitation Computer Specialist 104075.33333 3.746712e+06 174281.03 4.841140e+03 1478.565 2556.25 36 1.478565e+03 53228.34 3.920993e+06 3.799940e+06 121052.69 NULL
2020 Department Of Sanitation Computer Systems Manager 142344.59016 8.683020e+06 1991.01 3.263951e+01 0.000 24.75 61 0.000000e+00 0.00 8.685011e+06 8.683020e+06 1991.01 NULL
2020 Department Of Sanitation Confidential Assistant To The Commissioner 139050.00000 1.390500e+05 76.11 7.611000e+01 76.110 1.00 1 7.611000e+01 76.11 1.391261e+05 1.391261e+05 0.00 NULL
2020 Department Of Sanitation Construction Laborer NA NA 54463.31 6.051479e+03 4046.180 822.75 9 4.046180e+03 36415.62 NA NA NA NULL
2020 Department Of Sanitation Construction Project Manager 89284.36364 9.821280e+05 691.28 6.284364e+01 0.000 12.50 11 0.000000e+00 0.00 9.828193e+05 9.821280e+05 691.28 NULL
2020 Department Of Sanitation Counselor 78215.33333 2.346460e+05 2014.18 6.713933e+02 0.000 36.00 3 0.000000e+00 0.00 2.366602e+05 2.346460e+05 2014.18 NULL
2020 Department Of Sanitation Custodian 39137.00000 3.913700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.913700e+04 3.913700e+04 0.00 NULL
2020 Department Of Sanitation Dep Dir Mtr Eq Mntc 156594.33333 4.697830e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.697830e+05 4.697830e+05 0.00 NULL
2020 Department Of Sanitation Deputy Administrator 124654.00000 1.246540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.246540e+05 1.246540e+05 0.00 NULL
2020 Department Of Sanitation Deputy Commissioner 230543.00000 6.916290e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.916290e+05 6.916290e+05 0.00 NULL
2020 Department Of Sanitation Deputy Director Of Motor Equipment Maintenance 155252.40000 7.762620e+05 11944.79 2.388958e+03 439.450 110.00 5 4.394500e+02 2197.25 7.882068e+05 7.784592e+05 9747.54 NULL
2020 Department Of Sanitation Director Of Motor Equipment Maintenance 220388.00000 2.203880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.203880e+05 2.203880e+05 0.00 NULL
2020 Department Of Sanitation Director Of Motor Equipment Maintenance-Nm 179680.50000 3.593610e+05 824.11 4.120550e+02 412.055 8.00 2 4.120550e+02 824.11 3.601851e+05 3.601851e+05 0.00 NULL
2020 Department Of Sanitation Economist 78256.00000 7.825600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.825600e+04 7.825600e+04 0.00 NULL
2020 Department Of Sanitation Electrician NA NA 734986.51 1.020815e+04 7372.750 9511.75 72 7.372750e+03 530838.00 NA NA NA NULL
2020 Department Of Sanitation Estimator 65640.00000 6.564000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.564000e+04 6.564000e+04 0.00 NULL
2020 Department Of Sanitation Executive Agency Counsel 154937.00000 4.648110e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.648110e+05 4.648110e+05 0.00 NULL
2020 Department Of Sanitation Executive Assistant To The Commissioner 102000.00000 1.020000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020000e+05 1.020000e+05 0.00 NULL
2020 Department Of Sanitation General Superintendent 137299.04013 4.105241e+07 6265434.47 2.095463e+04 14937.070 66247.36 299 1.493707e+04 4466183.93 4.731785e+07 4.551860e+07 1799250.54 NULL
2020 Department Of Sanitation Geologist 90236.00000 9.023600e+04 17402.50 1.740250e+04 17402.500 235.00 1 1.740250e+04 17402.50 1.076385e+05 1.076385e+05 0.00 NULL
2020 Department Of Sanitation Graphic Artist 78740.80000 3.937040e+05 5353.84 1.070768e+03 513.140 94.50 5 5.131400e+02 2565.70 3.990578e+05 3.962697e+05 2788.14 NULL
2020 Department Of Sanitation Health Services Manager 186917.00000 1.869170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.869170e+05 1.869170e+05 0.00 NULL
2020 Department Of Sanitation High Pressure Plant Tender NA NA 86126.25 1.076578e+04 14739.375 1640.50 8 1.076578e+04 86126.25 NA NA NA NULL
2020 Department Of Sanitation Incinerator Facility Manager 112002.00000 1.120020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.120020e+05 1.120020e+05 0.00 NULL
2020 Department Of Sanitation Investigator 58096.90909 6.390660e+05 4800.73 4.364300e+02 0.000 141.75 11 0.000000e+00 0.00 6.438667e+05 6.390660e+05 4800.73 NULL
2020 Department Of Sanitation Job Training Participant 6350.17177 5.759606e+06 0.00 0.000000e+00 0.000 0.00 907 0.000000e+00 0.00 5.759606e+06 5.759606e+06 0.00 NULL
2020 Department Of Sanitation Laboratory Associate 45490.66667 1.364720e+05 750.03 2.500100e+02 0.000 25.00 3 0.000000e+00 0.00 1.372220e+05 1.364720e+05 750.03 NULL
2020 Department Of Sanitation Laboratory Microbiologist 57130.00000 5.713000e+04 999.56 9.995600e+02 999.560 23.75 1 9.995600e+02 999.56 5.812956e+04 5.812956e+04 0.00 NULL
2020 Department Of Sanitation Letterer And Sign Painter NA NA 1860.78 9.303900e+02 930.390 37.50 2 9.303900e+02 1860.78 NA NA NA NULL
2020 Department Of Sanitation Machinist NA NA 215925.33 7.445701e+03 3928.130 3195.00 29 3.928130e+03 113915.77 NA NA NA NULL
2020 Department Of Sanitation Maintenance Worker NA NA 204912.64 6.209474e+03 5247.690 4345.50 33 5.247690e+03 173173.77 NA NA NA NULL
2020 Department Of Sanitation Management Auditor 80099.00000 4.004950e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.004950e+05 4.004950e+05 0.00 NULL
2020 Department Of Sanitation Mechanical Engineer 115389.00000 1.153890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.153890e+05 1.153890e+05 0.00 NULL
2020 Department Of Sanitation Medical Director 193741.00000 1.937410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.937410e+05 1.937410e+05 0.00 NULL
2020 Department Of Sanitation Medical Record Librarian 57255.20000 2.862760e+05 15260.16 3.052032e+03 0.000 319.50 5 0.000000e+00 0.00 3.015362e+05 2.862760e+05 15260.16 NULL
2020 Department Of Sanitation Metal Work Mechanic 84223.98246 4.800767e+06 314401.66 5.515819e+03 3001.050 5112.25 57 3.001050e+03 171059.85 5.115169e+06 4.971827e+06 143341.81 NULL
2020 Department Of Sanitation Motor Vehicle Operator 50008.00000 2.000320e+05 20162.26 5.040565e+03 1513.825 531.00 4 1.513825e+03 6055.30 2.201943e+05 2.060873e+05 14106.96 NULL
2020 Department Of Sanitation Office Machine Aide 40133.00000 8.026600e+04 381.95 1.909750e+02 190.975 12.00 2 1.909750e+02 381.95 8.064795e+04 8.064795e+04 0.00 NULL
2020 Department Of Sanitation Oiler NA NA 79421.55 1.588431e+04 12561.110 804.00 5 1.256111e+04 62805.55 NA NA NA NULL
2020 Department Of Sanitation Painter NA NA 35605.11 5.086444e+03 7490.880 568.00 7 5.086444e+03 35605.11 NA NA NA NULL
2020 Department Of Sanitation Plumber NA NA 169931.07 1.213793e+04 11838.160 1612.00 14 1.183816e+04 165734.24 NA NA NA NULL
2020 Department Of Sanitation Principal Administrative Associate - Non Supvr 60043.20312 3.842765e+06 280723.12 4.386299e+03 772.305 6516.25 64 7.723050e+02 49427.52 4.123488e+06 3.892193e+06 231295.60 NULL
2020 Department Of Sanitation Procurement Analyst 61296.00000 1.225920e+06 41945.89 2.097294e+03 716.585 1006.00 20 7.165850e+02 14331.70 1.267866e+06 1.240252e+06 27614.19 NULL
2020 Department Of Sanitation Project Manager 77622.00000 2.328660e+05 11852.97 3.950990e+03 0.000 211.25 3 0.000000e+00 0.00 2.447190e+05 2.328660e+05 11852.97 NULL
2020 Department Of Sanitation Public Records Aide 34224.00000 3.422400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.422400e+04 3.422400e+04 0.00 NULL
2020 Department Of Sanitation Research Assistant 62115.50000 1.242310e+05 432.60 2.163000e+02 216.300 8.00 2 2.163000e+02 432.60 1.246636e+05 1.246636e+05 0.00 NULL
2020 Department Of Sanitation Rubber Tire Repairer NA NA 30964.29 2.814935e+03 707.400 644.50 11 7.074000e+02 7781.40 NA NA NA NULL
2020 Department Of Sanitation Sanitation Compliance Agent 39618.28571 2.773280e+05 244.74 3.496286e+01 0.000 9.00 7 0.000000e+00 0.00 2.775727e+05 2.773280e+05 244.74 NULL
2020 Department Of Sanitation Sanitation Enforcement Agent 37904.34759 7.088113e+06 222494.16 1.189808e+03 424.700 7622.50 187 4.247000e+02 79418.90 7.310607e+06 7.167532e+06 143075.26 NULL
2020 Department Of Sanitation Sanitation Worker 68759.00380 4.710679e+08 102083903.85 1.490058e+04 13738.210 1876366.71 6851 1.373821e+04 94120476.71 5.731518e+08 5.651884e+08 7963427.14 NULL
2020 Department Of Sanitation Secretary 53232.16667 3.193930e+05 5369.97 8.949950e+02 194.285 150.00 6 1.942850e+02 1165.71 3.247630e+05 3.205587e+05 4204.26 NULL
2020 Department Of Sanitation Secretary To The Commissioner 89474.00000 8.947400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.947400e+04 8.947400e+04 0.00 NULL
2020 Department Of Sanitation Senior Automotive Specialist 104907.00000 1.049070e+05 10670.93 1.067093e+04 10670.930 162.00 1 1.067093e+04 10670.93 1.155779e+05 1.155779e+05 0.00 NULL
2020 Department Of Sanitation Senior Estimator 95341.00000 2.860230e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.860230e+05 2.860230e+05 0.00 NULL
2020 Department Of Sanitation Senior Photographer 70301.00000 7.030100e+04 2737.09 2.737090e+03 2737.090 63.00 1 2.737090e+03 2737.09 7.303809e+04 7.303809e+04 0.00 NULL
2020 Department Of Sanitation Senior Stationary Engineer NA NA 85155.28 2.128882e+04 21013.080 693.50 4 2.101308e+04 84052.32 NA NA NA NULL
2020 Department Of Sanitation Sheet Metal Worker NA NA 236398.67 2.363987e+04 21148.555 2044.75 10 2.114856e+04 211485.55 NA NA NA NULL
2020 Department Of Sanitation Special Investigator 136412.00000 1.364120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.364120e+05 1.364120e+05 0.00 NULL
2020 Department Of Sanitation Staff Analyst 64994.81250 1.039917e+06 8497.12 5.310700e+02 0.000 207.75 16 0.000000e+00 0.00 1.048414e+06 1.039917e+06 8497.12 NULL
2020 Department Of Sanitation Staff Nurse 89002.50000 5.340150e+05 6598.76 1.099793e+03 30.170 85.00 6 3.017000e+01 181.02 5.406138e+05 5.341960e+05 6417.74 NULL
2020 Department Of Sanitation Stationary Engineer NA NA 618475.69 1.671556e+04 15456.400 5935.25 37 1.545640e+04 571886.80 NA NA NA NULL
2020 Department Of Sanitation Statistician 63393.00000 6.339300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.339300e+04 6.339300e+04 0.00 NULL
2020 Department Of Sanitation Steam Fitter NA NA 244145.00 2.219500e+04 27500.000 2219.75 11 2.219500e+04 244145.00 NA NA NA NULL
2020 Department Of Sanitation Stock Worker 40895.12500 3.271610e+05 36149.38 4.518672e+03 4339.110 1404.25 8 4.339110e+03 34712.88 3.633104e+05 3.618739e+05 1436.50 NULL
2020 Department Of Sanitation Summer College Intern 5300.71912 1.802245e+05 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 1.802245e+05 1.802245e+05 0.00 NULL
2020 Department Of Sanitation Summer Graduate Intern 8539.44417 2.049467e+05 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 2.049467e+05 2.049467e+05 0.00 NULL
2020 Department Of Sanitation Supervising Computer Service Technician 74377.50000 1.487550e+05 3863.07 1.931535e+03 1931.535 73.00 2 1.931535e+03 3863.07 1.526181e+05 1.526181e+05 0.00 NULL
2020 Department Of Sanitation Supervisor 96987.24309 1.053281e+08 29514546.49 2.717730e+04 24284.220 394652.50 1086 2.428422e+04 26372662.92 1.348427e+08 1.317008e+08 3141883.57 NULL
2020 Department Of Sanitation Supervisor Bricklayer NA NA 643.59 6.435900e+02 643.590 8.00 1 6.435900e+02 643.59 NA NA NA NULL
2020 Department Of Sanitation Supervisor Carpenter NA NA 48954.98 2.447749e+04 24477.490 557.50 2 2.447749e+04 48954.98 NA NA NA NULL
2020 Department Of Sanitation Supervisor Electrician NA NA 39582.85 9.895712e+03 9836.020 410.75 4 9.836020e+03 39344.08 NA NA NA NULL
2020 Department Of Sanitation Supervisor Of Ironwork 125151.00000 1.251510e+05 5154.70 5.154700e+03 5154.700 57.00 1 5.154700e+03 5154.70 1.303057e+05 1.303057e+05 0.00 NULL
2020 Department Of Sanitation Supervisor Of Mechanics 126632.41026 9.877328e+06 1318331.93 1.690169e+04 17871.285 14224.00 78 1.690169e+04 1318331.93 1.119566e+07 1.119566e+07 0.00 NULL
2020 Department Of Sanitation Supervisor Of Office Machine Operations 52680.50000 2.107220e+05 1845.90 4.614750e+02 10.630 59.00 4 1.063000e+01 42.52 2.125679e+05 2.107645e+05 1803.38 NULL
2020 Department Of Sanitation Supervisor Of Stock Workers 54639.60000 1.092792e+06 229844.85 1.149224e+04 9721.485 6219.50 20 9.721485e+03 194429.70 1.322637e+06 1.287222e+06 35415.15 NULL
2020 Department Of Sanitation Supervisor Painter NA NA 21903.93 1.095197e+04 10951.965 305.75 2 1.095197e+04 21903.93 NA NA NA NULL
2020 Department Of Sanitation Supervisor Plumber NA NA 23221.80 1.161090e+04 11610.900 210.00 2 1.161090e+04 23221.80 NA NA NA NULL
2020 Department Of Sanitation Supervisor Sheet Metal Worker NA NA 2183.46 2.183460e+03 2183.460 10.75 1 2.183460e+03 2183.46 NA NA NA NULL
2020 Department Of Sanitation Supervisor Steamfitter NA NA 15589.50 1.558950e+04 15589.500 136.75 1 1.558950e+04 15589.50 NA NA NA NULL
2020 Department Of Sanitation Telecommunications Associate 62923.00000 1.887690e+05 4815.53 1.605177e+03 0.000 113.75 3 0.000000e+00 0.00 1.935845e+05 1.887690e+05 4815.53 NULL
2020 Department Of Sanitation Thermostat Repairer NA NA 13498.85 6.749425e+03 6749.425 130.00 2 6.749425e+03 13498.85 NA NA NA NULL
2020 Department Of Sanitation Tractor Operator NA NA 15564.12 2.223446e+03 1285.810 98.50 7 1.285810e+03 9000.67 NA NA NA NULL
2020 Department Of Sanitation Welder NA NA 43097.50 1.077438e+04 13789.705 372.00 4 1.077438e+04 43097.50 NA NA NA NULL
2020 Department Of Transportation *Certified Database Administrator 121564.00000 1.215640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.215640e+05 1.215640e+05 0.00 NULL
2020 Department Of Transportation Accountant 65215.00000 1.565160e+06 12863.77 5.359904e+02 0.000 308.75 24 0.000000e+00 0.00 1.578024e+06 1.565160e+06 12863.77 NULL
2020 Department Of Transportation Adm Manager-Non-Mgrl 84017.47083 1.562725e+07 508628.52 2.734562e+03 13.360 9182.25 186 1.336000e+01 2484.96 1.613588e+07 1.562973e+07 506143.56 NULL
2020 Department Of Transportation Admin Community Relations Specialist 82353.46776 1.564716e+06 54308.70 2.858353e+03 934.740 1090.50 19 9.347400e+02 17760.06 1.619025e+06 1.582476e+06 36548.64 NULL
2020 Department Of Transportation Admin Construction Project Manager 129780.00000 1.297800e+05 213.10 2.131000e+02 213.100 3.00 1 2.131000e+02 213.10 1.299931e+05 1.299931e+05 0.00 NULL
2020 Department Of Transportation Admin Inspector 119985.87500 9.598870e+05 80654.35 1.008179e+04 6351.125 1017.00 8 6.351125e+03 50809.00 1.040541e+06 1.010696e+06 29845.35 NULL
2020 Department Of Transportation Administrative Accountant 138437.33333 4.153120e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.153120e+05 4.153120e+05 0.00 NULL
2020 Department Of Transportation Administrative Business Promotion Coordinator 113300.00000 1.133000e+05 1984.47 1.984470e+03 1984.470 25.75 1 1.984470e+03 1984.47 1.152845e+05 1.152845e+05 0.00 NULL
2020 Department Of Transportation Administrative City Planner 112569.01667 6.754141e+06 123038.09 2.050635e+03 0.000 1953.75 60 0.000000e+00 0.00 6.877179e+06 6.754141e+06 123038.09 NULL
2020 Department Of Transportation Administrative Community Relations Specialist 148635.66667 4.459070e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.459070e+05 4.459070e+05 0.00 NULL
2020 Department Of Transportation Administrative Contract Specialist 92796.50000 1.855930e+05 11214.31 5.607155e+03 5607.155 154.25 2 5.607155e+03 11214.31 1.968073e+05 1.968073e+05 0.00 NULL
2020 Department Of Transportation Administrative Director Of Marine Maintenance 164800.00000 1.648000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.648000e+05 1.648000e+05 0.00 NULL
2020 Department Of Transportation Administrative Engineer 132195.84892 1.837522e+07 474090.92 3.410726e+03 0.000 6571.25 139 0.000000e+00 0.00 1.884931e+07 1.837522e+07 474090.92 NULL
2020 Department Of Transportation Administrative Graphic Artist 127895.00000 1.278950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.278950e+05 1.278950e+05 0.00 NULL
2020 Department Of Transportation Administrative Inspector 148481.00000 2.969620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.969620e+05 2.969620e+05 0.00 NULL
2020 Department Of Transportation Administrative Investigator 94849.20000 4.742460e+05 18982.21 3.796442e+03 2988.610 396.75 5 2.988610e+03 14943.05 4.932282e+05 4.891890e+05 4039.16 NULL
2020 Department Of Transportation Administrative Labor Relations Analyst 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2020 Department Of Transportation Administrative Management Auditor 131131.40000 6.556570e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.556570e+05 6.556570e+05 0.00 NULL
2020 Department Of Transportation Administrative Manager 148740.00000 1.041180e+06 91.67 1.309571e+01 0.000 0.00 7 0.000000e+00 0.00 1.041272e+06 1.041180e+06 91.67 NULL
2020 Department Of Transportation Administrative Procurement Analyst 155765.00000 1.557650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.557650e+05 1.557650e+05 0.00 NULL
2020 Department Of Transportation Administrative Procurement Analyst-Non-Mgrl 88949.73529 3.024291e+06 54593.08 1.605679e+03 0.000 1097.25 34 0.000000e+00 0.00 3.078884e+06 3.024291e+06 54593.08 NULL
2020 Department Of Transportation Administrative Project Manager 124774.63366 1.260224e+07 616470.22 6.103666e+03 0.000 8946.25 101 0.000000e+00 0.00 1.321871e+07 1.260224e+07 616470.22 NULL
2020 Department Of Transportation Administrative Public Information Specialist 198734.00000 1.987340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.987340e+05 1.987340e+05 0.00 NULL
2020 Department Of Transportation Administrative Quality Assurance Specialist 87055.33333 7.834980e+05 80280.24 8.920027e+03 7982.110 1468.50 9 7.982110e+03 71838.99 8.637782e+05 8.553370e+05 8441.25 NULL
2020 Department Of Transportation Administrative Real Property Manager 198472.00000 1.984720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.984720e+05 1.984720e+05 0.00 NULL
2020 Department Of Transportation Administrative Staff Analyst 116122.56303 1.323797e+07 197407.01 1.731640e+03 0.000 3154.50 114 0.000000e+00 0.00 1.343538e+07 1.323797e+07 197407.01 NULL
2020 Department Of Transportation Administrative Superintendent Of Bridge Operations 130931.00000 1.309310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.309310e+05 1.309310e+05 0.00 NULL
2020 Department Of Transportation Administrative Superintendent Of Highway Operations 142997.54545 3.145946e+06 17066.22 7.757373e+02 0.000 214.75 22 0.000000e+00 0.00 3.163012e+06 3.145946e+06 17066.22 NULL
2020 Department Of Transportation Administrative Supervisor Of Building Maintenance 121116.00000 1.211160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.211160e+05 1.211160e+05 0.00 NULL
2020 Department Of Transportation Administrative Transportation Coordinator 139473.53846 3.626312e+06 32559.21 1.252277e+03 0.000 522.25 26 0.000000e+00 0.00 3.658871e+06 3.626312e+06 32559.21 NULL
2020 Department Of Transportation Agency Attorney 99125.66667 2.379016e+06 28.62 1.192500e+00 0.000 0.00 24 0.000000e+00 0.00 2.379045e+06 2.379016e+06 28.62 NULL
2020 Department Of Transportation Agency Attorney Interne 68802.00000 6.880200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.880200e+04 6.880200e+04 0.00 NULL
2020 Department Of Transportation Agency Chief Contracting Officer 194048.00000 1.940480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.940480e+05 1.940480e+05 0.00 NULL
2020 Department Of Transportation Apprentice Inspector 39191.17742 7.289559e+06 297138.21 1.597517e+03 273.180 9434.50 186 2.731800e+02 50811.48 7.586697e+06 7.340370e+06 246326.73 NULL
2020 Department Of Transportation Architect 102549.66667 3.076490e+05 373.55 1.245167e+02 0.000 8.75 3 0.000000e+00 0.00 3.080225e+05 3.076490e+05 373.55 NULL
2020 Department Of Transportation Architectural Intern 62260.00000 6.226000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.226000e+04 6.226000e+04 0.00 NULL
2020 Department Of Transportation Area Supervisor 110746.78788 7.309288e+06 2133888.37 3.233164e+04 33991.685 25694.75 66 3.233164e+04 2133888.37 9.443176e+06 9.443176e+06 0.00 NULL
2020 Department Of Transportation Asphalt Plant Manager 172323.00000 3.446460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.446460e+05 3.446460e+05 0.00 NULL
2020 Department Of Transportation Assistant Accountant 56517.00000 5.651700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.651700e+04 5.651700e+04 0.00 NULL
2020 Department Of Transportation Assistant Architect 63741.13000 1.274823e+05 7486.09 3.743045e+03 3743.045 172.75 2 3.743045e+03 7486.09 1.349684e+05 1.349684e+05 0.00 NULL
2020 Department Of Transportation Assistant Captain 63014.00000 7.561680e+05 429427.09 3.578559e+04 36917.640 7742.50 12 3.578559e+04 429427.09 1.185595e+06 1.185595e+06 0.00 NULL
2020 Department Of Transportation Assistant City Highway Repairer 41418.84279 2.725360e+07 2394898.42 3.639663e+03 2199.770 63072.51 658 2.199770e+03 1447448.66 2.964850e+07 2.870105e+07 947449.76 NULL
2020 Department Of Transportation Assistant Civil Engineer 74820.31852 1.010074e+07 494523.76 3.663139e+03 625.260 9821.00 135 6.252600e+02 84410.10 1.059527e+07 1.018515e+07 410113.66 NULL
2020 Department Of Transportation Assistant Commissioner 158152.00000 3.163040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.163040e+05 3.163040e+05 0.00 NULL
2020 Department Of Transportation Assistant Director 113300.00000 1.133000e+05 2025.17 2.025170e+03 2025.170 24.00 1 2.025170e+03 2025.17 1.153252e+05 1.153252e+05 0.00 NULL
2020 Department Of Transportation Assistant Electrical Engineer 71846.58824 2.442784e+06 211299.66 6.214696e+03 5640.890 4412.50 34 5.640890e+03 191790.26 2.654084e+06 2.634574e+06 19509.40 NULL
2020 Department Of Transportation Assistant Environmental Engineer 85646.00000 8.564600e+04 2340.73 2.340730e+03 2340.730 50.50 1 2.340730e+03 2340.73 8.798673e+04 8.798673e+04 0.00 NULL
2020 Department Of Transportation Assistant Highway Transportation Specialist 62663.66667 1.879910e+05 3038.52 1.012840e+03 14.270 65.50 3 1.427000e+01 42.81 1.910295e+05 1.880338e+05 2995.71 NULL
2020 Department Of Transportation Assistant Mechanical Engineer 75669.55556 6.810260e+05 48154.01 5.350446e+03 6.970 948.50 9 6.970000e+00 62.73 7.291800e+05 6.810887e+05 48091.28 NULL
2020 Department Of Transportation Assistant Printing Press Operator 67058.00000 1.341160e+05 158.67 7.933500e+01 79.335 4.50 2 7.933500e+01 158.67 1.342747e+05 1.342747e+05 0.00 NULL
2020 Department Of Transportation Assistant Transportation Specialist 61029.40476 2.563235e+06 123276.70 2.935160e+03 653.385 2901.25 42 6.533850e+02 27442.17 2.686512e+06 2.590677e+06 95834.53 NULL
2020 Department Of Transportation Assistant Urban Designer 70063.83333 4.203830e+05 3332.50 5.554167e+02 0.000 77.50 6 0.000000e+00 0.00 4.237155e+05 4.203830e+05 3332.50 NULL
2020 Department Of Transportation Associate Fraud Investigator 74685.00000 7.468500e+04 188.15 1.881500e+02 188.150 4.50 1 1.881500e+02 188.15 7.487315e+04 7.487315e+04 0.00 NULL
2020 Department Of Transportation Associate Inspector 74172.69091 4.079498e+06 679198.69 1.234907e+04 10736.600 11550.50 55 1.073660e+04 590513.00 4.758697e+06 4.670011e+06 88685.69 NULL
2020 Department Of Transportation Associate Investigator 76633.33333 2.299000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.299000e+05 2.299000e+05 0.00 NULL
2020 Department Of Transportation Associate Labor Relations Analyst 92700.00000 9.270000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.270000e+04 9.270000e+04 0.00 NULL
2020 Department Of Transportation Associate Operations Communications Specialist 66290.50000 1.325810e+05 27306.08 1.365304e+04 13653.040 509.75 2 1.365304e+04 27306.08 1.598871e+05 1.598871e+05 0.00 NULL
2020 Department Of Transportation Associate Project Manager 89240.70000 1.784814e+06 47317.53 2.365876e+03 0.000 852.50 20 0.000000e+00 0.00 1.832132e+06 1.784814e+06 47317.53 NULL
2020 Department Of Transportation Associate Quality Assurance Specialist 80450.00000 8.045000e+04 14990.70 1.499070e+04 14990.700 296.75 1 1.499070e+04 14990.70 9.544070e+04 9.544070e+04 0.00 NULL
2020 Department Of Transportation Associate Retirement Benefits Examiner 85766.00000 8.576600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.576600e+04 8.576600e+04 0.00 NULL
2020 Department Of Transportation Associate Staff Analyst 83985.59574 3.947323e+06 71001.01 1.510660e+03 0.000 1302.75 47 0.000000e+00 0.00 4.018324e+06 3.947323e+06 71001.01 NULL
2020 Department Of Transportation Associate Urban Designer 98434.20000 1.968684e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.968684e+05 1.968684e+05 0.00 NULL
2020 Department Of Transportation Auto Machinist NA NA 20130.97 2.013097e+04 20130.970 293.00 1 2.013097e+04 20130.97 NA NA NA NULL
2020 Department Of Transportation Auto Body Worker 53007.25000 2.120290e+05 4850.70 1.212675e+03 1131.180 130.25 4 1.131180e+03 4524.72 2.168797e+05 2.165537e+05 325.98 NULL
2020 Department Of Transportation Auto Mechanic NA NA 1235879.13 9.434192e+03 9227.390 18440.25 131 9.227390e+03 1208788.09 NA NA NA NULL
2020 Department Of Transportation Automotive Service Worker 42698.35714 5.977770e+05 47434.22 3.388159e+03 3588.275 1576.25 14 3.388159e+03 47434.22 6.452112e+05 6.452112e+05 0.00 NULL
2020 Department Of Transportation Automotive Specialist 85939.00000 8.593900e+04 14539.90 1.453990e+04 14539.900 263.00 1 1.453990e+04 14539.90 1.004789e+05 1.004789e+05 0.00 NULL
2020 Department Of Transportation Blacksmith NA NA 59100.03 1.477501e+04 15231.780 816.75 4 1.477501e+04 59100.03 NA NA NA NULL
2020 Department Of Transportation Blacksmith’s Helper NA NA 17581.95 8.790975e+03 8790.975 333.75 2 8.790975e+03 17581.95 NA NA NA NULL
2020 Department Of Transportation Boiler Maker NA NA 217888.02 3.112686e+04 34750.890 3014.50 7 3.112686e+04 217888.02 NA NA NA NULL
2020 Department Of Transportation Bookkeeper 49683.62500 3.974690e+05 9836.05 1.229506e+03 0.000 255.00 8 0.000000e+00 0.00 4.073050e+05 3.974690e+05 9836.05 NULL
2020 Department Of Transportation Borough Commissioner 168119.00000 8.405950e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.405950e+05 8.405950e+05 0.00 NULL
2020 Department Of Transportation Bricklayer NA NA 265249.88 2.947221e+04 31120.830 3580.50 9 2.947221e+04 265249.88 NA NA NA NULL
2020 Department Of Transportation Bridge Operator 50438.09091 4.438552e+06 807116.19 9.171775e+03 7689.125 20035.75 88 7.689125e+03 676643.00 5.245668e+06 5.115195e+06 130473.19 NULL
2020 Department Of Transportation Bridge Painter NA NA 153416.46 3.196176e+03 3737.625 1569.00 48 3.196176e+03 153416.46 NA NA NA NULL
2020 Department Of Transportation Bridge Repairer And Riveter NA NA 1011781.21 2.352980e+04 21845.430 15163.77 43 2.184543e+04 939353.49 NA NA NA NULL
2020 Department Of Transportation Captain 70926.00000 1.773150e+06 1116380.51 4.465522e+04 45709.880 17922.25 25 4.465522e+04 1116380.51 2.889531e+06 2.889531e+06 0.00 NULL
2020 Department Of Transportation Carpenter NA NA 432903.75 1.967744e+04 17878.170 5810.00 22 1.787817e+04 393319.74 NA NA NA NULL
2020 Department Of Transportation Cement Mason NA NA 1075344.24 3.360451e+04 41727.110 10396.00 32 3.360451e+04 1075344.24 NA NA NA NULL
2020 Department Of Transportation Certified It Administrator 121504.05556 2.187073e+06 395382.64 2.196570e+04 22038.155 4669.75 18 2.196570e+04 395382.64 2.582456e+06 2.582456e+06 0.00 NULL
2020 Department Of Transportation Certified It Developer 114529.71429 1.603416e+06 98247.11 7.017651e+03 2192.860 1344.75 14 2.192860e+03 30700.04 1.701663e+06 1.634116e+06 67547.07 NULL
2020 Department Of Transportation Chief Marine Engineer 68789.00000 1.719725e+06 1278396.00 5.113584e+04 55883.520 21137.50 25 5.113584e+04 1278396.00 2.998121e+06 2.998121e+06 0.00 NULL
2020 Department Of Transportation Chief Of Staff 187949.00000 1.879490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.879490e+05 1.879490e+05 0.00 NULL
2020 Department Of Transportation City Attendant 40809.16602 1.305893e+06 111809.92 3.494060e+03 1845.230 3684.75 32 1.845230e+03 59047.36 1.417703e+06 1.364941e+06 52762.56 NULL
2020 Department Of Transportation City Custodial Assistant 45152.76500 1.354583e+05 13878.78 4.626260e+03 4408.940 418.00 3 4.408940e+03 13226.82 1.493371e+05 1.486851e+05 651.96 NULL
2020 Department Of Transportation City Debris Remover 43082.14400 2.154107e+05 33686.05 6.737210e+03 8132.110 1052.00 5 6.737210e+03 33686.05 2.490968e+05 2.490968e+05 0.00 NULL
2020 Department Of Transportation City Laborer NA NA 436818.67 1.506271e+04 11518.050 7964.75 29 1.151805e+04 334023.45 NA NA NA NULL
2020 Department Of Transportation City Parking Equipment Service Worker 41591.90196 4.242374e+06 412337.66 4.042526e+03 3137.730 12678.50 102 3.137730e+03 320048.46 4.654712e+06 4.562422e+06 92289.20 NULL
2020 Department Of Transportation City Planner 83040.11250 6.643209e+06 239087.40 2.988593e+03 424.710 4436.50 80 4.247100e+02 33976.80 6.882296e+06 6.677186e+06 205110.60 NULL
2020 Department Of Transportation City Research Scientist 92846.46667 1.392697e+06 6999.74 4.666493e+02 0.000 144.25 15 0.000000e+00 0.00 1.399697e+06 1.392697e+06 6999.74 NULL
2020 Department Of Transportation City Tax Auditor 58860.33333 1.765810e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.765810e+05 1.765810e+05 0.00 NULL
2020 Department Of Transportation Civil Engineer 104723.52542 6.178688e+06 205919.82 3.490166e+03 412.440 3106.00 59 4.124400e+02 24333.96 6.384608e+06 6.203022e+06 181585.86 NULL
2020 Department Of Transportation Civil Engineering Intern 61788.10000 1.853643e+06 90598.71 3.019957e+03 344.215 2146.00 30 3.442150e+02 10326.45 1.944242e+06 1.863969e+06 80272.26 NULL
2020 Department Of Transportation Claim Specialist 51653.42500 1.033069e+05 2416.20 1.208100e+03 1208.100 80.00 2 1.208100e+03 2416.20 1.057231e+05 1.057231e+05 0.00 NULL
2020 Department Of Transportation Clerical Aide 41086.00000 4.108600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.108600e+04 4.108600e+04 0.00 NULL
2020 Department Of Transportation Clerical Associate 46554.07326 1.536284e+07 635455.05 1.925621e+03 420.330 19197.00 330 4.203300e+02 138708.90 1.599830e+07 1.550155e+07 496746.15 NULL
2020 Department Of Transportation Climber & Pruner 68612.80000 3.430640e+05 38722.76 7.744552e+03 5172.030 746.00 5 5.172030e+03 25860.15 3.817868e+05 3.689242e+05 12862.61 NULL
2020 Department Of Transportation College Aide 11966.77806 1.280445e+06 0.00 0.000000e+00 0.000 0.00 107 0.000000e+00 0.00 1.280445e+06 1.280445e+06 0.00 NULL
2020 Department Of Transportation College Aide - Assignment Levels Ii And Iii 14185.59061 4.823101e+05 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 4.823101e+05 4.823101e+05 0.00 NULL
2020 Department Of Transportation Commissioner Of Transportation 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2020 Department Of Transportation Community Assistant 39912.02017 8.780644e+05 60299.56 2.740889e+03 1579.150 2249.75 22 1.579150e+03 34741.30 9.383640e+05 9.128057e+05 25558.26 NULL
2020 Department Of Transportation Community Associate 50162.68888 1.856019e+06 51958.63 1.404287e+03 0.000 1379.75 37 0.000000e+00 0.00 1.907978e+06 1.856019e+06 51958.63 NULL
2020 Department Of Transportation Community Coordinator 69118.76728 7.672183e+06 278026.85 2.504746e+03 574.660 6132.75 111 5.746600e+02 63787.26 7.950210e+06 7.735970e+06 214239.59 NULL
2020 Department Of Transportation Community Service Aide 30701.40960 3.070141e+04 274.99 2.749900e+02 274.990 15.00 1 2.749900e+02 274.99 3.097640e+04 3.097640e+04 0.00 NULL
2020 Department Of Transportation Computer Aide-Non-Spvr 51344.00000 1.026880e+05 11544.74 5.772370e+03 5772.370 301.50 2 5.772370e+03 11544.74 1.142327e+05 1.142327e+05 0.00 NULL
2020 Department Of Transportation Computer Associate 77652.15238 1.630695e+06 235632.24 1.122058e+04 2234.520 4004.75 21 2.234520e+03 46924.92 1.866327e+06 1.677620e+06 188707.32 NULL
2020 Department Of Transportation Computer Specialist 107763.73913 2.478566e+06 79168.86 3.442124e+03 0.000 905.50 23 0.000000e+00 0.00 2.557735e+06 2.478566e+06 79168.86 NULL
2020 Department Of Transportation Computer Systems Manager 160579.25000 1.926951e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.926951e+06 1.926951e+06 0.00 NULL
2020 Department Of Transportation Confidential Strategy Planner 90119.25818 9.913118e+05 22991.52 2.090138e+03 1195.440 425.75 11 1.195440e+03 13149.84 1.014303e+06 1.004462e+06 9841.68 NULL
2020 Department Of Transportation Construction Project Manager 89156.59259 2.407228e+06 127212.13 4.711560e+03 5001.450 2088.75 27 4.711560e+03 127212.13 2.534440e+06 2.534440e+06 0.00 NULL
2020 Department Of Transportation Counsel 237401.00000 2.374010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.374010e+05 2.374010e+05 0.00 NULL
2020 Department Of Transportation Crane Operator Ampes NA NA 413057.22 6.884287e+04 69037.185 2849.75 6 6.884287e+04 413057.22 NA NA NA NULL
2020 Department Of Transportation Customer Information Representative Ma L 1549 52943.97083 6.882716e+05 47120.85 3.624681e+03 1398.260 1112.00 13 1.398260e+03 18177.38 7.353925e+05 7.064490e+05 28943.47 NULL
2020 Department Of Transportation Deckhand 56984.77818 1.567081e+07 5665581.08 2.060211e+04 19157.440 108777.48 275 1.915744e+04 5268296.00 2.133640e+07 2.093911e+07 397285.08 NULL
2020 Department Of Transportation Deputy Commissioner 217997.66667 6.539930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.539930e+05 6.539930e+05 0.00 NULL
2020 Department Of Transportation Deputy Director 148574.00000 2.971480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.971480e+05 2.971480e+05 0.00 NULL
2020 Department Of Transportation Director Of Public Relations 171878.00000 1.718780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.718780e+05 1.718780e+05 0.00 NULL
2020 Department Of Transportation Dockbuilder NA NA 200440.87 1.541853e+04 17560.090 2649.00 13 1.541853e+04 200440.87 NA NA NA NULL
2020 Department Of Transportation Economist 65608.55556 1.180954e+06 12575.12 6.986178e+02 0.000 301.75 18 0.000000e+00 0.00 1.193529e+06 1.180954e+06 12575.12 NULL
2020 Department Of Transportation Electrical Engineering Intern 62260.00000 3.113000e+05 3487.65 6.975300e+02 0.000 97.25 5 0.000000e+00 0.00 3.147877e+05 3.113000e+05 3487.65 NULL
2020 Department Of Transportation Electrician NA NA 2248736.20 2.162246e+04 17954.245 25466.50 104 1.795424e+04 1867241.48 NA NA NA NULL
2020 Department Of Transportation Electrician’s Helper NA NA 90805.72 3.026857e+04 26601.260 1602.50 3 2.660126e+04 79803.78 NA NA NA NULL
2020 Department Of Transportation Engineering Technician 58593.87500 4.687510e+05 29077.17 3.634646e+03 1664.550 756.00 8 1.664550e+03 13316.40 4.978282e+05 4.820674e+05 15760.77 NULL
2020 Department Of Transportation Executive Agency Counsel 160724.45455 1.767969e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.767969e+06 1.767969e+06 0.00 NULL
2020 Department Of Transportation Executive Program Specialist 158738.00000 4.762140e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.762140e+05 4.762140e+05 0.00 NULL
2020 Department Of Transportation Ferry Terminal Supervisor 79742.26667 1.196134e+06 391951.66 2.613011e+04 26894.790 6687.75 15 2.613011e+04 391951.66 1.588086e+06 1.588086e+06 0.00 NULL
2020 Department Of Transportation Gardener 59425.33333 1.782760e+05 22513.20 7.504400e+03 6977.440 535.50 3 6.977440e+03 20932.32 2.007892e+05 1.992083e+05 1580.88 NULL
2020 Department Of Transportation Gasoline Roller Engineer-L15 NA NA 2070609.22 2.112867e+04 19512.100 19326.50 98 1.951210e+04 1912185.80 NA NA NA NULL
2020 Department Of Transportation Graphic Artist 71078.33333 2.132350e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.132350e+05 2.132350e+05 0.00 NULL
2020 Department Of Transportation High Pressure Plant Tender NA NA 299261.40 4.275163e+04 45753.750 5705.55 7 4.275163e+04 299261.40 NA NA NA NULL
2020 Department Of Transportation Highway Repairer NA NA 7004905.99 1.357540e+04 12024.535 99632.15 516 1.202453e+04 6204660.06 NA NA NA NULL
2020 Department Of Transportation Highway Transportation Specialist 66475.00000 2.659000e+05 434.97 1.087425e+02 52.845 11.00 4 5.284500e+01 211.38 2.663350e+05 2.661114e+05 223.59 NULL
2020 Department Of Transportation Highways And Sewers Inspector 64133.40566 6.798141e+06 795050.14 7.500473e+03 4463.395 15482.97 106 4.463395e+03 473119.87 7.593191e+06 7.271261e+06 321930.27 NULL
2020 Department Of Transportation Industrial Hygienist 65936.57143 4.615560e+05 16082.94 2.297563e+03 0.000 366.00 7 0.000000e+00 0.00 4.776389e+05 4.615560e+05 16082.94 NULL
2020 Department Of Transportation Inspector Construction 61533.00000 6.153300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.153300e+04 6.153300e+04 0.00 NULL
2020 Department Of Transportation Investigator 49996.46154 6.499540e+05 15713.58 1.208737e+03 373.170 456.75 13 3.731700e+02 4851.21 6.656676e+05 6.548052e+05 10862.37 NULL
2020 Department Of Transportation Investigator Empl Disc 80343.00000 8.034300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.034300e+04 8.034300e+04 0.00 NULL
2020 Department Of Transportation Landmarks Preservationist 80340.00000 8.034000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.034000e+04 8.034000e+04 0.00 NULL
2020 Department Of Transportation Letterer And Sign Painter NA NA 69763.37 6.976337e+03 9089.175 1420.00 10 6.976337e+03 69763.37 NA NA NA NULL
2020 Department Of Transportation Machinist NA NA 210501.71 1.913652e+04 23432.130 3130.00 11 1.913652e+04 210501.71 NA NA NA NULL
2020 Department Of Transportation Management Auditor 78606.68421 1.493527e+06 32879.87 1.730519e+03 170.530 669.50 19 1.705300e+02 3240.07 1.526407e+06 1.496767e+06 29639.80 NULL
2020 Department Of Transportation Marine Electronics Technician 104282.50000 4.171300e+05 18881.33 4.720333e+03 4560.070 241.75 4 4.560070e+03 18240.28 4.360113e+05 4.353703e+05 641.05 NULL
2020 Department Of Transportation Marine Engineer 64231.27273 1.413088e+06 913844.45 4.153838e+04 44640.380 15983.75 22 4.153838e+04 913844.45 2.326932e+06 2.326932e+06 0.00 NULL
2020 Department Of Transportation Marine Oiler 59726.93443 3.643343e+06 2457140.12 4.028099e+04 46857.700 43689.25 61 4.028099e+04 2457140.12 6.100483e+06 6.100483e+06 0.00 NULL
2020 Department Of Transportation Masons Helper NA NA 2867.77 2.867770e+03 2867.770 71.00 1 2.867770e+03 2867.77 NA NA NA NULL
2020 Department Of Transportation Mate 57875.00000 3.646125e+06 2167614.97 3.440659e+04 35646.450 42165.75 63 3.440659e+04 2167614.97 5.813740e+06 5.813740e+06 0.00 NULL
2020 Department Of Transportation Mechanical Engineer 105441.00000 2.108820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.108820e+05 2.108820e+05 0.00 NULL
2020 Department Of Transportation Mechanical Engineering Intern 62260.00000 6.226000e+04 1968.17 1.968170e+03 1968.170 40.75 1 1.968170e+03 1968.17 6.422817e+04 6.422817e+04 0.00 NULL
2020 Department Of Transportation Motor Grader Operator NA NA 534817.38 1.725217e+04 18430.780 5006.50 31 1.725217e+04 534817.38 NA NA NA NULL
2020 Department Of Transportation Motor Vehicle Operator 44944.50000 8.988900e+04 2827.24 1.413620e+03 1413.620 78.25 2 1.413620e+03 2827.24 9.271624e+04 9.271624e+04 0.00 NULL
2020 Department Of Transportation New York City Public Service Fellow 45290.00000 2.717400e+05 7167.42 1.194570e+03 0.000 224.50 6 0.000000e+00 0.00 2.789074e+05 2.717400e+05 7167.42 NULL
2020 Department Of Transportation Office Machine Aide 37205.66667 4.464680e+05 420.79 3.506583e+01 0.000 22.00 12 0.000000e+00 0.00 4.468888e+05 4.464680e+05 420.79 NULL
2020 Department Of Transportation Oiler NA NA 588910.04 3.099527e+04 30024.620 6294.25 19 3.002462e+04 570467.78 NA NA NA NULL
2020 Department Of Transportation Operations Communications Specialist 50023.62500 8.003780e+05 62215.37 3.888461e+03 2743.815 1662.75 16 2.743815e+03 43901.04 8.625934e+05 8.442790e+05 18314.33 NULL
2020 Department Of Transportation Painter NA NA 60836.29 1.013938e+04 7020.745 970.50 6 7.020745e+03 42124.47 NA NA NA NULL
2020 Department Of Transportation Paralegal Aide 46465.00000 9.293000e+04 1955.05 9.775250e+02 977.525 65.50 2 9.775250e+02 1955.05 9.488505e+04 9.488505e+04 0.00 NULL
2020 Department Of Transportation Plumber NA NA 359843.09 3.598431e+04 36345.925 3409.75 10 3.598431e+04 359843.09 NA NA NA NULL
2020 Department Of Transportation Principal Administrative Associate - Non Supvr 61988.67638 9.236313e+06 320489.28 2.150935e+03 24.920 7293.25 149 2.492000e+01 3713.08 9.556802e+06 9.240026e+06 316776.20 NULL
2020 Department Of Transportation Procurement Analyst 62952.92740 1.573823e+06 71422.16 2.856886e+03 0.000 1783.50 25 0.000000e+00 0.00 1.645245e+06 1.573823e+06 71422.16 NULL
2020 Department Of Transportation Project Manager 73079.72727 8.038770e+05 72108.86 6.555351e+03 2746.670 1509.00 11 2.746670e+03 30213.37 8.759859e+05 8.340904e+05 41895.49 NULL
2020 Department Of Transportation Public Records Aide 42919.00143 3.004330e+05 445.90 6.370000e+01 0.000 17.50 7 0.000000e+00 0.00 3.008789e+05 3.004330e+05 445.90 NULL
2020 Department Of Transportation Public Records Officer 50706.00000 5.070600e+04 3292.33 3.292330e+03 3292.330 116.00 1 3.292330e+03 3292.33 5.399833e+04 5.399833e+04 0.00 NULL
2020 Department Of Transportation Quality Assurance Specialist 56481.30273 3.388878e+05 86936.32 1.448939e+04 15111.835 2421.50 6 1.448939e+04 86936.32 4.258241e+05 4.258241e+05 0.00 NULL
2020 Department Of Transportation Radio Repair Mechanic NA NA 45348.04 9.069608e+03 10963.690 594.13 5 9.069608e+03 45348.04 NA NA NA NULL
2020 Department Of Transportation Research Assistant 54595.17854 6.551421e+05 8935.94 7.446617e+02 0.000 263.25 12 0.000000e+00 0.00 6.640781e+05 6.551421e+05 8935.94 NULL
2020 Department Of Transportation Rigger NA NA 215341.90 3.589032e+04 36016.265 2786.50 6 3.589032e+04 215341.90 NA NA NA NULL
2020 Department Of Transportation Roofer NA NA 1506.46 1.506460e+03 1506.460 28.00 1 1.506460e+03 1506.46 NA NA NA NULL
2020 Department Of Transportation Rubber Tire Repairer NA NA 42067.30 6.009614e+03 7906.560 918.75 7 6.009614e+03 42067.30 NA NA NA NULL
2020 Department Of Transportation Secretary 46842.59327 6.557963e+05 23313.86 1.665276e+03 0.000 697.50 14 0.000000e+00 0.00 6.791102e+05 6.557963e+05 23313.86 NULL
2020 Department Of Transportation Secretary To The Deputy Commissioner 64576.00000 6.457600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.457600e+04 6.457600e+04 0.00 NULL
2020 Department Of Transportation Senior Photographer 76910.00000 7.691000e+04 3.70 3.700000e+00 3.700 0.00 1 3.700000e+00 3.70 7.691370e+04 7.691370e+04 0.00 NULL
2020 Department Of Transportation Senior Service Inspector 53525.00000 5.352500e+04 7037.12 7.037120e+03 7037.120 175.50 1 7.037120e+03 7037.12 6.056212e+04 6.056212e+04 0.00 NULL
2020 Department Of Transportation Service Inspector 36432.40000 1.821620e+05 4338.57 8.677140e+02 860.000 157.00 5 8.600000e+02 4300.00 1.865006e+05 1.864620e+05 38.57 NULL
2020 Department Of Transportation Sheet Metal Worker NA NA 65954.26 2.198475e+04 15599.160 564.00 3 1.559916e+04 46797.48 NA NA NA NULL
2020 Department Of Transportation Ship Carpenter NA NA 183947.75 3.065796e+04 33592.130 2343.75 6 3.065796e+04 183947.75 NA NA NA NULL
2020 Department Of Transportation Space Analyst 83430.00000 8.343000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.343000e+04 8.343000e+04 0.00 NULL
2020 Department Of Transportation Staff Analyst 63922.78698 2.748680e+06 103035.85 2.396183e+03 47.280 2394.63 43 4.728000e+01 2033.04 2.851716e+06 2.750713e+06 101002.81 NULL
2020 Department Of Transportation Staff Analyst Trainee 43501.42857 3.045100e+05 3794.55 5.420786e+02 0.000 134.50 7 0.000000e+00 0.00 3.083045e+05 3.045100e+05 3794.55 NULL
2020 Department Of Transportation Stationary Engineer NA NA 87722.67 2.924089e+04 29605.450 893.25 3 2.924089e+04 87722.67 NA NA NA NULL
2020 Department Of Transportation Steam Fitter NA NA 275117.36 1.834116e+04 17655.000 2504.25 15 1.765500e+04 264825.00 NA NA NA NULL
2020 Department Of Transportation Stock Worker 40871.63158 7.765610e+05 77463.61 4.077032e+03 2675.450 2620.50 19 2.675450e+03 50833.55 8.540246e+05 8.273946e+05 26630.06 NULL
2020 Department Of Transportation Strategic Initiative Specialist 121590.16667 1.459082e+06 12396.92 1.033077e+03 0.000 141.25 12 0.000000e+00 0.00 1.471479e+06 1.459082e+06 12396.92 NULL
2020 Department Of Transportation Summer College Intern 5073.52500 7.102935e+04 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 7.102935e+04 7.102935e+04 0.00 NULL
2020 Department Of Transportation Summer Graduate Intern 5187.16696 2.593583e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.593583e+04 2.593583e+04 0.00 NULL
2020 Department Of Transportation Supervising Special Officer 63401.75000 5.072140e+05 101499.93 1.268749e+04 14422.705 2224.50 8 1.268749e+04 101499.93 6.087139e+05 6.087139e+05 0.00 NULL
2020 Department Of Transportation Supervisor 78404.00000 7.840400e+04 5193.77 5.193770e+03 5193.770 87.25 1 5.193770e+03 5193.77 8.359777e+04 8.359777e+04 0.00 NULL
2020 Department Of Transportation Supervisor Bricklayer NA NA 245211.04 4.904221e+04 50385.100 2829.25 5 4.904221e+04 245211.04 NA NA NA NULL
2020 Department Of Transportation Supervisor Bridge Painter NA NA 52233.11 3.730936e+03 3557.970 479.75 14 3.557970e+03 49811.58 NA NA NA NULL
2020 Department Of Transportation Supervisor Bridge Repairer And Riveter NA NA 115973.30 2.899333e+04 29677.235 1692.50 4 2.899333e+04 115973.30 NA NA NA NULL
2020 Department Of Transportation Supervisor Carpenter NA NA 170436.30 4.260907e+04 38717.160 2223.75 4 3.871716e+04 154868.64 NA NA NA NULL
2020 Department Of Transportation Supervisor Dockbuilder NA NA 47514.70 4.751470e+04 47514.700 599.00 1 4.751470e+04 47514.70 NA NA NA NULL
2020 Department Of Transportation Supervisor Electrician NA NA 843442.25 4.016392e+04 46039.500 8846.00 21 4.016392e+04 843442.25 NA NA NA NULL
2020 Department Of Transportation Supervisor Highway Repairer NA NA 4338225.97 1.945393e+04 17360.030 51840.25 223 1.736003e+04 3871286.69 NA NA NA NULL
2020 Department Of Transportation Supervisor Of Electrical Installations & Maintenance 72717.08108 2.690532e+06 661979.46 1.789134e+04 14408.960 11907.78 37 1.440896e+04 533131.52 3.352511e+06 3.223664e+06 128847.94 NULL
2020 Department Of Transportation Supervisor Of Mechanical Installations & Maintenance 55416.00000 5.541600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.541600e+04 5.541600e+04 0.00 NULL
2020 Department Of Transportation Supervisor Of Mechanics NA NA 619112.68 1.997138e+04 18395.620 6708.25 31 1.839562e+04 570264.22 NA NA NA NULL
2020 Department Of Transportation Supervisor Of Office Machine Operations 47243.50000 9.448700e+04 937.46 4.687300e+02 468.730 31.50 2 4.687300e+02 937.46 9.542446e+04 9.542446e+04 0.00 NULL
2020 Department Of Transportation Supervisor Of Stock Workers 55282.00000 3.316920e+05 45378.77 7.563128e+03 3977.780 1080.25 6 3.977780e+03 23866.68 3.770708e+05 3.555587e+05 21512.09 NULL
2020 Department Of Transportation Supervisor Of Traffic Device Maintainers 74506.88000 1.862672e+06 425400.23 1.701601e+04 16565.600 7840.90 25 1.656560e+04 414140.00 2.288072e+06 2.276812e+06 11260.23 NULL
2020 Department Of Transportation Supervisor Of Traffic Device Maintainers Level 1 Only 70754.62000 3.537731e+06 723341.08 1.446682e+04 14324.190 13389.50 50 1.432419e+04 716209.50 4.261072e+06 4.253940e+06 7131.58 NULL
2020 Department Of Transportation Supervisor Painter NA NA 53927.01 2.696351e+04 26963.505 752.75 2 2.696351e+04 53927.01 NA NA NA NULL
2020 Department Of Transportation Supervisor Plumber NA NA 28087.84 1.404392e+04 14043.920 258.75 2 1.404392e+04 28087.84 NA NA NA NULL
2020 Department Of Transportation Supervisor Sheet Metal Worker NA NA 106756.54 5.337827e+04 53378.270 898.00 2 5.337827e+04 106756.54 NA NA NA NULL
2020 Department Of Transportation Supervisor Ship Carpenter NA NA 43383.61 4.338361e+04 43383.610 524.25 1 4.338361e+04 43383.61 NA NA NA NULL
2020 Department Of Transportation Supervisor Steamfitter NA NA 55461.00 5.546100e+04 55461.000 486.50 1 5.546100e+04 55461.00 NA NA NA NULL
2020 Department Of Transportation Telecommunications Associate 90093.51824 1.531590e+06 466916.59 2.746568e+04 29240.330 7078.42 17 2.746568e+04 466916.59 1.998506e+06 1.998506e+06 0.00 NULL
2020 Department Of Transportation Tractor Operator NA NA 959690.97 3.309279e+04 28264.930 7078.75 29 2.826493e+04 819682.97 NA NA NA NULL
2020 Department Of Transportation Traffic Control Inspector 55447.53608 5.378411e+06 681950.01 7.030412e+03 4196.630 17051.80 97 4.196630e+03 407073.11 6.060361e+06 5.785484e+06 274876.90 NULL
2020 Department Of Transportation Traffic Device Maintainer 62236.03814 1.468770e+07 1861145.23 7.886209e+03 6547.605 39790.00 236 6.547605e+03 1545234.78 1.654885e+07 1.623294e+07 315910.45 NULL
2020 Department Of Transportation Transportation Specialist 79669.36004 1.346412e+07 1072984.02 6.349018e+03 5577.730 19691.93 169 5.577730e+03 942636.37 1.453711e+07 1.440676e+07 130347.65 NULL
2020 Department Of Transportation Welder NA NA 37797.10 9.449275e+03 9420.050 385.50 4 9.420050e+03 37680.20 NA NA NA NULL
2020 Department Of Transportation Worker’s Compensation Benefits Examiner 64002.00000 6.400200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.400200e+04 6.400200e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs *Attorney At Law 112053.33333 3.361600e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.361600e+05 3.361600e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs *Custodial Assistant 37770.50000 1.510820e+05 27412.94 6.853235e+03 4812.800 916.25 4 4.812800e+03 19251.20 1.784949e+05 1.703332e+05 8161.74 NULL
2020 Dept Of Citywide Admin Svcs *Watchperson 48982.00000 4.898200e+04 568.67 5.686700e+02 568.670 15.75 1 5.686700e+02 568.67 4.955067e+04 4.955067e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Accountant 75340.75000 9.040890e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 9.040890e+05 9.040890e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Adm Manager-Non-Mgrl 80772.43421 6.138705e+06 58933.60 7.754421e+02 0.000 1091.25 76 0.000000e+00 0.00 6.197639e+06 6.138705e+06 58933.60 NULL
2020 Dept Of Citywide Admin Svcs Admin Community Relations Specialist 81036.66667 4.862200e+05 10490.67 1.748445e+03 0.000 198.75 6 0.000000e+00 0.00 4.967107e+05 4.862200e+05 10490.67 NULL
2020 Dept Of Citywide Admin Svcs Admin Construction Project Manager 103778.60000 1.037786e+06 590.72 5.907200e+01 0.000 9.25 10 0.000000e+00 0.00 1.038377e+06 1.037786e+06 590.72 NULL
2020 Dept Of Citywide Admin Svcs Admin Contract Specialist 115849.00000 1.158490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.158490e+05 1.158490e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Admin Inspector 112007.50000 2.240150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.240150e+05 2.240150e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Admin Tests & Meas Spec 111336.50000 2.226730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.226730e+05 2.226730e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Administrative Accountant 100052.00000 1.000520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000520e+05 1.000520e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Administrative Architect 133610.40000 6.680520e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.680520e+05 6.680520e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Administrative Business Promotion Coordinator 124119.42857 1.737672e+06 7596.86 5.426329e+02 0.000 86.00 14 0.000000e+00 0.00 1.745269e+06 1.737672e+06 7596.86 NULL
2020 Dept Of Citywide Admin Svcs Administrative City Planner 116474.71429 8.153230e+05 144.24 2.060571e+01 0.000 0.00 7 0.000000e+00 0.00 8.154672e+05 8.153230e+05 144.24 NULL
2020 Dept Of Citywide Admin Svcs Administrative Community Relations Specialist 174675.00000 8.733750e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.733750e+05 8.733750e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Administrative Construction Project Manager 115305.25000 4.612210e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.612210e+05 4.612210e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Administrative Engineer 140225.72727 1.542483e+06 66426.61 6.038783e+03 0.000 674.25 11 0.000000e+00 0.00 1.608910e+06 1.542483e+06 66426.61 NULL
2020 Dept Of Citywide Admin Svcs Administrative Graphic Artist 100328.00000 2.006560e+05 155.31 7.765500e+01 77.655 3.75 2 7.765500e+01 155.31 2.008113e+05 2.008113e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Administrative Inspector 122779.00000 2.455580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.455580e+05 2.455580e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Administrative Investigator 81234.66667 2.437040e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.437040e+05 2.437040e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Administrative Management Auditor 120309.00000 1.203090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.203090e+05 1.203090e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Administrative Manager 121804.00000 1.096236e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.096236e+06 1.096236e+06 0.00 NULL
2020 Dept Of Citywide Admin Svcs Administrative Printing Services Manager 100666.00000 1.006660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.006660e+05 1.006660e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Administrative Procurement Analyst 91457.00000 9.145700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.145700e+04 9.145700e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Administrative Procurement Analyst-Non-Mgrl 90109.50000 1.621971e+06 81724.04 4.540224e+03 0.000 1102.25 18 0.000000e+00 0.00 1.703695e+06 1.621971e+06 81724.04 NULL
2020 Dept Of Citywide Admin Svcs Administrative Project Manager 119021.84211 2.261415e+06 41157.99 2.166210e+03 0.000 531.00 19 0.000000e+00 0.00 2.302573e+06 2.261415e+06 41157.99 NULL
2020 Dept Of Citywide Admin Svcs Administrative Public Information Specialist 123871.00000 2.477420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.477420e+05 2.477420e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Administrative Quality Assurance Specialist 85314.58875 1.365033e+06 133680.18 8.355011e+03 4414.755 2368.75 16 4.414755e+03 70636.08 1.498714e+06 1.435670e+06 63044.10 NULL
2020 Dept Of Citywide Admin Svcs Administrative Real Property Manager 115488.00000 1.154880e+05 1237.38 1.237380e+03 1237.380 17.50 1 1.237380e+03 1237.38 1.167254e+05 1.167254e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Administrative Space Analyst 115855.33333 3.475660e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.475660e+05 3.475660e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Administrative Staff Analyst 111533.20536 1.249172e+07 114565.47 1.022906e+03 0.000 1833.25 112 0.000000e+00 0.00 1.260628e+07 1.249172e+07 114565.47 NULL
2020 Dept Of Citywide Admin Svcs Administrative Supervisor Of Building Maintenance 102481.00000 2.049620e+05 7800.75 3.900375e+03 3900.375 129.00 2 3.900375e+03 7800.75 2.127628e+05 2.127628e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Agency Attorney 101436.91176 3.448855e+06 2088.37 6.142265e+01 0.000 30.75 34 0.000000e+00 0.00 3.450943e+06 3.448855e+06 2088.37 NULL
2020 Dept Of Citywide Admin Svcs Agency Attorney Interne 72275.00000 7.227500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.227500e+04 7.227500e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Appraiser 102101.40000 5.105070e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.105070e+05 5.105070e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Architect 101688.53333 1.525328e+06 33586.39 2.239093e+03 0.000 466.25 15 0.000000e+00 0.00 1.558914e+06 1.525328e+06 33586.39 NULL
2020 Dept Of Citywide Admin Svcs Asbestos Handler 83206.00000 3.328240e+05 101514.59 2.537865e+04 23834.185 1694.75 4 2.383419e+04 95336.74 4.343386e+05 4.281607e+05 6177.85 NULL
2020 Dept Of Citywide Admin Svcs Assistant Architect 76687.00000 4.601220e+05 1957.19 3.261983e+02 0.000 38.25 6 0.000000e+00 0.00 4.620792e+05 4.601220e+05 1957.19 NULL
2020 Dept Of Citywide Admin Svcs Assistant Civil Engineer 81548.50000 1.630970e+05 1067.31 5.336550e+02 533.655 18.00 2 5.336550e+02 1067.31 1.641643e+05 1.641643e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Assistant Commissioner 169588.33333 1.526295e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.526295e+06 1.526295e+06 0.00 NULL
2020 Dept Of Citywide Admin Svcs Assistant Electrical Engineer 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Assistant Landscape Architect 75651.00000 7.565100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.565100e+04 7.565100e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Assistant Mechanical Engineer 79714.33333 4.782860e+05 10760.61 1.793435e+03 0.000 181.25 6 0.000000e+00 0.00 4.890466e+05 4.782860e+05 10760.61 NULL
2020 Dept Of Citywide Admin Svcs Assistant Printing Press Operator 65039.00000 6.503900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.503900e+04 6.503900e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Associate Chemist 82355.00000 8.235500e+04 335.58 3.355800e+02 335.580 6.75 1 3.355800e+02 335.58 8.269058e+04 8.269058e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Associate Investigator 58741.00000 1.174820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.174820e+05 1.174820e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Associate Project Manager 92931.15385 1.208105e+06 405.65 3.120385e+01 0.000 4.00 13 0.000000e+00 0.00 1.208511e+06 1.208105e+06 405.65 NULL
2020 Dept Of Citywide Admin Svcs Associate Quality Assurance Specialist 74799.00000 2.243970e+05 23686.74 7.895580e+03 6366.940 445.50 3 6.366940e+03 19100.82 2.480837e+05 2.434978e+05 4585.92 NULL
2020 Dept Of Citywide Admin Svcs Associate Real Property Manager 68895.20000 3.444760e+05 13724.51 2.744902e+03 0.000 264.50 5 0.000000e+00 0.00 3.582005e+05 3.444760e+05 13724.51 NULL
2020 Dept Of Citywide Admin Svcs Associate Staff Analyst 81716.19355 2.533202e+06 40323.46 1.300757e+03 0.000 701.25 31 0.000000e+00 0.00 2.573525e+06 2.533202e+06 40323.46 NULL
2020 Dept Of Citywide Admin Svcs Auto Mechanic NA NA 16000.32 4.000080e+03 883.095 248.25 4 8.830950e+02 3532.38 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Bookkeeper 51389.66667 1.541690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.541690e+05 1.541690e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Bricklayer NA NA 57068.28 5.706828e+04 57068.280 727.50 1 5.706828e+04 57068.28 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Business Promotion Coordinator 84984.75000 3.399390e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.399390e+05 3.399390e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Carpenter NA NA 712649.16 3.959162e+04 41465.825 9404.75 18 3.959162e+04 712649.16 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Cement Mason NA NA 79919.01 7.991901e+04 79919.010 765.25 1 7.991901e+04 79919.01 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Certified It Administrator 107031.00000 7.492170e+05 14044.38 2.006340e+03 1609.850 210.75 7 1.609850e+03 11268.95 7.632614e+05 7.604859e+05 2775.43 NULL
2020 Dept Of Citywide Admin Svcs Certified It Developer 113580.33333 1.022223e+06 1147.02 1.274467e+02 0.000 15.50 9 0.000000e+00 0.00 1.023370e+06 1.022223e+06 1147.02 NULL
2020 Dept Of Citywide Admin Svcs Chairman 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Chauffeur-Attendant 55378.20588 1.882859e+06 457506.50 1.345607e+04 13149.130 11380.56 34 1.314913e+04 447070.42 2.340366e+06 2.329929e+06 10436.08 NULL
2020 Dept Of Citywide Admin Svcs Chief Of Staff 205000.00000 2.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.050000e+05 2.050000e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs City Custodial Assistant 35914.00636 1.695141e+07 3703548.59 7.846501e+03 4539.655 139149.36 472 4.539655e+03 2142717.16 2.065496e+07 1.909413e+07 1560831.43 NULL
2020 Dept Of Citywide Admin Svcs City Laborer NA NA 511910.53 2.843947e+04 27447.460 9283.50 18 2.744746e+04 494054.28 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs City Planner 91003.72455 1.001041e+06 14973.51 1.361228e+03 0.000 222.50 11 0.000000e+00 0.00 1.016014e+06 1.001041e+06 14973.51 NULL
2020 Dept Of Citywide Admin Svcs City Research Scientist 83679.92857 1.171519e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.171519e+06 1.171519e+06 0.00 NULL
2020 Dept Of Citywide Admin Svcs City Security Aide 40078.72500 1.603149e+06 392847.96 9.821199e+03 8067.565 13211.48 40 8.067565e+03 322702.60 1.995997e+06 1.925852e+06 70145.36 NULL
2020 Dept Of Citywide Admin Svcs Clerical Associate 50165.00580 3.461385e+06 83484.21 1.209916e+03 0.000 2686.00 69 0.000000e+00 0.00 3.544870e+06 3.461385e+06 83484.21 NULL
2020 Dept Of Citywide Admin Svcs Clock Repairer 4832.56000 4.832560e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.832560e+03 4.832560e+03 0.00 NULL
2020 Dept Of Citywide Admin Svcs College Aide 11122.91205 4.894081e+05 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 4.894081e+05 4.894081e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Commissioner 179125.25000 7.165010e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.165010e+05 7.165010e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Commissioner Of Citywide Administrative Services 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Community Assistant 37455.25000 1.498210e+06 56344.71 1.408618e+03 112.995 2439.25 40 1.129950e+02 4519.80 1.554555e+06 1.502730e+06 51824.91 NULL
2020 Dept Of Citywide Admin Svcs Community Associate 52142.43882 4.432107e+06 309642.29 3.642850e+03 1475.210 8907.50 85 1.475210e+03 125392.85 4.741750e+06 4.557500e+06 184249.44 NULL
2020 Dept Of Citywide Admin Svcs Community Coordinator 68837.20274 4.267907e+06 303799.51 4.899992e+03 101.350 6566.75 62 1.013500e+02 6283.70 4.571706e+06 4.274190e+06 297515.81 NULL
2020 Dept Of Citywide Admin Svcs Community Service Aide 34762.00000 6.952400e+04 20739.45 1.036973e+04 10369.725 744.00 2 1.036973e+04 20739.45 9.026345e+04 9.026345e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Computer Aide-Non-Spvr 68772.00000 6.877200e+04 2055.24 2.055240e+03 2055.240 42.00 1 2.055240e+03 2055.24 7.082724e+04 7.082724e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Computer Associate 75990.73684 1.443824e+06 56417.25 2.969329e+03 316.660 850.50 19 3.166600e+02 6016.54 1.500241e+06 1.449841e+06 50400.71 NULL
2020 Dept Of Citywide Admin Svcs Computer Operations Manager 133832.00000 1.338320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.338320e+05 1.338320e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Computer Programmer Analyst 67120.00000 6.712000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.712000e+04 6.712000e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Computer Specialist 103182.62791 4.436853e+06 89170.18 2.073725e+03 0.000 1356.25 43 0.000000e+00 0.00 4.526023e+06 4.436853e+06 89170.18 NULL
2020 Dept Of Citywide Admin Svcs Computer Systems Manager 139555.12195 5.721760e+06 0.00 0.000000e+00 0.000 0.00 41 0.000000e+00 0.00 5.721760e+06 5.721760e+06 0.00 NULL
2020 Dept Of Citywide Admin Svcs Confidential Strategy Planner 78953.25000 9.474390e+05 21056.62 1.754718e+03 0.000 395.00 12 0.000000e+00 0.00 9.684956e+05 9.474390e+05 21056.62 NULL
2020 Dept Of Citywide Admin Svcs Construction Project Manager 86054.73684 1.635040e+06 42772.15 2.251166e+03 0.000 596.75 19 0.000000e+00 0.00 1.677812e+06 1.635040e+06 42772.15 NULL
2020 Dept Of Citywide Admin Svcs Custodian 43988.80505 9.589560e+06 3441000.51 1.578441e+04 12835.535 106291.52 218 1.283553e+04 2798146.63 1.303056e+07 1.238771e+07 642853.88 NULL
2020 Dept Of Citywide Admin Svcs Deputy Assistant Commissioner 100010.51786 5.600589e+06 7184.04 1.282864e+02 0.000 124.50 56 0.000000e+00 0.00 5.607773e+06 5.600589e+06 7184.04 NULL
2020 Dept Of Citywide Admin Svcs Deputy Commissioner 219562.25000 8.782490e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.782490e+05 8.782490e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Deputy Commissioner For City Personnel Services 213783.00000 2.137830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.137830e+05 2.137830e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Director Of Energy Conservation 213783.00000 2.137830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.137830e+05 2.137830e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Director Of Stores 105115.00000 1.051150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.051150e+05 1.051150e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Director Of The City Record 150056.00000 3.001120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.001120e+05 3.001120e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Director,Citywide Occupational Safety & Health Program 131038.00000 1.310380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.310380e+05 1.310380e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Electrical Engineer 104400.66667 3.132020e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.132020e+05 3.132020e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Electrician NA NA 1045016.27 3.166716e+04 3806.500 11694.75 33 3.806500e+03 125614.50 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Elevator Mechanic NA NA 676594.75 1.989985e+04 18526.300 9106.00 34 1.852630e+04 629894.20 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Elevator Mechanic Helper NA NA 38310.33 9.577583e+03 8291.600 824.75 4 8.291600e+03 33166.40 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Estimator 85345.50000 1.706910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.706910e+05 1.706910e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Exec Asst To The Deputy Com For Citywide Personnel Svcs-Dcas 103603.00000 1.036030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.036030e+05 1.036030e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Executive Agency Counsel 138375.68750 2.214011e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.214011e+06 2.214011e+06 0.00 NULL
2020 Dept Of Citywide Admin Svcs Executive Assistant To The Commissioner 74475.00000 7.447500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.447500e+04 7.447500e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Executive Program Specialist 151910.00000 4.557300e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.557300e+05 4.557300e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs First Deputy Commissioner 230000.00000 2.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.300000e+05 2.300000e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs General Counsel 213783.00000 2.137830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.137830e+05 2.137830e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Graphic Artist 71497.75000 2.859910e+05 5278.00 1.319500e+03 514.420 107.25 4 5.144200e+02 2057.68 2.912690e+05 2.880487e+05 3220.32 NULL
2020 Dept Of Citywide Admin Svcs High Pressure Plant Tender NA NA 918699.35 1.837399e+04 15369.380 17784.75 50 1.536938e+04 768469.00 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Industrial Hygienist 75467.00000 7.546700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.546700e+04 7.546700e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Investigator 47981.62500 3.838530e+05 10346.50 1.293312e+03 0.000 224.75 8 0.000000e+00 0.00 3.941995e+05 3.838530e+05 10346.50 NULL
2020 Dept Of Citywide Admin Svcs It Project Specialist 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs It Service Management Specialist 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Job Training Participant 8358.52364 7.271916e+05 0.00 0.000000e+00 0.000 0.00 87 0.000000e+00 0.00 7.271916e+05 7.271916e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Landscape Architect 93488.00000 9.348800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.348800e+04 9.348800e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Locksmith NA NA 474.51 4.745100e+02 474.510 10.25 1 4.745100e+02 474.51 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Machinist NA NA 21242.27 1.062114e+04 10621.135 388.50 2 1.062114e+04 21242.27 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Maintenance Worker NA NA 1243843.81 2.961533e+04 29057.305 27091.00 42 2.905731e+04 1220406.81 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Management Auditor 68710.83333 4.122650e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.122650e+05 4.122650e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Mechanical Engineer 98925.00000 1.978500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.978500e+05 1.978500e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Media Services Technician 58300.00000 5.830000e+04 609.39 6.093900e+02 609.390 18.25 1 6.093900e+02 609.39 5.890939e+04 5.890939e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Motor Vehicle Operator 44618.00000 4.461800e+04 10940.26 1.094026e+04 10940.260 289.25 1 1.094026e+04 10940.26 5.555826e+04 5.555826e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Motor Vehicle Supervisor 60090.50000 1.201810e+05 29201.14 1.460057e+04 14600.570 655.50 2 1.460057e+04 29201.14 1.493821e+05 1.493821e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs New York City Fellow 33730.57301 5.734197e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 5.734197e+05 5.734197e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs New York City Public Service Fellow 43007.15385 5.590930e+05 14897.32 1.145948e+03 33.580 446.25 13 3.358000e+01 436.54 5.739903e+05 5.595295e+05 14460.78 NULL
2020 Dept Of Citywide Admin Svcs New York City Urban Fellow 25216.21926 9.330001e+05 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 9.330001e+05 9.330001e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Office Machine Aide 47233.00000 9.446600e+04 637.62 3.188100e+02 318.810 20.50 2 3.188100e+02 637.62 9.510362e+04 9.510362e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Oiler NA NA 1306930.64 3.111740e+04 23312.995 14203.25 42 2.331299e+04 979145.79 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Painter NA NA 119211.42 2.384228e+04 17331.770 1910.00 5 1.733177e+04 86658.85 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Plasterer NA NA 151177.88 5.039263e+04 52517.850 2005.50 3 5.039263e+04 151177.88 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Plumber NA NA 963984.25 5.670496e+04 47933.340 9404.25 17 4.793334e+04 814866.78 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Principal Administrative Associate - Non Supvr 63794.14050 7.719091e+06 197909.33 1.635614e+03 3.390 4725.00 121 3.390000e+00 410.19 7.917000e+06 7.719501e+06 197499.14 NULL
2020 Dept Of Citywide Admin Svcs Procurement Analyst 69334.65385 1.802701e+06 41110.24 1.581163e+03 0.000 933.00 26 0.000000e+00 0.00 1.843811e+06 1.802701e+06 41110.24 NULL
2020 Dept Of Citywide Admin Svcs Project Manager 61800.00000 6.180000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.180000e+04 6.180000e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Public Records Officer 68613.00000 1.372260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.372260e+05 1.372260e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Quality Assurance Specialist 58898.81818 6.478870e+05 62142.19 5.649290e+03 3707.470 1473.50 11 3.707470e+03 40782.17 7.100292e+05 6.886692e+05 21360.02 NULL
2020 Dept Of Citywide Admin Svcs Radio And Television Operator 55824.00000 1.116480e+05 6739.27 3.369635e+03 3369.635 182.00 2 3.369635e+03 6739.27 1.183873e+05 1.183873e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Real Property Manager 51500.00000 5.150000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.150000e+04 5.150000e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Secretary 49963.90000 4.996390e+05 2203.50 2.203500e+02 0.000 64.50 10 0.000000e+00 0.00 5.018425e+05 4.996390e+05 2203.50 NULL
2020 Dept Of Citywide Admin Svcs Secretary Of Comm 66611.00000 6.661100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.661100e+04 6.661100e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Secretary To The Deputy Commissioner 87723.50000 1.754470e+05 4567.27 2.283635e+03 2283.635 82.75 2 2.283635e+03 4567.27 1.800143e+05 1.800143e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Senior Estimator 97404.50000 1.948090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.948090e+05 1.948090e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Senior Salvage Appraiser 75349.00000 7.534900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.534900e+04 7.534900e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Senior Stationary Engineer NA NA 1587980.02 4.812061e+04 46682.310 13916.50 33 4.668231e+04 1540516.23 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Sheet Metal Worker NA NA 164390.80 8.219540e+04 82195.400 1420.75 2 8.219540e+04 164390.80 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Space Analyst 75914.16667 4.554850e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.554850e+05 4.554850e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Special Assistant To The Commissioner 139050.00000 1.390500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.390500e+05 1.390500e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Special Assistant To The First Deputy Commissioner 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Special Examiner 19054.71321 5.716414e+05 215.16 7.172000e+00 0.000 12.00 30 0.000000e+00 0.00 5.718566e+05 5.716414e+05 215.16 NULL
2020 Dept Of Citywide Admin Svcs Special Officer 48893.29348 4.498183e+06 755620.29 8.213264e+03 2193.985 21190.96 92 2.193985e+03 201846.62 5.253803e+06 4.700030e+06 553773.67 NULL
2020 Dept Of Citywide Admin Svcs Staff Analyst 60290.60345 3.496855e+06 50793.04 8.757421e+02 0.000 1213.50 58 0.000000e+00 0.00 3.547648e+06 3.496855e+06 50793.04 NULL
2020 Dept Of Citywide Admin Svcs Staff Analyst Trainee 44284.18750 7.085470e+05 2203.35 1.377094e+02 0.000 78.75 16 0.000000e+00 0.00 7.107503e+05 7.085470e+05 2203.35 NULL
2020 Dept Of Citywide Admin Svcs Stationary Engineer NA NA 5178944.49 4.210524e+04 38613.530 51395.98 123 3.861353e+04 4749464.19 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Statistician 74777.00000 7.477700e+04 40.93 4.093000e+01 40.930 1.00 1 4.093000e+01 40.93 7.481793e+04 7.481793e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Steam Fitter NA NA 857111.79 7.142598e+04 70482.500 7834.50 12 7.048250e+04 845790.00 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Steam Fitter’s Helper NA NA 64226.25 6.422625e+04 64226.250 778.50 1 6.422625e+04 64226.25 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Stock Worker 37888.36364 4.167720e+05 68987.80 6.271618e+03 8164.550 2411.75 11 6.271618e+03 68987.80 4.857598e+05 4.857598e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Strategic Initiative Specialist 96454.33333 2.893630e+05 1822.67 6.075567e+02 0.000 22.00 3 0.000000e+00 0.00 2.911857e+05 2.893630e+05 1822.67 NULL
2020 Dept Of Citywide Admin Svcs Summer College Intern 4135.62187 6.616995e+04 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 6.616995e+04 6.616995e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Summer Graduate Intern 5041.08000 3.528756e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.528756e+04 3.528756e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Supervising Special Officer 64866.75862 1.881136e+06 527150.60 1.817761e+04 15336.170 11041.25 29 1.533617e+04 444748.93 2.408287e+06 2.325885e+06 82401.67 NULL
2020 Dept Of Citywide Admin Svcs Supervisor NA NA 93268.77 9.326877e+04 93268.770 1713.25 1 9.326877e+04 93268.77 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Supervisor Bricklayer NA NA 93635.22 9.363522e+04 93635.220 1056.50 1 9.363522e+04 93635.22 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Supervisor Carpenter NA NA 147038.72 3.675968e+04 36555.855 1894.75 4 3.655586e+04 146223.42 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Supervisor Electrician NA NA 181718.26 9.085913e+04 90859.130 1853.00 2 9.085913e+04 181718.26 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Supervisor Elevator Mechanic NA NA 188840.88 3.776818e+04 39109.050 2271.00 5 3.776818e+04 188840.88 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Supervisor Locksmith NA NA 2151.04 2.151040e+03 2151.040 0.00 1 2.151040e+03 2151.04 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Supervisor Of Mechanics NA NA 10030.17 5.015085e+03 5015.085 104.25 2 5.015085e+03 10030.17 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Supervisor Of Motor Transport 75000.00000 7.500000e+04 26312.02 2.631202e+04 26312.020 520.25 1 2.631202e+04 26312.02 1.013120e+05 1.013120e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Supervisor Of Radio And Television Operators 87745.00000 1.754900e+05 28702.74 1.435137e+04 14351.370 471.50 2 1.435137e+04 28702.74 2.041927e+05 2.041927e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Supervisor Of Stock Workers 53813.33333 4.843200e+05 139985.54 1.555395e+04 21463.240 3352.50 9 1.555395e+04 139985.54 6.243055e+05 6.243055e+05 0.00 NULL
2020 Dept Of Citywide Admin Svcs Supervisor Painter NA NA 55319.67 5.531967e+04 55319.670 785.25 1 5.531967e+04 55319.67 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Supervisor Plumber NA NA 125751.58 1.257516e+05 125751.580 1137.25 1 1.257516e+05 125751.58 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Supervisor Sheet Metal Worker NA NA 104819.35 1.048194e+05 104819.350 849.00 1 1.048194e+05 104819.35 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Supervisor Steamfitter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Supervisor Thermostat Repair NA NA 36208.81 3.620881e+04 36208.810 327.50 1 3.620881e+04 36208.81 NA NA NA NULL
2020 Dept Of Citywide Admin Svcs Telecommunications Associate 70108.00000 7.010800e+04 571.89 5.718900e+02 571.890 12.75 1 5.718900e+02 571.89 7.067989e+04 7.067989e+04 0.00 NULL
2020 Dept Of Citywide Admin Svcs Tests And Measurement Specialist 68150.57143 1.908216e+06 10614.13 3.790761e+02 0.000 204.00 28 0.000000e+00 0.00 1.918830e+06 1.908216e+06 10614.13 NULL
2020 Dept Of Citywide Admin Svcs Thermostat Repairer NA NA 240858.17 2.189620e+04 20799.260 2640.75 11 2.079926e+04 228791.86 NA NA NA NULL
2020 Dept Of Ed Hrly Support Staff Coop Education Trainee Computer Tech Aide/Jr 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Dept Of Ed Hrly Support Staff Coop Education Trainee Computer Tech Aide/Sr 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Dept Of Ed Hrly Support Staff F/T Dc 37 Family Para 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1677 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Dept Of Ed Hrly Support Staff F/T Film Inspection Asst. 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Dept Of Ed Hrly Support Staff F/T Group Leader 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Dept Of Ed Hrly Support Staff F/T Health Service Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 119 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Dept Of Ed Hrly Support Staff F/T School Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 8268 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Dept Of Ed Hrly Support Staff F/T School Guard 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Dept Of Ed Hrly Support Staff F/T School Lunch Helper 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 3971 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Dept Of Ed Hrly Support Staff F/T School Safety Officer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Dept Of Ed Hrly Support Staff F/T Sr. School Lunch Helper 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 3075 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Dept Of Ed Hrly Support Staff Student Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 2337 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Dept Of Ed Hrly Support Staff Substitute Recreation Assistant 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Dept Of Ed Hrly Support Staff Substitute School Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 478 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Dept Of Ed Hrly Support Staff Substitute School Lunch Helper 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 467 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Dept Of Ed Hrly Support Staff Substitute Sr. School Lunch Helper 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 328 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Dept Of Ed Hrly Support Staff Supervising School Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 460 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Dept Of Ed Hrly Support Staff NA NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2020 Dept Of Ed Para Professionals Adult Ed-30 H 43078.96154 1.120053e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 1.120053e+06 1.120053e+06 0.00 NULL
2020 Dept Of Ed Para Professionals Annual Ed Para 38954.34205 1.256589e+09 0.00 0.000000e+00 0.000 0.00 32258 0.000000e+00 0.00 1.256589e+09 1.256589e+09 0.00 NULL
2020 Dept Of Ed Para Professionals Pre-Ses Ed Para 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Dept Of Ed Para Professionals Substitute Ed Para NA NA 0.00 0.000000e+00 0.000 0.00 8842 0.000000e+00 0.00 NA NA NA NULL
2020 Dept Of Ed Para Professionals Teacher Aide 28081.86792 5.953356e+06 0.00 0.000000e+00 0.000 0.00 212 0.000000e+00 0.00 5.953356e+06 5.953356e+06 0.00 NULL
2020 Dept Of Ed Para Professionals NA 21713.00000 4.342600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.342600e+04 4.342600e+04 0.00 NULL
2020 Dept Of Ed Pedagogical 12 Month Special Education Asst. Principal 144434.74906 3.856408e+07 0.00 0.000000e+00 0.000 0.00 267 0.000000e+00 0.00 3.856408e+07 3.856408e+07 0.00 NULL
2020 Dept Of Ed Pedagogical 12 Month Special Education Supervisor 147613.12500 3.542715e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 3.542715e+06 3.542715e+06 0.00 NULL
2020 Dept Of Ed Pedagogical Adult Educat Teach - Reg Sub 43474.25000 1.738970e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.738970e+05 1.738970e+05 0.00 NULL
2020 Dept Of Ed Pedagogical Adult Education Teacher 107124.07627 2.528128e+07 0.00 0.000000e+00 0.000 0.00 236 0.000000e+00 0.00 2.528128e+07 2.528128e+07 0.00 NULL
2020 Dept Of Ed Pedagogical Aspiring Principal 119357.00000 1.193570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.193570e+05 1.193570e+05 0.00 NULL
2020 Dept Of Ed Pedagogical Assistant Principal 133024.06556 5.133399e+08 0.00 0.000000e+00 0.000 0.00 3859 0.000000e+00 0.00 5.133399e+08 5.133399e+08 0.00 NULL
2020 Dept Of Ed Pedagogical Assistant Principal Assigned 141946.14286 9.936230e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.936230e+05 9.936230e+05 0.00 NULL
2020 Dept Of Ed Pedagogical Assistant Superintendent 170940.95122 4.205147e+07 0.00 0.000000e+00 0.000 0.00 246 0.000000e+00 0.00 4.205147e+07 4.205147e+07 0.00 NULL
2020 Dept Of Ed Pedagogical Chancellor 363346.00000 3.633460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.633460e+05 3.633460e+05 0.00 NULL
2020 Dept Of Ed Pedagogical Community Supertindent 188853.61290 1.170892e+07 0.00 0.000000e+00 0.000 0.00 62 0.000000e+00 0.00 1.170892e+07 1.170892e+07 0.00 NULL
2020 Dept Of Ed Pedagogical Cse Chairperson 157020.06250 2.512321e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.512321e+06 2.512321e+06 0.00 NULL
2020 Dept Of Ed Pedagogical Deputy Chancellor 225948.00000 2.259480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.259480e+05 2.259480e+05 0.00 NULL
2020 Dept Of Ed Pedagogical Deputy Community Superintendent 172972.00000 1.729720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.729720e+05 1.729720e+05 0.00 NULL
2020 Dept Of Ed Pedagogical Deputy Regional Superintendent 215720.00000 6.471600e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.471600e+05 6.471600e+05 0.00 NULL
2020 Dept Of Ed Pedagogical Director 149061.77273 3.279359e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 3.279359e+06 3.279359e+06 0.00 NULL
2020 Dept Of Ed Pedagogical Educational Administrator Csa 139944.23002 1.715716e+08 0.00 0.000000e+00 0.000 0.00 1226 0.000000e+00 0.00 1.715716e+08 1.715716e+08 0.00 NULL
2020 Dept Of Ed Pedagogical Educational Administrator Uft 138702.41667 1.664429e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.664429e+06 1.664429e+06 0.00 NULL
2020 Dept Of Ed Pedagogical Guidance Counselor 104132.68330 3.630065e+08 0.00 0.000000e+00 0.000 0.00 3486 0.000000e+00 0.00 3.630065e+08 3.630065e+08 0.00 NULL
2020 Dept Of Ed Pedagogical Guidance Counselor Assigned A 93297.04494 8.303437e+06 0.00 0.000000e+00 0.000 0.00 89 0.000000e+00 0.00 8.303437e+06 8.303437e+06 0.00 NULL
2020 Dept Of Ed Pedagogical Guidance Counselor-Reg Sub 64002.50000 5.120200e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.120200e+05 5.120200e+05 0.00 NULL
2020 Dept Of Ed Pedagogical Lab Specialist/Assistant 89064.54386 1.015336e+07 0.00 0.000000e+00 0.000 0.00 114 0.000000e+00 0.00 1.015336e+07 1.015336e+07 0.00 NULL
2020 Dept Of Ed Pedagogical Local Instructional Supervisor 198630.20000 9.931510e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.931510e+05 9.931510e+05 0.00 NULL
2020 Dept Of Ed Pedagogical Principal 172093.10808 3.471118e+08 0.00 0.000000e+00 0.000 0.00 2017 0.000000e+00 0.00 3.471118e+08 3.471118e+08 0.00 NULL
2020 Dept Of Ed Pedagogical Principal Assigned 180573.85000 7.222954e+06 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 7.222954e+06 7.222954e+06 0.00 NULL
2020 Dept Of Ed Pedagogical Psychologist In Train - Reg Sub 52012.00000 1.144264e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 1.144264e+06 1.144264e+06 0.00 NULL
2020 Dept Of Ed Pedagogical School Medical Inspector 90025.00000 2.700750e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.700750e+05 2.700750e+05 0.00 NULL
2020 Dept Of Ed Pedagogical School Medical Inspector - Reg Sub 73558.00000 7.355800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.355800e+04 7.355800e+04 0.00 NULL
2020 Dept Of Ed Pedagogical School Psychiatrist 99945.00000 9.994500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.994500e+04 9.994500e+04 0.00 NULL
2020 Dept Of Ed Pedagogical School Psycholgist 103323.46769 1.758565e+08 0.00 0.000000e+00 0.000 0.00 1702 0.000000e+00 0.00 1.758565e+08 1.758565e+08 0.00 NULL
2020 Dept Of Ed Pedagogical School Psychologist - Reg Sub 67929.33333 4.075760e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.075760e+05 4.075760e+05 0.00 NULL
2020 Dept Of Ed Pedagogical School Secretary 65300.81928 2.478819e+08 0.00 0.000000e+00 0.000 0.00 3796 0.000000e+00 0.00 2.478819e+08 2.478819e+08 0.00 NULL
2020 Dept Of Ed Pedagogical School Secretary-Reg Sub 45386.54098 1.107432e+07 0.00 0.000000e+00 0.000 0.00 244 0.000000e+00 0.00 1.107432e+07 1.107432e+07 0.00 NULL
2020 Dept Of Ed Pedagogical School Social Worker 102173.41674 2.233511e+08 0.00 0.000000e+00 0.000 0.00 2186 0.000000e+00 0.00 2.233511e+08 2.233511e+08 0.00 NULL
2020 Dept Of Ed Pedagogical School Social Worker - Reg Sub 78748.25000 3.149930e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.149930e+05 3.149930e+05 0.00 NULL
2020 Dept Of Ed Pedagogical Supervisor 131842.60870 9.097140e+06 0.00 0.000000e+00 0.000 0.00 69 0.000000e+00 0.00 9.097140e+06 9.097140e+06 0.00 NULL
2020 Dept Of Ed Pedagogical Supervisor Assigned 140454.96000 3.511374e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 3.511374e+06 3.511374e+06 0.00 NULL
2020 Dept Of Ed Pedagogical Teach Asst Vocation - Reg Sub 54199.10417 2.601557e+06 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 2.601557e+06 2.601557e+06 0.00 NULL
2020 Dept Of Ed Pedagogical Teacher 95870.40825 6.070706e+09 0.00 0.000000e+00 0.000 0.00 63322 0.000000e+00 0.00 6.070706e+09 6.070706e+09 0.00 NULL
2020 Dept Of Ed Pedagogical Teacher Assigned A 104928.72614 1.099653e+08 0.00 0.000000e+00 0.000 0.00 1048 0.000000e+00 0.00 1.099653e+08 1.099653e+08 0.00 NULL
2020 Dept Of Ed Pedagogical Teacher Assigned B 88868.00000 5.332080e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.332080e+05 5.332080e+05 0.00 NULL
2020 Dept Of Ed Pedagogical Teacher Assistant - Reg Sub 24056.40000 2.405640e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 2.405640e+05 2.405640e+05 0.00 NULL
2020 Dept Of Ed Pedagogical Teacher Attendance 100403.71831 4.277198e+07 0.00 0.000000e+00 0.000 0.00 426 0.000000e+00 0.00 4.277198e+07 4.277198e+07 0.00 NULL
2020 Dept Of Ed Pedagogical Teacher Resource Room 124909.00000 1.249090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.249090e+05 1.249090e+05 0.00 NULL
2020 Dept Of Ed Pedagogical Teacher Special Education 89277.08040 2.579483e+09 0.00 0.000000e+00 0.000 0.00 28893 0.000000e+00 0.00 2.579483e+09 2.579483e+09 0.00 NULL
2020 Dept Of Ed Pedagogical Teacher Special Education-Reg Sub 61340.44876 3.950325e+07 0.00 0.000000e+00 0.000 0.00 644 0.000000e+00 0.00 3.950325e+07 3.950325e+07 0.00 NULL
2020 Dept Of Ed Pedagogical Teacher Trainer 105558.25000 4.222330e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.222330e+05 4.222330e+05 0.00 NULL
2020 Dept Of Ed Pedagogical Teacher-Reg Sub 68945.80617 3.130140e+07 0.00 0.000000e+00 0.000 0.00 454 0.000000e+00 0.00 3.130140e+07 3.130140e+07 0.00 NULL
2020 Dept Of Ed Pedagogical Uft School Secretary Assigned - Non School Based- 12 Month 63182.66667 1.895480e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.895480e+05 1.895480e+05 0.00 NULL
2020 Dept Of Ed Per Diem Teachers Assistant Principal NA NA 0.00 0.000000e+00 0.000 0.00 83 0.000000e+00 0.00 NA NA NA NULL
2020 Dept Of Ed Per Diem Teachers Guidance Counselor NA NA 0.00 0.000000e+00 0.000 0.00 118 0.000000e+00 0.00 NA NA NA NULL
2020 Dept Of Ed Per Diem Teachers Lab Specialist/Assistant NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2020 Dept Of Ed Per Diem Teachers Principal NA NA 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 NA NA NA NULL
2020 Dept Of Ed Per Diem Teachers School Psychologist NA NA 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 NA NA NA NULL
2020 Dept Of Ed Per Diem Teachers School Social Worker NA NA 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 NA NA NA NULL
2020 Dept Of Ed Per Diem Teachers Secretary NA NA 0.00 0.000000e+00 0.000 0.00 176 0.000000e+00 0.00 NA NA NA NULL
2020 Dept Of Ed Per Diem Teachers Supervisor NA NA 0.00 0.000000e+00 0.000 0.00 91 0.000000e+00 0.00 NA NA NA NULL
2020 Dept Of Ed Per Diem Teachers Teacher-General Ed NA NA 0.00 0.000000e+00 0.000 0.00 10520 0.000000e+00 0.00 NA NA NA NULL
2020 Dept Of Ed Per Diem Teachers Teacher-Special Ed NA NA 0.00 0.000000e+00 0.000 0.00 222 0.000000e+00 0.00 NA NA NA NULL
2020 Dept Of Ed Per Session Teacher School Secretary Per Session NA NA 0.00 0.000000e+00 0.000 0.00 1322 0.000000e+00 0.00 NA NA NA NULL
2020 Dept Of Ed Per Session Teacher Supervisor Per Session NA NA 0.00 0.000000e+00 0.000 0.00 1160 0.000000e+00 0.00 NA NA NA NULL
2020 Dept Of Ed Per Session Teacher Teacher- Per Session NA NA 0.00 0.000000e+00 0.000 0.00 103125 0.000000e+00 0.00 NA NA NA NULL
2020 Dept Of Environment Protection *Attorney At Law 108794.00000 4.351760e+05 3610.63 9.026575e+02 0.000 45.75 4 0.000000e+00 0.00 4.387866e+05 4.351760e+05 3610.63 NULL
2020 Dept Of Environment Protection *Custodial Assistant 40373.00000 4.037300e+04 6307.48 6.307480e+03 6307.480 200.75 1 6.307480e+03 6307.48 4.668048e+04 4.668048e+04 0.00 NULL
2020 Dept Of Environment Protection *Research Scientist 109385.00000 1.093850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.093850e+05 1.093850e+05 0.00 NULL
2020 Dept Of Environment Protection Accountant 71089.33333 4.265360e+05 2287.68 3.812800e+02 0.000 42.25 6 0.000000e+00 0.00 4.288237e+05 4.265360e+05 2287.68 NULL
2020 Dept Of Environment Protection Adm Manager-Non-Mgrl 88424.41284 9.638261e+06 285907.56 2.623005e+03 0.800 5069.00 109 8.000000e-01 87.20 9.924169e+06 9.638348e+06 285820.36 NULL
2020 Dept Of Environment Protection Admin Community Relations Specialist 112846.14286 7.899230e+05 22750.10 3.250014e+03 0.000 372.00 7 0.000000e+00 0.00 8.126731e+05 7.899230e+05 22750.10 NULL
2020 Dept Of Environment Protection Admin Construction Project Manager 124150.00000 2.483000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.483000e+05 2.483000e+05 0.00 NULL
2020 Dept Of Environment Protection Admin Contract Specialist 118919.00000 1.189190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.189190e+05 1.189190e+05 0.00 NULL
2020 Dept Of Environment Protection Admin Dir Of Laboratory 105888.00000 1.058880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.058880e+05 1.058880e+05 0.00 NULL
2020 Dept Of Environment Protection Admin Housing Development Spec 122361.80000 6.118090e+05 17755.84 3.551168e+03 0.000 195.00 5 0.000000e+00 0.00 6.295648e+05 6.118090e+05 17755.84 NULL
2020 Dept Of Environment Protection Administrative Accountant 114966.40000 5.748320e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.748320e+05 5.748320e+05 0.00 NULL
2020 Dept Of Environment Protection Administrative Architect 139743.00000 1.397430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.397430e+05 1.397430e+05 0.00 NULL
2020 Dept Of Environment Protection Administrative City Planner 120728.87500 2.897493e+06 4448.71 1.853629e+02 0.000 75.25 24 0.000000e+00 0.00 2.901942e+06 2.897493e+06 4448.71 NULL
2020 Dept Of Environment Protection Administrative Construction Project Manager 145022.00000 1.450220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450220e+05 1.450220e+05 0.00 NULL
2020 Dept Of Environment Protection Administrative Contract Specialist 105765.00000 1.057650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.057650e+05 1.057650e+05 0.00 NULL
2020 Dept Of Environment Protection Administrative Director Of Laboratory 136912.42857 2.875161e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 2.875161e+06 2.875161e+06 0.00 NULL
2020 Dept Of Environment Protection Administrative Engineer 138635.31439 3.659972e+07 118163.89 4.475905e+02 0.000 1641.00 264 0.000000e+00 0.00 3.671789e+07 3.659972e+07 118163.89 NULL
2020 Dept Of Environment Protection Administrative Horticulturist 110000.00000 1.100000e+05 82.11 8.211000e+01 82.110 2.00 1 8.211000e+01 82.11 1.100821e+05 1.100821e+05 0.00 NULL
2020 Dept Of Environment Protection Administrative Landscape Architect 145230.00000 1.452300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.452300e+05 1.452300e+05 0.00 NULL
2020 Dept Of Environment Protection Administrative Manager 158335.25000 6.333410e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.333410e+05 6.333410e+05 0.00 NULL
2020 Dept Of Environment Protection Administrative Procurement Analyst 107472.50000 2.149450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.149450e+05 2.149450e+05 0.00 NULL
2020 Dept Of Environment Protection Administrative Procurement Analyst-Non-Mgrl 79062.35484 2.450933e+06 117084.31 3.776913e+03 414.140 2420.25 31 4.141400e+02 12838.34 2.568017e+06 2.463771e+06 104245.97 NULL
2020 Dept Of Environment Protection Administrative Project Manager 116930.19500 1.987813e+07 237736.77 1.398452e+03 0.000 3602.75 170 0.000000e+00 0.00 2.011587e+07 1.987813e+07 237736.77 NULL
2020 Dept Of Environment Protection Administrative Public Health Sanitarian 130565.16667 1.566782e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.566782e+06 1.566782e+06 0.00 NULL
2020 Dept Of Environment Protection Administrative Public Information Specialist 139408.75000 5.576350e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.576350e+05 5.576350e+05 0.00 NULL
2020 Dept Of Environment Protection Administrative Quality Assurance Specialist 98918.16667 5.935090e+05 50645.51 8.440918e+03 957.705 899.75 6 9.577050e+02 5746.23 6.441545e+05 5.992552e+05 44899.28 NULL
2020 Dept Of Environment Protection Administrative Real Property Manager 123438.00000 3.703140e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.703140e+05 3.703140e+05 0.00 NULL
2020 Dept Of Environment Protection Administrative Staff Analyst 119818.79661 1.413862e+07 238013.54 2.017064e+03 0.000 3017.50 118 0.000000e+00 0.00 1.437663e+07 1.413862e+07 238013.54 NULL
2020 Dept Of Environment Protection Administrative Storekeeper 117173.50000 2.343470e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.343470e+05 2.343470e+05 0.00 NULL
2020 Dept Of Environment Protection Administrative Supervisor Of Building Maintenance 123537.00000 1.235370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.235370e+05 1.235370e+05 0.00 NULL
2020 Dept Of Environment Protection Agency Attorney 96383.35714 4.048101e+06 28055.62 6.679910e+02 0.000 406.75 42 0.000000e+00 0.00 4.076157e+06 4.048101e+06 28055.62 NULL
2020 Dept Of Environment Protection Agency Attorney Interne 63576.40000 3.178820e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.178820e+05 3.178820e+05 0.00 NULL
2020 Dept Of Environment Protection Air Pollution Inspector 47959.01695 2.829582e+06 345164.74 5.850250e+03 2329.710 9335.00 59 2.329710e+03 137452.89 3.174747e+06 2.967035e+06 207711.85 NULL
2020 Dept Of Environment Protection Apprentice 41433.91176 1.408753e+06 151057.35 4.442863e+03 3638.830 5459.25 34 3.638830e+03 123720.22 1.559810e+06 1.532473e+06 27337.13 NULL
2020 Dept Of Environment Protection Architect 95594.83333 5.735690e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.735690e+05 5.735690e+05 0.00 NULL
2020 Dept Of Environment Protection Assistant Architect 69152.14286 4.840650e+05 6.77 9.671429e-01 0.000 0.00 7 0.000000e+00 0.00 4.840718e+05 4.840650e+05 6.77 NULL
2020 Dept Of Environment Protection Assistant Chemical Engineer 65942.70000 1.978281e+06 134132.66 4.471089e+03 689.705 3151.75 30 6.897050e+02 20691.15 2.112414e+06 1.998972e+06 113441.51 NULL
2020 Dept Of Environment Protection Assistant Civil Engineer 69249.09091 6.855660e+06 415172.92 4.193666e+03 48.810 8470.50 99 4.881000e+01 4832.19 7.270833e+06 6.860492e+06 410340.73 NULL
2020 Dept Of Environment Protection Assistant Commissioner 192933.40000 9.646670e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.646670e+05 9.646670e+05 0.00 NULL
2020 Dept Of Environment Protection Assistant Electrical Engineer 66495.02632 2.526811e+06 71448.14 1.880214e+03 0.000 1808.75 38 0.000000e+00 0.00 2.598259e+06 2.526811e+06 71448.14 NULL
2020 Dept Of Environment Protection Assistant Environmental Engineer 66251.92308 4.306375e+06 109155.99 1.679323e+03 0.000 2434.25 65 0.000000e+00 0.00 4.415531e+06 4.306375e+06 109155.99 NULL
2020 Dept Of Environment Protection Assistant Landscape Architect 64491.80000 3.224590e+05 1001.82 2.003640e+02 0.000 21.75 5 0.000000e+00 0.00 3.234608e+05 3.224590e+05 1001.82 NULL
2020 Dept Of Environment Protection Assistant Mechanical Engineer 66716.96512 5.737659e+06 232902.83 2.708172e+03 483.135 5807.00 86 4.831350e+02 41549.61 5.970562e+06 5.779209e+06 191353.22 NULL
2020 Dept Of Environment Protection Assoc Water Use Inspector-Mgrl 164800.00000 1.648000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.648000e+05 1.648000e+05 0.00 NULL
2020 Dept Of Environment Protection Associate Air Pollution Inspr 65788.79688 1.052621e+06 366309.77 2.289436e+04 20041.750 7380.75 16 2.004175e+04 320668.00 1.418931e+06 1.373289e+06 45641.77 NULL
2020 Dept Of Environment Protection Associate Chemist 71892.34545 1.186224e+07 971912.05 5.890376e+03 899.770 23685.25 165 8.997700e+02 148462.05 1.283415e+07 1.201070e+07 823450.00 NULL
2020 Dept Of Environment Protection Associate Housing Development Specialist 95566.57143 6.689660e+05 16079.44 2.297063e+03 16.960 227.25 7 1.696000e+01 118.72 6.850454e+05 6.690847e+05 15960.72 NULL
2020 Dept Of Environment Protection Associate Investigator 79185.50000 1.583710e+05 213.79 1.068950e+02 106.895 5.50 2 1.068950e+02 213.79 1.585848e+05 1.585848e+05 0.00 NULL
2020 Dept Of Environment Protection Associate Laboratory Microbiologist 73331.16667 1.759948e+06 98445.51 4.101896e+03 1457.475 1900.00 24 1.457475e+03 34979.40 1.858394e+06 1.794927e+06 63466.11 NULL
2020 Dept Of Environment Protection Associate Park Service Worker 45432.00000 2.725920e+05 8371.56 1.395260e+03 1191.280 259.50 6 1.191280e+03 7147.68 2.809636e+05 2.797397e+05 1223.88 NULL
2020 Dept Of Environment Protection Associate Project Manager 88636.40964 1.489092e+07 237216.02 1.412000e+03 0.000 4664.25 168 0.000000e+00 0.00 1.512813e+07 1.489092e+07 237216.02 NULL
2020 Dept Of Environment Protection Associate Public Health Sanitarian 80645.26316 3.064520e+06 59614.07 1.568791e+03 27.560 1054.50 38 2.756000e+01 1047.28 3.124134e+06 3.065567e+06 58566.79 NULL
2020 Dept Of Environment Protection Associate Public Records Officer 76917.50000 1.538350e+05 4189.70 2.094850e+03 2094.850 82.50 2 2.094850e+03 4189.70 1.580247e+05 1.580247e+05 0.00 NULL
2020 Dept Of Environment Protection Associate Quality Assurance Specialist 82921.00000 8.292100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.292100e+04 8.292100e+04 0.00 NULL
2020 Dept Of Environment Protection Associate Staff Analyst 81654.00220 3.347814e+06 46905.94 1.144047e+03 0.000 922.00 41 0.000000e+00 0.00 3.394720e+06 3.347814e+06 46905.94 NULL
2020 Dept Of Environment Protection Associate Water Use Inpector 71034.96154 3.693818e+06 551424.83 1.060432e+04 10240.645 10595.50 52 1.024065e+04 532513.54 4.245243e+06 4.226332e+06 18911.29 NULL
2020 Dept Of Environment Protection Auto Mechanic NA NA 87853.52 8.785352e+03 6973.305 1280.25 10 6.973305e+03 69733.05 NA NA NA NULL
2020 Dept Of Environment Protection Bricklayer NA NA 27326.07 1.366303e+04 13663.035 365.00 2 1.366303e+04 27326.07 NA NA NA NULL
2020 Dept Of Environment Protection Captain 93618.54545 1.029804e+06 190241.86 1.729471e+04 12537.610 2825.75 11 1.253761e+04 137913.71 1.220046e+06 1.167718e+06 52328.15 NULL
2020 Dept Of Environment Protection Carpenter NA NA 131026.12 1.871802e+04 20145.930 1526.00 7 1.871802e+04 131026.12 NA NA NA NULL
2020 Dept Of Environment Protection Certified It Administrator 114371.61538 2.973662e+06 287081.97 1.104161e+04 3485.555 3471.00 26 3.485555e+03 90624.43 3.260744e+06 3.064286e+06 196457.54 NULL
2020 Dept Of Environment Protection Certified It Developer 106115.74781 1.697852e+06 17465.36 1.091585e+03 0.000 230.25 16 0.000000e+00 0.00 1.715317e+06 1.697852e+06 17465.36 NULL
2020 Dept Of Environment Protection Chemical Engineer 101209.00000 2.024180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.024180e+05 2.024180e+05 0.00 NULL
2020 Dept Of Environment Protection Chemical Engineering Intern 53170.00000 2.126800e+05 2982.22 7.455550e+02 370.045 100.25 4 3.700450e+02 1480.18 2.156622e+05 2.141602e+05 1502.04 NULL
2020 Dept Of Environment Protection Chief Marine Engineer 87792.00000 7.901280e+05 324156.36 3.601737e+04 36213.930 5155.50 9 3.601737e+04 324156.36 1.114284e+06 1.114284e+06 0.00 NULL
2020 Dept Of Environment Protection City Custodial Assistant 40372.00000 4.037200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.037200e+04 4.037200e+04 0.00 NULL
2020 Dept Of Environment Protection City Laborer NA NA 120236.09 8.015739e+03 4168.760 1959.50 15 4.168760e+03 62531.40 NA NA NA NULL
2020 Dept Of Environment Protection City Park Worker 19462.77985 1.907352e+06 142046.43 1.449453e+03 752.015 5652.98 98 7.520150e+02 73697.47 2.049399e+06 1.981050e+06 68348.96 NULL
2020 Dept Of Environment Protection City Planner 78331.65625 2.506613e+06 31824.27 9.945084e+02 0.000 666.75 32 0.000000e+00 0.00 2.538437e+06 2.506613e+06 31824.27 NULL
2020 Dept Of Environment Protection City Planning Technician 42822.66667 1.284680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.284680e+05 1.284680e+05 0.00 NULL
2020 Dept Of Environment Protection City Research Scientist 89902.03958 9.529616e+06 155194.53 1.464099e+03 0.000 3549.00 106 0.000000e+00 0.00 9.684811e+06 9.529616e+06 155194.53 NULL
2020 Dept Of Environment Protection City Seasonal Aide 15739.57600 4.092290e+05 1019.01 3.919269e+01 0.000 49.00 26 0.000000e+00 0.00 4.102480e+05 4.092290e+05 1019.01 NULL
2020 Dept Of Environment Protection Civil Engineer 94162.67857 2.636555e+06 12149.27 4.339025e+02 0.000 299.75 28 0.000000e+00 0.00 2.648704e+06 2.636555e+06 12149.27 NULL
2020 Dept Of Environment Protection Civil Engineering Intern 53573.14286 1.500048e+06 89214.03 3.186215e+03 0.000 2339.50 28 0.000000e+00 0.00 1.589262e+06 1.500048e+06 89214.03 NULL
2020 Dept Of Environment Protection Claim Specialist 48344.20000 2.417210e+05 1371.10 2.742200e+02 0.000 43.50 5 0.000000e+00 0.00 2.430921e+05 2.417210e+05 1371.10 NULL
2020 Dept Of Environment Protection Clerical Aide 41171.00000 4.117100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.117100e+04 4.117100e+04 0.00 NULL
2020 Dept Of Environment Protection Clerical Associate 40251.01521 1.525513e+07 600507.32 1.584452e+03 0.000 18092.50 379 0.000000e+00 0.00 1.585564e+07 1.525513e+07 600507.32 NULL
2020 Dept Of Environment Protection College Aide 11081.36258 6.205563e+05 0.00 0.000000e+00 0.000 0.00 56 0.000000e+00 0.00 6.205563e+05 6.205563e+05 0.00 NULL
2020 Dept Of Environment Protection Commissioner Of Environmental Protection 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2020 Dept Of Environment Protection Community Assistant 33293.09870 7.990344e+05 16159.39 6.733079e+02 102.360 645.50 24 1.023600e+02 2456.64 8.151938e+05 8.014910e+05 13702.75 NULL
2020 Dept Of Environment Protection Community Associate 53305.81037 2.985125e+06 132822.75 2.371835e+03 221.460 3629.85 56 2.214600e+02 12401.76 3.117948e+06 2.997527e+06 120420.99 NULL
2020 Dept Of Environment Protection Community Coordinator 71486.95588 4.861113e+06 188179.94 2.767352e+03 0.000 3555.75 68 0.000000e+00 0.00 5.049293e+06 4.861113e+06 188179.94 NULL
2020 Dept Of Environment Protection Community Service Aide 34410.33333 1.032310e+05 592.34 1.974467e+02 0.000 24.50 3 0.000000e+00 0.00 1.038233e+05 1.032310e+05 592.34 NULL
2020 Dept Of Environment Protection Computer Aide-Non-Spvr 52079.40000 2.603970e+05 3905.99 7.811980e+02 0.000 109.50 5 0.000000e+00 0.00 2.643030e+05 2.603970e+05 3905.99 NULL
2020 Dept Of Environment Protection Computer Associate 80539.20050 4.832352e+06 274855.44 4.580924e+03 110.730 5149.75 60 1.107300e+02 6643.80 5.107207e+06 4.838996e+06 268211.64 NULL
2020 Dept Of Environment Protection Computer Programmer Analyst 61265.11136 6.739162e+05 15091.01 1.371910e+03 0.000 379.25 11 0.000000e+00 0.00 6.890072e+05 6.739162e+05 15091.01 NULL
2020 Dept Of Environment Protection Computer Service Technician 55235.00000 1.104700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.104700e+05 1.104700e+05 0.00 NULL
2020 Dept Of Environment Protection Computer Specialist 103966.08632 9.668846e+06 233420.44 2.509897e+03 0.000 3521.50 93 0.000000e+00 0.00 9.902266e+06 9.668846e+06 233420.44 NULL
2020 Dept Of Environment Protection Computer Systems Manager 129902.45455 1.428927e+06 280.07 2.546091e+01 0.000 3.75 11 0.000000e+00 0.00 1.429207e+06 1.428927e+06 280.07 NULL
2020 Dept Of Environment Protection Confidential Asst To The Executive Deputy Commissioner 118167.00000 1.181670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.181670e+05 1.181670e+05 0.00 NULL
2020 Dept Of Environment Protection Construction Laborer NA NA 5222993.63 1.554462e+04 12893.020 81743.32 336 1.289302e+04 4332054.72 NA NA NA NULL
2020 Dept Of Environment Protection Construction Project Manager 76397.90244 3.132314e+06 259324.85 6.324996e+03 1112.450 4625.00 41 1.112450e+03 45610.45 3.391639e+06 3.177924e+06 213714.40 NULL
2020 Dept Of Environment Protection Construction Project Manager Intern 62260.00000 6.226000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.226000e+04 6.226000e+04 0.00 NULL
2020 Dept Of Environment Protection Counsel 225145.00000 2.251450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.251450e+05 2.251450e+05 0.00 NULL
2020 Dept Of Environment Protection Crane Operator Ampes NA NA 73435.74 7.343574e+04 73435.740 522.25 1 7.343574e+04 73435.74 NA NA NA NULL
2020 Dept Of Environment Protection Custodian 38292.85000 1.072200e+06 59850.12 2.137504e+03 1092.730 2099.25 28 1.092730e+03 30596.44 1.132050e+06 1.102796e+06 29253.68 NULL
2020 Dept Of Environment Protection Customer Information Representative Ma L 1549 64710.75938 5.176861e+05 44358.28 5.544785e+03 2594.470 849.25 8 2.594470e+03 20755.76 5.620444e+05 5.384418e+05 23602.52 NULL
2020 Dept Of Environment Protection Deputy Commissioner 221050.66667 1.326304e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.326304e+06 1.326304e+06 0.00 NULL
2020 Dept Of Environment Protection Deputy Commissioner Of It 231796.00000 2.317960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.317960e+05 2.317960e+05 0.00 NULL
2020 Dept Of Environment Protection Director Of Noise Abatement 184158.00000 1.841580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.841580e+05 1.841580e+05 0.00 NULL
2020 Dept Of Environment Protection Director Of Technical Services 155738.33333 4.672150e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.672150e+05 4.672150e+05 0.00 NULL
2020 Dept Of Environment Protection District Supervisor 101171.61538 2.630462e+06 944293.82 3.631899e+04 38798.895 12660.00 26 3.631899e+04 944293.82 3.574756e+06 3.574756e+06 0.00 NULL
2020 Dept Of Environment Protection Economist 68000.00000 6.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.800000e+04 6.800000e+04 0.00 NULL
2020 Dept Of Environment Protection Electrical Engineer 98947.83333 5.936870e+05 10829.97 1.804995e+03 345.085 180.75 6 3.450850e+02 2070.51 6.045170e+05 5.957575e+05 8759.46 NULL
2020 Dept Of Environment Protection Electrical Engineering Intern 53772.50000 2.150900e+05 85.38 2.134500e+01 0.000 3.00 4 0.000000e+00 0.00 2.151754e+05 2.150900e+05 85.38 NULL
2020 Dept Of Environment Protection Electrician NA NA 1787332.28 1.823808e+04 11012.980 20439.25 98 1.101298e+04 1079272.04 NA NA NA NULL
2020 Dept Of Environment Protection Electrician’s Helper NA NA 504089.73 9.884112e+03 5854.000 8890.75 51 5.854000e+03 298554.00 NA NA NA NULL
2020 Dept Of Environment Protection Engineering Technician 55094.95238 4.627976e+06 687195.73 8.180902e+03 6761.420 18591.48 84 6.761420e+03 567959.28 5.315172e+06 5.195935e+06 119236.45 NULL
2020 Dept Of Environment Protection Environmental Engineer 104113.00000 3.123390e+05 5652.13 1.884043e+03 2386.480 100.50 3 1.884043e+03 5652.13 3.179911e+05 3.179911e+05 0.00 NULL
2020 Dept Of Environment Protection Environmental Engineering Intern 53546.42857 1.124475e+06 37720.39 1.796209e+03 14.230 968.00 21 1.423000e+01 298.83 1.162195e+06 1.124774e+06 37421.56 NULL
2020 Dept Of Environment Protection Environmental Police Officer 59705.06224 1.438892e+07 764677.51 3.172936e+03 866.870 22806.69 241 8.668700e+02 208915.67 1.515360e+07 1.459784e+07 555761.84 NULL
2020 Dept Of Environment Protection Environmental Police Officer-Managerial 140725.30000 1.407253e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.407253e+06 1.407253e+06 0.00 NULL
2020 Dept Of Environment Protection Executive Agency Counsel 161004.29167 3.864103e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 3.864103e+06 3.864103e+06 0.00 NULL
2020 Dept Of Environment Protection Executive Asst To The Commissioner 113300.00000 1.133000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133000e+05 1.133000e+05 0.00 NULL
2020 Dept Of Environment Protection Executive Chief Of Staff 180472.00000 1.804720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.804720e+05 1.804720e+05 0.00 NULL
2020 Dept Of Environment Protection Executive Program Specialist 130082.85714 9.105800e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.105800e+05 9.105800e+05 0.00 NULL
2020 Dept Of Environment Protection Forester 53560.00000 5.356000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.356000e+04 5.356000e+04 0.00 NULL
2020 Dept Of Environment Protection Gardener 51899.61538 6.746950e+05 56358.89 4.335299e+03 1265.070 1348.75 13 1.265070e+03 16445.91 7.310539e+05 6.911409e+05 39912.98 NULL
2020 Dept Of Environment Protection Geologist 71017.20000 1.420344e+06 471.72 2.358600e+01 0.000 13.50 20 0.000000e+00 0.00 1.420816e+06 1.420344e+06 471.72 NULL
2020 Dept Of Environment Protection Graphic Artist 61530.50000 1.230610e+05 218.35 1.091750e+02 109.175 6.00 2 1.091750e+02 218.35 1.232794e+05 1.232794e+05 0.00 NULL
2020 Dept Of Environment Protection Helicopter Mechanic 48417.55675 9.683511e+04 1435.19 7.175950e+02 717.595 27.00 2 7.175950e+02 1435.19 9.827030e+04 9.827030e+04 0.00 NULL
2020 Dept Of Environment Protection Helicopter Pilot 84254.00000 1.685080e+05 1709.93 8.549650e+02 854.965 34.25 2 8.549650e+02 1709.93 1.702179e+05 1.702179e+05 0.00 NULL
2020 Dept Of Environment Protection Industrial Hygienist 61669.18966 3.576813e+06 271569.31 4.682229e+03 1024.715 9054.25 58 1.024715e+03 59433.47 3.848382e+06 3.636246e+06 212135.84 NULL
2020 Dept Of Environment Protection Instrumental Specialist 67695.65517 3.926348e+06 174096.52 3.001664e+03 2002.710 3825.75 58 2.002710e+03 116157.18 4.100445e+06 4.042505e+06 57939.34 NULL
2020 Dept Of Environment Protection Instrumental Specialist Trainee 39013.14286 2.730920e+05 12275.45 1.753636e+03 194.410 444.50 7 1.944100e+02 1360.87 2.853675e+05 2.744529e+05 10914.58 NULL
2020 Dept Of Environment Protection Investigator 44594.00000 1.783760e+05 32889.79 8.222448e+03 403.915 1067.25 4 4.039150e+02 1615.66 2.112658e+05 1.799917e+05 31274.13 NULL
2020 Dept Of Environment Protection It Project Specialist 139712.50000 2.794250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.794250e+05 2.794250e+05 0.00 NULL
2020 Dept Of Environment Protection It Service Management Specialist 105860.50000 2.117210e+05 331.60 1.658000e+02 165.800 6.25 2 1.658000e+02 331.60 2.120526e+05 2.120526e+05 0.00 NULL
2020 Dept Of Environment Protection Laboratory Associate 48879.00000 4.887900e+04 7343.13 7.343130e+03 7343.130 247.00 1 7.343130e+03 7343.13 5.622213e+04 5.622213e+04 0.00 NULL
2020 Dept Of Environment Protection Laboratory Helper 39689.16667 2.381350e+05 13638.70 2.273117e+03 880.610 505.25 6 8.806100e+02 5283.66 2.517737e+05 2.434187e+05 8355.04 NULL
2020 Dept Of Environment Protection Laboratory Microbiologist 55104.23077 7.163550e+05 14403.88 1.107991e+03 506.510 401.00 13 5.065100e+02 6584.63 7.307589e+05 7.229396e+05 7819.25 NULL
2020 Dept Of Environment Protection Landscape Architect 77921.00000 7.792100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.792100e+04 7.792100e+04 0.00 NULL
2020 Dept Of Environment Protection Machinist NA NA 625766.91 1.009301e+04 4442.255 9464.50 62 4.442255e+03 275419.81 NA NA NA NULL
2020 Dept Of Environment Protection Machinist’s Helper NA NA 36608.16 2.614869e+03 1845.290 589.50 14 1.845290e+03 25834.06 NA NA NA NULL
2020 Dept Of Environment Protection Management Auditor 84057.00000 2.521710e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.521710e+05 2.521710e+05 0.00 NULL
2020 Dept Of Environment Protection Marine Electronics Technician 99613.00000 9.961300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.961300e+04 9.961300e+04 0.00 NULL
2020 Dept Of Environment Protection Marine Engineer 81461.12500 6.516890e+05 191078.60 2.388483e+04 22640.135 3267.50 8 2.264013e+04 181121.08 8.427676e+05 8.328101e+05 9957.52 NULL
2020 Dept Of Environment Protection Marine Oiler 68962.00000 6.206580e+05 215431.07 2.393679e+04 21470.310 4350.00 9 2.147031e+04 193232.79 8.360891e+05 8.138908e+05 22198.28 NULL
2020 Dept Of Environment Protection Mariner 68511.85714 1.438749e+06 232862.05 1.108867e+04 3642.080 4725.50 21 3.642080e+03 76483.68 1.671611e+06 1.515233e+06 156378.37 NULL
2020 Dept Of Environment Protection Mate 76523.13333 1.147847e+06 256973.18 1.713155e+04 13843.540 4648.00 15 1.384354e+04 207653.10 1.404820e+06 1.355500e+06 49320.08 NULL
2020 Dept Of Environment Protection Mechanical Engineer 91906.69231 1.194787e+06 15526.19 1.194322e+03 0.000 239.00 13 0.000000e+00 0.00 1.210313e+06 1.194787e+06 15526.19 NULL
2020 Dept Of Environment Protection Mechanical Engineering Intern 53541.31579 1.017285e+06 124188.53 6.536238e+03 844.660 3211.50 19 8.446600e+02 16048.54 1.141474e+06 1.033334e+06 108139.99 NULL
2020 Dept Of Environment Protection Motor Vehicle Operator 47269.22727 1.039923e+06 215498.19 9.795372e+03 9673.320 5821.50 22 9.673320e+03 212813.04 1.255421e+06 1.252736e+06 2685.15 NULL
2020 Dept Of Environment Protection Motor Vehicle Supervisor 57229.75000 2.289190e+05 22611.83 5.652958e+03 5191.460 564.75 4 5.191460e+03 20765.84 2.515308e+05 2.496848e+05 1845.99 NULL
2020 Dept Of Environment Protection New York City Public Service Fellow 44942.33333 2.696540e+05 1293.84 2.156400e+02 0.000 39.00 6 0.000000e+00 0.00 2.709478e+05 2.696540e+05 1293.84 NULL
2020 Dept Of Environment Protection Oiler NA NA 867169.93 1.156227e+04 7223.060 9230.50 75 7.223060e+03 541729.50 NA NA NA NULL
2020 Dept Of Environment Protection Painter NA NA 14354.88 7.177440e+03 7177.440 229.00 2 7.177440e+03 14354.88 NA NA NA NULL
2020 Dept Of Environment Protection Photographer 58488.00000 5.848800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.848800e+04 5.848800e+04 0.00 NULL
2020 Dept Of Environment Protection Plumber NA NA 400980.12 2.358707e+04 15467.470 3817.75 17 1.546747e+04 262946.99 NA NA NA NULL
2020 Dept Of Environment Protection Plumber’s Helper NA NA 57002.94 7.125368e+03 4221.540 773.00 8 4.221540e+03 33772.32 NA NA NA NULL
2020 Dept Of Environment Protection Port Marine Engineer 98303.50000 1.966070e+05 28691.22 1.434561e+04 14345.610 432.50 2 1.434561e+04 28691.22 2.252982e+05 2.252982e+05 0.00 NULL
2020 Dept Of Environment Protection Principal Administrative Associate - Non Supvr 62623.67099 1.966383e+07 774937.36 2.467953e+03 0.995 17406.25 314 9.950000e-01 312.43 2.043877e+07 1.966415e+07 774624.93 NULL
2020 Dept Of Environment Protection Procurement Analyst 63002.21634 3.276115e+06 55333.88 1.064113e+03 0.000 1206.25 52 0.000000e+00 0.00 3.331449e+06 3.276115e+06 55333.88 NULL
2020 Dept Of Environment Protection Project Manager 69106.50000 2.349621e+06 50201.87 1.476526e+03 0.000 1152.00 34 0.000000e+00 0.00 2.399823e+06 2.349621e+06 50201.87 NULL
2020 Dept Of Environment Protection Project Manager Intern# 51535.00000 4.638150e+05 2341.01 2.601122e+02 0.000 70.50 9 0.000000e+00 0.00 4.661560e+05 4.638150e+05 2341.01 NULL
2020 Dept Of Environment Protection Public Health Epidemiologist 63806.00000 1.276120e+05 13737.38 6.868690e+03 6868.690 286.50 2 6.868690e+03 13737.38 1.413494e+05 1.413494e+05 0.00 NULL
2020 Dept Of Environment Protection Public Health Sanitarian 61278.23077 7.966170e+05 43232.05 3.325542e+03 2181.070 944.25 13 2.181070e+03 28353.91 8.398491e+05 8.249709e+05 14878.14 NULL
2020 Dept Of Environment Protection Public Records Aide 45420.57143 3.179440e+05 5749.99 8.214271e+02 0.000 199.00 7 0.000000e+00 0.00 3.236940e+05 3.179440e+05 5749.99 NULL
2020 Dept Of Environment Protection Public Records Officer 50706.00000 5.070600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.070600e+04 5.070600e+04 0.00 NULL
2020 Dept Of Environment Protection Quality Assurance Specialist 60328.00000 6.032800e+04 17569.83 1.756983e+04 17569.830 427.50 1 1.756983e+04 17569.83 7.789783e+04 7.789783e+04 0.00 NULL
2020 Dept Of Environment Protection Radio Repair Mechanic NA NA 24780.35 2.478035e+04 24780.350 315.00 1 2.478035e+04 24780.35 NA NA NA NULL
2020 Dept Of Environment Protection Research Assistant 45654.16263 1.369625e+05 5991.31 1.997103e+03 2153.520 161.00 3 1.997103e+03 5991.31 1.429538e+05 1.429538e+05 0.00 NULL
2020 Dept Of Environment Protection Scientist 67463.40260 5.194682e+06 260445.04 3.382403e+03 564.190 5590.25 77 5.641900e+02 43442.63 5.455127e+06 5.238125e+06 217002.41 NULL
2020 Dept Of Environment Protection Secretary 52924.13964 3.704690e+05 1683.85 2.405500e+02 0.000 56.00 7 0.000000e+00 0.00 3.721528e+05 3.704690e+05 1683.85 NULL
2020 Dept Of Environment Protection Secretary To The Exec Deputy Commissioner 64192.00000 1.283840e+05 8894.46 4.447230e+03 4447.230 243.50 2 4.447230e+03 8894.46 1.372785e+05 1.372785e+05 0.00 NULL
2020 Dept Of Environment Protection Senior Adviser To The Commissioner 154500.00000 1.545000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.545000e+05 1.545000e+05 0.00 NULL
2020 Dept Of Environment Protection Senior Sewage Treatment Worker NA NA 3121013.36 1.126720e+04 7754.400 45563.50 277 7.754400e+03 2147968.80 NA NA NA NULL
2020 Dept Of Environment Protection Senior Stationary Engineer NA NA 2629342.71 4.108348e+04 44698.050 23884.25 64 4.108348e+04 2629342.71 NA NA NA NULL
2020 Dept Of Environment Protection Sewage Treatment Worker NA NA 8852552.68 1.061457e+04 6035.240 140979.23 834 6.035240e+03 5033390.16 NA NA NA NULL
2020 Dept Of Environment Protection Staff Analyst 63286.33757 2.215022e+06 17926.89 5.121969e+02 0.000 431.75 35 0.000000e+00 0.00 2.232949e+06 2.215022e+06 17926.89 NULL
2020 Dept Of Environment Protection Staff Analyst Trainee 41894.36667 1.256831e+05 1116.75 3.722500e+02 0.000 40.50 3 0.000000e+00 0.00 1.267999e+05 1.256831e+05 1116.75 NULL
2020 Dept Of Environment Protection Stationary Engineer NA NA 4947221.46 2.019274e+04 13099.530 53028.50 245 1.309953e+04 3209384.85 NA NA NA NULL
2020 Dept Of Environment Protection Statistician 52325.00000 1.046500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.046500e+05 1.046500e+05 0.00 NULL
2020 Dept Of Environment Protection Stock Worker 38499.66667 1.154990e+05 12733.86 4.244620e+03 98.050 458.75 3 9.805000e+01 294.15 1.282329e+05 1.157931e+05 12439.71 NULL
2020 Dept Of Environment Protection Strategic Initiative Specialist 108886.28571 7.622040e+05 7773.69 1.110527e+03 0.000 120.25 7 0.000000e+00 0.00 7.699777e+05 7.622040e+05 7773.69 NULL
2020 Dept Of Environment Protection Summer College Intern 3857.13175 2.429993e+05 0.00 0.000000e+00 0.000 0.00 63 0.000000e+00 0.00 2.429993e+05 2.429993e+05 0.00 NULL
2020 Dept Of Environment Protection Summer Graduate Intern 4990.11200 4.990112e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.990112e+04 4.990112e+04 0.00 NULL
2020 Dept Of Environment Protection Superintendent Of Water And Sewer Systems 136547.50000 3.550235e+06 76133.61 2.928216e+03 0.000 1151.00 26 0.000000e+00 0.00 3.626369e+06 3.550235e+06 76133.61 NULL
2020 Dept Of Environment Protection Supervising Special Officer 55853.00000 5.585300e+04 21099.54 2.109954e+04 21099.540 530.00 1 2.109954e+04 21099.54 7.695254e+04 7.695254e+04 0.00 NULL
2020 Dept Of Environment Protection Supervisor 87044.07438 2.106467e+07 3946604.25 1.630828e+04 11966.525 58749.25 242 1.196652e+04 2895899.05 2.501127e+07 2.396057e+07 1050705.20 NULL
2020 Dept Of Environment Protection Supervisor Bricklayer NA NA 8968.44 8.968440e+03 8968.440 104.75 1 8.968440e+03 8968.44 NA NA NA NULL
2020 Dept Of Environment Protection Supervisor Carpenter NA NA 23064.45 2.306445e+04 23064.450 254.25 1 2.306445e+04 23064.45 NA NA NA NULL
2020 Dept Of Environment Protection Supervisor Electrician NA NA 1030216.73 3.434056e+04 30701.250 10738.00 30 3.070125e+04 921037.50 NA NA NA NULL
2020 Dept Of Environment Protection Supervisor Of Mechanics 125054.00000 1.750756e+06 371972.61 2.656947e+04 18313.710 3951.50 14 1.831371e+04 256391.94 2.122729e+06 2.007148e+06 115580.67 NULL
2020 Dept Of Environment Protection Supervisor Of Motor Transport 74301.00000 7.430100e+04 62237.59 6.223759e+04 62237.590 1190.50 1 6.223759e+04 62237.59 1.365386e+05 1.365386e+05 0.00 NULL
2020 Dept Of Environment Protection Supervisor Of Stock Workers 48095.34211 1.827623e+06 206559.01 5.435763e+03 2511.325 5974.25 38 2.511325e+03 95430.35 2.034182e+06 1.923053e+06 111128.66 NULL
2020 Dept Of Environment Protection Supervisor Painter NA NA 6196.86 3.098430e+03 3098.430 86.50 2 3.098430e+03 6196.86 NA NA NA NULL
2020 Dept Of Environment Protection Supervisor Plumber NA NA 187749.67 3.129161e+04 23235.680 1691.50 6 2.323568e+04 139414.08 NA NA NA NULL
2020 Dept Of Environment Protection Surveyor 77641.10000 7.764110e+05 1585.08 1.585080e+02 0.000 30.25 10 0.000000e+00 0.00 7.779961e+05 7.764110e+05 1585.08 NULL
2020 Dept Of Environment Protection Telecommunication Manager 147868.00000 1.478680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.478680e+05 1.478680e+05 0.00 NULL
2020 Dept Of Environment Protection Telecommunications Associate 80447.47062 7.240272e+05 99780.84 1.108676e+04 4051.640 1644.00 9 4.051640e+03 36464.76 8.238081e+05 7.604920e+05 63316.08 NULL
2020 Dept Of Environment Protection Water Use Inspector 47976.77778 3.022537e+06 257004.82 4.079442e+03 1107.110 7846.43 63 1.107110e+03 69747.93 3.279542e+06 3.092285e+06 187256.89 NULL
2020 Dept Of Environment Protection Watershed Maintainer 54119.34483 1.255569e+07 1050457.00 4.527832e+03 1375.630 25289.65 232 1.375630e+03 319146.16 1.360614e+07 1.287483e+07 731310.84 NULL
2020 Dept Of Environment Protection Welder NA NA 915.28 9.152800e+02 915.280 8.50 1 9.152800e+02 915.28 NA NA NA NULL
2020 Dept Of Health/Mental Hygiene *Asist Systms Analyst 73482.00000 7.348200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.348200e+04 7.348200e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene *Assist Coordinating Manager 53678.71429 3.757510e+05 666.18 9.516857e+01 0.000 20.00 7 0.000000e+00 0.00 3.764172e+05 3.757510e+05 666.18 NULL
2020 Dept Of Health/Mental Hygiene *Associate Executive Director 127273.66667 3.818210e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.818210e+05 3.818210e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene *Attorney At Law 121095.00000 2.421900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.421900e+05 2.421900e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene *Certified Local Area Network Administrator 101820.00000 1.018200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.018200e+05 1.018200e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene *Coordinating Manager 71003.14286 4.970220e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.970220e+05 4.970220e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene *Custodial Assistant 41592.33333 1.247770e+05 8026.74 2.675580e+03 3846.860 248.57 3 2.675580e+03 8026.74 1.328037e+05 1.328037e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene *Director Of Health Care Program Planning/Analysis 110265.66667 3.307970e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.307970e+05 3.307970e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene *Senior Staff Officer 88422.00000 8.842200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.842200e+04 8.842200e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene *Senior Systems Analyst 47995.00000 4.799500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.799500e+04 4.799500e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene *Sr Management Consultant 85795.66667 1.029548e+06 872.04 7.267000e+01 0.000 21.50 12 0.000000e+00 0.00 1.030420e+06 1.029548e+06 872.04 NULL
2020 Dept Of Health/Mental Hygiene *Sr Systems Analyst - Edp 63845.00000 6.384500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.384500e+04 6.384500e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene *Supvsng Systems Analyst 61788.33333 1.853650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.853650e+05 1.853650e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene *Systems Analyst 48010.18182 5.281120e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.281120e+05 5.281120e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Accountant 69580.31935 4.522721e+06 69906.43 1.075484e+03 0.000 1590.25 65 0.000000e+00 0.00 4.592627e+06 4.522721e+06 69906.43 NULL
2020 Dept Of Health/Mental Hygiene Adm Manager-Non-Mgrl 81585.02913 8.403258e+06 159583.54 1.549355e+03 0.000 2759.50 103 0.000000e+00 0.00 8.562842e+06 8.403258e+06 159583.54 NULL
2020 Dept Of Health/Mental Hygiene Admin Community Relations Specialist 77275.80645 2.395550e+06 116078.60 3.744471e+03 0.000 1831.00 31 0.000000e+00 0.00 2.511629e+06 2.395550e+06 116078.60 NULL
2020 Dept Of Health/Mental Hygiene Admin Contract Specialist 131226.92857 1.837177e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.837177e+06 1.837177e+06 0.00 NULL
2020 Dept Of Health/Mental Hygiene Administrative Accountant 126554.50000 5.062180e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.062180e+05 5.062180e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Administrative Business Promotion Coordinator 116695.30769 1.517039e+06 4611.65 3.547423e+02 0.000 81.50 13 0.000000e+00 0.00 1.521651e+06 1.517039e+06 4611.65 NULL
2020 Dept Of Health/Mental Hygiene Administrative Community Relations Specialist 179338.50000 3.586770e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.586770e+05 3.586770e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Administrative Consultant 103686.66667 3.110600e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.110600e+05 3.110600e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Administrative Contract Specialist 95135.50000 1.522168e+06 74992.85 4.687053e+03 0.000 1144.00 16 0.000000e+00 0.00 1.597161e+06 1.522168e+06 74992.85 NULL
2020 Dept Of Health/Mental Hygiene Administrative Director Of Social Services 118450.00000 1.184500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.184500e+05 1.184500e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Administrative Investigator 69002.00000 1.380040e+05 18945.94 9.472970e+03 9472.970 440.75 2 9.472970e+03 18945.94 1.569499e+05 1.569499e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Administrative Labor Relations Analyst 123965.40000 6.198270e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.198270e+05 6.198270e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Administrative Management Auditor 124465.40000 6.223270e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.223270e+05 6.223270e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Administrative Manager 134725.66667 4.041770e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.041770e+05 4.041770e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Administrative Nutritionist 92000.00000 9.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.200000e+04 9.200000e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Administrative Printing Services Manager 147661.00000 1.476610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.476610e+05 1.476610e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Administrative Procurement Analyst 102183.00000 4.087320e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.087320e+05 4.087320e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Administrative Procurement Analyst-Non-Mgrl 90947.40000 1.818948e+06 15282.93 7.641465e+02 0.000 275.50 20 0.000000e+00 0.00 1.834231e+06 1.818948e+06 15282.93 NULL
2020 Dept Of Health/Mental Hygiene Administrative Project Manager 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Administrative Public Health Nurse 111285.32353 3.783701e+06 26328.74 7.743747e+02 0.000 382.75 34 0.000000e+00 0.00 3.810030e+06 3.783701e+06 26328.74 NULL
2020 Dept Of Health/Mental Hygiene Administrative Public Health Sanitarian 128796.28571 1.803148e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.803148e+06 1.803148e+06 0.00 NULL
2020 Dept Of Health/Mental Hygiene Administrative Public Information Specialist 114401.88235 1.944832e+06 870.32 5.119529e+01 0.000 16.50 17 0.000000e+00 0.00 1.945702e+06 1.944832e+06 870.32 NULL
2020 Dept Of Health/Mental Hygiene Administrative Quality Assurance Specialist 107300.00000 6.438000e+05 605.85 1.009750e+02 0.000 22.00 6 0.000000e+00 0.00 6.444058e+05 6.438000e+05 605.85 NULL
2020 Dept Of Health/Mental Hygiene Administrative Space Analyst 147002.00000 1.470020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.470020e+05 1.470020e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Administrative Staff Analyst 102655.05067 1.673277e+07 201002.06 1.233141e+03 0.000 2725.50 163 0.000000e+00 0.00 1.693378e+07 1.673277e+07 201002.06 NULL
2020 Dept Of Health/Mental Hygiene Administrative Storekeeper 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Administrative Supervisor Of Building Maintenance 100866.28571 7.060640e+05 -2.22 -3.171429e-01 0.000 0.00 7 -3.171429e-01 -2.22 7.060618e+05 7.060618e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Agency Attorney 92175.65263 3.502675e+06 7769.31 2.044555e+02 0.000 105.00 38 0.000000e+00 0.00 3.510444e+06 3.502675e+06 7769.31 NULL
2020 Dept Of Health/Mental Hygiene Agency Attorney Interne 63698.50000 1.273970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.273970e+05 1.273970e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Agency Chief Contracting Officer 160797.00000 1.607970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.607970e+05 1.607970e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Agency Deputy Medical Director 161800.33333 4.854010e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.854010e+05 4.854010e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Agency Medical Director 194312.20000 4.857805e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 4.857805e+06 4.857805e+06 0.00 NULL
2020 Dept Of Health/Mental Hygiene Architect 102885.50000 4.115420e+05 19476.15 4.869038e+03 827.625 204.50 4 8.276250e+02 3310.50 4.310182e+05 4.148525e+05 16165.65 NULL
2020 Dept Of Health/Mental Hygiene Assistant Architect 71310.00000 4.278600e+05 2392.74 3.987900e+02 0.000 54.25 6 0.000000e+00 0.00 4.302527e+05 4.278600e+05 2392.74 NULL
2020 Dept Of Health/Mental Hygiene Assistant Commissioner 191512.00000 1.915120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.915120e+05 1.915120e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Assistant Director Of Toxicology 123600.00000 1.236000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.236000e+05 1.236000e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Assistant Printing Press Operator 57290.45812 1.145809e+05 261.77 1.308850e+02 130.885 7.75 2 1.308850e+02 261.77 1.148427e+05 1.148427e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Associate Chemist 64953.50000 1.299070e+05 14710.55 7.355275e+03 7355.275 266.25 2 7.355275e+03 14710.55 1.446175e+05 1.446175e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Associate Contract Specialist 76171.00000 3.046840e+05 10.58 2.645000e+00 0.000 0.25 4 0.000000e+00 0.00 3.046946e+05 3.046840e+05 10.58 NULL
2020 Dept Of Health/Mental Hygiene Associate Investigator 65384.50000 2.615380e+05 1872.23 4.680575e+02 90.465 41.50 4 9.046500e+01 361.86 2.634102e+05 2.618999e+05 1510.37 NULL
2020 Dept Of Health/Mental Hygiene Associate Labor Relations Analyst 90408.66667 2.712260e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.712260e+05 2.712260e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Associate Laboratory Microbiologist 75699.26984 4.769054e+06 144605.39 2.295324e+03 115.820 3074.75 63 1.158200e+02 7296.66 4.913659e+06 4.776351e+06 137308.73 NULL
2020 Dept Of Health/Mental Hygiene Associate Project Manager 106880.00000 2.137600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.137600e+05 2.137600e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Associate Public Health Sanitarian 74843.32450 1.130134e+07 233722.90 1.547834e+03 0.000 6003.25 151 0.000000e+00 0.00 1.153506e+07 1.130134e+07 233722.90 NULL
2020 Dept Of Health/Mental Hygiene Associate Staff Analyst 82513.68817 3.383061e+06 48063.67 1.172285e+03 0.000 720.75 41 0.000000e+00 0.00 3.431125e+06 3.383061e+06 48063.67 NULL
2020 Dept Of Health/Mental Hygiene Asst Comm-Prgm Dev Revw-Hmh 167000.00000 1.670000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.670000e+05 1.670000e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Asst Commissioner 177208.33333 5.316250e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.316250e+05 5.316250e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Asst Commissioner For Agency Preparedness And Response 144000.00000 1.440000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.440000e+05 1.440000e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Asst Commissioner For Policy And Community Resilience 148164.00000 1.481640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.481640e+05 1.481640e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Asst Pb Hlth Adv 39476.35367 3.552872e+05 177.18 1.968667e+01 0.000 8.00 9 0.000000e+00 0.00 3.554644e+05 3.552872e+05 177.18 NULL
2020 Dept Of Health/Mental Hygiene Bookbinder 41878.75000 1.675150e+05 1695.50 4.238750e+02 380.155 59.25 4 3.801550e+02 1520.62 1.692105e+05 1.690356e+05 174.88 NULL
2020 Dept Of Health/Mental Hygiene Bookkeeper 60973.33333 1.829200e+05 21638.12 7.212707e+03 0.000 401.25 3 0.000000e+00 0.00 2.045581e+05 1.829200e+05 21638.12 NULL
2020 Dept Of Health/Mental Hygiene Carpenter NA NA 7126.74 7.126740e+03 7126.740 68.50 1 7.126740e+03 7126.74 NA NA NA NULL
2020 Dept Of Health/Mental Hygiene Caseworker 65920.00000 1.318400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.318400e+05 1.318400e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Certified It Administrator 107828.43472 1.940912e+06 147534.70 8.196372e+03 0.055 1852.50 18 5.500000e-02 0.99 2.088447e+06 1.940913e+06 147533.71 NULL
2020 Dept Of Health/Mental Hygiene Certified It Developer 99376.41667 2.385034e+06 12903.82 5.376592e+02 0.000 234.50 24 0.000000e+00 0.00 2.397938e+06 2.385034e+06 12903.82 NULL
2020 Dept Of Health/Mental Hygiene Chief City Medical Examiner 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene City Clinician 95370.53963 6.675938e+05 14726.95 2.103850e+03 2523.150 205.00 7 2.103850e+03 14726.95 6.823207e+05 6.823207e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene City Custodial Assistant 40082.91720 2.445058e+06 143592.89 2.353982e+03 1070.580 4516.25 61 1.070580e+03 65305.38 2.588651e+06 2.510363e+06 78287.51 NULL
2020 Dept Of Health/Mental Hygiene City Dentist 79587.20000 7.958720e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.958720e+04 7.958720e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene City Deputy Medical Director 147290.00000 1.472900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.472900e+05 1.472900e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene City Laborer NA NA 259509.67 1.526527e+04 11646.710 4657.50 17 1.164671e+04 197994.07 NA NA NA NULL
2020 Dept Of Health/Mental Hygiene City Medical Examiner 195015.58537 7.995639e+06 218056.54 5.318452e+03 0.000 2002.75 41 0.000000e+00 0.00 8.213696e+06 7.995639e+06 218056.54 NULL
2020 Dept Of Health/Mental Hygiene City Medical Specialist 124428.64846 1.542915e+07 522176.66 4.211102e+03 0.000 6248.25 124 0.000000e+00 0.00 1.595133e+07 1.542915e+07 522176.66 NULL
2020 Dept Of Health/Mental Hygiene City Mortuary Technician 41749.00000 1.669960e+06 340768.49 8.519212e+03 5572.580 10205.00 40 5.572580e+03 222903.20 2.010728e+06 1.892863e+06 117865.29 NULL
2020 Dept Of Health/Mental Hygiene City Pest Control Aide 36692.75509 9.173189e+05 5740.29 2.296116e+02 0.000 153.75 25 0.000000e+00 0.00 9.230592e+05 9.173189e+05 5740.29 NULL
2020 Dept Of Health/Mental Hygiene City Research Scientist 90670.28030 7.217354e+07 2243600.22 2.818593e+03 0.000 31646.25 796 0.000000e+00 0.00 7.441714e+07 7.217354e+07 2243600.22 NULL
2020 Dept Of Health/Mental Hygiene City Veterinarian 42119.83500 1.684793e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.684793e+05 1.684793e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Civil Engineer 92712.00000 9.271200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.271200e+04 9.271200e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Clerical Aide 34608.89679 4.845246e+05 3097.38 2.212414e+02 0.000 181.25 14 0.000000e+00 0.00 4.876219e+05 4.845246e+05 3097.38 NULL
2020 Dept Of Health/Mental Hygiene Clerical Associate 45420.36686 9.492857e+06 399815.93 1.912995e+03 0.000 11024.25 209 0.000000e+00 0.00 9.892673e+06 9.492857e+06 399815.93 NULL
2020 Dept Of Health/Mental Hygiene College Aide 8759.80127 1.760720e+06 0.00 0.000000e+00 0.000 0.00 201 0.000000e+00 0.00 1.760720e+06 1.760720e+06 0.00 NULL
2020 Dept Of Health/Mental Hygiene College Aide - Assignment Levels Ii And Iii 9018.38242 5.411029e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.411029e+04 5.411029e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Commissioner Of Health 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Community Assistant 38916.61509 2.062581e+06 18618.92 3.513004e+02 0.000 677.50 53 0.000000e+00 0.00 2.081200e+06 2.062581e+06 18618.92 NULL
2020 Dept Of Health/Mental Hygiene Community Associate 49466.86311 2.522810e+06 78477.43 1.538773e+03 0.000 2069.00 51 0.000000e+00 0.00 2.601287e+06 2.522810e+06 78477.43 NULL
2020 Dept Of Health/Mental Hygiene Community Coordinator 66307.19723 2.068785e+07 644943.21 2.067126e+03 0.000 12259.75 312 0.000000e+00 0.00 2.133279e+07 2.068785e+07 644943.21 NULL
2020 Dept Of Health/Mental Hygiene Community Service Aide 35319.00000 7.063800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.063800e+04 7.063800e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Computer Aide-Non-Spvr 49967.73333 7.495160e+05 636.40 4.242667e+01 0.000 14.50 15 0.000000e+00 0.00 7.501524e+05 7.495160e+05 636.40 NULL
2020 Dept Of Health/Mental Hygiene Computer Associate 68727.38593 4.604735e+06 146452.85 2.185863e+03 0.000 3076.75 67 0.000000e+00 0.00 4.751188e+06 4.604735e+06 146452.85 NULL
2020 Dept Of Health/Mental Hygiene Computer Operations Manager 112639.00000 1.126390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.126390e+05 1.126390e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Computer Programmer Analyst 64955.50000 2.598220e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.598220e+05 2.598220e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Computer Service Technician 51862.50455 5.704876e+05 37670.49 3.424590e+03 1240.660 998.50 11 1.240660e+03 13647.26 6.081580e+05 5.841348e+05 24023.23 NULL
2020 Dept Of Health/Mental Hygiene Computer Specialist 104463.72194 6.999069e+06 78736.56 1.175173e+03 0.000 1145.25 67 0.000000e+00 0.00 7.077806e+06 6.999069e+06 78736.56 NULL
2020 Dept Of Health/Mental Hygiene Computer Systems Manager 121143.12222 1.090288e+07 0.00 0.000000e+00 0.000 0.00 90 0.000000e+00 0.00 1.090288e+07 1.090288e+07 0.00 NULL
2020 Dept Of Health/Mental Hygiene Confidential Strategy Planner 84479.40000 4.223970e+05 25123.76 5.024752e+03 0.000 424.25 5 0.000000e+00 0.00 4.475208e+05 4.223970e+05 25123.76 NULL
2020 Dept Of Health/Mental Hygiene Construction Project Manager 106009.00000 1.060090e+05 1579.26 1.579260e+03 1579.260 20.00 1 1.579260e+03 1579.26 1.075883e+05 1.075883e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Consultant 77102.47619 4.857456e+06 4728.08 7.504889e+01 0.000 93.50 63 0.000000e+00 0.00 4.862184e+06 4.857456e+06 4728.08 NULL
2020 Dept Of Health/Mental Hygiene Consultant Public Health Nurse 84252.00000 1.179528e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.179528e+06 1.179528e+06 0.00 NULL
2020 Dept Of Health/Mental Hygiene Contract Specialist 61476.54286 2.151679e+06 17540.88 5.011680e+02 0.000 452.75 35 0.000000e+00 0.00 2.169220e+06 2.151679e+06 17540.88 NULL
2020 Dept Of Health/Mental Hygiene Counsel 221470.00000 2.214700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.214700e+05 2.214700e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Counselor 78122.00000 5.468540e+05 3880.68 5.543829e+02 0.000 69.00 7 0.000000e+00 0.00 5.507347e+05 5.468540e+05 3880.68 NULL
2020 Dept Of Health/Mental Hygiene Criminalist 78707.21778 2.085741e+07 1608960.38 6.071549e+03 3772.980 28361.75 265 3.772980e+03 999839.70 2.246637e+07 2.185725e+07 609120.68 NULL
2020 Dept Of Health/Mental Hygiene Criminalist Assistant Director Of Laboratory 134748.50000 1.886479e+06 9057.22 6.469443e+02 0.000 138.75 14 0.000000e+00 0.00 1.895536e+06 1.886479e+06 9057.22 NULL
2020 Dept Of Health/Mental Hygiene Criminalist Deputy Director Of Labatory 181312.66667 5.439380e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.439380e+05 5.439380e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Criminalist Director Of Laboratory 166106.66667 4.983200e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.983200e+05 4.983200e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Custodian 42986.95441 7.307782e+05 46834.49 2.754970e+03 1805.210 1455.50 17 1.805210e+03 30688.57 7.776127e+05 7.614668e+05 16145.92 NULL
2020 Dept Of Health/Mental Hygiene Customer Information Representative Ma L 1549 52306.80000 1.307670e+06 158347.01 6.333880e+03 1423.720 4766.25 25 1.423720e+03 35593.00 1.466017e+06 1.343263e+06 122754.01 NULL
2020 Dept Of Health/Mental Hygiene Cyber Security Analyst 76500.00000 7.650000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.650000e+04 7.650000e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Dental Hygienist 13664.84000 1.366484e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.366484e+04 1.366484e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Deputy Chief City Medical Examiner 241434.00000 2.414340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.414340e+05 2.414340e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Deputy Commissioner 221470.00000 6.644100e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.644100e+05 6.644100e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Deputy Commissioner For Administation 200762.00000 2.007620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.007620e+05 2.007620e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Deputy Director Of Emergency Management 147197.00000 1.471970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.471970e+05 1.471970e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Deputy Director Of Medicolegal Investigations 124685.36364 1.371539e+06 10786.89 9.806264e+02 0.000 182.67 11 0.000000e+00 0.00 1.382326e+06 1.371539e+06 10786.89 NULL
2020 Dept Of Health/Mental Hygiene Director 132357.60000 6.617880e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.617880e+05 6.617880e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Director Of Biodetection And Response 111468.00000 1.114680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.114680e+05 1.114680e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Director Of Community Engagement And Response 125790.50000 2.515810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.515810e+05 2.515810e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Director Of Crisis Assistance And Training 108498.00000 1.084980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.084980e+05 1.084980e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Director Of Forensic Biology 217359.00000 2.173590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.173590e+05 2.173590e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Director Of Interagency Planning 123046.00000 1.230460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.230460e+05 1.230460e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Director Of Nyc Medical Reserve Corps 109792.00000 1.097920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.097920e+05 1.097920e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Director Of Public Health Emergency Planning 104202.00000 1.042020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.042020e+05 1.042020e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Director Of Public Relations 147445.00000 1.474450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.474450e+05 1.474450e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Director Of Security 107104.00000 1.071040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.071040e+05 1.071040e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Economist 61335.10000 6.133510e+05 12091.55 1.209155e+03 0.000 289.00 10 0.000000e+00 0.00 6.254426e+05 6.133510e+05 12091.55 NULL
2020 Dept Of Health/Mental Hygiene Electrician NA NA 73288.70 1.046981e+04 268.700 821.75 7 2.687000e+02 1880.90 NA NA NA NULL
2020 Dept Of Health/Mental Hygiene Engineering Work Study Trainee 43997.00000 4.399700e+04 2358.24 2.358240e+03 2358.240 73.50 1 2.358240e+03 2358.24 4.635524e+04 4.635524e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Environmental Health Technician 28160.88010 5.632176e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.632176e+04 5.632176e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Evidence And Property Control Specialist 64332.59524 2.701969e+06 721235.16 1.717227e+04 5600.460 14403.25 42 5.600460e+03 235219.32 3.423204e+06 2.937188e+06 486015.84 NULL
2020 Dept Of Health/Mental Hygiene Executive Agency Counsel 140936.56250 2.254985e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.254985e+06 2.254985e+06 0.00 NULL
2020 Dept Of Health/Mental Hygiene Executive Program Specialist 161851.75000 6.474070e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.474070e+05 6.474070e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Executive Secretary 60817.52500 6.081753e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.081753e+04 6.081753e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Exterminator 48695.70238 2.045220e+06 174925.95 4.164904e+03 549.195 4448.50 42 5.491950e+02 23066.19 2.220145e+06 2.068286e+06 151859.76 NULL
2020 Dept Of Health/Mental Hygiene Family Pub Health Nurse 88607.27586 5.139222e+06 23647.16 4.077097e+02 0.000 336.75 58 0.000000e+00 0.00 5.162869e+06 5.139222e+06 23647.16 NULL
2020 Dept Of Health/Mental Hygiene Forensic Mortuary Technician 56127.44000 2.806372e+06 1233343.61 2.466687e+04 17668.070 29025.75 50 1.766807e+04 883403.50 4.039716e+06 3.689776e+06 349940.11 NULL
2020 Dept Of Health/Mental Hygiene Graphic Artist 58163.16667 3.489790e+05 275.73 4.595500e+01 0.000 7.75 6 0.000000e+00 0.00 3.492547e+05 3.489790e+05 275.73 NULL
2020 Dept Of Health/Mental Hygiene Health Care Prog Plan/Analyst 57495.00000 5.174550e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.174550e+05 5.174550e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Health Services Manager 152136.64583 7.302559e+06 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 7.302559e+06 7.302559e+06 0.00 NULL
2020 Dept Of Health/Mental Hygiene Health Services Manager Non Managerial Level I 98735.57857 1.382298e+07 291791.92 2.084228e+03 0.000 3642.00 140 0.000000e+00 0.00 1.411477e+07 1.382298e+07 291791.92 NULL
2020 Dept Of Health/Mental Hygiene Health Services Manager Non Managerial Level Ii 115454.04167 5.541794e+06 55014.22 1.146130e+03 0.000 596.75 48 0.000000e+00 0.00 5.596808e+06 5.541794e+06 55014.22 NULL
2020 Dept Of Health/Mental Hygiene Institutional Aide 40069.50838 6.811816e+05 585574.44 3.444556e+04 41388.890 20439.00 17 3.444556e+04 585574.44 1.266756e+06 1.266756e+06 0.00 NULL
2020 Dept Of Health/Mental Hygiene Interpreter 67156.00000 1.343120e+05 2831.25 1.415625e+03 1415.625 69.50 2 1.415625e+03 2831.25 1.371432e+05 1.371432e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Investigator 65962.14286 4.617350e+05 28298.72 4.042674e+03 0.000 561.00 7 0.000000e+00 0.00 4.900337e+05 4.617350e+05 28298.72 NULL
2020 Dept Of Health/Mental Hygiene It Automation And Monitoring Engineer 99092.00000 4.954600e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.954600e+05 4.954600e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene It Infrastructure Engineer 92169.60000 4.608480e+05 15978.89 3.195778e+03 156.780 208.25 5 1.567800e+02 783.90 4.768269e+05 4.616319e+05 15194.99 NULL
2020 Dept Of Health/Mental Hygiene It Project Specialist 93261.21357 1.305657e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.305657e+06 1.305657e+06 0.00 NULL
2020 Dept Of Health/Mental Hygiene It Security Specialist 101187.66667 3.035630e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.035630e+05 3.035630e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene It Service Management Specialist 94186.60000 9.418660e+05 13799.41 1.379941e+03 0.000 207.25 10 0.000000e+00 0.00 9.556654e+05 9.418660e+05 13799.41 NULL
2020 Dept Of Health/Mental Hygiene Jr Phnurse 43912.86025 1.927775e+07 943873.15 2.150053e+03 332.880 22111.10 439 3.328800e+02 146134.32 2.022162e+07 1.942388e+07 797738.83 NULL
2020 Dept Of Health/Mental Hygiene Junior Public Health Nurse 63508.44174 1.333677e+06 20792.78 9.901324e+02 622.350 388.75 21 6.223500e+02 13069.35 1.354470e+06 1.346747e+06 7723.43 NULL
2020 Dept Of Health/Mental Hygiene Labor Relations Analyst 71356.00000 7.135600e+04 5296.62 5.296620e+03 5296.620 111.00 1 5.296620e+03 5296.62 7.665262e+04 7.665262e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Laboratory Associate 45719.67487 2.514582e+06 83098.59 1.510883e+03 123.750 2559.50 55 1.237500e+02 6806.25 2.597681e+06 2.521388e+06 76292.34 NULL
2020 Dept Of Health/Mental Hygiene Laboratory Helper 41390.23077 5.380730e+05 8452.02 6.501554e+02 0.000 289.50 13 0.000000e+00 0.00 5.465250e+05 5.380730e+05 8452.02 NULL
2020 Dept Of Health/Mental Hygiene Laboratory Microbiologist 60164.44118 2.045591e+06 37383.83 1.099524e+03 0.000 931.50 34 0.000000e+00 0.00 2.082975e+06 2.045591e+06 37383.83 NULL
2020 Dept Of Health/Mental Hygiene Legal Secretarial Assistant 65238.00000 6.523800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.523800e+04 6.523800e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Machinist NA NA 11158.29 2.789573e+03 906.535 172.75 4 9.065350e+02 3626.14 NA NA NA NULL
2020 Dept Of Health/Mental Hygiene Maintenance Worker NA NA 170002.36 1.133349e+04 7704.070 3649.50 15 7.704070e+03 115561.05 NA NA NA NULL
2020 Dept Of Health/Mental Hygiene Management Auditor 75341.80000 1.506836e+06 70182.95 3.509148e+03 0.000 1541.50 20 0.000000e+00 0.00 1.577019e+06 1.506836e+06 70182.95 NULL
2020 Dept Of Health/Mental Hygiene Mechanical Engineer 89526.00000 8.952600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.952600e+04 8.952600e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Medical Investigator 55736.62500 1.114732e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.114732e+05 1.114732e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Medical Record Librarian 58049.00000 5.804900e+04 38321.49 3.832149e+04 38321.490 824.25 1 3.832149e+04 38321.49 9.637049e+04 9.637049e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Medical Specialist 94956.36750 1.899127e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.899127e+05 1.899127e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Medicolegal Investigator 94165.25192 4.425767e+06 541737.86 1.152634e+04 6477.620 6788.42 47 6.477620e+03 304448.14 4.967505e+06 4.730215e+06 237289.72 NULL
2020 Dept Of Health/Mental Hygiene Motor Vehicle Operator 49605.47507 1.785797e+06 482937.16 1.341492e+04 11465.630 12720.90 36 1.146563e+04 412762.68 2.268734e+06 2.198560e+06 70174.48 NULL
2020 Dept Of Health/Mental Hygiene Motor Vehicle Supervisor 59076.00000 2.363040e+05 67458.24 1.686456e+04 18259.785 1554.00 4 1.686456e+04 67458.24 3.037622e+05 3.037622e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene New York City Public Service Fellow 42127.00000 4.212700e+04 12797.18 1.279718e+04 12797.180 392.00 1 1.279718e+04 12797.18 5.492418e+04 5.492418e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Nurse Practicioner 101190.51575 1.517858e+06 16880.04 1.125336e+03 1079.920 278.75 15 1.079920e+03 16198.80 1.534738e+06 1.534057e+06 681.24 NULL
2020 Dept Of Health/Mental Hygiene Nurse’s Aide 43075.00000 4.307500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.307500e+04 4.307500e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Nutritionist 73116.90909 8.042860e+05 9415.47 8.559518e+02 0.000 178.75 11 0.000000e+00 0.00 8.137015e+05 8.042860e+05 9415.47 NULL
2020 Dept Of Health/Mental Hygiene Office Machine Aide 43668.40000 2.183420e+05 9832.57 1.966514e+03 777.220 289.50 5 7.772200e+02 3886.10 2.281746e+05 2.222281e+05 5946.47 NULL
2020 Dept Of Health/Mental Hygiene Oiler NA NA 242451.61 8.081720e+04 99134.350 2585.25 3 8.081720e+04 242451.61 NA NA NA NULL
2020 Dept Of Health/Mental Hygiene Paralegal Aide 48738.66667 2.924320e+05 5488.28 9.147133e+02 541.500 168.50 6 5.415000e+02 3249.00 2.979203e+05 2.956810e+05 2239.28 NULL
2020 Dept Of Health/Mental Hygiene Peer Counselor 37555.00000 3.755500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.755500e+04 3.755500e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Physicist 86807.00000 8.680700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.680700e+04 8.680700e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Poison Information Specialist 93525.89350 2.151096e+06 48286.35 2.099407e+03 0.000 712.50 23 0.000000e+00 0.00 2.199382e+06 2.151096e+06 48286.35 NULL
2020 Dept Of Health/Mental Hygiene Principal Administrative Associate - Non Supvr 60254.03601 1.675062e+07 262174.75 9.430746e+02 0.000 5820.50 278 0.000000e+00 0.00 1.701280e+07 1.675062e+07 262174.75 NULL
2020 Dept Of Health/Mental Hygiene Printing Press Operator NA NA 5437.85 1.087570e+03 275.200 105.75 5 2.752000e+02 1376.00 NA NA NA NULL
2020 Dept Of Health/Mental Hygiene Procurement Analyst 70072.37681 4.834994e+06 87027.25 1.261264e+03 0.000 1767.50 69 0.000000e+00 0.00 4.922021e+06 4.834994e+06 87027.25 NULL
2020 Dept Of Health/Mental Hygiene Psychiatrist 109269.57125 2.185391e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.185391e+05 2.185391e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Public Health Adviser 44821.61242 2.492082e+07 522593.82 9.399169e+02 0.000 13968.33 556 0.000000e+00 0.00 2.544341e+07 2.492082e+07 522593.82 NULL
2020 Dept Of Health/Mental Hygiene Public Health Assistant 31610.24039 4.235772e+06 65441.10 4.883664e+02 0.000 2709.00 134 0.000000e+00 0.00 4.301213e+06 4.235772e+06 65441.10 NULL
2020 Dept Of Health/Mental Hygiene Public Health Educator 66032.81250 5.282625e+06 4698.20 5.872750e+01 0.000 105.00 80 0.000000e+00 0.00 5.287323e+06 5.282625e+06 4698.20 NULL
2020 Dept Of Health/Mental Hygiene Public Health Emergency Preparedness Specialist 82277.06061 2.715143e+06 411588.61 1.247238e+04 13121.860 6681.75 33 1.247238e+04 411588.61 3.126732e+06 3.126732e+06 0.00 NULL
2020 Dept Of Health/Mental Hygiene Public Health Epidemiologist 68935.90000 3.446795e+06 197056.12 3.941122e+03 0.000 3513.50 50 0.000000e+00 0.00 3.643851e+06 3.446795e+06 197056.12 NULL
2020 Dept Of Health/Mental Hygiene Public Health Nurse 47609.64020 3.437416e+07 1532604.76 2.122721e+03 257.135 34372.25 722 2.571350e+02 185651.47 3.590676e+07 3.455981e+07 1346953.29 NULL
2020 Dept Of Health/Mental Hygiene Public Health Sanitarian 57540.77183 2.042697e+07 369279.35 1.040224e+03 0.000 9883.58 355 0.000000e+00 0.00 2.079625e+07 2.042697e+07 369279.35 NULL
2020 Dept Of Health/Mental Hygiene Public Health/Preventive Medicine Resident 79928.11111 7.193530e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.193530e+05 7.193530e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Public Records Aide 43996.31684 8.359300e+05 2629.82 1.384116e+02 0.000 96.25 19 0.000000e+00 0.00 8.385598e+05 8.359300e+05 2629.82 NULL
2020 Dept Of Health/Mental Hygiene Public Records Officer 50706.00000 5.070600e+04 2485.86 2.485860e+03 2485.860 86.75 1 2.485860e+03 2485.86 5.319186e+04 5.319186e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Regional Director Mental Health Mental Retard & Alc Service 124806.25000 4.992250e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.992250e+05 4.992250e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Research Assistant 57150.66667 1.714520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.714520e+05 1.714520e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Scientist 64185.06154 4.172029e+06 171596.63 2.639948e+03 0.000 3374.75 65 0.000000e+00 0.00 4.343626e+06 4.172029e+06 171596.63 NULL
2020 Dept Of Health/Mental Hygiene Secretary 49309.23724 1.972369e+06 11333.18 2.833295e+02 0.000 326.75 40 0.000000e+00 0.00 1.983703e+06 1.972369e+06 11333.18 NULL
2020 Dept Of Health/Mental Hygiene Senior It Architect 95482.12000 4.774106e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.774106e+05 4.774106e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Senior Medical Specialist 120655.29750 1.206553e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.206553e+05 1.206553e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Senior Mental Health Worker 43664.25000 1.746570e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.746570e+05 1.746570e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Senior Photographer 59000.10000 5.900010e+05 52897.46 5.289746e+03 4175.955 1426.50 10 4.175955e+03 41759.55 6.428985e+05 6.317606e+05 11137.91 NULL
2020 Dept Of Health/Mental Hygiene Senior Stationary Engineer NA NA 98510.73 9.851073e+04 98510.730 837.00 1 9.851073e+04 98510.73 NA NA NA NULL
2020 Dept Of Health/Mental Hygiene Social Worker 66276.74510 3.380114e+06 3848.68 7.546431e+01 0.000 114.00 51 0.000000e+00 0.00 3.383963e+06 3.380114e+06 3848.68 NULL
2020 Dept Of Health/Mental Hygiene Space Analyst 84412.00000 8.441200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.441200e+04 8.441200e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Spec Consultant 84717.54482 9.318930e+06 60459.71 5.496337e+02 0.000 1025.75 110 0.000000e+00 0.00 9.379390e+06 9.318930e+06 60459.71 NULL
2020 Dept Of Health/Mental Hygiene Special Advisor To The Mayor For Health Services 107426.50000 4.297060e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.297060e+05 4.297060e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Special Consultant 70571.87931 8.186338e+06 10307.41 8.885698e+01 0.000 219.25 116 0.000000e+00 0.00 8.196645e+06 8.186338e+06 10307.41 NULL
2020 Dept Of Health/Mental Hygiene Special Officer 40360.98551 2.784908e+06 508412.16 7.368292e+03 4429.540 16587.80 69 4.429540e+03 305638.26 3.293320e+06 3.090546e+06 202773.90 NULL
2020 Dept Of Health/Mental Hygiene Sr Healthcare Prog Plan Anlyst 61126.43698 4.462230e+06 940.42 1.288247e+01 0.000 25.50 73 0.000000e+00 0.00 4.463170e+06 4.462230e+06 940.42 NULL
2020 Dept Of Health/Mental Hygiene Staff Analyst 67401.75000 1.887249e+06 42349.26 1.512474e+03 0.000 823.25 28 0.000000e+00 0.00 1.929598e+06 1.887249e+06 42349.26 NULL
2020 Dept Of Health/Mental Hygiene Staff Analyst Trainee 39943.97750 7.988796e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.988796e+04 7.988796e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Stationary Engineer NA NA 1486609.54 6.194206e+04 59245.220 14460.25 24 5.924522e+04 1421885.28 NA NA NA NULL
2020 Dept Of Health/Mental Hygiene Statistician 58593.00000 5.859300e+04 114.71 1.147100e+02 114.710 3.75 1 1.147100e+02 114.71 5.870771e+04 5.870771e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Steam Fitter NA NA 45787.50 2.289375e+04 22893.750 416.25 2 2.289375e+04 45787.50 NA NA NA NULL
2020 Dept Of Health/Mental Hygiene Stock Worker 40076.75000 4.809210e+05 40079.74 3.339978e+03 3.415 1369.25 12 3.415000e+00 40.98 5.210007e+05 4.809620e+05 40038.76 NULL
2020 Dept Of Health/Mental Hygiene Strategic Initiative Specialist 124877.57143 8.741430e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.741430e+05 8.741430e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Summer College Intern 7406.68542 8.888023e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 8.888023e+04 8.888023e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Summer Graduate Intern 8896.70444 2.669011e+05 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 2.669011e+05 2.669011e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Supervising Computer Service Technician 75805.66667 2.274170e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.274170e+05 2.274170e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Supervising Public Health Adviser 64560.73664 7.295363e+06 355134.78 3.142786e+03 0.000 6885.50 113 0.000000e+00 0.00 7.650498e+06 7.295363e+06 355134.78 NULL
2020 Dept Of Health/Mental Hygiene Supervising Special Officer 57212.04762 1.201453e+06 269755.37 1.284549e+04 14328.050 6627.25 21 1.284549e+04 269755.37 1.471208e+06 1.471208e+06 0.00 NULL
2020 Dept Of Health/Mental Hygiene Supervisor 52208.41176 8.875430e+05 52789.13 3.105243e+03 1.550 1148.50 17 1.550000e+00 26.35 9.403321e+05 8.875693e+05 52762.78 NULL
2020 Dept Of Health/Mental Hygiene Supervisor Electrician NA NA 103199.25 3.439975e+04 1753.140 1077.75 3 1.753140e+03 5259.42 NA NA NA NULL
2020 Dept Of Health/Mental Hygiene Supervisor I Social Work 73291.50000 1.465830e+05 392.63 1.963150e+02 196.315 10.50 2 1.963150e+02 392.63 1.469756e+05 1.469756e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Supervisor Ii Social Work 81362.15385 1.057708e+06 1021.14 7.854923e+01 0.000 22.00 13 0.000000e+00 0.00 1.058729e+06 1.057708e+06 1021.14 NULL
2020 Dept Of Health/Mental Hygiene Supervisor Iii Social Work 89652.75000 7.172220e+05 92.51 1.156375e+01 0.000 2.00 8 0.000000e+00 0.00 7.173145e+05 7.172220e+05 92.51 NULL
2020 Dept Of Health/Mental Hygiene Supervisor Of Mechanical Installations & Maintenance 95349.00000 2.860470e+05 33622.06 1.120735e+04 10702.410 473.50 3 1.070241e+04 32107.23 3.196691e+05 3.181542e+05 1514.83 NULL
2020 Dept Of Health/Mental Hygiene Supervisor Of Motor Transport 68476.71429 4.793370e+05 231393.92 3.305627e+04 34113.480 4754.00 7 3.305627e+04 231393.92 7.107309e+05 7.107309e+05 0.00 NULL
2020 Dept Of Health/Mental Hygiene Supervisor Of Stock Workers 57955.33333 3.477320e+05 27874.43 4.645738e+03 40.595 854.00 6 4.059500e+01 243.57 3.756064e+05 3.479756e+05 27630.86 NULL
2020 Dept Of Health/Mental Hygiene Telecommunications Associate 83952.00000 8.395200e+04 6722.31 6.722310e+03 6722.310 109.50 1 6.722310e+03 6722.31 9.067431e+04 9.067431e+04 0.00 NULL
2020 Dept Of Health/Mental Hygiene Thermostat Repairer NA NA 1029.41 1.029410e+03 1029.410 9.75 1 1.029410e+03 1029.41 NA NA NA NULL
2020 Dept Of Health/Mental Hygiene X-Ray Technician 53695.01143 7.517302e+05 63904.33 4.564595e+03 2075.915 1523.00 14 2.075915e+03 29062.81 8.156345e+05 7.807930e+05 34841.52 NULL
2020 Dept Of Info Tech & Telecomm *Certified Database Administrator 139520.00000 2.790400e+05 13098.13 6.549065e+03 6549.065 128.25 2 6.549065e+03 13098.13 2.921381e+05 2.921381e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm *Certified Local Area Network Administrator 98255.00000 9.825500e+04 220.09 2.200900e+02 220.090 4.00 1 2.200900e+02 220.09 9.847509e+04 9.847509e+04 0.00 NULL
2020 Dept Of Info Tech & Telecomm Accountant 80041.00000 8.004100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.004100e+04 8.004100e+04 0.00 NULL
2020 Dept Of Info Tech & Telecomm Adm Manager-Non-Mgrl 87110.87500 4.181322e+06 43503.90 9.063312e+02 0.000 789.00 48 0.000000e+00 0.00 4.224826e+06 4.181322e+06 43503.90 NULL
2020 Dept Of Info Tech & Telecomm Admin Contract Specialist 229948.00000 2.299480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.299480e+05 2.299480e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Administrative Business Promotion Coordinator 137137.22222 3.702705e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 3.702705e+06 3.702705e+06 0.00 NULL
2020 Dept Of Info Tech & Telecomm Administrative Community Relations Specialist 230469.00000 2.304690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.304690e+05 2.304690e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Administrative Construction Project Manager 151976.50000 3.039530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.039530e+05 3.039530e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Administrative Manager 175277.20000 8.763860e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.763860e+05 8.763860e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Administrative Procurement Analyst 128750.00000 1.287500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287500e+05 1.287500e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Administrative Procurement Analyst-Non-Mgrl 107305.90000 1.073059e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.073059e+06 1.073059e+06 0.00 NULL
2020 Dept Of Info Tech & Telecomm Administrative Project Manager 100123.00000 1.001230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.001230e+05 1.001230e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Administrative Public Information Specialist 127881.46154 1.662459e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.662459e+06 1.662459e+06 0.00 NULL
2020 Dept Of Info Tech & Telecomm Administrative Real Property Manager 142179.00000 1.421790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.421790e+05 1.421790e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Administrative Staff Analyst 119631.56897 6.938631e+06 14213.77 2.450650e+02 0.000 237.50 58 0.000000e+00 0.00 6.952845e+06 6.938631e+06 14213.77 NULL
2020 Dept Of Info Tech & Telecomm Agency Attorney 101861.00000 1.527915e+06 66.97 4.464667e+00 0.000 0.00 15 0.000000e+00 0.00 1.527982e+06 1.527915e+06 66.97 NULL
2020 Dept Of Info Tech & Telecomm Agency Attorney Interne 71750.00000 1.435000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.435000e+05 1.435000e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Agency Chief Contracting Officer 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Assistant Commissioner 176000.00000 1.760000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.760000e+05 1.760000e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Associate Call Center Representative-Non-Spvr 63481.33824 4.316731e+06 64026.29 9.415631e+02 8.060 1488.50 68 8.060000e+00 548.08 4.380757e+06 4.317279e+06 63478.21 NULL
2020 Dept Of Info Tech & Telecomm Associate Commissioner 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Associate Inspector 75197.00000 7.519700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.519700e+04 7.519700e+04 0.00 NULL
2020 Dept Of Info Tech & Telecomm Associate Investigator 69508.00000 1.390160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.390160e+05 1.390160e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Associate Labor Relations Analyst 100052.00000 1.000520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000520e+05 1.000520e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Associate Staff Analyst 85049.12500 6.803930e+05 380.22 4.752750e+01 0.000 8.50 8 0.000000e+00 0.00 6.807732e+05 6.803930e+05 380.22 NULL
2020 Dept Of Info Tech & Telecomm Business Promotion Coordinator 67417.50000 8.090100e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 8.090100e+05 8.090100e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Call Center Representative 37934.31593 1.380809e+07 243917.93 6.701042e+02 0.000 9407.67 364 0.000000e+00 0.00 1.405201e+07 1.380809e+07 243917.93 NULL
2020 Dept Of Info Tech & Telecomm Certified It Administrator 119420.38971 1.624117e+07 748898.13 5.506604e+03 519.165 8288.75 136 5.191650e+02 70606.44 1.699007e+07 1.631178e+07 678291.69 NULL
2020 Dept Of Info Tech & Telecomm Certified It Developer 113909.57143 2.392101e+06 25101.13 1.195292e+03 0.000 348.50 21 0.000000e+00 0.00 2.417202e+06 2.392101e+06 25101.13 NULL
2020 Dept Of Info Tech & Telecomm City Research Scientist 106949.66667 3.208490e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.208490e+05 3.208490e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Clerical Associate 51259.72667 1.230233e+06 14614.69 6.089454e+02 0.000 385.75 24 0.000000e+00 0.00 1.244848e+06 1.230233e+06 14614.69 NULL
2020 Dept Of Info Tech & Telecomm College Aide 8959.50850 1.791902e+05 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.791902e+05 1.791902e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm College Aide - Assignment Levels Ii And Iii 6670.01500 4.002009e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.002009e+04 4.002009e+04 0.00 NULL
2020 Dept Of Info Tech & Telecomm Commissioner Of Dept Of Info Technology & Telecommunications 237315.00000 4.746300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.746300e+05 4.746300e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Community Assistant 37459.00000 3.745900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.745900e+04 3.745900e+04 0.00 NULL
2020 Dept Of Info Tech & Telecomm Community Associate 51060.30769 1.991352e+06 21122.13 5.415931e+02 0.000 597.00 39 0.000000e+00 0.00 2.012474e+06 1.991352e+06 21122.13 NULL
2020 Dept Of Info Tech & Telecomm Community Coordinator 73047.48902 2.994947e+06 77874.95 1.899389e+03 0.000 1518.50 41 0.000000e+00 0.00 3.072822e+06 2.994947e+06 77874.95 NULL
2020 Dept Of Info Tech & Telecomm Computer Aide-Non-Spvr 48515.00000 4.851500e+05 7068.80 7.068800e+02 515.150 203.25 10 5.151500e+02 5151.50 4.922188e+05 4.903015e+05 1917.30 NULL
2020 Dept Of Info Tech & Telecomm Computer Associate 76464.65625 9.787476e+06 396695.17 3.099181e+03 917.460 7205.50 128 9.174600e+02 117434.88 1.018417e+07 9.904911e+06 279260.29 NULL
2020 Dept Of Info Tech & Telecomm Computer Operations Manager 143692.62500 5.747705e+06 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 5.747705e+06 5.747705e+06 0.00 NULL
2020 Dept Of Info Tech & Telecomm Computer Programmer Analyst 64722.28571 4.530560e+05 3592.09 5.131557e+02 0.000 85.75 7 0.000000e+00 0.00 4.566481e+05 4.530560e+05 3592.09 NULL
2020 Dept Of Info Tech & Telecomm Computer Service Technician 61039.00000 6.103900e+04 1038.88 1.038880e+03 1038.880 22.50 1 1.038880e+03 1038.88 6.207788e+04 6.207788e+04 0.00 NULL
2020 Dept Of Info Tech & Telecomm Computer Specialist 112097.09677 2.085006e+07 407809.23 2.192523e+03 0.000 5255.25 186 0.000000e+00 0.00 2.125787e+07 2.085006e+07 407809.23 NULL
2020 Dept Of Info Tech & Telecomm Computer Systems Manager 141912.33764 3.604573e+07 5935.44 2.336787e+01 0.000 56.00 254 0.000000e+00 0.00 3.605167e+07 3.604573e+07 5935.44 NULL
2020 Dept Of Info Tech & Telecomm Confidential Strategy Planner 63752.50000 1.275050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.275050e+05 1.275050e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Customer Information Representative Ma L 1549 74971.00000 7.497100e+04 4453.35 4.453350e+03 4453.350 85.75 1 4.453350e+03 4453.35 7.942435e+04 7.942435e+04 0.00 NULL
2020 Dept Of Info Tech & Telecomm Cyber Security Analyst 84542.95833 2.029031e+06 575.04 2.396000e+01 0.000 10.00 24 0.000000e+00 0.00 2.029606e+06 2.029031e+06 575.04 NULL
2020 Dept Of Info Tech & Telecomm Deputy Commissioner 187975.00000 3.759500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.759500e+05 3.759500e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Deputy Commissioner Of It 233450.00000 4.669000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.669000e+05 4.669000e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Director Of Television 60439.00000 1.208780e+05 9456.38 4.728190e+03 4728.190 212.00 2 4.728190e+03 9456.38 1.303344e+05 1.303344e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Economist 70602.00000 1.412040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.412040e+05 1.412040e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Executive Agency Counsel 161483.50000 2.583736e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.583736e+06 2.583736e+06 0.00 NULL
2020 Dept Of Info Tech & Telecomm Executive Program Specialist 95500.00000 3.820000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.820000e+05 3.820000e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Film Manager 74981.00000 7.498100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.498100e+04 7.498100e+04 0.00 NULL
2020 Dept Of Info Tech & Telecomm Graphic Artist 69186.00000 1.383720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.383720e+05 1.383720e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Inspector 56169.33333 1.685080e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.685080e+05 1.685080e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm It Automation And Monitoring Engineer 118034.66667 3.541040e+05 15947.93 5.315977e+03 0.000 172.50 3 0.000000e+00 0.00 3.700519e+05 3.541040e+05 15947.93 NULL
2020 Dept Of Info Tech & Telecomm It Infrastructure Engineer 113901.00000 4.556040e+05 3723.12 9.307800e+02 194.400 44.75 4 1.944000e+02 777.60 4.593271e+05 4.563816e+05 2945.52 NULL
2020 Dept Of Info Tech & Telecomm It Project Specialist 107312.31034 3.112057e+06 18205.75 6.277845e+02 0.000 226.25 29 0.000000e+00 0.00 3.130263e+06 3.112057e+06 18205.75 NULL
2020 Dept Of Info Tech & Telecomm It Security Specialist 133470.65455 7.340886e+06 123784.37 2.250625e+03 0.000 1276.25 55 0.000000e+00 0.00 7.464670e+06 7.340886e+06 123784.37 NULL
2020 Dept Of Info Tech & Telecomm It Service Management Specialist 100341.66667 6.020500e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.020500e+05 6.020500e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Labor Relations Analyst 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2020 Dept Of Info Tech & Telecomm Principal Administrative Associate - Non Supvr 70418.43478 1.619624e+06 31203.23 1.356662e+03 0.000 564.25 23 0.000000e+00 0.00 1.650827e+06 1.619624e+06 31203.23 NULL
2020 Dept Of Info Tech & Telecomm Procurement Analyst 82442.11111 7.419790e+05 42.81 4.756667e+00 0.000 1.00 9 0.000000e+00 0.00 7.420218e+05 7.419790e+05 42.81 NULL
2020 Dept Of Info Tech & Telecomm Program Producer 73962.14286 5.177350e+05 6334.62 9.049457e+02 0.000 120.25 7 0.000000e+00 0.00 5.240696e+05 5.177350e+05 6334.62 NULL
2020 Dept Of Info Tech & Telecomm Project Manager 65640.00000 6.564000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.564000e+04 6.564000e+04 0.00 NULL
2020 Dept Of Info Tech & Telecomm Quality Assurance Specialist Trainee 38673.00000 3.867300e+04 1555.80 1.555800e+03 1555.800 49.00 1 1.555800e+03 1555.80 4.022880e+04 4.022880e+04 0.00 NULL
2020 Dept Of Info Tech & Telecomm Radio And Television Operator 54932.87273 1.208523e+06 65349.32 2.970424e+03 2026.310 1547.50 22 2.026310e+03 44578.82 1.273873e+06 1.253102e+06 20770.50 NULL
2020 Dept Of Info Tech & Telecomm Secretary 62560.00000 6.256000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.256000e+04 6.256000e+04 0.00 NULL
2020 Dept Of Info Tech & Telecomm Secretary Of Commissioner 74609.50000 1.492190e+05 43193.16 2.159658e+04 21596.580 910.17 2 2.159658e+04 43193.16 1.924122e+05 1.924122e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Secretary To The Deputy Commissioner 75197.00000 7.519700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.519700e+04 7.519700e+04 0.00 NULL
2020 Dept Of Info Tech & Telecomm Senior It Architect 155402.75000 1.243222e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.243222e+06 1.243222e+06 0.00 NULL
2020 Dept Of Info Tech & Telecomm Staff Analyst 63690.00000 1.019040e+06 6256.33 3.910206e+02 0.000 161.50 16 0.000000e+00 0.00 1.025296e+06 1.019040e+06 6256.33 NULL
2020 Dept Of Info Tech & Telecomm Staff Analyst Trainee 47225.33333 1.416760e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.416760e+05 1.416760e+05 0.00 NULL
2020 Dept Of Info Tech & Telecomm Summer College Intern 4519.37500 3.163562e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.163562e+04 3.163562e+04 0.00 NULL
2020 Dept Of Info Tech & Telecomm Summer Graduate Intern 5857.78900 5.857789e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.857789e+04 5.857789e+04 0.00 NULL
2020 Dept Of Info Tech & Telecomm Supervising Computer Service Technician 70715.00000 7.071500e+04 655.51 6.555100e+02 655.510 13.00 1 6.555100e+02 655.51 7.137051e+04 7.137051e+04 0.00 NULL
2020 Dept Of Info Tech & Telecomm Supervisor Of Office Machine Operations 48118.00000 4.811800e+04 4863.05 4.863050e+03 4863.050 138.00 1 4.863050e+03 4863.05 5.298105e+04 5.298105e+04 0.00 NULL
2020 Dept Of Info Tech & Telecomm Supervisor Of Radio And Television Operators 81438.00000 4.071900e+05 11200.65 2.240130e+03 94.990 212.50 5 9.499000e+01 474.95 4.183907e+05 4.076650e+05 10725.70 NULL
2020 Dept Of Info Tech & Telecomm Telecommunication Manager 139678.90476 2.933257e+06 92650.38 4.411923e+03 0.000 1497.00 21 0.000000e+00 0.00 3.025907e+06 2.933257e+06 92650.38 NULL
2020 Dept Of Info Tech & Telecomm Telecommunications Associate 78069.09231 5.074491e+06 84496.28 1.299943e+03 0.000 1562.75 65 0.000000e+00 0.00 5.158987e+06 5.074491e+06 84496.28 NULL
2020 Dept Of Info Tech & Telecomm Telecommunications Manager 111778.00000 3.353340e+05 1511.32 5.037733e+02 0.000 22.75 3 0.000000e+00 0.00 3.368453e+05 3.353340e+05 1511.32 NULL
2020 Dept Of Parks & Recreation *Principal Park Supervisor 86535.00000 8.653500e+04 11160.07 1.116007e+04 11160.070 171.00 1 1.116007e+04 11160.07 9.769507e+04 9.769507e+04 0.00 NULL
2020 Dept Of Parks & Recreation Accountant 83441.00000 8.344100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.344100e+04 8.344100e+04 0.00 NULL
2020 Dept Of Parks & Recreation Adm Manager-Non-Mgrl 74959.05153 7.196069e+06 129918.20 1.353315e+03 0.000 2227.50 96 0.000000e+00 0.00 7.325987e+06 7.196069e+06 129918.20 NULL
2020 Dept Of Parks & Recreation Admin Community Relations Specialist 88911.93421 6.757307e+06 248814.86 3.273880e+03 460.280 4093.75 76 4.602800e+02 34981.28 7.006122e+06 6.792288e+06 213833.58 NULL
2020 Dept Of Parks & Recreation Admin Landmarks Preservationist 123600.00000 1.236000e+05 6378.76 6.378760e+03 6378.760 95.25 1 6.378760e+03 6378.76 1.299788e+05 1.299788e+05 0.00 NULL
2020 Dept Of Parks & Recreation Administrative Architect 137136.50000 2.742730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.742730e+05 2.742730e+05 0.00 NULL
2020 Dept Of Parks & Recreation Administrative City Planner 121491.80000 6.074590e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.074590e+05 6.074590e+05 0.00 NULL
2020 Dept Of Parks & Recreation Administrative Community Relations Specialist 147903.71429 1.035326e+06 3256.67 4.652386e+02 0.000 56.00 7 0.000000e+00 0.00 1.038583e+06 1.035326e+06 3256.67 NULL
2020 Dept Of Parks & Recreation Administrative Construction Project Manager 150393.00000 1.503930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503930e+05 1.503930e+05 0.00 NULL
2020 Dept Of Parks & Recreation Administrative Engineer 122752.00000 3.682560e+05 2953.07 9.843567e+02 304.750 43.50 3 3.047500e+02 914.25 3.712091e+05 3.691702e+05 2038.82 NULL
2020 Dept Of Parks & Recreation Administrative Graphic Artist 97850.00000 1.957000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.957000e+05 1.957000e+05 0.00 NULL
2020 Dept Of Parks & Recreation Administrative Horticulturist 88878.26087 4.088400e+06 38392.79 8.346259e+02 0.000 779.25 46 0.000000e+00 0.00 4.126793e+06 4.088400e+06 38392.79 NULL
2020 Dept Of Parks & Recreation Administrative Landscape Architect 146266.50000 2.925330e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.925330e+05 2.925330e+05 0.00 NULL
2020 Dept Of Parks & Recreation Administrative Management Auditor 101635.00000 1.016350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.016350e+05 1.016350e+05 0.00 NULL
2020 Dept Of Parks & Recreation Administrative Manager 147594.00000 2.951880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.951880e+05 2.951880e+05 0.00 NULL
2020 Dept Of Parks & Recreation Administrative Parks & Recreation Manager 101987.77929 1.081070e+07 368183.69 3.473431e+03 0.000 5443.50 106 0.000000e+00 0.00 1.117889e+07 1.081070e+07 368183.69 NULL
2020 Dept Of Parks & Recreation Administrative Procurement Analyst-Non-Mgrl 82410.42857 5.768730e+05 17512.39 2.501770e+03 735.520 289.50 7 7.355200e+02 5148.64 5.943854e+05 5.820216e+05 12363.75 NULL
2020 Dept Of Parks & Recreation Administrative Project Manager 105512.15235 5.170095e+06 29149.55 5.948888e+02 0.000 488.00 49 0.000000e+00 0.00 5.199245e+06 5.170095e+06 29149.55 NULL
2020 Dept Of Parks & Recreation Administrative Public Information Specialist 129143.66667 3.874310e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.874310e+05 3.874310e+05 0.00 NULL
2020 Dept Of Parks & Recreation Administrative Quality Assurance Specialist 80307.00000 8.030700e+04 1373.62 1.373620e+03 1373.620 26.75 1 1.373620e+03 1373.62 8.168062e+04 8.168062e+04 0.00 NULL
2020 Dept Of Parks & Recreation Administrative Staff Analyst 100935.70883 7.772050e+06 169340.91 2.199233e+03 0.000 2649.00 77 0.000000e+00 0.00 7.941390e+06 7.772050e+06 169340.91 NULL
2020 Dept Of Parks & Recreation Administrative Supervisor Of Building Maintenance 114429.00000 2.288580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.288580e+05 2.288580e+05 0.00 NULL
2020 Dept Of Parks & Recreation Agency Attorney 88721.55556 1.596988e+06 3257.18 1.809544e+02 0.000 39.00 18 0.000000e+00 0.00 1.600245e+06 1.596988e+06 3257.18 NULL
2020 Dept Of Parks & Recreation Agency Chief Contracting Officer 138605.00000 1.386050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.386050e+05 1.386050e+05 0.00 NULL
2020 Dept Of Parks & Recreation Architect 105427.55556 9.488480e+05 831.39 9.237667e+01 0.000 15.50 9 0.000000e+00 0.00 9.496794e+05 9.488480e+05 831.39 NULL
2020 Dept Of Parks & Recreation Assistant Architect 77152.25000 3.086090e+05 4028.80 1.007200e+03 476.240 81.00 4 4.762400e+02 1904.96 3.126378e+05 3.105140e+05 2123.84 NULL
2020 Dept Of Parks & Recreation Assistant Civil Engineer 74196.57143 1.038752e+06 48929.64 3.494974e+03 682.645 903.25 14 6.826450e+02 9557.03 1.087682e+06 1.048309e+06 39372.61 NULL
2020 Dept Of Parks & Recreation Assistant Commissioner 168590.33333 5.057710e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.057710e+05 5.057710e+05 0.00 NULL
2020 Dept Of Parks & Recreation Assistant Electrical Engineer 79106.33333 2.373190e+05 6928.32 2.309440e+03 1919.110 122.25 3 1.919110e+03 5757.33 2.442473e+05 2.430763e+05 1170.99 NULL
2020 Dept Of Parks & Recreation Assistant Environmental Engineer 71213.00000 2.848520e+05 4439.09 1.109773e+03 927.380 100.75 4 9.273800e+02 3709.52 2.892911e+05 2.885615e+05 729.57 NULL
2020 Dept Of Parks & Recreation Assistant Landscape Architect 65478.31250 2.095306e+06 12359.41 3.862316e+02 0.000 289.50 32 0.000000e+00 0.00 2.107665e+06 2.095306e+06 12359.41 NULL
2020 Dept Of Parks & Recreation Assistant Mechanical Engineer 72549.60000 3.627480e+05 3087.42 6.174840e+02 0.000 66.00 5 0.000000e+00 0.00 3.658354e+05 3.627480e+05 3087.42 NULL
2020 Dept Of Parks & Recreation Assistant To The Commissioner Of Parks And Recreation 161710.00000 1.617100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.617100e+05 1.617100e+05 0.00 NULL
2020 Dept Of Parks & Recreation Associate Fraud Investigator 94394.50000 1.887890e+05 13442.33 6.721165e+03 6721.165 227.00 2 6.721165e+03 13442.33 2.022313e+05 2.022313e+05 0.00 NULL
2020 Dept Of Parks & Recreation Associate Labor Relations Analyst 84672.50000 1.693450e+05 9427.02 4.713510e+03 4713.510 164.25 2 4.713510e+03 9427.02 1.787720e+05 1.787720e+05 0.00 NULL
2020 Dept Of Parks & Recreation Associate Park Service Worker 49679.09451 1.937485e+07 1900398.62 4.872817e+03 2391.960 46794.12 390 2.391960e+03 932864.40 2.127525e+07 2.030771e+07 967534.22 NULL
2020 Dept Of Parks & Recreation Associate Project Manager 89700.16972 6.458412e+06 134064.96 1.862013e+03 598.645 2266.25 72 5.986450e+02 43102.44 6.592477e+06 6.501515e+06 90962.52 NULL
2020 Dept Of Parks & Recreation Associate Quality Assurance Specialist 80490.00000 8.049000e+04 1985.32 1.985320e+03 1985.320 41.25 1 1.985320e+03 1985.32 8.247532e+04 8.247532e+04 0.00 NULL
2020 Dept Of Parks & Recreation Associate Staff Analyst 77112.80000 1.465143e+06 17959.32 9.452274e+02 0.000 362.00 19 0.000000e+00 0.00 1.483103e+06 1.465143e+06 17959.32 NULL
2020 Dept Of Parks & Recreation Associate Urban Designer 82784.66667 9.934160e+05 6056.28 5.046900e+02 0.000 114.25 12 0.000000e+00 0.00 9.994723e+05 9.934160e+05 6056.28 NULL
2020 Dept Of Parks & Recreation Associate Urban Park Ranger 59011.73729 6.963385e+06 642664.99 5.446313e+03 3465.560 15014.20 118 3.465560e+03 408936.08 7.606050e+06 7.372321e+06 233728.91 NULL
2020 Dept Of Parks & Recreation Auto Mechanic NA NA 81980.69 3.726395e+03 2572.570 1190.50 22 2.572570e+03 56596.54 NA NA NA NULL
2020 Dept Of Parks & Recreation Automotive Service Worker 45934.92061 6.430889e+05 26320.76 1.880054e+03 479.420 572.50 14 4.794200e+02 6711.88 6.694096e+05 6.498008e+05 19608.88 NULL
2020 Dept Of Parks & Recreation Blacksmith NA NA 129575.05 8.638337e+03 4154.670 2025.45 15 4.154670e+03 62320.05 NA NA NA NULL
2020 Dept Of Parks & Recreation Blacksmith’s Helper NA NA 18694.22 9.347110e+03 9347.110 375.50 2 9.347110e+03 18694.22 NA NA NA NULL
2020 Dept Of Parks & Recreation Borough Commissioner 176212.66667 1.057276e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.057276e+06 1.057276e+06 0.00 NULL
2020 Dept Of Parks & Recreation Carpenter NA NA 404313.30 1.304236e+04 8303.480 4918.25 31 8.303480e+03 257407.88 NA NA NA NULL
2020 Dept Of Parks & Recreation Cement Mason NA NA 170030.15 1.133534e+04 4778.360 1560.50 15 4.778360e+03 71675.40 NA NA NA NULL
2020 Dept Of Parks & Recreation Certified It Administrator 102024.43750 1.632391e+06 78983.02 4.936439e+03 2140.860 1070.25 16 2.140860e+03 34253.76 1.711374e+06 1.666645e+06 44729.26 NULL
2020 Dept Of Parks & Recreation Certified It Developer 92108.91423 1.197416e+06 31634.26 2.433405e+03 85.750 505.50 13 8.575000e+01 1114.75 1.229050e+06 1.198531e+06 30519.51 NULL
2020 Dept Of Parks & Recreation Chief Lifeguard 26711.79445 2.724603e+06 244521.31 2.397268e+03 2142.575 4900.00 102 2.142575e+03 218542.65 2.969124e+06 2.943146e+06 25978.66 NULL
2020 Dept Of Parks & Recreation City Park Worker 28411.81659 3.872531e+07 2241894.08 1.644823e+03 599.260 75412.04 1363 5.992600e+02 816791.38 4.096720e+07 3.954210e+07 1425102.70 NULL
2020 Dept Of Parks & Recreation City Planner 87424.49054 1.398792e+06 5471.66 3.419787e+02 0.000 124.75 16 0.000000e+00 0.00 1.404264e+06 1.398792e+06 5471.66 NULL
2020 Dept Of Parks & Recreation City Research Scientist 85134.60157 2.043230e+06 9749.79 4.062412e+02 0.000 192.75 24 0.000000e+00 0.00 2.052980e+06 2.043230e+06 9749.79 NULL
2020 Dept Of Parks & Recreation City Seasonal Aide 12664.73506 1.637550e+07 807479.47 6.245008e+02 135.840 33280.94 1293 1.358400e+02 175641.12 1.718298e+07 1.655114e+07 631838.35 NULL
2020 Dept Of Parks & Recreation Civil Engineer 108727.66667 6.523660e+05 9048.36 1.508060e+03 917.640 140.75 6 9.176400e+02 5505.84 6.614144e+05 6.578718e+05 3542.52 NULL
2020 Dept Of Parks & Recreation Clerical Associate 46795.34729 3.650037e+06 61994.19 7.947973e+02 48.200 1780.25 78 4.820000e+01 3759.60 3.712031e+06 3.653797e+06 58234.59 NULL
2020 Dept Of Parks & Recreation Climber & Pruner 67908.25217 7.809449e+06 1003275.28 8.724133e+03 6459.820 19707.00 115 6.459820e+03 742879.30 8.812724e+06 8.552328e+06 260395.98 NULL
2020 Dept Of Parks & Recreation Commissioner Of Parks & Recreation 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2020 Dept Of Parks & Recreation Community Assistant 40227.16667 2.413630e+05 1185.20 1.975333e+02 22.940 47.00 6 2.294000e+01 137.64 2.425482e+05 2.415006e+05 1047.56 NULL
2020 Dept Of Parks & Recreation Community Associate 41938.52394 6.961795e+06 71587.38 4.312493e+02 0.000 2259.93 166 0.000000e+00 0.00 7.033382e+06 6.961795e+06 71587.38 NULL
2020 Dept Of Parks & Recreation Community Coordinator 67765.72307 3.523818e+07 890530.30 1.712558e+03 0.000 18457.75 520 0.000000e+00 0.00 3.612871e+07 3.523818e+07 890530.30 NULL
2020 Dept Of Parks & Recreation Community Service Aide 4241.85548 1.018045e+05 725.50 3.022917e+01 0.000 41.50 24 0.000000e+00 0.00 1.025300e+05 1.018045e+05 725.50 NULL
2020 Dept Of Parks & Recreation Computer Aide-Non-Spvr 55159.80000 2.757990e+05 16556.65 3.311330e+03 503.280 431.00 5 5.032800e+02 2516.40 2.923557e+05 2.783154e+05 14040.25 NULL
2020 Dept Of Parks & Recreation Computer Associate 75156.98609 1.503140e+06 69543.37 3.477169e+03 323.165 1245.75 20 3.231650e+02 6463.30 1.572683e+06 1.509603e+06 63080.07 NULL
2020 Dept Of Parks & Recreation Computer Operations Manager 108056.00000 3.241680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.241680e+05 3.241680e+05 0.00 NULL
2020 Dept Of Parks & Recreation Computer Specialist 97629.80000 1.464447e+06 15399.66 1.026644e+03 66.120 257.50 15 6.612000e+01 991.80 1.479847e+06 1.465439e+06 14407.86 NULL
2020 Dept Of Parks & Recreation Computer Systems Manager 128925.00000 2.578500e+05 8703.62 4.351810e+03 4351.810 129.75 2 4.351810e+03 8703.62 2.665536e+05 2.665536e+05 0.00 NULL
2020 Dept Of Parks & Recreation Construction Project Manager 85705.15554 7.027823e+06 165599.67 2.019508e+03 542.000 2904.50 82 5.420000e+02 44444.00 7.193422e+06 7.072267e+06 121155.67 NULL
2020 Dept Of Parks & Recreation Construction Project Manager Intern 58718.80000 2.935940e+05 1313.10 2.626200e+02 0.000 36.25 5 0.000000e+00 0.00 2.949071e+05 2.935940e+05 1313.10 NULL
2020 Dept Of Parks & Recreation Cooperative Education Trainee-Seasonal Park Help 3803.75455 4.184130e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 4.184130e+04 4.184130e+04 0.00 NULL
2020 Dept Of Parks & Recreation Counsel 198551.00000 1.985510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.985510e+05 1.985510e+05 0.00 NULL
2020 Dept Of Parks & Recreation Deputy Borough Commissioner 155572.66667 9.334360e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.334360e+05 9.334360e+05 0.00 NULL
2020 Dept Of Parks & Recreation Deputy Chief Of Operations 128730.46154 1.673496e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.673496e+06 1.673496e+06 0.00 NULL
2020 Dept Of Parks & Recreation Deputy Commissioner 194461.00000 1.166766e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.166766e+06 1.166766e+06 0.00 NULL
2020 Dept Of Parks & Recreation Director Of Community Involvement 128750.00000 1.287500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287500e+05 1.287500e+05 0.00 NULL
2020 Dept Of Parks & Recreation Director Of Neighborhood Park Restoration 105318.00000 1.053180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.053180e+05 1.053180e+05 0.00 NULL
2020 Dept Of Parks & Recreation Director Of Puppetry 61960.00000 6.196000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.196000e+04 6.196000e+04 0.00 NULL
2020 Dept Of Parks & Recreation Director Of Urban Park Ranger Program 103141.00000 2.062820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.062820e+05 2.062820e+05 0.00 NULL
2020 Dept Of Parks & Recreation Electrical Engineer 107077.50000 2.141550e+05 4297.80 2.148900e+03 2148.900 73.00 2 2.148900e+03 4297.80 2.184528e+05 2.184528e+05 0.00 NULL
2020 Dept Of Parks & Recreation Electrician NA NA 516317.41 1.229327e+04 7243.825 5793.00 42 7.243825e+03 304240.65 NA NA NA NULL
2020 Dept Of Parks & Recreation Engineering Technician 59740.00000 5.974000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.974000e+04 5.974000e+04 0.00 NULL
2020 Dept Of Parks & Recreation Environmental Engineer 104845.00000 1.048450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.048450e+05 1.048450e+05 0.00 NULL
2020 Dept Of Parks & Recreation Executive Agency Counsel 146023.50000 5.840940e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.840940e+05 5.840940e+05 0.00 NULL
2020 Dept Of Parks & Recreation Executive Assistant To The Commissioner 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2020 Dept Of Parks & Recreation Exterminator 48570.80000 4.857080e+05 62101.43 6.210143e+03 4024.675 1758.75 10 4.024675e+03 40246.75 5.478094e+05 5.259548e+05 21854.68 NULL
2020 Dept Of Parks & Recreation Forester 57677.49362 3.979747e+06 69208.33 1.003019e+03 254.890 1726.25 69 2.548900e+02 17587.41 4.048955e+06 3.997334e+06 51620.92 NULL
2020 Dept Of Parks & Recreation Gardener 46477.54259 1.055040e+07 658608.80 2.901360e+03 707.670 18205.75 227 7.076700e+02 160641.09 1.120901e+07 1.071104e+07 497967.71 NULL
2020 Dept Of Parks & Recreation Hostler 9938.09250 9.938093e+03 307.23 3.072300e+02 307.230 12.25 1 3.072300e+02 307.23 1.024532e+04 1.024532e+04 0.00 NULL
2020 Dept Of Parks & Recreation Investigator 70343.20000 7.034320e+05 39145.67 3.914567e+03 1255.905 808.25 10 1.255905e+03 12559.05 7.425777e+05 7.159911e+05 26586.62 NULL
2020 Dept Of Parks & Recreation It Automation And Monitoring Engineer 85231.00000 8.523100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.523100e+04 8.523100e+04 0.00 NULL
2020 Dept Of Parks & Recreation It Infrastructure Engineer 87550.00000 8.755000e+04 13329.78 1.332978e+04 13329.780 229.00 1 1.332978e+04 13329.78 1.008798e+05 1.008798e+05 0.00 NULL
2020 Dept Of Parks & Recreation It Project Specialist 92044.20000 4.602210e+05 974.96 1.949920e+02 0.000 22.25 5 0.000000e+00 0.00 4.611960e+05 4.602210e+05 974.96 NULL
2020 Dept Of Parks & Recreation It Service Management Specialist 75000.00000 7.500000e+04 686.03 6.860300e+02 686.030 15.50 1 6.860300e+02 686.03 7.568603e+04 7.568603e+04 0.00 NULL
2020 Dept Of Parks & Recreation Job Training Participant 9528.75514 4.737697e+07 2407959.91 4.843041e+02 61.800 112630.77 4972 6.180000e+01 307269.60 4.978493e+07 4.768424e+07 2100690.31 NULL
2020 Dept Of Parks & Recreation Labor Relations Analyst 74699.50000 1.493990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.493990e+05 1.493990e+05 0.00 NULL
2020 Dept Of Parks & Recreation Landmarks Preservationist 84334.50000 3.373380e+05 7206.43 1.801608e+03 107.185 162.00 4 1.071850e+02 428.74 3.445444e+05 3.377667e+05 6777.69 NULL
2020 Dept Of Parks & Recreation Landscape Architect 97421.43226 9.060193e+06 119434.66 1.284244e+03 0.000 1857.50 93 0.000000e+00 0.00 9.179628e+06 9.060193e+06 119434.66 NULL
2020 Dept Of Parks & Recreation Landscape Architect Intern 58380.66667 1.751420e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.751420e+05 1.751420e+05 0.00 NULL
2020 Dept Of Parks & Recreation Letterer And Sign Painter NA NA 13714.07 4.571357e+03 4855.110 294.75 3 4.571357e+03 13714.07 NA NA NA NULL
2020 Dept Of Parks & Recreation Life Guard 9029.08283 1.171072e+07 783953.83 6.044363e+02 363.440 27334.50 1297 3.634400e+02 471381.68 1.249467e+07 1.218210e+07 312572.15 NULL
2020 Dept Of Parks & Recreation Machinist NA NA 20502.72 6.834240e+03 4707.420 301.50 3 4.707420e+03 14122.26 NA NA NA NULL
2020 Dept Of Parks & Recreation Maintenance Worker NA NA 640557.11 6.672470e+03 2264.680 12797.75 96 2.264680e+03 217409.28 NA NA NA NULL
2020 Dept Of Parks & Recreation Management Auditor 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2020 Dept Of Parks & Recreation Manager Of Park License Agreements 160112.00000 1.601120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.601120e+05 1.601120e+05 0.00 NULL
2020 Dept Of Parks & Recreation Marine Maintenance Mechanic 79484.00000 2.384520e+05 437.35 1.457833e+02 17.400 8.00 3 1.740000e+01 52.20 2.388894e+05 2.385042e+05 385.15 NULL
2020 Dept Of Parks & Recreation Masons Helper NA NA 24203.90 8.067967e+03 3281.450 303.25 3 3.281450e+03 9844.35 NA NA NA NULL
2020 Dept Of Parks & Recreation Mechanical Engineer 104589.66667 3.137690e+05 2431.97 8.106567e+02 209.640 39.75 3 2.096400e+02 628.92 3.162010e+05 3.143979e+05 1803.05 NULL
2020 Dept Of Parks & Recreation Monuments Officer 96682.00000 9.668200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.668200e+04 9.668200e+04 0.00 NULL
2020 Dept Of Parks & Recreation Oiler NA NA 77690.30 1.942258e+04 17886.740 824.25 4 1.788674e+04 71546.96 NA NA NA NULL
2020 Dept Of Parks & Recreation Painter NA NA 308010.78 1.026703e+04 3787.795 4949.25 30 3.787795e+03 113633.85 NA NA NA NULL
2020 Dept Of Parks & Recreation Park Supervisor 76167.88166 2.452606e+07 2406854.96 7.474705e+03 4660.425 42758.00 322 4.660425e+03 1500656.85 2.693291e+07 2.602671e+07 906198.11 NULL
2020 Dept Of Parks & Recreation Playground Associate 15489.22636 2.819039e+06 85569.59 4.701626e+02 65.450 3582.25 182 6.545000e+01 11911.90 2.904609e+06 2.830951e+06 73657.69 NULL
2020 Dept Of Parks & Recreation Plumber NA NA 1211359.41 2.088551e+04 20273.305 11647.00 58 2.027331e+04 1175851.69 NA NA NA NULL
2020 Dept Of Parks & Recreation Plumber’s Helper 39231.66250 3.923166e+04 12304.35 1.230435e+04 12304.350 166.50 1 1.230435e+04 12304.35 5.153601e+04 5.153601e+04 0.00 NULL
2020 Dept Of Parks & Recreation Principal Administrative Associate - Non Supvr 67048.76667 6.034389e+06 190108.14 2.112313e+03 13.410 4002.50 90 1.341000e+01 1206.90 6.224497e+06 6.035596e+06 188901.24 NULL
2020 Dept Of Parks & Recreation Procurement Analyst 74360.45000 1.487209e+06 20090.07 1.004504e+03 130.710 411.00 20 1.307100e+02 2614.20 1.507299e+06 1.489823e+06 17475.87 NULL
2020 Dept Of Parks & Recreation Project Manager 73923.78571 1.034933e+06 13517.67 9.655479e+02 0.000 264.25 14 0.000000e+00 0.00 1.048451e+06 1.034933e+06 13517.67 NULL
2020 Dept Of Parks & Recreation Public Records Officer 55323.00000 5.532300e+04 496.98 4.969800e+02 496.980 15.00 1 4.969800e+02 496.98 5.581998e+04 5.581998e+04 0.00 NULL
2020 Dept Of Parks & Recreation Puppeteer 47909.00000 1.916360e+05 1854.77 4.636925e+02 125.020 49.50 4 1.250200e+02 500.08 1.934908e+05 1.921361e+05 1354.69 NULL
2020 Dept Of Parks & Recreation Quality Assurance Specialist 55421.33333 1.662640e+05 644.32 2.147733e+02 294.800 16.50 3 2.147733e+02 644.32 1.669083e+05 1.669083e+05 0.00 NULL
2020 Dept Of Parks & Recreation Recreation Director 47331.08261 1.088615e+06 31938.96 1.388650e+03 477.920 966.75 23 4.779200e+02 10992.16 1.120554e+06 1.099607e+06 20946.80 NULL
2020 Dept Of Parks & Recreation Recreation Specialist 31213.13071 7.834496e+06 221410.38 8.821131e+02 216.410 7197.75 251 2.164100e+02 54318.91 8.055906e+06 7.888815e+06 167091.47 NULL
2020 Dept Of Parks & Recreation Recreation Supervisor 57669.49184 7.900720e+06 764003.09 5.576665e+03 1274.520 15629.56 137 1.274520e+03 174609.24 8.664723e+06 8.075330e+06 589393.85 NULL
2020 Dept Of Parks & Recreation Research Assistant 63935.50000 1.278710e+05 3999.20 1.999600e+03 1999.600 91.25 2 1.999600e+03 3999.20 1.318702e+05 1.318702e+05 0.00 NULL
2020 Dept Of Parks & Recreation Secretary 56024.00000 1.120480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.120480e+05 1.120480e+05 0.00 NULL
2020 Dept Of Parks & Recreation Senior Estimator 93205.80000 4.660290e+05 1577.64 3.155280e+02 0.000 25.75 5 0.000000e+00 0.00 4.676066e+05 4.660290e+05 1577.64 NULL
2020 Dept Of Parks & Recreation Senior Photographer 75824.50000 1.516490e+05 2928.19 1.464095e+03 1464.095 59.00 2 1.464095e+03 2928.19 1.545772e+05 1.545772e+05 0.00 NULL
2020 Dept Of Parks & Recreation Senior Stationary Engineer NA NA 224812.02 7.493734e+04 79347.920 1917.50 3 7.493734e+04 224812.02 NA NA NA NULL
2020 Dept Of Parks & Recreation Sheet Metal Worker NA NA 26175.93 4.362655e+03 2924.700 220.50 6 2.924700e+03 17548.20 NA NA NA NULL
2020 Dept Of Parks & Recreation Staff Analyst 63535.46154 8.259610e+05 20733.04 1.594849e+03 0.000 430.00 13 0.000000e+00 0.00 8.466940e+05 8.259610e+05 20733.04 NULL
2020 Dept Of Parks & Recreation Stationary Engineer NA NA 1590231.15 2.092409e+04 6315.915 16236.80 76 6.315915e+03 480009.54 NA NA NA NULL
2020 Dept Of Parks & Recreation Steam Fitter NA NA 197160.64 2.464508e+04 27189.080 1906.75 8 2.464508e+04 197160.64 NA NA NA NULL
2020 Dept Of Parks & Recreation Steam Fitter’s Helper NA NA 3300.00 3.300000e+03 3300.000 40.00 1 3.300000e+03 3300.00 NA NA NA NULL
2020 Dept Of Parks & Recreation Stock Worker 39797.00000 3.979700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.979700e+04 3.979700e+04 0.00 NULL
2020 Dept Of Parks & Recreation Supervising Computer Service Technician 70691.00000 7.069100e+04 484.53 4.845300e+02 484.530 11.25 1 4.845300e+02 484.53 7.117553e+04 7.117553e+04 0.00 NULL
2020 Dept Of Parks & Recreation Supervising Dockmaster 66536.12500 5.322890e+05 5373.12 6.716400e+02 399.890 107.00 8 3.998900e+02 3199.12 5.376621e+05 5.354881e+05 2174.00 NULL
2020 Dept Of Parks & Recreation Supervisor 72334.50000 1.446690e+05 40358.40 2.017920e+04 20179.200 780.00 2 2.017920e+04 40358.40 1.850274e+05 1.850274e+05 0.00 NULL
2020 Dept Of Parks & Recreation Supervisor Carpenter NA NA 128902.12 3.222553e+04 35824.050 1522.25 4 3.222553e+04 128902.12 NA NA NA NULL
2020 Dept Of Parks & Recreation Supervisor Electrician NA NA 60995.43 3.049772e+04 30497.715 634.75 2 3.049772e+04 60995.43 NA NA NA NULL
2020 Dept Of Parks & Recreation Supervisor Of Mechanics NA NA 271216.65 2.260139e+04 13585.355 2927.50 12 1.358535e+04 163024.26 NA NA NA NULL
2020 Dept Of Parks & Recreation Supervisor Of Stock Workers 52994.00000 5.299400e+04 695.69 6.956900e+02 695.690 16.50 1 6.956900e+02 695.69 5.368969e+04 5.368969e+04 0.00 NULL
2020 Dept Of Parks & Recreation Supervisor Painter NA NA 107710.74 3.590358e+04 36052.830 1503.50 3 3.590358e+04 107710.74 NA NA NA NULL
2020 Dept Of Parks & Recreation Supervisor Plumber NA NA 295479.10 5.909582e+04 54871.140 2724.25 5 5.487114e+04 274355.70 NA NA NA NULL
2020 Dept Of Parks & Recreation Surveyor 71833.37500 5.746670e+05 29292.17 3.661521e+03 822.085 600.00 8 8.220850e+02 6576.68 6.039592e+05 5.812437e+05 22715.49 NULL
2020 Dept Of Parks & Recreation Telecommunications Associate 73574.42857 5.150210e+05 34002.29 4.857470e+03 2745.850 513.75 7 2.745850e+03 19220.95 5.490233e+05 5.342419e+05 14781.34 NULL
2020 Dept Of Parks & Recreation Telephone Service Technician 64072.83333 3.844370e+05 49113.73 8.185622e+03 8757.400 1077.00 6 8.185622e+03 49113.73 4.335507e+05 4.335507e+05 0.00 NULL
2020 Dept Of Parks & Recreation Thermostat Repairer NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2020 Dept Of Parks & Recreation Urban Park Ranger 47294.81058 2.497166e+07 890353.52 1.686276e+03 392.775 23708.66 528 3.927750e+02 207385.20 2.586201e+07 2.517905e+07 682968.32 NULL
2020 Dept Of Records & Info Service Adm Manager-Non-Mgrl 79455.25000 3.178210e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.178210e+05 3.178210e+05 0.00 NULL
2020 Dept Of Records & Info Service Administrative Public Records Officer 115477.66667 3.464330e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.464330e+05 3.464330e+05 0.00 NULL
2020 Dept Of Records & Info Service Agency Attorney 117541.00000 1.175410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.175410e+05 1.175410e+05 0.00 NULL
2020 Dept Of Records & Info Service Assistant Commissioner 156972.00000 1.569720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.569720e+05 1.569720e+05 0.00 NULL
2020 Dept Of Records & Info Service Associate Project Manager 103000.00000 1.030000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030000e+05 1.030000e+05 0.00 NULL
2020 Dept Of Records & Info Service Associate Public Records Officer 65073.72727 7.158110e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.158110e+05 7.158110e+05 0.00 NULL
2020 Dept Of Records & Info Service Associate Staff Analyst 97873.00000 9.787300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.787300e+04 9.787300e+04 0.00 NULL
2020 Dept Of Records & Info Service Certified It Administrator 124376.00000 1.243760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.243760e+05 1.243760e+05 0.00 NULL
2020 Dept Of Records & Info Service Certified It Developer 108628.50000 2.172570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.172570e+05 2.172570e+05 0.00 NULL
2020 Dept Of Records & Info Service City Custodial Assistant 35302.00000 7.060400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.060400e+04 7.060400e+04 0.00 NULL
2020 Dept Of Records & Info Service Clerical Associate 47388.16667 2.843290e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.843290e+05 2.843290e+05 0.00 NULL
2020 Dept Of Records & Info Service Commissioner 218405.00000 2.184050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.184050e+05 2.184050e+05 0.00 NULL
2020 Dept Of Records & Info Service Community Assistant 37422.21000 3.742221e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.742221e+04 3.742221e+04 0.00 NULL
2020 Dept Of Records & Info Service Community Associate 45238.30387 1.357149e+05 9202.82 3.067607e+03 0.000 268.25 3 0.000000e+00 0.00 1.449177e+05 1.357149e+05 9202.82 NULL
2020 Dept Of Records & Info Service Community Coordinator 80160.75000 3.206430e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.206430e+05 3.206430e+05 0.00 NULL
2020 Dept Of Records & Info Service Computer Associate 49850.00000 4.985000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.985000e+04 4.985000e+04 0.00 NULL
2020 Dept Of Records & Info Service Computer Specialist 81951.00000 8.195100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.195100e+04 8.195100e+04 0.00 NULL
2020 Dept Of Records & Info Service Computer Systems Manager 137546.25000 5.501850e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.501850e+05 5.501850e+05 0.00 NULL
2020 Dept Of Records & Info Service Motor Vehicle Operator 50320.00000 5.032000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.032000e+04 5.032000e+04 0.00 NULL
2020 Dept Of Records & Info Service Principal Administrative Associate - Non Supvr 59573.75000 2.382950e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.382950e+05 2.382950e+05 0.00 NULL
2020 Dept Of Records & Info Service Procurement Analyst 47683.00000 4.768300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.768300e+04 4.768300e+04 0.00 NULL
2020 Dept Of Records & Info Service Public Records Aide 28946.33950 6.078731e+05 26961.82 1.283896e+03 0.000 1105.50 21 0.000000e+00 0.00 6.348349e+05 6.078731e+05 26961.82 NULL
2020 Dept Of Records & Info Service Public Records Officer 45500.43303 5.005048e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.005048e+05 5.005048e+05 0.00 NULL
2020 Dept Of Records & Info Service Research Assistant 60434.00000 1.208680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.208680e+05 1.208680e+05 0.00 NULL
2020 Dept Of Records & Info Service Staff Analyst 57930.00000 5.793000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.793000e+04 5.793000e+04 0.00 NULL
2020 Dept Of Records & Info Service Stock Worker 20923.18270 8.369273e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.369273e+04 8.369273e+04 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Accountant 87901.00000 8.790100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.790100e+04 8.790100e+04 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Adm Manager-Non-Mgrl 78357.25000 1.567145e+06 2408.61 1.204305e+02 0.000 48.00 20 0.000000e+00 0.00 1.569554e+06 1.567145e+06 2408.61 NULL
2020 Dept Of Youth & Comm Dev Srvs Admin Community Relations Specialist 83234.67442 3.579091e+06 3348.61 7.787465e+01 0.000 70.75 43 0.000000e+00 0.00 3.582440e+06 3.579091e+06 3348.61 NULL
2020 Dept Of Youth & Comm Dev Srvs Admin Contract Specialist 136892.50000 1.642710e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.642710e+06 1.642710e+06 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Administrative Business Promotion Coordinator 89482.60000 2.237065e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 2.237065e+06 2.237065e+06 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Administrative Community Relations Specialist 119847.73333 1.797716e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.797716e+06 1.797716e+06 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Administrative Contract Specialist 82847.75714 5.799343e+06 1740.75 2.486786e+01 0.000 34.25 70 0.000000e+00 0.00 5.801084e+06 5.799343e+06 1740.75 NULL
2020 Dept Of Youth & Comm Dev Srvs Administrative Graphic Artist 106341.00000 1.063410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.063410e+05 1.063410e+05 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Administrative Labor Relations Analyst 106985.00000 2.139700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.139700e+05 2.139700e+05 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Administrative Management Auditor 119083.33333 3.572500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.572500e+05 3.572500e+05 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Administrative Manager 112534.00000 1.800544e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.800544e+06 1.800544e+06 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Administrative Procurement Analyst 134778.33333 4.043350e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.043350e+05 4.043350e+05 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Administrative Procurement Analyst-Non-Mgrl 73699.50000 2.947980e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.947980e+05 2.947980e+05 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Administrative Public Information Specialist 108821.00000 1.088210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.088210e+05 1.088210e+05 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Administrative Staff Analyst 116401.01720 5.820051e+06 0.00 0.000000e+00 0.000 0.00 50 0.000000e+00 0.00 5.820051e+06 5.820051e+06 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Agency Attorney 100142.71429 7.009990e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.009990e+05 7.009990e+05 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Agency Chief Contracting Officer 191580.00000 1.915800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.915800e+05 1.915800e+05 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Associate Contract Specialist 72224.87500 4.622392e+06 4085.02 6.382844e+01 0.000 95.00 64 0.000000e+00 0.00 4.626477e+06 4.622392e+06 4085.02 NULL
2020 Dept Of Youth & Comm Dev Srvs Associate Staff Analyst 84366.71429 5.905670e+05 4313.29 6.161843e+02 0.000 84.00 7 0.000000e+00 0.00 5.948803e+05 5.905670e+05 4313.29 NULL
2020 Dept Of Youth & Comm Dev Srvs Certified It Administrator 121883.00000 2.437660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.437660e+05 2.437660e+05 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Certified It Developer 117289.18182 1.290181e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.290181e+06 1.290181e+06 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs City Research Scientist 90445.00000 4.522250e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.522250e+05 4.522250e+05 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Clerical Associate 59073.55556 5.316620e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.316620e+05 5.316620e+05 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs College Aide 2182.23438 8.728938e+03 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.728938e+03 8.728938e+03 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs College Aide - Assignment Levels Ii And Iii 9235.91255 1.015950e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.015950e+05 1.015950e+05 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Commissioner Of Community Development 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Community Assistant 21007.50650 1.470525e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.470525e+05 1.470525e+05 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Community Associate 51941.37500 4.155310e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.155310e+05 4.155310e+05 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Community Coordinator 69344.13441 4.438025e+06 9656.85 1.508883e+02 0.000 197.50 64 0.000000e+00 0.00 4.447681e+06 4.438025e+06 9656.85 NULL
2020 Dept Of Youth & Comm Dev Srvs Community Service Aide 26280.18240 5.256036e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.256036e+04 5.256036e+04 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Computer Associate 80629.80000 4.031490e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.031490e+05 4.031490e+05 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Computer Operations Manager 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Computer Specialist 108253.18750 1.732051e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.732051e+06 1.732051e+06 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Computer Systems Manager 124524.36364 1.369768e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.369768e+06 1.369768e+06 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Contract Specialist 64357.57407 3.475309e+06 8229.49 1.523980e+02 0.000 171.25 54 0.000000e+00 0.00 3.483538e+06 3.475309e+06 8229.49 NULL
2020 Dept Of Youth & Comm Dev Srvs Deputy Commissioner 193773.00000 3.875460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.875460e+05 3.875460e+05 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Executive Agency Counsel 171492.50000 3.429850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.429850e+05 3.429850e+05 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Graphic Artist 66388.00000 6.638800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.638800e+04 6.638800e+04 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Management Auditor 77337.85714 5.413650e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.413650e+05 5.413650e+05 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Motor Vehicle Operator 62215.00000 6.221500e+04 2601.32 2.601320e+03 2601.320 59.25 1 2.601320e+03 2601.32 6.481632e+04 6.481632e+04 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Photographer 55741.78500 5.574179e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.574179e+04 5.574179e+04 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Principal Administrative Associate - Non Supvr 70372.09000 1.477814e+06 57.17 2.722381e+00 0.000 0.00 21 0.000000e+00 0.00 1.477871e+06 1.477814e+06 57.17 NULL
2020 Dept Of Youth & Comm Dev Srvs Procurement Analyst 63608.76471 1.081349e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.081349e+06 1.081349e+06 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Public Records Aide 36329.00000 3.632900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.632900e+04 3.632900e+04 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Secretary 53255.00000 5.325500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.325500e+04 5.325500e+04 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Senior Field Supervisor 12119.37828 8.241177e+05 0.00 0.000000e+00 0.000 0.00 68 0.000000e+00 0.00 8.241177e+05 8.241177e+05 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Staff Analyst 70053.00000 4.203180e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.203180e+05 4.203180e+05 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Summer College Intern 3513.01300 1.756506e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.756506e+04 1.756506e+04 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Summer Graduate Intern 4456.41750 4.456417e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.456417e+03 4.456417e+03 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Supervisor Of Motor Transport 68420.00000 6.842000e+04 7472.92 7.472920e+03 7472.920 150.50 1 7.472920e+03 7472.92 7.589292e+04 7.589292e+04 0.00 NULL
2020 Dept Of Youth & Comm Dev Srvs Youth Coordinator 55301.46213 4.977132e+05 2977.71 3.308567e+02 0.000 81.25 9 0.000000e+00 0.00 5.006909e+05 4.977132e+05 2977.71 NULL
2020 Dept. Of Design & Construction *Certified Local Area Network Administrator 127916.00000 1.279160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.279160e+05 1.279160e+05 0.00 NULL
2020 Dept. Of Design & Construction Accountant 72498.61111 1.304975e+06 17201.06 9.556144e+02 0.000 319.75 18 0.000000e+00 0.00 1.322176e+06 1.304975e+06 17201.06 NULL
2020 Dept. Of Design & Construction Adm Manager-Non-Mgrl 79615.34615 2.069999e+06 2976.41 1.144773e+02 0.000 63.25 26 0.000000e+00 0.00 2.072975e+06 2.069999e+06 2976.41 NULL
2020 Dept. Of Design & Construction Admin Community Relations Specialist 93584.54545 1.029430e+06 16051.61 1.459237e+03 0.000 327.50 11 0.000000e+00 0.00 1.045482e+06 1.029430e+06 16051.61 NULL
2020 Dept. Of Design & Construction Admin Construction Project Manager 112271.21212 3.704950e+06 91326.47 2.767469e+03 0.000 1291.25 33 0.000000e+00 0.00 3.796276e+06 3.704950e+06 91326.47 NULL
2020 Dept. Of Design & Construction Admin Contract Specialist 93730.00000 9.373000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.373000e+04 9.373000e+04 0.00 NULL
2020 Dept. Of Design & Construction Administrative Accountant 106605.00000 2.132100e+05 929.80 4.649000e+02 464.900 16.25 2 4.649000e+02 929.80 2.141398e+05 2.141398e+05 0.00 NULL
2020 Dept. Of Design & Construction Administrative Architect 134242.37037 3.624544e+06 18063.42 6.690156e+02 0.000 210.25 27 0.000000e+00 0.00 3.642607e+06 3.624544e+06 18063.42 NULL
2020 Dept. Of Design & Construction Administrative Business Promotion Coordinator 144200.00000 1.442000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.442000e+05 1.442000e+05 0.00 NULL
2020 Dept. Of Design & Construction Administrative City Planner 117538.75000 4.701550e+05 145.86 3.646500e+01 0.000 2.25 4 0.000000e+00 0.00 4.703009e+05 4.701550e+05 145.86 NULL
2020 Dept. Of Design & Construction Administrative Community Relations Specialist 197359.66667 5.920790e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.920790e+05 5.920790e+05 0.00 NULL
2020 Dept. Of Design & Construction Administrative Construction Project Manager 149329.25000 2.986585e+06 67315.24 3.365762e+03 0.000 765.50 20 0.000000e+00 0.00 3.053900e+06 2.986585e+06 67315.24 NULL
2020 Dept. Of Design & Construction Administrative Engineer 135983.69048 1.142263e+07 248284.28 2.955765e+03 0.000 3583.50 84 0.000000e+00 0.00 1.167091e+07 1.142263e+07 248284.28 NULL
2020 Dept. Of Design & Construction Administrative Graphic Artist 111340.50000 2.226810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.226810e+05 2.226810e+05 0.00 NULL
2020 Dept. Of Design & Construction Administrative Landmarks Preservationist 141766.00000 1.417660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.417660e+05 1.417660e+05 0.00 NULL
2020 Dept. Of Design & Construction Administrative Landscape Architect 130911.50000 5.236460e+05 14097.25 3.524312e+03 0.000 185.75 4 0.000000e+00 0.00 5.377432e+05 5.236460e+05 14097.25 NULL
2020 Dept. Of Design & Construction Administrative Manager 141512.00000 2.830240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.830240e+05 2.830240e+05 0.00 NULL
2020 Dept. Of Design & Construction Administrative Procurement Analyst-Non-Mgrl 91945.53846 1.195292e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.195292e+06 1.195292e+06 0.00 NULL
2020 Dept. Of Design & Construction Administrative Project Manager 112255.46416 1.897117e+07 431271.60 2.551903e+03 0.000 6381.00 169 0.000000e+00 0.00 1.940245e+07 1.897117e+07 431271.60 NULL
2020 Dept. Of Design & Construction Administrative Public Information Specialist 154905.00000 3.098100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.098100e+05 3.098100e+05 0.00 NULL
2020 Dept. Of Design & Construction Administrative Staff Analyst 107559.86061 3.549475e+06 485.57 1.471424e+01 0.000 11.75 33 0.000000e+00 0.00 3.549961e+06 3.549475e+06 485.57 NULL
2020 Dept. Of Design & Construction Administrative Supervisor Of Building Maintenance 99254.00000 9.925400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.925400e+04 9.925400e+04 0.00 NULL
2020 Dept. Of Design & Construction Agency Attorney 88306.37500 7.064510e+05 431.64 5.395500e+01 0.000 9.00 8 0.000000e+00 0.00 7.068826e+05 7.064510e+05 431.64 NULL
2020 Dept. Of Design & Construction Agency Attorney Interne 62397.00000 1.871910e+05 76.84 2.561333e+01 0.000 2.25 3 0.000000e+00 0.00 1.872678e+05 1.871910e+05 76.84 NULL
2020 Dept. Of Design & Construction Agency Chief Contracting Officer 149350.00000 1.493500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.493500e+05 1.493500e+05 0.00 NULL
2020 Dept. Of Design & Construction Architect 99729.04545 2.194039e+06 3976.73 1.807605e+02 0.000 63.25 22 0.000000e+00 0.00 2.198016e+06 2.194039e+06 3976.73 NULL
2020 Dept. Of Design & Construction Architectural Intern 51500.00000 5.150000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.150000e+04 5.150000e+04 0.00 NULL
2020 Dept. Of Design & Construction Asbestos Hazard Investigator 71310.66667 2.139320e+05 642.39 2.141300e+02 0.000 14.75 3 0.000000e+00 0.00 2.145744e+05 2.139320e+05 642.39 NULL
2020 Dept. Of Design & Construction Ass Commissioner Design And Construction Management 187460.00000 1.874600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.874600e+05 1.874600e+05 0.00 NULL
2020 Dept. Of Design & Construction Assistant Architect 82083.66667 2.462510e+05 59.33 1.977667e+01 0.000 1.25 3 0.000000e+00 0.00 2.463103e+05 2.462510e+05 59.33 NULL
2020 Dept. Of Design & Construction Assistant Chemical Engineer 85646.00000 8.564600e+04 1277.06 1.277060e+03 1277.060 25.25 1 1.277060e+03 1277.06 8.692306e+04 8.692306e+04 0.00 NULL
2020 Dept. Of Design & Construction Assistant Civil Engineer 71877.82075 7.619049e+06 211131.18 1.991804e+03 0.000 4495.00 106 0.000000e+00 0.00 7.830180e+06 7.619049e+06 211131.18 NULL
2020 Dept. Of Design & Construction Assistant Electrical Engineer 73308.00000 2.199240e+05 403.16 1.343867e+02 0.000 8.50 3 0.000000e+00 0.00 2.203272e+05 2.199240e+05 403.16 NULL
2020 Dept. Of Design & Construction Assistant Landscape Architect 73597.60000 3.679880e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.679880e+05 3.679880e+05 0.00 NULL
2020 Dept. Of Design & Construction Assistant Mechanical Engineer 73217.50000 2.928700e+05 5827.45 1.456862e+03 505.155 146.50 4 5.051550e+02 2020.62 2.986975e+05 2.948906e+05 3806.83 NULL
2020 Dept. Of Design & Construction Assistant Urban Designer 72100.00000 1.442000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.442000e+05 1.442000e+05 0.00 NULL
2020 Dept. Of Design & Construction Associate Inspector 74197.00000 7.419700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.419700e+04 7.419700e+04 0.00 NULL
2020 Dept. Of Design & Construction Associate Investigator 69574.75000 2.782990e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.782990e+05 2.782990e+05 0.00 NULL
2020 Dept. Of Design & Construction Associate Project Manager 92396.81579 7.022158e+06 236318.93 3.109460e+03 0.000 4012.75 76 0.000000e+00 0.00 7.258477e+06 7.022158e+06 236318.93 NULL
2020 Dept. Of Design & Construction Associate Public Health Sanitarian 98444.00000 9.844400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.844400e+04 9.844400e+04 0.00 NULL
2020 Dept. Of Design & Construction Associate Staff Analyst 86098.00000 1.119274e+06 1779.53 1.368869e+02 0.000 34.50 13 0.000000e+00 0.00 1.121054e+06 1.119274e+06 1779.53 NULL
2020 Dept. Of Design & Construction Associate Urban Designer 93877.28571 6.571410e+05 5336.91 7.624157e+02 0.000 73.50 7 0.000000e+00 0.00 6.624779e+05 6.571410e+05 5336.91 NULL
2020 Dept. Of Design & Construction Certified It Administrator 99008.00000 3.960320e+05 1116.81 2.792025e+02 0.000 17.00 4 0.000000e+00 0.00 3.971488e+05 3.960320e+05 1116.81 NULL
2020 Dept. Of Design & Construction Certified It Developer 102921.33333 1.235056e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.235056e+06 1.235056e+06 0.00 NULL
2020 Dept. Of Design & Construction City Planner 93731.80000 4.686590e+05 6198.37 1.239674e+03 0.000 124.75 5 0.000000e+00 0.00 4.748574e+05 4.686590e+05 6198.37 NULL
2020 Dept. Of Design & Construction Civil Engineer 97143.53125 3.108593e+06 88103.16 2.753224e+03 0.000 1342.50 32 0.000000e+00 0.00 3.196696e+06 3.108593e+06 88103.16 NULL
2020 Dept. Of Design & Construction Civil Engineering Intern 59034.77358 3.128843e+06 65459.69 1.235088e+03 0.000 1678.25 53 0.000000e+00 0.00 3.194303e+06 3.128843e+06 65459.69 NULL
2020 Dept. Of Design & Construction Clerical Aide 41064.00000 4.106400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.106400e+04 4.106400e+04 0.00 NULL
2020 Dept. Of Design & Construction Clerical Associate 54419.77778 1.959112e+06 7240.16 2.011156e+02 0.000 184.50 36 0.000000e+00 0.00 1.966352e+06 1.959112e+06 7240.16 NULL
2020 Dept. Of Design & Construction College Aide 11725.25682 1.289778e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.289778e+05 1.289778e+05 0.00 NULL
2020 Dept. Of Design & Construction College Aide - Assignment Levels Ii And Iii 9919.22325 1.983845e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.983845e+04 1.983845e+04 0.00 NULL
2020 Dept. Of Design & Construction Community Assistant 25923.56610 1.296178e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.296178e+05 1.296178e+05 0.00 NULL
2020 Dept. Of Design & Construction Community Associate 48241.00000 7.718560e+05 803.96 5.024750e+01 0.000 34.00 16 0.000000e+00 0.00 7.726600e+05 7.718560e+05 803.96 NULL
2020 Dept. Of Design & Construction Community Coordinator 71420.56250 2.285458e+06 24652.76 7.703987e+02 0.000 474.00 32 0.000000e+00 0.00 2.310111e+06 2.285458e+06 24652.76 NULL
2020 Dept. Of Design & Construction Computer Aide-Non-Spvr 65562.00000 6.556200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.556200e+04 6.556200e+04 0.00 NULL
2020 Dept. Of Design & Construction Computer Associate 78722.33333 2.361670e+05 152.97 5.099000e+01 0.000 0.00 3 0.000000e+00 0.00 2.363200e+05 2.361670e+05 152.97 NULL
2020 Dept. Of Design & Construction Computer Operations Manager 143177.00000 1.431770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.431770e+05 1.431770e+05 0.00 NULL
2020 Dept. Of Design & Construction Computer Programmer Analyst 60566.50000 1.211330e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.211330e+05 1.211330e+05 0.00 NULL
2020 Dept. Of Design & Construction Computer Service Technician 63564.66667 1.906940e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.906940e+05 1.906940e+05 0.00 NULL
2020 Dept. Of Design & Construction Computer Specialist 102190.72000 2.554768e+06 1062.63 4.250520e+01 0.000 19.75 25 0.000000e+00 0.00 2.555831e+06 2.554768e+06 1062.63 NULL
2020 Dept. Of Design & Construction Computer Systems Manager 129503.70000 1.295037e+06 29.77 2.977000e+00 0.000 0.00 10 0.000000e+00 0.00 1.295067e+06 1.295037e+06 29.77 NULL
2020 Dept. Of Design & Construction Construction Project Manager 86721.82282 9.626122e+06 372851.18 3.359020e+03 310.570 6223.50 111 3.105700e+02 34473.27 9.998974e+06 9.660596e+06 338377.91 NULL
2020 Dept. Of Design & Construction Construction Project Manager Intern 59294.00000 2.964700e+05 5670.02 1.134004e+03 0.000 170.50 5 0.000000e+00 0.00 3.021400e+05 2.964700e+05 5670.02 NULL
2020 Dept. Of Design & Construction Cooperative Education Trainee - Engineering Aide 2595.00000 1.557000e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.557000e+04 1.557000e+04 0.00 NULL
2020 Dept. Of Design & Construction Deputy Commissioner 192000.00000 1.920000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.920000e+05 1.920000e+05 0.00 NULL
2020 Dept. Of Design & Construction Deputy Commissioner For Policy And Analysis 200140.00000 2.001400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.001400e+05 2.001400e+05 0.00 NULL
2020 Dept. Of Design & Construction Director For Equal Employement Opportunity 127342.00000 1.273420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.273420e+05 1.273420e+05 0.00 NULL
2020 Dept. Of Design & Construction Electrical Engineer 86337.00000 8.633700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.633700e+04 8.633700e+04 0.00 NULL
2020 Dept. Of Design & Construction Engineering Technician 64991.86364 1.429821e+06 37093.41 1.686064e+03 0.000 832.25 22 0.000000e+00 0.00 1.466914e+06 1.429821e+06 37093.41 NULL
2020 Dept. Of Design & Construction Estimator 73637.37500 5.890990e+05 5214.69 6.518362e+02 0.000 137.00 8 0.000000e+00 0.00 5.943137e+05 5.890990e+05 5214.69 NULL
2020 Dept. Of Design & Construction Executive Agency Counsel 173663.71429 1.215646e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.215646e+06 1.215646e+06 0.00 NULL
2020 Dept. Of Design & Construction Executive Program Specialist 222480.00000 2.224800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.224800e+05 2.224800e+05 0.00 NULL
2020 Dept. Of Design & Construction Geologist 77082.62500 6.166610e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.166610e+05 6.166610e+05 0.00 NULL
2020 Dept. Of Design & Construction Graphic Artist 84485.75000 3.379430e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.379430e+05 3.379430e+05 0.00 NULL
2020 Dept. Of Design & Construction Highways And Sewers Inspector 62681.25000 2.507250e+05 8519.12 2.129780e+03 822.720 157.00 4 8.227200e+02 3290.88 2.592441e+05 2.540159e+05 5228.24 NULL
2020 Dept. Of Design & Construction Industrial Hygienist 66024.50000 1.320490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.320490e+05 1.320490e+05 0.00 NULL
2020 Dept. Of Design & Construction Inspector 77921.00000 7.792100e+04 216.76 2.167600e+02 216.760 0.00 1 2.167600e+02 216.76 7.813776e+04 7.813776e+04 0.00 NULL
2020 Dept. Of Design & Construction Investigator 63486.00000 6.348600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.348600e+04 6.348600e+04 0.00 NULL
2020 Dept. Of Design & Construction Investigator Empl Disc 51747.75000 2.069910e+05 2171.75 5.429375e+02 678.465 73.50 4 5.429375e+02 2171.75 2.091628e+05 2.091628e+05 0.00 NULL
2020 Dept. Of Design & Construction Landscape Architect 97618.25000 3.904730e+05 8422.33 2.105582e+03 0.000 145.50 4 0.000000e+00 0.00 3.988953e+05 3.904730e+05 8422.33 NULL
2020 Dept. Of Design & Construction Management Auditor 83925.00000 3.357000e+05 4416.96 1.104240e+03 0.000 82.75 4 0.000000e+00 0.00 3.401170e+05 3.357000e+05 4416.96 NULL
2020 Dept. Of Design & Construction Mechanical Engineer 102669.25000 4.106770e+05 3323.13 8.307825e+02 47.580 40.50 4 4.758000e+01 190.32 4.140001e+05 4.108673e+05 3132.81 NULL
2020 Dept. Of Design & Construction Mechanical Engineering Intern 62260.00000 1.245200e+05 229.14 1.145700e+02 114.570 6.25 2 1.145700e+02 229.14 1.247491e+05 1.247491e+05 0.00 NULL
2020 Dept. Of Design & Construction Motor Vehicle Operator 49074.00000 4.907400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.907400e+04 4.907400e+04 0.00 NULL
2020 Dept. Of Design & Construction Motor Vehicle Supervisor 60144.00000 1.202880e+05 2599.81 1.299905e+03 1299.905 59.00 2 1.299905e+03 2599.81 1.228878e+05 1.228878e+05 0.00 NULL
2020 Dept. Of Design & Construction New York City Public Service Fellow 42127.00000 4.212700e+04 201.76 2.017600e+02 201.760 8.75 1 2.017600e+02 201.76 4.232876e+04 4.232876e+04 0.00 NULL
2020 Dept. Of Design & Construction Principal Administrative Associate - Non Supvr 65746.13889 2.366861e+06 23371.64 6.492122e+02 0.000 513.50 36 0.000000e+00 0.00 2.390233e+06 2.366861e+06 23371.64 NULL
2020 Dept. Of Design & Construction Principal Title Examiner 64175.00000 1.283500e+05 1176.71 5.883550e+02 588.355 33.50 2 5.883550e+02 1176.71 1.295267e+05 1.295267e+05 0.00 NULL
2020 Dept. Of Design & Construction Procurement Analyst 73109.64286 1.023535e+06 8311.20 5.936571e+02 0.000 195.25 14 0.000000e+00 0.00 1.031846e+06 1.023535e+06 8311.20 NULL
2020 Dept. Of Design & Construction Program Producer 90730.00000 9.073000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.073000e+04 9.073000e+04 0.00 NULL
2020 Dept. Of Design & Construction Project Manager 72582.28571 3.556532e+06 52665.88 1.074814e+03 0.000 1040.00 49 0.000000e+00 0.00 3.609198e+06 3.556532e+06 52665.88 NULL
2020 Dept. Of Design & Construction Project Manager Intern# 55849.00000 2.792450e+05 3945.87 7.891740e+02 72.520 113.50 5 7.252000e+01 362.60 2.831909e+05 2.796076e+05 3583.27 NULL
2020 Dept. Of Design & Construction Public Records Aide 47542.60000 4.754260e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.754260e+05 4.754260e+05 0.00 NULL
2020 Dept. Of Design & Construction Quality Assurance Specialist 65440.00000 6.544000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.544000e+04 6.544000e+04 0.00 NULL
2020 Dept. Of Design & Construction Research Assistant 68741.00000 6.874100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.874100e+04 6.874100e+04 0.00 NULL
2020 Dept. Of Design & Construction Secretary 57598.50000 4.607880e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.607880e+05 4.607880e+05 0.00 NULL
2020 Dept. Of Design & Construction Secretary To The Commissioner Of Ddc 83232.00000 8.323200e+04 216.41 2.164100e+02 216.410 4.75 1 2.164100e+02 216.41 8.344841e+04 8.344841e+04 0.00 NULL
2020 Dept. Of Design & Construction Senior Estimator 90860.61538 1.181188e+06 25848.44 1.988342e+03 0.000 452.00 13 0.000000e+00 0.00 1.207036e+06 1.181188e+06 25848.44 NULL
2020 Dept. Of Design & Construction Senior Policy Advisor 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2020 Dept. Of Design & Construction Special Assistant To The Commissioner 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2020 Dept. Of Design & Construction Staff Analyst 65356.36585 2.679611e+06 3031.13 7.393000e+01 0.000 80.75 41 0.000000e+00 0.00 2.682642e+06 2.679611e+06 3031.13 NULL
2020 Dept. Of Design & Construction Staff Analyst Trainee 48729.00000 9.745800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.745800e+04 9.745800e+04 0.00 NULL
2020 Dept. Of Design & Construction Statistician 67571.00000 6.757100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.757100e+04 6.757100e+04 0.00 NULL
2020 Dept. Of Design & Construction Stock Worker 49870.00000 9.974000e+04 27.26 1.363000e+01 13.630 0.00 2 1.363000e+01 27.26 9.976726e+04 9.976726e+04 0.00 NULL
2020 Dept. Of Design & Construction Summer College Intern 4548.75000 1.364625e+05 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 1.364625e+05 1.364625e+05 0.00 NULL
2020 Dept. Of Design & Construction Summer Graduate Intern 5902.88889 5.312600e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.312600e+04 5.312600e+04 0.00 NULL
2020 Dept. Of Design & Construction Supervising Special Officer 73884.00000 7.388400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.388400e+04 7.388400e+04 0.00 NULL
2020 Dept. Of Design & Construction Supervisor Of Electrical Installations & Maintenance 83705.25000 3.348210e+05 4534.76 1.133690e+03 0.000 85.00 4 0.000000e+00 0.00 3.393558e+05 3.348210e+05 4534.76 NULL
2020 Dept. Of Design & Construction Supervisor Of Stock Workers 70530.00000 7.053000e+04 2806.22 2.806220e+03 2806.220 69.00 1 2.806220e+03 2806.22 7.333622e+04 7.333622e+04 0.00 NULL
2020 Dept. Of Design & Construction Surveyor 76409.31915 3.591238e+06 87998.71 1.872313e+03 0.000 1669.75 47 0.000000e+00 0.00 3.679237e+06 3.591238e+06 87998.71 NULL
2020 Dept. Of Design & Construction Transportation Specialist 100941.00000 2.018820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.018820e+05 2.018820e+05 0.00 NULL
2020 Dept. Of Homeless Services Adm Manager-Non-Mgrl 71541.00000 1.216197e+06 43053.63 2.532566e+03 0.720 818.00 17 7.200000e-01 12.24 1.259251e+06 1.216209e+06 43041.39 NULL
2020 Dept. Of Homeless Services Admin Community Relations Specialist 84850.32258 2.630360e+06 131212.28 4.232654e+03 46.520 2345.25 31 4.652000e+01 1442.12 2.761572e+06 2.631802e+06 129770.16 NULL
2020 Dept. Of Homeless Services Admin Contract Specialist 126403.00000 3.792090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.792090e+05 3.792090e+05 0.00 NULL
2020 Dept. Of Homeless Services Admin Job Opor Spec-Managerial 127658.00000 3.829740e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.829740e+05 3.829740e+05 0.00 NULL
2020 Dept. Of Homeless Services Admin Job Opportunity Spec Nm 95321.00000 5.719260e+05 661.22 1.102033e+02 0.000 14.25 6 0.000000e+00 0.00 5.725872e+05 5.719260e+05 661.22 NULL
2020 Dept. Of Homeless Services Administrative City Planner 116135.50000 2.322710e+05 616.21 3.081050e+02 308.105 12.50 2 3.081050e+02 616.21 2.328872e+05 2.328872e+05 0.00 NULL
2020 Dept. Of Homeless Services Administrative Community Relations Specialist 187984.00000 1.879840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.879840e+05 1.879840e+05 0.00 NULL
2020 Dept. Of Homeless Services Administrative Construction Project Manager 131407.00000 2.628140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.628140e+05 2.628140e+05 0.00 NULL
2020 Dept. Of Homeless Services Administrative Contract Specialist 95728.25000 7.658260e+05 9487.32 1.185915e+03 0.000 167.50 8 0.000000e+00 0.00 7.753133e+05 7.658260e+05 9487.32 NULL
2020 Dept. Of Homeless Services Administrative Director Of Social Services 112863.31126 1.704236e+07 116497.00 7.715033e+02 0.000 2110.75 151 0.000000e+00 0.00 1.715886e+07 1.704236e+07 116497.00 NULL
2020 Dept. Of Homeless Services Administrative Engineer 110210.00000 1.102100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.102100e+05 1.102100e+05 0.00 NULL
2020 Dept. Of Homeless Services Administrative Housing Development Specialist 105492.00000 2.109840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.109840e+05 2.109840e+05 0.00 NULL
2020 Dept. Of Homeless Services Administrative Management Auditor 102344.00000 1.023440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.023440e+05 1.023440e+05 0.00 NULL
2020 Dept. Of Homeless Services Administrative Nutritionist 96682.00000 9.668200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.668200e+04 9.668200e+04 0.00 NULL
2020 Dept. Of Homeless Services Administrative Public Information Specialist 107421.00000 1.074210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074210e+05 1.074210e+05 0.00 NULL
2020 Dept. Of Homeless Services Administrative Real Property Manager 82610.00000 8.261000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.261000e+04 8.261000e+04 0.00 NULL
2020 Dept. Of Homeless Services Administrative Staff Analyst 87929.00000 5.451598e+06 69531.72 1.121479e+03 0.000 1372.75 62 0.000000e+00 0.00 5.521130e+06 5.451598e+06 69531.72 NULL
2020 Dept. Of Homeless Services Administrative Supervisor Of Building Maintenance 121454.23077 1.578905e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.578905e+06 1.578905e+06 0.00 NULL
2020 Dept. Of Homeless Services Agency Attorney 105179.00000 1.051790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.051790e+05 1.051790e+05 0.00 NULL
2020 Dept. Of Homeless Services Agency Medical Director 219468.00000 2.194680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.194680e+05 2.194680e+05 0.00 NULL
2020 Dept. Of Homeless Services Architect 92640.00000 9.264000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.264000e+04 9.264000e+04 0.00 NULL
2020 Dept. Of Homeless Services Assistant Comissioner For Family Operations 171878.00000 1.718780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.718780e+05 1.718780e+05 0.00 NULL
2020 Dept. Of Homeless Services Assistant Deputy Commissioner Ss 179848.50000 3.596970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.596970e+05 3.596970e+05 0.00 NULL
2020 Dept. Of Homeless Services Assistant Superintendent Of Welfare Shelters 68944.39726 5.032941e+06 836501.40 1.145892e+04 9811.720 16946.25 73 9.811720e+03 716255.56 5.869442e+06 5.749197e+06 120245.84 NULL
2020 Dept. Of Homeless Services Associate Commissioner For Adult Services 209546.00000 2.095460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.095460e+05 2.095460e+05 0.00 NULL
2020 Dept. Of Homeless Services Associate Contract Specialist 66964.75000 2.678590e+05 223.16 5.579000e+01 0.000 6.50 4 0.000000e+00 0.00 2.680822e+05 2.678590e+05 223.16 NULL
2020 Dept. Of Homeless Services Associate Fraud Investigator 71433.20000 5.000324e+06 465373.59 6.648194e+03 5895.520 9390.25 70 5.895520e+03 412686.40 5.465698e+06 5.413010e+06 52687.19 NULL
2020 Dept. Of Homeless Services Associate Housing Development Specialist 85847.00000 2.575410e+05 11028.96 3.676320e+03 0.000 253.00 3 0.000000e+00 0.00 2.685700e+05 2.575410e+05 11028.96 NULL
2020 Dept. Of Homeless Services Associate Investigator 76765.00000 7.676500e+04 8883.11 8.883110e+03 8883.110 158.00 1 8.883110e+03 8883.11 8.564811e+04 8.564811e+04 0.00 NULL
2020 Dept. Of Homeless Services Associate Project Manager 82279.35714 1.151911e+06 25699.09 1.835649e+03 360.075 491.50 14 3.600750e+02 5041.05 1.177610e+06 1.156952e+06 20658.04 NULL
2020 Dept. Of Homeless Services Associate Staff Analyst 78099.60606 2.577287e+06 46351.47 1.404590e+03 0.000 843.00 33 0.000000e+00 0.00 2.623638e+06 2.577287e+06 46351.47 NULL
2020 Dept. Of Homeless Services Asst Commissioner For Planning & Program Dev 150393.00000 1.503930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503930e+05 1.503930e+05 0.00 NULL
2020 Dept. Of Homeless Services Carpenter NA NA 583519.71 2.537042e+04 26782.350 7714.50 23 2.537042e+04 583519.71 NA NA NA NULL
2020 Dept. Of Homeless Services Caseworker 46300.63725 4.722665e+06 193929.24 1.901267e+03 339.925 5679.25 102 3.399250e+02 34672.35 4.916594e+06 4.757337e+06 159256.89 NULL
2020 Dept. Of Homeless Services Cement Mason NA NA 217707.96 3.110114e+04 42675.680 2111.50 7 3.110114e+04 217707.96 NA NA NA NULL
2020 Dept. Of Homeless Services City Laborer NA NA 183925.24 9.680276e+03 7110.100 3260.50 19 7.110100e+03 135091.90 NA NA NA NULL
2020 Dept. Of Homeless Services City Research Scientist 79279.33333 2.378380e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.378380e+05 2.378380e+05 0.00 NULL
2020 Dept. Of Homeless Services City Service Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Dept. Of Homeless Services Clerical Associate 44833.80000 8.966760e+05 118958.22 5.947911e+03 2398.520 3431.25 20 2.398520e+03 47970.40 1.015634e+06 9.446464e+05 70987.82 NULL
2020 Dept. Of Homeless Services Community Assistant 37126.00000 5.791656e+06 865715.72 5.549460e+03 2820.290 31003.07 156 2.820290e+03 439965.24 6.657372e+06 6.231621e+06 425750.48 NULL
2020 Dept. Of Homeless Services Community Associate 44258.91736 5.355329e+06 628370.14 5.193142e+03 1750.350 20355.73 121 1.750350e+03 211792.35 5.983699e+06 5.567121e+06 416577.79 NULL
2020 Dept. Of Homeless Services Community Coordinator 61349.11444 2.251512e+07 2015658.51 5.492258e+03 1935.000 46386.50 367 1.935000e+03 710145.00 2.453078e+07 2.322527e+07 1305513.51 NULL
2020 Dept. Of Homeless Services Computer Associate 78532.00000 7.853200e+04 4062.40 4.062400e+03 4062.400 0.00 1 4.062400e+03 4062.40 8.259440e+04 8.259440e+04 0.00 NULL
2020 Dept. Of Homeless Services Computer Specialist 94244.00000 9.424400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.424400e+04 9.424400e+04 0.00 NULL
2020 Dept. Of Homeless Services Computer Systems Manager 151030.00000 4.530900e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.530900e+05 4.530900e+05 0.00 NULL
2020 Dept. Of Homeless Services Construction Project Manager 82927.83333 4.975670e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.975670e+05 4.975670e+05 0.00 NULL
2020 Dept. Of Homeless Services Counselor 56951.00000 1.139020e+05 8570.22 4.285110e+03 4285.110 205.00 2 4.285110e+03 8570.22 1.224722e+05 1.224722e+05 0.00 NULL
2020 Dept. Of Homeless Services Deputy Commisioner 190471.50000 3.809430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.809430e+05 3.809430e+05 0.00 NULL
2020 Dept. Of Homeless Services Deputy Commissioner 187991.00000 1.879910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.879910e+05 1.879910e+05 0.00 NULL
2020 Dept. Of Homeless Services Director Of Management Planning 167430.00000 1.674300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.674300e+05 1.674300e+05 0.00 NULL
2020 Dept. Of Homeless Services Electrician NA NA 556409.58 2.782048e+04 27887.885 6217.25 20 2.782048e+04 556409.58 NA NA NA NULL
2020 Dept. Of Homeless Services Electrician’s Helper NA NA 9661.95 4.830975e+03 4830.975 170.00 2 4.830975e+03 9661.95 NA NA NA NULL
2020 Dept. Of Homeless Services Exec Asst To The Deputy Commissioner 102591.00000 1.025910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.025910e+05 1.025910e+05 0.00 NULL
2020 Dept. Of Homeless Services Executive Assistant To The Commissioner 145026.00000 1.450260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450260e+05 1.450260e+05 0.00 NULL
2020 Dept. Of Homeless Services Executive Program Specialist 103000.00000 2.060000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.060000e+05 2.060000e+05 0.00 NULL
2020 Dept. Of Homeless Services Fraud Investigator 52131.38525 6.360029e+06 787147.48 6.452029e+03 3565.795 19820.50 122 3.565795e+03 435026.99 7.147176e+06 6.795056e+06 352120.49 NULL
2020 Dept. Of Homeless Services Housekeeper 43556.75000 1.742270e+05 55820.42 1.395510e+04 7514.190 1659.25 4 7.514190e+03 30056.76 2.300474e+05 2.042838e+05 25763.66 NULL
2020 Dept. Of Homeless Services Human Resources Technician 39049.00000 3.904900e+04 166.94 1.669400e+02 166.940 7.75 1 1.669400e+02 166.94 3.921594e+04 3.921594e+04 0.00 NULL
2020 Dept. Of Homeless Services Locksmith NA NA 10081.14 5.040570e+03 5040.570 239.00 2 5.040570e+03 10081.14 NA NA NA NULL
2020 Dept. Of Homeless Services Maintenance Worker NA NA 216863.39 9.857427e+03 7266.210 4672.75 22 7.266210e+03 159856.62 NA NA NA NULL
2020 Dept. Of Homeless Services Mechanical Engineer 88067.00000 8.806700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.806700e+04 8.806700e+04 0.00 NULL
2020 Dept. Of Homeless Services Motor Vehicle Operator 48155.72093 2.070696e+06 160395.66 3.730132e+03 1770.390 4622.25 43 1.770390e+03 76126.77 2.231092e+06 2.146823e+06 84268.89 NULL
2020 Dept. Of Homeless Services Motor Vehicle Supervisor 57807.20000 5.780720e+05 79882.86 7.988286e+03 6025.275 1899.25 10 6.025275e+03 60252.75 6.579549e+05 6.383248e+05 19630.11 NULL
2020 Dept. Of Homeless Services Oiler NA NA 117609.40 9.800783e+03 8105.155 1229.00 12 8.105155e+03 97261.86 NA NA NA NULL
2020 Dept. Of Homeless Services Painter NA NA 100265.93 9.115085e+03 0.000 1599.50 11 0.000000e+00 0.00 NA NA NA NULL
2020 Dept. Of Homeless Services Plumber NA NA 395872.24 2.328660e+04 24230.610 3756.00 17 2.328660e+04 395872.24 NA NA NA NULL
2020 Dept. Of Homeless Services Plumber’s Helper NA NA 37060.85 1.853042e+04 18530.425 501.50 2 1.853042e+04 37060.85 NA NA NA NULL
2020 Dept. Of Homeless Services Principal Administrative Associate - Non Supvr 59332.83871 1.839318e+06 96163.75 3.102056e+03 144.120 2124.50 31 1.441200e+02 4467.72 1.935482e+06 1.843786e+06 91696.03 NULL
2020 Dept. Of Homeless Services Procurement Analyst 54177.00000 5.417700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.417700e+04 5.417700e+04 0.00 NULL
2020 Dept. Of Homeless Services Recreation Director 47909.00000 4.790900e+04 16324.12 1.632412e+04 16324.120 465.00 1 1.632412e+04 16324.12 6.423312e+04 6.423312e+04 0.00 NULL
2020 Dept. Of Homeless Services Recreation Supervisor 59269.00000 5.926900e+04 5147.00 5.147000e+03 5147.000 124.50 1 5.147000e+03 5147.00 6.441600e+04 6.441600e+04 0.00 NULL
2020 Dept. Of Homeless Services Research Assistant 57584.00000 5.758400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.758400e+04 5.758400e+04 0.00 NULL
2020 Dept. Of Homeless Services Secretary 51623.00000 2.064920e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.064920e+05 2.064920e+05 0.00 NULL
2020 Dept. Of Homeless Services Secretary To The Commissioner 96000.00000 9.600000e+04 2816.32 2.816320e+03 2816.320 50.00 1 2.816320e+03 2816.32 9.881632e+04 9.881632e+04 0.00 NULL
2020 Dept. Of Homeless Services Senior Consultant 82086.00000 8.208600e+04 4171.44 4.171440e+03 4171.440 73.50 1 4.171440e+03 4171.44 8.625744e+04 8.625744e+04 0.00 NULL
2020 Dept. Of Homeless Services Senior Stationary Engineer NA NA 28308.83 2.830883e+04 28308.830 224.50 1 2.830883e+04 28308.83 NA NA NA NULL
2020 Dept. Of Homeless Services Sheet Metal Worker NA NA 52309.81 2.615490e+04 26154.905 443.00 2 2.615490e+04 52309.81 NA NA NA NULL
2020 Dept. Of Homeless Services Social Worker 58973.40000 1.474335e+06 31013.77 1.240551e+03 3.270 646.25 25 3.270000e+00 81.75 1.505349e+06 1.474417e+06 30932.02 NULL
2020 Dept. Of Homeless Services Space Analyst 67565.22222 6.080870e+05 42128.13 4.680903e+03 0.000 902.00 9 0.000000e+00 0.00 6.502151e+05 6.080870e+05 42128.13 NULL
2020 Dept. Of Homeless Services Special Officer 40897.42200 3.643960e+07 7651894.66 8.587985e+03 5602.250 251100.08 891 5.602250e+03 4991604.75 4.409150e+07 4.143121e+07 2660289.91 NULL
2020 Dept. Of Homeless Services Staff Analyst 66623.55556 5.996120e+05 142.12 1.579111e+01 0.000 5.00 9 0.000000e+00 0.00 5.997541e+05 5.996120e+05 142.12 NULL
2020 Dept. Of Homeless Services Stationary Engineer NA NA 32944.09 1.098136e+04 3421.200 342.50 3 3.421200e+03 10263.60 NA NA NA NULL
2020 Dept. Of Homeless Services Stock Worker 37803.00000 2.268180e+05 982.68 1.637800e+02 36.885 39.25 6 3.688500e+01 221.31 2.278007e+05 2.270393e+05 761.37 NULL
2020 Dept. Of Homeless Services Summer College Intern 4398.57500 3.079003e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.079003e+04 3.079003e+04 0.00 NULL
2020 Dept. Of Homeless Services Summer Graduate Intern 5365.42080 1.073084e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.073084e+04 1.073084e+04 0.00 NULL
2020 Dept. Of Homeless Services Superintendent Of Adult Institutions 74580.55556 6.712250e+05 37556.46 4.172940e+03 3057.350 762.50 9 3.057350e+03 27516.15 7.087815e+05 6.987412e+05 10040.31 NULL
2020 Dept. Of Homeless Services Supervising Special Officer 57927.88696 6.661707e+06 1528879.87 1.329461e+04 10399.820 37817.50 115 1.039982e+04 1195979.30 8.190587e+06 7.857686e+06 332900.57 NULL
2020 Dept. Of Homeless Services Supervisor Bricklayer NA NA 49334.54 4.933454e+04 49334.540 550.00 1 4.933454e+04 49334.54 NA NA NA NULL
2020 Dept. Of Homeless Services Supervisor Carpenter NA NA 142824.38 4.760813e+04 53526.850 1781.25 3 4.760813e+04 142824.38 NA NA NA NULL
2020 Dept. Of Homeless Services Supervisor Electrician NA NA 201264.07 3.354401e+04 25896.845 2123.50 6 2.589685e+04 155381.07 NA NA NA NULL
2020 Dept. Of Homeless Services Supervisor I 58502.61538 1.521068e+06 117598.88 4.523034e+03 1866.500 2717.00 26 1.866500e+03 48529.00 1.638667e+06 1.569597e+06 69069.88 NULL
2020 Dept. Of Homeless Services Supervisor I Social Work 62125.50000 1.242510e+05 14204.47 7.102235e+03 7102.235 365.50 2 7.102235e+03 14204.47 1.384555e+05 1.384555e+05 0.00 NULL
2020 Dept. Of Homeless Services Supervisor Ii 69357.77778 6.242200e+05 75044.32 8.338258e+03 9999.020 1464.00 9 8.338258e+03 75044.32 6.992643e+05 6.992643e+05 0.00 NULL
2020 Dept. Of Homeless Services Supervisor Ii Social Work 75051.52174 1.726185e+06 80484.32 3.499318e+03 2899.100 1575.00 23 2.899100e+03 66679.30 1.806669e+06 1.792864e+06 13805.02 NULL
2020 Dept. Of Homeless Services Supervisor Iii Social Work 80631.00000 3.225240e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.225240e+05 3.225240e+05 0.00 NULL
2020 Dept. Of Homeless Services Supervisor Of Mechanics NA NA 211562.12 2.350690e+04 0.000 2285.50 9 0.000000e+00 0.00 NA NA NA NULL
2020 Dept. Of Homeless Services Supervisor Of Motor Transport 73517.00000 7.351700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.351700e+04 7.351700e+04 0.00 NULL
2020 Dept. Of Homeless Services Supervisor Of Stock Workers 59568.66667 1.787060e+05 20909.69 6.969897e+03 10322.290 441.75 3 6.969897e+03 20909.69 1.996157e+05 1.996157e+05 0.00 NULL
2020 Dept. Of Homeless Services Supervisor Painter NA NA 30357.45 3.035745e+04 30357.450 423.75 1 3.035745e+04 30357.45 NA NA NA NULL
2020 Dept. Of Homeless Services Supervisor Plumber NA NA 135405.21 4.513507e+04 45835.410 1224.50 3 4.513507e+04 135405.21 NA NA NA NULL
2020 District Attorney Kings County Accountant 74430.00000 7.443000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.443000e+04 7.443000e+04 0.00 NULL
2020 District Attorney Kings County Adm Manager-Non-Mgrl 80507.03333 2.415211e+06 37275.40 1.242513e+03 0.000 613.75 30 0.000000e+00 0.00 2.452486e+06 2.415211e+06 37275.40 NULL
2020 District Attorney Kings County Administrative Chief 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2020 District Attorney Kings County Administrative Procurement Analyst-Non-Mgrl 94144.50000 1.882890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.882890e+05 1.882890e+05 0.00 NULL
2020 District Attorney Kings County Administrative Project Manager 97162.25000 3.886490e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.886490e+05 3.886490e+05 0.00 NULL
2020 District Attorney Kings County Administrative Staff Analyst 144765.33333 4.342960e+05 410.91 1.369700e+02 0.000 5.75 3 0.000000e+00 0.00 4.347069e+05 4.342960e+05 410.91 NULL
2020 District Attorney Kings County Assistant District Attorney 98171.51115 5.723399e+07 0.00 0.000000e+00 0.000 0.00 583 0.000000e+00 0.00 5.723399e+07 5.723399e+07 0.00 NULL
2020 District Attorney Kings County Certified It Developer 116258.66667 3.487760e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.487760e+05 3.487760e+05 0.00 NULL
2020 District Attorney Kings County Chief Rackets Investigator 164800.00000 1.648000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.648000e+05 1.648000e+05 0.00 NULL
2020 District Attorney Kings County City Research Scientist 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2020 District Attorney Kings County Clerical Associate 50000.69231 6.500090e+05 11635.33 8.950254e+02 0.000 273.00 13 0.000000e+00 0.00 6.616443e+05 6.500090e+05 11635.33 NULL
2020 District Attorney Kings County Community Assistant 37124.95252 3.898120e+06 26714.21 2.544210e+02 0.000 1021.50 105 0.000000e+00 0.00 3.924834e+06 3.898120e+06 26714.21 NULL
2020 District Attorney Kings County Community Associate 46899.57415 1.524236e+07 95683.63 2.944112e+02 0.000 2868.50 325 0.000000e+00 0.00 1.533805e+07 1.524236e+07 95683.63 NULL
2020 District Attorney Kings County Community Coordinator 71516.39077 4.648565e+06 48536.83 7.467205e+02 0.000 1037.00 65 0.000000e+00 0.00 4.697102e+06 4.648565e+06 48536.83 NULL
2020 District Attorney Kings County Computer Associate 81204.00000 4.872240e+05 42659.07 7.109845e+03 2265.850 681.00 6 2.265850e+03 13595.10 5.298831e+05 5.008191e+05 29063.97 NULL
2020 District Attorney Kings County Computer Specialist 117540.33333 3.526210e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.526210e+05 3.526210e+05 0.00 NULL
2020 District Attorney Kings County Computer Systems Manager 201507.00000 2.015070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.015070e+05 2.015070e+05 0.00 NULL
2020 District Attorney Kings County Confidential Strategy Planner 106618.00000 2.132360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.132360e+05 2.132360e+05 0.00 NULL
2020 District Attorney Kings County Director Of Public Information 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2020 District Attorney Kings County District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2020 District Attorney Kings County Executive Assistant 104238.15385 1.355096e+06 321.68 2.474462e+01 0.000 5.00 13 0.000000e+00 0.00 1.355418e+06 1.355096e+06 321.68 NULL
2020 District Attorney Kings County Executive Program Specialist 105610.00000 1.056100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.056100e+05 1.056100e+05 0.00 NULL
2020 District Attorney Kings County Media Services Technician 56916.27273 6.260790e+05 57335.71 5.212337e+03 2764.840 1326.75 11 2.764840e+03 30413.24 6.834147e+05 6.564922e+05 26922.47 NULL
2020 District Attorney Kings County Office Assistant 38981.00000 3.898100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.898100e+04 3.898100e+04 0.00 NULL
2020 District Attorney Kings County Paralegal Aide 49007.66667 4.410690e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.410690e+05 4.410690e+05 0.00 NULL
2020 District Attorney Kings County Principal Accountant Investigator 141625.00000 1.416250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.416250e+05 1.416250e+05 0.00 NULL
2020 District Attorney Kings County Principal Administrative Associate - Non Supvr 66790.18750 1.068643e+06 871.65 5.447812e+01 0.000 9.75 16 0.000000e+00 0.00 1.069515e+06 1.068643e+06 871.65 NULL
2020 District Attorney Kings County Procurement Analyst 71618.00000 7.161800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.161800e+04 7.161800e+04 0.00 NULL
2020 District Attorney Kings County Reporter/ Stenographer 58734.60000 1.174692e+06 104.34 5.217000e+00 0.000 3.00 20 0.000000e+00 0.00 1.174796e+06 1.174692e+06 104.34 NULL
2020 District Attorney Kings County Secretary 51599.33333 3.095960e+05 2199.76 3.666267e+02 0.000 72.25 6 0.000000e+00 0.00 3.117958e+05 3.095960e+05 2199.76 NULL
2020 District Attorney Kings County Social Worker 59607.50000 7.152900e+05 68.20 5.683333e+00 0.000 2.00 12 0.000000e+00 0.00 7.153582e+05 7.152900e+05 68.20 NULL
2020 District Attorney Kings County Special Officer 40590.00000 8.118000e+04 5448.43 2.724215e+03 2724.215 184.50 2 2.724215e+03 5448.43 8.662843e+04 8.662843e+04 0.00 NULL
2020 District Attorney Kings County Strategic Initiative Specialist 104915.50000 2.098310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.098310e+05 2.098310e+05 0.00 NULL
2020 District Attorney Kings County Supervising Accountant Investigator 92700.45385 7.416036e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.416036e+05 7.416036e+05 0.00 NULL
2020 District Attorney Qns County Accountant 74160.00000 7.416000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.416000e+04 7.416000e+04 0.00 NULL
2020 District Attorney Qns County Adm Manager-Non-Mgrl 87990.80000 8.799080e+05 71857.72 7.185772e+03 3955.670 1085.00 10 3.955670e+03 39556.70 9.517657e+05 9.194647e+05 32301.02 NULL
2020 District Attorney Qns County Administrative Manager 147460.00000 2.949200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.949200e+05 2.949200e+05 0.00 NULL
2020 District Attorney Qns County Administrative Public Information Specialist 138809.00000 1.388090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.388090e+05 1.388090e+05 0.00 NULL
2020 District Attorney Qns County Administrative Staff Analyst 146702.00000 4.401060e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.401060e+05 4.401060e+05 0.00 NULL
2020 District Attorney Qns County Agency Chief Contracting Officer 128769.00000 1.287690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287690e+05 1.287690e+05 0.00 NULL
2020 District Attorney Qns County Assistant District Attorney 109839.32962 4.031103e+07 109.54 2.984741e-01 0.000 5.25 367 0.000000e+00 0.00 4.031114e+07 4.031103e+07 109.54 NULL
2020 District Attorney Qns County Certified It Administrator 127815.00000 1.278150e+05 24799.96 2.479996e+04 24799.960 269.00 1 2.479996e+04 24799.96 1.526150e+05 1.526150e+05 0.00 NULL
2020 District Attorney Qns County Certified It Developer 98177.00000 9.817700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.817700e+04 9.817700e+04 0.00 NULL
2020 District Attorney Qns County City Seasonal Aide 4184.95488 5.440441e+04 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 5.440441e+04 5.440441e+04 0.00 NULL
2020 District Attorney Qns County Clerical Associate 52300.00000 1.202900e+06 35297.80 1.534687e+03 0.000 969.00 23 0.000000e+00 0.00 1.238198e+06 1.202900e+06 35297.80 NULL
2020 District Attorney Qns County College Aide 5575.50000 5.575500e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.575500e+03 5.575500e+03 0.00 NULL
2020 District Attorney Qns County Community Assistant 37875.62000 1.893781e+06 95977.19 1.919544e+03 155.750 3743.25 50 1.557500e+02 7787.50 1.989758e+06 1.901568e+06 88189.69 NULL
2020 District Attorney Qns County Community Associate 42130.85787 7.625685e+06 118152.48 6.527761e+02 0.000 4042.25 181 0.000000e+00 0.00 7.743838e+06 7.625685e+06 118152.48 NULL
2020 District Attorney Qns County Community Coordinator 75865.05161 2.351817e+06 83536.45 2.694724e+03 0.000 1590.50 31 0.000000e+00 0.00 2.435353e+06 2.351817e+06 83536.45 NULL
2020 District Attorney Qns County Community Service Aide 29360.00000 1.174400e+05 896.26 2.240650e+02 249.255 53.50 4 2.240650e+02 896.26 1.183363e+05 1.183363e+05 0.00 NULL
2020 District Attorney Qns County Computer Associate 74733.00000 2.241990e+05 17978.70 5.992900e+03 2047.470 323.75 3 2.047470e+03 6142.41 2.421777e+05 2.303414e+05 11836.29 NULL
2020 District Attorney Qns County Computer Specialist 100676.33333 3.020290e+05 44979.79 1.499326e+04 10465.300 640.00 3 1.046530e+04 31395.90 3.470088e+05 3.334249e+05 13583.89 NULL
2020 District Attorney Qns County Customer Information Representative Ma L 1549 40345.00000 4.034500e+04 2280.27 2.280270e+03 2280.270 85.75 1 2.280270e+03 2280.27 4.262527e+04 4.262527e+04 0.00 NULL
2020 District Attorney Qns County Director Of Alt Sentencing And Offender Re-Entry Progs Qn Da 156913.00000 1.569130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.569130e+05 1.569130e+05 0.00 NULL
2020 District Attorney Qns County Director Of Criminal Justice Data Share And Info Servs Qn Da 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2020 District Attorney Qns County Director Of Elder Abuse Program Services Qn Da 98447.00000 9.844700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.844700e+04 9.844700e+04 0.00 NULL
2020 District Attorney Qns County Director Of Invest Accounting And Econ Crimes Investigation 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2020 District Attorney Qns County Director Of Public Information 14424.48000 1.442448e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.442448e+04 1.442448e+04 0.00 NULL
2020 District Attorney Qns County District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2020 District Attorney Qns County It Security Specialist 123600.00000 1.236000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.236000e+05 1.236000e+05 0.00 NULL
2020 District Attorney Qns County Paralegal Aide 51802.03333 1.554061e+06 38587.95 1.286265e+03 292.625 1125.25 30 2.926250e+02 8778.75 1.592649e+06 1.562840e+06 29809.20 NULL
2020 District Attorney Qns County Principal Administrative Associate - Non Supvr 71083.00000 9.240790e+05 51304.16 3.946474e+03 877.160 977.25 13 8.771600e+02 11403.08 9.753832e+05 9.354821e+05 39901.08 NULL
2020 District Attorney Qns County Private Secretary 103939.00000 2.078780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.078780e+05 2.078780e+05 0.00 NULL
2020 District Attorney Qns County Reporter/ Stenographer 68838.16667 1.239087e+06 3458.57 1.921428e+02 0.000 86.25 18 0.000000e+00 0.00 1.242546e+06 1.239087e+06 3458.57 NULL
2020 District Attorney Qns County Secretary 62734.25000 5.018740e+05 27368.02 3.421003e+03 331.990 661.50 8 3.319900e+02 2655.92 5.292420e+05 5.045299e+05 24712.10 NULL
2020 District Attorney Qns County Senior Rackets Investigator - Start >4-24-08 No Abc 67907.50000 1.358150e+05 1500.27 7.501350e+02 750.135 31.00 2 7.501350e+02 1500.27 1.373153e+05 1.373153e+05 0.00 NULL
2020 District Attorney Qns County Special Assistant To Da 124052.40000 6.202620e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.202620e+05 6.202620e+05 0.00 NULL
2020 District Attorney Qns County Staff Analyst 92966.00000 9.296600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.296600e+04 9.296600e+04 0.00 NULL
2020 District Attorney Qns County Summer College Intern 5090.04000 5.090040e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.090040e+03 5.090040e+03 0.00 NULL
2020 District Attorney Qns County Summer Graduate Intern 3820.79250 7.641585e+03 292.82 1.464100e+02 146.410 10.00 2 1.464100e+02 292.82 7.934405e+03 7.934405e+03 0.00 NULL
2020 District Attorney Qns County Supervising Accountant Investigator 95790.00000 9.579000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.579000e+04 9.579000e+04 0.00 NULL
2020 District Attorney Richmond Cou Administrative Procurement Analyst 108372.00000 1.083720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.083720e+05 1.083720e+05 0.00 NULL
2020 District Attorney Richmond Cou Administrative Staff Analyst 155765.00000 1.557650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.557650e+05 1.557650e+05 0.00 NULL
2020 District Attorney Richmond Cou Assistant District Attorney 104281.54702 8.759650e+06 0.00 0.000000e+00 0.000 0.00 84 0.000000e+00 0.00 8.759650e+06 8.759650e+06 0.00 NULL
2020 District Attorney Richmond Cou Clerical Associate 61348.00000 3.067400e+05 1113.11 2.226220e+02 0.000 25.00 5 0.000000e+00 0.00 3.078531e+05 3.067400e+05 1113.11 NULL
2020 District Attorney Richmond Cou Community Assistant 41399.14320 1.655966e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.655966e+05 1.655966e+05 0.00 NULL
2020 District Attorney Richmond Cou Community Associate 52950.37500 4.236030e+06 13101.16 1.637645e+02 0.000 387.00 80 0.000000e+00 0.00 4.249131e+06 4.236030e+06 13101.16 NULL
2020 District Attorney Richmond Cou Community Coordinator 74852.66667 1.122790e+06 14394.77 9.596513e+02 287.740 310.00 15 2.877400e+02 4316.10 1.137185e+06 1.127106e+06 10078.67 NULL
2020 District Attorney Richmond Cou Computer Programmer Analyst 78989.00000 7.898900e+04 216.17 2.161700e+02 216.170 5.00 1 2.161700e+02 216.17 7.920517e+04 7.920517e+04 0.00 NULL
2020 District Attorney Richmond Cou Computer Systems Manager 127344.12500 2.546882e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.546882e+05 2.546882e+05 0.00 NULL
2020 District Attorney Richmond Cou District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2020 District Attorney Richmond Cou Paralegal Aide 75000.00000 7.500000e+04 1253.88 1.253880e+03 1253.880 25.00 1 1.253880e+03 1253.88 7.625388e+04 7.625388e+04 0.00 NULL
2020 District Attorney Richmond Cou Principal Administrative Associate - Non Supvr 71103.50000 1.422070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.422070e+05 1.422070e+05 0.00 NULL
2020 District Attorney Richmond Cou Reporter/ Stenographer 63366.01400 3.168301e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.168301e+05 3.168301e+05 0.00 NULL
2020 District Attorney Richmond Cou Secretary 55408.00000 5.540800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.540800e+04 5.540800e+04 0.00 NULL
2020 District Attorney Richmond Cou Social Worker 66835.00000 1.336700e+05 1054.99 5.274950e+02 527.495 24.25 2 5.274950e+02 1054.99 1.347250e+05 1.347250e+05 0.00 NULL
2020 District Attorney Richmond Cou Special Assistant To The District Attorney 109221.00000 6.553260e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.553260e+05 6.553260e+05 0.00 NULL
2020 District Attorney-Manhattan Admin Contract Specialist 140898.00000 2.817960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.817960e+05 2.817960e+05 0.00 NULL
2020 District Attorney-Manhattan Administrative Chief 144436.74545 7.944021e+06 0.00 0.000000e+00 0.000 0.00 55 0.000000e+00 0.00 7.944021e+06 7.944021e+06 0.00 NULL
2020 District Attorney-Manhattan Administrative Public Records Officer 135000.00000 2.700000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.700000e+05 2.700000e+05 0.00 NULL
2020 District Attorney-Manhattan Assistant District Attorney 110079.95994 7.199229e+07 0.00 0.000000e+00 0.000 0.00 654 0.000000e+00 0.00 7.199229e+07 7.199229e+07 0.00 NULL
2020 District Attorney-Manhattan Assistant Media Services Technican 36913.00000 3.691300e+04 38.94 3.894000e+01 38.940 0.00 1 3.894000e+01 38.94 3.695194e+04 3.695194e+04 0.00 NULL
2020 District Attorney-Manhattan Carpenter NA NA 3484.97 5.808283e+02 858.330 44.00 6 5.808283e+02 3484.97 NA NA NA NULL
2020 District Attorney-Manhattan Chief Investigating Accountant 115101.83333 6.906110e+05 870.61 1.451017e+02 24.900 20.50 6 2.490000e+01 149.40 6.914816e+05 6.907604e+05 721.21 NULL
2020 District Attorney-Manhattan City Custodial Assistant 39001.46667 5.850220e+05 10714.46 7.142973e+02 40.560 320.75 15 4.056000e+01 608.40 5.957365e+05 5.856304e+05 10106.06 NULL
2020 District Attorney-Manhattan City Laborer NA NA 22239.81 3.706635e+03 2498.610 374.25 6 2.498610e+03 14991.66 NA NA NA NULL
2020 District Attorney-Manhattan Clerical Associate 69674.85714 9.754480e+05 18744.18 1.338870e+03 22.765 384.25 14 2.276500e+01 318.71 9.941922e+05 9.757667e+05 18425.47 NULL
2020 District Attorney-Manhattan College Aide 476.02303 2.713331e+04 0.00 0.000000e+00 0.000 0.00 57 0.000000e+00 0.00 2.713331e+04 2.713331e+04 0.00 NULL
2020 District Attorney-Manhattan Community Assistant 41996.03282 1.511857e+06 122037.63 3.389934e+03 273.470 3097.00 36 2.734700e+02 9844.92 1.633895e+06 1.521702e+06 112192.71 NULL
2020 District Attorney-Manhattan Community Associate 51174.84688 3.454302e+07 511937.56 7.584260e+02 0.000 14500.11 675 0.000000e+00 0.00 3.505496e+07 3.454302e+07 511937.56 NULL
2020 District Attorney-Manhattan Community Coordinator 83455.34177 1.176720e+07 443377.79 3.144523e+03 0.000 7032.00 141 0.000000e+00 0.00 1.221058e+07 1.176720e+07 443377.79 NULL
2020 District Attorney-Manhattan County Detective 63259.62500 5.060770e+05 56143.64 7.017955e+03 5456.450 1237.50 8 5.456450e+03 43651.60 5.622206e+05 5.497286e+05 12492.04 NULL
2020 District Attorney-Manhattan District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2020 District Attorney-Manhattan Electrician NA NA 2418.26 8.060867e+02 895.650 27.00 3 8.060867e+02 2418.26 NA NA NA NULL
2020 District Attorney-Manhattan Electrician’s Helper NA NA 2046.06 2.046060e+03 2046.060 36.00 1 2.046060e+03 2046.06 NA NA NA NULL
2020 District Attorney-Manhattan Engineering Technician 64050.50000 1.281010e+05 460.22 2.301100e+02 230.110 11.00 2 2.301100e+02 460.22 1.285612e+05 1.285612e+05 0.00 NULL
2020 District Attorney-Manhattan High School Student Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 District Attorney-Manhattan Interpreter 69922.42857 4.894570e+05 4388.69 6.269557e+02 0.000 80.50 7 0.000000e+00 0.00 4.938457e+05 4.894570e+05 4388.69 NULL
2020 District Attorney-Manhattan Management Auditor 109046.00000 1.090460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.090460e+05 1.090460e+05 0.00 NULL
2020 District Attorney-Manhattan Media Services Technician 69943.00000 9.792020e+05 293544.16 2.096744e+04 19252.485 4887.00 14 1.925249e+04 269534.79 1.272746e+06 1.248737e+06 24009.37 NULL
2020 District Attorney-Manhattan Office Assistant 50257.50000 1.005150e+05 2392.45 1.196225e+03 1196.225 75.25 2 1.196225e+03 2392.45 1.029074e+05 1.029074e+05 0.00 NULL
2020 District Attorney-Manhattan Painter NA NA 9464.75 9.464750e+03 9464.750 151.00 1 9.464750e+03 9464.75 NA NA NA NULL
2020 District Attorney-Manhattan Paralegal Aide 80171.00000 8.017100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.017100e+04 8.017100e+04 0.00 NULL
2020 District Attorney-Manhattan Photographer 65055.33333 1.951660e+05 31747.76 1.058259e+04 11886.240 765.50 3 1.058259e+04 31747.76 2.269138e+05 2.269138e+05 0.00 NULL
2020 District Attorney-Manhattan Principal Accountant Investigator 123829.40909 2.724247e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 2.724247e+06 2.724247e+06 0.00 NULL
2020 District Attorney-Manhattan Principal Administrative Associate - Non Supvr 78233.00000 4.693980e+05 7893.75 1.315625e+03 17.020 136.25 6 1.702000e+01 102.12 4.772918e+05 4.695001e+05 7791.63 NULL
2020 District Attorney-Manhattan Procurement Analyst 71938.00000 1.438760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.438760e+05 1.438760e+05 0.00 NULL
2020 District Attorney-Manhattan Reporter/ Stenographer 79798.60526 3.032347e+06 4213.89 1.108918e+02 0.000 79.25 38 0.000000e+00 0.00 3.036561e+06 3.032347e+06 4213.89 NULL
2020 District Attorney-Manhattan Secretary 88767.83333 5.326070e+05 26481.40 4.413567e+03 1814.750 460.00 6 1.814750e+03 10888.50 5.590884e+05 5.434955e+05 15592.90 NULL
2020 District Attorney-Manhattan Senior Accountant Investigator 74326.27643 1.040568e+06 20188.01 1.442001e+03 0.000 391.00 14 0.000000e+00 0.00 1.060756e+06 1.040568e+06 20188.01 NULL
2020 District Attorney-Manhattan Senior Secretary 64276.00000 3.213800e+05 263.61 5.272200e+01 0.000 5.50 5 0.000000e+00 0.00 3.216436e+05 3.213800e+05 263.61 NULL
2020 District Attorney-Manhattan Special Officer 45170.33333 4.065330e+05 15137.92 1.681991e+03 1375.840 470.75 9 1.375840e+03 12382.56 4.216709e+05 4.189156e+05 2755.36 NULL
2020 District Attorney-Manhattan Staff Analyst 87756.00000 1.755120e+05 12640.98 6.320490e+03 6320.490 218.50 2 6.320490e+03 12640.98 1.881530e+05 1.881530e+05 0.00 NULL
2020 District Attorney-Manhattan Supervising Accountant Investigator 78275.00000 7.827500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.827500e+04 7.827500e+04 0.00 NULL
2020 District Attorney-Manhattan Supervising Special Officer 55853.00000 1.675590e+05 18069.43 6.023143e+03 8210.570 455.75 3 6.023143e+03 18069.43 1.856284e+05 1.856284e+05 0.00 NULL
2020 District Attorney-Manhattan Supervisor Electrician NA NA 5401.20 5.401200e+03 5401.200 56.00 1 5.401200e+03 5401.20 NA NA NA NULL
2020 District Attorney-Manhattan Supervisor Of Mechanics 133577.00000 1.335770e+05 7369.12 7.369120e+03 7369.120 80.25 1 7.369120e+03 7369.12 1.409461e+05 1.409461e+05 0.00 NULL
2020 District Attorney-Manhattan Supervisor Painter NA NA 18501.04 9.250520e+03 9250.520 260.50 2 9.250520e+03 18501.04 NA NA NA NULL
2020 District Attorney-Special Narc Administrative Chief 183692.00000 5.510760e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.510760e+05 5.510760e+05 0.00 NULL
2020 District Attorney-Special Narc Administrative Public Records Officer 136580.00000 2.731600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.731600e+05 2.731600e+05 0.00 NULL
2020 District Attorney-Special Narc Assistant District Attorney 104435.62500 1.420324e+07 0.00 0.000000e+00 0.000 0.00 136 0.000000e+00 0.00 1.420324e+07 1.420324e+07 0.00 NULL
2020 District Attorney-Special Narc Chief Rackets Investigator 167204.00000 3.344080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.344080e+05 3.344080e+05 0.00 NULL
2020 District Attorney-Special Narc Clerical Associate 87656.77778 7.889110e+05 23815.42 2.646158e+03 0.000 302.25 9 0.000000e+00 0.00 8.127264e+05 7.889110e+05 23815.42 NULL
2020 District Attorney-Special Narc College Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 District Attorney-Special Narc Community Assistant 45665.66667 1.369970e+05 4457.22 1.485740e+03 1670.560 162.75 3 1.485740e+03 4457.22 1.414542e+05 1.414542e+05 0.00 NULL
2020 District Attorney-Special Narc Community Associate 57182.44643 3.202217e+06 29941.49 5.346695e+02 0.000 674.00 56 0.000000e+00 0.00 3.232158e+06 3.202217e+06 29941.49 NULL
2020 District Attorney-Special Narc Community Coordinator 96008.10000 9.600810e+05 4477.02 4.477020e+02 0.000 72.25 10 0.000000e+00 0.00 9.645580e+05 9.600810e+05 4477.02 NULL
2020 District Attorney-Special Narc Computer Specialist 112271.00000 2.245420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.245420e+05 2.245420e+05 0.00 NULL
2020 District Attorney-Special Narc Confidential Secretary 101817.00000 2.036340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.036340e+05 2.036340e+05 0.00 NULL
2020 District Attorney-Special Narc Deputy Chief Rackets Investigator 128727.50000 2.574550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.574550e+05 2.574550e+05 0.00 NULL
2020 District Attorney-Special Narc Director Of Public Information 167700.00000 1.677000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.677000e+05 1.677000e+05 0.00 NULL
2020 District Attorney-Special Narc Paralegal Aide 87912.16667 5.274730e+05 1858.33 3.097217e+02 0.000 34.75 6 0.000000e+00 0.00 5.293313e+05 5.274730e+05 1858.33 NULL
2020 District Attorney-Special Narc Reporter/ Stenographer 81960.71429 5.737250e+05 944.85 1.349786e+02 0.000 16.75 7 0.000000e+00 0.00 5.746698e+05 5.737250e+05 944.85 NULL
2020 District Attorney-Special Narc Secretary 83192.00000 1.663840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.663840e+05 1.663840e+05 0.00 NULL
2020 District Attorney-Special Narc Special Assistant District Attorney 211000.00000 2.110000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.110000e+05 2.110000e+05 0.00 NULL
2020 District Attorney-Special Narc Supervising Computer Service Technician 95893.00000 9.589300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.589300e+04 9.589300e+04 0.00 NULL
2020 Doe Custodial Payrol Custodian Engineer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1434 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2020 Equal Employ Practices Comm Administrative Staff Analyst 100425.00000 1.004250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.004250e+05 1.004250e+05 0.00 NULL
2020 Equal Employ Practices Comm City Research Scientist 97464.52667 2.923936e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.923936e+05 2.923936e+05 0.00 NULL
2020 Equal Employ Practices Comm Community Coordinator 57062.31000 2.282492e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.282492e+05 2.282492e+05 0.00 NULL
2020 Equal Employ Practices Comm Computer Associate 76587.00000 7.658700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.658700e+04 7.658700e+04 0.00 NULL
2020 Equal Employ Practices Comm Executive Agency Counsel 110198.00000 2.203960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.203960e+05 2.203960e+05 0.00 NULL
2020 Equal Employ Practices Comm Executive Director 163243.00000 1.632430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.632430e+05 1.632430e+05 0.00 NULL
2020 Equal Employ Practices Comm Executive Secretary 70429.00000 1.408580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.408580e+05 1.408580e+05 0.00 NULL
2020 Equal Employ Practices Comm Labor Relations Analyst 76220.00000 7.622000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.622000e+04 7.622000e+04 0.00 NULL
2020 Financial Info Svcs Agency *Certified Wide Area Network Administrator 129964.00000 1.299640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.299640e+05 1.299640e+05 0.00 NULL
2020 Financial Info Svcs Agency Accountant 78038.00000 1.560760e+05 231.80 1.159000e+02 115.900 6.00 2 1.159000e+02 231.80 1.563078e+05 1.563078e+05 0.00 NULL
2020 Financial Info Svcs Agency Adm Manager-Non-Mgrl 88913.00000 6.223910e+05 1144.16 1.634514e+02 0.000 23.25 7 0.000000e+00 0.00 6.235352e+05 6.223910e+05 1144.16 NULL
2020 Financial Info Svcs Agency Admin Contract Specialist 145484.00000 1.454840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.454840e+05 1.454840e+05 0.00 NULL
2020 Financial Info Svcs Agency Administrative Procurement Analyst-Non-Mgrl 91592.50000 1.831850e+05 573.52 2.867600e+02 286.760 10.50 2 2.867600e+02 573.52 1.837585e+05 1.837585e+05 0.00 NULL
2020 Financial Info Svcs Agency Administrative Public Information Specialist 71880.00000 7.188000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.188000e+04 7.188000e+04 0.00 NULL
2020 Financial Info Svcs Agency Administrative Space Analyst 149421.50000 2.988430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.988430e+05 2.988430e+05 0.00 NULL
2020 Financial Info Svcs Agency Administrative Staff Analyst 114289.36364 1.257183e+06 157.68 1.433455e+01 0.000 3.00 11 0.000000e+00 0.00 1.257341e+06 1.257183e+06 157.68 NULL
2020 Financial Info Svcs Agency Agency Attorney 104604.00000 1.046040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.046040e+05 1.046040e+05 0.00 NULL
2020 Financial Info Svcs Agency Agency Chief Contracting Officer 153056.00000 1.530560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.530560e+05 1.530560e+05 0.00 NULL
2020 Financial Info Svcs Agency Associate Staff Analyst 85757.25000 3.430290e+05 4783.73 1.195932e+03 105.450 96.75 4 1.054500e+02 421.80 3.478127e+05 3.434508e+05 4361.93 NULL
2020 Financial Info Svcs Agency Certified It Administrator 116856.50000 2.337130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.337130e+05 2.337130e+05 0.00 NULL
2020 Financial Info Svcs Agency City Attendant 40260.00000 4.026000e+04 7446.61 7.446610e+03 7446.610 245.00 1 7.446610e+03 7446.61 4.770661e+04 4.770661e+04 0.00 NULL
2020 Financial Info Svcs Agency City Custodial Assistant 34755.00000 3.475500e+04 2089.24 2.089240e+03 2089.240 85.25 1 2.089240e+03 2089.24 3.684424e+04 3.684424e+04 0.00 NULL
2020 Financial Info Svcs Agency Clerical Associate 45444.43400 2.272222e+05 83.72 1.674400e+01 0.000 3.00 5 0.000000e+00 0.00 2.273059e+05 2.272222e+05 83.72 NULL
2020 Financial Info Svcs Agency College Aide - Assignment Levels Ii And Iii 16699.35380 3.339871e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.339871e+04 3.339871e+04 0.00 NULL
2020 Financial Info Svcs Agency Community Assistant 21559.61810 2.155962e+04 134.24 1.342400e+02 134.240 8.00 1 1.342400e+02 134.24 2.169386e+04 2.169386e+04 0.00 NULL
2020 Financial Info Svcs Agency Community Associate 61137.55556 5.502380e+05 29153.38 3.239264e+03 0.000 625.00 9 0.000000e+00 0.00 5.793914e+05 5.502380e+05 29153.38 NULL
2020 Financial Info Svcs Agency Community Coordinator 73061.33333 4.383680e+05 4752.12 7.920200e+02 282.070 100.25 6 2.820700e+02 1692.42 4.431201e+05 4.400604e+05 3059.70 NULL
2020 Financial Info Svcs Agency Computer Associate 76682.74468 3.604089e+06 373885.13 7.955003e+03 5094.810 6358.50 47 5.094810e+03 239456.07 3.977974e+06 3.843545e+06 134429.06 NULL
2020 Financial Info Svcs Agency Computer Operations Manager 134539.00000 1.345390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.345390e+05 1.345390e+05 0.00 NULL
2020 Financial Info Svcs Agency Computer Programmer Analyst 66813.00000 1.336260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.336260e+05 1.336260e+05 0.00 NULL
2020 Financial Info Svcs Agency Computer Specialist 111611.13208 5.915390e+06 0.00 0.000000e+00 0.000 0.00 53 0.000000e+00 0.00 5.915390e+06 5.915390e+06 0.00 NULL
2020 Financial Info Svcs Agency Computer Systems Manager 139062.89175 2.697820e+07 0.00 0.000000e+00 0.000 0.00 194 0.000000e+00 0.00 2.697820e+07 2.697820e+07 0.00 NULL
2020 Financial Info Svcs Agency Executive Agency Counsel 176774.60000 8.838730e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.838730e+05 8.838730e+05 0.00 NULL
2020 Financial Info Svcs Agency Executive Director 234768.50000 4.695370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.695370e+05 4.695370e+05 0.00 NULL
2020 Financial Info Svcs Agency It Automation And Monitoring Engineer 107119.85714 1.499678e+06 4463.05 3.187893e+02 0.000 72.50 14 0.000000e+00 0.00 1.504141e+06 1.499678e+06 4463.05 NULL
2020 Financial Info Svcs Agency It Infrastructure Engineer 126705.84615 1.647176e+06 1224.34 9.418000e+01 0.000 15.00 13 0.000000e+00 0.00 1.648400e+06 1.647176e+06 1224.34 NULL
2020 Financial Info Svcs Agency It Project Specialist 115680.14286 1.619522e+06 270.74 1.933857e+01 0.000 4.75 14 0.000000e+00 0.00 1.619793e+06 1.619522e+06 270.74 NULL
2020 Financial Info Svcs Agency It Security Specialist 103947.60000 1.559214e+06 22658.56 1.510571e+03 0.000 375.50 15 0.000000e+00 0.00 1.581873e+06 1.559214e+06 22658.56 NULL
2020 Financial Info Svcs Agency It Service Management Specialist 107426.93333 1.611404e+06 232.63 1.550867e+01 0.000 5.00 15 0.000000e+00 0.00 1.611637e+06 1.611404e+06 232.63 NULL
2020 Financial Info Svcs Agency Motor Vehicle Operator 49927.00000 4.992700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.992700e+04 4.992700e+04 0.00 NULL
2020 Financial Info Svcs Agency Nycaps Process Analyst 120875.00000 1.208750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.208750e+05 1.208750e+05 0.00 NULL
2020 Financial Info Svcs Agency Principal Administrative Associate - Non Supvr 70759.88889 6.368390e+05 2.16 2.400000e-01 0.000 0.00 9 0.000000e+00 0.00 6.368412e+05 6.368390e+05 2.16 NULL
2020 Financial Info Svcs Agency Secretary 62967.00000 6.296700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.296700e+04 6.296700e+04 0.00 NULL
2020 Financial Info Svcs Agency Senior It Architect 137062.77778 1.233565e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.233565e+06 1.233565e+06 0.00 NULL
2020 Financial Info Svcs Agency Staff Analyst 59221.00000 5.922100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.922100e+04 5.922100e+04 0.00 NULL
2020 Financial Info Svcs Agency Supervisor Of Office Machine Operations 51169.50000 1.023390e+05 14639.71 7.319855e+03 7319.855 393.75 2 7.319855e+03 14639.71 1.169787e+05 1.169787e+05 0.00 NULL
2020 Financial Info Svcs Agency Telecommunications Associate 71355.50000 1.427110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.427110e+05 1.427110e+05 0.00 NULL
2020 Fire Department *Certified Applications Developer 105801.00000 1.058010e+05 6077.02 6.077020e+03 6077.020 98.50 1 6.077020e+03 6077.02 1.118780e+05 1.118780e+05 0.00 NULL
2020 Fire Department Accountant 64297.00000 6.429700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.429700e+04 6.429700e+04 0.00 NULL
2020 Fire Department Adm Manager-Non-Mgrl 79128.46380 6.488534e+06 230560.80 2.811717e+03 109.120 4496.50 82 1.091200e+02 8947.84 6.719095e+06 6.497482e+06 221612.96 NULL
2020 Fire Department Admin Community Relations Specialist 78866.23545 8.675286e+05 56882.15 5.171105e+03 0.000 1213.00 11 0.000000e+00 0.00 9.244107e+05 8.675286e+05 56882.15 NULL
2020 Fire Department Admin Inspector 81532.83333 4.891970e+05 176206.36 2.936773e+04 25251.925 3017.25 6 2.525192e+04 151511.55 6.654034e+05 6.407086e+05 24694.81 NULL
2020 Fire Department Admin Tests & Meas Spec 137503.00000 1.375030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.375030e+05 1.375030e+05 0.00 NULL
2020 Fire Department Administrative Architect 130555.00000 1.305550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.305550e+05 1.305550e+05 0.00 NULL
2020 Fire Department Administrative Blasting Inspector 123537.00000 1.235370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.235370e+05 1.235370e+05 0.00 NULL
2020 Fire Department Administrative Community Relations Specialist 157178.00000 1.571780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.571780e+05 1.571780e+05 0.00 NULL
2020 Fire Department Administrative Construction Project Manager 148860.50000 2.977210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.977210e+05 2.977210e+05 0.00 NULL
2020 Fire Department Administrative Director Of Marine Maintenance 120510.00000 1.205100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.205100e+05 1.205100e+05 0.00 NULL
2020 Fire Department Administrative Engineer 121905.50000 4.876220e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.876220e+05 4.876220e+05 0.00 NULL
2020 Fire Department Administrative Fire Protection Inspector 107785.00000 1.401205e+06 66183.84 5.091065e+03 0.000 1058.75 13 0.000000e+00 0.00 1.467389e+06 1.401205e+06 66183.84 NULL
2020 Fire Department Administrative Graphic Artist 90174.00000 9.017400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.017400e+04 9.017400e+04 0.00 NULL
2020 Fire Department Administrative Inspector 94049.00000 9.404900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.404900e+04 9.404900e+04 0.00 NULL
2020 Fire Department Administrative Investigator 87911.00000 1.758220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.758220e+05 1.758220e+05 0.00 NULL
2020 Fire Department Administrative Labor Relations Analyst 130089.50000 2.601790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.601790e+05 2.601790e+05 0.00 NULL
2020 Fire Department Administrative Procurement Analyst-Non-Mgrl 84415.30959 1.266230e+06 22824.48 1.521632e+03 911.100 511.25 15 9.111000e+02 13666.50 1.289054e+06 1.279896e+06 9157.98 NULL
2020 Fire Department Administrative Project Manager 112585.23077 1.463608e+06 3793.76 2.918277e+02 0.000 58.75 13 0.000000e+00 0.00 1.467402e+06 1.463608e+06 3793.76 NULL
2020 Fire Department Administrative Psychologist 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2020 Fire Department Administrative Public Information Specialist 98841.50000 3.953660e+05 8648.43 2.162108e+03 0.000 185.75 4 0.000000e+00 0.00 4.040144e+05 3.953660e+05 8648.43 NULL
2020 Fire Department Administrative Public Records Officer 107424.00000 1.074240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074240e+05 1.074240e+05 0.00 NULL
2020 Fire Department Administrative Quality Assurance Specialist 52370.21000 5.237021e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.237021e+04 5.237021e+04 0.00 NULL
2020 Fire Department Administrative Staff Analyst 99556.10521 6.471147e+06 120424.30 1.852682e+03 0.000 1833.75 65 0.000000e+00 0.00 6.591571e+06 6.471147e+06 120424.30 NULL
2020 Fire Department Administrative Storekeeper 143610.00000 1.436100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.436100e+05 1.436100e+05 0.00 NULL
2020 Fire Department Administrative Supervisor Of Building Maintenance 137129.50000 2.742590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.742590e+05 2.742590e+05 0.00 NULL
2020 Fire Department Administrator Of Medical Affairs 213609.00000 2.136090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.136090e+05 2.136090e+05 0.00 NULL
2020 Fire Department Agency Attorney 94982.18909 3.134412e+06 42586.27 1.290493e+03 0.000 642.75 33 0.000000e+00 0.00 3.176999e+06 3.134412e+06 42586.27 NULL
2020 Fire Department Agency Attorney Interne 60433.00000 6.043300e+04 173.66 1.736600e+02 173.660 4.75 1 1.736600e+02 173.66 6.060666e+04 6.060666e+04 0.00 NULL
2020 Fire Department Agency Deputy Medical Director 176161.62500 1.409293e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.409293e+06 1.409293e+06 0.00 NULL
2020 Fire Department Architect 92700.00000 9.270000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.270000e+04 9.270000e+04 0.00 NULL
2020 Fire Department Assistant Architect 65958.00000 6.595800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.595800e+04 6.595800e+04 0.00 NULL
2020 Fire Department Assistant Chemical Engineer 65640.00000 6.564000e+04 1313.25 1.313250e+03 1313.250 36.00 1 1.313250e+03 1313.25 6.695325e+04 6.695325e+04 0.00 NULL
2020 Fire Department Assistant Chief Fire Marshal 215352.00000 2.153520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.153520e+05 2.153520e+05 0.00 NULL
2020 Fire Department Assistant Chief Of Department 239317.80000 3.589767e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 3.589767e+06 3.589767e+06 0.00 NULL
2020 Fire Department Assistant Civil Engineer 65640.00000 6.564000e+04 3411.81 3.411810e+03 3411.810 88.75 1 3.411810e+03 3411.81 6.905181e+04 6.905181e+04 0.00 NULL
2020 Fire Department Assistant Commissioner 170839.50000 1.366716e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.366716e+06 1.366716e+06 0.00 NULL
2020 Fire Department Assistant Electrical Engineer 65793.33333 1.973800e+05 3922.57 1.307523e+03 215.570 98.50 3 2.155700e+02 646.71 2.013026e+05 1.980267e+05 3275.86 NULL
2020 Fire Department Assistant Mechanical Engineer 70594.33333 2.117830e+05 11314.96 3.771653e+03 3926.870 262.50 3 3.771653e+03 11314.96 2.230980e+05 2.230980e+05 0.00 NULL
2020 Fire Department Associate Commissioner 213210.00000 2.132100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.132100e+05 2.132100e+05 0.00 NULL
2020 Fire Department Associate Fire Protection Inspector 66832.12017 1.557188e+07 3275515.05 1.405800e+04 12872.230 64895.42 233 1.287223e+04 2999229.59 1.884740e+07 1.857111e+07 276285.46 NULL
2020 Fire Department Associate Inspector 68985.09524 1.448687e+06 485084.94 2.309928e+04 24648.610 9656.50 21 2.309928e+04 485084.94 1.933772e+06 1.933772e+06 0.00 NULL
2020 Fire Department Associate Investigator 69137.25000 2.765490e+05 9648.21 2.412052e+03 1832.565 242.25 4 1.832565e+03 7330.26 2.861972e+05 2.838793e+05 2317.95 NULL
2020 Fire Department Associate Project Manager 89147.05882 1.515500e+06 34396.70 2.023335e+03 0.000 657.00 17 0.000000e+00 0.00 1.549897e+06 1.515500e+06 34396.70 NULL
2020 Fire Department Associate Staff Analyst 84346.21429 1.180847e+06 37306.70 2.664764e+03 0.000 570.50 14 0.000000e+00 0.00 1.218154e+06 1.180847e+06 37306.70 NULL
2020 Fire Department Attending Physician 58076.32431 4.065343e+05 36752.86 5.250409e+03 0.000 673.25 7 0.000000e+00 0.00 4.432871e+05 4.065343e+05 36752.86 NULL
2020 Fire Department Auto Machinist NA NA 494.95 2.474750e+02 247.475 0.00 2 2.474750e+02 494.95 NA NA NA NULL
2020 Fire Department Auto Mechanic NA NA 3380989.67 2.012494e+04 18445.800 51366.00 168 1.844580e+04 3098894.40 NA NA NA NULL
2020 Fire Department Automotive Service Worker 43901.29412 1.492644e+06 136603.73 4.017757e+03 1184.635 4095.98 34 1.184635e+03 40277.59 1.629248e+06 1.532922e+06 96326.14 NULL
2020 Fire Department Battalion Chief 155186.63433 6.238503e+07 1283843.95 3.193642e+03 0.000 18983.69 402 0.000000e+00 0.00 6.366887e+07 6.238503e+07 1283843.95 NULL
2020 Fire Department Captain 119999.77015 8.039985e+07 25176602.03 3.757702e+04 38066.720 379636.82 670 3.757702e+04 25176602.03 1.055764e+08 1.055764e+08 0.00 NULL
2020 Fire Department Carpenter NA NA 383223.83 2.395149e+04 26269.770 4982.50 16 2.395149e+04 383223.83 NA NA NA NULL
2020 Fire Department Case - Management Nurse 75558.90782 2.644562e+06 8061.91 2.303403e+02 0.000 117.25 35 0.000000e+00 0.00 2.652624e+06 2.644562e+06 8061.91 NULL
2020 Fire Department Cashier 53089.00000 5.308900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.308900e+04 5.308900e+04 0.00 NULL
2020 Fire Department Cement Mason NA NA 35482.65 1.774133e+04 17741.325 328.50 2 1.774133e+04 35482.65 NA NA NA NULL
2020 Fire Department Certified It Administrator 103897.82938 1.246774e+06 185675.74 1.547298e+04 11014.225 2404.25 12 1.101423e+04 132170.70 1.432450e+06 1.378945e+06 53505.04 NULL
2020 Fire Department Certified It Developer 113184.57143 7.922920e+05 7060.77 1.008681e+03 409.250 112.75 7 4.092500e+02 2864.75 7.993528e+05 7.951568e+05 4196.02 NULL
2020 Fire Department Chaplain 29369.71429 2.055880e+05 8.17 1.167143e+00 0.000 0.00 7 0.000000e+00 0.00 2.055962e+05 2.055880e+05 8.17 NULL
2020 Fire Department Chief Fire Marshal 235462.00000 2.354620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.354620e+05 2.354620e+05 0.00 NULL
2020 Fire Department Chief Of Department 239059.00000 4.781180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.781180e+05 4.781180e+05 0.00 NULL
2020 Fire Department City Laborer NA NA 151726.18 1.083758e+04 7336.610 2771.75 14 7.336610e+03 102712.54 NA NA NA NULL
2020 Fire Department City Medical Specialist 42833.12174 9.851618e+05 26386.93 1.147258e+03 0.000 335.75 23 0.000000e+00 0.00 1.011549e+06 9.851618e+05 26386.93 NULL
2020 Fire Department City Research Scientist 96797.14286 2.032740e+06 23421.54 1.115311e+03 0.000 338.50 21 0.000000e+00 0.00 2.056162e+06 2.032740e+06 23421.54 NULL
2020 Fire Department Clerical Associate 48605.97335 5.395263e+06 340038.62 3.063411e+03 301.130 9342.25 111 3.011300e+02 33425.43 5.735302e+06 5.428688e+06 306613.19 NULL
2020 Fire Department Commissioner 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2020 Fire Department Communication Electrician NA NA 1489652.76 2.327582e+04 24858.685 20208.50 64 2.327582e+04 1489652.76 NA NA NA NULL
2020 Fire Department Community Assistant 42191.00000 4.219100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.219100e+04 4.219100e+04 0.00 NULL
2020 Fire Department Community Associate 46226.84201 1.109444e+06 45457.43 1.894060e+03 350.190 1315.00 24 3.501900e+02 8404.56 1.154902e+06 1.117849e+06 37052.87 NULL
2020 Fire Department Community Coordinator 65221.51429 2.282753e+06 144420.54 4.126301e+03 1746.480 3072.75 35 1.746480e+03 61126.80 2.427174e+06 2.343880e+06 83293.74 NULL
2020 Fire Department Computer Aide-Non-Spvr 44404.00000 4.440400e+04 1561.53 1.561530e+03 1561.530 54.50 1 1.561530e+03 1561.53 4.596553e+04 4.596553e+04 0.00 NULL
2020 Fire Department Computer Associate 77327.94595 2.861134e+06 719106.82 1.943532e+04 18249.980 12221.50 37 1.824998e+04 675249.26 3.580241e+06 3.536383e+06 43857.56 NULL
2020 Fire Department Computer Service Technician 65888.00000 6.588800e+04 12581.24 1.258124e+04 12581.240 239.50 1 1.258124e+04 12581.24 7.846924e+04 7.846924e+04 0.00 NULL
2020 Fire Department Computer Specialist 105963.08108 7.841268e+06 430005.11 5.810880e+03 0.000 5717.00 74 0.000000e+00 0.00 8.271273e+06 7.841268e+06 430005.11 NULL
2020 Fire Department Computer Systems Manager 142147.20833 3.411533e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 3.411533e+06 3.411533e+06 0.00 NULL
2020 Fire Department Construction Project Manager 77113.50000 1.542270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.542270e+05 1.542270e+05 0.00 NULL
2020 Fire Department Counsel 185066.00000 1.850660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.850660e+05 1.850660e+05 0.00 NULL
2020 Fire Department Customer Information Representative Ma L 1549 57190.60000 2.859530e+05 7135.69 1.427138e+03 0.000 157.00 5 0.000000e+00 0.00 2.930887e+05 2.859530e+05 7135.69 NULL
2020 Fire Department Deputy Assistant Chief Of Department 233534.50000 2.802414e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 2.802414e+06 2.802414e+06 0.00 NULL
2020 Fire Department Deputy Chief 177319.19481 1.365358e+07 0.00 0.000000e+00 0.000 0.00 77 0.000000e+00 0.00 1.365358e+07 1.365358e+07 0.00 NULL
2020 Fire Department Deputy Commissioner 225342.00000 1.577394e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.577394e+06 1.577394e+06 0.00 NULL
2020 Fire Department Electrical Engineer 110647.00000 1.106470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.106470e+05 1.106470e+05 0.00 NULL
2020 Fire Department Electrical Engineering Intern 61353.50000 1.227070e+05 1069.21 5.346050e+02 534.605 27.75 2 5.346050e+02 1069.21 1.237762e+05 1.237762e+05 0.00 NULL
2020 Fire Department Electrician NA NA 1013072.18 5.628179e+04 49002.185 11334.75 18 4.900218e+04 882039.33 NA NA NA NULL
2020 Fire Department Emergency Medical Specialist Trainee 32934.88889 8.892420e+05 25016.37 9.265322e+02 0.000 1067.75 27 0.000000e+00 0.00 9.142584e+05 8.892420e+05 25016.37 NULL
2020 Fire Department Emergency Medical Specialist-Emt 43862.61153 1.323335e+08 25217472.89 8.358460e+03 5271.510 738326.84 3017 5.271510e+03 15904145.67 1.575510e+08 1.482376e+08 9313327.22 NULL
2020 Fire Department Emergency Medical Specialist-Paramedic 60468.91017 5.587327e+07 16610681.23 1.797693e+04 14098.410 346238.60 924 1.409841e+04 13026930.84 7.248395e+07 6.890020e+07 3583750.39 NULL
2020 Fire Department Employee Assistance Program Specialist 59966.24562 7.795612e+05 65.07 5.005385e+00 0.000 2.00 13 0.000000e+00 0.00 7.796263e+05 7.795612e+05 65.07 NULL
2020 Fire Department Engineering Technician 56354.00000 5.635400e+04 12828.32 1.282832e+04 12828.320 310.50 1 1.282832e+04 12828.32 6.918232e+04 6.918232e+04 0.00 NULL
2020 Fire Department Executive Agency Counsel 144018.50000 2.016259e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.016259e+06 2.016259e+06 0.00 NULL
2020 Fire Department Executive Director Of Fleet Operations 178684.00000 1.786840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.786840e+05 1.786840e+05 0.00 NULL
2020 Fire Department Executive Program Specialist 128350.00000 1.283500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.283500e+05 1.283500e+05 0.00 NULL
2020 Fire Department Fingerprint Technician Trainee 30458.00000 3.045800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.045800e+04 3.045800e+04 0.00 NULL
2020 Fire Department Fire Alarm Dispatcher 55726.97790 1.008658e+07 2155318.58 1.190784e+04 9537.690 67388.64 181 9.537690e+03 1726321.89 1.224190e+07 1.181290e+07 428996.69 NULL
2020 Fire Department Fire Marshal 95527.00000 1.413800e+07 3605790.23 2.436345e+04 24047.425 77182.25 148 2.404742e+04 3559018.90 1.774379e+07 1.769701e+07 46771.33 NULL
2020 Fire Department Fire Medical Officer 147850.92000 3.696273e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 3.696273e+06 3.696273e+06 0.00 NULL
2020 Fire Department Fire Protection Inspector 50501.53158 9.595291e+06 688177.00 3.621984e+03 941.090 19224.03 190 9.410900e+02 178807.10 1.028347e+07 9.774098e+06 509369.90 NULL
2020 Fire Department Firefighter 74899.87336 6.801658e+08 173631653.88 1.912032e+04 18074.610 4459869.56 9081 1.807461e+04 164135533.41 8.537974e+08 8.443013e+08 9496120.47 NULL
2020 Fire Department First Deputy Commissioner 242767.00000 2.427670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.427670e+05 2.427670e+05 0.00 NULL
2020 Fire Department Head Nurse 89725.80000 4.486290e+05 2350.81 4.701620e+02 0.000 29.50 5 0.000000e+00 0.00 4.509798e+05 4.486290e+05 2350.81 NULL
2020 Fire Department Industrial Hygienist 54499.00000 5.449900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.449900e+04 5.449900e+04 0.00 NULL
2020 Fire Department Institutional Aide 40131.50000 1.605260e+05 14941.86 3.735465e+03 0.000 520.25 4 0.000000e+00 0.00 1.754679e+05 1.605260e+05 14941.86 NULL
2020 Fire Department Investigator 47272.55000 9.454510e+05 33410.14 1.670507e+03 628.460 1061.75 20 6.284600e+02 12569.20 9.788611e+05 9.580202e+05 20840.94 NULL
2020 Fire Department Investigator Empl Disc 65585.10000 6.558510e+05 23589.31 2.358931e+03 171.380 514.25 10 1.713800e+02 1713.80 6.794403e+05 6.575648e+05 21875.51 NULL
2020 Fire Department It Infrastructure Engineer 140521.00000 1.405210e+05 28360.35 2.836035e+04 28360.350 288.00 1 2.836035e+04 28360.35 1.688814e+05 1.688814e+05 0.00 NULL
2020 Fire Department It Project Specialist 124935.00000 1.249350e+05 20094.23 2.009423e+04 20094.230 221.50 1 2.009423e+04 20094.23 1.450292e+05 1.450292e+05 0.00 NULL
2020 Fire Department It Security Specialist 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2020 Fire Department Lieutenant 101822.73540 1.708586e+08 46073855.31 2.745760e+04 27264.840 826806.69 1678 2.726484e+04 45750401.52 2.169324e+08 2.166090e+08 323453.79 NULL
2020 Fire Department Locksmith NA NA 14994.88 2.998976e+03 2983.830 326.00 5 2.983830e+03 14919.15 NA NA NA NULL
2020 Fire Department Machinist NA NA 43063.42 4.306342e+04 43063.420 639.00 1 4.306342e+04 43063.42 NA NA NA NULL
2020 Fire Department Maintenance Worker NA NA 17730.82 1.773082e+04 17730.820 390.00 1 1.773082e+04 17730.82 NA NA NA NULL
2020 Fire Department Marine Engineer 95810.60870 2.203644e+06 1008323.95 4.384017e+04 45872.070 19561.69 23 4.384017e+04 1008323.95 3.211968e+06 3.211968e+06 0.00 NULL
2020 Fire Department Marine Maintenance Mechanic 73410.14286 5.138710e+05 80204.59 1.145780e+04 14371.580 1710.00 7 1.145780e+04 80204.59 5.940756e+05 5.940756e+05 0.00 NULL
2020 Fire Department Mechanical Engineering Intern 58253.66667 1.747610e+05 4292.41 1.430803e+03 0.000 128.50 3 0.000000e+00 0.00 1.790534e+05 1.747610e+05 4292.41 NULL
2020 Fire Department Metal Work Mechanic 81018.50000 1.620370e+05 99027.50 4.951375e+04 49513.750 1696.75 2 4.951375e+04 99027.50 2.610645e+05 2.610645e+05 0.00 NULL
2020 Fire Department Motor Vehicle Operator 48586.68500 7.773870e+05 46403.11 2.900194e+03 1523.965 1241.98 16 1.523965e+03 24383.44 8.237901e+05 8.017704e+05 22019.67 NULL
2020 Fire Department Motor Vehicle Supervisor 60160.00000 1.203200e+05 28231.67 1.411583e+04 14115.835 640.00 2 1.411583e+04 28231.67 1.485517e+05 1.485517e+05 0.00 NULL
2020 Fire Department New York City Public Service Fellow 42127.00000 8.425400e+04 204.65 1.023250e+02 102.325 8.75 2 1.023250e+02 204.65 8.445865e+04 8.445865e+04 0.00 NULL
2020 Fire Department Oiler NA NA 203151.25 4.063025e+04 52802.470 2140.00 5 4.063025e+04 203151.25 NA NA NA NULL
2020 Fire Department Painter NA NA 17175.84 8.587920e+03 8587.920 274.00 2 8.587920e+03 17175.84 NA NA NA NULL
2020 Fire Department Physician 53641.41750 2.145657e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.145657e+05 2.145657e+05 0.00 NULL
2020 Fire Department Physician’s Assistant 59250.18040 1.185004e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.185004e+05 1.185004e+05 0.00 NULL
2020 Fire Department Pilot 103847.63636 1.142324e+06 577105.15 5.246410e+04 57327.240 10565.87 11 5.246410e+04 577105.15 1.719429e+06 1.719429e+06 0.00 NULL
2020 Fire Department Planner: Production Cntrl & Scheduling 60387.50000 1.207750e+05 94887.57 4.744379e+04 47443.785 1947.00 2 4.744379e+04 94887.57 2.156626e+05 2.156626e+05 0.00 NULL
2020 Fire Department Plasterer NA NA 13278.07 1.327807e+04 13278.070 216.25 1 1.327807e+04 13278.07 NA NA NA NULL
2020 Fire Department Plumber NA NA 544696.31 3.404352e+04 37052.505 5168.00 16 3.404352e+04 544696.31 NA NA NA NULL
2020 Fire Department Principal Administrative Associate - Non Supvr 62756.92249 8.095643e+06 289451.19 2.243808e+03 12.040 6225.00 129 1.204000e+01 1553.16 8.385094e+06 8.097196e+06 287898.03 NULL
2020 Fire Department Procurement Analyst 59257.64737 1.244411e+06 19167.81 9.127529e+02 0.000 543.00 21 0.000000e+00 0.00 1.263578e+06 1.244411e+06 19167.81 NULL
2020 Fire Department Program Producer 63140.38860 3.157019e+05 36656.41 7.331282e+03 8777.190 670.25 5 7.331282e+03 36656.41 3.523584e+05 3.523584e+05 0.00 NULL
2020 Fire Department Project Manager 65640.00000 5.907600e+05 36485.27 4.053919e+03 0.000 813.50 9 0.000000e+00 0.00 6.272453e+05 5.907600e+05 36485.27 NULL
2020 Fire Department Public Records Aide 42259.40000 6.338910e+05 20798.11 1.386541e+03 0.000 646.50 15 0.000000e+00 0.00 6.546891e+05 6.338910e+05 20798.11 NULL
2020 Fire Department Public Records Officer 63500.00000 6.350000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.350000e+04 6.350000e+04 0.00 NULL
2020 Fire Department Radio Repair Mechanic NA NA 891285.16 1.782570e+04 9522.780 12673.51 50 9.522780e+03 476139.00 NA NA NA NULL
2020 Fire Department Research Assistant 65670.00000 1.313400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.313400e+05 1.313400e+05 0.00 NULL
2020 Fire Department Roofer NA NA 62005.34 3.100267e+04 31002.670 1020.00 2 3.100267e+04 62005.34 NA NA NA NULL
2020 Fire Department Rubber Tire Repairer NA NA 148322.81 1.236023e+04 10282.115 3160.08 12 1.028211e+04 123385.38 NA NA NA NULL
2020 Fire Department Secretary To The Deputy Commissioner 78500.00000 2.355000e+05 19391.44 6.463813e+03 9056.850 365.50 3 6.463813e+03 19391.44 2.548914e+05 2.548914e+05 0.00 NULL
2020 Fire Department Secretary To The Fire Commissioner 127023.00000 1.270230e+05 35898.41 3.589841e+04 35898.410 423.25 1 3.589841e+04 35898.41 1.629214e+05 1.629214e+05 0.00 NULL
2020 Fire Department Secretary To The First Deputy Commissioner 92405.00000 9.240500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.240500e+04 9.240500e+04 0.00 NULL
2020 Fire Department Senior It Architect 132911.00000 2.658220e+05 21525.55 1.076277e+04 10762.775 225.75 2 1.076277e+04 21525.55 2.873475e+05 2.873475e+05 0.00 NULL
2020 Fire Department Senior Management Consultant 141628.00000 1.416280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.416280e+05 1.416280e+05 0.00 NULL
2020 Fire Department Senior Photographer 73107.73125 7.310773e+04 3714.68 3.714680e+03 3714.680 75.25 1 3.714680e+03 3714.68 7.682241e+04 7.682241e+04 0.00 NULL
2020 Fire Department Senior Stationary Engineer NA NA 105236.42 5.261821e+04 52618.210 949.00 2 5.261821e+04 105236.42 NA NA NA NULL
2020 Fire Department Senior Supervisor Communication Electrician NA NA 53956.77 2.697838e+04 26978.385 644.00 2 2.697838e+04 53956.77 NA NA NA NULL
2020 Fire Department Sheet Metal Worker NA NA 205811.18 5.145279e+04 46940.430 1773.50 4 4.694043e+04 187761.72 NA NA NA NULL
2020 Fire Department Special Assistant To The Fire Commissioner 101795.00000 1.017950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.017950e+05 1.017950e+05 0.00 NULL
2020 Fire Department Spvsg Fad-Asst Commiss Detail 173040.00000 1.730400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.730400e+05 1.730400e+05 0.00 NULL
2020 Fire Department Spvsg Fad-Dep Dir Dsptch Dtail 112795.00000 2.255900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.255900e+05 2.255900e+05 0.00 NULL
2020 Fire Department Spvsg Fad-Dir Dsptch Op Detail 115680.00000 1.156800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.156800e+05 1.156800e+05 0.00 NULL
2020 Fire Department Staff Analyst 61427.90909 1.351414e+06 15531.51 7.059777e+02 27.580 374.00 22 2.758000e+01 606.76 1.366946e+06 1.352021e+06 14924.75 NULL
2020 Fire Department Staff Analyst Trainee 48836.75000 1.953470e+05 942.74 2.356850e+02 15.830 37.25 4 1.583000e+01 63.32 1.962897e+05 1.954103e+05 879.42 NULL
2020 Fire Department Stationary Engineer NA NA 78227.25 7.822725e+04 78227.250 778.00 1 7.822725e+04 78227.25 NA NA NA NULL
2020 Fire Department Steam Fitter NA NA 13172.50 1.317250e+04 13172.500 119.75 1 1.317250e+04 13172.50 NA NA NA NULL
2020 Fire Department Steam Fitter’s Helper NA NA 124562.79 4.152093e+04 43258.940 1508.25 3 4.152093e+04 124562.79 NA NA NA NULL
2020 Fire Department Stock Worker 37545.00000 2.252700e+05 37507.78 6.251297e+03 5350.475 1482.25 6 5.350475e+03 32102.85 2.627778e+05 2.573729e+05 5404.93 NULL
2020 Fire Department Strategic Initiative Specialist 155198.00000 1.551980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.551980e+05 1.551980e+05 0.00 NULL
2020 Fire Department Summer College Intern 5186.90603 2.074762e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.074762e+04 2.074762e+04 0.00 NULL
2020 Fire Department Summer Graduate Intern 3887.00897 1.166103e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.166103e+04 1.166103e+04 0.00 NULL
2020 Fire Department Supervising Blasting Inspector 84558.44444 7.610260e+05 301879.74 3.354219e+04 35881.050 4969.63 9 3.354219e+04 301879.74 1.062906e+06 1.062906e+06 0.00 NULL
2020 Fire Department Supervising Communication Electrician NA NA 369391.62 3.078263e+04 33622.190 4646.25 12 3.078263e+04 369391.62 NA NA NA NULL
2020 Fire Department Supervising Computer Service Technician 70691.00000 7.069100e+04 9045.24 9.045240e+03 9045.240 184.00 1 9.045240e+03 9045.24 7.973624e+04 7.973624e+04 0.00 NULL
2020 Fire Department Supervising Emergency Medical Service Specialist 72823.16750 4.347543e+07 14405509.17 2.412983e+04 20408.540 259490.20 597 2.040854e+04 12183898.38 5.788094e+07 5.565933e+07 2221610.79 NULL
2020 Fire Department Supervising Emergency Medical Service Specialist-Dpty Chiefs 114798.08511 5.395510e+06 182187.37 3.876327e+03 0.000 3150.25 47 0.000000e+00 0.00 5.577697e+06 5.395510e+06 182187.37 NULL
2020 Fire Department Supervising Fire Alarm Dispatcher 76652.38462 2.989443e+06 936041.69 2.400107e+04 22222.710 19270.16 39 2.222271e+04 866685.69 3.925485e+06 3.856129e+06 69356.00 NULL
2020 Fire Department Supervising Fire Marshal 122832.28205 4.790459e+06 988922.37 2.535698e+04 19352.460 17504.93 39 1.935246e+04 754745.94 5.779381e+06 5.545205e+06 234176.43 NULL
2020 Fire Department Supervisor Carpenter NA NA 175455.95 8.772798e+04 87727.975 2129.50 2 8.772798e+04 175455.95 NA NA NA NULL
2020 Fire Department Supervisor Electrician NA NA 247169.51 8.238984e+04 109146.270 2569.00 3 8.238984e+04 247169.51 NA NA NA NULL
2020 Fire Department Supervisor Locksmith NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2020 Fire Department Supervisor Of Electrical Installations & Maintenance 82097.50000 3.283900e+05 168368.31 4.209208e+04 50061.155 2585.50 4 4.209208e+04 168368.31 4.967583e+05 4.967583e+05 0.00 NULL
2020 Fire Department Supervisor Of Mechanics NA NA 2142375.56 5.100894e+04 48356.565 24096.00 42 4.835657e+04 2030975.73 NA NA NA NULL
2020 Fire Department Supervisor Of Nurses 88778.00000 8.877800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.877800e+04 8.877800e+04 0.00 NULL
2020 Fire Department Supervisor Of Stock Workers 56451.31818 1.241929e+06 184336.77 8.378944e+03 8507.115 4649.25 22 8.378944e+03 184336.77 1.426266e+06 1.426266e+06 0.00 NULL
2020 Fire Department Supervisor Plumber NA NA 243733.31 6.093333e+04 65145.670 2207.00 4 6.093333e+04 243733.31 NA NA NA NULL
2020 Fire Department Telecommunication Manager 153476.00000 1.534760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.534760e+05 1.534760e+05 0.00 NULL
2020 Fire Department Telecommunications Associate 74607.23077 9.698940e+05 130836.07 1.006431e+04 4554.610 2320.23 13 4.554610e+03 59209.93 1.100730e+06 1.029104e+06 71626.14 NULL
2020 Fire Department Telecommunications Manager 134280.00000 1.342800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.342800e+05 1.342800e+05 0.00 NULL
2020 Fire Department Welder NA NA 2872.45 1.436225e+03 1436.225 0.00 2 1.436225e+03 2872.45 NA NA NA NULL
2020 Fire Department Wiper 88400.00000 1.060800e+06 414988.57 3.458238e+04 38529.060 8532.83 12 3.458238e+04 414988.57 1.475789e+06 1.475789e+06 0.00 NULL
2020 Fire Department Worker’s Compensation Benefits Examiner 42417.28571 2.969210e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.969210e+05 2.969210e+05 0.00 NULL
2020 Guttman Community College Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 NA NA NA NULL
2020 Guttman Community College Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 62 0.000000e+00 0.00 NA NA NA NULL
2020 Guttman Community College Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2020 Guttman Community College Assistant Administrator 145006.00000 1.450060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450060e+05 1.450060e+05 0.00 NULL
2020 Guttman Community College Assistant Dean 140833.33333 4.225000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.225000e+05 4.225000e+05 0.00 NULL
2020 Guttman Community College Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 NA NA NA NULL
2020 Guttman Community College Assistant To Heo 61666.50000 6.166650e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 6.166650e+05 6.166650e+05 0.00 NULL
2020 Guttman Community College Assistant Vice President 165286.00000 3.305720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.305720e+05 3.305720e+05 0.00 NULL
2020 Guttman Community College Associate Dean 134646.00000 2.692920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.692920e+05 2.692920e+05 0.00 NULL
2020 Guttman Community College Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 NA NA NA NULL
2020 Guttman Community College Business Data And Reporting Analyst 10161.76000 1.016176e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.016176e+04 1.016176e+04 0.00 NULL
2020 Guttman Community College Campus Peace Officer 43608.75000 1.744350e+05 39976.10 9.994025e+03 9251.020 1250.75 4 9.251020e+03 37004.08 2.144111e+05 2.114391e+05 2972.02 NULL
2020 Guttman Community College Campus Public Safety Sergeant 55370.00000 1.661100e+05 46454.79 1.548493e+04 16094.720 1164.25 3 1.548493e+04 46454.79 2.125648e+05 2.125648e+05 0.00 NULL
2020 Guttman Community College Campus Security Assistant 33741.00000 1.349640e+05 25541.73 6.385432e+03 6656.615 1053.75 4 6.385432e+03 25541.73 1.605057e+05 1.605057e+05 0.00 NULL
2020 Guttman Community College Clinical Professor 108834.00000 1.088340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.088340e+05 1.088340e+05 0.00 NULL
2020 Guttman Community College College Assistant 3655.38578 8.955695e+05 0.00 0.000000e+00 0.000 0.00 245 0.000000e+00 0.00 8.955695e+05 8.955695e+05 0.00 NULL
2020 Guttman Community College College Lab Technician 57321.00000 5.732100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.732100e+04 5.732100e+04 0.00 NULL
2020 Guttman Community College College Security Director 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2020 Guttman Community College College Security Specialist 62373.00000 6.237300e+04 14630.15 1.463015e+04 14630.150 326.50 1 1.463015e+04 14630.15 7.700315e+04 7.700315e+04 0.00 NULL
2020 Guttman Community College Computer Systems Manager 111300.00000 2.226000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.226000e+05 2.226000e+05 0.00 NULL
2020 Guttman Community College Continuing Education Teacher 2476.15826 1.064748e+05 0.00 0.000000e+00 0.000 0.00 43 0.000000e+00 0.00 1.064748e+05 1.064748e+05 0.00 NULL
2020 Guttman Community College Cuny Administrator Assistant 50726.00000 5.072600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.072600e+04 5.072600e+04 0.00 NULL
2020 Guttman Community College Cuny Office Assistant 36510.25000 1.460410e+05 8.79 2.197500e+00 0.000 0.00 4 0.000000e+00 0.00 1.460498e+05 1.460410e+05 8.79 NULL
2020 Guttman Community College Dean 154087.00000 3.081740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.081740e+05 3.081740e+05 0.00 NULL
2020 Guttman Community College Disability Accommodations Specialist 21193.14500 1.271589e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.271589e+05 1.271589e+05 0.00 NULL
2020 Guttman Community College Higher Education Assistant 74729.80000 2.615543e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 2.615543e+06 2.615543e+06 0.00 NULL
2020 Guttman Community College Higher Education Associate 95160.90909 2.093540e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 2.093540e+06 2.093540e+06 0.00 NULL
2020 Guttman Community College Higher Education Officer 123353.93333 1.850309e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.850309e+06 1.850309e+06 0.00 NULL
2020 Guttman Community College Instructor NA NA 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 NA NA NA NULL
2020 Guttman Community College It Assistant 61053.33333 1.831600e+05 915.06 3.050200e+02 0.000 18.00 3 0.000000e+00 0.00 1.840751e+05 1.831600e+05 915.06 NULL
2020 Guttman Community College It Associate 79677.00000 7.967700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.967700e+04 7.967700e+04 0.00 NULL
2020 Guttman Community College It Senior Associate 74050.75000 2.962030e+05 895.17 2.237925e+02 0.000 15.00 4 0.000000e+00 0.00 2.970982e+05 2.962030e+05 895.17 NULL
2020 Guttman Community College It Support Assistant 43990.00000 8.798000e+04 98.99 4.949500e+01 49.495 4.00 2 4.949500e+01 98.99 8.807899e+04 8.807899e+04 0.00 NULL
2020 Guttman Community College Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 NA NA NA NULL
2020 Guttman Community College Non-Teaching Adjunct I 3799.81004 2.165892e+05 0.00 0.000000e+00 0.000 0.00 57 0.000000e+00 0.00 2.165892e+05 2.165892e+05 0.00 NULL
2020 Guttman Community College Non-Teaching Adjunct Ii 10656.28800 5.328144e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.328144e+04 5.328144e+04 0.00 NULL
2020 Guttman Community College Non-Teaching Adjunct Iii 3909.52690 1.798382e+05 0.00 0.000000e+00 0.000 0.00 46 0.000000e+00 0.00 1.798382e+05 1.798382e+05 0.00 NULL
2020 Guttman Community College Non-Teaching Adjunct Iv 3554.83700 3.554837e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 3.554837e+04 3.554837e+04 0.00 NULL
2020 Guttman Community College Non-Teaching Adjunct V 7319.57679 5.123704e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.123704e+04 5.123704e+04 0.00 NULL
2020 Guttman Community College President 228000.00000 2.280000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.280000e+05 2.280000e+05 0.00 NULL
2020 Guttman Community College Professor NA NA 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 NA NA NA NULL
2020 Guttman Community College Student Aide 2892.25962 2.255962e+05 0.00 0.000000e+00 0.000 0.00 78 0.000000e+00 0.00 2.255962e+05 2.255962e+05 0.00 NULL
2020 Guttman Community College Vice President 180000.00000 1.800000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.800000e+05 1.800000e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt *Attorney At Law 104902.10679 1.468629e+06 14992.74 1.070910e+03 0.000 184.50 14 0.000000e+00 0.00 1.483622e+06 1.468629e+06 14992.74 NULL
2020 Housing Preservation & Dvlpmnt Accountant 61034.81339 1.708975e+06 1172.32 4.186857e+01 0.000 25.50 28 0.000000e+00 0.00 1.710147e+06 1.708975e+06 1172.32 NULL
2020 Housing Preservation & Dvlpmnt Adm Manager-Non-Mgrl 81062.77483 7.295650e+06 81073.14 9.008127e+02 0.000 1461.25 90 0.000000e+00 0.00 7.376723e+06 7.295650e+06 81073.14 NULL
2020 Housing Preservation & Dvlpmnt Admin Community Relations Specialist 71255.37336 3.135236e+06 89957.16 2.044481e+03 0.000 1861.50 44 0.000000e+00 0.00 3.225194e+06 3.135236e+06 89957.16 NULL
2020 Housing Preservation & Dvlpmnt Admin Construction Project Manager 128750.00000 1.287500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287500e+05 1.287500e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Admin Housing Development Spec 98257.59259 5.305910e+06 87131.01 1.613537e+03 0.000 1387.00 54 0.000000e+00 0.00 5.393041e+06 5.305910e+06 87131.01 NULL
2020 Housing Preservation & Dvlpmnt Administrative Accountant 121540.00000 1.215400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.215400e+05 1.215400e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Administrative Architect 115799.00000 1.157990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.157990e+05 1.157990e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Administrative Business Promotion Coordinator 74018.75000 2.960750e+05 3035.71 7.589275e+02 0.000 48.50 4 0.000000e+00 0.00 2.991107e+05 2.960750e+05 3035.71 NULL
2020 Housing Preservation & Dvlpmnt Administrative City Planner 114466.66667 1.717000e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.717000e+06 1.717000e+06 0.00 NULL
2020 Housing Preservation & Dvlpmnt Administrative Community Relations Specialist 124899.50000 2.497990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.497990e+05 2.497990e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Administrative Construction Project Manager 113225.00000 1.132250e+05 1668.77 1.668770e+03 1668.770 27.50 1 1.668770e+03 1668.77 1.148938e+05 1.148938e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Administrative Engineer 119546.66667 3.586400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.586400e+05 3.586400e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Administrative Housing Development Specialist 133857.05000 2.677141e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 2.677141e+06 2.677141e+06 0.00 NULL
2020 Housing Preservation & Dvlpmnt Administrative Inspector 118746.40000 1.781196e+06 8399.11 5.599407e+02 0.000 130.75 15 0.000000e+00 0.00 1.789595e+06 1.781196e+06 8399.11 NULL
2020 Housing Preservation & Dvlpmnt Administrative Labor Relations Analyst 139050.00000 1.390500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.390500e+05 1.390500e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Administrative Management Auditor 121835.66667 3.655070e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.655070e+05 3.655070e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Administrative Manager 153807.20000 7.690360e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.690360e+05 7.690360e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Administrative Procurement Analyst 120449.00000 2.408980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.408980e+05 2.408980e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Administrative Procurement Analyst-Non-Mgrl 80866.16667 9.703940e+05 13918.53 1.159878e+03 0.000 313.00 12 0.000000e+00 0.00 9.843125e+05 9.703940e+05 13918.53 NULL
2020 Housing Preservation & Dvlpmnt Administrative Project Director 114209.18519 3.083648e+06 1017.71 3.769296e+01 0.000 19.50 27 0.000000e+00 0.00 3.084666e+06 3.083648e+06 1017.71 NULL
2020 Housing Preservation & Dvlpmnt Administrative Project Manager 107367.77778 9.663100e+05 28618.84 3.179871e+03 0.000 383.25 9 0.000000e+00 0.00 9.949288e+05 9.663100e+05 28618.84 NULL
2020 Housing Preservation & Dvlpmnt Administrative Public Information Specialist 110216.00000 1.102160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.102160e+05 1.102160e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Administrative Quality Assurance Specialist 97103.00000 9.710300e+04 20976.77 2.097677e+04 20976.770 291.75 1 2.097677e+04 20976.77 1.180798e+05 1.180798e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Administrative Real Property Manager 102763.60000 5.138180e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.138180e+05 5.138180e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Administrative Staff Analyst 109640.71212 7.236287e+06 36351.47 5.507798e+02 0.000 629.25 66 0.000000e+00 0.00 7.272638e+06 7.236287e+06 36351.47 NULL
2020 Housing Preservation & Dvlpmnt Administrative Supervisor Of Building Maintenance 110634.00000 1.106340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.106340e+05 1.106340e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Agency Attorney 95577.45714 6.690422e+06 41467.81 5.923973e+02 0.000 615.75 70 0.000000e+00 0.00 6.731890e+06 6.690422e+06 41467.81 NULL
2020 Housing Preservation & Dvlpmnt Agency Chief Contracting Officer 148245.00000 1.482450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.482450e+05 1.482450e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Appraiser 73690.71429 5.158350e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.158350e+05 5.158350e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Architect 92008.00000 9.200800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.200800e+04 9.200800e+04 0.00 NULL
2020 Housing Preservation & Dvlpmnt Assistant Architect 71313.85714 9.983940e+05 2325.94 1.661386e+02 0.000 53.50 14 0.000000e+00 0.00 1.000720e+06 9.983940e+05 2325.94 NULL
2020 Housing Preservation & Dvlpmnt Assistant Civil Engineer 75230.00000 1.504600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.504600e+05 1.504600e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Assistant Commissioner 153537.46154 1.995987e+06 5511.86 4.239892e+02 0.000 77.00 13 0.000000e+00 0.00 2.001499e+06 1.995987e+06 5511.86 NULL
2020 Housing Preservation & Dvlpmnt Assistant Mechanical Engineer 73777.75000 2.951110e+05 20232.16 5.058040e+03 679.580 396.25 4 6.795800e+02 2718.32 3.153432e+05 2.978293e+05 17513.84 NULL
2020 Housing Preservation & Dvlpmnt Assistant Urban Designer 57078.00000 5.707800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.707800e+04 5.707800e+04 0.00 NULL
2020 Housing Preservation & Dvlpmnt Associate Housing Development Specialist 94141.86667 4.236384e+06 92507.96 2.055732e+03 0.000 1595.75 45 0.000000e+00 0.00 4.328892e+06 4.236384e+06 92507.96 NULL
2020 Housing Preservation & Dvlpmnt Associate Inspector 71786.60606 4.737916e+06 196722.02 2.980637e+03 745.105 3257.84 66 7.451050e+02 49176.93 4.934638e+06 4.787093e+06 147545.09 NULL
2020 Housing Preservation & Dvlpmnt Associate Investigator 74064.00000 1.481280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.481280e+05 1.481280e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Associate Project Manager 86850.00000 3.474000e+05 23784.75 5.946188e+03 5119.440 363.75 4 5.119440e+03 20477.76 3.711848e+05 3.678778e+05 3306.99 NULL
2020 Housing Preservation & Dvlpmnt Associate Quality Assurance Specialist 68458.33333 2.053750e+05 30662.84 1.022095e+04 11014.410 718.50 3 1.022095e+04 30662.84 2.360378e+05 2.360378e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Associate Real Property Manager 70272.45946 2.600081e+06 30540.53 8.254197e+02 0.000 531.00 37 0.000000e+00 0.00 2.630622e+06 2.600081e+06 30540.53 NULL
2020 Housing Preservation & Dvlpmnt Associate Rehabilitation Specialist 70161.00000 1.403220e+05 971.55 4.857750e+02 485.775 21.75 2 4.857750e+02 971.55 1.412935e+05 1.412935e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Associate Staff Analyst 84302.80333 2.023267e+06 4755.28 1.981367e+02 0.000 115.50 24 0.000000e+00 0.00 2.028023e+06 2.023267e+06 4755.28 NULL
2020 Housing Preservation & Dvlpmnt Bookkeeper 60740.40000 3.037020e+05 3210.39 6.420780e+02 0.000 82.00 5 0.000000e+00 0.00 3.069124e+05 3.037020e+05 3210.39 NULL
2020 Housing Preservation & Dvlpmnt Certified It Administrator 135314.00000 1.353140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.353140e+05 1.353140e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Certified It Developer 106294.60000 5.314730e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.314730e+05 5.314730e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt City Planner 90725.10714 2.540303e+06 7432.51 2.654468e+02 0.000 140.00 28 0.000000e+00 0.00 2.547736e+06 2.540303e+06 7432.51 NULL
2020 Housing Preservation & Dvlpmnt City Research Scientist 101585.14286 7.110960e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.110960e+05 7.110960e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Civil Engineer 89508.00000 8.950800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.950800e+04 8.950800e+04 0.00 NULL
2020 Housing Preservation & Dvlpmnt Clerical Associate 50167.25713 7.073583e+06 168113.07 1.192291e+03 0.000 4427.50 141 0.000000e+00 0.00 7.241696e+06 7.073583e+06 168113.07 NULL
2020 Housing Preservation & Dvlpmnt Commissioner Of Housing Preservation & Development 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Community Assistant 40995.01268 1.147860e+06 14118.45 5.042304e+02 0.000 584.25 28 0.000000e+00 0.00 1.161979e+06 1.147860e+06 14118.45 NULL
2020 Housing Preservation & Dvlpmnt Community Associate 46235.57142 1.655233e+07 385896.55 1.077923e+03 0.000 12810.90 358 0.000000e+00 0.00 1.693823e+07 1.655233e+07 385896.55 NULL
2020 Housing Preservation & Dvlpmnt Community Coordinator 66868.17940 2.012732e+07 244906.55 8.136430e+02 0.000 5329.75 301 0.000000e+00 0.00 2.037223e+07 2.012732e+07 244906.55 NULL
2020 Housing Preservation & Dvlpmnt Community Service Aide 30869.56448 1.852174e+05 6138.28 1.023047e+03 0.000 269.50 6 0.000000e+00 0.00 1.913557e+05 1.852174e+05 6138.28 NULL
2020 Housing Preservation & Dvlpmnt Computer Associate 90264.80556 3.249533e+06 16132.62 4.481283e+02 0.000 282.75 36 0.000000e+00 0.00 3.265666e+06 3.249533e+06 16132.62 NULL
2020 Housing Preservation & Dvlpmnt Computer Operations Manager 118196.42857 8.273750e+05 9.37 1.338571e+00 0.000 0.00 7 0.000000e+00 0.00 8.273844e+05 8.273750e+05 9.37 NULL
2020 Housing Preservation & Dvlpmnt Computer Specialist 106827.94231 5.555053e+06 26067.11 5.012906e+02 0.000 324.00 52 0.000000e+00 0.00 5.581120e+06 5.555053e+06 26067.11 NULL
2020 Housing Preservation & Dvlpmnt Computer Systems Manager 121152.13889 4.361477e+06 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 4.361477e+06 4.361477e+06 0.00 NULL
2020 Housing Preservation & Dvlpmnt Confidential Strategy Planner 72500.00000 1.450000e+05 441.31 2.206550e+02 220.655 10.75 2 2.206550e+02 441.31 1.454413e+05 1.454413e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Construction Project Manager 77419.87473 1.587107e+07 809529.03 3.948922e+03 214.780 12666.25 205 2.147800e+02 44029.90 1.668060e+07 1.591510e+07 765499.13 NULL
2020 Housing Preservation & Dvlpmnt Customer Information Representative Ma L 1549 61243.66667 1.837310e+05 2566.08 8.553600e+02 393.680 69.00 3 3.936800e+02 1181.04 1.862971e+05 1.849120e+05 1385.04 NULL
2020 Housing Preservation & Dvlpmnt Deputy Commissioner 205119.20000 1.025596e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.025596e+06 1.025596e+06 0.00 NULL
2020 Housing Preservation & Dvlpmnt Deputy Counsel 154905.00000 1.549050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.549050e+05 1.549050e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Deputy General Counsel 173240.20000 8.662010e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.662010e+05 8.662010e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Director Of Neighborhood Conservation 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Director Of Property Management 123522.00000 3.705660e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.705660e+05 3.705660e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Electrician NA NA 84909.65 8.490965e+04 84909.650 954.50 1 8.490965e+04 84909.65 NA NA NA NULL
2020 Housing Preservation & Dvlpmnt Eligibility Specialist 54387.00000 1.087740e+05 3662.56 1.831280e+03 1831.280 100.50 2 1.831280e+03 3662.56 1.124366e+05 1.124366e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Estimator 72902.00000 2.187060e+05 786.06 2.620200e+02 0.000 18.25 3 0.000000e+00 0.00 2.194921e+05 2.187060e+05 786.06 NULL
2020 Housing Preservation & Dvlpmnt Executive Agency Counsel 139273.45000 2.785469e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 2.785469e+06 2.785469e+06 0.00 NULL
2020 Housing Preservation & Dvlpmnt Executive Assistant To The Deputy Commissioner 99672.25000 3.986890e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.986890e+05 3.986890e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Executive Program Specialist 101283.33333 3.038500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.038500e+05 3.038500e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt General Counsel 192691.00000 1.926910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.926910e+05 1.926910e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Housing Development Specialist 75416.37121 9.954961e+06 246939.67 1.870755e+03 0.000 4442.00 132 0.000000e+00 0.00 1.020190e+07 9.954961e+06 246939.67 NULL
2020 Housing Preservation & Dvlpmnt Industrial Hygienist 63546.33333 1.906390e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.906390e+05 1.906390e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Inspector 58699.18966 2.383187e+07 302501.46 7.450775e+02 33.565 6301.55 406 3.356500e+01 13627.39 2.413437e+07 2.384550e+07 288874.07 NULL
2020 Housing Preservation & Dvlpmnt Investigator 64241.60000 9.636240e+05 574.58 3.830533e+01 0.000 17.25 15 0.000000e+00 0.00 9.641986e+05 9.636240e+05 574.58 NULL
2020 Housing Preservation & Dvlpmnt Lead Abatement Worker 53988.50000 2.159540e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.159540e+05 2.159540e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Legislative Assistant 103713.66667 3.111410e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.111410e+05 3.111410e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Management Auditor 82799.00000 5.795930e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.795930e+05 5.795930e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Multiple Dwelling Specialist 73384.00000 1.467680e+05 6939.00 3.469500e+03 3469.500 110.00 2 3.469500e+03 6939.00 1.537070e+05 1.537070e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt New York City Public Service Fellow 43534.66667 1.306040e+05 1841.78 6.139267e+02 850.280 68.00 3 6.139267e+02 1841.78 1.324458e+05 1.324458e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Paralegal Aide 56966.75000 2.278670e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.278670e+05 2.278670e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Principal Administrative Associate - Non Supvr 63165.59124 8.653686e+06 130282.52 9.509673e+02 0.000 2566.90 137 0.000000e+00 0.00 8.783969e+06 8.653686e+06 130282.52 NULL
2020 Housing Preservation & Dvlpmnt Principal Appraiser 131060.00000 1.310600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.310600e+05 1.310600e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Procurement Analyst 65685.62500 5.254850e+05 3072.93 3.841162e+02 0.000 79.50 8 0.000000e+00 0.00 5.285579e+05 5.254850e+05 3072.93 NULL
2020 Housing Preservation & Dvlpmnt Project Manager 67820.00000 1.356400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.356400e+05 1.356400e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Quality Assurance Specialist 54142.00000 2.707100e+05 3105.73 6.211460e+02 0.000 90.25 5 0.000000e+00 0.00 2.738157e+05 2.707100e+05 3105.73 NULL
2020 Housing Preservation & Dvlpmnt Real Property Manager 61605.38462 1.601740e+06 9530.78 3.665685e+02 0.000 237.75 26 0.000000e+00 0.00 1.611271e+06 1.601740e+06 9530.78 NULL
2020 Housing Preservation & Dvlpmnt Repair Crew Chief 44398.00000 2.663880e+05 7941.84 1.323640e+03 689.290 246.25 6 6.892900e+02 4135.74 2.743298e+05 2.705237e+05 3806.10 NULL
2020 Housing Preservation & Dvlpmnt Repair Shop Manager 78318.00000 7.831800e+04 35661.02 3.566102e+04 35661.020 595.50 1 3.566102e+04 35661.02 1.139790e+05 1.139790e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Secretary 48051.35294 8.168730e+05 4455.32 2.620776e+02 0.000 160.25 17 0.000000e+00 0.00 8.213283e+05 8.168730e+05 4455.32 NULL
2020 Housing Preservation & Dvlpmnt Secretary Of The Department 141532.00000 1.415320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.415320e+05 1.415320e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Senior Estimator 89330.00000 2.679900e+05 414.16 1.380533e+02 0.000 8.50 3 0.000000e+00 0.00 2.684042e+05 2.679900e+05 414.16 NULL
2020 Housing Preservation & Dvlpmnt Senior Repair Crew Chief 59465.75000 2.378630e+05 162149.52 4.053738e+04 45639.495 3678.00 4 4.053738e+04 162149.52 4.000125e+05 4.000125e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Special Assistant To The Commissioner 197700.00000 3.954000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.954000e+05 3.954000e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Staff Analyst 64505.30769 8.385690e+05 11681.83 8.986023e+02 0.000 308.75 13 0.000000e+00 0.00 8.502508e+05 8.385690e+05 11681.83 NULL
2020 Housing Preservation & Dvlpmnt Strategic Initiative Specialist 107914.44444 9.712300e+05 12363.91 1.373768e+03 0.000 163.25 9 0.000000e+00 0.00 9.835939e+05 9.712300e+05 12363.91 NULL
2020 Housing Preservation & Dvlpmnt Supervising Demolition Inspector 81404.00000 3.256160e+05 23434.46 5.858615e+03 6838.505 403.75 4 5.858615e+03 23434.46 3.490505e+05 3.490505e+05 0.00 NULL
2020 Housing Preservation & Dvlpmnt Supervisor Of Electrical Installations & Maintenance 90410.33333 2.712310e+05 13028.04 4.342680e+03 0.000 187.50 3 0.000000e+00 0.00 2.842590e+05 2.712310e+05 13028.04 NULL
2020 Housing Preservation & Dvlpmnt Supervisor Of Mechanical Installations & Maintenance 78936.25000 9.472350e+05 61491.80 5.124317e+03 1563.555 1067.00 12 1.563555e+03 18762.66 1.008727e+06 9.659977e+05 42729.14 NULL
2020 Housing Preservation & Dvlpmnt Supervisor Of Stock Workers 68869.00000 6.886900e+04 1372.90 1.372900e+03 1372.900 23.25 1 1.372900e+03 1372.90 7.024190e+04 7.024190e+04 0.00 NULL
2020 Hra/Dept Of Social Services *Attorney At Law 82137.00000 1.642740e+05 152.55 7.627500e+01 76.275 0.00 2 7.627500e+01 152.55 1.644265e+05 1.644265e+05 0.00 NULL
2020 Hra/Dept Of Social Services *Certified Database Administrator 115100.00000 1.151000e+05 15996.25 1.599625e+04 15996.250 189.50 1 1.599625e+04 15996.25 1.310962e+05 1.310962e+05 0.00 NULL
2020 Hra/Dept Of Social Services *Certified Local Area Network Administrator 105353.33333 6.321200e+05 49656.95 8.276158e+03 0.000 615.25 6 0.000000e+00 0.00 6.817769e+05 6.321200e+05 49656.95 NULL
2020 Hra/Dept Of Social Services *Certified Wide Area Network Administrator 113753.00000 1.137530e+05 17626.71 1.762671e+04 17626.710 221.00 1 1.762671e+04 17626.71 1.313797e+05 1.313797e+05 0.00 NULL
2020 Hra/Dept Of Social Services Accountant 65304.18519 1.763213e+06 14563.52 5.393896e+02 0.000 447.50 27 0.000000e+00 0.00 1.777777e+06 1.763213e+06 14563.52 NULL
2020 Hra/Dept Of Social Services Adm Manager-Non-Mgrl 75693.85294 7.720773e+06 249474.19 2.445825e+03 1.020 4870.50 102 1.020000e+00 104.04 7.970247e+06 7.720877e+06 249370.15 NULL
2020 Hra/Dept Of Social Services Admin Community Relations Specialist 94590.04348 2.175571e+06 14056.87 6.111683e+02 0.000 275.25 23 0.000000e+00 0.00 2.189628e+06 2.175571e+06 14056.87 NULL
2020 Hra/Dept Of Social Services Admin Contract Specialist 63067.35000 1.261347e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.261347e+05 1.261347e+05 0.00 NULL
2020 Hra/Dept Of Social Services Admin Job Opor Spec-Managerial 132437.43750 2.118999e+06 303.84 1.899000e+01 0.000 0.00 16 0.000000e+00 0.00 2.119303e+06 2.118999e+06 303.84 NULL
2020 Hra/Dept Of Social Services Admin Job Opportunity Spec Nm 85377.67059 7.257102e+06 449162.76 5.284268e+03 2003.130 7324.25 85 2.003130e+03 170266.05 7.706265e+06 7.427368e+06 278896.71 NULL
2020 Hra/Dept Of Social Services Administrative Accountant 99553.75000 7.964300e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.964300e+05 7.964300e+05 0.00 NULL
2020 Hra/Dept Of Social Services Administrative Business Promotion Coordinator 106680.66667 3.200420e+05 4745.49 1.581830e+03 0.000 81.00 3 0.000000e+00 0.00 3.247875e+05 3.200420e+05 4745.49 NULL
2020 Hra/Dept Of Social Services Administrative City Planner 88774.00000 8.877400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.877400e+04 8.877400e+04 0.00 NULL
2020 Hra/Dept Of Social Services Administrative Community Relations Specialist 166591.00000 1.665910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.665910e+05 1.665910e+05 0.00 NULL
2020 Hra/Dept Of Social Services Administrative Construction Project Manager 123150.00000 1.231500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.231500e+05 1.231500e+05 0.00 NULL
2020 Hra/Dept Of Social Services Administrative Contract Specialist 83028.38462 1.079369e+06 17449.87 1.342298e+03 0.000 360.00 13 0.000000e+00 0.00 1.096819e+06 1.079369e+06 17449.87 NULL
2020 Hra/Dept Of Social Services Administrative Director Of Social Services 107928.67290 1.154837e+07 8116.35 7.585374e+01 0.000 158.00 107 0.000000e+00 0.00 1.155648e+07 1.154837e+07 8116.35 NULL
2020 Hra/Dept Of Social Services Administrative Engineer 120389.00000 1.203890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.203890e+05 1.203890e+05 0.00 NULL
2020 Hra/Dept Of Social Services Administrative Investigator 86748.57692 2.255463e+06 9408.94 3.618823e+02 0.000 175.00 26 0.000000e+00 0.00 2.264872e+06 2.255463e+06 9408.94 NULL
2020 Hra/Dept Of Social Services Administrative Management Auditor 108175.00000 9.735750e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.735750e+05 9.735750e+05 0.00 NULL
2020 Hra/Dept Of Social Services Administrative Manager 128235.00000 2.564700e+05 4935.60 2.467800e+03 2467.800 43.00 2 2.467800e+03 4935.60 2.614056e+05 2.614056e+05 0.00 NULL
2020 Hra/Dept Of Social Services Administrative Printing Services Manager 122081.50000 2.441630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.441630e+05 2.441630e+05 0.00 NULL
2020 Hra/Dept Of Social Services Administrative Procurement Analyst-Non-Mgrl 82245.15152 2.714090e+06 12765.78 3.868418e+02 0.000 134.00 33 0.000000e+00 0.00 2.726856e+06 2.714090e+06 12765.78 NULL
2020 Hra/Dept Of Social Services Administrative Public Information Specialist 122485.62500 9.798850e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.798850e+05 9.798850e+05 0.00 NULL
2020 Hra/Dept Of Social Services Administrative Retirement Benefits Specialist 91902.00000 9.190200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.190200e+04 9.190200e+04 0.00 NULL
2020 Hra/Dept Of Social Services Administrative Space Analyst 90006.50000 3.600260e+05 239.22 5.980500e+01 0.000 5.25 4 0.000000e+00 0.00 3.602652e+05 3.600260e+05 239.22 NULL
2020 Hra/Dept Of Social Services Administrative Staff Analyst 93715.19861 2.689626e+07 58032.32 2.022032e+02 0.000 1041.25 287 0.000000e+00 0.00 2.695429e+07 2.689626e+07 58032.32 NULL
2020 Hra/Dept Of Social Services Administrative Storekeeper 121722.00000 1.217220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.217220e+05 1.217220e+05 0.00 NULL
2020 Hra/Dept Of Social Services Administrative Supervisor Of Building Maintenance 139646.25000 5.585850e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.585850e+05 5.585850e+05 0.00 NULL
2020 Hra/Dept Of Social Services Agency Attorney 82792.29907 8.858776e+06 11665.70 1.090252e+02 0.000 196.00 107 0.000000e+00 0.00 8.870442e+06 8.858776e+06 11665.70 NULL
2020 Hra/Dept Of Social Services Agency Attorney Interne 61835.85714 8.657020e+05 34.15 2.439286e+00 0.000 1.00 14 0.000000e+00 0.00 8.657362e+05 8.657020e+05 34.15 NULL
2020 Hra/Dept Of Social Services Architect 96004.00000 1.920080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.920080e+05 1.920080e+05 0.00 NULL
2020 Hra/Dept Of Social Services Assist Commissioner For Policy Analysis & Prog Deve 145230.00000 1.452300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.452300e+05 1.452300e+05 0.00 NULL
2020 Hra/Dept Of Social Services Assistant Administrator Of Public Affairs 118450.00000 1.184500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.184500e+05 1.184500e+05 0.00 NULL
2020 Hra/Dept Of Social Services Assistant Architect 71362.00000 1.427240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.427240e+05 1.427240e+05 0.00 NULL
2020 Hra/Dept Of Social Services Assistant Commissioner 182960.50000 7.318420e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.318420e+05 7.318420e+05 0.00 NULL
2020 Hra/Dept Of Social Services Assistant Deputy Commissioner Ss 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2020 Hra/Dept Of Social Services Assistant Printing Press Operator 60757.50000 1.215150e+05 402.52 2.012600e+02 201.260 10.75 2 2.012600e+02 402.52 1.219175e+05 1.219175e+05 0.00 NULL
2020 Hra/Dept Of Social Services Assistant Superintendent Of Welfare Shelters 69432.45455 7.637570e+05 93716.05 8.519641e+03 9874.030 1923.25 11 8.519641e+03 93716.05 8.574731e+05 8.574731e+05 0.00 NULL
2020 Hra/Dept Of Social Services Associate Commissioner For Employment Service 155881.00000 1.558810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.558810e+05 1.558810e+05 0.00 NULL
2020 Hra/Dept Of Social Services Associate Contract Specialist 67460.69231 8.769890e+05 975.15 7.501154e+01 0.000 18.00 13 0.000000e+00 0.00 8.779642e+05 8.769890e+05 975.15 NULL
2020 Hra/Dept Of Social Services Associate Fraud Investigator 71391.82875 2.334513e+07 193218.80 5.908832e+02 0.000 3879.75 327 0.000000e+00 0.00 2.353835e+07 2.334513e+07 193218.80 NULL
2020 Hra/Dept Of Social Services Associate Housing Development Specialist 88142.12500 7.051370e+05 28271.56 3.533945e+03 1924.815 629.75 8 1.924815e+03 15398.52 7.334086e+05 7.205355e+05 12873.04 NULL
2020 Hra/Dept Of Social Services Associate Job Opportunity Specialist 64244.47150 6.199592e+07 7789154.30 8.071662e+03 6828.790 168437.50 965 6.828790e+03 6589782.35 6.978507e+07 6.858570e+07 1199371.95 NULL
2020 Hra/Dept Of Social Services Associate Labor Relations Analyst 86864.50000 3.474580e+05 1723.04 4.307600e+02 0.000 37.50 4 0.000000e+00 0.00 3.491810e+05 3.474580e+05 1723.04 NULL
2020 Hra/Dept Of Social Services Associate Staff Analyst 76338.18636 1.679440e+07 75427.98 3.428545e+02 0.000 1500.75 220 0.000000e+00 0.00 1.686983e+07 1.679440e+07 75427.98 NULL
2020 Hra/Dept Of Social Services Asst Commissioner For Public & Legis Affairs 111001.00000 1.110010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.110010e+05 1.110010e+05 0.00 NULL
2020 Hra/Dept Of Social Services Bookkeeper 50558.43307 6.420921e+06 326640.79 2.571975e+03 0.000 8961.75 127 0.000000e+00 0.00 6.747562e+06 6.420921e+06 326640.79 NULL
2020 Hra/Dept Of Social Services Business Promotion Coordinator 84215.00000 1.684300e+05 2433.15 1.216575e+03 1216.575 47.25 2 1.216575e+03 2433.15 1.708631e+05 1.708631e+05 0.00 NULL
2020 Hra/Dept Of Social Services Carpenter NA NA 51863.94 6.482993e+03 6281.415 605.00 8 6.281415e+03 50251.32 NA NA NA NULL
2020 Hra/Dept Of Social Services Caseworker 47873.56997 9.407156e+07 2233350.02 1.136565e+03 0.000 61896.48 1965 0.000000e+00 0.00 9.630492e+07 9.407156e+07 2233350.02 NULL
2020 Hra/Dept Of Social Services Cement Mason NA NA 12420.84 6.210420e+03 6210.420 122.00 2 6.210420e+03 12420.84 NA NA NA NULL
2020 Hra/Dept Of Social Services Certified It Administrator 105635.85000 2.112717e+06 210707.68 1.053538e+04 6155.285 2695.00 20 6.155285e+03 123105.70 2.323425e+06 2.235823e+06 87601.98 NULL
2020 Hra/Dept Of Social Services Certified It Developer 113464.85714 7.942540e+05 83491.74 1.192739e+04 2709.800 997.75 7 2.709800e+03 18968.60 8.777457e+05 8.132226e+05 64523.14 NULL
2020 Hra/Dept Of Social Services City Custodial Assistant 36915.00000 3.691500e+04 79.56 7.956000e+01 79.560 3.00 1 7.956000e+01 79.56 3.699456e+04 3.699456e+04 0.00 NULL
2020 Hra/Dept Of Social Services City Laborer NA NA 77829.92 3.537724e+03 4890.545 1320.50 22 3.537724e+03 77829.92 NA NA NA NULL
2020 Hra/Dept Of Social Services City Research Scientist 89809.54717 4.759906e+06 8347.19 1.574942e+02 0.000 200.75 53 0.000000e+00 0.00 4.768253e+06 4.759906e+06 8347.19 NULL
2020 Hra/Dept Of Social Services Clerical Aide 33722.00000 1.011660e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.011660e+05 1.011660e+05 0.00 NULL
2020 Hra/Dept Of Social Services Clerical Associate 40688.52101 1.578715e+07 1322689.14 3.408993e+03 0.000 41243.75 388 0.000000e+00 0.00 1.710984e+07 1.578715e+07 1322689.14 NULL
2020 Hra/Dept Of Social Services Community Assistant 37344.37778 1.680497e+06 47311.63 1.051370e+03 0.000 1927.50 45 0.000000e+00 0.00 1.727809e+06 1.680497e+06 47311.63 NULL
2020 Hra/Dept Of Social Services Community Associate 34708.58697 1.190505e+07 409324.32 1.193365e+03 0.000 11553.30 343 0.000000e+00 0.00 1.231437e+07 1.190505e+07 409324.32 NULL
2020 Hra/Dept Of Social Services Community Coordinator 63865.30919 2.739822e+07 626680.91 1.460795e+03 0.000 14228.50 429 0.000000e+00 0.00 2.802490e+07 2.739822e+07 626680.91 NULL
2020 Hra/Dept Of Social Services Computer Aide-Non-Spvr 49235.12500 3.938810e+05 605.98 7.574750e+01 0.000 21.00 8 0.000000e+00 0.00 3.944870e+05 3.938810e+05 605.98 NULL
2020 Hra/Dept Of Social Services Computer Associate 71329.25547 9.772108e+06 362077.51 2.642902e+03 0.000 7272.25 137 0.000000e+00 0.00 1.013419e+07 9.772108e+06 362077.51 NULL
2020 Hra/Dept Of Social Services Computer Operations Manager 122360.20000 6.118010e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.118010e+05 6.118010e+05 0.00 NULL
2020 Hra/Dept Of Social Services Computer Programmer Analyst 70820.00000 1.416400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.416400e+05 1.416400e+05 0.00 NULL
2020 Hra/Dept Of Social Services Computer Service Technician 51194.42857 3.583610e+05 17500.07 2.500010e+03 3103.460 502.00 7 2.500010e+03 17500.07 3.758611e+05 3.758611e+05 0.00 NULL
2020 Hra/Dept Of Social Services Computer Specialist 103229.28492 1.847804e+07 1019223.10 5.693984e+03 0.000 13532.50 179 0.000000e+00 0.00 1.949727e+07 1.847804e+07 1019223.10 NULL
2020 Hra/Dept Of Social Services Computer Systems Manager 133273.18605 5.730747e+06 17809.88 4.141833e+02 0.000 204.00 43 0.000000e+00 0.00 5.748557e+06 5.730747e+06 17809.88 NULL
2020 Hra/Dept Of Social Services Confidential Strategy Planner 86062.50000 3.442500e+05 7453.55 1.863388e+03 0.000 178.25 4 0.000000e+00 0.00 3.517035e+05 3.442500e+05 7453.55 NULL
2020 Hra/Dept Of Social Services Construction Project Manager 88349.00000 1.766980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.766980e+05 1.766980e+05 0.00 NULL
2020 Hra/Dept Of Social Services Consultant 73999.07143 1.035987e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.035987e+06 1.035987e+06 0.00 NULL
2020 Hra/Dept Of Social Services Contract Specialist 60758.95000 1.215179e+06 5076.46 2.538230e+02 0.000 133.75 20 0.000000e+00 0.00 1.220255e+06 1.215179e+06 5076.46 NULL
2020 Hra/Dept Of Social Services Custodian 50434.57143 3.530420e+06 581657.87 8.309398e+03 9480.080 16589.50 70 8.309398e+03 581657.87 4.112078e+06 4.112078e+06 0.00 NULL
2020 Hra/Dept Of Social Services Deputy Commisioner 108150.00000 1.081500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081500e+05 1.081500e+05 0.00 NULL
2020 Hra/Dept Of Social Services Deputy Commissioner 213869.00000 4.277380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.277380e+05 4.277380e+05 0.00 NULL
2020 Hra/Dept Of Social Services Deputy Commissioner Of It 154500.00000 1.545000e+05 5943.72 5.943720e+03 5943.720 80.50 1 5.943720e+03 5943.72 1.604437e+05 1.604437e+05 0.00 NULL
2020 Hra/Dept Of Social Services Deputy Director Of Administration 109338.83333 6.560330e+05 146.95 2.449167e+01 0.000 0.00 6 0.000000e+00 0.00 6.561799e+05 6.560330e+05 146.95 NULL
2020 Hra/Dept Of Social Services Deputy Director Of Security 96576.00000 1.931520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.931520e+05 1.931520e+05 0.00 NULL
2020 Hra/Dept Of Social Services Deputy General Counsel 98693.33333 2.960800e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.960800e+05 2.960800e+05 0.00 NULL
2020 Hra/Dept Of Social Services Dir Of Contract Mgmt & Intergovernmental Relations 97850.00000 9.785000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.785000e+04 9.785000e+04 0.00 NULL
2020 Hra/Dept Of Social Services Dir Policy Econom Resrch 80204.00000 8.020400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.020400e+04 8.020400e+04 0.00 NULL
2020 Hra/Dept Of Social Services Director Of Eeo 114173.00000 1.141730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.141730e+05 1.141730e+05 0.00 NULL
2020 Hra/Dept Of Social Services Director Of Eeo/Contract Compliance 139467.00000 1.394670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.394670e+05 1.394670e+05 0.00 NULL
2020 Hra/Dept Of Social Services Director Of Fiscal Operations 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2020 Hra/Dept Of Social Services Director Of Food Stamp Program 156000.00000 1.560000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.560000e+05 1.560000e+05 0.00 NULL
2020 Hra/Dept Of Social Services Director Of Information Services 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2020 Hra/Dept Of Social Services Director Of Legislative Coordination 122906.00000 1.229060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.229060e+05 1.229060e+05 0.00 NULL
2020 Hra/Dept Of Social Services Director Of Management Planning Ss 139652.00000 1.396520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.396520e+05 1.396520e+05 0.00 NULL
2020 Hra/Dept Of Social Services Electrical Engineer 89942.00000 8.994200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.994200e+04 8.994200e+04 0.00 NULL
2020 Hra/Dept Of Social Services Electrician NA NA 7789.42 1.112774e+03 0.000 102.50 7 0.000000e+00 0.00 NA NA NA NULL
2020 Hra/Dept Of Social Services Electrician’s Helper NA NA 3466.94 4.333675e+02 0.000 61.00 8 0.000000e+00 0.00 NA NA NA NULL
2020 Hra/Dept Of Social Services Eligibility Specialist 43712.73312 6.797330e+07 8968523.81 5.767539e+03 2885.120 266483.82 1555 2.885120e+03 4486361.60 7.694182e+07 7.245966e+07 4482162.21 NULL
2020 Hra/Dept Of Social Services Exec Asst To The Deputy Commissioner 88648.00000 8.864800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.864800e+04 8.864800e+04 0.00 NULL
2020 Hra/Dept Of Social Services Executive Agency Counsel 133055.09677 4.124708e+06 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 4.124708e+06 4.124708e+06 0.00 NULL
2020 Hra/Dept Of Social Services Executive Assistant To The Commissioner Of Community Develop 186923.00000 1.869230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.869230e+05 1.869230e+05 0.00 NULL
2020 Hra/Dept Of Social Services Executive Assistant To The Executive Deputy Adm 92700.00000 9.270000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.270000e+04 9.270000e+04 0.00 NULL
2020 Hra/Dept Of Social Services Executive Asst-Domestic Violence-Hra 63332.00000 5.699880e+05 67.46 7.495556e+00 0.000 2.00 9 0.000000e+00 0.00 5.700555e+05 5.699880e+05 67.46 NULL
2020 Hra/Dept Of Social Services Executive Deputy Administrator 215851.00000 6.475530e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.475530e+05 6.475530e+05 0.00 NULL
2020 Hra/Dept Of Social Services Executive Program Specialist 215832.00000 2.158320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.158320e+05 2.158320e+05 0.00 NULL
2020 Hra/Dept Of Social Services Fraud Investigator 56363.84899 3.060557e+07 287143.49 5.288094e+02 0.000 7058.00 543 0.000000e+00 0.00 3.089271e+07 3.060557e+07 287143.49 NULL
2020 Hra/Dept Of Social Services General Counsel 215857.00000 2.158570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.158570e+05 2.158570e+05 0.00 NULL
2020 Hra/Dept Of Social Services Graphic Artist 57761.36364 6.353750e+05 2996.60 2.724182e+02 0.000 71.75 11 0.000000e+00 0.00 6.383716e+05 6.353750e+05 2996.60 NULL
2020 Hra/Dept Of Social Services Head Nurse 81603.71429 1.142452e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.142452e+06 1.142452e+06 0.00 NULL
2020 Hra/Dept Of Social Services Human Resources Technician 36871.00000 3.687100e+04 120.12 1.201200e+02 120.120 6.00 1 1.201200e+02 120.12 3.699112e+04 3.699112e+04 0.00 NULL
2020 Hra/Dept Of Social Services Institutional Aide 40098.50000 8.019700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.019700e+04 8.019700e+04 0.00 NULL
2020 Hra/Dept Of Social Services Investigator 64032.08333 7.683850e+05 19362.87 1.613572e+03 199.860 444.75 12 1.998600e+02 2398.32 7.877479e+05 7.707833e+05 16964.55 NULL
2020 Hra/Dept Of Social Services It Project Specialist 109147.94545 6.003137e+06 48050.82 8.736513e+02 0.000 673.25 55 0.000000e+00 0.00 6.051188e+06 6.003137e+06 48050.82 NULL
2020 Hra/Dept Of Social Services Job Opportunity Specialist 48251.52705 7.956677e+07 11754189.05 7.128071e+03 3837.690 325602.81 1649 3.837690e+03 6328350.81 9.132096e+07 8.589512e+07 5425838.24 NULL
2020 Hra/Dept Of Social Services Locksmith NA NA 3633.24 9.083100e+02 908.310 87.00 4 9.083100e+02 3633.24 NA NA NA NULL
2020 Hra/Dept Of Social Services Management Auditor 68625.21053 3.911637e+06 44.60 7.824561e-01 0.000 1.00 57 0.000000e+00 0.00 3.911682e+06 3.911637e+06 44.60 NULL
2020 Hra/Dept Of Social Services Mechanical Engineer 98354.00000 9.835400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.835400e+04 9.835400e+04 0.00 NULL
2020 Hra/Dept Of Social Services Medical Specialist 17425.37500 1.742538e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.742538e+04 1.742538e+04 0.00 NULL
2020 Hra/Dept Of Social Services Motor Vehicle Operator 46416.11111 4.177450e+05 39466.46 4.385162e+03 4737.130 1117.84 9 4.385162e+03 39466.46 4.572115e+05 4.572115e+05 0.00 NULL
2020 Hra/Dept Of Social Services Motor Vehicle Supervisor 59879.14286 4.191540e+05 69073.88 9.867697e+03 2895.390 1441.75 7 2.895390e+03 20267.73 4.882279e+05 4.394217e+05 48806.15 NULL
2020 Hra/Dept Of Social Services Office Machine Aide 36351.25000 4.362150e+05 49601.45 4.133454e+03 0.000 1672.50 12 0.000000e+00 0.00 4.858165e+05 4.362150e+05 49601.45 NULL
2020 Hra/Dept Of Social Services Oiler NA NA 54610.05 1.820335e+04 26302.670 585.00 3 1.820335e+04 54610.05 NA NA NA NULL
2020 Hra/Dept Of Social Services Paralegal Aide 47625.75000 7.620120e+05 21582.89 1.348931e+03 0.000 494.25 16 0.000000e+00 0.00 7.835949e+05 7.620120e+05 21582.89 NULL
2020 Hra/Dept Of Social Services Plumber NA NA 29113.70 1.455685e+04 14556.850 275.75 2 1.455685e+04 29113.70 NA NA NA NULL
2020 Hra/Dept Of Social Services Principal Administrative Associate - Non Supvr 57357.14300 1.183278e+08 8038970.55 3.896738e+03 205.730 190183.63 2063 2.057300e+02 424420.99 1.263668e+08 1.187522e+08 7614549.56 NULL
2020 Hra/Dept Of Social Services Printing Press Operator NA NA 1569.39 7.846950e+02 784.695 29.50 2 7.846950e+02 1569.39 NA NA NA NULL
2020 Hra/Dept Of Social Services Procurement Analyst 65290.42857 1.828132e+06 28145.42 1.005194e+03 0.000 544.50 28 0.000000e+00 0.00 1.856277e+06 1.828132e+06 28145.42 NULL
2020 Hra/Dept Of Social Services Psychiatrist 128897.42375 5.155897e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.155897e+05 5.155897e+05 0.00 NULL
2020 Hra/Dept Of Social Services Public Health Educator 61004.94545 3.355272e+06 145656.23 2.648295e+03 611.560 3496.50 55 6.115600e+02 33635.80 3.500928e+06 3.388908e+06 112020.43 NULL
2020 Hra/Dept Of Social Services Real Property Manager 67289.00000 1.345780e+05 452.20 2.261000e+02 226.100 10.00 2 2.261000e+02 452.20 1.350302e+05 1.350302e+05 0.00 NULL
2020 Hra/Dept Of Social Services Research Assistant 60479.00000 2.419160e+05 2480.56 6.201400e+02 620.140 49.00 4 6.201400e+02 2480.56 2.443966e+05 2.443966e+05 0.00 NULL
2020 Hra/Dept Of Social Services Secretary 43027.56000 1.075689e+06 166389.97 6.655599e+03 6717.390 5213.50 25 6.655599e+03 166389.97 1.242079e+06 1.242079e+06 0.00 NULL
2020 Hra/Dept Of Social Services Secretary Of Comm 64719.00000 6.471900e+04 72.74 7.274000e+01 72.740 2.00 1 7.274000e+01 72.74 6.479174e+04 6.479174e+04 0.00 NULL
2020 Hra/Dept Of Social Services Secretary To One Deputy Commissioner 92839.00000 9.283900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.283900e+04 9.283900e+04 0.00 NULL
2020 Hra/Dept Of Social Services Secretary To The Commissioner 93750.00000 9.375000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.375000e+04 9.375000e+04 0.00 NULL
2020 Hra/Dept Of Social Services Secretary To The Human Resources Administrator 85939.00000 1.718780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.718780e+05 1.718780e+05 0.00 NULL
2020 Hra/Dept Of Social Services Senior Consultant 79838.12500 1.277410e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.277410e+06 1.277410e+06 0.00 NULL
2020 Hra/Dept Of Social Services Senior It Architect 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2020 Hra/Dept Of Social Services Senior Stationary Engineer NA NA 14330.40 7.165200e+03 7165.200 119.00 2 7.165200e+03 14330.40 NA NA NA NULL
2020 Hra/Dept Of Social Services Sheet Metal Worker NA NA 48.60 4.860000e+01 48.600 0.00 1 4.860000e+01 48.60 NA NA NA NULL
2020 Hra/Dept Of Social Services Social Worker 58944.00000 6.012288e+06 73693.80 7.224882e+02 0.000 1721.75 102 0.000000e+00 0.00 6.085982e+06 6.012288e+06 73693.80 NULL
2020 Hra/Dept Of Social Services Space Analyst 75182.54545 1.654016e+06 9857.98 4.480900e+02 0.000 246.25 22 0.000000e+00 0.00 1.663874e+06 1.654016e+06 9857.98 NULL
2020 Hra/Dept Of Social Services Special Assistant To The Human Resources Administrator 92226.00000 1.844520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.844520e+05 1.844520e+05 0.00 NULL
2020 Hra/Dept Of Social Services Special Officer 43504.01099 3.958865e+06 204006.17 2.241826e+03 355.350 5722.00 91 3.553500e+02 32336.85 4.162871e+06 3.991202e+06 171669.32 NULL
2020 Hra/Dept Of Social Services Staff Analyst 66391.85039 1.686353e+07 266213.69 1.048085e+03 0.000 5887.25 254 0.000000e+00 0.00 1.712974e+07 1.686353e+07 266213.69 NULL
2020 Hra/Dept Of Social Services Staff Nurse 80282.40000 2.007060e+06 410.56 1.642240e+01 0.000 7.00 25 0.000000e+00 0.00 2.007471e+06 2.007060e+06 410.56 NULL
2020 Hra/Dept Of Social Services Stationary Engineer NA NA 35486.78 1.774339e+04 17743.390 358.00 2 1.774339e+04 35486.78 NA NA NA NULL
2020 Hra/Dept Of Social Services Stock Worker 41500.16667 2.490010e+05 9999.02 1.666503e+03 238.860 331.50 6 2.388600e+02 1433.16 2.590000e+05 2.504342e+05 8565.86 NULL
2020 Hra/Dept Of Social Services Strategic Initiative Specialist 97358.25000 3.894330e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.894330e+05 3.894330e+05 0.00 NULL
2020 Hra/Dept Of Social Services Summer College Intern 4287.42222 7.717360e+04 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 7.717360e+04 7.717360e+04 0.00 NULL
2020 Hra/Dept Of Social Services Summer Graduate Intern 6698.55328 2.679421e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.679421e+04 2.679421e+04 0.00 NULL
2020 Hra/Dept Of Social Services Superintendent Of Adult Institutions 91591.00000 1.831820e+05 271.60 1.358000e+02 135.800 5.50 2 1.358000e+02 271.60 1.834536e+05 1.834536e+05 0.00 NULL
2020 Hra/Dept Of Social Services Supervising Bookbinder 63485.00000 6.348500e+04 1268.32 1.268320e+03 1268.320 27.25 1 1.268320e+03 1268.32 6.475332e+04 6.475332e+04 0.00 NULL
2020 Hra/Dept Of Social Services Supervising Computer Service Technician 79408.50000 3.176340e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.176340e+05 3.176340e+05 0.00 NULL
2020 Hra/Dept Of Social Services Supervising Special Officer 58855.73529 4.002190e+06 284901.75 4.189732e+03 1394.490 6899.50 68 1.394490e+03 94825.32 4.287092e+06 4.097015e+06 190076.43 NULL
2020 Hra/Dept Of Social Services Supervisor Electrician NA NA 5614.44 2.807220e+03 2807.220 58.25 2 2.807220e+03 5614.44 NA NA NA NULL
2020 Hra/Dept Of Social Services Supervisor I 59160.42826 2.679967e+07 962832.54 2.125458e+03 0.000 22565.00 453 0.000000e+00 0.00 2.776251e+07 2.679967e+07 962832.54 NULL
2020 Hra/Dept Of Social Services Supervisor I Social Work 65691.46341 2.693350e+06 28934.28 7.057141e+02 0.000 619.25 41 0.000000e+00 0.00 2.722284e+06 2.693350e+06 28934.28 NULL
2020 Hra/Dept Of Social Services Supervisor Ii 69301.34529 1.545420e+07 347804.95 1.559663e+03 0.000 7336.00 223 0.000000e+00 0.00 1.580200e+07 1.545420e+07 347804.95 NULL
2020 Hra/Dept Of Social Services Supervisor Ii Social Work 75978.60000 3.798930e+05 5539.27 1.107854e+03 0.000 87.50 5 0.000000e+00 0.00 3.854323e+05 3.798930e+05 5539.27 NULL
2020 Hra/Dept Of Social Services Supervisor Iii 76635.66000 3.831783e+06 45792.16 9.158432e+02 0.000 896.50 50 0.000000e+00 0.00 3.877575e+06 3.831783e+06 45792.16 NULL
2020 Hra/Dept Of Social Services Supervisor Iii Social Work 83548.62500 6.683890e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.683890e+05 6.683890e+05 0.00 NULL
2020 Hra/Dept Of Social Services Supervisor Of Electrical Installations & Maintenance 78105.00000 7.810500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.810500e+04 7.810500e+04 0.00 NULL
2020 Hra/Dept Of Social Services Supervisor Of Nurses 110367.00000 1.103670e+06 169.86 1.698600e+01 0.000 2.00 10 0.000000e+00 0.00 1.103840e+06 1.103670e+06 169.86 NULL
2020 Hra/Dept Of Social Services Supervisor Of Office Machine Operations 44167.42857 9.275160e+05 191317.24 9.110345e+03 6852.550 5768.75 21 6.852550e+03 143903.55 1.118833e+06 1.071420e+06 47413.69 NULL
2020 Hra/Dept Of Social Services Supervisor Of Stock Workers 52765.85714 3.693610e+05 20471.13 2.924447e+03 0.000 492.50 7 0.000000e+00 0.00 3.898321e+05 3.693610e+05 20471.13 NULL
2020 Hra/Dept Of Social Services Supervisor Plumber NA NA 83626.24 4.181312e+04 41813.120 759.00 2 4.181312e+04 83626.24 NA NA NA NULL
2020 Hra/Dept Of Social Services Telecommunications Associate 74146.25000 5.931700e+05 22113.86 2.764233e+03 2507.945 455.00 8 2.507945e+03 20063.56 6.152839e+05 6.132336e+05 2050.30 NULL
2020 Hra/Dept Of Social Services Telecommunications Manager 102623.00000 1.026230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.026230e+05 1.026230e+05 0.00 NULL
2020 Human Rights Commission *Attorney At Law 88818.50000 1.776370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.776370e+05 1.776370e+05 0.00 NULL
2020 Human Rights Commission Adm Manager-Non-Mgrl 79000.00000 7.900000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.900000e+04 7.900000e+04 0.00 NULL
2020 Human Rights Commission Administrative Business Promotion Coordinator 133900.00000 1.339000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339000e+05 1.339000e+05 0.00 NULL
2020 Human Rights Commission Agency Attorney 72593.98246 4.137857e+06 0.00 0.000000e+00 0.000 0.00 57 0.000000e+00 0.00 4.137857e+06 4.137857e+06 0.00 NULL
2020 Human Rights Commission Agency Attorney Interne 61415.00000 1.228300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.228300e+05 1.228300e+05 0.00 NULL
2020 Human Rights Commission Associate Human Rights Specialist 67842.79310 1.967441e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 1.967441e+06 1.967441e+06 0.00 NULL
2020 Human Rights Commission Chairman Commission On Human Rights 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2020 Human Rights Commission College Aide 1325.25000 1.325250e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.325250e+03 1.325250e+03 0.00 NULL
2020 Human Rights Commission Community Assistant 12754.33050 8.928031e+04 7.15 1.021429e+00 0.000 0.78 7 0.000000e+00 0.00 8.928746e+04 8.928031e+04 7.15 NULL
2020 Human Rights Commission Community Associate 46940.50000 9.388100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.388100e+04 9.388100e+04 0.00 NULL
2020 Human Rights Commission Community Coordinator 66080.08333 7.929610e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.929610e+05 7.929610e+05 0.00 NULL
2020 Human Rights Commission Computer Associate 76587.00000 7.658700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.658700e+04 7.658700e+04 0.00 NULL
2020 Human Rights Commission Computer Operations Manager 119903.66667 3.597110e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.597110e+05 3.597110e+05 0.00 NULL
2020 Human Rights Commission Counsel 165155.00000 1.651550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.651550e+05 1.651550e+05 0.00 NULL
2020 Human Rights Commission Dep Commissioner For Community Relations 182525.00000 3.650500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.650500e+05 3.650500e+05 0.00 NULL
2020 Human Rights Commission Deputy Commissioner For Law Enforcement 157590.00000 1.575900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.575900e+05 1.575900e+05 0.00 NULL
2020 Human Rights Commission Deputy Executive Director 92873.66667 2.786210e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.786210e+05 2.786210e+05 0.00 NULL
2020 Human Rights Commission Executive Agency Counsel 107052.95000 2.141059e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 2.141059e+06 2.141059e+06 0.00 NULL
2020 Human Rights Commission Executive Director 114940.14286 8.045810e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.045810e+05 8.045810e+05 0.00 NULL
2020 Human Rights Commission Graphic Artist 68647.00000 6.864700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.864700e+04 6.864700e+04 0.00 NULL
2020 Human Rights Commission Human Rights Specialist 55915.31250 8.946450e+05 189.39 1.183687e+01 0.000 3.50 16 0.000000e+00 0.00 8.948344e+05 8.946450e+05 189.39 NULL
2020 Human Rights Commission Principal Administrative Associate - Non Supvr 65867.00000 1.976010e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.976010e+05 1.976010e+05 0.00 NULL
2020 Human Rights Commission Prinicipal Human Rights Specialist 82990.40000 4.149520e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.149520e+05 4.149520e+05 0.00 NULL
2020 Human Rights Commission Secretary 49169.00000 4.916900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.916900e+04 4.916900e+04 0.00 NULL
2020 Human Rights Commission Secretary To The Chairperson 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2020 Hunter College High School Administrator 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2020 Hunter College High School Assistant Principal 113303.66667 1.359644e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.359644e+06 1.359644e+06 0.00 NULL
2020 Hunter College High School Assistant Principal Admin 130144.50000 5.205780e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.205780e+05 5.205780e+05 0.00 NULL
2020 Hunter College High School Assistant Teacher 29632.90909 6.519240e+05 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 6.519240e+05 6.519240e+05 0.00 NULL
2020 Hunter College High School Assistant To Heo 70699.50000 1.413990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.413990e+05 1.413990e+05 0.00 NULL
2020 Hunter College High School Business Data And Reporting Analyst 55608.00000 1.112160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.112160e+05 1.112160e+05 0.00 NULL
2020 Hunter College High School Coach NA NA 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 NA NA NA NULL
2020 Hunter College High School College Accountant 51740.00000 5.174000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.174000e+04 5.174000e+04 0.00 NULL
2020 Hunter College High School College Assistant 8218.08633 2.876330e+05 694.71 1.984886e+01 0.000 29.75 35 0.000000e+00 0.00 2.883277e+05 2.876330e+05 694.71 NULL
2020 Hunter College High School Computer Systems Manager 99471.00000 9.947100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.947100e+04 9.947100e+04 0.00 NULL
2020 Hunter College High School Cuny Administrator Assistant 54691.00000 4.375280e+05 1997.97 2.497463e+02 0.000 51.50 8 0.000000e+00 0.00 4.395260e+05 4.375280e+05 1997.97 NULL
2020 Hunter College High School Cuny Custodial Assistant 35860.00000 1.075800e+05 5963.42 1.987807e+03 2047.690 196.25 3 1.987807e+03 5963.42 1.135434e+05 1.135434e+05 0.00 NULL
2020 Hunter College High School Cuny Office Assistant 37593.66667 3.383430e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 3.383430e+05 3.383430e+05 0.00 NULL
2020 Hunter College High School Education & Vocat Counselor 98440.20000 4.922010e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.922010e+05 4.922010e+05 0.00 NULL
2020 Hunter College High School Hccs Sr College Lab Tech 69465.33333 2.083960e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.083960e+05 2.083960e+05 0.00 NULL
2020 Hunter College High School High School Elem Counselor 99934.00000 9.993400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.993400e+04 9.993400e+04 0.00 NULL
2020 Hunter College High School Higher Education Assistant 81647.00000 8.164700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.164700e+04 8.164700e+04 0.00 NULL
2020 Hunter College High School Higher Education Associate 108760.66667 3.262820e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.262820e+05 3.262820e+05 0.00 NULL
2020 Hunter College High School Higher Education Officer 113074.00000 1.130740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.130740e+05 1.130740e+05 0.00 NULL
2020 Hunter College High School It Assistant 55608.00000 5.560800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.560800e+04 5.560800e+04 0.00 NULL
2020 Hunter College High School It Associate 75162.00000 1.503240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.503240e+05 1.503240e+05 0.00 NULL
2020 Hunter College High School It Senior Associate 91298.00000 1.825960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.825960e+05 1.825960e+05 0.00 NULL
2020 Hunter College High School It Support Assistant 15266.04250 3.053208e+04 91.33 4.566500e+01 45.665 0.00 2 4.566500e+01 91.33 3.062342e+04 3.062342e+04 0.00 NULL
2020 Hunter College High School Oiler NA NA 17579.78 1.757978e+04 17579.780 205.00 1 1.757978e+04 17579.78 NA NA NA NULL
2020 Hunter College High School Principal 157926.00000 3.158520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.158520e+05 3.158520e+05 0.00 NULL
2020 Hunter College High School Substitute Teacher 30253.33545 2.662294e+06 0.00 0.000000e+00 0.000 0.00 88 0.000000e+00 0.00 2.662294e+06 2.662294e+06 0.00 NULL
2020 Hunter College High School Teacher NA NA 0.00 0.000000e+00 0.000 0.00 103 0.000000e+00 0.00 NA NA NA NULL
2020 Hunter College High School Teacher Of Library 86023.00000 8.602300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.602300e+04 8.602300e+04 0.00 NULL
2020 Independent Budget Office Agency Chief Contracting Officer 126137.00000 1.261370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.261370e+05 1.261370e+05 0.00 NULL
2020 Independent Budget Office Assistant Budget Analyst 71072.00000 1.421440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.421440e+05 1.421440e+05 0.00 NULL
2020 Independent Budget Office Budget Analyst 100970.14606 3.332015e+06 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 3.332015e+06 3.332015e+06 0.00 NULL
2020 Independent Budget Office Director Of Independent Budget Office 218774.00000 2.187740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.187740e+05 2.187740e+05 0.00 NULL
2020 Independent Budget Office Executive Agency Counsel 111428.74040 1.114287e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.114287e+05 1.114287e+05 0.00 NULL
2020 Independent Budget Office Principal Administrative Associate - Non Supvr 86127.00000 8.612700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.612700e+04 8.612700e+04 0.00 NULL
2020 Landmarks Preservation Comm *Attorney At Law 91563.00000 9.156300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.156300e+04 9.156300e+04 0.00 NULL
2020 Landmarks Preservation Comm Admin Landmarks Preservationist 80340.00000 8.034000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.034000e+04 8.034000e+04 0.00 NULL
2020 Landmarks Preservation Comm Administrative Landmarks Preservationist 98160.20417 8.834418e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.834418e+05 8.834418e+05 0.00 NULL
2020 Landmarks Preservation Comm Administrative Public Information Specialist 92814.00000 9.281400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.281400e+04 9.281400e+04 0.00 NULL
2020 Landmarks Preservation Comm Administrative Staff Analyst 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2020 Landmarks Preservation Comm Associate Landmarks Preservationist 84471.00000 8.447100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.447100e+04 8.447100e+04 0.00 NULL
2020 Landmarks Preservation Comm Associate Staff Analyst 90830.00000 9.083000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.083000e+04 9.083000e+04 0.00 NULL
2020 Landmarks Preservation Comm Chair-Landmarks Preservation Commission 223319.00000 2.233190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.233190e+05 2.233190e+05 0.00 NULL
2020 Landmarks Preservation Comm Chauffeur-Attendant 42527.50000 8.505500e+04 2003.24 1.001620e+03 1001.620 78.50 2 1.001620e+03 2003.24 8.705824e+04 8.705824e+04 0.00 NULL
2020 Landmarks Preservation Comm Community Assistant 8894.33500 8.894335e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.894335e+03 8.894335e+03 0.00 NULL
2020 Landmarks Preservation Comm Community Associate 46770.33929 3.273924e+05 348.75 4.982143e+01 0.000 11.25 7 0.000000e+00 0.00 3.277411e+05 3.273924e+05 348.75 NULL
2020 Landmarks Preservation Comm Community Coordinator 62423.50000 1.248470e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.248470e+05 1.248470e+05 0.00 NULL
2020 Landmarks Preservation Comm Computer Systems Manager 128120.00000 1.281200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.281200e+05 1.281200e+05 0.00 NULL
2020 Landmarks Preservation Comm Counsel 162018.00000 1.620180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.620180e+05 1.620180e+05 0.00 NULL
2020 Landmarks Preservation Comm Director Of Public Relations 88830.50000 1.776610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.776610e+05 1.776610e+05 0.00 NULL
2020 Landmarks Preservation Comm Director Of Urban Archaeology 97291.00000 9.729100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.729100e+04 9.729100e+04 0.00 NULL
2020 Landmarks Preservation Comm Executive Director 173000.00000 1.730000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.730000e+05 1.730000e+05 0.00 NULL
2020 Landmarks Preservation Comm Executive Program Specialist 133900.00000 1.339000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339000e+05 1.339000e+05 0.00 NULL
2020 Landmarks Preservation Comm Landmarks Preservationist 64873.12693 2.919291e+06 3347.08 7.437956e+01 0.000 83.25 45 0.000000e+00 0.00 2.922638e+06 2.919291e+06 3347.08 NULL
2020 Landmarks Preservation Comm Legal Secretarial Assistant 46302.00000 4.630200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.630200e+04 4.630200e+04 0.00 NULL
2020 Landmarks Preservation Comm Principal Administrative Associate - Non Supvr 66962.00000 6.696200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.696200e+04 6.696200e+04 0.00 NULL
2020 Landmarks Preservation Comm Procurement Analyst 61350.00000 6.135000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.135000e+04 6.135000e+04 0.00 NULL
2020 Landmarks Preservation Comm Secretary To The Chair, Landmarks Preservation Commission 70310.00000 7.031000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.031000e+04 7.031000e+04 0.00 NULL
2020 Landmarks Preservation Comm Secretary To The Executive Director 51564.00000 5.156400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.156400e+04 5.156400e+04 0.00 NULL
2020 Landmarks Preservation Comm Staff Analyst Trainee 51564.00000 5.156400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.156400e+04 5.156400e+04 0.00 NULL
2020 Landmarks Preservation Comm Urban Archeologist 42115.77083 1.263473e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.263473e+05 1.263473e+05 0.00 NULL
2020 Law Department *Attorney At Law 83125.00000 8.312500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.312500e+04 8.312500e+04 0.00 NULL
2020 Law Department Accountant 87134.00000 8.713400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.713400e+04 8.713400e+04 0.00 NULL
2020 Law Department Administrative Accountant 128486.00000 2.569720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.569720e+05 2.569720e+05 0.00 NULL
2020 Law Department Administrative Procurement Analyst 90411.50000 1.808230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.808230e+05 1.808230e+05 0.00 NULL
2020 Law Department Administrative Public Information Specialist 149435.66667 4.483070e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.483070e+05 4.483070e+05 0.00 NULL
2020 Law Department Administrative Staff Analyst 117609.13333 1.764137e+06 20718.39 1.381226e+03 0.000 254.25 15 0.000000e+00 0.00 1.784855e+06 1.764137e+06 20718.39 NULL
2020 Law Department Appraiser 96000.00000 9.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.600000e+04 9.600000e+04 0.00 NULL
2020 Law Department Assistant Corporation Counsel 110777.93750 1.206372e+08 0.00 0.000000e+00 0.000 0.00 1089 0.000000e+00 0.00 1.206372e+08 1.206372e+08 0.00 NULL
2020 Law Department Associate Quality Assurance Specialist 75931.75000 6.074540e+05 50774.62 6.346828e+03 5688.565 1007.50 8 5.688565e+03 45508.52 6.582286e+05 6.529625e+05 5266.10 NULL
2020 Law Department Associate Staff Analyst 77235.81774 6.178865e+05 11497.45 1.437181e+03 303.945 234.50 8 3.039450e+02 2431.56 6.293840e+05 6.203181e+05 9065.89 NULL
2020 Law Department Bookkeeper 51500.27273 5.665030e+05 55833.52 5.075775e+03 576.100 1253.25 11 5.761000e+02 6337.10 6.223365e+05 5.728401e+05 49496.42 NULL
2020 Law Department Certified It Administrator 118398.60000 5.919930e+05 7845.08 1.569016e+03 460.590 118.50 5 4.605900e+02 2302.95 5.998381e+05 5.942959e+05 5542.13 NULL
2020 Law Department Certified It Developer 93219.00000 1.864380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.864380e+05 1.864380e+05 0.00 NULL
2020 Law Department City Assessor 93697.66667 2.810930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.810930e+05 2.810930e+05 0.00 NULL
2020 Law Department City Custodial Assistant 35006.00000 7.001200e+04 6258.52 3.129260e+03 3129.260 202.75 2 3.129260e+03 6258.52 7.627052e+04 7.627052e+04 0.00 NULL
2020 Law Department Claim Specialist 50733.83019 5.377786e+06 277592.76 2.618800e+03 134.670 7457.50 106 1.346700e+02 14275.02 5.655379e+06 5.392061e+06 263317.74 NULL
2020 Law Department Clerical Associate 34461.70162 9.166813e+06 300262.37 1.128806e+03 0.000 9441.25 266 0.000000e+00 0.00 9.467075e+06 9.166813e+06 300262.37 NULL
2020 Law Department College Aide 6707.35465 2.414648e+05 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 2.414648e+05 2.414648e+05 0.00 NULL
2020 Law Department College Aide - Assignment Levels Ii And Iii 12844.03500 1.284403e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.284403e+04 1.284403e+04 0.00 NULL
2020 Law Department Community Associate 49834.50000 9.966900e+04 325.57 1.627850e+02 162.785 15.75 2 1.627850e+02 325.57 9.999457e+04 9.999457e+04 0.00 NULL
2020 Law Department Community Coordinator 59090.00000 2.304510e+06 20325.22 5.211595e+02 101.350 579.50 39 1.013500e+02 3952.65 2.324835e+06 2.308463e+06 16372.57 NULL
2020 Law Department Computer Aide-Non-Spvr 37223.89890 3.350151e+05 13461.14 1.495682e+03 134.580 413.25 9 1.345800e+02 1211.22 3.484762e+05 3.362263e+05 12249.92 NULL
2020 Law Department Computer Associate 77491.94897 1.472347e+06 36002.65 1.894876e+03 56.200 703.25 19 5.620000e+01 1067.80 1.508350e+06 1.473415e+06 34934.85 NULL
2020 Law Department Computer Operations Manager 115450.00000 1.154500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.154500e+05 1.154500e+05 0.00 NULL
2020 Law Department Computer Programmer Analyst 57202.00000 5.720200e+04 358.26 3.582600e+02 358.260 10.00 1 3.582600e+02 358.26 5.756026e+04 5.756026e+04 0.00 NULL
2020 Law Department Computer Service Technician 53066.67500 1.061334e+05 6599.88 3.299940e+03 3299.940 191.00 2 3.299940e+03 6599.88 1.127332e+05 1.127332e+05 0.00 NULL
2020 Law Department Computer Specialist 102010.58333 1.224127e+06 40244.81 3.353734e+03 1308.190 605.75 12 1.308190e+03 15698.28 1.264372e+06 1.239825e+06 24546.53 NULL
2020 Law Department Computer Systems Manager 156481.00000 9.388860e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.388860e+05 9.388860e+05 0.00 NULL
2020 Law Department Corporation Counsel 239629.50000 4.792590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.792590e+05 4.792590e+05 0.00 NULL
2020 Law Department Custodian 47725.45455 5.249800e+05 45073.60 4.097600e+03 4546.360 1309.75 11 4.097600e+03 45073.60 5.700536e+05 5.700536e+05 0.00 NULL
2020 Law Department Customer Information Representative Ma L 1549 59549.42857 4.168460e+05 25766.95 3.680993e+03 1540.780 618.50 7 1.540780e+03 10785.46 4.426130e+05 4.276315e+05 14981.49 NULL
2020 Law Department Department Librarian 41776.64993 1.253299e+05 1517.51 5.058367e+02 0.000 42.50 3 0.000000e+00 0.00 1.268475e+05 1.253299e+05 1517.51 NULL
2020 Law Department Deputy Director Of Admin Worker’s Comp Benefits 105593.00000 2.111860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.111860e+05 2.111860e+05 0.00 NULL
2020 Law Department Deputy Operation Support Manager 143532.00000 2.870640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.870640e+05 2.870640e+05 0.00 NULL
2020 Law Department Dir Of Administration, Worker’s Comp Benefits 143841.00000 1.438410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.438410e+05 1.438410e+05 0.00 NULL
2020 Law Department Executive Agency Counsel 216517.00000 4.330340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.330340e+05 4.330340e+05 0.00 NULL
2020 Law Department First Assistant Corporation Counsel 243272.00000 2.432720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.432720e+05 2.432720e+05 0.00 NULL
2020 Law Department Graphic Artist 52433.00000 5.243300e+04 3047.02 3.047020e+03 3047.020 93.00 1 3.047020e+03 3047.02 5.548002e+04 5.548002e+04 0.00 NULL
2020 Law Department It Security Specialist 139652.00000 1.396520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.396520e+05 1.396520e+05 0.00 NULL
2020 Law Department Legal Secretarial Assistant 54726.67096 1.860707e+06 87269.10 2.566738e+03 98.470 2094.25 34 9.847000e+01 3347.98 1.947976e+06 1.864055e+06 83921.12 NULL
2020 Law Department Legal Secretarial Assistant - Al 1 Only 44325.00000 1.329750e+05 1064.70 3.549000e+02 39.150 34.50 3 3.915000e+01 117.45 1.340397e+05 1.330925e+05 947.25 NULL
2020 Law Department Management Auditor 82437.00000 8.243700e+04 425.59 4.255900e+02 425.590 6.00 1 4.255900e+02 425.59 8.286259e+04 8.286259e+04 0.00 NULL
2020 Law Department Medicolegal Analyst 76022.00000 1.520440e+05 13881.11 6.940555e+03 6940.555 289.75 2 6.940555e+03 13881.11 1.659251e+05 1.659251e+05 0.00 NULL
2020 Law Department Motor Vehicle Operator 32268.23011 2.904141e+05 5702.89 6.336544e+02 0.000 165.75 9 0.000000e+00 0.00 2.961170e+05 2.904141e+05 5702.89 NULL
2020 Law Department Paralegal Aide 48797.64791 1.410252e+07 389711.84 1.348484e+03 0.000 10848.25 289 0.000000e+00 0.00 1.449223e+07 1.410252e+07 389711.84 NULL
2020 Law Department Principal Administrative Associate - Non Supvr 62030.43750 9.924870e+05 86613.58 5.413349e+03 288.805 1866.00 16 2.888050e+02 4620.88 1.079101e+06 9.971079e+05 81992.70 NULL
2020 Law Department Principal Title Examiner 69961.60000 3.498080e+05 285.10 5.702000e+01 0.000 6.25 5 0.000000e+00 0.00 3.500931e+05 3.498080e+05 285.10 NULL
2020 Law Department Procurement Analyst 46264.00000 4.626400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.626400e+04 4.626400e+04 0.00 NULL
2020 Law Department Project Manager 85490.00000 8.549000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.549000e+04 8.549000e+04 0.00 NULL
2020 Law Department Psychologist 95269.00000 9.526900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.526900e+04 9.526900e+04 0.00 NULL
2020 Law Department Public Records Aide 36011.42091 3.961256e+05 35240.26 3.203660e+03 0.000 1108.25 11 0.000000e+00 0.00 4.313659e+05 3.961256e+05 35240.26 NULL
2020 Law Department Secretary 39668.00000 7.933600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.933600e+04 7.933600e+04 0.00 NULL
2020 Law Department Secretary To The Corporation Counsel 105707.00000 1.057070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.057070e+05 1.057070e+05 0.00 NULL
2020 Law Department Secretary To The First Assistant Corporation Counsel 74055.00000 7.405500e+04 68.01 6.801000e+01 68.010 1.75 1 6.801000e+01 68.01 7.412301e+04 7.412301e+04 0.00 NULL
2020 Law Department Senior Photographer 54762.00000 5.476200e+04 1524.15 1.524150e+03 1524.150 47.50 1 1.524150e+03 1524.15 5.628615e+04 5.628615e+04 0.00 NULL
2020 Law Department Senior Student Legal Specialist 42694.40566 6.831105e+05 20.14 1.258750e+00 0.000 0.00 16 0.000000e+00 0.00 6.831306e+05 6.831105e+05 20.14 NULL
2020 Law Department Senior Title Examiner 56211.00000 5.621100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.621100e+04 5.621100e+04 0.00 NULL
2020 Law Department Space Analyst 71780.50000 1.435610e+05 20193.32 1.009666e+04 10096.660 406.25 2 1.009666e+04 20193.32 1.637543e+05 1.637543e+05 0.00 NULL
2020 Law Department Staff Analyst 63848.55100 1.276971e+06 24856.67 1.242833e+03 0.000 541.50 20 0.000000e+00 0.00 1.301828e+06 1.276971e+06 24856.67 NULL
2020 Law Department Stenographer To The Corporation Counsel 71749.00000 7.174900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.174900e+04 7.174900e+04 0.00 NULL
2020 Law Department Student Legal Specialist 8163.34000 8.163340e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.163340e+03 8.163340e+03 0.00 NULL
2020 Law Department Summer Graduate Intern 4817.91208 2.649852e+05 0.00 0.000000e+00 0.000 0.00 55 0.000000e+00 0.00 2.649852e+05 2.649852e+05 0.00 NULL
2020 Law Department Supervising Computer Service Technician 69368.67655 2.774747e+05 10255.39 2.563847e+03 1582.495 248.00 4 1.582495e+03 6329.98 2.877301e+05 2.838047e+05 3925.41 NULL
2020 Law Department Supervisor Of Office Machine Operations 45271.66667 1.358150e+05 10027.97 3.342657e+03 3023.230 354.75 3 3.023230e+03 9069.69 1.458430e+05 1.448847e+05 958.28 NULL
2020 Law Department Worker’s Compensation Benefits Examiner 48224.85611 3.616864e+06 189159.86 2.522131e+03 1294.160 5529.25 75 1.294160e+03 97062.00 3.806024e+06 3.713926e+06 92097.86 NULL
2020 Manhattan Community Board #1 Community Coordinator 74035.50000 1.480710e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.480710e+05 1.480710e+05 0.00 NULL
2020 Manhattan Community Board #1 District Manager 88468.00000 8.846800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.846800e+04 8.846800e+04 0.00 NULL
2020 Manhattan Community Board #10 Community Assistant 40021.00000 4.002100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.002100e+04 4.002100e+04 0.00 NULL
2020 Manhattan Community Board #10 Community Coordinator 61800.00000 6.180000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.180000e+04 6.180000e+04 0.00 NULL
2020 Manhattan Community Board #10 District Manager 83559.00000 8.355900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.355900e+04 8.355900e+04 0.00 NULL
2020 Manhattan Community Board #11 Assistant District Manager 53560.00000 5.356000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.356000e+04 5.356000e+04 0.00 NULL
2020 Manhattan Community Board #11 Community Associate 48925.00000 4.892500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.892500e+04 4.892500e+04 0.00 NULL
2020 Manhattan Community Board #11 District Manager 99752.00000 9.975200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.975200e+04 9.975200e+04 0.00 NULL
2020 Manhattan Community Board #12 Community Associate 41200.00000 4.120000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.120000e+04 4.120000e+04 0.00 NULL
2020 Manhattan Community Board #12 Community Coordinator 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2020 Manhattan Community Board #12 District Manager 94540.00000 9.454000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.454000e+04 9.454000e+04 0.00 NULL
2020 Manhattan Community Board #2 Assistant District Manager 48341.00000 4.834100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.834100e+04 4.834100e+04 0.00 NULL
2020 Manhattan Community Board #2 Community Assistant 36837.00000 3.683700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.683700e+04 3.683700e+04 0.00 NULL
2020 Manhattan Community Board #2 Community Coordinator 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2020 Manhattan Community Board #2 District Manager 88893.00000 8.889300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.889300e+04 8.889300e+04 0.00 NULL
2020 Manhattan Community Board #3 Assistant District Manager 56825.00000 5.682500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.682500e+04 5.682500e+04 0.00 NULL
2020 Manhattan Community Board #3 Community Associate 46309.00000 9.261800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.261800e+04 9.261800e+04 0.00 NULL
2020 Manhattan Community Board #3 District Manager 90306.00000 9.030600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.030600e+04 9.030600e+04 0.00 NULL
2020 Manhattan Community Board #4 Community Associate 44233.00000 4.423300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.423300e+04 4.423300e+04 0.00 NULL
2020 Manhattan Community Board #4 Community Coordinator 67935.00000 6.793500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.793500e+04 6.793500e+04 0.00 NULL
2020 Manhattan Community Board #4 District Manager 97079.00000 9.707900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.707900e+04 9.707900e+04 0.00 NULL
2020 Manhattan Community Board #5 Assistant District Manager 65638.00000 6.563800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.563800e+04 6.563800e+04 0.00 NULL
2020 Manhattan Community Board #5 Community Associate 45076.00000 4.507600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.507600e+04 4.507600e+04 0.00 NULL
2020 Manhattan Community Board #5 District Manager 111533.00000 1.115330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.115330e+05 1.115330e+05 0.00 NULL
2020 Manhattan Community Board #6 Assistant District Manager 52659.00000 5.265900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.265900e+04 5.265900e+04 0.00 NULL
2020 Manhattan Community Board #6 Community Associate 44805.00000 8.961000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.961000e+04 8.961000e+04 0.00 NULL
2020 Manhattan Community Board #6 District Manager 93459.00000 9.345900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.345900e+04 9.345900e+04 0.00 NULL
2020 Manhattan Community Board #7 Community Associate 44083.00000 4.408300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.408300e+04 4.408300e+04 0.00 NULL
2020 Manhattan Community Board #7 Community Coordinator 74983.76000 7.498376e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.498376e+04 7.498376e+04 0.00 NULL
2020 Manhattan Community Board #7 District Manager 103936.00000 1.039360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.039360e+05 1.039360e+05 0.00 NULL
2020 Manhattan Community Board #8 Assistant District Manager 51125.00000 5.112500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.112500e+04 5.112500e+04 0.00 NULL
2020 Manhattan Community Board #8 Community Associate 32055.08000 6.411016e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.411016e+04 6.411016e+04 0.00 NULL
2020 Manhattan Community Board #8 District Manager 86360.00000 8.636000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.636000e+04 8.636000e+04 0.00 NULL
2020 Manhattan Community Board #9 Community Associate 43800.50000 8.760100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.760100e+04 8.760100e+04 0.00 NULL
2020 Manhattan Community Board #9 District Manager 95617.00000 9.561700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.561700e+04 9.561700e+04 0.00 NULL
2020 Mayors Office Of Contract Svcs Admin Contract Specialist 161832.33333 4.854970e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.854970e+05 4.854970e+05 0.00 NULL
2020 Mayors Office Of Contract Svcs Administrative Manager 112499.00000 3.374970e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.374970e+05 3.374970e+05 0.00 NULL
2020 Mayors Office Of Contract Svcs Administrative Procurement Analyst 117901.00000 1.179010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.179010e+05 1.179010e+05 0.00 NULL
2020 Mayors Office Of Contract Svcs Administrative Procurement Analyst-Non-Mgrl 81800.00000 8.180000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.180000e+04 8.180000e+04 0.00 NULL
2020 Mayors Office Of Contract Svcs Administrative Staff Analyst 154500.83333 9.270050e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.270050e+05 9.270050e+05 0.00 NULL
2020 Mayors Office Of Contract Svcs Computer Systems Manager 131986.80000 1.979802e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.979802e+06 1.979802e+06 0.00 NULL
2020 Mayors Office Of Contract Svcs Executive Agency Counsel 151634.00000 4.549020e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.549020e+05 4.549020e+05 0.00 NULL
2020 Mayors Office Of Contract Svcs Graphic Artist 79389.00000 7.938900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.938900e+04 7.938900e+04 0.00 NULL
2020 Mayors Office Of Contract Svcs Mayoral Office Assistant 51461.00000 7.719150e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 7.719150e+05 7.719150e+05 0.00 NULL
2020 Mayors Office Of Contract Svcs Mayoral Program Coordinator 72599.00000 7.259900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.259900e+04 7.259900e+04 0.00 NULL
2020 Mayors Office Of Contract Svcs Procurement Analyst 66463.00000 6.646300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.646300e+04 6.646300e+04 0.00 NULL
2020 Mayors Office Of Contract Svcs Research Projects Coord 91239.49600 1.140494e+07 0.00 0.000000e+00 0.000 0.00 125 0.000000e+00 0.00 1.140494e+07 1.140494e+07 0.00 NULL
2020 Mayors Office Of Contract Svcs Research Projects Coordinator 56171.64000 1.404291e+06 11184.30 4.473720e+02 0.000 284.25 25 0.000000e+00 0.00 1.415475e+06 1.404291e+06 11184.30 NULL
2020 Mayors Office Of Contract Svcs Special Assistant 132729.00000 6.636450e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.636450e+05 6.636450e+05 0.00 NULL
2020 Mayors Office Of Contract Svcs Staff Analyst 51105.00000 5.110500e+04 73.43 7.343000e+01 73.430 2.50 1 7.343000e+01 73.43 5.117843e+04 5.117843e+04 0.00 NULL
2020 Municipal Water Fin Authority Budget Analyst 103935.30769 1.351159e+06 1850.42 1.423400e+02 0.000 38.00 13 0.000000e+00 0.00 1.353009e+06 1.351159e+06 1850.42 NULL
2020 Municipal Water Fin Authority Statistical Secretary 67676.00000 6.767600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.767600e+04 6.767600e+04 0.00 NULL
2020 Nyc Dept Of Veterans’ Services Admin Community Relations Specialist 107532.00000 1.075320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.075320e+05 1.075320e+05 0.00 NULL
2020 Nyc Dept Of Veterans’ Services Administrative Business Promotion Coordinator 116650.00000 2.333000e+05 91.93 4.596500e+01 45.965 2.00 2 4.596500e+01 91.93 2.333919e+05 2.333919e+05 0.00 NULL
2020 Nyc Dept Of Veterans’ Services Administrative Community Relations Specialist 107532.00000 1.075320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.075320e+05 1.075320e+05 0.00 NULL
2020 Nyc Dept Of Veterans’ Services Administrative Director Of Social Services 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2020 Nyc Dept Of Veterans’ Services Administrative Graphic Artist 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2020 Nyc Dept Of Veterans’ Services Administrative Staff Analyst 135000.00000 2.700000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.700000e+05 2.700000e+05 0.00 NULL
2020 Nyc Dept Of Veterans’ Services Chauffeur-Attendant 53663.00000 5.366300e+04 17204.86 1.720486e+04 17204.860 393.00 1 1.720486e+04 17204.86 7.086786e+04 7.086786e+04 0.00 NULL
2020 Nyc Dept Of Veterans’ Services City Research Scientist 94283.00000 9.428300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.428300e+04 9.428300e+04 0.00 NULL
2020 Nyc Dept Of Veterans’ Services Commissioner Of Department Of Veteran’s Services 227785.50000 4.555710e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.555710e+05 4.555710e+05 0.00 NULL
2020 Nyc Dept Of Veterans’ Services Community Coordinator 68550.76190 1.439566e+06 6869.38 3.271133e+02 0.000 182.25 21 0.000000e+00 0.00 1.446435e+06 1.439566e+06 6869.38 NULL
2020 Nyc Dept Of Veterans’ Services Deputy Assistant Commissioner 124201.66667 1.490420e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.490420e+06 1.490420e+06 0.00 NULL
2020 Nyc Dept Of Veterans’ Services Executive Agency Counsel 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2020 Nyc Dept Of Veterans’ Services Mayoral Office Assistant 95000.00000 9.500000e+04 1877.99 1.877990e+03 1877.990 37.25 1 1.877990e+03 1877.99 9.687799e+04 9.687799e+04 0.00 NULL
2020 Nyc Dept Of Veterans’ Services Special Assistant 146954.00000 5.878160e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.878160e+05 5.878160e+05 0.00 NULL
2020 Nyc Employees Retirement Sys Accountant 72935.37500 5.834830e+05 18963.10 2.370387e+03 1472.790 415.50 8 1.472790e+03 11782.32 6.024461e+05 5.952653e+05 7180.78 NULL
2020 Nyc Employees Retirement Sys Adm Manager-Non-Mgrl 86374.50000 5.182470e+05 6904.47 1.150745e+03 46.795 126.75 6 4.679500e+01 280.77 5.251515e+05 5.185278e+05 6623.70 NULL
2020 Nyc Employees Retirement Sys Administrative Accountant 120638.50000 7.238310e+05 10713.76 1.785627e+03 654.720 204.75 6 6.547200e+02 3928.32 7.345448e+05 7.277593e+05 6785.44 NULL
2020 Nyc Employees Retirement Sys Administrative Actuary 106982.00000 1.069820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.069820e+05 1.069820e+05 0.00 NULL
2020 Nyc Employees Retirement Sys Administrative Graphic Artist 105536.00000 1.055360e+05 86.65 8.665000e+01 86.650 1.50 1 8.665000e+01 86.65 1.056226e+05 1.056226e+05 0.00 NULL
2020 Nyc Employees Retirement Sys Administrative Labor Relations Analyst 152101.25000 6.084050e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.084050e+05 6.084050e+05 0.00 NULL
2020 Nyc Employees Retirement Sys Administrative Management Auditor 164800.00000 1.648000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.648000e+05 1.648000e+05 0.00 NULL
2020 Nyc Employees Retirement Sys Administrative Manager 121467.33333 3.644020e+05 57.07 1.902333e+01 0.000 0.00 3 0.000000e+00 0.00 3.644591e+05 3.644020e+05 57.07 NULL
2020 Nyc Employees Retirement Sys Administrative Procurement Analyst 158902.00000 1.589020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.589020e+05 1.589020e+05 0.00 NULL
2020 Nyc Employees Retirement Sys Administrative Public Information Specialist 158000.00000 1.580000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.580000e+05 1.580000e+05 0.00 NULL
2020 Nyc Employees Retirement Sys Administrative Retirement Benefits Specialist 133615.06667 2.004226e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 2.004226e+06 2.004226e+06 0.00 NULL
2020 Nyc Employees Retirement Sys Administrative Retirements Benefits Specialist 102429.50000 4.097180e+05 3421.52 8.553800e+02 420.870 57.00 4 4.208700e+02 1683.48 4.131395e+05 4.114015e+05 1738.04 NULL
2020 Nyc Employees Retirement Sys Administrative Staff Analyst 128244.63636 1.410691e+06 20886.19 1.898745e+03 0.000 337.75 11 0.000000e+00 0.00 1.431577e+06 1.410691e+06 20886.19 NULL
2020 Nyc Employees Retirement Sys Agency Attorney 85077.60000 4.253880e+05 4419.90 8.839800e+02 343.900 79.00 5 3.439000e+02 1719.50 4.298079e+05 4.271075e+05 2700.40 NULL
2020 Nyc Employees Retirement Sys Assistant Retirement Benefits Examiner 45508.13178 3.276585e+06 137947.33 1.915935e+03 175.940 3963.25 72 1.759400e+02 12667.68 3.414533e+06 3.289253e+06 125279.65 NULL
2020 Nyc Employees Retirement Sys Associate Retirement Benefits Examiner 63582.85271 8.202188e+06 613485.26 4.755700e+03 1816.480 13562.75 129 1.816480e+03 234325.92 8.815673e+06 8.436514e+06 379159.34 NULL
2020 Nyc Employees Retirement Sys Associate Staff Analyst 75591.00000 2.267730e+05 15555.25 5.185083e+03 4222.480 295.50 3 4.222480e+03 12667.44 2.423282e+05 2.394404e+05 2887.81 NULL
2020 Nyc Employees Retirement Sys Bookkeeper 43556.50000 8.711300e+04 308.57 1.542850e+02 154.285 12.00 2 1.542850e+02 308.57 8.742157e+04 8.742157e+04 0.00 NULL
2020 Nyc Employees Retirement Sys Certified It Administrator 101288.00000 1.418032e+06 73130.99 5.223642e+03 3390.865 1206.75 14 3.390865e+03 47472.11 1.491163e+06 1.465504e+06 25658.88 NULL
2020 Nyc Employees Retirement Sys Certified It Developer 111439.00000 3.343170e+05 16068.75 5.356250e+03 554.920 203.00 3 5.549200e+02 1664.76 3.503858e+05 3.359818e+05 14403.99 NULL
2020 Nyc Employees Retirement Sys Clerical Associate 40031.44976 2.001572e+06 283706.56 5.674131e+03 1360.480 9104.50 50 1.360480e+03 68024.00 2.285279e+06 2.069596e+06 215682.56 NULL
2020 Nyc Employees Retirement Sys Community Assistant 38578.00000 2.700460e+05 73679.65 1.052566e+04 5844.640 2632.25 7 5.844640e+03 40912.48 3.437257e+05 3.109585e+05 32767.17 NULL
2020 Nyc Employees Retirement Sys Community Associate 41624.83333 4.994980e+05 14128.75 1.177396e+03 612.330 608.00 12 6.123300e+02 7347.96 5.136268e+05 5.068460e+05 6780.79 NULL
2020 Nyc Employees Retirement Sys Community Coordinator 61249.33333 1.837480e+05 175.97 5.865667e+01 0.000 4.25 3 0.000000e+00 0.00 1.839240e+05 1.837480e+05 175.97 NULL
2020 Nyc Employees Retirement Sys Computer Associate 73451.57143 5.141610e+05 18414.48 2.630640e+03 2610.450 399.50 7 2.610450e+03 18273.15 5.325755e+05 5.324342e+05 141.33 NULL
2020 Nyc Employees Retirement Sys Computer Specialist 102408.05882 1.740937e+06 46193.34 2.717255e+03 377.640 649.25 17 3.776400e+02 6419.88 1.787130e+06 1.747357e+06 39773.46 NULL
2020 Nyc Employees Retirement Sys Computer Systems Manager 151220.75862 4.385402e+06 9592.36 3.307710e+02 0.000 106.00 29 0.000000e+00 0.00 4.394994e+06 4.385402e+06 9592.36 NULL
2020 Nyc Employees Retirement Sys Customer Information Representative Ma L 1549 35966.73770 1.258836e+06 37602.95 1.074370e+03 510.740 1448.50 35 5.107400e+02 17875.90 1.296439e+06 1.276712e+06 19727.05 NULL
2020 Nyc Employees Retirement Sys Deputy Director 192775.00000 1.927750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.927750e+05 1.927750e+05 0.00 NULL
2020 Nyc Employees Retirement Sys Deputy Executive Director 224197.00000 2.241970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.241970e+05 2.241970e+05 0.00 NULL
2020 Nyc Employees Retirement Sys Executive Agency Counsel 140116.25000 5.604650e+05 4629.46 1.157365e+03 31.690 71.00 4 3.169000e+01 126.76 5.650945e+05 5.605918e+05 4502.70 NULL
2020 Nyc Employees Retirement Sys Executive Director 240630.00000 2.406300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.406300e+05 2.406300e+05 0.00 NULL
2020 Nyc Employees Retirement Sys Graphic Artist 17274.90000 1.727490e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.727490e+04 1.727490e+04 0.00 NULL
2020 Nyc Employees Retirement Sys Management Auditor 74966.25000 2.998650e+05 1711.19 4.277975e+02 97.170 34.25 4 9.717000e+01 388.68 3.015762e+05 3.002537e+05 1322.51 NULL
2020 Nyc Employees Retirement Sys Office Machine Aide 21710.62529 3.256594e+05 35930.42 2.395361e+03 1139.810 1903.25 15 1.139810e+03 17097.15 3.615898e+05 3.427565e+05 18833.27 NULL
2020 Nyc Employees Retirement Sys Principal Administrative Associate - Non Supvr 64906.89986 1.817393e+06 146984.51 5.249447e+03 761.660 2952.00 28 7.616600e+02 21326.48 1.964378e+06 1.838720e+06 125658.03 NULL
2020 Nyc Employees Retirement Sys Staff Analyst 63780.00000 1.913400e+05 19481.74 6.493913e+03 6996.620 473.75 3 6.493913e+03 19481.74 2.108217e+05 2.108217e+05 0.00 NULL
2020 Nyc Employees Retirement Sys Supervising Computer Service Technician 76601.00000 7.660100e+04 9000.68 9.000680e+03 9000.680 171.75 1 9.000680e+03 9000.68 8.560168e+04 8.560168e+04 0.00 NULL
2020 Nyc Employees Retirement Sys Telecommunications Associate 113445.00000 1.134450e+05 6444.49 6.444490e+03 6444.490 79.25 1 6.444490e+03 6444.49 1.198895e+05 1.198895e+05 0.00 NULL
2020 Nyc Fire Pension Fund Accountant 73501.00000 7.350100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.350100e+04 7.350100e+04 0.00 NULL
2020 Nyc Fire Pension Fund Actuarial Specialist Level Ii, Oj 102715.00000 1.027150e+05 16904.61 1.690461e+04 16904.610 262.50 1 1.690461e+04 16904.61 1.196196e+05 1.196196e+05 0.00 NULL
2020 Nyc Fire Pension Fund Adm Manager-Non-Mgrl 79240.33333 2.377210e+05 45972.20 1.532407e+04 16538.270 815.25 3 1.532407e+04 45972.20 2.836932e+05 2.836932e+05 0.00 NULL
2020 Nyc Fire Pension Fund Administrative Retirement Benefits Specialist 129236.66667 3.877100e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.877100e+05 3.877100e+05 0.00 NULL
2020 Nyc Fire Pension Fund Administrative Staff Analyst 101953.75000 4.078150e+05 6020.00 1.505000e+03 0.000 138.00 4 0.000000e+00 0.00 4.138350e+05 4.078150e+05 6020.00 NULL
2020 Nyc Fire Pension Fund Agency Attorney 97635.00000 9.763500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.763500e+04 9.763500e+04 0.00 NULL
2020 Nyc Fire Pension Fund Agency Chief Contracting Officer 182621.00000 1.826210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.826210e+05 1.826210e+05 0.00 NULL
2020 Nyc Fire Pension Fund Associate Retirement Benefits Examiner 66472.85714 4.653100e+05 120355.30 1.719361e+04 13703.410 2366.75 7 1.370341e+04 95923.87 5.856653e+05 5.612339e+05 24431.43 NULL
2020 Nyc Fire Pension Fund Certified It Administrator 89671.83000 8.967183e+04 3.79 3.790000e+00 3.790 0.00 1 3.790000e+00 3.79 8.967562e+04 8.967562e+04 0.00 NULL
2020 Nyc Fire Pension Fund Chief Of Staff 193363.00000 1.933630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.933630e+05 1.933630e+05 0.00 NULL
2020 Nyc Fire Pension Fund Clerical Associate 57657.00000 1.153140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.153140e+05 1.153140e+05 0.00 NULL
2020 Nyc Fire Pension Fund Community Coordinator 58915.50000 2.356620e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.356620e+05 2.356620e+05 0.00 NULL
2020 Nyc Fire Pension Fund Confidential Asst To The Executive Dir 86520.00000 8.652000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.652000e+04 8.652000e+04 0.00 NULL
2020 Nyc Fire Pension Fund Deputy Executive Director 225018.00000 2.250180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.250180e+05 2.250180e+05 0.00 NULL
2020 Nyc Fire Pension Fund Executive Agency Counsel 187991.00000 1.879910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.879910e+05 1.879910e+05 0.00 NULL
2020 Nyc Fire Pension Fund Executive Director 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2020 Nyc Fire Pension Fund Principal Administrative Associate - Non Supvr 79152.00000 3.166080e+05 19072.24 4.768060e+03 28.905 368.75 4 2.890500e+01 115.62 3.356802e+05 3.167236e+05 18956.62 NULL
2020 Nyc Fire Pension Fund Research Assistant 63837.00000 6.383700e+04 411.75 4.117500e+02 411.750 11.25 1 4.117500e+02 411.75 6.424875e+04 6.424875e+04 0.00 NULL
2020 Nyc Housing Authority *Administrative Attorney 135883.00000 2.717660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.717660e+05 2.717660e+05 0.00 NULL
2020 Nyc Housing Authority *Attorney At Law 90602.33333 5.436140e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.436140e+05 5.436140e+05 0.00 NULL
2020 Nyc Housing Authority *Housing Caretaker 44732.20000 4.473220e+05 102863.68 1.028637e+04 7044.230 2863.50 10 7.044230e+03 70442.30 5.501857e+05 5.177643e+05 32421.38 NULL
2020 Nyc Housing Authority Accountant 66929.74194 2.074822e+06 550.98 1.777355e+01 0.000 10.00 31 0.000000e+00 0.00 2.075373e+06 2.074822e+06 550.98 NULL
2020 Nyc Housing Authority Adm Manager-Non-Mgrl 81927.61250 6.554209e+06 98944.48 1.236806e+03 0.000 1526.00 80 0.000000e+00 0.00 6.653153e+06 6.554209e+06 98944.48 NULL
2020 Nyc Housing Authority Admin Community Relations Specialist 89234.34375 5.710998e+06 72191.81 1.127997e+03 0.000 1422.25 64 0.000000e+00 0.00 5.783190e+06 5.710998e+06 72191.81 NULL
2020 Nyc Housing Authority Admin Contract Specialist 140285.50000 1.963997e+06 72601.18 5.185799e+03 0.000 1175.50 14 0.000000e+00 0.00 2.036598e+06 1.963997e+06 72601.18 NULL
2020 Nyc Housing Authority Administrative Accountant 116475.51852 3.144839e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 3.144839e+06 3.144839e+06 0.00 NULL
2020 Nyc Housing Authority Administrative Architect 135672.00000 5.426880e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.426880e+05 5.426880e+05 0.00 NULL
2020 Nyc Housing Authority Administrative Business Promotion Coordinator 121431.20000 1.214312e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.214312e+06 1.214312e+06 0.00 NULL
2020 Nyc Housing Authority Administrative City Planner 149355.83333 8.961350e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.961350e+05 8.961350e+05 0.00 NULL
2020 Nyc Housing Authority Administrative Claim Examiner 125161.75000 5.006470e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.006470e+05 5.006470e+05 0.00 NULL
2020 Nyc Housing Authority Administrative Community Relations Specialist 152074.28571 1.064520e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.064520e+06 1.064520e+06 0.00 NULL
2020 Nyc Housing Authority Administrative Construction Project Manager 117017.08108 4.329632e+06 803.30 2.171081e+01 0.000 18.00 37 0.000000e+00 0.00 4.330435e+06 4.329632e+06 803.30 NULL
2020 Nyc Housing Authority Administrative Engineer 122156.00000 9.772480e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.772480e+05 9.772480e+05 0.00 NULL
2020 Nyc Housing Authority Administrative Fire Protection Inspector 108150.00000 1.081500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081500e+05 1.081500e+05 0.00 NULL
2020 Nyc Housing Authority Administrative Graphic Artist 95468.00000 1.909360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.909360e+05 1.909360e+05 0.00 NULL
2020 Nyc Housing Authority Administrative Housing Development Specialist 116476.43750 1.863623e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.863623e+06 1.863623e+06 0.00 NULL
2020 Nyc Housing Authority Administrative Housing Manager 129813.60526 4.932917e+06 66997.70 1.763097e+03 0.000 1131.25 38 0.000000e+00 0.00 4.999915e+06 4.932917e+06 66997.70 NULL
2020 Nyc Housing Authority Administrative Housing Superintendent 129062.31081 9.550611e+06 160947.01 2.174960e+03 0.000 2558.25 74 0.000000e+00 0.00 9.711558e+06 9.550611e+06 160947.01 NULL
2020 Nyc Housing Authority Administrative Inspector 129105.43478 2.969425e+06 10107.72 4.394661e+02 0.000 150.75 23 0.000000e+00 0.00 2.979533e+06 2.969425e+06 10107.72 NULL
2020 Nyc Housing Authority Administrative Investigator 90317.00000 2.709510e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.709510e+05 2.709510e+05 0.00 NULL
2020 Nyc Housing Authority Administrative Labor Relations Analyst 114020.42857 7.981430e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.981430e+05 7.981430e+05 0.00 NULL
2020 Nyc Housing Authority Administrative Landmarks Preservationist 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2020 Nyc Housing Authority Administrative Landscape Architect 112812.00000 2.256240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.256240e+05 2.256240e+05 0.00 NULL
2020 Nyc Housing Authority Administrative Management Auditor 137689.33333 4.130680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.130680e+05 4.130680e+05 0.00 NULL
2020 Nyc Housing Authority Administrative Printing Services Manager 121927.00000 1.219270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.219270e+05 1.219270e+05 0.00 NULL
2020 Nyc Housing Authority Administrative Procurement Analyst 140584.00000 1.405840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.405840e+05 1.405840e+05 0.00 NULL
2020 Nyc Housing Authority Administrative Procurement Analyst-Non-Mgrl 87435.56522 2.011018e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 2.011018e+06 2.011018e+06 0.00 NULL
2020 Nyc Housing Authority Administrative Project Manager 123545.68750 1.976731e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.976731e+06 1.976731e+06 0.00 NULL
2020 Nyc Housing Authority Administrative Public Health Sanitarian 112270.00000 2.245400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.245400e+05 2.245400e+05 0.00 NULL
2020 Nyc Housing Authority Administrative Public Information Specialist 116707.27273 1.283780e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.283780e+06 1.283780e+06 0.00 NULL
2020 Nyc Housing Authority Administrative Public Records Officer 129447.50000 2.588950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.588950e+05 2.588950e+05 0.00 NULL
2020 Nyc Housing Authority Administrative Quality Assurance Specialist 99096.00000 1.981920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.981920e+05 1.981920e+05 0.00 NULL
2020 Nyc Housing Authority Administrative Real Property Manager 171349.50000 3.426990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.426990e+05 3.426990e+05 0.00 NULL
2020 Nyc Housing Authority Administrative Space Analyst 105193.33333 6.311600e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.311600e+05 6.311600e+05 0.00 NULL
2020 Nyc Housing Authority Administrative Staff Analyst 108280.57233 1.721661e+07 43279.32 2.721970e+02 0.000 854.25 159 0.000000e+00 0.00 1.725989e+07 1.721661e+07 43279.32 NULL
2020 Nyc Housing Authority Administrative Storekeeper 111038.25000 4.441530e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.441530e+05 4.441530e+05 0.00 NULL
2020 Nyc Housing Authority Administrative Supervisor Of Building Maintenance 117128.00000 1.171280e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.171280e+06 1.171280e+06 0.00 NULL
2020 Nyc Housing Authority Administrative Supervisor Of Skilled Trades 110000.00000 1.100000e+05 21562.52 2.156252e+04 21562.520 275.75 1 2.156252e+04 21562.52 1.315625e+05 1.315625e+05 0.00 NULL
2020 Nyc Housing Authority Agency Attorney 89631.81967 5.467541e+06 0.00 0.000000e+00 0.000 0.00 61 0.000000e+00 0.00 5.467541e+06 5.467541e+06 0.00 NULL
2020 Nyc Housing Authority Agency Attorney Interne 67137.00000 4.028220e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.028220e+05 4.028220e+05 0.00 NULL
2020 Nyc Housing Authority Agency Chief Contracting Officer 158986.00000 1.589860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.589860e+05 1.589860e+05 0.00 NULL
2020 Nyc Housing Authority Apprentice 64386.00000 1.287720e+05 7823.58 3.911790e+03 3911.790 165.00 2 3.911790e+03 7823.58 1.365956e+05 1.365956e+05 0.00 NULL
2020 Nyc Housing Authority Architect 97255.12500 7.780410e+05 9610.05 1.201256e+03 0.000 165.75 8 0.000000e+00 0.00 7.876511e+05 7.780410e+05 9610.05 NULL
2020 Nyc Housing Authority Asbestos Handler 85530.00000 1.282950e+06 338484.56 2.256564e+04 22499.260 5695.50 15 2.249926e+04 337488.90 1.621435e+06 1.620439e+06 995.66 NULL
2020 Nyc Housing Authority Asbestos Handler Supervisor 89998.66667 5.399920e+05 243661.68 4.061028e+04 42607.290 3828.75 6 4.061028e+04 243661.68 7.836537e+05 7.836537e+05 0.00 NULL
2020 Nyc Housing Authority Asbestos Hazard Investigator 79302.80000 3.965140e+05 50913.70 1.018274e+04 2351.230 852.75 5 2.351230e+03 11756.15 4.474277e+05 4.082702e+05 39157.55 NULL
2020 Nyc Housing Authority Assistant Architect 74079.50000 8.889540e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 8.889540e+05 8.889540e+05 0.00 NULL
2020 Nyc Housing Authority Assistant Civil Engineer 80911.33333 2.427340e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.427340e+05 2.427340e+05 0.00 NULL
2020 Nyc Housing Authority Assistant Director Of Intergroup Relations 66891.00000 6.689100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.689100e+04 6.689100e+04 0.00 NULL
2020 Nyc Housing Authority Assistant Electrical Engineer 67765.00000 1.355300e+05 40.69 2.034500e+01 20.345 1.00 2 2.034500e+01 40.69 1.355707e+05 1.355707e+05 0.00 NULL
2020 Nyc Housing Authority Assistant Executive Director 204988.66667 1.229932e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.229932e+06 1.229932e+06 0.00 NULL
2020 Nyc Housing Authority Assistant Housing Manager 74260.90667 1.670870e+07 1096172.49 4.871878e+03 3120.640 22515.75 225 3.120640e+03 702144.00 1.780488e+07 1.741085e+07 394028.49 NULL
2020 Nyc Housing Authority Assistant Landscape Architect 67000.00000 6.700000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.700000e+04 6.700000e+04 0.00 NULL
2020 Nyc Housing Authority Assistant Mechanical Engineer 79111.33333 2.373340e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.373340e+05 2.373340e+05 0.00 NULL
2020 Nyc Housing Authority Assistant Printing Press Operator 61244.20000 3.062210e+05 19175.80 3.835160e+03 5263.510 411.25 5 3.835160e+03 19175.80 3.253968e+05 3.253968e+05 0.00 NULL
2020 Nyc Housing Authority Assistant Resident Building Supt 70228.34109 1.811891e+07 4483996.72 1.737983e+04 15270.765 89864.25 258 1.527076e+04 3939857.37 2.260291e+07 2.205877e+07 544139.35 NULL
2020 Nyc Housing Authority Assistant To The Chairman 208591.00000 4.171820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.171820e+05 4.171820e+05 0.00 NULL
2020 Nyc Housing Authority Assoc Inspector 87006.80000 4.350340e+05 85.25 1.705000e+01 18.160 0.00 5 1.705000e+01 85.25 4.351192e+05 4.351192e+05 0.00 NULL
2020 Nyc Housing Authority Associate Contract Specialist 90728.00000 9.072800e+04 33893.23 3.389323e+04 33893.230 519.25 1 3.389323e+04 33893.23 1.246212e+05 1.246212e+05 0.00 NULL
2020 Nyc Housing Authority Associate Fire Protection Inspector 72260.00000 3.613000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.613000e+05 3.613000e+05 0.00 NULL
2020 Nyc Housing Authority Associate Housing Development Specialist 97659.10000 9.765910e+05 1210.07 1.210070e+02 0.000 24.00 10 0.000000e+00 0.00 9.778011e+05 9.765910e+05 1210.07 NULL
2020 Nyc Housing Authority Associate Inspector 79585.80000 3.979290e+05 19244.61 3.848922e+03 58.190 388.00 5 5.819000e+01 290.95 4.171736e+05 3.982200e+05 18953.66 NULL
2020 Nyc Housing Authority Associate Investigator 66814.66667 8.017760e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 8.017760e+05 8.017760e+05 0.00 NULL
2020 Nyc Housing Authority Associate Labor Relations Analyst 92150.00000 4.607500e+05 10208.57 2.041714e+03 453.070 176.50 5 4.530700e+02 2265.35 4.709586e+05 4.630153e+05 7943.22 NULL
2020 Nyc Housing Authority Associate Operations Communications Specialist 61311.00000 6.131100e+04 1384.87 1.384870e+03 1384.870 31.00 1 1.384870e+03 1384.87 6.269587e+04 6.269587e+04 0.00 NULL
2020 Nyc Housing Authority Associate Project Manager 95182.66667 2.855480e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.855480e+05 2.855480e+05 0.00 NULL
2020 Nyc Housing Authority Associate Public Health Sanitarian 81534.46154 1.059948e+06 26599.95 2.046150e+03 0.000 471.25 13 0.000000e+00 0.00 1.086548e+06 1.059948e+06 26599.95 NULL
2020 Nyc Housing Authority Associate Public Information Specialist 58869.00000 5.886900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.886900e+04 5.886900e+04 0.00 NULL
2020 Nyc Housing Authority Associate Quality Assurance Specialist 68485.00000 6.848500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.848500e+04 6.848500e+04 0.00 NULL
2020 Nyc Housing Authority Associate Real Property Manager 81454.00000 4.887240e+05 5392.18 8.986967e+02 214.570 112.50 6 2.145700e+02 1287.42 4.941162e+05 4.900114e+05 4104.76 NULL
2020 Nyc Housing Authority Associate Staff Analyst 81751.00000 5.068562e+06 103955.29 1.676698e+03 0.000 1711.00 62 0.000000e+00 0.00 5.172517e+06 5.068562e+06 103955.29 NULL
2020 Nyc Housing Authority Associate Urban Designer 94786.00000 9.478600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.478600e+04 9.478600e+04 0.00 NULL
2020 Nyc Housing Authority Auto Mechanic NA NA 18739.76 9.369880e+03 9369.880 286.50 2 9.369880e+03 18739.76 NA NA NA NULL
2020 Nyc Housing Authority Automotive Service Worker 53239.57143 3.726770e+05 4249.88 6.071257e+02 238.460 135.25 7 2.384600e+02 1669.22 3.769269e+05 3.743462e+05 2580.66 NULL
2020 Nyc Housing Authority Bookkeeper 53598.42857 1.500756e+06 701.85 2.506607e+01 0.000 21.00 28 0.000000e+00 0.00 1.501458e+06 1.500756e+06 701.85 NULL
2020 Nyc Housing Authority Bricklayer NA NA 3354225.32 4.245855e+04 30440.840 44290.50 79 3.044084e+04 2404826.36 NA NA NA NULL
2020 Nyc Housing Authority Business Promotion Coordinator 77666.40000 3.883320e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.883320e+05 3.883320e+05 0.00 NULL
2020 Nyc Housing Authority Caretaker 41364.28437 1.805137e+08 29573903.66 6.776788e+03 5580.530 919578.75 4364 5.580530e+03 24353432.92 2.100876e+08 2.048672e+08 5220470.74 NULL
2020 Nyc Housing Authority Carpenter NA NA 9627027.54 3.198348e+04 26320.350 126239.25 301 2.632035e+04 7922425.35 NA NA NA NULL
2020 Nyc Housing Authority Certified It Administrator 111492.06250 1.783873e+06 69053.55 4.315847e+03 2656.835 880.75 16 2.656835e+03 42509.36 1.852927e+06 1.826382e+06 26544.19 NULL
2020 Nyc Housing Authority Chair 414707.00000 4.147070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.147070e+05 4.147070e+05 0.00 NULL
2020 Nyc Housing Authority Chauffeur-Attendant 60071.00000 1.201420e+05 49047.36 2.452368e+04 24523.680 1136.00 2 2.452368e+04 49047.36 1.691894e+05 1.691894e+05 0.00 NULL
2020 Nyc Housing Authority Chief Caretaker 50310.00000 1.157130e+06 292095.29 1.269980e+04 13541.180 8672.75 23 1.269980e+04 292095.29 1.449225e+06 1.449225e+06 0.00 NULL
2020 Nyc Housing Authority Chief Of Housing Community Activities 93260.33333 2.797810e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.797810e+05 2.797810e+05 0.00 NULL
2020 Nyc Housing Authority Chief, Publications & Reports 112000.00000 2.240000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.240000e+05 2.240000e+05 0.00 NULL
2020 Nyc Housing Authority City Attendant 37364.00000 2.615480e+05 1974.91 2.821300e+02 0.000 75.25 7 0.000000e+00 0.00 2.635229e+05 2.615480e+05 1974.91 NULL
2020 Nyc Housing Authority City Laborer NA NA 835890.81 1.129582e+04 7088.490 16846.00 74 7.088490e+03 524548.26 NA NA NA NULL
2020 Nyc Housing Authority City Planner 82098.50000 3.283940e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.283940e+05 3.283940e+05 0.00 NULL
2020 Nyc Housing Authority City Research Scientist 91881.90000 9.188190e+05 7972.62 7.972620e+02 0.000 145.50 10 0.000000e+00 0.00 9.267916e+05 9.188190e+05 7972.62 NULL
2020 Nyc Housing Authority City Seasonal Aide 34765.83333 2.085950e+05 11206.16 1.867693e+03 1680.660 496.50 6 1.680660e+03 10083.96 2.198012e+05 2.186790e+05 1122.20 NULL
2020 Nyc Housing Authority City Security Aide 34419.62500 2.753570e+05 8280.48 1.035060e+03 931.390 318.25 8 9.313900e+02 7451.12 2.836375e+05 2.828081e+05 829.36 NULL
2020 Nyc Housing Authority City Service Aide 40317.00000 2.419020e+05 6668.64 1.111440e+03 825.395 276.25 6 8.253950e+02 4952.37 2.485706e+05 2.468544e+05 1716.27 NULL
2020 Nyc Housing Authority Civil Engineer 102664.85714 7.186540e+05 8580.73 1.225819e+03 0.000 138.25 7 0.000000e+00 0.00 7.272347e+05 7.186540e+05 8580.73 NULL
2020 Nyc Housing Authority Claim Specialist 59846.25000 2.393850e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.393850e+05 2.393850e+05 0.00 NULL
2020 Nyc Housing Authority Clerical Aide 32374.20000 1.618710e+05 1004.94 2.009880e+02 0.000 37.00 5 0.000000e+00 0.00 1.628759e+05 1.618710e+05 1004.94 NULL
2020 Nyc Housing Authority Clerical Associate 44667.32530 3.707388e+06 47987.88 5.781672e+02 0.000 1538.00 83 0.000000e+00 0.00 3.755376e+06 3.707388e+06 47987.88 NULL
2020 Nyc Housing Authority College Aide 36496.00000 7.299200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.299200e+04 7.299200e+04 0.00 NULL
2020 Nyc Housing Authority Community Assistant 37900.07692 4.927010e+05 1672.50 1.286538e+02 0.000 75.75 13 0.000000e+00 0.00 4.943735e+05 4.927010e+05 1672.50 NULL
2020 Nyc Housing Authority Community Associate 47317.49351 3.643447e+06 36167.71 4.697105e+02 0.000 1145.00 77 0.000000e+00 0.00 3.679615e+06 3.643447e+06 36167.71 NULL
2020 Nyc Housing Authority Community Coordinator 68079.91262 1.402446e+07 54037.18 2.623164e+02 0.000 1261.25 206 0.000000e+00 0.00 1.407850e+07 1.402446e+07 54037.18 NULL
2020 Nyc Housing Authority Community Service Aide 31976.21622 1.183120e+06 222753.23 6.020358e+03 3990.980 8927.75 37 3.990980e+03 147666.26 1.405873e+06 1.330786e+06 75086.97 NULL
2020 Nyc Housing Authority Computer Associate 72328.58333 8.679430e+05 12776.78 1.064732e+03 0.000 294.00 12 0.000000e+00 0.00 8.807198e+05 8.679430e+05 12776.78 NULL
2020 Nyc Housing Authority Computer Operations Manager 105188.30000 1.051883e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.051883e+06 1.051883e+06 0.00 NULL
2020 Nyc Housing Authority Computer Service Technician 54160.50000 1.083210e+05 1326.79 6.633950e+02 663.395 34.75 2 6.633950e+02 1326.79 1.096478e+05 1.096478e+05 0.00 NULL
2020 Nyc Housing Authority Computer Specialist 102324.71875 6.548782e+06 110029.53 1.719211e+03 0.000 1568.25 64 0.000000e+00 0.00 6.658812e+06 6.548782e+06 110029.53 NULL
2020 Nyc Housing Authority Computer Systems Manager 134841.33962 7.146591e+06 7155.60 1.350113e+02 0.000 108.00 53 0.000000e+00 0.00 7.153747e+06 7.146591e+06 7155.60 NULL
2020 Nyc Housing Authority Confidential Investigator 70795.42500 2.831817e+06 24400.98 6.100245e+02 23.095 542.25 40 2.309500e+01 923.80 2.856218e+06 2.832741e+06 23477.18 NULL
2020 Nyc Housing Authority Construction Project Manager 85253.96124 1.099776e+07 229576.96 1.779666e+03 0.000 3943.00 129 0.000000e+00 0.00 1.122734e+07 1.099776e+07 229576.96 NULL
2020 Nyc Housing Authority Consultant On Race Relations 108150.00000 2.163000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.163000e+05 2.163000e+05 0.00 NULL
2020 Nyc Housing Authority Contract Specialist 58440.00000 5.844000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.844000e+04 5.844000e+04 0.00 NULL
2020 Nyc Housing Authority Controller 236332.00000 2.363320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.363320e+05 2.363320e+05 0.00 NULL
2020 Nyc Housing Authority Coordinator, Tenant Patrol 96545.00000 1.930900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.930900e+05 1.930900e+05 0.00 NULL
2020 Nyc Housing Authority Counsel 214000.00000 2.140000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.140000e+05 2.140000e+05 0.00 NULL
2020 Nyc Housing Authority Customer Information Representative Ma L 1549 49837.64286 4.186362e+06 54158.97 6.447496e+02 0.000 1366.00 84 0.000000e+00 0.00 4.240521e+06 4.186362e+06 54158.97 NULL
2020 Nyc Housing Authority Dep Dir Research & Pol Develp 110709.00000 1.107090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.107090e+05 1.107090e+05 0.00 NULL
2020 Nyc Housing Authority Deputy Controller 166531.00000 3.330620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.330620e+05 3.330620e+05 0.00 NULL
2020 Nyc Housing Authority Deputy Director Of Construction 128909.00000 1.289090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.289090e+05 1.289090e+05 0.00 NULL
2020 Nyc Housing Authority Deputy Director Of Design 136429.00000 2.728580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.728580e+05 2.728580e+05 0.00 NULL
2020 Nyc Housing Authority Deputy Inspector General 113433.00000 5.671650e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.671650e+05 5.671650e+05 0.00 NULL
2020 Nyc Housing Authority Dir Of Quality & Cost Control 175100.00000 1.751000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.751000e+05 1.751000e+05 0.00 NULL
2020 Nyc Housing Authority Director Of Audit And Program Analysis 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2020 Nyc Housing Authority Director Of Construction 180430.00000 1.804300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.804300e+05 1.804300e+05 0.00 NULL
2020 Nyc Housing Authority Director Of Contract Administration 182566.00000 1.825660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.825660e+05 1.825660e+05 0.00 NULL
2020 Nyc Housing Authority Director Of Design 149350.00000 1.493500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.493500e+05 1.493500e+05 0.00 NULL
2020 Nyc Housing Authority Director Of Development 212949.00000 2.129490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.129490e+05 2.129490e+05 0.00 NULL
2020 Nyc Housing Authority Director Of Equal Opportunity 141017.00000 1.410170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.410170e+05 1.410170e+05 0.00 NULL
2020 Nyc Housing Authority Director Of General Services 158926.00000 1.589260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.589260e+05 1.589260e+05 0.00 NULL
2020 Nyc Housing Authority Director Of Housing Applicantions 155765.00000 1.557650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.557650e+05 1.557650e+05 0.00 NULL
2020 Nyc Housing Authority Director Of Information Systems 226600.00000 2.266000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.266000e+05 2.266000e+05 0.00 NULL
2020 Nyc Housing Authority Director Of Methods & Analysis 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2020 Nyc Housing Authority Director Of Plant Operations & Maintenance 149350.00000 1.493500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.493500e+05 1.493500e+05 0.00 NULL
2020 Nyc Housing Authority Director Of Program Planning 127449.00000 1.274490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.274490e+05 1.274490e+05 0.00 NULL
2020 Nyc Housing Authority Director Of Public And Community Relations 200850.00000 2.008500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.008500e+05 2.008500e+05 0.00 NULL
2020 Nyc Housing Authority Director Of Review & Counseling 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2020 Nyc Housing Authority Director Of Tenant & Community Affairs 112795.00000 2.255900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.255900e+05 2.255900e+05 0.00 NULL
2020 Nyc Housing Authority Director Or Management 153107.00000 1.531070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.531070e+05 1.531070e+05 0.00 NULL
2020 Nyc Housing Authority Economist 75070.75000 9.008490e+05 3662.42 3.052017e+02 0.000 72.00 12 0.000000e+00 0.00 9.045114e+05 9.008490e+05 3662.42 NULL
2020 Nyc Housing Authority Electrical Engineer 101028.00000 4.041120e+05 2377.84 5.944600e+02 0.000 32.25 4 0.000000e+00 0.00 4.064898e+05 4.041120e+05 2377.84 NULL
2020 Nyc Housing Authority Electrician NA NA 5417497.18 4.880628e+04 42903.740 62594.00 111 4.290374e+04 4762315.14 NA NA NA NULL
2020 Nyc Housing Authority Electrician’s Helper NA NA 1237392.73 2.097276e+04 19116.130 21949.50 59 1.911613e+04 1127851.67 NA NA NA NULL
2020 Nyc Housing Authority Elevator Mechanic NA NA 9217387.37 3.426538e+04 28325.710 119009.00 269 2.832571e+04 7619615.99 NA NA NA NULL
2020 Nyc Housing Authority Elevator Mechanic Helper NA NA 4165535.17 2.288756e+04 19967.890 80587.50 182 1.996789e+04 3634155.98 NA NA NA NULL
2020 Nyc Housing Authority Emergency Service Aide 40741.56140 2.322269e+06 180506.64 3.166783e+03 1067.550 6444.00 57 1.067550e+03 60850.35 2.502776e+06 2.383119e+06 119656.29 NULL
2020 Nyc Housing Authority Engineering Technician 78530.00000 1.570600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.570600e+05 1.570600e+05 0.00 NULL
2020 Nyc Housing Authority Executive Agency Counsel 138279.18000 6.913959e+06 0.00 0.000000e+00 0.000 0.00 50 0.000000e+00 0.00 6.913959e+06 6.913959e+06 0.00 NULL
2020 Nyc Housing Authority Executive Director 258000.00000 2.580000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.580000e+05 2.580000e+05 0.00 NULL
2020 Nyc Housing Authority Executive Program Specialist 132140.00000 2.642800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.642800e+05 2.642800e+05 0.00 NULL
2020 Nyc Housing Authority Fraud Investigator 62446.50000 1.248930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.248930e+05 1.248930e+05 0.00 NULL
2020 Nyc Housing Authority Geologist 95270.00000 9.527000e+04 625.75 6.257500e+02 625.750 8.00 1 6.257500e+02 625.75 9.589575e+04 9.589575e+04 0.00 NULL
2020 Nyc Housing Authority Glazier NA NA 442013.94 2.104828e+04 19974.470 5086.50 21 1.997447e+04 419463.87 NA NA NA NULL
2020 Nyc Housing Authority Graphic Artist 60049.00000 2.401960e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.401960e+05 2.401960e+05 0.00 NULL
2020 Nyc Housing Authority Hearing Examiner 128812.00000 3.864360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.864360e+05 3.864360e+05 0.00 NULL
2020 Nyc Housing Authority Heating Plant Technician 50522.30000 1.919847e+07 6515034.06 1.714483e+04 13418.110 187253.75 380 1.341811e+04 5098881.80 2.571351e+07 2.429736e+07 1416152.26 NULL
2020 Nyc Housing Authority Housing Assistant 56875.90121 5.181395e+07 1402930.79 1.539990e+03 0.000 37756.25 911 0.000000e+00 0.00 5.321688e+07 5.181395e+07 1402930.79 NULL
2020 Nyc Housing Authority Housing Development Specialist 85000.00000 8.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.500000e+04 8.500000e+04 0.00 NULL
2020 Nyc Housing Authority Housing Development Specialist Trainee 54468.25000 2.178730e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.178730e+05 2.178730e+05 0.00 NULL
2020 Nyc Housing Authority Housing Exterminator 50770.64964 6.955579e+06 367107.33 2.679616e+03 874.160 9698.25 137 8.741600e+02 119759.92 7.322686e+06 7.075339e+06 247347.41 NULL
2020 Nyc Housing Authority Housing Exterminator-Al Ii & Iii 57980.15789 1.101623e+06 267514.22 1.407970e+04 8227.490 6015.00 19 8.227490e+03 156322.31 1.369137e+06 1.257945e+06 111191.91 NULL
2020 Nyc Housing Authority Housing Exterminator-Al Iv 83754.33333 2.512630e+05 14850.69 4.950230e+03 5578.550 286.25 3 4.950230e+03 14850.69 2.661137e+05 2.661137e+05 0.00 NULL
2020 Nyc Housing Authority Housing Manager 90822.21596 1.934513e+07 1806123.88 8.479455e+03 6747.690 31055.00 213 6.747690e+03 1437257.97 2.115126e+07 2.078239e+07 368865.91 NULL
2020 Nyc Housing Authority Housing Stock Worker 51475.72000 1.286893e+06 10884.72 4.353888e+02 0.000 434.50 25 0.000000e+00 0.00 1.297778e+06 1.286893e+06 10884.72 NULL
2020 Nyc Housing Authority Industrial Hygienist 68172.50000 2.726900e+05 9704.02 2.426005e+03 0.000 216.00 4 0.000000e+00 0.00 2.823940e+05 2.726900e+05 9704.02 NULL
2020 Nyc Housing Authority Inspector 68176.07143 9.544650e+05 51535.13 3.681081e+03 1085.830 1067.25 14 1.085830e+03 15201.62 1.006000e+06 9.696666e+05 36333.51 NULL
2020 Nyc Housing Authority Inspector Boilers 81062.50000 3.242500e+05 33940.57 8.485142e+03 4813.215 659.00 4 4.813215e+03 19252.86 3.581906e+05 3.435029e+05 14687.71 NULL
2020 Nyc Housing Authority Inspector Elevators 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2020 Nyc Housing Authority Inspector General 158918.00000 1.589180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.589180e+05 1.589180e+05 0.00 NULL
2020 Nyc Housing Authority Insurance Advisor 60000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2020 Nyc Housing Authority Interpreter 54535.33333 3.272120e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.272120e+05 3.272120e+05 0.00 NULL
2020 Nyc Housing Authority Interpreter/Translator 57112.00000 3.426720e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.426720e+05 3.426720e+05 0.00 NULL
2020 Nyc Housing Authority Investigator 53795.42857 3.765680e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.765680e+05 3.765680e+05 0.00 NULL
2020 Nyc Housing Authority Labor Relations Analyst 62615.53846 8.140020e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 8.140020e+05 8.140020e+05 0.00 NULL
2020 Nyc Housing Authority Labor Relations Analyst Trainee 50667.00000 2.026680e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.026680e+05 2.026680e+05 0.00 NULL
2020 Nyc Housing Authority Landscape Architect 87776.00000 3.511040e+05 8267.96 2.066990e+03 2066.990 154.50 4 2.066990e+03 8267.96 3.593720e+05 3.593720e+05 0.00 NULL
2020 Nyc Housing Authority Lead Abatement Worker 52652.64706 1.790190e+06 106026.60 3.118429e+03 1466.660 2827.75 34 1.466660e+03 49866.44 1.896217e+06 1.840056e+06 56160.16 NULL
2020 Nyc Housing Authority Legal Secretarial Assistant 48882.00000 9.776400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.776400e+04 9.776400e+04 0.00 NULL
2020 Nyc Housing Authority Legal Secretarial Assistant - Al 1 Only 44069.00000 4.406900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.406900e+04 4.406900e+04 0.00 NULL
2020 Nyc Housing Authority Machinist NA NA 24247.42 4.849484e+03 1331.100 424.25 5 1.331100e+03 6655.50 NA NA NA NULL
2020 Nyc Housing Authority Maintenance Worker NA NA 18773736.78 1.422253e+04 11377.380 419414.75 1320 1.137738e+04 15018141.60 NA NA NA NULL
2020 Nyc Housing Authority Management Auditor 68114.41667 1.634746e+06 5513.22 2.297175e+02 12.430 160.00 24 1.243000e+01 298.32 1.640259e+06 1.635044e+06 5214.90 NULL
2020 Nyc Housing Authority Masons Helper NA NA 1130873.62 1.739806e+04 7501.600 20964.50 65 7.501600e+03 487604.00 NA NA NA NULL
2020 Nyc Housing Authority Mechanical Engineer 101939.80000 5.096990e+05 2395.51 4.791020e+02 50.250 41.00 5 5.025000e+01 251.25 5.120945e+05 5.099502e+05 2144.26 NULL
2020 Nyc Housing Authority Media Services Technician 62573.00000 6.257300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.257300e+04 6.257300e+04 0.00 NULL
2020 Nyc Housing Authority Motor Grader Operator NA NA 46965.44 4.696544e+04 46965.440 488.00 1 4.696544e+04 46965.44 NA NA NA NULL
2020 Nyc Housing Authority Motor Vehicle Operator 49030.13043 1.127693e+06 29603.88 1.287125e+03 73.690 875.25 23 7.369000e+01 1694.87 1.157297e+06 1.129388e+06 27909.01 NULL
2020 Nyc Housing Authority Office Machine Aide 34014.00000 3.401400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.401400e+04 3.401400e+04 0.00 NULL
2020 Nyc Housing Authority Oil Burner Specialist 67286.85714 4.710080e+05 249535.05 3.564786e+04 38240.510 5287.50 7 3.564786e+04 249535.05 7.205431e+05 7.205431e+05 0.00 NULL
2020 Nyc Housing Authority Oiler NA NA 56192.76 7.024095e+03 742.515 609.50 8 7.425150e+02 5940.12 NA NA NA NULL
2020 Nyc Housing Authority Painter NA NA 10183073.27 2.844434e+04 27738.470 162463.00 358 2.773847e+04 9930372.26 NA NA NA NULL
2020 Nyc Housing Authority Plasterer NA NA 10442970.49 3.469425e+04 35340.570 120113.00 301 3.469425e+04 10442970.49 NA NA NA NULL
2020 Nyc Housing Authority Plumber NA NA 10587065.29 7.842271e+04 82722.030 101094.00 135 7.842271e+04 10587065.29 NA NA NA NULL
2020 Nyc Housing Authority Plumber’s Helper NA NA 5362554.05 4.622891e+04 44044.425 67818.25 116 4.404443e+04 5109153.30 NA NA NA NULL
2020 Nyc Housing Authority Principal Administrative Associate - Non Supvr 62539.04545 6.879295e+06 13368.96 1.215360e+02 0.000 427.25 110 0.000000e+00 0.00 6.892664e+06 6.879295e+06 13368.96 NULL
2020 Nyc Housing Authority Printing Press Operator NA NA 3944.50 3.944500e+03 3944.500 64.50 1 3.944500e+03 3944.50 NA NA NA NULL
2020 Nyc Housing Authority Procurement Analyst 63759.53846 3.315496e+06 47926.19 9.216575e+02 0.000 1075.25 52 0.000000e+00 0.00 3.363422e+06 3.315496e+06 47926.19 NULL
2020 Nyc Housing Authority Project Manager 72424.00000 1.448480e+05 17431.02 8.715510e+03 8715.510 291.75 2 8.715510e+03 17431.02 1.622790e+05 1.622790e+05 0.00 NULL
2020 Nyc Housing Authority Public Health Sanitarian 58898.60000 2.944930e+05 2677.51 5.355020e+02 695.470 77.00 5 5.355020e+02 2677.51 2.971705e+05 2.971705e+05 0.00 NULL
2020 Nyc Housing Authority Public Records Aide 52426.00000 5.242600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.242600e+04 5.242600e+04 0.00 NULL
2020 Nyc Housing Authority Quality Assurance Specialist 54355.66667 1.630670e+05 634.02 2.113400e+02 274.710 19.00 3 2.113400e+02 634.02 1.637010e+05 1.637010e+05 0.00 NULL
2020 Nyc Housing Authority Recreation Director 52184.00000 5.218400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.218400e+04 5.218400e+04 0.00 NULL
2020 Nyc Housing Authority Research Assistant 57366.53846 7.457650e+05 1897.91 1.459931e+02 0.000 42.00 13 0.000000e+00 0.00 7.476629e+05 7.457650e+05 1897.91 NULL
2020 Nyc Housing Authority Resident Building Superintendent 87677.18651 2.209465e+07 4588664.19 1.820898e+04 11911.120 77043.25 252 1.191112e+04 3001602.24 2.668332e+07 2.509625e+07 1587061.95 NULL
2020 Nyc Housing Authority Roofer NA NA 332857.59 1.331430e+04 4062.320 5439.25 25 4.062320e+03 101558.00 NA NA NA NULL
2020 Nyc Housing Authority Secretary 43632.72461 1.932930e+07 221944.72 5.010039e+02 0.000 8049.25 443 0.000000e+00 0.00 1.955124e+07 1.932930e+07 221944.72 NULL
2020 Nyc Housing Authority Secretary To Deputy Executive Director 87417.00000 1.748340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.748340e+05 1.748340e+05 0.00 NULL
2020 Nyc Housing Authority Secretary To Executive Director 85276.00000 1.705520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.705520e+05 1.705520e+05 0.00 NULL
2020 Nyc Housing Authority Secretary To Member 80871.00000 8.087100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.087100e+04 8.087100e+04 0.00 NULL
2020 Nyc Housing Authority Secretary To The Chairman 82876.00000 8.287600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.287600e+04 8.287600e+04 0.00 NULL
2020 Nyc Housing Authority Senior Estimator 84771.00000 5.086260e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.086260e+05 5.086260e+05 0.00 NULL
2020 Nyc Housing Authority Senior General Deputy Manager 223707.00000 2.237070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.237070e+05 2.237070e+05 0.00 NULL
2020 Nyc Housing Authority Senior Intergroup Relations Officer 97206.00000 2.916180e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.916180e+05 2.916180e+05 0.00 NULL
2020 Nyc Housing Authority Social Worker 58877.87500 4.710230e+05 266.88 3.336000e+01 0.000 8.00 8 0.000000e+00 0.00 4.712899e+05 4.710230e+05 266.88 NULL
2020 Nyc Housing Authority Space Analyst 76016.00000 1.520320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.520320e+05 1.520320e+05 0.00 NULL
2020 Nyc Housing Authority Special Assistant To The Deputy Executive Director 115352.00000 8.074640e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.074640e+05 8.074640e+05 0.00 NULL
2020 Nyc Housing Authority Special Assistant To The Executive Director 149287.00000 1.492870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.492870e+05 1.492870e+05 0.00 NULL
2020 Nyc Housing Authority Special Officer 48676.28571 3.407340e+05 9271.14 1.324449e+03 2121.960 265.25 7 1.324449e+03 9271.14 3.500051e+05 3.500051e+05 0.00 NULL
2020 Nyc Housing Authority Staff Analyst 66608.94444 2.397922e+06 1058.96 2.941556e+01 0.000 26.75 36 0.000000e+00 0.00 2.398981e+06 2.397922e+06 1058.96 NULL
2020 Nyc Housing Authority Staff Analyst Trainee 43282.00000 1.731280e+05 77.71 1.942750e+01 0.000 3.00 4 0.000000e+00 0.00 1.732057e+05 1.731280e+05 77.71 NULL
2020 Nyc Housing Authority Statistician 80307.00000 3.212280e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.212280e+05 3.212280e+05 0.00 NULL
2020 Nyc Housing Authority Summer College Intern 15643.00000 1.564300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.564300e+04 1.564300e+04 0.00 NULL
2020 Nyc Housing Authority Supervising Computer Service Technician 71559.75000 2.862390e+05 8575.27 2.143818e+03 1239.755 185.00 4 1.239755e+03 4959.02 2.948143e+05 2.911980e+05 3616.25 NULL
2020 Nyc Housing Authority Supervising Housing Groundskeeper 60555.69277 1.005224e+07 3186292.96 1.919454e+04 17406.475 70261.00 166 1.740647e+04 2889474.85 1.323854e+07 1.294172e+07 296818.11 NULL
2020 Nyc Housing Authority Supervising Special Officer 55853.00000 1.117060e+05 1126.12 5.630600e+02 563.060 31.75 2 5.630600e+02 1126.12 1.128321e+05 1.128321e+05 0.00 NULL
2020 Nyc Housing Authority Supervisor 63250.00000 1.897500e+05 5884.09 1.961363e+03 381.820 127.25 3 3.818200e+02 1145.46 1.956341e+05 1.908955e+05 4738.63 NULL
2020 Nyc Housing Authority Supervisor Bricklayer NA NA 1129715.04 8.069393e+04 96646.560 13081.50 14 8.069393e+04 1129715.04 NA NA NA NULL
2020 Nyc Housing Authority Supervisor Carpenter NA NA 783651.06 4.353617e+04 44339.180 9747.75 18 4.353617e+04 783651.06 NA NA NA NULL
2020 Nyc Housing Authority Supervisor Electrician NA NA 844532.44 6.032375e+04 60690.345 8870.75 14 6.032375e+04 844532.44 NA NA NA NULL
2020 Nyc Housing Authority Supervisor Elevator Mechanic NA NA 1072340.56 3.574469e+04 38568.535 11807.25 30 3.574469e+04 1072340.56 NA NA NA NULL
2020 Nyc Housing Authority Supervisor Glazier NA NA 202822.70 5.070568e+04 47228.555 2273.25 4 4.722856e+04 188914.22 NA NA NA NULL
2020 Nyc Housing Authority Supervisor Ii Social Work 76408.00000 1.069712e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.069712e+06 1.069712e+06 0.00 NULL
2020 Nyc Housing Authority Supervisor Of Electrical Installations & Maintenance 87959.66667 2.638790e+05 872.68 2.908933e+02 0.000 14.00 3 0.000000e+00 0.00 2.647517e+05 2.638790e+05 872.68 NULL
2020 Nyc Housing Authority Supervisor Of Elevator Maintenance 153114.00000 3.062280e+05 22581.08 1.129054e+04 11290.540 244.00 2 1.129054e+04 22581.08 3.288091e+05 3.288091e+05 0.00 NULL
2020 Nyc Housing Authority Supervisor Of Housing Caretaker 59408.63362 1.378280e+07 3703240.82 1.596224e+04 14909.260 81685.50 232 1.490926e+04 3458948.32 1.748604e+07 1.724175e+07 244292.50 NULL
2020 Nyc Housing Authority Supervisor Of Housing Stock Workers 73488.42105 1.396280e+06 126181.61 6.641137e+03 154.020 2224.75 19 1.540200e+02 2926.38 1.522462e+06 1.399206e+06 123255.23 NULL
2020 Nyc Housing Authority Supervisor Of Mechanical Installations & Maintenance 82708.00000 2.398532e+06 67634.34 2.332219e+03 0.000 947.50 29 0.000000e+00 0.00 2.466166e+06 2.398532e+06 67634.34 NULL
2020 Nyc Housing Authority Supervisor Of Motor Transport 71906.00000 7.190600e+04 2606.73 2.606730e+03 2606.730 55.75 1 2.606730e+03 2606.73 7.451273e+04 7.451273e+04 0.00 NULL
2020 Nyc Housing Authority Supervisor Of Office Machine Operations 43046.00000 8.609200e+04 25.59 1.279500e+01 12.795 1.00 2 1.279500e+01 25.59 8.611759e+04 8.611759e+04 0.00 NULL
2020 Nyc Housing Authority Supervisor Painter NA NA 5663326.53 4.967830e+04 47855.520 78998.25 114 4.785552e+04 5455529.28 NA NA NA NULL
2020 Nyc Housing Authority Supervisor Plasterer NA NA 2286755.17 6.725751e+04 69325.605 25348.50 34 6.725751e+04 2286755.17 NA NA NA NULL
2020 Nyc Housing Authority Supervisor Plumber NA NA 1849774.85 1.088103e+05 121638.090 16758.75 17 1.088103e+05 1849774.85 NA NA NA NULL
2020 Nyc Housing Authority Supervisor Roofer NA NA 237305.76 3.955096e+04 32197.610 3531.25 6 3.219761e+04 193185.66 NA NA NA NULL
2020 Nyc Housing Authority Telecommunication Manager 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2020 Nyc Housing Authority Telecommunications Associate 86989.00000 9.568790e+05 56180.21 5.107292e+03 5482.540 893.25 11 5.107292e+03 56180.21 1.013059e+06 1.013059e+06 0.00 NULL
2020 Nyc Housing Authority Welder NA NA 501235.91 5.569288e+04 60035.670 4837.00 9 5.569288e+04 501235.91 NA NA NA NULL
2020 Nyc Housing Authority Worker’s Compensation Benefits Examiner 56062.50000 1.121250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.121250e+05 1.121250e+05 0.00 NULL
2020 Nyc Police Pension Fund Accountant 75782.33333 2.273470e+05 13283.58 4.427860e+03 0.000 201.50 3 0.000000e+00 0.00 2.406306e+05 2.273470e+05 13283.58 NULL
2020 Nyc Police Pension Fund Adm Manager-Non-Mgrl 81986.00000 8.198600e+04 7254.58 7.254580e+03 7254.580 111.75 1 7.254580e+03 7254.58 8.924058e+04 8.924058e+04 0.00 NULL
2020 Nyc Police Pension Fund Administrative Accountant 155123.00000 3.102460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.102460e+05 3.102460e+05 0.00 NULL
2020 Nyc Police Pension Fund Administrative Procurement Analyst 160512.00000 1.605120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.605120e+05 1.605120e+05 0.00 NULL
2020 Nyc Police Pension Fund Administrative Real Property Manager 114402.00000 1.144020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.144020e+05 1.144020e+05 0.00 NULL
2020 Nyc Police Pension Fund Administrative Retirement Benefits Specialist 133889.25000 1.606671e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.606671e+06 1.606671e+06 0.00 NULL
2020 Nyc Police Pension Fund Administrative Staff Analyst 128761.00000 3.862830e+05 6981.91 2.327303e+03 1167.770 97.25 3 1.167770e+03 3503.31 3.932649e+05 3.897863e+05 3478.60 NULL
2020 Nyc Police Pension Fund Assistant Retirement Benefits Examiner 55929.50000 3.355770e+05 9243.79 1.540632e+03 26.275 314.25 6 2.627500e+01 157.65 3.448208e+05 3.357347e+05 9086.14 NULL
2020 Nyc Police Pension Fund Associate Retirement Benefits Examiner 73744.10000 7.374410e+05 33520.77 3.352077e+03 3492.660 701.25 10 3.352077e+03 33520.77 7.709618e+05 7.709618e+05 0.00 NULL
2020 Nyc Police Pension Fund Associate Staff Analyst 85591.00000 8.559100e+04 849.49 8.494900e+02 849.490 17.75 1 8.494900e+02 849.49 8.644049e+04 8.644049e+04 0.00 NULL
2020 Nyc Police Pension Fund Certified It Administrator 133684.50000 2.673690e+05 43694.99 2.184749e+04 21847.495 470.75 2 2.184749e+04 43694.99 3.110640e+05 3.110640e+05 0.00 NULL
2020 Nyc Police Pension Fund Certified It Developer 122132.00000 1.221320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.221320e+05 1.221320e+05 0.00 NULL
2020 Nyc Police Pension Fund Clerical Aide 36500.40000 1.825020e+05 263.76 5.275200e+01 0.000 12.50 5 0.000000e+00 0.00 1.827658e+05 1.825020e+05 263.76 NULL
2020 Nyc Police Pension Fund Clerical Associate 54344.52143 7.608233e+05 18876.12 1.348294e+03 51.185 474.50 14 5.118500e+01 716.59 7.796994e+05 7.615399e+05 18159.53 NULL
2020 Nyc Police Pension Fund College Aide 5079.37500 5.079375e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.079375e+03 5.079375e+03 0.00 NULL
2020 Nyc Police Pension Fund Community Assistant 43538.16667 2.612290e+05 2612.85 4.354750e+02 64.045 82.75 6 6.404500e+01 384.27 2.638418e+05 2.616133e+05 2228.58 NULL
2020 Nyc Police Pension Fund Community Associate 48232.51613 1.495208e+06 52186.30 1.683429e+03 33.970 1514.50 31 3.397000e+01 1053.07 1.547394e+06 1.496261e+06 51133.23 NULL
2020 Nyc Police Pension Fund Community Coordinator 81582.10000 8.158210e+05 8584.10 8.584100e+02 0.000 177.00 10 0.000000e+00 0.00 8.244051e+05 8.158210e+05 8584.10 NULL
2020 Nyc Police Pension Fund Computer Aide-Non-Spvr 48758.00000 4.875800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.875800e+04 4.875800e+04 0.00 NULL
2020 Nyc Police Pension Fund Computer Associate 59327.00000 5.932700e+04 1777.90 1.777900e+03 1777.900 41.75 1 1.777900e+03 1777.90 6.110490e+04 6.110490e+04 0.00 NULL
2020 Nyc Police Pension Fund Computer Specialist 129230.00000 3.876900e+05 14587.43 4.862477e+03 44.500 177.75 3 4.450000e+01 133.50 4.022774e+05 3.878235e+05 14453.93 NULL
2020 Nyc Police Pension Fund Computer Systems Manager 180723.00000 9.036150e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.036150e+05 9.036150e+05 0.00 NULL
2020 Nyc Police Pension Fund Customer Information Representative Ma L 1549 62262.00000 3.735720e+05 19721.93 3.286988e+03 404.790 465.00 6 4.047900e+02 2428.74 3.932939e+05 3.760007e+05 17293.19 NULL
2020 Nyc Police Pension Fund Deputy Director 219424.00000 4.388480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.388480e+05 4.388480e+05 0.00 NULL
2020 Nyc Police Pension Fund Executive Agency Counsel 150222.50000 3.004450e+05 5216.80 2.608400e+03 2608.400 66.25 2 2.608400e+03 5216.80 3.056618e+05 3.056618e+05 0.00 NULL
2020 Nyc Police Pension Fund Executive Director 240511.00000 2.405110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.405110e+05 2.405110e+05 0.00 NULL
2020 Nyc Police Pension Fund Investment Analyst 69219.50000 1.384390e+05 212.40 1.062000e+02 106.200 5.00 2 1.062000e+02 212.40 1.386514e+05 1.386514e+05 0.00 NULL
2020 Nyc Police Pension Fund Management Auditor 80220.66667 2.406620e+05 15436.54 5.145513e+03 4721.150 300.25 3 4.721150e+03 14163.45 2.560985e+05 2.548255e+05 1273.09 NULL
2020 Nyc Police Pension Fund Paralegal Aide 63304.50000 1.266090e+05 374.76 1.873800e+02 187.380 9.00 2 1.873800e+02 374.76 1.269838e+05 1.269838e+05 0.00 NULL
2020 Nyc Police Pension Fund Principal Administrative Associate - Non Supvr 71234.44444 6.411100e+05 23733.16 2.637018e+03 1379.870 529.25 9 1.379870e+03 12418.83 6.648432e+05 6.535288e+05 11314.33 NULL
2020 Nyc Police Pension Fund Procurement Analyst 76797.00000 7.679700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.679700e+04 7.679700e+04 0.00 NULL
2020 Nyc Police Pension Fund Secretary To The Executive Director 202658.00000 2.026580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.026580e+05 2.026580e+05 0.00 NULL
2020 Nyc Police Pension Fund Staff Analyst 57590.00000 5.759000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.759000e+04 5.759000e+04 0.00 NULL
2020 Nyc Police Pension Fund Supervisor Of Office Machine Operations 66671.00000 6.667100e+04 316.50 3.165000e+02 316.500 7.00 1 3.165000e+02 316.50 6.698750e+04 6.698750e+04 0.00 NULL
2020 Off Of Payroll Administration Accountant 71714.75000 2.868590e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.868590e+05 2.868590e+05 0.00 NULL
2020 Off Of Payroll Administration Adm Manager-Non-Mgrl 83988.72727 9.238760e+05 426.74 3.879455e+01 0.000 9.00 11 0.000000e+00 0.00 9.243027e+05 9.238760e+05 426.74 NULL
2020 Off Of Payroll Administration Admin Contract Specialist 148592.00000 1.485920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.485920e+05 1.485920e+05 0.00 NULL
2020 Off Of Payroll Administration Administrative Accountant 112013.14286 7.840920e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.840920e+05 7.840920e+05 0.00 NULL
2020 Off Of Payroll Administration Administrative Public Information Specialist 138732.00000 1.387320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.387320e+05 1.387320e+05 0.00 NULL
2020 Off Of Payroll Administration Administrative Staff Analyst 113984.68750 1.823755e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.823755e+06 1.823755e+06 0.00 NULL
2020 Off Of Payroll Administration Associate Staff Analyst 80803.66667 4.848220e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.848220e+05 4.848220e+05 0.00 NULL
2020 Off Of Payroll Administration Bookkeeper 62391.00000 1.247820e+05 237.09 1.185450e+02 118.545 6.50 2 1.185450e+02 237.09 1.250191e+05 1.250191e+05 0.00 NULL
2020 Off Of Payroll Administration Certified It Administrator 103169.00000 1.031690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.031690e+05 1.031690e+05 0.00 NULL
2020 Off Of Payroll Administration Certified It Developer 123537.00000 1.235370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.235370e+05 1.235370e+05 0.00 NULL
2020 Off Of Payroll Administration Clerical Associate 51889.88235 8.821280e+05 13752.66 8.089800e+02 0.000 396.75 17 0.000000e+00 0.00 8.958807e+05 8.821280e+05 13752.66 NULL
2020 Off Of Payroll Administration College Aide 5381.22917 1.614369e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.614369e+04 1.614369e+04 0.00 NULL
2020 Off Of Payroll Administration Community Assistant 38726.00000 3.872600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.872600e+04 3.872600e+04 0.00 NULL
2020 Off Of Payroll Administration Community Associate 54210.25000 2.168410e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.168410e+05 2.168410e+05 0.00 NULL
2020 Off Of Payroll Administration Community Coordinator 75540.00000 2.266200e+05 1868.15 6.227167e+02 92.900 45.75 3 9.290000e+01 278.70 2.284881e+05 2.268987e+05 1589.45 NULL
2020 Off Of Payroll Administration Computer Associate 80720.40000 4.036020e+05 313.20 6.264000e+01 0.000 6.00 5 0.000000e+00 0.00 4.039152e+05 4.036020e+05 313.20 NULL
2020 Off Of Payroll Administration Computer Programmer Analyst 67904.00000 1.358080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.358080e+05 1.358080e+05 0.00 NULL
2020 Off Of Payroll Administration Computer Specialist 107563.68750 1.721019e+06 7655.19 4.784494e+02 0.000 98.75 16 0.000000e+00 0.00 1.728674e+06 1.721019e+06 7655.19 NULL
2020 Off Of Payroll Administration Computer Systems Manager 130989.05556 2.357803e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.357803e+06 2.357803e+06 0.00 NULL
2020 Off Of Payroll Administration Custodian 61017.00000 6.101700e+04 9398.19 9.398190e+03 9398.190 217.00 1 9.398190e+03 9398.19 7.041519e+04 7.041519e+04 0.00 NULL
2020 Off Of Payroll Administration Customer Information Representative Ma L 1549 91597.75000 3.663910e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.663910e+05 3.663910e+05 0.00 NULL
2020 Off Of Payroll Administration Executive Agency Counsel 167455.00000 1.674550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.674550e+05 1.674550e+05 0.00 NULL
2020 Off Of Payroll Administration Executive Director 238848.00000 2.388480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.388480e+05 2.388480e+05 0.00 NULL
2020 Off Of Payroll Administration Management Auditor 84611.00000 2.538330e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.538330e+05 2.538330e+05 0.00 NULL
2020 Off Of Payroll Administration New York City Public Service Fellow 46350.00000 4.635000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.635000e+04 4.635000e+04 0.00 NULL
2020 Off Of Payroll Administration Nycaps Process Analyst 95698.50000 1.913970e+05 261.44 1.307200e+02 130.720 4.75 2 1.307200e+02 261.44 1.916584e+05 1.916584e+05 0.00 NULL
2020 Off Of Payroll Administration Principal Administrative Associate - Non Supvr 70118.24000 1.752956e+06 5191.45 2.076580e+02 0.000 101.75 25 0.000000e+00 0.00 1.758147e+06 1.752956e+06 5191.45 NULL
2020 Off Of Payroll Administration Staff Analyst 67671.44444 6.090430e+05 427.39 4.748778e+01 0.000 11.75 9 0.000000e+00 0.00 6.094704e+05 6.090430e+05 427.39 NULL
2020 Off Of Payroll Administration Supervisor Of Stock Workers 52750.00000 5.275000e+04 1335.01 1.335010e+03 1335.010 36.75 1 1.335010e+03 1335.01 5.408501e+04 5.408501e+04 0.00 NULL
2020 Off Of Payroll Administration Telecommunications Manager 69826.00000 6.982600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.982600e+04 6.982600e+04 0.00 NULL
2020 Office Of Collective Bargainin Administrative Staff Analyst 151575.00000 1.515750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.515750e+05 1.515750e+05 0.00 NULL
2020 Office Of Collective Bargainin College Aide - Assignment Levels Ii And Iii 4199.74400 4.199744e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.199744e+03 4.199744e+03 0.00 NULL
2020 Office Of Collective Bargainin Community Associate 55323.00000 5.532300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.532300e+04 5.532300e+04 0.00 NULL
2020 Office Of Collective Bargainin Computer Systems Manager 110149.00000 1.101490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.101490e+05 1.101490e+05 0.00 NULL
2020 Office Of Collective Bargainin Deputy Director 197965.50000 3.959310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.959310e+05 3.959310e+05 0.00 NULL
2020 Office Of Collective Bargainin Director Of Information And Research 161719.00000 1.617190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.617190e+05 1.617190e+05 0.00 NULL
2020 Office Of Collective Bargainin Director Of The Office Of Collective Bargaining 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2020 Office Of Collective Bargainin Labor Relations Trial Examiner 129026.83333 7.741610e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.741610e+05 7.741610e+05 0.00 NULL
2020 Office Of Collective Bargainin Legal Secretarial Assistant 47000.00000 4.700000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.700000e+04 4.700000e+04 0.00 NULL
2020 Office Of Collective Bargainin Secretary To The Deputy Chair 60752.00000 6.075200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.075200e+04 6.075200e+04 0.00 NULL
2020 Office Of Collective Bargainin Secy To The Director Of Collective Bargaining 85190.00000 8.519000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.519000e+04 8.519000e+04 0.00 NULL
2020 Office Of Collective Bargainin Staff Analyst 73180.00000 7.318000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.318000e+04 7.318000e+04 0.00 NULL
2020 Office Of Emergency Management Administrative Public Information Specialist 118306.00000 1.183060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.183060e+05 1.183060e+05 0.00 NULL
2020 Office Of Emergency Management Agency Attorney 79104.00000 3.164160e+05 51580.28 1.289507e+04 10216.240 812.00 4 1.021624e+04 40864.96 3.679963e+05 3.572810e+05 10715.32 NULL
2020 Office Of Emergency Management Certified It Administrator 137245.00000 1.372450e+05 32614.35 3.261435e+04 32614.350 326.50 1 3.261435e+04 32614.35 1.698594e+05 1.698594e+05 0.00 NULL
2020 Office Of Emergency Management Commissioner Of Emergency Management 239629.50000 4.792590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.792590e+05 4.792590e+05 0.00 NULL
2020 Office Of Emergency Management Community Associate 46445.50000 9.289100e+04 19751.62 9.875810e+03 9875.810 526.00 2 9.875810e+03 19751.62 1.126426e+05 1.126426e+05 0.00 NULL
2020 Office Of Emergency Management Community Coordinator 70900.00000 7.090000e+04 41242.45 4.124245e+04 41242.450 771.50 1 4.124245e+04 41242.45 1.121424e+05 1.121424e+05 0.00 NULL
2020 Office Of Emergency Management Deputy Commissioner 186060.00000 3.721200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.721200e+05 3.721200e+05 0.00 NULL
2020 Office Of Emergency Management Emergency Preparedness Manager 109430.57872 1.028647e+07 812.52 8.643830e+00 0.000 18.25 94 0.000000e+00 0.00 1.028729e+07 1.028647e+07 812.52 NULL
2020 Office Of Emergency Management Emergency Preparedness Specialist 71405.78001 9.068534e+06 1698442.56 1.337356e+04 10630.760 32448.75 127 1.063076e+04 1350106.52 1.076698e+07 1.041864e+07 348336.04 NULL
2020 Office Of Emergency Management Executive Agency Counsel 157971.50000 3.159430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.159430e+05 3.159430e+05 0.00 NULL
2020 Office Of Emergency Management First Deputy Commissioner 224538.00000 2.245380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.245380e+05 2.245380e+05 0.00 NULL
2020 Office Of Labor Relations Accountant 73391.00000 2.201730e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.201730e+05 2.201730e+05 0.00 NULL
2020 Office Of Labor Relations Adm Manager-Non-Mgrl 125154.00000 1.251540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.251540e+05 1.251540e+05 0.00 NULL
2020 Office Of Labor Relations Admin Community Relations Specialist 60248.00000 6.024800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.024800e+04 6.024800e+04 0.00 NULL
2020 Office Of Labor Relations Administrative Labor Relations Analyst 125081.71429 8.755720e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.755720e+05 8.755720e+05 0.00 NULL
2020 Office Of Labor Relations Administrative Manager 104000.75000 4.160030e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.160030e+05 4.160030e+05 0.00 NULL
2020 Office Of Labor Relations Administrative Staff Analyst 145332.00000 1.453320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.453320e+05 1.453320e+05 0.00 NULL
2020 Office Of Labor Relations Agency Attorney 94986.00000 1.899720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.899720e+05 1.899720e+05 0.00 NULL
2020 Office Of Labor Relations Agency Chief Contracting Officer 93372.00000 9.337200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.337200e+04 9.337200e+04 0.00 NULL
2020 Office Of Labor Relations Assistant Commissioner Of Labor Relations 172851.00000 1.382808e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.382808e+06 1.382808e+06 0.00 NULL
2020 Office Of Labor Relations Associate Counsel 163243.00000 1.632430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.632430e+05 1.632430e+05 0.00 NULL
2020 Office Of Labor Relations Associate Labor Relations Analyst 82400.00000 1.648000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.648000e+05 1.648000e+05 0.00 NULL
2020 Office Of Labor Relations Associate Staff Analyst 75591.00000 2.267730e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.267730e+05 2.267730e+05 0.00 NULL
2020 Office Of Labor Relations Bookkeeper 53705.00000 5.370500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.370500e+04 5.370500e+04 0.00 NULL
2020 Office Of Labor Relations City Research Scientist 84716.84615 1.101319e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.101319e+06 1.101319e+06 0.00 NULL
2020 Office Of Labor Relations Clerical Associate 46976.20361 4.227858e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.227858e+05 4.227858e+05 0.00 NULL
2020 Office Of Labor Relations Commissioner Of Labor Relations 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2020 Office Of Labor Relations Community Assistant 39766.75920 3.976676e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 3.976676e+05 3.976676e+05 0.00 NULL
2020 Office Of Labor Relations Community Associate 44204.90909 9.725080e+05 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 9.725080e+05 9.725080e+05 0.00 NULL
2020 Office Of Labor Relations Community Coordinator 68872.75000 1.928437e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 1.928437e+06 1.928437e+06 0.00 NULL
2020 Office Of Labor Relations Computer Specialist 103813.00000 2.076260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.076260e+05 2.076260e+05 0.00 NULL
2020 Office Of Labor Relations Computer Systems Manager 144585.50000 2.891710e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.891710e+05 2.891710e+05 0.00 NULL
2020 Office Of Labor Relations Customer Information Representative Ma L 1549 48966.00000 4.896600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.896600e+04 4.896600e+04 0.00 NULL
2020 Office Of Labor Relations Deputy Assistant Counsel 88839.10000 8.883910e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 8.883910e+05 8.883910e+05 0.00 NULL
2020 Office Of Labor Relations Deputy Commissioner Of Labor Relations 228711.00000 4.574220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.574220e+05 4.574220e+05 0.00 NULL
2020 Office Of Labor Relations Director 135653.00000 1.356530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.356530e+05 1.356530e+05 0.00 NULL
2020 Office Of Labor Relations Employee Assistance Program Specialist 65086.00000 3.254300e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.254300e+05 3.254300e+05 0.00 NULL
2020 Office Of Labor Relations Employee Health Benefits Program Director 218802.00000 2.188020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.188020e+05 2.188020e+05 0.00 NULL
2020 Office Of Labor Relations Executive Agency Counsel 166689.00000 3.333780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.333780e+05 3.333780e+05 0.00 NULL
2020 Office Of Labor Relations Insurance Advisor 62684.00000 6.268400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.268400e+04 6.268400e+04 0.00 NULL
2020 Office Of Labor Relations Labor Relations Analyst 66344.33333 5.970990e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.970990e+05 5.970990e+05 0.00 NULL
2020 Office Of Labor Relations Principal Administrative Associate - Non Supvr 64593.56989 9.689035e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 9.689035e+05 9.689035e+05 0.00 NULL
2020 Office Of Labor Relations Secretary 43390.00000 8.678000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.678000e+04 8.678000e+04 0.00 NULL
2020 Office Of Labor Relations Secretary To The Commissioner Of Labor Relations 91311.00000 9.131100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.131100e+04 9.131100e+04 0.00 NULL
2020 Office Of Labor Relations Staff Analyst 64671.50000 1.293430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.293430e+05 1.293430e+05 0.00 NULL
2020 Office Of Labor Relations Supervisor Of Office Machine Operations 61808.00000 6.180800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.180800e+04 6.180800e+04 0.00 NULL
2020 Office Of Labor Relations Tests And Measurement Specialist 84247.00000 8.424700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.424700e+04 8.424700e+04 0.00 NULL
2020 Office Of Management & Budget Adm Manager-Non-Mgrl 73403.00000 7.340300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.340300e+04 7.340300e+04 0.00 NULL
2020 Office Of Management & Budget Administrative Manager 182304.00000 1.823040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.823040e+05 1.823040e+05 0.00 NULL
2020 Office Of Management & Budget Administrative Staff Analyst 163542.50000 1.308340e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.308340e+06 1.308340e+06 0.00 NULL
2020 Office Of Management & Budget Architect 112700.00000 1.127000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.127000e+05 1.127000e+05 0.00 NULL
2020 Office Of Management & Budget Budget Analyst 91441.62852 3.904558e+07 380370.71 8.907979e+02 0.000 8504.50 427 0.000000e+00 0.00 3.942595e+07 3.904558e+07 380370.71 NULL
2020 Office Of Management & Budget College Aide 7781.91750 6.225534e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.225534e+04 6.225534e+04 0.00 NULL
2020 Office Of Management & Budget Community Associate 42000.00000 4.200000e+04 2851.47 2.851470e+03 2851.470 111.50 1 2.851470e+03 2851.47 4.485147e+04 4.485147e+04 0.00 NULL
2020 Office Of Management & Budget Computer Operations Manager 129082.00000 1.290820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.290820e+05 1.290820e+05 0.00 NULL
2020 Office Of Management & Budget Computer Specialist 82234.00000 8.223400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.223400e+04 8.223400e+04 0.00 NULL
2020 Office Of Management & Budget Computer Systems Manager 174351.75000 6.974070e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.974070e+05 6.974070e+05 0.00 NULL
2020 Office Of Management & Budget Deputy General Counsel 173216.00000 1.732160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.732160e+05 1.732160e+05 0.00 NULL
2020 Office Of Management & Budget Director Of Financing Policy Coordination 222924.00000 2.229240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.229240e+05 2.229240e+05 0.00 NULL
2020 Office Of Management & Budget Director Of Management & Budget 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2020 Office Of Management & Budget Executive Agency Counsel 222924.00000 2.229240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.229240e+05 2.229240e+05 0.00 NULL
2020 Office Of Management & Budget Statistical Secretary 67218.15385 8.738360e+05 6504.13 5.003177e+02 0.000 148.00 13 0.000000e+00 0.00 8.803401e+05 8.738360e+05 6504.13 NULL
2020 Office Of Management & Budget Summer College Intern 4285.19700 2.142599e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.142599e+04 2.142599e+04 0.00 NULL
2020 Office Of Management & Budget Summer Graduate Intern 4670.88000 1.401264e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.401264e+04 1.401264e+04 0.00 NULL
2020 Office Of Management & Budget Supervisor Of Office Machine Operations 52126.00000 5.212600e+04 3962.68 3.962680e+03 3962.680 109.75 1 3.962680e+03 3962.68 5.608868e+04 5.608868e+04 0.00 NULL
2020 Office Of The Actuary Actuarial Specialist Level I 78241.19048 1.643065e+06 98.68 4.699048e+00 0.000 2.25 21 0.000000e+00 0.00 1.643164e+06 1.643065e+06 98.68 NULL
2020 Office Of The Actuary Actuarial Specialist Level Ii, Oj 104990.00000 1.049900e+05 77.33 7.733000e+01 77.330 0.00 1 7.733000e+01 77.33 1.050673e+05 1.050673e+05 0.00 NULL
2020 Office Of The Actuary Administrative Actuary 177071.75000 2.124861e+06 3.82 3.183333e-01 0.000 0.00 12 0.000000e+00 0.00 2.124865e+06 2.124861e+06 3.82 NULL
2020 Office Of The Actuary Administrative Public Information Specialist 104675.00000 1.046750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.046750e+05 1.046750e+05 0.00 NULL
2020 Office Of The Actuary Administrative Staff Analyst 110136.50000 2.202730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.202730e+05 2.202730e+05 0.00 NULL
2020 Office Of The Actuary Certified It Administrator 94702.00000 9.470200e+04 1223.30 1.223300e+03 1223.300 0.00 1 1.223300e+03 1223.30 9.592530e+04 9.592530e+04 0.00 NULL
2020 Office Of The Actuary Chief Actuary 311885.00000 3.118850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.118850e+05 3.118850e+05 0.00 NULL
2020 Office Of The Actuary Community Associate 50000.00000 5.000000e+04 15537.55 1.553755e+04 15537.550 472.75 1 1.553755e+04 15537.55 6.553755e+04 6.553755e+04 0.00 NULL
2020 Office Of The Actuary Computer Systems Manager 187991.00000 1.879910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.879910e+05 1.879910e+05 0.00 NULL
2020 Office Of The Actuary Executive Agency Counsel 161625.00000 3.232500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.232500e+05 3.232500e+05 0.00 NULL
2020 Office Of The Actuary Principal Administrative Associate - Non Supvr 78931.00000 7.893100e+04 30.96 3.096000e+01 30.960 0.00 1 3.096000e+01 30.96 7.896196e+04 7.896196e+04 0.00 NULL
2020 Office Of The Actuary Procurement Analyst 56911.00000 5.691100e+04 1025.54 1.025540e+03 1025.540 26.50 1 1.025540e+03 1025.54 5.793654e+04 5.793654e+04 0.00 NULL
2020 Office Of The Actuary Secretary 61239.00000 6.123900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.123900e+04 6.123900e+04 0.00 NULL
2020 Office Of The Actuary Secretary To The Chief Actuary 54104.00000 5.410400e+04 641.10 6.411000e+02 641.100 20.25 1 6.411000e+02 641.10 5.474510e+04 5.474510e+04 0.00 NULL
2020 Office Of The Comptroller Accountant 62156.62338 4.786060e+06 24909.60 3.235013e+02 0.000 533.75 77 0.000000e+00 0.00 4.810970e+06 4.786060e+06 24909.60 NULL
2020 Office Of The Comptroller Adm Manager-Non-Mgrl 72655.58537 2.978879e+06 5575.84 1.359961e+02 0.000 104.50 41 0.000000e+00 0.00 2.984455e+06 2.978879e+06 5575.84 NULL
2020 Office Of The Comptroller Admin Community Relations Specialist 71434.75000 2.857390e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.857390e+05 2.857390e+05 0.00 NULL
2020 Office Of The Comptroller Administrative Accountant 122720.45455 2.699850e+06 973.18 4.423545e+01 0.000 16.50 22 0.000000e+00 0.00 2.700823e+06 2.699850e+06 973.18 NULL
2020 Office Of The Comptroller Administrative Assistant To The Comptroller 130971.75000 5.238870e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.238870e+05 5.238870e+05 0.00 NULL
2020 Office Of The Comptroller Administrative Business Promotion Coordinator 94415.62500 7.553250e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.553250e+05 7.553250e+05 0.00 NULL
2020 Office Of The Comptroller Administrative City Planner 137318.83333 1.647826e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.647826e+06 1.647826e+06 0.00 NULL
2020 Office Of The Comptroller Administrative Claim Examiner 89556.19444 3.224023e+06 9.86 2.738889e-01 0.000 0.00 36 0.000000e+00 0.00 3.224033e+06 3.224023e+06 9.86 NULL
2020 Office Of The Comptroller Administrative Construction Project Manager 115875.00000 1.158750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.158750e+05 1.158750e+05 0.00 NULL
2020 Office Of The Comptroller Administrative Engineer 122027.10526 2.318515e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.318515e+06 2.318515e+06 0.00 NULL
2020 Office Of The Comptroller Administrative Graphic Artist 93996.00000 9.399600e+04 694.56 6.945600e+02 694.560 11.00 1 6.945600e+02 694.56 9.469056e+04 9.469056e+04 0.00 NULL
2020 Office Of The Comptroller Administrative Labor Relations Analyst 137905.66667 1.241151e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.241151e+06 1.241151e+06 0.00 NULL
2020 Office Of The Comptroller Administrative Management Auditor 127304.82353 2.164182e+06 289.77 1.704529e+01 0.000 6.25 17 0.000000e+00 0.00 2.164472e+06 2.164182e+06 289.77 NULL
2020 Office Of The Comptroller Administrative Manager 112816.33333 3.384490e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.384490e+05 3.384490e+05 0.00 NULL
2020 Office Of The Comptroller Administrative Procurement Analyst 136340.00000 4.090200e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.090200e+05 4.090200e+05 0.00 NULL
2020 Office Of The Comptroller Administrative Procurement Analyst-Non-Mgrl 82835.00000 6.626800e+05 37188.43 4.648554e+03 2481.495 630.50 8 2.481495e+03 19851.96 6.998684e+05 6.825320e+05 17336.47 NULL
2020 Office Of The Comptroller Administrative Project Manager 112446.50000 8.995720e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.995720e+05 8.995720e+05 0.00 NULL
2020 Office Of The Comptroller Administrative Public Information Specialist 84179.05000 6.734324e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.734324e+05 6.734324e+05 0.00 NULL
2020 Office Of The Comptroller Administrative Public Records Officer 81144.00000 8.114400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.114400e+04 8.114400e+04 0.00 NULL
2020 Office Of The Comptroller Administrative Staff Analyst 113571.25000 2.725710e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 2.725710e+06 2.725710e+06 0.00 NULL
2020 Office Of The Comptroller Administrative Supervisor Of Building Maintenance 86193.00000 8.619300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.619300e+04 8.619300e+04 0.00 NULL
2020 Office Of The Comptroller Agency Attorney 81870.62500 6.549650e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.549650e+05 6.549650e+05 0.00 NULL
2020 Office Of The Comptroller Agency Chief Contracting Officer 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2020 Office Of The Comptroller Architect 102052.00000 1.020520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020520e+05 1.020520e+05 0.00 NULL
2020 Office Of The Comptroller Assistant Budget Analyst 60739.08000 1.518477e+06 14719.09 5.887636e+02 0.000 325.50 25 0.000000e+00 0.00 1.533196e+06 1.518477e+06 14719.09 NULL
2020 Office Of The Comptroller Assistant Mechanical Engineer 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2020 Office Of The Comptroller Assistant Secretary To The Comptroller 77250.00000 7.725000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.725000e+04 7.725000e+04 0.00 NULL
2020 Office Of The Comptroller Assistant To Deputy Comptroller 113300.00000 2.266000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.266000e+05 2.266000e+05 0.00 NULL
2020 Office Of The Comptroller Assistant To The Comptroller 118450.00000 2.369000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.369000e+05 2.369000e+05 0.00 NULL
2020 Office Of The Comptroller Associate Fraud Investigator 79389.00000 7.938900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.938900e+04 7.938900e+04 0.00 NULL
2020 Office Of The Comptroller Associate Investigator 68400.00000 1.368000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.368000e+05 1.368000e+05 0.00 NULL
2020 Office Of The Comptroller Associate Project Manager 102754.83333 6.165290e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.165290e+05 6.165290e+05 0.00 NULL
2020 Office Of The Comptroller Associate Staff Analyst 81757.28571 5.723010e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.723010e+05 5.723010e+05 0.00 NULL
2020 Office Of The Comptroller Bookkeeper 55897.85714 3.912850e+05 110.51 1.578714e+01 0.000 2.75 7 0.000000e+00 0.00 3.913955e+05 3.912850e+05 110.51 NULL
2020 Office Of The Comptroller Budget Analyst 93952.33333 2.818570e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.818570e+05 2.818570e+05 0.00 NULL
2020 Office Of The Comptroller Business Promotion Coordinator 67295.11765 1.144017e+06 2976.27 1.750747e+02 0.000 74.00 17 0.000000e+00 0.00 1.146993e+06 1.144017e+06 2976.27 NULL
2020 Office Of The Comptroller Certified It Administrator 119883.00000 1.198830e+05 25720.38 2.572038e+04 25720.380 301.50 1 2.572038e+04 25720.38 1.456034e+05 1.456034e+05 0.00 NULL
2020 Office Of The Comptroller City Custodial Assistant 35276.31321 2.469342e+05 22524.54 3.217791e+03 2038.710 855.50 7 2.038710e+03 14270.97 2.694587e+05 2.612052e+05 8253.57 NULL
2020 Office Of The Comptroller Civil Engineer 111721.00000 1.117210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.117210e+05 1.117210e+05 0.00 NULL
2020 Office Of The Comptroller Claim Specialist 64253.15789 2.441620e+06 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 2.441620e+06 2.441620e+06 0.00 NULL
2020 Office Of The Comptroller Clerical Aide 6902.00000 6.902000e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.902000e+03 6.902000e+03 0.00 NULL
2020 Office Of The Comptroller Clerical Associate 49617.57692 1.290057e+06 6905.36 2.655908e+02 0.000 193.25 26 0.000000e+00 0.00 1.296962e+06 1.290057e+06 6905.36 NULL
2020 Office Of The Comptroller College Aide 4703.48400 9.406968e+04 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 9.406968e+04 9.406968e+04 0.00 NULL
2020 Office Of The Comptroller Community Assistant 39480.00000 7.896000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.896000e+04 7.896000e+04 0.00 NULL
2020 Office Of The Comptroller Community Associate 51982.81818 5.718110e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.718110e+05 5.718110e+05 0.00 NULL
2020 Office Of The Comptroller Community Coordinator 65282.09091 7.181030e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.181030e+05 7.181030e+05 0.00 NULL
2020 Office Of The Comptroller Community Service Aide 32332.00000 6.466400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.466400e+04 6.466400e+04 0.00 NULL
2020 Office Of The Comptroller Comptroller 209050.00000 2.090500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.090500e+05 2.090500e+05 0.00 NULL
2020 Office Of The Comptroller Computer Aide-Non-Spvr 56047.00000 5.604700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.604700e+04 5.604700e+04 0.00 NULL
2020 Office Of The Comptroller Computer Associate 70496.73684 1.339438e+06 22254.29 1.171278e+03 0.000 429.75 19 0.000000e+00 0.00 1.361692e+06 1.339438e+06 22254.29 NULL
2020 Office Of The Comptroller Computer Operations Manager 121149.33333 7.268960e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.268960e+05 7.268960e+05 0.00 NULL
2020 Office Of The Comptroller Computer Programmer Analyst 75024.00000 7.502400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.502400e+04 7.502400e+04 0.00 NULL
2020 Office Of The Comptroller Computer Service Technician 53935.33333 1.618060e+05 110.77 3.692333e+01 0.000 3.00 3 0.000000e+00 0.00 1.619168e+05 1.618060e+05 110.77 NULL
2020 Office Of The Comptroller Computer Specialist 98273.22222 8.844590e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.844590e+05 8.844590e+05 0.00 NULL
2020 Office Of The Comptroller Computer Systems Manager 122746.15789 2.332177e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.332177e+06 2.332177e+06 0.00 NULL
2020 Office Of The Comptroller Confidential Assistant To The Comptroller 135507.00000 1.355070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.355070e+05 1.355070e+05 0.00 NULL
2020 Office Of The Comptroller Confidential Investigator 64454.00000 6.445400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.445400e+04 6.445400e+04 0.00 NULL
2020 Office Of The Comptroller Confidential Strategy Planner 79680.40000 3.984020e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.984020e+05 3.984020e+05 0.00 NULL
2020 Office Of The Comptroller Construction Project Manager 105713.00000 1.057130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.057130e+05 1.057130e+05 0.00 NULL
2020 Office Of The Comptroller Contract Specialist 61895.40000 3.094770e+05 1527.77 3.055540e+02 0.000 39.25 5 0.000000e+00 0.00 3.110048e+05 3.094770e+05 1527.77 NULL
2020 Office Of The Comptroller Custodian 61236.00000 1.224720e+05 2701.30 1.350650e+03 1350.650 61.00 2 1.350650e+03 2701.30 1.251733e+05 1.251733e+05 0.00 NULL
2020 Office Of The Comptroller Cyber Security Analyst 70000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2020 Office Of The Comptroller Director Of Investments 251758.50000 1.007034e+06 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.007034e+06 1.007034e+06 0.00 NULL
2020 Office Of The Comptroller Director Of Audits 219243.00000 2.192430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.192430e+05 2.192430e+05 0.00 NULL
2020 Office Of The Comptroller Economist 59452.58333 7.134310e+05 1077.63 8.980250e+01 0.000 24.75 12 0.000000e+00 0.00 7.145086e+05 7.134310e+05 1077.63 NULL
2020 Office Of The Comptroller Engineering Technician 63860.00000 6.386000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.386000e+04 6.386000e+04 0.00 NULL
2020 Office Of The Comptroller Executive Agency Counsel 145975.66667 4.817197e+06 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 4.817197e+06 4.817197e+06 0.00 NULL
2020 Office Of The Comptroller Executive Assistant To The Comptroller 168765.50000 3.375310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.375310e+05 3.375310e+05 0.00 NULL
2020 Office Of The Comptroller Executive Program Specialist 139652.00000 1.396520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.396520e+05 1.396520e+05 0.00 NULL
2020 Office Of The Comptroller First Deputy Comptroller 227816.00000 2.278160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.278160e+05 2.278160e+05 0.00 NULL
2020 Office Of The Comptroller Fraud Investigator 76232.66667 2.286980e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.286980e+05 2.286980e+05 0.00 NULL
2020 Office Of The Comptroller Investigator 63860.00000 6.386000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.386000e+04 6.386000e+04 0.00 NULL
2020 Office Of The Comptroller Investment Analyst 77011.96552 2.233347e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 2.233347e+06 2.233347e+06 0.00 NULL
2020 Office Of The Comptroller Investment Manager 172231.00000 5.511392e+06 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 5.511392e+06 5.511392e+06 0.00 NULL
2020 Office Of The Comptroller Legal Secretarial Assistant 71899.40000 7.189940e+05 1917.59 1.917590e+02 0.000 38.50 10 0.000000e+00 0.00 7.209116e+05 7.189940e+05 1917.59 NULL
2020 Office Of The Comptroller Management Auditor 78125.19600 5.859390e+06 29790.32 3.972043e+02 0.000 509.75 75 0.000000e+00 0.00 5.889180e+06 5.859390e+06 29790.32 NULL
2020 Office Of The Comptroller Office Machine Aide 32362.96250 9.708889e+04 135.28 4.509333e+01 0.000 8.50 3 0.000000e+00 0.00 9.722417e+04 9.708889e+04 135.28 NULL
2020 Office Of The Comptroller Pension Investment Advisor 350000.00000 3.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.500000e+05 3.500000e+05 0.00 NULL
2020 Office Of The Comptroller Principal Administrative Associate - Non Supvr 64293.25907 2.250264e+06 15053.93 4.301123e+02 0.000 329.00 35 0.000000e+00 0.00 2.265318e+06 2.250264e+06 15053.93 NULL
2020 Office Of The Comptroller Principal Investment Officer 214848.00000 2.148480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.148480e+05 2.148480e+05 0.00 NULL
2020 Office Of The Comptroller Procurement Analyst 62463.14286 4.372420e+05 19371.67 2.767381e+03 530.170 368.00 7 5.301700e+02 3711.19 4.566137e+05 4.409532e+05 15660.48 NULL
2020 Office Of The Comptroller Public Records Aide 23484.63120 2.348463e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.348463e+04 2.348463e+04 0.00 NULL
2020 Office Of The Comptroller Research And Liaison Coordinator 117874.58824 2.003868e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.003868e+06 2.003868e+06 0.00 NULL
2020 Office Of The Comptroller Research Assistant 52242.00000 5.224200e+04 39.69 3.969000e+01 39.690 1.50 1 3.969000e+01 39.69 5.228169e+04 5.228169e+04 0.00 NULL
2020 Office Of The Comptroller Second Deputy Comptroller 225773.00000 2.257730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.257730e+05 2.257730e+05 0.00 NULL
2020 Office Of The Comptroller Secretary 47046.66667 2.822800e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.822800e+05 2.822800e+05 0.00 NULL
2020 Office Of The Comptroller Secretary To The Comptroller 53878.00000 5.387800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.387800e+04 5.387800e+04 0.00 NULL
2020 Office Of The Comptroller Special Deputy Comptroller 214848.00000 2.148480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.148480e+05 2.148480e+05 0.00 NULL
2020 Office Of The Comptroller Staff Analyst 60178.85714 8.425040e+05 4346.62 3.104729e+02 0.000 115.00 14 0.000000e+00 0.00 8.468506e+05 8.425040e+05 4346.62 NULL
2020 Office Of The Comptroller Staff Analyst Trainee 44602.50000 2.676150e+05 1332.63 2.221050e+02 98.795 47.50 6 9.879500e+01 592.77 2.689476e+05 2.682078e+05 739.86 NULL
2020 Office Of The Comptroller Statistician 89385.00000 8.938500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.938500e+04 8.938500e+04 0.00 NULL
2020 Office Of The Comptroller Strategic Initiative Specialist 127600.75000 5.104030e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.104030e+05 5.104030e+05 0.00 NULL
2020 Office Of The Comptroller Summer College Intern 3220.73780 8.051845e+04 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 8.051845e+04 8.051845e+04 0.00 NULL
2020 Office Of The Comptroller Summer Graduate Intern 3411.87708 4.094253e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 4.094253e+04 4.094253e+04 0.00 NULL
2020 Office Of The Comptroller Supervising Computer Service Technician 86184.00000 8.618400e+04 4268.21 4.268210e+03 4268.210 67.25 1 4.268210e+03 4268.21 9.045221e+04 9.045221e+04 0.00 NULL
2020 Office Of The Comptroller Supervisor Of Motor Transport 59491.00000 5.949100e+04 3688.04 3.688040e+03 3688.040 87.00 1 3.688040e+03 3688.04 6.317904e+04 6.317904e+04 0.00 NULL
2020 Office Of The Comptroller Supervisor Of Stock Workers 44069.00000 4.406900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.406900e+04 4.406900e+04 0.00 NULL
2020 Office Of The Comptroller Telecommunications Associate 92645.00000 9.264500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.264500e+04 9.264500e+04 0.00 NULL
2020 Office Of The Mayor Administrative Assistant To The Mayor 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2020 Office Of The Mayor Assistant Legislative Representative 109528.54545 1.204814e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.204814e+06 1.204814e+06 0.00 NULL
2020 Office Of The Mayor Assistant To The Deputy Mayor 190810.87500 1.526487e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.526487e+06 1.526487e+06 0.00 NULL
2020 Office Of The Mayor Assistant To The Mayor 120778.00000 2.415560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.415560e+05 2.415560e+05 0.00 NULL
2020 Office Of The Mayor Asst Dir Of Intergvnmental Reltns For The Albany Office 203996.00000 2.039960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.039960e+05 2.039960e+05 0.00 NULL
2020 Office Of The Mayor Asst Director Of Intergovermental Rel For City Legist Affs 180472.00000 3.609440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.609440e+05 3.609440e+05 0.00 NULL
2020 Office Of The Mayor Chief Service Officer 177625.00000 3.552500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.552500e+05 3.552500e+05 0.00 NULL
2020 Office Of The Mayor Clerical Associate 47888.00000 4.788800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.788800e+04 4.788800e+04 0.00 NULL
2020 Office Of The Mayor College Aide 5902.45378 5.666356e+05 0.00 0.000000e+00 0.000 0.00 96 0.000000e+00 0.00 5.666356e+05 5.666356e+05 0.00 NULL
2020 Office Of The Mayor Commiss Of The Off To End Domest And Gend Ba Viol 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2020 Office Of The Mayor Commissioner, Un & Consular Corps Diplomatic Relations 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2020 Office Of The Mayor Communications Director 195032.00000 1.950320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.950320e+05 1.950320e+05 0.00 NULL
2020 Office Of The Mayor Counsel To The Mayor 220652.00000 2.206520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.206520e+05 2.206520e+05 0.00 NULL
2020 Office Of The Mayor Deputy Mayor 250758.83333 1.504553e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.504553e+06 1.504553e+06 0.00 NULL
2020 Office Of The Mayor Director 148000.00000 1.480000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.480000e+05 1.480000e+05 0.00 NULL
2020 Office Of The Mayor Director Of Community Assistance Unit 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2020 Office Of The Mayor Director Of Criminal Justice 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2020 Office Of The Mayor Director Of Immigrant Affairs 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2020 Office Of The Mayor Director Of Office For People With Disabilities 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2020 Office Of The Mayor Director, Office Of Operations 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2020 Office Of The Mayor Executive Administrator Of Gracie Mansion 237033.00000 2.370330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.370330e+05 2.370330e+05 0.00 NULL
2020 Office Of The Mayor Executive Agency Counsel 146024.20833 3.504581e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 3.504581e+06 3.504581e+06 0.00 NULL
2020 Office Of The Mayor Executive Assistant-Midtown Enforcement 87789.00000 8.778900e+04 246.33 2.463300e+02 246.330 5.25 1 2.463300e+02 246.33 8.803533e+04 8.803533e+04 0.00 NULL
2020 Office Of The Mayor Executive Asst To The Nyc Commission To The United Nations 67000.00000 6.700000e+04 2620.47 2.620470e+03 2620.470 81.25 1 2.620470e+03 2620.47 6.962047e+04 6.962047e+04 0.00 NULL
2020 Office Of The Mayor Executive Cook 80651.35000 2.419540e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.419540e+05 2.419540e+05 0.00 NULL
2020 Office Of The Mayor Executive Director On Commission On Gender Equality 187991.00000 1.879910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.879910e+05 1.879910e+05 0.00 NULL
2020 Office Of The Mayor First Deputy Mayor 291139.00000 2.911390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.911390e+05 2.911390e+05 0.00 NULL
2020 Office Of The Mayor High School Student Aide 2935.00000 1.761000e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.761000e+04 1.761000e+04 0.00 NULL
2020 Office Of The Mayor Mayor 258750.00000 2.587500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.587500e+05 2.587500e+05 0.00 NULL
2020 Office Of The Mayor Mayoral Office Assistant 48371.16540 1.499506e+06 33025.20 1.065329e+03 103.380 1032.67 31 1.033800e+02 3204.78 1.532531e+06 1.502711e+06 29820.42 NULL
2020 Office Of The Mayor Mayoral Program Coordinator 73909.37500 5.912750e+05 5136.17 6.420213e+02 0.000 107.25 8 0.000000e+00 0.00 5.964112e+05 5.912750e+05 5136.17 NULL
2020 Office Of The Mayor Press Officer 119359.15385 1.551669e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.551669e+06 1.551669e+06 0.00 NULL
2020 Office Of The Mayor Project Planner 84643.00000 8.464300e+04 4835.13 4.835130e+03 4835.130 105.75 1 4.835130e+03 4835.13 8.947813e+04 8.947813e+04 0.00 NULL
2020 Office Of The Mayor Research Projects Coord 109238.43662 1.551186e+07 125.57 8.842958e-01 0.000 3.50 142 0.000000e+00 0.00 1.551198e+07 1.551186e+07 125.57 NULL
2020 Office Of The Mayor Research Projects Coordinator 66699.60000 1.000494e+06 27574.65 1.838310e+03 987.930 855.50 15 9.879300e+02 14818.95 1.028069e+06 1.015313e+06 12755.70 NULL
2020 Office Of The Mayor Secretary 74442.30769 9.677500e+05 22895.76 1.761212e+03 960.570 599.25 13 9.605700e+02 12487.41 9.906458e+05 9.802374e+05 10408.35 NULL
2020 Office Of The Mayor Senior Advisor To The Mayor 238960.00000 2.389600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.389600e+05 2.389600e+05 0.00 NULL
2020 Office Of The Mayor Senior Policy Advisor To The Mayor 223741.00000 4.474820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.474820e+05 4.474820e+05 0.00 NULL
2020 Office Of The Mayor Senior Project Planner 116800.00000 2.336000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.336000e+05 2.336000e+05 0.00 NULL
2020 Office Of The Mayor Senior Service Inspector 62696.00000 6.269600e+04 765.68 7.656800e+02 765.680 17.00 1 7.656800e+02 765.68 6.346168e+04 6.346168e+04 0.00 NULL
2020 Office Of The Mayor Service Inspector 44870.40000 2.243520e+05 1646.40 3.292800e+02 308.700 55.00 5 3.087000e+02 1543.50 2.259984e+05 2.258955e+05 102.90 NULL
2020 Office Of The Mayor Special Assistant 104925.38811 3.000866e+07 4254.44 1.487566e+01 0.000 95.25 286 0.000000e+00 0.00 3.001292e+07 3.000866e+07 4254.44 NULL
2020 Office Of The Mayor Special Assistant To The Director 56650.00000 5.665000e+04 3857.81 3.857810e+03 3857.810 125.00 1 3.857810e+03 3857.81 6.050781e+04 6.050781e+04 0.00 NULL
2020 Office Of The Mayor Special Assistant To The Mayor 236900.00000 2.369000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.369000e+05 2.369000e+05 0.00 NULL
2020 Office Of The Mayor Sr Project Planner 107241.50000 2.144830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.144830e+05 2.144830e+05 0.00 NULL
2020 Office Of The Mayor Staff Assistant 60116.44444 1.082096e+06 8536.32 4.742400e+02 170.635 290.00 18 1.706350e+02 3071.43 1.090632e+06 1.085167e+06 5464.89 NULL
2020 Office Of The Mayor Summer College Intern 4472.75893 2.191652e+05 0.00 0.000000e+00 0.000 0.00 49 0.000000e+00 0.00 2.191652e+05 2.191652e+05 0.00 NULL
2020 Office Of The Mayor Summer Graduate Intern 4727.46552 1.370965e+05 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 1.370965e+05 1.370965e+05 0.00 NULL
2020 Personnel Monitors Monitor 4006.29219 1.462297e+06 0.00 0.000000e+00 0.000 0.00 365 0.000000e+00 0.00 1.462297e+06 1.462297e+06 0.00 NULL
2020 Police Department *Adm School Security Manager-U 83193.60000 4.159680e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.159680e+05 4.159680e+05 0.00 NULL
2020 Police Department *Admin Schl Secur Mgr-Mgl 185587.00000 1.855870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.855870e+05 1.855870e+05 0.00 NULL
2020 Police Department *Agency Attorney 123306.25000 4.932250e+05 34909.52 8.727380e+03 8866.305 441.25 4 8.727380e+03 34909.52 5.281345e+05 5.281345e+05 0.00 NULL
2020 Police Department *Assistant Advocate-Pd 113643.00000 3.409290e+05 10211.22 3.403740e+03 5104.590 165.25 3 3.403740e+03 10211.22 3.511402e+05 3.511402e+05 0.00 NULL
2020 Police Department *Attorney At Law 88991.33333 2.669740e+05 8521.77 2.840590e+03 36.770 116.75 3 3.677000e+01 110.31 2.754958e+05 2.670843e+05 8411.46 NULL
2020 Police Department *Certified Local Area Network Administrator 111324.00000 1.113240e+05 23704.04 2.370404e+04 23704.040 316.25 1 2.370404e+04 23704.04 1.350280e+05 1.350280e+05 0.00 NULL
2020 Police Department *Custodial Assistant 39152.77778 3.523750e+05 6157.48 6.841644e+02 0.000 195.00 9 0.000000e+00 0.00 3.585325e+05 3.523750e+05 6157.48 NULL
2020 Police Department Accountant 64933.75862 1.883079e+06 89555.57 3.088123e+03 816.340 1917.00 29 8.163400e+02 23673.86 1.972635e+06 1.906753e+06 65881.71 NULL
2020 Police Department Adm Manager-Non-Mgrl 87006.88889 3.915310e+06 131035.59 2.911902e+03 59.530 2068.75 45 5.953000e+01 2678.85 4.046346e+06 3.917989e+06 128356.74 NULL
2020 Police Department Admin Community Relations Specialist 105114.00000 5.255700e+05 60029.44 1.200589e+04 11119.190 895.00 5 1.111919e+04 55595.95 5.855994e+05 5.811659e+05 4433.49 NULL
2020 Police Department Admin Contract Specialist 157558.71429 1.102911e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.102911e+06 1.102911e+06 0.00 NULL
2020 Police Department Admin Tests & Meas Spec 117000.00000 3.510000e+05 26361.74 8.787247e+03 7525.970 359.75 3 7.525970e+03 22577.91 3.773617e+05 3.735779e+05 3783.83 NULL
2020 Police Department Admin Traffic Enf Agnt-Union 72046.44737 2.737765e+06 495791.23 1.304714e+04 13918.325 9528.00 38 1.304714e+04 495791.23 3.233556e+06 3.233556e+06 0.00 NULL
2020 Police Department Admin Traffic Enfrcmnt Agent 118974.00000 1.189740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.189740e+05 1.189740e+05 0.00 NULL
2020 Police Department Administrative Accountant 126470.14286 8.852910e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.852910e+05 8.852910e+05 0.00 NULL
2020 Police Department Administrative Architect 146799.00000 4.403970e+05 7665.06 2.555020e+03 0.000 124.50 3 0.000000e+00 0.00 4.480621e+05 4.403970e+05 7665.06 NULL
2020 Police Department Administrative City Planner 130804.00000 1.308040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.308040e+05 1.308040e+05 0.00 NULL
2020 Police Department Administrative Community Relations Specialist 183606.00000 1.836060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.836060e+05 1.836060e+05 0.00 NULL
2020 Police Department Administrative Contract Specialist 116713.66667 3.501410e+05 7762.74 2.587580e+03 1112.900 111.00 3 1.112900e+03 3338.70 3.579037e+05 3.534797e+05 4424.04 NULL
2020 Police Department Administrative Engineer 122991.50000 2.459830e+05 52093.26 2.604663e+04 26046.630 640.75 2 2.604663e+04 52093.26 2.980763e+05 2.980763e+05 0.00 NULL
2020 Police Department Administrative Graphic Artist 109111.00000 1.091110e+05 2659.25 2.659250e+03 2659.250 38.75 1 2.659250e+03 2659.25 1.117702e+05 1.117702e+05 0.00 NULL
2020 Police Department Administrative Investigator 102691.00000 1.026910e+05 3405.43 3.405430e+03 3405.430 53.00 1 3.405430e+03 3405.43 1.060964e+05 1.060964e+05 0.00 NULL
2020 Police Department Administrative Labor Relations Analyst 143508.00000 1.435080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.435080e+05 1.435080e+05 0.00 NULL
2020 Police Department Administrative Management Auditor 97044.00000 9.704400e+04 727.90 7.279000e+02 727.900 14.00 1 7.279000e+02 727.90 9.777190e+04 9.777190e+04 0.00 NULL
2020 Police Department Administrative Manager 116349.00000 2.326980e+05 12785.18 6.392590e+03 6392.590 178.25 2 6.392590e+03 12785.18 2.454832e+05 2.454832e+05 0.00 NULL
2020 Police Department Administrative Printing Services Manager 128837.00000 2.576740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.576740e+05 2.576740e+05 0.00 NULL
2020 Police Department Administrative Procurement Analyst-Non-Mgrl 86240.17647 1.466083e+06 179833.83 1.057846e+04 6749.720 3183.50 17 6.749720e+03 114745.24 1.645917e+06 1.580828e+06 65088.59 NULL
2020 Police Department Administrative Project Manager 129101.00000 1.807414e+06 120076.07 8.576862e+03 1868.565 1425.00 14 1.868565e+03 26159.91 1.927490e+06 1.833574e+06 93916.16 NULL
2020 Police Department Administrative Psychologist 133984.80000 6.699240e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.699240e+05 6.699240e+05 0.00 NULL
2020 Police Department Administrative Public Health Sanitarian 160771.00000 1.607710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.607710e+05 1.607710e+05 0.00 NULL
2020 Police Department Administrative Public Information Specialist 111130.18182 1.222432e+06 15.50 1.409091e+00 0.000 0.00 11 0.000000e+00 0.00 1.222448e+06 1.222432e+06 15.50 NULL
2020 Police Department Administrative Quality Assurance Specialist 87849.00000 8.784900e+04 23231.88 2.323188e+04 23231.880 392.00 1 2.323188e+04 23231.88 1.110809e+05 1.110809e+05 0.00 NULL
2020 Police Department Administrative Staff Analyst 103153.47727 9.077506e+06 416868.76 4.737145e+03 603.370 6617.25 88 6.033700e+02 53096.56 9.494375e+06 9.130603e+06 363772.20 NULL
2020 Police Department Administrative Supervisor Of Building Maintenance 160307.00000 1.603070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.603070e+05 1.603070e+05 0.00 NULL
2020 Police Department Administrative Transportation Coordinator 135433.00000 1.354330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.354330e+05 1.354330e+05 0.00 NULL
2020 Police Department Agency Attorney 92471.74000 9.247174e+06 436689.06 4.366891e+03 718.720 6004.75 100 7.187200e+02 71872.00 9.683863e+06 9.319046e+06 364817.06 NULL
2020 Police Department Agency Attorney Interne 63573.75000 5.085900e+05 6651.42 8.314275e+02 136.610 141.25 8 1.366100e+02 1092.88 5.152414e+05 5.096829e+05 5558.54 NULL
2020 Police Department Agency Chief Contracting Officer 191813.00000 1.918130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.918130e+05 1.918130e+05 0.00 NULL
2020 Police Department Architect 100341.00000 3.010230e+05 5385.44 1.795147e+03 0.000 83.50 3 0.000000e+00 0.00 3.064084e+05 3.010230e+05 5385.44 NULL
2020 Police Department Assistant Architect 83052.50000 1.661050e+05 19243.87 9.621935e+03 9621.935 326.00 2 9.621935e+03 19243.87 1.853489e+05 1.853489e+05 0.00 NULL
2020 Police Department Assistant Commissioner 154500.00000 1.545000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.545000e+05 1.545000e+05 0.00 NULL
2020 Police Department Assistant Counsel-Pd 116982.44444 1.052842e+06 121118.67 1.345763e+04 13534.970 1455.50 9 1.345763e+04 121118.67 1.173961e+06 1.173961e+06 0.00 NULL
2020 Police Department Assistant Deputy Commissioner 159232.00000 1.592320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.592320e+05 1.592320e+05 0.00 NULL
2020 Police Department Assistant Mechanical Engineer 70891.00000 7.089100e+04 20074.14 2.007414e+04 20074.140 426.50 1 2.007414e+04 20074.14 9.096514e+04 9.096514e+04 0.00 NULL
2020 Police Department Assistant Supervising Chief Surgeon 182108.00000 1.821080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.821080e+05 1.821080e+05 0.00 NULL
2020 Police Department Assoc Spvr Of School Security 74471.12766 3.500143e+06 564103.11 1.200219e+04 11877.520 10614.00 47 1.187752e+04 558243.44 4.064246e+06 4.058386e+06 5859.67 NULL
2020 Police Department Assoc Supvr Of Schl Sec 110891.28571 7.762390e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.762390e+05 7.762390e+05 0.00 NULL
2020 Police Department Associate Fingerprint Technician 42756.72000 2.137836e+06 29614.48 5.922896e+02 180.850 957.25 50 1.808500e+02 9042.50 2.167450e+06 2.146878e+06 20571.98 NULL
2020 Police Department Associate Investigator 46580.79653 3.493560e+06 228116.23 3.041550e+03 0.000 4954.75 75 0.000000e+00 0.00 3.721676e+06 3.493560e+06 228116.23 NULL
2020 Police Department Associate Labor Relations Analyst 108106.00000 1.081060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081060e+05 1.081060e+05 0.00 NULL
2020 Police Department Associate Parking Control Specialist 59512.33333 3.570740e+05 64073.31 1.067889e+04 7550.790 1489.00 6 7.550790e+03 45304.74 4.211473e+05 4.023787e+05 18768.57 NULL
2020 Police Department Associate Project Manager 95826.00000 3.833040e+05 651.75 1.629375e+02 212.180 12.75 4 1.629375e+02 651.75 3.839558e+05 3.839558e+05 0.00 NULL
2020 Police Department Associate Public Records Officer 62694.00000 6.269400e+04 126.68 1.266800e+02 126.680 3.75 1 1.266800e+02 126.68 6.282068e+04 6.282068e+04 0.00 NULL
2020 Police Department Associate Staff Analyst 82756.15385 4.303320e+06 134937.45 2.594951e+03 60.635 2406.50 52 6.063500e+01 3153.02 4.438257e+06 4.306473e+06 131784.43 NULL
2020 Police Department Associate Traffic Enforcement Agent 52962.91649 2.536924e+07 7032123.07 1.468084e+04 13492.180 162252.90 479 1.349218e+04 6462754.22 3.240136e+07 3.183199e+07 569368.85 NULL
2020 Police Department Auto Body Worker 61264.44000 1.531611e+06 361348.27 1.445393e+04 15837.160 7853.50 25 1.445393e+04 361348.27 1.892959e+06 1.892959e+06 0.00 NULL
2020 Police Department Auto Mechanic NA NA 2762790.36 1.297085e+04 9697.340 41228.87 213 9.697340e+03 2065533.42 NA NA NA NULL
2020 Police Department Automotive Service Worker 42713.94737 4.057825e+06 395589.99 4.164105e+03 1976.680 12281.50 95 1.976680e+03 187784.60 4.453415e+06 4.245610e+06 207805.39 NULL
2020 Police Department Bookbinder 50499.66667 1.514990e+05 6034.07 2.011357e+03 1958.530 201.00 3 1.958530e+03 5875.59 1.575331e+05 1.573746e+05 158.48 NULL
2020 Police Department Bookkeeper 54551.32692 2.836669e+06 148641.02 2.858481e+03 274.810 3634.25 52 2.748100e+02 14290.12 2.985310e+06 2.850959e+06 134350.90 NULL
2020 Police Department Capt Det Chief Of The Housing Bureau 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2020 Police Department Captain 147075.28369 2.073762e+07 1193441.92 8.464127e+03 6437.090 17593.28 141 6.437090e+03 907629.69 2.193106e+07 2.164524e+07 285812.23 NULL
2020 Police Department Captain D/A Deputy Chief Inspector 194519.57143 1.361637e+06 2591.93 3.702757e+02 0.000 67.50 7 0.000000e+00 0.00 1.364229e+06 1.361637e+06 2591.93 NULL
2020 Police Department Captain D/A Deputy Inspector 177248.40000 1.772484e+06 2345.82 2.345820e+02 0.000 65.13 10 0.000000e+00 0.00 1.774830e+06 1.772484e+06 2345.82 NULL
2020 Police Department Captain D/A Inspector 185248.00000 3.149216e+06 13883.86 8.166976e+02 0.000 388.95 17 0.000000e+00 0.00 3.163100e+06 3.149216e+06 13883.86 NULL
2020 Police Department Captain Detailed As Assistant Chief Inspector 232200.50000 4.644010e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.644010e+05 4.644010e+05 0.00 NULL
2020 Police Department Captain Detailed As Chief Of Detectives 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2020 Police Department Captain Detailed As Chief Of Strategic Initiatives 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2020 Police Department Captain Detailed As Chief Of Training 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2020 Police Department Captain-Chief Of Community Affairs 224453.00000 2.244530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244530e+05 2.244530e+05 0.00 NULL
2020 Police Department Carpenter NA NA 317940.12 1.514001e+04 10023.360 4398.75 21 1.002336e+04 210490.56 NA NA NA NULL
2020 Police Department Case Management Nurse 83910.00000 2.517300e+06 118267.09 3.942236e+03 2191.165 1811.25 30 2.191165e+03 65734.95 2.635567e+06 2.583035e+06 52532.14 NULL
2020 Police Department Cashier 48427.25000 1.937090e+05 40619.44 1.015486e+04 5887.400 1046.75 4 5.887400e+03 23549.60 2.343284e+05 2.172586e+05 17069.84 NULL
2020 Police Department Cement Mason NA NA 57917.20 5.791720e+04 57917.200 604.50 1 5.791720e+04 57917.20 NA NA NA NULL
2020 Police Department Certified It Administrator 113387.52174 5.215826e+06 610531.99 1.327243e+04 12032.550 7941.50 46 1.203255e+04 553497.30 5.826358e+06 5.769323e+06 57034.69 NULL
2020 Police Department Certified It Developer 115023.25000 4.600930e+05 40891.13 1.022278e+04 6798.465 503.50 4 6.798465e+03 27193.86 5.009841e+05 4.872869e+05 13697.27 NULL
2020 Police Department Chaplain 37512.06250 6.001930e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 6.001930e+05 6.001930e+05 0.00 NULL
2020 Police Department City Attendant 41458.00000 4.145800e+04 14180.83 1.418083e+04 14180.830 436.50 1 1.418083e+04 14180.83 5.563883e+04 5.563883e+04 0.00 NULL
2020 Police Department City Custodial Assistant 36525.70289 2.078312e+07 701616.86 1.233070e+03 6.250 25765.25 569 6.250000e+00 3556.25 2.148474e+07 2.078668e+07 698060.61 NULL
2020 Police Department City Dentist 77597.52000 7.759752e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.759752e+04 7.759752e+04 0.00 NULL
2020 Police Department City Laborer NA NA 515596.01 1.777917e+04 15277.630 9252.00 29 1.527763e+04 443051.27 NA NA NA NULL
2020 Police Department City Research Scientist 92960.15385 2.416964e+06 40942.16 1.574698e+03 149.105 728.00 26 1.491050e+02 3876.73 2.457906e+06 2.420841e+06 37065.43 NULL
2020 Police Department Clerical Aide 36252.68143 2.537688e+05 23802.75 3.400393e+03 698.960 839.75 7 6.989600e+02 4892.72 2.775715e+05 2.586615e+05 18910.03 NULL
2020 Police Department Clerical Associate 48043.48614 2.642392e+06 158293.42 2.878062e+03 107.210 4359.17 55 1.072100e+02 5896.55 2.800685e+06 2.648288e+06 152396.87 NULL
2020 Police Department College Aide 14158.27106 6.937553e+05 0.00 0.000000e+00 0.000 0.00 49 0.000000e+00 0.00 6.937553e+05 6.937553e+05 0.00 NULL
2020 Police Department College Aide - Assignment Levels Ii And Iii 26649.89040 2.664989e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.664989e+04 2.664989e+04 0.00 NULL
2020 Police Department Commissioner 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2020 Police Department Community Assistant 19302.79327 1.273984e+06 17796.37 2.696420e+02 0.000 652.75 66 0.000000e+00 0.00 1.291781e+06 1.273984e+06 17796.37 NULL
2020 Police Department Community Associate 49200.63636 5.412070e+05 12470.23 1.133657e+03 220.760 404.50 11 2.207600e+02 2428.36 5.536772e+05 5.436354e+05 10041.87 NULL
2020 Police Department Community Coordinator 65595.00000 2.033445e+06 92899.60 2.996761e+03 474.500 2060.25 31 4.745000e+02 14709.50 2.126345e+06 2.048154e+06 78190.10 NULL
2020 Police Department Compositor NA NA 78011.24 2.600375e+04 27952.800 964.50 3 2.600375e+04 78011.24 NA NA NA NULL
2020 Police Department Computer Associate 76348.73043 8.780104e+06 936661.26 8.144881e+03 6900.460 16634.75 115 6.900460e+03 793552.90 9.716765e+06 9.573657e+06 143108.36 NULL
2020 Police Department Computer Operations Manager 162152.55556 1.459373e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.459373e+06 1.459373e+06 0.00 NULL
2020 Police Department Computer Programmer Analyst 64457.00000 1.289140e+05 14951.97 7.475985e+03 7475.985 305.50 2 7.475985e+03 14951.97 1.438660e+05 1.438660e+05 0.00 NULL
2020 Police Department Computer Specialist 104066.70968 6.452136e+06 412606.65 6.654946e+03 1665.415 5739.00 62 1.665415e+03 103255.73 6.864743e+06 6.555392e+06 309350.92 NULL
2020 Police Department Computer Systems Manager 157932.38889 2.842783e+06 13448.13 7.471183e+02 0.000 175.25 18 0.000000e+00 0.00 2.856231e+06 2.842783e+06 13448.13 NULL
2020 Police Department Construction Project Manager 112301.00000 2.246020e+05 18813.82 9.406910e+03 9406.910 263.75 2 9.406910e+03 18813.82 2.434158e+05 2.434158e+05 0.00 NULL
2020 Police Department Crime Analyst 59310.98113 6.286964e+06 166636.61 1.572043e+03 667.445 4260.50 106 6.674450e+02 70749.17 6.453601e+06 6.357713e+06 95887.44 NULL
2020 Police Department Criminalist 75200.17176 1.970244e+07 1600942.46 6.110467e+03 4665.430 28027.00 262 4.665430e+03 1222342.66 2.130339e+07 2.092479e+07 378599.80 NULL
2020 Police Department Criminalist Assistant Director Of Laboratory 135586.12500 1.084689e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.084689e+06 1.084689e+06 0.00 NULL
2020 Police Department Criminalist Deputy Director Of Labatory 169331.00000 1.693310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.693310e+05 1.693310e+05 0.00 NULL
2020 Police Department Custodian 42456.24242 1.401056e+06 195416.45 5.921711e+03 5829.990 6111.17 33 5.829990e+03 192389.67 1.596472e+06 1.593446e+06 3026.78 NULL
2020 Police Department Deputy Chief Surgeon 158534.00000 6.341360e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.341360e+05 6.341360e+05 0.00 NULL
2020 Police Department Deputy Commissioner 236377.33333 1.418264e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.418264e+06 1.418264e+06 0.00 NULL
2020 Police Department Director 145022.00000 1.450220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450220e+05 1.450220e+05 0.00 NULL
2020 Police Department Director Of Communications 128909.00000 1.289090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.289090e+05 1.289090e+05 0.00 NULL
2020 Police Department Director Of Photographic Services-Pd 149350.00000 1.493500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.493500e+05 1.493500e+05 0.00 NULL
2020 Police Department Director Of Psychological Services 139652.00000 1.396520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.396520e+05 1.396520e+05 0.00 NULL
2020 Police Department Director Of Technology Development-Pd 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2020 Police Department Director Of Training 138308.00000 1.383080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.383080e+05 1.383080e+05 0.00 NULL
2020 Police Department Economist 70817.00000 1.416340e+05 1546.47 7.732350e+02 773.235 37.00 2 7.732350e+02 1546.47 1.431805e+05 1.431805e+05 0.00 NULL
2020 Police Department Electrician NA NA 919426.12 2.298565e+04 28704.965 10377.50 40 2.298565e+04 919426.12 NA NA NA NULL
2020 Police Department Electrician’s Helper NA NA 30360.73 3.036073e+04 30360.730 515.00 1 3.036073e+04 30360.73 NA NA NA NULL
2020 Police Department Elevator Mechanic NA NA 22643.39 2.264339e+04 22643.390 307.00 1 2.264339e+04 22643.39 NA NA NA NULL
2020 Police Department Employee Assistance Program Specialist 71393.33333 2.141800e+05 12629.08 4.209693e+03 1405.890 245.00 3 1.405890e+03 4217.67 2.268091e+05 2.183977e+05 8411.41 NULL
2020 Police Department Evidence And Property Control Specialist 58509.63285 1.211149e+07 470876.09 2.274764e+03 1021.520 11267.32 207 1.021520e+03 211454.64 1.258237e+07 1.232295e+07 259421.45 NULL
2020 Police Department Executive Agency Counsel 154361.03030 5.093914e+06 36923.72 1.118901e+03 0.000 402.25 33 0.000000e+00 0.00 5.130838e+06 5.093914e+06 36923.72 NULL
2020 Police Department Fingerprint Technician Trainee 30437.63636 3.348140e+05 133.36 1.212364e+01 0.000 8.00 11 0.000000e+00 0.00 3.349474e+05 3.348140e+05 133.36 NULL
2020 Police Department Fitness Instructor 59871.83333 1.077693e+06 18451.29 1.025072e+03 0.000 433.75 18 0.000000e+00 0.00 1.096144e+06 1.077693e+06 18451.29 NULL
2020 Police Department Glazier NA NA 79747.14 3.987357e+04 39873.570 904.00 2 3.987357e+04 79747.14 NA NA NA NULL
2020 Police Department Graphic Artist 65960.70000 6.596070e+05 85122.66 8.512266e+03 6250.135 1875.00 10 6.250135e+03 62501.35 7.447297e+05 7.221083e+05 22621.31 NULL
2020 Police Department Health Services Manager Non Managerial Level I 83599.00000 8.359900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.359900e+04 8.359900e+04 0.00 NULL
2020 Police Department Horseshoer NA NA 4225.95 1.408650e+03 564.770 85.50 3 5.647700e+02 1694.31 NA NA NA NULL
2020 Police Department Hostler 46311.19158 1.204091e+06 145540.91 5.597727e+03 3823.915 4113.00 26 3.823915e+03 99421.79 1.349632e+06 1.303513e+06 46119.12 NULL
2020 Police Department Intelligence Research Manager-Pd 156213.40000 7.810670e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.810670e+05 7.810670e+05 0.00 NULL
2020 Police Department Intelligence Research Specialist-Pd 97629.64583 4.686223e+06 521143.89 1.085716e+04 6991.700 7999.50 48 6.991700e+03 335601.60 5.207367e+06 5.021825e+06 185542.29 NULL
2020 Police Department Investigator 51269.40426 2.409662e+06 259463.57 5.520501e+03 4848.530 6847.50 47 4.848530e+03 227880.91 2.669126e+06 2.637543e+06 31582.66 NULL
2020 Police Department Investigator Trainee 45104.81818 4.961530e+05 44308.49 4.028045e+03 3705.250 1486.50 11 3.705250e+03 40757.75 5.404615e+05 5.369108e+05 3550.74 NULL
2020 Police Department It Project Specialist 89520.40000 4.476020e+05 23920.24 4.784048e+03 3209.280 385.75 5 3.209280e+03 16046.40 4.715222e+05 4.636484e+05 7873.84 NULL
2020 Police Department Lieutenant 125481.59440 1.209643e+08 18395099.83 1.908205e+04 18841.570 271244.85 964 1.884157e+04 18163273.48 1.393594e+08 1.391275e+08 231826.35 NULL
2020 Police Department Lieutenant D/A Commander Of Detective Squad 140722.75510 6.895415e+06 452773.61 9.240278e+03 707.030 5010.98 49 7.070300e+02 34644.47 7.348189e+06 6.930059e+06 418129.14 NULL
2020 Police Department Lieutenant D/A Special Assignment 140316.72340 6.594886e+06 530683.00 1.129113e+04 1940.560 5791.69 47 1.940560e+03 91206.32 7.125569e+06 6.686092e+06 439476.68 NULL
2020 Police Department Locksmith NA NA 12875.74 6.437870e+03 6437.870 313.50 2 6.437870e+03 12875.74 NA NA NA NULL
2020 Police Department Maintenance Worker NA NA 282152.17 9.101683e+03 7818.590 6027.75 31 7.818590e+03 242376.29 NA NA NA NULL
2020 Police Department Management Auditor 79153.71429 1.662228e+06 58311.21 2.776724e+03 255.260 979.25 21 2.552600e+02 5360.46 1.720539e+06 1.667588e+06 52950.75 NULL
2020 Police Department Manager Of Radio Repair Operations 140836.00000 7.041800e+05 56846.99 1.136940e+04 9945.510 688.50 5 9.945510e+03 49727.55 7.610270e+05 7.539076e+05 7119.44 NULL
2020 Police Department Marine Maintenance Mechanic 78628.00000 1.572560e+05 0.78 3.900000e-01 0.390 0.00 2 3.900000e-01 0.78 1.572568e+05 1.572568e+05 0.00 NULL
2020 Police Department Media Services Technician 48966.70000 1.469001e+06 46678.20 1.555940e+03 474.300 1336.25 30 4.743000e+02 14229.00 1.515679e+06 1.483230e+06 32449.20 NULL
2020 Police Department Motor Vehicle Operator 48911.15385 1.907535e+06 272457.14 6.986081e+03 4224.870 7049.00 39 4.224870e+03 164769.93 2.179992e+06 2.072305e+06 107687.21 NULL
2020 Police Department Motor Vehicle Supervisor 58854.20000 2.942710e+05 40085.52 8.017104e+03 8328.470 920.50 5 8.017104e+03 40085.52 3.343565e+05 3.343565e+05 0.00 NULL
2020 Police Department Office Machine Aide 41439.50000 1.657580e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.657580e+05 1.657580e+05 0.00 NULL
2020 Police Department Oiler NA NA 205192.63 2.931323e+04 23384.310 2160.75 7 2.338431e+04 163690.17 NA NA NA NULL
2020 Police Department Operations Communications Specialist 45533.33333 1.366000e+05 20795.24 6.931747e+03 5622.630 583.50 3 5.622630e+03 16867.89 1.573952e+05 1.534679e+05 3927.35 NULL
2020 Police Department P.o. Da Det Gr3 97052.53516 3.188176e+08 97458863.51 2.966784e+04 33029.900 1816921.61 3285 2.966784e+04 97458863.51 4.162764e+08 4.162764e+08 0.00 NULL
2020 Police Department P.o. Det Spec 97080.36280 9.552708e+07 23390472.37 2.377081e+04 25864.575 428596.88 984 2.377081e+04 23390472.37 1.189175e+08 1.189175e+08 0.00 NULL
2020 Police Department Painter NA NA 277556.07 1.734725e+04 20043.740 4427.75 16 1.734725e+04 277556.07 NA NA NA NULL
2020 Police Department Paralegal Aide 48434.46667 7.265170e+05 30587.33 2.039155e+03 28.690 918.00 15 2.869000e+01 430.35 7.571043e+05 7.269473e+05 30156.98 NULL
2020 Police Department Parking Control Specialist 45720.00000 6.400800e+05 97848.93 6.989209e+03 4423.675 2888.27 14 4.423675e+03 61931.45 7.379289e+05 7.020114e+05 35917.48 NULL
2020 Police Department Photographer 52842.50000 1.162535e+06 48414.99 2.200681e+03 1057.315 1354.50 22 1.057315e+03 23260.93 1.210950e+06 1.185796e+06 25154.06 NULL
2020 Police Department Physician’s Assistant 33703.00750 1.348120e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.348120e+05 1.348120e+05 0.00 NULL
2020 Police Department Plumber NA NA 726932.08 3.825958e+04 41598.530 6902.25 19 3.825958e+04 726932.08 NA NA NA NULL
2020 Police Department Police Administrative Aide 42498.01835 6.948426e+07 1470223.77 8.992194e+02 0.000 46341.51 1635 0.000000e+00 0.00 7.095448e+07 6.948426e+07 1470223.77 NULL
2020 Police Department Police Attendant 42141.40476 1.769939e+06 461894.89 1.099750e+04 9567.810 15080.95 42 9.567810e+03 401848.02 2.231834e+06 2.171787e+06 60046.87 NULL
2020 Police Department Police Cadet 15111.99249 7.147972e+06 44.01 9.304440e-02 0.000 0.00 473 0.000000e+00 0.00 7.148016e+06 7.147972e+06 44.01 NULL
2020 Police Department Police Communications Technician 46948.32983 8.497648e+07 6620010.85 3.657465e+03 1856.100 196509.62 1810 1.856100e+03 3359541.00 9.159649e+07 8.833602e+07 3260469.85 NULL
2020 Police Department Police Officer 70193.83698 1.801525e+09 328979017.83 1.281820e+04 10650.460 8540477.36 25665 1.065046e+04 273344055.90 2.130504e+09 2.074869e+09 55634961.93 NULL
2020 Police Department Police Officer D/A Detective 1st Gr 125462.75000 2.760180e+07 4340427.31 1.972922e+04 22046.715 57843.75 220 1.972922e+04 4340427.31 3.194223e+07 3.194223e+07 0.00 NULL
2020 Police Department Police Officer D/A Detective 2nd Gr 109325.40569 9.216132e+07 26249085.80 3.113771e+04 36808.780 415504.01 843 3.113771e+04 26249085.80 1.184104e+08 1.184104e+08 0.00 NULL
2020 Police Department Police Surgeon 144249.82759 4.183245e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 4.183245e+06 4.183245e+06 0.00 NULL
2020 Police Department Precinct Community Relations Aide 32802.76000 1.968166e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.968166e+05 1.968166e+05 0.00 NULL
2020 Police Department Precinct Receptionist 24066.00571 2.647261e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 2.647261e+05 2.647261e+05 0.00 NULL
2020 Police Department Principal Administrative Associate - Non Supvr 63045.59366 2.187682e+07 1075539.21 3.099537e+03 43.540 23879.07 347 4.354000e+01 15108.38 2.295236e+07 2.189193e+07 1060430.83 NULL
2020 Police Department Principal Fingerprint Technician 56641.14286 3.964880e+05 5854.06 8.362943e+02 596.280 172.00 7 5.962800e+02 4173.96 4.023421e+05 4.006620e+05 1680.10 NULL
2020 Police Department Principal Police Communication Technician 72431.66667 6.084260e+06 922959.74 1.098762e+04 8191.585 17040.39 84 8.191585e+03 688093.14 7.007220e+06 6.772353e+06 234866.60 NULL
2020 Police Department Printing Press Operator NA NA 252560.58 1.578504e+04 17877.595 4378.25 16 1.578504e+04 252560.58 NA NA NA NULL
2020 Police Department Procurement Analyst 66948.47059 1.138124e+06 92178.45 5.422262e+03 3684.060 2249.00 17 3.684060e+03 62629.02 1.230302e+06 1.200753e+06 29549.43 NULL
2020 Police Department Program Producer 53875.50000 2.155020e+05 11162.36 2.790590e+03 1891.040 364.50 4 1.891040e+03 7564.16 2.266644e+05 2.230662e+05 3598.20 NULL
2020 Police Department Project Manager 77250.00000 7.725000e+04 1331.90 1.331900e+03 1331.900 25.50 1 1.331900e+03 1331.90 7.858190e+04 7.858190e+04 0.00 NULL
2020 Police Department Psychologist 76044.06919 3.041763e+06 160264.05 4.006601e+03 3643.825 2674.50 40 3.643825e+03 145753.00 3.202027e+06 3.187516e+06 14511.05 NULL
2020 Police Department Public Health Assistant 34046.89474 6.468910e+05 17395.17 9.155353e+02 479.250 758.00 19 4.792500e+02 9105.75 6.642862e+05 6.559968e+05 8289.42 NULL
2020 Police Department Public Records Officer 54196.00000 1.625880e+05 19934.63 6.644877e+03 6421.300 629.00 3 6.421300e+03 19263.90 1.825226e+05 1.818519e+05 670.73 NULL
2020 Police Department Quality Assurance Specialist 50541.00000 1.010820e+05 13592.71 6.796355e+03 6796.355 396.00 2 6.796355e+03 13592.71 1.146747e+05 1.146747e+05 0.00 NULL
2020 Police Department Radio Repair Mechanic NA NA 1153456.05 1.201517e+04 13133.440 15624.14 96 1.201517e+04 1153456.05 NA NA NA NULL
2020 Police Department Research Assistant 66422.00000 6.642200e+04 76.45 7.645000e+01 76.450 2.00 1 7.645000e+01 76.45 6.649845e+04 6.649845e+04 0.00 NULL
2020 Police Department Roofer NA NA 87073.06 1.741461e+04 18398.680 1385.00 5 1.741461e+04 87073.06 NA NA NA NULL
2020 Police Department School Crossing Guard 15342.37930 4.579700e+07 52947.23 1.773777e+01 0.000 2468.00 2985 0.000000e+00 0.00 4.584995e+07 4.579700e+07 52947.23 NULL
2020 Police Department School Safety Agent 44355.38097 2.914149e+08 46688866.00 7.106372e+03 5288.065 1391663.10 6570 5.288065e+03 34742587.05 3.381037e+08 3.261574e+08 11946278.95 NULL
2020 Police Department Secretary 53028.95000 1.060579e+06 75262.03 3.763102e+03 45.460 1920.00 20 4.546000e+01 909.20 1.135841e+06 1.061488e+06 74352.83 NULL
2020 Police Department Secretary To The First Deputy Commissioner-Pd 112197.00000 1.121970e+05 21221.63 2.122163e+04 21221.630 286.00 1 2.122163e+04 21221.63 1.334186e+05 1.334186e+05 0.00 NULL
2020 Police Department Senior Office Appliance Maintainer 50855.00000 5.085500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.085500e+04 5.085500e+04 0.00 NULL
2020 Police Department Senior Photographer 61182.72727 6.730100e+05 77931.03 7.084639e+03 8881.600 1920.25 11 7.084639e+03 77931.03 7.509410e+05 7.509410e+05 0.00 NULL
2020 Police Department Senior Police Administrative Aide 53764.06221 4.666721e+07 1728251.96 1.991074e+03 0.000 44846.22 868 0.000000e+00 0.00 4.839546e+07 4.666721e+07 1728251.96 NULL
2020 Police Department Senior Stationary Engineer NA NA 17441.23 8.720615e+03 8720.615 101.50 2 8.720615e+03 17441.23 NA NA NA NULL
2020 Police Department Sergeant- 102750.40077 4.245647e+08 89244413.21 2.159836e+04 20252.130 1593598.46 4132 2.025213e+04 83681801.16 5.138091e+08 5.082465e+08 5562612.05 NULL
2020 Police Department Sergeant-D/A Special Assignment 120204.63485 2.896932e+07 6114257.78 2.537036e+04 28892.020 86119.08 241 2.537036e+04 6114257.78 3.508357e+07 3.508357e+07 0.00 NULL
2020 Police Department Sergeant-D/A Supervisor Detective Squad 119186.57746 2.538674e+07 5552215.80 2.606674e+04 32846.310 84272.88 213 2.606674e+04 5552215.80 3.093896e+07 3.093896e+07 0.00 NULL
2020 Police Department Sheet Metal Worker NA NA 222697.81 2.783723e+04 34623.250 2041.50 8 2.783723e+04 222697.81 NA NA NA NULL
2020 Police Department Special Officer 49376.00000 1.481280e+05 7591.78 2.530593e+03 1344.620 205.00 3 1.344620e+03 4033.86 1.557198e+05 1.521619e+05 3557.92 NULL
2020 Police Department Staff Analyst 63794.74468 2.998353e+06 97408.36 2.072518e+03 64.720 2363.50 47 6.472000e+01 3041.84 3.095761e+06 3.001395e+06 94366.52 NULL
2020 Police Department Staff Analyst Trainee 47286.60000 2.364330e+05 638.27 1.276540e+02 0.000 24.00 5 0.000000e+00 0.00 2.370713e+05 2.364330e+05 638.27 NULL
2020 Police Department Stationary Engineer NA NA 84590.93 1.409849e+04 3271.090 770.25 6 3.271090e+03 19626.54 NA NA NA NULL
2020 Police Department Steam Fitter NA NA 164419.75 2.348854e+04 31405.000 1495.00 7 2.348854e+04 164419.75 NA NA NA NULL
2020 Police Department Steam Fitter’s Helper NA NA 26107.15 2.610715e+04 26107.150 316.50 1 2.610715e+04 26107.15 NA NA NA NULL
2020 Police Department Stenographer To Each Deputy Commissioner 90716.40000 4.535820e+05 55661.59 1.113232e+04 10646.560 861.25 5 1.064656e+04 53232.80 5.092436e+05 5.068148e+05 2428.79 NULL
2020 Police Department Stenographic Specialist 52172.66667 1.565180e+05 189.53 6.317667e+01 0.000 7.75 3 0.000000e+00 0.00 1.567075e+05 1.565180e+05 189.53 NULL
2020 Police Department Stock Worker 40895.80488 1.676728e+06 94943.80 2.315702e+03 377.820 3249.25 41 3.778200e+02 15490.62 1.771672e+06 1.692219e+06 79453.18 NULL
2020 Police Department Summer College Intern 4439.43462 2.308506e+05 0.00 0.000000e+00 0.000 0.00 52 0.000000e+00 0.00 2.308506e+05 2.308506e+05 0.00 NULL
2020 Police Department Summer Graduate Intern 6553.53343 1.179636e+05 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.179636e+05 1.179636e+05 0.00 NULL
2020 Police Department Supervising Police Communications Technician 66249.62162 1.225618e+07 2090557.93 1.130031e+04 8146.010 43020.69 185 8.146010e+03 1507011.85 1.434674e+07 1.376319e+07 583546.08 NULL
2020 Police Department Supervisor 74807.25000 2.992290e+05 85293.56 2.132339e+04 20852.800 1557.00 4 2.085280e+04 83411.20 3.845226e+05 3.826402e+05 1882.36 NULL
2020 Police Department Supervisor Carpenter NA NA 79333.01 2.644434e+04 24399.220 1037.00 3 2.439922e+04 73197.66 NA NA NA NULL
2020 Police Department Supervisor Electrician NA NA 32074.89 3.207489e+04 32074.890 333.75 1 3.207489e+04 32074.89 NA NA NA NULL
2020 Police Department Supervisor Elevator Mechanic NA NA 49842.62 2.492131e+04 24921.310 631.00 2 2.492131e+04 49842.62 NA NA NA NULL
2020 Police Department Supervisor Glazier NA NA 50901.01 5.090101e+04 50901.010 570.00 1 5.090101e+04 50901.01 NA NA NA NULL
2020 Police Department Supervisor Locksmith NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2020 Police Department Supervisor Of Mechanical Installations & Maintenance 82076.33333 2.462290e+05 32383.52 1.079451e+04 6841.180 601.50 3 6.841180e+03 20523.54 2.786125e+05 2.667525e+05 11859.98 NULL
2020 Police Department Supervisor Of Mechanics 124493.06667 5.602188e+06 893972.20 1.986605e+04 21532.980 9659.50 45 1.986605e+04 893972.20 6.496160e+06 6.496160e+06 0.00 NULL
2020 Police Department Supervisor Of Office Machine Operations 53683.00000 5.368300e+04 12817.14 1.281714e+04 12817.140 296.75 1 1.281714e+04 12817.14 6.650014e+04 6.650014e+04 0.00 NULL
2020 Police Department Supervisor Of School Security 70518.73780 1.156507e+07 1650111.69 1.006166e+04 8955.285 31561.50 164 8.955285e+03 1468666.74 1.321518e+07 1.303374e+07 181444.95 NULL
2020 Police Department Supervisor Of Stock Workers 53983.25000 6.477990e+05 85387.33 7.115611e+03 7575.285 2472.75 12 7.115611e+03 85387.33 7.331863e+05 7.331863e+05 0.00 NULL
2020 Police Department Supervisor Painter NA NA 105400.52 2.635013e+04 31208.260 1493.50 4 2.635013e+04 105400.52 NA NA NA NULL
2020 Police Department Supervisor Plumber NA NA 160288.15 5.342938e+04 60570.230 1456.25 3 5.342938e+04 160288.15 NA NA NA NULL
2020 Police Department Supervisor Roofer NA NA 36535.54 3.653554e+04 36535.540 571.50 1 3.653554e+04 36535.54 NA NA NA NULL
2020 Police Department Supervisor Sheet Metal Worker NA NA 53181.14 5.318114e+04 53181.140 425.00 1 5.318114e+04 53181.14 NA NA NA NULL
2020 Police Department Supervisor Steamfitter NA NA 71677.50 7.167750e+04 71677.500 629.25 1 7.167750e+04 71677.50 NA NA NA NULL
2020 Police Department Supervisor Thermostat Repair NA NA 41329.29 4.132929e+04 41329.290 373.75 1 4.132929e+04 41329.29 NA NA NA NULL
2020 Police Department Surgeon Detailed As Deputy Chief Surgeon 162293.00000 1.622930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.622930e+05 1.622930e+05 0.00 NULL
2020 Police Department Telecommunications Associate 89747.43750 1.435959e+06 197806.81 1.236293e+04 13019.110 3331.50 16 1.236293e+04 197806.81 1.633766e+06 1.633766e+06 0.00 NULL
2020 Police Department Telephone Service Technician 75048.33333 2.251450e+05 29711.26 9.903753e+03 8201.240 607.50 3 8.201240e+03 24603.72 2.548563e+05 2.497487e+05 5107.54 NULL
2020 Police Department Tests And Measurement Specialist 95790.00000 9.579000e+04 7627.85 7.627850e+03 7627.850 122.25 1 7.627850e+03 7627.85 1.034179e+05 1.034179e+05 0.00 NULL
2020 Police Department Thermostat Repairer NA NA 191914.61 2.398933e+04 30275.085 1849.00 8 2.398933e+04 191914.61 NA NA NA NULL
2020 Police Department Traffic Enforcement Agent 43220.15186 1.571053e+08 28924161.58 7.957128e+03 5670.460 872650.33 3635 5.670460e+03 20612122.10 1.860294e+08 1.777174e+08 8312039.48 NULL
2020 Police Department Welder NA NA 4469.66 2.234830e+03 2234.830 43.50 2 2.234830e+03 4469.66 NA NA NA NULL
2020 Public Administrator-Bronx Community Associate 52879.75000 2.115190e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.115190e+05 2.115190e+05 0.00 NULL
2020 Public Administrator-Bronx Decedent Property Agent 51556.00000 5.155600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.155600e+04 5.155600e+04 0.00 NULL
2020 Public Administrator-Bronx Deputy Public Administator 126540.00000 1.265400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.265400e+05 1.265400e+05 0.00 NULL
2020 Public Administrator-Bronx Principal Administrative Associate - Non Supvr 71794.00000 7.179400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.179400e+04 7.179400e+04 0.00 NULL
2020 Public Administrator-Bronx Public Administrator 189810.00000 1.898100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.898100e+05 1.898100e+05 0.00 NULL
2020 Public Administrator-Kings Community Assistant 37074.00000 1.482960e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.482960e+05 1.482960e+05 0.00 NULL
2020 Public Administrator-Kings Community Associate 42553.25000 1.702130e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.702130e+05 1.702130e+05 0.00 NULL
2020 Public Administrator-Kings Community Coordinator 61605.50000 1.232110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.232110e+05 1.232110e+05 0.00 NULL
2020 Public Administrator-Kings Decedent Property Agent 50420.25000 2.016810e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.016810e+05 2.016810e+05 0.00 NULL
2020 Public Administrator-Kings Deputy Public Administator 126540.00000 1.265400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.265400e+05 1.265400e+05 0.00 NULL
2020 Public Administrator-Kings Public Administrator 189810.00000 1.898100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.898100e+05 1.898100e+05 0.00 NULL
2020 Public Administrator-New York Accountant 65924.00000 6.592400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.592400e+04 6.592400e+04 0.00 NULL
2020 Public Administrator-New York Clerical Associate 45160.00000 1.354800e+05 2946.56 9.821867e+02 827.520 83.25 3 8.275200e+02 2482.56 1.384266e+05 1.379626e+05 464.00 NULL
2020 Public Administrator-New York Decedent Property Agent 44486.75000 1.779470e+05 2044.71 5.111775e+02 505.650 65.00 4 5.056500e+02 2022.60 1.799917e+05 1.799696e+05 22.11 NULL
2020 Public Administrator-New York Deputy Public Administator 126540.00000 2.530800e+05 1096.77 5.483850e+02 548.385 21.00 2 5.483850e+02 1096.77 2.541768e+05 2.541768e+05 0.00 NULL
2020 Public Administrator-New York Public Administrator 189810.00000 1.898100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.898100e+05 1.898100e+05 0.00 NULL
2020 Public Administrator-Queens Decedent Property Agent 47742.00000 2.387100e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.387100e+05 2.387100e+05 0.00 NULL
2020 Public Administrator-Queens Deputy Public Administator 126540.00000 1.265400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.265400e+05 1.265400e+05 0.00 NULL
2020 Public Administrator-Queens Public Administrator 189810.00000 1.898100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.898100e+05 1.898100e+05 0.00 NULL
2020 Public Administrator-Queens Secretary 37777.00000 3.777700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.777700e+04 3.777700e+04 0.00 NULL
2020 Public Administrator-Richmond Community Coordinator 72407.00000 7.240700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.240700e+04 7.240700e+04 0.00 NULL
2020 Public Administrator-Richmond Deputy Public Administator 124800.00000 1.248000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.248000e+05 1.248000e+05 0.00 NULL
2020 Public Administrator-Richmond Public Administrator 187200.00000 1.872000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.872000e+05 1.872000e+05 0.00 NULL
2020 Public Administrator-Richmond Secretary To Public Administrator 77931.00000 1.558620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.558620e+05 1.558620e+05 0.00 NULL
2020 Public Advocate Assistant To The Public Advocate 43917.39441 1.932365e+06 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 1.932365e+06 1.932365e+06 0.00 NULL
2020 Public Advocate Counsel To The Public Advocate 130000.00000 2.600000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.600000e+05 2.600000e+05 0.00 NULL
2020 Public Advocate Director Of Communications 105000.00000 2.100000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.100000e+05 2.100000e+05 0.00 NULL
2020 Public Advocate Director Of The Ombudsman Program 102500.00000 2.050000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.050000e+05 2.050000e+05 0.00 NULL
2020 Public Advocate Executive Secretary To The Public Advocate 50000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2020 Public Advocate First Assistant To The Public Advocate 138333.33333 4.150000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.150000e+05 4.150000e+05 0.00 NULL
2020 Public Advocate Legislative Attorney 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2020 Public Advocate Legislative Information Officer 95312.50000 7.625000e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.625000e+05 7.625000e+05 0.00 NULL
2020 Public Advocate Office Assistant 12413.40000 2.482680e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.482680e+04 2.482680e+04 0.00 NULL
2020 Public Advocate Office Manager 83658.76400 8.365876e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 8.365876e+05 8.365876e+05 0.00 NULL
2020 Public Advocate Program Research Analyst To The Public Advocate 44586.11000 4.458611e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.458611e+04 4.458611e+04 0.00 NULL
2020 Public Advocate Public Advocate 184800.00000 1.848000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.848000e+05 1.848000e+05 0.00 NULL
2020 Public Advocate Special Assistant 54000.00000 1.620000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.620000e+05 1.620000e+05 0.00 NULL
2020 Public Service Corps College Aide 3175.78427 5.525865e+05 0.00 0.000000e+00 0.000 0.00 174 0.000000e+00 0.00 5.525865e+05 5.525865e+05 0.00 NULL
2020 Queens Community Board #1 Community Assistant 33805.00000 6.761000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.761000e+04 6.761000e+04 0.00 NULL
2020 Queens Community Board #1 Community Service Aide 27224.00000 2.722400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.722400e+04 2.722400e+04 0.00 NULL
2020 Queens Community Board #1 District Manager 103159.00000 1.031590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.031590e+05 1.031590e+05 0.00 NULL
2020 Queens Community Board #10 Community Assistant 39000.00000 3.900000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.900000e+04 3.900000e+04 0.00 NULL
2020 Queens Community Board #10 Community Associate 47611.00000 4.761100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.761100e+04 4.761100e+04 0.00 NULL
2020 Queens Community Board #10 Community Coordinator 33791.76140 6.758352e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.758352e+04 6.758352e+04 0.00 NULL
2020 Queens Community Board #10 District Manager 101134.00000 1.011340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.011340e+05 1.011340e+05 0.00 NULL
2020 Queens Community Board #11 Community Associate 53370.00000 5.337000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.337000e+04 5.337000e+04 0.00 NULL
2020 Queens Community Board #11 Community Coordinator 70051.00000 7.005100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.005100e+04 7.005100e+04 0.00 NULL
2020 Queens Community Board #11 District Manager 82144.00000 8.214400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.214400e+04 8.214400e+04 0.00 NULL
2020 Queens Community Board #12 Community Assistant 39209.50000 7.841900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.841900e+04 7.841900e+04 0.00 NULL
2020 Queens Community Board #12 Community Service Aide 21286.00000 2.128600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128600e+04 2.128600e+04 0.00 NULL
2020 Queens Community Board #12 District Manager 119471.00000 1.194710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.194710e+05 1.194710e+05 0.00 NULL
2020 Queens Community Board #13 Community Assistant 41200.00000 4.120000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.120000e+04 4.120000e+04 0.00 NULL
2020 Queens Community Board #13 Community Coordinator 71450.00000 7.145000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.145000e+04 7.145000e+04 0.00 NULL
2020 Queens Community Board #13 District Manager 111168.00000 1.111680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.111680e+05 1.111680e+05 0.00 NULL
2020 Queens Community Board #14 Community Coordinator 76052.00000 7.605200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.605200e+04 7.605200e+04 0.00 NULL
2020 Queens Community Board #14 Community Service Aide 24195.00000 2.419500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.419500e+04 2.419500e+04 0.00 NULL
2020 Queens Community Board #14 District Manager 137910.00000 1.379100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.379100e+05 1.379100e+05 0.00 NULL
2020 Queens Community Board #2 Community Assistant 37958.00000 3.795800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.795800e+04 3.795800e+04 0.00 NULL
2020 Queens Community Board #2 Community Associate 61454.00000 6.145400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.145400e+04 6.145400e+04 0.00 NULL
2020 Queens Community Board #2 Community Service Aide 19734.19140 1.973419e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.973419e+04 1.973419e+04 0.00 NULL
2020 Queens Community Board #2 District Manager 110083.00000 1.100830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100830e+05 1.100830e+05 0.00 NULL
2020 Queens Community Board #3 Community Associate 52048.00000 5.204800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.204800e+04 5.204800e+04 0.00 NULL
2020 Queens Community Board #3 Community Service Aide 29361.00000 2.936100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.936100e+04 2.936100e+04 0.00 NULL
2020 Queens Community Board #3 District Manager 110398.00000 1.103980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.103980e+05 1.103980e+05 0.00 NULL
2020 Queens Community Board #4 Community Assistant 42191.00000 4.219100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.219100e+04 4.219100e+04 0.00 NULL
2020 Queens Community Board #4 Community Coordinator 84066.00000 8.406600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.406600e+04 8.406600e+04 0.00 NULL
2020 Queens Community Board #4 District Manager 103707.00000 1.037070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.037070e+05 1.037070e+05 0.00 NULL
2020 Queens Community Board #5 Community Associate 43722.72370 1.311682e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.311682e+05 1.311682e+05 0.00 NULL
2020 Queens Community Board #5 District Manager 99183.00000 9.918300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.918300e+04 9.918300e+04 0.00 NULL
2020 Queens Community Board #6 Community Coordinator 65116.00000 6.511600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.511600e+04 6.511600e+04 0.00 NULL
2020 Queens Community Board #6 Community Service Aide 25684.00000 5.136800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.136800e+04 5.136800e+04 0.00 NULL
2020 Queens Community Board #6 District Manager 113318.00000 1.133180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133180e+05 1.133180e+05 0.00 NULL
2020 Queens Community Board #7 Community Assistant 29834.78580 2.983479e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.983479e+04 2.983479e+04 0.00 NULL
2020 Queens Community Board #7 Community Associate 37029.50000 7.405900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.405900e+04 7.405900e+04 0.00 NULL
2020 Queens Community Board #7 Community Service Aide 20259.00000 2.025900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.025900e+04 2.025900e+04 0.00 NULL
2020 Queens Community Board #7 District Manager 91557.00000 9.155700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.155700e+04 9.155700e+04 0.00 NULL
2020 Queens Community Board #8 Community Assistant 33919.00000 6.783800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.783800e+04 6.783800e+04 0.00 NULL
2020 Queens Community Board #8 Community Associate 49463.00000 4.946300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.946300e+04 4.946300e+04 0.00 NULL
2020 Queens Community Board #8 District Manager 126801.00000 1.268010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.268010e+05 1.268010e+05 0.00 NULL
2020 Queens Community Board #9 Community Assistant 39544.00000 3.954400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.954400e+04 3.954400e+04 0.00 NULL
2020 Queens Community Board #9 Community Associate 47436.00000 4.743600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.743600e+04 4.743600e+04 0.00 NULL
2020 Queens Community Board #9 Community Service Aide 21356.00000 2.135600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.135600e+04 2.135600e+04 0.00 NULL
2020 Queens Community Board #9 District Manager 71585.00000 7.158500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.158500e+04 7.158500e+04 0.00 NULL
2020 Staten Island Community Bd #1 Community Associate 53303.00000 5.330300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.330300e+04 5.330300e+04 0.00 NULL
2020 Staten Island Community Bd #1 Community Coordinator 71698.00000 7.169800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.169800e+04 7.169800e+04 0.00 NULL
2020 Staten Island Community Bd #1 District Manager 98033.00000 9.803300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.803300e+04 9.803300e+04 0.00 NULL
2020 Staten Island Community Bd #2 Community Assistant 24712.46400 2.471246e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.471246e+04 2.471246e+04 0.00 NULL
2020 Staten Island Community Bd #2 Community Coordinator 14188.12010 1.418812e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.418812e+04 1.418812e+04 0.00 NULL
2020 Staten Island Community Bd #2 District Manager 108861.00000 1.088610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.088610e+05 1.088610e+05 0.00 NULL
2020 Staten Island Community Bd #3 Community Coordinator 62480.00000 1.249600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.249600e+05 1.249600e+05 0.00 NULL
2020 Staten Island Community Bd #3 District Manager 104201.00000 1.042010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.042010e+05 1.042010e+05 0.00 NULL
2020 Tax Commission *Administrative Attorney 156958.00000 1.569580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.569580e+05 1.569580e+05 0.00 NULL
2020 Tax Commission *Certified Database Administrator 104053.00000 1.040530e+05 145.26 1.452600e+02 145.260 2.00 1 1.452600e+02 145.26 1.041983e+05 1.041983e+05 0.00 NULL
2020 Tax Commission Adm Manager-Non-Mgrl 81082.00000 1.621640e+05 8637.09 4.318545e+03 4318.545 154.00 2 4.318545e+03 8637.09 1.708011e+05 1.708011e+05 0.00 NULL
2020 Tax Commission Administrative Assessor 147708.00000 1.477080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.477080e+05 1.477080e+05 0.00 NULL
2020 Tax Commission Agency Attorney 81529.50900 4.076475e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.076475e+05 4.076475e+05 0.00 NULL
2020 Tax Commission Assistant City Assessor 50848.00000 5.084800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.084800e+04 5.084800e+04 0.00 NULL
2020 Tax Commission Assistant Counsel 146010.00000 1.460100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.460100e+05 1.460100e+05 0.00 NULL
2020 Tax Commission Associate Staff Analyst 102326.00000 1.023260e+05 13363.50 1.336350e+04 13363.500 216.50 1 1.336350e+04 13363.50 1.156895e+05 1.156895e+05 0.00 NULL
2020 Tax Commission Certified It Developer 118450.00000 1.184500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.184500e+05 1.184500e+05 0.00 NULL
2020 Tax Commission City Assessor 100059.87500 1.600958e+06 95547.00 5.971688e+03 5140.135 1305.50 16 5.140135e+03 82242.16 1.696505e+06 1.683200e+06 13304.84 NULL
2020 Tax Commission College Aide 8694.13542 1.043296e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.043296e+05 1.043296e+05 0.00 NULL
2020 Tax Commission Commissioner 53647.50000 3.218850e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.218850e+05 3.218850e+05 0.00 NULL
2020 Tax Commission Computer Associate 79567.00000 1.591340e+05 143.99 7.199500e+01 71.995 3.00 2 7.199500e+01 143.99 1.592780e+05 1.592780e+05 0.00 NULL
2020 Tax Commission Computer Specialist 116820.00000 1.168200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.168200e+05 1.168200e+05 0.00 NULL
2020 Tax Commission Computer Systems Manager 179040.00000 1.790400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.790400e+05 1.790400e+05 0.00 NULL
2020 Tax Commission Executive Agency Counsel 161628.00000 1.616280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.616280e+05 1.616280e+05 0.00 NULL
2020 Tax Commission Executive Assistant To The President Of The Tax Commission 147708.00000 1.477080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.477080e+05 1.477080e+05 0.00 NULL
2020 Tax Commission President 227786.00000 4.555720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.555720e+05 4.555720e+05 0.00 NULL
2020 Tax Commission Principal Administrative Associate - Non Supvr 67875.66667 4.072540e+05 216.27 3.604500e+01 0.000 5.00 6 0.000000e+00 0.00 4.074703e+05 4.072540e+05 216.27 NULL
2020 Tax Commission Secretary 70354.50000 1.407090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.407090e+05 1.407090e+05 0.00 NULL
2020 Tax Commission Secretary Of The Tax Commission 63709.00000 6.370900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.370900e+04 6.370900e+04 0.00 NULL
2020 Tax Commission Secretary To The President 84460.00000 8.446000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.446000e+04 8.446000e+04 0.00 NULL
2020 Tax Commission Special Assistant 163243.00000 1.632430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.632430e+05 1.632430e+05 0.00 NULL
2020 Tax Commission Summer College Intern 2472.25000 2.472250e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.472250e+03 2.472250e+03 0.00 NULL
2020 Taxi & Limousine Commission Accountant 78597.00000 3.143880e+05 1272.43 3.181075e+02 0.000 37.50 4 0.000000e+00 0.00 3.156604e+05 3.143880e+05 1272.43 NULL
2020 Taxi & Limousine Commission Adm Manager-Non-Mgrl 79183.42857 5.542840e+05 2956.90 4.224143e+02 0.000 68.00 7 0.000000e+00 0.00 5.572409e+05 5.542840e+05 2956.90 NULL
2020 Taxi & Limousine Commission Admin Community Relations Specialist 77631.00000 2.328930e+05 432.32 1.441067e+02 0.000 8.75 3 0.000000e+00 0.00 2.333253e+05 2.328930e+05 432.32 NULL
2020 Taxi & Limousine Commission Administratiive Taxi & Limousine Inspector 118819.86667 1.782298e+06 618.23 4.121533e+01 0.000 0.00 15 0.000000e+00 0.00 1.782916e+06 1.782298e+06 618.23 NULL
2020 Taxi & Limousine Commission Administrative Accountant 121988.00000 1.219880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.219880e+05 1.219880e+05 0.00 NULL
2020 Taxi & Limousine Commission Administrative City Planner 144671.50000 2.893430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.893430e+05 2.893430e+05 0.00 NULL
2020 Taxi & Limousine Commission Administrative Manager 152124.00000 1.521240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.521240e+05 1.521240e+05 0.00 NULL
2020 Taxi & Limousine Commission Administrative Procurement Analyst-Non-Mgrl 74280.00000 7.428000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.428000e+04 7.428000e+04 0.00 NULL
2020 Taxi & Limousine Commission Administrative Project Manager 123600.00000 1.236000e+05 642.70 6.427000e+02 642.700 9.00 1 6.427000e+02 642.70 1.242427e+05 1.242427e+05 0.00 NULL
2020 Taxi & Limousine Commission Administrative Public Information Specialist 182519.00000 1.825190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.825190e+05 1.825190e+05 0.00 NULL
2020 Taxi & Limousine Commission Administrative Quality Assurance Specialist 150185.00000 4.505550e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.505550e+05 4.505550e+05 0.00 NULL
2020 Taxi & Limousine Commission Administrative Staff Analyst 135924.55556 1.223321e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.223321e+06 1.223321e+06 0.00 NULL
2020 Taxi & Limousine Commission Agency Attorney 73418.34667 5.506376e+06 31856.86 4.247581e+02 0.000 595.50 75 0.000000e+00 0.00 5.538233e+06 5.506376e+06 31856.86 NULL
2020 Taxi & Limousine Commission Agency Attorney Interne 61390.33333 1.105026e+06 24676.57 1.370921e+03 8.435 545.25 18 8.435000e+00 151.83 1.129703e+06 1.105178e+06 24524.74 NULL
2020 Taxi & Limousine Commission Associate Staff Analyst 78295.50000 1.565910e+05 104.15 5.207500e+01 52.075 5.00 2 5.207500e+01 104.15 1.566951e+05 1.566951e+05 0.00 NULL
2020 Taxi & Limousine Commission Associate Taxi & Limousine Inspector 66501.27273 4.389084e+06 333372.77 5.051103e+03 4035.695 7415.00 66 4.035695e+03 266355.87 4.722457e+06 4.655440e+06 67016.90 NULL
2020 Taxi & Limousine Commission Cashier 40278.76844 3.222301e+05 240.56 3.007000e+01 0.000 9.25 8 0.000000e+00 0.00 3.224707e+05 3.222301e+05 240.56 NULL
2020 Taxi & Limousine Commission Certified It Administrator 122039.33333 3.661180e+05 1700.43 5.668100e+02 0.000 16.75 3 0.000000e+00 0.00 3.678184e+05 3.661180e+05 1700.43 NULL
2020 Taxi & Limousine Commission Certified It Developer 108150.00000 1.081500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081500e+05 1.081500e+05 0.00 NULL
2020 Taxi & Limousine Commission Chairman 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2020 Taxi & Limousine Commission City Research Scientist 84030.00000 5.041800e+05 874.49 1.457483e+02 0.000 20.50 6 0.000000e+00 0.00 5.050545e+05 5.041800e+05 874.49 NULL
2020 Taxi & Limousine Commission Clerical Aide 35636.50000 7.127300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.127300e+04 7.127300e+04 0.00 NULL
2020 Taxi & Limousine Commission Clerical Associate 45773.88750 1.968277e+06 21674.71 5.040630e+02 0.000 721.25 43 0.000000e+00 0.00 1.989952e+06 1.968277e+06 21674.71 NULL
2020 Taxi & Limousine Commission College Aide 8489.31250 6.791450e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.791450e+04 6.791450e+04 0.00 NULL
2020 Taxi & Limousine Commission Community Assistant 32641.20885 6.854654e+05 23469.95 1.117617e+03 805.120 887.08 21 8.051200e+02 16907.52 7.089353e+05 7.023729e+05 6562.43 NULL
2020 Taxi & Limousine Commission Community Associate 45139.33719 4.152819e+06 45323.91 4.926512e+02 0.000 1488.75 92 0.000000e+00 0.00 4.198143e+06 4.152819e+06 45323.91 NULL
2020 Taxi & Limousine Commission Community Coordinator 64095.43478 2.948390e+06 44414.25 9.655272e+02 97.920 939.50 46 9.792000e+01 4504.32 2.992804e+06 2.952894e+06 39909.93 NULL
2020 Taxi & Limousine Commission Computer Aide-Non-Spvr 48414.75050 2.420738e+05 1415.02 2.830040e+02 255.280 42.50 5 2.552800e+02 1276.40 2.434888e+05 2.433502e+05 138.62 NULL
2020 Taxi & Limousine Commission Computer Associate 74882.60125 2.995304e+05 2481.56 6.203900e+02 52.360 57.00 4 5.236000e+01 209.44 3.020120e+05 2.997398e+05 2272.12 NULL
2020 Taxi & Limousine Commission Computer Operations Manager 148320.00000 2.966400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.966400e+05 2.966400e+05 0.00 NULL
2020 Taxi & Limousine Commission Computer Programmer Analyst 79899.12000 7.989912e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.989912e+04 7.989912e+04 0.00 NULL
2020 Taxi & Limousine Commission Computer Specialist 106657.69231 1.386550e+06 18600.85 1.430835e+03 0.000 262.50 13 0.000000e+00 0.00 1.405151e+06 1.386550e+06 18600.85 NULL
2020 Taxi & Limousine Commission Computer Systems Manager 128987.22222 1.160885e+06 3232.47 3.591633e+02 0.000 44.00 9 0.000000e+00 0.00 1.164117e+06 1.160885e+06 3232.47 NULL
2020 Taxi & Limousine Commission Customer Information Representative Ma L 1549 34895.56400 3.489556e+05 1003.41 1.003410e+02 0.000 38.50 10 0.000000e+00 0.00 3.499590e+05 3.489556e+05 1003.41 NULL
2020 Taxi & Limousine Commission Economist 57001.66667 1.710050e+05 744.18 2.480600e+02 0.000 19.00 3 0.000000e+00 0.00 1.717492e+05 1.710050e+05 744.18 NULL
2020 Taxi & Limousine Commission Executive Agency Counsel 139824.50000 1.398245e+06 2.18 2.180000e-01 0.000 0.00 10 0.000000e+00 0.00 1.398247e+06 1.398245e+06 2.18 NULL
2020 Taxi & Limousine Commission First Deputy Commissioner General Counsel 135960.00000 1.359600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.359600e+05 1.359600e+05 0.00 NULL
2020 Taxi & Limousine Commission Graphic Artist 51500.00000 5.150000e+04 310.07 3.100700e+02 310.070 11.00 1 3.100700e+02 310.07 5.181007e+04 5.181007e+04 0.00 NULL
2020 Taxi & Limousine Commission Investigator 66236.00000 6.623600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.623600e+04 6.623600e+04 0.00 NULL
2020 Taxi & Limousine Commission Maintenance Worker NA NA 4090.85 1.022712e+03 298.725 84.50 4 2.987250e+02 1194.90 NA NA NA NULL
2020 Taxi & Limousine Commission Operations Communications Specialist 29851.57694 2.686642e+05 3410.01 3.788900e+02 255.590 128.25 9 2.555900e+02 2300.31 2.720742e+05 2.709645e+05 1109.70 NULL
2020 Taxi & Limousine Commission Principal Administrative Associate - Non Supvr 64648.96815 1.745522e+06 27976.74 1.036176e+03 0.480 568.50 27 4.800000e-01 12.96 1.773499e+06 1.745535e+06 27963.78 NULL
2020 Taxi & Limousine Commission Secretary 38160.00000 3.816000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.816000e+04 3.816000e+04 0.00 NULL
2020 Taxi & Limousine Commission Staff Analyst 48964.65865 1.958586e+05 1548.41 3.871025e+02 0.000 41.00 4 0.000000e+00 0.00 1.974070e+05 1.958586e+05 1548.41 NULL
2020 Taxi & Limousine Commission Staff Analyst Trainee 40805.00000 8.161000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.161000e+04 8.161000e+04 0.00 NULL
2020 Taxi & Limousine Commission Stock Worker 17854.20225 8.927101e+04 3015.97 6.031940e+02 0.000 132.75 5 0.000000e+00 0.00 9.228698e+04 8.927101e+04 3015.97 NULL
2020 Taxi & Limousine Commission Summer College Intern 4344.42500 4.344425e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.344425e+04 4.344425e+04 0.00 NULL
2020 Taxi & Limousine Commission Summer Graduate Intern 3120.95250 9.362858e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.362858e+03 9.362858e+03 0.00 NULL
2020 Taxi & Limousine Commission Supervisor Of Stock Workers 44807.57375 8.961515e+04 3468.83 1.734415e+03 1734.415 115.25 2 1.734415e+03 3468.83 9.308398e+04 9.308398e+04 0.00 NULL
2020 Taxi & Limousine Commission Taxi And Limousine Inspector 48264.28065 1.496193e+07 652704.72 2.105499e+03 1190.775 19118.77 310 1.190775e+03 369140.25 1.561463e+07 1.533107e+07 283564.47 NULL
2020 Taxi & Limousine Commission Telecommunications Associate 72100.00000 7.210000e+04 98.66 9.866000e+01 98.660 2.50 1 9.866000e+01 98.66 7.219866e+04 7.219866e+04 0.00 NULL
2020 Teachers Retirement System Accountant 71010.44444 6.390940e+05 21513.41 2.390379e+03 0.000 398.25 9 0.000000e+00 0.00 6.606074e+05 6.390940e+05 21513.41 NULL
2020 Teachers Retirement System Adm Manager-Non-Mgrl 82186.33333 4.931180e+05 21435.51 3.572585e+03 51.845 316.50 6 5.184500e+01 311.07 5.145535e+05 4.934291e+05 21124.44 NULL
2020 Teachers Retirement System Administrative Accountant 90447.00000 5.426820e+05 4525.00 7.541667e+02 0.000 87.50 6 0.000000e+00 0.00 5.472070e+05 5.426820e+05 4525.00 NULL
2020 Teachers Retirement System Administrative Community Relations Specialist 98050.00000 9.805000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.805000e+04 9.805000e+04 0.00 NULL
2020 Teachers Retirement System Administrative Labor Relations Analyst 127842.00000 1.278420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.278420e+05 1.278420e+05 0.00 NULL
2020 Teachers Retirement System Administrative Management Auditor 152250.00000 1.522500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.522500e+05 1.522500e+05 0.00 NULL
2020 Teachers Retirement System Administrative Manager 107982.75000 8.638620e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.638620e+05 8.638620e+05 0.00 NULL
2020 Teachers Retirement System Administrative Project Manager 163126.00000 1.631260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.631260e+05 1.631260e+05 0.00 NULL
2020 Teachers Retirement System Administrative Public Information Specialist 102537.00000 1.025370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.025370e+05 1.025370e+05 0.00 NULL
2020 Teachers Retirement System Administrative Retirement Benefits Specialist 115799.80000 2.894995e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 2.894995e+06 2.894995e+06 0.00 NULL
2020 Teachers Retirement System Administrative Retirements Benefits Specialist 91183.50000 1.823670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.823670e+05 1.823670e+05 0.00 NULL
2020 Teachers Retirement System Administrative Staff Analyst 99057.84615 1.287752e+06 2074.41 1.595700e+02 0.000 52.00 13 0.000000e+00 0.00 1.289826e+06 1.287752e+06 2074.41 NULL
2020 Teachers Retirement System Agency Attorney 90668.50000 3.626740e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.626740e+05 3.626740e+05 0.00 NULL
2020 Teachers Retirement System Agency Attorney Interne 62397.00000 6.239700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.239700e+04 6.239700e+04 0.00 NULL
2020 Teachers Retirement System Assistant Executive Director 185637.00000 5.569110e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.569110e+05 5.569110e+05 0.00 NULL
2020 Teachers Retirement System Assistant Retirement Benefits Examiner 54861.57143 3.840310e+05 33389.01 4.769859e+03 4512.830 945.50 7 4.512830e+03 31589.81 4.174200e+05 4.156208e+05 1799.20 NULL
2020 Teachers Retirement System Associate Public Information Specialist 51778.00000 5.177800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.177800e+04 5.177800e+04 0.00 NULL
2020 Teachers Retirement System Associate Public Records Officer 71616.00000 7.161600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.161600e+04 7.161600e+04 0.00 NULL
2020 Teachers Retirement System Associate Retirement Benefits Examiner 63826.65306 6.255012e+06 222943.62 2.274935e+03 0.000 4778.00 98 0.000000e+00 0.00 6.477956e+06 6.255012e+06 222943.62 NULL
2020 Teachers Retirement System Associate Staff Analyst 79463.50000 3.178540e+05 9912.16 2.478040e+03 1959.075 192.25 4 1.959075e+03 7836.30 3.277662e+05 3.256903e+05 2075.86 NULL
2020 Teachers Retirement System Bookkeeper 55838.00000 3.350280e+05 2269.81 3.783017e+02 0.000 58.00 6 0.000000e+00 0.00 3.372978e+05 3.350280e+05 2269.81 NULL
2020 Teachers Retirement System Certified It Administrator 101628.00000 1.016280e+05 1341.29 1.341290e+03 1341.290 19.25 1 1.341290e+03 1341.29 1.029693e+05 1.029693e+05 0.00 NULL
2020 Teachers Retirement System Certified It Developer 127639.00000 1.276390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.276390e+05 1.276390e+05 0.00 NULL
2020 Teachers Retirement System Clerical Associate 51897.06250 8.303530e+05 7284.23 4.552644e+02 0.000 193.25 16 0.000000e+00 0.00 8.376372e+05 8.303530e+05 7284.23 NULL
2020 Teachers Retirement System College Aide 11550.69271 1.386083e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.386083e+05 1.386083e+05 0.00 NULL
2020 Teachers Retirement System College Aide - Assignment Levels Ii And Iii 16317.25090 8.158625e+04 135.71 2.714200e+01 0.000 7.75 5 0.000000e+00 0.00 8.172196e+04 8.158625e+04 135.71 NULL
2020 Teachers Retirement System Community Associate 51685.00000 1.033700e+05 3486.98 1.743490e+03 1743.490 116.50 2 1.743490e+03 3486.98 1.068570e+05 1.068570e+05 0.00 NULL
2020 Teachers Retirement System Community Coordinator 77374.50000 1.547490e+05 2068.77 1.034385e+03 1034.385 44.25 2 1.034385e+03 2068.77 1.568178e+05 1.568178e+05 0.00 NULL
2020 Teachers Retirement System Computer Associate 72727.77778 6.545500e+05 11576.73 1.286303e+03 0.000 280.00 9 0.000000e+00 0.00 6.661267e+05 6.545500e+05 11576.73 NULL
2020 Teachers Retirement System Computer Operations Manager 127805.50000 2.556110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.556110e+05 2.556110e+05 0.00 NULL
2020 Teachers Retirement System Computer Programmer Analyst 83740.00000 8.374000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.374000e+04 8.374000e+04 0.00 NULL
2020 Teachers Retirement System Computer Specialist 110660.56000 2.766514e+06 4997.60 1.999040e+02 0.000 73.25 25 0.000000e+00 0.00 2.771512e+06 2.766514e+06 4997.60 NULL
2020 Teachers Retirement System Computer Systems Manager 158744.77083 7.619749e+06 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 7.619749e+06 7.619749e+06 0.00 NULL
2020 Teachers Retirement System Customer Information Representative Ma L 1549 58724.66667 8.808700e+05 17510.03 1.167335e+03 28.980 414.00 15 2.898000e+01 434.70 8.983800e+05 8.813047e+05 17075.33 NULL
2020 Teachers Retirement System Deputy Executive Director 226402.00000 2.264020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.264020e+05 2.264020e+05 0.00 NULL
2020 Teachers Retirement System Executive Agency Counsel 167686.00000 3.353720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.353720e+05 3.353720e+05 0.00 NULL
2020 Teachers Retirement System Executive Director 244491.00000 2.444910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.444910e+05 2.444910e+05 0.00 NULL
2020 Teachers Retirement System Graphic Artist 64677.50000 1.293550e+05 226.34 1.131700e+02 113.170 5.25 2 1.131700e+02 226.34 1.295813e+05 1.295813e+05 0.00 NULL
2020 Teachers Retirement System Investment Analyst 76743.25000 3.069730e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.069730e+05 3.069730e+05 0.00 NULL
2020 Teachers Retirement System Labor Relations Analyst Trainee 49180.00000 4.918000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.918000e+04 4.918000e+04 0.00 NULL
2020 Teachers Retirement System Management Auditor 77994.33333 2.339830e+05 16098.86 5.366287e+03 0.000 299.50 3 0.000000e+00 0.00 2.500819e+05 2.339830e+05 16098.86 NULL
2020 Teachers Retirement System Office Machine Aide 48373.20000 2.418660e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.418660e+05 2.418660e+05 0.00 NULL
2020 Teachers Retirement System Paralegal Aide 53154.00000 5.315400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.315400e+04 5.315400e+04 0.00 NULL
2020 Teachers Retirement System Principal Administrative Associate - Non Supvr 67456.10526 1.281666e+06 27452.27 1.444856e+03 3.970 634.00 19 3.970000e+00 75.43 1.309118e+06 1.281741e+06 27376.84 NULL
2020 Teachers Retirement System Secretary To The Executive Director Of Retirement System 49329.00000 4.932900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.932900e+04 4.932900e+04 0.00 NULL
2020 Teachers Retirement System Staff Analyst 63675.50000 1.273510e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.273510e+05 1.273510e+05 0.00 NULL
2020 Teachers Retirement System Summer College Intern 3063.16776 1.164004e+05 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 1.164004e+05 1.164004e+05 0.00 NULL
2020 Teachers Retirement System Supervisor Of Office Machine Operations 46933.00000 4.693300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.693300e+04 4.693300e+04 0.00 NULL
2020 Teachers Retirement System Supervisor Of Stock Workers 55204.33333 1.656130e+05 646.49 2.154967e+02 0.000 15.50 3 0.000000e+00 0.00 1.662595e+05 1.656130e+05 646.49 NULL
2021 Admin For Children’s Svcs *Attorney At Law 95478.00000 1.050258e+06 428.60 3.896364e+01 0.000 7.50 11 0.000000e+00 0.00 1.050687e+06 1.050258e+06 428.60 NULL
2021 Admin For Children’s Svcs *Certified Database Administrator 115599.00000 2.311980e+05 8127.97 4.063985e+03 4063.985 88.50 2 4.063985e+03 8127.97 2.393260e+05 2.393260e+05 0.00 NULL
2021 Admin For Children’s Svcs *Certified Local Area Network Administrator 122075.00000 1.220750e+05 3112.90 3.112900e+03 3112.900 39.75 1 3.112900e+03 3112.90 1.251879e+05 1.251879e+05 0.00 NULL
2021 Admin For Children’s Svcs *Cook 39910.16667 4.789220e+05 16264.77 1.355398e+03 1127.820 581.00 12 1.127820e+03 13533.84 4.951868e+05 4.924558e+05 2730.93 NULL
2021 Admin For Children’s Svcs *Custodial Assistant 41377.00000 4.137700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.137700e+04 4.137700e+04 0.00 NULL
2021 Admin For Children’s Svcs *Senior Cook 43793.50000 3.503480e+05 26337.31 3.292164e+03 1712.400 839.00 8 1.712400e+03 13699.20 3.766853e+05 3.640472e+05 12638.11 NULL
2021 Admin For Children’s Svcs Accountant 69608.55556 6.264770e+05 1674.88 1.860978e+02 0.000 36.50 9 0.000000e+00 0.00 6.281519e+05 6.264770e+05 1674.88 NULL
2021 Admin For Children’s Svcs Adm Manager-Non-Mgrl 78769.19355 4.883690e+06 125127.01 2.018178e+03 0.000 2335.50 62 0.000000e+00 0.00 5.008817e+06 4.883690e+06 125127.01 NULL
2021 Admin For Children’s Svcs Admin Community Relations Specialist 85454.60870 1.965456e+06 42987.82 1.869036e+03 0.000 767.25 23 0.000000e+00 0.00 2.008444e+06 1.965456e+06 42987.82 NULL
2021 Admin For Children’s Svcs Admin Construction Project Manager 123537.00000 1.235370e+05 63087.84 6.308784e+04 63087.840 678.00 1 6.308784e+04 63087.84 1.866248e+05 1.866248e+05 0.00 NULL
2021 Admin For Children’s Svcs Administrative Architect 132200.66667 3.966020e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.966020e+05 3.966020e+05 0.00 NULL
2021 Admin For Children’s Svcs Administrative Business Promotion Coordinator 109396.66667 6.563800e+05 1126.12 1.876867e+02 0.000 20.00 6 0.000000e+00 0.00 6.575061e+05 6.563800e+05 1126.12 NULL
2021 Admin For Children’s Svcs Administrative Construction Project Manager 141956.00000 1.419560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.419560e+05 1.419560e+05 0.00 NULL
2021 Admin For Children’s Svcs Administrative Contract Specialist 96890.33333 2.906710e+05 2043.52 6.811733e+02 0.000 36.00 3 0.000000e+00 0.00 2.927145e+05 2.906710e+05 2043.52 NULL
2021 Admin For Children’s Svcs Administrative Director Of Residential Child Care 91870.94444 3.307354e+06 254915.80 7.080994e+03 5.860 4179.75 36 5.860000e+00 210.96 3.562270e+06 3.307565e+06 254704.84 NULL
2021 Admin For Children’s Svcs Administrative Director Of Social Services 107061.16518 2.912064e+07 482437.11 1.773666e+03 0.000 9308.75 272 0.000000e+00 0.00 2.960307e+07 2.912064e+07 482437.11 NULL
2021 Admin For Children’s Svcs Administrative Juvenile Counselor 113005.66667 3.390170e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.390170e+05 3.390170e+05 0.00 NULL
2021 Admin For Children’s Svcs Administrative Management Auditor 100696.00000 1.006960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.006960e+05 1.006960e+05 0.00 NULL
2021 Admin For Children’s Svcs Administrative Manager 135530.00000 1.355300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.355300e+05 1.355300e+05 0.00 NULL
2021 Admin For Children’s Svcs Administrative Nutritionist 105078.50000 2.101570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.101570e+05 2.101570e+05 0.00 NULL
2021 Admin For Children’s Svcs Administrative Procurement Analyst-Non-Mgrl 84069.33333 5.044160e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.044160e+05 5.044160e+05 0.00 NULL
2021 Admin For Children’s Svcs Administrative Project Manager 106386.33333 3.191590e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.191590e+05 3.191590e+05 0.00 NULL
2021 Admin For Children’s Svcs Administrative Public Health Nurse 125478.43400 6.273922e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.273922e+05 6.273922e+05 0.00 NULL
2021 Admin For Children’s Svcs Administrative Public Information Specialist 114994.50000 4.599780e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.599780e+05 4.599780e+05 0.00 NULL
2021 Admin For Children’s Svcs Administrative Staff Analyst 103719.12308 1.348349e+07 134173.27 1.032102e+03 0.000 1918.50 130 0.000000e+00 0.00 1.361766e+07 1.348349e+07 134173.27 NULL
2021 Admin For Children’s Svcs Agency Attorney 88297.38614 1.783607e+07 185856.39 9.200811e+02 0.000 2908.00 202 0.000000e+00 0.00 1.802193e+07 1.783607e+07 185856.39 NULL
2021 Admin For Children’s Svcs Agency Attorney Interne 71757.00000 5.597046e+06 16216.31 2.079014e+02 0.000 333.50 78 0.000000e+00 0.00 5.613262e+06 5.597046e+06 16216.31 NULL
2021 Admin For Children’s Svcs Agency Chief Contracting Officer 187991.00000 1.879910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.879910e+05 1.879910e+05 0.00 NULL
2021 Admin For Children’s Svcs Architect 98305.33333 2.949160e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.949160e+05 2.949160e+05 0.00 NULL
2021 Admin For Children’s Svcs Assistant Commissioner 145876.00000 2.917520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.917520e+05 2.917520e+05 0.00 NULL
2021 Admin For Children’s Svcs Assistant Commissioner For Aftercare & Preventive Svcs 119499.00000 1.194990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.194990e+05 1.194990e+05 0.00 NULL
2021 Admin For Children’s Svcs Assistant Commissioner For Facilities Development & Const 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2021 Admin For Children’s Svcs Assistant Commissioner For Facilities Operations 160370.00000 1.603700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.603700e+05 1.603700e+05 0.00 NULL
2021 Admin For Children’s Svcs Assistant Commissioner For Management Acd-Doss 226745.00000 2.267450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.267450e+05 2.267450e+05 0.00 NULL
2021 Admin For Children’s Svcs Assistant Deputy Administrator 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2021 Admin For Children’s Svcs Associate Investigator 74158.00000 7.415800e+04 3.43 3.430000e+00 3.430 0.00 1 3.430000e+00 3.43 7.416143e+04 7.416143e+04 0.00 NULL
2021 Admin For Children’s Svcs Associate Project Manager 86838.00000 8.683800e+04 9748.62 9.748620e+03 9748.620 159.00 1 9.748620e+03 9748.62 9.658662e+04 9.658662e+04 0.00 NULL
2021 Admin For Children’s Svcs Associate Staff Analyst 81960.20635 5.163493e+06 61799.39 9.809427e+02 0.000 1040.50 63 0.000000e+00 0.00 5.225292e+06 5.163493e+06 61799.39 NULL
2021 Admin For Children’s Svcs Associate Youth Development Specialist 71660.08247 6.951028e+06 1546535.01 1.594366e+04 13648.790 28215.25 97 1.364879e+04 1323932.63 8.497563e+06 8.274961e+06 222602.38 NULL
2021 Admin For Children’s Svcs Asst Commissioner For Non-Secure Detention Juvenile Justice 172287.00000 1.722870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.722870e+05 1.722870e+05 0.00 NULL
2021 Admin For Children’s Svcs Asst Commissioner For Planning & Prg Deve 134197.00000 1.341970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.341970e+05 1.341970e+05 0.00 NULL
2021 Admin For Children’s Svcs Bookkeeper 47558.00000 2.377900e+05 238.64 4.772800e+01 0.000 8.00 5 0.000000e+00 0.00 2.380286e+05 2.377900e+05 238.64 NULL
2021 Admin For Children’s Svcs Carpenter NA NA 121950.28 4.065009e+04 41404.340 1586.50 3 4.065009e+04 121950.28 NA NA NA NULL
2021 Admin For Children’s Svcs Caseworker 51003.85714 2.142162e+06 5966.76 1.420657e+02 0.000 162.00 42 0.000000e+00 0.00 2.148129e+06 2.142162e+06 5966.76 NULL
2021 Admin For Children’s Svcs Certified It Administrator 109550.58333 1.314607e+06 34863.33 2.905278e+03 2159.445 493.50 12 2.159445e+03 25913.34 1.349470e+06 1.340520e+06 8949.99 NULL
2021 Admin For Children’s Svcs Certified It Developer 103254.33333 3.097630e+05 4296.13 1.432043e+03 517.550 53.00 3 5.175500e+02 1552.65 3.140591e+05 3.113157e+05 2743.48 NULL
2021 Admin For Children’s Svcs Chaplain 62784.00000 6.278400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.278400e+04 6.278400e+04 0.00 NULL
2021 Admin For Children’s Svcs Child And Family Specialist 86384.24380 2.090499e+07 456745.75 1.887379e+03 1.785 7688.75 242 1.785000e+00 431.97 2.136173e+07 2.090542e+07 456313.78 NULL
2021 Admin For Children’s Svcs Child Protective Specialist 59524.71318 1.467284e+08 6725506.08 2.728400e+03 816.050 162471.74 2465 8.160500e+02 2011563.25 1.534539e+08 1.487400e+08 4713942.83 NULL
2021 Admin For Children’s Svcs Child Protective Specialist Supervisor 82126.63105 4.919385e+07 4055243.19 6.770022e+03 2282.490 67678.75 599 2.282490e+03 1367211.51 5.324910e+07 5.056106e+07 2688031.68 NULL
2021 Admin For Children’s Svcs Child Welfare Specialist 59814.79186 1.321907e+07 393894.92 1.782330e+03 0.430 8377.25 221 4.300000e-01 95.03 1.361296e+07 1.321916e+07 393799.89 NULL
2021 Admin For Children’s Svcs Child Welfare Specialist Supervisor 79135.09804 1.210767e+07 296546.42 1.938212e+03 0.230 5555.50 153 2.300000e-01 35.19 1.240422e+07 1.210771e+07 296511.23 NULL
2021 Admin For Children’s Svcs Children’s Counselor 55850.93733 1.675528e+05 17491.97 5.830657e+03 214.600 520.75 3 2.146000e+02 643.80 1.850448e+05 1.681966e+05 16848.17 NULL
2021 Admin For Children’s Svcs City Custodial Assistant 39168.00000 7.833600e+04 16049.27 8.024635e+03 8024.635 566.75 2 8.024635e+03 16049.27 9.438527e+04 9.438527e+04 0.00 NULL
2021 Admin For Children’s Svcs City Laborer NA NA 43219.29 8.643858e+03 4540.380 785.00 5 4.540380e+03 22701.90 NA NA NA NULL
2021 Admin For Children’s Svcs City Medical Director 159197.30000 9.551838e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.551838e+05 9.551838e+05 0.00 NULL
2021 Admin For Children’s Svcs City Research Scientist 95907.93750 3.069054e+06 335.15 1.047344e+01 0.000 12.00 32 0.000000e+00 0.00 3.069389e+06 3.069054e+06 335.15 NULL
2021 Admin For Children’s Svcs Clerical Aide 33906.00000 3.390600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.390600e+04 3.390600e+04 0.00 NULL
2021 Admin For Children’s Svcs Clerical Associate 44740.29333 6.711044e+06 113169.30 7.544620e+02 0.000 3191.00 150 0.000000e+00 0.00 6.824213e+06 6.711044e+06 113169.30 NULL
2021 Admin For Children’s Svcs Commissioner Of Children’s Services 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2021 Admin For Children’s Svcs Community Assistant 38153.19695 1.640587e+06 21240.00 4.939535e+02 0.000 794.25 43 0.000000e+00 0.00 1.661827e+06 1.640587e+06 21240.00 NULL
2021 Admin For Children’s Svcs Community Associate 48321.85915 3.430852e+06 231297.17 3.257707e+03 3.830 6566.50 71 3.830000e+00 271.93 3.662149e+06 3.431124e+06 231025.24 NULL
2021 Admin For Children’s Svcs Community Coordinator 67423.95627 2.838549e+07 511400.16 1.214727e+03 0.000 11130.00 421 0.000000e+00 0.00 2.889689e+07 2.838549e+07 511400.16 NULL
2021 Admin For Children’s Svcs Computer Aide-Non-Spvr 55522.50000 5.552250e+05 3422.88 3.422880e+02 0.000 90.50 10 0.000000e+00 0.00 5.586479e+05 5.552250e+05 3422.88 NULL
2021 Admin For Children’s Svcs Computer Associate 68727.80645 2.130562e+06 24538.69 7.915706e+02 0.000 586.75 31 0.000000e+00 0.00 2.155101e+06 2.130562e+06 24538.69 NULL
2021 Admin For Children’s Svcs Computer Service Technician 46821.57143 3.277510e+05 1481.15 2.115929e+02 77.400 47.25 7 7.740000e+01 541.80 3.292322e+05 3.282928e+05 939.35 NULL
2021 Admin For Children’s Svcs Computer Specialist 104907.24242 3.461939e+06 13188.92 3.996642e+02 0.000 205.75 33 0.000000e+00 0.00 3.475128e+06 3.461939e+06 13188.92 NULL
2021 Admin For Children’s Svcs Computer Systems Manager 119793.67857 3.354223e+06 4618.29 1.649389e+02 0.000 60.50 28 0.000000e+00 0.00 3.358841e+06 3.354223e+06 4618.29 NULL
2021 Admin For Children’s Svcs Confidential Agency Investigator 154905.00000 1.549050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.549050e+05 1.549050e+05 0.00 NULL
2021 Admin For Children’s Svcs Confidential Strategy Planner 88384.85714 6.186940e+05 1721.40 2.459143e+02 0.000 29.00 7 0.000000e+00 0.00 6.204154e+05 6.186940e+05 1721.40 NULL
2021 Admin For Children’s Svcs Congreg Care Spec - Acs 46228.89683 5.824841e+06 1586719.62 1.259301e+04 5149.725 44287.73 126 5.149725e+03 648865.35 7.411561e+06 6.473706e+06 937854.27 NULL
2021 Admin For Children’s Svcs Congreg Care Spec- Djj 58461.60000 8.769240e+05 173871.34 1.159142e+04 7300.990 3999.75 15 7.300990e+03 109514.85 1.050795e+06 9.864388e+05 64356.49 NULL
2021 Admin For Children’s Svcs Construction Project Manager 97002.71429 6.790190e+05 15436.26 2.205180e+03 67.230 189.50 7 6.723000e+01 470.61 6.944553e+05 6.794896e+05 14965.65 NULL
2021 Admin For Children’s Svcs Consultant 88226.00000 8.822600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.822600e+04 8.822600e+04 0.00 NULL
2021 Admin For Children’s Svcs Contract Specialist 47754.00000 4.775400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.775400e+04 4.775400e+04 0.00 NULL
2021 Admin For Children’s Svcs Custodian 44654.83333 5.358580e+05 57738.63 4.811552e+03 4175.570 1846.00 12 4.175570e+03 50106.84 5.935966e+05 5.859648e+05 7631.79 NULL
2021 Admin For Children’s Svcs Deputy Commissioner 208688.33333 6.260650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.260650e+05 6.260650e+05 0.00 NULL
2021 Admin For Children’s Svcs Deputy Director Of Administration 127150.00000 5.086000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.086000e+05 5.086000e+05 0.00 NULL
2021 Admin For Children’s Svcs Deputy Director Of Headstart Program 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2021 Admin For Children’s Svcs Deputy General Counsel 172919.00000 1.729190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.729190e+05 1.729190e+05 0.00 NULL
2021 Admin For Children’s Svcs Deputy Superintendent 102258.00000 2.045160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.045160e+05 2.045160e+05 0.00 NULL
2021 Admin For Children’s Svcs Director Of Advocacy 113300.00000 1.133000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133000e+05 1.133000e+05 0.00 NULL
2021 Admin For Children’s Svcs Director Of Field Operations 110581.87454 2.996769e+07 11374.40 4.197196e+01 0.000 194.75 271 0.000000e+00 0.00 2.997906e+07 2.996769e+07 11374.40 NULL
2021 Admin For Children’s Svcs Director Of Headstart Program 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2021 Admin For Children’s Svcs Director Of Program Planning 133083.00000 1.330830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.330830e+05 1.330830e+05 0.00 NULL
2021 Admin For Children’s Svcs Director Of Security 114000.00000 1.140000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.140000e+05 1.140000e+05 0.00 NULL
2021 Admin For Children’s Svcs Electrician NA NA 83554.22 4.177711e+04 41777.110 913.75 2 4.177711e+04 83554.22 NA NA NA NULL
2021 Admin For Children’s Svcs Eligibility Specialist 51005.50000 1.020110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.020110e+05 1.020110e+05 0.00 NULL
2021 Admin For Children’s Svcs Exec Asst To The Deputy Commissioner 185400.00000 1.854000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.854000e+05 1.854000e+05 0.00 NULL
2021 Admin For Children’s Svcs Executive Agency Counsel 139500.85507 9.625559e+06 0.00 0.000000e+00 0.000 0.00 69 0.000000e+00 0.00 9.625559e+06 9.625559e+06 0.00 NULL
2021 Admin For Children’s Svcs Executive Assistant 139651.00000 1.396510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.396510e+05 1.396510e+05 0.00 NULL
2021 Admin For Children’s Svcs Executive Assistant To The Executive Deputy Adm 127396.00000 1.273960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.273960e+05 1.273960e+05 0.00 NULL
2021 Admin For Children’s Svcs Executive Deputy Administrator 232723.00000 2.327230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.327230e+05 2.327230e+05 0.00 NULL
2021 Admin For Children’s Svcs Graphic Artist 70074.00000 1.401480e+05 0.26 1.300000e-01 0.130 0.00 2 1.300000e-01 0.26 1.401483e+05 1.401483e+05 0.00 NULL
2021 Admin For Children’s Svcs Home Aide 36310.00000 3.631000e+04 21.90 2.190000e+01 21.900 0.00 1 2.190000e+01 21.90 3.633190e+04 3.633190e+04 0.00 NULL
2021 Admin For Children’s Svcs Homemaker 37673.00000 1.506920e+05 1204.29 3.010725e+02 133.555 55.00 4 1.335550e+02 534.22 1.518963e+05 1.512262e+05 670.07 NULL
2021 Admin For Children’s Svcs Institutional Aide 39946.89189 1.478035e+06 177211.01 4.789487e+03 2649.140 6465.25 37 2.649140e+03 98018.18 1.655246e+06 1.576053e+06 79192.83 NULL
2021 Admin For Children’s Svcs Investigator 78716.66667 2.361500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.361500e+05 2.361500e+05 0.00 NULL
2021 Admin For Children’s Svcs It Infrastructure Engineer 135000.00000 1.350000e+05 15452.55 1.545255e+04 15452.550 157.25 1 1.545255e+04 15452.55 1.504525e+05 1.504525e+05 0.00 NULL
2021 Admin For Children’s Svcs It Project Specialist 104841.00000 4.193640e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.193640e+05 4.193640e+05 0.00 NULL
2021 Admin For Children’s Svcs Maintenance Worker 55850.49150 1.117010e+05 251.11 1.255550e+02 125.555 8.00 2 1.255550e+02 251.11 1.119521e+05 1.119521e+05 0.00 NULL
2021 Admin For Children’s Svcs Management Auditor 82617.75000 3.304710e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.304710e+05 3.304710e+05 0.00 NULL
2021 Admin For Children’s Svcs Motor Vehicle Operator 49927.00000 7.489050e+05 309400.38 2.062669e+04 20032.120 8248.25 15 2.003212e+04 300481.80 1.058305e+06 1.049387e+06 8918.58 NULL
2021 Admin For Children’s Svcs Motor Vehicle Supervisor 58036.00000 1.160720e+05 8185.51 4.092755e+03 4092.755 192.00 2 4.092755e+03 8185.51 1.242575e+05 1.242575e+05 0.00 NULL
2021 Admin For Children’s Svcs Ombudsman 67857.00000 6.785700e+04 169.86 1.698600e+02 169.860 4.50 1 1.698600e+02 169.86 6.802686e+04 6.802686e+04 0.00 NULL
2021 Admin For Children’s Svcs Painter NA NA 62372.00 2.079067e+04 28459.190 995.00 3 2.079067e+04 62372.00 NA NA NA NULL
2021 Admin For Children’s Svcs Paralegal Aide 46420.61111 8.355710e+05 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 8.355710e+05 8.355710e+05 0.00 NULL
2021 Admin For Children’s Svcs Plumber NA NA 41934.64 1.048366e+04 2649.190 397.75 4 2.649190e+03 10596.76 NA NA NA NULL
2021 Admin For Children’s Svcs Principal Administrative Associate - Non Supvr 59055.06600 1.529526e+07 132645.06 5.121431e+02 0.000 3107.58 259 0.000000e+00 0.00 1.542791e+07 1.529526e+07 132645.06 NULL
2021 Admin For Children’s Svcs Procurement Analyst 69447.60000 3.472380e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.472380e+05 3.472380e+05 0.00 NULL
2021 Admin For Children’s Svcs Program Evaluator 80892.68085 7.603912e+06 57406.85 6.107112e+02 0.000 1075.00 94 0.000000e+00 0.00 7.661319e+06 7.603912e+06 57406.85 NULL
2021 Admin For Children’s Svcs Protection Agent 68746.46405 1.051821e+07 104955.13 6.859812e+02 0.000 2063.44 153 0.000000e+00 0.00 1.062316e+07 1.051821e+07 104955.13 NULL
2021 Admin For Children’s Svcs Recreation Supervisor 59269.00000 5.926900e+04 12947.97 1.294797e+04 12947.970 244.25 1 1.294797e+04 12947.97 7.221697e+04 7.221697e+04 0.00 NULL
2021 Admin For Children’s Svcs Research Assistant 57036.33333 1.711090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.711090e+05 1.711090e+05 0.00 NULL
2021 Admin For Children’s Svcs Secretary 45153.66667 2.709220e+05 11.59 1.931667e+00 0.000 0.00 6 0.000000e+00 0.00 2.709336e+05 2.709220e+05 11.59 NULL
2021 Admin For Children’s Svcs Sheet Metal Worker NA NA 28960.00 2.896000e+04 28960.000 250.00 1 2.896000e+04 28960.00 NA NA NA NULL
2021 Admin For Children’s Svcs Space Analyst 83357.50000 3.334300e+05 10854.20 2.713550e+03 3.580 211.00 4 3.580000e+00 14.32 3.442842e+05 3.334443e+05 10839.88 NULL
2021 Admin For Children’s Svcs Special Assistant To The Human Resources Administrator 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2021 Admin For Children’s Svcs Special Officer 39193.27358 4.154487e+06 619290.67 5.842365e+03 2996.605 20610.97 106 2.996605e+03 317640.13 4.773778e+06 4.472127e+06 301650.54 NULL
2021 Admin For Children’s Svcs Staff Analyst 61246.86667 2.756109e+06 6999.75 1.555500e+02 0.000 159.25 45 0.000000e+00 0.00 2.763109e+06 2.756109e+06 6999.75 NULL
2021 Admin For Children’s Svcs Staff Nurse 82395.95000 1.647919e+06 3597.69 1.798845e+02 0.000 59.50 20 0.000000e+00 0.00 1.651517e+06 1.647919e+06 3597.69 NULL
2021 Admin For Children’s Svcs Stock Worker 37803.00000 1.134090e+05 22303.04 7.434347e+03 2438.270 839.00 3 2.438270e+03 7314.81 1.357120e+05 1.207238e+05 14988.23 NULL
2021 Admin For Children’s Svcs Strategic Initiative Specialist 117362.42857 8.215370e+05 520.08 7.429714e+01 0.000 10.25 7 0.000000e+00 0.00 8.220571e+05 8.215370e+05 520.08 NULL
2021 Admin For Children’s Svcs Superintendent 116834.50000 2.336690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.336690e+05 2.336690e+05 0.00 NULL
2021 Admin For Children’s Svcs Supervising Computer Service Technician 71213.25000 2.848530e+05 1784.74 4.461850e+02 335.120 42.50 4 3.351200e+02 1340.48 2.866377e+05 2.861935e+05 444.26 NULL
2021 Admin For Children’s Svcs Supervising Special Officer 58676.29630 1.584260e+06 335374.80 1.242129e+04 8192.660 8218.75 27 8.192660e+03 221201.82 1.919635e+06 1.805462e+06 114172.98 NULL
2021 Admin For Children’s Svcs Supervisor I 62409.13333 9.361370e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 9.361370e+05 9.361370e+05 0.00 NULL
2021 Admin For Children’s Svcs Supervisor I Social Work 65372.00000 1.307440e+05 0.39 1.950000e-01 0.195 0.00 2 1.950000e-01 0.39 1.307444e+05 1.307444e+05 0.00 NULL
2021 Admin For Children’s Svcs Supervisor Ii 70365.57692 1.829505e+06 11373.41 4.374388e+02 0.000 183.00 26 0.000000e+00 0.00 1.840878e+06 1.829505e+06 11373.41 NULL
2021 Admin For Children’s Svcs Supervisor Iii 76578.33333 4.594700e+05 42.58 7.096667e+00 0.000 0.00 6 0.000000e+00 0.00 4.595126e+05 4.594700e+05 42.58 NULL
2021 Admin For Children’s Svcs Supervisor Of Child Care 69213.83333 4.152830e+05 111036.29 1.850605e+04 22292.590 2212.50 6 1.850605e+04 111036.29 5.263193e+05 5.263193e+05 0.00 NULL
2021 Admin For Children’s Svcs Supervisor Of Mechanical Installations & Maintenance 87929.33333 2.637880e+05 2658.22 8.860733e+02 615.040 39.50 3 6.150400e+02 1845.12 2.664462e+05 2.656331e+05 813.10 NULL
2021 Admin For Children’s Svcs Supervisor Of Mechanics NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Admin For Children’s Svcs Supervisor Of Nurses 92031.50000 9.203150e+05 1466.12 1.466120e+02 0.000 22.25 10 0.000000e+00 0.00 9.217811e+05 9.203150e+05 1466.12 NULL
2021 Admin For Children’s Svcs Telecommunications Associate 80161.30000 8.016130e+05 37504.62 3.750462e+03 1773.185 596.25 10 1.773185e+03 17731.85 8.391176e+05 8.193448e+05 19772.77 NULL
2021 Admin For Children’s Svcs Youth Development Specialist 50391.24725 3.668483e+07 3962799.35 5.443406e+03 1967.685 99184.50 728 1.967685e+03 1432474.68 4.064763e+07 3.811730e+07 2530324.67 NULL
2021 Admin Trials And Hearings *Attorney At Law 93597.50000 1.871950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.871950e+05 1.871950e+05 0.00 NULL
2021 Admin Trials And Hearings Adm Manager-Non-Mgrl 78848.23077 1.025027e+06 2560.18 1.969369e+02 0.000 60.75 13 0.000000e+00 0.00 1.027587e+06 1.025027e+06 2560.18 NULL
2021 Admin Trials And Hearings Admin Community Relations Specialist 93319.80000 4.665990e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.665990e+05 4.665990e+05 0.00 NULL
2021 Admin Trials And Hearings Administrative Accountant 102052.00000 1.020520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020520e+05 1.020520e+05 0.00 NULL
2021 Admin Trials And Hearings Administrative City Planner 121629.00000 1.216290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.216290e+05 1.216290e+05 0.00 NULL
2021 Admin Trials And Hearings Administrative Community Relations Specialist 102072.00000 1.020720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020720e+05 1.020720e+05 0.00 NULL
2021 Admin Trials And Hearings Administrative Labor Relations Analyst 96682.00000 9.668200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.668200e+04 9.668200e+04 0.00 NULL
2021 Admin Trials And Hearings Administrative Law Judge 160116.07143 2.241625e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.241625e+06 2.241625e+06 0.00 NULL
2021 Admin Trials And Hearings Administrative Procurement Analyst-Non-Mgrl 108150.00000 1.081500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081500e+05 1.081500e+05 0.00 NULL
2021 Admin Trials And Hearings Administrative Staff Analyst 133303.62500 1.066429e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.066429e+06 1.066429e+06 0.00 NULL
2021 Admin Trials And Hearings Agency Attorney 94963.52941 3.228760e+06 13121.67 3.859315e+02 0.000 237.00 34 0.000000e+00 0.00 3.241882e+06 3.228760e+06 13121.67 NULL
2021 Admin Trials And Hearings Agency Attorney Interne 19035.21250 7.614085e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.614085e+04 7.614085e+04 0.00 NULL
2021 Admin Trials And Hearings Agency Chief Contracting Officer 131057.00000 1.310570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.310570e+05 1.310570e+05 0.00 NULL
2021 Admin Trials And Hearings Associate Public Information Specialist 53712.00000 5.371200e+04 1999.20 1.999200e+03 1999.200 68.00 1 1.999200e+03 1999.20 5.571120e+04 5.571120e+04 0.00 NULL
2021 Admin Trials And Hearings Associate Staff Analyst 77766.00000 2.332980e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.332980e+05 2.332980e+05 0.00 NULL
2021 Admin Trials And Hearings Bookkeeper 51150.66667 1.534520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.534520e+05 1.534520e+05 0.00 NULL
2021 Admin Trials And Hearings Certified It Administrator 94244.00000 9.424400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.424400e+04 9.424400e+04 0.00 NULL
2021 Admin Trials And Hearings Certified It Developer 124123.00000 1.241230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.241230e+05 1.241230e+05 0.00 NULL
2021 Admin Trials And Hearings Chief Administrative Law Judge 224468.50000 4.489370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.489370e+05 4.489370e+05 0.00 NULL
2021 Admin Trials And Hearings City Laborer NA NA 108.76 5.438000e+01 54.380 2.00 2 5.438000e+01 108.76 NA NA NA NULL
2021 Admin Trials And Hearings Clerical Aide 35917.36000 1.077521e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.077521e+05 1.077521e+05 0.00 NULL
2021 Admin Trials And Hearings Clerical Associate 43182.30021 1.554563e+06 9729.78 2.702717e+02 0.000 324.25 36 0.000000e+00 0.00 1.564293e+06 1.554563e+06 9729.78 NULL
2021 Admin Trials And Hearings College Aide 10535.76964 7.375039e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.375039e+04 7.375039e+04 0.00 NULL
2021 Admin Trials And Hearings Community Assistant 35331.97500 1.059959e+06 2892.36 9.641200e+01 0.000 129.00 30 0.000000e+00 0.00 1.062852e+06 1.059959e+06 2892.36 NULL
2021 Admin Trials And Hearings Community Associate 46886.77267 2.063018e+06 69835.20 1.587164e+03 0.000 2228.75 44 0.000000e+00 0.00 2.132853e+06 2.063018e+06 69835.20 NULL
2021 Admin Trials And Hearings Community Coordinator 67852.88889 3.053380e+06 11526.07 2.561349e+02 0.000 290.75 45 0.000000e+00 0.00 3.064906e+06 3.053380e+06 11526.07 NULL
2021 Admin Trials And Hearings Community Service Aide 27888.75962 1.115550e+06 718.07 1.795175e+01 0.000 40.00 40 0.000000e+00 0.00 1.116268e+06 1.115550e+06 718.07 NULL
2021 Admin Trials And Hearings Computer Associate 76869.33333 2.306080e+05 5536.53 1.845510e+03 0.000 112.00 3 0.000000e+00 0.00 2.361445e+05 2.306080e+05 5536.53 NULL
2021 Admin Trials And Hearings Computer Specialist 104775.75000 4.191030e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.191030e+05 4.191030e+05 0.00 NULL
2021 Admin Trials And Hearings Computer Systems Manager 157999.20000 7.899960e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.899960e+05 7.899960e+05 0.00 NULL
2021 Admin Trials And Hearings Confidential Secretary Of Administrative Law Judge 62789.00000 1.255780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.255780e+05 1.255780e+05 0.00 NULL
2021 Admin Trials And Hearings Customer Information Representative Ma L 1549 38485.44000 1.154563e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.154563e+05 1.154563e+05 0.00 NULL
2021 Admin Trials And Hearings Executive Agency Counsel 126971.23333 3.809137e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 3.809137e+06 3.809137e+06 0.00 NULL
2021 Admin Trials And Hearings Executive Assistant To The Chief Administrative Law Judge 150393.00000 1.503930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503930e+05 1.503930e+05 0.00 NULL
2021 Admin Trials And Hearings Hearing Officer 37901.34751 6.708539e+06 0.00 0.000000e+00 0.000 0.00 177 0.000000e+00 0.00 6.708539e+06 6.708539e+06 0.00 NULL
2021 Admin Trials And Hearings Maintenance Worker NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Admin Trials And Hearings Member Of The Environmental Control Board - Oath 36.33325 1.453330e+02 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.453330e+02 1.453330e+02 0.00 NULL
2021 Admin Trials And Hearings Principal Administrative Associate - Non Supvr 63763.00000 6.376300e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 6.376300e+05 6.376300e+05 0.00 NULL
2021 Admin Trials And Hearings Procurement Analyst 66766.00000 6.676600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.676600e+04 6.676600e+04 0.00 NULL
2021 Admin Trials And Hearings Public Records Aide 43041.00000 3.012870e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.012870e+05 3.012870e+05 0.00 NULL
2021 Admin Trials And Hearings Secretary 46386.50000 9.277300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.277300e+04 9.277300e+04 0.00 NULL
2021 Admin Trials And Hearings Special Officer 48412.16667 2.904730e+05 1019.50 1.699167e+02 67.615 33.25 6 6.761500e+01 405.69 2.914925e+05 2.908787e+05 613.81 NULL
2021 Admin Trials And Hearings Staff Analyst 54578.50000 1.091570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.091570e+05 1.091570e+05 0.00 NULL
2021 Admin Trials And Hearings Summer Graduate Intern 448.00000 2.240000e+03 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.240000e+03 2.240000e+03 0.00 NULL
2021 Board Of Correction Administrative Staff Analyst 113300.00000 1.133000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133000e+05 1.133000e+05 0.00 NULL
2021 Board Of Correction City Research Scientist 82715.33333 2.481460e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.481460e+05 2.481460e+05 0.00 NULL
2021 Board Of Correction Community Coordinator 60186.25000 2.407450e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.407450e+05 2.407450e+05 0.00 NULL
2021 Board Of Correction Computer Specialist 106023.00000 1.060230e+05 101.56 1.015600e+02 101.560 1.75 1 1.015600e+02 101.56 1.061246e+05 1.061246e+05 0.00 NULL
2021 Board Of Correction Computer Systems Manager 149350.00000 1.493500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.493500e+05 1.493500e+05 0.00 NULL
2021 Board Of Correction Correctional Standards Review Specialist 70508.90909 7.755980e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.755980e+05 7.755980e+05 0.00 NULL
2021 Board Of Correction Counsel 185751.00000 3.715020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.715020e+05 3.715020e+05 0.00 NULL
2021 Board Of Correction Deputy Executive Director 164902.00000 1.649020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.649020e+05 1.649020e+05 0.00 NULL
2021 Board Of Correction Director Of Correctional Standards Review 97006.70000 9.700670e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.700670e+04 9.700670e+04 0.00 NULL
2021 Board Of Correction Executive Agency Counsel 128909.00000 1.289090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.289090e+05 1.289090e+05 0.00 NULL
2021 Board Of Correction Executive Director 204000.00000 2.040000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.040000e+05 2.040000e+05 0.00 NULL
2021 Board Of Correction Secretary 57434.00000 5.743400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.743400e+04 5.743400e+04 0.00 NULL
2021 Board Of Correction Secretary To The Board Of Correction 83791.00000 8.379100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.379100e+04 8.379100e+04 0.00 NULL
2021 Board Of Election Administrative Assistant 52841.23853 5.759695e+06 2121829.66 1.946633e+04 16517.820 52804.48 109 1.651782e+04 1800442.38 7.881525e+06 7.560137e+06 321387.28 NULL
2021 Board Of Election Administrative Associate 67266.29577 4.775907e+06 2529154.85 3.562190e+04 31432.330 48264.78 71 3.143233e+04 2231695.43 7.305062e+06 7.007602e+06 297459.42 NULL
2021 Board Of Election Administrative Manager 182775.50000 3.655510e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.655510e+05 3.655510e+05 0.00 NULL
2021 Board Of Election Assistance Finance Officer 70927.00000 1.418540e+05 40030.45 2.001522e+04 20015.225 807.00 2 2.001522e+04 40030.45 1.818845e+05 1.818845e+05 0.00 NULL
2021 Board Of Election Associate Staff Analyst 92348.54545 1.015834e+06 580972.42 5.281567e+04 34835.010 8119.00 11 3.483501e+04 383185.11 1.596806e+06 1.399019e+06 197787.31 NULL
2021 Board Of Election Chief Clerk 152574.00000 6.102960e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.102960e+05 6.102960e+05 0.00 NULL
2021 Board Of Election Clerk To The Board 36557.15000 3.655715e+06 1091736.79 1.091737e+04 10001.430 40315.75 100 1.000143e+04 1000143.00 4.747452e+06 4.655858e+06 91593.79 NULL
2021 Board Of Election Commissioner 27120.00000 2.712000e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 2.712000e+05 2.712000e+05 0.00 NULL
2021 Board Of Election Computer Operator 48033.00000 9.606600e+04 35585.79 1.779290e+04 17792.895 968.50 2 1.779290e+04 35585.79 1.316518e+05 1.316518e+05 0.00 NULL
2021 Board Of Election Computer Specialist 124960.50000 4.998420e+05 395487.53 9.887188e+04 107617.055 5384.00 4 9.887188e+04 395487.53 8.953295e+05 8.953295e+05 0.00 NULL
2021 Board Of Election Computer System Manager 138858.33333 4.165750e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.165750e+05 4.165750e+05 0.00 NULL
2021 Board Of Election Coordinator, Election Day Operations 117217.00000 1.172170e+05 50452.40 5.045240e+04 50452.400 579.00 1 5.045240e+04 50452.40 1.676694e+05 1.676694e+05 0.00 NULL
2021 Board Of Election Coordinator, Voter Registration Activities 101097.00000 1.010970e+05 29438.06 2.943806e+04 29438.060 401.00 1 2.943806e+04 29438.06 1.305351e+05 1.305351e+05 0.00 NULL
2021 Board Of Election Counsel 184949.66667 5.548490e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.548490e+05 5.548490e+05 0.00 NULL
2021 Board Of Election Counsel To The Board 58957.50000 1.179150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.179150e+05 1.179150e+05 0.00 NULL
2021 Board Of Election Deputy Chief Clerk 143351.85714 1.003463e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.003463e+06 1.003463e+06 0.00 NULL
2021 Board Of Election Deputy Executive Director 214190.00000 2.141900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.141900e+05 2.141900e+05 0.00 NULL
2021 Board Of Election Director Of Equipment 79792.33333 2.393770e+05 94635.00 3.154500e+04 33386.740 1591.00 3 3.154500e+04 94635.00 3.340120e+05 3.340120e+05 0.00 NULL
2021 Board Of Election Director Of Training 98203.00000 1.964060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.964060e+05 1.964060e+05 0.00 NULL
2021 Board Of Election Director, Public Affairs And Communication 124875.00000 1.248750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.248750e+05 1.248750e+05 0.00 NULL
2021 Board Of Election Executive Director 232615.00000 2.326150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.326150e+05 2.326150e+05 0.00 NULL
2021 Board Of Election Finance Officer 123745.00000 1.237450e+05 8275.40 8.275400e+03 8275.400 108.25 1 8.275400e+03 8275.40 1.320204e+05 1.320204e+05 0.00 NULL
2021 Board Of Election Financial Clerk 41000.21259 6.150032e+06 1993531.21 1.329021e+04 13074.860 67501.80 150 1.307486e+04 1961229.00 8.143563e+06 8.111261e+06 32302.21 NULL
2021 Board Of Election Project Coordinator 99743.35714 1.396407e+06 615961.78 4.399727e+04 39737.905 8292.50 14 3.973790e+04 556330.67 2.012369e+06 1.952738e+06 59631.11 NULL
2021 Board Of Election Senior Adminisrator 91621.30769 1.191077e+06 504186.32 3.878356e+04 34339.020 7655.98 13 3.433902e+04 446407.26 1.695263e+06 1.637484e+06 57779.06 NULL
2021 Board Of Election Senior Administrative Assistant 78666.90000 7.866690e+05 398197.63 3.981976e+04 35030.970 6449.00 10 3.503097e+04 350309.70 1.184867e+06 1.136979e+06 47887.93 NULL
2021 Board Of Election Senior Computer Programmer 77857.37500 6.228590e+05 419950.06 5.249376e+04 47824.095 7358.00 8 4.782410e+04 382592.76 1.042809e+06 1.005452e+06 37357.30 NULL
2021 Board Of Election Senior Systems Analysts 109806.66667 3.294200e+05 282032.73 9.401091e+04 42514.840 3221.25 3 4.251484e+04 127544.52 6.114527e+05 4.569645e+05 154488.21 NULL
2021 Board Of Election Senior Voting Machine Technician 50026.68519 2.701441e+06 1176258.81 2.178257e+04 20776.825 30014.00 54 2.077683e+04 1121948.55 3.877700e+06 3.823390e+06 54310.26 NULL
2021 Board Of Election Stenographic/Secretarial Associate 54343.00000 5.434300e+04 13464.45 1.346445e+04 13464.450 351.50 1 1.346445e+04 13464.45 6.780745e+04 6.780745e+04 0.00 NULL
2021 Board Of Election Temporary Clerk 23060.23678 4.773469e+06 1148798.42 5.549751e+03 4644.690 54452.51 207 4.644690e+03 961450.83 5.922267e+06 5.734920e+06 187347.59 NULL
2021 Board Of Election Trainer Assistant 54923.81378 4.064362e+06 1757887.87 2.375524e+04 22193.405 40339.75 74 2.219340e+04 1642311.97 5.822250e+06 5.706674e+06 115575.90 NULL
2021 Board Of Election Voting Machine Technician 45443.72903 7.043778e+06 2926335.39 1.887958e+04 17937.160 86907.30 155 1.793716e+04 2780259.80 9.970113e+06 9.824038e+06 146075.59 NULL
2021 Board Of Election Poll Workers Election Trainer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 266 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2021 Board Of Election Poll Workers Election Worker 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 43346 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2021 Borough President-Bronx Administrative Business Promotion Coordinator 124050.00000 1.240500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.240500e+05 1.240500e+05 0.00 NULL
2021 Borough President-Bronx Administrative City Planner 99849.00000 9.984900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.984900e+04 9.984900e+04 0.00 NULL
2021 Borough President-Bronx Administrative Education Officer 115287.00000 1.152870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.152870e+05 1.152870e+05 0.00 NULL
2021 Borough President-Bronx Administrative Manager 82951.00000 8.295100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.295100e+04 8.295100e+04 0.00 NULL
2021 Borough President-Bronx Administrative Staff Analyst 122013.00000 2.440260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.440260e+05 2.440260e+05 0.00 NULL
2021 Borough President-Bronx Assistant To The President 68498.50000 2.739940e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.739940e+05 2.739940e+05 0.00 NULL
2021 Borough President-Bronx Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2021 Borough President-Bronx Community Assistant 30977.76200 9.293329e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.293329e+04 9.293329e+04 0.00 NULL
2021 Borough President-Bronx Community Associate 51981.33333 7.797200e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 7.797200e+05 7.797200e+05 0.00 NULL
2021 Borough President-Bronx Community Coordinator 69025.82333 8.283099e+05 2645.63 2.204692e+02 0.000 46.50 12 0.000000e+00 0.00 8.309555e+05 8.283099e+05 2645.63 NULL
2021 Borough President-Bronx Computer Systems Manager 82472.00000 8.247200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.247200e+04 8.247200e+04 0.00 NULL
2021 Borough President-Bronx Counsel To The Borough President 134280.00000 1.342800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.342800e+05 1.342800e+05 0.00 NULL
2021 Borough President-Bronx Deputy Borough President 166507.00000 1.665070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.665070e+05 1.665070e+05 0.00 NULL
2021 Borough President-Bronx Director Of Community Planning Boards 120784.00000 1.207840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.207840e+05 1.207840e+05 0.00 NULL
2021 Borough President-Bronx Executive Assistant 220000.00000 2.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.200000e+05 2.200000e+05 0.00 NULL
2021 Borough President-Bronx Research And Liaison Coordinator 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2021 Borough President-Bronx Research Liaison Adn Governmental Coordinator 116444.00000 1.164440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.164440e+05 1.164440e+05 0.00 NULL
2021 Borough President-Bronx Secretary To Assistant To President 105235.00000 1.052350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.052350e+05 1.052350e+05 0.00 NULL
2021 Borough President-Bronx Secretary To The Deputy Boro President 81612.00000 8.161200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.161200e+04 8.161200e+04 0.00 NULL
2021 Borough President-Bronx Secretary To The Excutive Assistant 85826.00000 8.582600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.582600e+04 8.582600e+04 0.00 NULL
2021 Borough President-Bronx Secretary To The President 51500.00000 5.150000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.150000e+04 5.150000e+04 0.00 NULL
2021 Borough President-Bronx Special Assistant To The Borough President 85733.00000 4.286650e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.286650e+05 4.286650e+05 0.00 NULL
2021 Borough President-Brooklyn Assistant To The President 93197.50000 1.677555e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.677555e+06 1.677555e+06 0.00 NULL
2021 Borough President-Brooklyn Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2021 Borough President-Brooklyn Chauffeur-Attendant 86087.00000 8.608700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.608700e+04 8.608700e+04 0.00 NULL
2021 Borough President-Brooklyn City Planner 124619.00000 1.246190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.246190e+05 1.246190e+05 0.00 NULL
2021 Borough President-Brooklyn Clerical Associate 55050.00000 1.651500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.651500e+05 1.651500e+05 0.00 NULL
2021 Borough President-Brooklyn Community Assistant 40632.00000 8.126400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.126400e+04 8.126400e+04 0.00 NULL
2021 Borough President-Brooklyn Community Associate 52117.68500 4.169415e+05 0.72 9.000000e-02 0.000 0.00 8 0.000000e+00 0.00 4.169422e+05 4.169415e+05 0.72 NULL
2021 Borough President-Brooklyn Community Coordinator 66062.80375 1.585507e+06 494.08 2.058667e+01 0.000 10.00 24 0.000000e+00 0.00 1.586001e+06 1.585507e+06 494.08 NULL
2021 Borough President-Brooklyn Counsel To The Borough President 115684.00000 1.156840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.156840e+05 1.156840e+05 0.00 NULL
2021 Borough President-Brooklyn Deputy Borough President 177903.00000 1.779030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.779030e+05 1.779030e+05 0.00 NULL
2021 Borough President-Brooklyn Executive Agency Counsel 161249.00000 1.612490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.612490e+05 1.612490e+05 0.00 NULL
2021 Borough President-Brooklyn Executive Assistant 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2021 Borough President-Brooklyn Principal Administrative Associate - Non Supvr 79302.50000 1.586050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.586050e+05 1.586050e+05 0.00 NULL
2021 Borough President-Brooklyn Program Producer 88443.00000 8.844300e+04 16.66 1.666000e+01 16.660 0.00 1 1.666000e+01 16.66 8.845966e+04 8.845966e+04 0.00 NULL
2021 Borough President-Brooklyn Public Information Officer 77100.00000 7.710000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.710000e+04 7.710000e+04 0.00 NULL
2021 Borough President-Brooklyn Research & Liaison Coordinator 85378.00000 8.537800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.537800e+04 8.537800e+04 0.00 NULL
2021 Borough President-Brooklyn Secretary To The President 78671.00000 7.867100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.867100e+04 7.867100e+04 0.00 NULL
2021 Borough President-Brooklyn Special Assistant To The Borough President 109442.00000 1.094420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.094420e+05 1.094420e+05 0.00 NULL
2021 Borough President-Manhattan Adm Manager-Non-Mgrl 84254.00000 8.425400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.425400e+04 8.425400e+04 0.00 NULL
2021 Borough President-Manhattan Admin Contract Specialist 98000.00000 9.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.800000e+04 9.800000e+04 0.00 NULL
2021 Borough President-Manhattan Administrative City Planner 88958.00000 8.895800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.895800e+04 8.895800e+04 0.00 NULL
2021 Borough President-Manhattan Administrative Staff Analyst 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2021 Borough President-Manhattan Assistant To The President 93177.50000 1.863550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.863550e+05 1.863550e+05 0.00 NULL
2021 Borough President-Manhattan Associate Director, Borough Improvement Board 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2021 Borough President-Manhattan Associate Public Information Specialist 72500.00000 7.250000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.250000e+04 7.250000e+04 0.00 NULL
2021 Borough President-Manhattan Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2021 Borough President-Manhattan Chauffeur Attendant 72003.50000 1.440070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.440070e+05 1.440070e+05 0.00 NULL
2021 Borough President-Manhattan Clerical Associate 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2021 Borough President-Manhattan College Aide 12507.90000 1.250790e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250790e+04 1.250790e+04 0.00 NULL
2021 Borough President-Manhattan Community Associate 54941.95429 3.845937e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.845937e+05 3.845937e+05 0.00 NULL
2021 Borough President-Manhattan Community Coordinator 66827.48870 1.537032e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 1.537032e+06 1.537032e+06 0.00 NULL
2021 Borough President-Manhattan Community Planning Board Coordinator 63193.75000 2.527750e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.527750e+05 2.527750e+05 0.00 NULL
2021 Borough President-Manhattan Computer Operations Manager 81649.00000 8.164900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.164900e+04 8.164900e+04 0.00 NULL
2021 Borough President-Manhattan Computer Systems Manager 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2021 Borough President-Manhattan Deputy Borough President 167090.00000 3.341800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.341800e+05 3.341800e+05 0.00 NULL
2021 Borough President-Manhattan Director Borough Improvement Board 92000.00000 9.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.200000e+04 9.200000e+04 0.00 NULL
2021 Borough President-Manhattan Director Of Community Planning Boards 96159.00000 9.615900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.615900e+04 9.615900e+04 0.00 NULL
2021 Borough President-Manhattan Executive Assistant 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2021 Borough President-Manhattan General Counsel 143000.00000 1.430000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.430000e+05 1.430000e+05 0.00 NULL
2021 Borough President-Manhattan Principal Administrative Associate - Non Supvr 57561.00000 5.756100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.756100e+04 5.756100e+04 0.00 NULL
2021 Borough President-Manhattan Public Information Officer 143000.00000 1.430000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.430000e+05 1.430000e+05 0.00 NULL
2021 Borough President-Manhattan Public Relations Officer 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2021 Borough President-Manhattan Secretary To The President 105000.00000 2.100000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.100000e+05 2.100000e+05 0.00 NULL
2021 Borough President-Queens Adm Manager-Non-Mgrl 93438.00000 9.343800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.343800e+04 9.343800e+04 0.00 NULL
2021 Borough President-Queens Administrative Community Relations Specialist 109465.00000 1.094650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.094650e+05 1.094650e+05 0.00 NULL
2021 Borough President-Queens Administrative Engineer 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2021 Borough President-Queens Agency Attorney 100000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2021 Borough President-Queens Assistant Civil Engineer 80349.00000 8.034900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.034900e+04 8.034900e+04 0.00 NULL
2021 Borough President-Queens Assistant To The President 72500.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2021 Borough President-Queens Associate Staff Analyst 85155.00000 8.515500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.515500e+04 8.515500e+04 0.00 NULL
2021 Borough President-Queens Borough President 179200.00000 3.584000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.584000e+05 3.584000e+05 0.00 NULL
2021 Borough President-Queens Cashier 35473.00000 3.547300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.547300e+04 3.547300e+04 0.00 NULL
2021 Borough President-Queens City Planner 72848.00000 7.284800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.284800e+04 7.284800e+04 0.00 NULL
2021 Borough President-Queens Community Assistant 33294.33333 9.988300e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.988300e+04 9.988300e+04 0.00 NULL
2021 Borough President-Queens Community Associate 56892.04545 1.251625e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 1.251625e+06 1.251625e+06 0.00 NULL
2021 Borough President-Queens Community Coordinator 71705.11765 1.218987e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.218987e+06 1.218987e+06 0.00 NULL
2021 Borough President-Queens Computer Associate 70040.00000 7.004000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.004000e+04 7.004000e+04 0.00 NULL
2021 Borough President-Queens Computer Systems Manager 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2021 Borough President-Queens Counsel To The Borough President 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2021 Borough President-Queens Deputy Borough President 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2021 Borough President-Queens Director Borough President’s Office Of Administration Queens 118000.00000 1.180000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.180000e+05 1.180000e+05 0.00 NULL
2021 Borough President-Queens Director Of Community Planning Boards 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2021 Borough President-Queens Engineering Technician 68743.00000 1.374860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.374860e+05 1.374860e+05 0.00 NULL
2021 Borough President-Queens Executive Assistant 160000.00000 3.200000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.200000e+05 3.200000e+05 0.00 NULL
2021 Borough President-Queens Fiscal And Policy Analyst 86000.00000 8.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.600000e+04 8.600000e+04 0.00 NULL
2021 Borough President-Queens Principal Administrative Associate - Non Supvr 77704.50000 1.554090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.554090e+05 1.554090e+05 0.00 NULL
2021 Borough President-Queens Public Information Officer 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2021 Borough President-Queens Research And Liaison Specialist 63450.00000 3.172500e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.172500e+05 3.172500e+05 0.00 NULL
2021 Borough President-Queens Secretary To The President 93000.00000 9.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.300000e+04 9.300000e+04 0.00 NULL
2021 Borough President-Queens Special Assistant To The Borough President 88888.88889 8.000000e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.000000e+05 8.000000e+05 0.00 NULL
2021 Borough President-Staten Is Administrative Architect 147650.00000 1.476500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.476500e+05 1.476500e+05 0.00 NULL
2021 Borough President-Staten Is Agency Attorney 91500.00000 1.830000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.830000e+05 1.830000e+05 0.00 NULL
2021 Borough President-Staten Is Assistant To The President 148000.00000 1.480000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.480000e+05 1.480000e+05 0.00 NULL
2021 Borough President-Staten Is Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2021 Borough President-Staten Is Community Associate 49202.75000 3.936220e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 3.936220e+05 3.936220e+05 0.00 NULL
2021 Borough President-Staten Is Community Coordinator 65048.60566 1.626215e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.626215e+06 1.626215e+06 0.00 NULL
2021 Borough President-Staten Is Deputy Borough President 148820.00000 1.488200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.488200e+05 1.488200e+05 0.00 NULL
2021 Borough President-Staten Is Engineering Technician 72124.00000 7.212400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.212400e+04 7.212400e+04 0.00 NULL
2021 Borough President-Staten Is Executive Assistant 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2021 Borough President-Staten Is Project Planner 52768.10000 5.276810e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.276810e+04 5.276810e+04 0.00 NULL
2021 Borough President-Staten Is Public Information Officer 123500.00000 1.235000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.235000e+05 1.235000e+05 0.00 NULL
2021 Borough President-Staten Is Special Assistant To The Borough President 73134.88000 7.313488e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.313488e+04 7.313488e+04 0.00 NULL
2021 Borough President-Staten Is Surveyor 29345.38480 2.934538e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.934538e+04 2.934538e+04 0.00 NULL
2021 Bronx Community Board #1 Community Coordinator 84054.00000 8.405400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.405400e+04 8.405400e+04 0.00 NULL
2021 Bronx Community Board #1 District Manager 145193.00000 1.451930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.451930e+05 1.451930e+05 0.00 NULL
2021 Bronx Community Board #10 Clerical Associate 26088.62000 5.217724e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.217724e+04 5.217724e+04 0.00 NULL
2021 Bronx Community Board #10 Community Assistant 30491.03360 3.049103e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.049103e+04 3.049103e+04 0.00 NULL
2021 Bronx Community Board #10 Community Associate 46449.00000 4.644900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.644900e+04 4.644900e+04 0.00 NULL
2021 Bronx Community Board #10 District Manager 80752.00000 8.075200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.075200e+04 8.075200e+04 0.00 NULL
2021 Bronx Community Board #11 Community Coordinator 69590.50000 1.391810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.391810e+05 1.391810e+05 0.00 NULL
2021 Bronx Community Board #11 District Manager 92447.00000 9.244700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.244700e+04 9.244700e+04 0.00 NULL
2021 Bronx Community Board #12 Community Coordinator 84005.00000 8.400500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.400500e+04 8.400500e+04 0.00 NULL
2021 Bronx Community Board #12 District Manager 129669.00000 1.296690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.296690e+05 1.296690e+05 0.00 NULL
2021 Bronx Community Board #2 Community Assistant 21657.72760 2.165773e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.165773e+04 2.165773e+04 0.00 NULL
2021 Bronx Community Board #2 Community Coordinator 64193.00000 6.419300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.419300e+04 6.419300e+04 0.00 NULL
2021 Bronx Community Board #2 District Manager 125606.00000 1.256060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.256060e+05 1.256060e+05 0.00 NULL
2021 Bronx Community Board #3 District Manager 140435.00000 1.404350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.404350e+05 1.404350e+05 0.00 NULL
2021 Bronx Community Board #3 Principal Administrative Associate - Non Supvr 89771.00000 8.977100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.977100e+04 8.977100e+04 0.00 NULL
2021 Bronx Community Board #4 Community Associate 61406.50000 1.228130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.228130e+05 1.228130e+05 0.00 NULL
2021 Bronx Community Board #4 District Manager 97136.00000 9.713600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.713600e+04 9.713600e+04 0.00 NULL
2021 Bronx Community Board #5 Community Assistant 18096.37000 1.809637e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.809637e+04 1.809637e+04 0.00 NULL
2021 Bronx Community Board #5 Community Coordinator 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2021 Bronx Community Board #5 District Manager 72100.00000 7.210000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.210000e+04 7.210000e+04 0.00 NULL
2021 Bronx Community Board #6 Community Associate 33376.30125 6.675260e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.675260e+04 6.675260e+04 0.00 NULL
2021 Bronx Community Board #6 District Manager 117975.00000 1.179750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.179750e+05 1.179750e+05 0.00 NULL
2021 Bronx Community Board #7 Community Associate 44083.00000 4.408300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.408300e+04 4.408300e+04 0.00 NULL
2021 Bronx Community Board #7 Community Coordinator 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2021 Bronx Community Board #7 District Manager 96611.00000 9.661100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.661100e+04 9.661100e+04 0.00 NULL
2021 Bronx Community Board #8 Community Associate 48500.00000 4.850000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.850000e+04 4.850000e+04 0.00 NULL
2021 Bronx Community Board #8 Community Coordinator 63000.00000 6.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.300000e+04 6.300000e+04 0.00 NULL
2021 Bronx Community Board #8 District Manager 88467.00000 8.846700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.846700e+04 8.846700e+04 0.00 NULL
2021 Bronx Community Board #9 Assistant District Manager 65574.00000 6.557400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.557400e+04 6.557400e+04 0.00 NULL
2021 Bronx Community Board #9 College Aide 1193.50000 1.193500e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.193500e+03 1.193500e+03 0.00 NULL
2021 Bronx Community Board #9 Community Associate 50985.00000 5.098500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.098500e+04 5.098500e+04 0.00 NULL
2021 Bronx Community Board #9 District Manager 120314.00000 1.203140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.203140e+05 1.203140e+05 0.00 NULL
2021 Bronx District Attorney Adm Manager-Non-Mgrl 76270.00000 1.525400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.525400e+05 1.525400e+05 0.00 NULL
2021 Bronx District Attorney Administrative Accountant 154800.00000 1.548000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.548000e+05 1.548000e+05 0.00 NULL
2021 Bronx District Attorney Administrative Chief 121900.00000 2.438000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.438000e+05 2.438000e+05 0.00 NULL
2021 Bronx District Attorney Administrative Community Relations Specialist 115793.66667 3.473810e+05 895.52 2.985067e+02 0.000 18.75 3 0.000000e+00 0.00 3.482765e+05 3.473810e+05 895.52 NULL
2021 Bronx District Attorney Administrative Staff Analyst 103382.00000 1.033820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.033820e+05 1.033820e+05 0.00 NULL
2021 Bronx District Attorney Agency Chief Contracting Officer 211800.00000 2.118000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.118000e+05 2.118000e+05 0.00 NULL
2021 Bronx District Attorney Assistant District Attorney 99640.36969 5.390544e+07 0.00 0.000000e+00 0.000 0.00 541 0.000000e+00 0.00 5.390544e+07 5.390544e+07 0.00 NULL
2021 Bronx District Attorney Certified It Administrator 116725.00000 2.334500e+05 1909.35 9.546750e+02 954.675 21.00 2 9.546750e+02 1909.35 2.353594e+05 2.353594e+05 0.00 NULL
2021 Bronx District Attorney Certified It Developer 119334.75000 4.773390e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.773390e+05 4.773390e+05 0.00 NULL
2021 Bronx District Attorney City Tax Auditor 66890.00000 6.689000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.689000e+04 6.689000e+04 0.00 NULL
2021 Bronx District Attorney Clerical Associate 47952.47826 2.205814e+06 25110.33 5.458767e+02 0.430 695.50 46 4.300000e-01 19.78 2.230924e+06 2.205834e+06 25090.55 NULL
2021 Bronx District Attorney College Aide 3732.57143 2.612800e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.612800e+04 2.612800e+04 0.00 NULL
2021 Bronx District Attorney Community Assistant 36892.60870 5.091180e+06 86429.28 6.262991e+02 0.000 3676.75 138 0.000000e+00 0.00 5.177609e+06 5.091180e+06 86429.28 NULL
2021 Bronx District Attorney Community Associate 46680.26971 1.124994e+07 47456.92 1.969167e+02 0.000 1577.50 241 0.000000e+00 0.00 1.129740e+07 1.124994e+07 47456.92 NULL
2021 Bronx District Attorney Community Coordinator 67658.48529 4.600777e+06 68269.74 1.003967e+03 1.150 1487.75 68 1.150000e+00 78.20 4.669047e+06 4.600855e+06 68191.54 NULL
2021 Bronx District Attorney Community Service Aide 29360.00000 8.808000e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 8.808000e+04 8.808000e+04 0.00 NULL
2021 Bronx District Attorney Computer Associate 91169.50000 3.646780e+05 3529.86 8.824650e+02 195.955 58.50 4 1.959550e+02 783.82 3.682079e+05 3.654618e+05 2746.04 NULL
2021 Bronx District Attorney Computer Systems Manager 150000.00000 3.000000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.000000e+05 3.000000e+05 0.00 NULL
2021 Bronx District Attorney Director Of Public Information 146000.00000 1.460000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.460000e+05 1.460000e+05 0.00 NULL
2021 Bronx District Attorney District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2021 Bronx District Attorney Interpreter 63717.44444 5.734570e+05 30050.15 3.338906e+03 1635.760 929.50 9 1.635760e+03 14721.84 6.035072e+05 5.881788e+05 15328.31 NULL
2021 Bronx District Attorney Management Auditor 96473.00000 9.647300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.647300e+04 9.647300e+04 0.00 NULL
2021 Bronx District Attorney Media Services Technician 58300.00000 1.166000e+05 563.90 2.819500e+02 281.950 15.25 2 2.819500e+02 563.90 1.171639e+05 1.171639e+05 0.00 NULL
2021 Bronx District Attorney Paralegal Aide 53630.00000 1.072600e+05 0.12 6.000000e-02 0.060 0.00 2 6.000000e-02 0.12 1.072601e+05 1.072601e+05 0.00 NULL
2021 Bronx District Attorney Principal Accountant Investigator 126640.00000 6.332000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.332000e+05 6.332000e+05 0.00 NULL
2021 Bronx District Attorney Principal Administrative Associate - Non Supvr 70724.00000 6.365160e+05 3374.73 3.749700e+02 0.000 90.00 9 0.000000e+00 0.00 6.398907e+05 6.365160e+05 3374.73 NULL
2021 Bronx District Attorney Private Secretary 98100.00000 9.810000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.810000e+04 9.810000e+04 0.00 NULL
2021 Bronx District Attorney Procurement Analyst 94495.00000 9.449500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.449500e+04 9.449500e+04 0.00 NULL
2021 Bronx District Attorney Reporter/ Stenographer 74606.49773 1.641343e+06 22.26 1.011818e+00 0.000 0.00 22 0.000000e+00 0.00 1.641365e+06 1.641343e+06 22.26 NULL
2021 Bronx District Attorney Secretary 51235.00000 2.561750e+05 132.31 2.646200e+01 0.000 4.75 5 0.000000e+00 0.00 2.563073e+05 2.561750e+05 132.31 NULL
2021 Bronx District Attorney Special Assistant To The District Attorney 150180.00000 7.509000e+05 9545.67 1.909134e+03 0.000 207.50 5 0.000000e+00 0.00 7.604457e+05 7.509000e+05 9545.67 NULL
2021 Bronx District Attorney Student Legal Assistant 4802.12650 1.920851e+05 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 1.920851e+05 1.920851e+05 0.00 NULL
2021 Brooklyn Community Board #1 Assistant District Manager 63255.00000 6.325500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.325500e+04 6.325500e+04 0.00 NULL
2021 Brooklyn Community Board #1 Community Associate 44083.00000 4.408300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.408300e+04 4.408300e+04 0.00 NULL
2021 Brooklyn Community Board #1 District Manager 133081.00000 1.330810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.330810e+05 1.330810e+05 0.00 NULL
2021 Brooklyn Community Board #10 College Aide 945.47250 9.454725e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.454725e+02 9.454725e+02 0.00 NULL
2021 Brooklyn Community Board #10 Community Assistant 25362.33000 2.536233e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.536233e+04 2.536233e+04 0.00 NULL
2021 Brooklyn Community Board #10 Community Coordinator 77866.00000 7.786600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.786600e+04 7.786600e+04 0.00 NULL
2021 Brooklyn Community Board #10 District Manager 128778.00000 1.287780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287780e+05 1.287780e+05 0.00 NULL
2021 Brooklyn Community Board #11 Community Assistant 26612.32640 2.661233e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.661233e+04 2.661233e+04 0.00 NULL
2021 Brooklyn Community Board #11 Community Coordinator 65768.00000 1.315360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.315360e+05 1.315360e+05 0.00 NULL
2021 Brooklyn Community Board #11 District Manager 100285.00000 1.002850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.002850e+05 1.002850e+05 0.00 NULL
2021 Brooklyn Community Board #12 Community Assistant 39153.00000 3.915300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.915300e+04 3.915300e+04 0.00 NULL
2021 Brooklyn Community Board #12 Community Coordinator 31735.28100 3.173528e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.173528e+04 3.173528e+04 0.00 NULL
2021 Brooklyn Community Board #12 District Manager 125287.00000 1.252870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.252870e+05 1.252870e+05 0.00 NULL
2021 Brooklyn Community Board #13 Community Associate 47610.00000 4.761000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.761000e+04 4.761000e+04 0.00 NULL
2021 Brooklyn Community Board #13 Community Service Aide 40624.00000 4.062400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.062400e+04 4.062400e+04 0.00 NULL
2021 Brooklyn Community Board #13 District Manager 92234.00000 9.223400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.223400e+04 9.223400e+04 0.00 NULL
2021 Brooklyn Community Board #13 Secretary 48520.72500 4.852072e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.852072e+04 4.852072e+04 0.00 NULL
2021 Brooklyn Community Board #14 Community Associate 6577.23000 6.577230e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.577230e+03 6.577230e+03 0.00 NULL
2021 Brooklyn Community Board #14 Community Coordinator 74169.50000 1.483390e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.483390e+05 1.483390e+05 0.00 NULL
2021 Brooklyn Community Board #14 District Manager 114035.00000 1.140350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.140350e+05 1.140350e+05 0.00 NULL
2021 Brooklyn Community Board #15 Community Associate 51780.50000 1.035610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.035610e+05 1.035610e+05 0.00 NULL
2021 Brooklyn Community Board #15 District Manager 68796.00000 6.879600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.879600e+04 6.879600e+04 0.00 NULL
2021 Brooklyn Community Board #16 Community Assistant 29916.60000 5.983320e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.983320e+04 5.983320e+04 0.00 NULL
2021 Brooklyn Community Board #16 District Manager 117917.00000 1.179170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.179170e+05 1.179170e+05 0.00 NULL
2021 Brooklyn Community Board #17 Community Assistant 38802.00000 7.760400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.760400e+04 7.760400e+04 0.00 NULL
2021 Brooklyn Community Board #17 Community Coordinator 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2021 Brooklyn Community Board #17 District Manager 84829.00000 8.482900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.482900e+04 8.482900e+04 0.00 NULL
2021 Brooklyn Community Board #18 Community Assistant 37442.00000 3.744200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.744200e+04 3.744200e+04 0.00 NULL
2021 Brooklyn Community Board #18 Community Service Aide 33764.00000 3.376400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.376400e+04 3.376400e+04 0.00 NULL
2021 Brooklyn Community Board #18 District Manager 162284.00000 1.622840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.622840e+05 1.622840e+05 0.00 NULL
2021 Brooklyn Community Board #2 Community Assistant 20506.49000 2.050649e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.050649e+04 2.050649e+04 0.00 NULL
2021 Brooklyn Community Board #2 Community Associate 38333.00000 3.833300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.833300e+04 3.833300e+04 0.00 NULL
2021 Brooklyn Community Board #2 Community Coordinator 66526.00000 6.652600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.652600e+04 6.652600e+04 0.00 NULL
2021 Brooklyn Community Board #2 District Manager 105360.00000 1.053600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.053600e+05 1.053600e+05 0.00 NULL
2021 Brooklyn Community Board #3 Assistant District Manager 65370.00000 6.537000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.537000e+04 6.537000e+04 0.00 NULL
2021 Brooklyn Community Board #3 Community Assistant 41879.00000 4.187900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.187900e+04 4.187900e+04 0.00 NULL
2021 Brooklyn Community Board #3 District Manager 101333.00000 1.013330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.013330e+05 1.013330e+05 0.00 NULL
2021 Brooklyn Community Board #4 Community Associate 63533.00000 6.353300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.353300e+04 6.353300e+04 0.00 NULL
2021 Brooklyn Community Board #4 District Manager 76468.00000 7.646800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.646800e+04 7.646800e+04 0.00 NULL
2021 Brooklyn Community Board #4 Principal Administrative Associate - Non Supvr 58845.00000 5.884500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.884500e+04 5.884500e+04 0.00 NULL
2021 Brooklyn Community Board #5 Community Associate 38558.00000 7.711600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.711600e+04 7.711600e+04 0.00 NULL
2021 Brooklyn Community Board #5 Community Coordinator 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2021 Brooklyn Community Board #5 District Manager 93500.00000 9.350000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.350000e+04 9.350000e+04 0.00 NULL
2021 Brooklyn Community Board #6 Community Coordinator 70443.00000 1.408860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.408860e+05 1.408860e+05 0.00 NULL
2021 Brooklyn Community Board #6 District Manager 89585.00000 8.958500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.958500e+04 8.958500e+04 0.00 NULL
2021 Brooklyn Community Board #7 Community Associate 51436.00000 5.143600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.143600e+04 5.143600e+04 0.00 NULL
2021 Brooklyn Community Board #7 Community Coordinator 71241.00000 7.124100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.124100e+04 7.124100e+04 0.00 NULL
2021 Brooklyn Community Board #7 District Manager 100498.00000 1.004980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.004980e+05 1.004980e+05 0.00 NULL
2021 Brooklyn Community Board #8 Community Coordinator 77600.00000 7.760000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.760000e+04 7.760000e+04 0.00 NULL
2021 Brooklyn Community Board #8 District Manager 117775.00000 1.177750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.177750e+05 1.177750e+05 0.00 NULL
2021 Brooklyn Community Board #9 Community Assistant 40000.00000 4.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.000000e+04 4.000000e+04 0.00 NULL
2021 Brooklyn Community Board #9 Community Coordinator 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2021 Brooklyn Community Board #9 District Manager 85000.00000 8.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.500000e+04 8.500000e+04 0.00 NULL
2021 Business Integrity Commission Accountant 66984.00000 6.698400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.698400e+04 6.698400e+04 0.00 NULL
2021 Business Integrity Commission Admin Contract Specialist 120847.00000 2.416940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.416940e+05 2.416940e+05 0.00 NULL
2021 Business Integrity Commission Administrative Accountant 113870.00000 1.138700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.138700e+05 1.138700e+05 0.00 NULL
2021 Business Integrity Commission Administrative Investigator 146634.00000 1.466340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.466340e+05 1.466340e+05 0.00 NULL
2021 Business Integrity Commission Administrative Staff Analyst 108180.66667 3.245420e+05 21406.82 7.135607e+03 3431.180 311.75 3 3.431180e+03 10293.54 3.459488e+05 3.348355e+05 11113.28 NULL
2021 Business Integrity Commission Agency Attorney 84635.88500 3.385435e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.385435e+05 3.385435e+05 0.00 NULL
2021 Business Integrity Commission Associate Fraud Investigator 69344.16667 4.160650e+05 47154.77 7.859128e+03 3450.325 979.25 6 3.450325e+03 20701.95 4.632198e+05 4.367670e+05 26452.82 NULL
2021 Business Integrity Commission Associate Staff Analyst 89093.50000 1.781870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.781870e+05 1.781870e+05 0.00 NULL
2021 Business Integrity Commission Certified It Developer 84254.00000 8.425400e+04 449.63 4.496300e+02 449.630 9.75 1 4.496300e+02 449.63 8.470363e+04 8.470363e+04 0.00 NULL
2021 Business Integrity Commission Chair 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2021 Business Integrity Commission Clerical Associate 56001.50000 1.120030e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.120030e+05 1.120030e+05 0.00 NULL
2021 Business Integrity Commission Community Assistant 32504.29000 6.500858e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.500858e+04 6.500858e+04 0.00 NULL
2021 Business Integrity Commission Community Associate 47937.20273 1.581928e+06 28190.53 8.542585e+02 0.000 897.00 33 0.000000e+00 0.00 1.610118e+06 1.581928e+06 28190.53 NULL
2021 Business Integrity Commission Community Coordinator 72530.25000 5.802420e+05 15006.89 1.875861e+03 0.000 343.50 8 0.000000e+00 0.00 5.952489e+05 5.802420e+05 15006.89 NULL
2021 Business Integrity Commission Computer Programmer Analyst 71227.00000 7.122700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.122700e+04 7.122700e+04 0.00 NULL
2021 Business Integrity Commission Deputy Commissioner Of Investigations 133900.00000 1.339000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339000e+05 1.339000e+05 0.00 NULL
2021 Business Integrity Commission Director Of Investigations 103000.00000 1.030000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030000e+05 1.030000e+05 0.00 NULL
2021 Business Integrity Commission Director Of Investigative Audits 118167.00000 1.181670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.181670e+05 1.181670e+05 0.00 NULL
2021 Business Integrity Commission Executive Agency Counsel 115688.12500 9.255050e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.255050e+05 9.255050e+05 0.00 NULL
2021 Business Integrity Commission Management Auditor 77935.00000 1.558700e+05 1269.23 6.346150e+02 634.615 31.75 2 6.346150e+02 1269.23 1.571392e+05 1.571392e+05 0.00 NULL
2021 Business Integrity Commission Market Agent 55569.88889 5.001290e+05 36583.80 4.064867e+03 421.880 830.25 9 4.218800e+02 3796.92 5.367128e+05 5.039259e+05 32786.88 NULL
2021 Business Integrity Commission Principal Administrative Associate - Non Supvr 61858.00000 6.185800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.185800e+04 6.185800e+04 0.00 NULL
2021 Campaign Finance Board Admin Asst-Campaign Fin Board 59095.93327 8.864390e+05 9879.28 6.586187e+02 0.000 165.00 15 0.000000e+00 0.00 8.963183e+05 8.864390e+05 9879.28 NULL
2021 Campaign Finance Board Agency Attorney 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2021 Campaign Finance Board Analyst 78477.35526 5.964279e+06 403020.40 5.302900e+03 1111.650 7387.50 76 1.111650e+03 84485.40 6.367299e+06 6.048764e+06 318535.00 NULL
2021 Campaign Finance Board Associate Staff Analyst 115238.00000 1.152380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.152380e+05 1.152380e+05 0.00 NULL
2021 Campaign Finance Board Attorney-Campaign Fin Board 111370.54000 8.909643e+05 788.11 9.851375e+01 0.000 10.25 8 0.000000e+00 0.00 8.917524e+05 8.909643e+05 788.11 NULL
2021 Campaign Finance Board College Aide 5618.10000 5.618100e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.618100e+03 5.618100e+03 0.00 NULL
2021 Campaign Finance Board Deputy Executive Director Campaign Finance Board 173345.33333 5.200360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.200360e+05 5.200360e+05 0.00 NULL
2021 Campaign Finance Board Director Of Public Relations 158881.00000 1.588810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.588810e+05 1.588810e+05 0.00 NULL
2021 Campaign Finance Board Executive Agency Counsel 193226.00000 1.932260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.932260e+05 1.932260e+05 0.00 NULL
2021 Campaign Finance Board Executive Director 263017.00000 2.630170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.630170e+05 2.630170e+05 0.00 NULL
2021 Campaign Finance Board Systems Administrator-Cam Fin Bd 111963.08333 2.687114e+06 136877.24 5.703218e+03 1108.350 1895.25 24 1.108350e+03 26600.40 2.823991e+06 2.713714e+06 110276.84 NULL
2021 City Clerk Administrative Investigator 94934.00000 9.493400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.493400e+04 9.493400e+04 0.00 NULL
2021 City Clerk Administrative Management Auditor 202050.00000 2.020500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.020500e+05 2.020500e+05 0.00 NULL
2021 City Clerk Agency Attorney 83000.00000 8.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.300000e+04 8.300000e+04 0.00 NULL
2021 City Clerk Chief Of Staff 111145.00000 1.111450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.111450e+05 1.111450e+05 0.00 NULL
2021 City Clerk City Clerk & Clerk Of Council 238216.00000 2.382160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.382160e+05 2.382160e+05 0.00 NULL
2021 City Clerk Clerical Associate 45321.71429 1.903512e+06 0.00 0.000000e+00 0.000 0.00 42 0.000000e+00 0.00 1.903512e+06 1.903512e+06 0.00 NULL
2021 City Clerk College Aide 10058.98333 6.035390e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.035390e+04 6.035390e+04 0.00 NULL
2021 City Clerk Community Assistant 45159.00000 4.515900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.515900e+04 4.515900e+04 0.00 NULL
2021 City Clerk Community Associate 49274.33333 1.478230e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.478230e+05 1.478230e+05 0.00 NULL
2021 City Clerk Community Coordinator 82961.50000 1.659230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.659230e+05 1.659230e+05 0.00 NULL
2021 City Clerk Deputy City Clerk 154531.75000 6.181270e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.181270e+05 6.181270e+05 0.00 NULL
2021 City Clerk Executive Agency Counsel 171153.00000 1.711530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.711530e+05 1.711530e+05 0.00 NULL
2021 City Clerk Executive Assistant To The City Clerk 94412.00000 9.441200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.441200e+04 9.441200e+04 0.00 NULL
2021 City Clerk Executive Assistant To The First Deputy City Clerk 46472.00000 4.647200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.647200e+04 4.647200e+04 0.00 NULL
2021 City Clerk Executive Assistant To The First Deputy Clerk 52765.00000 5.276500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.276500e+04 5.276500e+04 0.00 NULL
2021 City Clerk Principal Administrative Associate - Non Supvr 71147.00000 2.845880e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.845880e+05 2.845880e+05 0.00 NULL
2021 City Clerk Secretary 33906.00000 3.390600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.390600e+04 3.390600e+04 0.00 NULL
2021 City Council Assistant Director Of Administration 143601.85714 1.005213e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.005213e+06 1.005213e+06 0.00 NULL
2021 City Council Assistant Director Of Finance 152711.00000 1.527110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.527110e+05 1.527110e+05 0.00 NULL
2021 City Council Assistant Director Of Legal Services 131878.50000 1.846299e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.846299e+06 1.846299e+06 0.00 NULL
2021 City Council Assistant Sergeant At Arms 54566.54545 6.002320e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 6.002320e+05 6.002320e+05 0.00 NULL
2021 City Council Chief Of Staff 252762.00000 2.527620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.527620e+05 2.527620e+05 0.00 NULL
2021 City Council Communication Assistant 83178.33333 9.981400e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 9.981400e+05 9.981400e+05 0.00 NULL
2021 City Council Council Member 148500.00000 8.019000e+06 0.00 0.000000e+00 0.000 0.00 54 0.000000e+00 0.00 8.019000e+06 8.019000e+06 0.00 NULL
2021 City Council Council Member Aide 53739.08585 2.316155e+07 0.00 0.000000e+00 0.000 0.00 431 0.000000e+00 0.00 2.316155e+07 2.316155e+07 0.00 NULL
2021 City Council Deputy Chief Of Staff 202339.80000 1.011699e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.011699e+06 1.011699e+06 0.00 NULL
2021 City Council Deputy Director 145303.71429 2.034252e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.034252e+06 2.034252e+06 0.00 NULL
2021 City Council Deputy Director- Finance 192204.25000 7.688170e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.688170e+05 7.688170e+05 0.00 NULL
2021 City Council Deputy Director-Legal Division 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2021 City Council Deputy Director-Office Of Communications 154500.00000 1.545000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.545000e+05 1.545000e+05 0.00 NULL
2021 City Council Deputy Unit Chief 84107.00000 8.410700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.410700e+04 8.410700e+04 0.00 NULL
2021 City Council Director 170402.11111 1.533619e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.533619e+06 1.533619e+06 0.00 NULL
2021 City Council Director Legal Division/Gen Counsel& Spec Counsel 187991.00000 1.879910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.879910e+05 1.879910e+05 0.00 NULL
2021 City Council Director Of Finance 235000.00000 2.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.350000e+05 2.350000e+05 0.00 NULL
2021 City Council Director Of Land Use Division 200103.00000 2.001030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.001030e+05 2.001030e+05 0.00 NULL
2021 City Council Director-Office Of Communications 194838.00000 1.948380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.948380e+05 1.948380e+05 0.00 NULL
2021 City Council Executive Legislative Coordinator 195262.33333 5.857870e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.857870e+05 5.857870e+05 0.00 NULL
2021 City Council Legislative Administrative Assistant 59105.84615 7.683760e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 7.683760e+05 7.683760e+05 0.00 NULL
2021 City Council Legislative Administrative Manager 93785.72222 1.688143e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.688143e+06 1.688143e+06 0.00 NULL
2021 City Council Legislative Analyst 104264.50000 2.085290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.085290e+05 2.085290e+05 0.00 NULL
2021 City Council Legislative Assistant 59210.40682 6.572355e+06 0.00 0.000000e+00 0.000 0.00 111 0.000000e+00 0.00 6.572355e+06 6.572355e+06 0.00 NULL
2021 City Council Legislative Clerk 30924.66667 9.277400e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.277400e+04 9.277400e+04 0.00 NULL
2021 City Council Legislative Computer Support Specialist 77838.85714 5.448720e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.448720e+05 5.448720e+05 0.00 NULL
2021 City Council Legislative Coordinator 83081.28571 5.815690e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.815690e+05 5.815690e+05 0.00 NULL
2021 City Council Legislative Counsel 98844.83871 6.128380e+06 0.00 0.000000e+00 0.000 0.00 62 0.000000e+00 0.00 6.128380e+06 6.128380e+06 0.00 NULL
2021 City Council Legislative Financial Analyst 64310.35000 1.286207e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.286207e+06 1.286207e+06 0.00 NULL
2021 City Council Legislative Intern 7969.21250 4.781528e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.781528e+04 4.781528e+04 0.00 NULL
2021 City Council Legislative Investigator 64512.00000 5.160960e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.160960e+05 5.160960e+05 0.00 NULL
2021 City Council Legislative Policy Analyst 69580.26667 1.043704e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.043704e+06 1.043704e+06 0.00 NULL
2021 City Council Legislative Programmer/Analyst 75302.10000 7.530210e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.530210e+05 7.530210e+05 0.00 NULL
2021 City Council Legislative Project Manager 84440.75000 6.755260e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.755260e+05 6.755260e+05 0.00 NULL
2021 City Council Legislative Support Service Coord 57783.66667 1.733510e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.733510e+05 1.733510e+05 0.00 NULL
2021 City Council Legislative Systems Manager 123680.00000 3.710400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.710400e+05 3.710400e+05 0.00 NULL
2021 City Council Minority Leader 148500.00000 1.485000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.485000e+05 1.485000e+05 0.00 NULL
2021 City Council Principal Legislative Financial Analyst 110583.66667 9.952530e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.952530e+05 9.952530e+05 0.00 NULL
2021 City Council Senior Legislative Financial Analyst 76994.50000 4.619670e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.619670e+05 4.619670e+05 0.00 NULL
2021 City Council Senior Legislative Investigator 82400.00000 8.240000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.240000e+04 8.240000e+04 0.00 NULL
2021 City Council Senior Legislative Policy Analyst 84705.57143 1.185878e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.185878e+06 1.185878e+06 0.00 NULL
2021 City Council Sergeant At Arms 110584.00000 1.105840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.105840e+05 1.105840e+05 0.00 NULL
2021 City Council Speaker/Majority Leader 164500.00000 1.645000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.645000e+05 1.645000e+05 0.00 NULL
2021 City Council Special Advisor To The Director 135106.66667 8.106400e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.106400e+05 8.106400e+05 0.00 NULL
2021 Civil Service Commission Agency Attorney 78976.00000 2.369280e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.369280e+05 2.369280e+05 0.00 NULL
2021 Civil Service Commission Chairman 1761.90050 1.761900e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.761900e+03 1.761900e+03 0.00 NULL
2021 Civil Service Commission Commissioner 1321.53000 3.964590e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.964590e+03 3.964590e+03 0.00 NULL
2021 Civil Service Commission Community Associate 47973.33333 1.439200e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.439200e+05 1.439200e+05 0.00 NULL
2021 Civil Service Commission Executive Agency Counsel 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2021 Civil Service Commission Secretary Of The Commission 117558.00000 1.175580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.175580e+05 1.175580e+05 0.00 NULL
2021 Civilian Complaint Review Bd Adm Manager-Non-Mgrl 109409.00000 1.094090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.094090e+05 1.094090e+05 0.00 NULL
2021 Civilian Complaint Review Bd Administrative Director Of Social Services 103000.00000 1.030000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030000e+05 1.030000e+05 0.00 NULL
2021 Civilian Complaint Review Bd Administrative Staff Analyst 185711.09000 1.857111e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.857111e+05 1.857111e+05 0.00 NULL
2021 Civilian Complaint Review Bd Agency Attorney 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2021 Civilian Complaint Review Bd Certified It Administrator 131000.00000 1.310000e+05 11305.97 1.130597e+04 11305.970 146.50 1 1.130597e+04 11305.97 1.423060e+05 1.423060e+05 0.00 NULL
2021 Civilian Complaint Review Bd Clerical Associate 57127.24000 1.713817e+05 1623.79 5.412633e+02 2.170 54.00 3 2.170000e+00 6.51 1.730055e+05 1.713882e+05 1617.28 NULL
2021 Civilian Complaint Review Bd Community Assistant 34918.55000 6.983710e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.983710e+04 6.983710e+04 0.00 NULL
2021 Civilian Complaint Review Bd Community Associate 46653.63917 4.198828e+05 2691.03 2.990033e+02 0.000 78.00 9 0.000000e+00 0.00 4.225738e+05 4.198828e+05 2691.03 NULL
2021 Civilian Complaint Review Bd Community Coordinator 79024.84000 6.321987e+05 5844.48 7.305600e+02 0.000 129.75 8 0.000000e+00 0.00 6.380432e+05 6.321987e+05 5844.48 NULL
2021 Civilian Complaint Review Bd Computer Operations Manager 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2021 Civilian Complaint Review Bd Computer Specialist 120000.00000 1.200000e+05 10041.92 1.004192e+04 10041.920 140.50 1 1.004192e+04 10041.92 1.300419e+05 1.300419e+05 0.00 NULL
2021 Civilian Complaint Review Bd Computer Systems Manager 119000.00000 2.380000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.380000e+05 2.380000e+05 0.00 NULL
2021 Civilian Complaint Review Bd Deputy Assistant Director 132863.26615 1.727222e+06 9587.39 7.374915e+02 0.000 174.50 13 0.000000e+00 0.00 1.736810e+06 1.727222e+06 9587.39 NULL
2021 Civilian Complaint Review Bd Deputy Executive Director 193088.46000 5.792654e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.792654e+05 5.792654e+05 0.00 NULL
2021 Civilian Complaint Review Bd Executive Agency Counsel 137949.57167 2.483092e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.483092e+06 2.483092e+06 0.00 NULL
2021 Civilian Complaint Review Bd Executive Director 226385.43000 2.263854e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263854e+05 2.263854e+05 0.00 NULL
2021 Civilian Complaint Review Bd Executive Program Specialist 126760.00000 1.267600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.267600e+05 1.267600e+05 0.00 NULL
2021 Civilian Complaint Review Bd Investigative Manager 106964.06250 1.711425e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.711425e+06 1.711425e+06 0.00 NULL
2021 Civilian Complaint Review Bd Investigator 59461.25641 6.956967e+06 14744.61 1.260223e+02 0.000 363.25 117 0.000000e+00 0.00 6.971712e+06 6.956967e+06 14744.61 NULL
2021 Civilian Complaint Review Bd Member, Civilian Complaint Review Board 133.58556 1.202270e+03 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.202270e+03 1.202270e+03 0.00 NULL
2021 Civilian Complaint Review Bd Principal Administrative Associate - Non Supvr 70426.00000 2.112780e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.112780e+05 2.112780e+05 0.00 NULL
2021 Civilian Complaint Review Bd Procurement Analyst 80047.50000 1.600950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.600950e+05 1.600950e+05 0.00 NULL
2021 Civilian Complaint Review Bd Secretary 64467.00000 1.289340e+05 2.47 1.235000e+00 1.235 0.00 2 1.235000e+00 2.47 1.289365e+05 1.289365e+05 0.00 NULL
2021 Civilian Complaint Review Bd Special Officer 61579.95000 6.157995e+04 10760.92 1.076092e+04 10760.920 306.00 1 1.076092e+04 10760.92 7.234087e+04 7.234087e+04 0.00 NULL
2021 Civilian Complaint Review Bd Strategic Initiative Specialist 111127.00000 2.222540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.222540e+05 2.222540e+05 0.00 NULL
2021 Civilian Complaint Review Bd Supervisor Of Investigators 85986.31250 1.375781e+06 13076.96 8.173100e+02 0.000 236.25 16 0.000000e+00 0.00 1.388858e+06 1.375781e+06 13076.96 NULL
2021 Community College (Bronx) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 130 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Bronx) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Bronx) Adjunct College Lab Tech 5265.74071 7.372037e+04 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 7.372037e+04 7.372037e+04 0.00 NULL
2021 Community College (Bronx) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 329 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Bronx) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Bronx) Adjunct Senior College Lab Tech 16815.78000 1.681578e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.681578e+04 1.681578e+04 0.00 NULL
2021 Community College (Bronx) Administrator 152535.00000 6.101400e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.101400e+05 6.101400e+05 0.00 NULL
2021 Community College (Bronx) Administrator Supt Campus B/G 96688.00000 9.668800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.668800e+04 9.668800e+04 0.00 NULL
2021 Community College (Bronx) Assistant Administrator 141974.00000 1.419740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.419740e+05 1.419740e+05 0.00 NULL
2021 Community College (Bronx) Assistant College Security Director 82728.00000 8.272800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.272800e+04 8.272800e+04 0.00 NULL
2021 Community College (Bronx) Assistant Dean 128282.00000 1.282820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.282820e+05 1.282820e+05 0.00 NULL
2021 Community College (Bronx) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 102 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Bronx) Assistant To Heo 66913.55172 1.940493e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 1.940493e+06 1.940493e+06 0.00 NULL
2021 Community College (Bronx) Assistant Vice President 145123.00000 4.353690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.353690e+05 4.353690e+05 0.00 NULL
2021 Community College (Bronx) Associate Administrator 142000.00000 1.420000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.420000e+05 1.420000e+05 0.00 NULL
2021 Community College (Bronx) Associate Dean 141974.00000 2.839480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.839480e+05 2.839480e+05 0.00 NULL
2021 Community College (Bronx) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 129 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Bronx) Auto Mechanic NA NA 5273.10 2.636550e+03 2636.550 81.00 2 2.636550e+03 5273.10 NA NA NA NULL
2021 Community College (Bronx) Business Data And Reporting Analyst 50492.53846 6.564030e+05 738.07 5.677462e+01 0.000 24.00 13 0.000000e+00 0.00 6.571411e+05 6.564030e+05 738.07 NULL
2021 Community College (Bronx) Campus Peace Officer 43745.27500 1.749811e+06 23470.15 5.867537e+02 249.525 253.00 40 2.495250e+02 9981.00 1.773281e+06 1.759792e+06 13489.15 NULL
2021 Community College (Bronx) Campus Public Safety Sergeant 59402.18182 6.534240e+05 28017.35 2.547032e+03 662.650 463.00 11 6.626500e+02 7289.15 6.814413e+05 6.607132e+05 20728.20 NULL
2021 Community College (Bronx) Campus Security Assistant 28016.10550 1.288741e+06 9327.97 2.027820e+02 33.590 180.00 46 3.359000e+01 1545.14 1.298069e+06 1.290286e+06 7782.83 NULL
2021 Community College (Bronx) Carpenter NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Bronx) Cement Mason NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Bronx) Chief College Lab Technician 90162.33333 2.704870e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.704870e+05 2.704870e+05 0.00 NULL
2021 Community College (Bronx) City Laborer NA NA 19212.57 3.202095e+03 3262.505 323.75 6 3.202095e+03 19212.57 NA NA NA NULL
2021 Community College (Bronx) Clip Instructor 53948.00000 5.394800e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.394800e+05 5.394800e+05 0.00 NULL
2021 Community College (Bronx) College Accountant 58837.50000 2.353500e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.353500e+05 2.353500e+05 0.00 NULL
2021 Community College (Bronx) College Accounting Assistant 47435.50000 1.897420e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.897420e+05 1.897420e+05 0.00 NULL
2021 Community College (Bronx) College Assistant 9157.36808 2.142824e+06 0.00 0.000000e+00 0.000 0.00 234 0.000000e+00 0.00 2.142824e+06 2.142824e+06 0.00 NULL
2021 Community College (Bronx) College Graph Designer 64482.00000 6.448200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.448200e+04 6.448200e+04 0.00 NULL
2021 Community College (Bronx) College Lab Technician 57130.14571 7.998220e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 7.998220e+05 7.998220e+05 0.00 NULL
2021 Community College (Bronx) College Print Shop Assistant 39167.00000 3.916700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.916700e+04 3.916700e+04 0.00 NULL
2021 Community College (Bronx) College Print Shop Associate 45644.50000 9.128900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.128900e+04 9.128900e+04 0.00 NULL
2021 Community College (Bronx) College Security Director 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2021 Community College (Bronx) College Security Specialist 64863.00000 3.243150e+05 11918.69 2.383738e+03 1563.830 123.00 5 1.563830e+03 7819.15 3.362337e+05 3.321342e+05 4099.54 NULL
2021 Community College (Bronx) Computer Systems Manager 98401.00000 2.952030e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.952030e+05 2.952030e+05 0.00 NULL
2021 Community College (Bronx) Continuing Education Teacher 13135.22372 5.385442e+05 0.00 0.000000e+00 0.000 0.00 41 0.000000e+00 0.00 5.385442e+05 5.385442e+05 0.00 NULL
2021 Community College (Bronx) Cuny Administrator Assistant 56165.14286 7.863120e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 7.863120e+05 7.863120e+05 0.00 NULL
2021 Community College (Bronx) Cuny Custodial Assistant 34978.78378 1.294215e+06 8593.92 2.322681e+02 187.270 346.25 37 1.872700e+02 6928.99 1.302809e+06 1.301144e+06 1664.93 NULL
2021 Community College (Bronx) Cuny Office Assistant 40409.49296 2.869074e+06 0.00 0.000000e+00 0.000 0.00 71 0.000000e+00 0.00 2.869074e+06 2.869074e+06 0.00 NULL
2021 Community College (Bronx) Cuny Start Instructor 66850.16667 4.011010e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.011010e+05 4.011010e+05 0.00 NULL
2021 Community College (Bronx) Custodial Supervisor 38873.00000 1.166190e+05 1047.22 3.490733e+02 0.000 37.50 3 0.000000e+00 0.00 1.176662e+05 1.166190e+05 1047.22 NULL
2021 Community College (Bronx) Dean 154787.40000 7.739370e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.739370e+05 7.739370e+05 0.00 NULL
2021 Community College (Bronx) Disability Accommodations Specialist 41031.85000 8.206370e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.206370e+04 8.206370e+04 0.00 NULL
2021 Community College (Bronx) Electrician NA NA 4258.81 1.419603e+03 439.050 48.50 3 4.390500e+02 1317.15 NA NA NA NULL
2021 Community College (Bronx) Eoc Accounting Assistant 44601.00000 4.460100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.460100e+04 4.460100e+04 0.00 NULL
2021 Community College (Bronx) Eoc Adjunct Lecturer 7809.22800 7.809228e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.809228e+04 7.809228e+04 0.00 NULL
2021 Community College (Bronx) Eoc Administrative Assistant 57629.00000 1.152580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.152580e+05 1.152580e+05 0.00 NULL
2021 Community College (Bronx) Eoc Assistant To Heo 68835.77778 6.195220e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 6.195220e+05 6.195220e+05 0.00 NULL
2021 Community College (Bronx) Eoc College Lab Technician 66836.00000 6.683600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.683600e+04 6.683600e+04 0.00 NULL
2021 Community College (Bronx) Eoc Custodial Assistant 36150.50000 7.230100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.230100e+04 7.230100e+04 0.00 NULL
2021 Community College (Bronx) Eoc Custodial Supervisor 42874.00000 4.287400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.287400e+04 4.287400e+04 0.00 NULL
2021 Community College (Bronx) Eoc Higher Education Assistant 89476.50000 1.789530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.789530e+05 1.789530e+05 0.00 NULL
2021 Community College (Bronx) Eoc Higher Education Associate 94835.50000 1.896710e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.896710e+05 1.896710e+05 0.00 NULL
2021 Community College (Bronx) Eoc Higher Education Officer 121852.00000 1.218520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.218520e+05 1.218520e+05 0.00 NULL
2021 Community College (Bronx) Eoc It Support Assistant 38928.00000 3.892800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.892800e+04 3.892800e+04 0.00 NULL
2021 Community College (Bronx) Eoc Lecturer 79603.00000 2.388090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.388090e+05 2.388090e+05 0.00 NULL
2021 Community College (Bronx) Eoc Office Assistant 37603.85714 2.632270e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.632270e+05 2.632270e+05 0.00 NULL
2021 Community College (Bronx) High Pressure Plant Tender NA NA 99520.97 1.658683e+04 19328.850 1708.50 6 1.658683e+04 99520.97 NA NA NA NULL
2021 Community College (Bronx) Higher Education Assistant 78962.75789 7.501462e+06 0.00 0.000000e+00 0.000 0.00 95 0.000000e+00 0.00 7.501462e+06 7.501462e+06 0.00 NULL
2021 Community College (Bronx) Higher Education Associate 98425.52778 3.543319e+06 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 3.543319e+06 3.543319e+06 0.00 NULL
2021 Community College (Bronx) Higher Education Officer 123856.10345 3.591827e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 3.591827e+06 3.591827e+06 0.00 NULL
2021 Community College (Bronx) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Bronx) It Assistant 60068.25000 4.805460e+05 305.00 3.812500e+01 0.000 9.00 8 0.000000e+00 0.00 4.808510e+05 4.805460e+05 305.00 NULL
2021 Community College (Bronx) It Associate 85098.16667 5.105890e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.105890e+05 5.105890e+05 0.00 NULL
2021 Community College (Bronx) It Senior Associate 110017.50000 2.200350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.200350e+05 2.200350e+05 0.00 NULL
2021 Community College (Bronx) It Support Assistant 32846.48296 1.083934e+06 126.29 3.826970e+00 0.000 5.00 33 0.000000e+00 0.00 1.084060e+06 1.083934e+06 126.29 NULL
2021 Community College (Bronx) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 52 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Bronx) Lecturer/Doctoral Schedule 75901.00000 1.518020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.518020e+05 1.518020e+05 0.00 NULL
2021 Community College (Bronx) Locksmith NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Bronx) Mail/Message Services Worker 38406.00000 7.681200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.681200e+04 7.681200e+04 0.00 NULL
2021 Community College (Bronx) Maintenance Worker NA NA 12250.24 1.531280e+03 1509.940 249.75 8 1.509940e+03 12079.52 NA NA NA NULL
2021 Community College (Bronx) Motor Vehicle Operator 48588.00000 4.858800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.858800e+04 4.858800e+04 0.00 NULL
2021 Community College (Bronx) Non-Teaching Adjunct Ii 1099.55036 1.814258e+05 0.00 0.000000e+00 0.000 0.00 165 0.000000e+00 0.00 1.814258e+05 1.814258e+05 0.00 NULL
2021 Community College (Bronx) Non-Teaching Adjunct Iii 297.51705 1.993364e+04 0.00 0.000000e+00 0.000 0.00 67 0.000000e+00 0.00 1.993364e+04 1.993364e+04 0.00 NULL
2021 Community College (Bronx) Non-Teaching Adjunct Iv 255.82500 2.814075e+03 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 2.814075e+03 2.814075e+03 0.00 NULL
2021 Community College (Bronx) Non-Teaching Adjunct V 1192.96091 1.312257e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.312257e+04 1.312257e+04 0.00 NULL
2021 Community College (Bronx) Oiler NA NA 183.46 9.173000e+01 91.730 0.00 2 9.173000e+01 183.46 NA NA NA NULL
2021 Community College (Bronx) Painter NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Bronx) Plumber NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Bronx) Plumber’s Helper NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Bronx) President 226000.00000 2.260000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.260000e+05 2.260000e+05 0.00 NULL
2021 Community College (Bronx) Principal Custodial Supervisor 65774.00000 6.577400e+04 1183.71 1.183710e+03 1183.710 24.75 1 1.183710e+03 1183.71 6.695771e+04 6.695771e+04 0.00 NULL
2021 Community College (Bronx) Professor NA NA 0.00 0.000000e+00 0.000 0.00 113 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Bronx) Project Manager 114949.00000 1.149490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.149490e+05 1.149490e+05 0.00 NULL
2021 Community College (Bronx) Senior College Lab Tech 72298.50000 1.012179e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.012179e+06 1.012179e+06 0.00 NULL
2021 Community College (Bronx) Senior Custodial Supervisor 42037.66667 1.261130e+05 544.98 1.816600e+02 0.000 18.00 3 0.000000e+00 0.00 1.266580e+05 1.261130e+05 544.98 NULL
2021 Community College (Bronx) Senior Stationary Engineer NA NA 1972.25 9.861250e+02 986.125 1.00 2 9.861250e+02 1972.25 NA NA NA NULL
2021 Community College (Bronx) Senior Vice President 218820.00000 2.188200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.188200e+05 2.188200e+05 0.00 NULL
2021 Community College (Bronx) Stationary Engineer NA NA 202463.81 2.530798e+04 28935.885 1954.50 8 2.530798e+04 202463.81 NA NA NA NULL
2021 Community College (Bronx) Steam Fitter NA NA 16775.00 8.387500e+03 8387.500 152.50 2 8.387500e+03 16775.00 NA NA NA NULL
2021 Community College (Bronx) Stock Worker 37325.00000 2.239500e+05 1.58 2.633333e-01 0.000 0.00 6 0.000000e+00 0.00 2.239516e+05 2.239500e+05 1.58 NULL
2021 Community College (Bronx) Supervisor Carpenter NA NA 13.79 1.379000e+01 13.790 0.25 1 1.379000e+01 13.79 NA NA NA NULL
2021 Community College (Bronx) Supervisor Electrician NA NA 12387.36 1.238736e+04 12387.360 131.00 1 1.238736e+04 12387.36 NA NA NA NULL
2021 Community College (Bronx) Supervisor Painter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Bronx) Thermostat Repairer NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Bronx) University Professor 157079.00000 1.570790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.570790e+05 1.570790e+05 0.00 NULL
2021 Community College (Bronx) Vice President 180902.75000 7.236110e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.236110e+05 7.236110e+05 0.00 NULL
2021 Community College (Hostos) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 128 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Hostos) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Hostos) Adjunct College Lab Tech 13451.28875 1.076103e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.076103e+05 1.076103e+05 0.00 NULL
2021 Community College (Hostos) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 165 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Hostos) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Hostos) Administrator 154704.00000 1.547040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.547040e+05 1.547040e+05 0.00 NULL
2021 Community College (Hostos) Administrator Supt Campus B/G 91120.00000 9.112000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.112000e+04 9.112000e+04 0.00 NULL
2021 Community College (Hostos) Assistant Administrator 125000.00000 2.500000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.500000e+05 2.500000e+05 0.00 NULL
2021 Community College (Hostos) Assistant College Security Director 74119.00000 7.411900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.411900e+04 7.411900e+04 0.00 NULL
2021 Community College (Hostos) Assistant Dean 117180.66667 3.515420e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.515420e+05 3.515420e+05 0.00 NULL
2021 Community College (Hostos) Assistant Principal Custodial Supervisor 47155.00000 4.715500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.715500e+04 4.715500e+04 0.00 NULL
2021 Community College (Hostos) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 90 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Hostos) Assistant To Heo 52771.98214 2.955231e+06 0.00 0.000000e+00 0.000 0.00 56 0.000000e+00 0.00 2.955231e+06 2.955231e+06 0.00 NULL
2021 Community College (Hostos) Assistant Vice President 160833.00000 1.608330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.608330e+05 1.608330e+05 0.00 NULL
2021 Community College (Hostos) Associate Administrator 134574.00000 1.345740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.345740e+05 1.345740e+05 0.00 NULL
2021 Community College (Hostos) Associate Dean 131472.00000 3.944160e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.944160e+05 3.944160e+05 0.00 NULL
2021 Community College (Hostos) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 60 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Hostos) Campus Peace Officer 43640.80556 1.571069e+06 401910.80 1.116419e+04 1662.690 10377.60 36 1.662690e+03 59856.84 1.972980e+06 1.630926e+06 342053.96 NULL
2021 Community College (Hostos) Campus Public Safety Sergeant 59659.62500 4.772770e+05 128963.40 1.612042e+04 3447.680 2684.25 8 3.447680e+03 27581.44 6.062404e+05 5.048584e+05 101381.96 NULL
2021 Community College (Hostos) Campus Security Assistant 28956.96029 4.922683e+05 61101.72 3.594219e+03 492.520 2115.50 17 4.925200e+02 8372.84 5.533700e+05 5.006412e+05 52728.88 NULL
2021 Community College (Hostos) Chief Administrative Supt Campus B/G 142233.00000 1.422330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.422330e+05 1.422330e+05 0.00 NULL
2021 Community College (Hostos) City Laborer NA NA 1540.68 5.135600e+02 570.940 27.00 3 5.135600e+02 1540.68 NA NA NA NULL
2021 Community College (Hostos) Clip Instructor 59028.12500 4.722250e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.722250e+05 4.722250e+05 0.00 NULL
2021 Community College (Hostos) College Accountant 63799.00000 6.379900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.379900e+04 6.379900e+04 0.00 NULL
2021 Community College (Hostos) College Accounting Assistant 47435.50000 9.487100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.487100e+04 9.487100e+04 0.00 NULL
2021 Community College (Hostos) College Assistant 6596.67915 2.242871e+06 0.00 0.000000e+00 0.000 0.00 340 0.000000e+00 0.00 2.242871e+06 2.242871e+06 0.00 NULL
2021 Community College (Hostos) College Lab Technician 65577.77778 5.902000e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.902000e+05 5.902000e+05 0.00 NULL
2021 Community College (Hostos) College Print Shop Assistant 39183.00000 3.918300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.918300e+04 3.918300e+04 0.00 NULL
2021 Community College (Hostos) College Security Director 137913.00000 1.379130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.379130e+05 1.379130e+05 0.00 NULL
2021 Community College (Hostos) College Security Specialist 63124.00000 1.262480e+05 5457.09 2.728545e+03 2728.545 66.75 2 2.728545e+03 5457.09 1.317051e+05 1.317051e+05 0.00 NULL
2021 Community College (Hostos) Computer Systems Manager 115000.00000 2.300000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.300000e+05 2.300000e+05 0.00 NULL
2021 Community College (Hostos) Continuing Education Teacher 11833.72325 6.745222e+05 0.00 0.000000e+00 0.000 0.00 57 0.000000e+00 0.00 6.745222e+05 6.745222e+05 0.00 NULL
2021 Community College (Hostos) Cuny Administrator Assistant 60323.62500 4.825890e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.825890e+05 4.825890e+05 0.00 NULL
2021 Community College (Hostos) Cuny Custodial Assistant 35277.73333 1.058332e+06 871.91 2.906367e+01 0.000 34.50 30 0.000000e+00 0.00 1.059204e+06 1.058332e+06 871.91 NULL
2021 Community College (Hostos) Cuny Office Assistant 40864.27660 1.920621e+06 0.00 0.000000e+00 0.000 0.00 47 0.000000e+00 0.00 1.920621e+06 1.920621e+06 0.00 NULL
2021 Community College (Hostos) Cuny Start Instructor 66438.33333 5.979450e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.979450e+05 5.979450e+05 0.00 NULL
2021 Community College (Hostos) Custodial Supervisor 37084.20000 1.854210e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.854210e+05 1.854210e+05 0.00 NULL
2021 Community College (Hostos) Dean 142237.00000 2.844740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.844740e+05 2.844740e+05 0.00 NULL
2021 Community College (Hostos) Disability Accommodations Specialist 13818.36271 9.672854e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.672854e+04 9.672854e+04 0.00 NULL
2021 Community College (Hostos) Electrician NA NA 1756.20 8.781000e+02 878.100 20.00 2 8.781000e+02 1756.20 NA NA NA NULL
2021 Community College (Hostos) Electricians Helper NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Hostos) High Pressure Plant Tender NA NA 9856.08 9.856080e+03 9856.080 142.50 1 9.856080e+03 9856.08 NA NA NA NULL
2021 Community College (Hostos) Higher Education Assistant 72633.76923 6.609673e+06 0.00 0.000000e+00 0.000 0.00 91 0.000000e+00 0.00 6.609673e+06 6.609673e+06 0.00 NULL
2021 Community College (Hostos) Higher Education Associate 98130.73684 3.728968e+06 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 3.728968e+06 3.728968e+06 0.00 NULL
2021 Community College (Hostos) Higher Education Officer 123655.36364 4.080627e+06 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 4.080627e+06 4.080627e+06 0.00 NULL
2021 Community College (Hostos) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Hostos) It Assistant 50695.70133 7.604355e+05 637.08 4.247200e+01 0.000 18.00 15 0.000000e+00 0.00 7.610726e+05 7.604355e+05 637.08 NULL
2021 Community College (Hostos) It Associate 79742.00000 7.974200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.974200e+04 7.974200e+04 0.00 NULL
2021 Community College (Hostos) It Senior Associate 100971.25000 4.038850e+05 1977.21 4.943025e+02 0.000 31.00 4 0.000000e+00 0.00 4.058622e+05 4.038850e+05 1977.21 NULL
2021 Community College (Hostos) It Support Assistant 36683.93800 3.668394e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 3.668394e+05 3.668394e+05 0.00 NULL
2021 Community College (Hostos) Lead Theatre Technician 2458.70000 1.721090e+04 144.15 2.059286e+01 0.000 1.50 7 0.000000e+00 0.00 1.735505e+04 1.721090e+04 144.15 NULL
2021 Community College (Hostos) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Hostos) Lecturer/Doctoral Schedule 82394.00000 1.647880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.647880e+05 1.647880e+05 0.00 NULL
2021 Community College (Hostos) Locksmith NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Hostos) Mail/Message Services Worker 39704.50000 1.588180e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.588180e+05 1.588180e+05 0.00 NULL
2021 Community College (Hostos) Maintenance Worker NA NA 32022.36 4.002795e+03 166.610 605.70 8 1.666100e+02 1332.88 NA NA NA NULL
2021 Community College (Hostos) Non-Teaching Adjunct I 2090.21587 2.111118e+05 0.00 0.000000e+00 0.000 0.00 101 0.000000e+00 0.00 2.111118e+05 2.111118e+05 0.00 NULL
2021 Community College (Hostos) Non-Teaching Adjunct Ii 3098.55824 1.146467e+05 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 1.146467e+05 1.146467e+05 0.00 NULL
2021 Community College (Hostos) Non-Teaching Adjunct Iii 1368.38756 1.751536e+05 0.00 0.000000e+00 0.000 0.00 128 0.000000e+00 0.00 1.751536e+05 1.751536e+05 0.00 NULL
2021 Community College (Hostos) Non-Teaching Adjunct Iv 1848.08510 4.805021e+04 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 4.805021e+04 4.805021e+04 0.00 NULL
2021 Community College (Hostos) Non-Teaching Adjunct V 2558.04775 7.674143e+04 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 7.674143e+04 7.674143e+04 0.00 NULL
2021 Community College (Hostos) Oiler NA NA 13054.39 6.527195e+03 6527.195 104.00 2 6.527195e+03 13054.39 NA NA NA NULL
2021 Community College (Hostos) Painter NA NA 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Hostos) Plumber NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Hostos) Plumber’s Helper NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Hostos) President 243000.00000 4.860000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.860000e+05 4.860000e+05 0.00 NULL
2021 Community College (Hostos) Principal Custodial Supervisor 75198.00000 7.519800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.519800e+04 7.519800e+04 0.00 NULL
2021 Community College (Hostos) Professor NA NA 0.00 0.000000e+00 0.000 0.00 60 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Hostos) Purchasing Agent 63181.00000 6.318100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.318100e+04 6.318100e+04 0.00 NULL
2021 Community College (Hostos) Senior College Lab Tech 73630.25000 2.945210e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.945210e+05 2.945210e+05 0.00 NULL
2021 Community College (Hostos) Senior Custodial Supervisor 41913.00000 4.191300e+04 120.44 1.204400e+02 120.440 4.00 1 1.204400e+02 120.44 4.203344e+04 4.203344e+04 0.00 NULL
2021 Community College (Hostos) Senior Stationary Engineer NA NA 3560.63 3.560630e+03 3560.630 9.00 1 3.560630e+03 3560.63 NA NA NA NULL
2021 Community College (Hostos) Senior Vice President 216250.00000 2.162500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.162500e+05 2.162500e+05 0.00 NULL
2021 Community College (Hostos) Staff Nurse 73279.00000 7.327900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.327900e+04 7.327900e+04 0.00 NULL
2021 Community College (Hostos) Stationary Engineer NA NA 148713.57 2.478560e+04 10764.375 1386.50 6 1.076438e+04 64586.25 NA NA NA NULL
2021 Community College (Hostos) Stock Worker 40272.00000 4.027200e+04 2.27 2.270000e+00 2.270 0.00 1 2.270000e+00 2.27 4.027427e+04 4.027427e+04 0.00 NULL
2021 Community College (Hostos) Student Aide 165.00000 1.650000e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+02 1.650000e+02 0.00 NULL
2021 Community College (Hostos) Supervisor Thermostat Repair NA NA 15674.73 1.567473e+04 15674.730 141.75 1 1.567473e+04 15674.73 NA NA NA NULL
2021 Community College (Hostos) Vice President 165284.00000 6.611360e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.611360e+05 6.611360e+05 0.00 NULL
2021 Community College (Kingsboro) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 78 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Kingsboro) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Kingsboro) Adjunct College Lab Tech 10636.14496 7.445301e+05 0.00 0.000000e+00 0.000 0.00 70 0.000000e+00 0.00 7.445301e+05 7.445301e+05 0.00 NULL
2021 Community College (Kingsboro) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 450 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Kingsboro) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Kingsboro) Adjunct Senior College Lab Tech 6956.69000 6.956690e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.956690e+03 6.956690e+03 0.00 NULL
2021 Community College (Kingsboro) Administrator Supt Campus B/G 103070.50000 2.061410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.061410e+05 2.061410e+05 0.00 NULL
2021 Community College (Kingsboro) Assistant Administrator 137100.00000 2.742000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.742000e+05 2.742000e+05 0.00 NULL
2021 Community College (Kingsboro) Assistant College Security Director 76006.66667 2.280200e+05 1271.00 4.236667e+02 241.980 0.00 3 2.419800e+02 725.94 2.292910e+05 2.287459e+05 545.06 NULL
2021 Community College (Kingsboro) Assistant Dean 117500.00000 2.350000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.350000e+05 2.350000e+05 0.00 NULL
2021 Community College (Kingsboro) Assistant Principal Custodial Supervisor 47165.00000 9.433000e+04 34.41 1.720500e+01 17.205 1.00 2 1.720500e+01 34.41 9.436441e+04 9.436441e+04 0.00 NULL
2021 Community College (Kingsboro) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 165 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Kingsboro) Assistant Purchasing Agent 45396.00000 4.539600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.539600e+04 4.539600e+04 0.00 NULL
2021 Community College (Kingsboro) Assistant To Heo 61459.47368 3.503190e+06 0.00 0.000000e+00 0.000 0.00 57 0.000000e+00 0.00 3.503190e+06 3.503190e+06 0.00 NULL
2021 Community College (Kingsboro) Assistant Vice President 156335.66667 4.690070e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.690070e+05 4.690070e+05 0.00 NULL
2021 Community College (Kingsboro) Associate Administrator 145234.66667 4.357040e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.357040e+05 4.357040e+05 0.00 NULL
2021 Community College (Kingsboro) Associate Dean 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2021 Community College (Kingsboro) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 121 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Kingsboro) Auto Mechanic NA NA 1432.20 7.161000e+02 716.100 22.00 2 7.161000e+02 1432.20 NA NA NA NULL
2021 Community College (Kingsboro) Campus Peace Officer 42050.09677 1.303553e+06 25826.93 8.331268e+02 466.730 481.25 31 4.667300e+02 14468.63 1.329380e+06 1.318022e+06 11358.30 NULL
2021 Community College (Kingsboro) Campus Public Safety Sergeant 59730.23077 7.764930e+05 27458.51 2.112193e+03 2047.920 321.75 13 2.047920e+03 26622.96 8.039515e+05 8.031160e+05 835.55 NULL
2021 Community College (Kingsboro) Campus Security Assistant 34836.66667 4.180400e+05 10303.59 8.586325e+02 407.340 68.50 12 4.073400e+02 4888.08 4.283436e+05 4.229281e+05 5415.51 NULL
2021 Community College (Kingsboro) Carpenter NA NA 26897.16 1.344858e+04 13448.580 340.00 2 1.344858e+04 26897.16 NA NA NA NULL
2021 Community College (Kingsboro) Chief Administrative Supt Campus B/G 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2021 Community College (Kingsboro) Chief College Lab Technician 60857.54643 4.260028e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.260028e+05 4.260028e+05 0.00 NULL
2021 Community College (Kingsboro) City Laborer NA NA 23508.10 1.959008e+03 2111.560 397.00 12 1.959008e+03 23508.10 NA NA NA NULL
2021 Community College (Kingsboro) Clip Instructor 59565.57143 4.169590e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.169590e+05 4.169590e+05 0.00 NULL
2021 Community College (Kingsboro) College Accountant 61430.50000 1.228610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.228610e+05 1.228610e+05 0.00 NULL
2021 Community College (Kingsboro) College Accounting Assistant 47428.00000 9.485600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.485600e+04 9.485600e+04 0.00 NULL
2021 Community College (Kingsboro) College Assistant 7713.58598 2.452920e+06 0.00 0.000000e+00 0.000 0.00 318 0.000000e+00 0.00 2.452920e+06 2.452920e+06 0.00 NULL
2021 Community College (Kingsboro) College Lab Technician 61117.79063 9.778847e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 9.778847e+05 9.778847e+05 0.00 NULL
2021 Community College (Kingsboro) College Print Shop Assistant 40114.00000 1.203420e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.203420e+05 1.203420e+05 0.00 NULL
2021 Community College (Kingsboro) College Print Shop Associate 51608.00000 5.160800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.160800e+04 5.160800e+04 0.00 NULL
2021 Community College (Kingsboro) College Print Shop Coordinator 64417.00000 6.441700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.441700e+04 6.441700e+04 0.00 NULL
2021 Community College (Kingsboro) College Security Director 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2021 Community College (Kingsboro) College Security Specialist 64851.00000 1.945530e+05 5267.37 1.755790e+03 99.210 71.00 3 9.921000e+01 297.63 1.998204e+05 1.948506e+05 4969.74 NULL
2021 Community College (Kingsboro) Computer Operator Manager 91908.00000 1.838160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.838160e+05 1.838160e+05 0.00 NULL
2021 Community College (Kingsboro) Computer Systems Manager 103466.00000 3.103980e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.103980e+05 3.103980e+05 0.00 NULL
2021 Community College (Kingsboro) Continuing Education Teacher NA NA 0.00 0.000000e+00 0.000 0.00 135 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Kingsboro) Cuny Administrator Assistant 55906.50000 8.945040e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 8.945040e+05 8.945040e+05 0.00 NULL
2021 Community College (Kingsboro) Cuny Broadcast Associate 61875.00000 6.187500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.187500e+04 6.187500e+04 0.00 NULL
2021 Community College (Kingsboro) Cuny Custodial Assistant 30124.52767 2.349713e+06 6104.48 7.826256e+01 17.560 238.25 78 1.756000e+01 1369.68 2.355818e+06 2.351083e+06 4734.80 NULL
2021 Community College (Kingsboro) Cuny Office Assistant 40502.28571 1.701096e+06 41.51 9.883333e-01 0.000 2.00 42 0.000000e+00 0.00 1.701138e+06 1.701096e+06 41.51 NULL
2021 Community College (Kingsboro) Cuny Start Instructor 62876.14286 4.401330e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.401330e+05 4.401330e+05 0.00 NULL
2021 Community College (Kingsboro) Custodial Supervisor 38877.00000 1.555080e+05 778.09 1.945225e+02 239.420 27.50 4 1.945225e+02 778.09 1.562861e+05 1.562861e+05 0.00 NULL
2021 Community College (Kingsboro) Dean 148626.00000 4.458780e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.458780e+05 4.458780e+05 0.00 NULL
2021 Community College (Kingsboro) Disability Accommodations Specialist 25570.10000 2.557010e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.557010e+04 2.557010e+04 0.00 NULL
2021 Community College (Kingsboro) Electrician NA NA 16244.85 8.122425e+03 8122.425 185.00 2 8.122425e+03 16244.85 NA NA NA NULL
2021 Community College (Kingsboro) Electricians Helper NA NA 4736.66 4.736660e+03 4736.660 85.00 1 4.736660e+03 4736.66 NA NA NA NULL
2021 Community College (Kingsboro) Facilities Coordinator 75430.50000 1.508610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.508610e+05 1.508610e+05 0.00 NULL
2021 Community College (Kingsboro) High Pressure Plant Tender NA NA 48491.89 4.408354e+03 4831.150 863.25 11 4.408354e+03 48491.89 NA NA NA NULL
2021 Community College (Kingsboro) Higher Education Assistant 75889.43373 6.298823e+06 0.00 0.000000e+00 0.000 0.00 83 0.000000e+00 0.00 6.298823e+06 6.298823e+06 0.00 NULL
2021 Community College (Kingsboro) Higher Education Associate 95689.20370 5.167217e+06 0.00 0.000000e+00 0.000 0.00 54 0.000000e+00 0.00 5.167217e+06 5.167217e+06 0.00 NULL
2021 Community College (Kingsboro) Higher Education Officer 117410.68750 5.635713e+06 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 5.635713e+06 5.635713e+06 0.00 NULL
2021 Community College (Kingsboro) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Kingsboro) It Assistant 59958.17647 1.019289e+06 10075.47 5.926747e+02 0.000 294.00 17 0.000000e+00 0.00 1.029364e+06 1.019289e+06 10075.47 NULL
2021 Community College (Kingsboro) It Associate 76428.75000 3.057150e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.057150e+05 3.057150e+05 0.00 NULL
2021 Community College (Kingsboro) It Senior Associate 104579.50000 2.091590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.091590e+05 2.091590e+05 0.00 NULL
2021 Community College (Kingsboro) It Support Assistant 43776.20000 4.377620e+05 1597.66 1.597660e+02 0.000 50.50 10 0.000000e+00 0.00 4.393597e+05 4.377620e+05 1597.66 NULL
2021 Community College (Kingsboro) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 164 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Kingsboro) Lecturer/Doctoral Schedule 87441.70000 8.744170e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 8.744170e+05 8.744170e+05 0.00 NULL
2021 Community College (Kingsboro) Locksmith NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Kingsboro) Mail/Message Services Worker 37232.20000 1.861610e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.861610e+05 1.861610e+05 0.00 NULL
2021 Community College (Kingsboro) Maintenance Worker NA NA 24992.43 3.570347e+03 5365.570 486.00 7 3.570347e+03 24992.43 NA NA NA NULL
2021 Community College (Kingsboro) Media Services Technician 69832.00000 6.983200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.983200e+04 6.983200e+04 0.00 NULL
2021 Community College (Kingsboro) Non-Teaching Adjunct I 5941.29963 1.390264e+06 0.00 0.000000e+00 0.000 0.00 234 0.000000e+00 0.00 1.390264e+06 1.390264e+06 0.00 NULL
2021 Community College (Kingsboro) Non-Teaching Adjunct Ii 25707.92250 2.570792e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.570792e+04 2.570792e+04 0.00 NULL
2021 Community College (Kingsboro) Non-Teaching Adjunct Iii 2868.91103 9.754298e+04 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 9.754298e+04 9.754298e+04 0.00 NULL
2021 Community College (Kingsboro) Non-Teaching Adjunct Iv 13390.08788 1.205108e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.205108e+05 1.205108e+05 0.00 NULL
2021 Community College (Kingsboro) Non-Teaching Adjunct V 6590.75166 9.227052e+04 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 9.227052e+04 9.227052e+04 0.00 NULL
2021 Community College (Kingsboro) Oiler NA NA 15062.09 5.020697e+03 7031.950 149.00 3 5.020697e+03 15062.09 NA NA NA NULL
2021 Community College (Kingsboro) Painter NA NA 13357.32 4.452440e+03 6268.560 205.00 3 4.452440e+03 13357.32 NA NA NA NULL
2021 Community College (Kingsboro) Plumber NA NA 8657.56 2.885853e+03 4223.200 82.00 3 2.885853e+03 8657.56 NA NA NA NULL
2021 Community College (Kingsboro) President 226000.00000 2.260000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.260000e+05 2.260000e+05 0.00 NULL
2021 Community College (Kingsboro) Principal Custodial Supervisor 65598.00000 6.559800e+04 183.07 1.830700e+02 183.070 4.00 1 1.830700e+02 183.07 6.578107e+04 6.578107e+04 0.00 NULL
2021 Community College (Kingsboro) Professor NA NA 0.00 0.000000e+00 0.000 0.00 129 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Kingsboro) Project Manager 107428.00000 1.074280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074280e+05 1.074280e+05 0.00 NULL
2021 Community College (Kingsboro) Purchasing Agent 63070.50000 1.261410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.261410e+05 1.261410e+05 0.00 NULL
2021 Community College (Kingsboro) Senior College Lab Tech 71359.64286 9.990350e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 9.990350e+05 9.990350e+05 0.00 NULL
2021 Community College (Kingsboro) Senior Custodial Supervisor 41913.00000 4.191300e+04 165.60 1.656000e+02 165.600 5.50 1 1.656000e+02 165.60 4.207860e+04 4.207860e+04 0.00 NULL
2021 Community College (Kingsboro) Senior Stationary Engineer NA NA 19278.50 6.426167e+03 0.000 142.50 3 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Kingsboro) Sign Language Interpreter 24593.34955 4.918670e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.918670e+04 4.918670e+04 0.00 NULL
2021 Community College (Kingsboro) Sr College Laboratory Tech 2660.88000 1.064352e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.064352e+04 1.064352e+04 0.00 NULL
2021 Community College (Kingsboro) Staff Nurse 17813.51342 1.959486e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.959486e+05 1.959486e+05 0.00 NULL
2021 Community College (Kingsboro) Stationary Engineer NA NA 90530.59 9.053059e+03 2015.455 865.25 10 2.015455e+03 20154.55 NA NA NA NULL
2021 Community College (Kingsboro) Stock Worker 33634.25000 1.345370e+05 42.85 1.071250e+01 10.550 0.00 4 1.055000e+01 42.20 1.345799e+05 1.345792e+05 0.65 NULL
2021 Community College (Kingsboro) Student Aide 2295.00000 1.377000e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.377000e+04 1.377000e+04 0.00 NULL
2021 Community College (Kingsboro) Supervisor Of Stock Workers 50992.00000 5.099200e+04 51.70 5.170000e+01 51.700 0.00 1 5.170000e+01 51.70 5.104370e+04 5.104370e+04 0.00 NULL
2021 Community College (Kingsboro) Thermostat Repairer NA NA 4645.52 4.645520e+03 4645.520 44.00 1 4.645520e+03 4645.52 NA NA NA NULL
2021 Community College (Kingsboro) University Architect 114610.00000 1.146100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.146100e+05 1.146100e+05 0.00 NULL
2021 Community College (Kingsboro) Vice President 175565.75000 1.404526e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.404526e+06 1.404526e+06 0.00 NULL
2021 Community College (Laguardia) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 195 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Laguardia) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Laguardia) Adjunct College Lab Tech 10100.60571 4.646279e+05 0.00 0.000000e+00 0.000 0.00 46 0.000000e+00 0.00 4.646279e+05 4.646279e+05 0.00 NULL
2021 Community College (Laguardia) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 568 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Laguardia) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Laguardia) Adjunct Senior College Lab Tech 21076.56000 2.107656e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.107656e+04 2.107656e+04 0.00 NULL
2021 Community College (Laguardia) Administrator 174115.00000 1.741150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.741150e+05 1.741150e+05 0.00 NULL
2021 Community College (Laguardia) Administrator Supt Campus B/G 81095.33333 2.432860e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.432860e+05 2.432860e+05 0.00 NULL
2021 Community College (Laguardia) Assistant Administrator 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2021 Community College (Laguardia) Assistant College Security Director 78643.50000 1.572870e+05 1656.82 8.284100e+02 828.410 0.00 2 8.284100e+02 1656.82 1.589438e+05 1.589438e+05 0.00 NULL
2021 Community College (Laguardia) Assistant Dean 138000.00000 6.900000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.900000e+05 6.900000e+05 0.00 NULL
2021 Community College (Laguardia) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 75 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Laguardia) Assistant To Heo 60759.06329 4.799966e+06 0.00 0.000000e+00 0.000 0.00 79 0.000000e+00 0.00 4.799966e+06 4.799966e+06 0.00 NULL
2021 Community College (Laguardia) Associate Administrator 147171.80000 7.358590e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.358590e+05 7.358590e+05 0.00 NULL
2021 Community College (Laguardia) Associate Dean 147792.40000 7.389620e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.389620e+05 7.389620e+05 0.00 NULL
2021 Community College (Laguardia) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 208 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Laguardia) Business Data And Reporting Analyst 40571.37250 3.245710e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 3.245710e+05 3.245710e+05 0.00 NULL
2021 Community College (Laguardia) Campus Peace Officer 45580.31579 1.732052e+06 30338.68 7.983863e+02 631.210 230.75 38 6.312100e+02 23985.98 1.762391e+06 1.756038e+06 6352.70 NULL
2021 Community College (Laguardia) Campus Public Safety Sergeant 59872.50000 4.789800e+05 9040.86 1.130108e+03 1172.740 55.00 8 1.130108e+03 9040.86 4.880209e+05 4.880209e+05 0.00 NULL
2021 Community College (Laguardia) Campus Security Assistant 35688.17949 1.391839e+06 23058.04 5.912318e+02 530.300 270.25 39 5.303000e+02 20681.70 1.414897e+06 1.412521e+06 2376.34 NULL
2021 Community College (Laguardia) Chief Administrative Supt Campus B/G 116000.00000 1.160000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.160000e+05 1.160000e+05 0.00 NULL
2021 Community College (Laguardia) Chief College Lab Technician 89866.66667 8.088000e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.088000e+05 8.088000e+05 0.00 NULL
2021 Community College (Laguardia) Clip Instructor 58239.77778 5.241580e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.241580e+05 5.241580e+05 0.00 NULL
2021 Community College (Laguardia) College Accountant 50373.00000 1.007460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.007460e+05 1.007460e+05 0.00 NULL
2021 Community College (Laguardia) College Accounting Assistant 51527.20000 2.576360e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.576360e+05 2.576360e+05 0.00 NULL
2021 Community College (Laguardia) College Assistant 6498.73981 4.451637e+06 1381.53 2.016832e+00 0.000 59.00 685 0.000000e+00 0.00 4.453018e+06 4.451637e+06 1381.53 NULL
2021 Community College (Laguardia) College Graph Designer 68259.00000 6.825900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.825900e+04 6.825900e+04 0.00 NULL
2021 Community College (Laguardia) College Lab Technician 62624.11625 1.502979e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 1.502979e+06 1.502979e+06 0.00 NULL
2021 Community College (Laguardia) College Print Shop Coordinator 64351.00000 6.435100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.435100e+04 6.435100e+04 0.00 NULL
2021 Community College (Laguardia) College Security Director 116375.00000 2.327500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.327500e+05 2.327500e+05 0.00 NULL
2021 Community College (Laguardia) College Security Specialist 68762.33333 2.062870e+05 13446.95 4.482317e+03 4169.390 66.00 3 4.169390e+03 12508.17 2.197340e+05 2.187952e+05 938.78 NULL
2021 Community College (Laguardia) Computer Systems Manager 128060.50000 5.122420e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.122420e+05 5.122420e+05 0.00 NULL
2021 Community College (Laguardia) Continuing Education Teacher 7475.17432 1.539886e+06 0.00 0.000000e+00 0.000 0.00 206 0.000000e+00 0.00 1.539886e+06 1.539886e+06 0.00 NULL
2021 Community College (Laguardia) Cuny Administrator Assistant 58780.80000 8.817120e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 8.817120e+05 8.817120e+05 0.00 NULL
2021 Community College (Laguardia) Cuny Broadcast Associate 49830.00000 1.494900e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.494900e+05 1.494900e+05 0.00 NULL
2021 Community College (Laguardia) Cuny Custodial Assistant 28370.42378 1.390151e+06 0.00 0.000000e+00 0.000 0.00 49 0.000000e+00 0.00 1.390151e+06 1.390151e+06 0.00 NULL
2021 Community College (Laguardia) Cuny Office Assistant 41170.00000 2.676050e+06 0.00 0.000000e+00 0.000 0.00 65 0.000000e+00 0.00 2.676050e+06 2.676050e+06 0.00 NULL
2021 Community College (Laguardia) Cuny Start Instructor 63071.55556 5.676440e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.676440e+05 5.676440e+05 0.00 NULL
2021 Community College (Laguardia) Custodial Supervisor 38873.00000 7.774600e+04 223.41 1.117050e+02 111.705 8.00 2 1.117050e+02 223.41 7.796941e+04 7.796941e+04 0.00 NULL
2021 Community College (Laguardia) Dean 153000.00000 1.530000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.530000e+05 1.530000e+05 0.00 NULL
2021 Community College (Laguardia) Facilities Coordinator 64466.00000 6.446600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.446600e+04 6.446600e+04 0.00 NULL
2021 Community College (Laguardia) Higher Education Assistant 77862.15278 1.121215e+07 0.00 0.000000e+00 0.000 0.00 144 0.000000e+00 0.00 1.121215e+07 1.121215e+07 0.00 NULL
2021 Community College (Laguardia) Higher Education Associate 99777.85000 7.982228e+06 0.00 0.000000e+00 0.000 0.00 80 0.000000e+00 0.00 7.982228e+06 7.982228e+06 0.00 NULL
2021 Community College (Laguardia) Higher Education Officer 125148.85417 6.007145e+06 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 6.007145e+06 6.007145e+06 0.00 NULL
2021 Community College (Laguardia) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Laguardia) It Assistant 55108.62800 1.102173e+06 298.60 1.493000e+01 0.000 9.00 20 0.000000e+00 0.00 1.102471e+06 1.102173e+06 298.60 NULL
2021 Community College (Laguardia) It Associate 76929.89474 1.461668e+06 15514.54 8.165547e+02 0.000 295.00 19 0.000000e+00 0.00 1.477183e+06 1.461668e+06 15514.54 NULL
2021 Community College (Laguardia) It Senior Associate 101562.50000 1.218750e+06 1366.19 1.138492e+02 0.000 25.00 12 0.000000e+00 0.00 1.220116e+06 1.218750e+06 1366.19 NULL
2021 Community College (Laguardia) It Support Assistant 43795.83412 7.445292e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 7.445292e+05 7.445292e+05 0.00 NULL
2021 Community College (Laguardia) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 71 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Laguardia) Lecturer/Doctoral Schedule 87356.66667 2.620700e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.620700e+05 2.620700e+05 0.00 NULL
2021 Community College (Laguardia) Mail/Message Services Worker 43098.90000 4.309890e+05 16.90 1.690000e+00 0.000 0.00 10 0.000000e+00 0.00 4.310059e+05 4.309890e+05 16.90 NULL
2021 Community College (Laguardia) Media Services Technician 63750.00000 6.375000e+04 0.44 4.400000e-01 0.440 0.00 1 4.400000e-01 0.44 6.375044e+04 6.375044e+04 0.00 NULL
2021 Community College (Laguardia) Non-Teaching Adjunct I 2193.22683 4.408386e+05 0.00 0.000000e+00 0.000 0.00 201 0.000000e+00 0.00 4.408386e+05 4.408386e+05 0.00 NULL
2021 Community College (Laguardia) Non-Teaching Adjunct Ii 896.51500 1.793030e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.793030e+03 1.793030e+03 0.00 NULL
2021 Community College (Laguardia) Non-Teaching Adjunct Iii 2979.99950 2.682000e+05 0.00 0.000000e+00 0.000 0.00 90 0.000000e+00 0.00 2.682000e+05 2.682000e+05 0.00 NULL
2021 Community College (Laguardia) Non-Teaching Adjunct Iv 2267.09800 6.801294e+04 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 6.801294e+04 6.801294e+04 0.00 NULL
2021 Community College (Laguardia) Non-Teaching Adjunct V 3307.34490 8.599097e+04 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 8.599097e+04 8.599097e+04 0.00 NULL
2021 Community College (Laguardia) President 270000.00000 2.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.700000e+05 2.700000e+05 0.00 NULL
2021 Community College (Laguardia) Professor NA NA 0.00 0.000000e+00 0.000 0.00 218 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Laguardia) Project Manager 90292.00000 9.029200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.029200e+04 9.029200e+04 0.00 NULL
2021 Community College (Laguardia) Purchasing Agent 60578.25000 2.423130e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.423130e+05 2.423130e+05 0.00 NULL
2021 Community College (Laguardia) Senior College Lab Tech 72477.45455 7.972520e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.972520e+05 7.972520e+05 0.00 NULL
2021 Community College (Laguardia) Senior Vice President 198032.00000 1.980320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.980320e+05 1.980320e+05 0.00 NULL
2021 Community College (Laguardia) Sign Language Interpreter 22668.30037 5.893758e+05 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 5.893758e+05 5.893758e+05 0.00 NULL
2021 Community College (Laguardia) Staff Nurse 93228.00000 9.322800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.322800e+04 9.322800e+04 0.00 NULL
2021 Community College (Laguardia) Student Aide 713.51351 2.640000e+04 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 2.640000e+04 2.640000e+04 0.00 NULL
2021 Community College (Laguardia) Supervisor Of Stock Workers 42580.50000 8.516100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.516100e+04 8.516100e+04 0.00 NULL
2021 Community College (Laguardia) University Assistant Architect 63290.00000 6.329000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.329000e+04 6.329000e+04 0.00 NULL
2021 Community College (Laguardia) University Assistant Engineer 75132.00000 7.513200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.513200e+04 7.513200e+04 0.00 NULL
2021 Community College (Laguardia) Vice President 178347.80000 8.917390e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.917390e+05 8.917390e+05 0.00 NULL
2021 Community College (Manhattan) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 315 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Manhattan) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Manhattan) Adjunct College Lab Tech 9437.17340 5.851048e+05 0.00 0.000000e+00 0.000 0.00 62 0.000000e+00 0.00 5.851048e+05 5.851048e+05 0.00 NULL
2021 Community College (Manhattan) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 798 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Manhattan) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Manhattan) Adjunct Senior College Lab Tech 6053.21143 1.694899e+05 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 1.694899e+05 1.694899e+05 0.00 NULL
2021 Community College (Manhattan) Administrator Supt Campus B/G 98727.60000 4.936380e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.936380e+05 4.936380e+05 0.00 NULL
2021 Community College (Manhattan) Assistant Administrator 129000.00000 5.160000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.160000e+05 5.160000e+05 0.00 NULL
2021 Community College (Manhattan) Assistant College Security Director 74675.80000 3.733790e+05 277.44 5.548800e+01 0.000 0.00 5 0.000000e+00 0.00 3.736564e+05 3.733790e+05 277.44 NULL
2021 Community College (Manhattan) Assistant Media Services Technican 28348.53800 1.417427e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.417427e+05 1.417427e+05 0.00 NULL
2021 Community College (Manhattan) Assistant Principal Custodial Supervisor 47088.00000 9.417600e+04 597.73 2.988650e+02 298.865 17.50 2 2.988650e+02 597.73 9.477373e+04 9.477373e+04 0.00 NULL
2021 Community College (Manhattan) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 267 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Manhattan) Assistant Purchasing Agent 42783.00000 8.556600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.556600e+04 8.556600e+04 0.00 NULL
2021 Community College (Manhattan) Assistant To Heo 55200.26829 4.526422e+06 0.00 0.000000e+00 0.000 0.00 82 0.000000e+00 0.00 4.526422e+06 4.526422e+06 0.00 NULL
2021 Community College (Manhattan) Assistant Vice President 144381.50000 2.887630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.887630e+05 2.887630e+05 0.00 NULL
2021 Community College (Manhattan) Associate Administrator 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2021 Community College (Manhattan) Associate Dean 148495.00000 2.969900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.969900e+05 2.969900e+05 0.00 NULL
2021 Community College (Manhattan) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 251 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Manhattan) Business Data And Reporting Analyst 48486.33333 4.363770e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.363770e+05 4.363770e+05 0.00 NULL
2021 Community College (Manhattan) Campus Peace Officer 42625.03704 2.301752e+06 57858.24 1.071449e+03 633.670 860.50 54 6.336700e+02 34218.18 2.359610e+06 2.335970e+06 23640.06 NULL
2021 Community College (Manhattan) Campus Public Safety Sergeant 59328.46667 8.899270e+05 44130.88 2.942059e+03 1890.360 797.72 15 1.890360e+03 28355.40 9.340579e+05 9.182824e+05 15775.48 NULL
2021 Community College (Manhattan) Campus Security Assistant 34562.68145 1.728134e+06 57835.67 1.156713e+03 454.115 1206.75 50 4.541150e+02 22705.75 1.785970e+06 1.750840e+06 35129.92 NULL
2021 Community College (Manhattan) Carpenter NA NA 187.53 2.679000e+01 0.000 3.00 7 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Manhattan) Chief Administrator Supt Campus B/G 140902.00000 1.409020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.409020e+05 1.409020e+05 0.00 NULL
2021 Community College (Manhattan) City Laborer NA NA 17867.67 2.552524e+03 2863.760 300.25 7 2.552524e+03 17867.67 NA NA NA NULL
2021 Community College (Manhattan) Clip Instructor 59692.40000 5.969240e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.969240e+05 5.969240e+05 0.00 NULL
2021 Community College (Manhattan) College Accountant 55566.00000 5.556600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.556600e+04 5.556600e+04 0.00 NULL
2021 Community College (Manhattan) College Accounting Assistant 50064.36364 5.507080e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.507080e+05 5.507080e+05 0.00 NULL
2021 Community College (Manhattan) College Assistant 6753.29835 5.031207e+06 18904.69 2.537542e+01 0.000 1207.75 745 0.000000e+00 0.00 5.050112e+06 5.031207e+06 18904.69 NULL
2021 Community College (Manhattan) College Graph Designer 52845.00000 1.056900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.056900e+05 1.056900e+05 0.00 NULL
2021 Community College (Manhattan) College Lab Technician 61904.76471 1.052381e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.052381e+06 1.052381e+06 0.00 NULL
2021 Community College (Manhattan) College Print Shop Assistant 33571.00000 1.342840e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.342840e+05 1.342840e+05 0.00 NULL
2021 Community College (Manhattan) College Print Shop Associate 40793.00000 4.079300e+04 33.49 3.349000e+01 33.490 1.50 1 3.349000e+01 33.49 4.082649e+04 4.082649e+04 0.00 NULL
2021 Community College (Manhattan) College Print Shop Coordinator 64351.00000 6.435100e+04 52.83 5.283000e+01 52.830 1.50 1 5.283000e+01 52.83 6.440383e+04 6.440383e+04 0.00 NULL
2021 Community College (Manhattan) College Security Director 125292.00000 1.252920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.252920e+05 1.252920e+05 0.00 NULL
2021 Community College (Manhattan) Computer Systems Manager 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2021 Community College (Manhattan) Continuing Education Teacher 11485.15853 9.877236e+05 0.00 0.000000e+00 0.000 0.00 86 0.000000e+00 0.00 9.877236e+05 9.877236e+05 0.00 NULL
2021 Community College (Manhattan) Cuny Administrator Assistant 56463.09091 6.210940e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 6.210940e+05 6.210940e+05 0.00 NULL
2021 Community College (Manhattan) Cuny Art Model 1987.65875 7.950635e+03 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.950635e+03 7.950635e+03 0.00 NULL
2021 Community College (Manhattan) Cuny Broadcast Associate 71608.00000 7.160800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.160800e+04 7.160800e+04 0.00 NULL
2021 Community College (Manhattan) Cuny Custodial Assistant 28631.29823 2.319135e+06 14447.33 1.783621e+02 0.000 640.75 81 0.000000e+00 0.00 2.333582e+06 2.319135e+06 14447.33 NULL
2021 Community College (Manhattan) Cuny Office Assistant 40146.75949 3.171594e+06 0.00 0.000000e+00 0.000 0.00 79 0.000000e+00 0.00 3.171594e+06 3.171594e+06 0.00 NULL
2021 Community College (Manhattan) Cuny Start Instructor 63873.11111 1.149716e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.149716e+06 1.149716e+06 0.00 NULL
2021 Community College (Manhattan) Custodial Supervisor 38873.00000 3.887300e+05 4586.83 4.586830e+02 174.535 164.25 10 1.745350e+02 1745.35 3.933168e+05 3.904753e+05 2841.48 NULL
2021 Community College (Manhattan) Dean 160049.00000 9.602940e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.602940e+05 9.602940e+05 0.00 NULL
2021 Community College (Manhattan) Electrician NA NA 4149.02 4.610022e+02 614.670 47.25 9 4.610022e+02 4149.02 NA NA NA NULL
2021 Community College (Manhattan) Electricians Helper NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Manhattan) Eoc Accounting Assistant 44601.00000 8.920200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.920200e+04 8.920200e+04 0.00 NULL
2021 Community College (Manhattan) Eoc Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Manhattan) Eoc Assistant To Heo 66752.70000 6.675270e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 6.675270e+05 6.675270e+05 0.00 NULL
2021 Community College (Manhattan) Eoc College Lab Technician 65508.00000 1.310160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.310160e+05 1.310160e+05 0.00 NULL
2021 Community College (Manhattan) Eoc Higher Education Assistant 91633.75000 3.665350e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.665350e+05 3.665350e+05 0.00 NULL
2021 Community College (Manhattan) Eoc Higher Education Associate 98056.00000 9.805600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.805600e+04 9.805600e+04 0.00 NULL
2021 Community College (Manhattan) Eoc Higher Education Officer 122718.00000 4.908720e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.908720e+05 4.908720e+05 0.00 NULL
2021 Community College (Manhattan) Eoc Lecturer 82359.28571 5.765150e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.765150e+05 5.765150e+05 0.00 NULL
2021 Community College (Manhattan) Eoc Lecturer/ Doctral Schedule 88309.50000 1.766190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.766190e+05 1.766190e+05 0.00 NULL
2021 Community College (Manhattan) Eoc Mail/Message Services Worker 38740.00000 3.874000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.874000e+04 3.874000e+04 0.00 NULL
2021 Community College (Manhattan) Eoc Office Assistant 43643.66667 3.927930e+05 12.90 1.433333e+00 0.000 0.00 9 0.000000e+00 0.00 3.928059e+05 3.927930e+05 12.90 NULL
2021 Community College (Manhattan) Facilities Coordinator 64466.00000 6.446600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.446600e+04 6.446600e+04 0.00 NULL
2021 Community College (Manhattan) Higher Education Assistant 74636.85987 1.171799e+07 2866.72 1.825936e+01 0.000 41.00 157 0.000000e+00 0.00 1.172085e+07 1.171799e+07 2866.72 NULL
2021 Community College (Manhattan) Higher Education Associate 96172.78788 6.347404e+06 0.00 0.000000e+00 0.000 0.00 66 0.000000e+00 0.00 6.347404e+06 6.347404e+06 0.00 NULL
2021 Community College (Manhattan) Higher Education Officer 120565.82609 5.546028e+06 0.00 0.000000e+00 0.000 0.00 46 0.000000e+00 0.00 5.546028e+06 5.546028e+06 0.00 NULL
2021 Community College (Manhattan) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Manhattan) It Assistant 61654.00000 8.631560e+05 776.62 5.547286e+01 0.000 16.00 14 0.000000e+00 0.00 8.639326e+05 8.631560e+05 776.62 NULL
2021 Community College (Manhattan) It Associate 75899.16667 4.553950e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.553950e+05 4.553950e+05 0.00 NULL
2021 Community College (Manhattan) It Senior Associate 94640.60000 4.732030e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.732030e+05 4.732030e+05 0.00 NULL
2021 Community College (Manhattan) It Support Assistant 37369.04444 6.726428e+05 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 6.726428e+05 6.726428e+05 0.00 NULL
2021 Community College (Manhattan) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 97 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Manhattan) Lecturer/Doctoral Schedule 80228.25000 3.209130e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.209130e+05 3.209130e+05 0.00 NULL
2021 Community College (Manhattan) Locksmith NA NA 47.81 2.390500e+01 23.905 1.00 2 2.390500e+01 47.81 NA NA NA NULL
2021 Community College (Manhattan) Mail/Message Services Worker 35658.50000 1.426340e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.426340e+05 1.426340e+05 0.00 NULL
2021 Community College (Manhattan) Maintenance Worker NA NA 1458.88 4.862933e+02 478.550 5.00 3 4.785500e+02 1435.65 NA NA NA NULL
2021 Community College (Manhattan) Non-Teaching Adjunct I NA NA 0.00 0.000000e+00 0.000 0.00 840 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Manhattan) Non-Teaching Adjunct Ii NA NA 0.00 0.000000e+00 0.000 0.00 87 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Manhattan) Non-Teaching Adjunct Iii 2901.52274 2.437279e+05 0.00 0.000000e+00 0.000 0.00 84 0.000000e+00 0.00 2.437279e+05 2.437279e+05 0.00 NULL
2021 Community College (Manhattan) Non-Teaching Adjunct Iv NA NA 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Manhattan) Non-Teaching Adjunct V 2941.89714 4.118656e+04 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 4.118656e+04 4.118656e+04 0.00 NULL
2021 Community College (Manhattan) Oiler NA NA 179595.08 1.197301e+04 12541.680 1830.00 15 1.197301e+04 179595.08 NA NA NA NULL
2021 Community College (Manhattan) Painter NA NA 156.72 3.134400e+01 0.000 2.50 5 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Manhattan) Plumber NA NA 15045.15 3.009030e+03 2797.870 142.50 5 2.797870e+03 13989.35 NA NA NA NULL
2021 Community College (Manhattan) President 275000.00000 2.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.750000e+05 2.750000e+05 0.00 NULL
2021 Community College (Manhattan) Principal Custodial Supervisor 65631.00000 1.312620e+05 1989.33 9.946650e+02 994.665 42.00 2 9.946650e+02 1989.33 1.332513e+05 1.332513e+05 0.00 NULL
2021 Community College (Manhattan) Professor NA NA 0.00 0.000000e+00 0.000 0.00 176 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Manhattan) Purchasing Agent 62870.75000 2.514830e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.514830e+05 2.514830e+05 0.00 NULL
2021 Community College (Manhattan) Research Assistant 43711.00000 4.371100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.371100e+04 4.371100e+04 0.00 NULL
2021 Community College (Manhattan) Senior College Lab Tech 74456.68750 1.191307e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.191307e+06 1.191307e+06 0.00 NULL
2021 Community College (Manhattan) Senior Custodial Supervisor 41913.00000 8.382600e+04 1189.34 5.946700e+02 594.670 39.50 2 5.946700e+02 1189.34 8.501534e+04 8.501534e+04 0.00 NULL
2021 Community College (Manhattan) Senior Stationary Engineer NA NA 37614.17 1.253806e+04 11700.220 290.00 3 1.170022e+04 35100.66 NA NA NA NULL
2021 Community College (Manhattan) Senior Vice President 215497.50000 4.309950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.309950e+05 4.309950e+05 0.00 NULL
2021 Community College (Manhattan) Sign Language Interpreter 12046.16875 4.818468e+04 157.59 3.939750e+01 0.000 4.50 4 0.000000e+00 0.00 4.834226e+04 4.818468e+04 157.59 NULL
2021 Community College (Manhattan) Staff Nurse 99290.00000 9.929000e+04 9853.40 9.853400e+03 9853.400 157.50 1 9.853400e+03 9853.40 1.091434e+05 1.091434e+05 0.00 NULL
2021 Community College (Manhattan) Stationary Engineer NA NA 218224.26 1.818535e+04 21388.920 2106.00 12 1.818535e+04 218224.26 NA NA NA NULL
2021 Community College (Manhattan) Stock Worker 36516.00000 1.095480e+05 218.38 7.279333e+01 31.370 0.00 3 3.137000e+01 94.11 1.097664e+05 1.096421e+05 124.27 NULL
2021 Community College (Manhattan) Student Aide 270.00000 2.700000e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.700000e+02 2.700000e+02 0.00 NULL
2021 Community College (Manhattan) Supervisor Of Stock Workers 61497.00000 6.149700e+04 187.12 1.871200e+02 187.120 0.00 1 1.871200e+02 187.12 6.168412e+04 6.168412e+04 0.00 NULL
2021 Community College (Manhattan) Supervisor Painter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Manhattan) Thermostat Repairer NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Manhattan) University Professor 162270.00000 1.622700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.622700e+05 1.622700e+05 0.00 NULL
2021 Community College (Manhattan) Vice President 177467.00000 8.873350e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.873350e+05 8.873350e+05 0.00 NULL
2021 Community College (Queensboro) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 101 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Queensboro) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Queensboro) Adjunct College Lab Tech 5498.96625 4.399173e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.399173e+04 4.399173e+04 0.00 NULL
2021 Community College (Queensboro) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 293 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Queensboro) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Queensboro) Administrator 155622.66667 4.668680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.668680e+05 4.668680e+05 0.00 NULL
2021 Community College (Queensboro) Administrator Supt Campus B/G 92541.09333 2.776233e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.776233e+05 2.776233e+05 0.00 NULL
2021 Community College (Queensboro) Assistant Administrator 137500.00000 2.750000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.750000e+05 2.750000e+05 0.00 NULL
2021 Community College (Queensboro) Assistant College Security Director 89368.00000 1.787360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.787360e+05 1.787360e+05 0.00 NULL
2021 Community College (Queensboro) Assistant Dean 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2021 Community College (Queensboro) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 150 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Queensboro) Assistant To Heo 59433.71429 2.912252e+06 0.00 0.000000e+00 0.000 0.00 49 0.000000e+00 0.00 2.912252e+06 2.912252e+06 0.00 NULL
2021 Community College (Queensboro) Associate Administrator 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2021 Community College (Queensboro) Associate Dean 142500.00000 1.425000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.425000e+05 1.425000e+05 0.00 NULL
2021 Community College (Queensboro) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 213 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Queensboro) Campus Peace Officer 47682.85294 1.621217e+06 67357.15 1.981093e+03 1019.570 1304.00 34 1.019570e+03 34665.38 1.688574e+06 1.655882e+06 32691.77 NULL
2021 Community College (Queensboro) Campus Public Safety Sergeant 59817.11111 5.383540e+05 35714.63 3.968292e+03 2067.600 674.50 9 2.067600e+03 18608.40 5.740686e+05 5.569624e+05 17106.23 NULL
2021 Community College (Queensboro) Campus Security Assistant 35450.71429 4.963100e+05 8011.29 5.722350e+02 307.785 207.50 14 3.077850e+02 4308.99 5.043213e+05 5.006190e+05 3702.30 NULL
2021 Community College (Queensboro) Carpenter NA NA 3866.26 1.288753e+03 1213.630 50.50 3 1.213630e+03 3640.89 NA NA NA NULL
2021 Community College (Queensboro) Cement Mason NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Queensboro) Chief Administrative Supt Campus B/G 142658.00000 1.426580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.426580e+05 1.426580e+05 0.00 NULL
2021 Community College (Queensboro) Chief College Lab Technician 92642.00000 3.705680e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.705680e+05 3.705680e+05 0.00 NULL
2021 Community College (Queensboro) City Laborer NA NA 34922.39 5.820398e+03 5829.455 618.75 6 5.820398e+03 34922.39 NA NA NA NULL
2021 Community College (Queensboro) Clip Instructor 59908.12500 4.792650e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.792650e+05 4.792650e+05 0.00 NULL
2021 Community College (Queensboro) College Accountant 61530.00000 1.230600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.230600e+05 1.230600e+05 0.00 NULL
2021 Community College (Queensboro) College Accounting Assistant 53739.00000 5.373900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.373900e+04 5.373900e+04 0.00 NULL
2021 Community College (Queensboro) College Assistant 6891.72575 2.756690e+06 0.00 0.000000e+00 0.000 0.00 400 0.000000e+00 0.00 2.756690e+06 2.756690e+06 0.00 NULL
2021 Community College (Queensboro) College Graph Designer 68820.00000 6.882000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.882000e+04 6.882000e+04 0.00 NULL
2021 Community College (Queensboro) College Lab Technician 58948.80000 8.842320e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 8.842320e+05 8.842320e+05 0.00 NULL
2021 Community College (Queensboro) College Print Shop Assistant 39353.00000 3.935300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.935300e+04 3.935300e+04 0.00 NULL
2021 Community College (Queensboro) College Print Shop Associate 51255.00000 5.125500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.125500e+04 5.125500e+04 0.00 NULL
2021 Community College (Queensboro) College Security Director 147704.00000 1.477040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.477040e+05 1.477040e+05 0.00 NULL
2021 Community College (Queensboro) College Security Specialist 63124.00000 1.262480e+05 7303.13 3.651565e+03 3651.565 136.00 2 3.651565e+03 7303.13 1.335511e+05 1.335511e+05 0.00 NULL
2021 Community College (Queensboro) Computer Systems Manager 131602.80000 6.580140e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.580140e+05 6.580140e+05 0.00 NULL
2021 Community College (Queensboro) Continuing Education Teacher 6571.44334 6.637158e+05 0.00 0.000000e+00 0.000 0.00 101 0.000000e+00 0.00 6.637158e+05 6.637158e+05 0.00 NULL
2021 Community College (Queensboro) Cuny Administrator Assistant 56623.20000 1.132464e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.132464e+06 1.132464e+06 0.00 NULL
2021 Community College (Queensboro) Cuny Broadcast Associate 61843.00000 6.184300e+04 397.73 3.977300e+02 397.730 11.75 1 3.977300e+02 397.73 6.224073e+04 6.224073e+04 0.00 NULL
2021 Community College (Queensboro) Cuny Custodial Assistant 33378.56274 1.401900e+06 2742.81 6.530500e+01 0.000 107.50 42 0.000000e+00 0.00 1.404642e+06 1.401900e+06 2742.81 NULL
2021 Community College (Queensboro) Cuny Office Assistant 41308.79310 2.395910e+06 0.00 0.000000e+00 0.000 0.00 58 0.000000e+00 0.00 2.395910e+06 2.395910e+06 0.00 NULL
2021 Community College (Queensboro) Cuny Start Instructor 63752.86667 9.562930e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 9.562930e+05 9.562930e+05 0.00 NULL
2021 Community College (Queensboro) Custodial Supervisor 38886.66667 2.333200e+05 404.93 6.748833e+01 0.000 14.50 6 0.000000e+00 0.00 2.337249e+05 2.333200e+05 404.93 NULL
2021 Community College (Queensboro) Dean 158500.00000 9.510000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.510000e+05 9.510000e+05 0.00 NULL
2021 Community College (Queensboro) Disability Accommodations Specialist 35525.50200 1.776275e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.776275e+05 1.776275e+05 0.00 NULL
2021 Community College (Queensboro) Electrician NA NA 3995.36 5.707657e+02 482.960 45.50 7 4.829600e+02 3380.72 NA NA NA NULL
2021 Community College (Queensboro) Facilities Coordinator 77880.00000 7.788000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.788000e+04 7.788000e+04 0.00 NULL
2021 Community College (Queensboro) High Pressure Plant Tender NA NA 60428.98 6.042898e+03 4006.025 1035.00 10 4.006025e+03 40060.25 NA NA NA NULL
2021 Community College (Queensboro) Higher Education Assistant 76281.12245 7.475550e+06 0.00 0.000000e+00 0.000 0.00 98 0.000000e+00 0.00 7.475550e+06 7.475550e+06 0.00 NULL
2021 Community College (Queensboro) Higher Education Associate 100816.56250 4.839195e+06 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 4.839195e+06 4.839195e+06 0.00 NULL
2021 Community College (Queensboro) Higher Education Officer 123447.50000 5.678585e+06 0.00 0.000000e+00 0.000 0.00 46 0.000000e+00 0.00 5.678585e+06 5.678585e+06 0.00 NULL
2021 Community College (Queensboro) Higher Education Officer/Asst Administrator 141346.00000 1.413460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.413460e+05 1.413460e+05 0.00 NULL
2021 Community College (Queensboro) Instructor 74976.00000 7.497600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.497600e+04 7.497600e+04 0.00 NULL
2021 Community College (Queensboro) It Assistant 60588.00000 1.817640e+05 5728.71 1.909570e+03 1154.050 141.50 3 1.154050e+03 3462.15 1.874927e+05 1.852261e+05 2266.56 NULL
2021 Community College (Queensboro) It Associate 75038.66667 4.502320e+05 2922.65 4.871083e+02 0.000 63.50 6 0.000000e+00 0.00 4.531547e+05 4.502320e+05 2922.65 NULL
2021 Community College (Queensboro) It Senior Associate 105284.72727 1.158132e+06 10114.50 9.195000e+02 0.000 140.25 11 0.000000e+00 0.00 1.168246e+06 1.158132e+06 10114.50 NULL
2021 Community College (Queensboro) It Support Assistant 26465.92667 2.381933e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 2.381933e+05 2.381933e+05 0.00 NULL
2021 Community College (Queensboro) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 115 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Queensboro) Lecturer/Doctoral Schedule 81937.77778 7.374400e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.374400e+05 7.374400e+05 0.00 NULL
2021 Community College (Queensboro) Locksmith NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Queensboro) Mail/Message Services Worker 46548.50000 9.309700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.309700e+04 9.309700e+04 0.00 NULL
2021 Community College (Queensboro) Maintenance Worker NA NA 6451.44 1.612860e+03 1130.805 56.50 4 1.130805e+03 4523.22 NA NA NA NULL
2021 Community College (Queensboro) Motor Vehicle Operator 48588.00000 4.858800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.858800e+04 4.858800e+04 0.00 NULL
2021 Community College (Queensboro) Non-Teaching Adjunct I 2847.22911 3.843759e+05 0.00 0.000000e+00 0.000 0.00 135 0.000000e+00 0.00 3.843759e+05 3.843759e+05 0.00 NULL
2021 Community College (Queensboro) Non-Teaching Adjunct Iii 448.20773 3.361558e+04 0.00 0.000000e+00 0.000 0.00 75 0.000000e+00 0.00 3.361558e+04 3.361558e+04 0.00 NULL
2021 Community College (Queensboro) Non-Teaching Adjunct Iv 80.39706 2.733500e+03 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 2.733500e+03 2.733500e+03 0.00 NULL
2021 Community College (Queensboro) Non-Teaching Adjunct V 52.53333 4.728000e+02 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.728000e+02 4.728000e+02 0.00 NULL
2021 Community College (Queensboro) Oiler NA NA 27745.30 1.387265e+04 13872.650 267.00 2 1.387265e+04 27745.30 NA NA NA NULL
2021 Community College (Queensboro) Painter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Queensboro) Plumber NA NA 2428.34 1.214170e+03 1214.170 23.00 2 1.214170e+03 2428.34 NA NA NA NULL
2021 Community College (Queensboro) President 270000.00000 2.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.700000e+05 2.700000e+05 0.00 NULL
2021 Community College (Queensboro) Professor NA NA 0.00 0.000000e+00 0.000 0.00 118 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Queensboro) Project Manager 95069.00000 9.506900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.506900e+04 9.506900e+04 0.00 NULL
2021 Community College (Queensboro) Senior College Lab Tech 72661.65385 1.889203e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 1.889203e+06 1.889203e+06 0.00 NULL
2021 Community College (Queensboro) Senior Custodial Supervisor 42039.50000 8.407900e+04 508.17 2.540850e+02 254.085 16.50 2 2.540850e+02 508.17 8.458717e+04 8.458717e+04 0.00 NULL
2021 Community College (Queensboro) Senior Stationary Engineer NA NA 8425.34 8.425340e+03 8425.340 68.00 1 8.425340e+03 8425.34 NA NA NA NULL
2021 Community College (Queensboro) Senior Vice President 198750.00000 3.975000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.975000e+05 3.975000e+05 0.00 NULL
2021 Community College (Queensboro) Sr College Laboratory Tech 720.46000 7.204600e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.204600e+02 7.204600e+02 0.00 NULL
2021 Community College (Queensboro) Staff Nurse 55120.99167 1.653630e+05 37811.82 1.260394e+04 0.000 550.00 3 0.000000e+00 0.00 2.031748e+05 1.653630e+05 37811.82 NULL
2021 Community College (Queensboro) Stationary Engineer NA NA 160153.84 2.669231e+04 31367.395 1460.00 6 2.669231e+04 160153.84 NA NA NA NULL
2021 Community College (Queensboro) Stock Worker 36516.00000 3.651600e+04 298.93 2.989300e+02 298.930 13.00 1 2.989300e+02 298.93 3.681493e+04 3.681493e+04 0.00 NULL
2021 Community College (Queensboro) Supervisor Of Stock Workers 61507.00000 6.150700e+04 515.89 5.158900e+02 515.890 13.00 1 5.158900e+02 515.89 6.202289e+04 6.202289e+04 0.00 NULL
2021 Community College (Queensboro) Supervisor Painter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Queensboro) Thermostat Repairer NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Community College (Queensboro) Vice President 179273.50000 1.075641e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.075641e+06 1.075641e+06 0.00 NULL
2021 Community College (Queensboro) NA 65587.00000 1.311740e+05 6607.69 3.303845e+03 3303.845 140.00 2 3.303845e+03 6607.69 1.377817e+05 1.377817e+05 0.00 NULL
2021 Conflicts Of Interest Board Administrative Claim Examiner 111100.00000 1.111000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.111000e+05 1.111000e+05 0.00 NULL
2021 Conflicts Of Interest Board Administrative Staff Analyst 150393.00000 1.503930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503930e+05 1.503930e+05 0.00 NULL
2021 Conflicts Of Interest Board Agency Attorney 80626.40000 4.031320e+05 191.44 3.828800e+01 0.000 4.00 5 0.000000e+00 0.00 4.033234e+05 4.031320e+05 191.44 NULL
2021 Conflicts Of Interest Board Agency Chief Contracting Officer 130145.00000 1.301450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.301450e+05 1.301450e+05 0.00 NULL
2021 Conflicts Of Interest Board Community Associate 52893.75000 2.115750e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.115750e+05 2.115750e+05 0.00 NULL
2021 Conflicts Of Interest Board Community Coordinator 65281.00000 6.528100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.528100e+04 6.528100e+04 0.00 NULL
2021 Conflicts Of Interest Board Computer Operations Manager 127082.00000 1.270820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.270820e+05 1.270820e+05 0.00 NULL
2021 Conflicts Of Interest Board Computer Specialist 97389.00000 9.738900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.738900e+04 9.738900e+04 0.00 NULL
2021 Conflicts Of Interest Board Confidential Investigator 49470.00000 1.484100e+05 211.90 7.063333e+01 102.530 7.75 3 7.063333e+01 211.90 1.486219e+05 1.486219e+05 0.00 NULL
2021 Conflicts Of Interest Board Counsel 223735.00000 2.237350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.237350e+05 2.237350e+05 0.00 NULL
2021 Conflicts Of Interest Board Executive Agency Counsel 149015.50000 5.960620e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.960620e+05 5.960620e+05 0.00 NULL
2021 Conflicts Of Interest Board Principal Administrative Associate - Non Supvr 58081.00000 5.808100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.808100e+04 5.808100e+04 0.00 NULL
2021 Conflicts Of Interest Board Secretary To Conflicts Of Interest Board 60157.00000 6.015700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.015700e+04 6.015700e+04 0.00 NULL
2021 Consumer Affairs Adm Manager-Non-Mgrl 74339.50000 1.486790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.486790e+05 1.486790e+05 0.00 NULL
2021 Consumer Affairs Admin Community Relations Specialist 58926.00000 5.892600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.892600e+04 5.892600e+04 0.00 NULL
2021 Consumer Affairs Admin Contract Specialist 120285.00000 2.405700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.405700e+05 2.405700e+05 0.00 NULL
2021 Consumer Affairs Administrative Business Promotion Coordinator 96716.00000 9.671600e+04 52.94 5.294000e+01 52.940 1.00 1 5.294000e+01 52.94 9.676894e+04 9.676894e+04 0.00 NULL
2021 Consumer Affairs Administrative Contract Specialist 76062.50000 1.521250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.521250e+05 1.521250e+05 0.00 NULL
2021 Consumer Affairs Administrative Public Information Specialist 108685.00000 1.086850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.086850e+05 1.086850e+05 0.00 NULL
2021 Consumer Affairs Administrative Staff Analyst 121052.07692 1.573677e+06 9462.08 7.278523e+02 0.000 148.75 13 0.000000e+00 0.00 1.583139e+06 1.573677e+06 9462.08 NULL
2021 Consumer Affairs Agency Attorney 83067.12121 2.741215e+06 950.94 2.881636e+01 0.000 20.25 33 0.000000e+00 0.00 2.742166e+06 2.741215e+06 950.94 NULL
2021 Consumer Affairs Assistant To The Commissioner 93226.00000 1.864520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.864520e+05 1.864520e+05 0.00 NULL
2021 Consumer Affairs Associate Inspector 78454.22222 1.412176e+06 5549.59 3.083106e+02 0.000 106.50 18 0.000000e+00 0.00 1.417726e+06 1.412176e+06 5549.59 NULL
2021 Consumer Affairs Associate Staff Analyst 75591.00000 7.559100e+04 12249.53 1.224953e+04 12249.530 211.00 1 1.224953e+04 12249.53 8.784053e+04 8.784053e+04 0.00 NULL
2021 Consumer Affairs Bookkeeper 45118.00000 4.511800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.511800e+04 4.511800e+04 0.00 NULL
2021 Consumer Affairs Business Promotion Coordinator 85813.60000 4.290680e+05 497.23 9.944600e+01 0.000 12.25 5 0.000000e+00 0.00 4.295652e+05 4.290680e+05 497.23 NULL
2021 Consumer Affairs Certified It Administrator 94244.00000 9.424400e+04 5807.49 5.807490e+03 5807.490 93.00 1 5.807490e+03 5807.49 1.000515e+05 1.000515e+05 0.00 NULL
2021 Consumer Affairs Certified It Developer 115319.85714 8.072390e+05 13104.81 1.872116e+03 0.000 148.50 7 0.000000e+00 0.00 8.203438e+05 8.072390e+05 13104.81 NULL
2021 Consumer Affairs City Research Scientist 92217.12500 7.377370e+05 2855.31 3.569137e+02 0.000 49.75 8 0.000000e+00 0.00 7.405923e+05 7.377370e+05 2855.31 NULL
2021 Consumer Affairs Clerical Associate 46367.17857 2.596562e+06 10.54 1.882143e-01 0.000 0.00 56 0.000000e+00 0.00 2.596573e+06 2.596562e+06 10.54 NULL
2021 Consumer Affairs College Aide 11540.81250 1.154081e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.154081e+04 1.154081e+04 0.00 NULL
2021 Consumer Affairs Commissioner 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2021 Consumer Affairs Community Assistant 41192.50000 1.647700e+05 11.69 2.922500e+00 0.000 0.00 4 0.000000e+00 0.00 1.647817e+05 1.647700e+05 11.69 NULL
2021 Consumer Affairs Community Associate 49285.49275 3.400699e+06 6810.12 9.869739e+01 0.000 185.50 69 0.000000e+00 0.00 3.407509e+06 3.400699e+06 6810.12 NULL
2021 Consumer Affairs Community Coordinator 69850.28571 2.933712e+06 608.50 1.448810e+01 0.000 14.25 42 0.000000e+00 0.00 2.934320e+06 2.933712e+06 608.50 NULL
2021 Consumer Affairs Computer Associate 70292.71429 4.920490e+05 11596.74 1.656677e+03 1606.670 218.75 7 1.606670e+03 11246.69 5.036457e+05 5.032957e+05 350.05 NULL
2021 Consumer Affairs Computer Specialist 112890.50000 6.773430e+05 17410.53 2.901755e+03 0.000 197.50 6 0.000000e+00 0.00 6.947535e+05 6.773430e+05 17410.53 NULL
2021 Consumer Affairs Computer Systems Manager 119710.40000 1.197104e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.197104e+06 1.197104e+06 0.00 NULL
2021 Consumer Affairs Confidential Examiner 55000.00000 5.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.500000e+04 5.500000e+04 0.00 NULL
2021 Consumer Affairs Consumer Advocate 94478.50000 1.889570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.889570e+05 1.889570e+05 0.00 NULL
2021 Consumer Affairs Counsel 193743.00000 1.937430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.937430e+05 1.937430e+05 0.00 NULL
2021 Consumer Affairs Customer Information Representative Ma L 1549 53505.90000 5.350590e+05 726.52 7.265200e+01 0.000 16.75 10 0.000000e+00 0.00 5.357855e+05 5.350590e+05 726.52 NULL
2021 Consumer Affairs Deputy Commissioner 204945.00000 2.049450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.049450e+05 2.049450e+05 0.00 NULL
2021 Consumer Affairs Director Of Bureau Of Consumer Services 95553.50000 1.911070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.911070e+05 1.911070e+05 0.00 NULL
2021 Consumer Affairs Director Of Consumer Information 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2021 Consumer Affairs Economist 45427.00000 4.542700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.542700e+04 4.542700e+04 0.00 NULL
2021 Consumer Affairs Executive Agency Counsel 135246.38462 1.758203e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.758203e+06 1.758203e+06 0.00 NULL
2021 Consumer Affairs Executive Assistant To The Commissioner 128909.00000 1.289090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.289090e+05 1.289090e+05 0.00 NULL
2021 Consumer Affairs General Inspector 82398.00000 1.647960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.647960e+05 1.647960e+05 0.00 NULL
2021 Consumer Affairs Graphic Artist 65285.50000 1.305710e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.305710e+05 1.305710e+05 0.00 NULL
2021 Consumer Affairs Inspector 53759.91803 3.279355e+06 16929.55 2.775336e+02 0.000 425.50 61 0.000000e+00 0.00 3.296285e+06 3.279355e+06 16929.55 NULL
2021 Consumer Affairs Labor Relations Analyst 58127.00000 5.812700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.812700e+04 5.812700e+04 0.00 NULL
2021 Consumer Affairs Principal Administrative Associate - Non Supvr 69656.07692 9.055290e+05 38.81 2.985385e+00 0.000 1.00 13 0.000000e+00 0.00 9.055678e+05 9.055290e+05 38.81 NULL
2021 Consumer Affairs Project Manager 72778.00000 7.277800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.277800e+04 7.277800e+04 0.00 NULL
2021 Consumer Affairs Public Records Aide 44083.00000 4.408300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.408300e+04 4.408300e+04 0.00 NULL
2021 Consumer Affairs Research Assistant 53007.06667 7.951060e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 7.951060e+05 7.951060e+05 0.00 NULL
2021 Consumer Affairs Secretary 43933.00000 8.786600e+04 3.17 1.585000e+00 1.585 0.00 2 1.585000e+00 3.17 8.786917e+04 8.786917e+04 0.00 NULL
2021 Consumer Affairs Secretary To The Commissioner 73934.00000 7.393400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.393400e+04 7.393400e+04 0.00 NULL
2021 Consumer Affairs Staff Analyst 61582.50000 1.231650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.231650e+05 1.231650e+05 0.00 NULL
2021 Cultural Affairs Adm Manager-Non-Mgrl 73975.00000 7.397500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.397500e+04 7.397500e+04 0.00 NULL
2021 Cultural Affairs Admin Contract Specialist 82000.00000 8.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.200000e+04 8.200000e+04 0.00 NULL
2021 Cultural Affairs Administrative Community Relations Specialist 140429.00000 1.404290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.404290e+05 1.404290e+05 0.00 NULL
2021 Cultural Affairs Administrative Project Manager 157598.00000 1.575980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.575980e+05 1.575980e+05 0.00 NULL
2021 Cultural Affairs Administrative Public Information Specialist 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2021 Cultural Affairs Administrative Staff Analyst 101279.50000 2.025590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.025590e+05 2.025590e+05 0.00 NULL
2021 Cultural Affairs Agency Attorney 95265.00000 2.857950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.857950e+05 2.857950e+05 0.00 NULL
2021 Cultural Affairs Agency Chief Contracting Officer 108818.00000 1.088180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.088180e+05 1.088180e+05 0.00 NULL
2021 Cultural Affairs Arts Program Specialist 54933.77935 1.098676e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.098676e+05 1.098676e+05 0.00 NULL
2021 Cultural Affairs Assistant Commissioner 146747.80000 7.337390e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.337390e+05 7.337390e+05 0.00 NULL
2021 Cultural Affairs Associate Arts Programs Specialist 64358.96856 1.094102e+06 38.20 2.247059e+00 0.000 0.00 17 0.000000e+00 0.00 1.094141e+06 1.094102e+06 38.20 NULL
2021 Cultural Affairs City Laborer 72790.00000 7.279000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.279000e+04 7.279000e+04 0.00 NULL
2021 Cultural Affairs City Research Scientist 128750.00000 1.287500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287500e+05 1.287500e+05 0.00 NULL
2021 Cultural Affairs Commissioner Of Cultural Affairs 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2021 Cultural Affairs Community Assistant 40037.45000 4.003745e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.003745e+04 4.003745e+04 0.00 NULL
2021 Cultural Affairs Community Associate 48029.69814 7.204455e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 7.204455e+05 7.204455e+05 0.00 NULL
2021 Cultural Affairs Community Coordinator 77218.00000 6.177440e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.177440e+05 6.177440e+05 0.00 NULL
2021 Cultural Affairs Computer Associate 99495.00000 9.949500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.949500e+04 9.949500e+04 0.00 NULL
2021 Cultural Affairs Computer Systems Manager 128147.00000 1.281470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.281470e+05 1.281470e+05 0.00 NULL
2021 Cultural Affairs Deputy Commissioner 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2021 Cultural Affairs Executive Agency Counsel 129935.00000 2.598700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.598700e+05 2.598700e+05 0.00 NULL
2021 Cultural Affairs Executive Director Of Materials For The Arts 113770.00000 1.137700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.137700e+05 1.137700e+05 0.00 NULL
2021 Cultural Affairs Secretary To The Commissioner 62211.00000 6.221100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221100e+04 6.221100e+04 0.00 NULL
2021 Cultural Affairs Staff Analyst 73914.50000 1.478290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.478290e+05 1.478290e+05 0.00 NULL
2021 Cuny Central Office Administrator Supt Campus B/G 29120.00000 2.912000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.912000e+04 2.912000e+04 0.00 NULL
2021 Cuny Central Office Assistant To Heo 57822.91304 1.329927e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 1.329927e+06 1.329927e+06 0.00 NULL
2021 Cuny Central Office Campus Peace Officer 50412.75000 2.016510e+05 2538.88 6.347200e+02 585.020 26.00 4 5.850200e+02 2340.08 2.041899e+05 2.039911e+05 198.80 NULL
2021 Cuny Central Office Campus Public Safety Sergeant 59934.00000 5.993400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.993400e+04 5.993400e+04 0.00 NULL
2021 Cuny Central Office College Accounting Assistant 50270.00000 5.027000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.027000e+04 5.027000e+04 0.00 NULL
2021 Cuny Central Office College Assistant 10646.66000 5.323330e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.323330e+04 5.323330e+04 0.00 NULL
2021 Cuny Central Office Higher Education Assistant 75547.40000 1.510948e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.510948e+06 1.510948e+06 0.00 NULL
2021 Cuny Central Office Higher Education Associate 90798.92593 2.451571e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 2.451571e+06 2.451571e+06 0.00 NULL
2021 Cuny Central Office Higher Education Officer 111085.81818 1.221944e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.221944e+06 1.221944e+06 0.00 NULL
2021 Cuny Central Office It Associate 75196.20000 3.759810e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.759810e+05 3.759810e+05 0.00 NULL
2021 Cuny Central Office It Senior Associate 99599.00000 9.959900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.959900e+04 9.959900e+04 0.00 NULL
2021 Cuny Central Office Non-Teaching Adjunct I 9078.35167 8.170516e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.170516e+04 8.170516e+04 0.00 NULL
2021 Cuny Central Office Non-Teaching Adjunct Ii 4170.00000 4.170000e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.170000e+03 4.170000e+03 0.00 NULL
2021 Cuny Central Office Non-Teaching Adjunct Iii 26997.76000 2.699776e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.699776e+04 2.699776e+04 0.00 NULL
2021 Cuny Central Office Non-Teaching Adjunct Iv 12338.31000 4.935324e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.935324e+04 4.935324e+04 0.00 NULL
2021 Cuny Central Office Non-Teaching Adjunct V 30696.64000 3.069664e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.069664e+04 3.069664e+04 0.00 NULL
2021 Cuny Central Office University Assistant Administrator 137000.00000 1.370000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.370000e+05 1.370000e+05 0.00 NULL
2021 Cuny Central Office University Assistant Dean 128408.00000 2.568160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.568160e+05 2.568160e+05 0.00 NULL
2021 Cuny Central Office University Associate Dean 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2021 Cuny Central Office University Dean 178000.00000 1.780000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.780000e+05 1.780000e+05 0.00 NULL
2021 Cuny Central Office University Payroll Analyst 55318.00000 2.212720e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.212720e+05 2.212720e+05 0.00 NULL
2021 Department For The Aging Accountant 72596.66667 2.177900e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.177900e+05 2.177900e+05 0.00 NULL
2021 Department For The Aging Adm Manager-Non-Mgrl 113505.50000 2.270110e+05 2164.35 1.082175e+03 1082.175 22.75 2 1.082175e+03 2164.35 2.291754e+05 2.291754e+05 0.00 NULL
2021 Department For The Aging Admin Community Relations Specialist 78535.50000 1.570710e+05 4054.94 2.027470e+03 2027.470 62.50 2 2.027470e+03 4054.94 1.611259e+05 1.611259e+05 0.00 NULL
2021 Department For The Aging Admin Contract Specialist 127000.00000 1.270000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.270000e+05 1.270000e+05 0.00 NULL
2021 Department For The Aging Administrative Program Officer 106710.00978 4.908660e+06 1287.06 2.797957e+01 0.000 22.00 46 0.000000e+00 0.00 4.909948e+06 4.908660e+06 1287.06 NULL
2021 Department For The Aging Administrative Accountant 120054.00000 1.200540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200540e+05 1.200540e+05 0.00 NULL
2021 Department For The Aging Administrative Community Relations Specialist 133894.00000 1.338940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.338940e+05 1.338940e+05 0.00 NULL
2021 Department For The Aging Administrative Director Of Social Services 145646.50000 5.825860e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.825860e+05 5.825860e+05 0.00 NULL
2021 Department For The Aging Administrative Manager 133000.00000 1.330000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.330000e+05 1.330000e+05 0.00 NULL
2021 Department For The Aging Administrative Procurement Analyst-Non-Mgrl 80180.75000 3.207230e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.207230e+05 3.207230e+05 0.00 NULL
2021 Department For The Aging Administrative Project Manager 127949.00000 1.279490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.279490e+05 1.279490e+05 0.00 NULL
2021 Department For The Aging Administrative Public Information Specialist 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2021 Department For The Aging Administrative Staff Analyst 120848.69565 2.779520e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 2.779520e+06 2.779520e+06 0.00 NULL
2021 Department For The Aging Administrative Supervisor Of Building Maintenance 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2021 Department For The Aging Agency Chief Contracting Officer 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2021 Department For The Aging Architect 77921.00000 7.792100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.792100e+04 7.792100e+04 0.00 NULL
2021 Department For The Aging Assistant Architect 72332.50000 1.446650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.446650e+05 1.446650e+05 0.00 NULL
2021 Department For The Aging Associate Project Manager 74650.00000 7.465000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.465000e+04 7.465000e+04 0.00 NULL
2021 Department For The Aging Associate Staff Analyst 86111.66667 7.750050e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.750050e+05 7.750050e+05 0.00 NULL
2021 Department For The Aging Bookkeeper 63632.50000 1.272650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.272650e+05 1.272650e+05 0.00 NULL
2021 Department For The Aging Certified It Administrator 98122.00000 1.962440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.962440e+05 1.962440e+05 0.00 NULL
2021 Department For The Aging Certified It Developer 106023.00000 1.060230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.060230e+05 1.060230e+05 0.00 NULL
2021 Department For The Aging City Custodial Assistant 42875.00000 4.287500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.287500e+04 4.287500e+04 0.00 NULL
2021 Department For The Aging City Research Scientist 89867.00000 1.797340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.797340e+05 1.797340e+05 0.00 NULL
2021 Department For The Aging Clerical Associate 41626.51259 2.913856e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.913856e+05 2.913856e+05 0.00 NULL
2021 Department For The Aging College Aide 12645.68300 6.322842e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.322842e+04 6.322842e+04 0.00 NULL
2021 Department For The Aging Commissioner 241166.00000 2.411660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411660e+05 2.411660e+05 0.00 NULL
2021 Department For The Aging Community Assistant 21129.32283 6.338797e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.338797e+04 6.338797e+04 0.00 NULL
2021 Department For The Aging Community Associate 48391.16152 1.838864e+06 7778.32 2.046926e+02 0.000 215.50 38 0.000000e+00 0.00 1.846642e+06 1.838864e+06 7778.32 NULL
2021 Department For The Aging Community Coordinator 67663.97860 4.939470e+06 894.00 1.224658e+01 0.000 17.50 73 0.000000e+00 0.00 4.940364e+06 4.939470e+06 894.00 NULL
2021 Department For The Aging Community Service Aide 14031.82377 3.423765e+06 0.00 0.000000e+00 0.000 0.00 244 0.000000e+00 0.00 3.423765e+06 3.423765e+06 0.00 NULL
2021 Department For The Aging Computer Associate 74721.95800 3.736098e+05 2868.11 5.736220e+02 0.000 51.00 5 0.000000e+00 0.00 3.764779e+05 3.736098e+05 2868.11 NULL
2021 Department For The Aging Computer Operations Manager 122129.07000 1.221291e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.221291e+05 1.221291e+05 0.00 NULL
2021 Department For The Aging Computer Specialist 100941.97778 9.084778e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.084778e+05 9.084778e+05 0.00 NULL
2021 Department For The Aging Computer Systems Manager 168000.00000 1.680000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.680000e+05 1.680000e+05 0.00 NULL
2021 Department For The Aging Counsel 184198.00000 1.841980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.841980e+05 1.841980e+05 0.00 NULL
2021 Department For The Aging Deputy Commissioner 192413.00000 1.924130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.924130e+05 1.924130e+05 0.00 NULL
2021 Department For The Aging Director Of Community Programs 146806.00000 1.468060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.468060e+05 1.468060e+05 0.00 NULL
2021 Department For The Aging Director Of Direct Service Programs 133478.00000 1.334780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.334780e+05 1.334780e+05 0.00 NULL
2021 Department For The Aging Director Of Research Planning And Policy Analysis 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2021 Department For The Aging Executive Agency Counsel 122500.00000 2.450000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.450000e+05 2.450000e+05 0.00 NULL
2021 Department For The Aging Foster Grandparent 3057.77538 8.928704e+05 0.00 0.000000e+00 0.000 0.00 292 0.000000e+00 0.00 8.928704e+05 8.928704e+05 0.00 NULL
2021 Department For The Aging Housing Development Specialist 65640.00000 6.564000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.564000e+04 6.564000e+04 0.00 NULL
2021 Department For The Aging Management Auditor 75842.60000 7.584260e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.584260e+05 7.584260e+05 0.00 NULL
2021 Department For The Aging Nutrition Consultant 69792.91667 8.375150e+05 19969.13 1.664094e+03 0.000 387.25 12 0.000000e+00 0.00 8.574841e+05 8.375150e+05 19969.13 NULL
2021 Department For The Aging Principal Administrative Associate - Non Supvr 65400.80952 1.373417e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.373417e+06 1.373417e+06 0.00 NULL
2021 Department For The Aging Principal Nutrition Consultant 84480.00000 1.689600e+05 11038.55 5.519275e+03 5519.275 181.00 2 5.519275e+03 11038.55 1.799985e+05 1.799985e+05 0.00 NULL
2021 Department For The Aging Procurement Analyst 64612.00000 6.461200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.461200e+04 6.461200e+04 0.00 NULL
2021 Department For The Aging Program Officer 70069.34575 2.802774e+06 2798.53 6.996325e+01 0.000 59.00 40 0.000000e+00 0.00 2.805572e+06 2.802774e+06 2798.53 NULL
2021 Department For The Aging Secretary 50682.66667 1.520480e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.520480e+05 1.520480e+05 0.00 NULL
2021 Department For The Aging Supervisor Ii 85293.50000 1.705870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.705870e+05 1.705870e+05 0.00 NULL
2021 Department For The Aging Supervisor Iii 80356.22600 4.017811e+05 21814.36 4.362872e+03 0.000 333.50 5 0.000000e+00 0.00 4.235955e+05 4.017811e+05 21814.36 NULL
2021 Department Of Buildings Adm Manager-Non-Mgrl 85442.61702 4.015803e+06 22333.55 4.751819e+02 0.000 372.25 47 0.000000e+00 0.00 4.038137e+06 4.015803e+06 22333.55 NULL
2021 Department Of Buildings Admin Community Relations Specialist 82973.66667 9.956840e+05 3112.51 2.593758e+02 0.000 69.50 12 0.000000e+00 0.00 9.987965e+05 9.956840e+05 3112.51 NULL
2021 Department Of Buildings Admin Inspector 105902.56757 3.918395e+06 581948.97 1.572835e+04 8444.780 8841.00 37 8.444780e+03 312456.86 4.500344e+06 4.230852e+06 269492.11 NULL
2021 Department Of Buildings Administrative Architect 132879.94444 4.783678e+06 32788.38 9.107883e+02 0.000 422.00 36 0.000000e+00 0.00 4.816466e+06 4.783678e+06 32788.38 NULL
2021 Department Of Buildings Administrative Borough Superintendent 134904.75000 5.396190e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.396190e+05 5.396190e+05 0.00 NULL
2021 Department Of Buildings Administrative City Planner 108164.00000 3.244920e+05 9642.64 3.214213e+03 0.000 130.00 3 0.000000e+00 0.00 3.341346e+05 3.244920e+05 9642.64 NULL
2021 Department Of Buildings Administrative Engineer 134163.62222 6.037363e+06 28818.59 6.404131e+02 0.000 512.50 45 0.000000e+00 0.00 6.066182e+06 6.037363e+06 28818.59 NULL
2021 Department Of Buildings Administrative Inspector 138809.42857 1.943332e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.943332e+06 1.943332e+06 0.00 NULL
2021 Department Of Buildings Administrative Investigator 110804.50000 2.216090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.216090e+05 2.216090e+05 0.00 NULL
2021 Department Of Buildings Administrative Manager 141420.00000 5.656800e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.656800e+05 5.656800e+05 0.00 NULL
2021 Department Of Buildings Administrative Procurement Analyst-Non-Mgrl 82679.00000 1.653580e+05 2780.85 1.390425e+03 1390.425 55.25 2 1.390425e+03 2780.85 1.681389e+05 1.681389e+05 0.00 NULL
2021 Department Of Buildings Administrative Project Manager 139755.75000 5.590230e+05 19112.64 4.778160e+03 0.000 194.75 4 0.000000e+00 0.00 5.781356e+05 5.590230e+05 19112.64 NULL
2021 Department Of Buildings Administrative Public Information Specialist 154046.00000 3.080920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.080920e+05 3.080920e+05 0.00 NULL
2021 Department Of Buildings Administrative Staff Analyst 112282.23913 5.164983e+06 129269.86 2.810214e+03 0.000 1564.25 46 0.000000e+00 0.00 5.294253e+06 5.164983e+06 129269.86 NULL
2021 Department Of Buildings Agency Attorney 82661.70000 4.133085e+06 13492.62 2.698524e+02 0.000 240.25 50 0.000000e+00 0.00 4.146578e+06 4.133085e+06 13492.62 NULL
2021 Department Of Buildings Agency Attorney Interne 63840.23077 8.299230e+05 1613.51 1.241162e+02 0.000 46.25 13 0.000000e+00 0.00 8.315365e+05 8.299230e+05 1613.51 NULL
2021 Department Of Buildings Agency Chief Contracting Officer 138694.00000 1.386940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.386940e+05 1.386940e+05 0.00 NULL
2021 Department Of Buildings Architect 96763.50000 1.354689e+06 2944.12 2.102943e+02 0.000 43.00 14 0.000000e+00 0.00 1.357633e+06 1.354689e+06 2944.12 NULL
2021 Department Of Buildings Assistant Architect 81155.00000 1.217325e+06 13111.67 8.741113e+02 0.080 213.50 15 8.000000e-02 1.20 1.230437e+06 1.217326e+06 13110.47 NULL
2021 Department Of Buildings Assistant Civil Engineer 71427.64286 9.999870e+05 16.60 1.185714e+00 0.040 0.00 14 4.000000e-02 0.56 1.000004e+06 9.999876e+05 16.04 NULL
2021 Department Of Buildings Assistant Commissioner 179028.75000 1.432230e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.432230e+06 1.432230e+06 0.00 NULL
2021 Department Of Buildings Assistant Electrical Engineer 77018.75000 3.080750e+05 73.47 1.836750e+01 0.000 0.00 4 0.000000e+00 0.00 3.081485e+05 3.080750e+05 73.47 NULL
2021 Department Of Buildings Assistant Mechanical Engineer 72093.00000 5.046510e+05 6094.34 8.706200e+02 0.000 111.00 7 0.000000e+00 0.00 5.107453e+05 5.046510e+05 6094.34 NULL
2021 Department Of Buildings Assistant Plan Examiner 72347.49721 1.295020e+07 127773.50 7.138184e+02 0.110 2495.25 179 1.100000e-01 19.69 1.307798e+07 1.295022e+07 127753.81 NULL
2021 Department Of Buildings Associate Inspector 77000.20000 1.155003e+06 223151.82 1.487679e+04 4821.410 3957.75 15 4.821410e+03 72321.15 1.378155e+06 1.227324e+06 150830.67 NULL
2021 Department Of Buildings Associate Investigator 72968.00000 2.918720e+05 21524.50 5.381125e+03 4584.255 484.00 4 4.584255e+03 18337.02 3.133965e+05 3.102090e+05 3187.48 NULL
2021 Department Of Buildings Associate Labor Relations Analyst 98057.50000 1.961150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.961150e+05 1.961150e+05 0.00 NULL
2021 Department Of Buildings Associate Project Manager 92226.50000 3.689060e+05 305.97 7.649250e+01 4.975 5.00 4 4.975000e+00 19.90 3.692120e+05 3.689259e+05 286.07 NULL
2021 Department Of Buildings Associate Public Information Specialist 75197.00000 7.519700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.519700e+04 7.519700e+04 0.00 NULL
2021 Department Of Buildings Associate Staff Analyst 78872.93333 1.183094e+06 10035.69 6.690460e+02 0.000 192.50 15 0.000000e+00 0.00 1.193130e+06 1.183094e+06 10035.69 NULL
2021 Department Of Buildings Borough Commissioner 183971.00000 3.679420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.679420e+05 3.679420e+05 0.00 NULL
2021 Department Of Buildings Certified It Administrator 106632.00000 3.198960e+05 197420.66 6.580689e+04 77483.260 2217.75 3 6.580689e+04 197420.66 5.173167e+05 5.173167e+05 0.00 NULL
2021 Department Of Buildings Chief Of Staff 153750.00000 3.075000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.075000e+05 3.075000e+05 0.00 NULL
2021 Department Of Buildings Chief Strategy Officer 143442.50000 2.868850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.868850e+05 2.868850e+05 0.00 NULL
2021 Department Of Buildings City Planner 99891.00000 9.989100e+04 125.41 1.254100e+02 125.410 2.00 1 1.254100e+02 125.41 1.000164e+05 1.000164e+05 0.00 NULL
2021 Department Of Buildings City Research Scientist 82892.40000 4.144620e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.144620e+05 4.144620e+05 0.00 NULL
2021 Department Of Buildings Civil Engineer 98975.84000 2.474396e+06 46905.01 1.876200e+03 2.760 986.75 25 2.760000e+00 69.00 2.521301e+06 2.474465e+06 46836.01 NULL
2021 Department Of Buildings Clerical Associate 44134.30205 9.047532e+06 65128.16 3.176983e+02 0.000 2023.92 205 0.000000e+00 0.00 9.112660e+06 9.047532e+06 65128.16 NULL
2021 Department Of Buildings College Aide 14736.29081 1.002068e+06 0.00 0.000000e+00 0.000 0.00 68 0.000000e+00 0.00 1.002068e+06 1.002068e+06 0.00 NULL
2021 Department Of Buildings College Aide - Assignment Levels Ii And Iii 18696.94200 1.869694e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.869694e+04 1.869694e+04 0.00 NULL
2021 Department Of Buildings Commissioner Of Buildings 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2021 Department Of Buildings Community Assistant 41438.40000 2.071920e+05 3.81 7.620000e-01 0.110 0.00 5 1.100000e-01 0.55 2.071958e+05 2.071925e+05 3.26 NULL
2021 Department Of Buildings Community Associate 48261.90006 1.061762e+06 34182.62 1.553755e+03 0.865 947.75 22 8.650000e-01 19.03 1.095944e+06 1.061781e+06 34163.59 NULL
2021 Department Of Buildings Community Coordinator 69908.27907 3.006056e+06 108433.69 2.521714e+03 10.590 2424.25 43 1.059000e+01 455.37 3.114490e+06 3.006511e+06 107978.32 NULL
2021 Department Of Buildings Computer Associate 81763.81818 8.994020e+05 114715.23 1.042866e+04 0.000 1879.00 11 0.000000e+00 0.00 1.014117e+06 8.994020e+05 114715.23 NULL
2021 Department Of Buildings Computer Operations Manager 123600.00000 1.236000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.236000e+05 1.236000e+05 0.00 NULL
2021 Department Of Buildings Computer Programmer Analyst 68733.00000 6.873300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.873300e+04 6.873300e+04 0.00 NULL
2021 Department Of Buildings Computer Service Technician 65875.00000 6.587500e+04 19003.07 1.900307e+04 19003.070 397.00 1 1.900307e+04 19003.07 8.487807e+04 8.487807e+04 0.00 NULL
2021 Department Of Buildings Computer Specialist 108657.53846 1.412548e+06 13879.15 1.067627e+03 0.000 201.25 13 0.000000e+00 0.00 1.426427e+06 1.412548e+06 13879.15 NULL
2021 Department Of Buildings Computer Systems Manager 129264.55556 2.326762e+06 537.31 2.985056e+01 0.000 9.00 18 0.000000e+00 0.00 2.327299e+06 2.326762e+06 537.31 NULL
2021 Department Of Buildings Confidential Strategy Planner 87834.00000 5.270040e+05 51606.26 8.601043e+03 0.000 724.50 6 0.000000e+00 0.00 5.786103e+05 5.270040e+05 51606.26 NULL
2021 Department Of Buildings Deputy Commissioner 219349.00000 2.193490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.193490e+05 2.193490e+05 0.00 NULL
2021 Department Of Buildings Electrical Engineer 110583.50000 2.211670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.211670e+05 2.211670e+05 0.00 NULL
2021 Department Of Buildings Equal Employment Opportunity Officer 120077.00000 1.200770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200770e+05 1.200770e+05 0.00 NULL
2021 Department Of Buildings Estimator 65640.00000 6.564000e+04 141.12 1.411200e+02 141.120 3.00 1 1.411200e+02 141.12 6.578112e+04 6.578112e+04 0.00 NULL
2021 Department Of Buildings Executive Agency Counsel 143250.41176 2.435257e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.435257e+06 2.435257e+06 0.00 NULL
2021 Department Of Buildings Executive Assistant 81193.50000 1.623870e+05 839.87 4.199350e+02 419.935 23.75 2 4.199350e+02 839.87 1.632269e+05 1.632269e+05 0.00 NULL
2021 Department Of Buildings Executive Director Of Professional Development 155764.00000 1.557640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.557640e+05 1.557640e+05 0.00 NULL
2021 Department Of Buildings Executive Director, New York City Loft Board 157967.00000 3.159340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.159340e+05 3.159340e+05 0.00 NULL
2021 Department Of Buildings Executive Inspector 120333.33333 3.610000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.610000e+05 3.610000e+05 0.00 NULL
2021 Department Of Buildings Executive Program Specialist 145550.00000 2.911000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.911000e+05 2.911000e+05 0.00 NULL
2021 Department Of Buildings First Deputy Commissioner 232510.00000 2.325100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.325100e+05 2.325100e+05 0.00 NULL
2021 Department Of Buildings Industrial Hygienist 64447.00000 1.933410e+05 15543.64 5.181213e+03 4229.130 324.25 3 4.229130e+03 12687.39 2.088846e+05 2.060284e+05 2856.25 NULL
2021 Department Of Buildings Inspector 67848.20000 3.392410e+06 421389.92 8.427798e+03 3328.095 8656.25 50 3.328095e+03 166404.75 3.813800e+06 3.558815e+06 254985.17 NULL
2021 Department Of Buildings Inspector Boilers 71126.42105 1.351402e+06 95339.15 5.017850e+03 1948.110 4161.50 19 1.948110e+03 37014.09 1.446741e+06 1.388416e+06 58325.06 NULL
2021 Department Of Buildings Inspector Construction 66862.79814 2.881787e+07 2806778.87 6.512248e+03 2237.890 58598.97 431 2.237890e+03 964530.59 3.162464e+07 2.978240e+07 1842248.28 NULL
2021 Department Of Buildings Inspector Elevators 71001.10359 2.769043e+06 752388.50 1.929201e+04 12482.880 16685.25 39 1.248288e+04 486832.32 3.521432e+06 3.255875e+06 265556.18 NULL
2021 Department Of Buildings Inspector Hoists And Rigging 77938.55556 7.014470e+05 139014.98 1.544611e+04 18515.940 2417.50 9 1.544611e+04 139014.98 8.404620e+05 8.404620e+05 0.00 NULL
2021 Department Of Buildings Inspector Plumbing 67771.75385 4.405164e+06 222085.17 3.416695e+03 1861.660 4438.30 65 1.861660e+03 121007.90 4.627249e+06 4.526172e+06 101077.27 NULL
2021 Department Of Buildings Investigator 51681.25696 1.912207e+06 39465.72 1.066641e+03 402.770 1150.75 37 4.027700e+02 14902.49 1.951672e+06 1.927109e+06 24563.23 NULL
2021 Department Of Buildings Mechanical Engineer 98579.85714 6.900590e+05 338.71 4.838714e+01 0.000 4.75 7 0.000000e+00 0.00 6.903977e+05 6.900590e+05 338.71 NULL
2021 Department Of Buildings Mechanical Engineering Intern 56403.48000 5.640348e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.640348e+04 5.640348e+04 0.00 NULL
2021 Department Of Buildings Multiple Dwelling Specialist 74592.00000 1.491840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.491840e+05 1.491840e+05 0.00 NULL
2021 Department Of Buildings Plan Examiner 89448.07692 2.325650e+06 21604.64 8.309477e+02 0.000 364.00 26 0.000000e+00 0.00 2.347255e+06 2.325650e+06 21604.64 NULL
2021 Department Of Buildings Principal Administrative Associate - Non Supvr 67499.00500 4.319936e+06 105545.60 1.649150e+03 0.000 2236.25 64 0.000000e+00 0.00 4.425482e+06 4.319936e+06 105545.60 NULL
2021 Department Of Buildings Principal Multiple Dwelling Specialist 95468.66667 2.864060e+05 2162.56 7.208533e+02 564.030 32.00 3 5.640300e+02 1692.09 2.885686e+05 2.880981e+05 470.47 NULL
2021 Department Of Buildings Procurement Analyst 70255.20000 3.512760e+05 7000.12 1.400024e+03 0.000 193.25 5 0.000000e+00 0.00 3.582761e+05 3.512760e+05 7000.12 NULL
2021 Department Of Buildings Public Records Aide 43837.00000 4.383700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.383700e+04 4.383700e+04 0.00 NULL
2021 Department Of Buildings Public Records Officer 53956.40625 5.395641e+04 3867.67 3.867670e+03 3867.670 134.25 1 3.867670e+03 3867.67 5.782408e+04 5.782408e+04 0.00 NULL
2021 Department Of Buildings Safety Specialist 45068.00000 4.506800e+04 6327.25 6.327250e+03 6327.250 187.00 1 6.327250e+03 6327.25 5.139525e+04 5.139525e+04 0.00 NULL
2021 Department Of Buildings Secretary 46975.47059 7.985830e+05 842.56 4.956235e+01 0.000 24.75 17 0.000000e+00 0.00 7.994256e+05 7.985830e+05 842.56 NULL
2021 Department Of Buildings Secretary To The Commissioner Of Bldgs 103474.00000 1.034740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.034740e+05 1.034740e+05 0.00 NULL
2021 Department Of Buildings Senior Estimator 89086.00000 8.908600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.908600e+04 8.908600e+04 0.00 NULL
2021 Department Of Buildings Space Analyst 73945.00000 2.218350e+05 2529.23 8.430767e+02 153.380 57.50 3 1.533800e+02 460.14 2.243642e+05 2.222951e+05 2069.09 NULL
2021 Department Of Buildings Staff Analyst 62298.33333 5.606850e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.606850e+05 5.606850e+05 0.00 NULL
2021 Department Of Buildings Strategic Initiative Specialist 115503.20000 5.775160e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.775160e+05 5.775160e+05 0.00 NULL
2021 Department Of Business Serv. Adm Manager-Non-Mgrl 96424.88889 8.678240e+05 6765.30 7.517000e+02 0.000 106.75 9 0.000000e+00 0.00 8.745893e+05 8.678240e+05 6765.30 NULL
2021 Department Of Business Serv. Admin Contract Specialist 123295.00000 1.232950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.232950e+05 1.232950e+05 0.00 NULL
2021 Department Of Business Serv. Administrative Architect 160502.00000 1.605020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.605020e+05 1.605020e+05 0.00 NULL
2021 Department Of Business Serv. Administrative Business Promotion Coordinator 113080.09302 4.862444e+06 13869.75 3.225523e+02 0.000 229.25 43 0.000000e+00 0.00 4.876314e+06 4.862444e+06 13869.75 NULL
2021 Department Of Business Serv. Administrative City Planner 87624.00000 8.762400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.762400e+04 8.762400e+04 0.00 NULL
2021 Department Of Business Serv. Administrative Contract Specialist 95344.00000 2.860320e+05 6929.15 2.309717e+03 0.000 99.75 3 0.000000e+00 0.00 2.929612e+05 2.860320e+05 6929.15 NULL
2021 Department Of Business Serv. Administrative Manager 126381.00000 1.263810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.263810e+05 1.263810e+05 0.00 NULL
2021 Department Of Business Serv. Administrative Public Information Specialist 134280.00000 1.342800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.342800e+05 1.342800e+05 0.00 NULL
2021 Department Of Business Serv. Administrative Space Analyst 119561.00000 1.195610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.195610e+05 1.195610e+05 0.00 NULL
2021 Department Of Business Serv. Administrative Staff Analyst 131866.00000 5.274640e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.274640e+05 5.274640e+05 0.00 NULL
2021 Department Of Business Serv. Agency Attorney 76306.00000 7.630600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.630600e+04 7.630600e+04 0.00 NULL
2021 Department Of Business Serv. Agency Chief Contracting Officer 142888.00000 1.428880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.428880e+05 1.428880e+05 0.00 NULL
2021 Department Of Business Serv. Assistant Architect 79181.50000 1.583630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.583630e+05 1.583630e+05 0.00 NULL
2021 Department Of Business Serv. Assistant Commissioner 141248.00000 9.887360e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.887360e+05 9.887360e+05 0.00 NULL
2021 Department Of Business Serv. Assistant Plan Examiner 82942.00000 8.294200e+04 366.14 3.661400e+02 366.140 8.00 1 3.661400e+02 366.14 8.330814e+04 8.330814e+04 0.00 NULL
2021 Department Of Business Serv. Associate Contract Specialist 79444.33333 4.766660e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.766660e+05 4.766660e+05 0.00 NULL
2021 Department Of Business Serv. Associate Staff Analyst 83814.33333 2.514430e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.514430e+05 2.514430e+05 0.00 NULL
2021 Department Of Business Serv. Business Promotion Coordinator 77421.53061 3.793655e+06 39114.63 7.982578e+02 0.000 672.50 49 0.000000e+00 0.00 3.832770e+06 3.793655e+06 39114.63 NULL
2021 Department Of Business Serv. Certified It Developer 101037.33333 6.062240e+05 4095.63 6.826050e+02 0.000 68.00 6 0.000000e+00 0.00 6.103196e+05 6.062240e+05 4095.63 NULL
2021 Department Of Business Serv. Clerical Associate 60055.00000 3.603300e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.603300e+05 3.603300e+05 0.00 NULL
2021 Department Of Business Serv. College Aide 8053.85000 2.416155e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.416155e+04 2.416155e+04 0.00 NULL
2021 Department Of Business Serv. Commissioner Of Business Services 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2021 Department Of Business Serv. Community Associate 60905.60000 6.090560e+05 44.16 4.416000e+00 0.000 1.50 10 0.000000e+00 0.00 6.091002e+05 6.090560e+05 44.16 NULL
2021 Department Of Business Serv. Community Coordinator 66703.41250 4.402425e+06 38676.50 5.860076e+02 0.000 757.50 66 0.000000e+00 0.00 4.441102e+06 4.402425e+06 38676.50 NULL
2021 Department Of Business Serv. Computer Associate 78432.33333 2.352970e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.352970e+05 2.352970e+05 0.00 NULL
2021 Department Of Business Serv. Computer Service Technician 60262.00000 6.026200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.026200e+04 6.026200e+04 0.00 NULL
2021 Department Of Business Serv. Computer Specialist 98617.00000 9.861700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.861700e+04 9.861700e+04 0.00 NULL
2021 Department Of Business Serv. Computer Systems Manager 113460.00000 4.538400e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.538400e+05 4.538400e+05 0.00 NULL
2021 Department Of Business Serv. Contract Reviewer 67501.65892 2.497561e+06 1880.36 5.082054e+01 0.000 40.25 37 0.000000e+00 0.00 2.499442e+06 2.497561e+06 1880.36 NULL
2021 Department Of Business Serv. Deputy Commissioner 174189.80000 8.709490e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.709490e+05 8.709490e+05 0.00 NULL
2021 Department Of Business Serv. Executive Agency Counsel 140286.00000 2.805720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.805720e+05 2.805720e+05 0.00 NULL
2021 Department Of Business Serv. Executive Assistant To The Commissioner 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2021 Department Of Business Serv. General Counsel 211681.00000 2.116810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.116810e+05 2.116810e+05 0.00 NULL
2021 Department Of Business Serv. Graphic Artist 76881.50000 1.537630e+05 136.79 6.839500e+01 68.395 3.25 2 6.839500e+01 136.79 1.538998e+05 1.538998e+05 0.00 NULL
2021 Department Of Business Serv. Management Auditor 80785.00000 8.078500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.078500e+04 8.078500e+04 0.00 NULL
2021 Department Of Business Serv. Principal Administrative Associate - Non Supvr 75440.90909 8.298500e+05 392.05 3.564091e+01 0.000 8.50 11 0.000000e+00 0.00 8.302421e+05 8.298500e+05 392.05 NULL
2021 Department Of Business Serv. Procurement Analyst 77990.60000 3.899530e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.899530e+05 3.899530e+05 0.00 NULL
2021 Department Of Business Serv. Project Manager 129443.20000 6.472160e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.472160e+05 6.472160e+05 0.00 NULL
2021 Department Of Business Serv. Public Relations Adviser 77250.00000 7.725000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.725000e+04 7.725000e+04 0.00 NULL
2021 Department Of Business Serv. Secretary To The Deputy Commissioner 67184.00000 6.718400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.718400e+04 6.718400e+04 0.00 NULL
2021 Department Of Business Serv. Space Analyst 79315.00000 7.931500e+04 477.54 4.775400e+02 477.540 9.00 1 4.775400e+02 477.54 7.979254e+04 7.979254e+04 0.00 NULL
2021 Department Of Business Serv. Staff Analyst 74193.25000 2.967730e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.967730e+05 2.967730e+05 0.00 NULL
2021 Department Of Business Serv. Telecommunications Associate 68240.00000 6.824000e+04 65.37 6.537000e+01 65.370 1.75 1 6.537000e+01 65.37 6.830537e+04 6.830537e+04 0.00 NULL
2021 Department Of City Planning *Certified Local Area Network Administrator 115410.00000 1.154100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.154100e+05 1.154100e+05 0.00 NULL
2021 Department Of City Planning Accountant 74820.00000 7.482000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.482000e+04 7.482000e+04 0.00 NULL
2021 Department Of City Planning Adm Manager-Non-Mgrl 74797.50000 2.991900e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.991900e+05 2.991900e+05 0.00 NULL
2021 Department Of City Planning Administrative Business Promotion Coordinator 113838.33333 3.415150e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.415150e+05 3.415150e+05 0.00 NULL
2021 Department Of City Planning Administrative City Planner 125723.76471 4.274608e+06 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 4.274608e+06 4.274608e+06 0.00 NULL
2021 Department Of City Planning Administrative Staff Analyst 126263.00000 7.575780e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.575780e+05 7.575780e+05 0.00 NULL
2021 Department Of City Planning Agency Attorney 100412.60000 5.020630e+05 815.93 1.631860e+02 0.000 13.50 5 0.000000e+00 0.00 5.028789e+05 5.020630e+05 815.93 NULL
2021 Department Of City Planning Architectural Intern 58870.00000 1.177400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.177400e+05 1.177400e+05 0.00 NULL
2021 Department Of City Planning Assistant Architect 67818.00000 1.356360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.356360e+05 1.356360e+05 0.00 NULL
2021 Department Of City Planning Assistant Environmental Engineer 68870.00000 1.377400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.377400e+05 1.377400e+05 0.00 NULL
2021 Department Of City Planning Assistant Transportation Specialist 66224.88889 5.960240e+05 336.01 3.733444e+01 0.000 10.25 9 0.000000e+00 0.00 5.963600e+05 5.960240e+05 336.01 NULL
2021 Department Of City Planning Assistant Urban Designer 66916.16667 8.029940e+05 3753.53 3.127942e+02 0.000 84.00 12 0.000000e+00 0.00 8.067475e+05 8.029940e+05 3753.53 NULL
2021 Department Of City Planning Associate Staff Analyst 83782.00000 1.675640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.675640e+05 1.675640e+05 0.00 NULL
2021 Department Of City Planning Associate Urban Designer 85874.85714 6.011240e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.011240e+05 6.011240e+05 0.00 NULL
2021 Department Of City Planning Bookbinder 54707.00000 5.470700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.470700e+04 5.470700e+04 0.00 NULL
2021 Department Of City Planning Business Promotion Coordinator 69825.00000 6.982500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.982500e+04 6.982500e+04 0.00 NULL
2021 Department Of City Planning Certified It Administrator 94256.00000 1.885120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.885120e+05 1.885120e+05 0.00 NULL
2021 Department Of City Planning Certified It Developer 115401.00000 2.308020e+05 282.19 1.410950e+02 141.095 4.00 2 1.410950e+02 282.19 2.310842e+05 2.310842e+05 0.00 NULL
2021 Department Of City Planning Chairman 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2021 Department Of City Planning City Planner 82428.84416 6.347021e+06 23798.85 3.090760e+02 0.000 423.50 77 0.000000e+00 0.00 6.370820e+06 6.347021e+06 23798.85 NULL
2021 Department Of City Planning City Research Scientist 85927.42857 6.014920e+05 654.74 9.353429e+01 0.000 13.50 7 0.000000e+00 0.00 6.021467e+05 6.014920e+05 654.74 NULL
2021 Department Of City Planning Civil Engineer 96682.00000 9.668200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.668200e+04 9.668200e+04 0.00 NULL
2021 Department Of City Planning Clerical Associate 53986.25117 3.239175e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.239175e+05 3.239175e+05 0.00 NULL
2021 Department Of City Planning Commissioner 64224.00000 7.064640e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.064640e+05 7.064640e+05 0.00 NULL
2021 Department Of City Planning Commissioner Designated As Vice Chairman 73855.00000 7.385500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.385500e+04 7.385500e+04 0.00 NULL
2021 Department Of City Planning Community Associate 55296.00000 3.870720e+05 1128.53 1.612186e+02 0.000 36.25 7 0.000000e+00 0.00 3.882005e+05 3.870720e+05 1128.53 NULL
2021 Department Of City Planning Community Coordinator 68505.55000 2.740222e+06 19290.42 4.822605e+02 0.000 439.50 40 0.000000e+00 0.00 2.759512e+06 2.740222e+06 19290.42 NULL
2021 Department Of City Planning Computer Aide-Non-Spvr 65847.00000 6.584700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.584700e+04 6.584700e+04 0.00 NULL
2021 Department Of City Planning Computer Associate 69418.15316 6.247634e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 6.247634e+05 6.247634e+05 0.00 NULL
2021 Department Of City Planning Computer Operations Manager 112313.00000 3.369390e+05 1156.20 3.854000e+02 0.000 18.50 3 0.000000e+00 0.00 3.380952e+05 3.369390e+05 1156.20 NULL
2021 Department Of City Planning Computer Service Technician 51500.00000 5.150000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.150000e+04 5.150000e+04 0.00 NULL
2021 Department Of City Planning Computer Specialist 98352.50000 7.868200e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.868200e+05 7.868200e+05 0.00 NULL
2021 Department Of City Planning Computer Systems Manager 139249.20000 6.962460e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.962460e+05 6.962460e+05 0.00 NULL
2021 Department Of City Planning Contract Specialist 78860.00000 7.886000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.886000e+04 7.886000e+04 0.00 NULL
2021 Department Of City Planning Counsel 206000.00000 2.060000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.060000e+05 2.060000e+05 0.00 NULL
2021 Department Of City Planning Customer Information Representative Ma L 1549 65920.00000 6.592000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.592000e+04 6.592000e+04 0.00 NULL
2021 Department Of City Planning Deputy Executive Director 207552.00000 2.075520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.075520e+05 2.075520e+05 0.00 NULL
2021 Department Of City Planning Director Of Public Information 160609.00000 1.606090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.606090e+05 1.606090e+05 0.00 NULL
2021 Department Of City Planning Economist 66655.34783 1.533073e+06 756.85 3.290652e+01 0.000 19.75 23 0.000000e+00 0.00 1.533830e+06 1.533073e+06 756.85 NULL
2021 Department Of City Planning Executive Agency Counsel 129755.00000 1.297550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.297550e+05 1.297550e+05 0.00 NULL
2021 Department Of City Planning Executive Assistant For Planning 129546.00000 1.295460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.295460e+05 1.295460e+05 0.00 NULL
2021 Department Of City Planning Executive Assistant To The Chairman 72100.00000 7.210000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.210000e+04 7.210000e+04 0.00 NULL
2021 Department Of City Planning Executive Director 222326.00000 2.223260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.223260e+05 2.223260e+05 0.00 NULL
2021 Department Of City Planning Geologist 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2021 Department Of City Planning Graphic Artist 79993.00000 7.999300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.999300e+04 7.999300e+04 0.00 NULL
2021 Department Of City Planning Housing Development Specialist 81660.00000 2.449800e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.449800e+05 2.449800e+05 0.00 NULL
2021 Department Of City Planning Labor Relations Analyst 77250.00000 7.725000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.725000e+04 7.725000e+04 0.00 NULL
2021 Department Of City Planning Motor Vehicle Supervisor 58000.00000 5.800000e+04 1442.76 1.442760e+03 1442.760 33.00 1 1.442760e+03 1442.76 5.944276e+04 5.944276e+04 0.00 NULL
2021 Department Of City Planning Principal Administrative Associate - Non Supvr 71291.40000 3.564570e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.564570e+05 3.564570e+05 0.00 NULL
2021 Department Of City Planning Principal Planning Consultant 112321.00000 3.369630e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.369630e+05 3.369630e+05 0.00 NULL
2021 Department Of City Planning Procurement Analyst 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2021 Department Of City Planning Project Manager 83000.00000 8.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.300000e+04 8.300000e+04 0.00 NULL
2021 Department Of City Planning Public Records Officer 59568.33333 1.787050e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.787050e+05 1.787050e+05 0.00 NULL
2021 Department Of City Planning Secretary 58953.00000 5.895300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.895300e+04 5.895300e+04 0.00 NULL
2021 Department Of City Planning Secretary To The Chairman 84089.00000 8.408900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.408900e+04 8.408900e+04 0.00 NULL
2021 Department Of City Planning Space Analyst 65640.00000 6.564000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.564000e+04 6.564000e+04 0.00 NULL
2021 Department Of City Planning Staff Analyst 67259.60000 3.362980e+05 156.70 3.134000e+01 0.000 4.00 5 0.000000e+00 0.00 3.364547e+05 3.362980e+05 156.70 NULL
2021 Department Of City Planning Telecommunications Associate 66950.00000 6.695000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.695000e+04 6.695000e+04 0.00 NULL
2021 Department Of City Planning Telecommunications Manager 103333.33333 3.100000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.100000e+05 3.100000e+05 0.00 NULL
2021 Department Of City Planning Transportation Specialist 96707.00000 3.868280e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.868280e+05 3.868280e+05 0.00 NULL
2021 Department Of Correction *Attorney At Law 100720.00000 1.007200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.007200e+05 1.007200e+05 0.00 NULL
2021 Department Of Correction *Cook 41147.28070 4.690790e+06 63945.30 5.609237e+02 267.685 1890.75 114 2.676850e+02 30516.09 4.754735e+06 4.721306e+06 33429.21 NULL
2021 Department Of Correction *Senior Cook 45059.27273 9.913040e+05 25495.49 1.158886e+03 985.535 671.25 22 9.855350e+02 21681.77 1.016799e+06 1.012986e+06 3813.72 NULL
2021 Department Of Correction Adm Manager-Non-Mgrl 77067.84946 3.545121e+06 64411.00 1.400239e+03 0.000 1361.50 46 0.000000e+00 0.00 3.609532e+06 3.545121e+06 64411.00 NULL
2021 Department Of Correction Admin Community Relations Specialist 98092.33333 2.942770e+05 756.02 2.520067e+02 0.000 12.50 3 0.000000e+00 0.00 2.950330e+05 2.942770e+05 756.02 NULL
2021 Department Of Correction Admin Construction Project Manager 117428.00000 1.174280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.174280e+05 1.174280e+05 0.00 NULL
2021 Department Of Correction Admin Inspector 106741.00000 1.067410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.067410e+05 1.067410e+05 0.00 NULL
2021 Department Of Correction Administrative Architect 150779.50000 3.015590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.015590e+05 3.015590e+05 0.00 NULL
2021 Department Of Correction Administrative Business Promotion Coordinator 122825.00000 4.913000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.913000e+05 4.913000e+05 0.00 NULL
2021 Department Of Correction Administrative Construction Project Manager 154054.00000 1.540540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.540540e+05 1.540540e+05 0.00 NULL
2021 Department Of Correction Administrative Contract Specialist 69317.00000 6.931700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.931700e+04 6.931700e+04 0.00 NULL
2021 Department Of Correction Administrative Director Of Social Services 110912.40000 5.545620e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.545620e+05 5.545620e+05 0.00 NULL
2021 Department Of Correction Administrative Graphic Artist 102072.00000 1.020720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020720e+05 1.020720e+05 0.00 NULL
2021 Department Of Correction Administrative Investigator 102384.37500 8.190750e+05 9190.56 1.148820e+03 8.365 129.75 8 8.365000e+00 66.92 8.282656e+05 8.191419e+05 9123.64 NULL
2021 Department Of Correction Administrative Management Auditor 105318.00000 1.053180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.053180e+05 1.053180e+05 0.00 NULL
2021 Department Of Correction Administrative Procurement Analyst-Non-Mgrl 94812.28571 6.636860e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.636860e+05 6.636860e+05 0.00 NULL
2021 Department Of Correction Administrative Project Manager 118074.00000 8.265180e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.265180e+05 8.265180e+05 0.00 NULL
2021 Department Of Correction Administrative Public Health Sanitarian 174563.50000 3.491270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.491270e+05 3.491270e+05 0.00 NULL
2021 Department Of Correction Administrative Public Information Specialist 121659.16667 7.299550e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.299550e+05 7.299550e+05 0.00 NULL
2021 Department Of Correction Administrative Public Records Officer 122487.00000 1.224870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.224870e+05 1.224870e+05 0.00 NULL
2021 Department Of Correction Administrative Quality Assurance Specialist 147708.00000 1.477080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.477080e+05 1.477080e+05 0.00 NULL
2021 Department Of Correction Administrative Staff Analyst 105619.93182 4.647277e+06 17371.20 3.948000e+02 0.000 248.75 44 0.000000e+00 0.00 4.664648e+06 4.647277e+06 17371.20 NULL
2021 Department Of Correction Administrative Supervisor Of Building Maintenance 164650.00000 3.293000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.293000e+05 3.293000e+05 0.00 NULL
2021 Department Of Correction Agency Attorney 102253.54000 5.112677e+06 584.97 1.169940e+01 0.000 15.25 50 0.000000e+00 0.00 5.113262e+06 5.112677e+06 584.97 NULL
2021 Department Of Correction Agency Attorney Interne 62397.00000 1.871910e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.871910e+05 1.871910e+05 0.00 NULL
2021 Department Of Correction Agency Chief Contracting Officer 163994.00000 1.639940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.639940e+05 1.639940e+05 0.00 NULL
2021 Department Of Correction Architect 112525.00000 1.125250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.125250e+05 1.125250e+05 0.00 NULL
2021 Department Of Correction Asbestos Handler Supervisor 89974.50000 1.799490e+05 22770.81 1.138541e+04 11385.405 352.00 2 1.138541e+04 22770.81 2.027198e+05 2.027198e+05 0.00 NULL
2021 Department Of Correction Assistant Commissioner 153054.69231 1.989711e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.989711e+06 1.989711e+06 0.00 NULL
2021 Department Of Correction Associate Correctional Counselor 64656.34286 4.525944e+06 5602.75 8.003929e+01 0.000 96.50 70 0.000000e+00 0.00 4.531547e+06 4.525944e+06 5602.75 NULL
2021 Department Of Correction Associate Investigator 66978.95556 6.028106e+05 18529.40 2.058822e+03 462.420 394.25 9 4.624200e+02 4161.78 6.213400e+05 6.069724e+05 14367.62 NULL
2021 Department Of Correction Associate Project Manager 96312.66667 2.889380e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.889380e+05 2.889380e+05 0.00 NULL
2021 Department Of Correction Associate Public Health Sanitarian 77349.75000 3.093990e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.093990e+05 3.093990e+05 0.00 NULL
2021 Department Of Correction Associate Quality Assurance Specialist 74776.00000 7.477600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.477600e+04 7.477600e+04 0.00 NULL
2021 Department Of Correction Associate Staff Analyst 86344.52941 1.467857e+06 7794.02 4.584718e+02 0.000 123.50 17 0.000000e+00 0.00 1.475651e+06 1.467857e+06 7794.02 NULL
2021 Department Of Correction Auto Body Worker 60894.00000 1.826820e+05 6728.02 2.242673e+03 2227.180 151.00 3 2.227180e+03 6681.54 1.894100e+05 1.893635e+05 46.48 NULL
2021 Department Of Correction Auto Mechanic NA NA 51010.22 3.643587e+03 4439.315 779.75 14 3.643587e+03 51010.22 NA NA NA NULL
2021 Department Of Correction Automotive Service Worker 39877.00000 2.791390e+05 4376.32 6.251886e+02 52.410 151.50 7 5.241000e+01 366.87 2.835153e+05 2.795059e+05 4009.45 NULL
2021 Department Of Correction Baker 39765.33333 1.192960e+05 634.77 2.115900e+02 40.550 22.50 3 4.055000e+01 121.65 1.199308e+05 1.194176e+05 513.12 NULL
2021 Department Of Correction Bookkeeper 44115.00000 4.411500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.411500e+04 4.411500e+04 0.00 NULL
2021 Department Of Correction Bricklayer NA NA 289024.66 4.817078e+04 42801.330 3921.00 6 4.280133e+04 256807.98 NA NA NA NULL
2021 Department Of Correction Captain 105304.45711 8.224278e+07 22517113.62 2.883113e+04 23203.390 403759.10 781 2.320339e+04 18121847.59 1.047599e+08 1.003646e+08 4395266.03 NULL
2021 Department Of Correction Carpenter NA NA 612117.11 4.372265e+04 33465.745 7929.00 14 3.346575e+04 468520.43 NA NA NA NULL
2021 Department Of Correction Case Management Nurse 87139.68125 3.485587e+05 4122.64 1.030660e+03 78.485 59.75 4 7.848500e+01 313.94 3.526814e+05 3.488727e+05 3808.70 NULL
2021 Department Of Correction Cashier 42602.44828 1.235471e+06 191082.44 6.589050e+03 2451.390 6329.00 29 2.451390e+03 71090.31 1.426553e+06 1.306561e+06 119992.13 NULL
2021 Department Of Correction Cement Mason NA NA 32708.00 3.270800e+04 32708.000 340.00 1 3.270800e+04 32708.00 NA NA NA NULL
2021 Department Of Correction Certified It Administrator 100795.57143 7.055690e+05 7202.66 1.028951e+03 585.660 107.25 7 5.856600e+02 4099.62 7.127717e+05 7.096686e+05 3103.04 NULL
2021 Department Of Correction Certified It Developer 103325.00000 6.199500e+05 5719.85 9.533083e+02 0.000 73.50 6 0.000000e+00 0.00 6.256698e+05 6.199500e+05 5719.85 NULL
2021 Department Of Correction Chaplain 47504.35807 1.140105e+06 2982.72 1.242800e+02 0.000 72.00 24 0.000000e+00 0.00 1.143087e+06 1.140105e+06 2982.72 NULL
2021 Department Of Correction Chief Of Staff 226771.00000 2.267710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.267710e+05 2.267710e+05 0.00 NULL
2021 Department Of Correction City Laborer 26243.36875 2.624337e+05 3516.28 3.516280e+02 126.880 98.00 10 1.268800e+02 1268.80 2.659500e+05 2.637025e+05 2247.48 NULL
2021 Department Of Correction City Medical Specialist 125478.25202 1.631217e+06 6639.62 5.107400e+02 0.000 47.50 13 0.000000e+00 0.00 1.637857e+06 1.631217e+06 6639.62 NULL
2021 Department Of Correction City Research Scientist 94505.60000 9.450560e+05 7412.39 7.412390e+02 0.000 105.75 10 0.000000e+00 0.00 9.524684e+05 9.450560e+05 7412.39 NULL
2021 Department Of Correction Civil Engineer 95310.00000 9.531000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.531000e+04 9.531000e+04 0.00 NULL
2021 Department Of Correction Clerical Associate 45986.72009 2.667230e+06 112020.27 1.931384e+03 227.575 3160.23 58 2.275750e+02 13199.35 2.779250e+06 2.680429e+06 98820.92 NULL
2021 Department Of Correction Commissary Manager 41104.33333 1.233130e+05 1339.07 4.463567e+02 515.640 56.75 3 4.463567e+02 1339.07 1.246521e+05 1.246521e+05 0.00 NULL
2021 Department Of Correction Commissioner 243171.00000 4.863420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863420e+05 4.863420e+05 0.00 NULL
2021 Department Of Correction Community Assistant 39794.00000 7.958800e+04 2208.44 1.104220e+03 1104.220 80.00 2 1.104220e+03 2208.44 8.179644e+04 8.179644e+04 0.00 NULL
2021 Department Of Correction Community Associate 43879.98373 6.581998e+05 2763.38 1.842253e+02 0.000 89.00 15 0.000000e+00 0.00 6.609631e+05 6.581998e+05 2763.38 NULL
2021 Department Of Correction Community Coordinator 61521.62960 6.767379e+06 241073.26 2.191575e+03 0.000 5098.75 110 0.000000e+00 0.00 7.008453e+06 6.767379e+06 241073.26 NULL
2021 Department Of Correction Computer Aide-Non-Spvr 53318.50000 1.066370e+05 8672.03 4.336015e+03 4336.015 231.00 2 4.336015e+03 8672.03 1.153090e+05 1.153090e+05 0.00 NULL
2021 Department Of Correction Computer Associate 78440.00000 9.412800e+05 3838.54 3.198783e+02 0.000 77.00 12 0.000000e+00 0.00 9.451185e+05 9.412800e+05 3838.54 NULL
2021 Department Of Correction Computer Operations Manager 132595.28571 9.281670e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.281670e+05 9.281670e+05 0.00 NULL
2021 Department Of Correction Computer Specialist 95729.17647 1.627396e+06 4461.52 2.624424e+02 0.000 55.00 17 0.000000e+00 0.00 1.631858e+06 1.627396e+06 4461.52 NULL
2021 Department Of Correction Computer Systems Manager 124505.09091 2.739112e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 2.739112e+06 2.739112e+06 0.00 NULL
2021 Department Of Correction Confidential Agency Investigator 122035.29412 2.074600e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.074600e+06 2.074600e+06 0.00 NULL
2021 Department Of Correction Construction Project Manager 103884.00000 3.116520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.116520e+05 3.116520e+05 0.00 NULL
2021 Department Of Correction Correction Administrative Aide 35810.90825 2.864873e+05 413.82 5.172750e+01 0.000 18.00 8 0.000000e+00 0.00 2.869011e+05 2.864873e+05 413.82 NULL
2021 Department Of Correction Correction Officer 78446.68368 7.514408e+08 104753731.65 1.093577e+04 6565.320 2615329.37 9579 6.565320e+03 62889200.28 8.561945e+08 8.143300e+08 41864531.37 NULL
2021 Department Of Correction Correctional Standards Review Specialist 72579.64706 2.467708e+06 17641.48 5.188671e+02 0.000 385.75 34 0.000000e+00 0.00 2.485349e+06 2.467708e+06 17641.48 NULL
2021 Department Of Correction Counselor 57178.00000 5.717800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.717800e+04 5.717800e+04 0.00 NULL
2021 Department Of Correction Deputy Commissioner 204836.83333 1.229021e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.229021e+06 1.229021e+06 0.00 NULL
2021 Department Of Correction Dietary Aide 39071.00000 2.734970e+05 10343.13 1.477590e+03 945.740 343.50 7 9.457400e+02 6620.18 2.838401e+05 2.801172e+05 3722.95 NULL
2021 Department Of Correction Dietitian 55451.80000 5.545180e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.545180e+05 5.545180e+05 0.00 NULL
2021 Department Of Correction Director Of Correctional Standards Review 97438.10000 2.923143e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 2.923143e+06 2.923143e+06 0.00 NULL
2021 Department Of Correction Director Of Public Affairs 144200.00000 1.442000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.442000e+05 1.442000e+05 0.00 NULL
2021 Department Of Correction Electrical Engineer 102917.00000 1.029170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.029170e+05 1.029170e+05 0.00 NULL
2021 Department Of Correction Electrician NA NA 2014009.24 3.800017e+04 25224.020 22333.00 53 2.522402e+04 1336873.06 NA NA NA NULL
2021 Department Of Correction Electricians Helper NA NA 613264.18 2.190229e+04 17007.395 10574.50 28 1.700740e+04 476207.06 NA NA NA NULL
2021 Department Of Correction Executive Agency Counsel 148334.29412 2.521683e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.521683e+06 2.521683e+06 0.00 NULL
2021 Department Of Correction Executive Assistant To The Commissioner 108150.00000 1.081500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081500e+05 1.081500e+05 0.00 NULL
2021 Department Of Correction Executive Director Of Food Services 145022.00000 1.450220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450220e+05 1.450220e+05 0.00 NULL
2021 Department Of Correction Executive Program Specialist 103000.00000 1.030000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030000e+05 1.030000e+05 0.00 NULL
2021 Department Of Correction Exterminator 43157.75000 1.726310e+05 33228.62 8.307155e+03 5652.675 1074.25 4 5.652675e+03 22610.70 2.058596e+05 1.952417e+05 10617.92 NULL
2021 Department Of Correction Film Manager 86637.00000 8.663700e+04 478.12 4.781200e+02 478.120 10.00 1 4.781200e+02 478.12 8.711512e+04 8.711512e+04 0.00 NULL
2021 Department Of Correction Fitness Instructor 48090.31468 1.923613e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.923613e+05 1.923613e+05 0.00 NULL
2021 Department Of Correction Food Service Administrator 85574.75000 3.422990e+05 2114.67 5.286675e+02 486.845 40.50 4 4.868450e+02 1947.38 3.444137e+05 3.442464e+05 167.29 NULL
2021 Department Of Correction Food Service Manager 63185.80000 6.318580e+05 10019.43 1.001943e+03 714.325 234.75 10 7.143250e+02 7143.25 6.418774e+05 6.390012e+05 2876.18 NULL
2021 Department Of Correction Fraud Investigator 67013.00000 6.701300e+04 9582.17 9.582170e+03 9582.170 174.25 1 9.582170e+03 9582.17 7.659517e+04 7.659517e+04 0.00 NULL
2021 Department Of Correction Graphic Artist 72626.00000 1.452520e+05 4107.52 2.053760e+03 2053.760 117.25 2 2.053760e+03 4107.52 1.493595e+05 1.493595e+05 0.00 NULL
2021 Department Of Correction Health Services Manager Non Managerial Level I 107140.00000 1.071400e+05 469.14 4.691400e+02 469.140 7.00 1 4.691400e+02 469.14 1.076091e+05 1.076091e+05 0.00 NULL
2021 Department Of Correction High Pressure Plant Tender NA NA 479548.52 3.425347e+04 34018.205 8021.50 14 3.401821e+04 476254.87 NA NA NA NULL
2021 Department Of Correction Industrial Hygienist 65229.50000 1.304590e+05 1380.74 6.903700e+02 690.370 40.00 2 6.903700e+02 1380.74 1.318397e+05 1.318397e+05 0.00 NULL
2021 Department Of Correction Institutional Aide 40142.92857 5.620010e+05 141341.35 1.009581e+04 3051.815 4799.00 14 3.051815e+03 42725.41 7.033423e+05 6.047264e+05 98615.94 NULL
2021 Department Of Correction Investigator 60071.89954 8.289922e+06 264792.01 1.918783e+03 456.865 6086.88 138 4.568650e+02 63047.37 8.554714e+06 8.352970e+06 201744.64 NULL
2021 Department Of Correction Legal Coordinator 58246.15625 1.863877e+06 4241.07 1.325334e+02 22.590 108.25 32 2.259000e+01 722.88 1.868118e+06 1.864600e+06 3518.19 NULL
2021 Department Of Correction Licensed Barber 40495.22222 3.644570e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 3.644570e+05 3.644570e+05 0.00 NULL
2021 Department Of Correction Locksmith NA NA 194442.42 9.722121e+03 3187.015 4471.25 20 3.187015e+03 63740.30 NA NA NA NULL
2021 Department Of Correction Machinist NA NA 117535.92 2.938398e+04 33227.580 1916.75 4 2.938398e+04 117535.92 NA NA NA NULL
2021 Department Of Correction Maintenance Worker NA NA 593623.23 1.798858e+04 16556.160 12834.50 33 1.655616e+04 546353.28 NA NA NA NULL
2021 Department Of Correction Management Auditor 83878.50000 1.677570e+05 140.38 7.019000e+01 70.190 2.50 2 7.019000e+01 140.38 1.678974e+05 1.678974e+05 0.00 NULL
2021 Department Of Correction Marine Engineer 91727.90215 4.586395e+05 310696.48 6.213930e+04 56367.040 5501.00 5 5.636704e+04 281835.20 7.693360e+05 7.404747e+05 28861.28 NULL
2021 Department Of Correction Marine Oiler 178442.20485 1.784422e+05 114702.51 1.147025e+05 114702.510 2119.25 1 1.147025e+05 114702.51 2.931447e+05 2.931447e+05 0.00 NULL
2021 Department Of Correction Masons Helper NA NA 32479.11 3.247911e+04 32479.110 625.25 1 3.247911e+04 32479.11 NA NA NA NULL
2021 Department Of Correction Mate 57875.00000 5.787500e+04 4070.40 4.070400e+03 4070.400 80.00 1 4.070400e+03 4070.40 6.194540e+04 6.194540e+04 0.00 NULL
2021 Department Of Correction Metal Work Mechanic 84906.00000 3.396240e+05 193043.34 4.826083e+04 44456.030 3134.25 4 4.445603e+04 177824.12 5.326673e+05 5.174481e+05 15219.22 NULL
2021 Department Of Correction Motor Vehicle Operator 49865.88636 2.194099e+06 372148.51 8.457921e+03 7290.840 9881.50 44 7.290840e+03 320796.96 2.566248e+06 2.514896e+06 51351.55 NULL
2021 Department Of Correction Motor Vehicle Supervisor 57330.80000 2.866540e+05 3017.74 6.035480e+02 109.330 70.00 5 1.093300e+02 546.65 2.896717e+05 2.872007e+05 2471.09 NULL
2021 Department Of Correction New York City Public Service Fellow 43816.20000 2.190810e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.190810e+05 2.190810e+05 0.00 NULL
2021 Department Of Correction Office Machine Aide 41107.00000 4.110700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.110700e+04 4.110700e+04 0.00 NULL
2021 Department Of Correction Oiler NA NA 1519621.10 4.469474e+04 36240.120 16906.25 34 3.624012e+04 1232164.08 NA NA NA NULL
2021 Department Of Correction Operations Communications Specialist 54018.00000 5.401800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.401800e+04 5.401800e+04 0.00 NULL
2021 Department Of Correction Paralegal Aide 46343.19000 4.634319e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.634319e+04 4.634319e+04 0.00 NULL
2021 Department Of Correction Plasterer NA NA 142715.16 7.135758e+04 71357.580 1732.50 2 7.135758e+04 142715.16 NA NA NA NULL
2021 Department Of Correction Plumber NA NA 1456477.75 4.283758e+04 38949.345 13806.50 34 3.894935e+04 1324277.73 NA NA NA NULL
2021 Department Of Correction Plumber’s Helper NA NA 743966.81 3.719834e+04 40309.080 10082.25 20 3.719834e+04 743966.81 NA NA NA NULL
2021 Department Of Correction Principal Administrative Associate - Non Supvr 64629.25758 4.265531e+06 45036.89 6.823771e+02 0.000 995.25 66 0.000000e+00 0.00 4.310568e+06 4.265531e+06 45036.89 NULL
2021 Department Of Correction Printing Press Operator NA NA 47108.47 4.710847e+04 47108.470 808.50 1 4.710847e+04 47108.47 NA NA NA NULL
2021 Department Of Correction Procurement Analyst 69542.66667 8.345120e+05 12.06 1.005000e+00 0.000 0.00 12 0.000000e+00 0.00 8.345241e+05 8.345120e+05 12.06 NULL
2021 Department Of Correction Program Specialist Correction 71307.71427 7.416002e+06 647062.76 6.221757e+03 0.050 11320.25 104 5.000000e-02 5.20 8.063065e+06 7.416007e+06 647057.56 NULL
2021 Department Of Correction Project Manager 71548.00000 7.154800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.154800e+04 7.154800e+04 0.00 NULL
2021 Department Of Correction Psychologist 65163.59929 5.864724e+05 91.33 1.014778e+01 0.000 0.00 9 0.000000e+00 0.00 5.865637e+05 5.864724e+05 91.33 NULL
2021 Department Of Correction Public Health Sanitarian 63559.66667 3.813580e+05 8595.86 1.432643e+03 0.865 169.75 6 8.650000e-01 5.19 3.899539e+05 3.813632e+05 8590.67 NULL
2021 Department Of Correction Radio Repair Mechanic NA NA 24879.12 8.293040e+03 0.000 316.00 3 0.000000e+00 0.00 NA NA NA NULL
2021 Department Of Correction Recreation Director 45258.38095 9.504260e+05 198.24 9.440000e+00 0.000 7.75 21 0.000000e+00 0.00 9.506242e+05 9.504260e+05 198.24 NULL
2021 Department Of Correction Recreation Supervisor 59446.00000 5.944600e+05 161.37 1.613700e+01 0.055 4.75 10 5.500000e-02 0.55 5.946214e+05 5.944606e+05 160.82 NULL
2021 Department Of Correction Roofer NA NA 234665.41 2.933318e+04 25767.690 4174.75 8 2.576769e+04 206141.52 NA NA NA NULL
2021 Department Of Correction Rubber Tire Repairer NA NA 1149.57 5.747850e+02 574.785 25.50 2 5.747850e+02 1149.57 NA NA NA NULL
2021 Department Of Correction Secretary 38714.00000 3.871400e+04 95.35 9.535000e+01 95.350 4.50 1 9.535000e+01 95.35 3.880935e+04 3.880935e+04 0.00 NULL
2021 Department Of Correction Secretary To The Commissioner Of Correction 85308.00000 8.530800e+04 5422.29 5.422290e+03 5422.290 107.50 1 5.422290e+03 5422.29 9.073029e+04 9.073029e+04 0.00 NULL
2021 Department Of Correction Senior Baker 46652.66667 1.399580e+05 51.21 1.707000e+01 0.000 2.00 3 0.000000e+00 0.00 1.400092e+05 1.399580e+05 51.21 NULL
2021 Department Of Correction Senior Institutional Trades Instructor 48542.50000 9.708500e+04 61428.99 3.071449e+04 30714.495 1606.00 2 3.071449e+04 61428.99 1.585140e+05 1.585140e+05 0.00 NULL
2021 Department Of Correction Senior Stationary Engineer NA NA 403666.05 5.766658e+04 46929.060 3744.00 7 4.692906e+04 328503.42 NA NA NA NULL
2021 Department Of Correction Sheet Metal Worker NA NA 380285.33 5.432648e+04 61453.120 3283.50 7 5.432648e+04 380285.33 NA NA NA NULL
2021 Department Of Correction Social Worker 58528.50000 1.170570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.170570e+05 1.170570e+05 0.00 NULL
2021 Department Of Correction Staff Analyst 67480.78629 4.723655e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.723655e+05 4.723655e+05 0.00 NULL
2021 Department Of Correction Staff Nurse 82853.42857 5.799740e+05 5966.41 8.523443e+02 472.850 96.00 7 4.728500e+02 3309.95 5.859404e+05 5.832839e+05 2656.46 NULL
2021 Department Of Correction Stationary Engineer NA NA 1623765.89 6.495064e+04 61105.820 16904.50 25 6.110582e+04 1527645.50 NA NA NA NULL
2021 Department Of Correction Steam Fitter NA NA 465478.73 5.171986e+04 61405.660 4239.75 9 5.171986e+04 465478.73 NA NA NA NULL
2021 Department Of Correction Steam Fitter’s Helper NA NA 231546.57 4.630931e+04 60678.750 2808.50 5 4.630931e+04 231546.57 NA NA NA NULL
2021 Department Of Correction Stock Worker 38536.30000 3.853630e+05 25693.09 2.569309e+03 308.695 904.75 10 3.086950e+02 3086.95 4.110561e+05 3.884500e+05 22606.14 NULL
2021 Department Of Correction Superintendent Of Laundries 61897.00000 6.189700e+04 2981.66 2.981660e+03 2981.660 66.00 1 2.981660e+03 2981.66 6.487866e+04 6.487866e+04 0.00 NULL
2021 Department Of Correction Supervising Computer Service Technician 81363.36000 8.136336e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.136336e+04 8.136336e+04 0.00 NULL
2021 Department Of Correction Supervising Housekeeper 51781.00000 1.035620e+05 40946.34 2.047317e+04 20473.170 1010.25 2 2.047317e+04 40946.34 1.445083e+05 1.445083e+05 0.00 NULL
2021 Department Of Correction Supervisor Electrician NA NA 27103.05 2.710305e+04 27103.050 276.00 1 2.710305e+04 27103.05 NA NA NA NULL
2021 Department Of Correction Supervisor Of Electrical Installations & Maintenance 78130.00000 7.813000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.813000e+04 7.813000e+04 0.00 NULL
2021 Department Of Correction Supervisor Of Mechanics NA NA 854553.40 3.051976e+04 0.000 9545.00 28 0.000000e+00 0.00 NA NA NA NULL
2021 Department Of Correction Supervisor Of Stock Workers 46613.07692 6.059700e+05 13183.74 1.014134e+03 1.860 431.25 13 1.860000e+00 24.18 6.191537e+05 6.059942e+05 13159.56 NULL
2021 Department Of Correction Supervisor Plumber NA NA 122329.13 1.223291e+05 122329.130 1106.25 1 1.223291e+05 122329.13 NA NA NA NULL
2021 Department Of Correction Supervisor Steamfitter NA NA 92863.25 9.286325e+04 92863.250 841.50 1 9.286325e+04 92863.25 NA NA NA NULL
2021 Department Of Correction Telecommunications Associate 89254.50000 1.785090e+05 2174.25 1.087125e+03 1087.125 34.00 2 1.087125e+03 2174.25 1.806832e+05 1.806832e+05 0.00 NULL
2021 Department Of Correction Thermostat Repairer NA NA 758387.29 6.894430e+04 69893.960 7183.50 11 6.894430e+04 758387.29 NA NA NA NULL
2021 Department Of Correction Tractor Operator NA NA 296396.35 9.879878e+04 99131.190 2483.90 3 9.879878e+04 296396.35 NA NA NA NULL
2021 Department Of Correction Warden 209025.00000 3.553425e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 3.553425e+06 3.553425e+06 0.00 NULL
2021 Department Of Correction Warden-Assistant Deputy Warden Ted < 11/1/92 120948.35294 1.233673e+07 3393496.68 3.326958e+04 24252.800 54291.82 102 2.425280e+04 2473785.60 1.573023e+07 1.481052e+07 919711.08 NULL
2021 Department Of Correction Warden-Deputy Warden In Comm Ted < 11/1/92 176346.00000 3.526920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.526920e+05 3.526920e+05 0.00 NULL
2021 Department Of Correction Warden-Deputy Warden Ted < 11/1/92 156817.12121 5.174965e+06 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 5.174965e+06 5.174965e+06 0.00 NULL
2021 Department Of Correction Welder NA NA 369747.79 4.108309e+04 30773.670 3599.50 9 3.077367e+04 276963.03 NA NA NA NULL
2021 Department Of Correction Worker’s Compensation Benefits Examiner 52097.00000 5.209700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.209700e+04 5.209700e+04 0.00 NULL
2021 Department Of Education Admin *Administrative Attorney 228341.00000 2.283410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.283410e+05 2.283410e+05 0.00 NULL
2021 Department Of Education Admin *Certified Wide Area Network Administrator 123575.00000 3.707250e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.707250e+05 3.707250e+05 0.00 NULL
2021 Department Of Education Admin Accountant 63351.00000 3.484305e+06 37284.90 6.779073e+02 0.000 1035.00 55 0.000000e+00 0.00 3.521590e+06 3.484305e+06 37284.90 NULL
2021 Department Of Education Admin Adm Manager-Non-Mgrl 84293.50000 6.743480e+05 0.42 5.250000e-02 0.000 0.00 8 0.000000e+00 0.00 6.743484e+05 6.743480e+05 0.42 NULL
2021 Department Of Education Admin Admin Community Relations Specialist 80009.66667 2.400290e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.400290e+05 2.400290e+05 0.00 NULL
2021 Department Of Education Admin Admin Contract Specialist 111293.00000 3.338790e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.338790e+05 3.338790e+05 0.00 NULL
2021 Department Of Education Admin Administrative Accountant 117484.66667 2.114724e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.114724e+06 2.114724e+06 0.00 NULL
2021 Department Of Education Admin Administrative Assistant To Community Education Council 44883.82353 7.630250e+05 104.34 6.137647e+00 0.000 3.75 17 0.000000e+00 0.00 7.631293e+05 7.630250e+05 104.34 NULL
2021 Department Of Education Admin Administrative Community Relations Specialist 109830.96000 2.745774e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 2.745774e+06 2.745774e+06 0.00 NULL
2021 Department Of Education Admin Administrative Director Of Social Services 99834.21053 1.896850e+06 49140.99 2.586368e+03 0.000 701.25 19 0.000000e+00 0.00 1.945991e+06 1.896850e+06 49140.99 NULL
2021 Department Of Education Admin Administrative Education Analyst 115692.69192 6.872146e+07 120598.21 2.030273e+02 0.000 1732.00 594 0.000000e+00 0.00 6.884206e+07 6.872146e+07 120598.21 NULL
2021 Department Of Education Admin Administrative Education Officer 111061.67232 7.863166e+07 179597.92 2.536694e+02 0.000 2497.00 708 0.000000e+00 0.00 7.881126e+07 7.863166e+07 179597.92 NULL
2021 Department Of Education Admin Administrative Engineer 128750.00000 2.575000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.575000e+05 2.575000e+05 0.00 NULL
2021 Department Of Education Admin Administrative Management Auditor 113334.33333 1.360012e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.360012e+06 1.360012e+06 0.00 NULL
2021 Department Of Education Admin Administrative Manager 121377.75000 2.913066e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 2.913066e+06 2.913066e+06 0.00 NULL
2021 Department Of Education Admin Administrative Procurement Analyst 109690.32258 3.400400e+06 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 3.400400e+06 3.400400e+06 0.00 NULL
2021 Department Of Education Admin Administrative Project Manager 103710.25000 4.148410e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.148410e+05 4.148410e+05 0.00 NULL
2021 Department Of Education Admin Administrative Public Health Nurse 128865.66667 3.865970e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.865970e+05 3.865970e+05 0.00 NULL
2021 Department Of Education Admin Administrative Public Information Specialist 106542.40000 2.130848e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 2.130848e+06 2.130848e+06 0.00 NULL
2021 Department Of Education Admin Administrative Quality Assurance Specialist 103072.84314 5.256715e+06 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 5.256715e+06 5.256715e+06 0.00 NULL
2021 Department Of Education Admin Administrative Retirement Benefits Specialist 135489.56250 2.167833e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.167833e+06 2.167833e+06 0.00 NULL
2021 Department Of Education Admin Administrative School Food Service Manager 112173.59091 2.467819e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 2.467819e+06 2.467819e+06 0.00 NULL
2021 Department Of Education Admin Administrative Space Analyst 118945.80000 2.378916e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 2.378916e+06 2.378916e+06 0.00 NULL
2021 Department Of Education Admin Administrative Staff Analyst 127658.32353 3.906345e+07 171.18 5.594118e-01 0.000 7.75 306 0.000000e+00 0.00 3.906362e+07 3.906345e+07 171.18 NULL
2021 Department Of Education Admin Administrative Storekeeper 107422.00000 5.371100e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.371100e+05 5.371100e+05 0.00 NULL
2021 Department Of Education Admin Administrative Supervisor Of Building Maintenance 95087.00000 9.508700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.508700e+04 9.508700e+04 0.00 NULL
2021 Department Of Education Admin Agency Attorney 97871.69867 2.525090e+07 592.91 2.298101e+00 0.000 12.75 258 0.000000e+00 0.00 2.525149e+07 2.525090e+07 592.91 NULL
2021 Department Of Education Admin Agency Attorney Interne 70042.00000 1.400840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.400840e+05 1.400840e+05 0.00 NULL
2021 Department Of Education Admin Agency Chief Contracting Officer 198102.00000 1.981020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.981020e+05 1.981020e+05 0.00 NULL
2021 Department Of Education Admin Architect 95758.00000 9.575800e+04 723.02 7.230200e+02 723.020 27.00 1 7.230200e+02 723.02 9.648102e+04 9.648102e+04 0.00 NULL
2021 Department Of Education Admin Area Manager Of School Maintenance 137534.28571 3.850960e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 3.850960e+06 3.850960e+06 0.00 NULL
2021 Department Of Education Admin Asbestos Handler 84842.12500 6.787370e+05 45256.02 5.657002e+03 990.040 776.00 8 9.900400e+02 7920.32 7.239930e+05 6.866573e+05 37335.70 NULL
2021 Department Of Education Admin Asbestos Hazard Investigator 69949.00000 6.994900e+04 9.49 9.490000e+00 9.490 0.00 1 9.490000e+00 9.49 6.995849e+04 6.995849e+04 0.00 NULL
2021 Department Of Education Admin Assistant Accountant 63186.00000 6.318600e+04 311.26 3.112600e+02 311.260 18.00 1 3.112600e+02 311.26 6.349726e+04 6.349726e+04 0.00 NULL
2021 Department Of Education Admin Assistant Architect 65640.00000 6.564000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.564000e+04 6.564000e+04 0.00 NULL
2021 Department Of Education Admin Associate Contract Specialist 83500.00000 8.350000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.350000e+04 8.350000e+04 0.00 NULL
2021 Department Of Education Admin Associate Education Analyst 105037.46000 5.251873e+06 133215.37 2.664307e+03 0.000 1669.25 50 0.000000e+00 0.00 5.385088e+06 5.251873e+06 133215.37 NULL
2021 Department Of Education Admin Associate Fingerprint Technician 44234.66667 2.654080e+05 10153.55 1.692258e+03 1176.715 420.50 6 1.176715e+03 7060.29 2.755615e+05 2.724683e+05 3093.26 NULL
2021 Department Of Education Admin Associate Human Rights Specialist 99929.00000 1.998580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.998580e+05 1.998580e+05 0.00 NULL
2021 Department Of Education Admin Associate Investigator 64982.11111 5.848390e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.848390e+05 5.848390e+05 0.00 NULL
2021 Department Of Education Admin Associate Project Manager 87067.50000 3.482700e+05 35959.11 8.989778e+03 8996.480 550.00 4 8.989778e+03 35959.11 3.842291e+05 3.842291e+05 0.00 NULL
2021 Department Of Education Admin Associate Quality Assurance Specialist 71246.07843 3.633550e+06 9686.14 1.899243e+02 0.000 235.00 51 0.000000e+00 0.00 3.643236e+06 3.633550e+06 9686.14 NULL
2021 Department Of Education Admin Associate Retirement Benefits Examiner 68737.43939 4.536671e+06 302997.70 4.590874e+03 994.420 6962.75 66 9.944200e+02 65631.72 4.839669e+06 4.602303e+06 237365.98 NULL
2021 Department Of Education Admin Associate School Food Service Manager 73386.79048 7.705613e+06 96776.15 9.216776e+02 282.590 2785.00 105 2.825900e+02 29671.95 7.802389e+06 7.735285e+06 67104.20 NULL
2021 Department Of Education Admin Associate Staff Analyst 80605.44444 2.176347e+06 1943.19 7.197000e+01 0.000 39.50 27 0.000000e+00 0.00 2.178290e+06 2.176347e+06 1943.19 NULL
2021 Department Of Education Admin Attorney At Law 107655.37880 2.153108e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.153108e+05 2.153108e+05 0.00 NULL
2021 Department Of Education Admin Bookkeeper 49839.12195 2.043404e+06 100.92 2.461463e+00 0.000 6.25 41 0.000000e+00 0.00 2.043505e+06 2.043404e+06 100.92 NULL
2021 Department Of Education Admin Bricklayer NA NA 12761.50 4.253833e+03 4584.890 180.00 3 4.253833e+03 12761.50 NA NA NA NULL
2021 Department Of Education Admin Carpenter NA NA 237842.97 4.031237e+03 642.960 2945.50 59 6.429600e+02 37934.64 NA NA NA NULL
2021 Department Of Education Admin Caseworker 47930.25000 1.917210e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.917210e+05 1.917210e+05 0.00 NULL
2021 Department Of Education Admin Certified It Administrator 110221.33333 1.587187e+07 214093.98 1.486764e+03 0.000 2774.25 144 0.000000e+00 0.00 1.608597e+07 1.587187e+07 214093.98 NULL
2021 Department Of Education Admin Certified It Developer 118455.56098 1.457003e+07 153172.24 1.245303e+03 0.000 2022.75 123 0.000000e+00 0.00 1.472321e+07 1.457003e+07 153172.24 NULL
2021 Department Of Education Admin Chauffeur-Attendant 43746.00000 4.374600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.374600e+04 4.374600e+04 0.00 NULL
2021 Department Of Education Admin Chief Administrator Of Impartial Hearings 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2021 Department Of Education Admin Chief School Business Executive 214848.00000 2.148480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.148480e+05 2.148480e+05 0.00 NULL
2021 Department Of Education Admin City Dentist 55829.80000 5.582980e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.582980e+04 5.582980e+04 0.00 NULL
2021 Department Of Education Admin City Elevator Operator 38913.00000 1.167390e+05 126.20 4.206667e+01 0.000 13.50 3 0.000000e+00 0.00 1.168652e+05 1.167390e+05 126.20 NULL
2021 Department Of Education Admin City Laborer NA NA 31995.25 1.777514e+03 1087.500 591.75 18 1.087500e+03 19575.00 NA NA NA NULL
2021 Department Of Education Admin City Medical Specialist 110541.87113 2.431921e+06 176.30 8.013636e+00 0.000 0.00 22 0.000000e+00 0.00 2.432097e+06 2.431921e+06 176.30 NULL
2021 Department Of Education Admin City Planner 97417.00000 9.741700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.741700e+04 9.741700e+04 0.00 NULL
2021 Department Of Education Admin City Research Scientist 108017.71429 7.561240e+05 135.71 1.938714e+01 0.000 7.00 7 0.000000e+00 0.00 7.562597e+05 7.561240e+05 135.71 NULL
2021 Department Of Education Admin Civil Engineer 109106.28571 7.637440e+05 93.93 1.341857e+01 0.000 0.00 7 0.000000e+00 0.00 7.638379e+05 7.637440e+05 93.93 NULL
2021 Department Of Education Admin Clerical Aide 35986.26169 3.238764e+05 362.22 4.024667e+01 0.000 23.25 9 0.000000e+00 0.00 3.242386e+05 3.238764e+05 362.22 NULL
2021 Department Of Education Admin Clerical Associate 47079.78327 1.238198e+07 25756.52 9.793354e+01 0.000 903.00 263 0.000000e+00 0.00 1.240774e+07 1.238198e+07 25756.52 NULL
2021 Department Of Education Admin Community Assistant 38648.42069 5.604021e+06 69458.97 4.790274e+02 45.950 2493.75 145 4.595000e+01 6662.75 5.673480e+06 5.610684e+06 62796.22 NULL
2021 Department Of Education Admin Community Associate 48590.50515 9.897886e+07 1530561.83 7.513804e+02 131.830 40995.25 2037 1.318300e+02 268537.71 1.005094e+08 9.924740e+07 1262024.12 NULL
2021 Department Of Education Admin Community Coordinator 66238.13604 7.200085e+07 836408.56 7.694651e+02 0.000 16830.75 1087 0.000000e+00 0.00 7.283726e+07 7.200085e+07 836408.56 NULL
2021 Department Of Education Admin Computer Aide-Non-Spvr 53232.80000 2.661640e+05 15147.14 3.029428e+03 0.000 306.25 5 0.000000e+00 0.00 2.813111e+05 2.661640e+05 15147.14 NULL
2021 Department Of Education Admin Computer Associate 76274.23762 7.703698e+06 30485.21 3.018338e+02 0.000 813.00 101 0.000000e+00 0.00 7.734183e+06 7.703698e+06 30485.21 NULL
2021 Department Of Education Admin Computer Operations Manager 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2021 Department Of Education Admin Computer Programmer Analyst 64466.71429 4.512670e+05 5613.79 8.019700e+02 0.000 143.00 7 0.000000e+00 0.00 4.568808e+05 4.512670e+05 5613.79 NULL
2021 Department Of Education Admin Computer Service Technician 57561.15385 2.993180e+06 146148.80 2.810554e+03 0.000 2771.00 52 0.000000e+00 0.00 3.139329e+06 2.993180e+06 146148.80 NULL
2021 Department Of Education Admin Computer Specialist 111136.78526 3.467468e+07 160303.84 5.137944e+02 0.000 2227.25 312 0.000000e+00 0.00 3.483498e+07 3.467468e+07 160303.84 NULL
2021 Department Of Education Admin Computer Systems Manager 136843.27168 2.367389e+07 0.00 0.000000e+00 0.000 0.00 173 0.000000e+00 0.00 2.367389e+07 2.367389e+07 0.00 NULL
2021 Department Of Education Admin Confidential Investigator 75579.25510 7.406767e+06 3917.72 3.997673e+01 0.000 122.75 98 0.000000e+00 0.00 7.410685e+06 7.406767e+06 3917.72 NULL
2021 Department Of Education Admin Confidential Strategy Planner 90096.62500 7.207730e+05 47264.48 5.908060e+03 0.000 757.00 8 0.000000e+00 0.00 7.680375e+05 7.207730e+05 47264.48 NULL
2021 Department Of Education Admin Construction Laborer NA NA 237673.37 9.903057e+03 5188.470 3618.25 24 5.188470e+03 124523.28 NA NA NA NULL
2021 Department Of Education Admin Construction Project Manager 81213.05556 1.461835e+06 23951.33 1.330629e+03 100.215 421.75 18 1.002150e+02 1803.87 1.485786e+06 1.463639e+06 22147.46 NULL
2021 Department Of Education Admin Consultant 76429.14286 5.350040e+05 467.10 6.672857e+01 0.000 21.50 7 0.000000e+00 0.00 5.354711e+05 5.350040e+05 467.10 NULL
2021 Department Of Education Admin Contract Specialist 53578.35714 7.500970e+05 151.49 1.082071e+01 0.000 9.50 14 0.000000e+00 0.00 7.502485e+05 7.500970e+05 151.49 NULL
2021 Department Of Education Admin Counsel To The Chancellor 215761.00000 4.315220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.315220e+05 4.315220e+05 0.00 NULL
2021 Department Of Education Admin Customer Information Representative Ma L 1549 57394.07667 1.721822e+07 80390.30 2.679677e+02 0.000 2535.50 300 0.000000e+00 0.00 1.729861e+07 1.721822e+07 80390.30 NULL
2021 Department Of Education Admin Deputy Auditor General 141052.33333 4.231570e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.231570e+05 4.231570e+05 0.00 NULL
2021 Department Of Education Admin Deputy Chancellor Financial Affairs 232702.00000 2.327020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.327020e+05 2.327020e+05 0.00 NULL
2021 Department Of Education Admin Deputy Executive Director 262650.00000 2.626500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.626500e+05 2.626500e+05 0.00 NULL
2021 Department Of Education Admin Deputy Executive Director Of Financial Operations 140864.00000 1.408640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.408640e+05 1.408640e+05 0.00 NULL
2021 Department Of Education Admin Deputy Inspector General 139966.40000 6.998320e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.998320e+05 6.998320e+05 0.00 NULL
2021 Department Of Education Admin Director 177477.00000 3.549540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.549540e+05 3.549540e+05 0.00 NULL
2021 Department Of Education Admin Director Of Audit And Investigation 163672.00000 1.636720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.636720e+05 1.636720e+05 0.00 NULL
2021 Department Of Education Admin Director Of Equal Opportunity 156365.00000 1.563650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.563650e+05 1.563650e+05 0.00 NULL
2021 Department Of Education Admin Director Of Headstart Program 129014.00000 2.580280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.580280e+05 2.580280e+05 0.00 NULL
2021 Department Of Education Admin Director Of Parent Involvement 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2021 Department Of Education Admin Director Of School Safety 194160.00000 1.941600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.941600e+05 1.941600e+05 0.00 NULL
2021 Department Of Education Admin District Manager Of Administration And Business Affairs 101243.84211 1.923633e+06 5164.55 2.718184e+02 0.000 90.00 19 0.000000e+00 0.00 1.928798e+06 1.923633e+06 5164.55 NULL
2021 Department Of Education Admin Education Analyst 76824.48214 4.302171e+06 5917.14 1.056632e+02 0.000 161.75 56 0.000000e+00 0.00 4.308088e+06 4.302171e+06 5917.14 NULL
2021 Department Of Education Admin Education Analyst Trainee 46220.15836 1.247944e+06 738.14 2.733852e+01 0.000 26.25 27 0.000000e+00 0.00 1.248682e+06 1.247944e+06 738.14 NULL
2021 Department Of Education Admin Education Officer 87759.93103 2.290534e+07 109497.55 4.195308e+02 0.000 1671.50 261 0.000000e+00 0.00 2.301484e+07 2.290534e+07 109497.55 NULL
2021 Department Of Education Admin Educational Management Associate 157880.59259 4.262776e+06 417.31 1.545593e+01 0.000 12.25 27 0.000000e+00 0.00 4.263193e+06 4.262776e+06 417.31 NULL
2021 Department Of Education Admin Electrician NA NA 1016115.85 6.272320e+03 2035.540 11112.50 162 2.035540e+03 329757.48 NA NA NA NULL
2021 Department Of Education Admin Electricians Helper NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2021 Department Of Education Admin Elevator Mechanic NA NA 6724.36 8.405450e+02 765.830 90.00 8 7.658300e+02 6126.64 NA NA NA NULL
2021 Department Of Education Admin Equal Rights Compliance Specialist 74377.03571 2.082557e+06 23.30 8.321429e-01 0.000 1.25 28 0.000000e+00 0.00 2.082580e+06 2.082557e+06 23.30 NULL
2021 Department Of Education Admin Executive Agency Counsel 130013.71591 1.144121e+07 10083.78 1.145884e+02 0.000 139.50 88 0.000000e+00 0.00 1.145129e+07 1.144121e+07 10083.78 NULL
2021 Department Of Education Admin Executive Assistant To The Chancellor 128231.00000 3.846930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.846930e+05 3.846930e+05 0.00 NULL
2021 Department Of Education Admin Executive Director 226086.00000 6.782580e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.782580e+05 6.782580e+05 0.00 NULL
2021 Department Of Education Admin Executive Program Specialist 211601.00000 6.348030e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.348030e+05 6.348030e+05 0.00 NULL
2021 Department Of Education Admin Exterminator 45554.05882 7.744190e+05 4127.70 2.428059e+02 64.390 148.50 17 6.439000e+01 1094.63 7.785467e+05 7.755136e+05 3033.07 NULL
2021 Department Of Education Admin Glazier NA NA 61132.55 1.018876e+04 2751.850 609.00 6 2.751850e+03 16511.10 NA NA NA NULL
2021 Department Of Education Admin Graphic Artist 71048.00000 7.104800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.104800e+04 7.104800e+04 0.00 NULL
2021 Department Of Education Admin Health Services Manager 97334.87500 1.557358e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.557358e+06 1.557358e+06 0.00 NULL
2021 Department Of Education Admin Industrial Hygienist 75318.00000 1.506360e+05 198.32 9.916000e+01 99.160 9.00 2 9.916000e+01 198.32 1.508343e+05 1.508343e+05 0.00 NULL
2021 Department Of Education Admin Interpreter/Translator 62216.28125 1.990921e+06 7710.70 2.409594e+02 0.000 251.00 32 0.000000e+00 0.00 1.998632e+06 1.990921e+06 7710.70 NULL
2021 Department Of Education Admin Investigator Empl Disc 61248.87879 2.021213e+06 6255.98 1.895752e+02 0.000 153.25 33 0.000000e+00 0.00 2.027469e+06 2.021213e+06 6255.98 NULL
2021 Department Of Education Admin Investment Analyst 85495.33333 2.564860e+05 6436.01 2.145337e+03 2713.430 169.50 3 2.145337e+03 6436.01 2.629220e+05 2.629220e+05 0.00 NULL
2021 Department Of Education Admin It Infrastructure Engineer 125250.00000 5.010000e+05 43393.56 1.084839e+04 0.000 362.50 4 0.000000e+00 0.00 5.443936e+05 5.010000e+05 43393.56 NULL
2021 Department Of Education Admin It Project Specialist 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2021 Department Of Education Admin It Security Specialist 117452.80000 1.174528e+06 5238.81 5.238810e+02 0.000 47.50 10 0.000000e+00 0.00 1.179767e+06 1.174528e+06 5238.81 NULL
2021 Department Of Education Admin It Service Management Specialist 109645.00000 3.289350e+05 1669.96 5.566533e+02 834.980 50.50 3 5.566533e+02 1669.96 3.306050e+05 3.306050e+05 0.00 NULL
2021 Department Of Education Admin Legal Secretarial Assistant 53397.00000 1.067940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.067940e+05 1.067940e+05 0.00 NULL
2021 Department Of Education Admin Locksmith NA NA 1960.02 4.900050e+02 0.000 41.00 4 0.000000e+00 0.00 NA NA NA NULL
2021 Department Of Education Admin Machinist NA NA 1435391.83 2.870784e+04 28676.550 22279.00 50 2.867655e+04 1433827.50 NA NA NA NULL
2021 Department Of Education Admin Machinist’s Helper NA NA 22449.51 7.483170e+03 491.640 423.75 3 4.916400e+02 1474.92 NA NA NA NULL
2021 Department Of Education Admin Maintenance Worker NA NA 3302.59 4.717986e+02 88.860 58.00 7 8.886000e+01 622.02 NA NA NA NULL
2021 Department Of Education Admin Management Auditor 69216.66667 1.245900e+06 166.90 9.272222e+00 0.000 8.25 18 0.000000e+00 0.00 1.246067e+06 1.245900e+06 166.90 NULL
2021 Department Of Education Admin Mechanical Engineering Intern 51411.00000 5.141100e+04 98.49 9.849000e+01 98.490 7.00 1 9.849000e+01 98.49 5.150949e+04 5.150949e+04 0.00 NULL
2021 Department Of Education Admin Media Services Technician 63158.00000 1.263160e+05 309.63 1.548150e+02 154.815 12.25 2 1.548150e+02 309.63 1.266256e+05 1.266256e+05 0.00 NULL
2021 Department Of Education Admin Mental Health Worker 46710.50000 9.342100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.342100e+04 9.342100e+04 0.00 NULL
2021 Department Of Education Admin Motor Vehicle Operator 49516.30000 4.951630e+05 42138.16 4.213816e+03 1754.960 1237.50 10 1.754960e+03 17549.60 5.373012e+05 5.127126e+05 24588.56 NULL
2021 Department Of Education Admin Occupational Therapist 64615.36191 1.889353e+08 170289.97 5.823870e+01 0.000 2305.50 2924 0.000000e+00 0.00 1.891056e+08 1.889353e+08 170289.97 NULL
2021 Department Of Education Admin Office Machine Aide 46456.66667 1.393700e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.393700e+05 1.393700e+05 0.00 NULL
2021 Department Of Education Admin Painter NA NA 13603.69 3.400923e+03 0.000 217.00 4 0.000000e+00 0.00 NA NA NA NULL
2021 Department Of Education Admin Physical Therapist 61806.90233 6.947096e+07 33001.25 2.936054e+01 0.000 413.00 1124 0.000000e+00 0.00 6.950396e+07 6.947096e+07 33001.25 NULL
2021 Department Of Education Admin Plasterer NA NA 19989.72 1.817247e+03 0.000 263.00 11 0.000000e+00 0.00 NA NA NA NULL
2021 Department Of Education Admin Plumber NA NA 469672.64 8.239871e+03 4328.780 4448.50 57 4.328780e+03 246740.46 NA NA NA NULL
2021 Department Of Education Admin Principal Administrative Associate - Non Supvr 64315.93953 1.382793e+07 26225.95 1.219812e+02 0.000 623.25 215 0.000000e+00 0.00 1.385415e+07 1.382793e+07 26225.95 NULL
2021 Department Of Education Admin Principal School-Neighborhood Worker 56043.00000 5.604300e+04 338.35 3.383500e+02 338.350 7.25 1 3.383500e+02 338.35 5.638135e+04 5.638135e+04 0.00 NULL
2021 Department Of Education Admin Procurement Analyst 69609.41071 3.898127e+06 2538.19 4.532482e+01 0.000 104.50 56 0.000000e+00 0.00 3.900665e+06 3.898127e+06 2538.19 NULL
2021 Department Of Education Admin Program Producer 92747.00000 9.274700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.274700e+04 9.274700e+04 0.00 NULL
2021 Department Of Education Admin Public Records Aide 47522.00000 7.603520e+05 10221.80 6.388625e+02 433.010 608.00 16 4.330100e+02 6928.16 7.705738e+05 7.672802e+05 3293.64 NULL
2021 Department Of Education Admin Quality Assurance Specialist 60205.67857 1.685759e+06 10617.94 3.792121e+02 0.000 415.75 28 0.000000e+00 0.00 1.696377e+06 1.685759e+06 10617.94 NULL
2021 Department Of Education Admin Quality Assurance Specialist Trainee 33541.72727 1.106877e+06 2121.95 6.430152e+01 29.710 172.25 33 2.971000e+01 980.43 1.108999e+06 1.107857e+06 1141.52 NULL
2021 Department Of Education Admin Radio Repair Mechanic NA NA 97605.82 3.485922e+03 1245.275 1234.50 28 1.245275e+03 34867.70 NA NA NA NULL
2021 Department Of Education Admin Research Assistant 65172.33333 3.910340e+05 6217.30 1.036217e+03 0.000 141.50 6 0.000000e+00 0.00 3.972513e+05 3.910340e+05 6217.30 NULL
2021 Department Of Education Admin Roofer NA NA 1552.14 1.293450e+02 0.000 31.00 12 0.000000e+00 0.00 NA NA NA NULL
2021 Department Of Education Admin School Business Manager 87151.00637 1.368271e+07 306886.38 1.954690e+03 0.000 5269.75 157 0.000000e+00 0.00 1.398959e+07 1.368271e+07 306886.38 NULL
2021 Department Of Education Admin School Computer Technology Specialist 59653.99947 1.485385e+07 240271.49 9.649457e+02 0.000 6119.75 249 0.000000e+00 0.00 1.509412e+07 1.485385e+07 240271.49 NULL
2021 Department Of Education Admin School Equipment Maintainer 41288.00000 4.128800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.128800e+04 4.128800e+04 0.00 NULL
2021 Department Of Education Admin School Food Service Manager 56558.51414 2.200126e+07 231012.52 5.938625e+02 213.660 9018.50 389 2.136600e+02 83113.74 2.223227e+07 2.208438e+07 147898.78 NULL
2021 Department Of Education Admin School Lunch Aide 32524.56058 2.227932e+07 1877551.00 2.740950e+03 4088.840 18036.00 685 2.740950e+03 1877551.00 2.415688e+07 2.415688e+07 0.00 NULL
2021 Department Of Education Admin School Lunch Assistant 42187.29213 3.754669e+06 22814.15 2.563388e+02 58.500 1231.00 89 5.850000e+01 5206.50 3.777483e+06 3.759876e+06 17607.65 NULL
2021 Department Of Education Admin School Lunch Assistant Cook 41608.66197 2.954215e+06 52795.24 7.435949e+02 161.620 2177.50 71 1.616200e+02 11475.02 3.007010e+06 2.965690e+06 41320.22 NULL
2021 Department Of Education Admin School Lunch Loader And Handler 53216.03571 1.490049e+06 233743.46 8.347981e+03 8664.000 6402.25 28 8.347981e+03 233743.46 1.723792e+06 1.723792e+06 0.00 NULL
2021 Department Of Education Admin School Plant Manager 130471.35484 8.089224e+06 0.00 0.000000e+00 0.000 0.00 62 0.000000e+00 0.00 8.089224e+06 8.089224e+06 0.00 NULL
2021 Department Of Education Admin School-Neighborhood Worker 42519.00000 8.503800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.503800e+04 8.503800e+04 0.00 NULL
2021 Department Of Education Admin Secretary 49011.00000 2.695605e+06 1586.45 2.884455e+01 0.000 63.25 55 0.000000e+00 0.00 2.697191e+06 2.695605e+06 1586.45 NULL
2021 Department Of Education Admin Secretary To Community School Board 51523.83333 6.182860e+05 3954.52 3.295433e+02 0.000 109.00 12 0.000000e+00 0.00 6.222405e+05 6.182860e+05 3954.52 NULL
2021 Department Of Education Admin Secretary To The Chancellor 73685.00000 7.368500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.368500e+04 7.368500e+04 0.00 NULL
2021 Department Of Education Admin Secretary To The Counsel To The Chancellor 75197.00000 7.519700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.519700e+04 7.519700e+04 0.00 NULL
2021 Department Of Education Admin Secretary To The Deputy Chancellor 93221.22222 8.389910e+05 863.78 9.597556e+01 0.000 13.00 9 0.000000e+00 0.00 8.398548e+05 8.389910e+05 863.78 NULL
2021 Department Of Education Admin Secretary To The Special Commissioner Investigation Nyc Sch 90928.00000 9.092800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.092800e+04 9.092800e+04 0.00 NULL
2021 Department Of Education Admin Senior Estimator 89369.00000 8.936900e+04 207.55 2.075500e+02 207.550 7.00 1 2.075500e+02 207.55 8.957655e+04 8.957655e+04 0.00 NULL
2021 Department Of Education Admin Senior Occupational Therapist 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2021 Department Of Education Admin Senior School Lunch Aide 38192.25874 1.092299e+07 240399.98 8.405594e+02 143.540 10459.25 286 1.435400e+02 41052.44 1.116339e+07 1.096404e+07 199347.54 NULL
2021 Department Of Education Admin Senior School-Neighborhood Worker 53416.00000 1.602480e+05 180.26 6.008667e+01 0.000 10.75 3 0.000000e+00 0.00 1.604283e+05 1.602480e+05 180.26 NULL
2021 Department Of Education Admin Service Inspector 45748.75000 1.829950e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.829950e+05 1.829950e+05 0.00 NULL
2021 Department Of Education Admin Sign Language Interpreter 104850.80336 3.984331e+06 77640.12 2.043161e+03 2111.810 1197.00 38 2.043161e+03 77640.12 4.061971e+06 4.061971e+06 0.00 NULL
2021 Department Of Education Admin Special Assistant 127785.18182 1.405637e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.405637e+06 1.405637e+06 0.00 NULL
2021 Department Of Education Admin Special Assistant To Member Of The Board Of Education 135592.00000 9.491440e+05 153.75 2.196429e+01 0.000 7.50 7 0.000000e+00 0.00 9.492978e+05 9.491440e+05 153.75 NULL
2021 Department Of Education Admin Special Assistant To The Chancellor 150531.30000 1.505313e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.505313e+06 1.505313e+06 0.00 NULL
2021 Department Of Education Admin Special Commissioner Of Investigation-Nyc School Dist. Doi 229836.00000 2.298360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.298360e+05 2.298360e+05 0.00 NULL
2021 Department Of Education Admin Special Officer 46033.91176 1.565153e+06 91631.45 2.695043e+03 348.355 3022.50 34 3.483550e+02 11844.07 1.656784e+06 1.576997e+06 79787.38 NULL
2021 Department Of Education Admin Staff Analyst 63486.90000 6.348690e+05 21267.54 2.126754e+03 484.250 439.75 10 4.842500e+02 4842.50 6.561365e+05 6.397115e+05 16425.04 NULL
2021 Department Of Education Admin Staff Audiologist 74323.60000 3.716180e+05 16.01 3.202000e+00 0.000 0.25 5 0.000000e+00 0.00 3.716340e+05 3.716180e+05 16.01 NULL
2021 Department Of Education Admin Staff Nurse 56436.54202 6.399904e+07 5697445.76 5.024203e+03 0.000 65637.05 1134 0.000000e+00 0.00 6.969648e+07 6.399904e+07 5697445.76 NULL
2021 Department Of Education Admin Steam Fitter NA NA 489637.50 8.298941e+03 7205.000 4451.25 59 7.205000e+03 425095.00 NA NA NA NULL
2021 Department Of Education Admin Steam Fitter’s Helper NA NA 136991.25 3.424781e+04 37475.625 1660.50 4 3.424781e+04 136991.25 NA NA NA NULL
2021 Department Of Education Admin Stock Worker 41825.86474 3.764328e+05 430.88 4.787556e+01 0.000 19.25 9 0.000000e+00 0.00 3.768637e+05 3.764328e+05 430.88 NULL
2021 Department Of Education Admin Strategi Initiative Specialist 97533.00000 9.753300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.753300e+04 9.753300e+04 0.00 NULL
2021 Department Of Education Admin Strategic Initiative Specialist 94146.00000 9.414600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.414600e+04 9.414600e+04 0.00 NULL
2021 Department Of Education Admin Substance Abuse Prevention & Intervention Specialist 64021.47692 1.664558e+07 30770.06 1.183464e+02 0.000 857.50 260 0.000000e+00 0.00 1.667635e+07 1.664558e+07 30770.06 NULL
2021 Department Of Education Admin Supervising Computer Service Technician 75983.41071 3.191303e+06 111500.08 2.654764e+03 0.000 1703.00 42 0.000000e+00 0.00 3.302803e+06 3.191303e+06 111500.08 NULL
2021 Department Of Education Admin Supervising Therapist 78348.87662 5.562770e+06 30192.61 4.252480e+02 0.000 289.50 71 0.000000e+00 0.00 5.592963e+06 5.562770e+06 30192.61 NULL
2021 Department Of Education Admin Supervisor 78428.50000 3.137140e+05 61046.58 1.526165e+04 15698.905 1124.00 4 1.526165e+04 61046.58 3.747606e+05 3.747606e+05 0.00 NULL
2021 Department Of Education Admin Supervisor Bricklayer NA NA 26693.78 1.334689e+04 13346.890 428.00 2 1.334689e+04 26693.78 NA NA NA NULL
2021 Department Of Education Admin Supervisor Carpenter NA NA 7696.40 1.099486e+03 326.600 85.00 7 3.266000e+02 2286.20 NA NA NA NULL
2021 Department Of Education Admin Supervisor Electrician NA NA 39159.48 2.610632e+03 0.000 397.00 15 0.000000e+00 0.00 NA NA NA NULL
2021 Department Of Education Admin Supervisor I 62398.50000 2.495940e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.495940e+05 2.495940e+05 0.00 NULL
2021 Department Of Education Admin Supervisor I Social Work 67677.00000 1.353540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.353540e+05 1.353540e+05 0.00 NULL
2021 Department Of Education Admin Supervisor Ii 69275.00000 1.385500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.385500e+05 1.385500e+05 0.00 NULL
2021 Department Of Education Admin Supervisor Of Electrical Installations & Maintenance 81383.70000 1.627674e+06 21883.94 1.094197e+03 151.565 386.25 20 1.515650e+02 3031.30 1.649558e+06 1.630705e+06 18852.64 NULL
2021 Department Of Education Admin Supervisor Of Mechanical Installations & Maintenance 81075.47619 1.702585e+06 27021.78 1.286751e+03 29.060 541.75 21 2.906000e+01 610.26 1.729607e+06 1.703195e+06 26411.52 NULL
2021 Department Of Education Admin Supervisor Of Mechanics NA NA 202829.36 5.965569e+03 575.730 2289.00 34 5.757300e+02 19574.82 NA NA NA NULL
2021 Department Of Education Admin Supervisor Of Nurses 67411.15477 3.235735e+06 476417.82 9.925371e+03 756.380 4046.05 48 7.563800e+02 36306.24 3.712153e+06 3.272042e+06 440111.58 NULL
2021 Department Of Education Admin Supervisor Of Office Machine Operations 44180.25000 1.767210e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.767210e+05 1.767210e+05 0.00 NULL
2021 Department Of Education Admin Supervisor Of Stock Workers 67494.00000 2.024820e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.024820e+05 2.024820e+05 0.00 NULL
2021 Department Of Education Admin Supervisor Plasterer NA NA 6395.39 3.197695e+03 3197.695 82.00 2 3.197695e+03 6395.39 NA NA NA NULL
2021 Department Of Education Admin Supervisor Plumber NA NA 74530.92 6.775538e+03 8680.530 674.00 11 6.775538e+03 74530.92 NA NA NA NULL
2021 Department Of Education Admin Supervisor Roofer NA NA 499.44 2.497200e+02 249.720 0.00 2 2.497200e+02 499.44 NA NA NA NULL
2021 Department Of Education Admin Supervisor Steamfitter NA NA 77406.00 1.290100e+04 14535.000 679.00 6 1.290100e+04 77406.00 NA NA NA NULL
2021 Department Of Education Admin Telecommunication Manager 117218.00000 2.344360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.344360e+05 2.344360e+05 0.00 NULL
2021 Department Of Education Admin Telecommunications Associate 81193.61538 2.111034e+06 6225.83 2.394550e+02 0.000 142.50 26 0.000000e+00 0.00 2.117260e+06 2.111034e+06 6225.83 NULL
2021 Department Of Education Admin Thermostat Repairer NA NA 178694.15 1.985491e+04 14675.620 1692.50 9 1.467562e+04 132080.58 NA NA NA NULL
2021 Department Of Finance *Attorney At Law 111214.90909 1.223364e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.223364e+06 1.223364e+06 0.00 NULL
2021 Department Of Finance Accountant 72644.73333 1.089671e+06 27180.57 1.812038e+03 0.000 472.25 15 0.000000e+00 0.00 1.116852e+06 1.089671e+06 27180.57 NULL
2021 Department Of Finance Actuarial Specialist Level Ii, Oj 112293.00000 1.122930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.122930e+05 1.122930e+05 0.00 NULL
2021 Department Of Finance Adm Manager-Non-Mgrl 83173.01163 7.152879e+06 161474.40 1.877609e+03 0.000 3111.25 86 0.000000e+00 0.00 7.314353e+06 7.152879e+06 161474.40 NULL
2021 Department Of Finance Admin Contract Specialist 110156.40000 5.507820e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.507820e+05 5.507820e+05 0.00 NULL
2021 Department Of Finance Administrative Accountant 108738.44444 9.786460e+05 4072.31 4.524789e+02 0.000 76.75 9 0.000000e+00 0.00 9.827183e+05 9.786460e+05 4072.31 NULL
2021 Department Of Finance Administrative Actuary 144200.00000 1.442000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.442000e+05 1.442000e+05 0.00 NULL
2021 Department Of Finance Administrative Architect 94786.00000 9.478600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.478600e+04 9.478600e+04 0.00 NULL
2021 Department Of Finance Administrative Assessor 147081.75000 5.883270e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.883270e+05 5.883270e+05 0.00 NULL
2021 Department Of Finance Administrative City Planner 146550.50000 5.862020e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.862020e+05 5.862020e+05 0.00 NULL
2021 Department Of Finance Administrative Deputy Register 119309.33333 3.579280e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.579280e+05 3.579280e+05 0.00 NULL
2021 Department Of Finance Administrative Investigator 132810.00000 3.984300e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.984300e+05 3.984300e+05 0.00 NULL
2021 Department Of Finance Administrative Labor Relations Analyst 112257.57143 7.858030e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.858030e+05 7.858030e+05 0.00 NULL
2021 Department Of Finance Administrative Management Auditor 145293.00000 1.452930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.452930e+05 1.452930e+05 0.00 NULL
2021 Department Of Finance Administrative Manager 119529.75000 4.781190e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.781190e+05 4.781190e+05 0.00 NULL
2021 Department Of Finance Administrative Procurement Analyst-Non-Mgrl 103757.28571 7.263010e+05 1176.95 1.681357e+02 1.000 20.00 7 1.000000e+00 7.00 7.274779e+05 7.263080e+05 1169.95 NULL
2021 Department Of Finance Administrative Public Information Specialist 105931.66667 3.177950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.177950e+05 3.177950e+05 0.00 NULL
2021 Department Of Finance Administrative Quality Assurance Specialist 84254.00000 8.425400e+04 305.52 3.055200e+02 305.520 5.25 1 3.055200e+02 305.52 8.455952e+04 8.455952e+04 0.00 NULL
2021 Department Of Finance Administrative Space Analyst 88910.00000 1.778200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.778200e+05 1.778200e+05 0.00 NULL
2021 Department Of Finance Administrative Staff Analyst 112097.21495 1.199440e+07 153842.87 1.437784e+03 0.000 2390.50 107 0.000000e+00 0.00 1.214824e+07 1.199440e+07 153842.87 NULL
2021 Department Of Finance Administrative Storekeeper 106542.66667 3.196280e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.196280e+05 3.196280e+05 0.00 NULL
2021 Department Of Finance Administrative Supervisor Of Building Maintenance 97711.00000 1.954220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.954220e+05 1.954220e+05 0.00 NULL
2021 Department Of Finance Administrative Tax Auditor 121458.71429 4.251055e+06 2405.70 6.873429e+01 0.000 33.50 35 0.000000e+00 0.00 4.253461e+06 4.251055e+06 2405.70 NULL
2021 Department Of Finance Agency Attorney 95362.40000 1.907248e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.907248e+06 1.907248e+06 0.00 NULL
2021 Department Of Finance Agency Attorney Interne 71757.00000 7.175700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.175700e+04 7.175700e+04 0.00 NULL
2021 Department Of Finance Agency Chief Contracting Officer 160925.00000 1.609250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.609250e+05 1.609250e+05 0.00 NULL
2021 Department Of Finance Assistant City Assessor 51586.41250 4.126913e+06 7443.90 9.304875e+01 0.000 221.00 80 0.000000e+00 0.00 4.134357e+06 4.126913e+06 7443.90 NULL
2021 Department Of Finance Assistant Commissioner 180984.66667 5.429540e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.429540e+05 5.429540e+05 0.00 NULL
2021 Department Of Finance Associate Fraud Investigator 72520.26923 1.885527e+06 470334.88 1.808980e+04 1297.120 7656.75 26 1.297120e+03 33725.12 2.355862e+06 1.919252e+06 436609.76 NULL
2021 Department Of Finance Associate Labor Relations Analyst 86445.33333 2.593360e+05 157.61 5.253667e+01 0.000 3.50 3 0.000000e+00 0.00 2.594936e+05 2.593360e+05 157.61 NULL
2021 Department Of Finance Associate Staff Analyst 80029.92308 2.080778e+06 32356.34 1.244475e+03 0.000 557.75 26 0.000000e+00 0.00 2.113134e+06 2.080778e+06 32356.34 NULL
2021 Department Of Finance Asst Commissioner 177228.00000 1.772280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.772280e+05 1.772280e+05 0.00 NULL
2021 Department Of Finance Cashier 47313.00000 1.892520e+05 414.72 1.036800e+02 0.000 14.00 4 0.000000e+00 0.00 1.896667e+05 1.892520e+05 414.72 NULL
2021 Department Of Finance Certified It Administrator 117824.58333 1.413895e+06 166738.32 1.389486e+04 12602.865 2022.50 12 1.260286e+04 151234.38 1.580633e+06 1.565129e+06 15503.94 NULL
2021 Department Of Finance City Assessor 88033.03333 7.922973e+06 425680.76 4.729786e+03 2022.950 6180.00 90 2.022950e+03 182065.50 8.348654e+06 8.105038e+06 243615.26 NULL
2021 Department Of Finance City Laborer NA NA 83221.26 6.401635e+03 2895.460 1519.25 13 2.895460e+03 37640.98 NA NA NA NULL
2021 Department Of Finance City Planner 73024.50000 1.460490e+05 8870.85 4.435425e+03 4435.425 154.75 2 4.435425e+03 8870.85 1.549199e+05 1.549199e+05 0.00 NULL
2021 Department Of Finance City Planning Technician 44271.33333 1.328140e+05 13.22 4.406667e+00 0.260 0.00 3 2.600000e-01 0.78 1.328272e+05 1.328148e+05 12.44 NULL
2021 Department Of Finance City Register 194800.00000 1.948000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.948000e+05 1.948000e+05 0.00 NULL
2021 Department Of Finance City Research Scientist 92187.06897 2.673425e+06 21688.90 7.478931e+02 0.000 324.75 29 0.000000e+00 0.00 2.695114e+06 2.673425e+06 21688.90 NULL
2021 Department Of Finance City Tax Auditor 67522.22678 2.471314e+07 55438.68 1.514718e+02 0.000 968.25 366 0.000000e+00 0.00 2.476857e+07 2.471314e+07 55438.68 NULL
2021 Department Of Finance Clerical Aide 38957.66667 7.012380e+05 199.08 1.106000e+01 0.000 8.00 18 0.000000e+00 0.00 7.014371e+05 7.012380e+05 199.08 NULL
2021 Department Of Finance Clerical Associate 44246.16479 1.181373e+07 79718.77 2.985722e+02 0.000 2560.00 267 0.000000e+00 0.00 1.189344e+07 1.181373e+07 79718.77 NULL
2021 Department Of Finance College Aide 4631.04002 2.778624e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.778624e+04 2.778624e+04 0.00 NULL
2021 Department Of Finance Commissioner Of Finance 243171.00000 4.863420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863420e+05 4.863420e+05 0.00 NULL
2021 Department Of Finance Community Assistant 39328.00000 1.573120e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.573120e+05 1.573120e+05 0.00 NULL
2021 Department Of Finance Community Associate 51582.00000 3.094920e+05 2049.47 3.415783e+02 0.000 77.00 6 0.000000e+00 0.00 3.115415e+05 3.094920e+05 2049.47 NULL
2021 Department Of Finance Community Coordinator 72024.07143 1.008337e+06 2949.04 2.106457e+02 0.000 49.25 14 0.000000e+00 0.00 1.011286e+06 1.008337e+06 2949.04 NULL
2021 Department Of Finance Community Service Aide 35562.00000 3.556200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.556200e+04 3.556200e+04 0.00 NULL
2021 Department Of Finance Computer Aide-Non-Spvr 65652.00000 1.313040e+05 467.20 2.336000e+02 233.600 12.00 2 2.336000e+02 467.20 1.317712e+05 1.317712e+05 0.00 NULL
2021 Department Of Finance Computer Associate 78606.23810 1.650731e+06 49966.52 2.379358e+03 44.280 961.50 21 4.428000e+01 929.88 1.700698e+06 1.651661e+06 49036.64 NULL
2021 Department Of Finance Computer Programmer Analyst 58143.66667 3.488620e+05 11899.77 1.983295e+03 0.000 277.00 6 0.000000e+00 0.00 3.607618e+05 3.488620e+05 11899.77 NULL
2021 Department Of Finance Computer Specialist 107663.02532 8.505379e+06 141833.35 1.795359e+03 0.000 1950.00 79 0.000000e+00 0.00 8.647212e+06 8.505379e+06 141833.35 NULL
2021 Department Of Finance Computer Systems Manager 137910.67647 1.875585e+07 158600.18 1.166178e+03 0.000 1842.00 136 0.000000e+00 0.00 1.891445e+07 1.875585e+07 158600.18 NULL
2021 Department Of Finance Confidential Strategy Planner 85608.00000 8.560800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.560800e+04 8.560800e+04 0.00 NULL
2021 Department Of Finance Counsel 213000.00000 2.130000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.130000e+05 2.130000e+05 0.00 NULL
2021 Department Of Finance Deputy City Sheriff - Non-Spvr 68226.53488 8.801223e+06 4464713.48 3.461018e+04 30244.550 85918.59 129 3.024455e+04 3901546.95 1.326594e+07 1.270277e+07 563166.53 NULL
2021 Department Of Finance Deputy Commissioner 217309.25000 8.692370e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.692370e+05 8.692370e+05 0.00 NULL
2021 Department Of Finance Director Of Public Information 125000.00000 2.500000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.500000e+05 2.500000e+05 0.00 NULL
2021 Department Of Finance Economist 83134.16667 4.988050e+05 41665.77 6.944295e+03 1739.035 709.50 6 1.739035e+03 10434.21 5.404708e+05 5.092392e+05 31231.56 NULL
2021 Department Of Finance Examiner Of Accounts 95737.50000 1.914750e+05 3180.46 1.590230e+03 1590.230 44.50 2 1.590230e+03 3180.46 1.946555e+05 1.946555e+05 0.00 NULL
2021 Department Of Finance Executive Agency Counsel 145415.86364 3.199149e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 3.199149e+06 3.199149e+06 0.00 NULL
2021 Department Of Finance Executive Program Specialist 213000.00000 2.130000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.130000e+05 2.130000e+05 0.00 NULL
2021 Department Of Finance Fraud Investigator 41483.00000 8.296600e+04 13929.85 6.964925e+03 6964.925 370.25 2 6.964925e+03 13929.85 9.689585e+04 9.689585e+04 0.00 NULL
2021 Department Of Finance Graphic Artist 85798.00000 1.715960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.715960e+05 1.715960e+05 0.00 NULL
2021 Department Of Finance Hearing Officer 42411.16267 4.622817e+06 0.00 0.000000e+00 0.000 0.00 109 0.000000e+00 0.00 4.622817e+06 4.622817e+06 0.00 NULL
2021 Department Of Finance Investigator 43971.80000 2.198590e+05 4052.23 8.104460e+02 0.000 144.00 5 0.000000e+00 0.00 2.239112e+05 2.198590e+05 4052.23 NULL
2021 Department Of Finance Labor Relations Analyst 75846.50000 1.516930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.516930e+05 1.516930e+05 0.00 NULL
2021 Department Of Finance Legal Secretarial Assistant 55855.00000 1.117100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.117100e+05 1.117100e+05 0.00 NULL
2021 Department Of Finance Management Auditor 81867.33333 4.912040e+05 8742.74 1.457123e+03 0.000 134.25 6 0.000000e+00 0.00 4.999467e+05 4.912040e+05 8742.74 NULL
2021 Department Of Finance Motor Vehicle Operator 46771.66667 1.403150e+05 1571.65 5.238833e+02 143.460 45.50 3 1.434600e+02 430.38 1.418866e+05 1.407454e+05 1141.27 NULL
2021 Department Of Finance Motor Vehicle Supervisor 57976.00000 5.797600e+04 249.90 2.499000e+02 249.900 6.00 1 2.499000e+02 249.90 5.822590e+04 5.822590e+04 0.00 NULL
2021 Department Of Finance Principal Administrative Associate - Non Supvr 61778.57600 1.544464e+07 147086.41 5.883456e+02 0.000 3597.05 250 0.000000e+00 0.00 1.559173e+07 1.544464e+07 147086.41 NULL
2021 Department Of Finance Procurement Analyst 74905.20000 7.490520e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.490520e+05 7.490520e+05 0.00 NULL
2021 Department Of Finance Public Records Aide 41978.00000 4.197800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.197800e+04 4.197800e+04 0.00 NULL
2021 Department Of Finance Secretary 49313.20000 2.465660e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.465660e+05 2.465660e+05 0.00 NULL
2021 Department Of Finance Secretary Of Comm 93242.00000 9.324200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.324200e+04 9.324200e+04 0.00 NULL
2021 Department Of Finance Secretary To Deputy Commissioner 61800.00000 6.180000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.180000e+04 6.180000e+04 0.00 NULL
2021 Department Of Finance Senior Estimator 77921.00000 7.792100e+04 2452.93 2.452930e+03 2452.930 49.75 1 2.452930e+03 2452.93 8.037393e+04 8.037393e+04 0.00 NULL
2021 Department Of Finance Special Officer 50207.00000 1.004140e+05 28298.30 1.414915e+04 14149.150 768.00 2 1.414915e+04 28298.30 1.287123e+05 1.287123e+05 0.00 NULL
2021 Department Of Finance Staff Analyst 67683.71429 9.475720e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 9.475720e+05 9.475720e+05 0.00 NULL
2021 Department Of Finance Supervising Deputy Sheriff - Al 1 Only 40 Hr 107437.13333 1.611557e+06 1045685.41 6.971236e+04 46206.120 12431.00 15 4.620612e+04 693091.80 2.657242e+06 2.304649e+06 352593.61 NULL
2021 Department Of Finance Supervising Special Officer 60890.16667 3.653410e+05 9467.91 1.577985e+03 527.590 229.00 6 5.275900e+02 3165.54 3.748089e+05 3.685065e+05 6302.37 NULL
2021 Department Of Finance Tax Map Cartographer 75379.00000 1.507580e+05 28.28 1.414000e+01 14.140 0.00 2 1.414000e+01 28.28 1.507863e+05 1.507863e+05 0.00 NULL
2021 Department Of Finance Telecommunications Associate 54022.00000 5.402200e+04 3915.26 3.915260e+03 3915.260 91.00 1 3.915260e+03 3915.26 5.793726e+04 5.793726e+04 0.00 NULL
2021 Department Of Investigation Adm Manager-Non-Mgrl 82489.22222 7.424030e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.424030e+05 7.424030e+05 0.00 NULL
2021 Department Of Investigation Administrative Manager 118782.75000 4.751310e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.751310e+05 4.751310e+05 0.00 NULL
2021 Department Of Investigation Administrative Public Information Specialist 121809.33333 3.654280e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.654280e+05 3.654280e+05 0.00 NULL
2021 Department Of Investigation Administrative Staff Analyst 116576.00000 2.331520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.331520e+05 2.331520e+05 0.00 NULL
2021 Department Of Investigation Associate Staff Analyst 91334.00000 9.133400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.133400e+04 9.133400e+04 0.00 NULL
2021 Department Of Investigation Clerical Associate 53168.23077 6.911870e+05 102.92 7.916923e+00 0.000 3.50 13 0.000000e+00 0.00 6.912899e+05 6.911870e+05 102.92 NULL
2021 Department Of Investigation Commissioner 237240.00000 2.372400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.372400e+05 2.372400e+05 0.00 NULL
2021 Department Of Investigation Community Assistant 27340.91000 8.202273e+04 329.77 1.099233e+02 136.360 14.25 3 1.099233e+02 329.77 8.235250e+04 8.235250e+04 0.00 NULL
2021 Department Of Investigation Community Associate 52119.53846 6.775540e+05 185.16 1.424308e+01 0.000 5.00 13 0.000000e+00 0.00 6.777392e+05 6.775540e+05 185.16 NULL
2021 Department Of Investigation Community Coordinator 70955.50000 2.838220e+05 525.33 1.313325e+02 5.415 10.25 4 5.415000e+00 21.66 2.843473e+05 2.838437e+05 503.67 NULL
2021 Department Of Investigation Computer Associate 75484.72000 3.774236e+05 19147.47 3.829494e+03 0.000 388.50 5 0.000000e+00 0.00 3.965711e+05 3.774236e+05 19147.47 NULL
2021 Department Of Investigation Computer Specialist 100405.50000 2.008110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.008110e+05 2.008110e+05 0.00 NULL
2021 Department Of Investigation Computer Systems Manager 132724.57143 9.290720e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.290720e+05 9.290720e+05 0.00 NULL
2021 Department Of Investigation Confidential Investigator 59929.39252 6.412445e+06 20002.09 1.869354e+02 0.000 457.75 107 0.000000e+00 0.00 6.432447e+06 6.412445e+06 20002.09 NULL
2021 Department Of Investigation Confidential Secretary To The Deputy Commissioner 67938.00000 1.358760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.358760e+05 1.358760e+05 0.00 NULL
2021 Department Of Investigation Customer Information Representative Ma L 1549 42629.50000 8.525900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.525900e+04 8.525900e+04 0.00 NULL
2021 Department Of Investigation Deputy Commissioner 199982.33333 5.999470e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.999470e+05 5.999470e+05 0.00 NULL
2021 Department Of Investigation Deputy Inspector General 108331.81081 4.008277e+06 2396.72 6.477622e+01 0.000 41.00 37 0.000000e+00 0.00 4.010674e+06 4.008277e+06 2396.72 NULL
2021 Department Of Investigation Examiner Of Accounts 99594.33333 2.987830e+05 784.69 2.615633e+02 0.000 13.00 3 0.000000e+00 0.00 2.995677e+05 2.987830e+05 784.69 NULL
2021 Department Of Investigation Examining Attorney 110854.50000 1.551963e+06 741.28 5.294857e+01 0.000 12.00 14 0.000000e+00 0.00 1.552704e+06 1.551963e+06 741.28 NULL
2021 Department Of Investigation Inspector General 151251.36364 3.327530e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 3.327530e+06 3.327530e+06 0.00 NULL
2021 Department Of Investigation Principal Administrative Associate - Non Supvr 70609.87500 5.648790e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.648790e+05 5.648790e+05 0.00 NULL
2021 Department Of Investigation Procurement Analyst 81130.00000 1.622600e+05 139.57 6.978500e+01 69.785 3.00 2 6.978500e+01 139.57 1.623996e+05 1.623996e+05 0.00 NULL
2021 Department Of Investigation Secretary 50534.00000 1.010680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.010680e+05 1.010680e+05 0.00 NULL
2021 Department Of Investigation Special Investigator 78191.99080 7.819199e+06 91309.28 9.130928e+02 0.000 1776.50 100 0.000000e+00 0.00 7.910508e+06 7.819199e+06 91309.28 NULL
2021 Department Of Juvenile Justice Electrician NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Department Of Probation *Attorney At Law 91563.00000 1.831260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.831260e+05 1.831260e+05 0.00 NULL
2021 Department Of Probation Adm Manager-Non-Mgrl 78404.78571 1.097667e+06 29601.87 2.114419e+03 0.000 526.50 14 0.000000e+00 0.00 1.127269e+06 1.097667e+06 29601.87 NULL
2021 Department Of Probation Admin Contract Specialist 175101.00000 1.751010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.751010e+05 1.751010e+05 0.00 NULL
2021 Department Of Probation Administrative Contract Specialist 78280.00000 7.828000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.828000e+04 7.828000e+04 0.00 NULL
2021 Department Of Probation Administrative Director Of Social Services 185000.00000 1.850000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.850000e+05 1.850000e+05 0.00 NULL
2021 Department Of Probation Administrative Graphic Artist 98159.00000 9.815900e+04 243.80 2.438000e+02 243.800 4.50 1 2.438000e+02 243.80 9.840280e+04 9.840280e+04 0.00 NULL
2021 Department Of Probation Administrative Probation Officer 101997.27451 5.201861e+06 6758.61 1.325218e+02 0.000 130.25 51 0.000000e+00 0.00 5.208620e+06 5.201861e+06 6758.61 NULL
2021 Department Of Probation Administrative Procurement Analyst-Non-Mgrl 74288.50000 1.485770e+05 1522.01 7.610050e+02 761.005 32.50 2 7.610050e+02 1522.01 1.500990e+05 1.500990e+05 0.00 NULL
2021 Department Of Probation Administrative Public Information Specialist 94270.50000 1.885410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.885410e+05 1.885410e+05 0.00 NULL
2021 Department Of Probation Administrative Staff Analyst 123323.55556 1.109912e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.109912e+06 1.109912e+06 0.00 NULL
2021 Department Of Probation Agency Attorney 96685.57143 6.767990e+05 2343.27 3.347529e+02 0.000 38.50 7 0.000000e+00 0.00 6.791423e+05 6.767990e+05 2343.27 NULL
2021 Department Of Probation Agency Chief Contracting Officer 132816.00000 1.328160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.328160e+05 1.328160e+05 0.00 NULL
2021 Department Of Probation Certified It Administrator 94244.00000 9.424400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.424400e+04 9.424400e+04 0.00 NULL
2021 Department Of Probation City Attendant 42757.00000 4.275700e+04 9.04 9.040000e+00 9.040 0.00 1 9.040000e+00 9.04 4.276604e+04 4.276604e+04 0.00 NULL
2021 Department Of Probation City Laborer NA NA 13000.22 6.500110e+03 6500.110 213.75 2 6.500110e+03 13000.22 NA NA NA NULL
2021 Department Of Probation City Research Scientist 107680.00000 8.614400e+05 8464.68 1.058085e+03 0.000 165.50 8 0.000000e+00 0.00 8.699047e+05 8.614400e+05 8464.68 NULL
2021 Department Of Probation Clerical Associate 43097.10526 1.637690e+06 1028.87 2.707553e+01 0.000 33.00 38 0.000000e+00 0.00 1.638719e+06 1.637690e+06 1028.87 NULL
2021 Department Of Probation College Aide 18616.24000 9.308120e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.308120e+04 9.308120e+04 0.00 NULL
2021 Department Of Probation Community Assistant 32013.87445 3.521526e+05 25.90 2.354545e+00 0.000 1.00 11 0.000000e+00 0.00 3.521785e+05 3.521526e+05 25.90 NULL
2021 Department Of Probation Community Associate 46163.40541 1.708046e+06 20596.22 5.566546e+02 0.000 763.00 37 0.000000e+00 0.00 1.728642e+06 1.708046e+06 20596.22 NULL
2021 Department Of Probation Community Coordinator 70923.72222 1.276627e+06 26609.40 1.478300e+03 0.000 575.50 18 0.000000e+00 0.00 1.303236e+06 1.276627e+06 26609.40 NULL
2021 Department Of Probation Community Service Aide 32796.31579 6.231300e+05 6911.39 3.637574e+02 0.000 316.50 19 0.000000e+00 0.00 6.300414e+05 6.231300e+05 6911.39 NULL
2021 Department Of Probation Computer Associate 76587.00000 7.658700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.658700e+04 7.658700e+04 0.00 NULL
2021 Department Of Probation Computer Service Technician 49033.50000 9.806700e+04 561.48 2.807400e+02 280.740 20.00 2 2.807400e+02 561.48 9.862848e+04 9.862848e+04 0.00 NULL
2021 Department Of Probation Computer Specialist 104205.80000 5.210290e+05 98871.89 1.977438e+04 14249.880 1225.50 5 1.424988e+04 71249.40 6.199009e+05 5.922784e+05 27622.49 NULL
2021 Department Of Probation Counsel 191881.00000 1.918810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.918810e+05 1.918810e+05 0.00 NULL
2021 Department Of Probation Deputy Director Of Probation 186404.50000 3.728090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.728090e+05 3.728090e+05 0.00 NULL
2021 Department Of Probation Director Of Probation 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2021 Department Of Probation District Supervisor 80784.00000 8.078400e+04 11635.93 1.163593e+04 11635.930 200.50 1 1.163593e+04 11635.93 9.241993e+04 9.241993e+04 0.00 NULL
2021 Department Of Probation Executive Agency Counsel 158147.66667 4.744430e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.744430e+05 4.744430e+05 0.00 NULL
2021 Department Of Probation Executive Dir Of Administration 192678.00000 1.926780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.926780e+05 1.926780e+05 0.00 NULL
2021 Department Of Probation Executive Program Specialist 132588.00000 1.325880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.325880e+05 1.325880e+05 0.00 NULL
2021 Department Of Probation Investigator 42304.00000 4.230400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.230400e+04 4.230400e+04 0.00 NULL
2021 Department Of Probation Press Officer 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2021 Department Of Probation Principal Administrative Associate - Non Supvr 59861.57143 1.676124e+06 10681.24 3.814729e+02 0.000 280.75 28 0.000000e+00 0.00 1.686805e+06 1.676124e+06 10681.24 NULL
2021 Department Of Probation Probation Assistant 36048.09357 5.046733e+05 692.19 4.944214e+01 0.000 28.25 14 0.000000e+00 0.00 5.053655e+05 5.046733e+05 692.19 NULL
2021 Department Of Probation Probation Officer 58590.38318 3.761503e+07 800080.55 1.246231e+03 0.000 18735.70 642 0.000000e+00 0.00 3.841511e+07 3.761503e+07 800080.55 NULL
2021 Department Of Probation Probation Officer Trainee 47093.70000 1.412811e+06 60940.68 2.031356e+03 103.725 1757.25 30 1.037250e+02 3111.75 1.473752e+06 1.415923e+06 57828.93 NULL
2021 Department Of Probation Procurement Analyst 58688.00000 5.868800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.868800e+04 5.868800e+04 0.00 NULL
2021 Department Of Probation Secretary 41596.34615 1.081505e+06 1340.99 5.157654e+01 0.000 42.25 26 0.000000e+00 0.00 1.082846e+06 1.081505e+06 1340.99 NULL
2021 Department Of Probation Senior Consultant 80124.00000 2.403720e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.403720e+05 2.403720e+05 0.00 NULL
2021 Department Of Probation Senior Mental Health Worker 49029.00000 3.432030e+05 58.77 8.395714e+00 0.000 2.25 7 0.000000e+00 0.00 3.432618e+05 3.432030e+05 58.77 NULL
2021 Department Of Probation Social Worker 58741.00000 5.874100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.874100e+04 5.874100e+04 0.00 NULL
2021 Department Of Probation Staff Analyst 65985.16667 3.959110e+05 27895.31 4.649218e+03 0.000 432.50 6 0.000000e+00 0.00 4.238063e+05 3.959110e+05 27895.31 NULL
2021 Department Of Probation Staff Analyst Trainee 50688.00000 5.068800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.068800e+04 5.068800e+04 0.00 NULL
2021 Department Of Probation Stock Worker 37840.00000 3.784000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.784000e+04 3.784000e+04 0.00 NULL
2021 Department Of Probation Strategic Initiative Specialist 99955.00000 9.995500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.995500e+04 9.995500e+04 0.00 NULL
2021 Department Of Probation Summer College Intern 1310.75000 2.621500e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.621500e+03 2.621500e+03 0.00 NULL
2021 Department Of Probation Supervising Computer Service Technician 78604.00000 7.860400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.860400e+04 7.860400e+04 0.00 NULL
2021 Department Of Probation Supervising Probation Officer 76048.42941 1.292823e+07 399892.44 2.352308e+03 44.500 7091.50 170 4.450000e+01 7565.00 1.332813e+07 1.293580e+07 392327.44 NULL
2021 Department Of Probation Supervisor Ii Social Work 73722.00000 7.372200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.372200e+04 7.372200e+04 0.00 NULL
2021 Department Of Sanitation *Attorney At Law 108713.00000 2.174260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.174260e+05 2.174260e+05 0.00 NULL
2021 Department Of Sanitation Accountant 82400.00000 1.648000e+05 10184.80 5.092400e+03 5092.400 190.50 2 5.092400e+03 10184.80 1.749848e+05 1.749848e+05 0.00 NULL
2021 Department Of Sanitation Adm Manager-Non-Mgrl 84197.43333 2.525923e+06 172130.73 5.737691e+03 352.390 3178.00 30 3.523900e+02 10571.70 2.698054e+06 2.536495e+06 161559.03 NULL
2021 Department Of Sanitation Admin Community Relations Specialist 98425.14286 6.889760e+05 66753.63 9.536233e+03 7200.720 1130.25 7 7.200720e+03 50405.04 7.557296e+05 7.393810e+05 16348.59 NULL
2021 Department Of Sanitation Administrative Accountant 127653.00000 1.276530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.276530e+05 1.276530e+05 0.00 NULL
2021 Department Of Sanitation Administrative Architect 120786.00000 2.415720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.415720e+05 2.415720e+05 0.00 NULL
2021 Department Of Sanitation Administrative Business Promotion Coordinator 156142.00000 1.092994e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.092994e+06 1.092994e+06 0.00 NULL
2021 Department Of Sanitation Administrative City Planner 125801.88889 1.132217e+06 436.26 4.847333e+01 0.000 8.00 9 0.000000e+00 0.00 1.132653e+06 1.132217e+06 436.26 NULL
2021 Department Of Sanitation Administrative Construction Project Manager 149108.66667 8.946520e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.946520e+05 8.946520e+05 0.00 NULL
2021 Department Of Sanitation Administrative Engineer 149792.35714 2.097093e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.097093e+06 2.097093e+06 0.00 NULL
2021 Department Of Sanitation Administrative Management Auditor 96682.00000 1.933640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.933640e+05 1.933640e+05 0.00 NULL
2021 Department Of Sanitation Administrative Manager 205610.00000 2.056100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.056100e+05 2.056100e+05 0.00 NULL
2021 Department Of Sanitation Administrative Procurement Analyst 136986.00000 1.369860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.369860e+05 1.369860e+05 0.00 NULL
2021 Department Of Sanitation Administrative Procurement Analyst-Non-Mgrl 101285.57143 7.089990e+05 19694.26 2.813466e+03 0.000 372.75 7 0.000000e+00 0.00 7.286933e+05 7.089990e+05 19694.26 NULL
2021 Department Of Sanitation Administrative Project Manager 121013.59091 2.662299e+06 13434.10 6.106409e+02 0.000 180.00 22 0.000000e+00 0.00 2.675733e+06 2.662299e+06 13434.10 NULL
2021 Department Of Sanitation Administrative Public Information Specialist 160112.00000 3.202240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.202240e+05 3.202240e+05 0.00 NULL
2021 Department Of Sanitation Administrative Staff Analyst 106263.17060 7.119632e+06 197573.76 2.948862e+03 0.000 2752.00 67 0.000000e+00 0.00 7.317206e+06 7.119632e+06 197573.76 NULL
2021 Department Of Sanitation Administrative Supervisor Of Building Maintenance 152046.75000 6.081870e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.081870e+05 6.081870e+05 0.00 NULL
2021 Department Of Sanitation Agency Attorney 102262.71429 1.431678e+06 21683.75 1.548839e+03 0.000 280.50 14 0.000000e+00 0.00 1.453362e+06 1.431678e+06 21683.75 NULL
2021 Department Of Sanitation Agency Chief Contracting Officer 164006.00000 3.280120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.280120e+05 3.280120e+05 0.00 NULL
2021 Department Of Sanitation Architect 92640.00000 1.852800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.852800e+05 1.852800e+05 0.00 NULL
2021 Department Of Sanitation Assistant Civil Engineer 82076.00000 1.641520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.641520e+05 1.641520e+05 0.00 NULL
2021 Department Of Sanitation Assistant Electrical Engineer 77985.00000 3.899250e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.899250e+05 3.899250e+05 0.00 NULL
2021 Department Of Sanitation Associate Fraud Investigator 87909.00000 1.758180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.758180e+05 1.758180e+05 0.00 NULL
2021 Department Of Sanitation Associate Human Rights Specialist 103482.00000 1.034820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.034820e+05 1.034820e+05 0.00 NULL
2021 Department Of Sanitation Associate Project Manager 92042.44444 8.283820e+05 336.06 3.734000e+01 0.000 6.50 9 0.000000e+00 0.00 8.287181e+05 8.283820e+05 336.06 NULL
2021 Department Of Sanitation Associate Sanitation Enforcement Agent 43249.00000 4.324900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.324900e+04 4.324900e+04 0.00 NULL
2021 Department Of Sanitation Associate Staff Analyst 81769.92857 3.434337e+06 101925.59 2.426800e+03 0.000 1910.25 42 0.000000e+00 0.00 3.536263e+06 3.434337e+06 101925.59 NULL
2021 Department Of Sanitation Auto Machinist NA NA 204524.43 2.045244e+04 13248.980 3018.50 10 1.324898e+04 132489.80 NA NA NA NULL
2021 Department Of Sanitation Auto Mechanic NA NA 9335281.17 1.341276e+04 12386.915 144571.75 696 1.238692e+04 8621292.84 NA NA NA NULL
2021 Department Of Sanitation Blacksmith NA NA 3473.28 3.473280e+03 3473.280 48.00 1 3.473280e+03 3473.28 NA NA NA NULL
2021 Department Of Sanitation Carpenter NA NA 187177.15 1.559810e+04 16486.670 2222.00 12 1.559810e+04 187177.15 NA NA NA NULL
2021 Department Of Sanitation Carriage Upholsterer NA NA 7417.48 3.708740e+03 3708.740 144.00 2 3.708740e+03 7417.48 NA NA NA NULL
2021 Department Of Sanitation Cement Mason NA NA 96849.35 1.614156e+04 1058.200 1006.75 6 1.058200e+03 6349.20 NA NA NA NULL
2021 Department Of Sanitation Certified It Administrator 130125.50000 2.602510e+06 519068.41 2.595342e+04 27216.375 8377.75 20 2.595342e+04 519068.41 3.121578e+06 3.121578e+06 0.00 NULL
2021 Department Of Sanitation Certified It Developer 128493.32143 3.597813e+06 162732.41 5.811872e+03 1771.905 2941.00 28 1.771905e+03 49613.34 3.760545e+06 3.647426e+06 113119.07 NULL
2021 Department Of Sanitation City Attendant 37364.00000 3.736400e+04 1981.87 1.981870e+03 1981.870 76.50 1 1.981870e+03 1981.87 3.934587e+04 3.934587e+04 0.00 NULL
2021 Department Of Sanitation City Clinician 154830.20000 3.096604e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.096604e+05 3.096604e+05 0.00 NULL
2021 Department Of Sanitation City Deputy Medical Director 179040.00000 1.790400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.790400e+05 1.790400e+05 0.00 NULL
2021 Department Of Sanitation City Laborer NA NA 222021.58 1.057246e+04 8428.080 3749.00 21 8.428080e+03 176989.68 NA NA NA NULL
2021 Department Of Sanitation City Medical Specialist 113308.29336 1.133083e+06 49.09 4.909000e+00 0.000 0.00 10 0.000000e+00 0.00 1.133132e+06 1.133083e+06 49.09 NULL
2021 Department Of Sanitation City Planner 93476.40000 4.673820e+05 657.32 1.314640e+02 107.760 13.50 5 1.077600e+02 538.80 4.680393e+05 4.679208e+05 118.52 NULL
2021 Department Of Sanitation City Research Scientist 93951.00000 7.516080e+05 1975.47 2.469338e+02 48.100 33.50 8 4.810000e+01 384.80 7.535835e+05 7.519928e+05 1590.67 NULL
2021 Department Of Sanitation City Seasonal Aide 175.36978 7.049865e+04 0.00 0.000000e+00 0.000 0.00 402 0.000000e+00 0.00 7.049865e+04 7.049865e+04 0.00 NULL
2021 Department Of Sanitation Civil Engineer 105170.00000 3.155100e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.155100e+05 3.155100e+05 0.00 NULL
2021 Department Of Sanitation Clerical Associate 44393.25000 1.243011e+06 471751.42 1.684826e+04 22243.450 12240.50 28 1.684826e+04 471751.42 1.714762e+06 1.714762e+06 0.00 NULL
2021 Department Of Sanitation College Aide 108.50000 1.085000e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.085000e+02 1.085000e+02 0.00 NULL
2021 Department Of Sanitation College Aide - Assignment Levels Ii And Iii 435.12000 4.351200e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.351200e+02 4.351200e+02 0.00 NULL
2021 Department Of Sanitation Commissioner Of Sanitation 243171.00000 4.863420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863420e+05 4.863420e+05 0.00 NULL
2021 Department Of Sanitation Community Associate 63794.00000 1.275880e+05 39725.08 1.986254e+04 19862.540 862.00 2 1.986254e+04 39725.08 1.673131e+05 1.673131e+05 0.00 NULL
2021 Department Of Sanitation Community Coordinator 78010.23077 2.028266e+06 106240.74 4.086182e+03 1818.390 2025.25 26 1.818390e+03 47278.14 2.134507e+06 2.075544e+06 58962.60 NULL
2021 Department Of Sanitation Computer Aide-Non-Spvr 77256.00000 1.545120e+05 4534.06 2.267030e+03 2267.030 90.50 2 2.267030e+03 4534.06 1.590461e+05 1.590461e+05 0.00 NULL
2021 Department Of Sanitation Computer Associate 89890.72727 9.887980e+05 47284.62 4.298602e+03 3235.170 690.75 11 3.235170e+03 35586.87 1.036083e+06 1.024385e+06 11697.75 NULL
2021 Department Of Sanitation Computer Operations Manager 113300.00000 1.133000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133000e+05 1.133000e+05 0.00 NULL
2021 Department Of Sanitation Computer Specialist 101643.58974 3.964100e+06 340757.86 8.737381e+03 618.910 4826.75 39 6.189100e+02 24137.49 4.304858e+06 3.988237e+06 316620.37 NULL
2021 Department Of Sanitation Computer Systems Manager 141021.72826 1.297400e+07 148623.62 1.615474e+03 0.000 1970.00 92 0.000000e+00 0.00 1.312262e+07 1.297400e+07 148623.62 NULL
2021 Department Of Sanitation Confidential Assistant To The Commissioner 139050.00000 1.390500e+05 323.46 3.234600e+02 323.460 4.00 1 3.234600e+02 323.46 1.393735e+05 1.393735e+05 0.00 NULL
2021 Department Of Sanitation Construction Laborer NA NA 99757.28 8.313107e+03 4871.925 1501.00 12 4.871925e+03 58463.10 NA NA NA NULL
2021 Department Of Sanitation Construction Project Manager 88358.35294 1.502092e+06 4557.15 2.680676e+02 0.000 65.00 17 0.000000e+00 0.00 1.506649e+06 1.502092e+06 4557.15 NULL
2021 Department Of Sanitation Counselor 94217.00000 9.421700e+04 5258.69 5.258690e+03 5258.690 90.50 1 5.258690e+03 5258.69 9.947569e+04 9.947569e+04 0.00 NULL
2021 Department Of Sanitation Dep Dir Mtr Eq Mntc 155015.50000 6.200620e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.200620e+05 6.200620e+05 0.00 NULL
2021 Department Of Sanitation Deputy Administrator 124654.00000 1.246540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.246540e+05 1.246540e+05 0.00 NULL
2021 Department Of Sanitation Deputy Administrator/Comsnr-Dos 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2021 Department Of Sanitation Deputy Commissioner 230543.00000 6.916290e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.916290e+05 6.916290e+05 0.00 NULL
2021 Department Of Sanitation Deputy Director Of Motor Equipment Maintenance 152926.85714 1.070488e+06 47240.06 6.748580e+03 9118.410 430.00 7 6.748580e+03 47240.06 1.117728e+06 1.117728e+06 0.00 NULL
2021 Department Of Sanitation Director Of Motor Equipment Maintenance 220388.00000 2.203880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.203880e+05 2.203880e+05 0.00 NULL
2021 Department Of Sanitation Director Of Motor Equipment Maintenance-Nm 188205.00000 1.882050e+05 8163.80 8.163800e+03 8163.800 62.50 1 8.163800e+03 8163.80 1.963688e+05 1.963688e+05 0.00 NULL
2021 Department Of Sanitation Economist 78256.00000 1.565120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.565120e+05 1.565120e+05 0.00 NULL
2021 Department Of Sanitation Electrician NA NA 1360580.40 1.722254e+04 16820.840 18159.75 79 1.682084e+04 1328846.36 NA NA NA NULL
2021 Department Of Sanitation Executive Agency Counsel 158772.80000 7.938640e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.938640e+05 7.938640e+05 0.00 NULL
2021 Department Of Sanitation General Superintendent 146626.71676 5.073284e+07 9375666.38 2.709730e+04 16729.185 92445.90 346 1.672919e+04 5788298.01 6.010851e+07 5.652114e+07 3587368.37 NULL
2021 Department Of Sanitation Graphic Artist 81713.25000 6.537060e+05 3.12 3.900000e-01 0.000 0.00 8 0.000000e+00 0.00 6.537091e+05 6.537060e+05 3.12 NULL
2021 Department Of Sanitation Health Services Manager 186917.00000 1.869170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.869170e+05 1.869170e+05 0.00 NULL
2021 Department Of Sanitation High Pressure Plant Tender NA NA 178568.62 2.550980e+04 18311.640 3059.00 7 1.831164e+04 128181.48 NA NA NA NULL
2021 Department Of Sanitation Incinerator Facility Manager 112002.00000 1.120020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.120020e+05 1.120020e+05 0.00 NULL
2021 Department Of Sanitation Investigator 66168.00000 3.970080e+05 108161.42 1.802690e+04 23543.850 2476.00 6 1.802690e+04 108161.42 5.051694e+05 5.051694e+05 0.00 NULL
2021 Department Of Sanitation Job Training Participant 173.04000 8.652000e+02 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.652000e+02 8.652000e+02 0.00 NULL
2021 Department Of Sanitation Letterer And Sign Painter NA NA 21435.48 1.071774e+04 10717.740 412.00 2 1.071774e+04 21435.48 NA NA NA NULL
2021 Department Of Sanitation Machinist NA NA 436647.24 1.149072e+04 8047.970 6909.00 38 8.047970e+03 305822.86 NA NA NA NULL
2021 Department Of Sanitation Maintenance Worker NA NA 382122.20 1.910611e+04 18893.725 8097.00 20 1.889372e+04 377874.50 NA NA NA NULL
2021 Department Of Sanitation Management Auditor 88767.60000 4.438380e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.438380e+05 4.438380e+05 0.00 NULL
2021 Department Of Sanitation Medical Director 193741.00000 1.937410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.937410e+05 1.937410e+05 0.00 NULL
2021 Department Of Sanitation Medical Record Librarian 72100.00000 1.442000e+05 29477.48 1.473874e+04 14738.740 609.00 2 1.473874e+04 29477.48 1.736775e+05 1.736775e+05 0.00 NULL
2021 Department Of Sanitation Metal Work Mechanic 84733.22222 7.625990e+06 917544.79 1.019494e+04 11502.790 14933.00 90 1.019494e+04 917544.79 8.543535e+06 8.543535e+06 0.00 NULL
2021 Department Of Sanitation Oiler NA NA 83075.02 1.384584e+04 11400.280 938.00 6 1.140028e+04 68401.68 NA NA NA NULL
2021 Department Of Sanitation Painter NA NA 77729.64 1.295494e+04 14229.530 1240.00 6 1.295494e+04 77729.64 NA NA NA NULL
2021 Department Of Sanitation Plumber NA NA 264398.74 1.652492e+04 16787.220 2504.25 16 1.652492e+04 264398.74 NA NA NA NULL
2021 Department Of Sanitation Principal Administrative Associate - Non Supvr 68747.14286 1.443690e+06 335443.10 1.597348e+04 18968.860 6960.25 21 1.597348e+04 335443.10 1.779133e+06 1.779133e+06 0.00 NULL
2021 Department Of Sanitation Procurement Analyst 87418.25000 6.993460e+05 47095.16 5.886895e+03 3885.270 898.50 8 3.885270e+03 31082.16 7.464412e+05 7.304282e+05 16013.00 NULL
2021 Department Of Sanitation Project Manager 81458.50000 3.258340e+05 13289.82 3.322455e+03 3322.455 229.00 4 3.322455e+03 13289.82 3.391238e+05 3.391238e+05 0.00 NULL
2021 Department Of Sanitation Research Assistant 71776.00000 7.177600e+04 1860.18 1.860180e+03 1860.180 38.00 1 1.860180e+03 1860.18 7.363618e+04 7.363618e+04 0.00 NULL
2021 Department Of Sanitation Rubber Tire Repairer NA NA 52825.52 2.641276e+04 26412.760 1170.00 2 2.641276e+04 52825.52 NA NA NA NULL
2021 Department Of Sanitation Sanitation Enforcement Agent 37801.00000 7.560200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.560200e+04 7.560200e+04 0.00 NULL
2021 Department Of Sanitation Sanitation Worker 79005.43809 6.284883e+08 279877400.03 3.518258e+04 36048.850 4197769.67 7955 3.518258e+04 279877400.03 9.083657e+08 9.083657e+08 0.00 NULL
2021 Department Of Sanitation Secretary To The Commissioner 89474.00000 1.789480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.789480e+05 1.789480e+05 0.00 NULL
2021 Department Of Sanitation Senior Automotive Specialist 104907.00000 1.049070e+05 8654.97 8.654970e+03 8654.970 127.50 1 8.654970e+03 8654.97 1.135620e+05 1.135620e+05 0.00 NULL
2021 Department Of Sanitation Senior Estimator 95582.00000 3.823280e+05 390.24 9.756000e+01 97.560 7.00 4 9.756000e+01 390.24 3.827182e+05 3.827182e+05 0.00 NULL
2021 Department Of Sanitation Senior Stationary Engineer NA NA 136545.04 2.730901e+04 26513.600 1266.50 5 2.651360e+04 132568.00 NA NA NA NULL
2021 Department Of Sanitation Sheet Metal Worker NA NA 342017.60 3.420176e+04 34694.080 2953.50 10 3.420176e+04 342017.60 NA NA NA NULL
2021 Department Of Sanitation Staff Analyst 80619.33333 4.837160e+05 141.24 2.354000e+01 0.000 3.00 6 0.000000e+00 0.00 4.838572e+05 4.837160e+05 141.24 NULL
2021 Department Of Sanitation Staff Nurse 93459.00000 5.607540e+05 2246.01 3.743350e+02 0.000 31.75 6 0.000000e+00 0.00 5.630000e+05 5.607540e+05 2246.01 NULL
2021 Department Of Sanitation Stationary Engineer NA NA 1035853.20 2.725929e+04 28689.960 10730.00 38 2.725929e+04 1035853.20 NA NA NA NULL
2021 Department Of Sanitation Steam Fitter NA NA 550000.00 3.666667e+04 47630.000 5000.50 15 3.666667e+04 550000.00 NA NA NA NULL
2021 Department Of Sanitation Supervising Computer Service Technician 74377.50000 2.975100e+05 10408.56 2.602140e+03 2602.140 183.00 4 2.602140e+03 10408.56 3.079186e+05 3.079186e+05 0.00 NULL
2021 Department Of Sanitation Supervisor 101224.35418 1.440423e+08 65537887.41 4.605614e+04 43232.440 839971.19 1423 4.323244e+04 61519762.12 2.095801e+08 2.055620e+08 4018125.29 NULL
2021 Department Of Sanitation Supervisor Bricklayer NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Department Of Sanitation Supervisor Carpenter NA NA 161346.11 5.378204e+04 66018.920 1771.00 3 5.378204e+04 161346.11 NA NA NA NULL
2021 Department Of Sanitation Supervisor Electrician NA NA 87129.85 1.742597e+04 14054.110 883.75 5 1.405411e+04 70270.55 NA NA NA NULL
2021 Department Of Sanitation Supervisor Of Ironwork 125151.00000 1.251510e+05 11148.54 1.114854e+04 11148.540 122.00 1 1.114854e+04 11148.54 1.362995e+05 1.362995e+05 0.00 NULL
2021 Department Of Sanitation Supervisor Of Mechanics 126591.81739 1.455806e+07 3086887.43 2.684250e+04 30319.610 34445.75 115 2.684250e+04 3086887.43 1.764495e+07 1.764495e+07 0.00 NULL
2021 Department Of Sanitation Supervisor Of Stock Workers 57161.85714 4.001330e+05 180157.10 2.573673e+04 23897.240 4072.00 7 2.389724e+04 167280.68 5.802901e+05 5.674137e+05 12876.42 NULL
2021 Department Of Sanitation Supervisor Painter NA NA 29354.49 2.935449e+04 29354.490 409.75 1 2.935449e+04 29354.49 NA NA NA NULL
2021 Department Of Sanitation Supervisor Plumber NA NA 47825.85 2.391292e+04 23912.925 434.50 2 2.391292e+04 47825.85 NA NA NA NULL
2021 Department Of Sanitation Supervisor Steamfitter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Department Of Sanitation Telecommunications Associate 71995.33333 2.159860e+05 8228.25 2.742750e+03 0.000 190.50 3 0.000000e+00 0.00 2.242142e+05 2.159860e+05 8228.25 NULL
2021 Department Of Sanitation Thermostat Repairer NA NA 16111.68 1.611168e+04 16111.680 156.00 1 1.611168e+04 16111.68 NA NA NA NULL
2021 Department Of Sanitation Tractor Operator NA NA 84319.42 2.107985e+04 21079.855 710.00 4 2.107985e+04 84319.42 NA NA NA NULL
2021 Department Of Sanitation Welder NA NA 93759.39 3.125313e+04 23683.880 912.50 3 2.368388e+04 71051.64 NA NA NA NULL
2021 Department Of Transportation *Certified Database Administrator 121564.00000 1.215640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.215640e+05 1.215640e+05 0.00 NULL
2021 Department Of Transportation Accountant 65432.04348 1.504937e+06 2576.88 1.120383e+02 0.000 58.25 23 0.000000e+00 0.00 1.507514e+06 1.504937e+06 2576.88 NULL
2021 Department Of Transportation Adm Manager-Non-Mgrl 87293.85226 1.405431e+07 387444.39 2.406487e+03 0.000 6360.25 161 0.000000e+00 0.00 1.444175e+07 1.405431e+07 387444.39 NULL
2021 Department Of Transportation Admin Community Relations Specialist 82480.83280 1.402174e+06 36448.97 2.144057e+03 189.280 736.00 17 1.892800e+02 3217.76 1.438623e+06 1.405392e+06 33231.21 NULL
2021 Department Of Transportation Admin Construction Project Manager 129780.00000 1.297800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.297800e+05 1.297800e+05 0.00 NULL
2021 Department Of Transportation Admin Contract Specialist 140700.00000 1.407000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.407000e+05 1.407000e+05 0.00 NULL
2021 Department Of Transportation Admin Inspector 119180.66667 7.150840e+05 79055.16 1.317586e+04 6866.015 912.75 6 6.866015e+03 41196.09 7.941392e+05 7.562801e+05 37859.07 NULL
2021 Department Of Transportation Administrative Accountant 144515.00000 4.335450e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.335450e+05 4.335450e+05 0.00 NULL
2021 Department Of Transportation Administrative Business Promotion Coordinator 113300.00000 1.133000e+05 11224.49 1.122449e+04 11224.490 155.00 1 1.122449e+04 11224.49 1.245245e+05 1.245245e+05 0.00 NULL
2021 Department Of Transportation Administrative City Planner 112508.72414 6.525506e+06 85097.78 1.467203e+03 0.535 1254.50 58 5.350000e-01 31.03 6.610604e+06 6.525537e+06 85066.75 NULL
2021 Department Of Transportation Administrative Community Relations Specialist 148635.66667 4.459070e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.459070e+05 4.459070e+05 0.00 NULL
2021 Department Of Transportation Administrative Construction Project Manager 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2021 Department Of Transportation Administrative Contract Specialist 92796.50000 1.855930e+05 28497.19 1.424859e+04 14248.595 411.75 2 1.424859e+04 28497.19 2.140902e+05 2.140902e+05 0.00 NULL
2021 Department Of Transportation Administrative Director Of Marine Maintenance 164800.00000 1.648000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.648000e+05 1.648000e+05 0.00 NULL
2021 Department Of Transportation Administrative Engineer 132056.84615 1.716739e+07 372651.44 2.866550e+03 0.000 4910.75 130 0.000000e+00 0.00 1.754004e+07 1.716739e+07 372651.44 NULL
2021 Department Of Transportation Administrative Graphic Artist 127895.00000 1.278950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.278950e+05 1.278950e+05 0.00 NULL
2021 Department Of Transportation Administrative Inspector 148481.00000 2.969620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.969620e+05 2.969620e+05 0.00 NULL
2021 Department Of Transportation Administrative Investigator 94849.20000 4.742460e+05 3778.89 7.557780e+02 0.000 77.25 5 0.000000e+00 0.00 4.780249e+05 4.742460e+05 3778.89 NULL
2021 Department Of Transportation Administrative Management Auditor 133076.40000 6.653820e+05 9214.45 1.842890e+03 0.000 100.50 5 0.000000e+00 0.00 6.745964e+05 6.653820e+05 9214.45 NULL
2021 Department Of Transportation Administrative Manager 148638.33333 8.918300e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.918300e+05 8.918300e+05 0.00 NULL
2021 Department Of Transportation Administrative Procurement Analyst 155765.00000 1.557650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.557650e+05 1.557650e+05 0.00 NULL
2021 Department Of Transportation Administrative Procurement Analyst-Non-Mgrl 91407.51515 3.016448e+06 32959.29 9.987664e+02 0.000 610.25 33 0.000000e+00 0.00 3.049407e+06 3.016448e+06 32959.29 NULL
2021 Department Of Transportation Administrative Project Manager 124601.70103 1.208636e+07 401799.01 4.142258e+03 0.000 5465.75 97 0.000000e+00 0.00 1.248816e+07 1.208636e+07 401799.01 NULL
2021 Department Of Transportation Administrative Public Information Specialist 198734.00000 1.987340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.987340e+05 1.987340e+05 0.00 NULL
2021 Department Of Transportation Administrative Quality Assurance Specialist 90699.88889 8.162990e+05 64407.76 7.156418e+03 83.180 1054.00 9 8.318000e+01 748.62 8.807068e+05 8.170476e+05 63659.14 NULL
2021 Department Of Transportation Administrative Real Property Manager 198472.00000 1.984720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.984720e+05 1.984720e+05 0.00 NULL
2021 Department Of Transportation Administrative Staff Analyst 117124.77734 1.300085e+07 211231.47 1.902986e+03 0.000 3284.75 111 0.000000e+00 0.00 1.321208e+07 1.300085e+07 211231.47 NULL
2021 Department Of Transportation Administrative Superintendent Of Bridge Operations 133000.00000 1.330000e+05 13455.62 1.345562e+04 13455.620 250.00 1 1.345562e+04 13455.62 1.464556e+05 1.464556e+05 0.00 NULL
2021 Department Of Transportation Administrative Superintendent Of Highway Operations 142997.54545 3.145946e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 3.145946e+06 3.145946e+06 0.00 NULL
2021 Department Of Transportation Administrative Supervisor Of Building Maintenance 121116.00000 1.211160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.211160e+05 1.211160e+05 0.00 NULL
2021 Department Of Transportation Administrative Transportation Coordinator 139989.34615 3.639723e+06 74.13 2.851154e+00 0.000 0.00 26 0.000000e+00 0.00 3.639797e+06 3.639723e+06 74.13 NULL
2021 Department Of Transportation Agency Attorney 100189.26316 1.903596e+06 13238.07 6.967405e+02 0.000 176.25 19 0.000000e+00 0.00 1.916834e+06 1.903596e+06 13238.07 NULL
2021 Department Of Transportation Agency Attorney Interne 68802.00000 6.880200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.880200e+04 6.880200e+04 0.00 NULL
2021 Department Of Transportation Agency Chief Contracting Officer 194048.00000 1.940480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.940480e+05 1.940480e+05 0.00 NULL
2021 Department Of Transportation Apprentice Inspector 43464.78014 6.128534e+06 489890.19 3.474399e+03 1499.770 16491.75 141 1.499770e+03 211467.57 6.618424e+06 6.340002e+06 278422.62 NULL
2021 Department Of Transportation Architect 102549.66667 3.076490e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.076490e+05 3.076490e+05 0.00 NULL
2021 Department Of Transportation Architectural Intern 62260.00000 6.226000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.226000e+04 6.226000e+04 0.00 NULL
2021 Department Of Transportation Area Supervisor 110742.14286 6.976755e+06 2580571.55 4.096145e+04 43054.180 30987.75 63 4.096145e+04 2580571.55 9.557327e+06 9.557327e+06 0.00 NULL
2021 Department Of Transportation Asphalt Plant Manager 172323.00000 3.446460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.446460e+05 3.446460e+05 0.00 NULL
2021 Department Of Transportation Assistant Accountant 56517.00000 5.651700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.651700e+04 5.651700e+04 0.00 NULL
2021 Department Of Transportation Assistant Architect 66830.35500 1.336607e+05 19127.11 9.563555e+03 9563.555 355.00 2 9.563555e+03 19127.11 1.527878e+05 1.527878e+05 0.00 NULL
2021 Department Of Transportation Assistant Captain 63014.00000 6.301400e+05 399048.25 3.990482e+04 37802.560 7137.50 10 3.780256e+04 378025.60 1.029188e+06 1.008166e+06 21022.65 NULL
2021 Department Of Transportation Assistant City Highway Repairer 45123.86030 3.000737e+07 3370550.93 5.068498e+03 3134.010 86169.27 665 3.134010e+03 2084116.65 3.337792e+07 3.209148e+07 1286434.28 NULL
2021 Department Of Transportation Assistant Civil Engineer 74699.95652 1.030859e+07 390599.40 2.830430e+03 1.425 7125.00 138 1.425000e+00 196.65 1.069919e+07 1.030879e+07 390402.75 NULL
2021 Department Of Transportation Assistant Commissioner 158152.00000 3.163040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.163040e+05 3.163040e+05 0.00 NULL
2021 Department Of Transportation Assistant Director 113300.00000 1.133000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133000e+05 1.133000e+05 0.00 NULL
2021 Department Of Transportation Assistant Electrical Engineer 71846.58824 2.442784e+06 94539.49 2.780573e+03 95.325 1755.25 34 9.532500e+01 3241.05 2.537323e+06 2.446025e+06 91298.44 NULL
2021 Department Of Transportation Assistant Environmental Engineer 85646.00000 8.564600e+04 1.02 1.020000e+00 1.020 0.00 1 1.020000e+00 1.02 8.564702e+04 8.564702e+04 0.00 NULL
2021 Department Of Transportation Assistant Highway Transportation Specialist 64125.50000 1.282510e+05 0.52 2.600000e-01 0.260 0.00 2 2.600000e-01 0.52 1.282515e+05 1.282515e+05 0.00 NULL
2021 Department Of Transportation Assistant Mechanical Engineer 77162.25000 6.172980e+05 40823.01 5.102876e+03 2634.460 713.50 8 2.634460e+03 21075.68 6.581210e+05 6.383737e+05 19747.33 NULL
2021 Department Of Transportation Assistant Printing Press Operator 67058.00000 1.341160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.341160e+05 1.341160e+05 0.00 NULL
2021 Department Of Transportation Assistant Transportation Specialist 61739.79487 2.407852e+06 88095.14 2.258850e+03 561.370 1993.75 39 5.613700e+02 21893.43 2.495947e+06 2.429745e+06 66201.71 NULL
2021 Department Of Transportation Assistant Urban Designer 70063.83333 4.203830e+05 3801.90 6.336500e+02 393.390 86.00 6 3.933900e+02 2360.34 4.241849e+05 4.227433e+05 1441.56 NULL
2021 Department Of Transportation Associate Fraud Investigator 74685.00000 7.468500e+04 291.00 2.910000e+02 291.000 6.75 1 2.910000e+02 291.00 7.497600e+04 7.497600e+04 0.00 NULL
2021 Department Of Transportation Associate Inspector 78273.50000 3.757128e+06 623109.39 1.298145e+04 12920.685 10844.00 48 1.292068e+04 620192.88 4.380237e+06 4.377321e+06 2916.51 NULL
2021 Department Of Transportation Associate Investigator 76633.33333 2.299000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.299000e+05 2.299000e+05 0.00 NULL
2021 Department Of Transportation Associate Labor Relations Analyst 92700.00000 9.270000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.270000e+04 9.270000e+04 0.00 NULL
2021 Department Of Transportation Associate Operations Communications Specialist 66290.50000 1.325810e+05 13903.68 6.951840e+03 6951.840 250.50 2 6.951840e+03 13903.68 1.464847e+05 1.464847e+05 0.00 NULL
2021 Department Of Transportation Associate Project Manager 89607.63158 1.702545e+06 26690.42 1.404759e+03 0.440 433.50 19 4.400000e-01 8.36 1.729235e+06 1.702553e+06 26682.06 NULL
2021 Department Of Transportation Associate Quality Assurance Specialist 82873.00000 8.287300e+04 27539.95 2.753995e+04 27539.950 485.75 1 2.753995e+04 27539.95 1.104129e+05 1.104129e+05 0.00 NULL
2021 Department Of Transportation Associate Staff Analyst 82223.56757 3.042272e+06 53170.88 1.437051e+03 0.000 918.25 37 0.000000e+00 0.00 3.095443e+06 3.042272e+06 53170.88 NULL
2021 Department Of Transportation Associate Urban Designer 98434.20000 1.968684e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.968684e+05 1.968684e+05 0.00 NULL
2021 Department Of Transportation Auto Machinist NA NA 19999.89 1.999989e+04 19999.890 303.00 1 1.999989e+04 19999.89 NA NA NA NULL
2021 Department Of Transportation Auto Body Worker 54339.00000 1.630170e+05 8448.43 2.816143e+03 353.240 228.50 3 3.532400e+02 1059.72 1.714654e+05 1.640767e+05 7388.71 NULL
2021 Department Of Transportation Auto Mechanic NA NA 1209411.36 1.185697e+04 11665.060 18475.25 102 1.166506e+04 1189836.12 NA NA NA NULL
2021 Department Of Transportation Automotive Service Worker 42506.55556 3.825590e+05 41562.21 4.618023e+03 4858.160 1371.50 9 4.618023e+03 41562.21 4.241212e+05 4.241212e+05 0.00 NULL
2021 Department Of Transportation Automotive Specialist 85939.00000 8.593900e+04 15530.40 1.553040e+04 15530.400 282.00 1 1.553040e+04 15530.40 1.014694e+05 1.014694e+05 0.00 NULL
2021 Department Of Transportation Blacksmith NA NA 62736.12 1.568403e+04 14652.900 867.00 4 1.465290e+04 58611.60 NA NA NA NULL
2021 Department Of Transportation Blacksmith’s Helper NA NA 30526.95 1.526348e+04 15263.475 562.50 2 1.526348e+04 30526.95 NA NA NA NULL
2021 Department Of Transportation Boiler Maker NA NA 138424.68 1.730308e+04 16154.370 1913.00 8 1.615437e+04 129234.96 NA NA NA NULL
2021 Department Of Transportation Bookkeeper 51334.00000 3.593380e+05 1226.93 1.752757e+02 0.000 45.75 7 0.000000e+00 0.00 3.605649e+05 3.593380e+05 1226.93 NULL
2021 Department Of Transportation Borough Commissioner 168119.00000 1.008714e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.008714e+06 1.008714e+06 0.00 NULL
2021 Department Of Transportation Bricklayer NA NA 259727.49 2.885861e+04 30094.280 3744.25 9 2.885861e+04 259727.49 NA NA NA NULL
2021 Department Of Transportation Bridge Operator 50846.22368 3.864313e+06 982060.83 1.292185e+04 10478.200 22456.65 76 1.047820e+04 796343.20 4.846374e+06 4.660656e+06 185717.63 NULL
2021 Department Of Transportation Bridge Painter NA NA 428756.44 9.122477e+03 12165.350 4512.75 47 9.122477e+03 428756.44 NA NA NA NULL
2021 Department Of Transportation Bridge Repairer And Riveter NA NA 1113003.43 2.782509e+04 26483.580 16463.52 40 2.648358e+04 1059343.20 NA NA NA NULL
2021 Department Of Transportation Captain 70926.00000 1.702224e+06 1106375.53 4.609898e+04 48640.800 17741.75 24 4.609898e+04 1106375.53 2.808600e+06 2.808600e+06 0.00 NULL
2021 Department Of Transportation Carpenter NA NA 375685.41 1.878427e+04 19437.300 4771.00 20 1.878427e+04 375685.41 NA NA NA NULL
2021 Department Of Transportation Cement Mason NA NA 1402836.50 5.195691e+04 51467.000 14582.50 27 5.146700e+04 1389609.00 NA NA NA NULL
2021 Department Of Transportation Certified It Administrator 121564.13333 1.823462e+06 253863.10 1.692421e+04 18556.880 2932.50 15 1.692421e+04 253863.10 2.077325e+06 2.077325e+06 0.00 NULL
2021 Department Of Transportation Certified It Developer 115164.20000 1.727463e+06 137446.27 9.163085e+03 265.590 1520.25 15 2.655900e+02 3983.85 1.864909e+06 1.731447e+06 133462.42 NULL
2021 Department Of Transportation Chief Marine Engineer 68789.00000 1.582147e+06 1198743.84 5.211930e+04 59088.960 19820.50 23 5.211930e+04 1198743.84 2.780891e+06 2.780891e+06 0.00 NULL
2021 Department Of Transportation City Attendant 41014.13839 1.148396e+06 121650.89 4.344675e+03 2992.035 3909.50 28 2.992035e+03 83776.98 1.270047e+06 1.232173e+06 37873.91 NULL
2021 Department Of Transportation City Custodial Assistant 40773.27000 1.223198e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.223198e+05 1.223198e+05 0.00 NULL
2021 Department Of Transportation City Debris Remover 39907.71200 1.995386e+05 23958.50 4.791700e+03 2707.270 731.50 5 2.707270e+03 13536.35 2.234971e+05 2.130749e+05 10422.15 NULL
2021 Department Of Transportation City Laborer NA NA 411618.74 1.470067e+04 13357.320 6964.50 28 1.335732e+04 374004.96 NA NA NA NULL
2021 Department Of Transportation City Parking Equipment Service Worker 42066.80851 3.954280e+06 217874.19 2.317811e+03 2380.190 6626.75 94 2.317811e+03 217874.19 4.172154e+06 4.172154e+06 0.00 NULL
2021 Department Of Transportation City Planner 83459.08642 6.760186e+06 130345.50 1.609204e+03 2.270 2220.75 81 2.270000e+00 183.87 6.890532e+06 6.760370e+06 130161.63 NULL
2021 Department Of Transportation City Research Scientist 90137.70588 1.532341e+06 23495.01 1.382059e+03 0.000 447.50 17 0.000000e+00 0.00 1.555836e+06 1.532341e+06 23495.01 NULL
2021 Department Of Transportation City Tax Auditor 58860.33333 1.765810e+05 3074.66 1.024887e+03 0.000 67.75 3 0.000000e+00 0.00 1.796557e+05 1.765810e+05 3074.66 NULL
2021 Department Of Transportation Civil Engineer 103727.44643 5.808737e+06 136975.22 2.445986e+03 1.195 1951.25 56 1.195000e+00 66.92 5.945712e+06 5.808804e+06 136908.30 NULL
2021 Department Of Transportation Civil Engineering Intern 62260.00000 1.681020e+06 145449.23 5.387009e+03 401.510 3225.25 27 4.015100e+02 10840.77 1.826469e+06 1.691861e+06 134608.46 NULL
2021 Department Of Transportation Claim Specialist 51653.42500 1.033069e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.033069e+05 1.033069e+05 0.00 NULL
2021 Department Of Transportation Clerical Aide 41086.00000 4.108600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.108600e+04 4.108600e+04 0.00 NULL
2021 Department Of Transportation Clerical Associate 46807.15646 1.497829e+07 340529.26 1.064154e+03 0.000 9801.00 320 0.000000e+00 0.00 1.531882e+07 1.497829e+07 340529.26 NULL
2021 Department Of Transportation Climber & Pruner 69277.00000 2.078310e+05 27364.13 9.121377e+03 10300.820 508.75 3 9.121377e+03 27364.13 2.351951e+05 2.351951e+05 0.00 NULL
2021 Department Of Transportation College Aide 12612.50824 8.828756e+05 0.00 0.000000e+00 0.000 0.00 70 0.000000e+00 0.00 8.828756e+05 8.828756e+05 0.00 NULL
2021 Department Of Transportation College Aide - Assignment Levels Ii And Iii 19001.75029 4.180385e+05 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 4.180385e+05 4.180385e+05 0.00 NULL
2021 Department Of Transportation Commissioner Of Transportation 243171.00000 4.863420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863420e+05 4.863420e+05 0.00 NULL
2021 Department Of Transportation Community Assistant 39214.18921 7.450696e+05 35068.31 1.845701e+03 88.760 1234.75 19 8.876000e+01 1686.44 7.801379e+05 7.467560e+05 33381.87 NULL
2021 Department Of Transportation Community Associate 50578.55172 1.770249e+06 15531.65 4.437614e+02 0.000 385.22 35 0.000000e+00 0.00 1.785781e+06 1.770249e+06 15531.65 NULL
2021 Department Of Transportation Community Coordinator 68107.81009 7.423751e+06 379364.98 3.480413e+03 527.830 7787.50 109 5.278300e+02 57533.47 7.803116e+06 7.481285e+06 321831.51 NULL
2021 Department Of Transportation Community Service Aide 32367.51000 3.236751e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.236751e+04 3.236751e+04 0.00 NULL
2021 Department Of Transportation Computer Aide-Non-Spvr 51344.00000 1.026880e+05 8468.10 4.234050e+03 4234.050 250.75 2 4.234050e+03 8468.10 1.111561e+05 1.111561e+05 0.00 NULL
2021 Department Of Transportation Computer Associate 77832.69000 1.478821e+06 125794.16 6.620745e+03 1507.440 2216.19 19 1.507440e+03 28641.36 1.604615e+06 1.507462e+06 97152.80 NULL
2021 Department Of Transportation Computer Specialist 106197.52174 2.442543e+06 136754.16 5.945833e+03 0.000 1599.75 23 0.000000e+00 0.00 2.579297e+06 2.442543e+06 136754.16 NULL
2021 Department Of Transportation Computer Systems Manager 163142.90000 1.631429e+06 3015.61 3.015610e+02 0.000 30.00 10 0.000000e+00 0.00 1.634445e+06 1.631429e+06 3015.61 NULL
2021 Department Of Transportation Confidential Strategy Planner 90401.73125 7.232138e+05 36983.79 4.622974e+03 2411.180 605.75 8 2.411180e+03 19289.44 7.601976e+05 7.425033e+05 17694.35 NULL
2021 Department Of Transportation Construction Project Manager 87655.93548 2.717334e+06 165148.47 5.327370e+03 1009.120 2697.25 31 1.009120e+03 31282.72 2.882482e+06 2.748617e+06 133865.75 NULL
2021 Department Of Transportation Counsel 237401.00000 2.374010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.374010e+05 2.374010e+05 0.00 NULL
2021 Department Of Transportation Crane Operator Ampes NA NA 486207.74 8.103462e+04 83546.100 3566.50 6 8.103462e+04 486207.74 NA NA NA NULL
2021 Department Of Transportation Customer Information Representative Ma L 1549 55201.26190 6.624151e+05 6948.05 5.790042e+02 0.000 232.25 12 0.000000e+00 0.00 6.693632e+05 6.624151e+05 6948.05 NULL
2021 Department Of Transportation Deckhand 58045.12605 1.381474e+07 6653870.66 2.795744e+04 26819.735 128621.08 238 2.681974e+04 6383096.93 2.046861e+07 2.019784e+07 270773.73 NULL
2021 Department Of Transportation Deputy Commissioner 220065.00000 1.100325e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.100325e+06 1.100325e+06 0.00 NULL
2021 Department Of Transportation Deputy Director 148574.00000 2.971480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.971480e+05 2.971480e+05 0.00 NULL
2021 Department Of Transportation Director Of Public Relations 171878.00000 1.718780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.718780e+05 1.718780e+05 0.00 NULL
2021 Department Of Transportation Dockbuilder NA NA 318366.31 2.448972e+04 21637.310 4126.25 13 2.163731e+04 281285.03 NA NA NA NULL
2021 Department Of Transportation Economist 67108.56250 1.073737e+06 7730.37 4.831481e+02 0.000 118.50 16 0.000000e+00 0.00 1.081467e+06 1.073737e+06 7730.37 NULL
2021 Department Of Transportation Electrical Engineering Intern 62260.00000 2.490400e+05 2609.92 6.524800e+02 529.640 73.75 4 5.296400e+02 2118.56 2.516499e+05 2.511586e+05 491.36 NULL
2021 Department Of Transportation Electrician NA NA 2504624.65 2.555739e+04 28137.345 27827.00 98 2.555739e+04 2504624.65 NA NA NA NULL
2021 Department Of Transportation Electricians Helper NA NA 83714.20 2.790473e+04 26483.080 1441.50 3 2.648308e+04 79449.24 NA NA NA NULL
2021 Department Of Transportation Engineering Technician 58695.66667 3.521740e+05 45344.41 7.557402e+03 3960.550 1111.00 6 3.960550e+03 23763.30 3.975184e+05 3.759373e+05 21581.11 NULL
2021 Department Of Transportation Executive Agency Counsel 162284.16667 1.947410e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.947410e+06 1.947410e+06 0.00 NULL
2021 Department Of Transportation Executive Program Specialist 158738.00000 4.762140e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.762140e+05 4.762140e+05 0.00 NULL
2021 Department Of Transportation Ferry Terminal Supervisor 80024.00000 1.200360e+06 437633.58 2.917557e+04 30678.150 7510.00 15 2.917557e+04 437633.58 1.637994e+06 1.637994e+06 0.00 NULL
2021 Department Of Transportation Gardener 59425.33333 1.782760e+05 17572.67 5.857557e+03 5103.800 434.50 3 5.103800e+03 15311.40 1.958487e+05 1.935874e+05 2261.27 NULL
2021 Department Of Transportation Gasoline Roller Engineer-L15 NA NA 2126975.81 2.337336e+04 20727.850 20750.50 91 2.072785e+04 1886234.35 NA NA NA NULL
2021 Department Of Transportation Graphic Artist 71521.00000 2.145630e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.145630e+05 2.145630e+05 0.00 NULL
2021 Department Of Transportation High Pressure Plant Tender NA NA 396102.49 4.951281e+04 60535.360 6682.00 8 4.951281e+04 396102.49 NA NA NA NULL
2021 Department Of Transportation Highway Repairer NA NA 9610343.82 1.937569e+04 17687.970 131734.50 496 1.768797e+04 8773233.12 NA NA NA NULL
2021 Department Of Transportation Highway Transportation Specialist 68266.00000 1.365320e+05 1.08 5.400000e-01 0.540 0.00 2 5.400000e-01 1.08 1.365331e+05 1.365331e+05 0.00 NULL
2021 Department Of Transportation Highways And Sewers Inspector 69016.47573 7.108697e+06 925755.40 8.987917e+03 4223.650 18185.25 103 4.223650e+03 435035.95 8.034452e+06 7.543733e+06 490719.45 NULL
2021 Department Of Transportation Industrial Hygienist 65936.57143 4.615560e+05 17707.14 2.529591e+03 330.540 404.25 7 3.305400e+02 2313.78 4.792631e+05 4.638698e+05 15393.36 NULL
2021 Department Of Transportation Investigator 51218.41667 6.146210e+05 8214.02 6.845017e+02 240.110 254.50 12 2.401100e+02 2881.32 6.228350e+05 6.175023e+05 5332.70 NULL
2021 Department Of Transportation Landmarks Preservationist 80340.00000 8.034000e+04 935.12 9.351200e+02 935.120 19.50 1 9.351200e+02 935.12 8.127512e+04 8.127512e+04 0.00 NULL
2021 Department Of Transportation Letterer And Sign Painter NA NA 71814.55 6.528595e+03 5464.080 1585.25 11 5.464080e+03 60104.88 NA NA NA NULL
2021 Department Of Transportation Machinist NA NA 250031.14 3.125389e+04 35362.500 3951.50 8 3.125389e+04 250031.14 NA NA NA NULL
2021 Department Of Transportation Management Auditor 78606.68421 1.493527e+06 392.47 2.065632e+01 0.000 5.25 19 0.000000e+00 0.00 1.493919e+06 1.493527e+06 392.47 NULL
2021 Department Of Transportation Marine Electronics Technician 104282.50000 4.171300e+05 40229.82 1.005745e+04 8977.430 499.75 4 8.977430e+03 35909.72 4.573598e+05 4.530397e+05 4320.10 NULL
2021 Department Of Transportation Marine Engineer 64231.31579 1.220395e+06 768107.80 4.042673e+04 48657.520 13378.75 19 4.042673e+04 768107.80 1.988503e+06 1.988503e+06 0.00 NULL
2021 Department Of Transportation Marine Oiler 59241.55932 3.495252e+06 2490460.77 4.221120e+04 45199.130 46896.50 59 4.221120e+04 2490460.77 5.985713e+06 5.985713e+06 0.00 NULL
2021 Department Of Transportation Masons Helper NA NA 2901.09 2.901090e+03 2901.090 72.00 1 2.901090e+03 2901.09 NA NA NA NULL
2021 Department Of Transportation Mate 57875.00000 3.414625e+06 2233074.75 3.784872e+04 39381.120 43527.00 59 3.784872e+04 2233074.75 5.647700e+06 5.647700e+06 0.00 NULL
2021 Department Of Transportation Mechanical Engineer 105441.00000 2.108820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.108820e+05 2.108820e+05 0.00 NULL
2021 Department Of Transportation Mechanical Engineering Intern 62260.00000 6.226000e+04 17162.00 1.716200e+04 17162.000 335.00 1 1.716200e+04 17162.00 7.942200e+04 7.942200e+04 0.00 NULL
2021 Department Of Transportation Motor Grader Operator NA NA 680060.39 2.428787e+04 26413.740 7574.25 28 2.428787e+04 680060.39 NA NA NA NULL
2021 Department Of Transportation Motor Vehicle Operator 44944.50000 8.988900e+04 921.92 4.609600e+02 460.960 27.50 2 4.609600e+02 921.92 9.081092e+04 9.081092e+04 0.00 NULL
2021 Department Of Transportation New York City Public Service Fellow 45290.00000 2.717400e+05 37245.60 6.207600e+03 95.135 965.75 6 9.513500e+01 570.81 3.089856e+05 2.723108e+05 36674.79 NULL
2021 Department Of Transportation Office Machine Aide 36245.72727 3.987030e+05 717.31 6.521000e+01 0.000 39.75 11 0.000000e+00 0.00 3.994203e+05 3.987030e+05 717.31 NULL
2021 Department Of Transportation Oiler NA NA 675733.94 4.826671e+04 48093.130 7603.00 14 4.809313e+04 673303.82 NA NA NA NULL
2021 Department Of Transportation Operations Communications Specialist 49188.17647 8.361990e+05 44695.85 2.629168e+03 934.770 1252.50 17 9.347700e+02 15891.09 8.808948e+05 8.520901e+05 28804.76 NULL
2021 Department Of Transportation Painter NA NA 45577.47 7.596245e+03 5367.455 732.50 6 5.367455e+03 32204.73 NA NA NA NULL
2021 Department Of Transportation Paralegal Aide 49677.00000 9.935400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.935400e+04 9.935400e+04 0.00 NULL
2021 Department Of Transportation Plumber NA NA 329304.11 3.658935e+04 39618.920 3125.50 9 3.658935e+04 329304.11 NA NA NA NULL
2021 Department Of Transportation Principal Administrative Associate - Non Supvr 64722.64351 9.061170e+06 243046.81 1.736049e+03 0.000 4950.00 140 0.000000e+00 0.00 9.304217e+06 9.061170e+06 243046.81 NULL
2021 Department Of Transportation Procurement Analyst 64625.35731 1.680259e+06 61192.32 2.353551e+03 0.000 1325.50 26 0.000000e+00 0.00 1.741452e+06 1.680259e+06 61192.32 NULL
2021 Department Of Transportation Project Manager 73079.72727 8.038770e+05 61937.47 5.630679e+03 2785.510 1192.50 11 2.785510e+03 30640.61 8.658145e+05 8.345176e+05 31296.86 NULL
2021 Department Of Transportation Public Records Aide 42916.97143 3.004188e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.004188e+05 3.004188e+05 0.00 NULL
2021 Department Of Transportation Public Records Officer 50706.00000 5.070600e+04 78.47 7.847000e+01 78.470 0.00 1 7.847000e+01 78.47 5.078447e+04 5.078447e+04 0.00 NULL
2021 Department Of Transportation Quality Assurance Specialist 59018.76733 3.541126e+05 83988.55 1.399809e+04 15353.455 2251.48 6 1.399809e+04 83988.55 4.381012e+05 4.381012e+05 0.00 NULL
2021 Department Of Transportation Radio Repair Mechanic NA NA 41978.77 8.395754e+03 8282.060 544.18 5 8.282060e+03 41410.30 NA NA NA NULL
2021 Department Of Transportation Research Assistant 59406.92098 5.940692e+05 7759.79 7.759790e+02 0.000 205.25 10 0.000000e+00 0.00 6.018290e+05 5.940692e+05 7759.79 NULL
2021 Department Of Transportation Rigger NA NA 193763.50 3.875270e+04 40018.770 2446.50 5 3.875270e+04 193763.50 NA NA NA NULL
2021 Department Of Transportation Roofer NA NA 3047.16 3.047160e+03 3047.160 60.00 1 3.047160e+03 3047.16 NA NA NA NULL
2021 Department Of Transportation Rubber Tire Repairer NA NA 43242.77 8.648554e+03 11264.980 957.75 5 8.648554e+03 43242.77 NA NA NA NULL
2021 Department Of Transportation Secretary 44864.08617 6.729613e+05 11193.77 7.462513e+02 0.000 333.00 15 0.000000e+00 0.00 6.841551e+05 6.729613e+05 11193.77 NULL
2021 Department Of Transportation Secretary To The Deputy Commissioner 64576.00000 6.457600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.457600e+04 6.457600e+04 0.00 NULL
2021 Department Of Transportation Senior Photographer 76910.00000 7.691000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.691000e+04 7.691000e+04 0.00 NULL
2021 Department Of Transportation Senior Service Inspector 55131.00000 5.513100e+04 6425.62 6.425620e+03 6425.620 168.25 1 6.425620e+03 6425.62 6.155662e+04 6.155662e+04 0.00 NULL
2021 Department Of Transportation Service Inspector 39243.00000 1.569720e+05 5239.37 1.309842e+03 1312.065 198.75 4 1.309842e+03 5239.37 1.622114e+05 1.622114e+05 0.00 NULL
2021 Department Of Transportation Sheet Metal Worker NA NA 114509.12 2.862728e+04 30118.400 979.50 4 2.862728e+04 114509.12 NA NA NA NULL
2021 Department Of Transportation Ship Carpenter NA NA 89699.85 1.793997e+04 17129.380 1117.50 5 1.712938e+04 85646.90 NA NA NA NULL
2021 Department Of Transportation Space Analyst 83430.00000 8.343000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.343000e+04 8.343000e+04 0.00 NULL
2021 Department Of Transportation Staff Analyst 63905.67586 2.939661e+06 59006.38 1.282747e+03 0.000 1238.50 46 0.000000e+00 0.00 2.998667e+06 2.939661e+06 59006.38 NULL
2021 Department Of Transportation Staff Analyst Trainee 42951.75000 1.718070e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.718070e+05 1.718070e+05 0.00 NULL
2021 Department Of Transportation Stationary Engineer NA NA 110620.63 5.531032e+04 55310.315 1183.50 2 5.531032e+04 110620.63 NA NA NA NULL
2021 Department Of Transportation Steam Fitter NA NA 356826.25 2.744817e+04 28091.250 3247.00 13 2.744817e+04 356826.25 NA NA NA NULL
2021 Department Of Transportation Stock Worker 42340.07143 5.927610e+05 54912.33 3.922309e+03 485.175 1748.25 14 4.851750e+02 6792.45 6.476733e+05 5.995534e+05 48119.88 NULL
2021 Department Of Transportation Strategic Initiative Specialist 120751.66667 1.449020e+06 3417.21 2.847675e+02 0.000 49.00 12 0.000000e+00 0.00 1.452437e+06 1.449020e+06 3417.21 NULL
2021 Department Of Transportation Summer College Intern 601.17500 1.202350e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.202350e+03 1.202350e+03 0.00 NULL
2021 Department Of Transportation Supervising Special Officer 62343.75000 4.987500e+05 107324.46 1.341556e+04 12933.985 2334.50 8 1.293399e+04 103471.88 6.060745e+05 6.022219e+05 3852.58 NULL
2021 Department Of Transportation Supervisor 78404.00000 7.840400e+04 178.59 1.785900e+02 178.590 3.00 1 1.785900e+02 178.59 7.858259e+04 7.858259e+04 0.00 NULL
2021 Department Of Transportation Supervisor Bricklayer NA NA 221496.12 5.537403e+04 62020.990 2731.50 4 5.537403e+04 221496.12 NA NA NA NULL
2021 Department Of Transportation Supervisor Bridge Painter NA NA 148594.18 1.061387e+04 9848.210 1372.75 14 9.848210e+03 137874.94 NA NA NA NULL
2021 Department Of Transportation Supervisor Bridge Repairer And Riveter NA NA 101098.09 2.527452e+04 32617.740 1441.75 4 2.527452e+04 101098.09 NA NA NA NULL
2021 Department Of Transportation Supervisor Carpenter NA NA 175994.39 4.399860e+04 46928.370 2216.75 4 4.399860e+04 175994.39 NA NA NA NULL
2021 Department Of Transportation Supervisor Electrician NA NA 850945.34 4.052121e+04 47934.520 8629.00 21 4.052121e+04 850945.34 NA NA NA NULL
2021 Department Of Transportation Supervisor Highway Repairer NA NA 4995447.33 2.291490e+04 21880.535 62191.25 218 2.188053e+04 4769956.63 NA NA NA NULL
2021 Department Of Transportation Supervisor Of Electrical Installations & Maintenance 73389.33333 2.642016e+06 295071.70 8.196436e+03 2657.755 5203.25 36 2.657755e+03 95679.18 2.937088e+06 2.737695e+06 199392.52 NULL
2021 Department Of Transportation Supervisor Of Mechanics NA NA 786665.29 2.622218e+04 23245.950 8822.00 30 2.324595e+04 697378.50 NA NA NA NULL
2021 Department Of Transportation Supervisor Of Office Machine Operations 48676.00000 9.735200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.735200e+04 9.735200e+04 0.00 NULL
2021 Department Of Transportation Supervisor Of Stock Workers 54419.00000 3.265140e+05 51748.58 8.624763e+03 6664.370 1293.75 6 6.664370e+03 39986.22 3.782626e+05 3.665002e+05 11762.36 NULL
2021 Department Of Transportation Supervisor Of Traffic Device Maintainers 74540.52174 1.714432e+06 428479.41 1.862954e+04 18547.090 8086.50 23 1.854709e+04 426583.07 2.142911e+06 2.141015e+06 1896.34 NULL
2021 Department Of Transportation Supervisor Of Traffic Device Maintainers Level 1 Only 72369.00000 3.473712e+06 633820.43 1.320459e+04 12701.010 10961.00 48 1.270101e+04 609648.48 4.107532e+06 4.083360e+06 24171.95 NULL
2021 Department Of Transportation Supervisor Painter NA NA 54858.33 2.742917e+04 27429.165 765.75 2 2.742917e+04 54858.33 NA NA NA NULL
2021 Department Of Transportation Supervisor Plumber NA NA 43900.78 4.390078e+04 43900.780 400.75 1 4.390078e+04 43900.78 NA NA NA NULL
2021 Department Of Transportation Supervisor Sheet Metal Worker NA NA 71308.62 3.565431e+04 35654.310 581.00 2 3.565431e+04 71308.62 NA NA NA NULL
2021 Department Of Transportation Supervisor Ship Carpenter NA NA 36398.62 3.639862e+04 36398.620 429.25 1 3.639862e+04 36398.62 NA NA NA NULL
2021 Department Of Transportation Supervisor Steamfitter NA NA 79543.50 7.954350e+04 79543.500 697.75 1 7.954350e+04 79543.50 NA NA NA NULL
2021 Department Of Transportation Telecommunications Associate 88385.61644 1.414170e+06 331921.41 2.074509e+04 12443.135 4831.48 16 1.244314e+04 199090.16 1.746091e+06 1.613260e+06 132831.25 NULL
2021 Department Of Transportation Tractor Operator NA NA 1146084.40 4.982976e+04 41586.860 9501.25 23 4.158686e+04 956497.78 NA NA NA NULL
2021 Department Of Transportation Traffic Control Inspector 55669.86458 5.344307e+06 210808.94 2.195926e+03 299.665 5071.00 96 2.996650e+02 28767.84 5.555116e+06 5.373075e+06 182041.10 NULL
2021 Department Of Transportation Traffic Device Maintainer 63418.43836 1.388864e+07 1676308.05 7.654375e+03 6737.490 35446.17 219 6.737490e+03 1475510.31 1.556495e+07 1.536415e+07 200797.74 NULL
2021 Department Of Transportation Transportation Specialist 79718.97041 1.347251e+07 806143.28 4.770079e+03 652.690 14180.00 169 6.526900e+02 110304.61 1.427865e+07 1.358281e+07 695838.67 NULL
2021 Department Of Transportation Welder NA NA 58670.37 2.933519e+04 29335.185 571.00 2 2.933519e+04 58670.37 NA NA NA NULL
2021 Department Of Transportation Worker’s Compensation Benefits Examiner 64002.00000 6.400200e+04 756.45 7.564500e+02 756.450 19.00 1 7.564500e+02 756.45 6.475845e+04 6.475845e+04 0.00 NULL
2021 Dept Of Citywide Admin Svcs *Attorney At Law 106924.00000 1.069240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.069240e+05 1.069240e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs *Custodial Assistant 37885.66667 1.136570e+05 24141.67 8.047223e+03 10998.830 777.00 3 8.047223e+03 24141.67 1.377987e+05 1.377987e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs *Watchperson 48982.00000 4.898200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.898200e+04 4.898200e+04 0.00 NULL
2021 Dept Of Citywide Admin Svcs Accountant 74016.41667 8.881970e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 8.881970e+05 8.881970e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Adm Manager-Non-Mgrl 86322.61667 5.179357e+06 17206.44 2.867740e+02 0.000 309.75 60 0.000000e+00 0.00 5.196563e+06 5.179357e+06 17206.44 NULL
2021 Dept Of Citywide Admin Svcs Admin Community Relations Specialist 81536.66667 4.892200e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.892200e+05 4.892200e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Admin Construction Project Manager 103307.88889 9.297710e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.297710e+05 9.297710e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Admin Contract Specialist 115849.00000 1.158490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.158490e+05 1.158490e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Admin Inspector 112007.50000 2.240150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.240150e+05 2.240150e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Admin Tests & Meas Spec 111336.50000 2.226730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.226730e+05 2.226730e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Administrative Accountant 100052.00000 1.000520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000520e+05 1.000520e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Administrative Architect 133610.40000 6.680520e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.680520e+05 6.680520e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Administrative Business Promotion Coordinator 128354.58333 1.540255e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.540255e+06 1.540255e+06 0.00 NULL
2021 Dept Of Citywide Admin Svcs Administrative City Planner 114421.87500 9.153750e+05 185.77 2.322125e+01 0.000 4.00 8 0.000000e+00 0.00 9.155608e+05 9.153750e+05 185.77 NULL
2021 Dept Of Citywide Admin Svcs Administrative Community Relations Specialist 174675.00000 8.733750e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.733750e+05 8.733750e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Administrative Construction Project Manager 115305.25000 4.612210e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.612210e+05 4.612210e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Administrative Engineer 141006.58333 1.692079e+06 128.05 1.067083e+01 0.000 0.00 12 0.000000e+00 0.00 1.692207e+06 1.692079e+06 128.05 NULL
2021 Dept Of Citywide Admin Svcs Administrative Graphic Artist 100328.00000 2.006560e+05 0.02 1.000000e-02 0.010 0.00 2 1.000000e-02 0.02 2.006560e+05 2.006560e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Administrative Inspector 122779.00000 2.455580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.455580e+05 2.455580e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Administrative Investigator 81234.66667 2.437040e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.437040e+05 2.437040e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Administrative Management Auditor 120309.00000 1.203090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.203090e+05 1.203090e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Administrative Manager 121992.28571 8.539460e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.539460e+05 8.539460e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Administrative Printing Services Manager 100666.00000 1.006660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.006660e+05 1.006660e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Administrative Procurement Analyst 91457.00000 9.145700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.145700e+04 9.145700e+04 0.00 NULL
2021 Dept Of Citywide Admin Svcs Administrative Procurement Analyst-Non-Mgrl 93528.37500 1.496454e+06 34590.61 2.161913e+03 0.000 477.50 16 0.000000e+00 0.00 1.531045e+06 1.496454e+06 34590.61 NULL
2021 Dept Of Citywide Admin Svcs Administrative Project Manager 122632.88235 2.084759e+06 1456.85 8.569706e+01 0.000 21.00 17 0.000000e+00 0.00 2.086216e+06 2.084759e+06 1456.85 NULL
2021 Dept Of Citywide Admin Svcs Administrative Public Information Specialist 123871.00000 2.477420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.477420e+05 2.477420e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Administrative Quality Assurance Specialist 87181.30111 1.569263e+06 159571.77 8.865098e+03 4159.420 3055.25 18 4.159420e+03 74869.56 1.728835e+06 1.644133e+06 84702.21 NULL
2021 Dept Of Citywide Admin Svcs Administrative Real Property Manager 115488.00000 1.154880e+05 627.80 6.278000e+02 627.800 8.25 1 6.278000e+02 627.80 1.161158e+05 1.161158e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Administrative Space Analyst 115855.33333 3.475660e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.475660e+05 3.475660e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Administrative Staff Analyst 113738.67316 1.114639e+07 66377.21 6.773185e+02 0.000 1137.00 98 0.000000e+00 0.00 1.121277e+07 1.114639e+07 66377.21 NULL
2021 Dept Of Citywide Admin Svcs Administrative Supervisor Of Building Maintenance 102481.00000 2.049620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.049620e+05 2.049620e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Agency Attorney 101037.85185 2.728022e+06 12024.85 4.453648e+02 0.000 170.00 27 0.000000e+00 0.00 2.740047e+06 2.728022e+06 12024.85 NULL
2021 Dept Of Citywide Admin Svcs Agency Attorney Interne 67336.00000 1.346720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.346720e+05 1.346720e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Appraiser 102101.40000 5.105070e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.105070e+05 5.105070e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Architect 101713.53846 1.322276e+06 4.08 3.138462e-01 0.000 0.00 13 0.000000e+00 0.00 1.322280e+06 1.322276e+06 4.08 NULL
2021 Dept Of Citywide Admin Svcs Asbestos Handler 83206.00000 3.328240e+05 43127.11 1.078178e+04 12353.905 709.25 4 1.078178e+04 43127.11 3.759511e+05 3.759511e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Assistant Architect 76687.00000 4.601220e+05 3713.91 6.189850e+02 0.000 76.50 6 0.000000e+00 0.00 4.638359e+05 4.601220e+05 3713.91 NULL
2021 Dept Of Citywide Admin Svcs Assistant Civil Engineer 81548.50000 1.630970e+05 3000.92 1.500460e+03 1500.460 57.00 2 1.500460e+03 3000.92 1.660979e+05 1.660979e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Assistant Commissioner 171122.71429 1.197859e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.197859e+06 1.197859e+06 0.00 NULL
2021 Dept Of Citywide Admin Svcs Assistant Electrical Engineer 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2021 Dept Of Citywide Admin Svcs Assistant Landscape Architect 75651.00000 7.565100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.565100e+04 7.565100e+04 0.00 NULL
2021 Dept Of Citywide Admin Svcs Assistant Mechanical Engineer 79714.33333 4.782860e+05 4703.07 7.838450e+02 0.000 82.75 6 0.000000e+00 0.00 4.829891e+05 4.782860e+05 4703.07 NULL
2021 Dept Of Citywide Admin Svcs Assistant Printing Press Operator 65039.00000 6.503900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.503900e+04 6.503900e+04 0.00 NULL
2021 Dept Of Citywide Admin Svcs Associate Chemist 82355.00000 8.235500e+04 2646.20 2.646200e+03 2646.200 48.75 1 2.646200e+03 2646.20 8.500120e+04 8.500120e+04 0.00 NULL
2021 Dept Of Citywide Admin Svcs Associate Project Manager 97881.40000 1.468221e+06 6074.43 4.049620e+02 0.000 76.50 15 0.000000e+00 0.00 1.474295e+06 1.468221e+06 6074.43 NULL
2021 Dept Of Citywide Admin Svcs Associate Quality Assurance Specialist 74848.00000 1.496960e+05 11314.30 5.657150e+03 5657.150 203.50 2 5.657150e+03 11314.30 1.610103e+05 1.610103e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Associate Real Property Manager 67559.75000 2.702390e+05 8295.36 2.073840e+03 416.030 187.00 4 4.160300e+02 1664.12 2.785344e+05 2.719031e+05 6631.24 NULL
2021 Dept Of Citywide Admin Svcs Associate Staff Analyst 81929.28571 2.294020e+06 10493.54 3.747693e+02 0.000 165.50 28 0.000000e+00 0.00 2.304514e+06 2.294020e+06 10493.54 NULL
2021 Dept Of Citywide Admin Svcs Auto Mechanic NA NA 9986.33 2.496582e+03 2167.280 152.50 4 2.167280e+03 8669.12 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Bookkeeper 56009.66667 1.680290e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.680290e+05 1.680290e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Bricklayer NA NA 28869.82 2.886982e+04 28869.820 395.00 1 2.886982e+04 28869.82 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Business Promotion Coordinator 84984.75000 3.399390e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.399390e+05 3.399390e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Carpenter NA NA 789254.32 4.642672e+04 48941.270 9781.25 17 4.642672e+04 789254.32 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Cement Mason NA NA 77176.45 7.717645e+04 77176.450 802.25 1 7.717645e+04 77176.45 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Certified It Administrator 104269.50000 6.256170e+05 4697.93 7.829883e+02 676.050 75.00 6 6.760500e+02 4056.30 6.303149e+05 6.296733e+05 641.63 NULL
2021 Dept Of Citywide Admin Svcs Certified It Developer 113580.33333 1.022223e+06 3321.36 3.690400e+02 0.000 48.00 9 0.000000e+00 0.00 1.025544e+06 1.022223e+06 3321.36 NULL
2021 Dept Of Citywide Admin Svcs Chairman 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Chauffeur-Attendant 56023.34615 1.456607e+06 314037.10 1.207835e+04 10995.115 7740.63 26 1.099511e+04 285872.99 1.770644e+06 1.742480e+06 28164.11 NULL
2021 Dept Of Citywide Admin Svcs Chief Of Staff 205000.00000 2.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.050000e+05 2.050000e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs City Custodial Assistant 36553.86353 1.553539e+07 3234142.45 7.609747e+03 2335.090 118211.90 425 2.335090e+03 992413.25 1.876953e+07 1.652781e+07 2241729.20 NULL
2021 Dept Of Citywide Admin Svcs City Laborer NA NA 370735.14 2.180795e+04 18374.340 6659.25 17 1.837434e+04 312363.78 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs City Planner 89913.70000 8.991370e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 8.991370e+05 8.991370e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs City Research Scientist 84356.09091 9.279170e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 9.279170e+05 9.279170e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs City Security Aide 40125.48649 1.484643e+06 247201.63 6.681125e+03 3647.880 8196.00 37 3.647880e+03 134971.56 1.731845e+06 1.619615e+06 112230.07 NULL
2021 Dept Of Citywide Admin Svcs Clerical Associate 50006.66250 3.200426e+06 13925.25 2.175820e+02 0.000 365.75 64 0.000000e+00 0.00 3.214352e+06 3.200426e+06 13925.25 NULL
2021 Dept Of Citywide Admin Svcs Clock Repairer 3145.33000 3.145330e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.145330e+03 3.145330e+03 0.00 NULL
2021 Dept Of Citywide Admin Svcs College Aide 14764.37500 2.952875e+05 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 2.952875e+05 2.952875e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Commissioner 179125.25000 7.165010e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.165010e+05 7.165010e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Commissioner Of Citywide Administrative Services 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Community Assistant 37453.02703 1.385762e+06 5682.88 1.535914e+02 0.000 240.50 37 0.000000e+00 0.00 1.391445e+06 1.385762e+06 5682.88 NULL
2021 Dept Of Citywide Admin Svcs Community Associate 51996.66329 4.107736e+06 188861.21 2.390648e+03 267.780 5386.75 79 2.677800e+02 21154.62 4.296598e+06 4.128891e+06 167706.59 NULL
2021 Dept Of Citywide Admin Svcs Community Coordinator 68529.55842 3.906185e+06 264008.69 4.631731e+03 0.000 5134.25 57 0.000000e+00 0.00 4.170194e+06 3.906185e+06 264008.69 NULL
2021 Dept Of Citywide Admin Svcs Community Service Aide 34762.00000 6.952400e+04 23513.50 1.175675e+04 11756.750 826.75 2 1.175675e+04 23513.50 9.303750e+04 9.303750e+04 0.00 NULL
2021 Dept Of Citywide Admin Svcs Computer Aide-Non-Spvr 68772.00000 6.877200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.877200e+04 6.877200e+04 0.00 NULL
2021 Dept Of Citywide Admin Svcs Computer Associate 81900.53846 1.064707e+06 23067.60 1.774431e+03 0.000 354.00 13 0.000000e+00 0.00 1.087775e+06 1.064707e+06 23067.60 NULL
2021 Dept Of Citywide Admin Svcs Computer Operations Manager 133832.00000 1.338320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.338320e+05 1.338320e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Computer Specialist 103159.90244 4.229556e+06 71782.12 1.750783e+03 0.000 944.25 41 0.000000e+00 0.00 4.301338e+06 4.229556e+06 71782.12 NULL
2021 Dept Of Citywide Admin Svcs Computer Systems Manager 142865.27027 5.286015e+06 2090.77 5.650730e+01 0.000 32.75 37 0.000000e+00 0.00 5.288106e+06 5.286015e+06 2090.77 NULL
2021 Dept Of Citywide Admin Svcs Confidential Strategy Planner 82151.00000 8.215100e+05 15186.36 1.518636e+03 430.195 279.25 10 4.301950e+02 4301.95 8.366964e+05 8.258119e+05 10884.41 NULL
2021 Dept Of Citywide Admin Svcs Construction Project Manager 89770.25000 1.795405e+06 2032.75 1.016375e+02 0.000 35.00 20 0.000000e+00 0.00 1.797438e+06 1.795405e+06 2032.75 NULL
2021 Dept Of Citywide Admin Svcs Custodian 44959.09097 8.362391e+06 3221232.49 1.731845e+04 14607.000 97335.05 186 1.460700e+04 2716902.00 1.158362e+07 1.107929e+07 504330.49 NULL
2021 Dept Of Citywide Admin Svcs Deputy Assistant Commissioner 100165.84000 5.008292e+06 0.00 0.000000e+00 0.000 0.00 50 0.000000e+00 0.00 5.008292e+06 5.008292e+06 0.00 NULL
2021 Dept Of Citywide Admin Svcs Deputy Commissioner 219562.25000 8.782490e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.782490e+05 8.782490e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Deputy Commissioner For City Personnel Services 213783.00000 2.137830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.137830e+05 2.137830e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Director Of Energy Conservation 213783.00000 2.137830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.137830e+05 2.137830e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Director Of Stores 105115.00000 1.051150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.051150e+05 1.051150e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Director Of The City Record 150056.00000 3.001120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.001120e+05 3.001120e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Director,Citywide Occupational Safety & Health Program 131038.00000 1.310380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.310380e+05 1.310380e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Electrical Engineer 105575.00000 2.111500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.111500e+05 2.111500e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Electrician NA NA 705514.70 2.204733e+04 940.430 7732.00 32 9.404300e+02 30093.76 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Elevator Mechanic NA NA 269843.14 7.709804e+03 7658.270 3569.75 35 7.658270e+03 268039.45 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Elevator Mechanic Helper NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Estimator 85345.50000 1.706910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.706910e+05 1.706910e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Exec Asst To The Deputy Com For Citywide Personnel Svcs-Dcas 103603.00000 1.036030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.036030e+05 1.036030e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Executive Agency Counsel 139332.35714 1.950653e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.950653e+06 1.950653e+06 0.00 NULL
2021 Dept Of Citywide Admin Svcs Executive Assistant To The Commissioner 74475.00000 7.447500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.447500e+04 7.447500e+04 0.00 NULL
2021 Dept Of Citywide Admin Svcs Executive Program Specialist 138151.00000 1.381510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.381510e+05 1.381510e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs General Counsel 213783.00000 4.275660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.275660e+05 4.275660e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Graphic Artist 71497.75000 2.859910e+05 773.79 1.934475e+02 114.570 16.00 4 1.145700e+02 458.28 2.867648e+05 2.864493e+05 315.51 NULL
2021 Dept Of Citywide Admin Svcs High Pressure Plant Tender NA NA 927245.85 1.783165e+04 11120.715 15578.50 52 1.112072e+04 578277.18 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Industrial Hygienist 75467.00000 7.546700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.546700e+04 7.546700e+04 0.00 NULL
2021 Dept Of Citywide Admin Svcs Investigator 50269.50000 5.026950e+05 499.85 4.998500e+01 0.000 12.25 10 0.000000e+00 0.00 5.031948e+05 5.026950e+05 499.85 NULL
2021 Dept Of Citywide Admin Svcs It Infrastructure Engineer 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2021 Dept Of Citywide Admin Svcs It Project Specialist 112500.00000 2.250000e+05 2579.36 1.289680e+03 1289.680 26.25 2 1.289680e+03 2579.36 2.275794e+05 2.275794e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs It Service Management Specialist 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Job Training Participant 4509.51167 8.117121e+04 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 8.117121e+04 8.117121e+04 0.00 NULL
2021 Dept Of Citywide Admin Svcs Landscape Architect 93488.00000 9.348800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.348800e+04 9.348800e+04 0.00 NULL
2021 Dept Of Citywide Admin Svcs Machinist NA NA 34475.10 3.447510e+04 34475.100 662.00 1 3.447510e+04 34475.10 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Maintenance Worker NA NA 1061023.47 2.792167e+04 22564.570 22570.47 38 2.256457e+04 857453.66 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Management Auditor 69570.00000 3.478500e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.478500e+05 3.478500e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Mechanical Engineer 98925.00000 1.978500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.978500e+05 1.978500e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Media Services Technician 58300.00000 5.830000e+04 234.12 2.341200e+02 234.120 7.25 1 2.341200e+02 234.12 5.853412e+04 5.853412e+04 0.00 NULL
2021 Dept Of Citywide Admin Svcs Motor Vehicle Operator 44618.00000 4.461800e+04 5583.34 5.583340e+03 5583.340 148.00 1 5.583340e+03 5583.34 5.020134e+04 5.020134e+04 0.00 NULL
2021 Dept Of Citywide Admin Svcs Motor Vehicle Supervisor 60090.50000 1.201810e+05 14436.58 7.218290e+03 7218.290 334.00 2 7.218290e+03 14436.58 1.346176e+05 1.346176e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs New York City Fellow 42543.76336 4.254376e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.254376e+05 4.254376e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs New York City Public Service Fellow 43182.75000 5.181930e+05 13616.00 1.134667e+03 262.300 429.50 12 2.623000e+02 3147.60 5.318090e+05 5.213406e+05 10468.40 NULL
2021 Dept Of Citywide Admin Svcs New York City Urban Fellow 25823.38125 8.263482e+05 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 8.263482e+05 8.263482e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Office Machine Aide 47233.00000 9.446600e+04 53.33 2.666500e+01 26.665 2.00 2 2.666500e+01 53.33 9.451933e+04 9.451933e+04 0.00 NULL
2021 Dept Of Citywide Admin Svcs Oiler NA NA 547520.82 1.766196e+04 9804.970 6086.75 31 9.804970e+03 303954.07 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Painter NA NA 47918.05 7.986342e+03 4043.290 772.25 6 4.043290e+03 24259.74 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Plasterer NA NA 133561.37 4.452046e+04 54232.200 1841.50 3 4.452046e+04 133561.37 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Plumber NA NA 878980.94 5.170476e+04 60893.270 8330.00 17 5.170476e+04 878980.94 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Principal Administrative Associate - Non Supvr 66481.53465 6.714635e+06 90198.08 8.930503e+02 0.000 1849.25 101 0.000000e+00 0.00 6.804833e+06 6.714635e+06 90198.08 NULL
2021 Dept Of Citywide Admin Svcs Procurement Analyst 70546.80000 1.410936e+06 16744.91 8.372455e+02 0.000 345.00 20 0.000000e+00 0.00 1.427681e+06 1.410936e+06 16744.91 NULL
2021 Dept Of Citywide Admin Svcs Project Manager 61800.00000 6.180000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.180000e+04 6.180000e+04 0.00 NULL
2021 Dept Of Citywide Admin Svcs Public Records Officer 68613.00000 1.372260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.372260e+05 1.372260e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Quality Assurance Specialist 59885.80000 5.988580e+05 39171.95 3.917195e+03 4443.865 1075.75 10 3.917195e+03 39171.95 6.380299e+05 6.380299e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Radio And Television Operator 55824.00000 1.116480e+05 6487.06 3.243530e+03 3243.530 175.75 2 3.243530e+03 6487.06 1.181351e+05 1.181351e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Real Property Manager 51500.00000 5.150000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.150000e+04 5.150000e+04 0.00 NULL
2021 Dept Of Citywide Admin Svcs Secretary 49963.90000 4.996390e+05 628.60 6.286000e+01 0.000 18.00 10 0.000000e+00 0.00 5.002676e+05 4.996390e+05 628.60 NULL
2021 Dept Of Citywide Admin Svcs Secretary Of Comm 66611.00000 6.661100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.661100e+04 6.661100e+04 0.00 NULL
2021 Dept Of Citywide Admin Svcs Secretary To The Deputy Commissioner 96648.99500 1.932980e+05 21555.60 1.077780e+04 10777.800 395.00 2 1.077780e+04 21555.60 2.148536e+05 2.148536e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Senior Estimator 97404.50000 1.948090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.948090e+05 1.948090e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Senior Salvage Appraiser 77609.00000 7.760900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.760900e+04 7.760900e+04 0.00 NULL
2021 Dept Of Citywide Admin Svcs Senior Stationary Engineer NA NA 1020766.92 3.780618e+04 30536.040 9452.00 27 3.053604e+04 824473.08 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Sheet Metal Worker NA NA 95285.85 4.764293e+04 47642.925 849.25 2 4.764293e+04 95285.85 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Space Analyst 75914.16667 4.554850e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.554850e+05 4.554850e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Special Assistant To The First Deputy Commissioner 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2021 Dept Of Citywide Admin Svcs Special Examiner 21115.05937 1.266904e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.266904e+05 1.266904e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Special Officer 50181.78049 4.114906e+06 516025.25 6.292991e+03 4731.700 14161.81 82 4.731700e+03 387999.40 4.630931e+06 4.502905e+06 128025.85 NULL
2021 Dept Of Citywide Admin Svcs Staff Analyst 59955.46576 3.537372e+06 37434.70 6.344864e+02 0.000 929.25 59 0.000000e+00 0.00 3.574807e+06 3.537372e+06 37434.70 NULL
2021 Dept Of Citywide Admin Svcs Staff Analyst Trainee 46322.16667 2.779330e+05 832.08 1.386800e+02 129.295 30.00 6 1.292950e+02 775.77 2.787651e+05 2.787088e+05 56.31 NULL
2021 Dept Of Citywide Admin Svcs Stationary Engineer NA NA 5613426.25 5.103115e+04 45665.595 58946.45 110 4.566560e+04 5023215.45 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Statistician 74777.00000 7.477700e+04 879.96 8.799600e+02 879.960 21.50 1 8.799600e+02 879.96 7.565696e+04 7.565696e+04 0.00 NULL
2021 Dept Of Citywide Admin Svcs Steam Fitter NA NA 230230.00 1.918583e+04 20240.000 2099.00 12 1.918583e+04 230230.00 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Steam Fitter’s Helper NA NA 17490.00 1.749000e+04 17490.000 212.00 1 1.749000e+04 17490.00 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Stock Worker 37690.53846 4.899770e+05 90135.21 6.933478e+03 5499.040 3054.25 13 5.499040e+03 71487.52 5.801122e+05 5.614645e+05 18647.69 NULL
2021 Dept Of Citywide Admin Svcs Strategic Initiative Specialist 97340.75000 3.893630e+05 9778.64 2.444660e+03 108.530 138.50 4 1.085300e+02 434.12 3.991416e+05 3.897971e+05 9344.52 NULL
2021 Dept Of Citywide Admin Svcs Supervising Special Officer 65369.46154 1.699606e+06 442841.64 1.703237e+04 12886.750 8988.75 26 1.288675e+04 335055.50 2.142448e+06 2.034662e+06 107786.14 NULL
2021 Dept Of Citywide Admin Svcs Supervisor NA NA 40696.01 4.069601e+04 40696.010 736.00 1 4.069601e+04 40696.01 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Supervisor Bricklayer NA NA 74800.69 7.480069e+04 74800.690 895.50 1 7.480069e+04 74800.69 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Supervisor Carpenter NA NA 143096.27 4.769876e+04 52426.750 1737.50 3 4.769876e+04 143096.27 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Supervisor Electrician NA NA 177717.47 8.885874e+04 88858.735 1828.50 2 8.885874e+04 177717.47 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Supervisor Elevator Mechanic NA NA 54283.46 1.085669e+04 11586.800 630.25 5 1.085669e+04 54283.46 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Supervisor Locksmith NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Supervisor Of Mechanics NA NA 2046.06 1.023030e+03 1023.030 23.50 2 1.023030e+03 2046.06 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Supervisor Of Motor Transport 75000.00000 7.500000e+04 31363.27 3.136327e+04 31363.270 543.25 1 3.136327e+04 31363.27 1.063633e+05 1.063633e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Supervisor Of Radio And Television Operators 87745.00000 1.754900e+05 27548.07 1.377403e+04 13774.035 484.50 2 1.377403e+04 27548.07 2.030381e+05 2.030381e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Supervisor Of Stock Workers 53813.33333 4.843200e+05 149364.58 1.659606e+04 19725.020 3612.50 9 1.659606e+04 149364.58 6.336846e+05 6.336846e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Supervisor Painter NA NA 73574.28 7.357428e+04 73574.280 1027.00 1 7.357428e+04 73574.28 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Supervisor Plumber NA NA 126061.22 1.260612e+05 126061.220 1140.50 1 1.260612e+05 126061.22 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Supervisor Sheet Metal Worker NA NA 112912.09 1.129121e+05 112912.090 950.00 1 1.129121e+05 112912.09 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Supervisor Thermostat Repair NA NA 24134.27 2.413427e+04 24134.270 218.25 1 2.413427e+04 24134.27 NA NA NA NULL
2021 Dept Of Citywide Admin Svcs Telecommunications Associate 71386.00000 1.427720e+05 249.43 1.247150e+02 124.715 6.00 2 1.247150e+02 249.43 1.430214e+05 1.430214e+05 0.00 NULL
2021 Dept Of Citywide Admin Svcs Tests And Measurement Specialist 71479.43478 1.644027e+06 298.99 1.299957e+01 0.000 5.75 23 0.000000e+00 0.00 1.644326e+06 1.644027e+06 298.99 NULL
2021 Dept Of Citywide Admin Svcs Thermostat Repairer NA NA 80246.64 8.916293e+03 9555.030 742.25 9 8.916293e+03 80246.64 NA NA NA NULL
2021 Dept Of Ed Hrly Support Staff Coop Education Trainee Computer Tech Aide/Jr 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2021 Dept Of Ed Hrly Support Staff F/T Dc 37 Family Para 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 2211 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2021 Dept Of Ed Hrly Support Staff F/T Film Inspection Asst. 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2021 Dept Of Ed Hrly Support Staff F/T Group Leader 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2021 Dept Of Ed Hrly Support Staff F/T Health Service Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 103 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2021 Dept Of Ed Hrly Support Staff F/T School Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 7232 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2021 Dept Of Ed Hrly Support Staff F/T School Guard 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2021 Dept Of Ed Hrly Support Staff F/T School Lunch Helper 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 3100 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2021 Dept Of Ed Hrly Support Staff F/T School Safety Officer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2021 Dept Of Ed Hrly Support Staff F/T Sr. School Lunch Helper 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 3793 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2021 Dept Of Ed Hrly Support Staff Student Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 861 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2021 Dept Of Ed Hrly Support Staff Substitute Recreation Assistant 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2021 Dept Of Ed Hrly Support Staff Substitute School Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 257 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2021 Dept Of Ed Hrly Support Staff Substitute School Lunch Helper 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 186 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2021 Dept Of Ed Hrly Support Staff Substitute Sr. School Lunch Helper 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 127 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2021 Dept Of Ed Hrly Support Staff Supervising School Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 497 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2021 Dept Of Ed Hrly Support Staff NA NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Dept Of Ed Para Professionals Adult Ed-30 H 43538.89286 1.219089e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 1.219089e+06 1.219089e+06 0.00 NULL
2021 Dept Of Ed Para Professionals Adult Ed-35 H 47264.00000 9.452800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.452800e+04 9.452800e+04 0.00 NULL
2021 Dept Of Ed Para Professionals Annual Ed Para 40197.95706 1.279702e+09 0.00 0.000000e+00 0.000 0.00 31835 0.000000e+00 0.00 1.279702e+09 1.279702e+09 0.00 NULL
2021 Dept Of Ed Para Professionals Pre-Ses Ed Para 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 64 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2021 Dept Of Ed Para Professionals Substitute Ed Para NA NA 0.00 0.000000e+00 0.000 0.00 7090 0.000000e+00 0.00 NA NA NA NULL
2021 Dept Of Ed Para Professionals Teacher Aide 29041.64674 5.343663e+06 0.00 0.000000e+00 0.000 0.00 184 0.000000e+00 0.00 5.343663e+06 5.343663e+06 0.00 NULL
2021 Dept Of Ed Para Professionals NA 39842.00000 3.984200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.984200e+04 3.984200e+04 0.00 NULL
2021 Dept Of Ed Pedagogical 12 Month Special Education Asst. Principal 146276.79098 3.569154e+07 0.00 0.000000e+00 0.000 0.00 244 0.000000e+00 0.00 3.569154e+07 3.569154e+07 0.00 NULL
2021 Dept Of Ed Pedagogical 12 Month Special Education Supervisor 148667.52381 3.122018e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 3.122018e+06 3.122018e+06 0.00 NULL
2021 Dept Of Ed Pedagogical Adult Educat Teach - Reg Sub 43742.75000 3.499420e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 3.499420e+05 3.499420e+05 0.00 NULL
2021 Dept Of Ed Pedagogical Adult Education Teacher 105292.75573 2.758670e+07 0.00 0.000000e+00 0.000 0.00 262 0.000000e+00 0.00 2.758670e+07 2.758670e+07 0.00 NULL
2021 Dept Of Ed Pedagogical Aspiring Principal 119357.00000 2.387140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.387140e+05 2.387140e+05 0.00 NULL
2021 Dept Of Ed Pedagogical Assistant Principal 138143.36151 3.611067e+08 0.00 0.000000e+00 0.000 0.00 2614 0.000000e+00 0.00 3.611067e+08 3.611067e+08 0.00 NULL
2021 Dept Of Ed Pedagogical Assistant Principal Assigned 151136.71429 1.057957e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.057957e+06 1.057957e+06 0.00 NULL
2021 Dept Of Ed Pedagogical Assistant Superintendent 172818.72245 4.234059e+07 0.00 0.000000e+00 0.000 0.00 245 0.000000e+00 0.00 4.234059e+07 4.234059e+07 0.00 NULL
2021 Dept Of Ed Pedagogical Chancellor 363346.00000 3.633460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.633460e+05 3.633460e+05 0.00 NULL
2021 Dept Of Ed Pedagogical Community Supertindent 187257.65333 1.404432e+07 0.00 0.000000e+00 0.000 0.00 75 0.000000e+00 0.00 1.404432e+07 1.404432e+07 0.00 NULL
2021 Dept Of Ed Pedagogical Cse Chairperson 156201.44444 2.811626e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.811626e+06 2.811626e+06 0.00 NULL
2021 Dept Of Ed Pedagogical Deputy Chancellor 241102.00000 2.411020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411020e+05 2.411020e+05 0.00 NULL
2021 Dept Of Ed Pedagogical Deputy Community Superintendent 171173.33333 5.135200e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.135200e+05 5.135200e+05 0.00 NULL
2021 Dept Of Ed Pedagogical Deputy Regional Superintendent 217752.00000 2.177520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.177520e+05 2.177520e+05 0.00 NULL
2021 Dept Of Ed Pedagogical Director 148185.88000 3.704647e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 3.704647e+06 3.704647e+06 0.00 NULL
2021 Dept Of Ed Pedagogical Educational Administrator Csa 144148.03181 1.450129e+08 0.00 0.000000e+00 0.000 0.00 1006 0.000000e+00 0.00 1.450129e+08 1.450129e+08 0.00 NULL
2021 Dept Of Ed Pedagogical Educational Administrator Uft 138453.30769 1.799893e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.799893e+06 1.799893e+06 0.00 NULL
2021 Dept Of Ed Pedagogical Guidance Counselor 104776.17347 3.309879e+08 0.00 0.000000e+00 0.000 0.00 3159 0.000000e+00 0.00 3.309879e+08 3.309879e+08 0.00 NULL
2021 Dept Of Ed Pedagogical Guidance Counselor Assigned A 98202.27692 6.383148e+06 0.00 0.000000e+00 0.000 0.00 65 0.000000e+00 0.00 6.383148e+06 6.383148e+06 0.00 NULL
2021 Dept Of Ed Pedagogical Guidance Counselor-Reg Sub 66371.50000 5.309720e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.309720e+05 5.309720e+05 0.00 NULL
2021 Dept Of Ed Pedagogical Lab Specialist/Assistant 89588.05517 1.299027e+07 0.00 0.000000e+00 0.000 0.00 145 0.000000e+00 0.00 1.299027e+07 1.299027e+07 0.00 NULL
2021 Dept Of Ed Pedagogical Local Instructional Supervisor 200807.25000 8.032290e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.032290e+05 8.032290e+05 0.00 NULL
2021 Dept Of Ed Pedagogical Principal 173020.61097 4.100588e+08 0.00 0.000000e+00 0.000 0.00 2370 0.000000e+00 0.00 4.100588e+08 4.100588e+08 0.00 NULL
2021 Dept Of Ed Pedagogical Principal Assigned 180584.22642 9.570964e+06 0.00 0.000000e+00 0.000 0.00 53 0.000000e+00 0.00 9.570964e+06 9.570964e+06 0.00 NULL
2021 Dept Of Ed Pedagogical Psychologist In Train - Reg Sub 54680.54545 2.405944e+06 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 2.405944e+06 2.405944e+06 0.00 NULL
2021 Dept Of Ed Pedagogical School Medical Inspector 92726.00000 1.854520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.854520e+05 1.854520e+05 0.00 NULL
2021 Dept Of Ed Pedagogical School Medical Inspector - Reg Sub 73558.00000 1.471160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.471160e+05 1.471160e+05 0.00 NULL
2021 Dept Of Ed Pedagogical School Psychiatrist 99945.00000 9.994500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.994500e+04 9.994500e+04 0.00 NULL
2021 Dept Of Ed Pedagogical School Psycholgist 104200.60887 1.550505e+08 0.00 0.000000e+00 0.000 0.00 1488 0.000000e+00 0.00 1.550505e+08 1.550505e+08 0.00 NULL
2021 Dept Of Ed Pedagogical School Secretary 64645.28628 3.924615e+08 0.00 0.000000e+00 0.000 0.00 6071 0.000000e+00 0.00 3.924615e+08 3.924615e+08 0.00 NULL
2021 Dept Of Ed Pedagogical School Secretary-Reg Sub 47467.66667 1.851239e+07 0.00 0.000000e+00 0.000 0.00 390 0.000000e+00 0.00 1.851239e+07 1.851239e+07 0.00 NULL
2021 Dept Of Ed Pedagogical School Social Worker 104473.53157 2.167826e+08 0.00 0.000000e+00 0.000 0.00 2075 0.000000e+00 0.00 2.167826e+08 2.167826e+08 0.00 NULL
2021 Dept Of Ed Pedagogical School Social Worker - Reg Sub 81127.00000 4.056350e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.056350e+05 4.056350e+05 0.00 NULL
2021 Dept Of Ed Pedagogical Supervisor 136195.81579 5.175441e+06 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 5.175441e+06 5.175441e+06 0.00 NULL
2021 Dept Of Ed Pedagogical Supervisor Assigned 152411.15385 3.962690e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 3.962690e+06 3.962690e+06 0.00 NULL
2021 Dept Of Ed Pedagogical Teach Asst Vocation - Reg Sub 56262.23077 3.657045e+06 0.00 0.000000e+00 0.000 0.00 65 0.000000e+00 0.00 3.657045e+06 3.657045e+06 0.00 NULL
2021 Dept Of Ed Pedagogical Teacher 94198.91524 5.680195e+09 0.00 0.000000e+00 0.000 0.00 60300 0.000000e+00 0.00 5.680195e+09 5.680195e+09 0.00 NULL
2021 Dept Of Ed Pedagogical Teacher Assigned A 106384.17677 8.425627e+07 0.00 0.000000e+00 0.000 0.00 792 0.000000e+00 0.00 8.425627e+07 8.425627e+07 0.00 NULL
2021 Dept Of Ed Pedagogical Teacher Assigned B 103180.33333 3.095410e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.095410e+05 3.095410e+05 0.00 NULL
2021 Dept Of Ed Pedagogical Teacher Assistant - Reg Sub 22500.00000 2.925000e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 2.925000e+05 2.925000e+05 0.00 NULL
2021 Dept Of Ed Pedagogical Teacher Attendance 94506.81614 4.215004e+07 0.00 0.000000e+00 0.000 0.00 446 0.000000e+00 0.00 4.215004e+07 4.215004e+07 0.00 NULL
2021 Dept Of Ed Pedagogical Teacher Special Education 87648.59415 2.620693e+09 0.00 0.000000e+00 0.000 0.00 29900 0.000000e+00 0.00 2.620693e+09 2.620693e+09 0.00 NULL
2021 Dept Of Ed Pedagogical Teacher Special Education-Reg Sub 65850.34574 2.475973e+07 0.00 0.000000e+00 0.000 0.00 376 0.000000e+00 0.00 2.475973e+07 2.475973e+07 0.00 NULL
2021 Dept Of Ed Pedagogical Teacher Trainer 107949.75000 4.317990e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.317990e+05 4.317990e+05 0.00 NULL
2021 Dept Of Ed Pedagogical Teacher-Reg Sub 66941.51044 5.127720e+07 0.00 0.000000e+00 0.000 0.00 766 0.000000e+00 0.00 5.127720e+07 5.127720e+07 0.00 NULL
2021 Dept Of Ed Pedagogical Uft School Secretary Assigned - Non School Based- 12 Month 65069.50000 2.602780e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.602780e+05 2.602780e+05 0.00 NULL
2021 Dept Of Ed Per Diem Teachers Assistant Principal NA NA 0.00 0.000000e+00 0.000 0.00 82 0.000000e+00 0.00 NA NA NA NULL
2021 Dept Of Ed Per Diem Teachers Guidance Counselor NA NA 0.00 0.000000e+00 0.000 0.00 88 0.000000e+00 0.00 NA NA NA NULL
2021 Dept Of Ed Per Diem Teachers Lab Specialist/Assistant NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2021 Dept Of Ed Per Diem Teachers Principal NA NA 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 NA NA NA NULL
2021 Dept Of Ed Per Diem Teachers School Psychologist NA NA 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 NA NA NA NULL
2021 Dept Of Ed Per Diem Teachers School Social Worker NA NA 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 NA NA NA NULL
2021 Dept Of Ed Per Diem Teachers Secretary NA NA 0.00 0.000000e+00 0.000 0.00 126 0.000000e+00 0.00 NA NA NA NULL
2021 Dept Of Ed Per Diem Teachers Supervisor NA NA 0.00 0.000000e+00 0.000 0.00 75 0.000000e+00 0.00 NA NA NA NULL
2021 Dept Of Ed Per Diem Teachers Teacher-General Ed NA NA 0.00 0.000000e+00 0.000 0.00 11559 0.000000e+00 0.00 NA NA NA NULL
2021 Dept Of Ed Per Diem Teachers Teacher-Special Ed NA NA 0.00 0.000000e+00 0.000 0.00 144 0.000000e+00 0.00 NA NA NA NULL
2021 Dept Of Ed Per Session Teacher School Secretary Per Session NA NA 0.00 0.000000e+00 0.000 0.00 1236 0.000000e+00 0.00 NA NA NA NULL
2021 Dept Of Ed Per Session Teacher Supervisor Per Session NA NA 0.00 0.000000e+00 0.000 0.00 1097 0.000000e+00 0.00 NA NA NA NULL
2021 Dept Of Ed Per Session Teacher Teacher- Per Session NA NA 0.00 0.000000e+00 0.000 0.00 99868 0.000000e+00 0.00 NA NA NA NULL
2021 Dept Of Environment Protection *Attorney At Law 116239.50000 2.324790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.324790e+05 2.324790e+05 0.00 NULL
2021 Dept Of Environment Protection *Custodial Assistant 40373.00000 4.037300e+04 5390.34 5.390340e+03 5390.340 162.50 1 5.390340e+03 5390.34 4.576334e+04 4.576334e+04 0.00 NULL
2021 Dept Of Environment Protection Accountant 72031.40000 3.601570e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.601570e+05 3.601570e+05 0.00 NULL
2021 Dept Of Environment Protection Adm Manager-Non-Mgrl 91736.40000 9.173640e+06 238680.01 2.386800e+03 0.000 3562.00 100 0.000000e+00 0.00 9.412320e+06 9.173640e+06 238680.01 NULL
2021 Dept Of Environment Protection Admin Community Relations Specialist 112846.14286 7.899230e+05 11807.45 1.686779e+03 1106.310 198.50 7 1.106310e+03 7744.17 8.017304e+05 7.976672e+05 4063.28 NULL
2021 Dept Of Environment Protection Admin Construction Project Manager 124150.00000 2.483000e+05 260.67 1.303350e+02 130.335 4.00 2 1.303350e+02 260.67 2.485607e+05 2.485607e+05 0.00 NULL
2021 Dept Of Environment Protection Admin Contract Specialist 118919.00000 1.189190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.189190e+05 1.189190e+05 0.00 NULL
2021 Dept Of Environment Protection Admin Dir Of Laboratory 104857.00000 2.097140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.097140e+05 2.097140e+05 0.00 NULL
2021 Dept Of Environment Protection Admin Housing Development Spec 121446.25000 4.857850e+05 138721.07 3.468027e+04 32700.540 1643.25 4 3.270054e+04 130802.16 6.245061e+05 6.165872e+05 7918.91 NULL
2021 Dept Of Environment Protection Administrative Accountant 96080.25000 3.843210e+05 4940.80 1.235200e+03 450.135 97.75 4 4.501350e+02 1800.54 3.892618e+05 3.861215e+05 3140.26 NULL
2021 Dept Of Environment Protection Administrative Architect 139743.00000 1.397430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.397430e+05 1.397430e+05 0.00 NULL
2021 Dept Of Environment Protection Administrative City Planner 119799.65217 2.755392e+06 20547.79 8.933822e+02 0.000 317.75 23 0.000000e+00 0.00 2.775940e+06 2.755392e+06 20547.79 NULL
2021 Dept Of Environment Protection Administrative Construction Project Manager 145022.00000 1.450220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450220e+05 1.450220e+05 0.00 NULL
2021 Dept Of Environment Protection Administrative Contract Specialist 105765.00000 1.057650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.057650e+05 1.057650e+05 0.00 NULL
2021 Dept Of Environment Protection Administrative Director Of Laboratory 138646.94737 2.634292e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.634292e+06 2.634292e+06 0.00 NULL
2021 Dept Of Environment Protection Administrative Engineer 139082.22353 3.546597e+07 101592.59 3.984023e+02 0.000 1329.00 255 0.000000e+00 0.00 3.556756e+07 3.546597e+07 101592.59 NULL
2021 Dept Of Environment Protection Administrative Horticulturist 110000.00000 1.100000e+05 0.02 2.000000e-02 0.020 0.00 1 2.000000e-02 0.02 1.100000e+05 1.100000e+05 0.00 NULL
2021 Dept Of Environment Protection Administrative Landscape Architect 145230.00000 1.452300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.452300e+05 1.452300e+05 0.00 NULL
2021 Dept Of Environment Protection Administrative Manager 160068.66667 4.802060e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.802060e+05 4.802060e+05 0.00 NULL
2021 Dept Of Environment Protection Administrative Procurement Analyst 114520.00000 1.145200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.145200e+05 1.145200e+05 0.00 NULL
2021 Dept Of Environment Protection Administrative Procurement Analyst-Non-Mgrl 81240.62069 2.355978e+06 56492.87 1.948030e+03 0.000 1021.75 29 0.000000e+00 0.00 2.412471e+06 2.355978e+06 56492.87 NULL
2021 Dept Of Environment Protection Administrative Project Manager 117708.46250 1.906877e+07 229282.71 1.415325e+03 0.000 3370.75 162 0.000000e+00 0.00 1.929805e+07 1.906877e+07 229282.71 NULL
2021 Dept Of Environment Protection Administrative Public Health Sanitarian 130180.50000 1.301805e+06 12497.28 1.249728e+03 0.000 147.00 10 0.000000e+00 0.00 1.314302e+06 1.301805e+06 12497.28 NULL
2021 Dept Of Environment Protection Administrative Public Information Specialist 154589.66667 4.637690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.637690e+05 4.637690e+05 0.00 NULL
2021 Dept Of Environment Protection Administrative Quality Assurance Specialist 98785.80000 4.939290e+05 23120.16 4.624032e+03 0.000 449.25 5 0.000000e+00 0.00 5.170492e+05 4.939290e+05 23120.16 NULL
2021 Dept Of Environment Protection Administrative Real Property Manager 125912.50000 2.518250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.518250e+05 2.518250e+05 0.00 NULL
2021 Dept Of Environment Protection Administrative Staff Analyst 119530.42425 1.350694e+07 260322.23 2.303737e+03 0.000 3127.00 113 0.000000e+00 0.00 1.376726e+07 1.350694e+07 260322.23 NULL
2021 Dept Of Environment Protection Administrative Storekeeper 117173.50000 2.343470e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.343470e+05 2.343470e+05 0.00 NULL
2021 Dept Of Environment Protection Administrative Supervisor Of Building Maintenance 123537.00000 1.235370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.235370e+05 1.235370e+05 0.00 NULL
2021 Dept Of Environment Protection Agency Attorney 96508.06061 3.184766e+06 19073.19 5.779755e+02 0.000 268.50 33 0.000000e+00 0.00 3.203839e+06 3.184766e+06 19073.19 NULL
2021 Dept Of Environment Protection Agency Attorney Interne 67077.00000 1.341540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.341540e+05 1.341540e+05 0.00 NULL
2021 Dept Of Environment Protection Air Pollution Inspector 49404.69643 2.766663e+06 487688.18 8.708718e+03 5641.650 12600.50 56 5.641650e+03 315932.40 3.254351e+06 3.082595e+06 171755.78 NULL
2021 Dept Of Environment Protection Apprentice 49284.50000 6.899830e+05 25237.97 1.802712e+03 1388.945 825.00 14 1.388945e+03 19445.23 7.152210e+05 7.094282e+05 5792.74 NULL
2021 Dept Of Environment Protection Architect 92745.40000 4.637270e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.637270e+05 4.637270e+05 0.00 NULL
2021 Dept Of Environment Protection Assistant Architect 70294.50000 4.217670e+05 18.40 3.066667e+00 0.000 0.00 6 0.000000e+00 0.00 4.217854e+05 4.217670e+05 18.40 NULL
2021 Dept Of Environment Protection Assistant Chemical Engineer 67848.10345 1.967595e+06 116005.38 4.000186e+03 32.620 2640.50 29 3.262000e+01 945.98 2.083600e+06 1.968541e+06 115059.40 NULL
2021 Dept Of Environment Protection Assistant Civil Engineer 69763.97938 6.767106e+06 287661.77 2.965585e+03 0.050 5557.00 97 5.000000e-02 4.85 7.054768e+06 6.767111e+06 287656.92 NULL
2021 Dept Of Environment Protection Assistant Commissioner 192933.40000 9.646670e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.646670e+05 9.646670e+05 0.00 NULL
2021 Dept Of Environment Protection Assistant Electrical Engineer 68144.18421 2.589479e+06 62030.61 1.632384e+03 0.230 1644.75 38 2.300000e-01 8.74 2.651510e+06 2.589488e+06 62021.87 NULL
2021 Dept Of Environment Protection Assistant Environmental Engineer 67278.63934 4.103997e+06 115696.23 1.896660e+03 0.000 2444.75 61 0.000000e+00 0.00 4.219693e+06 4.103997e+06 115696.23 NULL
2021 Dept Of Environment Protection Assistant Landscape Architect 67354.25000 2.694170e+05 257.18 6.429500e+01 45.025 6.25 4 4.502500e+01 180.10 2.696742e+05 2.695971e+05 77.08 NULL
2021 Dept Of Environment Protection Assistant Mechanical Engineer 67708.37349 5.619795e+06 172387.31 2.076956e+03 1.980 4333.50 83 1.980000e+00 164.34 5.792182e+06 5.619959e+06 172222.97 NULL
2021 Dept Of Environment Protection Assoc Water Use Inspector-Mgrl 164800.00000 1.648000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.648000e+05 1.648000e+05 0.00 NULL
2021 Dept Of Environment Protection Associate Air Pollution Inspr 66172.78333 9.925918e+05 365278.76 2.435192e+04 23601.860 7048.25 15 2.360186e+04 354027.90 1.357871e+06 1.346620e+06 11250.86 NULL
2021 Dept Of Environment Protection Associate Chemist 72854.07895 1.107382e+07 701932.65 4.617978e+03 363.830 18733.75 152 3.638300e+02 55302.16 1.177575e+07 1.112912e+07 646630.49 NULL
2021 Dept Of Environment Protection Associate Housing Development Specialist 95566.57143 6.689660e+05 174382.14 2.491173e+04 4750.730 2223.25 7 4.750730e+03 33255.11 8.433481e+05 7.022211e+05 141127.03 NULL
2021 Dept Of Environment Protection Associate Investigator 75841.00000 2.275230e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.275230e+05 2.275230e+05 0.00 NULL
2021 Dept Of Environment Protection Associate Laboratory Microbiologist 73712.41667 1.769098e+06 75849.01 3.160375e+03 713.300 1569.50 24 7.133000e+02 17119.20 1.844947e+06 1.786217e+06 58729.81 NULL
2021 Dept Of Environment Protection Associate Park Service Worker 46567.83333 2.794070e+05 13023.30 2.170550e+03 2317.600 405.75 6 2.170550e+03 13023.30 2.924303e+05 2.924303e+05 0.00 NULL
2021 Dept Of Environment Protection Associate Project Manager 88332.09587 1.413314e+07 385316.94 2.408231e+03 0.000 6752.75 160 0.000000e+00 0.00 1.451845e+07 1.413314e+07 385316.94 NULL
2021 Dept Of Environment Protection Associate Public Health Sanitarian 82060.36111 2.954173e+06 42960.70 1.193353e+03 0.025 703.50 36 2.500000e-02 0.90 2.997134e+06 2.954174e+06 42959.80 NULL
2021 Dept Of Environment Protection Associate Public Records Officer 76917.50000 1.538350e+05 8094.43 4.047215e+03 4047.215 168.00 2 4.047215e+03 8094.43 1.619294e+05 1.619294e+05 0.00 NULL
2021 Dept Of Environment Protection Associate Quality Assurance Specialist 85409.00000 8.540900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.540900e+04 8.540900e+04 0.00 NULL
2021 Dept Of Environment Protection Associate Staff Analyst 82625.11111 2.974504e+06 61004.07 1.694557e+03 0.000 1032.50 36 0.000000e+00 0.00 3.035508e+06 2.974504e+06 61004.07 NULL
2021 Dept Of Environment Protection Associate Water Use Inpector 72206.05263 2.743830e+06 522222.94 1.374271e+04 13916.440 9807.00 38 1.374271e+04 522222.94 3.266053e+06 3.266053e+06 0.00 NULL
2021 Dept Of Environment Protection Auto Mechanic NA NA 41819.52 4.646613e+03 4053.560 639.25 9 4.053560e+03 36482.04 NA NA NA NULL
2021 Dept Of Environment Protection Bricklayer NA NA 7441.95 3.720975e+03 3720.975 110.50 2 3.720975e+03 7441.95 NA NA NA NULL
2021 Dept Of Environment Protection Captain 94070.00000 9.407000e+05 107095.17 1.070952e+04 9998.330 1566.50 10 9.998330e+03 99983.30 1.047795e+06 1.040683e+06 7111.87 NULL
2021 Dept Of Environment Protection Carpenter NA NA 21910.52 3.130074e+03 1285.920 270.00 7 1.285920e+03 9001.44 NA NA NA NULL
2021 Dept Of Environment Protection Certified It Administrator 113184.50000 2.942797e+06 219177.86 8.429918e+03 2710.210 2779.00 26 2.710210e+03 70465.46 3.161975e+06 3.013262e+06 148712.40 NULL
2021 Dept Of Environment Protection Certified It Developer 105661.92667 1.584929e+06 1669.50 1.113000e+02 0.000 22.50 15 0.000000e+00 0.00 1.586598e+06 1.584929e+06 1669.50 NULL
2021 Dept Of Environment Protection Chemical Engineer 101209.00000 2.024180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.024180e+05 2.024180e+05 0.00 NULL
2021 Dept Of Environment Protection Chemical Engineering Intern 59125.00000 5.912500e+04 1925.30 1.925300e+03 1925.300 58.75 1 1.925300e+03 1925.30 6.105030e+04 6.105030e+04 0.00 NULL
2021 Dept Of Environment Protection Chief Marine Engineer 87792.00000 7.901280e+05 169718.72 1.885764e+04 18728.010 2610.75 9 1.872801e+04 168552.09 9.598467e+05 9.586801e+05 1166.63 NULL
2021 Dept Of Environment Protection City Laborer NA NA 63324.30 4.221620e+03 1894.070 987.75 15 1.894070e+03 28411.05 NA NA NA NULL
2021 Dept Of Environment Protection City Park Worker 15486.57004 1.269899e+06 65060.66 7.934227e+02 0.000 2504.85 82 0.000000e+00 0.00 1.334959e+06 1.269899e+06 65060.66 NULL
2021 Dept Of Environment Protection City Planner 79782.22222 2.154120e+06 5486.21 2.031930e+02 0.000 110.50 27 0.000000e+00 0.00 2.159606e+06 2.154120e+06 5486.21 NULL
2021 Dept Of Environment Protection City Planning Technician 44769.00000 1.343070e+05 210.65 7.021667e+01 0.000 8.50 3 0.000000e+00 0.00 1.345176e+05 1.343070e+05 210.65 NULL
2021 Dept Of Environment Protection City Research Scientist 90021.62972 9.272228e+06 246470.15 2.392914e+03 0.000 4271.25 103 0.000000e+00 0.00 9.518698e+06 9.272228e+06 246470.15 NULL
2021 Dept Of Environment Protection City Seasonal Aide 26127.71185 4.702988e+05 208.57 1.158722e+01 0.000 12.75 18 0.000000e+00 0.00 4.705074e+05 4.702988e+05 208.57 NULL
2021 Dept Of Environment Protection Civil Engineer 94295.03704 2.545966e+06 6620.96 2.452207e+02 0.000 108.50 27 0.000000e+00 0.00 2.552587e+06 2.545966e+06 6620.96 NULL
2021 Dept Of Environment Protection Civil Engineering Intern 56638.72000 1.415968e+06 86862.54 3.474502e+03 0.000 2262.50 25 0.000000e+00 0.00 1.502831e+06 1.415968e+06 86862.54 NULL
2021 Dept Of Environment Protection Claim Specialist 48344.20000 2.417210e+05 1332.44 2.664880e+02 0.000 37.50 5 0.000000e+00 0.00 2.430534e+05 2.417210e+05 1332.44 NULL
2021 Dept Of Environment Protection Clerical Aide 41171.00000 4.117100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.117100e+04 4.117100e+04 0.00 NULL
2021 Dept Of Environment Protection Clerical Associate 42945.77539 1.571815e+07 380267.20 1.038981e+03 0.000 11557.50 366 0.000000e+00 0.00 1.609842e+07 1.571815e+07 380267.20 NULL
2021 Dept Of Environment Protection College Aide 11323.02733 3.736599e+05 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 3.736599e+05 3.736599e+05 0.00 NULL
2021 Dept Of Environment Protection Commissioner Of Environmental Protection 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2021 Dept Of Environment Protection Community Assistant 34685.55507 6.937111e+05 14165.85 7.082925e+02 21.965 539.50 20 2.196500e+01 439.30 7.078770e+05 6.941504e+05 13726.55 NULL
2021 Dept Of Environment Protection Community Associate 52666.08461 2.580638e+06 135015.44 2.755417e+03 105.090 3453.25 49 1.050900e+02 5149.41 2.715654e+06 2.585788e+06 129866.03 NULL
2021 Dept Of Environment Protection Community Coordinator 73051.06122 3.579502e+06 305753.74 6.239872e+03 109.930 5450.75 49 1.099300e+02 5386.57 3.885256e+06 3.584889e+06 300367.17 NULL
2021 Dept Of Environment Protection Community Service Aide 34410.33333 1.032310e+05 1.38 4.600000e-01 0.000 0.00 3 0.000000e+00 0.00 1.032324e+05 1.032310e+05 1.38 NULL
2021 Dept Of Environment Protection Computer Aide-Non-Spvr 52443.66667 1.573310e+05 668.08 2.226933e+02 261.300 17.50 3 2.226933e+02 668.08 1.579991e+05 1.579991e+05 0.00 NULL
2021 Dept Of Environment Protection Computer Associate 81577.53047 4.731497e+06 173346.12 2.988726e+03 0.000 3189.75 58 0.000000e+00 0.00 4.904843e+06 4.731497e+06 173346.12 NULL
2021 Dept Of Environment Protection Computer Programmer Analyst 62977.74438 5.038220e+05 74.94 9.367500e+00 0.000 2.00 8 0.000000e+00 0.00 5.038969e+05 5.038220e+05 74.94 NULL
2021 Dept Of Environment Protection Computer Service Technician 55235.00000 1.104700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.104700e+05 1.104700e+05 0.00 NULL
2021 Dept Of Environment Protection Computer Specialist 103923.16989 9.249162e+06 258607.25 2.905699e+03 0.000 3670.75 89 0.000000e+00 0.00 9.507769e+06 9.249162e+06 258607.25 NULL
2021 Dept Of Environment Protection Computer Systems Manager 134405.30000 1.344053e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.344053e+06 1.344053e+06 0.00 NULL
2021 Dept Of Environment Protection Confidential Asst To The Executive Deputy Commissioner 118167.00000 1.181670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.181670e+05 1.181670e+05 0.00 NULL
2021 Dept Of Environment Protection Construction Laborer NA NA 3341699.35 9.857520e+03 8094.530 50759.00 339 8.094530e+03 2744045.67 NA NA NA NULL
2021 Dept Of Environment Protection Construction Project Manager 76335.07143 3.206073e+06 235445.55 5.605846e+03 834.095 4107.25 42 8.340950e+02 35031.99 3.441519e+06 3.241105e+06 200413.56 NULL
2021 Dept Of Environment Protection Counsel 225145.00000 2.251450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.251450e+05 2.251450e+05 0.00 NULL
2021 Dept Of Environment Protection Crane Operator Ampes NA NA 79109.40 7.910940e+04 79109.400 581.75 1 7.910940e+04 79109.40 NA NA NA NULL
2021 Dept Of Environment Protection Custodian 40298.54667 1.088061e+06 83584.74 3.095731e+03 1215.940 3015.50 27 1.215940e+03 32830.38 1.171646e+06 1.120891e+06 50754.36 NULL
2021 Dept Of Environment Protection Customer Information Representative Ma L 1549 64747.21406 5.179777e+05 21101.48 2.637685e+03 276.915 395.25 8 2.769150e+02 2215.32 5.390792e+05 5.201930e+05 18886.16 NULL
2021 Dept Of Environment Protection Deputy Commissioner 220353.20000 1.101766e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.101766e+06 1.101766e+06 0.00 NULL
2021 Dept Of Environment Protection Deputy Commissioner Of It 231796.00000 2.317960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.317960e+05 2.317960e+05 0.00 NULL
2021 Dept Of Environment Protection Director Of Noise Abatement 184158.00000 1.841580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.841580e+05 1.841580e+05 0.00 NULL
2021 Dept Of Environment Protection Director Of Technical Services 155738.33333 4.672150e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.672150e+05 4.672150e+05 0.00 NULL
2021 Dept Of Environment Protection District Supervisor 101275.27273 2.228056e+06 610252.45 2.773875e+04 25443.775 8011.25 22 2.544378e+04 559763.05 2.838308e+06 2.787819e+06 50489.40 NULL
2021 Dept Of Environment Protection Economist 68000.00000 6.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.800000e+04 6.800000e+04 0.00 NULL
2021 Dept Of Environment Protection Electrical Engineer 98947.83333 5.936870e+05 28.70 4.783333e+00 0.325 0.00 6 3.250000e-01 1.95 5.937157e+05 5.936889e+05 26.75 NULL
2021 Dept Of Environment Protection Electrical Engineering Intern 59125.00000 5.912500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.912500e+04 5.912500e+04 0.00 NULL
2021 Dept Of Environment Protection Electrician NA NA 1335272.39 1.376569e+04 7550.990 14616.50 97 7.550990e+03 732446.03 NA NA NA NULL
2021 Dept Of Environment Protection Electricians Helper NA NA 459341.93 9.186839e+03 10035.195 7929.50 50 9.186839e+03 459341.93 NA NA NA NULL
2021 Dept Of Environment Protection Engineering Technician 56604.15000 4.528332e+06 549948.47 6.874356e+03 2895.950 13588.75 80 2.895950e+03 231676.00 5.078280e+06 4.760008e+06 318272.47 NULL
2021 Dept Of Environment Protection Environmental Engineer 104113.00000 3.123390e+05 7960.78 2.653593e+03 1.910 120.00 3 1.910000e+00 5.73 3.202998e+05 3.123447e+05 7955.05 NULL
2021 Dept Of Environment Protection Environmental Engineering Intern 57641.00000 8.646150e+05 7516.68 5.011120e+02 0.000 186.00 15 0.000000e+00 0.00 8.721317e+05 8.646150e+05 7516.68 NULL
2021 Dept Of Environment Protection Environmental Police Officer 61861.25112 1.379506e+07 564695.56 2.532267e+03 951.800 17521.72 223 9.518000e+02 212251.40 1.435975e+07 1.400731e+07 352444.16 NULL
2021 Dept Of Environment Protection Environmental Police Officer-Managerial 140725.30000 1.407253e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.407253e+06 1.407253e+06 0.00 NULL
2021 Dept Of Environment Protection Executive Agency Counsel 158919.21739 3.655142e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 3.655142e+06 3.655142e+06 0.00 NULL
2021 Dept Of Environment Protection Executive Asst To The Commissioner 113300.00000 1.133000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133000e+05 1.133000e+05 0.00 NULL
2021 Dept Of Environment Protection Executive Chief Of Staff 180472.00000 1.804720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.804720e+05 1.804720e+05 0.00 NULL
2021 Dept Of Environment Protection Executive Program Specialist 130082.85714 9.105800e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.105800e+05 9.105800e+05 0.00 NULL
2021 Dept Of Environment Protection Forester 59497.00000 5.949700e+04 6168.20 6.168200e+03 6168.200 145.50 1 6.168200e+03 6168.20 6.566520e+04 6.566520e+04 0.00 NULL
2021 Dept Of Environment Protection Gardener 53836.21429 7.537070e+05 63545.71 4.538979e+03 1621.325 1593.00 14 1.621325e+03 22698.55 8.172527e+05 7.764056e+05 40847.16 NULL
2021 Dept Of Environment Protection Geologist 70839.94737 1.345959e+06 2061.32 1.084905e+02 0.000 44.00 19 0.000000e+00 0.00 1.348020e+06 1.345959e+06 2061.32 NULL
2021 Dept Of Environment Protection Graphic Artist 64800.00000 6.480000e+04 142.24 1.422400e+02 142.240 4.00 1 1.422400e+02 142.24 6.494224e+04 6.494224e+04 0.00 NULL
2021 Dept Of Environment Protection Helicopter Mechanic 51076.48990 1.021530e+05 2093.61 1.046805e+03 1046.805 39.75 2 1.046805e+03 2093.61 1.042466e+05 1.042466e+05 0.00 NULL
2021 Dept Of Environment Protection Helicopter Pilot 84254.00000 1.685080e+05 3977.51 1.988755e+03 1988.755 72.50 2 1.988755e+03 3977.51 1.724855e+05 1.724855e+05 0.00 NULL
2021 Dept Of Environment Protection Industrial Hygienist 64106.82353 3.269448e+06 218415.24 4.282652e+03 35.670 8382.75 51 3.567000e+01 1819.17 3.487863e+06 3.271267e+06 216596.07 NULL
2021 Dept Of Environment Protection Instrumental Specialist 67960.42857 3.330061e+06 153506.69 3.132790e+03 1305.620 3383.50 49 1.305620e+03 63975.38 3.483568e+06 3.394036e+06 89531.31 NULL
2021 Dept Of Environment Protection Instrumental Specialist Trainee 40173.85714 2.812170e+05 2130.93 3.044186e+02 170.820 85.50 7 1.708200e+02 1195.74 2.833479e+05 2.824127e+05 935.19 NULL
2021 Dept Of Environment Protection Investigator 46149.50000 1.845980e+05 31493.17 7.873292e+03 0.000 951.75 4 0.000000e+00 0.00 2.160912e+05 1.845980e+05 31493.17 NULL
2021 Dept Of Environment Protection It Project Specialist 139712.50000 2.794250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.794250e+05 2.794250e+05 0.00 NULL
2021 Dept Of Environment Protection It Service Management Specialist 105860.50000 2.117210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.117210e+05 2.117210e+05 0.00 NULL
2021 Dept Of Environment Protection Laboratory Associate 48879.00000 4.887900e+04 2891.35 2.891350e+03 2891.350 98.75 1 2.891350e+03 2891.35 5.177035e+04 5.177035e+04 0.00 NULL
2021 Dept Of Environment Protection Laboratory Helper 43666.33333 1.309990e+05 4371.11 1.457037e+03 1075.050 168.50 3 1.075050e+03 3225.15 1.353701e+05 1.342241e+05 1145.96 NULL
2021 Dept Of Environment Protection Laboratory Microbiologist 54222.71429 7.591180e+05 11066.25 7.904464e+02 171.055 366.00 14 1.710550e+02 2394.77 7.701842e+05 7.615128e+05 8671.48 NULL
2021 Dept Of Environment Protection Landscape Architect 76786.00000 1.535720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.535720e+05 1.535720e+05 0.00 NULL
2021 Dept Of Environment Protection Machinist NA NA 569125.89 1.016296e+04 4627.575 8835.25 56 4.627575e+03 259144.20 NA NA NA NULL
2021 Dept Of Environment Protection Machinist’s Helper NA NA 24254.06 1.865697e+03 1081.610 406.50 13 1.081610e+03 14060.93 NA NA NA NULL
2021 Dept Of Environment Protection Management Auditor 84057.00000 2.521710e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.521710e+05 2.521710e+05 0.00 NULL
2021 Dept Of Environment Protection Marine Electronics Technician 99613.00000 9.961300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.961300e+04 9.961300e+04 0.00 NULL
2021 Dept Of Environment Protection Marine Engineer 80184.44444 7.216600e+05 134870.33 1.498559e+04 11641.050 2255.00 9 1.164105e+04 104769.45 8.565303e+05 8.264294e+05 30100.88 NULL
2021 Dept Of Environment Protection Marine Oiler 68962.00000 6.206580e+05 157948.27 1.754981e+04 18717.330 3047.50 9 1.754981e+04 157948.27 7.786063e+05 7.786063e+05 0.00 NULL
2021 Dept Of Environment Protection Mariner 68489.35000 1.369787e+06 95203.68 4.760184e+03 1760.815 1841.75 20 1.760815e+03 35216.30 1.464991e+06 1.405003e+06 59987.38 NULL
2021 Dept Of Environment Protection Mate 76788.33333 1.151825e+06 248427.41 1.656183e+04 14833.800 4343.75 15 1.483380e+04 222507.00 1.400252e+06 1.374332e+06 25920.41 NULL
2021 Dept Of Environment Protection Mechanical Engineer 91181.16667 1.094174e+06 6144.20 5.120167e+02 0.170 105.50 12 1.700000e-01 2.04 1.100318e+06 1.094176e+06 6142.16 NULL
2021 Dept Of Environment Protection Mechanical Engineering Intern 57140.00000 6.856800e+05 96297.71 8.024809e+03 1869.345 2503.25 12 1.869345e+03 22432.14 7.819777e+05 7.081121e+05 73865.57 NULL
2021 Dept Of Environment Protection Motor Vehicle Operator 49176.15000 9.835230e+05 201932.49 1.009662e+04 13154.825 5380.75 20 1.009662e+04 201932.49 1.185455e+06 1.185455e+06 0.00 NULL
2021 Dept Of Environment Protection Motor Vehicle Supervisor 59120.50000 2.364820e+05 25266.17 6.316542e+03 6411.270 585.50 4 6.316542e+03 25266.17 2.617482e+05 2.617482e+05 0.00 NULL
2021 Dept Of Environment Protection New York City Public Service Fellow 44942.33333 2.696540e+05 786.45 1.310750e+02 0.000 24.00 6 0.000000e+00 0.00 2.704405e+05 2.696540e+05 786.45 NULL
2021 Dept Of Environment Protection Oiler NA NA 875963.35 1.307408e+04 8690.650 9774.00 67 8.690650e+03 582273.55 NA NA NA NULL
2021 Dept Of Environment Protection Painter NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2021 Dept Of Environment Protection Plumber NA NA 186903.04 1.099430e+04 6440.380 1772.00 17 6.440380e+03 109486.46 NA NA NA NULL
2021 Dept Of Environment Protection Plumber’s Helper NA NA 34548.28 5.758047e+03 3676.525 467.50 6 3.676525e+03 22059.15 NA NA NA NULL
2021 Dept Of Environment Protection Principal Administrative Associate - Non Supvr 65253.00303 1.781407e+07 627649.62 2.299083e+03 0.000 13840.78 273 0.000000e+00 0.00 1.844172e+07 1.781407e+07 627649.62 NULL
2021 Dept Of Environment Protection Procurement Analyst 65801.98438 3.158495e+06 55893.86 1.164455e+03 0.000 975.75 48 0.000000e+00 0.00 3.214389e+06 3.158495e+06 55893.86 NULL
2021 Dept Of Environment Protection Project Manager 69528.86207 2.016337e+06 26112.15 9.004190e+02 0.000 603.00 29 0.000000e+00 0.00 2.042449e+06 2.016337e+06 26112.15 NULL
2021 Dept Of Environment Protection Project Manager Intern# 51535.00000 4.638150e+05 3649.46 4.054956e+02 0.000 119.50 9 0.000000e+00 0.00 4.674645e+05 4.638150e+05 3649.46 NULL
2021 Dept Of Environment Protection Public Health Epidemiologist 63806.00000 1.276120e+05 21021.34 1.051067e+04 10510.670 447.75 2 1.051067e+04 21021.34 1.486333e+05 1.486333e+05 0.00 NULL
2021 Dept Of Environment Protection Public Health Sanitarian 61140.00000 7.948200e+05 70001.12 5.384702e+03 2420.520 1636.50 13 2.420520e+03 31466.76 8.648211e+05 8.262868e+05 38534.36 NULL
2021 Dept Of Environment Protection Public Records Aide 46154.00000 3.230780e+05 1794.05 2.562929e+02 0.000 54.50 7 0.000000e+00 0.00 3.248720e+05 3.230780e+05 1794.05 NULL
2021 Dept Of Environment Protection Public Records Officer 50706.00000 5.070600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.070600e+04 5.070600e+04 0.00 NULL
2021 Dept Of Environment Protection Quality Assurance Specialist 62138.00000 6.213800e+04 6959.08 6.959080e+03 6959.080 162.75 1 6.959080e+03 6959.08 6.909708e+04 6.909708e+04 0.00 NULL
2021 Dept Of Environment Protection Radio Repair Mechanic NA NA 4019.15 4.019150e+03 4019.150 53.00 1 4.019150e+03 4019.15 NA NA NA NULL
2021 Dept Of Environment Protection Research Assistant 38963.29230 7.792658e+04 1646.69 8.233450e+02 823.345 44.50 2 8.233450e+02 1646.69 7.957327e+04 7.957327e+04 0.00 NULL
2021 Dept Of Environment Protection Scientist 67622.38667 5.071679e+06 181789.73 2.423863e+03 280.400 4001.25 75 2.804000e+02 21030.00 5.253469e+06 5.092709e+06 160759.73 NULL
2021 Dept Of Environment Protection Secretary 53154.86437 4.252389e+05 1.38 1.725000e-01 0.000 0.00 8 0.000000e+00 0.00 4.252403e+05 4.252389e+05 1.38 NULL
2021 Dept Of Environment Protection Secretary To The Exec Deputy Commissioner 64192.00000 1.283840e+05 63.87 3.193500e+01 31.935 2.00 2 3.193500e+01 63.87 1.284479e+05 1.284479e+05 0.00 NULL
2021 Dept Of Environment Protection Senior Adviser To The Commissioner 154500.00000 1.545000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.545000e+05 1.545000e+05 0.00 NULL
2021 Dept Of Environment Protection Senior Sewage Treatment Worker NA NA 3102917.94 1.157805e+04 5599.785 42431.92 268 5.599785e+03 1500742.38 NA NA NA NULL
2021 Dept Of Environment Protection Senior Stationary Engineer NA NA 2326447.72 4.389524e+04 43817.760 21050.50 53 4.381776e+04 2322341.28 NA NA NA NULL
2021 Dept Of Environment Protection Sewage Treatment Worker NA NA 9127329.54 1.114448e+04 5291.920 138073.17 819 5.291920e+03 4334082.48 NA NA NA NULL
2021 Dept Of Environment Protection Staff Analyst 64182.92571 2.246402e+06 13293.48 3.798137e+02 0.000 313.25 35 0.000000e+00 0.00 2.259696e+06 2.246402e+06 13293.48 NULL
2021 Dept Of Environment Protection Staff Analyst Trainee 45862.60333 1.375878e+05 214.76 7.158667e+01 0.000 8.50 3 0.000000e+00 0.00 1.378026e+05 1.375878e+05 214.76 NULL
2021 Dept Of Environment Protection Stationary Engineer NA NA 4462694.66 2.187595e+04 11991.225 47026.20 204 1.199123e+04 2446209.90 NA NA NA NULL
2021 Dept Of Environment Protection Stock Worker 41697.00000 1.250910e+05 22090.06 7.363353e+03 35.290 728.00 3 3.529000e+01 105.87 1.471811e+05 1.251969e+05 21984.19 NULL
2021 Dept Of Environment Protection Strategic Initiative Specialist 108886.28571 7.622040e+05 9306.65 1.329521e+03 0.000 138.50 7 0.000000e+00 0.00 7.715107e+05 7.622040e+05 9306.65 NULL
2021 Dept Of Environment Protection Summer College Intern 787.50000 1.575000e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.575000e+03 1.575000e+03 0.00 NULL
2021 Dept Of Environment Protection Superintendent Of Water And Sewer Systems 138553.54167 3.325285e+06 -3944.42 -1.643508e+02 0.000 0.00 24 -1.643508e+02 -3944.42 3.321341e+06 3.321341e+06 0.00 NULL
2021 Dept Of Environment Protection Supervising Special Officer 55853.00000 5.585300e+04 11035.55 1.103555e+04 11035.550 275.25 1 1.103555e+04 11035.55 6.688855e+04 6.688855e+04 0.00 NULL
2021 Dept Of Environment Protection Supervisor 87344.57207 1.939050e+07 2826250.65 1.273086e+04 8951.745 41362.50 222 8.951745e+03 1987287.39 2.221675e+07 2.137778e+07 838963.26 NULL
2021 Dept Of Environment Protection Supervisor Bricklayer NA NA 907.95 9.079500e+02 907.950 15.00 1 9.079500e+02 907.95 NA NA NA NULL
2021 Dept Of Environment Protection Supervisor Carpenter NA NA 113.60 1.136000e+02 113.600 2.00 1 1.136000e+02 113.60 NA NA NA NULL
2021 Dept Of Environment Protection Supervisor Electrician NA NA 807941.87 2.693140e+04 24534.345 8219.25 30 2.453435e+04 736030.35 NA NA NA NULL
2021 Dept Of Environment Protection Supervisor Of Mechanics 125054.00000 1.750756e+06 332433.18 2.374523e+04 19271.530 3516.25 14 1.927153e+04 269801.42 2.083189e+06 2.020557e+06 62631.76 NULL
2021 Dept Of Environment Protection Supervisor Of Motor Transport 74301.00000 7.430100e+04 47724.69 4.772469e+04 47724.690 895.50 1 4.772469e+04 47724.69 1.220257e+05 1.220257e+05 0.00 NULL
2021 Dept Of Environment Protection Supervisor Of Stock Workers 48855.30303 1.612225e+06 160739.81 4.870903e+03 1063.990 4746.75 33 1.063990e+03 35111.67 1.772965e+06 1.647337e+06 125628.14 NULL
2021 Dept Of Environment Protection Supervisor Painter NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2021 Dept Of Environment Protection Supervisor Plumber NA NA 142911.02 2.381850e+04 22592.970 1293.50 6 2.259297e+04 135557.82 NA NA NA NULL
2021 Dept Of Environment Protection Surveyor 77641.10000 7.764110e+05 6.48 6.480000e-01 0.000 0.00 10 0.000000e+00 0.00 7.764175e+05 7.764110e+05 6.48 NULL
2021 Dept Of Environment Protection Telecommunications Associate 81410.33929 7.326931e+05 59878.59 6.653177e+03 1140.650 1141.50 9 1.140650e+03 10265.85 7.925716e+05 7.429589e+05 49612.74 NULL
2021 Dept Of Environment Protection Telecommunications Manager 147868.00000 1.478680e+05 3965.81 3.965810e+03 3965.810 39.25 1 3.965810e+03 3965.81 1.518338e+05 1.518338e+05 0.00 NULL
2021 Dept Of Environment Protection Water Use Inspector 51231.14545 2.817713e+06 292012.11 5.309311e+03 2406.010 8177.00 55 2.406010e+03 132330.55 3.109725e+06 2.950044e+06 159681.56 NULL
2021 Dept Of Environment Protection Watershed Maintainer 55516.09346 1.188044e+07 847878.63 3.962050e+03 1230.775 20119.26 214 1.230775e+03 263385.85 1.272832e+07 1.214383e+07 584492.78 NULL
2021 Dept Of Health/Mental Hygiene *Asist Systms Analyst 73482.00000 7.348200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.348200e+04 7.348200e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene *Assist Coordinating Manager 55086.28571 3.856040e+05 4240.48 6.057829e+02 0.000 110.50 7 0.000000e+00 0.00 3.898445e+05 3.856040e+05 4240.48 NULL
2021 Dept Of Health/Mental Hygiene *Associate Executive Director 109723.00000 2.194460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.194460e+05 2.194460e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene *Attorney At Law 125618.00000 1.256180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.256180e+05 1.256180e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene *Certified Local Area Network Administrator 101820.00000 1.018200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.018200e+05 1.018200e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene *Coordinating Manager 73142.00000 5.119940e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.119940e+05 5.119940e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene *Custodial Assistant 44677.00000 8.935400e+04 10215.41 5.107705e+03 5107.705 310.50 2 5.107705e+03 10215.41 9.956941e+04 9.956941e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene *Director Of Health Care Program Planning/Analysis 110265.66667 3.307970e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.307970e+05 3.307970e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene *Senior Staff Officer 88422.00000 8.842200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.842200e+04 8.842200e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene *Senior Systems Analyst 47995.00000 4.799500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.799500e+04 4.799500e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene *Sr Management Consultant 86121.63636 9.473380e+05 21005.05 1.909550e+03 0.000 395.25 11 0.000000e+00 0.00 9.683431e+05 9.473380e+05 21005.05 NULL
2021 Dept Of Health/Mental Hygiene *Sr Systems Analyst - Edp 63845.00000 6.384500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.384500e+04 6.384500e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene *Supvsng Systems Analyst 61788.33333 1.853650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.853650e+05 1.853650e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene *Systems Analyst 48010.18182 5.281120e+05 23360.88 2.123716e+03 0.000 563.25 11 0.000000e+00 0.00 5.514729e+05 5.281120e+05 23360.88 NULL
2021 Dept Of Health/Mental Hygiene Accountant 70797.21132 3.610658e+06 208950.44 4.097067e+03 658.400 3970.00 51 6.584000e+02 33578.40 3.819608e+06 3.644236e+06 175372.04 NULL
2021 Dept Of Health/Mental Hygiene Adm Manager-Non-Mgrl 84346.75510 8.265982e+06 652800.62 6.661231e+03 99.070 10649.25 98 9.907000e+01 9708.86 8.918783e+06 8.275691e+06 643091.76 NULL
2021 Dept Of Health/Mental Hygiene Admin Community Relations Specialist 75835.00000 2.123380e+06 218455.45 7.801980e+03 92.260 3263.00 28 9.226000e+01 2583.28 2.341835e+06 2.125963e+06 215872.17 NULL
2021 Dept Of Health/Mental Hygiene Admin Contract Specialist 141229.09091 1.553520e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.553520e+06 1.553520e+06 0.00 NULL
2021 Dept Of Health/Mental Hygiene Administrative Accountant 122156.00000 6.107800e+05 799.10 1.598200e+02 0.000 20.00 5 0.000000e+00 0.00 6.115791e+05 6.107800e+05 799.10 NULL
2021 Dept Of Health/Mental Hygiene Administrative Business Promotion Coordinator 119523.50000 1.195235e+06 19985.46 1.998546e+03 0.000 255.00 10 0.000000e+00 0.00 1.215220e+06 1.195235e+06 19985.46 NULL
2021 Dept Of Health/Mental Hygiene Administrative Community Relations Specialist 146865.50000 2.937310e+05 33713.06 1.685653e+04 16856.530 737.00 2 1.685653e+04 33713.06 3.274441e+05 3.274441e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Administrative Consultant 103686.66667 3.110600e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.110600e+05 3.110600e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Administrative Contract Specialist 94864.53333 1.422968e+06 126704.07 8.446938e+03 850.680 2001.00 15 8.506800e+02 12760.20 1.549672e+06 1.435728e+06 113943.87 NULL
2021 Dept Of Health/Mental Hygiene Administrative Director Of Social Services 118450.00000 1.184500e+05 11629.50 1.162950e+04 11629.500 146.25 1 1.162950e+04 11629.50 1.300795e+05 1.300795e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Administrative Investigator 69002.00000 1.380040e+05 1085.14 5.425700e+02 542.570 31.00 2 5.425700e+02 1085.14 1.390891e+05 1.390891e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Administrative Labor Relations Analyst 123870.75000 4.954830e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.954830e+05 4.954830e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Administrative Management Auditor 124465.40000 6.223270e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.223270e+05 6.223270e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Administrative Manager 134725.66667 4.041770e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.041770e+05 4.041770e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Administrative Nutritionist 92000.00000 9.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.200000e+04 9.200000e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene Administrative Printing Services Manager 147661.00000 1.476610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.476610e+05 1.476610e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Administrative Procurement Analyst 101843.33333 3.055300e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.055300e+05 3.055300e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Administrative Procurement Analyst-Non-Mgrl 92298.47059 1.569074e+06 196578.92 1.156347e+04 954.080 2727.00 17 9.540800e+02 16219.36 1.765653e+06 1.585293e+06 180359.56 NULL
2021 Dept Of Health/Mental Hygiene Administrative Project Manager 117500.00000 2.350000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.350000e+05 2.350000e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Administrative Public Health Nurse 111541.51613 3.457787e+06 284802.64 9.187182e+03 2646.740 3471.50 31 2.646740e+03 82048.94 3.742590e+06 3.539836e+06 202753.70 NULL
2021 Dept Of Health/Mental Hygiene Administrative Public Health Sanitarian 127595.50000 1.531146e+06 19566.03 1.630503e+03 0.000 229.25 12 0.000000e+00 0.00 1.550712e+06 1.531146e+06 19566.03 NULL
2021 Dept Of Health/Mental Hygiene Administrative Public Information Specialist 114482.33333 1.373788e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.373788e+06 1.373788e+06 0.00 NULL
2021 Dept Of Health/Mental Hygiene Administrative Quality Assurance Specialist 108342.25000 4.333690e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.333690e+05 4.333690e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Administrative Space Analyst 147002.00000 1.470020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.470020e+05 1.470020e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Administrative Staff Analyst 103408.05988 1.571803e+07 1192722.90 7.846861e+03 0.000 15529.00 152 0.000000e+00 0.00 1.691075e+07 1.571803e+07 1192722.90 NULL
2021 Dept Of Health/Mental Hygiene Administrative Storekeeper 91500.00000 1.830000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.830000e+05 1.830000e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Administrative Supervisor Of Building Maintenance 99508.00000 7.960640e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.960640e+05 7.960640e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Agency Attorney 95937.46154 2.494374e+06 36881.38 1.418515e+03 0.000 543.75 26 0.000000e+00 0.00 2.531255e+06 2.494374e+06 36881.38 NULL
2021 Dept Of Health/Mental Hygiene Agency Attorney Interne 63047.75000 2.521910e+05 5803.58 1.450895e+03 0.000 121.75 4 0.000000e+00 0.00 2.579946e+05 2.521910e+05 5803.58 NULL
2021 Dept Of Health/Mental Hygiene Agency Chief Contracting Officer 160797.00000 1.607970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.607970e+05 1.607970e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Agency Deputy Medical Director 161800.33333 4.854010e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.854010e+05 4.854010e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Agency Medical Director 195027.90476 4.095586e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 4.095586e+06 4.095586e+06 0.00 NULL
2021 Dept Of Health/Mental Hygiene Architect 102885.50000 4.115420e+05 5104.25 1.276062e+03 1060.515 69.75 4 1.060515e+03 4242.06 4.166462e+05 4.157841e+05 862.19 NULL
2021 Dept Of Health/Mental Hygiene Assistant Architect 72737.00000 4.364220e+05 48233.23 8.038872e+03 0.415 923.25 6 4.150000e-01 2.49 4.846552e+05 4.364245e+05 48230.74 NULL
2021 Dept Of Health/Mental Hygiene Assistant Commissioner 191512.00000 1.915120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.915120e+05 1.915120e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Assistant Director Of Toxicology 123600.00000 1.236000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.236000e+05 1.236000e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Assistant Printing Press Operator 58087.12688 1.161743e+05 1452.37 7.261850e+02 726.185 40.25 2 7.261850e+02 1452.37 1.176266e+05 1.176266e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Associate Chemist 64953.50000 1.299070e+05 13646.85 6.823425e+03 6823.425 239.25 2 6.823425e+03 13646.85 1.435539e+05 1.435539e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Associate Contract Specialist 76171.00000 3.046840e+05 2375.06 5.937650e+02 140.865 53.75 4 1.408650e+02 563.46 3.070591e+05 3.052475e+05 1811.60 NULL
2021 Dept Of Health/Mental Hygiene Associate Investigator 65632.25000 2.625290e+05 21316.28 5.329070e+03 1311.900 474.25 4 1.311900e+03 5247.60 2.838453e+05 2.677766e+05 16068.68 NULL
2021 Dept Of Health/Mental Hygiene Associate Labor Relations Analyst 90408.66667 2.712260e+05 14888.73 4.962910e+03 3890.150 239.25 3 3.890150e+03 11670.45 2.861147e+05 2.828965e+05 3218.28 NULL
2021 Dept Of Health/Mental Hygiene Associate Laboratory Microbiologist 76635.53968 4.828039e+06 88319.10 1.401890e+03 0.000 1898.25 63 0.000000e+00 0.00 4.916358e+06 4.828039e+06 88319.10 NULL
2021 Dept Of Health/Mental Hygiene Associate Project Manager 109547.00000 1.095470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.095470e+05 1.095470e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Associate Public Health Sanitarian 75119.35862 1.089231e+07 945133.61 6.518163e+03 1279.470 17726.75 145 1.279470e+03 185523.15 1.183744e+07 1.107783e+07 759610.46 NULL
2021 Dept Of Health/Mental Hygiene Associate Staff Analyst 84385.78947 3.206660e+06 181848.99 4.785500e+03 333.875 2984.75 38 3.338750e+02 12687.25 3.388509e+06 3.219347e+06 169161.74 NULL
2021 Dept Of Health/Mental Hygiene Asst Comm-Prgm Dev Revw-Hmh 167000.00000 1.670000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.670000e+05 1.670000e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Asst Commissioner 177208.33333 5.316250e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.316250e+05 5.316250e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Asst Commissioner For Agency Preparedness And Response 144000.00000 1.440000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.440000e+05 1.440000e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Asst Commissioner For Policy And Community Resilience 159082.00000 3.181640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.181640e+05 3.181640e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Asst Pb Hlth Adv 41680.26679 2.917619e+05 0.38 5.428570e-02 0.000 0.00 7 0.000000e+00 0.00 2.917622e+05 2.917619e+05 0.38 NULL
2021 Dept Of Health/Mental Hygiene Bookbinder 43504.66667 1.305140e+05 23575.62 7.858540e+03 2423.900 770.75 3 2.423900e+03 7271.70 1.540896e+05 1.377857e+05 16303.92 NULL
2021 Dept Of Health/Mental Hygiene Bookkeeper 60973.33333 1.829200e+05 17054.82 5.684940e+03 0.000 328.00 3 0.000000e+00 0.00 1.999748e+05 1.829200e+05 17054.82 NULL
2021 Dept Of Health/Mental Hygiene Carpenter NA NA 1040.40 1.040400e+03 1040.400 10.00 1 1.040400e+03 1040.40 NA NA NA NULL
2021 Dept Of Health/Mental Hygiene Caseworker 65920.00000 1.318400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.318400e+05 1.318400e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Certified It Administrator 108058.19969 1.728931e+06 68458.97 4.278686e+03 1652.980 861.75 16 1.652980e+03 26447.68 1.797390e+06 1.755379e+06 42011.29 NULL
2021 Dept Of Health/Mental Hygiene Certified It Developer 99945.13636 2.198793e+06 149957.82 6.816265e+03 1629.090 2064.25 22 1.629090e+03 35839.98 2.348751e+06 2.234633e+06 114117.84 NULL
2021 Dept Of Health/Mental Hygiene Chief City Medical Examiner 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene City Clinician 65625.46500 6.562547e+05 32282.48 3.228248e+03 64.875 392.50 10 6.487500e+01 648.75 6.885371e+05 6.569034e+05 31633.73 NULL
2021 Dept Of Health/Mental Hygiene City Custodial Assistant 43188.73137 2.332191e+06 387866.32 7.182710e+03 2960.505 12385.43 54 2.960505e+03 159867.27 2.720058e+06 2.492059e+06 227999.05 NULL
2021 Dept Of Health/Mental Hygiene City Dentist 94368.29000 9.436829e+04 5241.62 5.241620e+03 5241.620 68.50 1 5.241620e+03 5241.62 9.960991e+04 9.960991e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene City Deputy Medical Director 147290.00000 1.472900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.472900e+05 1.472900e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene City Laborer NA NA 268006.53 1.786710e+04 13534.280 4759.75 15 1.353428e+04 203014.20 NA NA NA NULL
2021 Dept Of Health/Mental Hygiene City Medical Director 166000.00000 1.660000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.660000e+05 1.660000e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene City Medical Examiner 197817.26449 9.693046e+06 217226.44 4.433193e+03 0.000 1892.75 49 0.000000e+00 0.00 9.910272e+06 9.693046e+06 217226.44 NULL
2021 Dept Of Health/Mental Hygiene City Medical Specialist 129059.75828 1.935896e+07 1529858.58 1.019906e+04 972.280 16453.25 150 9.722800e+02 145842.00 2.088882e+07 1.950481e+07 1384016.58 NULL
2021 Dept Of Health/Mental Hygiene City Mortuary Technician 38745.24089 2.247224e+06 547988.27 9.448074e+03 9173.850 17848.48 58 9.173850e+03 532083.30 2.795212e+06 2.779307e+06 15904.97 NULL
2021 Dept Of Health/Mental Hygiene City Pest Control Aide 38134.34478 8.770899e+05 31047.39 1.349887e+03 0.000 1120.00 23 0.000000e+00 0.00 9.081373e+05 8.770899e+05 31047.39 NULL
2021 Dept Of Health/Mental Hygiene City Research Scientist 92706.67766 7.240392e+07 7043521.26 9.018593e+03 1961.590 104972.50 781 1.961590e+03 1532001.79 7.944744e+07 7.393592e+07 5511519.47 NULL
2021 Dept Of Health/Mental Hygiene City Veterinarian 45561.97562 1.822479e+05 5.46 1.365000e+00 0.000 0.00 4 0.000000e+00 0.00 1.822534e+05 1.822479e+05 5.46 NULL
2021 Dept Of Health/Mental Hygiene Civil Engineer 92712.00000 9.271200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.271200e+04 9.271200e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene Clerical Aide 37816.36250 4.537963e+05 1909.15 1.590958e+02 34.290 83.50 12 3.429000e+01 411.48 4.557055e+05 4.542078e+05 1497.67 NULL
2021 Dept Of Health/Mental Hygiene Clerical Associate 45920.79361 9.551525e+06 358789.15 1.724948e+03 0.000 9516.50 208 0.000000e+00 0.00 9.910314e+06 9.551525e+06 358789.15 NULL
2021 Dept Of Health/Mental Hygiene College Aide 12599.17385 1.108727e+06 0.00 0.000000e+00 0.000 0.00 88 0.000000e+00 0.00 1.108727e+06 1.108727e+06 0.00 NULL
2021 Dept Of Health/Mental Hygiene College Aide - Assignment Levels Ii And Iii 20075.54330 8.030217e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.030217e+04 8.030217e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene Commissioner Of Health 243171.00000 4.863420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863420e+05 4.863420e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Community Assistant 40267.06146 1.852285e+06 41769.02 9.080222e+02 0.405 1441.50 46 4.050000e-01 18.63 1.894054e+06 1.852303e+06 41750.39 NULL
2021 Dept Of Health/Mental Hygiene Community Associate 50690.17644 2.737270e+06 233535.72 4.324736e+03 766.190 6290.50 54 7.661900e+02 41374.26 2.970805e+06 2.778644e+06 192161.46 NULL
2021 Dept Of Health/Mental Hygiene Community Coordinator 67382.33966 1.900182e+07 2005023.33 7.110012e+03 1627.075 40476.75 282 1.627075e+03 458835.15 2.100684e+07 1.946065e+07 1546188.18 NULL
2021 Dept Of Health/Mental Hygiene Community Service Aide 35319.00000 7.063800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.063800e+04 7.063800e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene Computer Aide-Non-Spvr 51056.61538 6.637360e+05 22350.95 1.719304e+03 0.000 713.50 13 0.000000e+00 0.00 6.860869e+05 6.637360e+05 22350.95 NULL
2021 Dept Of Health/Mental Hygiene Computer Associate 70642.00664 4.097236e+06 265376.46 4.575456e+03 243.620 5064.75 58 2.436200e+02 14129.96 4.362613e+06 4.111366e+06 251246.50 NULL
2021 Dept Of Health/Mental Hygiene Computer Operations Manager 112639.00000 1.126390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.126390e+05 1.126390e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Computer Programmer Analyst 65347.33333 1.960420e+05 278.94 9.298000e+01 0.000 8.00 3 0.000000e+00 0.00 1.963209e+05 1.960420e+05 278.94 NULL
2021 Dept Of Health/Mental Hygiene Computer Service Technician 52338.91818 5.757281e+05 88487.65 8.044332e+03 8820.740 2432.50 11 8.044332e+03 88487.65 6.642158e+05 6.642158e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Computer Specialist 104557.57258 6.482570e+06 491022.92 7.919725e+03 1503.425 6016.75 62 1.503425e+03 93212.35 6.973592e+06 6.575782e+06 397810.57 NULL
2021 Dept Of Health/Mental Hygiene Computer Systems Manager 122207.37209 1.050983e+07 319257.45 3.712296e+03 0.000 4041.00 86 0.000000e+00 0.00 1.082909e+07 1.050983e+07 319257.45 NULL
2021 Dept Of Health/Mental Hygiene Confidential Strategy Planner 79628.14286 5.573970e+05 29649.84 4.235691e+03 0.000 515.75 7 0.000000e+00 0.00 5.870468e+05 5.573970e+05 29649.84 NULL
2021 Dept Of Health/Mental Hygiene Construction Project Manager 106009.00000 1.060090e+05 9551.16 9.551160e+03 9551.160 134.25 1 9.551160e+03 9551.16 1.155602e+05 1.155602e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Consultant 76653.91045 5.135812e+06 270850.73 4.042548e+03 648.240 4986.25 67 6.482400e+02 43432.08 5.406663e+06 5.179244e+06 227418.65 NULL
2021 Dept Of Health/Mental Hygiene Consultant Public Health Nurse 84252.00000 1.011024e+06 62183.90 5.181992e+03 0.000 870.25 12 0.000000e+00 0.00 1.073208e+06 1.011024e+06 62183.90 NULL
2021 Dept Of Health/Mental Hygiene Contract Specialist 60774.26471 2.066325e+06 87153.29 2.563332e+03 406.670 2053.25 34 4.066700e+02 13826.78 2.153478e+06 2.080152e+06 73326.51 NULL
2021 Dept Of Health/Mental Hygiene Counsel 221470.00000 2.214700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.214700e+05 2.214700e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Counselor 78590.80000 3.929540e+05 8680.82 1.736164e+03 235.200 149.25 5 2.352000e+02 1176.00 4.016348e+05 3.941300e+05 7504.82 NULL
2021 Dept Of Health/Mental Hygiene Criminalist 79322.96179 2.014803e+07 1587832.57 6.251309e+03 1537.085 25777.00 254 1.537085e+03 390419.59 2.173586e+07 2.053845e+07 1197412.98 NULL
2021 Dept Of Health/Mental Hygiene Criminalist Assistant Director Of Laboratory 134098.60000 2.011479e+06 129.65 8.643333e+00 0.000 2.00 15 0.000000e+00 0.00 2.011609e+06 2.011479e+06 129.65 NULL
2021 Dept Of Health/Mental Hygiene Criminalist Deputy Director Of Labatory 188203.00000 3.764060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.764060e+05 3.764060e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Criminalist Director Of Laboratory 166106.66667 4.983200e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.983200e+05 4.983200e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Custodian 44902.21616 6.286310e+05 88063.48 6.290249e+03 4217.465 2644.50 14 4.217465e+03 59044.51 7.166945e+05 6.876755e+05 29018.97 NULL
2021 Dept Of Health/Mental Hygiene Customer Information Representative Ma L 1549 50531.63636 1.111696e+06 198877.40 9.039882e+03 1082.445 5854.50 22 1.082445e+03 23813.79 1.310573e+06 1.135510e+06 175063.61 NULL
2021 Dept Of Health/Mental Hygiene Cyber Security Analyst 76500.00000 7.650000e+04 1324.20 1.324200e+03 1324.200 25.25 1 1.324200e+03 1324.20 7.782420e+04 7.782420e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene Deputy Chief City Medical Examiner 241434.00000 2.414340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.414340e+05 2.414340e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Deputy Commissioner 221470.00000 1.107350e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.107350e+06 1.107350e+06 0.00 NULL
2021 Dept Of Health/Mental Hygiene Deputy Commissioner For Administation 200762.00000 2.007620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.007620e+05 2.007620e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Deputy Director Of Emergency Management 147197.00000 1.471970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.471970e+05 1.471970e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Deputy Director Of Medicolegal Investigations 123990.69231 1.611879e+06 9362.61 7.202008e+02 0.000 167.67 13 0.000000e+00 0.00 1.621242e+06 1.611879e+06 9362.61 NULL
2021 Dept Of Health/Mental Hygiene Dir Of Healthcare Facilities And Provider Readiness 148000.00000 1.480000e+05 6729.95 6.729950e+03 6729.950 85.75 1 6.729950e+03 6729.95 1.547300e+05 1.547300e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Director 137995.66667 4.139870e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.139870e+05 4.139870e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Director Of Biodetection And Response 111468.00000 1.114680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.114680e+05 1.114680e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Director Of Community Engagement And Response 125790.50000 2.515810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.515810e+05 2.515810e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Director Of Crisis Assistance And Training 106166.00000 3.184980e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.184980e+05 3.184980e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Director Of Forensic Biology 217359.00000 2.173590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.173590e+05 2.173590e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Director Of Interagency Planning 123046.00000 1.230460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.230460e+05 1.230460e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Director Of Public Health Emergency Planning 104202.00000 1.042020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.042020e+05 1.042020e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Director Of Public Relations 147445.00000 1.474450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.474450e+05 1.474450e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Director Of Security 107104.00000 1.071040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.071040e+05 1.071040e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Economist 63779.25000 7.653510e+05 59465.91 4.955493e+03 1548.705 1284.00 12 1.548705e+03 18584.46 8.248169e+05 7.839355e+05 40881.45 NULL
2021 Dept Of Health/Mental Hygiene Electrician NA NA 98843.76 1.412054e+04 0.000 1082.75 7 0.000000e+00 0.00 NA NA NA NULL
2021 Dept Of Health/Mental Hygiene Engineering Work Study Trainee 43997.00000 4.399700e+04 2434.39 2.434390e+03 2434.390 78.50 1 2.434390e+03 2434.39 4.643139e+04 4.643139e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene Environmental Health Technician 42978.00000 4.297800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.297800e+04 4.297800e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene Evidence And Property Control Specialist 65950.79412 2.242327e+06 503635.72 1.481282e+04 4638.960 10200.50 34 4.638960e+03 157724.64 2.745963e+06 2.400052e+06 345911.08 NULL
2021 Dept Of Health/Mental Hygiene Executive Agency Counsel 147900.25000 2.366404e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.366404e+06 2.366404e+06 0.00 NULL
2021 Dept Of Health/Mental Hygiene Executive Director Of Healthcare Systems Readiness 124803.00000 1.248030e+05 20476.40 2.047640e+04 20476.400 259.75 1 2.047640e+04 20476.40 1.452794e+05 1.452794e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Executive Program Specialist 178256.00000 5.347680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.347680e+05 5.347680e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Executive Secretary 61825.70500 6.182571e+04 392.08 3.920800e+02 392.080 10.50 1 3.920800e+02 392.08 6.221779e+04 6.221779e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene Exterminator 49305.01974 1.873591e+06 264263.89 6.954313e+03 4006.675 6605.50 38 4.006675e+03 152253.65 2.137855e+06 2.025844e+06 112010.24 NULL
2021 Dept Of Health/Mental Hygiene Family Pub Health Nurse 88834.94340 4.708252e+06 336876.20 6.356155e+03 1351.070 4703.25 53 1.351070e+03 71606.71 5.045128e+06 4.779859e+06 265269.49 NULL
2021 Dept Of Health/Mental Hygiene Forensic Mortuary Technician 56450.46154 2.935424e+06 1028762.79 1.978390e+04 16069.750 23909.43 52 1.606975e+04 835627.00 3.964187e+06 3.771051e+06 193135.79 NULL
2021 Dept Of Health/Mental Hygiene Forensic Mortuary Technician-Coord Of Mortuary Services 85950.00000 8.595000e+04 14066.73 1.406673e+04 14066.730 300.00 1 1.406673e+04 14066.73 1.000167e+05 1.000167e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Graphic Artist 80095.00000 3.203800e+05 8995.45 2.248863e+03 399.830 133.75 4 3.998300e+02 1599.32 3.293755e+05 3.219793e+05 7396.13 NULL
2021 Dept Of Health/Mental Hygiene Health Care Prog Plan/Analyst 60442.50000 3.626550e+05 7132.35 1.188725e+03 0.000 173.50 6 0.000000e+00 0.00 3.697873e+05 3.626550e+05 7132.35 NULL
2021 Dept Of Health/Mental Hygiene Health Services Manager 158220.82500 6.328833e+06 8334.00 2.083500e+02 0.000 95.25 40 0.000000e+00 0.00 6.337167e+06 6.328833e+06 8334.00 NULL
2021 Dept Of Health/Mental Hygiene Health Services Manager Non Managerial Level I 98397.27559 1.249645e+07 1043622.31 8.217499e+03 402.950 13812.00 127 4.029500e+02 51174.65 1.354008e+07 1.254763e+07 992447.66 NULL
2021 Dept Of Health/Mental Hygiene Health Services Manager Non Managerial Level Ii 115968.54348 5.334553e+06 157688.86 3.428019e+03 0.000 1819.25 46 0.000000e+00 0.00 5.492242e+06 5.334553e+06 157688.86 NULL
2021 Dept Of Health/Mental Hygiene Institutional Aide 40408.51015 6.869447e+05 694976.13 4.088095e+04 47950.940 23905.75 17 4.088095e+04 694976.13 1.381921e+06 1.381921e+06 0.00 NULL
2021 Dept Of Health/Mental Hygiene Interpreter 67156.00000 1.343120e+05 4111.43 2.055715e+03 2055.715 106.50 2 2.055715e+03 4111.43 1.384234e+05 1.384234e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Investigator 55489.27273 6.103820e+05 78698.65 7.154423e+03 428.270 1537.25 11 4.282700e+02 4710.97 6.890807e+05 6.150930e+05 73987.68 NULL
2021 Dept Of Health/Mental Hygiene It Automation And Monitoring Engineer 84240.42667 5.054426e+05 27415.48 4.569247e+03 883.155 389.75 6 8.831550e+02 5298.93 5.328580e+05 5.107415e+05 22116.55 NULL
2021 Dept Of Health/Mental Hygiene It Infrastructure Engineer 88180.80000 4.409040e+05 5852.90 1.170580e+03 0.000 106.00 5 0.000000e+00 0.00 4.467569e+05 4.409040e+05 5852.90 NULL
2021 Dept Of Health/Mental Hygiene It Project Specialist 93493.72750 1.308912e+06 163106.71 1.165048e+04 3300.870 2446.50 14 3.300870e+03 46212.18 1.472019e+06 1.355124e+06 116894.53 NULL
2021 Dept Of Health/Mental Hygiene It Security Specialist 101187.66667 3.035630e+05 52312.77 1.743759e+04 916.000 754.50 3 9.160000e+02 2748.00 3.558758e+05 3.063110e+05 49564.77 NULL
2021 Dept Of Health/Mental Hygiene It Service Management Specialist 95308.30769 1.239008e+06 116071.50 8.928577e+03 3424.980 1794.25 13 3.424980e+03 44524.74 1.355080e+06 1.283533e+06 71546.76 NULL
2021 Dept Of Health/Mental Hygiene Jr Phnurse 46211.91826 1.982491e+07 1645160.77 3.834874e+03 546.570 34869.50 429 5.465700e+02 234478.53 2.147007e+07 2.005939e+07 1410682.24 NULL
2021 Dept Of Health/Mental Hygiene Junior Public Health Nurse 72378.47279 1.230434e+06 70884.83 4.169696e+03 67.010 1131.25 17 6.701000e+01 1139.17 1.301319e+06 1.231573e+06 69745.66 NULL
2021 Dept Of Health/Mental Hygiene Laboratory Associate 47059.75792 2.541227e+06 112032.82 2.074682e+03 116.795 3263.75 54 1.167950e+02 6306.93 2.653260e+06 2.547534e+06 105725.89 NULL
2021 Dept Of Health/Mental Hygiene Laboratory Helper 42992.18182 4.729140e+05 21549.00 1.959000e+03 0.000 757.00 11 0.000000e+00 0.00 4.944630e+05 4.729140e+05 21549.00 NULL
2021 Dept Of Health/Mental Hygiene Laboratory Microbiologist 60567.11429 2.119849e+06 23952.40 6.843543e+02 0.000 580.25 35 0.000000e+00 0.00 2.143801e+06 2.119849e+06 23952.40 NULL
2021 Dept Of Health/Mental Hygiene Legal Secretarial Assistant 67225.00000 6.722500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.722500e+04 6.722500e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene Machinist NA NA 8313.30 8.313300e+03 8313.300 125.25 1 8.313300e+03 8313.30 NA NA NA NULL
2021 Dept Of Health/Mental Hygiene Maintenance Worker NA NA 197393.10 1.644942e+04 8606.770 4204.75 12 8.606770e+03 103281.24 NA NA NA NULL
2021 Dept Of Health/Mental Hygiene Management Auditor 79197.75000 1.267164e+06 109510.11 6.844382e+03 1903.850 1893.75 16 1.903850e+03 30461.60 1.376674e+06 1.297626e+06 79048.51 NULL
2021 Dept Of Health/Mental Hygiene Mechanical Engineer 89526.00000 8.952600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.952600e+04 8.952600e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene Medical Investigator 2241.66667 6.725000e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.725000e+03 6.725000e+03 0.00 NULL
2021 Dept Of Health/Mental Hygiene Medical Record Librarian 58049.00000 5.804900e+04 12441.45 1.244145e+04 12441.450 294.00 1 1.244145e+04 12441.45 7.049045e+04 7.049045e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene Medical Specialist 36598.15000 7.319630e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.319630e+04 7.319630e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene Medicolegal Investigator 88982.88317 3.915247e+06 381976.31 8.681280e+03 4402.570 5012.37 44 4.402570e+03 193713.08 4.297223e+06 4.108960e+06 188263.23 NULL
2021 Dept Of Health/Mental Hygiene Motor Vehicle Operator 53318.19458 1.919455e+06 883122.23 2.453117e+04 16225.325 23363.35 36 1.622533e+04 584111.70 2.802577e+06 2.503567e+06 299010.53 NULL
2021 Dept Of Health/Mental Hygiene Motor Vehicle Supervisor 59076.00000 2.363040e+05 88482.41 2.212060e+04 21412.140 2064.50 4 2.141214e+04 85648.56 3.247864e+05 3.219526e+05 2833.85 NULL
2021 Dept Of Health/Mental Hygiene New York City Public Service Fellow 42127.00000 4.212700e+04 24311.84 2.431184e+04 24311.840 770.25 1 2.431184e+04 24311.84 6.643884e+04 6.643884e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene Nurse Practicioner 101472.72834 1.420618e+06 60225.52 4.301823e+03 1574.060 798.50 14 1.574060e+03 22036.84 1.480844e+06 1.442655e+06 38188.68 NULL
2021 Dept Of Health/Mental Hygiene Nurse’s Aide 43075.00000 4.307500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.307500e+04 4.307500e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene Nutritionist 72631.40000 7.263140e+05 102627.13 1.026271e+04 2406.125 1836.00 10 2.406125e+03 24061.25 8.289411e+05 7.503752e+05 78565.88 NULL
2021 Dept Of Health/Mental Hygiene Office Machine Aide 44044.50000 1.761780e+05 14200.59 3.550148e+03 226.385 388.00 4 2.263850e+02 905.54 1.903786e+05 1.770835e+05 13295.05 NULL
2021 Dept Of Health/Mental Hygiene Oiler NA NA 288600.64 9.620021e+04 113405.780 3203.50 3 9.620021e+04 288600.64 NA NA NA NULL
2021 Dept Of Health/Mental Hygiene Paralegal Aide 49380.16667 2.962810e+05 14525.86 2.420977e+03 303.990 368.75 6 3.039900e+02 1823.94 3.108069e+05 2.981049e+05 12701.92 NULL
2021 Dept Of Health/Mental Hygiene Peer Counselor 37555.00000 3.755500e+04 479.34 4.793400e+02 479.340 21.00 1 4.793400e+02 479.34 3.803434e+04 3.803434e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene Physicist 86807.00000 8.680700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.680700e+04 8.680700e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene Poison Information Specialist 94084.43989 2.069858e+06 40603.26 1.845603e+03 0.000 601.50 22 0.000000e+00 0.00 2.110461e+06 2.069858e+06 40603.26 NULL
2021 Dept Of Health/Mental Hygiene Principal Administrative Associate - Non Supvr 62984.69381 1.562020e+07 648663.72 2.615580e+03 0.000 13776.90 248 0.000000e+00 0.00 1.626887e+07 1.562020e+07 648663.72 NULL
2021 Dept Of Health/Mental Hygiene Printing Press Operator NA NA 18208.05 4.552012e+03 4603.185 311.25 4 4.552012e+03 18208.05 NA NA NA NULL
2021 Dept Of Health/Mental Hygiene Procurement Analyst 72394.07937 4.560827e+06 310764.59 4.932771e+03 53.780 6053.50 63 5.378000e+01 3388.14 4.871592e+06 4.564215e+06 307376.45 NULL
2021 Dept Of Health/Mental Hygiene Psychiatrist 81559.57667 2.446787e+05 153.06 5.102000e+01 0.000 0.00 3 0.000000e+00 0.00 2.448318e+05 2.446787e+05 153.06 NULL
2021 Dept Of Health/Mental Hygiene Public Health Adviser 46111.92270 2.365542e+07 1894759.83 3.693489e+03 102.830 48047.55 513 1.028300e+02 52751.79 2.555018e+07 2.370817e+07 1842008.04 NULL
2021 Dept Of Health/Mental Hygiene Public Health Assistant 35047.93013 4.065560e+06 147713.73 1.273394e+03 14.100 5553.25 116 1.410000e+01 1635.60 4.213274e+06 4.067195e+06 146078.13 NULL
2021 Dept Of Health/Mental Hygiene Public Health Educator 66962.96774 4.151704e+06 171228.30 2.761747e+03 982.975 3589.25 62 9.829750e+02 60944.45 4.322932e+06 4.212648e+06 110283.85 NULL
2021 Dept Of Health/Mental Hygiene Public Health Emergency Preparedness Specialist 81349.90909 2.684547e+06 960555.64 2.910775e+04 29135.530 15975.50 33 2.910775e+04 960555.64 3.645103e+06 3.645103e+06 0.00 NULL
2021 Dept Of Health/Mental Hygiene Public Health Epidemiologist 69305.49057 3.673191e+06 686396.99 1.295089e+04 4001.210 12501.00 53 4.001210e+03 212064.13 4.359588e+06 3.885255e+06 474332.86 NULL
2021 Dept Of Health/Mental Hygiene Public Health Nurse 52277.53509 3.664655e+07 3564439.10 5.084792e+03 922.750 69117.37 701 9.227500e+02 646847.75 4.021099e+07 3.729340e+07 2917591.35 NULL
2021 Dept Of Health/Mental Hygiene Public Health Preventative Medicine Resident 81584.80000 4.079240e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.079240e+05 4.079240e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Public Health Sanitarian 57777.19452 2.108868e+07 1756796.15 4.813140e+03 742.750 41626.07 365 7.427500e+02 271103.75 2.284547e+07 2.135978e+07 1485692.40 NULL
2021 Dept Of Health/Mental Hygiene Public Health/Preventive Medicine Resident 80196.00000 1.603920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.603920e+05 1.603920e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Public Records Aide 44675.76588 7.594880e+05 4493.79 2.643406e+02 0.000 150.50 17 0.000000e+00 0.00 7.639818e+05 7.594880e+05 4493.79 NULL
2021 Dept Of Health/Mental Hygiene Public Records Officer 50706.00000 5.070600e+04 314.26 3.142600e+02 314.260 8.75 1 3.142600e+02 314.26 5.102026e+04 5.102026e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene Regional Director Mental Health Mental Retard & Alc Service 134583.33333 4.037500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.037500e+05 4.037500e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Research Assistant 59422.33333 1.782670e+05 2666.40 8.888000e+02 0.000 74.50 3 0.000000e+00 0.00 1.809334e+05 1.782670e+05 2666.40 NULL
2021 Dept Of Health/Mental Hygiene Scientist 64825.90476 4.084032e+06 496536.10 7.881525e+03 2489.700 10421.25 63 2.489700e+03 156851.10 4.580568e+06 4.240883e+06 339685.00 NULL
2021 Dept Of Health/Mental Hygiene Secretary 49203.52272 1.918937e+06 15694.58 4.024251e+02 0.000 452.25 39 0.000000e+00 0.00 1.934632e+06 1.918937e+06 15694.58 NULL
2021 Dept Of Health/Mental Hygiene Senior It Architect 114375.80000 5.718790e+05 23070.09 4.614018e+03 0.000 262.25 5 0.000000e+00 0.00 5.949491e+05 5.718790e+05 23070.09 NULL
2021 Dept Of Health/Mental Hygiene Senior Medical Specialist 151385.18000 1.513852e+05 6506.44 6.506440e+03 6506.440 71.00 1 6.506440e+03 6506.44 1.578916e+05 1.578916e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Senior Mental Health Worker 44878.66667 1.346360e+05 714.43 2.381433e+02 0.000 26.25 3 0.000000e+00 0.00 1.353504e+05 1.346360e+05 714.43 NULL
2021 Dept Of Health/Mental Hygiene Senior Photographer 60481.77778 5.443360e+05 49330.84 5.481204e+03 5685.940 1377.00 9 5.481204e+03 49330.84 5.936668e+05 5.936668e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Senior Stationary Engineer NA NA 124485.39 1.244854e+05 124485.390 1116.50 1 1.244854e+05 124485.39 NA NA NA NULL
2021 Dept Of Health/Mental Hygiene Social Worker 66985.63462 3.483253e+06 114135.96 2.194922e+03 96.470 2281.00 52 9.647000e+01 5016.44 3.597389e+06 3.488269e+06 109119.52 NULL
2021 Dept Of Health/Mental Hygiene Space Analyst 84412.00000 8.441200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.441200e+04 8.441200e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene Spec Consultant 85075.48640 8.252322e+06 640105.61 6.599027e+03 1466.570 10216.00 97 1.466570e+03 142257.29 8.892428e+06 8.394579e+06 497848.32 NULL
2021 Dept Of Health/Mental Hygiene Special Advisor To The Mayor For Health Services 93279.66667 2.798390e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.798390e+05 2.798390e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Special Consultant 70014.33505 6.511333e+06 236218.16 2.539980e+03 629.690 4672.75 93 6.296900e+02 58561.17 6.747551e+06 6.569894e+06 177656.99 NULL
2021 Dept Of Health/Mental Hygiene Special Officer 41795.32143 2.340538e+06 704147.86 1.257407e+04 10051.725 22112.61 56 1.005173e+04 562896.60 3.044686e+06 2.903435e+06 141251.26 NULL
2021 Dept Of Health/Mental Hygiene Sr Healthcare Prog Plan Anlyst 61235.57657 4.225255e+06 45723.35 6.626572e+02 0.000 1108.75 69 0.000000e+00 0.00 4.270978e+06 4.225255e+06 45723.35 NULL
2021 Dept Of Health/Mental Hygiene Staff Analyst 66877.19231 1.738807e+06 52405.28 2.015588e+03 0.000 1051.75 26 0.000000e+00 0.00 1.791212e+06 1.738807e+06 52405.28 NULL
2021 Dept Of Health/Mental Hygiene Staff Analyst Trainee 47824.00000 4.782400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.782400e+04 4.782400e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene Stationary Engineer NA NA 1369031.34 9.126876e+04 92689.050 13841.00 15 9.126876e+04 1369031.34 NA NA NA NULL
2021 Dept Of Health/Mental Hygiene Statistician 58593.00000 5.859300e+04 580.36 5.803600e+02 580.360 15.50 1 5.803600e+02 580.36 5.917336e+04 5.917336e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene Steam Fitter NA NA 66935.00 3.346750e+04 33467.500 609.50 2 3.346750e+04 66935.00 NA NA NA NULL
2021 Dept Of Health/Mental Hygiene Stock Worker 41419.50000 4.141950e+05 54525.53 5.452553e+03 0.000 1780.75 10 0.000000e+00 0.00 4.687205e+05 4.141950e+05 54525.53 NULL
2021 Dept Of Health/Mental Hygiene Strategic Initiative Specialist 120870.14286 8.460910e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.460910e+05 8.460910e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Summer College Intern 6090.72917 3.654438e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.654438e+04 3.654438e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene Summer Graduate Intern 5087.03709 6.613148e+04 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 6.613148e+04 6.613148e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene Supervising Computer Service Technician 75805.66667 2.274170e+05 3680.39 1.226797e+03 0.000 74.00 3 0.000000e+00 0.00 2.310974e+05 2.274170e+05 3680.39 NULL
2021 Dept Of Health/Mental Hygiene Supervising Public Health Adviser 64486.28932 6.642088e+06 769313.57 7.469064e+03 891.270 14840.75 103 8.912700e+02 91800.81 7.411401e+06 6.733889e+06 677512.76 NULL
2021 Dept Of Health/Mental Hygiene Supervising Special Officer 57982.64706 9.857050e+05 289125.09 1.700736e+04 14119.020 6988.75 17 1.411902e+04 240023.34 1.274830e+06 1.225728e+06 49101.75 NULL
2021 Dept Of Health/Mental Hygiene Supervisor 52265.88235 8.885200e+05 131742.92 7.749584e+03 1992.190 2707.00 17 1.992190e+03 33867.23 1.020263e+06 9.223872e+05 97875.69 NULL
2021 Dept Of Health/Mental Hygiene Supervisor Electrician NA NA 113584.20 3.786140e+04 0.000 1188.00 3 0.000000e+00 0.00 NA NA NA NULL
2021 Dept Of Health/Mental Hygiene Supervisor I Social Work 73291.50000 1.465830e+05 328.44 1.642200e+02 164.220 8.00 2 1.642200e+02 328.44 1.469114e+05 1.469114e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Supervisor Ii Social Work 79676.11111 7.170850e+05 10077.48 1.119720e+03 0.000 183.50 9 0.000000e+00 0.00 7.271625e+05 7.170850e+05 10077.48 NULL
2021 Dept Of Health/Mental Hygiene Supervisor Iii Social Work 92027.85714 6.441950e+05 16765.05 2.395007e+03 637.700 258.00 7 6.377000e+02 4463.90 6.609601e+05 6.486589e+05 12301.15 NULL
2021 Dept Of Health/Mental Hygiene Supervisor Of Mechanical Installations & Maintenance 95349.00000 2.860470e+05 34851.95 1.161732e+04 12052.410 443.00 3 1.161732e+04 34851.95 3.208990e+05 3.208990e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Supervisor Of Motor Transport 70936.00000 4.256160e+05 278812.10 4.646868e+04 46473.660 5440.25 6 4.646868e+04 278812.10 7.044281e+05 7.044281e+05 0.00 NULL
2021 Dept Of Health/Mental Hygiene Supervisor Of Office Machine Operations 40293.00000 4.029300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.029300e+04 4.029300e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene Supervisor Of Stock Workers 54623.60000 2.731180e+05 40890.55 8.178110e+03 1053.410 1229.25 5 1.053410e+03 5267.05 3.140085e+05 2.783850e+05 35623.50 NULL
2021 Dept Of Health/Mental Hygiene Telecommunications Associate 83952.00000 8.395200e+04 13589.67 1.358967e+04 13589.670 239.00 1 1.358967e+04 13589.67 9.754167e+04 9.754167e+04 0.00 NULL
2021 Dept Of Health/Mental Hygiene X-Ray Technician 59631.26773 6.559439e+05 70554.41 6.414037e+03 490.720 1618.50 11 4.907200e+02 5397.92 7.264984e+05 6.613419e+05 65156.49 NULL
2021 Dept Of Info Tech & Telecomm *Certified Database Administrator 139520.00000 2.790400e+05 10844.73 5.422365e+03 5422.365 105.50 2 5.422365e+03 10844.73 2.898847e+05 2.898847e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm *Certified Local Area Network Administrator 98255.00000 9.825500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.825500e+04 9.825500e+04 0.00 NULL
2021 Dept Of Info Tech & Telecomm Accountant 80041.00000 8.004100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.004100e+04 8.004100e+04 0.00 NULL
2021 Dept Of Info Tech & Telecomm Adm Manager-Non-Mgrl 97526.97222 3.510971e+06 11451.53 3.180981e+02 0.000 224.50 36 0.000000e+00 0.00 3.522423e+06 3.510971e+06 11451.53 NULL
2021 Dept Of Info Tech & Telecomm Admin Contract Specialist 229948.00000 2.299480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.299480e+05 2.299480e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm Administrative Business Promotion Coordinator 135019.52000 3.375488e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 3.375488e+06 3.375488e+06 0.00 NULL
2021 Dept Of Info Tech & Telecomm Administrative Community Relations Specialist 230469.00000 2.304690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.304690e+05 2.304690e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm Administrative Construction Project Manager 151976.50000 3.039530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.039530e+05 3.039530e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm Administrative Manager 175277.20000 8.763860e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.763860e+05 8.763860e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm Administrative Procurement Analyst 128750.00000 1.287500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287500e+05 1.287500e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm Administrative Procurement Analyst-Non-Mgrl 112371.12500 8.989690e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.989690e+05 8.989690e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm Administrative Project Manager 190000.00000 1.900000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.900000e+05 1.900000e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm Administrative Public Information Specialist 124948.22222 1.124534e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.124534e+06 1.124534e+06 0.00 NULL
2021 Dept Of Info Tech & Telecomm Administrative Real Property Manager 142179.00000 1.421790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.421790e+05 1.421790e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm Administrative Staff Analyst 120373.85714 6.740936e+06 5744.79 1.025855e+02 0.000 77.25 56 0.000000e+00 0.00 6.746681e+06 6.740936e+06 5744.79 NULL
2021 Dept Of Info Tech & Telecomm Agency Attorney 100825.10000 1.008251e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.008251e+06 1.008251e+06 0.00 NULL
2021 Dept Of Info Tech & Telecomm Agency Attorney Interne 72100.00000 7.210000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.210000e+04 7.210000e+04 0.00 NULL
2021 Dept Of Info Tech & Telecomm Agency Chief Contracting Officer 172422.00000 1.724220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.724220e+05 1.724220e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm Assistant Commissioner 176000.00000 1.760000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.760000e+05 1.760000e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm Associate Call Center Representative-Non-Spvr 65433.09524 4.122285e+06 49501.72 7.857416e+02 0.000 1137.50 63 0.000000e+00 0.00 4.171787e+06 4.122285e+06 49501.72 NULL
2021 Dept Of Info Tech & Telecomm Associate Commissioner 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm Associate Investigator 69508.00000 1.390160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.390160e+05 1.390160e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm Associate Labor Relations Analyst 100052.00000 1.000520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000520e+05 1.000520e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm Associate Staff Analyst 82670.71429 5.786950e+05 1435.39 2.050557e+02 0.000 26.75 7 0.000000e+00 0.00 5.801304e+05 5.786950e+05 1435.39 NULL
2021 Dept Of Info Tech & Telecomm Business Promotion Coordinator 63789.18182 7.016810e+05 1823.62 1.657836e+02 0.000 42.50 11 0.000000e+00 0.00 7.035046e+05 7.016810e+05 1823.62 NULL
2021 Dept Of Info Tech & Telecomm Call Center Representative 39259.58842 1.220973e+07 190352.58 6.120662e+02 57.610 7120.75 311 5.761000e+01 17916.71 1.240008e+07 1.222765e+07 172435.87 NULL
2021 Dept Of Info Tech & Telecomm Certified It Administrator 119204.35385 1.549657e+07 210641.84 1.620322e+03 0.000 2428.75 130 0.000000e+00 0.00 1.570721e+07 1.549657e+07 210641.84 NULL
2021 Dept Of Info Tech & Telecomm Certified It Developer 112883.72222 2.031907e+06 6262.41 3.479117e+02 0.000 89.25 18 0.000000e+00 0.00 2.038169e+06 2.031907e+06 6262.41 NULL
2021 Dept Of Info Tech & Telecomm City Research Scientist 105993.80000 5.299690e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.299690e+05 5.299690e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm Clerical Associate 51280.54667 1.230733e+06 2104.10 8.767083e+01 0.000 59.25 24 0.000000e+00 0.00 1.232837e+06 1.230733e+06 2104.10 NULL
2021 Dept Of Info Tech & Telecomm College Aide 16071.55170 1.607155e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.607155e+05 1.607155e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm College Aide - Assignment Levels Ii And Iii 19441.74000 5.832522e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.832522e+04 5.832522e+04 0.00 NULL
2021 Dept Of Info Tech & Telecomm Commissioner Of Dept Of Info Technology & Telecommunications 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm Community Assistant 37459.00000 3.745900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.745900e+04 3.745900e+04 0.00 NULL
2021 Dept Of Info Tech & Telecomm Community Associate 50870.28947 1.933071e+06 18446.31 4.854292e+02 0.000 484.75 38 0.000000e+00 0.00 1.951517e+06 1.933071e+06 18446.31 NULL
2021 Dept Of Info Tech & Telecomm Community Coordinator 73202.42917 2.635287e+06 60454.57 1.679294e+03 0.000 1234.50 36 0.000000e+00 0.00 2.695742e+06 2.635287e+06 60454.57 NULL
2021 Dept Of Info Tech & Telecomm Computer Aide-Non-Spvr 48902.90000 4.890290e+05 4262.90 4.262900e+02 0.000 111.00 10 0.000000e+00 0.00 4.932919e+05 4.890290e+05 4262.90 NULL
2021 Dept Of Info Tech & Telecomm Computer Associate 76722.17355 9.283383e+06 334426.37 2.763854e+03 541.480 5808.17 121 5.414800e+02 65519.08 9.617809e+06 9.348902e+06 268907.29 NULL
2021 Dept Of Info Tech & Telecomm Computer Operations Manager 135216.48485 4.462144e+06 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 4.462144e+06 4.462144e+06 0.00 NULL
2021 Dept Of Info Tech & Telecomm Computer Programmer Analyst 68500.00000 4.110000e+05 792.55 1.320917e+02 0.000 18.75 6 0.000000e+00 0.00 4.117925e+05 4.110000e+05 792.55 NULL
2021 Dept Of Info Tech & Telecomm Computer Service Technician 61039.00000 6.103900e+04 2413.04 2.413040e+03 2413.040 47.00 1 2.413040e+03 2413.04 6.345204e+04 6.345204e+04 0.00 NULL
2021 Dept Of Info Tech & Telecomm Computer Specialist 111787.82286 1.956287e+07 170358.17 9.734753e+02 0.000 2215.50 175 0.000000e+00 0.00 1.973323e+07 1.956287e+07 170358.17 NULL
2021 Dept Of Info Tech & Telecomm Computer Systems Manager 141684.90070 3.655470e+07 28167.24 1.091753e+02 0.000 255.25 258 0.000000e+00 0.00 3.658287e+07 3.655470e+07 28167.24 NULL
2021 Dept Of Info Tech & Telecomm Confidential Strategy Planner 63752.50000 1.275050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.275050e+05 1.275050e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm Customer Information Representative Ma L 1549 74971.00000 7.497100e+04 4797.53 4.797530e+03 4797.530 92.00 1 4.797530e+03 4797.53 7.976853e+04 7.976853e+04 0.00 NULL
2021 Dept Of Info Tech & Telecomm Cyber Security Analyst 84772.31429 2.967031e+06 6669.78 1.905651e+02 0.000 135.25 35 0.000000e+00 0.00 2.973701e+06 2.967031e+06 6669.78 NULL
2021 Dept Of Info Tech & Telecomm Deputy Commissioner 187975.00000 3.759500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.759500e+05 3.759500e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm Deputy Commissioner Of It 215559.20000 1.077796e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.077796e+06 1.077796e+06 0.00 NULL
2021 Dept Of Info Tech & Telecomm Director Of Television 60439.00000 1.208780e+05 6909.93 3.454965e+03 3454.965 152.00 2 3.454965e+03 6909.93 1.277879e+05 1.277879e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm Economist 85000.00000 8.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.500000e+04 8.500000e+04 0.00 NULL
2021 Dept Of Info Tech & Telecomm Executive Agency Counsel 166854.60000 2.502819e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 2.502819e+06 2.502819e+06 0.00 NULL
2021 Dept Of Info Tech & Telecomm Executive Program Specialist 110400.00000 5.520000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.520000e+05 5.520000e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm Film Manager 74981.00000 7.498100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.498100e+04 7.498100e+04 0.00 NULL
2021 Dept Of Info Tech & Telecomm Graphic Artist 69186.00000 1.383720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.383720e+05 1.383720e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm Inspector 56169.33333 1.685080e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.685080e+05 1.685080e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm It Automation And Monitoring Engineer 127276.00000 5.091040e+05 2293.13 5.732825e+02 0.000 25.00 4 0.000000e+00 0.00 5.113971e+05 5.091040e+05 2293.13 NULL
2021 Dept Of Info Tech & Telecomm It Infrastructure Engineer 119800.40000 5.990020e+05 166.02 3.320400e+01 0.000 3.00 5 0.000000e+00 0.00 5.991680e+05 5.990020e+05 166.02 NULL
2021 Dept Of Info Tech & Telecomm It Project Specialist 107207.00000 3.001796e+06 235.36 8.405714e+00 0.000 3.00 28 0.000000e+00 0.00 3.002031e+06 3.001796e+06 235.36 NULL
2021 Dept Of Info Tech & Telecomm It Security Specialist 133272.32787 8.129612e+06 95459.39 1.564908e+03 0.000 929.00 61 0.000000e+00 0.00 8.225071e+06 8.129612e+06 95459.39 NULL
2021 Dept Of Info Tech & Telecomm It Service Management Specialist 99631.25000 7.970500e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.970500e+05 7.970500e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm Labor Relations Analyst 75000.00000 7.500000e+04 410.50 4.105000e+02 410.500 10.00 1 4.105000e+02 410.50 7.541050e+04 7.541050e+04 0.00 NULL
2021 Dept Of Info Tech & Telecomm Principal Administrative Associate - Non Supvr 72432.59091 1.593517e+06 27734.13 1.260642e+03 0.000 573.75 22 0.000000e+00 0.00 1.621251e+06 1.593517e+06 27734.13 NULL
2021 Dept Of Info Tech & Telecomm Procurement Analyst 83448.12500 6.675850e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.675850e+05 6.675850e+05 0.00 NULL
2021 Dept Of Info Tech & Telecomm Program Producer 73962.14286 5.177350e+05 635.35 9.076429e+01 0.000 12.25 7 0.000000e+00 0.00 5.183703e+05 5.177350e+05 635.35 NULL
2021 Dept Of Info Tech & Telecomm Quality Assurance Specialist Trainee 39833.00000 3.983300e+04 1569.78 1.569780e+03 1569.780 48.00 1 1.569780e+03 1569.78 4.140278e+04 4.140278e+04 0.00 NULL
2021 Dept Of Info Tech & Telecomm Radio And Television Operator 55405.86667 1.163523e+06 42686.21 2.032677e+03 1255.260 1023.50 21 1.255260e+03 26360.46 1.206209e+06 1.189884e+06 16325.75 NULL
2021 Dept Of Info Tech & Telecomm Secretary 62560.00000 6.256000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.256000e+04 6.256000e+04 0.00 NULL
2021 Dept Of Info Tech & Telecomm Secretary Of Commissioner 61800.00000 6.180000e+04 17285.25 1.728525e+04 17285.250 362.00 1 1.728525e+04 17285.25 7.908525e+04 7.908525e+04 0.00 NULL
2021 Dept Of Info Tech & Telecomm Secretary To The Deputy Commissioner 75197.00000 7.519700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.519700e+04 7.519700e+04 0.00 NULL
2021 Dept Of Info Tech & Telecomm Senior It Architect 154583.71429 1.082086e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.082086e+06 1.082086e+06 0.00 NULL
2021 Dept Of Info Tech & Telecomm Staff Analyst 63402.66667 9.510400e+05 157.60 1.050667e+01 0.000 5.00 15 0.000000e+00 0.00 9.511976e+05 9.510400e+05 157.60 NULL
2021 Dept Of Info Tech & Telecomm Staff Analyst Trainee 48729.00000 9.745800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.745800e+04 9.745800e+04 0.00 NULL
2021 Dept Of Info Tech & Telecomm Strategic Initiative Specialist 56650.00000 5.665000e+04 155.04 1.550400e+02 155.040 5.00 1 1.550400e+02 155.04 5.680504e+04 5.680504e+04 0.00 NULL
2021 Dept Of Info Tech & Telecomm Supervising Computer Service Technician 70715.00000 7.071500e+04 1923.26 1.923260e+03 1923.260 32.50 1 1.923260e+03 1923.26 7.263826e+04 7.263826e+04 0.00 NULL
2021 Dept Of Info Tech & Telecomm Supervisor Of Office Machine Operations 49592.00000 4.959200e+04 1605.76 1.605760e+03 1605.760 41.00 1 1.605760e+03 1605.76 5.119776e+04 5.119776e+04 0.00 NULL
2021 Dept Of Info Tech & Telecomm Supervisor Of Radio And Television Operators 81438.00000 4.071900e+05 33.52 6.704000e+00 0.340 0.00 5 3.400000e-01 1.70 4.072235e+05 4.071917e+05 31.82 NULL
2021 Dept Of Info Tech & Telecomm Telecommunication Manager 144692.59091 3.183237e+06 56.05 2.547727e+00 0.000 0.00 22 0.000000e+00 0.00 3.183293e+06 3.183237e+06 56.05 NULL
2021 Dept Of Info Tech & Telecomm Telecommunications Associate 77977.87097 4.834628e+06 63116.17 1.018003e+03 0.000 1085.25 62 0.000000e+00 0.00 4.897744e+06 4.834628e+06 63116.17 NULL
2021 Dept Of Info Tech & Telecomm Telecommunications Manager 112555.66667 6.753340e+05 637.53 1.062550e+02 0.000 10.00 6 0.000000e+00 0.00 6.759715e+05 6.753340e+05 637.53 NULL
2021 Dept Of Parks & Recreation *Principal Park Supervisor 86535.00000 8.653500e+04 9672.89 9.672890e+03 9672.890 147.00 1 9.672890e+03 9672.89 9.620789e+04 9.620789e+04 0.00 NULL
2021 Dept Of Parks & Recreation Accountant 83441.00000 8.344100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.344100e+04 8.344100e+04 0.00 NULL
2021 Dept Of Parks & Recreation Adm Manager-Non-Mgrl 81793.82932 4.825836e+06 84112.21 1.425631e+03 0.000 1368.00 59 0.000000e+00 0.00 4.909948e+06 4.825836e+06 84112.21 NULL
2021 Dept Of Parks & Recreation Admin Community Relations Specialist 96382.93548 5.975742e+06 208382.95 3.361015e+03 0.000 3313.75 62 0.000000e+00 0.00 6.184125e+06 5.975742e+06 208382.95 NULL
2021 Dept Of Parks & Recreation Admin Landmarks Preservationist 123600.00000 1.236000e+05 116.35 1.163500e+02 116.350 1.50 1 1.163500e+02 116.35 1.237164e+05 1.237164e+05 0.00 NULL
2021 Dept Of Parks & Recreation Administrative Architect 137136.50000 2.742730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.742730e+05 2.742730e+05 0.00 NULL
2021 Dept Of Parks & Recreation Administrative City Planner 131027.50000 5.241100e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.241100e+05 5.241100e+05 0.00 NULL
2021 Dept Of Parks & Recreation Administrative Community Relations Specialist 147903.71429 1.035326e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.035326e+06 1.035326e+06 0.00 NULL
2021 Dept Of Parks & Recreation Administrative Construction Project Manager 150393.00000 1.503930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503930e+05 1.503930e+05 0.00 NULL
2021 Dept Of Parks & Recreation Administrative Engineer 123921.00000 2.478420e+05 1027.53 5.137650e+02 513.765 15.25 2 5.137650e+02 1027.53 2.488695e+05 2.488695e+05 0.00 NULL
2021 Dept Of Parks & Recreation Administrative Graphic Artist 97850.00000 1.957000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.957000e+05 1.957000e+05 0.00 NULL
2021 Dept Of Parks & Recreation Administrative Horticulturist 88864.27907 3.821164e+06 140792.89 3.274253e+03 0.080 2208.25 43 8.000000e-02 3.44 3.961957e+06 3.821167e+06 140789.45 NULL
2021 Dept Of Parks & Recreation Administrative Landscape Architect 127705.75000 5.108230e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.108230e+05 5.108230e+05 0.00 NULL
2021 Dept Of Parks & Recreation Administrative Management Auditor 101635.00000 1.016350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.016350e+05 1.016350e+05 0.00 NULL
2021 Dept Of Parks & Recreation Administrative Manager 147594.00000 2.951880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.951880e+05 2.951880e+05 0.00 NULL
2021 Dept Of Parks & Recreation Administrative Parks & Recreation Manager 102414.73333 1.075355e+07 554320.21 5.279240e+03 664.120 7856.50 105 6.641200e+02 69732.60 1.130787e+07 1.082328e+07 484587.61 NULL
2021 Dept Of Parks & Recreation Administrative Procurement Analyst-Non-Mgrl 84889.28571 5.942250e+05 1014.70 1.449571e+02 0.000 20.25 7 0.000000e+00 0.00 5.952397e+05 5.942250e+05 1014.70 NULL
2021 Dept Of Parks & Recreation Administrative Project Manager 110683.66667 4.648714e+06 19357.88 4.609019e+02 0.000 364.25 42 0.000000e+00 0.00 4.668072e+06 4.648714e+06 19357.88 NULL
2021 Dept Of Parks & Recreation Administrative Public Information Specialist 129143.66667 3.874310e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.874310e+05 3.874310e+05 0.00 NULL
2021 Dept Of Parks & Recreation Administrative Quality Assurance Specialist 82716.00000 8.271600e+04 3995.43 3.995430e+03 3995.430 70.50 1 3.995430e+03 3995.43 8.671143e+04 8.671143e+04 0.00 NULL
2021 Dept Of Parks & Recreation Administrative Staff Analyst 102926.38356 7.513626e+06 71743.46 9.827871e+02 0.000 1126.25 73 0.000000e+00 0.00 7.585369e+06 7.513626e+06 71743.46 NULL
2021 Dept Of Parks & Recreation Administrative Supervisor Of Building Maintenance 114429.00000 2.288580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.288580e+05 2.288580e+05 0.00 NULL
2021 Dept Of Parks & Recreation Agency Attorney 93415.53846 1.214402e+06 309.67 2.382077e+01 0.000 7.50 13 0.000000e+00 0.00 1.214712e+06 1.214402e+06 309.67 NULL
2021 Dept Of Parks & Recreation Agency Chief Contracting Officer 138605.00000 1.386050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.386050e+05 1.386050e+05 0.00 NULL
2021 Dept Of Parks & Recreation Architect 105427.55556 9.488480e+05 1639.37 1.821522e+02 0.000 28.25 9 0.000000e+00 0.00 9.504874e+05 9.488480e+05 1639.37 NULL
2021 Dept Of Parks & Recreation Assistant Architect 77152.25000 3.086090e+05 3750.53 9.376325e+02 738.180 75.00 4 7.381800e+02 2952.72 3.123595e+05 3.115617e+05 797.81 NULL
2021 Dept Of Parks & Recreation Assistant Civil Engineer 75622.40000 7.562240e+05 22603.29 2.260329e+03 113.075 384.75 10 1.130750e+02 1130.75 7.788273e+05 7.573548e+05 21472.54 NULL
2021 Dept Of Parks & Recreation Assistant Commissioner 168590.33333 5.057710e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.057710e+05 5.057710e+05 0.00 NULL
2021 Dept Of Parks & Recreation Assistant Electrical Engineer 80034.50000 1.600690e+05 1409.41 7.047050e+02 704.705 23.00 2 7.047050e+02 1409.41 1.614784e+05 1.614784e+05 0.00 NULL
2021 Dept Of Parks & Recreation Assistant Environmental Engineer 76786.00000 1.535720e+05 541.52 2.707600e+02 270.760 11.00 2 2.707600e+02 541.52 1.541135e+05 1.541135e+05 0.00 NULL
2021 Dept Of Parks & Recreation Assistant Landscape Architect 66202.23529 1.125438e+06 3750.82 2.206365e+02 0.000 73.00 17 0.000000e+00 0.00 1.129189e+06 1.125438e+06 3750.82 NULL
2021 Dept Of Parks & Recreation Assistant Mechanical Engineer 74277.00000 2.971080e+05 6509.55 1.627388e+03 1416.040 123.00 4 1.416040e+03 5664.16 3.036175e+05 3.027722e+05 845.39 NULL
2021 Dept Of Parks & Recreation Assistant To The Commissioner Of Parks And Recreation 171000.00000 1.710000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.710000e+05 1.710000e+05 0.00 NULL
2021 Dept Of Parks & Recreation Associate Fraud Investigator 94394.50000 1.887890e+05 362.96 1.814800e+02 181.480 6.00 2 1.814800e+02 362.96 1.891520e+05 1.891520e+05 0.00 NULL
2021 Dept Of Parks & Recreation Associate Labor Relations Analyst 84672.50000 1.693450e+05 11506.57 5.753285e+03 5753.285 204.75 2 5.753285e+03 11506.57 1.808516e+05 1.808516e+05 0.00 NULL
2021 Dept Of Parks & Recreation Associate Park Service Worker 41584.05129 5.031670e+06 905109.36 7.480243e+03 3869.520 20114.33 121 3.869520e+03 468211.92 5.936780e+06 5.499882e+06 436897.44 NULL
2021 Dept Of Parks & Recreation Associate Project Manager 90707.39136 5.986688e+06 57607.88 8.728467e+02 1.360 891.25 66 1.360000e+00 89.76 6.044296e+06 5.986778e+06 57518.12 NULL
2021 Dept Of Parks & Recreation Associate Quality Assurance Specialist 82914.00000 8.291400e+04 1474.58 1.474580e+03 1474.580 26.25 1 1.474580e+03 1474.58 8.438858e+04 8.438858e+04 0.00 NULL
2021 Dept Of Parks & Recreation Associate Staff Analyst 71334.88750 1.141358e+06 19043.09 1.190193e+03 0.000 346.00 16 0.000000e+00 0.00 1.160401e+06 1.141358e+06 19043.09 NULL
2021 Dept Of Parks & Recreation Associate Urban Designer 82840.58333 9.940870e+05 14890.05 1.240838e+03 0.000 233.25 12 0.000000e+00 0.00 1.008977e+06 9.940870e+05 14890.05 NULL
2021 Dept Of Parks & Recreation Associate Urban Park Ranger 59347.41250 3.798234e+06 622782.92 9.730983e+03 8701.850 14060.59 64 8.701850e+03 556918.40 4.421017e+06 4.355153e+06 65864.52 NULL
2021 Dept Of Parks & Recreation Auto Mechanic NA NA 141225.02 6.419319e+03 6379.825 2247.00 22 6.379825e+03 140356.15 NA NA NA NULL
2021 Dept Of Parks & Recreation Automotive Service Worker 11751.63900 5.875819e+04 2069.65 4.139300e+02 0.000 67.00 5 0.000000e+00 0.00 6.082785e+04 5.875819e+04 2069.65 NULL
2021 Dept Of Parks & Recreation Blacksmith NA NA 168152.58 1.293481e+04 7018.920 2374.00 13 7.018920e+03 91245.96 NA NA NA NULL
2021 Dept Of Parks & Recreation Blacksmith’s Helper NA NA 82239.09 1.644782e+04 8314.440 1593.00 5 8.314440e+03 41572.20 NA NA NA NULL
2021 Dept Of Parks & Recreation Borough Commissioner 177053.40000 8.852670e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.852670e+05 8.852670e+05 0.00 NULL
2021 Dept Of Parks & Recreation Carpenter NA NA 396803.72 1.202436e+04 6193.740 5075.50 33 6.193740e+03 204393.42 NA NA NA NULL
2021 Dept Of Parks & Recreation Cement Mason NA NA 226098.83 1.130494e+04 3415.100 2521.00 20 3.415100e+03 68302.00 NA NA NA NULL
2021 Dept Of Parks & Recreation Certified It Administrator 100755.46667 1.511332e+06 58774.70 3.918313e+03 2267.010 787.50 15 2.267010e+03 34005.15 1.570107e+06 1.545337e+06 24769.55 NULL
2021 Dept Of Parks & Recreation Certified It Developer 82953.46154 1.078395e+06 13286.08 1.022006e+03 0.000 178.25 13 0.000000e+00 0.00 1.091681e+06 1.078395e+06 13286.08 NULL
2021 Dept Of Parks & Recreation Chief Lifeguard 30966.25270 2.694064e+06 141542.82 1.626929e+03 1317.120 2792.75 87 1.317120e+03 114589.44 2.835607e+06 2.808653e+06 26953.38 NULL
2021 Dept Of Parks & Recreation City Park Worker 12628.46600 1.305783e+07 527115.09 5.097825e+02 33.250 20114.12 1034 3.325000e+01 34380.50 1.358495e+07 1.309221e+07 492734.59 NULL
2021 Dept Of Parks & Recreation City Planner 87786.46667 1.316797e+06 7915.83 5.277220e+02 0.000 130.50 15 0.000000e+00 0.00 1.324713e+06 1.316797e+06 7915.83 NULL
2021 Dept Of Parks & Recreation City Research Scientist 88277.56000 1.765551e+06 11591.08 5.795540e+02 0.000 195.25 20 0.000000e+00 0.00 1.777142e+06 1.765551e+06 11591.08 NULL
2021 Dept Of Parks & Recreation City Seasonal Aide 10567.38907 2.420989e+07 699663.58 3.053966e+02 0.000 31173.53 2291 0.000000e+00 0.00 2.490955e+07 2.420989e+07 699663.58 NULL
2021 Dept Of Parks & Recreation Civil Engineer 107260.50000 8.580840e+05 1978.80 2.473500e+02 0.145 27.00 8 1.450000e-01 1.16 8.600628e+05 8.580852e+05 1977.64 NULL
2021 Dept Of Parks & Recreation Clerical Aide 8612.03500 2.583610e+04 4570.00 1.523333e+03 0.000 194.50 3 0.000000e+00 0.00 3.040610e+04 2.583610e+04 4570.00 NULL
2021 Dept Of Parks & Recreation Clerical Associate 35980.47079 6.116680e+05 36119.82 2.124695e+03 0.000 845.75 17 0.000000e+00 0.00 6.477878e+05 6.116680e+05 36119.82 NULL
2021 Dept Of Parks & Recreation Climber & Pruner 68171.52174 6.271780e+06 1074490.24 1.167924e+04 9954.220 20584.87 92 9.954220e+03 915788.24 7.346270e+06 7.187568e+06 158702.00 NULL
2021 Dept Of Parks & Recreation Commissioner Of Parks & Recreation 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2021 Dept Of Parks & Recreation Community Assistant 41555.00000 4.155500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.155500e+04 4.155500e+04 0.00 NULL
2021 Dept Of Parks & Recreation Community Associate 12406.39972 1.017325e+06 17128.32 2.088820e+02 0.000 468.75 82 0.000000e+00 0.00 1.034453e+06 1.017325e+06 17128.32 NULL
2021 Dept Of Parks & Recreation Community Coordinator 69507.65459 2.224245e+07 663004.27 2.071888e+03 0.000 12610.75 320 0.000000e+00 0.00 2.290545e+07 2.224245e+07 663004.27 NULL
2021 Dept Of Parks & Recreation Community Service Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2021 Dept Of Parks & Recreation Computer Aide-Non-Spvr 58349.66667 1.750490e+05 20759.83 6.919943e+03 1465.780 543.25 3 1.465780e+03 4397.34 1.958088e+05 1.794463e+05 16362.49 NULL
2021 Dept Of Parks & Recreation Computer Associate 76748.63158 1.458224e+06 42412.76 2.232251e+03 0.000 654.25 19 0.000000e+00 0.00 1.500637e+06 1.458224e+06 42412.76 NULL
2021 Dept Of Parks & Recreation Computer Operations Manager 108056.00000 3.241680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.241680e+05 3.241680e+05 0.00 NULL
2021 Dept Of Parks & Recreation Computer Specialist 97868.57143 1.370160e+06 21372.11 1.526579e+03 0.000 304.00 14 0.000000e+00 0.00 1.391532e+06 1.370160e+06 21372.11 NULL
2021 Dept Of Parks & Recreation Computer Systems Manager 128925.00000 2.578500e+05 4492.15 2.246075e+03 2246.075 70.25 2 2.246075e+03 4492.15 2.623422e+05 2.623422e+05 0.00 NULL
2021 Dept Of Parks & Recreation Construction Project Manager 86470.79487 6.744722e+06 63847.44 8.185569e+02 4.145 1046.25 78 4.145000e+00 323.31 6.808569e+06 6.745045e+06 63524.13 NULL
2021 Dept Of Parks & Recreation Construction Project Manager Intern 59831.50000 1.196630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.196630e+05 1.196630e+05 0.00 NULL
2021 Dept Of Parks & Recreation Counsel 198551.00000 1.985510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.985510e+05 1.985510e+05 0.00 NULL
2021 Dept Of Parks & Recreation Deputy Borough Commissioner 155572.66667 9.334360e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.334360e+05 9.334360e+05 0.00 NULL
2021 Dept Of Parks & Recreation Deputy Chief Of Operations 128725.00000 1.544700e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.544700e+06 1.544700e+06 0.00 NULL
2021 Dept Of Parks & Recreation Deputy Commissioner 196829.00000 9.841450e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.841450e+05 9.841450e+05 0.00 NULL
2021 Dept Of Parks & Recreation Director Of Community Involvement 128750.00000 1.287500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287500e+05 1.287500e+05 0.00 NULL
2021 Dept Of Parks & Recreation Director Of Neighborhood Park Restoration 105318.00000 1.053180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.053180e+05 1.053180e+05 0.00 NULL
2021 Dept Of Parks & Recreation Director Of Puppetry 61960.00000 6.196000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.196000e+04 6.196000e+04 0.00 NULL
2021 Dept Of Parks & Recreation Director Of Urban Park Ranger Program 102094.00000 3.062820e+05 493.36 1.644533e+02 0.000 10.50 3 0.000000e+00 0.00 3.067754e+05 3.062820e+05 493.36 NULL
2021 Dept Of Parks & Recreation Electrical Engineer 107077.50000 2.141550e+05 8.20 4.100000e+00 4.100 0.00 2 4.100000e+00 8.20 2.141632e+05 2.141632e+05 0.00 NULL
2021 Dept Of Parks & Recreation Electrician NA NA 570685.12 1.188927e+04 4586.600 6242.75 48 4.586600e+03 220156.80 NA NA NA NULL
2021 Dept Of Parks & Recreation Environmental Engineer 104845.00000 1.048450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.048450e+05 1.048450e+05 0.00 NULL
2021 Dept Of Parks & Recreation Executive Agency Counsel 146023.50000 5.840940e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.840940e+05 5.840940e+05 0.00 NULL
2021 Dept Of Parks & Recreation Executive Assistant To The Commissioner 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2021 Dept Of Parks & Recreation Exterminator 51542.50000 2.061700e+05 88166.14 2.204153e+04 21895.825 2352.75 4 2.189583e+04 87583.30 2.943361e+05 2.937533e+05 582.84 NULL
2021 Dept Of Parks & Recreation Forester 61028.69264 1.647775e+06 74463.52 2.757908e+03 1.590 1517.50 27 1.590000e+00 42.93 1.722238e+06 1.647818e+06 74420.59 NULL
2021 Dept Of Parks & Recreation Gardener 36236.27222 3.406210e+06 310907.85 3.307530e+03 127.860 7585.25 94 1.278600e+02 12018.84 3.717117e+06 3.418228e+06 298889.01 NULL
2021 Dept Of Parks & Recreation Investigator 72197.00000 5.775760e+05 229.00 2.862500e+01 0.000 5.00 8 0.000000e+00 0.00 5.778050e+05 5.775760e+05 229.00 NULL
2021 Dept Of Parks & Recreation It Automation And Monitoring Engineer 85231.00000 8.523100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.523100e+04 8.523100e+04 0.00 NULL
2021 Dept Of Parks & Recreation It Infrastructure Engineer 87550.00000 8.755000e+04 3078.86 3.078860e+03 3078.860 52.50 1 3.078860e+03 3078.86 9.062886e+04 9.062886e+04 0.00 NULL
2021 Dept Of Parks & Recreation It Project Specialist 92044.20000 4.602210e+05 8875.52 1.775104e+03 767.930 129.25 5 7.679300e+02 3839.65 4.690965e+05 4.640607e+05 5035.87 NULL
2021 Dept Of Parks & Recreation It Service Management Specialist 75000.00000 7.500000e+04 2637.50 2.637500e+03 2637.500 53.75 1 2.637500e+03 2637.50 7.763750e+04 7.763750e+04 0.00 NULL
2021 Dept Of Parks & Recreation Job Training Participant 6560.45997 1.765420e+07 580648.25 2.157742e+02 0.000 27131.00 2691 0.000000e+00 0.00 1.823485e+07 1.765420e+07 580648.25 NULL
2021 Dept Of Parks & Recreation Labor Relations Analyst 74699.50000 1.493990e+05 1832.59 9.162950e+02 916.295 33.00 2 9.162950e+02 1832.59 1.512316e+05 1.512316e+05 0.00 NULL
2021 Dept Of Parks & Recreation Landmarks Preservationist 84334.50000 3.373380e+05 2445.10 6.112750e+02 205.885 44.25 4 2.058850e+02 823.54 3.397831e+05 3.381615e+05 1621.56 NULL
2021 Dept Of Parks & Recreation Landscape Architect 95600.53111 8.604048e+06 37258.54 4.139838e+02 0.040 558.25 90 4.000000e-02 3.60 8.641306e+06 8.604051e+06 37254.94 NULL
2021 Dept Of Parks & Recreation Landscape Architect Intern 59125.00000 1.182500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.182500e+05 1.182500e+05 0.00 NULL
2021 Dept Of Parks & Recreation Letterer And Sign Painter NA NA 5651.80 2.825900e+03 2825.900 130.50 2 2.825900e+03 5651.80 NA NA NA NULL
2021 Dept Of Parks & Recreation Life Guard 6379.42791 7.208754e+06 501481.65 4.437891e+02 248.120 17292.50 1130 2.481200e+02 280375.60 7.710235e+06 7.489129e+06 221106.05 NULL
2021 Dept Of Parks & Recreation Machinist NA NA 8780.99 2.926997e+03 135.630 132.50 3 1.356300e+02 406.89 NA NA NA NULL
2021 Dept Of Parks & Recreation Maintenance Worker NA NA 519715.59 1.060644e+04 6604.890 11190.25 49 6.604890e+03 323639.61 NA NA NA NULL
2021 Dept Of Parks & Recreation Management Auditor 80000.00000 8.000000e+04 4511.36 4.511360e+03 4511.360 65.50 1 4.511360e+03 4511.36 8.451136e+04 8.451136e+04 0.00 NULL
2021 Dept Of Parks & Recreation Manager Of Park License Agreements 160112.00000 1.601120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.601120e+05 1.601120e+05 0.00 NULL
2021 Dept Of Parks & Recreation Marine Maintenance Mechanic 79484.00000 2.384520e+05 489.43 1.631433e+02 0.000 7.50 3 0.000000e+00 0.00 2.389414e+05 2.384520e+05 489.43 NULL
2021 Dept Of Parks & Recreation Masons Helper NA NA 17476.09 5.825363e+03 0.000 341.50 3 0.000000e+00 0.00 NA NA NA NULL
2021 Dept Of Parks & Recreation Mechanical Engineer 104589.66667 3.137690e+05 2.79 9.300000e-01 0.160 0.00 3 1.600000e-01 0.48 3.137718e+05 3.137695e+05 2.31 NULL
2021 Dept Of Parks & Recreation Monuments Officer 96682.00000 9.668200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.668200e+04 9.668200e+04 0.00 NULL
2021 Dept Of Parks & Recreation Oiler NA NA 126361.05 4.212035e+04 37103.360 1396.25 3 3.710336e+04 111310.08 NA NA NA NULL
2021 Dept Of Parks & Recreation Painter NA NA 305875.08 9.866938e+03 4137.220 4926.25 31 4.137220e+03 128253.82 NA NA NA NULL
2021 Dept Of Parks & Recreation Park Supervisor 77623.35775 2.755629e+07 3604060.96 1.015228e+04 6592.640 65975.79 355 6.592640e+03 2340387.20 3.116035e+07 2.989668e+07 1263673.76 NULL
2021 Dept Of Parks & Recreation Playground Associate 7630.22037 1.274247e+06 40219.46 2.408351e+02 0.000 1319.25 167 0.000000e+00 0.00 1.314466e+06 1.274247e+06 40219.46 NULL
2021 Dept Of Parks & Recreation Plumber NA NA 1480723.58 2.388264e+04 19475.110 14100.75 62 1.947511e+04 1207456.82 NA NA NA NULL
2021 Dept Of Parks & Recreation Plumber’s Helper NA NA 93731.53 2.343288e+04 24944.395 1564.50 4 2.343288e+04 93731.53 NA NA NA NULL
2021 Dept Of Parks & Recreation Principal Administrative Associate - Non Supvr 61513.54395 4.305948e+06 92743.70 1.324910e+03 0.000 1879.17 70 0.000000e+00 0.00 4.398692e+06 4.305948e+06 92743.70 NULL
2021 Dept Of Parks & Recreation Procurement Analyst 79166.86667 1.187503e+06 8546.26 5.697507e+02 0.000 177.75 15 0.000000e+00 0.00 1.196049e+06 1.187503e+06 8546.26 NULL
2021 Dept Of Parks & Recreation Project Manager 75570.27273 8.312730e+05 25891.47 2.353770e+03 564.380 477.00 11 5.643800e+02 6208.18 8.571645e+05 8.374812e+05 19683.29 NULL
2021 Dept Of Parks & Recreation Recreation Director 44794.00625 1.791760e+05 0.92 2.300000e-01 0.190 0.00 4 1.900000e-01 0.76 1.791769e+05 1.791768e+05 0.16 NULL
2021 Dept Of Parks & Recreation Recreation Specialist 16097.41616 8.853579e+05 72753.73 1.322795e+03 0.000 2027.75 55 0.000000e+00 0.00 9.581116e+05 8.853579e+05 72753.73 NULL
2021 Dept Of Parks & Recreation Recreation Supervisor 64905.01408 4.608256e+06 568734.27 8.010342e+03 2164.110 11595.23 71 2.164110e+03 153651.81 5.176990e+06 4.761908e+06 415082.46 NULL
2021 Dept Of Parks & Recreation Research Assistant 63935.50000 1.278710e+05 3796.40 1.898200e+03 1898.200 85.00 2 1.898200e+03 3796.40 1.316674e+05 1.316674e+05 0.00 NULL
2021 Dept Of Parks & Recreation Secretary 62257.00000 6.225700e+04 110.69 1.106900e+02 110.690 3.00 1 1.106900e+02 110.69 6.236769e+04 6.236769e+04 0.00 NULL
2021 Dept Of Parks & Recreation Senior Estimator 93205.80000 4.660290e+05 779.73 1.559460e+02 0.000 13.50 5 0.000000e+00 0.00 4.668087e+05 4.660290e+05 779.73 NULL
2021 Dept Of Parks & Recreation Senior Photographer 75824.50000 1.516490e+05 989.26 4.946300e+02 494.630 23.75 2 4.946300e+02 989.26 1.526383e+05 1.526383e+05 0.00 NULL
2021 Dept Of Parks & Recreation Senior Stationary Engineer NA NA 213225.06 7.107502e+04 75857.400 1921.00 3 7.107502e+04 213225.06 NA NA NA NULL
2021 Dept Of Parks & Recreation Sheet Metal Worker NA NA 29133.76 5.826752e+03 7355.840 251.50 5 5.826752e+03 29133.76 NA NA NA NULL
2021 Dept Of Parks & Recreation Staff Analyst 69674.66667 2.090240e+05 31380.88 1.046029e+04 222.520 583.25 3 2.225200e+02 667.56 2.404049e+05 2.096916e+05 30713.32 NULL
2021 Dept Of Parks & Recreation Staff Analyst Trainee 48729.00000 4.872900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.872900e+04 4.872900e+04 0.00 NULL
2021 Dept Of Parks & Recreation Stationary Engineer NA NA 1456623.91 3.310509e+04 35811.570 15792.50 44 3.310509e+04 1456623.91 NA NA NA NULL
2021 Dept Of Parks & Recreation Steam Fitter NA NA 188430.00 2.355375e+04 23595.000 1713.00 8 2.355375e+04 188430.00 NA NA NA NULL
2021 Dept Of Parks & Recreation Steam Fitter’s Helper NA NA 5362.50 5.362500e+03 5362.500 65.00 1 5.362500e+03 5362.50 NA NA NA NULL
2021 Dept Of Parks & Recreation Supervising Computer Service Technician 70691.00000 7.069100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.069100e+04 7.069100e+04 0.00 NULL
2021 Dept Of Parks & Recreation Supervising Dockmaster 68088.80000 3.404440e+05 1876.29 3.752580e+02 0.000 37.00 5 0.000000e+00 0.00 3.423203e+05 3.404440e+05 1876.29 NULL
2021 Dept Of Parks & Recreation Supervisor 71846.00000 7.184600e+04 20142.91 2.014291e+04 20142.910 392.00 1 2.014291e+04 20142.91 9.198891e+04 9.198891e+04 0.00 NULL
2021 Dept Of Parks & Recreation Supervisor Carpenter NA NA 100556.43 3.351881e+04 41367.520 1227.00 3 3.351881e+04 100556.43 NA NA NA NULL
2021 Dept Of Parks & Recreation Supervisor Electrician NA NA 56544.51 2.827226e+04 28272.255 575.50 2 2.827226e+04 56544.51 NA NA NA NULL
2021 Dept Of Parks & Recreation Supervisor Of Mechanics NA NA 311969.98 2.228357e+04 15553.840 3881.75 14 1.555384e+04 217753.76 NA NA NA NULL
2021 Dept Of Parks & Recreation Supervisor Painter NA NA 12035.52 4.011840e+03 0.000 168.00 3 0.000000e+00 0.00 NA NA NA NULL
2021 Dept Of Parks & Recreation Supervisor Plumber NA NA 409019.58 8.180392e+04 91324.990 3715.75 5 8.180392e+04 409019.58 NA NA NA NULL
2021 Dept Of Parks & Recreation Surveyor 71833.37500 5.746670e+05 25.03 3.128750e+00 1.865 0.00 8 1.865000e+00 14.92 5.746920e+05 5.746819e+05 10.11 NULL
2021 Dept Of Parks & Recreation Telecommunications Associate 81685.00000 3.267400e+05 13315.48 3.328870e+03 1763.590 177.00 4 1.763590e+03 7054.36 3.400555e+05 3.337944e+05 6261.12 NULL
2021 Dept Of Parks & Recreation Telephone Service Technician 65497.00000 1.964910e+05 35446.12 1.181537e+04 12138.370 751.75 3 1.181537e+04 35446.12 2.319371e+05 2.319371e+05 0.00 NULL
2021 Dept Of Parks & Recreation Urban Park Ranger 28502.16478 4.303827e+06 348010.20 2.304703e+03 0.000 8998.50 151 0.000000e+00 0.00 4.651837e+06 4.303827e+06 348010.20 NULL
2021 Dept Of Records & Info Service Adm Manager-Non-Mgrl 81839.00000 3.273560e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.273560e+05 3.273560e+05 0.00 NULL
2021 Dept Of Records & Info Service Administrative Public Records Officer 115477.66667 3.464330e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.464330e+05 3.464330e+05 0.00 NULL
2021 Dept Of Records & Info Service Agency Attorney 117541.00000 1.175410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.175410e+05 1.175410e+05 0.00 NULL
2021 Dept Of Records & Info Service Assistant Commissioner 156972.00000 1.569720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.569720e+05 1.569720e+05 0.00 NULL
2021 Dept Of Records & Info Service Associate Project Manager 103000.00000 1.030000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030000e+05 1.030000e+05 0.00 NULL
2021 Dept Of Records & Info Service Associate Public Records Officer 65452.37500 5.236190e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.236190e+05 5.236190e+05 0.00 NULL
2021 Dept Of Records & Info Service Associate Staff Analyst 97873.00000 9.787300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.787300e+04 9.787300e+04 0.00 NULL
2021 Dept Of Records & Info Service Certified It Administrator 124376.00000 1.243760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.243760e+05 1.243760e+05 0.00 NULL
2021 Dept Of Records & Info Service Certified It Developer 108628.50000 2.172570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.172570e+05 2.172570e+05 0.00 NULL
2021 Dept Of Records & Info Service City Custodial Assistant 32260.00000 3.226000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.226000e+04 3.226000e+04 0.00 NULL
2021 Dept Of Records & Info Service Clerical Associate 44785.20000 2.239260e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.239260e+05 2.239260e+05 0.00 NULL
2021 Dept Of Records & Info Service Commissioner 218405.00000 2.184050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.184050e+05 2.184050e+05 0.00 NULL
2021 Dept Of Records & Info Service Community Assistant 37422.21000 3.742221e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.742221e+04 3.742221e+04 0.00 NULL
2021 Dept Of Records & Info Service Community Associate 45355.81697 1.360675e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.360675e+05 1.360675e+05 0.00 NULL
2021 Dept Of Records & Info Service Community Coordinator 80160.75000 3.206430e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.206430e+05 3.206430e+05 0.00 NULL
2021 Dept Of Records & Info Service Computer Associate 51346.00000 5.134600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.134600e+04 5.134600e+04 0.00 NULL
2021 Dept Of Records & Info Service Computer Specialist 81951.00000 8.195100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.195100e+04 8.195100e+04 0.00 NULL
2021 Dept Of Records & Info Service Computer Systems Manager 149193.00000 2.983860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.983860e+05 2.983860e+05 0.00 NULL
2021 Dept Of Records & Info Service Motor Vehicle Operator 50320.00000 5.032000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.032000e+04 5.032000e+04 0.00 NULL
2021 Dept Of Records & Info Service Principal Administrative Associate - Non Supvr 61376.00000 2.455040e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.455040e+05 2.455040e+05 0.00 NULL
2021 Dept Of Records & Info Service Public Records Aide 30505.13316 4.880821e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 4.880821e+05 4.880821e+05 0.00 NULL
2021 Dept Of Records & Info Service Public Records Officer 47174.38203 5.189182e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.189182e+05 5.189182e+05 0.00 NULL
2021 Dept Of Records & Info Service Research Assistant 60434.00000 1.208680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.208680e+05 1.208680e+05 0.00 NULL
2021 Dept Of Records & Info Service Staff Analyst 57930.00000 5.793000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.793000e+04 5.793000e+04 0.00 NULL
2021 Dept Of Records & Info Service Stock Worker 19990.24320 3.998049e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.998049e+04 3.998049e+04 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Accountant 87901.00000 8.790100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.790100e+04 8.790100e+04 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Adm Manager-Non-Mgrl 82424.12500 1.318786e+06 6763.09 4.226931e+02 0.000 137.75 16 0.000000e+00 0.00 1.325549e+06 1.318786e+06 6763.09 NULL
2021 Dept Of Youth & Comm Dev Srvs Admin Community Relations Specialist 83772.25581 3.602207e+06 7276.22 1.692144e+02 0.000 132.75 43 0.000000e+00 0.00 3.609483e+06 3.602207e+06 7276.22 NULL
2021 Dept Of Youth & Comm Dev Srvs Admin Contract Specialist 135752.36364 1.493276e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.493276e+06 1.493276e+06 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Administrative Business Promotion Coordinator 92338.60000 2.308465e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 2.308465e+06 2.308465e+06 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Administrative Community Relations Specialist 119188.15385 1.549446e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.549446e+06 1.549446e+06 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Administrative Contract Specialist 83091.31818 5.484027e+06 38318.30 5.805803e+02 0.000 686.00 66 0.000000e+00 0.00 5.522345e+06 5.484027e+06 38318.30 NULL
2021 Dept Of Youth & Comm Dev Srvs Administrative Graphic Artist 106341.00000 1.063410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.063410e+05 1.063410e+05 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Administrative Labor Relations Analyst 106985.00000 2.139700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.139700e+05 2.139700e+05 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Administrative Management Auditor 119083.33333 3.572500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.572500e+05 3.572500e+05 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Administrative Manager 114603.00000 1.719045e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.719045e+06 1.719045e+06 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Administrative Procurement Analyst 134778.33333 4.043350e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.043350e+05 4.043350e+05 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Administrative Procurement Analyst-Non-Mgrl 73776.40000 3.688820e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.688820e+05 3.688820e+05 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Administrative Public Information Specialist 108821.00000 1.088210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.088210e+05 1.088210e+05 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Administrative Staff Analyst 119121.95783 5.479610e+06 0.00 0.000000e+00 0.000 0.00 46 0.000000e+00 0.00 5.479610e+06 5.479610e+06 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Agency Attorney 103280.60000 5.164030e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.164030e+05 5.164030e+05 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Agency Chief Contracting Officer 191580.00000 1.915800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.915800e+05 1.915800e+05 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Associate Contract Specialist 71685.46529 5.017983e+06 85259.40 1.217991e+03 0.000 1650.25 70 0.000000e+00 0.00 5.103242e+06 5.017983e+06 85259.40 NULL
2021 Dept Of Youth & Comm Dev Srvs Associate Staff Analyst 87974.83333 5.278490e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.278490e+05 5.278490e+05 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Certified It Administrator 104990.25000 4.199610e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.199610e+05 4.199610e+05 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Certified It Developer 116265.08333 1.395181e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.395181e+06 1.395181e+06 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs City Research Scientist 91011.00000 3.640440e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.640440e+05 3.640440e+05 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Clerical Associate 60095.62500 4.807650e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.807650e+05 4.807650e+05 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs College Aide - Assignment Levels Ii And Iii 16078.15260 1.125471e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.125471e+05 1.125471e+05 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Commissioner Of Community Development 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Community Assistant 22176.72738 1.330604e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.330604e+05 1.330604e+05 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Community Associate 51929.14286 3.635040e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.635040e+05 3.635040e+05 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Community Coordinator 68433.50993 4.311311e+06 43167.77 6.852027e+02 0.000 739.75 63 0.000000e+00 0.00 4.354479e+06 4.311311e+06 43167.77 NULL
2021 Dept Of Youth & Comm Dev Srvs Community Service Aide 22097.09720 4.419419e+04 867.60 4.338000e+02 433.800 37.50 2 4.338000e+02 867.60 4.506179e+04 4.506179e+04 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Computer Associate 84572.25000 3.382890e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.382890e+05 3.382890e+05 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Computer Specialist 110410.92857 1.545753e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.545753e+06 1.545753e+06 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Computer Systems Manager 124524.36364 1.369768e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.369768e+06 1.369768e+06 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Contract Specialist 65179.14634 2.672345e+06 37185.11 9.069539e+02 0.000 758.00 41 0.000000e+00 0.00 2.709530e+06 2.672345e+06 37185.11 NULL
2021 Dept Of Youth & Comm Dev Srvs Deputy Commissioner 194182.00000 5.825460e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.825460e+05 5.825460e+05 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Director Of Planning 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Executive Agency Counsel 171492.50000 3.429850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.429850e+05 3.429850e+05 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Management Auditor 78589.83333 4.715390e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.715390e+05 4.715390e+05 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Motor Vehicle Operator 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Photographer 55975.45250 5.597545e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.597545e+04 5.597545e+04 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Principal Administrative Associate - Non Supvr 73053.63421 1.388019e+06 677.32 3.564842e+01 0.000 15.00 19 0.000000e+00 0.00 1.388696e+06 1.388019e+06 677.32 NULL
2021 Dept Of Youth & Comm Dev Srvs Procurement Analyst 65742.26667 9.861340e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 9.861340e+05 9.861340e+05 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Public Records Aide 36329.00000 3.632900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.632900e+04 3.632900e+04 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Secretary 53255.00000 5.325500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.325500e+04 5.325500e+04 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Senior Field Supervisor 17458.25371 4.364563e+05 96.40 3.856000e+00 0.000 5.00 25 0.000000e+00 0.00 4.365527e+05 4.364563e+05 96.40 NULL
2021 Dept Of Youth & Comm Dev Srvs Staff Analyst 67413.75000 2.696550e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.696550e+05 2.696550e+05 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Supervisor Of Motor Transport 68420.00000 6.842000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.842000e+04 6.842000e+04 0.00 NULL
2021 Dept Of Youth & Comm Dev Srvs Youth Coordinator 53461.18950 4.276895e+05 63941.00 7.992625e+03 7366.315 1578.00 8 7.366315e+03 58930.52 4.916305e+05 4.866200e+05 5010.48 NULL
2021 Dept. Of Design & Construction *Certified Local Area Network Administrator 127916.00000 1.279160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.279160e+05 1.279160e+05 0.00 NULL
2021 Dept. Of Design & Construction Accountant 73341.76471 1.246810e+06 10633.69 6.255112e+02 0.000 209.25 17 0.000000e+00 0.00 1.257444e+06 1.246810e+06 10633.69 NULL
2021 Dept. Of Design & Construction Adm Manager-Non-Mgrl 86039.89474 1.634758e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.634758e+06 1.634758e+06 0.00 NULL
2021 Dept. Of Design & Construction Admin Community Relations Specialist 93584.54545 1.029430e+06 722.50 6.568182e+01 0.000 15.00 11 0.000000e+00 0.00 1.030152e+06 1.029430e+06 722.50 NULL
2021 Dept. Of Design & Construction Admin Construction Project Manager 111180.15625 3.557765e+06 102535.88 3.204246e+03 0.250 1156.25 32 2.500000e-01 8.00 3.660301e+06 3.557773e+06 102527.88 NULL
2021 Dept. Of Design & Construction Admin Contract Specialist 93730.00000 9.373000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.373000e+04 9.373000e+04 0.00 NULL
2021 Dept. Of Design & Construction Administrative Accountant 106605.00000 2.132100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.132100e+05 2.132100e+05 0.00 NULL
2021 Dept. Of Design & Construction Administrative Architect 134951.69231 3.508744e+06 16.61 6.388462e-01 0.000 0.00 26 0.000000e+00 0.00 3.508761e+06 3.508744e+06 16.61 NULL
2021 Dept. Of Design & Construction Administrative Business Promotion Coordinator 144200.00000 1.442000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.442000e+05 1.442000e+05 0.00 NULL
2021 Dept. Of Design & Construction Administrative City Planner 117538.75000 4.701550e+05 0.03 7.500000e-03 0.000 0.00 4 0.000000e+00 0.00 4.701550e+05 4.701550e+05 0.03 NULL
2021 Dept. Of Design & Construction Administrative Community Relations Specialist 193968.00000 3.879360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.879360e+05 3.879360e+05 0.00 NULL
2021 Dept. Of Design & Construction Administrative Construction Project Manager 152523.10000 3.050462e+06 17.50 8.750000e-01 0.000 0.00 20 0.000000e+00 0.00 3.050480e+06 3.050462e+06 17.50 NULL
2021 Dept. Of Design & Construction Administrative Engineer 135944.20253 1.073959e+07 91934.94 1.163733e+03 0.000 1409.75 79 0.000000e+00 0.00 1.083153e+07 1.073959e+07 91934.94 NULL
2021 Dept. Of Design & Construction Administrative Graphic Artist 111340.50000 2.226810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.226810e+05 2.226810e+05 0.00 NULL
2021 Dept. Of Design & Construction Administrative Landmarks Preservationist 141766.00000 1.417660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.417660e+05 1.417660e+05 0.00 NULL
2021 Dept. Of Design & Construction Administrative Landscape Architect 130911.50000 5.236460e+05 11203.04 2.800760e+03 0.000 127.75 4 0.000000e+00 0.00 5.348490e+05 5.236460e+05 11203.04 NULL
2021 Dept. Of Design & Construction Administrative Manager 164639.00000 4.939170e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.939170e+05 4.939170e+05 0.00 NULL
2021 Dept. Of Design & Construction Administrative Procurement Analyst-Non-Mgrl 96524.33333 1.158292e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.158292e+06 1.158292e+06 0.00 NULL
2021 Dept. Of Design & Construction Administrative Project Manager 112870.93168 1.817222e+07 195425.90 1.213825e+03 0.000 2622.75 161 0.000000e+00 0.00 1.836765e+07 1.817222e+07 195425.90 NULL
2021 Dept. Of Design & Construction Administrative Public Information Specialist 154905.00000 3.098100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.098100e+05 3.098100e+05 0.00 NULL
2021 Dept. Of Design & Construction Administrative Staff Analyst 108622.03571 3.041417e+06 1249.28 4.461714e+01 0.000 25.00 28 0.000000e+00 0.00 3.042666e+06 3.041417e+06 1249.28 NULL
2021 Dept. Of Design & Construction Administrative Supervisor Of Building Maintenance 99254.00000 9.925400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.925400e+04 9.925400e+04 0.00 NULL
2021 Dept. Of Design & Construction Agency Attorney 85304.00000 5.118240e+05 330.83 5.513833e+01 0.000 7.00 6 0.000000e+00 0.00 5.121548e+05 5.118240e+05 330.83 NULL
2021 Dept. Of Design & Construction Agency Attorney Interne 62397.00000 1.871910e+05 853.79 2.845967e+02 0.000 25.00 3 0.000000e+00 0.00 1.880448e+05 1.871910e+05 853.79 NULL
2021 Dept. Of Design & Construction Agency Chief Contracting Officer 149350.00000 1.493500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.493500e+05 1.493500e+05 0.00 NULL
2021 Dept. Of Design & Construction Architect 99729.04545 2.194039e+06 35645.26 1.620239e+03 0.000 536.75 22 0.000000e+00 0.00 2.229684e+06 2.194039e+06 35645.26 NULL
2021 Dept. Of Design & Construction Architectural Intern 59125.00000 5.912500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.912500e+04 5.912500e+04 0.00 NULL
2021 Dept. Of Design & Construction Asbestos Hazard Investigator 71310.66667 2.139320e+05 354.37 1.181233e+02 0.000 8.75 3 0.000000e+00 0.00 2.142864e+05 2.139320e+05 354.37 NULL
2021 Dept. Of Design & Construction Ass Commissioner Design And Construction Management 187460.00000 1.874600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.874600e+05 1.874600e+05 0.00 NULL
2021 Dept. Of Design & Construction Assistant Architect 82083.66667 2.462510e+05 0.06 2.000000e-02 0.000 0.00 3 0.000000e+00 0.00 2.462511e+05 2.462510e+05 0.06 NULL
2021 Dept. Of Design & Construction Assistant Chemical Engineer 85646.00000 8.564600e+04 5660.22 5.660220e+03 5660.220 110.50 1 5.660220e+03 5660.22 9.130622e+04 9.130622e+04 0.00 NULL
2021 Dept. Of Design & Construction Assistant Civil Engineer 71991.11215 7.703049e+06 106291.57 9.933792e+02 0.000 2170.50 107 0.000000e+00 0.00 7.809341e+06 7.703049e+06 106291.57 NULL
2021 Dept. Of Design & Construction Assistant Electrical Engineer 73308.00000 2.199240e+05 1.73 5.766667e-01 0.000 0.00 3 0.000000e+00 0.00 2.199257e+05 2.199240e+05 1.73 NULL
2021 Dept. Of Design & Construction Assistant Landscape Architect 73597.60000 3.679880e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.679880e+05 3.679880e+05 0.00 NULL
2021 Dept. Of Design & Construction Assistant Mechanical Engineer 73217.50000 2.928700e+05 19.46 4.865000e+00 1.250 0.00 4 1.250000e+00 5.00 2.928895e+05 2.928750e+05 14.46 NULL
2021 Dept. Of Design & Construction Assistant Urban Designer 72100.00000 1.442000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.442000e+05 1.442000e+05 0.00 NULL
2021 Dept. Of Design & Construction Associate Investigator 69574.75000 2.782990e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.782990e+05 2.782990e+05 0.00 NULL
2021 Dept. Of Design & Construction Associate Project Manager 92289.66667 6.921725e+06 103228.69 1.376383e+03 0.000 1675.75 75 0.000000e+00 0.00 7.024954e+06 6.921725e+06 103228.69 NULL
2021 Dept. Of Design & Construction Associate Public Health Sanitarian 98444.00000 9.844400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.844400e+04 9.844400e+04 0.00 NULL
2021 Dept. Of Design & Construction Associate Staff Analyst 85354.30000 8.535430e+05 1256.17 1.256170e+02 0.000 22.25 10 0.000000e+00 0.00 8.547992e+05 8.535430e+05 1256.17 NULL
2021 Dept. Of Design & Construction Associate Urban Designer 93877.28571 6.571410e+05 295.22 4.217429e+01 0.000 5.50 7 0.000000e+00 0.00 6.574362e+05 6.571410e+05 295.22 NULL
2021 Dept. Of Design & Construction Certified It Administrator 99008.00000 3.960320e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.960320e+05 3.960320e+05 0.00 NULL
2021 Dept. Of Design & Construction Certified It Developer 104979.90000 1.049799e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.049799e+06 1.049799e+06 0.00 NULL
2021 Dept. Of Design & Construction City Planner 93731.80000 4.686590e+05 21.52 4.304000e+00 0.000 0.00 5 0.000000e+00 0.00 4.686805e+05 4.686590e+05 21.52 NULL
2021 Dept. Of Design & Construction Civil Engineer 96688.56667 2.900657e+06 1988.92 6.629733e+01 0.000 30.50 30 0.000000e+00 0.00 2.902646e+06 2.900657e+06 1988.92 NULL
2021 Dept. Of Design & Construction Civil Engineering Intern 59794.32000 2.989716e+06 46514.49 9.302898e+02 0.000 1160.25 50 0.000000e+00 0.00 3.036230e+06 2.989716e+06 46514.49 NULL
2021 Dept. Of Design & Construction Clerical Aide 41064.00000 4.106400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.106400e+04 4.106400e+04 0.00 NULL
2021 Dept. Of Design & Construction Clerical Associate 55097.90909 1.818231e+06 17787.84 5.390255e+02 0.000 386.25 33 0.000000e+00 0.00 1.836019e+06 1.818231e+06 17787.84 NULL
2021 Dept. Of Design & Construction College Aide 13870.41750 9.709292e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.709292e+04 9.709292e+04 0.00 NULL
2021 Dept. Of Design & Construction Commissioner Of Design & Construction 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2021 Dept. Of Design & Construction Community Assistant 34664.80490 6.932961e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.932961e+04 6.932961e+04 0.00 NULL
2021 Dept. Of Design & Construction Community Associate 49621.35714 6.946990e+05 11527.29 8.233779e+02 0.000 360.75 14 0.000000e+00 0.00 7.062263e+05 6.946990e+05 11527.29 NULL
2021 Dept. Of Design & Construction Community Coordinator 67448.25516 2.090896e+06 37131.56 1.197792e+03 0.000 782.00 31 0.000000e+00 0.00 2.128027e+06 2.090896e+06 37131.56 NULL
2021 Dept. Of Design & Construction Computer Aide-Non-Spvr 65562.00000 6.556200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.556200e+04 6.556200e+04 0.00 NULL
2021 Dept. Of Design & Construction Computer Associate 87142.00000 2.614260e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.614260e+05 2.614260e+05 0.00 NULL
2021 Dept. Of Design & Construction Computer Operations Manager 143177.00000 1.431770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.431770e+05 1.431770e+05 0.00 NULL
2021 Dept. Of Design & Construction Computer Programmer Analyst 60566.50000 1.211330e+05 272.43 1.362150e+02 136.215 7.00 2 1.362150e+02 272.43 1.214054e+05 1.214054e+05 0.00 NULL
2021 Dept. Of Design & Construction Computer Service Technician 63564.66667 1.906940e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.906940e+05 1.906940e+05 0.00 NULL
2021 Dept. Of Design & Construction Computer Specialist 102143.34783 2.349297e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 2.349297e+06 2.349297e+06 0.00 NULL
2021 Dept. Of Design & Construction Computer Systems Manager 124893.28571 8.742530e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.742530e+05 8.742530e+05 0.00 NULL
2021 Dept. Of Design & Construction Construction Project Manager 86781.67346 9.719547e+06 258008.05 2.303643e+03 1.010 4230.50 112 1.010000e+00 113.12 9.977555e+06 9.719661e+06 257894.93 NULL
2021 Dept. Of Design & Construction Construction Project Manager Intern 58361.66667 1.750850e+05 4.94 1.646667e+00 0.930 0.00 3 9.300000e-01 2.79 1.750899e+05 1.750878e+05 2.15 NULL
2021 Dept. Of Design & Construction Deputy Commissioner 192000.00000 1.920000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.920000e+05 1.920000e+05 0.00 NULL
2021 Dept. Of Design & Construction Deputy Commissioner For Policy And Analysis 200140.00000 2.001400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.001400e+05 2.001400e+05 0.00 NULL
2021 Dept. Of Design & Construction Director For Equal Employment Opportunity 127342.00000 1.273420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.273420e+05 1.273420e+05 0.00 NULL
2021 Dept. Of Design & Construction Electrical Engineer 86337.00000 8.633700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.633700e+04 8.633700e+04 0.00 NULL
2021 Dept. Of Design & Construction Engineering Technician 64991.86364 1.429821e+06 2858.58 1.299355e+02 0.000 66.25 22 0.000000e+00 0.00 1.432680e+06 1.429821e+06 2858.58 NULL
2021 Dept. Of Design & Construction Estimator 74707.62500 5.976610e+05 3.74 4.675000e-01 0.000 0.00 8 0.000000e+00 0.00 5.976647e+05 5.976610e+05 3.74 NULL
2021 Dept. Of Design & Construction Executive Agency Counsel 173663.71429 1.215646e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.215646e+06 1.215646e+06 0.00 NULL
2021 Dept. Of Design & Construction Executive Program Specialist 182000.00000 1.820000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.820000e+05 1.820000e+05 0.00 NULL
2021 Dept. Of Design & Construction Geologist 77166.50000 6.173320e+05 2611.98 3.264975e+02 0.000 49.25 8 0.000000e+00 0.00 6.199440e+05 6.173320e+05 2611.98 NULL
2021 Dept. Of Design & Construction Graphic Artist 84485.75000 3.379430e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.379430e+05 3.379430e+05 0.00 NULL
2021 Dept. Of Design & Construction Highways And Sewers Inspector 67181.33333 2.015440e+05 2611.56 8.705200e+02 684.330 53.50 3 6.843300e+02 2052.99 2.041556e+05 2.035970e+05 558.57 NULL
2021 Dept. Of Design & Construction Industrial Hygienist 65498.66667 1.964960e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.964960e+05 1.964960e+05 0.00 NULL
2021 Dept. Of Design & Construction Inspector 77921.00000 7.792100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.792100e+04 7.792100e+04 0.00 NULL
2021 Dept. Of Design & Construction Investigator 54095.40000 2.704770e+05 86.85 1.737000e+01 0.000 3.00 5 0.000000e+00 0.00 2.705638e+05 2.704770e+05 86.85 NULL
2021 Dept. Of Design & Construction Landscape Architect 95280.20000 4.764010e+05 353.46 7.069200e+01 0.000 4.00 5 0.000000e+00 0.00 4.767545e+05 4.764010e+05 353.46 NULL
2021 Dept. Of Design & Construction Management Auditor 83925.00000 3.357000e+05 2976.04 7.440100e+02 0.000 54.25 4 0.000000e+00 0.00 3.386760e+05 3.357000e+05 2976.04 NULL
2021 Dept. Of Design & Construction Mechanical Engineer 102669.25000 4.106770e+05 6.27 1.567500e+00 0.150 0.00 4 1.500000e-01 0.60 4.106833e+05 4.106776e+05 5.67 NULL
2021 Dept. Of Design & Construction Mechanical Engineering Intern 62260.00000 1.245200e+05 0.17 8.500000e-02 0.085 0.00 2 8.500000e-02 0.17 1.245202e+05 1.245202e+05 0.00 NULL
2021 Dept. Of Design & Construction Motor Vehicle Operator 49074.00000 4.907400e+04 70.51 7.051000e+01 70.510 2.00 1 7.051000e+01 70.51 4.914451e+04 4.914451e+04 0.00 NULL
2021 Dept. Of Design & Construction Motor Vehicle Supervisor 60144.00000 1.202880e+05 268.13 1.340650e+02 134.065 6.00 2 1.340650e+02 268.13 1.205561e+05 1.205561e+05 0.00 NULL
2021 Dept. Of Design & Construction New York City Public Service Fellow 42127.00000 4.212700e+04 23.06 2.306000e+01 23.060 1.00 1 2.306000e+01 23.06 4.215006e+04 4.215006e+04 0.00 NULL
2021 Dept. Of Design & Construction Principal Administrative Associate - Non Supvr 68737.22581 2.130854e+06 9818.55 3.167274e+02 0.000 224.50 31 0.000000e+00 0.00 2.140673e+06 2.130854e+06 9818.55 NULL
2021 Dept. Of Design & Construction Principal Title Examiner 64175.00000 1.283500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.283500e+05 1.283500e+05 0.00 NULL
2021 Dept. Of Design & Construction Procurement Analyst 74698.69231 9.710830e+05 2708.37 2.083362e+02 0.000 59.00 13 0.000000e+00 0.00 9.737914e+05 9.710830e+05 2708.37 NULL
2021 Dept. Of Design & Construction Program Producer 90730.00000 9.073000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.073000e+04 9.073000e+04 0.00 NULL
2021 Dept. Of Design & Construction Project Manager 72660.32653 3.560356e+06 91871.70 1.874933e+03 0.000 1639.25 49 0.000000e+00 0.00 3.652228e+06 3.560356e+06 91871.70 NULL
2021 Dept. Of Design & Construction Project Manager Intern# 55849.00000 2.792450e+05 890.34 1.780680e+02 0.000 27.25 5 0.000000e+00 0.00 2.801353e+05 2.792450e+05 890.34 NULL
2021 Dept. Of Design & Construction Public Records Aide 47542.60000 4.754260e+05 140.60 1.406000e+01 0.000 5.00 10 0.000000e+00 0.00 4.755666e+05 4.754260e+05 140.60 NULL
2021 Dept. Of Design & Construction Quality Assurance Specialist 67403.00000 6.740300e+04 502.65 5.026500e+02 502.650 10.75 1 5.026500e+02 502.65 6.790565e+04 6.790565e+04 0.00 NULL
2021 Dept. Of Design & Construction Research Assistant 67159.50000 1.343190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.343190e+05 1.343190e+05 0.00 NULL
2021 Dept. Of Design & Construction Secretary 57598.50000 4.607880e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.607880e+05 4.607880e+05 0.00 NULL
2021 Dept. Of Design & Construction Secretary To The Commissioner 83232.00000 8.323200e+04 1600.17 1.600170e+03 1600.170 32.75 1 1.600170e+03 1600.17 8.483217e+04 8.483217e+04 0.00 NULL
2021 Dept. Of Design & Construction Senior Estimator 90860.61538 1.181188e+06 19122.74 1.470980e+03 0.000 345.25 13 0.000000e+00 0.00 1.200311e+06 1.181188e+06 19122.74 NULL
2021 Dept. Of Design & Construction Senior Policy Advisor 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2021 Dept. Of Design & Construction Special Assistant 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2021 Dept. Of Design & Construction Special Assistant To The Commissioner 157075.00000 1.570750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.570750e+05 1.570750e+05 0.00 NULL
2021 Dept. Of Design & Construction Staff Analyst 65280.23529 2.219528e+06 22552.26 6.633018e+02 0.000 518.75 34 0.000000e+00 0.00 2.242080e+06 2.219528e+06 22552.26 NULL
2021 Dept. Of Design & Construction Staff Analyst Trainee 48729.00000 9.745800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.745800e+04 9.745800e+04 0.00 NULL
2021 Dept. Of Design & Construction Stock Worker 49870.00000 9.974000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.974000e+04 9.974000e+04 0.00 NULL
2021 Dept. Of Design & Construction Supervising Special Officer 73884.00000 7.388400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.388400e+04 7.388400e+04 0.00 NULL
2021 Dept. Of Design & Construction Supervisor Of Electrical Installations & Maintenance 83705.25000 3.348210e+05 11.24 2.810000e+00 0.000 0.00 4 0.000000e+00 0.00 3.348322e+05 3.348210e+05 11.24 NULL
2021 Dept. Of Design & Construction Supervisor Of Stock Workers 70530.00000 7.053000e+04 116.63 1.166300e+02 116.630 3.00 1 1.166300e+02 116.63 7.064663e+04 7.064663e+04 0.00 NULL
2021 Dept. Of Design & Construction Surveyor 76682.57447 3.604081e+06 4146.90 8.823191e+01 0.000 81.00 47 0.000000e+00 0.00 3.608228e+06 3.604081e+06 4146.90 NULL
2021 Dept. Of Design & Construction Transportation Specialist 100941.00000 2.018820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.018820e+05 2.018820e+05 0.00 NULL
2021 Dept. Of Homeless Services Adm Manager-Non-Mgrl 74087.26667 1.111309e+06 31163.04 2.077536e+03 0.000 644.75 15 0.000000e+00 0.00 1.142472e+06 1.111309e+06 31163.04 NULL
2021 Dept. Of Homeless Services Admin Community Relations Specialist 84876.60000 2.546298e+06 78640.28 2.621343e+03 0.000 1451.00 30 0.000000e+00 0.00 2.624938e+06 2.546298e+06 78640.28 NULL
2021 Dept. Of Homeless Services Admin Contract Specialist 126403.00000 3.792090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.792090e+05 3.792090e+05 0.00 NULL
2021 Dept. Of Homeless Services Admin Job Opor Spec-Managerial 128907.50000 2.578150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.578150e+05 2.578150e+05 0.00 NULL
2021 Dept. Of Homeless Services Admin Job Opportunity Spec Nm 98185.66667 5.891140e+05 417.20 6.953333e+01 0.000 9.00 6 0.000000e+00 0.00 5.895312e+05 5.891140e+05 417.20 NULL
2021 Dept. Of Homeless Services Administrative Community Relations Specialist 187984.00000 1.879840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.879840e+05 1.879840e+05 0.00 NULL
2021 Dept. Of Homeless Services Administrative Construction Project Manager 131407.00000 2.628140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.628140e+05 2.628140e+05 0.00 NULL
2021 Dept. Of Homeless Services Administrative Contract Specialist 99986.20000 4.999310e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.999310e+05 4.999310e+05 0.00 NULL
2021 Dept. Of Homeless Services Administrative Director Of Social Services 114761.14765 1.709941e+07 170224.43 1.142446e+03 0.000 2978.00 149 0.000000e+00 0.00 1.726964e+07 1.709941e+07 170224.43 NULL
2021 Dept. Of Homeless Services Administrative Engineer 110210.00000 1.102100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.102100e+05 1.102100e+05 0.00 NULL
2021 Dept. Of Homeless Services Administrative Housing Development Specialist 105492.00000 2.109840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.109840e+05 2.109840e+05 0.00 NULL
2021 Dept. Of Homeless Services Administrative Management Auditor 102344.00000 1.023440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.023440e+05 1.023440e+05 0.00 NULL
2021 Dept. Of Homeless Services Administrative Nutritionist 96682.00000 9.668200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.668200e+04 9.668200e+04 0.00 NULL
2021 Dept. Of Homeless Services Administrative Public Information Specialist 107421.00000 1.074210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074210e+05 1.074210e+05 0.00 NULL
2021 Dept. Of Homeless Services Administrative Real Property Manager 82610.00000 8.261000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.261000e+04 8.261000e+04 0.00 NULL
2021 Dept. Of Homeless Services Administrative Staff Analyst 82370.35623 4.365629e+06 132196.33 2.494270e+03 0.000 2390.50 53 0.000000e+00 0.00 4.497825e+06 4.365629e+06 132196.33 NULL
2021 Dept. Of Homeless Services Administrative Supervisor Of Building Maintenance 121454.23077 1.578905e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.578905e+06 1.578905e+06 0.00 NULL
2021 Dept. Of Homeless Services Agency Medical Director 219468.00000 2.194680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.194680e+05 2.194680e+05 0.00 NULL
2021 Dept. Of Homeless Services Architect 92640.00000 9.264000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.264000e+04 9.264000e+04 0.00 NULL
2021 Dept. Of Homeless Services Assistant Comissioner For Family Operations 171878.00000 1.718780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.718780e+05 1.718780e+05 0.00 NULL
2021 Dept. Of Homeless Services Assistant Superintendent Of Welfare Shelters 69559.10959 5.077815e+06 641791.20 8.791660e+03 7181.570 12858.75 73 7.181570e+03 524254.61 5.719606e+06 5.602070e+06 117536.59 NULL
2021 Dept. Of Homeless Services Associate Commissioner For Adult Services 187911.00000 1.879110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.879110e+05 1.879110e+05 0.00 NULL
2021 Dept. Of Homeless Services Associate Contract Specialist 66964.75000 2.678590e+05 724.83 1.812075e+02 0.000 18.50 4 0.000000e+00 0.00 2.685838e+05 2.678590e+05 724.83 NULL
2021 Dept. Of Homeless Services Associate Fraud Investigator 71283.12500 5.132385e+06 584683.18 8.120600e+03 6123.265 10893.50 72 6.123265e+03 440875.08 5.717068e+06 5.573260e+06 143808.10 NULL
2021 Dept. Of Homeless Services Associate Housing Development Specialist 85847.00000 2.575410e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.575410e+05 2.575410e+05 0.00 NULL
2021 Dept. Of Homeless Services Associate Investigator 76765.00000 7.676500e+04 6950.95 6.950950e+03 6950.950 121.25 1 6.950950e+03 6950.95 8.371595e+04 8.371595e+04 0.00 NULL
2021 Dept. Of Homeless Services Associate Labor Relations Analyst 82275.00000 8.227500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.227500e+04 8.227500e+04 0.00 NULL
2021 Dept. Of Homeless Services Associate Project Manager 85450.84615 1.110861e+06 60514.85 4.654988e+03 0.120 1049.75 13 1.200000e-01 1.56 1.171376e+06 1.110863e+06 60513.29 NULL
2021 Dept. Of Homeless Services Associate Staff Analyst 78308.13793 2.270936e+06 27590.71 9.514038e+02 0.000 523.25 29 0.000000e+00 0.00 2.298527e+06 2.270936e+06 27590.71 NULL
2021 Dept. Of Homeless Services Asst Commissioner For Planning & Program Dev 150393.00000 1.503930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503930e+05 1.503930e+05 0.00 NULL
2021 Dept. Of Homeless Services Carpenter NA NA 135717.20 7.143011e+03 7501.210 1736.50 19 7.143011e+03 135717.20 NA NA NA NULL
2021 Dept. Of Homeless Services Caseworker 47346.05769 4.923990e+06 362844.61 3.488890e+03 85.845 9982.25 104 8.584500e+01 8927.88 5.286835e+06 4.932918e+06 353916.73 NULL
2021 Dept. Of Homeless Services Cement Mason NA NA 43290.00 8.658000e+03 10918.700 450.00 5 8.658000e+03 43290.00 NA NA NA NULL
2021 Dept. Of Homeless Services City Laborer NA NA 861647.07 4.534985e+04 44195.760 14715.75 19 4.419576e+04 839719.44 NA NA NA NULL
2021 Dept. Of Homeless Services City Research Scientist 89081.00000 2.672430e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.672430e+05 2.672430e+05 0.00 NULL
2021 Dept. Of Homeless Services Clerical Associate 45772.00000 8.238960e+05 196768.10 1.093156e+04 5465.685 5249.07 18 5.465685e+03 98382.33 1.020664e+06 9.222783e+05 98385.77 NULL
2021 Dept. Of Homeless Services Community Assistant 37408.27473 6.808306e+06 968873.35 5.323480e+03 276.010 33757.06 182 2.760100e+02 50233.82 7.777179e+06 6.858540e+06 918639.53 NULL
2021 Dept. Of Homeless Services Community Associate 40368.82623 6.216799e+06 761882.40 4.947288e+03 280.095 23259.85 154 2.800950e+02 43134.63 6.978682e+06 6.259934e+06 718747.77 NULL
2021 Dept. Of Homeless Services Community Coordinator 62049.40081 2.258598e+07 3041045.14 8.354520e+03 1953.800 67403.25 364 1.953800e+03 711183.20 2.562703e+07 2.329717e+07 2329861.94 NULL
2021 Dept. Of Homeless Services Computer Specialist 94244.00000 9.424400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.424400e+04 9.424400e+04 0.00 NULL
2021 Dept. Of Homeless Services Computer Systems Manager 157896.66667 4.736900e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.736900e+05 4.736900e+05 0.00 NULL
2021 Dept. Of Homeless Services Construction Project Manager 82927.83333 4.975670e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.975670e+05 4.975670e+05 0.00 NULL
2021 Dept. Of Homeless Services Counselor 57266.40000 2.863320e+05 9539.20 1.907840e+03 0.000 230.00 5 0.000000e+00 0.00 2.958712e+05 2.863320e+05 9539.20 NULL
2021 Dept. Of Homeless Services Deputy Commisioner 190471.50000 3.809430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.809430e+05 3.809430e+05 0.00 NULL
2021 Dept. Of Homeless Services Deputy Commissioner 185253.50000 3.705070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.705070e+05 3.705070e+05 0.00 NULL
2021 Dept. Of Homeless Services Director Of Administration 31920.00000 3.192000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.192000e+04 3.192000e+04 0.00 NULL
2021 Dept. Of Homeless Services Director Of Management Planning 167430.00000 1.674300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.674300e+05 1.674300e+05 0.00 NULL
2021 Dept. Of Homeless Services Electrician NA NA 124358.60 6.217930e+03 6738.640 1365.00 20 6.217930e+03 124358.60 NA NA NA NULL
2021 Dept. Of Homeless Services Electricians Helper NA NA 1084.98 5.424900e+02 542.490 19.00 2 5.424900e+02 1084.98 NA NA NA NULL
2021 Dept. Of Homeless Services Exec Asst To The Deputy Commissioner 102591.00000 1.025910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.025910e+05 1.025910e+05 0.00 NULL
2021 Dept. Of Homeless Services Executive Assistant To The Commissioner 145026.00000 1.450260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450260e+05 1.450260e+05 0.00 NULL
2021 Dept. Of Homeless Services Executive Program Specialist 118450.00000 1.184500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.184500e+05 1.184500e+05 0.00 NULL
2021 Dept. Of Homeless Services Fraud Investigator 52228.27778 6.580763e+06 1016415.25 8.066788e+03 483.530 23356.50 126 4.835300e+02 60924.78 7.597178e+06 6.641688e+06 955490.47 NULL
2021 Dept. Of Homeless Services Housekeeper 43556.75000 1.742270e+05 80993.51 2.024838e+04 13270.225 2391.50 4 1.327023e+04 53080.90 2.552205e+05 2.273079e+05 27912.61 NULL
2021 Dept. Of Homeless Services Human Resources Technician 39049.00000 3.904900e+04 -24.65 -2.465000e+01 -24.650 0.00 1 -2.465000e+01 -24.65 3.902435e+04 3.902435e+04 0.00 NULL
2021 Dept. Of Homeless Services Locksmith NA NA 1035.78 5.178900e+02 517.890 23.50 2 5.178900e+02 1035.78 NA NA NA NULL
2021 Dept. Of Homeless Services Maintenance Worker NA NA 43845.22 2.435846e+03 1636.945 990.50 18 1.636945e+03 29465.01 NA NA NA NULL
2021 Dept. Of Homeless Services Mechanical Engineer 88067.00000 8.806700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.806700e+04 8.806700e+04 0.00 NULL
2021 Dept. Of Homeless Services Motor Vehicle Operator 48841.81081 1.807147e+06 210428.96 5.687269e+03 676.700 6149.90 37 6.767000e+02 25037.90 2.017576e+06 1.832185e+06 185391.06 NULL
2021 Dept. Of Homeless Services Motor Vehicle Supervisor 58219.87500 4.657590e+05 97493.17 1.218665e+04 8252.360 2283.50 8 8.252360e+03 66018.88 5.632522e+05 5.317779e+05 31474.29 NULL
2021 Dept. Of Homeless Services Oiler NA NA 317192.00 2.643267e+04 29309.780 3554.50 12 2.643267e+04 317192.00 NA NA NA NULL
2021 Dept. Of Homeless Services Painter NA NA 5390.97 4.900882e+02 0.000 86.00 11 0.000000e+00 0.00 NA NA NA NULL
2021 Dept. Of Homeless Services Plumber NA NA 175421.17 1.169474e+04 13514.240 1661.50 15 1.169474e+04 175421.17 NA NA NA NULL
2021 Dept. Of Homeless Services Plumber’s Helper NA NA 2364.80 1.182400e+03 1182.400 32.00 2 1.182400e+03 2364.80 NA NA NA NULL
2021 Dept. Of Homeless Services Principal Administrative Associate - Non Supvr 63099.26923 1.640581e+06 220820.69 8.493103e+03 361.370 4739.25 26 3.613700e+02 9395.62 1.861402e+06 1.649977e+06 211425.07 NULL
2021 Dept. Of Homeless Services Recreation Director 47909.00000 4.790900e+04 27056.65 2.705665e+04 27056.650 740.50 1 2.705665e+04 27056.65 7.496565e+04 7.496565e+04 0.00 NULL
2021 Dept. Of Homeless Services Recreation Supervisor 59269.00000 5.926900e+04 166.10 1.661000e+02 166.100 4.50 1 1.661000e+02 166.10 5.943510e+04 5.943510e+04 0.00 NULL
2021 Dept. Of Homeless Services Research Assistant 57584.00000 5.758400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.758400e+04 5.758400e+04 0.00 NULL
2021 Dept. Of Homeless Services Secretary 51289.66667 1.538690e+05 366.21 1.220700e+02 23.680 8.03 3 2.368000e+01 71.04 1.542352e+05 1.539400e+05 295.17 NULL
2021 Dept. Of Homeless Services Secretary To The Commissioner 96000.00000 9.600000e+04 99397.36 9.939736e+04 99397.360 1319.27 1 9.939736e+04 99397.36 1.953974e+05 1.953974e+05 0.00 NULL
2021 Dept. Of Homeless Services Senior Consultant 82086.00000 8.208600e+04 3059.72 3.059720e+03 3059.720 62.00 1 3.059720e+03 3059.72 8.514572e+04 8.514572e+04 0.00 NULL
2021 Dept. Of Homeless Services Sheet Metal Worker NA NA 8919.68 4.459840e+03 4459.840 77.00 2 4.459840e+03 8919.68 NA NA NA NULL
2021 Dept. Of Homeless Services Social Worker 60354.90909 6.639040e+05 17510.45 1.591859e+03 0.000 397.50 11 0.000000e+00 0.00 6.814144e+05 6.639040e+05 17510.45 NULL
2021 Dept. Of Homeless Services Space Analyst 67490.62500 5.399250e+05 132767.92 1.659599e+04 0.000 2520.75 8 0.000000e+00 0.00 6.726929e+05 5.399250e+05 132767.92 NULL
2021 Dept. Of Homeless Services Special Officer 42861.29580 2.550247e+07 6558084.19 1.102199e+04 8036.030 204993.37 595 8.036030e+03 4781437.85 3.206056e+07 3.028391e+07 1776646.34 NULL
2021 Dept. Of Homeless Services Staff Analyst 67682.50000 5.414600e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.414600e+05 5.414600e+05 0.00 NULL
2021 Dept. Of Homeless Services Stationary Engineer NA NA 67528.89 3.376444e+04 33764.445 707.75 2 3.376444e+04 67528.89 NA NA NA NULL
2021 Dept. Of Homeless Services Stock Worker 37803.00000 2.268180e+05 995.78 1.659633e+02 0.000 38.75 6 0.000000e+00 0.00 2.278138e+05 2.268180e+05 995.78 NULL
2021 Dept. Of Homeless Services Superintendent Of Adult Institutions 76508.42857 5.355590e+05 27852.81 3.978973e+03 1392.640 534.75 7 1.392640e+03 9748.48 5.634118e+05 5.453075e+05 18104.33 NULL
2021 Dept. Of Homeless Services Supervising Special Officer 57640.46000 5.764046e+06 1430567.27 1.430567e+04 14542.930 34836.25 100 1.430567e+04 1430567.27 7.194613e+06 7.194613e+06 0.00 NULL
2021 Dept. Of Homeless Services Supervisor Bricklayer NA NA 10002.65 1.000265e+04 10002.650 128.50 1 1.000265e+04 10002.65 NA NA NA NULL
2021 Dept. Of Homeless Services Supervisor Carpenter NA NA 34160.60 1.138687e+04 12065.400 419.50 3 1.138687e+04 34160.60 NA NA NA NULL
2021 Dept. Of Homeless Services Supervisor Electrician NA NA 43353.91 7.225652e+03 1627.330 440.00 6 1.627330e+03 9763.98 NA NA NA NULL
2021 Dept. Of Homeless Services Supervisor I 59409.16000 1.485229e+06 227347.18 9.093887e+03 1367.610 4886.25 25 1.367610e+03 34190.25 1.712576e+06 1.519419e+06 193156.93 NULL
2021 Dept. Of Homeless Services Supervisor I Social Work 62125.50000 1.242510e+05 11278.86 5.639430e+03 5639.430 289.00 2 5.639430e+03 11278.86 1.355299e+05 1.355299e+05 0.00 NULL
2021 Dept. Of Homeless Services Supervisor Ii 69357.77778 6.242200e+05 74751.27 8.305697e+03 7190.690 1424.50 9 7.190690e+03 64716.21 6.989713e+05 6.889362e+05 10035.06 NULL
2021 Dept. Of Homeless Services Supervisor Ii Social Work 75687.20000 1.513744e+06 119865.34 5.993267e+03 5169.175 2238.00 20 5.169175e+03 103383.50 1.633609e+06 1.617128e+06 16481.84 NULL
2021 Dept. Of Homeless Services Supervisor Iii Social Work 79514.33333 2.385430e+05 2489.46 8.298200e+02 50.530 45.25 3 5.053000e+01 151.59 2.410325e+05 2.386946e+05 2337.87 NULL
2021 Dept. Of Homeless Services Supervisor Of Mechanics NA NA 72094.71 8.010523e+03 0.000 764.00 9 0.000000e+00 0.00 NA NA NA NULL
2021 Dept. Of Homeless Services Supervisor Of Stock Workers 59568.66667 1.787060e+05 6716.90 2.238967e+03 202.070 140.25 3 2.020700e+02 606.21 1.854229e+05 1.793122e+05 6110.69 NULL
2021 Dept. Of Homeless Services Supervisor Painter NA NA 2901.42 2.901420e+03 2901.420 40.50 1 2.901420e+03 2901.42 NA NA NA NULL
2021 Dept. Of Homeless Services Supervisor Plumber NA NA 60100.23 2.003341e+04 12606.120 543.50 3 1.260612e+04 37818.36 NA NA NA NULL
2021 District Attorney Kings County Accountant 74430.00000 7.443000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.443000e+04 7.443000e+04 0.00 NULL
2021 District Attorney Kings County Adm Manager-Non-Mgrl 91759.45455 1.009354e+06 776.10 7.055455e+01 0.000 15.50 11 0.000000e+00 0.00 1.010130e+06 1.009354e+06 776.10 NULL
2021 District Attorney Kings County Administrative Chief 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2021 District Attorney Kings County Administrative Community Relations Specialist 113170.00000 2.263400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.263400e+05 2.263400e+05 0.00 NULL
2021 District Attorney Kings County Administrative Procurement Analyst-Non-Mgrl 95638.00000 9.563800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.563800e+04 9.563800e+04 0.00 NULL
2021 District Attorney Kings County Administrative Staff Analyst 144765.33333 4.342960e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.342960e+05 4.342960e+05 0.00 NULL
2021 District Attorney Kings County Assistant District Attorney 99575.08070 5.675780e+07 0.00 0.000000e+00 0.000 0.00 570 0.000000e+00 0.00 5.675780e+07 5.675780e+07 0.00 NULL
2021 District Attorney Kings County Certified It Developer 116258.66667 3.487760e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.487760e+05 3.487760e+05 0.00 NULL
2021 District Attorney Kings County City Research Scientist 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2021 District Attorney Kings County Clerical Associate 50657.75000 6.078930e+05 733.30 6.110833e+01 0.000 20.00 12 0.000000e+00 0.00 6.086263e+05 6.078930e+05 733.30 NULL
2021 District Attorney Kings County Community Assistant 37598.65053 3.571872e+06 10546.48 1.110156e+02 0.000 424.00 95 0.000000e+00 0.00 3.582418e+06 3.571872e+06 10546.48 NULL
2021 District Attorney Kings County Community Associate 47380.38438 1.539862e+07 63503.83 1.953964e+02 0.000 2053.25 325 0.000000e+00 0.00 1.546213e+07 1.539862e+07 63503.83 NULL
2021 District Attorney Kings County Community Coordinator 71612.31471 4.869637e+06 29348.61 4.315972e+02 0.000 620.75 68 0.000000e+00 0.00 4.898986e+06 4.869637e+06 29348.61 NULL
2021 District Attorney Kings County Computer Associate 86075.80000 4.303790e+05 40969.50 8.193900e+03 135.010 559.00 5 1.350100e+02 675.05 4.713485e+05 4.310540e+05 40294.45 NULL
2021 District Attorney Kings County Computer Specialist 110185.50000 4.407420e+05 9112.75 2.278188e+03 0.000 199.75 4 0.000000e+00 0.00 4.498548e+05 4.407420e+05 9112.75 NULL
2021 District Attorney Kings County Computer Systems Manager 201507.00000 2.015070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.015070e+05 2.015070e+05 0.00 NULL
2021 District Attorney Kings County Confidential Asst Office Of District Attorney, King County 97250.00000 9.725000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.725000e+04 9.725000e+04 0.00 NULL
2021 District Attorney Kings County Confidential Strategy Planner 107948.66667 3.238460e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.238460e+05 3.238460e+05 0.00 NULL
2021 District Attorney Kings County Director Of Public Information 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2021 District Attorney Kings County District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2021 District Attorney Kings County Executive Assistant 104405.00000 1.148455e+06 159.04 1.445818e+01 0.000 3.00 11 0.000000e+00 0.00 1.148614e+06 1.148455e+06 159.04 NULL
2021 District Attorney Kings County Executive Program Specialist 112610.00000 1.126100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.126100e+05 1.126100e+05 0.00 NULL
2021 District Attorney Kings County Media Services Technician 56916.60000 5.691660e+05 42086.00 4.208600e+03 1721.770 990.75 10 1.721770e+03 17217.70 6.112520e+05 5.863837e+05 24868.30 NULL
2021 District Attorney Kings County Office Assistant 38981.00000 3.898100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.898100e+04 3.898100e+04 0.00 NULL
2021 District Attorney Kings County Paralegal Aide 48515.20000 4.851520e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.851520e+05 4.851520e+05 0.00 NULL
2021 District Attorney Kings County Principal Accountant Investigator 141625.00000 1.416250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.416250e+05 1.416250e+05 0.00 NULL
2021 District Attorney Kings County Principal Administrative Associate - Non Supvr 68798.71429 9.631820e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 9.631820e+05 9.631820e+05 0.00 NULL
2021 District Attorney Kings County Procurement Analyst 73776.00000 7.377600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.377600e+04 7.377600e+04 0.00 NULL
2021 District Attorney Kings County Reporter/ Stenographer 64354.13636 1.415791e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 1.415791e+06 1.415791e+06 0.00 NULL
2021 District Attorney Kings County Secretary 51599.33333 3.095960e+05 2.42 4.033333e-01 0.000 0.00 6 0.000000e+00 0.00 3.095984e+05 3.095960e+05 2.42 NULL
2021 District Attorney Kings County Social Worker 61354.00000 5.521860e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.521860e+05 5.521860e+05 0.00 NULL
2021 District Attorney Kings County Special Officer 41741.00000 8.348200e+04 2068.51 1.034255e+03 1034.255 69.00 2 1.034255e+03 2068.51 8.555051e+04 8.555051e+04 0.00 NULL
2021 District Attorney Kings County Staff Analyst 65086.00000 6.508600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.508600e+04 6.508600e+04 0.00 NULL
2021 District Attorney Kings County Strategic Initiative Specialist 103657.00000 3.109710e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.109710e+05 3.109710e+05 0.00 NULL
2021 District Attorney Kings County Supervising Accountant Investigator 100442.14286 7.030950e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.030950e+05 7.030950e+05 0.00 NULL
2021 District Attorney Qns County Accountant 74160.00000 7.416000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.416000e+04 7.416000e+04 0.00 NULL
2021 District Attorney Qns County Adm Manager-Non-Mgrl 90893.55556 8.180420e+05 71843.13 7.982570e+03 2729.510 1156.25 9 2.729510e+03 24565.59 8.898851e+05 8.426076e+05 47277.54 NULL
2021 District Attorney Qns County Administrative Manager 149960.00000 2.999200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.999200e+05 2.999200e+05 0.00 NULL
2021 District Attorney Qns County Administrative Public Information Specialist 138809.00000 1.388090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.388090e+05 1.388090e+05 0.00 NULL
2021 District Attorney Qns County Administrative Staff Analyst 146702.00000 4.401060e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.401060e+05 4.401060e+05 0.00 NULL
2021 District Attorney Qns County Agency Chief Contracting Officer 128769.00000 1.287690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287690e+05 1.287690e+05 0.00 NULL
2021 District Attorney Qns County Assistant District Attorney 106082.03467 3.978076e+07 553.91 1.477093e+00 0.000 21.00 375 0.000000e+00 0.00 3.978132e+07 3.978076e+07 553.91 NULL
2021 District Attorney Qns County Certified It Administrator 127815.00000 1.278150e+05 39101.21 3.910121e+04 39101.210 430.75 1 3.910121e+04 39101.21 1.669162e+05 1.669162e+05 0.00 NULL
2021 District Attorney Qns County Certified It Developer 98177.00000 9.817700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.817700e+04 9.817700e+04 0.00 NULL
2021 District Attorney Qns County City Seasonal Aide 16565.64000 1.656564e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.656564e+04 1.656564e+04 0.00 NULL
2021 District Attorney Qns County City Tax Auditor 82000.00000 8.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.200000e+04 8.200000e+04 0.00 NULL
2021 District Attorney Qns County Clerical Associate 53192.63636 1.170238e+06 10006.86 4.548573e+02 0.000 285.25 22 0.000000e+00 0.00 1.180245e+06 1.170238e+06 10006.86 NULL
2021 District Attorney Qns County College Aide 7039.51250 1.407902e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.407902e+04 1.407902e+04 0.00 NULL
2021 District Attorney Qns County Community Assistant 38048.96000 1.902448e+06 32043.90 6.408780e+02 0.000 1302.75 50 0.000000e+00 0.00 1.934492e+06 1.902448e+06 32043.90 NULL
2021 District Attorney Qns County Community Associate 42447.71339 7.767932e+06 104613.95 5.716609e+02 0.000 3419.00 183 0.000000e+00 0.00 7.872546e+06 7.767932e+06 104613.95 NULL
2021 District Attorney Qns County Community Coordinator 74953.95256 2.923204e+06 115538.31 2.962521e+03 0.000 2255.75 39 0.000000e+00 0.00 3.038742e+06 2.923204e+06 115538.31 NULL
2021 District Attorney Qns County Community Service Aide 25732.16083 7.719648e+04 4555.85 1.518617e+03 80.350 283.50 3 8.035000e+01 241.05 8.175233e+04 7.743753e+04 4314.80 NULL
2021 District Attorney Qns County Computer Associate 85939.50000 1.718790e+05 37141.82 1.857091e+04 18570.910 610.25 2 1.857091e+04 37141.82 2.090208e+05 2.090208e+05 0.00 NULL
2021 District Attorney Qns County Computer Specialist 100676.33333 3.020290e+05 80442.24 2.681408e+04 17228.050 1118.00 3 1.722805e+04 51684.15 3.824712e+05 3.537132e+05 28758.09 NULL
2021 District Attorney Qns County Computer Systems Manager 192000.00000 1.920000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.920000e+05 1.920000e+05 0.00 NULL
2021 District Attorney Qns County Customer Information Representative Ma L 1549 40345.00000 4.034500e+04 625.47 6.254700e+02 625.470 25.25 1 6.254700e+02 625.47 4.097047e+04 4.097047e+04 0.00 NULL
2021 District Attorney Qns County Director Of Alt Sentencing And Offender Re-Entry Progs Qn Da 156913.00000 1.569130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.569130e+05 1.569130e+05 0.00 NULL
2021 District Attorney Qns County Director Of Criminal Justice Data Share And Info Servs Qn Da 126366.26750 1.263663e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.263663e+05 1.263663e+05 0.00 NULL
2021 District Attorney Qns County Director Of Elder Abuse Program Services Qn Da 98447.00000 9.844700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.844700e+04 9.844700e+04 0.00 NULL
2021 District Attorney Qns County Director Of Invest Accounting And Econ Crimes Investigation 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2021 District Attorney Qns County Director Of Public Information 188000.00000 1.880000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.880000e+05 1.880000e+05 0.00 NULL
2021 District Attorney Qns County District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2021 District Attorney Qns County Executive Agency Counsel 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2021 District Attorney Qns County It Security Specialist 123600.00000 1.236000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.236000e+05 1.236000e+05 0.00 NULL
2021 District Attorney Qns County Paralegal Aide 51940.79310 1.506283e+06 32978.03 1.137173e+03 2.320 943.00 29 2.320000e+00 67.28 1.539261e+06 1.506350e+06 32910.75 NULL
2021 District Attorney Qns County Principal Administrative Associate - Non Supvr 73846.63636 8.123130e+05 47282.96 4.298451e+03 750.130 914.00 11 7.501300e+02 8251.43 8.595960e+05 8.205644e+05 39031.53 NULL
2021 District Attorney Qns County Private Secretary 103939.00000 2.078780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.078780e+05 2.078780e+05 0.00 NULL
2021 District Attorney Qns County Reporter/ Stenographer 69789.50000 1.116632e+06 3883.01 2.426881e+02 0.000 79.50 16 0.000000e+00 0.00 1.120515e+06 1.116632e+06 3883.01 NULL
2021 District Attorney Qns County Secretary 62734.25000 5.018740e+05 1085.34 1.356675e+02 0.195 36.50 8 1.950000e-01 1.56 5.029593e+05 5.018756e+05 1083.78 NULL
2021 District Attorney Qns County Special Assistant To Da 122532.75000 9.802620e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.802620e+05 9.802620e+05 0.00 NULL
2021 District Attorney Qns County Summer Graduate Intern 2725.91394 2.562359e+05 0.00 0.000000e+00 0.000 0.00 94 0.000000e+00 0.00 2.562359e+05 2.562359e+05 0.00 NULL
2021 District Attorney Qns County Supervising Accountant Investigator 95790.00000 9.579000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.579000e+04 9.579000e+04 0.00 NULL
2021 District Attorney Richmond Cou Administrative Procurement Analyst 108372.00000 1.083720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.083720e+05 1.083720e+05 0.00 NULL
2021 District Attorney Richmond Cou Administrative Staff Analyst 155765.00000 1.557650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.557650e+05 1.557650e+05 0.00 NULL
2021 District Attorney Richmond Cou Assistant District Attorney 102638.74720 8.416377e+06 0.00 0.000000e+00 0.000 0.00 82 0.000000e+00 0.00 8.416377e+06 8.416377e+06 0.00 NULL
2021 District Attorney Richmond Cou Clerical Associate 61348.00000 3.067400e+05 1.20 2.400000e-01 0.000 0.00 5 0.000000e+00 0.00 3.067412e+05 3.067400e+05 1.20 NULL
2021 District Attorney Richmond Cou Community Assistant 32179.38333 9.653815e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.653815e+04 9.653815e+04 0.00 NULL
2021 District Attorney Richmond Cou Community Associate 54054.26437 4.702721e+06 3361.78 3.864115e+01 0.000 100.75 87 0.000000e+00 0.00 4.706083e+06 4.702721e+06 3361.78 NULL
2021 District Attorney Richmond Cou Community Coordinator 77833.28571 1.089666e+06 1360.68 9.719143e+01 0.325 33.00 14 3.250000e-01 4.55 1.091027e+06 1.089671e+06 1356.13 NULL
2021 District Attorney Richmond Cou Computer Programmer Analyst 78989.00000 7.898900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.898900e+04 7.898900e+04 0.00 NULL
2021 District Attorney Richmond Cou Computer Systems Manager 113890.00000 1.138900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.138900e+05 1.138900e+05 0.00 NULL
2021 District Attorney Richmond Cou District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2021 District Attorney Richmond Cou Paralegal Aide 75000.00000 7.500000e+04 86.91 8.691000e+01 86.910 0.00 1 8.691000e+01 86.91 7.508691e+04 7.508691e+04 0.00 NULL
2021 District Attorney Richmond Cou Reporter/ Stenographer 69666.75000 2.786670e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.786670e+05 2.786670e+05 0.00 NULL
2021 District Attorney Richmond Cou Secretary 55408.00000 5.540800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.540800e+04 5.540800e+04 0.00 NULL
2021 District Attorney Richmond Cou Social Worker 66835.00000 1.336700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.336700e+05 1.336700e+05 0.00 NULL
2021 District Attorney Richmond Cou Special Assistant To The District Attorney 109221.00000 6.553260e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.553260e+05 6.553260e+05 0.00 NULL
2021 District Attorney-Manhattan Admin Contract Specialist 140898.00000 2.817960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.817960e+05 2.817960e+05 0.00 NULL
2021 District Attorney-Manhattan Administrative Chief 144215.57143 6.057054e+06 0.00 0.000000e+00 0.000 0.00 42 0.000000e+00 0.00 6.057054e+06 6.057054e+06 0.00 NULL
2021 District Attorney-Manhattan Administrative Labor Relations Analyst 146455.00000 4.393650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.393650e+05 4.393650e+05 0.00 NULL
2021 District Attorney-Manhattan Administrative Public Records Officer 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2021 District Attorney-Manhattan Assistant District Attorney 107090.20711 6.329031e+07 0.00 0.000000e+00 0.000 0.00 591 0.000000e+00 0.00 6.329031e+07 6.329031e+07 0.00 NULL
2021 District Attorney-Manhattan Assistant Media Services Technican 44280.75000 1.771230e+05 3041.88 7.604700e+02 556.725 109.00 4 5.567250e+02 2226.90 1.801649e+05 1.793499e+05 814.98 NULL
2021 District Attorney-Manhattan Carpenter NA NA 10517.47 2.629367e+03 2485.965 129.00 4 2.485965e+03 9943.86 NA NA NA NULL
2021 District Attorney-Manhattan Chief Investigating Accountant 119128.57143 8.339000e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.339000e+05 8.339000e+05 0.00 NULL
2021 District Attorney-Manhattan City Custodial Assistant 38069.60000 5.710440e+05 3371.99 2.247993e+02 28.640 116.75 15 2.864000e+01 429.60 5.744160e+05 5.714736e+05 2942.39 NULL
2021 District Attorney-Manhattan City Laborer NA NA 16517.05 2.359579e+03 2248.450 286.25 7 2.248450e+03 15739.15 NA NA NA NULL
2021 District Attorney-Manhattan Clerical Associate 69037.80000 6.903780e+05 8318.59 8.318590e+02 0.035 147.75 10 3.500000e-02 0.35 6.986966e+05 6.903783e+05 8318.24 NULL
2021 District Attorney-Manhattan College Aide 291.97050 3.649631e+04 378.91 3.031280e+00 0.000 9.75 125 0.000000e+00 0.00 3.687522e+04 3.649631e+04 378.91 NULL
2021 District Attorney-Manhattan Community Assistant 42403.66534 1.484128e+06 77005.91 2.200169e+03 192.590 2085.75 35 1.925900e+02 6740.65 1.561134e+06 1.490869e+06 70265.26 NULL
2021 District Attorney-Manhattan Community Associate 50729.15604 3.459728e+07 317591.54 4.656767e+02 0.000 8163.63 682 0.000000e+00 0.00 3.491488e+07 3.459728e+07 317591.54 NULL
2021 District Attorney-Manhattan Community Coordinator 82871.25735 1.151910e+07 487079.51 3.504169e+03 0.000 6896.25 139 0.000000e+00 0.00 1.200618e+07 1.151910e+07 487079.51 NULL
2021 District Attorney-Manhattan County Detective 63259.62500 5.060770e+05 34466.66 4.308333e+03 1224.500 773.50 8 1.224500e+03 9796.00 5.405437e+05 5.158730e+05 24670.66 NULL
2021 District Attorney-Manhattan District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2021 District Attorney-Manhattan Electrician NA NA 4120.90 2.060450e+03 2060.450 45.00 2 2.060450e+03 4120.90 NA NA NA NULL
2021 District Attorney-Manhattan Electricians Helper NA NA 2542.32 2.542320e+03 2542.320 43.75 1 2.542320e+03 2542.32 NA NA NA NULL
2021 District Attorney-Manhattan Engineering Technician 64050.50000 1.281010e+05 1.69 8.450000e-01 0.845 0.00 2 8.450000e-01 1.69 1.281027e+05 1.281027e+05 0.00 NULL
2021 District Attorney-Manhattan Interpreter 75436.00000 5.280520e+05 1096.42 1.566314e+02 0.000 18.50 7 0.000000e+00 0.00 5.291484e+05 5.280520e+05 1096.42 NULL
2021 District Attorney-Manhattan Management Auditor 109046.00000 1.090460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.090460e+05 1.090460e+05 0.00 NULL
2021 District Attorney-Manhattan Media Services Technician 71921.53846 9.349800e+05 177615.50 1.366273e+04 6527.420 3083.82 13 6.527420e+03 84856.46 1.112596e+06 1.019836e+06 92759.04 NULL
2021 District Attorney-Manhattan Office Assistant 50257.50000 1.005150e+05 8.83 4.415000e+00 4.415 0.00 2 4.415000e+00 8.83 1.005238e+05 1.005238e+05 0.00 NULL
2021 District Attorney-Manhattan Painter NA NA 4748.38 4.748380e+03 4748.380 75.75 1 4.748380e+03 4748.38 NA NA NA NULL
2021 District Attorney-Manhattan Paralegal Aide 80171.00000 8.017100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.017100e+04 8.017100e+04 0.00 NULL
2021 District Attorney-Manhattan Photographer 65055.33333 1.951660e+05 3901.61 1.300537e+03 1117.730 104.00 3 1.117730e+03 3353.19 1.990676e+05 1.985192e+05 548.42 NULL
2021 District Attorney-Manhattan Principal Accountant Investigator 122542.05263 2.328299e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.328299e+06 2.328299e+06 0.00 NULL
2021 District Attorney-Manhattan Principal Administrative Associate - Non Supvr 87335.00000 4.366750e+05 11412.15 2.282430e+03 0.000 173.75 5 0.000000e+00 0.00 4.480872e+05 4.366750e+05 11412.15 NULL
2021 District Attorney-Manhattan Reporter/ Stenographer 83071.27586 2.409067e+06 2.59 8.931030e-02 0.000 0.00 29 0.000000e+00 0.00 2.409070e+06 2.409067e+06 2.59 NULL
2021 District Attorney-Manhattan Secretary 90593.16667 5.435590e+05 33770.72 5.628453e+03 1927.155 573.50 6 1.927155e+03 11562.93 5.773297e+05 5.551219e+05 22207.79 NULL
2021 District Attorney-Manhattan Senior Accountant Investigator 78196.83846 1.016559e+06 34966.04 2.689695e+03 0.000 574.50 13 0.000000e+00 0.00 1.051525e+06 1.016559e+06 34966.04 NULL
2021 District Attorney-Manhattan Senior Secretary 65174.25000 2.606970e+05 298.08 7.452000e+01 0.445 8.75 4 4.450000e-01 1.78 2.609951e+05 2.606988e+05 296.30 NULL
2021 District Attorney-Manhattan Special Officer 44817.25000 3.585380e+05 3627.42 4.534275e+02 427.235 110.00 8 4.272350e+02 3417.88 3.621654e+05 3.619559e+05 209.54 NULL
2021 District Attorney-Manhattan Staff Analyst 91629.00000 9.162900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.162900e+04 9.162900e+04 0.00 NULL
2021 District Attorney-Manhattan Supervising Accountant Investigator 78275.00000 7.827500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.827500e+04 7.827500e+04 0.00 NULL
2021 District Attorney-Manhattan Supervising Special Officer 55853.00000 1.117060e+05 8584.30 4.292150e+03 4292.150 214.50 2 4.292150e+03 8584.30 1.202903e+05 1.202903e+05 0.00 NULL
2021 District Attorney-Manhattan Supervisor Electrician NA NA 4477.46 4.477460e+03 4477.460 43.50 1 4.477460e+03 4477.46 NA NA NA NULL
2021 District Attorney-Manhattan Supervisor Of Mechanics 133577.00000 1.335770e+05 4318.21 4.318210e+03 4318.210 45.00 1 4.318210e+03 4318.21 1.378952e+05 1.378952e+05 0.00 NULL
2021 District Attorney-Manhattan Supervisor Painter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 District Attorney-Special Narc Administrative Chief 183692.00000 5.510760e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.510760e+05 5.510760e+05 0.00 NULL
2021 District Attorney-Special Narc Assistant District Attorney 108634.72358 1.336207e+07 0.00 0.000000e+00 0.000 0.00 123 0.000000e+00 0.00 1.336207e+07 1.336207e+07 0.00 NULL
2021 District Attorney-Special Narc Chief Investigating Accountant 136580.00000 2.731600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.731600e+05 2.731600e+05 0.00 NULL
2021 District Attorney-Special Narc Chief Rackets Investigator 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2021 District Attorney-Special Narc Clerical Associate 91852.75000 7.348220e+05 15.75 1.968750e+00 0.000 0.00 8 0.000000e+00 0.00 7.348378e+05 7.348220e+05 15.75 NULL
2021 District Attorney-Special Narc College Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2021 District Attorney-Special Narc Community Assistant 47332.33333 1.419970e+05 1773.81 5.912700e+02 510.960 63.75 3 5.109600e+02 1532.88 1.437708e+05 1.435299e+05 240.93 NULL
2021 District Attorney-Special Narc Community Associate 57717.35849 3.059020e+06 9269.52 1.748966e+02 0.000 248.50 53 0.000000e+00 0.00 3.068290e+06 3.059020e+06 9269.52 NULL
2021 District Attorney-Special Narc Community Coordinator 96098.27273 1.057081e+06 209.17 1.901545e+01 0.000 3.75 11 0.000000e+00 0.00 1.057290e+06 1.057081e+06 209.17 NULL
2021 District Attorney-Special Narc Computer Specialist 112271.00000 2.245420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.245420e+05 2.245420e+05 0.00 NULL
2021 District Attorney-Special Narc Confidential Secretary 93164.00000 9.316400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.316400e+04 9.316400e+04 0.00 NULL
2021 District Attorney-Special Narc Deputy Chief Rackets Investigator 128727.50000 2.574550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.574550e+05 2.574550e+05 0.00 NULL
2021 District Attorney-Special Narc Director Of Public Information 167700.00000 1.677000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.677000e+05 1.677000e+05 0.00 NULL
2021 District Attorney-Special Narc Paralegal Aide 89578.83333 5.374730e+05 159.01 2.650167e+01 0.000 3.50 6 0.000000e+00 0.00 5.376320e+05 5.374730e+05 159.01 NULL
2021 District Attorney-Special Narc Reporter/ Stenographer 81960.71429 5.737250e+05 0.66 9.428570e-02 0.000 0.00 7 0.000000e+00 0.00 5.737257e+05 5.737250e+05 0.66 NULL
2021 District Attorney-Special Narc Secretary 83192.00000 1.663840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.663840e+05 1.663840e+05 0.00 NULL
2021 District Attorney-Special Narc Senior Rackets Investigator 82102.83333 4.926170e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.926170e+05 4.926170e+05 0.00 NULL
2021 District Attorney-Special Narc Senior Rackets Investigator - Start >4-24-08 No Abc 70854.33333 1.062815e+06 21273.41 1.418227e+03 709.530 414.50 15 7.095300e+02 10642.95 1.084088e+06 1.073458e+06 10630.46 NULL
2021 District Attorney-Special Narc Special Assistant District Attorney 211000.00000 2.110000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.110000e+05 2.110000e+05 0.00 NULL
2021 District Attorney-Special Narc Supervising Computer Service Technician 95893.00000 9.589300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.589300e+04 9.589300e+04 0.00 NULL
2021 District Attorney-Special Narc Supervising Rackets Investigator Start >4-24-08 No Abc 89980.00000 5.398800e+05 4399.41 7.332350e+02 445.945 64.00 6 4.459450e+02 2675.67 5.442794e+05 5.425557e+05 1723.74 NULL
2021 Doe Custodial Payrol Custodian Engineer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1512 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2021 Equal Employ Practices Comm Administrative Staff Analyst 100425.00000 1.004250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.004250e+05 1.004250e+05 0.00 NULL
2021 Equal Employ Practices Comm City Research Scientist 92153.39500 3.686136e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.686136e+05 3.686136e+05 0.00 NULL
2021 Equal Employ Practices Comm Community Coordinator 59090.75000 2.363630e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.363630e+05 2.363630e+05 0.00 NULL
2021 Equal Employ Practices Comm Computer Associate 76587.00000 7.658700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.658700e+04 7.658700e+04 0.00 NULL
2021 Equal Employ Practices Comm Executive Agency Counsel 105318.00000 1.053180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.053180e+05 1.053180e+05 0.00 NULL
2021 Equal Employ Practices Comm Executive Director 154121.50000 3.082430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.082430e+05 3.082430e+05 0.00 NULL
2021 Equal Employ Practices Comm Executive Secretary 70429.00000 7.042900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.042900e+04 7.042900e+04 0.00 NULL
2021 Financial Info Svcs Agency *Certified Wide Area Network Administrator 129964.00000 1.299640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.299640e+05 1.299640e+05 0.00 NULL
2021 Financial Info Svcs Agency Accountant 78038.00000 1.560760e+05 140.50 7.025000e+01 70.250 3.50 2 7.025000e+01 140.50 1.562165e+05 1.562165e+05 0.00 NULL
2021 Financial Info Svcs Agency Adm Manager-Non-Mgrl 94114.33333 5.646860e+05 22400.38 3.733397e+03 0.000 292.25 6 0.000000e+00 0.00 5.870864e+05 5.646860e+05 22400.38 NULL
2021 Financial Info Svcs Agency Admin Contract Specialist 145484.00000 1.454840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.454840e+05 1.454840e+05 0.00 NULL
2021 Financial Info Svcs Agency Administrative Procurement Analyst-Non-Mgrl 94344.50000 1.886890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.886890e+05 1.886890e+05 0.00 NULL
2021 Financial Info Svcs Agency Administrative Public Information Specialist 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2021 Financial Info Svcs Agency Administrative Space Analyst 149421.50000 2.988430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.988430e+05 2.988430e+05 0.00 NULL
2021 Financial Info Svcs Agency Administrative Staff Analyst 117694.30000 1.176943e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.176943e+06 1.176943e+06 0.00 NULL
2021 Financial Info Svcs Agency Agency Chief Contracting Officer 153056.00000 1.530560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.530560e+05 1.530560e+05 0.00 NULL
2021 Financial Info Svcs Agency Associate Staff Analyst 85062.66667 2.551880e+05 11172.91 3.724303e+03 814.470 202.25 3 8.144700e+02 2443.41 2.663609e+05 2.576314e+05 8729.50 NULL
2021 Financial Info Svcs Agency Certified It Administrator 116856.50000 2.337130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.337130e+05 2.337130e+05 0.00 NULL
2021 Financial Info Svcs Agency City Attendant 40260.00000 4.026000e+04 5261.79 5.261790e+03 5261.790 168.75 1 5.261790e+03 5261.79 4.552179e+04 4.552179e+04 0.00 NULL
2021 Financial Info Svcs Agency City Custodial Assistant 36915.00000 3.691500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.691500e+04 3.691500e+04 0.00 NULL
2021 Financial Info Svcs Agency Clerical Associate 45934.01240 2.296701e+05 1782.34 3.564680e+02 0.000 53.50 5 0.000000e+00 0.00 2.314524e+05 2.296701e+05 1782.34 NULL
2021 Financial Info Svcs Agency College Aide - Assignment Levels Ii And Iii 18484.57500 3.696915e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.696915e+04 3.696915e+04 0.00 NULL
2021 Financial Info Svcs Agency Community Assistant 35111.16750 3.511117e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.511117e+04 3.511117e+04 0.00 NULL
2021 Financial Info Svcs Agency Community Associate 55104.66667 3.306280e+05 4235.52 7.059200e+02 0.000 133.25 6 0.000000e+00 0.00 3.348635e+05 3.306280e+05 4235.52 NULL
2021 Financial Info Svcs Agency Community Coordinator 73108.66667 6.579780e+05 20780.89 2.308988e+03 0.000 380.75 9 0.000000e+00 0.00 6.787589e+05 6.579780e+05 20780.89 NULL
2021 Financial Info Svcs Agency Computer Associate 79004.31250 3.792207e+06 309129.73 6.440203e+03 4374.020 5056.50 48 4.374020e+03 209952.96 4.101337e+06 4.002160e+06 99176.77 NULL
2021 Financial Info Svcs Agency Computer Operations Manager 134539.00000 1.345390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.345390e+05 1.345390e+05 0.00 NULL
2021 Financial Info Svcs Agency Computer Programmer Analyst 66813.00000 1.336260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.336260e+05 1.336260e+05 0.00 NULL
2021 Financial Info Svcs Agency Computer Specialist 112071.54902 5.715649e+06 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 5.715649e+06 5.715649e+06 0.00 NULL
2021 Financial Info Svcs Agency Computer Systems Manager 138751.90761 2.553035e+07 1696.82 9.221848e+00 0.000 21.00 184 0.000000e+00 0.00 2.553205e+07 2.553035e+07 1696.82 NULL
2021 Financial Info Svcs Agency Executive Agency Counsel 176774.60000 8.838730e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.838730e+05 8.838730e+05 0.00 NULL
2021 Financial Info Svcs Agency Executive Director 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2021 Financial Info Svcs Agency It Automation And Monitoring Engineer 105287.92857 1.474031e+06 8699.10 6.213643e+02 0.000 141.25 14 0.000000e+00 0.00 1.482730e+06 1.474031e+06 8699.10 NULL
2021 Financial Info Svcs Agency It Infrastructure Engineer 130873.66667 1.570484e+06 1407.31 1.172758e+02 0.000 15.75 12 0.000000e+00 0.00 1.571891e+06 1.570484e+06 1407.31 NULL
2021 Financial Info Svcs Agency It Project Specialist 117607.66667 1.411292e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.411292e+06 1.411292e+06 0.00 NULL
2021 Financial Info Svcs Agency It Security Specialist 103947.60000 1.559214e+06 30096.53 2.006435e+03 0.000 467.75 15 0.000000e+00 0.00 1.589311e+06 1.559214e+06 30096.53 NULL
2021 Financial Info Svcs Agency It Service Management Specialist 108954.15385 1.416404e+06 704.14 5.416462e+01 0.000 15.00 13 0.000000e+00 0.00 1.417108e+06 1.416404e+06 704.14 NULL
2021 Financial Info Svcs Agency Nycaps Process Analyst 120875.00000 1.208750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.208750e+05 1.208750e+05 0.00 NULL
2021 Financial Info Svcs Agency Principal Administrative Associate - Non Supvr 73108.75000 5.848700e+05 9925.83 1.240729e+03 0.000 162.50 8 0.000000e+00 0.00 5.947958e+05 5.848700e+05 9925.83 NULL
2021 Financial Info Svcs Agency Secretary 62967.00000 6.296700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.296700e+04 6.296700e+04 0.00 NULL
2021 Financial Info Svcs Agency Senior It Architect 138751.66667 1.248765e+06 363.98 4.044222e+01 0.000 4.75 9 0.000000e+00 0.00 1.249129e+06 1.248765e+06 363.98 NULL
2021 Financial Info Svcs Agency Staff Analyst 59221.00000 5.922100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.922100e+04 5.922100e+04 0.00 NULL
2021 Financial Info Svcs Agency Supervisor Of Office Machine Operations 52719.50000 1.054390e+05 24545.21 1.227260e+04 12272.605 611.25 2 1.227260e+04 24545.21 1.299842e+05 1.299842e+05 0.00 NULL
2021 Financial Info Svcs Agency Telecommunications Associate 94263.00000 9.426300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.426300e+04 9.426300e+04 0.00 NULL
2021 Fire Department *Certified Applications Developer 105801.00000 1.058010e+05 5023.84 5.023840e+03 5023.840 80.50 1 5.023840e+03 5023.84 1.108248e+05 1.108248e+05 0.00 NULL
2021 Fire Department Accountant 64297.00000 6.429700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.429700e+04 6.429700e+04 0.00 NULL
2021 Fire Department Adm Manager-Non-Mgrl 83252.33757 5.827664e+06 226134.93 3.230499e+03 0.000 4214.00 70 0.000000e+00 0.00 6.053799e+06 5.827664e+06 226134.93 NULL
2021 Fire Department Admin Community Relations Specialist 80449.25900 8.044926e+05 68088.91 6.808891e+03 0.000 1488.00 10 0.000000e+00 0.00 8.725815e+05 8.044926e+05 68088.91 NULL
2021 Fire Department Admin Inspector 79970.83333 4.798250e+05 184274.67 3.071244e+04 29415.200 3217.25 6 2.941520e+04 176491.20 6.640997e+05 6.563162e+05 7783.47 NULL
2021 Fire Department Admin Tests & Meas Spec 137503.00000 1.375030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.375030e+05 1.375030e+05 0.00 NULL
2021 Fire Department Administrative Architect 130555.00000 1.305550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.305550e+05 1.305550e+05 0.00 NULL
2021 Fire Department Administrative Blasting Inspector 123537.00000 1.235370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.235370e+05 1.235370e+05 0.00 NULL
2021 Fire Department Administrative Community Relations Specialist 157178.00000 1.571780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.571780e+05 1.571780e+05 0.00 NULL
2021 Fire Department Administrative Construction Project Manager 148860.50000 2.977210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.977210e+05 2.977210e+05 0.00 NULL
2021 Fire Department Administrative Director Of Marine Maintenance 120510.00000 1.205100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.205100e+05 1.205100e+05 0.00 NULL
2021 Fire Department Administrative Engineer 105966.00000 2.119320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.119320e+05 2.119320e+05 0.00 NULL
2021 Fire Department Administrative Fire Protection Inspector 108562.66667 1.302752e+06 66588.12 5.549010e+03 0.000 907.50 12 0.000000e+00 0.00 1.369340e+06 1.302752e+06 66588.12 NULL
2021 Fire Department Administrative Graphic Artist 90174.00000 9.017400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.017400e+04 9.017400e+04 0.00 NULL
2021 Fire Department Administrative Inspector 103024.50000 2.060490e+05 -430.23 -2.151150e+02 -215.115 12.00 2 -2.151150e+02 -430.23 2.056188e+05 2.056188e+05 0.00 NULL
2021 Fire Department Administrative Investigator 69353.00000 6.935300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.935300e+04 6.935300e+04 0.00 NULL
2021 Fire Department Administrative Labor Relations Analyst 130089.50000 2.601790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.601790e+05 2.601790e+05 0.00 NULL
2021 Fire Department Administrative Procurement Analyst-Non-Mgrl 85885.55271 1.202398e+06 50635.57 3.616826e+03 1079.925 1041.25 14 1.079925e+03 15118.95 1.253033e+06 1.217517e+06 35516.62 NULL
2021 Fire Department Administrative Project Manager 119128.30000 1.191283e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.191283e+06 1.191283e+06 0.00 NULL
2021 Fire Department Administrative Psychologist 152325.00000 3.046500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.046500e+05 3.046500e+05 0.00 NULL
2021 Fire Department Administrative Public Information Specialist 98841.50000 3.953660e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.953660e+05 3.953660e+05 0.00 NULL
2021 Fire Department Administrative Public Records Officer 107424.00000 1.074240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074240e+05 1.074240e+05 0.00 NULL
2021 Fire Department Administrative Quality Assurance Specialist 64717.89000 6.471789e+04 5903.36 5.903360e+03 5903.360 109.50 1 5.903360e+03 5903.36 7.062125e+04 7.062125e+04 0.00 NULL
2021 Fire Department Administrative Staff Analyst 100291.32171 6.218062e+06 178013.50 2.871185e+03 0.000 2800.50 62 0.000000e+00 0.00 6.396075e+06 6.218062e+06 178013.50 NULL
2021 Fire Department Administrative Storekeeper 143610.00000 1.436100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.436100e+05 1.436100e+05 0.00 NULL
2021 Fire Department Administrative Supervisor Of Building Maintenance 137129.50000 2.742590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.742590e+05 2.742590e+05 0.00 NULL
2021 Fire Department Administrator Of Medical Affairs 213609.00000 2.136090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.136090e+05 2.136090e+05 0.00 NULL
2021 Fire Department Agency Attorney 94846.58320 2.371165e+06 4587.38 1.834952e+02 0.000 80.75 25 0.000000e+00 0.00 2.375752e+06 2.371165e+06 4587.38 NULL
2021 Fire Department Agency Attorney Interne 62397.00000 6.239700e+04 3024.02 3.024020e+03 3024.020 82.50 1 3.024020e+03 3024.02 6.542102e+04 6.542102e+04 0.00 NULL
2021 Fire Department Agency Deputy Medical Director 176161.62500 1.409293e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.409293e+06 1.409293e+06 0.00 NULL
2021 Fire Department Architect 92700.00000 9.270000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.270000e+04 9.270000e+04 0.00 NULL
2021 Fire Department Assistant Architect 65958.00000 6.595800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.595800e+04 6.595800e+04 0.00 NULL
2021 Fire Department Assistant Chemical Engineer 65640.00000 6.564000e+04 1.24 1.240000e+00 1.240 0.00 1 1.240000e+00 1.24 6.564124e+04 6.564124e+04 0.00 NULL
2021 Fire Department Assistant Chief Fire Marshal 215352.00000 2.153520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.153520e+05 2.153520e+05 0.00 NULL
2021 Fire Department Assistant Chief Of Department 241420.75000 2.897049e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 2.897049e+06 2.897049e+06 0.00 NULL
2021 Fire Department Assistant Civil Engineer 65640.00000 6.564000e+04 9.21 9.210000e+00 9.210 0.00 1 9.210000e+00 9.21 6.564921e+04 6.564921e+04 0.00 NULL
2021 Fire Department Assistant Commissioner 168745.60000 1.687456e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.687456e+06 1.687456e+06 0.00 NULL
2021 Fire Department Assistant Electrical Engineer 65793.33333 1.973800e+05 17237.69 5.745897e+03 5704.730 387.75 3 5.704730e+03 17114.19 2.146177e+05 2.144942e+05 123.50 NULL
2021 Fire Department Assistant Mechanical Engineer 70594.33333 2.117830e+05 862.33 2.874433e+02 3.230 17.50 3 3.230000e+00 9.69 2.126453e+05 2.117927e+05 852.64 NULL
2021 Fire Department Associate Commissioner 213210.00000 2.132100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.132100e+05 2.132100e+05 0.00 NULL
2021 Fire Department Associate Fire Protection Inspector 66868.43694 1.484479e+07 2511480.94 1.131298e+04 8007.620 49809.55 222 8.007620e+03 1777691.64 1.735627e+07 1.662248e+07 733789.30 NULL
2021 Fire Department Associate Inspector 70750.18182 1.556504e+06 375356.27 1.706165e+04 15060.350 7458.00 22 1.506035e+04 331327.70 1.931860e+06 1.887832e+06 44028.57 NULL
2021 Fire Department Associate Investigator 69137.25000 2.765490e+05 11217.41 2.804352e+03 890.620 247.50 4 8.906200e+02 3562.48 2.877664e+05 2.801115e+05 7654.93 NULL
2021 Fire Department Associate Project Manager 90690.37500 1.451046e+06 13115.97 8.197481e+02 0.000 262.00 16 0.000000e+00 0.00 1.464162e+06 1.451046e+06 13115.97 NULL
2021 Fire Department Associate Staff Analyst 82747.72727 9.102250e+05 9908.86 9.008055e+02 0.000 206.50 11 0.000000e+00 0.00 9.201339e+05 9.102250e+05 9908.86 NULL
2021 Fire Department Attending Physician 39423.22196 3.548090e+05 29909.94 3.323327e+03 1.420 472.75 9 1.420000e+00 12.78 3.847189e+05 3.548218e+05 29897.16 NULL
2021 Fire Department Auto Mechanic NA NA 2906280.13 2.032364e+04 17967.010 44980.18 143 1.796701e+04 2569282.43 NA NA NA NULL
2021 Fire Department Automotive Service Worker 45417.40741 1.226270e+06 222265.43 8.232053e+03 5021.180 6790.85 27 5.021180e+03 135571.86 1.448535e+06 1.361842e+06 86693.57 NULL
2021 Fire Department Battalion Chief 168239.33181 7.352059e+07 856051.41 1.958928e+03 0.000 9430.69 437 0.000000e+00 0.00 7.437664e+07 7.352059e+07 856051.41 NULL
2021 Fire Department Captain 129968.81612 9.188795e+07 25808574.36 3.650435e+04 38180.340 340736.96 707 3.650435e+04 25808574.36 1.176965e+08 1.176965e+08 0.00 NULL
2021 Fire Department Carpenter NA NA 389280.89 2.780578e+04 18547.535 4939.75 14 1.854753e+04 259665.49 NA NA NA NULL
2021 Fire Department Case - Management Nurse 73730.32413 3.170404e+06 41229.20 9.588186e+02 0.000 626.25 43 0.000000e+00 0.00 3.211633e+06 3.170404e+06 41229.20 NULL
2021 Fire Department Cashier 53089.00000 5.308900e+04 342.18 3.421800e+02 342.180 0.00 1 3.421800e+02 342.18 5.343118e+04 5.343118e+04 0.00 NULL
2021 Fire Department Cement Mason NA NA 24218.35 1.210917e+04 12109.175 251.75 2 1.210917e+04 24218.35 NA NA NA NULL
2021 Fire Department Certified It Administrator 106811.32568 1.281736e+06 271748.22 2.264569e+04 20718.905 3694.75 12 2.071890e+04 248626.86 1.553484e+06 1.530363e+06 23121.36 NULL
2021 Fire Department Certified It Developer 113593.14286 7.951520e+05 1066.80 1.524000e+02 0.000 16.00 7 0.000000e+00 0.00 7.962188e+05 7.951520e+05 1066.80 NULL
2021 Fire Department Chaplain 29369.71429 2.055880e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.055880e+05 2.055880e+05 0.00 NULL
2021 Fire Department Chief Fire Marshal 235462.00000 4.709240e+05 110078.87 5.503943e+04 55039.435 1564.92 2 5.503943e+04 110078.87 5.810029e+05 5.810029e+05 0.00 NULL
2021 Fire Department Chief Of Department 235526.00000 2.355260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.355260e+05 2.355260e+05 0.00 NULL
2021 Fire Department City Laborer NA NA 121732.98 1.014442e+04 6944.180 2126.50 12 6.944180e+03 83330.16 NA NA NA NULL
2021 Fire Department City Medical Specialist 35436.79152 9.567934e+05 44074.32 1.632382e+03 0.000 466.25 27 0.000000e+00 0.00 1.000868e+06 9.567934e+05 44074.32 NULL
2021 Fire Department City Research Scientist 99302.45000 1.986049e+06 31467.23 1.573361e+03 0.000 425.00 20 0.000000e+00 0.00 2.017516e+06 1.986049e+06 31467.23 NULL
2021 Fire Department Clerical Associate 48831.83747 5.664493e+06 247299.61 2.131893e+03 0.000 6225.50 116 0.000000e+00 0.00 5.911793e+06 5.664493e+06 247299.61 NULL
2021 Fire Department Commissioner 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2021 Fire Department Communication Electrician NA NA 1292363.11 2.051370e+04 16191.490 17134.50 63 1.619149e+04 1020063.87 NA NA NA NULL
2021 Fire Department Community Assistant 42191.00000 4.219100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.219100e+04 4.219100e+04 0.00 NULL
2021 Fire Department Community Associate 46130.71840 9.226144e+05 2558.65 1.279325e+02 0.000 77.75 20 0.000000e+00 0.00 9.251730e+05 9.226144e+05 2558.65 NULL
2021 Fire Department Community Coordinator 65044.72727 2.146476e+06 85312.27 2.585220e+03 28.910 1818.50 33 2.891000e+01 954.03 2.231788e+06 2.147430e+06 84358.24 NULL
2021 Fire Department Computer Aide-Non-Spvr 44404.00000 4.440400e+04 322.03 3.220300e+02 322.030 13.25 1 3.220300e+02 322.03 4.472603e+04 4.472603e+04 0.00 NULL
2021 Fire Department Computer Associate 78601.25714 2.751044e+06 885476.59 2.529933e+04 18216.270 14657.05 35 1.821627e+04 637569.45 3.636521e+06 3.388613e+06 247907.14 NULL
2021 Fire Department Computer Service Technician 65888.00000 6.588800e+04 29499.23 2.949923e+04 29499.230 533.00 1 2.949923e+04 29499.23 9.538723e+04 9.538723e+04 0.00 NULL
2021 Fire Department Computer Specialist 106296.38806 7.121858e+06 414325.52 6.183963e+03 722.050 5487.25 67 7.220500e+02 48377.35 7.536184e+06 7.170235e+06 365948.17 NULL
2021 Fire Department Computer Systems Manager 140195.88000 3.504897e+06 11489.14 4.595656e+02 0.000 180.25 25 0.000000e+00 0.00 3.516386e+06 3.504897e+06 11489.14 NULL
2021 Fire Department Construction Project Manager 77113.50000 1.542270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.542270e+05 1.542270e+05 0.00 NULL
2021 Fire Department Counsel 185066.00000 1.850660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.850660e+05 1.850660e+05 0.00 NULL
2021 Fire Department Customer Information Representative Ma L 1549 64036.00000 2.561440e+05 781.02 1.952550e+02 0.000 17.75 4 0.000000e+00 0.00 2.569250e+05 2.561440e+05 781.02 NULL
2021 Fire Department Deputy Assistant Chief Of Department 235462.00000 3.296468e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 3.296468e+06 3.296468e+06 0.00 NULL
2021 Fire Department Deputy Chief 193212.92941 1.642310e+07 0.00 0.000000e+00 0.000 0.00 85 0.000000e+00 0.00 1.642310e+07 1.642310e+07 0.00 NULL
2021 Fire Department Deputy Commissioner 225342.00000 1.577394e+06 480.37 6.862429e+01 0.000 0.00 7 0.000000e+00 0.00 1.577874e+06 1.577394e+06 480.37 NULL
2021 Fire Department Electrical Engineer 110647.00000 1.106470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.106470e+05 1.106470e+05 0.00 NULL
2021 Fire Department Electrical Engineering Intern 62260.00000 1.245200e+05 5665.45 2.832725e+03 2832.725 136.50 2 2.832725e+03 5665.45 1.301854e+05 1.301854e+05 0.00 NULL
2021 Fire Department Electrician NA NA 1177328.24 6.540712e+04 55355.585 12862.25 18 5.535558e+04 996400.53 NA NA NA NULL
2021 Fire Department Emergency Medical Specialist Trainee 32520.00000 7.479600e+05 2527.57 1.098943e+02 0.000 183.83 23 0.000000e+00 0.00 7.504876e+05 7.479600e+05 2527.57 NULL
2021 Fire Department Emergency Medical Specialist-Emt 43873.98215 1.401335e+08 18247164.86 5.712951e+03 3039.040 665747.49 3194 3.039040e+03 9706693.76 1.583807e+08 1.498402e+08 8540471.10 NULL
2021 Fire Department Emergency Medical Specialist-Paramedic 60727.03680 5.611178e+07 11808998.56 1.278030e+04 8666.045 281278.51 924 8.666045e+03 8007425.58 6.792078e+07 6.411921e+07 3801572.98 NULL
2021 Fire Department Employee Assistance Program Specialist 54561.66680 7.093017e+05 275.32 2.117846e+01 0.000 8.00 13 0.000000e+00 0.00 7.095770e+05 7.093017e+05 275.32 NULL
2021 Fire Department Engineering Technician 56354.00000 5.635400e+04 16.59 1.659000e+01 16.590 0.00 1 1.659000e+01 16.59 5.637059e+04 5.637059e+04 0.00 NULL
2021 Fire Department Executive Agency Counsel 145423.85714 2.035934e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.035934e+06 2.035934e+06 0.00 NULL
2021 Fire Department Executive Director Of Fleet Operations 178684.00000 1.786840e+05 4645.59 4.645590e+03 4645.590 35.00 1 4.645590e+03 4645.59 1.833296e+05 1.833296e+05 0.00 NULL
2021 Fire Department Executive Program Specialist 176846.00000 3.536920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.536920e+05 3.536920e+05 0.00 NULL
2021 Fire Department Fire Alarm Dispatcher 59016.84663 9.619746e+06 3451851.48 2.117700e+04 20690.300 92109.75 163 2.069030e+04 3372518.90 1.307160e+07 1.299226e+07 79332.58 NULL
2021 Fire Department Fire Marshal 95527.00000 1.165429e+07 2876980.65 2.358181e+04 18555.995 62710.80 122 1.855599e+04 2263831.39 1.453127e+07 1.391813e+07 613149.26 NULL
2021 Fire Department Fire Medical Officer 153555.16667 4.606655e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 4.606655e+06 4.606655e+06 0.00 NULL
2021 Fire Department Fire Protection Inspector 52047.49143 9.108311e+06 572935.95 3.273920e+03 1459.970 15522.39 175 1.459970e+03 255494.75 9.681247e+06 9.363806e+06 317441.20 NULL
2021 Fire Department Firefighter 77415.00224 6.561696e+08 204911504.15 2.417550e+04 23411.595 5344921.05 8476 2.341160e+04 198436679.22 8.610811e+08 8.546062e+08 6474824.93 NULL
2021 Fire Department First Deputy Commissioner 242767.00000 2.427670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.427670e+05 2.427670e+05 0.00 NULL
2021 Fire Department Head Nurse 91839.60000 4.591980e+05 1776.47 3.552940e+02 0.000 25.75 5 0.000000e+00 0.00 4.609745e+05 4.591980e+05 1776.47 NULL
2021 Fire Department Industrial Hygienist 54499.00000 5.449900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.449900e+04 5.449900e+04 0.00 NULL
2021 Fire Department Institutional Aide 40048.00000 1.201440e+05 21167.26 7.055753e+03 0.000 716.25 3 0.000000e+00 0.00 1.413113e+05 1.201440e+05 21167.26 NULL
2021 Fire Department Investigator 54718.36000 1.367959e+06 32197.26 1.287890e+03 0.000 842.50 25 0.000000e+00 0.00 1.400156e+06 1.367959e+06 32197.26 NULL
2021 Fire Department It Automation And Monitoring Engineer 139000.00000 1.390000e+05 1664.26 1.664260e+03 1664.260 20.75 1 1.664260e+03 1664.26 1.406643e+05 1.406643e+05 0.00 NULL
2021 Fire Department It Infrastructure Engineer 147760.50000 2.955210e+05 44112.71 2.205635e+04 22056.355 431.25 2 2.205635e+04 44112.71 3.396337e+05 3.396337e+05 0.00 NULL
2021 Fire Department It Project Specialist 124935.00000 1.249350e+05 50589.44 5.058944e+04 50589.440 570.75 1 5.058944e+04 50589.44 1.755244e+05 1.755244e+05 0.00 NULL
2021 Fire Department It Security Specialist 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2021 Fire Department It Service Management Specialist 121868.00000 2.437360e+05 3602.19 1.801095e+03 1801.095 46.00 2 1.801095e+03 3602.19 2.473382e+05 2.473382e+05 0.00 NULL
2021 Fire Department Lieutenant 112004.17766 1.935432e+08 49552033.47 2.867595e+04 27467.605 783202.02 1728 2.746760e+04 47464021.44 2.430953e+08 2.410072e+08 2088012.03 NULL
2021 Fire Department Locksmith NA NA 18743.68 3.748736e+03 3920.020 424.75 5 3.748736e+03 18743.68 NA NA NA NULL
2021 Fire Department Machinist NA NA 41827.11 4.182711e+04 41827.110 637.00 1 4.182711e+04 41827.11 NA NA NA NULL
2021 Fire Department Maintenance Worker NA NA 7525.14 7.525140e+03 7525.140 161.00 1 7.525140e+03 7525.14 NA NA NA NULL
2021 Fire Department Marine Engineer 96627.89286 2.705581e+06 1384856.91 4.945918e+04 49052.700 27776.59 28 4.905270e+04 1373475.60 4.090438e+06 4.079057e+06 11381.31 NULL
2021 Fire Department Marine Maintenance Mechanic 73975.25000 2.959010e+05 67132.76 1.678319e+04 16827.665 1458.50 4 1.678319e+04 67132.76 3.630338e+05 3.630338e+05 0.00 NULL
2021 Fire Department Mechanical Engineering Intern 59125.00000 1.773750e+05 1686.49 5.621633e+02 0.000 45.75 3 0.000000e+00 0.00 1.790615e+05 1.773750e+05 1686.49 NULL
2021 Fire Department Metal Work Mechanic 81018.50000 1.620370e+05 93756.87 4.687843e+04 46878.435 1610.75 2 4.687843e+04 93756.87 2.557939e+05 2.557939e+05 0.00 NULL
2021 Fire Department Motor Vehicle Operator 49210.65900 7.381599e+05 38456.96 2.563797e+03 1161.400 1008.75 15 1.161400e+03 17421.00 7.766168e+05 7.555809e+05 21035.96 NULL
2021 Fire Department Motor Vehicle Supervisor 60160.00000 1.203200e+05 27878.92 1.393946e+04 13939.460 614.75 2 1.393946e+04 27878.92 1.481989e+05 1.481989e+05 0.00 NULL
2021 Fire Department New York City Public Service Fellow 42127.00000 8.425400e+04 368.92 1.844600e+02 184.460 16.00 2 1.844600e+02 368.92 8.462292e+04 8.462292e+04 0.00 NULL
2021 Fire Department Oiler NA NA 268068.08 5.361362e+04 51833.330 3014.00 5 5.183333e+04 259166.65 NA NA NA NULL
2021 Fire Department Painter NA NA 15091.47 7.545735e+03 7545.735 240.75 2 7.545735e+03 15091.47 NA NA NA NULL
2021 Fire Department Physician 59107.30010 2.364292e+05 3.23 8.075000e-01 0.000 0.00 4 0.000000e+00 0.00 2.364324e+05 2.364292e+05 3.23 NULL
2021 Fire Department Physician’s Assistant 71284.65565 1.425693e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.425693e+05 1.425693e+05 0.00 NULL
2021 Fire Department Pilot 101218.76923 1.315844e+06 932689.91 7.174538e+04 80464.590 17402.31 13 7.174538e+04 932689.91 2.248534e+06 2.248534e+06 0.00 NULL
2021 Fire Department Planner: Production Cntrl & Scheduling 60387.50000 1.207750e+05 116833.96 5.841698e+04 58416.980 2274.50 2 5.841698e+04 116833.96 2.376090e+05 2.376090e+05 0.00 NULL
2021 Fire Department Plasterer NA NA 8437.47 8.437470e+03 8437.470 139.00 1 8.437470e+03 8437.47 NA NA NA NULL
2021 Fire Department Plumber NA NA 682892.84 4.877806e+04 47827.885 6483.50 14 4.782789e+04 669590.39 NA NA NA NULL
2021 Fire Department Principal Administrative Associate - Non Supvr 65039.26362 7.609594e+06 181304.28 1.549609e+03 0.000 3856.50 117 0.000000e+00 0.00 7.790898e+06 7.609594e+06 181304.28 NULL
2021 Fire Department Procurement Analyst 61585.27565 1.231706e+06 26381.47 1.319073e+03 0.000 634.50 20 0.000000e+00 0.00 1.258087e+06 1.231706e+06 26381.47 NULL
2021 Fire Department Program Producer 51742.44792 3.104547e+05 7980.12 1.330020e+03 1027.850 155.75 6 1.027850e+03 6167.10 3.184348e+05 3.166218e+05 1813.02 NULL
2021 Fire Department Project Manager 65640.00000 5.907600e+05 11379.64 1.264404e+03 1.080 258.25 9 1.080000e+00 9.72 6.021396e+05 5.907697e+05 11369.92 NULL
2021 Fire Department Psychologist 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2021 Fire Department Public Records Aide 42259.40000 6.338910e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 6.338910e+05 6.338910e+05 0.00 NULL
2021 Fire Department Public Records Officer 63500.00000 6.350000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.350000e+04 6.350000e+04 0.00 NULL
2021 Fire Department Radio Repair Mechanic NA NA 1053391.98 2.025754e+04 8746.605 14579.50 52 8.746605e+03 454823.46 NA NA NA NULL
2021 Fire Department Research Assistant 65670.00000 1.313400e+05 99.61 4.980500e+01 49.805 2.75 2 4.980500e+01 99.61 1.314396e+05 1.314396e+05 0.00 NULL
2021 Fire Department Roofer NA NA 31350.45 1.567523e+04 15675.225 532.25 2 1.567523e+04 31350.45 NA NA NA NULL
2021 Fire Department Rubber Tire Repairer NA NA 84265.39 9.362821e+03 7209.020 1941.00 9 7.209020e+03 64881.18 NA NA NA NULL
2021 Fire Department Secretary To The Deputy Commissioner 78500.00000 2.355000e+05 17643.09 5.881030e+03 237.490 303.25 3 2.374900e+02 712.47 2.531431e+05 2.362125e+05 16930.62 NULL
2021 Fire Department Secretary To The Fire Commissioner 127023.00000 1.270230e+05 2094.42 2.094420e+03 2094.420 26.75 1 2.094420e+03 2094.42 1.291174e+05 1.291174e+05 0.00 NULL
2021 Fire Department Secretary To The First Deputy Commissioner 92405.00000 9.240500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.240500e+04 9.240500e+04 0.00 NULL
2021 Fire Department Senior It Architect 132911.00000 2.658220e+05 28673.46 1.433673e+04 14336.730 295.75 2 1.433673e+04 28673.46 2.944955e+05 2.944955e+05 0.00 NULL
2021 Fire Department Senior Management Consultant 141628.00000 1.416280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.416280e+05 1.416280e+05 0.00 NULL
2021 Fire Department Senior Photographer 70000.20000 7.000020e+04 1076.63 1.076630e+03 1076.630 26.00 1 1.076630e+03 1076.63 7.107683e+04 7.107683e+04 0.00 NULL
2021 Fire Department Senior Stationary Engineer NA NA 91977.03 9.197703e+04 91977.030 880.00 1 9.197703e+04 91977.03 NA NA NA NULL
2021 Fire Department Senior Supervisor Communication Electrician NA NA 75661.37 3.783068e+04 37830.685 891.25 2 3.783068e+04 75661.37 NA NA NA NULL
2021 Fire Department Sheet Metal Worker NA NA 216215.36 5.405384e+04 60280.240 1883.50 4 5.405384e+04 216215.36 NA NA NA NULL
2021 Fire Department Special Assistant To The Fire Commissioner 101795.00000 1.017950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.017950e+05 1.017950e+05 0.00 NULL
2021 Fire Department Spvsg Fad-Asst Commiss Detail 173040.00000 1.730400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.730400e+05 1.730400e+05 0.00 NULL
2021 Fire Department Spvsg Fad-Dep Dir Dsptch Dtail 112795.00000 2.255900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.255900e+05 2.255900e+05 0.00 NULL
2021 Fire Department Spvsg Fad-Dir Dsptch Op Detail 115680.00000 1.156800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.156800e+05 1.156800e+05 0.00 NULL
2021 Fire Department Staff Analyst 61922.08696 1.424208e+06 12870.36 5.595809e+02 90.830 337.50 23 9.083000e+01 2089.09 1.437078e+06 1.426297e+06 10781.27 NULL
2021 Fire Department Staff Analyst Trainee 48258.00000 9.651600e+04 574.15 2.870750e+02 287.075 21.00 2 2.870750e+02 574.15 9.709015e+04 9.709015e+04 0.00 NULL
2021 Fire Department Stationary Engineer NA NA 64167.63 6.416763e+04 64167.630 674.50 1 6.416763e+04 64167.63 NA NA NA NULL
2021 Fire Department Steam Fitter NA NA 24447.50 2.444750e+04 24447.500 222.25 1 2.444750e+04 24447.50 NA NA NA NULL
2021 Fire Department Steam Fitter’s Helper NA NA 179705.77 5.990192e+04 65350.330 2180.00 3 5.990192e+04 179705.77 NA NA NA NULL
2021 Fire Department Stock Worker 40833.80000 2.041690e+05 37707.38 7.541476e+03 5349.570 1373.75 5 5.349570e+03 26747.85 2.418764e+05 2.309169e+05 10959.53 NULL
2021 Fire Department Strategic Initiative Specialist 155198.00000 1.551980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.551980e+05 1.551980e+05 0.00 NULL
2021 Fire Department Supervising Blasting Inspector 84833.00000 6.786640e+05 29880.32 3.735040e+03 2347.780 482.50 8 2.347780e+03 18782.24 7.085443e+05 6.974462e+05 11098.08 NULL
2021 Fire Department Supervising Communication Electrician NA NA 366603.42 3.332758e+04 31360.930 4471.75 11 3.136093e+04 344970.23 NA NA NA NULL
2021 Fire Department Supervising Computer Service Technician 70691.00000 7.069100e+04 36971.07 3.697107e+04 36971.070 645.75 1 3.697107e+04 36971.07 1.076621e+05 1.076621e+05 0.00 NULL
2021 Fire Department Supervising Emergency Medical Service Specialist 72434.31167 4.346059e+07 11852691.07 1.975449e+04 13982.240 235259.62 600 1.398224e+04 8389344.00 5.531328e+07 5.184993e+07 3463347.07 NULL
2021 Fire Department Supervising Emergency Medical Service Specialist-Dpty Chiefs 115845.32558 4.981349e+06 70.44 1.638140e+00 0.000 0.00 43 0.000000e+00 0.00 4.981419e+06 4.981349e+06 70.44 NULL
2021 Fire Department Supervising Fire Alarm Dispatcher 77595.66667 3.026231e+06 1255422.10 3.219031e+04 28588.340 24632.83 39 2.858834e+04 1114945.26 4.281653e+06 4.141176e+06 140476.84 NULL
2021 Fire Department Supervising Fire Marshal 134402.67442 5.779315e+06 733923.47 1.706799e+04 3269.360 10721.34 43 3.269360e+03 140582.48 6.513238e+06 5.919897e+06 593340.99 NULL
2021 Fire Department Supervisor Carpenter NA NA 169879.41 8.493971e+04 84939.705 1982.50 2 8.493971e+04 169879.41 NA NA NA NULL
2021 Fire Department Supervisor Electrician NA NA 264999.58 8.833319e+04 130455.530 2704.75 3 8.833319e+04 264999.58 NA NA NA NULL
2021 Fire Department Supervisor Locksmith NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Fire Department Supervisor Of Electrical Installations & Maintenance 82097.50000 3.283900e+05 40182.21 1.004555e+04 8101.240 674.25 4 8.101240e+03 32404.96 3.685722e+05 3.607950e+05 7777.25 NULL
2021 Fire Department Supervisor Of Mechanics NA NA 1953207.96 5.278940e+04 52717.770 21324.50 37 5.271777e+04 1950557.49 NA NA NA NULL
2021 Fire Department Supervisor Of Stock Workers 56692.71429 1.190547e+06 229423.13 1.092491e+04 11146.360 5838.50 21 1.092491e+04 229423.13 1.419970e+06 1.419970e+06 0.00 NULL
2021 Fire Department Supervisor Plumber NA NA 313467.52 7.836688e+04 74683.090 2835.25 4 7.468309e+04 298732.36 NA NA NA NULL
2021 Fire Department Telecommunication Manager 153476.00000 1.534760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.534760e+05 1.534760e+05 0.00 NULL
2021 Fire Department Telecommunications Associate 74607.23077 9.698940e+05 235758.90 1.813530e+04 15253.220 4076.86 13 1.525322e+04 198291.86 1.205653e+06 1.168186e+06 37467.04 NULL
2021 Fire Department Telecommunications Manager 129368.00000 2.587360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.587360e+05 2.587360e+05 0.00 NULL
2021 Fire Department Wiper 88400.00000 9.724000e+05 655668.22 5.960620e+04 59705.280 14336.50 11 5.960620e+04 655668.22 1.628068e+06 1.628068e+06 0.00 NULL
2021 Fire Department Worker’s Compensation Benefits Examiner 42808.83333 2.568530e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.568530e+05 2.568530e+05 0.00 NULL
2021 Guttman Community College Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 NA NA NA NULL
2021 Guttman Community College Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 NA NA NA NULL
2021 Guttman Community College Assistant Administrator 145006.00000 1.450060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450060e+05 1.450060e+05 0.00 NULL
2021 Guttman Community College Assistant College Security Director 90000.00000 9.000000e+04 4368.47 4.368470e+03 4368.470 32.00 1 4.368470e+03 4368.47 9.436847e+04 9.436847e+04 0.00 NULL
2021 Guttman Community College Assistant Dean 140833.33333 4.225000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.225000e+05 4.225000e+05 0.00 NULL
2021 Guttman Community College Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 NA NA NA NULL
2021 Guttman Community College Assistant To Heo 62865.54545 6.915210e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 6.915210e+05 6.915210e+05 0.00 NULL
2021 Guttman Community College Assistant Vice President 165286.00000 3.305720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.305720e+05 3.305720e+05 0.00 NULL
2021 Guttman Community College Associate Dean 138000.00000 1.380000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.380000e+05 1.380000e+05 0.00 NULL
2021 Guttman Community College Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 NA NA NA NULL
2021 Guttman Community College Business Data And Reporting Analyst 18950.96000 1.895096e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.895096e+04 1.895096e+04 0.00 NULL
2021 Guttman Community College Campus Peace Officer 47649.25000 1.905970e+05 16007.28 4.001820e+03 4368.380 266.00 4 4.001820e+03 16007.28 2.066043e+05 2.066043e+05 0.00 NULL
2021 Guttman Community College Campus Public Safety Sergeant 59944.50000 1.198890e+05 19314.94 9.657470e+03 9657.470 309.00 2 9.657470e+03 19314.94 1.392039e+05 1.392039e+05 0.00 NULL
2021 Guttman Community College Campus Security Assistant 34616.20000 1.730810e+05 9387.71 1.877542e+03 2119.040 144.25 5 1.877542e+03 9387.71 1.824687e+05 1.824687e+05 0.00 NULL
2021 Guttman Community College Clinical Professor 108834.00000 1.088340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.088340e+05 1.088340e+05 0.00 NULL
2021 Guttman Community College College Assistant 11208.99976 8.294660e+05 0.00 0.000000e+00 0.000 0.00 74 0.000000e+00 0.00 8.294660e+05 8.294660e+05 0.00 NULL
2021 Guttman Community College College Lab Technician 58685.00000 5.868500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.868500e+04 5.868500e+04 0.00 NULL
2021 Guttman Community College College Security Director 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2021 Guttman Community College College Security Specialist 67514.00000 6.751400e+04 1962.70 1.962700e+03 1962.700 4.00 1 1.962700e+03 1962.70 6.947670e+04 6.947670e+04 0.00 NULL
2021 Guttman Community College Computer Systems Manager 111300.00000 2.226000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.226000e+05 2.226000e+05 0.00 NULL
2021 Guttman Community College Continuing Education Teacher 2172.07420 5.430186e+04 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 5.430186e+04 5.430186e+04 0.00 NULL
2021 Guttman Community College Cuny Administrator Assistant 52582.00000 5.258200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.258200e+04 5.258200e+04 0.00 NULL
2021 Guttman Community College Cuny Office Assistant 38700.00000 7.740000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.740000e+04 7.740000e+04 0.00 NULL
2021 Guttman Community College Dean 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2021 Guttman Community College Disability Accommodations Specialist 39037.63500 1.171129e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.171129e+05 1.171129e+05 0.00 NULL
2021 Guttman Community College Higher Education Assistant 79535.76000 1.988394e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.988394e+06 1.988394e+06 0.00 NULL
2021 Guttman Community College Higher Education Associate 97228.47619 2.041798e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 2.041798e+06 2.041798e+06 0.00 NULL
2021 Guttman Community College Higher Education Officer 123430.07692 1.604591e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.604591e+06 1.604591e+06 0.00 NULL
2021 Guttman Community College Instructor 71495.00000 1.429900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.429900e+05 1.429900e+05 0.00 NULL
2021 Guttman Community College It Assistant 64321.00000 1.286420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.286420e+05 1.286420e+05 0.00 NULL
2021 Guttman Community College It Associate 79677.00000 7.967700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.967700e+04 7.967700e+04 0.00 NULL
2021 Guttman Community College It Senior Associate 95448.50000 1.908970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.908970e+05 1.908970e+05 0.00 NULL
2021 Guttman Community College It Support Assistant 42302.66667 1.269080e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.269080e+05 1.269080e+05 0.00 NULL
2021 Guttman Community College Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 NA NA NA NULL
2021 Guttman Community College Non-Teaching Adjunct I 3732.16756 1.604832e+05 0.00 0.000000e+00 0.000 0.00 43 0.000000e+00 0.00 1.604832e+05 1.604832e+05 0.00 NULL
2021 Guttman Community College Non-Teaching Adjunct Ii 13219.25500 7.931553e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.931553e+04 7.931553e+04 0.00 NULL
2021 Guttman Community College Non-Teaching Adjunct Iii 3553.69948 1.350406e+05 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 1.350406e+05 1.350406e+05 0.00 NULL
2021 Guttman Community College Non-Teaching Adjunct Iv 3161.42159 3.477564e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 3.477564e+04 3.477564e+04 0.00 NULL
2021 Guttman Community College Non-Teaching Adjunct V 3634.74833 2.180849e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.180849e+04 2.180849e+04 0.00 NULL
2021 Guttman Community College President 222500.00000 4.450000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.450000e+05 4.450000e+05 0.00 NULL
2021 Guttman Community College Professor NA NA 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 NA NA NA NULL
2021 Guttman Community College Student Aide 3488.94231 9.071250e+04 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 9.071250e+04 9.071250e+04 0.00 NULL
2021 Guttman Community College Vice President 166587.00000 3.331740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.331740e+05 3.331740e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt *Attorney At Law 101835.05438 8.146804e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.146804e+05 8.146804e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Accountant 61168.57960 1.529214e+06 569.62 2.278480e+01 0.000 15.50 25 0.000000e+00 0.00 1.529784e+06 1.529214e+06 569.62 NULL
2021 Housing Preservation & Dvlpmnt Adm Manager-Non-Mgrl 84848.27880 6.957559e+06 64897.18 7.914290e+02 0.000 1015.75 82 0.000000e+00 0.00 7.022456e+06 6.957559e+06 64897.18 NULL
2021 Housing Preservation & Dvlpmnt Admin Community Relations Specialist 71629.01602 3.151677e+06 115699.37 2.629531e+03 0.000 1990.75 44 0.000000e+00 0.00 3.267376e+06 3.151677e+06 115699.37 NULL
2021 Housing Preservation & Dvlpmnt Admin Construction Project Manager 128750.00000 1.287500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287500e+05 1.287500e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Admin Housing Development Spec 98428.89362 4.626158e+06 43563.47 9.268823e+02 0.000 772.50 47 0.000000e+00 0.00 4.669721e+06 4.626158e+06 43563.47 NULL
2021 Housing Preservation & Dvlpmnt Administrative Accountant 121540.00000 1.215400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.215400e+05 1.215400e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Administrative Architect 115799.00000 1.157990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.157990e+05 1.157990e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Administrative Business Promotion Coordinator 74018.75000 2.960750e+05 221.34 5.533500e+01 0.000 6.00 4 0.000000e+00 0.00 2.962963e+05 2.960750e+05 221.34 NULL
2021 Housing Preservation & Dvlpmnt Administrative City Planner 113078.07692 1.470015e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.470015e+06 1.470015e+06 0.00 NULL
2021 Housing Preservation & Dvlpmnt Administrative Community Relations Specialist 146799.00000 1.467990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.467990e+05 1.467990e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Administrative Construction Project Manager 113225.00000 1.132250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.132250e+05 1.132250e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Administrative Engineer 119546.66667 3.586400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.586400e+05 3.586400e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Administrative Housing Development Specialist 135040.94737 2.565778e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.565778e+06 2.565778e+06 0.00 NULL
2021 Housing Preservation & Dvlpmnt Administrative Inspector 114499.50000 1.831992e+06 25890.04 1.618128e+03 0.000 428.00 16 0.000000e+00 0.00 1.857882e+06 1.831992e+06 25890.04 NULL
2021 Housing Preservation & Dvlpmnt Administrative Management Auditor 121835.66667 3.655070e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.655070e+05 3.655070e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Administrative Manager 153807.20000 7.690360e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.690360e+05 7.690360e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Administrative Procurement Analyst 120449.00000 2.408980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.408980e+05 2.408980e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Administrative Procurement Analyst-Non-Mgrl 83299.00000 9.995880e+05 4929.99 4.108325e+02 0.000 112.75 12 0.000000e+00 0.00 1.004518e+06 9.995880e+05 4929.99 NULL
2021 Housing Preservation & Dvlpmnt Administrative Project Director 114080.96552 3.308348e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 3.308348e+06 3.308348e+06 0.00 NULL
2021 Housing Preservation & Dvlpmnt Administrative Project Manager 107100.00000 8.568000e+05 18620.72 2.327590e+03 0.000 263.00 8 0.000000e+00 0.00 8.754207e+05 8.568000e+05 18620.72 NULL
2021 Housing Preservation & Dvlpmnt Administrative Public Information Specialist 110216.00000 1.102160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.102160e+05 1.102160e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Administrative Quality Assurance Specialist 100016.00000 1.000160e+05 10808.74 1.080874e+04 10808.740 169.50 1 1.080874e+04 10808.74 1.108247e+05 1.108247e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Administrative Real Property Manager 97335.00000 3.893400e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.893400e+05 3.893400e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Administrative Staff Analyst 107842.78689 6.578410e+06 45418.57 7.445667e+02 0.000 752.50 61 0.000000e+00 0.00 6.623829e+06 6.578410e+06 45418.57 NULL
2021 Housing Preservation & Dvlpmnt Administrative Supervisor Of Building Maintenance 110634.00000 1.106340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.106340e+05 1.106340e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Agency Attorney 96538.87097 5.985410e+06 30823.22 4.971487e+02 0.000 528.00 62 0.000000e+00 0.00 6.016233e+06 5.985410e+06 30823.22 NULL
2021 Housing Preservation & Dvlpmnt Agency Chief Contracting Officer 142827.50000 2.856550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.856550e+05 2.856550e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Appraiser 73690.71429 5.158350e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.158350e+05 5.158350e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Assistant Architect 72269.33333 1.084040e+06 1.21 8.066670e-02 0.000 0.00 15 0.000000e+00 0.00 1.084041e+06 1.084040e+06 1.21 NULL
2021 Housing Preservation & Dvlpmnt Assistant Civil Engineer 69476.00000 3.473800e+05 33251.47 6.650294e+03 291.230 679.25 5 2.912300e+02 1456.15 3.806315e+05 3.488362e+05 31795.32 NULL
2021 Housing Preservation & Dvlpmnt Assistant Commissioner 150787.33333 1.809448e+06 1.74 1.450000e-01 0.000 0.00 12 0.000000e+00 0.00 1.809450e+06 1.809448e+06 1.74 NULL
2021 Housing Preservation & Dvlpmnt Assistant Mechanical Engineer 73777.75000 2.951110e+05 20361.24 5.090310e+03 0.360 385.50 4 3.600000e-01 1.44 3.154722e+05 2.951124e+05 20359.80 NULL
2021 Housing Preservation & Dvlpmnt Assistant Urban Designer 57078.00000 5.707800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.707800e+04 5.707800e+04 0.00 NULL
2021 Housing Preservation & Dvlpmnt Associate Housing Development Specialist 94332.63830 4.433634e+06 54112.69 1.151334e+03 0.000 1014.25 47 0.000000e+00 0.00 4.487747e+06 4.433634e+06 54112.69 NULL
2021 Housing Preservation & Dvlpmnt Associate Inspector 71986.07692 3.743276e+06 102950.61 1.979819e+03 387.875 1800.88 52 3.878750e+02 20169.50 3.846227e+06 3.763446e+06 82781.11 NULL
2021 Housing Preservation & Dvlpmnt Associate Investigator 74064.00000 1.481280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.481280e+05 1.481280e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Associate Project Manager 86850.00000 3.474000e+05 52.34 1.308500e+01 7.640 0.00 4 7.640000e+00 30.56 3.474523e+05 3.474306e+05 21.78 NULL
2021 Housing Preservation & Dvlpmnt Associate Quality Assurance Specialist 70549.00000 7.054900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.054900e+04 7.054900e+04 0.00 NULL
2021 Housing Preservation & Dvlpmnt Associate Real Property Manager 70193.21053 2.667342e+06 11006.73 2.896508e+02 0.000 212.75 38 0.000000e+00 0.00 2.678349e+06 2.667342e+06 11006.73 NULL
2021 Housing Preservation & Dvlpmnt Associate Rehabilitation Specialist 70161.00000 1.403220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.403220e+05 1.403220e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Associate Staff Analyst 85274.27217 1.961308e+06 331.75 1.442391e+01 0.000 7.25 23 0.000000e+00 0.00 1.961640e+06 1.961308e+06 331.75 NULL
2021 Housing Preservation & Dvlpmnt Bookkeeper 60740.40000 3.037020e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.037020e+05 3.037020e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Certified It Administrator 135314.00000 1.353140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.353140e+05 1.353140e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Certified It Developer 106294.60000 5.314730e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.314730e+05 5.314730e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt City Planner 89924.68000 2.248117e+06 6327.24 2.530896e+02 0.000 82.25 25 0.000000e+00 0.00 2.254444e+06 2.248117e+06 6327.24 NULL
2021 Housing Preservation & Dvlpmnt City Research Scientist 94620.50000 7.569640e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.569640e+05 7.569640e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Civil Engineer 89508.00000 8.950800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.950800e+04 8.950800e+04 0.00 NULL
2021 Housing Preservation & Dvlpmnt Clerical Associate 50107.31363 6.964917e+06 84134.05 6.052809e+02 0.000 2406.00 139 0.000000e+00 0.00 7.049051e+06 6.964917e+06 84134.05 NULL
2021 Housing Preservation & Dvlpmnt Commissioner Of Housing Preservation & Development 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Community Assistant 41117.76663 1.069062e+06 2596.52 9.986615e+01 0.000 113.00 26 0.000000e+00 0.00 1.071658e+06 1.069062e+06 2596.52 NULL
2021 Housing Preservation & Dvlpmnt Community Associate 47426.63019 1.541365e+07 208531.26 6.416346e+02 0.000 7136.75 325 0.000000e+00 0.00 1.562219e+07 1.541365e+07 208531.26 NULL
2021 Housing Preservation & Dvlpmnt Community Coordinator 66836.36620 1.898153e+07 166922.05 5.877537e+02 0.000 3724.75 284 0.000000e+00 0.00 1.914845e+07 1.898153e+07 166922.05 NULL
2021 Housing Preservation & Dvlpmnt Community Service Aide 32666.52093 1.959991e+05 327.01 5.450167e+01 0.000 14.25 6 0.000000e+00 0.00 1.963261e+05 1.959991e+05 327.01 NULL
2021 Housing Preservation & Dvlpmnt Computer Associate 92693.87879 3.058898e+06 5976.92 1.811188e+02 0.000 89.75 33 0.000000e+00 0.00 3.064875e+06 3.058898e+06 5976.92 NULL
2021 Housing Preservation & Dvlpmnt Computer Operations Manager 124063.85714 8.684470e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.684470e+05 8.684470e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Computer Specialist 107444.32000 5.372216e+06 71957.43 1.439149e+03 0.000 796.50 50 0.000000e+00 0.00 5.444173e+06 5.372216e+06 71957.43 NULL
2021 Housing Preservation & Dvlpmnt Computer Systems Manager 123720.05128 4.825082e+06 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 4.825082e+06 4.825082e+06 0.00 NULL
2021 Housing Preservation & Dvlpmnt Confidential Strategy Planner 72500.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Construction Project Manager 79306.46863 1.562337e+07 572724.01 2.907228e+03 4.980 9436.50 197 4.980000e+00 981.06 1.619610e+07 1.562436e+07 571742.95 NULL
2021 Housing Preservation & Dvlpmnt Customer Information Representative Ma L 1549 61243.66667 1.837310e+05 367.82 1.226067e+02 166.980 9.75 3 1.226067e+02 367.82 1.840988e+05 1.840988e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Deputy Commissioner 204827.50000 8.193100e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.193100e+05 8.193100e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Deputy Counsel 154905.00000 1.549050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.549050e+05 1.549050e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Deputy General Counsel 173240.20000 8.662010e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.662010e+05 8.662010e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Director Of Neighborhood Conservation 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Director Of Property Management 123522.00000 3.705660e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.705660e+05 3.705660e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Electrician NA NA 59718.38 5.971838e+04 59718.380 617.00 1 5.971838e+04 59718.38 NA NA NA NULL
2021 Housing Preservation & Dvlpmnt Eligibility Specialist 54387.00000 1.087740e+05 2427.86 1.213930e+03 1213.930 62.00 2 1.213930e+03 2427.86 1.112019e+05 1.112019e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Estimator 72902.00000 2.187060e+05 1.81 6.033333e-01 0.000 0.00 3 0.000000e+00 0.00 2.187078e+05 2.187060e+05 1.81 NULL
2021 Housing Preservation & Dvlpmnt Executive Agency Counsel 141118.55556 2.540134e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.540134e+06 2.540134e+06 0.00 NULL
2021 Housing Preservation & Dvlpmnt Executive Assistant To The Deputy Commissioner 98737.80000 4.936890e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.936890e+05 4.936890e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Executive Program Specialist 101283.33333 3.038500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.038500e+05 3.038500e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Housing Development Specialist 76177.78512 9.217512e+06 159255.67 1.316163e+03 0.000 3116.00 121 0.000000e+00 0.00 9.376768e+06 9.217512e+06 159255.67 NULL
2021 Housing Preservation & Dvlpmnt Industrial Hygienist 61670.00000 2.466800e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.466800e+05 2.466800e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Inspector 59819.96802 2.057807e+07 654521.82 1.902680e+03 60.490 14946.17 344 6.049000e+01 20808.56 2.123259e+07 2.059888e+07 633713.26 NULL
2021 Housing Preservation & Dvlpmnt Investigator 65124.38462 8.466170e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 8.466170e+05 8.466170e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Lead Abatement Worker 53976.00000 1.619280e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.619280e+05 1.619280e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Legislative Assistant 96800.00000 2.904000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.904000e+05 2.904000e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Management Auditor 80501.00000 6.440080e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.440080e+05 6.440080e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Multiple Dwelling Specialist 73384.00000 1.467680e+05 12938.03 6.469015e+03 6469.015 226.50 2 6.469015e+03 12938.03 1.597060e+05 1.597060e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt New York City Public Service Fellow 43534.66667 1.306040e+05 8388.25 2.796083e+03 294.920 266.75 3 2.949200e+02 884.76 1.389922e+05 1.314888e+05 7503.49 NULL
2021 Housing Preservation & Dvlpmnt Paralegal Aide 57713.20000 2.885660e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.885660e+05 2.885660e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Principal Administrative Associate - Non Supvr 65695.52336 7.029421e+06 73870.82 6.903815e+02 0.000 1488.45 107 0.000000e+00 0.00 7.103292e+06 7.029421e+06 73870.82 NULL
2021 Housing Preservation & Dvlpmnt Principal Appraiser 131060.00000 1.310600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.310600e+05 1.310600e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Procurement Analyst 66235.42857 4.636480e+05 1168.69 1.669557e+02 0.000 29.00 7 0.000000e+00 0.00 4.648167e+05 4.636480e+05 1168.69 NULL
2021 Housing Preservation & Dvlpmnt Project Manager 65640.00000 6.564000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.564000e+04 6.564000e+04 0.00 NULL
2021 Housing Preservation & Dvlpmnt Quality Assurance Specialist 61207.85714 4.284550e+05 3207.48 4.582114e+02 0.000 75.25 7 0.000000e+00 0.00 4.316625e+05 4.284550e+05 3207.48 NULL
2021 Housing Preservation & Dvlpmnt Real Property Manager 61565.25926 1.662262e+06 6652.63 2.463937e+02 0.000 179.00 27 0.000000e+00 0.00 1.668915e+06 1.662262e+06 6652.63 NULL
2021 Housing Preservation & Dvlpmnt Repair Crew Chief 44398.00000 2.663880e+05 2871.81 4.786350e+02 328.555 97.50 6 3.285550e+02 1971.33 2.692598e+05 2.683593e+05 900.48 NULL
2021 Housing Preservation & Dvlpmnt Repair Shop Manager 78318.00000 7.831800e+04 21905.06 2.190506e+04 21905.060 400.00 1 2.190506e+04 21905.06 1.002231e+05 1.002231e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Secretary 48051.35294 8.168730e+05 6.14 3.611765e-01 0.000 0.00 17 0.000000e+00 0.00 8.168791e+05 8.168730e+05 6.14 NULL
2021 Housing Preservation & Dvlpmnt Secretary Of The Department 141532.00000 1.415320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.415320e+05 1.415320e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Senior Estimator 88421.50000 1.768430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.768430e+05 1.768430e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Senior Repair Crew Chief 59534.75000 2.381390e+05 108445.05 2.711126e+04 28962.845 2496.25 4 2.711126e+04 108445.05 3.465840e+05 3.465840e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Special Assistant To The Commissioner 205000.00000 2.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.050000e+05 2.050000e+05 0.00 NULL
2021 Housing Preservation & Dvlpmnt Staff Analyst 66410.40000 6.641040e+05 94.83 9.483000e+00 0.000 2.50 10 0.000000e+00 0.00 6.641988e+05 6.641040e+05 94.83 NULL
2021 Housing Preservation & Dvlpmnt Strategic Initiative Specialist 108316.12500 8.665290e+05 2164.53 2.705663e+02 0.000 26.00 8 0.000000e+00 0.00 8.686935e+05 8.665290e+05 2164.53 NULL
2021 Housing Preservation & Dvlpmnt Supervising Demolition Inspector 81404.00000 3.256160e+05 23135.42 5.783855e+03 5418.365 409.50 4 5.418365e+03 21673.46 3.487514e+05 3.472895e+05 1461.96 NULL
2021 Housing Preservation & Dvlpmnt Supervisor Of Electrical Installations & Maintenance 90594.50000 3.623780e+05 34.66 8.665000e+00 0.000 0.00 4 0.000000e+00 0.00 3.624127e+05 3.623780e+05 34.66 NULL
2021 Housing Preservation & Dvlpmnt Supervisor Of Mechanical Installations & Maintenance 78936.25000 9.472350e+05 2058.84 1.715700e+02 0.025 38.75 12 2.500000e-02 0.30 9.492938e+05 9.472353e+05 2058.54 NULL
2021 Housing Preservation & Dvlpmnt Supervisor Of Stock Workers 68869.00000 6.886900e+04 2071.13 2.071130e+03 2071.130 41.00 1 2.071130e+03 2071.13 7.094013e+04 7.094013e+04 0.00 NULL
2021 Hra/Dept Of Social Services *Attorney At Law 90797.71429 6.355840e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.355840e+05 6.355840e+05 0.00 NULL
2021 Hra/Dept Of Social Services *Certified Applications Developer 129573.00000 1.295730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.295730e+05 1.295730e+05 0.00 NULL
2021 Hra/Dept Of Social Services *Certified Database Administrator 115100.00000 1.151000e+05 15853.40 1.585340e+04 15853.400 186.75 1 1.585340e+04 15853.40 1.309534e+05 1.309534e+05 0.00 NULL
2021 Hra/Dept Of Social Services *Certified Local Area Network Administrator 101336.66667 9.120300e+05 45123.77 5.013752e+03 0.000 611.75 9 0.000000e+00 0.00 9.571538e+05 9.120300e+05 45123.77 NULL
2021 Hra/Dept Of Social Services *Certified Wide Area Network Administrator 113753.00000 1.137530e+05 13976.30 1.397630e+04 13976.300 180.00 1 1.397630e+04 13976.30 1.277293e+05 1.277293e+05 0.00 NULL
2021 Hra/Dept Of Social Services *Custodial Assistant 37378.00000 3.737800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.737800e+04 3.737800e+04 0.00 NULL
2021 Hra/Dept Of Social Services Accountant 65215.26667 9.782290e+05 3169.79 2.113193e+02 0.000 75.75 15 0.000000e+00 0.00 9.813988e+05 9.782290e+05 3169.79 NULL
2021 Hra/Dept Of Social Services Adm Manager-Non-Mgrl 81465.37931 7.087488e+06 316712.62 3.640375e+03 0.000 5595.50 87 0.000000e+00 0.00 7.404201e+06 7.087488e+06 316712.62 NULL
2021 Hra/Dept Of Social Services Admin Community Relations Specialist 98320.50000 2.752974e+06 26758.25 9.556518e+02 0.000 468.75 28 0.000000e+00 0.00 2.779732e+06 2.752974e+06 26758.25 NULL
2021 Hra/Dept Of Social Services Admin Construction Project Manager 120792.00000 1.207920e+05 2789.22 2.789220e+03 2789.220 30.50 1 2.789220e+03 2789.22 1.235812e+05 1.235812e+05 0.00 NULL
2021 Hra/Dept Of Social Services Admin Contract Specialist 122348.25000 4.893930e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.893930e+05 4.893930e+05 0.00 NULL
2021 Hra/Dept Of Social Services Admin Job Opor Spec-Managerial 138554.44000 3.463861e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 3.463861e+06 3.463861e+06 0.00 NULL
2021 Hra/Dept Of Social Services Admin Job Opportunity Spec Nm 88169.77551 8.640638e+06 719265.11 7.339440e+03 5346.055 11264.50 98 5.346055e+03 523913.39 9.359903e+06 9.164551e+06 195351.72 NULL
2021 Hra/Dept Of Social Services Administrative Accountant 107434.70000 1.074347e+06 1729.22 1.729220e+02 0.000 33.50 10 0.000000e+00 0.00 1.076076e+06 1.074347e+06 1729.22 NULL
2021 Hra/Dept Of Social Services Administrative Architect 122590.50000 2.451810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.451810e+05 2.451810e+05 0.00 NULL
2021 Hra/Dept Of Social Services Administrative Business Promotion Coordinator 103443.00000 4.137720e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.137720e+05 4.137720e+05 0.00 NULL
2021 Hra/Dept Of Social Services Administrative City Planner 88774.00000 8.877400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.877400e+04 8.877400e+04 0.00 NULL
2021 Hra/Dept Of Social Services Administrative Community Relations Specialist 170093.66667 5.102810e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.102810e+05 5.102810e+05 0.00 NULL
2021 Hra/Dept Of Social Services Administrative Construction Project Manager 123150.00000 1.231500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.231500e+05 1.231500e+05 0.00 NULL
2021 Hra/Dept Of Social Services Administrative Contract Specialist 84385.88889 7.594730e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.594730e+05 7.594730e+05 0.00 NULL
2021 Hra/Dept Of Social Services Administrative Director Of Social Services 110481.72436 1.723515e+07 37947.91 2.432558e+02 0.000 572.25 156 0.000000e+00 0.00 1.727310e+07 1.723515e+07 37947.91 NULL
2021 Hra/Dept Of Social Services Administrative Engineer 120389.00000 1.203890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.203890e+05 1.203890e+05 0.00 NULL
2021 Hra/Dept Of Social Services Administrative Graphic Artist 94875.00000 9.487500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.487500e+04 9.487500e+04 0.00 NULL
2021 Hra/Dept Of Social Services Administrative Investigator 96444.65789 3.664897e+06 5993.41 1.577213e+02 0.000 96.75 38 0.000000e+00 0.00 3.670890e+06 3.664897e+06 5993.41 NULL
2021 Hra/Dept Of Social Services Administrative Labor Relations Analyst 101400.00000 1.014000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.014000e+05 1.014000e+05 0.00 NULL
2021 Hra/Dept Of Social Services Administrative Management Auditor 109112.50000 1.309350e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.309350e+06 1.309350e+06 0.00 NULL
2021 Hra/Dept Of Social Services Administrative Manager 124108.80000 6.205440e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.205440e+05 6.205440e+05 0.00 NULL
2021 Hra/Dept Of Social Services Administrative Printing Services Manager 113015.33333 3.390460e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.390460e+05 3.390460e+05 0.00 NULL
2021 Hra/Dept Of Social Services Administrative Procurement Analyst-Non-Mgrl 89989.76667 2.699693e+06 1010.64 3.368800e+01 0.000 10.00 30 0.000000e+00 0.00 2.700704e+06 2.699693e+06 1010.64 NULL
2021 Hra/Dept Of Social Services Administrative Public Information Specialist 122670.80000 1.226708e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.226708e+06 1.226708e+06 0.00 NULL
2021 Hra/Dept Of Social Services Administrative Retirement Benefits Specialist 91902.00000 9.190200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.190200e+04 9.190200e+04 0.00 NULL
2021 Hra/Dept Of Social Services Administrative Space Analyst 96721.16667 5.803270e+05 0.88 1.466667e-01 0.000 0.00 6 0.000000e+00 0.00 5.803279e+05 5.803270e+05 0.88 NULL
2021 Hra/Dept Of Social Services Administrative Staff Analyst 101680.23853 3.324944e+07 166971.48 5.106161e+02 0.000 2755.50 327 0.000000e+00 0.00 3.341641e+07 3.324944e+07 166971.48 NULL
2021 Hra/Dept Of Social Services Administrative Storekeeper 110013.00000 3.300390e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.300390e+05 3.300390e+05 0.00 NULL
2021 Hra/Dept Of Social Services Administrative Supervisor Of Building Maintenance 137916.66667 8.275000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.275000e+05 8.275000e+05 0.00 NULL
2021 Hra/Dept Of Social Services Agency Attorney 85578.93458 9.156946e+06 22419.92 2.095320e+02 0.000 360.50 107 0.000000e+00 0.00 9.179366e+06 9.156946e+06 22419.92 NULL
2021 Hra/Dept Of Social Services Agency Attorney Interne 65545.58333 7.865470e+05 7461.64 6.218033e+02 0.000 184.00 12 0.000000e+00 0.00 7.940086e+05 7.865470e+05 7461.64 NULL
2021 Hra/Dept Of Social Services Agency Chief Contracting Officer 204106.00000 2.041060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.041060e+05 2.041060e+05 0.00 NULL
2021 Hra/Dept Of Social Services Architect 92640.00000 9.264000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.264000e+04 9.264000e+04 0.00 NULL
2021 Hra/Dept Of Social Services Assist Commissioner For Policy Analysis & Prog Deve 145230.00000 1.452300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.452300e+05 1.452300e+05 0.00 NULL
2021 Hra/Dept Of Social Services Assistant Administrator Of Public Affairs 118450.00000 1.184500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.184500e+05 1.184500e+05 0.00 NULL
2021 Hra/Dept Of Social Services Assistant Architect 71362.00000 1.427240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.427240e+05 1.427240e+05 0.00 NULL
2021 Hra/Dept Of Social Services Assistant Commissioner 187734.60000 9.386730e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.386730e+05 9.386730e+05 0.00 NULL
2021 Hra/Dept Of Social Services Assistant Deputy Administrator 191169.50000 3.823390e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.823390e+05 3.823390e+05 0.00 NULL
2021 Hra/Dept Of Social Services Assistant Deputy Commissioner Ss 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2021 Hra/Dept Of Social Services Assistant Printing Press Operator 60757.50000 1.215150e+05 1.05 5.250000e-01 0.525 0.00 2 5.250000e-01 1.05 1.215161e+05 1.215161e+05 0.00 NULL
2021 Hra/Dept Of Social Services Assistant Superintendent Of Welfare Shelters 69961.83333 8.395420e+05 19333.77 1.611148e+03 1345.230 435.25 12 1.345230e+03 16142.76 8.588758e+05 8.556848e+05 3191.01 NULL
2021 Hra/Dept Of Social Services Assoc Adm For Purchasing Materials Mgt & Envir Control 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2021 Hra/Dept Of Social Services Associate Commissioner For Employment Service 172000.00000 1.720000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.720000e+05 1.720000e+05 0.00 NULL
2021 Hra/Dept Of Social Services Associate Commissioner For Personnel Service 129954.00000 1.299540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.299540e+05 1.299540e+05 0.00 NULL
2021 Hra/Dept Of Social Services Associate Contract Specialist 71930.28571 5.035120e+05 -0.87 -1.242857e-01 0.000 0.00 7 -1.242857e-01 -0.87 5.035111e+05 5.035111e+05 0.00 NULL
2021 Hra/Dept Of Social Services Associate Fraud Investigator 72253.44131 1.538998e+07 128118.14 6.014936e+02 0.000 2353.75 213 0.000000e+00 0.00 1.551810e+07 1.538998e+07 128118.14 NULL
2021 Hra/Dept Of Social Services Associate Housing Development Specialist 88976.71429 6.228370e+05 11099.39 1.585627e+03 0.000 230.25 7 0.000000e+00 0.00 6.339364e+05 6.228370e+05 11099.39 NULL
2021 Hra/Dept Of Social Services Associate Job Opportunity Specialist 64474.17358 5.125697e+07 8400811.91 1.056706e+04 7152.380 173119.00 795 7.152380e+03 5686142.10 5.965778e+07 5.694311e+07 2714669.81 NULL
2021 Hra/Dept Of Social Services Associate Labor Relations Analyst 86864.50000 3.474580e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.474580e+05 3.474580e+05 0.00 NULL
2021 Hra/Dept Of Social Services Associate Project Manager 88377.00000 8.837700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.837700e+04 8.837700e+04 0.00 NULL
2021 Hra/Dept Of Social Services Associate Staff Analyst 77484.77647 1.317241e+07 136363.68 8.021393e+02 0.000 2539.25 170 0.000000e+00 0.00 1.330878e+07 1.317241e+07 136363.68 NULL
2021 Hra/Dept Of Social Services Asst Commissioner For Public & Legis Affairs 111001.00000 1.110010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.110010e+05 1.110010e+05 0.00 NULL
2021 Hra/Dept Of Social Services Bookbinder 43831.00000 4.383100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.383100e+04 4.383100e+04 0.00 NULL
2021 Hra/Dept Of Social Services Bookkeeper 50278.40000 4.525056e+06 201992.35 2.244359e+03 0.000 5264.25 90 0.000000e+00 0.00 4.727048e+06 4.525056e+06 201992.35 NULL
2021 Hra/Dept Of Social Services Business Promotion Coordinator 84215.00000 1.684300e+05 381.92 1.909600e+02 190.960 7.50 2 1.909600e+02 381.92 1.688119e+05 1.688119e+05 0.00 NULL
2021 Hra/Dept Of Social Services Carpenter NA NA 74744.12 5.749548e+03 6161.700 813.50 13 5.749548e+03 74744.12 NA NA NA NULL
2021 Hra/Dept Of Social Services Caseworker 47879.64875 6.324902e+07 1567164.46 1.186347e+03 0.000 39246.50 1321 0.000000e+00 0.00 6.481618e+07 6.324902e+07 1567164.46 NULL
2021 Hra/Dept Of Social Services Cement Mason NA NA 769.60 3.848000e+02 384.800 8.00 2 3.848000e+02 769.60 NA NA NA NULL
2021 Hra/Dept Of Social Services Certified It Administrator 102558.38710 3.179310e+06 295790.48 9.541628e+03 8716.650 3872.00 31 8.716650e+03 270216.15 3.475100e+06 3.449526e+06 25574.33 NULL
2021 Hra/Dept Of Social Services Certified It Developer 113797.90000 1.137979e+06 84628.88 8.462888e+03 3390.790 1047.50 10 3.390790e+03 33907.90 1.222608e+06 1.171887e+06 50720.98 NULL
2021 Hra/Dept Of Social Services Chief Of Staff 175100.00000 1.751000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.751000e+05 1.751000e+05 0.00 NULL
2021 Hra/Dept Of Social Services City Custodial Assistant 39835.50000 7.967100e+04 146.54 7.327000e+01 73.270 5.50 2 7.327000e+01 146.54 7.981754e+04 7.981754e+04 0.00 NULL
2021 Hra/Dept Of Social Services City Laborer NA NA 38560.95 2.410059e+03 2542.035 624.50 16 2.410059e+03 38560.95 NA NA NA NULL
2021 Hra/Dept Of Social Services City Planner 87393.00000 8.739300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.739300e+04 8.739300e+04 0.00 NULL
2021 Hra/Dept Of Social Services City Research Scientist 93473.68421 5.328000e+06 27145.82 4.762425e+02 0.000 548.50 57 0.000000e+00 0.00 5.355146e+06 5.328000e+06 27145.82 NULL
2021 Hra/Dept Of Social Services Clerical Aide 35848.40000 1.792420e+05 2433.79 4.867580e+02 0.000 83.00 5 0.000000e+00 0.00 1.816758e+05 1.792420e+05 2433.79 NULL
2021 Hra/Dept Of Social Services Clerical Associate 41562.75865 3.349958e+07 1457161.32 1.807892e+03 0.000 44401.13 806 0.000000e+00 0.00 3.495674e+07 3.349958e+07 1457161.32 NULL
2021 Hra/Dept Of Social Services Community Assistant 37815.06154 2.457979e+06 69248.07 1.065355e+03 0.000 2641.00 65 0.000000e+00 0.00 2.527227e+06 2.457979e+06 69248.07 NULL
2021 Hra/Dept Of Social Services Community Associate 42760.50604 1.582139e+07 564284.16 1.525092e+03 0.000 17839.27 370 0.000000e+00 0.00 1.638567e+07 1.582139e+07 564284.16 NULL
2021 Hra/Dept Of Social Services Community Coordinator 66077.79307 2.035196e+07 833378.52 2.705774e+03 0.000 19140.25 308 0.000000e+00 0.00 2.118534e+07 2.035196e+07 833378.52 NULL
2021 Hra/Dept Of Social Services Computer Aide-Non-Spvr 49930.33333 2.995820e+05 602.87 1.004783e+02 0.000 17.25 6 0.000000e+00 0.00 3.001849e+05 2.995820e+05 602.87 NULL
2021 Hra/Dept Of Social Services Computer Associate 74947.56589 9.668236e+06 664725.03 5.152907e+03 0.000 12211.00 129 0.000000e+00 0.00 1.033296e+07 9.668236e+06 664725.03 NULL
2021 Hra/Dept Of Social Services Computer Operations Manager 127868.62500 1.022949e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.022949e+06 1.022949e+06 0.00 NULL
2021 Hra/Dept Of Social Services Computer Programmer Analyst 70820.00000 7.082000e+04 452.52 4.525200e+02 452.520 10.75 1 4.525200e+02 452.52 7.127252e+04 7.127252e+04 0.00 NULL
2021 Hra/Dept Of Social Services Computer Service Technician 51132.25000 4.090580e+05 88108.24 1.101353e+04 2303.005 2122.00 8 2.303005e+03 18424.04 4.971662e+05 4.274820e+05 69684.20 NULL
2021 Hra/Dept Of Social Services Computer Specialist 103395.34451 3.391367e+07 1529462.87 4.662997e+03 0.000 21053.75 328 0.000000e+00 0.00 3.544314e+07 3.391367e+07 1529462.87 NULL
2021 Hra/Dept Of Social Services Computer Systems Manager 135095.16250 1.080761e+07 35501.48 4.437685e+02 0.000 398.75 80 0.000000e+00 0.00 1.084311e+07 1.080761e+07 35501.48 NULL
2021 Hra/Dept Of Social Services Confidential Strategy Planner 87450.00000 4.372500e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.372500e+05 4.372500e+05 0.00 NULL
2021 Hra/Dept Of Social Services Construction Project Manager 86746.33333 2.602390e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.602390e+05 2.602390e+05 0.00 NULL
2021 Hra/Dept Of Social Services Consultant 74443.88889 6.699950e+05 6861.73 7.624144e+02 0.000 142.75 9 0.000000e+00 0.00 6.768567e+05 6.699950e+05 6861.73 NULL
2021 Hra/Dept Of Social Services Contract Specialist 59100.46154 7.683060e+05 49070.44 3.774649e+03 0.000 1056.25 13 0.000000e+00 0.00 8.173764e+05 7.683060e+05 49070.44 NULL
2021 Hra/Dept Of Social Services Custodian 46546.90244 3.816846e+06 416825.08 5.083233e+03 4182.270 11671.50 82 4.182270e+03 342946.14 4.233671e+06 4.159792e+06 73878.94 NULL
2021 Hra/Dept Of Social Services Deputy Assistant Commissioner 145945.00000 1.459450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.459450e+05 1.459450e+05 0.00 NULL
2021 Hra/Dept Of Social Services Deputy Asst Admin For Personnel Adm & Labor Rel 106023.00000 1.060230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.060230e+05 1.060230e+05 0.00 NULL
2021 Hra/Dept Of Social Services Deputy Commisioner 108150.00000 1.081500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081500e+05 1.081500e+05 0.00 NULL
2021 Hra/Dept Of Social Services Deputy Commissioner 213869.00000 4.277380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.277380e+05 4.277380e+05 0.00 NULL
2021 Hra/Dept Of Social Services Deputy Commissioner Of It 155358.33333 4.660750e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.660750e+05 4.660750e+05 0.00 NULL
2021 Hra/Dept Of Social Services Deputy Director Of Administration 117305.07692 1.524966e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.524966e+06 1.524966e+06 0.00 NULL
2021 Hra/Dept Of Social Services Deputy Director Of Labor Relations 115924.50000 2.318490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.318490e+05 2.318490e+05 0.00 NULL
2021 Hra/Dept Of Social Services Deputy Director Of Security 96586.33333 2.897590e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.897590e+05 2.897590e+05 0.00 NULL
2021 Hra/Dept Of Social Services Deputy General Counsel 98500.00000 1.970000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.970000e+05 1.970000e+05 0.00 NULL
2021 Hra/Dept Of Social Services Dir Of Contract Mgmt & Intergovernmental Relations 97850.00000 9.785000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.785000e+04 9.785000e+04 0.00 NULL
2021 Hra/Dept Of Social Services Dir Of Home Care Services/Family And Adult Services 126331.00000 1.263310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.263310e+05 1.263310e+05 0.00 NULL
2021 Hra/Dept Of Social Services Dir Of Mgnt System, Planning, Research And Eval 157364.00000 3.147280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.147280e+05 3.147280e+05 0.00 NULL
2021 Hra/Dept Of Social Services Dir Policy Econom Resrch 92436.00000 9.243600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.243600e+04 9.243600e+04 0.00 NULL
2021 Hra/Dept Of Social Services Director Of Admin 215848.00000 2.158480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.158480e+05 2.158480e+05 0.00 NULL
2021 Hra/Dept Of Social Services Director Of Community Participation Programs 106576.50000 2.131530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.131530e+05 2.131530e+05 0.00 NULL
2021 Hra/Dept Of Social Services Director Of Compliance & Legislative Development 95676.00000 9.567600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.567600e+04 9.567600e+04 0.00 NULL
2021 Hra/Dept Of Social Services Director Of Eeo 114173.00000 1.141730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.141730e+05 1.141730e+05 0.00 NULL
2021 Hra/Dept Of Social Services Director Of Eeo/Contract Compliance 139467.00000 1.394670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.394670e+05 1.394670e+05 0.00 NULL
2021 Hra/Dept Of Social Services Director Of Fiscal Operations 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2021 Hra/Dept Of Social Services Director Of Food Stamp Program 156000.00000 1.560000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.560000e+05 1.560000e+05 0.00 NULL
2021 Hra/Dept Of Social Services Director Of Information Services 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2021 Hra/Dept Of Social Services Director Of Labor Relations 165534.00000 1.655340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.655340e+05 1.655340e+05 0.00 NULL
2021 Hra/Dept Of Social Services Director Of Management Design 93730.00000 9.373000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.373000e+04 9.373000e+04 0.00 NULL
2021 Hra/Dept Of Social Services Director Of Management Planning Ss 140516.75000 5.620670e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.620670e+05 5.620670e+05 0.00 NULL
2021 Hra/Dept Of Social Services Director Of Policy Analysis 162380.50000 3.247610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.247610e+05 3.247610e+05 0.00 NULL
2021 Hra/Dept Of Social Services Director Of Program Planning 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2021 Hra/Dept Of Social Services Director Of Public Information 128750.00000 1.287500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287500e+05 1.287500e+05 0.00 NULL
2021 Hra/Dept Of Social Services Director Of Security 101110.00000 1.011100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.011100e+05 1.011100e+05 0.00 NULL
2021 Hra/Dept Of Social Services Electrician NA NA 10851.69 8.347454e+02 0.000 118.50 13 0.000000e+00 0.00 NA NA NA NULL
2021 Hra/Dept Of Social Services Electricians Helper NA NA 4648.82 7.748033e+02 305.080 80.00 6 3.050800e+02 1830.48 NA NA NA NULL
2021 Hra/Dept Of Social Services Eligibility Specialist 43806.97190 9.821523e+07 10519695.44 4.692103e+03 5.110 302571.53 2242 5.110000e+00 11456.62 1.087349e+08 9.822669e+07 10508238.82 NULL
2021 Hra/Dept Of Social Services Exec Asst To The Deputy Commissioner 98340.00000 1.966800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.966800e+05 1.966800e+05 0.00 NULL
2021 Hra/Dept Of Social Services Executive Agency Counsel 136297.64151 7.223775e+06 2092.00 3.947170e+01 0.000 38.00 53 0.000000e+00 0.00 7.225867e+06 7.223775e+06 2092.00 NULL
2021 Hra/Dept Of Social Services Executive Assistant To The Commissioner Of Community Develop 186923.00000 1.869230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.869230e+05 1.869230e+05 0.00 NULL
2021 Hra/Dept Of Social Services Executive Assistant To The Executive Deputy Adm 105575.00000 2.111500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.111500e+05 2.111500e+05 0.00 NULL
2021 Hra/Dept Of Social Services Executive Asst-Domestic Violence-Hra 62652.00000 3.132600e+05 379.44 7.588800e+01 0.000 10.75 5 0.000000e+00 0.00 3.136394e+05 3.132600e+05 379.44 NULL
2021 Hra/Dept Of Social Services Executive Deputy Administrator 217664.33333 6.529930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.529930e+05 6.529930e+05 0.00 NULL
2021 Hra/Dept Of Social Services Executive Program Specialist 174866.00000 3.497320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.497320e+05 3.497320e+05 0.00 NULL
2021 Hra/Dept Of Social Services Fraud Investigator 55320.08498 2.799196e+07 119855.66 2.368689e+02 0.000 2645.40 506 0.000000e+00 0.00 2.811182e+07 2.799196e+07 119855.66 NULL
2021 Hra/Dept Of Social Services General Counsel 215857.00000 2.158570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.158570e+05 2.158570e+05 0.00 NULL
2021 Hra/Dept Of Social Services Graphic Artist 56953.00000 5.125770e+05 7.73 8.588889e-01 0.000 0.00 9 0.000000e+00 0.00 5.125847e+05 5.125770e+05 7.73 NULL
2021 Hra/Dept Of Social Services Head Nurse 85111.44444 1.532006e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.532006e+06 1.532006e+06 0.00 NULL
2021 Hra/Dept Of Social Services Health Services Manager Non Managerial Level I 115664.00000 1.156640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.156640e+05 1.156640e+05 0.00 NULL
2021 Hra/Dept Of Social Services Homemaker 37489.00000 7.497800e+04 1264.47 6.322350e+02 632.235 51.25 2 6.322350e+02 1264.47 7.624247e+04 7.624247e+04 0.00 NULL
2021 Hra/Dept Of Social Services Human Resources Administrator 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2021 Hra/Dept Of Social Services Human Resources Technician 36871.00000 3.687100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.687100e+04 3.687100e+04 0.00 NULL
2021 Hra/Dept Of Social Services Investigator 64335.00000 6.433500e+05 5.07 5.070000e-01 0.000 0.00 10 0.000000e+00 0.00 6.433551e+05 6.433500e+05 5.07 NULL
2021 Hra/Dept Of Social Services It Project Specialist 110266.83333 9.262414e+06 208814.48 2.485887e+03 0.000 3009.80 84 0.000000e+00 0.00 9.471228e+06 9.262414e+06 208814.48 NULL
2021 Hra/Dept Of Social Services It Service Management Specialist 118167.00000 1.181670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.181670e+05 1.181670e+05 0.00 NULL
2021 Hra/Dept Of Social Services Job Opportunity Specialist 48313.88226 6.155189e+07 12261419.22 9.624348e+03 3331.525 326318.68 1274 3.331525e+03 4244362.85 7.381331e+07 6.579625e+07 8017056.37 NULL
2021 Hra/Dept Of Social Services Locksmith NA NA 597.56 2.987800e+02 298.780 14.50 2 2.987800e+02 597.56 NA NA NA NULL
2021 Hra/Dept Of Social Services Management Auditor 69385.05128 2.706017e+06 8990.12 2.305159e+02 0.000 160.75 39 0.000000e+00 0.00 2.715007e+06 2.706017e+06 8990.12 NULL
2021 Hra/Dept Of Social Services Mechanical Engineer 98354.00000 9.835400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.835400e+04 9.835400e+04 0.00 NULL
2021 Hra/Dept Of Social Services Medical Specialist 13581.51000 5.432604e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.432604e+04 5.432604e+04 0.00 NULL
2021 Hra/Dept Of Social Services Motor Vehicle Operator 47432.54545 5.217580e+05 37642.43 3.422039e+03 757.590 1118.00 11 7.575900e+02 8333.49 5.594004e+05 5.300915e+05 29308.94 NULL
2021 Hra/Dept Of Social Services Motor Vehicle Supervisor 61261.75000 2.450470e+05 7772.68 1.943170e+03 830.000 154.75 4 8.300000e+02 3320.00 2.528197e+05 2.483670e+05 4452.68 NULL
2021 Hra/Dept Of Social Services New York City Public Service Fellow 46350.00000 4.635000e+04 938.66 9.386600e+02 938.660 28.00 1 9.386600e+02 938.66 4.728866e+04 4.728866e+04 0.00 NULL
2021 Hra/Dept Of Social Services Office Machine Aide 36992.91667 4.439150e+05 2476.39 2.063658e+02 0.000 68.75 12 0.000000e+00 0.00 4.463914e+05 4.439150e+05 2476.39 NULL
2021 Hra/Dept Of Social Services Oiler NA NA 23665.81 4.733162e+03 5558.340 264.00 5 4.733162e+03 23665.81 NA NA NA NULL
2021 Hra/Dept Of Social Services Painter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Hra/Dept Of Social Services Paralegal Aide 47562.54545 1.046376e+06 403.33 1.833318e+01 0.000 13.00 22 0.000000e+00 0.00 1.046779e+06 1.046376e+06 403.33 NULL
2021 Hra/Dept Of Social Services Plumber NA NA 44079.66 6.297094e+03 8129.660 417.50 7 6.297094e+03 44079.66 NA NA NA NULL
2021 Hra/Dept Of Social Services Principal Administrative Associate - Non Supvr 59490.49698 7.876542e+07 8611104.18 6.503855e+03 0.000 191854.95 1324 0.000000e+00 0.00 8.737652e+07 7.876542e+07 8611104.18 NULL
2021 Hra/Dept Of Social Services Printing Press Operator NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2021 Hra/Dept Of Social Services Procurement Analyst 65904.52381 1.383995e+06 3363.50 1.601667e+02 0.000 67.75 21 0.000000e+00 0.00 1.387358e+06 1.383995e+06 3363.50 NULL
2021 Hra/Dept Of Social Services Psychiatrist 131499.48000 1.577994e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.577994e+06 1.577994e+06 0.00 NULL
2021 Hra/Dept Of Social Services Public Health Educator 61866.00000 2.165310e+06 59104.74 1.688707e+03 0.000 1358.25 35 0.000000e+00 0.00 2.224415e+06 2.165310e+06 59104.74 NULL
2021 Hra/Dept Of Social Services Real Property Manager 67289.00000 6.728900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.728900e+04 6.728900e+04 0.00 NULL
2021 Hra/Dept Of Social Services Research Assistant 60479.00000 1.209580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.209580e+05 1.209580e+05 0.00 NULL
2021 Hra/Dept Of Social Services Secretary 42704.84211 8.113920e+05 130008.44 6.842549e+03 778.560 3765.25 19 7.785600e+02 14792.64 9.414004e+05 8.261846e+05 115215.80 NULL
2021 Hra/Dept Of Social Services Secretary Of Comm 72359.50000 1.447190e+05 4209.10 2.104550e+03 2104.550 113.50 2 2.104550e+03 4209.10 1.489281e+05 1.489281e+05 0.00 NULL
2021 Hra/Dept Of Social Services Secretary To One Deputy Commissioner 92839.00000 9.283900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.283900e+04 9.283900e+04 0.00 NULL
2021 Hra/Dept Of Social Services Secretary To The Department 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2021 Hra/Dept Of Social Services Secretary To The Human Resources Administrator 85939.00000 8.593900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.593900e+04 8.593900e+04 0.00 NULL
2021 Hra/Dept Of Social Services Senior Consultant 80760.52941 1.372929e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.372929e+06 1.372929e+06 0.00 NULL
2021 Hra/Dept Of Social Services Senior It Architect 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2021 Hra/Dept Of Social Services Senior Stationary Engineer NA NA 67384.20 2.246140e+04 22981.140 608.00 3 2.246140e+04 67384.20 NA NA NA NULL
2021 Hra/Dept Of Social Services Sheet Metal Worker NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Hra/Dept Of Social Services Social Worker 59123.84127 3.724802e+06 105429.08 1.673477e+03 0.000 2399.00 63 0.000000e+00 0.00 3.830231e+06 3.724802e+06 105429.08 NULL
2021 Hra/Dept Of Social Services Space Analyst 75029.00000 1.575609e+06 4918.00 2.341905e+02 0.000 86.25 21 0.000000e+00 0.00 1.580527e+06 1.575609e+06 4918.00 NULL
2021 Hra/Dept Of Social Services Special Assistant To The Human Resources Administrator 92226.00000 1.844520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.844520e+05 1.844520e+05 0.00 NULL
2021 Hra/Dept Of Social Services Special Officer 42589.73611 3.066461e+06 85705.97 1.190361e+03 225.770 2822.50 72 2.257700e+02 16255.44 3.152167e+06 3.082716e+06 69450.53 NULL
2021 Hra/Dept Of Social Services Staff Analyst 66472.93258 1.183218e+07 382911.70 2.151189e+03 0.000 7928.25 178 0.000000e+00 0.00 1.221509e+07 1.183218e+07 382911.70 NULL
2021 Hra/Dept Of Social Services Staff Nurse 82716.68182 3.639534e+06 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 3.639534e+06 3.639534e+06 0.00 NULL
2021 Hra/Dept Of Social Services Stationary Engineer NA NA 26740.62 8.913540e+03 3195.900 281.50 3 3.195900e+03 9587.70 NA NA NA NULL
2021 Hra/Dept Of Social Services Stock Worker 40641.87500 3.251350e+05 4716.08 5.895100e+02 153.350 190.00 8 1.533500e+02 1226.80 3.298511e+05 3.263618e+05 3489.28 NULL
2021 Hra/Dept Of Social Services Strategic Initiative Specialist 92351.75000 3.694070e+05 1216.20 3.040500e+02 0.000 18.50 4 0.000000e+00 0.00 3.706232e+05 3.694070e+05 1216.20 NULL
2021 Hra/Dept Of Social Services Supervising Bookbinder 65390.00000 6.539000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.539000e+04 6.539000e+04 0.00 NULL
2021 Hra/Dept Of Social Services Supervising Computer Service Technician 70691.00000 7.069100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.069100e+04 7.069100e+04 0.00 NULL
2021 Hra/Dept Of Social Services Supervising Special Officer 59597.44737 2.264703e+06 150011.14 3.947662e+03 755.790 3199.50 38 7.557900e+02 28720.02 2.414714e+06 2.293423e+06 121291.12 NULL
2021 Hra/Dept Of Social Services Supervisor Carpenter NA NA 8804.00 8.804000e+03 8804.000 90.00 1 8.804000e+03 8804.00 NA NA NA NULL
2021 Hra/Dept Of Social Services Supervisor Electrician NA NA 8580.40 2.860133e+03 2169.760 87.50 3 2.169760e+03 6509.28 NA NA NA NULL
2021 Hra/Dept Of Social Services Supervisor I 59119.05000 2.246524e+07 1083341.07 2.850898e+03 0.000 23047.25 380 0.000000e+00 0.00 2.354858e+07 2.246524e+07 1083341.07 NULL
2021 Hra/Dept Of Social Services Supervisor I Social Work 65681.00000 1.510663e+06 46158.73 2.006901e+03 0.000 951.75 23 0.000000e+00 0.00 1.556822e+06 1.510663e+06 46158.73 NULL
2021 Hra/Dept Of Social Services Supervisor Ii 69333.25899 9.637323e+06 261810.09 1.883526e+03 0.000 5136.50 139 0.000000e+00 0.00 9.899133e+06 9.637323e+06 261810.09 NULL
2021 Hra/Dept Of Social Services Supervisor Ii Social Work 76427.50000 3.057100e+05 521.61 1.304025e+02 0.000 11.25 4 0.000000e+00 0.00 3.062316e+05 3.057100e+05 521.61 NULL
2021 Hra/Dept Of Social Services Supervisor Iii 76763.33333 3.224060e+06 12241.15 2.914560e+02 0.000 245.00 42 0.000000e+00 0.00 3.236301e+06 3.224060e+06 12241.15 NULL
2021 Hra/Dept Of Social Services Supervisor Iii Social Work 83406.08333 1.000873e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.000873e+06 1.000873e+06 0.00 NULL
2021 Hra/Dept Of Social Services Supervisor Of Electrical Installations & Maintenance 78105.00000 7.810500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.810500e+04 7.810500e+04 0.00 NULL
2021 Hra/Dept Of Social Services Supervisor Of Mechanics NA NA 17575.79 1.757579e+04 17575.790 184.50 1 1.757579e+04 17575.79 NA NA NA NULL
2021 Hra/Dept Of Social Services Supervisor Of Nurses 107860.09091 1.186461e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.186461e+06 1.186461e+06 0.00 NULL
2021 Hra/Dept Of Social Services Supervisor Of Office Machine Operations 45451.66667 9.544850e+05 317156.91 1.510271e+04 1958.800 8980.25 21 1.958800e+03 41134.80 1.271642e+06 9.956198e+05 276022.11 NULL
2021 Hra/Dept Of Social Services Supervisor Of Stock Workers 55837.75000 2.233510e+05 8832.32 2.208080e+03 1336.040 220.25 4 1.336040e+03 5344.16 2.321833e+05 2.286952e+05 3488.16 NULL
2021 Hra/Dept Of Social Services Supervisor Plumber NA NA 35275.05 1.763753e+04 17637.525 323.50 2 1.763753e+04 35275.05 NA NA NA NULL
2021 Hra/Dept Of Social Services Telecommunications Associate 76570.28571 5.359920e+05 13103.04 1.871863e+03 1476.560 278.50 7 1.476560e+03 10335.92 5.490950e+05 5.463279e+05 2767.12 NULL
2021 Hra/Dept Of Social Services Telecommunications Manager 102623.00000 1.026230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.026230e+05 1.026230e+05 0.00 NULL
2021 Human Rights Commission *Attorney At Law 82137.00000 8.213700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.213700e+04 8.213700e+04 0.00 NULL
2021 Human Rights Commission Administrative Business Promotion Coordinator 133900.00000 1.339000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339000e+05 1.339000e+05 0.00 NULL
2021 Human Rights Commission Agency Attorney 73636.73333 2.209102e+06 1195.26 3.984200e+01 0.000 30.25 30 0.000000e+00 0.00 2.210297e+06 2.209102e+06 1195.26 NULL
2021 Human Rights Commission Associate Human Rights Specialist 68730.30769 1.786988e+06 881.05 3.388654e+01 0.000 16.25 26 0.000000e+00 0.00 1.787869e+06 1.786988e+06 881.05 NULL
2021 Human Rights Commission Chairman Commission On Human Rights 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2021 Human Rights Commission Community Assistant 18096.37256 9.048186e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.048186e+04 9.048186e+04 0.00 NULL
2021 Human Rights Commission Community Associate 46940.50000 9.388100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.388100e+04 9.388100e+04 0.00 NULL
2021 Human Rights Commission Community Coordinator 65967.38462 8.575760e+05 1259.98 9.692154e+01 0.000 29.00 13 0.000000e+00 0.00 8.588360e+05 8.575760e+05 1259.98 NULL
2021 Human Rights Commission Computer Associate 76587.00000 7.658700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.658700e+04 7.658700e+04 0.00 NULL
2021 Human Rights Commission Computer Operations Manager 107344.50000 2.146890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.146890e+05 2.146890e+05 0.00 NULL
2021 Human Rights Commission Counsel 165155.00000 1.651550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.651550e+05 1.651550e+05 0.00 NULL
2021 Human Rights Commission Dep Commissioner For Community Relations 204696.00000 2.046960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.046960e+05 2.046960e+05 0.00 NULL
2021 Human Rights Commission Deputy Commissioner For Law Enforcement 157590.00000 1.575900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.575900e+05 1.575900e+05 0.00 NULL
2021 Human Rights Commission Deputy Executive Director 135744.66667 4.072340e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.072340e+05 4.072340e+05 0.00 NULL
2021 Human Rights Commission Executive Agency Counsel 107056.50000 1.712904e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.712904e+06 1.712904e+06 0.00 NULL
2021 Human Rights Commission Executive Director 114940.14286 8.045810e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.045810e+05 8.045810e+05 0.00 NULL
2021 Human Rights Commission Graphic Artist 68647.00000 6.864700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.864700e+04 6.864700e+04 0.00 NULL
2021 Human Rights Commission Human Rights Specialist 56378.18750 9.020510e+05 556.23 3.476438e+01 0.000 13.00 16 0.000000e+00 0.00 9.026072e+05 9.020510e+05 556.23 NULL
2021 Human Rights Commission Principal Administrative Associate - Non Supvr 71240.50000 1.424810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.424810e+05 1.424810e+05 0.00 NULL
2021 Human Rights Commission Prinicipal Human Rights Specialist 82990.40000 4.149520e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.149520e+05 4.149520e+05 0.00 NULL
2021 Human Rights Commission Secretary 49169.00000 4.916900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.916900e+04 4.916900e+04 0.00 NULL
2021 Human Rights Commission Secretary To The Chairperson 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2021 Hunter College High School Administrator 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2021 Hunter College High School Assistant Principal 121717.53333 1.825763e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.825763e+06 1.825763e+06 0.00 NULL
2021 Hunter College High School Assistant Principal Admin 132856.00000 3.985680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.985680e+05 3.985680e+05 0.00 NULL
2021 Hunter College High School Assistant Teacher 31862.35714 4.460730e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 4.460730e+05 4.460730e+05 0.00 NULL
2021 Hunter College High School Assistant To Heo 71782.50000 1.435650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.435650e+05 1.435650e+05 0.00 NULL
2021 Hunter College High School Business Data And Reporting Analyst 55608.00000 1.112160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.112160e+05 1.112160e+05 0.00 NULL
2021 Hunter College High School Coach NA NA 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 NA NA NA NULL
2021 Hunter College High School College Assistant 5997.45647 2.039135e+05 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 2.039135e+05 2.039135e+05 0.00 NULL
2021 Hunter College High School Computer Systems Manager 99471.00000 9.947100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.947100e+04 9.947100e+04 0.00 NULL
2021 Hunter College High School Cuny Administrator Assistant 55512.14286 3.885850e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.885850e+05 3.885850e+05 0.00 NULL
2021 Hunter College High School Cuny Custodial Assistant 24919.13326 4.236253e+05 6591.79 3.877524e+02 192.940 257.50 17 1.929400e+02 3279.98 4.302171e+05 4.269052e+05 3311.81 NULL
2021 Hunter College High School Cuny Office Assistant 41915.80000 2.095790e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.095790e+05 2.095790e+05 0.00 NULL
2021 Hunter College High School Education & Vocat Counselor 63905.00000 6.390500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.390500e+04 6.390500e+04 0.00 NULL
2021 Hunter College High School Hccs Sr College Lab Tech 70221.33333 2.106640e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.106640e+05 2.106640e+05 0.00 NULL
2021 Hunter College High School High School Elem Counselor 96103.28571 6.727230e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.727230e+05 6.727230e+05 0.00 NULL
2021 Hunter College High School Higher Education Assistant 85162.00000 8.516200e+04 1424.47 1.424470e+03 1424.470 21.25 1 1.424470e+03 1424.47 8.658647e+04 8.658647e+04 0.00 NULL
2021 Hunter College High School Higher Education Associate 111011.00000 3.330330e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.330330e+05 3.330330e+05 0.00 NULL
2021 Hunter College High School Higher Education Officer 117466.00000 1.174660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.174660e+05 1.174660e+05 0.00 NULL
2021 Hunter College High School It Assistant 55608.00000 5.560800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.560800e+04 5.560800e+04 0.00 NULL
2021 Hunter College High School It Associate 75162.00000 1.503240e+05 373.08 1.865400e+02 186.540 8.50 2 1.865400e+02 373.08 1.506971e+05 1.506971e+05 0.00 NULL
2021 Hunter College High School It Senior Associate 91298.00000 1.825960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.825960e+05 1.825960e+05 0.00 NULL
2021 Hunter College High School It Support Assistant 1541.12000 1.541120e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.541120e+03 1.541120e+03 0.00 NULL
2021 Hunter College High School Maintenance Worker NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Hunter College High School Oiler NA NA 12413.86 1.241386e+04 12413.860 116.00 1 1.241386e+04 12413.86 NA NA NA NULL
2021 Hunter College High School Principal 167361.50000 3.347230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.347230e+05 3.347230e+05 0.00 NULL
2021 Hunter College High School Senior Custodial Supervisor 41913.00000 4.191300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.191300e+04 4.191300e+04 0.00 NULL
2021 Hunter College High School Substitute Teacher 41481.53094 3.318522e+06 0.00 0.000000e+00 0.000 0.00 80 0.000000e+00 0.00 3.318522e+06 3.318522e+06 0.00 NULL
2021 Hunter College High School Teacher NA NA 0.00 0.000000e+00 0.000 0.00 117 0.000000e+00 0.00 NA NA NA NULL
2021 Hunter College High School Teacher Of Library 88604.00000 8.860400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.860400e+04 8.860400e+04 0.00 NULL
2021 Independent Budget Office Agency Chief Contracting Officer 131137.00000 1.311370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.311370e+05 1.311370e+05 0.00 NULL
2021 Independent Budget Office Assistant Budget Analyst 75072.00000 1.501440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.501440e+05 1.501440e+05 0.00 NULL
2021 Independent Budget Office Budget Analyst 103549.34203 3.313579e+06 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 3.313579e+06 3.313579e+06 0.00 NULL
2021 Independent Budget Office Director Of Independent Budget Office 218774.00000 2.187740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.187740e+05 2.187740e+05 0.00 NULL
2021 Independent Budget Office Executive Agency Counsel 114340.70040 1.143407e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.143407e+05 1.143407e+05 0.00 NULL
2021 Independent Budget Office Principal Administrative Associate - Non Supvr 93711.00000 9.371100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.371100e+04 9.371100e+04 0.00 NULL
2021 Landmarks Preservation Comm *Attorney At Law 91563.00000 9.156300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.156300e+04 9.156300e+04 0.00 NULL
2021 Landmarks Preservation Comm Admin Landmarks Preservationist 80340.00000 8.034000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.034000e+04 8.034000e+04 0.00 NULL
2021 Landmarks Preservation Comm Administrative Landmarks Preservationist 98749.22361 8.887430e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.887430e+05 8.887430e+05 0.00 NULL
2021 Landmarks Preservation Comm Administrative Public Information Specialist 92814.00000 9.281400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.281400e+04 9.281400e+04 0.00 NULL
2021 Landmarks Preservation Comm Administrative Staff Analyst 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2021 Landmarks Preservation Comm Associate Landmarks Preservationist 84471.00000 8.447100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.447100e+04 8.447100e+04 0.00 NULL
2021 Landmarks Preservation Comm Associate Staff Analyst 90830.00000 9.083000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.083000e+04 9.083000e+04 0.00 NULL
2021 Landmarks Preservation Comm Chair-Landmarks Preservation Commission 223319.00000 2.233190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.233190e+05 2.233190e+05 0.00 NULL
2021 Landmarks Preservation Comm Chauffeur-Attendant 40000.00000 4.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.000000e+04 4.000000e+04 0.00 NULL
2021 Landmarks Preservation Comm Community Associate 48371.00000 2.902260e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.902260e+05 2.902260e+05 0.00 NULL
2021 Landmarks Preservation Comm Community Coordinator 66759.50000 1.335190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.335190e+05 1.335190e+05 0.00 NULL
2021 Landmarks Preservation Comm Computer Systems Manager 128120.00000 1.281200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.281200e+05 1.281200e+05 0.00 NULL
2021 Landmarks Preservation Comm Counsel 162018.00000 1.620180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.620180e+05 1.620180e+05 0.00 NULL
2021 Landmarks Preservation Comm Director Of Public Relations 87550.00000 8.755000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.755000e+04 8.755000e+04 0.00 NULL
2021 Landmarks Preservation Comm Director Of Urban Archaeology 97291.00000 9.729100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.729100e+04 9.729100e+04 0.00 NULL
2021 Landmarks Preservation Comm Executive Director 173000.00000 1.730000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.730000e+05 1.730000e+05 0.00 NULL
2021 Landmarks Preservation Comm Executive Program Specialist 133900.00000 1.339000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339000e+05 1.339000e+05 0.00 NULL
2021 Landmarks Preservation Comm Landmarks Preservationist 65090.60124 2.929077e+06 646.24 1.436089e+01 0.000 15.75 45 0.000000e+00 0.00 2.929723e+06 2.929077e+06 646.24 NULL
2021 Landmarks Preservation Comm Principal Administrative Associate - Non Supvr 69001.00000 6.900100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.900100e+04 6.900100e+04 0.00 NULL
2021 Landmarks Preservation Comm Procurement Analyst 63191.00000 6.319100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.319100e+04 6.319100e+04 0.00 NULL
2021 Landmarks Preservation Comm Secretary To The Chair, Landmarks Preservation Commission 70310.00000 7.031000e+04 1904.96 1.904960e+03 1904.960 41.00 1 1.904960e+03 1904.96 7.221496e+04 7.221496e+04 0.00 NULL
2021 Landmarks Preservation Comm Secretary To The Executive Director 51564.00000 5.156400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.156400e+04 5.156400e+04 0.00 NULL
2021 Landmarks Preservation Comm Staff Analyst Trainee 51564.00000 5.156400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.156400e+04 5.156400e+04 0.00 NULL
2021 Landmarks Preservation Comm Urban Archeologist 41419.80667 1.242594e+05 33.15 1.105000e+01 0.000 1.00 3 0.000000e+00 0.00 1.242926e+05 1.242594e+05 33.15 NULL
2021 Law Department Accountant 87134.00000 8.713400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.713400e+04 8.713400e+04 0.00 NULL
2021 Law Department Administrative Accountant 126989.00000 1.269890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.269890e+05 1.269890e+05 0.00 NULL
2021 Law Department Administrative Procurement Analyst 90411.50000 1.808230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.808230e+05 1.808230e+05 0.00 NULL
2021 Law Department Administrative Public Information Specialist 149435.66667 4.483070e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.483070e+05 4.483070e+05 0.00 NULL
2021 Law Department Administrative Staff Analyst 118162.85714 1.654280e+06 15158.54 1.082753e+03 0.000 181.50 14 0.000000e+00 0.00 1.669439e+06 1.654280e+06 15158.54 NULL
2021 Law Department Appraiser 96000.00000 9.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.600000e+04 9.600000e+04 0.00 NULL
2021 Law Department Assistant Corporation Counsel 110342.14313 1.134317e+08 0.00 0.000000e+00 0.000 0.00 1028 0.000000e+00 0.00 1.134317e+08 1.134317e+08 0.00 NULL
2021 Law Department Associate Quality Assurance Specialist 78450.00000 5.491500e+05 4344.53 6.206471e+02 41.600 89.75 7 4.160000e+01 291.20 5.534945e+05 5.494412e+05 4053.33 NULL
2021 Law Department Associate Staff Analyst 76514.88827 4.590893e+05 32486.26 5.414377e+03 0.000 443.00 6 0.000000e+00 0.00 4.915756e+05 4.590893e+05 32486.26 NULL
2021 Law Department Bookkeeper 54611.87500 4.368950e+05 1360.25 1.700312e+02 0.000 29.25 8 0.000000e+00 0.00 4.382552e+05 4.368950e+05 1360.25 NULL
2021 Law Department Certified It Administrator 118398.60000 5.919930e+05 3020.47 6.040940e+02 0.000 43.50 5 0.000000e+00 0.00 5.950135e+05 5.919930e+05 3020.47 NULL
2021 Law Department Certified It Developer 100133.50000 2.002670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.002670e+05 2.002670e+05 0.00 NULL
2021 Law Department City Assessor 93697.66667 2.810930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.810930e+05 2.810930e+05 0.00 NULL
2021 Law Department City Custodial Assistant 39532.00000 3.953200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.953200e+04 3.953200e+04 0.00 NULL
2021 Law Department Claim Specialist 52135.54779 4.483657e+06 80570.01 9.368606e+02 0.000 1857.08 86 0.000000e+00 0.00 4.564227e+06 4.483657e+06 80570.01 NULL
2021 Law Department Clerical Associate 36190.61035 8.794318e+06 21760.15 8.954794e+01 0.000 795.75 243 0.000000e+00 0.00 8.816078e+06 8.794318e+06 21760.15 NULL
2021 Law Department College Aide 8860.54688 7.088438e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.088438e+04 7.088438e+04 0.00 NULL
2021 Law Department College Aide - Assignment Levels Ii And Iii 9583.96500 9.583965e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.583965e+03 9.583965e+03 0.00 NULL
2021 Law Department Community Associate 52709.00000 1.054180e+05 134.29 6.714500e+01 67.145 4.00 2 6.714500e+01 134.29 1.055523e+05 1.055523e+05 0.00 NULL
2021 Law Department Community Coordinator 62030.25714 2.171059e+06 4561.06 1.303160e+02 0.000 104.25 35 0.000000e+00 0.00 2.175620e+06 2.171059e+06 4561.06 NULL
2021 Law Department Computer Aide-Non-Spvr 36414.87956 2.913190e+05 4097.39 5.121738e+02 0.000 130.50 8 0.000000e+00 0.00 2.954164e+05 2.913190e+05 4097.39 NULL
2021 Law Department Computer Associate 78549.03531 1.256785e+06 6403.56 4.002225e+02 0.000 143.25 16 0.000000e+00 0.00 1.263188e+06 1.256785e+06 6403.56 NULL
2021 Law Department Computer Operations Manager 115450.00000 1.154500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.154500e+05 1.154500e+05 0.00 NULL
2021 Law Department Computer Service Technician 51076.85000 1.021537e+05 906.60 4.533000e+02 453.300 25.00 2 4.533000e+02 906.60 1.030603e+05 1.030603e+05 0.00 NULL
2021 Law Department Computer Specialist 102419.18182 1.126611e+06 14446.77 1.313343e+03 0.000 205.00 11 0.000000e+00 0.00 1.141058e+06 1.126611e+06 14446.77 NULL
2021 Law Department Computer Systems Manager 157301.50000 9.438090e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.438090e+05 9.438090e+05 0.00 NULL
2021 Law Department Corporation Counsel 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2021 Law Department Custodian 46268.50000 3.701480e+05 5306.09 6.632613e+02 471.090 180.25 8 4.710900e+02 3768.72 3.754541e+05 3.739167e+05 1537.37 NULL
2021 Law Department Customer Information Representative Ma L 1549 59549.42857 4.168460e+05 449.14 6.416286e+01 3.900 9.75 7 3.900000e+00 27.30 4.172951e+05 4.168733e+05 421.84 NULL
2021 Law Department Department Librarian 41646.80667 1.249404e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.249404e+05 1.249404e+05 0.00 NULL
2021 Law Department Deputy Director Of Admin Worker’s Comp Benefits 105593.00000 2.111860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.111860e+05 2.111860e+05 0.00 NULL
2021 Law Department Deputy Operation Support Manager 143532.00000 2.870640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.870640e+05 2.870640e+05 0.00 NULL
2021 Law Department Dir Of Administration, Worker’s Comp Benefits 143841.00000 1.438410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.438410e+05 1.438410e+05 0.00 NULL
2021 Law Department Executive Agency Counsel 216517.00000 4.330340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.330340e+05 4.330340e+05 0.00 NULL
2021 Law Department Executive Program Specialist 126989.00000 1.269890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.269890e+05 1.269890e+05 0.00 NULL
2021 Law Department First Assistant Corporation Counsel 243272.00000 2.432720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.432720e+05 2.432720e+05 0.00 NULL
2021 Law Department Graphic Artist 52433.00000 5.243300e+04 68.93 6.893000e+01 68.930 0.00 1 6.893000e+01 68.93 5.250193e+04 5.250193e+04 0.00 NULL
2021 Law Department It Security Specialist 169027.00000 1.690270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.690270e+05 1.690270e+05 0.00 NULL
2021 Law Department Legal Secretarial Assistant 59090.89224 1.713636e+06 749.33 2.583897e+01 0.000 18.25 29 0.000000e+00 0.00 1.714385e+06 1.713636e+06 749.33 NULL
2021 Law Department Legal Secretarial Assistant - Al 1 Only 44325.00000 1.329750e+05 1.74 5.800000e-01 0.250 0.00 3 2.500000e-01 0.75 1.329767e+05 1.329758e+05 0.99 NULL
2021 Law Department Management Auditor 82437.00000 8.243700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.243700e+04 8.243700e+04 0.00 NULL
2021 Law Department Medicolegal Analyst 76022.00000 1.520440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.520440e+05 1.520440e+05 0.00 NULL
2021 Law Department Motor Vehicle Operator 34650.61867 2.772049e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 2.772049e+05 2.772049e+05 0.00 NULL
2021 Law Department Paralegal Aide 49597.11852 1.324243e+07 48230.85 1.806399e+02 0.000 1321.48 267 0.000000e+00 0.00 1.329066e+07 1.324243e+07 48230.85 NULL
2021 Law Department Principal Administrative Associate - Non Supvr 65973.30000 6.597330e+05 2022.66 2.022660e+02 0.000 46.00 10 0.000000e+00 0.00 6.617557e+05 6.597330e+05 2022.66 NULL
2021 Law Department Principal Title Examiner 69961.60000 3.498080e+05 0.76 1.520000e-01 0.000 0.00 5 0.000000e+00 0.00 3.498088e+05 3.498080e+05 0.76 NULL
2021 Law Department Procurement Analyst 47661.00000 4.766100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.766100e+04 4.766100e+04 0.00 NULL
2021 Law Department Project Manager 85490.00000 8.549000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.549000e+04 8.549000e+04 0.00 NULL
2021 Law Department Public Records Aide 39603.54739 3.168284e+05 193.60 2.420000e+01 0.000 7.25 8 0.000000e+00 0.00 3.170220e+05 3.168284e+05 193.60 NULL
2021 Law Department Secretary 39668.00000 7.933600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.933600e+04 7.933600e+04 0.00 NULL
2021 Law Department Secretary To The Corporation Counsel 105707.00000 1.057070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.057070e+05 1.057070e+05 0.00 NULL
2021 Law Department Senior Photographer 57114.00000 5.711400e+04 85.97 8.597000e+01 85.970 2.75 1 8.597000e+01 85.97 5.719997e+04 5.719997e+04 0.00 NULL
2021 Law Department Senior Student Legal Specialist 56845.40000 2.842270e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.842270e+05 2.842270e+05 0.00 NULL
2021 Law Department Senior Title Examiner 56211.00000 5.621100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.621100e+04 5.621100e+04 0.00 NULL
2021 Law Department Space Analyst 77921.00000 1.558420e+05 4707.81 2.353905e+03 2353.905 95.00 2 2.353905e+03 4707.81 1.605498e+05 1.605498e+05 0.00 NULL
2021 Law Department Staff Analyst 64634.15368 1.228049e+06 627.41 3.302158e+01 0.000 16.25 19 0.000000e+00 0.00 1.228676e+06 1.228049e+06 627.41 NULL
2021 Law Department Staff Analyst Trainee 47824.00000 4.782400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.782400e+04 4.782400e+04 0.00 NULL
2021 Law Department Stenographer To The Corporation Counsel 71749.00000 7.174900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.174900e+04 7.174900e+04 0.00 NULL
2021 Law Department Summer Graduate Intern 709.23095 1.489385e+04 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.489385e+04 1.489385e+04 0.00 NULL
2021 Law Department Supervising Computer Service Technician 65344.89807 1.960347e+05 2591.00 8.636667e+02 1044.720 59.00 3 8.636667e+02 2591.00 1.986257e+05 1.986257e+05 0.00 NULL
2021 Law Department Supervisor Of Office Machine Operations 48193.33333 1.445800e+05 435.05 1.450167e+02 179.280 17.00 3 1.450167e+02 435.05 1.450150e+05 1.450150e+05 0.00 NULL
2021 Law Department Worker’s Compensation Benefits Examiner 48018.03910 3.265227e+06 42117.48 6.193747e+02 0.000 1153.75 68 0.000000e+00 0.00 3.307344e+06 3.265227e+06 42117.48 NULL
2021 Manhattan Community Board #1 Community Coordinator 74035.50000 1.480710e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.480710e+05 1.480710e+05 0.00 NULL
2021 Manhattan Community Board #1 District Manager 88468.00000 8.846800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.846800e+04 8.846800e+04 0.00 NULL
2021 Manhattan Community Board #10 Community Assistant 42191.00000 4.219100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.219100e+04 4.219100e+04 0.00 NULL
2021 Manhattan Community Board #10 Community Associate 45000.00000 4.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.500000e+04 4.500000e+04 0.00 NULL
2021 Manhattan Community Board #10 District Manager 83559.00000 8.355900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.355900e+04 8.355900e+04 0.00 NULL
2021 Manhattan Community Board #11 Assistant District Manager 53560.00000 5.356000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.356000e+04 5.356000e+04 0.00 NULL
2021 Manhattan Community Board #11 Community Associate 48925.00000 4.892500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.892500e+04 4.892500e+04 0.00 NULL
2021 Manhattan Community Board #11 District Manager 99752.00000 9.975200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.975200e+04 9.975200e+04 0.00 NULL
2021 Manhattan Community Board #12 Community Associate 41200.00000 4.120000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.120000e+04 4.120000e+04 0.00 NULL
2021 Manhattan Community Board #12 Community Coordinator 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2021 Manhattan Community Board #12 District Manager 94540.00000 9.454000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.454000e+04 9.454000e+04 0.00 NULL
2021 Manhattan Community Board #2 Assistant District Manager 48341.00000 4.834100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.834100e+04 4.834100e+04 0.00 NULL
2021 Manhattan Community Board #2 Community Assistant 36837.00000 3.683700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.683700e+04 3.683700e+04 0.00 NULL
2021 Manhattan Community Board #2 Community Coordinator 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2021 Manhattan Community Board #2 District Manager 88893.00000 8.889300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.889300e+04 8.889300e+04 0.00 NULL
2021 Manhattan Community Board #3 Assistant District Manager 56825.00000 5.682500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.682500e+04 5.682500e+04 0.00 NULL
2021 Manhattan Community Board #3 Community Associate 46309.00000 9.261800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.261800e+04 9.261800e+04 0.00 NULL
2021 Manhattan Community Board #3 District Manager 90306.00000 9.030600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.030600e+04 9.030600e+04 0.00 NULL
2021 Manhattan Community Board #4 Community Associate 44233.00000 4.423300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.423300e+04 4.423300e+04 0.00 NULL
2021 Manhattan Community Board #4 Community Coordinator 67935.00000 6.793500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.793500e+04 6.793500e+04 0.00 NULL
2021 Manhattan Community Board #4 District Manager 97079.00000 9.707900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.707900e+04 9.707900e+04 0.00 NULL
2021 Manhattan Community Board #5 Assistant District Manager 65638.00000 6.563800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.563800e+04 6.563800e+04 0.00 NULL
2021 Manhattan Community Board #5 Community Associate 45076.00000 4.507600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.507600e+04 4.507600e+04 0.00 NULL
2021 Manhattan Community Board #5 District Manager 105766.50000 2.115330e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.115330e+05 2.115330e+05 0.00 NULL
2021 Manhattan Community Board #6 Assistant District Manager 52659.00000 5.265900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.265900e+04 5.265900e+04 0.00 NULL
2021 Manhattan Community Board #6 Community Coordinator 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2021 Manhattan Community Board #6 District Manager 93459.00000 9.345900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.345900e+04 9.345900e+04 0.00 NULL
2021 Manhattan Community Board #7 Community Associate 44083.00000 4.408300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.408300e+04 4.408300e+04 0.00 NULL
2021 Manhattan Community Board #7 Community Coordinator 74983.76000 7.498376e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.498376e+04 7.498376e+04 0.00 NULL
2021 Manhattan Community Board #7 District Manager 96968.00000 1.939360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.939360e+05 1.939360e+05 0.00 NULL
2021 Manhattan Community Board #8 Assistant District Manager 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2021 Manhattan Community Board #8 Community Associate 44083.00000 4.408300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.408300e+04 4.408300e+04 0.00 NULL
2021 Manhattan Community Board #8 District Manager 86360.00000 8.636000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.636000e+04 8.636000e+04 0.00 NULL
2021 Manhattan Community Board #9 Community Associate 43800.50000 8.760100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.760100e+04 8.760100e+04 0.00 NULL
2021 Manhattan Community Board #9 District Manager 95617.00000 9.561700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.561700e+04 9.561700e+04 0.00 NULL
2021 Mayors Office Of Contract Svcs Admin Contract Specialist 190601.00000 3.812020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.812020e+05 3.812020e+05 0.00 NULL
2021 Mayors Office Of Contract Svcs Administrative Manager 112499.00000 3.374970e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.374970e+05 3.374970e+05 0.00 NULL
2021 Mayors Office Of Contract Svcs Administrative Procurement Analyst 117901.00000 1.179010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.179010e+05 1.179010e+05 0.00 NULL
2021 Mayors Office Of Contract Svcs Administrative Procurement Analyst-Non-Mgrl 84254.00000 8.425400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.425400e+04 8.425400e+04 0.00 NULL
2021 Mayors Office Of Contract Svcs Administrative Staff Analyst 154500.83333 9.270050e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.270050e+05 9.270050e+05 0.00 NULL
2021 Mayors Office Of Contract Svcs Computer Systems Manager 131986.80000 1.979802e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.979802e+06 1.979802e+06 0.00 NULL
2021 Mayors Office Of Contract Svcs Executive Agency Counsel 170672.00000 6.826880e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.826880e+05 6.826880e+05 0.00 NULL
2021 Mayors Office Of Contract Svcs Graphic Artist 79389.00000 7.938900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.938900e+04 7.938900e+04 0.00 NULL
2021 Mayors Office Of Contract Svcs Mayoral Office Assistant 51490.38462 6.693750e+05 132.27 1.017462e+01 0.000 5.00 13 0.000000e+00 0.00 6.695073e+05 6.693750e+05 132.27 NULL
2021 Mayors Office Of Contract Svcs Mayoral Program Coordinator 72599.00000 7.259900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.259900e+04 7.259900e+04 0.00 NULL
2021 Mayors Office Of Contract Svcs Procurement Analyst 68457.00000 6.845700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.845700e+04 6.845700e+04 0.00 NULL
2021 Mayors Office Of Contract Svcs Research Projects Coord 91487.67188 1.024662e+07 0.00 0.000000e+00 0.000 0.00 112 0.000000e+00 0.00 1.024662e+07 1.024662e+07 0.00 NULL
2021 Mayors Office Of Contract Svcs Research Projects Coordinator 56331.69231 1.464624e+06 9746.92 3.748815e+02 0.000 260.50 26 0.000000e+00 0.00 1.474371e+06 1.464624e+06 9746.92 NULL
2021 Mayors Office Of Contract Svcs Special Assistant 132729.00000 6.636450e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.636450e+05 6.636450e+05 0.00 NULL
2021 Mayors Office Of Contract Svcs Staff Analyst 57590.00000 5.759000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.759000e+04 5.759000e+04 0.00 NULL
2021 Municipal Water Fin Authority Budget Analyst 106053.50000 1.272642e+06 125.04 1.042000e+01 0.000 3.25 12 0.000000e+00 0.00 1.272767e+06 1.272642e+06 125.04 NULL
2021 Municipal Water Fin Authority Statistical Secretary 67676.00000 6.767600e+04 37.04 3.704000e+01 37.040 1.00 1 3.704000e+01 37.04 6.771304e+04 6.771304e+04 0.00 NULL
2021 Nyc Dept Of Veterans’ Services Admin Community Relations Specialist 107532.00000 1.075320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.075320e+05 1.075320e+05 0.00 NULL
2021 Nyc Dept Of Veterans’ Services Administrative Business Promotion Coordinator 116650.00000 2.333000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.333000e+05 2.333000e+05 0.00 NULL
2021 Nyc Dept Of Veterans’ Services Administrative Director Of Social Services 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2021 Nyc Dept Of Veterans’ Services Administrative Graphic Artist 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2021 Nyc Dept Of Veterans’ Services Administrative Staff Analyst 135000.00000 2.700000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.700000e+05 2.700000e+05 0.00 NULL
2021 Nyc Dept Of Veterans’ Services Assistant Commissioner 67420.00000 6.742000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.742000e+04 6.742000e+04 0.00 NULL
2021 Nyc Dept Of Veterans’ Services Chauffeur-Attendant 53663.00000 5.366300e+04 4086.41 4.086410e+03 4086.410 92.75 1 4.086410e+03 4086.41 5.774941e+04 5.774941e+04 0.00 NULL
2021 Nyc Dept Of Veterans’ Services City Research Scientist 94283.00000 9.428300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.428300e+04 9.428300e+04 0.00 NULL
2021 Nyc Dept Of Veterans’ Services Commissioner Of Department Of Veteran’s Services 227785.00000 2.277850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277850e+05 2.277850e+05 0.00 NULL
2021 Nyc Dept Of Veterans’ Services Community Coordinator 68028.58824 1.156486e+06 882.20 5.189412e+01 0.000 24.75 17 0.000000e+00 0.00 1.157368e+06 1.156486e+06 882.20 NULL
2021 Nyc Dept Of Veterans’ Services Deputy Assistant Commissioner 121313.12500 9.705050e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.705050e+05 9.705050e+05 0.00 NULL
2021 Nyc Dept Of Veterans’ Services Executive Agency Counsel 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2021 Nyc Dept Of Veterans’ Services Mayoral Office Assistant 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2021 Nyc Dept Of Veterans’ Services Special Assistant 146954.00000 5.878160e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.878160e+05 5.878160e+05 0.00 NULL
2021 Nyc Employees Retirement Sys Accountant 70942.14286 4.965950e+05 11541.76 1.648823e+03 652.860 276.50 7 6.528600e+02 4570.02 5.081368e+05 5.011650e+05 6971.74 NULL
2021 Nyc Employees Retirement Sys Adm Manager-Non-Mgrl 92163.33333 5.529800e+05 3624.38 6.040633e+02 377.505 69.00 6 3.775050e+02 2265.03 5.566044e+05 5.552450e+05 1359.35 NULL
2021 Nyc Employees Retirement Sys Administrative Accountant 112836.20000 5.641810e+05 23768.69 4.753738e+03 1065.290 450.25 5 1.065290e+03 5326.45 5.879497e+05 5.695074e+05 18442.24 NULL
2021 Nyc Employees Retirement Sys Administrative Actuary 112000.00000 1.120000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.120000e+05 1.120000e+05 0.00 NULL
2021 Nyc Employees Retirement Sys Administrative Graphic Artist 105536.00000 1.055360e+05 202.17 2.021700e+02 202.170 3.50 1 2.021700e+02 202.17 1.057382e+05 1.057382e+05 0.00 NULL
2021 Nyc Employees Retirement Sys Administrative Labor Relations Analyst 157000.00000 1.570000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.570000e+05 1.570000e+05 0.00 NULL
2021 Nyc Employees Retirement Sys Administrative Manager 121467.33333 3.644020e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.644020e+05 3.644020e+05 0.00 NULL
2021 Nyc Employees Retirement Sys Administrative Procurement Analyst 158902.00000 1.589020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.589020e+05 1.589020e+05 0.00 NULL
2021 Nyc Employees Retirement Sys Administrative Public Information Specialist 151330.00000 4.539900e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.539900e+05 4.539900e+05 0.00 NULL
2021 Nyc Employees Retirement Sys Administrative Retirement Benefits Specialist 132125.63636 2.906764e+06 3631.30 1.650591e+02 0.000 76.50 22 0.000000e+00 0.00 2.910395e+06 2.906764e+06 3631.30 NULL
2021 Nyc Employees Retirement Sys Administrative Retirements Benefits Specialist 101543.60000 5.077180e+05 6147.52 1.229504e+03 452.200 114.50 5 4.522000e+02 2261.00 5.138655e+05 5.099790e+05 3886.52 NULL
2021 Nyc Employees Retirement Sys Administrative Staff Analyst 128698.72727 1.415686e+06 35879.29 3.261754e+03 0.000 545.50 11 0.000000e+00 0.00 1.451565e+06 1.415686e+06 35879.29 NULL
2021 Nyc Employees Retirement Sys Agency Attorney 88444.28571 6.191100e+05 695.99 9.942714e+01 0.000 16.50 7 0.000000e+00 0.00 6.198060e+05 6.191100e+05 695.99 NULL
2021 Nyc Employees Retirement Sys Assistant Retirement Benefits Examiner 42896.78375 3.217259e+06 134827.74 1.797703e+03 0.000 3749.50 75 0.000000e+00 0.00 3.352087e+06 3.217259e+06 134827.74 NULL
2021 Nyc Employees Retirement Sys Associate Retirement Benefits Examiner 63181.16794 8.276733e+06 901878.08 6.884565e+03 2600.490 19539.75 131 2.600490e+03 340664.19 9.178611e+06 8.617397e+06 561213.89 NULL
2021 Nyc Employees Retirement Sys Associate Staff Analyst 75591.00000 2.267730e+05 17931.28 5.977093e+03 3791.860 324.50 3 3.791860e+03 11375.58 2.447043e+05 2.381486e+05 6555.70 NULL
2021 Nyc Employees Retirement Sys Bookkeeper 28127.00000 5.625400e+04 7180.50 3.590250e+03 3590.250 209.50 2 3.590250e+03 7180.50 6.343450e+04 6.343450e+04 0.00 NULL
2021 Nyc Employees Retirement Sys Certified It Administrator 102457.40000 1.536861e+06 60285.45 4.019030e+03 3366.200 1013.25 15 3.366200e+03 50493.00 1.597146e+06 1.587354e+06 9792.45 NULL
2021 Nyc Employees Retirement Sys Certified It Developer 111439.00000 3.343170e+05 1667.38 5.557933e+02 569.530 26.50 3 5.557933e+02 1667.38 3.359844e+05 3.359844e+05 0.00 NULL
2021 Nyc Employees Retirement Sys Clerical Associate 42289.66104 1.860745e+06 148635.09 3.378070e+03 1223.430 4684.75 44 1.223430e+03 53830.92 2.009380e+06 1.914576e+06 94804.17 NULL
2021 Nyc Employees Retirement Sys Community Assistant 38578.00000 2.700460e+05 33532.50 4.790357e+03 3620.350 1202.00 7 3.620350e+03 25342.45 3.035785e+05 2.953885e+05 8190.05 NULL
2021 Nyc Employees Retirement Sys Community Associate 41850.64844 6.696104e+05 30478.04 1.904878e+03 483.815 1160.25 16 4.838150e+02 7741.04 7.000884e+05 6.773514e+05 22737.00 NULL
2021 Nyc Employees Retirement Sys Community Coordinator 61249.33333 1.837480e+05 2791.56 9.305200e+02 681.010 85.00 3 6.810100e+02 2043.03 1.865396e+05 1.857910e+05 748.53 NULL
2021 Nyc Employees Retirement Sys Computer Associate 77033.16667 4.621990e+05 5879.15 9.798583e+02 136.985 142.25 6 1.369850e+02 821.91 4.680782e+05 4.630209e+05 5057.24 NULL
2021 Nyc Employees Retirement Sys Computer Operations Manager 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2021 Nyc Employees Retirement Sys Computer Specialist 104659.06250 1.674545e+06 16482.89 1.030181e+03 349.310 234.00 16 3.493100e+02 5588.96 1.691028e+06 1.680134e+06 10893.93 NULL
2021 Nyc Employees Retirement Sys Computer Systems Manager 150647.41935 4.670070e+06 5588.04 1.802594e+02 0.000 65.50 31 0.000000e+00 0.00 4.675658e+06 4.670070e+06 5588.04 NULL
2021 Nyc Employees Retirement Sys Confidential Strategy Planner 71000.00000 7.100000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.100000e+04 7.100000e+04 0.00 NULL
2021 Nyc Employees Retirement Sys Customer Information Representative Ma L 1549 40396.19145 1.292678e+06 79006.24 2.468945e+03 175.570 2960.25 32 1.755700e+02 5618.24 1.371684e+06 1.298296e+06 73388.00 NULL
2021 Nyc Employees Retirement Sys Cyber Security Analyst 87897.50000 1.757950e+05 955.66 4.778300e+02 477.830 18.00 2 4.778300e+02 955.66 1.767507e+05 1.767507e+05 0.00 NULL
2021 Nyc Employees Retirement Sys Deputy Executive Director 224197.00000 2.241970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.241970e+05 2.241970e+05 0.00 NULL
2021 Nyc Employees Retirement Sys Executive Agency Counsel 152458.50000 6.098340e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.098340e+05 6.098340e+05 0.00 NULL
2021 Nyc Employees Retirement Sys Executive Director 240630.00000 2.406300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.406300e+05 2.406300e+05 0.00 NULL
2021 Nyc Employees Retirement Sys Graphic Artist 33690.00000 3.369000e+04 780.00 7.800000e+02 780.000 26.00 1 7.800000e+02 780.00 3.447000e+04 3.447000e+04 0.00 NULL
2021 Nyc Employees Retirement Sys Management Auditor 74966.25000 2.998650e+05 217.21 5.430250e+01 0.000 4.75 4 0.000000e+00 0.00 3.000822e+05 2.998650e+05 217.21 NULL
2021 Nyc Employees Retirement Sys Office Machine Aide 18206.44914 2.366838e+05 11563.81 8.895238e+02 185.500 642.75 13 1.855000e+02 2411.50 2.482476e+05 2.390953e+05 9152.31 NULL
2021 Nyc Employees Retirement Sys Principal Administrative Associate - Non Supvr 69199.00000 1.937572e+06 154774.51 5.527661e+03 2022.245 3384.00 28 2.022245e+03 56622.86 2.092347e+06 1.994195e+06 98151.65 NULL
2021 Nyc Employees Retirement Sys Staff Analyst 63780.00000 1.913400e+05 25107.72 8.369240e+03 10907.920 596.25 3 8.369240e+03 25107.72 2.164477e+05 2.164477e+05 0.00 NULL
2021 Nyc Employees Retirement Sys Supervising Computer Service Technician 76601.00000 7.660100e+04 10760.45 1.076045e+04 10760.450 199.00 1 1.076045e+04 10760.45 8.736145e+04 8.736145e+04 0.00 NULL
2021 Nyc Employees Retirement Sys Telecommunications Associate 113445.00000 1.134450e+05 3091.42 3.091420e+03 3091.420 38.50 1 3.091420e+03 3091.42 1.165364e+05 1.165364e+05 0.00 NULL
2021 Nyc Fire Pension Fund Accountant 61859.00000 1.237180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.237180e+05 1.237180e+05 0.00 NULL
2021 Nyc Fire Pension Fund Actuarial Specialist Level Ii, Oj 102715.00000 1.027150e+05 10906.68 1.090668e+04 10906.680 160.00 1 1.090668e+04 10906.68 1.136217e+05 1.136217e+05 0.00 NULL
2021 Nyc Fire Pension Fund Adm Manager-Non-Mgrl 81976.00000 2.459280e+05 18874.95 6.291650e+03 4489.490 342.75 3 4.489490e+03 13468.47 2.648030e+05 2.593965e+05 5406.48 NULL
2021 Nyc Fire Pension Fund Administrative Retirement Benefits Specialist 129236.66667 3.877100e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.877100e+05 3.877100e+05 0.00 NULL
2021 Nyc Fire Pension Fund Administrative Staff Analyst 101953.75000 4.078150e+05 6661.28 1.665320e+03 0.000 135.50 4 0.000000e+00 0.00 4.144763e+05 4.078150e+05 6661.28 NULL
2021 Nyc Fire Pension Fund Agency Attorney 105446.00000 1.054460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.054460e+05 1.054460e+05 0.00 NULL
2021 Nyc Fire Pension Fund Agency Chief Contracting Officer 182621.00000 1.826210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.826210e+05 1.826210e+05 0.00 NULL
2021 Nyc Fire Pension Fund Associate Retirement Benefits Examiner 67527.50000 5.402200e+05 40893.60 5.111700e+03 4091.525 784.50 8 4.091525e+03 32732.20 5.811136e+05 5.729522e+05 8161.40 NULL
2021 Nyc Fire Pension Fund Certified It Administrator 94237.00000 9.423700e+04 51.58 5.158000e+01 51.580 1.00 1 5.158000e+01 51.58 9.428858e+04 9.428858e+04 0.00 NULL
2021 Nyc Fire Pension Fund Chief Of Staff 193363.00000 1.933630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.933630e+05 1.933630e+05 0.00 NULL
2021 Nyc Fire Pension Fund Clerical Associate 57657.00000 1.153140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.153140e+05 1.153140e+05 0.00 NULL
2021 Nyc Fire Pension Fund Community Coordinator 62973.00000 2.518920e+05 74.03 1.850750e+01 0.000 2.50 4 0.000000e+00 0.00 2.519660e+05 2.518920e+05 74.03 NULL
2021 Nyc Fire Pension Fund Confidential Asst To The Executive Dir 86520.00000 8.652000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.652000e+04 8.652000e+04 0.00 NULL
2021 Nyc Fire Pension Fund Deputy Executive Director 225018.00000 2.250180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.250180e+05 2.250180e+05 0.00 NULL
2021 Nyc Fire Pension Fund Executive Agency Counsel 187991.00000 1.879910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.879910e+05 1.879910e+05 0.00 NULL
2021 Nyc Fire Pension Fund Executive Director 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2021 Nyc Fire Pension Fund Principal Administrative Associate - Non Supvr 81549.00000 3.261960e+05 4998.73 1.249682e+03 869.630 101.25 4 8.696300e+02 3478.52 3.311947e+05 3.296745e+05 1520.21 NULL
2021 Nyc Fire Pension Fund Public Records Aide 46001.80000 2.300090e+05 1502.30 3.004600e+02 0.000 55.50 5 0.000000e+00 0.00 2.315113e+05 2.300090e+05 1502.30 NULL
2021 Nyc Fire Pension Fund Research Assistant 63837.00000 6.383700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.383700e+04 6.383700e+04 0.00 NULL
2021 Nyc Fire Pension Fund Staff Analyst Trainee 47824.00000 4.782400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.782400e+04 4.782400e+04 0.00 NULL
2021 Nyc Housing Authority *Administrative Attorney 135883.00000 1.358830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.358830e+05 1.358830e+05 0.00 NULL
2021 Nyc Housing Authority *Attorney At Law 91563.00000 2.746890e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.746890e+05 2.746890e+05 0.00 NULL
2021 Nyc Housing Authority *Housing Caretaker 46278.00000 2.313900e+05 92521.37 1.850427e+04 14396.490 2511.25 5 1.439649e+04 71982.45 3.239114e+05 3.033725e+05 20538.92 NULL
2021 Nyc Housing Authority Accountant 66758.35714 1.869234e+06 8415.43 3.005511e+02 0.000 159.00 28 0.000000e+00 0.00 1.877649e+06 1.869234e+06 8415.43 NULL
2021 Nyc Housing Authority Adm Manager-Non-Mgrl 84201.84848 5.557322e+06 22722.65 3.442826e+02 0.000 384.25 66 0.000000e+00 0.00 5.580045e+06 5.557322e+06 22722.65 NULL
2021 Nyc Housing Authority Admin Community Relations Specialist 88952.01923 4.625505e+06 45843.51 8.816060e+02 0.000 845.75 52 0.000000e+00 0.00 4.671349e+06 4.625505e+06 45843.51 NULL
2021 Nyc Housing Authority Admin Contract Specialist 135945.00000 1.359450e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.359450e+06 1.359450e+06 0.00 NULL
2021 Nyc Housing Authority Admin Job Opportunity Spec Nm 77714.50000 1.554290e+05 429.70 2.148500e+02 214.850 10.00 2 2.148500e+02 429.70 1.558587e+05 1.558587e+05 0.00 NULL
2021 Nyc Housing Authority Administrative Accountant 118928.14286 2.497491e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 2.497491e+06 2.497491e+06 0.00 NULL
2021 Nyc Housing Authority Administrative Architect 126336.00000 5.053440e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.053440e+05 5.053440e+05 0.00 NULL
2021 Nyc Housing Authority Administrative Business Promotion Coordinator 118808.71429 8.316610e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.316610e+05 8.316610e+05 0.00 NULL
2021 Nyc Housing Authority Administrative City Planner 151100.75000 6.044030e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.044030e+05 6.044030e+05 0.00 NULL
2021 Nyc Housing Authority Administrative Claim Examiner 125161.75000 5.006470e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.006470e+05 5.006470e+05 0.00 NULL
2021 Nyc Housing Authority Administrative Community Relations Specialist 152065.00000 1.216520e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.216520e+06 1.216520e+06 0.00 NULL
2021 Nyc Housing Authority Administrative Construction Project Manager 116993.57143 4.094775e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 4.094775e+06 4.094775e+06 0.00 NULL
2021 Nyc Housing Authority Administrative Engineer 125835.33333 7.550120e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.550120e+05 7.550120e+05 0.00 NULL
2021 Nyc Housing Authority Administrative Fire Protection Inspector 108150.00000 1.081500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081500e+05 1.081500e+05 0.00 NULL
2021 Nyc Housing Authority Administrative Graphic Artist 99625.00000 9.962500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.962500e+04 9.962500e+04 0.00 NULL
2021 Nyc Housing Authority Administrative Housing Development Specialist 121430.06667 1.821451e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.821451e+06 1.821451e+06 0.00 NULL
2021 Nyc Housing Authority Administrative Housing Manager 132410.43750 4.237134e+06 31165.48 9.739212e+02 0.000 523.25 32 0.000000e+00 0.00 4.268299e+06 4.237134e+06 31165.48 NULL
2021 Nyc Housing Authority Administrative Housing Superintendent 126922.68056 9.138433e+06 216897.31 3.012463e+03 0.000 3439.25 72 0.000000e+00 0.00 9.355330e+06 9.138433e+06 216897.31 NULL
2021 Nyc Housing Authority Administrative Inspector 128815.16667 2.318673e+06 7.19 3.994444e-01 0.000 0.00 18 0.000000e+00 0.00 2.318680e+06 2.318673e+06 7.19 NULL
2021 Nyc Housing Authority Administrative Investigator 93798.00000 1.875960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.875960e+05 1.875960e+05 0.00 NULL
2021 Nyc Housing Authority Administrative Labor Relations Analyst 138426.50000 5.537060e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.537060e+05 5.537060e+05 0.00 NULL
2021 Nyc Housing Authority Administrative Landmarks Preservationist 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2021 Nyc Housing Authority Administrative Landscape Architect 112812.00000 1.128120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.128120e+05 1.128120e+05 0.00 NULL
2021 Nyc Housing Authority Administrative Management Auditor 137689.33333 4.130680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.130680e+05 4.130680e+05 0.00 NULL
2021 Nyc Housing Authority Administrative Printing Services Manager 121927.00000 1.219270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.219270e+05 1.219270e+05 0.00 NULL
2021 Nyc Housing Authority Administrative Procurement Analyst 140584.00000 1.405840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.405840e+05 1.405840e+05 0.00 NULL
2021 Nyc Housing Authority Administrative Procurement Analyst-Non-Mgrl 86226.82353 1.465856e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.465856e+06 1.465856e+06 0.00 NULL
2021 Nyc Housing Authority Administrative Project Manager 121047.09091 2.663036e+06 4822.10 2.191864e+02 0.000 102.75 22 0.000000e+00 0.00 2.667858e+06 2.663036e+06 4822.10 NULL
2021 Nyc Housing Authority Administrative Public Health Sanitarian 112270.00000 2.245400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.245400e+05 2.245400e+05 0.00 NULL
2021 Nyc Housing Authority Administrative Public Information Specialist 127816.50000 7.668990e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.668990e+05 7.668990e+05 0.00 NULL
2021 Nyc Housing Authority Administrative Quality Assurance Specialist 101138.00000 1.011380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.011380e+05 1.011380e+05 0.00 NULL
2021 Nyc Housing Authority Administrative Real Property Manager 168913.25000 6.756530e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.756530e+05 6.756530e+05 0.00 NULL
2021 Nyc Housing Authority Administrative Space Analyst 103388.75000 4.135550e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.135550e+05 4.135550e+05 0.00 NULL
2021 Nyc Housing Authority Administrative Staff Analyst 117964.67424 1.557134e+07 26651.46 2.019050e+02 0.000 486.75 132 0.000000e+00 0.00 1.559799e+07 1.557134e+07 26651.46 NULL
2021 Nyc Housing Authority Administrative Storekeeper 107315.00000 3.219450e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.219450e+05 3.219450e+05 0.00 NULL
2021 Nyc Housing Authority Administrative Supervisor Of Building Maintenance 117611.00000 8.232770e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.232770e+05 8.232770e+05 0.00 NULL
2021 Nyc Housing Authority Administrative Supervisor Of Skilled Trades 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2021 Nyc Housing Authority Agency Attorney 91453.60000 5.029948e+06 0.00 0.000000e+00 0.000 0.00 55 0.000000e+00 0.00 5.029948e+06 5.029948e+06 0.00 NULL
2021 Nyc Housing Authority Agency Attorney Interne 71216.75000 2.848670e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.848670e+05 2.848670e+05 0.00 NULL
2021 Nyc Housing Authority Agency Chief Contracting Officer 226000.00000 2.260000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.260000e+05 2.260000e+05 0.00 NULL
2021 Nyc Housing Authority Apprentice 64386.00000 1.287720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.287720e+05 1.287720e+05 0.00 NULL
2021 Nyc Housing Authority Architect 95204.10000 9.520410e+05 13.92 1.392000e+00 0.000 0.00 10 0.000000e+00 0.00 9.520549e+05 9.520410e+05 13.92 NULL
2021 Nyc Housing Authority Asbestos Handler 84087.31250 1.345397e+06 360380.94 2.252381e+04 22091.995 5918.00 16 2.209199e+04 353471.92 1.705778e+06 1.698869e+06 6909.02 NULL
2021 Nyc Housing Authority Asbestos Handler Supervisor 88269.50000 5.296170e+05 180508.54 3.008476e+04 31280.210 2812.00 6 3.008476e+04 180508.54 7.101255e+05 7.101255e+05 0.00 NULL
2021 Nyc Housing Authority Asbestos Hazard Investigator 79302.80000 3.965140e+05 87590.47 1.751809e+04 9467.220 1460.75 5 9.467220e+03 47336.10 4.841045e+05 4.438501e+05 40254.37 NULL
2021 Nyc Housing Authority Assistant Architect 73281.00000 7.328100e+05 6576.92 6.576920e+02 0.000 116.00 10 0.000000e+00 0.00 7.393869e+05 7.328100e+05 6576.92 NULL
2021 Nyc Housing Authority Assistant Civil Engineer 80730.00000 2.421900e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.421900e+05 2.421900e+05 0.00 NULL
2021 Nyc Housing Authority Assistant Director Of Intergroup Relations 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2021 Nyc Housing Authority Assistant Electrical Engineer 67765.00000 1.355300e+05 0.17 8.500000e-02 0.085 0.00 2 8.500000e-02 0.17 1.355302e+05 1.355302e+05 0.00 NULL
2021 Nyc Housing Authority Assistant Executive Director 203167.00000 8.126680e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.126680e+05 8.126680e+05 0.00 NULL
2021 Nyc Housing Authority Assistant Housing Manager 75866.17112 1.418697e+07 445521.38 2.382467e+03 225.450 8847.25 187 2.254500e+02 42159.15 1.463250e+07 1.422913e+07 403362.23 NULL
2021 Nyc Housing Authority Assistant Landscape Architect 68000.00000 1.360000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.360000e+05 1.360000e+05 0.00 NULL
2021 Nyc Housing Authority Assistant Mechanical Engineer 80055.66667 2.401670e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.401670e+05 2.401670e+05 0.00 NULL
2021 Nyc Housing Authority Assistant Printing Press Operator 61222.40000 3.061120e+05 3994.47 7.988940e+02 783.930 84.00 5 7.839300e+02 3919.65 3.101065e+05 3.100317e+05 74.82 NULL
2021 Nyc Housing Authority Assistant Resident Building Supt 72637.07522 1.641598e+07 4963121.51 2.196071e+04 20287.310 96083.75 226 2.028731e+04 4584932.06 2.137910e+07 2.100091e+07 378189.45 NULL
2021 Nyc Housing Authority Assoc Inspector 84146.25000 6.731700e+05 23970.12 2.996265e+03 0.000 460.00 8 0.000000e+00 0.00 6.971401e+05 6.731700e+05 23970.12 NULL
2021 Nyc Housing Authority Associate Air Pollution Inspr 89141.00000 8.914100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.914100e+04 8.914100e+04 0.00 NULL
2021 Nyc Housing Authority Associate Contract Specialist 90728.00000 9.072800e+04 12204.99 1.220499e+04 12204.990 186.00 1 1.220499e+04 12204.99 1.029330e+05 1.029330e+05 0.00 NULL
2021 Nyc Housing Authority Associate Fire Protection Inspector 72260.00000 3.613000e+05 30969.72 6.193944e+03 4724.820 603.75 5 4.724820e+03 23624.10 3.922697e+05 3.849241e+05 7345.62 NULL
2021 Nyc Housing Authority Associate Fraud Investigator 81704.00000 1.634080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.634080e+05 1.634080e+05 0.00 NULL
2021 Nyc Housing Authority Associate Housing Development Specialist 95169.92593 2.569588e+06 30293.62 1.121986e+03 0.000 392.25 27 0.000000e+00 0.00 2.599882e+06 2.569588e+06 30293.62 NULL
2021 Nyc Housing Authority Associate Inspector 78976.33333 2.369290e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.369290e+05 2.369290e+05 0.00 NULL
2021 Nyc Housing Authority Associate Investigator 65484.72727 7.203320e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.203320e+05 7.203320e+05 0.00 NULL
2021 Nyc Housing Authority Associate Labor Relations Analyst 97969.60000 4.898480e+05 42328.08 8.465616e+03 2001.100 615.00 5 2.001100e+03 10005.50 5.321761e+05 4.998535e+05 32322.58 NULL
2021 Nyc Housing Authority Associate Operations Communications Specialist 61311.00000 6.131100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.131100e+04 6.131100e+04 0.00 NULL
2021 Nyc Housing Authority Associate Project Manager 91912.00000 3.676480e+05 1454.85 3.637125e+02 0.000 23.25 4 0.000000e+00 0.00 3.691028e+05 3.676480e+05 1454.85 NULL
2021 Nyc Housing Authority Associate Public Health Sanitarian 79834.00000 9.580080e+05 49111.24 4.092603e+03 373.320 862.75 12 3.733200e+02 4479.84 1.007119e+06 9.624878e+05 44631.40 NULL
2021 Nyc Housing Authority Associate Public Information Specialist 58869.00000 5.886900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.886900e+04 5.886900e+04 0.00 NULL
2021 Nyc Housing Authority Associate Quality Assurance Specialist 70549.00000 7.054900e+04 38.78 3.878000e+01 38.780 1.00 1 3.878000e+01 38.78 7.058778e+04 7.058778e+04 0.00 NULL
2021 Nyc Housing Authority Associate Real Property Manager 82719.66667 2.481590e+05 1.99 6.633333e-01 0.770 0.00 3 6.633333e-01 1.99 2.481610e+05 2.481610e+05 0.00 NULL
2021 Nyc Housing Authority Associate Staff Analyst 83419.51163 3.587039e+06 171198.02 3.981349e+03 0.000 2675.00 43 0.000000e+00 0.00 3.758237e+06 3.587039e+06 171198.02 NULL
2021 Nyc Housing Authority Associate Urban Designer 89893.00000 1.797860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.797860e+05 1.797860e+05 0.00 NULL
2021 Nyc Housing Authority Auto Mechanic NA NA 32629.82 1.087661e+04 8054.540 521.75 3 8.054540e+03 24163.62 NA NA NA NULL
2021 Nyc Housing Authority Automotive Service Worker 52354.66667 1.570640e+05 1334.90 4.449667e+02 516.160 41.50 3 4.449667e+02 1334.90 1.583989e+05 1.583989e+05 0.00 NULL
2021 Nyc Housing Authority Bookkeeper 53885.42857 1.131594e+06 3221.82 1.534200e+02 0.000 93.50 21 0.000000e+00 0.00 1.134816e+06 1.131594e+06 3221.82 NULL
2021 Nyc Housing Authority Bricklayer NA NA 2562071.06 4.003236e+04 33111.200 34709.50 64 3.311120e+04 2119116.80 NA NA NA NULL
2021 Nyc Housing Authority Business Promotion Coordinator 75897.00000 3.035880e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.035880e+05 3.035880e+05 0.00 NULL
2021 Nyc Housing Authority Caretaker 40865.22248 1.759656e+08 26752041.61 6.212736e+03 3199.850 821775.25 4306 3.199850e+03 13778554.10 2.027177e+08 1.897442e+08 12973487.51 NULL
2021 Nyc Housing Authority Carpenter NA NA 8350494.25 3.353612e+04 24581.150 105628.25 249 2.458115e+04 6120706.35 NA NA NA NULL
2021 Nyc Housing Authority Certified It Administrator 110049.18182 1.210541e+06 136660.98 1.242373e+04 4234.320 1605.00 11 4.234320e+03 46577.52 1.347202e+06 1.257119e+06 90083.46 NULL
2021 Nyc Housing Authority Chair 414707.00000 4.147070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.147070e+05 4.147070e+05 0.00 NULL
2021 Nyc Housing Authority Chauffeur-Attendant 60071.00000 6.007100e+04 1644.00 1.644000e+03 1644.000 42.00 1 1.644000e+03 1644.00 6.171500e+04 6.171500e+04 0.00 NULL
2021 Nyc Housing Authority Chief Caretaker 51739.57895 9.830520e+05 298206.63 1.569509e+04 14683.020 8543.00 19 1.468302e+04 278977.38 1.281259e+06 1.262029e+06 19229.25 NULL
2021 Nyc Housing Authority Chief Of Housing Community Activities 94737.00000 2.842110e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.842110e+05 2.842110e+05 0.00 NULL
2021 Nyc Housing Authority Chief, Publications & Reports 112000.00000 1.120000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.120000e+05 1.120000e+05 0.00 NULL
2021 Nyc Housing Authority City Attendant 37364.00000 2.241840e+05 16145.74 2.690957e+03 0.000 601.50 6 0.000000e+00 0.00 2.403297e+05 2.241840e+05 16145.74 NULL
2021 Nyc Housing Authority City Laborer NA NA 1241641.12 1.254183e+04 9280.030 22159.75 99 9.280030e+03 918722.97 NA NA NA NULL
2021 Nyc Housing Authority City Pest Control Aide 32752.56250 5.240410e+05 12940.95 8.088094e+02 0.000 584.00 16 0.000000e+00 0.00 5.369819e+05 5.240410e+05 12940.95 NULL
2021 Nyc Housing Authority City Planner 82775.66667 2.483270e+05 1535.82 5.119400e+02 0.000 27.00 3 0.000000e+00 0.00 2.498628e+05 2.483270e+05 1535.82 NULL
2021 Nyc Housing Authority City Research Scientist 92270.44444 8.304340e+05 22420.09 2.491121e+03 0.000 386.50 9 0.000000e+00 0.00 8.528541e+05 8.304340e+05 22420.09 NULL
2021 Nyc Housing Authority City Seasonal Aide 39827.08539 3.544611e+07 2219.26 2.493551e+00 0.000 90.50 890 0.000000e+00 0.00 3.544833e+07 3.544611e+07 2219.26 NULL
2021 Nyc Housing Authority City Security Aide 10404.14706 3.537410e+05 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 3.537410e+05 3.537410e+05 0.00 NULL
2021 Nyc Housing Authority City Service Aide 40317.00000 3.951066e+06 0.00 0.000000e+00 0.000 0.00 98 0.000000e+00 0.00 3.951066e+06 3.951066e+06 0.00 NULL
2021 Nyc Housing Authority Civil Engineer 97472.20000 4.873610e+05 0.22 4.400000e-02 0.000 0.00 5 0.000000e+00 0.00 4.873612e+05 4.873610e+05 0.22 NULL
2021 Nyc Housing Authority Claim Specialist 60375.00000 3.018750e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.018750e+05 3.018750e+05 0.00 NULL
2021 Nyc Housing Authority Clerical Aide 34202.75000 1.368110e+05 60.87 1.521750e+01 14.615 1.50 4 1.461500e+01 58.46 1.368719e+05 1.368695e+05 2.41 NULL
2021 Nyc Housing Authority Clerical Associate 42170.93814 4.090581e+06 16746.19 1.726411e+02 0.000 490.25 97 0.000000e+00 0.00 4.107327e+06 4.090581e+06 16746.19 NULL
2021 Nyc Housing Authority College Aide 24932.90909 2.742620e+05 165.16 1.501455e+01 0.000 9.00 11 0.000000e+00 0.00 2.744272e+05 2.742620e+05 165.16 NULL
2021 Nyc Housing Authority Community Assistant 37956.66667 5.693500e+05 683.26 4.555067e+01 0.000 27.00 15 0.000000e+00 0.00 5.700333e+05 5.693500e+05 683.26 NULL
2021 Nyc Housing Authority Community Associate 47766.10714 6.687255e+06 44959.28 3.211377e+02 0.000 1302.75 140 0.000000e+00 0.00 6.732214e+06 6.687255e+06 44959.28 NULL
2021 Nyc Housing Authority Community Coordinator 68239.89912 1.555870e+07 111521.43 4.891291e+02 0.000 2403.75 228 0.000000e+00 0.00 1.567022e+07 1.555870e+07 111521.43 NULL
2021 Nyc Housing Authority Community Service Aide 32520.71918 4.748025e+06 158079.90 1.082739e+03 0.000 5731.75 146 0.000000e+00 0.00 4.906105e+06 4.748025e+06 158079.90 NULL
2021 Nyc Housing Authority Computer Associate 72311.18182 7.954230e+05 23986.89 2.180626e+03 0.000 456.50 11 0.000000e+00 0.00 8.194099e+05 7.954230e+05 23986.89 NULL
2021 Nyc Housing Authority Computer Operations Manager 103390.42857 7.237330e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.237330e+05 7.237330e+05 0.00 NULL
2021 Nyc Housing Authority Computer Service Technician 54160.50000 1.083210e+05 882.60 4.413000e+02 441.300 24.25 2 4.413000e+02 882.60 1.092036e+05 1.092036e+05 0.00 NULL
2021 Nyc Housing Authority Computer Specialist 100135.68293 4.105563e+06 215490.89 5.255875e+03 109.960 2921.25 41 1.099600e+02 4508.36 4.321054e+06 4.110071e+06 210982.53 NULL
2021 Nyc Housing Authority Computer Systems Manager 136071.51923 7.075719e+06 13341.45 2.565663e+02 0.000 170.25 52 0.000000e+00 0.00 7.089060e+06 7.075719e+06 13341.45 NULL
2021 Nyc Housing Authority Confidential Investigator 72483.79412 2.464449e+06 18504.44 5.442482e+02 0.000 353.25 34 0.000000e+00 0.00 2.482953e+06 2.464449e+06 18504.44 NULL
2021 Nyc Housing Authority Construction Project Manager 85329.53077 1.109284e+07 299935.33 2.307195e+03 0.000 5177.50 130 0.000000e+00 0.00 1.139277e+07 1.109284e+07 299935.33 NULL
2021 Nyc Housing Authority Consultant On Race Relations 108150.00000 1.081500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081500e+05 1.081500e+05 0.00 NULL
2021 Nyc Housing Authority Contract Specialist 58739.00000 8.223460e+05 2812.41 2.008864e+02 0.000 73.50 14 0.000000e+00 0.00 8.251584e+05 8.223460e+05 2812.41 NULL
2021 Nyc Housing Authority Controller 172000.00000 1.720000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.720000e+05 1.720000e+05 0.00 NULL
2021 Nyc Housing Authority Coordinator, Tenant Patrol 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2021 Nyc Housing Authority Counsel 226600.00000 2.266000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.266000e+05 2.266000e+05 0.00 NULL
2021 Nyc Housing Authority Custodian 68000.00000 6.800000e+04 9454.37 9.454370e+03 9454.370 213.25 1 9.454370e+03 9454.37 7.745437e+04 7.745437e+04 0.00 NULL
2021 Nyc Housing Authority Customer Information Representative Ma L 1549 48291.20000 4.346208e+06 31357.04 3.484116e+02 0.000 897.75 90 0.000000e+00 0.00 4.377565e+06 4.346208e+06 31357.04 NULL
2021 Nyc Housing Authority Deputy Controller 166531.00000 1.665310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.665310e+05 1.665310e+05 0.00 NULL
2021 Nyc Housing Authority Deputy Director Of Design 108000.00000 1.080000e+05 402.75 4.027500e+02 402.750 6.00 1 4.027500e+02 402.75 1.084028e+05 1.084028e+05 0.00 NULL
2021 Nyc Housing Authority Deputy Director Of Management 107500.00000 2.150000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.150000e+05 2.150000e+05 0.00 NULL
2021 Nyc Housing Authority Deputy Inspector General 115858.33333 3.475750e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.475750e+05 3.475750e+05 0.00 NULL
2021 Nyc Housing Authority Dir Of Quality & Cost Control 175100.00000 1.751000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.751000e+05 1.751000e+05 0.00 NULL
2021 Nyc Housing Authority Director Of Contract Administration 182566.00000 1.825660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.825660e+05 1.825660e+05 0.00 NULL
2021 Nyc Housing Authority Director Of Design 149350.00000 1.493500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.493500e+05 1.493500e+05 0.00 NULL
2021 Nyc Housing Authority Director Of Development 225949.00000 2.259490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.259490e+05 2.259490e+05 0.00 NULL
2021 Nyc Housing Authority Director Of Equal Opportunity 141017.00000 1.410170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.410170e+05 1.410170e+05 0.00 NULL
2021 Nyc Housing Authority Director Of General Services 158926.00000 1.589260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.589260e+05 1.589260e+05 0.00 NULL
2021 Nyc Housing Authority Director Of Housing Applicantions 155765.00000 1.557650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.557650e+05 1.557650e+05 0.00 NULL
2021 Nyc Housing Authority Director Of Hud Acquired Properties 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2021 Nyc Housing Authority Director Of Information Systems 174489.00000 1.744890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.744890e+05 1.744890e+05 0.00 NULL
2021 Nyc Housing Authority Director Of Methods & Analysis 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2021 Nyc Housing Authority Director Of Plant Operations & Maintenance 159350.00000 1.593500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.593500e+05 1.593500e+05 0.00 NULL
2021 Nyc Housing Authority Director Of Program Planning 127449.00000 1.274490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.274490e+05 1.274490e+05 0.00 NULL
2021 Nyc Housing Authority Director Of Public And Community Relations 205850.00000 2.058500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.058500e+05 2.058500e+05 0.00 NULL
2021 Nyc Housing Authority Director Of Research & Policy Development 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2021 Nyc Housing Authority Director Of Review & Counseling 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2021 Nyc Housing Authority Director Of Tenant & Community Affairs 112795.00000 1.127950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.127950e+05 1.127950e+05 0.00 NULL
2021 Nyc Housing Authority Director Or Management 153107.00000 1.531070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.531070e+05 1.531070e+05 0.00 NULL
2021 Nyc Housing Authority Economist 76897.40000 1.153461e+06 371.28 2.475200e+01 0.000 10.00 15 0.000000e+00 0.00 1.153832e+06 1.153461e+06 371.28 NULL
2021 Nyc Housing Authority Electrical Engineer 100726.66667 3.021800e+05 1.00 3.333333e-01 0.000 0.00 3 0.000000e+00 0.00 3.021810e+05 3.021800e+05 1.00 NULL
2021 Nyc Housing Authority Electrician NA NA 4231744.96 5.224376e+04 45092.210 46887.25 81 4.509221e+04 3652469.01 NA NA NA NULL
2021 Nyc Housing Authority Electricians Helper NA NA 2418151.73 2.844884e+04 26886.220 39695.75 85 2.688622e+04 2285328.70 NA NA NA NULL
2021 Nyc Housing Authority Elevator Mechanic NA NA 7719366.49 3.415649e+04 27428.260 95092.50 226 2.742826e+04 6198786.76 NA NA NA NULL
2021 Nyc Housing Authority Elevator Mechanic Helper NA NA 3777733.04 2.406199e+04 21145.890 72233.00 157 2.114589e+04 3319904.73 NA NA NA NULL
2021 Nyc Housing Authority Emergency Service Aide 41660.34483 2.416300e+06 160635.99 2.769586e+03 673.395 5804.75 58 6.733950e+02 39056.91 2.576936e+06 2.455357e+06 121579.08 NULL
2021 Nyc Housing Authority Engineering Technician 78530.00000 7.853000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.853000e+04 7.853000e+04 0.00 NULL
2021 Nyc Housing Authority Executive Agency Counsel 135647.71739 6.239795e+06 0.00 0.000000e+00 0.000 0.00 46 0.000000e+00 0.00 6.239795e+06 6.239795e+06 0.00 NULL
2021 Nyc Housing Authority Executive Director 258000.00000 2.580000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.580000e+05 2.580000e+05 0.00 NULL
2021 Nyc Housing Authority Executive Program Specialist 130000.00000 2.600000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.600000e+05 2.600000e+05 0.00 NULL
2021 Nyc Housing Authority Fraud Investigator 62446.50000 1.248930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.248930e+05 1.248930e+05 0.00 NULL
2021 Nyc Housing Authority Geologist 95270.00000 9.527000e+04 4089.52 4.089520e+03 4089.520 52.25 1 4.089520e+03 4089.52 9.935952e+04 9.935952e+04 0.00 NULL
2021 Nyc Housing Authority Glazier NA NA 465387.77 1.939116e+04 11729.750 4682.25 24 1.172975e+04 281514.00 NA NA NA NULL
2021 Nyc Housing Authority Graphic Artist 62587.66667 1.877630e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.877630e+05 1.877630e+05 0.00 NULL
2021 Nyc Housing Authority Health Services Manager 125497.50000 2.509950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.509950e+05 2.509950e+05 0.00 NULL
2021 Nyc Housing Authority Hearing Examiner 128812.00000 3.864360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.864360e+05 3.864360e+05 0.00 NULL
2021 Nyc Housing Authority Heating Plant Technician 53541.81818 1.590192e+07 4470733.59 1.505298e+04 10841.110 123405.75 297 1.084111e+04 3219809.67 2.037265e+07 1.912173e+07 1250923.92 NULL
2021 Nyc Housing Authority Housing Assistant 58550.90920 4.771899e+07 695493.03 8.533657e+02 0.000 17461.25 815 0.000000e+00 0.00 4.841448e+07 4.771899e+07 695493.03 NULL
2021 Nyc Housing Authority Housing Assistant Trainee 33618.79310 1.949890e+06 33077.56 5.703028e+02 0.000 1148.50 58 0.000000e+00 0.00 1.982968e+06 1.949890e+06 33077.56 NULL
2021 Nyc Housing Authority Housing Development Specialist 85000.00000 8.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.500000e+04 8.500000e+04 0.00 NULL
2021 Nyc Housing Authority Housing Development Specialist Trainee 55613.00000 1.112260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.112260e+05 1.112260e+05 0.00 NULL
2021 Nyc Housing Authority Housing Exterminator 51079.81373 5.210141e+06 564030.89 5.529715e+03 2575.160 15040.50 102 2.575160e+03 262666.32 5.774172e+06 5.472807e+06 301364.57 NULL
2021 Nyc Housing Authority Housing Exterminator-Al Ii & Iii 61035.88235 1.037610e+06 248220.69 1.460122e+04 3191.830 5140.25 17 3.191830e+03 54261.11 1.285831e+06 1.091871e+06 193959.58 NULL
2021 Nyc Housing Authority Housing Exterminator-Al Iv 83315.75000 3.332630e+05 17626.41 4.406602e+03 3632.495 330.50 4 3.632495e+03 14529.98 3.508894e+05 3.477930e+05 3096.43 NULL
2021 Nyc Housing Authority Housing Manager 94006.29189 1.739116e+07 933793.21 5.047531e+03 718.770 15108.00 185 7.187700e+02 132972.45 1.832496e+07 1.752414e+07 800820.76 NULL
2021 Nyc Housing Authority Housing Stock Worker 47446.58824 8.065920e+05 6165.90 3.627000e+02 286.010 204.25 17 2.860100e+02 4862.17 8.127579e+05 8.114542e+05 1303.73 NULL
2021 Nyc Housing Authority Industrial Hygienist 69548.50000 2.781940e+05 22386.69 5.596672e+03 1289.230 483.75 4 1.289230e+03 5156.92 3.005807e+05 2.833509e+05 17229.77 NULL
2021 Nyc Housing Authority Inspector 69045.08333 8.285410e+05 110464.50 9.205375e+03 6233.775 2241.50 12 6.233775e+03 74805.30 9.390055e+05 9.033463e+05 35659.20 NULL
2021 Nyc Housing Authority Inspector Boilers 81416.66667 2.442500e+05 18628.39 6.209463e+03 1005.740 343.00 3 1.005740e+03 3017.22 2.628784e+05 2.472672e+05 15611.17 NULL
2021 Nyc Housing Authority Inspector Construction 83000.00000 8.300000e+04 8660.68 8.660680e+03 8660.680 145.25 1 8.660680e+03 8660.68 9.166068e+04 9.166068e+04 0.00 NULL
2021 Nyc Housing Authority Inspector Elevators 83504.50000 1.670090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.670090e+05 1.670090e+05 0.00 NULL
2021 Nyc Housing Authority Inspector General 158918.00000 1.589180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.589180e+05 1.589180e+05 0.00 NULL
2021 Nyc Housing Authority Insurance Advisor 63000.00000 6.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.300000e+04 6.300000e+04 0.00 NULL
2021 Nyc Housing Authority Interpreter 54535.33333 1.636060e+05 355.41 1.184700e+02 69.450 11.25 3 6.945000e+01 208.35 1.639614e+05 1.638144e+05 147.06 NULL
2021 Nyc Housing Authority Interpreter/Translator 57112.00000 1.142240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.142240e+05 1.142240e+05 0.00 NULL
2021 Nyc Housing Authority Investigator 52804.66667 1.584140e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.584140e+05 1.584140e+05 0.00 NULL
2021 Nyc Housing Authority Labor Relations Analyst 62514.25000 5.001140e+05 450.32 5.629000e+01 0.000 10.00 8 0.000000e+00 0.00 5.005643e+05 5.001140e+05 450.32 NULL
2021 Nyc Housing Authority Labor Relations Analyst Trainee 51518.00000 1.030360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.030360e+05 1.030360e+05 0.00 NULL
2021 Nyc Housing Authority Landscape Architect 87776.00000 1.755520e+05 1378.87 6.894350e+02 689.435 26.25 2 6.894350e+02 1378.87 1.769309e+05 1.769309e+05 0.00 NULL
2021 Nyc Housing Authority Lead Abatement Worker 51734.03846 1.345085e+06 123200.58 4.738484e+03 2843.640 3300.50 26 2.843640e+03 73934.64 1.468286e+06 1.419020e+06 49265.94 NULL
2021 Nyc Housing Authority Legal Secretarial Assistant 53515.00000 5.351500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.351500e+04 5.351500e+04 0.00 NULL
2021 Nyc Housing Authority Legal Secretarial Assistant - Al 1 Only 44069.00000 8.813800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.813800e+04 8.813800e+04 0.00 NULL
2021 Nyc Housing Authority Machinist NA NA 12249.18 6.124590e+03 6124.590 216.75 2 6.124590e+03 12249.18 NA NA NA NULL
2021 Nyc Housing Authority Maintenance Worker NA NA 15546523.70 1.234831e+04 8825.050 330662.00 1259 8.825050e+03 11110737.95 NA NA NA NULL
2021 Nyc Housing Authority Management Auditor 70229.31579 1.334357e+06 6023.94 3.170495e+02 0.000 119.00 19 0.000000e+00 0.00 1.340381e+06 1.334357e+06 6023.94 NULL
2021 Nyc Housing Authority Masons Helper NA NA 1023166.89 1.795030e+04 9085.450 18977.50 57 9.085450e+03 517870.65 NA NA NA NULL
2021 Nyc Housing Authority Mechanical Engineer 101515.80000 5.075790e+05 0.08 1.600000e-02 0.000 0.00 5 0.000000e+00 0.00 5.075791e+05 5.075790e+05 0.08 NULL
2021 Nyc Housing Authority Media Services Technician 62573.00000 6.257300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.257300e+04 6.257300e+04 0.00 NULL
2021 Nyc Housing Authority Motor Grader Operator NA NA 41047.78 1.368259e+04 8249.620 452.50 3 8.249620e+03 24748.86 NA NA NA NULL
2021 Nyc Housing Authority Motor Vehicle Operator 48312.00000 7.246800e+05 14535.89 9.690593e+02 0.000 456.00 15 0.000000e+00 0.00 7.392159e+05 7.246800e+05 14535.89 NULL
2021 Nyc Housing Authority Office Machine Aide 34014.00000 3.401400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.401400e+04 3.401400e+04 0.00 NULL
2021 Nyc Housing Authority Oil Burner Specialist 67874.80000 3.393740e+05 126619.64 2.532393e+04 16727.880 2621.50 5 1.672788e+04 83639.40 4.659936e+05 4.230134e+05 42980.24 NULL
2021 Nyc Housing Authority Oiler NA NA 46710.86 7.785143e+03 4122.770 522.50 6 4.122770e+03 24736.62 NA NA NA NULL
2021 Nyc Housing Authority Painter NA NA 6828282.35 1.881070e+04 12850.570 109374.00 363 1.285057e+04 4664756.91 NA NA NA NULL
2021 Nyc Housing Authority Plasterer NA NA 8636022.06 3.510578e+04 33682.230 100299.00 246 3.368223e+04 8285828.58 NA NA NA NULL
2021 Nyc Housing Authority Plumber NA NA 9794697.37 8.028440e+04 78313.975 93056.50 122 7.831398e+04 9554304.95 NA NA NA NULL
2021 Nyc Housing Authority Plumber’s Helper NA NA 4524020.65 4.971451e+04 47000.510 61163.25 91 4.700051e+04 4277046.41 NA NA NA NULL
2021 Nyc Housing Authority Principal Administrative Associate - Non Supvr 65770.88372 5.656296e+06 31862.10 3.704895e+02 0.000 841.50 86 0.000000e+00 0.00 5.688158e+06 5.656296e+06 31862.10 NULL
2021 Nyc Housing Authority Printing Press Operator NA NA 1569.68 1.569680e+03 1569.680 26.00 1 1.569680e+03 1569.68 NA NA NA NULL
2021 Nyc Housing Authority Procurement Analyst 68605.09756 2.812809e+06 108577.64 2.648235e+03 0.000 1972.25 41 0.000000e+00 0.00 2.921387e+06 2.812809e+06 108577.64 NULL
2021 Nyc Housing Authority Project Manager 72424.00000 1.448480e+05 3328.95 1.664475e+03 1664.475 52.75 2 1.664475e+03 3328.95 1.481770e+05 1.481770e+05 0.00 NULL
2021 Nyc Housing Authority Project Manager Intern# 59265.00000 1.777950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.777950e+05 1.777950e+05 0.00 NULL
2021 Nyc Housing Authority Public Health Sanitarian 57990.00000 2.319600e+05 3502.88 8.757200e+02 350.915 93.00 4 3.509150e+02 1403.66 2.354629e+05 2.333637e+05 2099.22 NULL
2021 Nyc Housing Authority Public Records Aide 52426.00000 5.242600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.242600e+04 5.242600e+04 0.00 NULL
2021 Nyc Housing Authority Quality Assurance Specialist 60923.23077 7.920020e+05 11010.04 8.469262e+02 0.000 255.50 13 0.000000e+00 0.00 8.030120e+05 7.920020e+05 11010.04 NULL
2021 Nyc Housing Authority Real Property Manager 61000.00000 6.100000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.100000e+04 6.100000e+04 0.00 NULL
2021 Nyc Housing Authority Recreation Director 52184.00000 5.218400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.218400e+04 5.218400e+04 0.00 NULL
2021 Nyc Housing Authority Research Assistant 59582.00000 5.958200e+05 25229.63 2.522963e+03 0.000 521.00 10 0.000000e+00 0.00 6.210496e+05 5.958200e+05 25229.63 NULL
2021 Nyc Housing Authority Resident Building Superintendent 91125.87037 1.968319e+07 4219667.86 1.953550e+04 14866.460 68376.00 216 1.486646e+04 3211155.36 2.390286e+07 2.289434e+07 1008512.50 NULL
2021 Nyc Housing Authority Roofer NA NA 407201.53 1.628806e+04 11218.570 6759.50 25 1.121857e+04 280464.25 NA NA NA NULL
2021 Nyc Housing Authority Secretary 43461.89901 1.764553e+07 86119.43 2.121168e+02 0.000 2837.25 406 0.000000e+00 0.00 1.773165e+07 1.764553e+07 86119.43 NULL
2021 Nyc Housing Authority Secretary To Deputy Executive Director 83708.50000 3.348340e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.348340e+05 3.348340e+05 0.00 NULL
2021 Nyc Housing Authority Secretary To Executive Director 85276.00000 8.527600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.527600e+04 8.527600e+04 0.00 NULL
2021 Nyc Housing Authority Secretary To Member 89371.00000 8.937100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.937100e+04 8.937100e+04 0.00 NULL
2021 Nyc Housing Authority Secretary To The Chairman 82876.00000 8.287600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.287600e+04 8.287600e+04 0.00 NULL
2021 Nyc Housing Authority Senior Estimator 88863.75000 7.109100e+05 49.26 6.157500e+00 0.000 1.00 8 0.000000e+00 0.00 7.109593e+05 7.109100e+05 49.26 NULL
2021 Nyc Housing Authority Senior Intergroup Relations Officer 90898.00000 1.817960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.817960e+05 1.817960e+05 0.00 NULL
2021 Nyc Housing Authority Social Worker 60194.40000 6.019440e+05 6127.28 6.127280e+02 0.000 139.50 10 0.000000e+00 0.00 6.080713e+05 6.019440e+05 6127.28 NULL
2021 Nyc Housing Authority Space Analyst 76016.00000 7.601600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.601600e+04 7.601600e+04 0.00 NULL
2021 Nyc Housing Authority Special Assistant To The Deputy Executive Director 121497.44444 1.093477e+06 3906.11 4.340122e+02 0.000 51.50 9 0.000000e+00 0.00 1.097383e+06 1.093477e+06 3906.11 NULL
2021 Nyc Housing Authority Special Assistant To The Executive Director 149287.00000 1.492870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.492870e+05 1.492870e+05 0.00 NULL
2021 Nyc Housing Authority Special Officer 47521.50000 1.900860e+05 8694.37 2.173593e+03 1280.650 241.50 4 1.280650e+03 5122.60 1.987804e+05 1.952086e+05 3571.77 NULL
2021 Nyc Housing Authority Staff Analyst 64762.23529 2.201916e+06 2803.36 8.245176e+01 0.000 68.00 34 0.000000e+00 0.00 2.204719e+06 2.201916e+06 2803.36 NULL
2021 Nyc Housing Authority Staff Analyst Trainee 45551.00000 1.822040e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.822040e+05 1.822040e+05 0.00 NULL
2021 Nyc Housing Authority Stationary Engineer NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2021 Nyc Housing Authority Statistician 79964.66667 2.398940e+05 5585.24 1.861747e+03 1860.950 102.50 3 1.860950e+03 5582.85 2.454792e+05 2.454769e+05 2.39 NULL
2021 Nyc Housing Authority Summer College Intern 19554.00000 1.955400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.955400e+04 1.955400e+04 0.00 NULL
2021 Nyc Housing Authority Summer Graduate Intern 21821.50000 1.309290e+05 1302.95 2.171583e+02 0.000 39.00 6 0.000000e+00 0.00 1.322320e+05 1.309290e+05 1302.95 NULL
2021 Nyc Housing Authority Supervising Computer Service Technician 71559.75000 2.862390e+05 3068.91 7.672275e+02 367.610 62.00 4 3.676100e+02 1470.44 2.893079e+05 2.877094e+05 1598.47 NULL
2021 Nyc Housing Authority Supervising Housing Groundskeeper 62427.86897 9.052041e+06 3127356.50 2.156798e+04 21351.170 67128.50 145 2.135117e+04 3095919.65 1.217940e+07 1.214796e+07 31436.85 NULL
2021 Nyc Housing Authority Supervising Special Officer 55853.00000 1.117060e+05 2728.41 1.364205e+03 1364.205 68.00 2 1.364205e+03 2728.41 1.144344e+05 1.144344e+05 0.00 NULL
2021 Nyc Housing Authority Supervisor 74401.50000 1.488030e+05 8640.63 4.320315e+03 4320.315 168.25 2 4.320315e+03 8640.63 1.574436e+05 1.574436e+05 0.00 NULL
2021 Nyc Housing Authority Supervisor Bricklayer NA NA 797253.81 7.247762e+04 88147.710 9444.00 11 7.247762e+04 797253.81 NA NA NA NULL
2021 Nyc Housing Authority Supervisor Carpenter NA NA 1087213.84 6.395376e+04 55110.200 13107.75 17 5.511020e+04 936873.40 NA NA NA NULL
2021 Nyc Housing Authority Supervisor Electrician NA NA 931696.27 6.211308e+04 57844.290 9483.00 15 5.784429e+04 867664.35 NA NA NA NULL
2021 Nyc Housing Authority Supervisor Elevator Mechanic NA NA 1072613.98 3.698669e+04 36610.100 11888.75 29 3.661010e+04 1061692.90 NA NA NA NULL
2021 Nyc Housing Authority Supervisor Glazier NA NA 225135.59 7.504520e+04 87771.380 2198.75 3 7.504520e+04 225135.59 NA NA NA NULL
2021 Nyc Housing Authority Supervisor Ii Social Work 76885.50000 6.150840e+05 372.22 4.652750e+01 0.000 7.00 8 0.000000e+00 0.00 6.154562e+05 6.150840e+05 372.22 NULL
2021 Nyc Housing Authority Supervisor Of Electrical Installations & Maintenance 92142.66667 2.764280e+05 2.71 9.033333e-01 0.000 0.00 3 0.000000e+00 0.00 2.764307e+05 2.764280e+05 2.71 NULL
2021 Nyc Housing Authority Supervisor Of Elevator Maintenance 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2021 Nyc Housing Authority Supervisor Of Housing Caretaker 61688.41808 1.091885e+07 3543510.75 2.001983e+04 18936.760 77024.50 177 1.893676e+04 3351806.52 1.446236e+07 1.427066e+07 191704.23 NULL
2021 Nyc Housing Authority Supervisor Of Housing Stock Workers 74494.66667 1.117420e+06 99070.46 6.604697e+03 1155.240 1822.75 15 1.155240e+03 17328.60 1.216490e+06 1.134749e+06 81741.86 NULL
2021 Nyc Housing Authority Supervisor Of Mechanical Installations & Maintenance 82324.62963 2.222765e+06 5910.24 2.188978e+02 0.000 101.75 27 0.000000e+00 0.00 2.228675e+06 2.222765e+06 5910.24 NULL
2021 Nyc Housing Authority Supervisor Of Motor Transport 71906.00000 7.190600e+04 180.80 1.808000e+02 180.800 3.50 1 1.808000e+02 180.80 7.208680e+04 7.208680e+04 0.00 NULL
2021 Nyc Housing Authority Supervisor Of Office Machine Operations 44352.50000 8.870500e+04 24.95 1.247500e+01 12.475 1.00 2 1.247500e+01 24.95 8.872995e+04 8.872995e+04 0.00 NULL
2021 Nyc Housing Authority Supervisor Painter NA NA 3397972.20 2.929286e+04 25208.325 47003.25 116 2.520833e+04 2924165.70 NA NA NA NULL
2021 Nyc Housing Authority Supervisor Plasterer NA NA 2091322.32 7.469008e+04 75956.905 22982.50 28 7.469008e+04 2091322.32 NA NA NA NULL
2021 Nyc Housing Authority Supervisor Plumber NA NA 2161223.63 1.200680e+05 115805.000 19732.75 18 1.158050e+05 2084490.00 NA NA NA NULL
2021 Nyc Housing Authority Supervisor Roofer NA NA 255459.31 4.257655e+04 26703.655 3881.75 6 2.670365e+04 160221.93 NA NA NA NULL
2021 Nyc Housing Authority Telecommunication Manager 126666.66667 3.800000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.800000e+05 3.800000e+05 0.00 NULL
2021 Nyc Housing Authority Telecommunications Associate 87786.88889 7.900820e+05 86405.08 9.600564e+03 7854.300 1266.00 9 7.854300e+03 70688.70 8.764871e+05 8.607707e+05 15716.38 NULL
2021 Nyc Housing Authority Tests And Measurement Specialist 75591.00000 7.559100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.559100e+04 7.559100e+04 0.00 NULL
2021 Nyc Housing Authority Welder NA NA 310649.67 3.451663e+04 43660.660 3068.50 9 3.451663e+04 310649.67 NA NA NA NULL
2021 Nyc Housing Authority Worker’s Compensation Benefits Examiner 55972.33333 1.679170e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.679170e+05 1.679170e+05 0.00 NULL
2021 Nyc Police Pension Fund Accountant 72266.00000 2.890640e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.890640e+05 2.890640e+05 0.00 NULL
2021 Nyc Police Pension Fund Adm Manager-Non-Mgrl 84446.00000 8.444600e+04 2625.85 2.625850e+03 2625.850 44.50 1 2.625850e+03 2625.85 8.707185e+04 8.707185e+04 0.00 NULL
2021 Nyc Police Pension Fund Administrative Accountant 169856.00000 5.095680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.095680e+05 5.095680e+05 0.00 NULL
2021 Nyc Police Pension Fund Administrative Procurement Analyst 164512.00000 1.645120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.645120e+05 1.645120e+05 0.00 NULL
2021 Nyc Police Pension Fund Administrative Real Property Manager 116902.00000 1.169020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.169020e+05 1.169020e+05 0.00 NULL
2021 Nyc Police Pension Fund Administrative Retirement Benefits Specialist 139994.91667 1.679939e+06 822.31 6.852583e+01 0.000 11.75 12 0.000000e+00 0.00 1.680761e+06 1.679939e+06 822.31 NULL
2021 Nyc Police Pension Fund Administrative Staff Analyst 129761.00000 3.892830e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.892830e+05 3.892830e+05 0.00 NULL
2021 Nyc Police Pension Fund Assistant Retirement Benefits Examiner 60868.50000 1.217370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.217370e+05 1.217370e+05 0.00 NULL
2021 Nyc Police Pension Fund Associate Retirement Benefits Examiner 66964.75000 8.035770e+05 20351.24 1.695937e+03 103.205 406.00 12 1.032050e+02 1238.46 8.239282e+05 8.048155e+05 19112.78 NULL
2021 Nyc Police Pension Fund Associate Staff Analyst 90591.00000 9.059100e+04 4117.68 4.117680e+03 4117.680 80.75 1 4.117680e+03 4117.68 9.470868e+04 9.470868e+04 0.00 NULL
2021 Nyc Police Pension Fund Certified It Administrator 133684.50000 2.673690e+05 26130.66 1.306533e+04 13065.330 288.00 2 1.306533e+04 26130.66 2.934997e+05 2.934997e+05 0.00 NULL
2021 Nyc Police Pension Fund Certified It Developer 122132.00000 1.221320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.221320e+05 1.221320e+05 0.00 NULL
2021 Nyc Police Pension Fund Clerical Aide 37414.00000 6.360380e+05 4020.49 2.364994e+02 0.000 157.25 17 0.000000e+00 0.00 6.400585e+05 6.360380e+05 4020.49 NULL
2021 Nyc Police Pension Fund Clerical Associate 53329.97615 6.932897e+05 18406.73 1.415902e+03 0.000 482.75 13 0.000000e+00 0.00 7.116964e+05 6.932897e+05 18406.73 NULL
2021 Nyc Police Pension Fund Community Assistant 44402.00000 2.220100e+05 2.87 5.740000e-01 0.000 0.00 5 0.000000e+00 0.00 2.220129e+05 2.220100e+05 2.87 NULL
2021 Nyc Police Pension Fund Community Associate 51724.66667 1.551740e+06 32608.75 1.086958e+03 83.760 987.25 30 8.376000e+01 2512.80 1.584349e+06 1.554253e+06 30095.95 NULL
2021 Nyc Police Pension Fund Community Coordinator 82518.36364 9.077020e+05 15713.09 1.428463e+03 0.000 296.50 11 0.000000e+00 0.00 9.234151e+05 9.077020e+05 15713.09 NULL
2021 Nyc Police Pension Fund Computer Aide-Non-Spvr 48758.00000 4.875800e+04 2.54 2.540000e+00 2.540 0.00 1 2.540000e+00 2.54 4.876054e+04 4.876054e+04 0.00 NULL
2021 Nyc Police Pension Fund Computer Associate 72734.50000 1.454690e+05 465.70 2.328500e+02 232.850 10.75 2 2.328500e+02 465.70 1.459347e+05 1.459347e+05 0.00 NULL
2021 Nyc Police Pension Fund Computer Specialist 118952.75000 4.758110e+05 13163.76 3.290940e+03 0.000 174.00 4 0.000000e+00 0.00 4.889748e+05 4.758110e+05 13163.76 NULL
2021 Nyc Police Pension Fund Computer Systems Manager 180723.00000 9.036150e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.036150e+05 9.036150e+05 0.00 NULL
2021 Nyc Police Pension Fund Customer Information Representative Ma L 1549 66222.20000 3.311110e+05 27982.75 5.596550e+03 5091.850 613.25 5 5.091850e+03 25459.25 3.590938e+05 3.565702e+05 2523.50 NULL
2021 Nyc Police Pension Fund Deputy Director 224424.00000 4.488480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.488480e+05 4.488480e+05 0.00 NULL
2021 Nyc Police Pension Fund Executive Agency Counsel 150222.50000 3.004450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.004450e+05 3.004450e+05 0.00 NULL
2021 Nyc Police Pension Fund Executive Director 240511.00000 2.405110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.405110e+05 2.405110e+05 0.00 NULL
2021 Nyc Police Pension Fund Management Auditor 82720.66667 2.481620e+05 4399.42 1.466473e+03 0.000 81.75 3 0.000000e+00 0.00 2.525614e+05 2.481620e+05 4399.42 NULL
2021 Nyc Police Pension Fund Paralegal Aide 64448.00000 1.288960e+05 2408.40 1.204200e+03 1204.200 60.25 2 1.204200e+03 2408.40 1.313044e+05 1.313044e+05 0.00 NULL
2021 Nyc Police Pension Fund Principal Administrative Associate - Non Supvr 75954.42857 5.316810e+05 18494.53 2.642076e+03 722.980 350.75 7 7.229800e+02 5060.86 5.501755e+05 5.367419e+05 13433.67 NULL
2021 Nyc Police Pension Fund Procurement Analyst 79101.00000 7.910100e+04 292.26 2.922600e+02 292.260 6.75 1 2.922600e+02 292.26 7.939326e+04 7.939326e+04 0.00 NULL
2021 Nyc Police Pension Fund Secretary To The Executive Director 202658.00000 2.026580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.026580e+05 2.026580e+05 0.00 NULL
2021 Nyc Police Pension Fund Staff Analyst 57590.00000 5.759000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.759000e+04 5.759000e+04 0.00 NULL
2021 Nyc Police Pension Fund Supervisor Of Office Machine Operations 68701.00000 6.870100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.870100e+04 6.870100e+04 0.00 NULL
2021 Off Of Payroll Administration Accountant 71714.75000 2.868590e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.868590e+05 2.868590e+05 0.00 NULL
2021 Off Of Payroll Administration Adm Manager-Non-Mgrl 84104.00000 7.569360e+05 25677.48 2.853053e+03 0.000 362.75 9 0.000000e+00 0.00 7.826135e+05 7.569360e+05 25677.48 NULL
2021 Off Of Payroll Administration Admin Contract Specialist 148592.00000 1.485920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.485920e+05 1.485920e+05 0.00 NULL
2021 Off Of Payroll Administration Administrative Accountant 112013.14286 7.840920e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.840920e+05 7.840920e+05 0.00 NULL
2021 Off Of Payroll Administration Administrative Public Information Specialist 138732.00000 1.387320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.387320e+05 1.387320e+05 0.00 NULL
2021 Off Of Payroll Administration Administrative Staff Analyst 111880.13333 1.678202e+06 32211.39 2.147426e+03 0.000 290.50 15 0.000000e+00 0.00 1.710413e+06 1.678202e+06 32211.39 NULL
2021 Off Of Payroll Administration Associate Staff Analyst 80803.66667 4.848220e+05 515.50 8.591667e+01 0.000 9.00 6 0.000000e+00 0.00 4.853375e+05 4.848220e+05 515.50 NULL
2021 Off Of Payroll Administration Bookkeeper 56650.00000 5.665000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.665000e+04 5.665000e+04 0.00 NULL
2021 Off Of Payroll Administration Certified It Administrator 103169.00000 1.031690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.031690e+05 1.031690e+05 0.00 NULL
2021 Off Of Payroll Administration Certified It Developer 123537.00000 1.235370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.235370e+05 1.235370e+05 0.00 NULL
2021 Off Of Payroll Administration Clerical Associate 51889.88235 8.821280e+05 39678.68 2.334040e+03 0.000 930.75 17 0.000000e+00 0.00 9.218067e+05 8.821280e+05 39678.68 NULL
2021 Off Of Payroll Administration College Aide 6191.71875 1.238344e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.238344e+04 1.238344e+04 0.00 NULL
2021 Off Of Payroll Administration College Aide - Assignment Levels Ii And Iii 1009.26000 1.009260e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.009260e+03 1.009260e+03 0.00 NULL
2021 Off Of Payroll Administration Community Assistant 38726.00000 3.872600e+04 996.25 9.962500e+02 996.250 36.00 1 9.962500e+02 996.25 3.972225e+04 3.972225e+04 0.00 NULL
2021 Off Of Payroll Administration Community Associate 54210.25000 2.168410e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.168410e+05 2.168410e+05 0.00 NULL
2021 Off Of Payroll Administration Community Coordinator 75540.00000 2.266200e+05 2054.80 6.849333e+02 0.000 48.50 3 0.000000e+00 0.00 2.286748e+05 2.266200e+05 2054.80 NULL
2021 Off Of Payroll Administration Computer Associate 81198.00000 4.059900e+05 1095.24 2.190480e+02 0.000 18.25 5 0.000000e+00 0.00 4.070852e+05 4.059900e+05 1095.24 NULL
2021 Off Of Payroll Administration Computer Programmer Analyst 61864.00000 6.186400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.186400e+04 6.186400e+04 0.00 NULL
2021 Off Of Payroll Administration Computer Specialist 108764.21429 1.522699e+06 9074.85 6.482036e+02 0.000 116.75 14 0.000000e+00 0.00 1.531774e+06 1.522699e+06 9074.85 NULL
2021 Off Of Payroll Administration Computer Systems Manager 133052.33333 1.995785e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.995785e+06 1.995785e+06 0.00 NULL
2021 Off Of Payroll Administration Custodian 61017.00000 6.101700e+04 7347.12 7.347120e+03 7347.120 166.25 1 7.347120e+03 7347.12 6.836412e+04 6.836412e+04 0.00 NULL
2021 Off Of Payroll Administration Customer Information Representative Ma L 1549 91597.75000 3.663910e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.663910e+05 3.663910e+05 0.00 NULL
2021 Off Of Payroll Administration Executive Agency Counsel 167455.00000 1.674550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.674550e+05 1.674550e+05 0.00 NULL
2021 Off Of Payroll Administration Executive Director 238848.00000 2.388480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.388480e+05 2.388480e+05 0.00 NULL
2021 Off Of Payroll Administration Management Auditor 84611.00000 2.538330e+05 1993.52 6.645067e+02 0.000 34.00 3 0.000000e+00 0.00 2.558265e+05 2.538330e+05 1993.52 NULL
2021 Off Of Payroll Administration New York City Public Service Fellow 46350.00000 4.635000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.635000e+04 4.635000e+04 0.00 NULL
2021 Off Of Payroll Administration Nycaps Process Analyst 95698.50000 1.913970e+05 6343.10 3.171550e+03 3171.550 87.25 2 3.171550e+03 6343.10 1.977401e+05 1.977401e+05 0.00 NULL
2021 Off Of Payroll Administration Principal Administrative Associate - Non Supvr 73305.94737 1.392813e+06 9409.42 4.952326e+02 0.000 173.50 19 0.000000e+00 0.00 1.402222e+06 1.392813e+06 9409.42 NULL
2021 Off Of Payroll Administration Staff Analyst 67671.44444 6.090430e+05 1066.54 1.185044e+02 0.000 23.50 9 0.000000e+00 0.00 6.101095e+05 6.090430e+05 1066.54 NULL
2021 Off Of Payroll Administration Supervisor Of Stock Workers 52750.00000 5.275000e+04 1476.10 1.476100e+03 1476.100 40.75 1 1.476100e+03 1476.10 5.422610e+04 5.422610e+04 0.00 NULL
2021 Off Of Payroll Administration Telecommunications Manager 69826.00000 6.982600e+04 7075.22 7.075220e+03 7075.220 141.75 1 7.075220e+03 7075.22 7.690122e+04 7.690122e+04 0.00 NULL
2021 Office Of Collective Bargainin Administrative Staff Analyst 151575.00000 1.515750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.515750e+05 1.515750e+05 0.00 NULL
2021 Office Of Collective Bargainin College Aide 2262.84000 2.262840e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.262840e+03 2.262840e+03 0.00 NULL
2021 Office Of Collective Bargainin Community Associate 55323.00000 5.532300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.532300e+04 5.532300e+04 0.00 NULL
2021 Office Of Collective Bargainin Computer Systems Manager 110149.00000 1.101490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.101490e+05 1.101490e+05 0.00 NULL
2021 Office Of Collective Bargainin Deputy Director 197965.50000 3.959310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.959310e+05 3.959310e+05 0.00 NULL
2021 Office Of Collective Bargainin Director Of Information And Research 161719.00000 1.617190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.617190e+05 1.617190e+05 0.00 NULL
2021 Office Of Collective Bargainin Director Of The Office Of Collective Bargaining 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2021 Office Of Collective Bargainin Executive Assistant To The Director 93000.00000 9.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.300000e+04 9.300000e+04 0.00 NULL
2021 Office Of Collective Bargainin Labor Relations Trial Examiner 129395.83333 7.763750e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.763750e+05 7.763750e+05 0.00 NULL
2021 Office Of Collective Bargainin Secretary To The Deputy Chair 60752.00000 6.075200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.075200e+04 6.075200e+04 0.00 NULL
2021 Office Of Collective Bargainin Secy To The Director Of Collective Bargaining 85190.00000 8.519000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.519000e+04 8.519000e+04 0.00 NULL
2021 Office Of Collective Bargainin Staff Analyst 73180.00000 7.318000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.318000e+04 7.318000e+04 0.00 NULL
2021 Office Of Emergency Management Administrative Public Information Specialist 118306.00000 1.183060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.183060e+05 1.183060e+05 0.00 NULL
2021 Office Of Emergency Management Agency Attorney 83818.50000 1.676370e+05 36861.92 1.843096e+04 18430.960 643.50 2 1.843096e+04 36861.92 2.044989e+05 2.044989e+05 0.00 NULL
2021 Office Of Emergency Management Certified It Administrator 137245.00000 1.372450e+05 15427.78 1.542778e+04 15427.780 157.25 1 1.542778e+04 15427.78 1.526728e+05 1.526728e+05 0.00 NULL
2021 Office Of Emergency Management Commissioner Of Emergency Management 243171.00000 4.863420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863420e+05 4.863420e+05 0.00 NULL
2021 Office Of Emergency Management Community Associate 48601.00000 4.860100e+04 6228.90 6.228900e+03 6228.900 171.50 1 6.228900e+03 6228.90 5.482990e+04 5.482990e+04 0.00 NULL
2021 Office Of Emergency Management Community Coordinator 70900.00000 7.090000e+04 20412.28 2.041228e+04 20412.280 397.00 1 2.041228e+04 20412.28 9.131228e+04 9.131228e+04 0.00 NULL
2021 Office Of Emergency Management Emergency Preparedness Manager 117184.43824 9.960677e+06 42487.79 4.998564e+02 0.000 829.00 85 0.000000e+00 0.00 1.000317e+07 9.960677e+06 42487.79 NULL
2021 Office Of Emergency Management Emergency Preparedness Specialist 71998.81362 8.855854e+06 1103142.96 8.968642e+03 6455.850 21915.25 123 6.455850e+03 794069.55 9.958997e+06 9.649924e+06 309073.41 NULL
2021 Office Of Emergency Management Executive Agency Counsel 157971.50000 3.159430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.159430e+05 3.159430e+05 0.00 NULL
2021 Office Of Labor Relations Accountant 73391.00000 2.201730e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.201730e+05 2.201730e+05 0.00 NULL
2021 Office Of Labor Relations Adm Manager-Non-Mgrl 128909.00000 1.289090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.289090e+05 1.289090e+05 0.00 NULL
2021 Office Of Labor Relations Admin Community Relations Specialist 60248.00000 6.024800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.024800e+04 6.024800e+04 0.00 NULL
2021 Office Of Labor Relations Administrative Labor Relations Analyst 126234.33333 7.574060e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.574060e+05 7.574060e+05 0.00 NULL
2021 Office Of Labor Relations Administrative Manager 104000.75000 4.160030e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.160030e+05 4.160030e+05 0.00 NULL
2021 Office Of Labor Relations Administrative Staff Analyst 145332.00000 1.453320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.453320e+05 1.453320e+05 0.00 NULL
2021 Office Of Labor Relations Agency Attorney 94986.00000 1.899720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.899720e+05 1.899720e+05 0.00 NULL
2021 Office Of Labor Relations Assistant Commissioner Of Labor Relations 170405.75000 1.363246e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.363246e+06 1.363246e+06 0.00 NULL
2021 Office Of Labor Relations Associate Counsel 163243.00000 1.632430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.632430e+05 1.632430e+05 0.00 NULL
2021 Office Of Labor Relations Associate Labor Relations Analyst 82400.00000 1.648000e+05 479.21 2.396050e+02 239.605 9.50 2 2.396050e+02 479.21 1.652792e+05 1.652792e+05 0.00 NULL
2021 Office Of Labor Relations Associate Staff Analyst 75591.00000 2.267730e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.267730e+05 2.267730e+05 0.00 NULL
2021 Office Of Labor Relations Bookkeeper 53705.00000 5.370500e+04 241.78 2.417800e+02 241.780 7.75 1 2.417800e+02 241.78 5.394678e+04 5.394678e+04 0.00 NULL
2021 Office Of Labor Relations City Research Scientist 86459.30769 1.123971e+06 1518.75 1.168269e+02 0.000 31.50 13 0.000000e+00 0.00 1.125490e+06 1.123971e+06 1518.75 NULL
2021 Office Of Labor Relations Clerical Associate 46974.46111 4.227702e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.227702e+05 4.227702e+05 0.00 NULL
2021 Office Of Labor Relations Commissioner Of Labor Relations 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2021 Office Of Labor Relations Community Assistant 39595.85838 3.167669e+05 214.94 2.686750e+01 0.000 7.00 8 0.000000e+00 0.00 3.169818e+05 3.167669e+05 214.94 NULL
2021 Office Of Labor Relations Community Associate 46127.04762 9.686680e+05 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 9.686680e+05 9.686680e+05 0.00 NULL
2021 Office Of Labor Relations Community Coordinator 68915.76923 1.791810e+06 638.50 2.455769e+01 0.000 13.75 26 0.000000e+00 0.00 1.792448e+06 1.791810e+06 638.50 NULL
2021 Office Of Labor Relations Computer Specialist 103813.00000 2.076260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.076260e+05 2.076260e+05 0.00 NULL
2021 Office Of Labor Relations Computer Systems Manager 167270.00000 1.672700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.672700e+05 1.672700e+05 0.00 NULL
2021 Office Of Labor Relations Customer Information Representative Ma L 1549 48966.00000 4.896600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.896600e+04 4.896600e+04 0.00 NULL
2021 Office Of Labor Relations Deputy Assistant Counsel 89475.28571 6.263270e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.263270e+05 6.263270e+05 0.00 NULL
2021 Office Of Labor Relations Deputy Commissioner Of Labor Relations 228711.00000 4.574220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.574220e+05 4.574220e+05 0.00 NULL
2021 Office Of Labor Relations Director 135653.00000 1.356530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.356530e+05 1.356530e+05 0.00 NULL
2021 Office Of Labor Relations Employee Assistance Program Specialist 66562.50000 2.662500e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.662500e+05 2.662500e+05 0.00 NULL
2021 Office Of Labor Relations Employee Health Benefits Program Director 218802.00000 2.188020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.188020e+05 2.188020e+05 0.00 NULL
2021 Office Of Labor Relations Executive Agency Counsel 166689.00000 3.333780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.333780e+05 3.333780e+05 0.00 NULL
2021 Office Of Labor Relations Insurance Advisor 62684.00000 6.268400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.268400e+04 6.268400e+04 0.00 NULL
2021 Office Of Labor Relations Labor Relations Analyst 65313.57143 4.571950e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.571950e+05 4.571950e+05 0.00 NULL
2021 Office Of Labor Relations Principal Administrative Associate - Non Supvr 65384.88511 8.500035e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 8.500035e+05 8.500035e+05 0.00 NULL
2021 Office Of Labor Relations Secretary 43390.00000 8.678000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.678000e+04 8.678000e+04 0.00 NULL
2021 Office Of Labor Relations Secretary To The Commissioner Of Labor Relations 91311.00000 9.131100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.131100e+04 9.131100e+04 0.00 NULL
2021 Office Of Labor Relations Staff Analyst 64671.50000 1.293430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.293430e+05 1.293430e+05 0.00 NULL
2021 Office Of Labor Relations Supervisor Of Office Machine Operations 63692.00000 6.369200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.369200e+04 6.369200e+04 0.00 NULL
2021 Office Of Labor Relations Tests And Measurement Specialist 84247.00000 8.424700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.424700e+04 8.424700e+04 0.00 NULL
2021 Office Of Management & Budget Administrative Manager 182304.00000 1.823040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.823040e+05 1.823040e+05 0.00 NULL
2021 Office Of Management & Budget Administrative Staff Analyst 166158.57143 1.163110e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.163110e+06 1.163110e+06 0.00 NULL
2021 Office Of Management & Budget Architect 112700.00000 1.127000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.127000e+05 1.127000e+05 0.00 NULL
2021 Office Of Management & Budget Budget Analyst 93861.01655 3.754441e+07 284836.14 7.120903e+02 0.000 6399.75 400 0.000000e+00 0.00 3.782924e+07 3.754441e+07 284836.14 NULL
2021 Office Of Management & Budget College Aide 11361.57750 4.544631e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.544631e+04 4.544631e+04 0.00 NULL
2021 Office Of Management & Budget Community Associate 42000.00000 4.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.200000e+04 4.200000e+04 0.00 NULL
2021 Office Of Management & Budget Computer Specialist 82234.00000 8.223400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.223400e+04 8.223400e+04 0.00 NULL
2021 Office Of Management & Budget Computer Systems Manager 174351.75000 6.974070e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.974070e+05 6.974070e+05 0.00 NULL
2021 Office Of Management & Budget Deputy General Counsel 185341.00000 1.853410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.853410e+05 1.853410e+05 0.00 NULL
2021 Office Of Management & Budget Director Of Financing Policy Coordination 222924.00000 4.458480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.458480e+05 4.458480e+05 0.00 NULL
2021 Office Of Management & Budget Director Of Management & Budget 243171.00000 4.863420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863420e+05 4.863420e+05 0.00 NULL
2021 Office Of Management & Budget Executive Agency Counsel 222924.00000 2.229240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.229240e+05 2.229240e+05 0.00 NULL
2021 Office Of Management & Budget Motor Vehicle Supervisor 62205.00000 6.220500e+04 19526.50 1.952650e+04 19526.500 497.25 1 1.952650e+04 19526.50 8.173150e+04 8.173150e+04 0.00 NULL
2021 Office Of Management & Budget Statistical Secretary 67644.76923 8.793820e+05 10362.87 7.971438e+02 0.000 207.75 13 0.000000e+00 0.00 8.897449e+05 8.793820e+05 10362.87 NULL
2021 Office Of Management & Budget Summer College Intern 551.25000 5.512500e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.512500e+02 5.512500e+02 0.00 NULL
2021 Office Of Management & Budget Summer Graduate Intern 630.00000 1.260000e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.260000e+03 1.260000e+03 0.00 NULL
2021 Office Of Management & Budget Supervisor Of Office Machine Operations 53690.00000 5.369000e+04 793.43 7.934300e+02 793.430 23.00 1 7.934300e+02 793.43 5.448343e+04 5.448343e+04 0.00 NULL
2021 Office Of The Actuary Actuarial Specialist Level I 78268.60000 1.565372e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.565372e+06 1.565372e+06 0.00 NULL
2021 Office Of The Actuary Actuarial Specialist Level Ii, Oj 105590.00000 1.055900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.055900e+05 1.055900e+05 0.00 NULL
2021 Office Of The Actuary Administrative Actuary 178461.30000 1.784613e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.784613e+06 1.784613e+06 0.00 NULL
2021 Office Of The Actuary Administrative Public Information Specialist 105275.00000 1.052750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.052750e+05 1.052750e+05 0.00 NULL
2021 Office Of The Actuary Administrative Staff Analyst 110686.50000 2.213730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.213730e+05 2.213730e+05 0.00 NULL
2021 Office Of The Actuary Certified It Administrator 94702.00000 9.470200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.470200e+04 9.470200e+04 0.00 NULL
2021 Office Of The Actuary Chief Actuary 311885.00000 3.118850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.118850e+05 3.118850e+05 0.00 NULL
2021 Office Of The Actuary Community Associate 51700.00000 5.170000e+04 1401.56 1.401560e+03 1401.560 49.25 1 1.401560e+03 1401.56 5.310156e+04 5.310156e+04 0.00 NULL
2021 Office Of The Actuary Computer Systems Manager 188591.00000 1.885910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.885910e+05 1.885910e+05 0.00 NULL
2021 Office Of The Actuary Executive Agency Counsel 162475.00000 3.249500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.249500e+05 3.249500e+05 0.00 NULL
2021 Office Of The Actuary Procurement Analyst 58627.00000 5.862700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.862700e+04 5.862700e+04 0.00 NULL
2021 Office Of The Actuary Secretary 61239.00000 6.123900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.123900e+04 6.123900e+04 0.00 NULL
2021 Office Of The Actuary Secretary To The Chief Actuary 56064.00000 5.606400e+04 670.66 6.706600e+02 670.660 22.00 1 6.706600e+02 670.66 5.673466e+04 5.673466e+04 0.00 NULL
2021 Office Of The Comptroller Accountant 64093.15152 4.230148e+06 40788.32 6.180048e+02 0.000 746.75 66 0.000000e+00 0.00 4.270936e+06 4.230148e+06 40788.32 NULL
2021 Office Of The Comptroller Adm Manager-Non-Mgrl 81585.63158 1.550127e+06 4602.59 2.422416e+02 0.000 76.25 19 0.000000e+00 0.00 1.554730e+06 1.550127e+06 4602.59 NULL
2021 Office Of The Comptroller Admin Community Relations Specialist 71434.75000 2.857390e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.857390e+05 2.857390e+05 0.00 NULL
2021 Office Of The Comptroller Administrative Accountant 125008.33333 2.625175e+06 1491.15 7.100714e+01 0.000 24.25 21 0.000000e+00 0.00 2.626666e+06 2.625175e+06 1491.15 NULL
2021 Office Of The Comptroller Administrative Assistant To The Comptroller 132911.00000 3.987330e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.987330e+05 3.987330e+05 0.00 NULL
2021 Office Of The Comptroller Administrative Business Promotion Coordinator 103126.66667 9.281400e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.281400e+05 9.281400e+05 0.00 NULL
2021 Office Of The Comptroller Administrative City Planner 139059.90909 1.529659e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.529659e+06 1.529659e+06 0.00 NULL
2021 Office Of The Comptroller Administrative Claim Examiner 89243.05714 3.123507e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 3.123507e+06 3.123507e+06 0.00 NULL
2021 Office Of The Comptroller Administrative Construction Project Manager 107370.33333 3.221110e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.221110e+05 3.221110e+05 0.00 NULL
2021 Office Of The Comptroller Administrative Engineer 122027.10526 2.318515e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.318515e+06 2.318515e+06 0.00 NULL
2021 Office Of The Comptroller Administrative Graphic Artist 93996.00000 9.399600e+04 2369.59 2.369590e+03 2369.590 42.00 1 2.369590e+03 2369.59 9.636559e+04 9.636559e+04 0.00 NULL
2021 Office Of The Comptroller Administrative Labor Relations Analyst 137966.69231 1.793567e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.793567e+06 1.793567e+06 0.00 NULL
2021 Office Of The Comptroller Administrative Management Auditor 127204.56250 2.035273e+06 295.56 1.847250e+01 0.000 4.25 16 0.000000e+00 0.00 2.035569e+06 2.035273e+06 295.56 NULL
2021 Office Of The Comptroller Administrative Manager 135574.00000 1.355740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.355740e+05 1.355740e+05 0.00 NULL
2021 Office Of The Comptroller Administrative Procurement Analyst 132862.00000 2.657240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.657240e+05 2.657240e+05 0.00 NULL
2021 Office Of The Comptroller Administrative Procurement Analyst-Non-Mgrl 91963.71429 6.437460e+05 7212.12 1.030303e+03 0.000 101.75 7 0.000000e+00 0.00 6.509581e+05 6.437460e+05 7212.12 NULL
2021 Office Of The Comptroller Administrative Project Manager 112446.50000 8.995720e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.995720e+05 8.995720e+05 0.00 NULL
2021 Office Of The Comptroller Administrative Public Information Specialist 86951.63750 6.956131e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.956131e+05 6.956131e+05 0.00 NULL
2021 Office Of The Comptroller Administrative Public Records Officer 81144.00000 8.114400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.114400e+04 8.114400e+04 0.00 NULL
2021 Office Of The Comptroller Administrative Staff Analyst 114381.37500 2.745153e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 2.745153e+06 2.745153e+06 0.00 NULL
2021 Office Of The Comptroller Administrative Supervisor Of Building Maintenance 86193.00000 8.619300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.619300e+04 8.619300e+04 0.00 NULL
2021 Office Of The Comptroller Agency Attorney 80289.27273 8.831820e+05 465.65 4.233182e+01 0.000 9.25 11 0.000000e+00 0.00 8.836477e+05 8.831820e+05 465.65 NULL
2021 Office Of The Comptroller Agency Chief Contracting Officer 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2021 Office Of The Comptroller Architect 102052.00000 1.020520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020520e+05 1.020520e+05 0.00 NULL
2021 Office Of The Comptroller Assistant Budget Analyst 28350.71831 1.757745e+06 1759.62 2.838097e+01 0.000 41.50 62 0.000000e+00 0.00 1.759504e+06 1.757745e+06 1759.62 NULL
2021 Office Of The Comptroller Assistant Mechanical Engineer 61880.00000 1.856400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.856400e+05 1.856400e+05 0.00 NULL
2021 Office Of The Comptroller Assistant To Deputy Comptroller 113300.00000 2.266000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.266000e+05 2.266000e+05 0.00 NULL
2021 Office Of The Comptroller Assistant To The Comptroller 136475.00000 2.729500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.729500e+05 2.729500e+05 0.00 NULL
2021 Office Of The Comptroller Associate Fraud Investigator 79389.00000 7.938900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.938900e+04 7.938900e+04 0.00 NULL
2021 Office Of The Comptroller Associate Investigator 68400.00000 1.368000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.368000e+05 1.368000e+05 0.00 NULL
2021 Office Of The Comptroller Associate Project Manager 102754.83333 6.165290e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.165290e+05 6.165290e+05 0.00 NULL
2021 Office Of The Comptroller Associate Staff Analyst 81839.50000 4.910370e+05 301.71 5.028500e+01 0.000 6.00 6 0.000000e+00 0.00 4.913387e+05 4.910370e+05 301.71 NULL
2021 Office Of The Comptroller Bookkeeper 55897.85714 3.912850e+05 3909.20 5.584571e+02 0.000 88.00 7 0.000000e+00 0.00 3.951942e+05 3.912850e+05 3909.20 NULL
2021 Office Of The Comptroller Budget Analyst 92964.25000 3.718570e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.718570e+05 3.718570e+05 0.00 NULL
2021 Office Of The Comptroller Business Promotion Coordinator 70118.36364 7.713020e+05 643.62 5.851091e+01 0.000 14.75 11 0.000000e+00 0.00 7.719456e+05 7.713020e+05 643.62 NULL
2021 Office Of The Comptroller Certified It Administrator 119883.00000 1.198830e+05 11244.54 1.124454e+04 11244.540 142.75 1 1.124454e+04 11244.54 1.311275e+05 1.311275e+05 0.00 NULL
2021 Office Of The Comptroller City Custodial Assistant 37982.54677 2.278953e+05 1963.65 3.272750e+02 140.650 61.25 6 1.406500e+02 843.90 2.298589e+05 2.287392e+05 1119.75 NULL
2021 Office Of The Comptroller Civil Engineer 111721.00000 1.117210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.117210e+05 1.117210e+05 0.00 NULL
2021 Office Of The Comptroller Claim Specialist 64077.56757 2.370870e+06 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 2.370870e+06 2.370870e+06 0.00 NULL
2021 Office Of The Comptroller Clerical Aide 17573.32500 3.514665e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.514665e+04 3.514665e+04 0.00 NULL
2021 Office Of The Comptroller Clerical Associate 49160.64286 1.376498e+06 6726.59 2.402354e+02 0.000 166.50 28 0.000000e+00 0.00 1.383225e+06 1.376498e+06 6726.59 NULL
2021 Office Of The Comptroller College Aide 10211.81969 8.169456e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.169456e+04 8.169456e+04 0.00 NULL
2021 Office Of The Comptroller Community Assistant 39480.00000 7.896000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.896000e+04 7.896000e+04 0.00 NULL
2021 Office Of The Comptroller Community Associate 50096.55556 4.508690e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.508690e+05 4.508690e+05 0.00 NULL
2021 Office Of The Comptroller Community Coordinator 65759.21429 9.206290e+05 3637.54 2.598243e+02 0.000 73.27 14 0.000000e+00 0.00 9.242665e+05 9.206290e+05 3637.54 NULL
2021 Office Of The Comptroller Community Service Aide 32332.00000 6.466400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.466400e+04 6.466400e+04 0.00 NULL
2021 Office Of The Comptroller Comptroller 209050.00000 2.090500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.090500e+05 2.090500e+05 0.00 NULL
2021 Office Of The Comptroller Computer Associate 71542.70588 1.216226e+06 13114.58 7.714459e+02 0.000 208.00 17 0.000000e+00 0.00 1.229341e+06 1.216226e+06 13114.58 NULL
2021 Office Of The Comptroller Computer Operations Manager 123379.20000 6.168960e+05 2799.96 5.599920e+02 0.000 52.50 5 0.000000e+00 0.00 6.196960e+05 6.168960e+05 2799.96 NULL
2021 Office Of The Comptroller Computer Programmer Analyst 75024.00000 7.502400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.502400e+04 7.502400e+04 0.00 NULL
2021 Office Of The Comptroller Computer Service Technician 57261.00000 1.717830e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.717830e+05 1.717830e+05 0.00 NULL
2021 Office Of The Comptroller Computer Specialist 96239.00000 7.699120e+05 659.54 8.244250e+01 0.000 11.00 8 0.000000e+00 0.00 7.705715e+05 7.699120e+05 659.54 NULL
2021 Office Of The Comptroller Computer Systems Manager 123034.66667 2.214624e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.214624e+06 2.214624e+06 0.00 NULL
2021 Office Of The Comptroller Confidential Strategy Planner 81031.66667 2.430950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.430950e+05 2.430950e+05 0.00 NULL
2021 Office Of The Comptroller Construction Project Manager 105713.00000 1.057130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.057130e+05 1.057130e+05 0.00 NULL
2021 Office Of The Comptroller Contract Specialist 57103.28571 3.997230e+05 1039.87 1.485529e+02 0.000 30.25 7 0.000000e+00 0.00 4.007629e+05 3.997230e+05 1039.87 NULL
2021 Office Of The Comptroller Custodian 61236.00000 1.224720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.224720e+05 1.224720e+05 0.00 NULL
2021 Office Of The Comptroller Cyber Security Analyst 71533.33333 2.146000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.146000e+05 2.146000e+05 0.00 NULL
2021 Office Of The Comptroller Director Of Investments 247344.66667 7.420340e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.420340e+05 7.420340e+05 0.00 NULL
2021 Office Of The Comptroller Director Of Audits 219243.00000 2.192430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.192430e+05 2.192430e+05 0.00 NULL
2021 Office Of The Comptroller Economist 61559.20000 6.155920e+05 392.70 3.927000e+01 0.000 10.50 10 0.000000e+00 0.00 6.159847e+05 6.155920e+05 392.70 NULL
2021 Office Of The Comptroller Engineering Technician 63860.00000 6.386000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.386000e+04 6.386000e+04 0.00 NULL
2021 Office Of The Comptroller Executive Agency Counsel 147778.38875 4.728908e+06 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 4.728908e+06 4.728908e+06 0.00 NULL
2021 Office Of The Comptroller Executive Assistant To The Comptroller 168765.50000 3.375310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.375310e+05 3.375310e+05 0.00 NULL
2021 Office Of The Comptroller Executive Program Specialist 139652.00000 1.396520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.396520e+05 1.396520e+05 0.00 NULL
2021 Office Of The Comptroller First Deputy Comptroller 227816.00000 2.278160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.278160e+05 2.278160e+05 0.00 NULL
2021 Office Of The Comptroller Fraud Investigator 76232.66667 2.286980e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.286980e+05 2.286980e+05 0.00 NULL
2021 Office Of The Comptroller Investigator 63860.00000 6.386000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.386000e+04 6.386000e+04 0.00 NULL
2021 Office Of The Comptroller Investment Analyst 77475.40741 2.091836e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 2.091836e+06 2.091836e+06 0.00 NULL
2021 Office Of The Comptroller Investment Manager 177258.20000 5.317746e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 5.317746e+06 5.317746e+06 0.00 NULL
2021 Office Of The Comptroller Legal Secretarial Assistant 71200.66667 8.544080e+05 3087.54 2.572950e+02 0.000 66.50 12 0.000000e+00 0.00 8.574955e+05 8.544080e+05 3087.54 NULL
2021 Office Of The Comptroller Management Auditor 78763.22329 5.749715e+06 27672.52 3.790756e+02 0.000 454.00 73 0.000000e+00 0.00 5.777388e+06 5.749715e+06 27672.52 NULL
2021 Office Of The Comptroller Office Machine Aide 32210.34500 9.663104e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.663104e+04 9.663104e+04 0.00 NULL
2021 Office Of The Comptroller Pension Investment Advisor 350000.00000 3.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.500000e+05 3.500000e+05 0.00 NULL
2021 Office Of The Comptroller Principal Administrative Associate - Non Supvr 65818.36385 1.711277e+06 9244.89 3.555727e+02 0.000 208.75 26 0.000000e+00 0.00 1.720522e+06 1.711277e+06 9244.89 NULL
2021 Office Of The Comptroller Principal Investment Officer 214848.00000 2.148480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.148480e+05 2.148480e+05 0.00 NULL
2021 Office Of The Comptroller Procurement Analyst 69526.00000 4.171560e+05 3910.84 6.518067e+02 68.325 73.25 6 6.832500e+01 409.95 4.210668e+05 4.175660e+05 3500.89 NULL
2021 Office Of The Comptroller Public Records Aide 23521.68000 2.352168e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.352168e+04 2.352168e+04 0.00 NULL
2021 Office Of The Comptroller Research And Liaison Coordinator 123100.30769 1.600304e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.600304e+06 1.600304e+06 0.00 NULL
2021 Office Of The Comptroller Research Assistant 52242.00000 5.224200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.224200e+04 5.224200e+04 0.00 NULL
2021 Office Of The Comptroller Second Deputy Comptroller 225773.00000 2.257730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.257730e+05 2.257730e+05 0.00 NULL
2021 Office Of The Comptroller Secretary 47046.66667 2.822800e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.822800e+05 2.822800e+05 0.00 NULL
2021 Office Of The Comptroller Secretary To The Comptroller 53878.00000 5.387800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.387800e+04 5.387800e+04 0.00 NULL
2021 Office Of The Comptroller Special Deputy Comptroller 214848.00000 2.148480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.148480e+05 2.148480e+05 0.00 NULL
2021 Office Of The Comptroller Staff Analyst 61690.45455 6.785950e+05 2260.23 2.054755e+02 0.000 60.00 11 0.000000e+00 0.00 6.808552e+05 6.785950e+05 2260.23 NULL
2021 Office Of The Comptroller Staff Analyst Trainee 46617.33333 2.797040e+05 632.38 1.053967e+02 0.000 19.25 6 0.000000e+00 0.00 2.803364e+05 2.797040e+05 632.38 NULL
2021 Office Of The Comptroller Statistician 89385.00000 8.938500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.938500e+04 8.938500e+04 0.00 NULL
2021 Office Of The Comptroller Strategic Initiative Specialist 127600.75000 5.104030e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.104030e+05 5.104030e+05 0.00 NULL
2021 Office Of The Comptroller Summer College Intern 1750.46081 5.426429e+04 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 5.426429e+04 5.426429e+04 0.00 NULL
2021 Office Of The Comptroller Summer Graduate Intern 2197.91000 5.494775e+04 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 5.494775e+04 5.494775e+04 0.00 NULL
2021 Office Of The Comptroller Supervising Computer Service Technician 86184.00000 8.618400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.618400e+04 8.618400e+04 0.00 NULL
2021 Office Of The Comptroller Supervisor Of Motor Transport 59491.00000 5.949100e+04 523.54 5.235400e+02 523.540 12.25 1 5.235400e+02 523.54 6.001454e+04 6.001454e+04 0.00 NULL
2021 Office Of The Comptroller Supervisor Of Stock Workers 44069.00000 4.406900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.406900e+04 4.406900e+04 0.00 NULL
2021 Office Of The Comptroller Telecommunications Associate 92645.00000 9.264500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.264500e+04 9.264500e+04 0.00 NULL
2021 Office Of The Mayor Administrative Assistant To The Mayor 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2021 Office Of The Mayor Assistant Legislative Representative 116335.08333 1.396021e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.396021e+06 1.396021e+06 0.00 NULL
2021 Office Of The Mayor Assistant To The Deputy Mayor 143604.00000 1.292436e+06 4393.49 4.881656e+02 0.000 143.50 9 0.000000e+00 0.00 1.296829e+06 1.292436e+06 4393.49 NULL
2021 Office Of The Mayor Assistant To The Mayor 127452.00000 2.549040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.549040e+05 2.549040e+05 0.00 NULL
2021 Office Of The Mayor Asst Dir Of Intergvnmental Reltns For The Albany Office 203996.00000 2.039960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.039960e+05 2.039960e+05 0.00 NULL
2021 Office Of The Mayor Asst Director Of Intergovermental Rel For City Legist Affs 211150.00000 2.111500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.111500e+05 2.111500e+05 0.00 NULL
2021 Office Of The Mayor Chief Service Officer 180250.00000 1.802500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.802500e+05 1.802500e+05 0.00 NULL
2021 Office Of The Mayor Clerical Associate 47888.00000 4.788800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.788800e+04 4.788800e+04 0.00 NULL
2021 Office Of The Mayor College Aide 7481.43750 7.481438e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.481438e+04 7.481438e+04 0.00 NULL
2021 Office Of The Mayor Commiss Of The Off To End Domest And Gend Ba Viol 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2021 Office Of The Mayor Commissioner, Un & Consular Corps Diplomatic Relations 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2021 Office Of The Mayor Counsel To The Mayor 220652.00000 2.206520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.206520e+05 2.206520e+05 0.00 NULL
2021 Office Of The Mayor Deputy Mayor 251982.00000 1.511892e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.511892e+06 1.511892e+06 0.00 NULL
2021 Office Of The Mayor Director 148000.00000 1.480000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.480000e+05 1.480000e+05 0.00 NULL
2021 Office Of The Mayor Director Of Community Assistance Unit 227786.00000 4.555720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.555720e+05 4.555720e+05 0.00 NULL
2021 Office Of The Mayor Director Of Criminal Justice 235478.50000 4.709570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.709570e+05 4.709570e+05 0.00 NULL
2021 Office Of The Mayor Director Of Immigrant Affairs 227786.00000 4.555720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.555720e+05 4.555720e+05 0.00 NULL
2021 Office Of The Mayor Director Of Office For People With Disabilities 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2021 Office Of The Mayor Director, Office Of Operations 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2021 Office Of The Mayor Executive Administrator Of Gracie Mansion 237033.00000 2.370330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.370330e+05 2.370330e+05 0.00 NULL
2021 Office Of The Mayor Executive Agency Counsel 145914.66667 3.501952e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 3.501952e+06 3.501952e+06 0.00 NULL
2021 Office Of The Mayor Executive Assistant-Midtown Enforcement 87789.00000 8.778900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.778900e+04 8.778900e+04 0.00 NULL
2021 Office Of The Mayor Executive Asst To The Nyc Commission To The United Nations 67000.00000 6.700000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.700000e+04 6.700000e+04 0.00 NULL
2021 Office Of The Mayor Executive Cook 120271.50000 2.405430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.405430e+05 2.405430e+05 0.00 NULL
2021 Office Of The Mayor Executive Director On Commission On Gender Equality 187991.00000 1.879910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.879910e+05 1.879910e+05 0.00 NULL
2021 Office Of The Mayor First Deputy Mayor 291139.00000 2.911390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.911390e+05 2.911390e+05 0.00 NULL
2021 Office Of The Mayor Mayor 258750.00000 2.587500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.587500e+05 2.587500e+05 0.00 NULL
2021 Office Of The Mayor Mayoral Office Assistant 51400.24000 1.439207e+06 31386.29 1.120939e+03 0.000 1056.67 28 0.000000e+00 0.00 1.470593e+06 1.439207e+06 31386.29 NULL
2021 Office Of The Mayor Mayoral Program Coordinator 73922.80000 5.913824e+05 488.02 6.100250e+01 0.000 10.00 8 0.000000e+00 0.00 5.918704e+05 5.913824e+05 488.02 NULL
2021 Office Of The Mayor Press Officer 126787.63636 1.394664e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.394664e+06 1.394664e+06 0.00 NULL
2021 Office Of The Mayor Project Planner 84643.00000 8.464300e+04 555.96 5.559600e+02 555.960 12.00 1 5.559600e+02 555.96 8.519896e+04 8.519896e+04 0.00 NULL
2021 Office Of The Mayor Research Projects Coord 107712.79389 1.411038e+07 0.00 0.000000e+00 0.000 0.00 131 0.000000e+00 0.00 1.411038e+07 1.411038e+07 0.00 NULL
2021 Office Of The Mayor Research Projects Coordinator 66860.50000 9.360470e+05 19851.03 1.417931e+03 311.710 586.50 14 3.117100e+02 4363.94 9.558980e+05 9.404109e+05 15487.09 NULL
2021 Office Of The Mayor Secretary 77170.58333 9.260470e+05 24393.92 2.032827e+03 0.000 640.50 12 0.000000e+00 0.00 9.504409e+05 9.260470e+05 24393.92 NULL
2021 Office Of The Mayor Senior Advisor To The Mayor 238960.00000 2.389600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.389600e+05 2.389600e+05 0.00 NULL
2021 Office Of The Mayor Senior Policy Advisor To The Mayor 223741.00000 4.474820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.474820e+05 4.474820e+05 0.00 NULL
2021 Office Of The Mayor Senior Project Planner 111200.00000 3.336000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.336000e+05 3.336000e+05 0.00 NULL
2021 Office Of The Mayor Senior Service Inspector 62696.00000 6.269600e+04 225.20 2.252000e+02 225.200 5.00 1 2.252000e+02 225.20 6.292120e+04 6.292120e+04 0.00 NULL
2021 Office Of The Mayor Service Inspector 45658.50000 1.826340e+05 154.35 3.858750e+01 0.000 5.00 4 0.000000e+00 0.00 1.827884e+05 1.826340e+05 154.35 NULL
2021 Office Of The Mayor Special Assistant 107278.09664 2.553219e+07 0.00 0.000000e+00 0.000 0.00 238 0.000000e+00 0.00 2.553219e+07 2.553219e+07 0.00 NULL
2021 Office Of The Mayor Special Assistant To The Director 56650.00000 5.665000e+04 4379.88 4.379880e+03 4379.880 141.25 1 4.379880e+03 4379.88 6.102988e+04 6.102988e+04 0.00 NULL
2021 Office Of The Mayor Special Assistant To The Mayor 163450.00000 3.269000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.269000e+05 3.269000e+05 0.00 NULL
2021 Office Of The Mayor Sr Project Planner 107241.50000 2.144830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.144830e+05 2.144830e+05 0.00 NULL
2021 Office Of The Mayor Staff Assistant 60391.69231 7.850920e+05 1754.06 1.349277e+02 0.000 53.75 13 0.000000e+00 0.00 7.868461e+05 7.850920e+05 1754.06 NULL
2021 Personnel Monitors Monitor 3612.78571 2.528950e+05 0.00 0.000000e+00 0.000 0.00 70 0.000000e+00 0.00 2.528950e+05 2.528950e+05 0.00 NULL
2021 Police Department *Adm School Security Manager-U 82560.75000 3.302430e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.302430e+05 3.302430e+05 0.00 NULL
2021 Police Department *Agency Attorney 124979.50000 4.999180e+05 36019.14 9.004785e+03 6751.415 446.50 4 6.751415e+03 27005.66 5.359371e+05 5.269237e+05 9013.48 NULL
2021 Police Department *Assistant Advocate-Pd 105694.00000 1.056940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.056940e+05 1.056940e+05 0.00 NULL
2021 Police Department *Attorney At Law 108572.50000 2.171450e+05 59.65 2.982500e+01 29.825 1.00 2 2.982500e+01 59.65 2.172046e+05 2.172046e+05 0.00 NULL
2021 Police Department *Certified Local Area Network Administrator 111324.00000 1.113240e+05 1627.63 1.627630e+03 1627.630 21.00 1 1.627630e+03 1627.63 1.129516e+05 1.129516e+05 0.00 NULL
2021 Police Department *Custodial Assistant 39931.00000 2.395860e+05 3530.53 5.884217e+02 0.000 104.25 6 0.000000e+00 0.00 2.431165e+05 2.395860e+05 3530.53 NULL
2021 Police Department Accountant 64884.68000 1.622117e+06 5295.28 2.118112e+02 0.000 101.75 25 0.000000e+00 0.00 1.627412e+06 1.622117e+06 5295.28 NULL
2021 Police Department Adm Manager-Non-Mgrl 91837.14706 3.122463e+06 7969.78 2.344053e+02 0.000 111.25 34 0.000000e+00 0.00 3.130433e+06 3.122463e+06 7969.78 NULL
2021 Police Department Admin Community Relations Specialist 100625.42857 7.043780e+05 13559.74 1.937106e+03 0.000 185.75 7 0.000000e+00 0.00 7.179377e+05 7.043780e+05 13559.74 NULL
2021 Police Department Admin Contract Specialist 164532.71429 1.151729e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.151729e+06 1.151729e+06 0.00 NULL
2021 Police Department Admin Tests & Meas Spec 148038.00000 2.960760e+05 7382.98 3.691490e+03 3691.490 92.50 2 3.691490e+03 7382.98 3.034590e+05 3.034590e+05 0.00 NULL
2021 Police Department Admin Traffic Enf Agnt-Union 71852.35135 2.658537e+06 234337.91 6.333457e+03 4753.470 4573.75 37 4.753470e+03 175878.39 2.892875e+06 2.834415e+06 58459.52 NULL
2021 Police Department Admin Traffic Enfrcmnt Agent 131322.66667 3.939680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.939680e+05 3.939680e+05 0.00 NULL
2021 Police Department Administrative Accountant 126470.14286 8.852910e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.852910e+05 8.852910e+05 0.00 NULL
2021 Police Department Administrative Architect 146799.00000 4.403970e+05 17.09 5.696667e+00 0.000 0.00 3 0.000000e+00 0.00 4.404141e+05 4.403970e+05 17.09 NULL
2021 Police Department Administrative City Planner 130804.00000 1.308040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.308040e+05 1.308040e+05 0.00 NULL
2021 Police Department Administrative Community Relations Specialist 183606.00000 1.836060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.836060e+05 1.836060e+05 0.00 NULL
2021 Police Department Administrative Contract Specialist 116713.66667 3.501410e+05 462.54 1.541800e+02 1.780 8.25 3 1.780000e+00 5.34 3.506035e+05 3.501463e+05 457.20 NULL
2021 Police Department Administrative Engineer 122991.50000 2.459830e+05 4532.09 2.266045e+03 2266.045 58.00 2 2.266045e+03 4532.09 2.505151e+05 2.505151e+05 0.00 NULL
2021 Police Department Administrative Graphic Artist 109111.00000 1.091110e+05 1605.04 1.605040e+03 1605.040 19.50 1 1.605040e+03 1605.04 1.107160e+05 1.107160e+05 0.00 NULL
2021 Police Department Administrative Investigator 102691.00000 1.026910e+05 3365.51 3.365510e+03 3365.510 45.25 1 3.365510e+03 3365.51 1.060565e+05 1.060565e+05 0.00 NULL
2021 Police Department Administrative Labor Relations Analyst 157859.00000 1.578590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.578590e+05 1.578590e+05 0.00 NULL
2021 Police Department Administrative Management Auditor 97044.00000 9.704400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.704400e+04 9.704400e+04 0.00 NULL
2021 Police Department Administrative Manager 116349.00000 2.326980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.326980e+05 2.326980e+05 0.00 NULL
2021 Police Department Administrative Printing Services Manager 128837.00000 2.576740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.576740e+05 2.576740e+05 0.00 NULL
2021 Police Department Administrative Procurement Analyst-Non-Mgrl 88029.11111 1.584524e+06 47882.92 2.660162e+03 143.210 823.00 18 1.432100e+02 2577.78 1.632407e+06 1.587102e+06 45305.14 NULL
2021 Police Department Administrative Project Manager 137558.50000 1.925819e+06 22227.09 1.587649e+03 0.000 228.50 14 0.000000e+00 0.00 1.948046e+06 1.925819e+06 22227.09 NULL
2021 Police Department Administrative Psychologist 139455.00000 6.972750e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.972750e+05 6.972750e+05 0.00 NULL
2021 Police Department Administrative Public Health Sanitarian 160771.00000 1.607710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.607710e+05 1.607710e+05 0.00 NULL
2021 Police Department Administrative Public Information Specialist 128646.72727 1.415114e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.415114e+06 1.415114e+06 0.00 NULL
2021 Police Department Administrative Quality Assurance Specialist 90493.00000 9.049300e+04 15910.42 1.591042e+04 15910.420 289.75 1 1.591042e+04 15910.42 1.064034e+05 1.064034e+05 0.00 NULL
2021 Police Department Administrative Staff Analyst 111750.22472 9.945770e+06 60474.87 6.794929e+02 0.000 913.00 89 0.000000e+00 0.00 1.000624e+07 9.945770e+06 60474.87 NULL
2021 Police Department Administrative Supervisor Of Building Maintenance 160307.00000 1.603070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.603070e+05 1.603070e+05 0.00 NULL
2021 Police Department Administrative Transportation Coordinator 135433.00000 1.354330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.354330e+05 1.354330e+05 0.00 NULL
2021 Police Department Agency Attorney 93329.19355 8.679615e+06 298617.02 3.210936e+03 359.880 4284.00 93 3.598800e+02 33468.84 8.978232e+06 8.713084e+06 265148.18 NULL
2021 Police Department Agency Attorney Interne 64750.50000 2.590020e+05 867.53 2.168825e+02 254.470 23.00 4 2.168825e+02 867.53 2.598695e+05 2.598695e+05 0.00 NULL
2021 Police Department Agency Chief Contracting Officer 191181.50000 3.823630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.823630e+05 3.823630e+05 0.00 NULL
2021 Police Department Architect 100341.00000 3.010230e+05 2837.07 9.456900e+02 0.000 42.50 3 0.000000e+00 0.00 3.038601e+05 3.010230e+05 2837.07 NULL
2021 Police Department Assistant Architect 83052.50000 1.661050e+05 2795.06 1.397530e+03 1397.530 49.75 2 1.397530e+03 2795.06 1.689001e+05 1.689001e+05 0.00 NULL
2021 Police Department Assistant Commissioner 182395.66667 5.471870e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.471870e+05 5.471870e+05 0.00 NULL
2021 Police Department Assistant Counsel-Pd 116552.87500 9.324230e+05 68610.00 8.576250e+03 625.520 744.00 8 6.255200e+02 5004.16 1.001033e+06 9.374272e+05 63605.84 NULL
2021 Police Department Assistant Deputy Commissioner 159232.00000 1.592320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.592320e+05 1.592320e+05 0.00 NULL
2021 Police Department Assistant Mechanical Engineer 70891.00000 7.089100e+04 260.65 2.606500e+02 260.650 5.25 1 2.606500e+02 260.65 7.115165e+04 7.115165e+04 0.00 NULL
2021 Police Department Assistant Supervising Chief Surgeon 182108.00000 1.821080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.821080e+05 1.821080e+05 0.00 NULL
2021 Police Department Assistant To Police Commissionor 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2021 Police Department Assoc Spvr Of School Security 74587.04444 3.356417e+06 323565.19 7.190338e+03 7126.300 6167.00 45 7.126300e+03 320683.50 3.679982e+06 3.677100e+06 2881.69 NULL
2021 Police Department Assoc Supvr Of Schl Sec 110891.28571 7.762390e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.762390e+05 7.762390e+05 0.00 NULL
2021 Police Department Associate Fingerprint Technician 45175.17857 1.264905e+06 1691.62 6.041500e+01 0.000 52.25 28 0.000000e+00 0.00 1.266597e+06 1.264905e+06 1691.62 NULL
2021 Police Department Associate Investigator 52780.40260 3.166824e+06 23940.10 3.990017e+02 2.600 509.25 60 2.600000e+00 156.00 3.190764e+06 3.166980e+06 23784.10 NULL
2021 Police Department Associate Labor Relations Analyst 108106.00000 1.081060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081060e+05 1.081060e+05 0.00 NULL
2021 Police Department Associate Parking Control Specialist 60224.40000 3.011220e+05 38909.57 7.781914e+03 4052.240 901.00 5 4.052240e+03 20261.20 3.400316e+05 3.213832e+05 18648.37 NULL
2021 Police Department Associate Project Manager 97768.00000 2.933040e+05 1034.16 3.447200e+02 0.250 20.75 3 2.500000e-01 0.75 2.943382e+05 2.933048e+05 1033.41 NULL
2021 Police Department Associate Public Records Officer 62694.00000 6.269400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.269400e+04 6.269400e+04 0.00 NULL
2021 Police Department Associate Staff Analyst 82709.89796 4.052785e+06 9306.89 1.899365e+02 0.000 176.25 49 0.000000e+00 0.00 4.062092e+06 4.052785e+06 9306.89 NULL
2021 Police Department Associate Traffic Enforcement Agent 53893.78173 2.123415e+07 4279130.18 1.086074e+04 10678.385 106128.28 394 1.067839e+04 4207283.69 2.551328e+07 2.544143e+07 71846.49 NULL
2021 Police Department Auto Body Worker 63412.09524 1.331654e+06 91424.22 4.353534e+03 4808.770 1972.00 21 4.353534e+03 91424.22 1.423078e+06 1.423078e+06 0.00 NULL
2021 Police Department Auto Mechanic NA NA 1296509.14 6.788006e+03 4970.400 20000.63 191 4.970400e+03 949346.40 NA NA NA NULL
2021 Police Department Automotive Service Worker 45814.54098 2.794687e+06 176117.31 2.887169e+03 2150.070 5340.75 61 2.150070e+03 131154.27 2.970804e+06 2.925841e+06 44963.04 NULL
2021 Police Department Bookbinder 52017.33333 1.560520e+05 2312.56 7.708533e+02 162.770 76.75 3 1.627700e+02 488.31 1.583646e+05 1.565403e+05 1824.25 NULL
2021 Police Department Bookkeeper 54723.65957 2.572012e+06 7707.02 1.639791e+02 0.000 215.75 47 0.000000e+00 0.00 2.579719e+06 2.572012e+06 7707.02 NULL
2021 Police Department Capt Det Chief Of Department 242592.00000 2.425920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.425920e+05 2.425920e+05 0.00 NULL
2021 Police Department Capt Det Chief Of The Housing Bureau 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2021 Police Department Capt Det Chief Of The Transit Bureau 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2021 Police Department Captain 158935.95639 5.101844e+07 1507513.56 4.696304e+03 192.950 23901.99 321 1.929500e+02 61936.95 5.252596e+07 5.108038e+07 1445576.61 NULL
2021 Police Department Captain D/A Deputy Chief Inspector 200011.00000 1.100060e+07 193220.66 3.513103e+03 0.000 5156.49 55 0.000000e+00 0.00 1.119383e+07 1.100060e+07 193220.66 NULL
2021 Police Department Captain D/A Deputy Inspector 180327.00000 2.740970e+07 257710.54 1.695464e+03 0.000 7446.32 152 0.000000e+00 0.00 2.766741e+07 2.740970e+07 257710.54 NULL
2021 Police Department Captain D/A Inspector 189840.72727 2.297073e+07 278174.17 2.298960e+03 0.000 7847.26 121 0.000000e+00 0.00 2.324890e+07 2.297073e+07 278174.17 NULL
2021 Police Department Captain Detailed As Assistant Chief Inspector 240511.00000 5.050731e+06 44884.18 2.137342e+03 0.000 1197.85 21 0.000000e+00 0.00 5.095615e+06 5.050731e+06 44884.18 NULL
2021 Police Department Captain Detailed As Chief Of Crime Control Strategies 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2021 Police Department Captain Detailed As Chief Of Detectives 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2021 Police Department Captain Detailed As Chief Of Interagency Operations 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2021 Police Department Captain Detailed As Chief Of Labor Relations 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2021 Police Department Captain Detailed As Chief Of Patrol 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2021 Police Department Captain Detailed As Chief Of Personnel 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2021 Police Department Captain Detailed As Chief Of Risk Management 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2021 Police Department Captain Detailed As Chief Of Special Operations 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2021 Police Department Captain Detailed As Chief Of Training 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2021 Police Department Captain-Chief Of Community Affairs 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2021 Police Department Captain-Chief Of Intelligence 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2021 Police Department Captain: Chief Of Transportation Bureau 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2021 Police Department Carpenter NA NA 48768.31 2.709351e+03 1868.625 642.75 18 1.868625e+03 33635.25 NA NA NA NULL
2021 Police Department Case Management Nurse 85480.76667 2.564423e+06 118627.44 3.954248e+03 599.070 1716.00 30 5.990700e+02 17972.10 2.683050e+06 2.582395e+06 100655.34 NULL
2021 Police Department Cashier 48427.25000 1.937090e+05 28696.02 7.174005e+03 498.120 661.25 4 4.981200e+02 1992.48 2.224050e+05 1.957015e+05 26703.54 NULL
2021 Police Department Cement Mason NA NA 14622.40 1.462240e+04 14622.400 152.00 1 1.462240e+04 14622.40 NA NA NA NULL
2021 Police Department Certified It Administrator 113168.04444 5.092562e+06 57334.77 1.274106e+03 634.200 723.50 45 6.342000e+02 28539.00 5.149897e+06 5.121101e+06 28795.77 NULL
2021 Police Department Certified It Developer 112430.20000 5.621510e+05 765.09 1.530180e+02 0.000 11.25 5 0.000000e+00 0.00 5.629161e+05 5.621510e+05 765.09 NULL
2021 Police Department Chaplain 40351.72727 4.438690e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 4.438690e+05 4.438690e+05 0.00 NULL
2021 Police Department City Attendant 41458.00000 4.145800e+04 7780.83 7.780830e+03 7780.830 230.50 1 7.780830e+03 7780.83 4.923883e+04 4.923883e+04 0.00 NULL
2021 Police Department City Custodial Assistant 36754.38492 1.356237e+07 427808.45 1.159372e+03 185.220 14954.25 369 1.852200e+02 68346.18 1.399018e+07 1.363071e+07 359462.27 NULL
2021 Police Department City Dentist 83559.84000 8.355984e+04 9.69 9.690000e+00 9.690 0.00 1 9.690000e+00 9.69 8.356953e+04 8.356953e+04 0.00 NULL
2021 Police Department City Deputy Medical Director 188100.00000 1.881000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.881000e+05 1.881000e+05 0.00 NULL
2021 Police Department City Laborer NA NA 220613.88 8.485149e+03 5916.040 3986.50 26 5.916040e+03 153817.04 NA NA NA NULL
2021 Police Department City Research Scientist 93569.32000 2.339233e+06 12432.63 4.973052e+02 0.000 227.75 25 0.000000e+00 0.00 2.351666e+06 2.339233e+06 12432.63 NULL
2021 Police Department Clerical Aide 36953.28276 1.847664e+05 6750.83 1.350166e+03 27.770 235.00 5 2.777000e+01 138.85 1.915172e+05 1.849053e+05 6611.98 NULL
2021 Police Department Clerical Associate 48544.22717 2.572844e+06 47098.30 8.886472e+02 0.110 1381.25 53 1.100000e-01 5.83 2.619942e+06 2.572850e+06 47092.47 NULL
2021 Police Department College Aide 15227.03150 3.806758e+05 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 3.806758e+05 3.806758e+05 0.00 NULL
2021 Police Department Commissioner 243171.00000 4.863420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863420e+05 4.863420e+05 0.00 NULL
2021 Police Department Community Assistant 20330.92349 1.199524e+06 3092.33 5.241237e+01 0.000 105.50 59 0.000000e+00 0.00 1.202617e+06 1.199524e+06 3092.33 NULL
2021 Police Department Community Associate 49723.36364 5.469570e+05 127.20 1.156364e+01 0.000 4.00 11 0.000000e+00 0.00 5.470842e+05 5.469570e+05 127.20 NULL
2021 Police Department Community Coordinator 67193.88869 1.411072e+06 6309.05 3.004310e+02 0.000 147.75 21 0.000000e+00 0.00 1.417381e+06 1.411072e+06 6309.05 NULL
2021 Police Department Compositor NA NA 30398.03 1.013268e+04 9683.650 379.25 3 9.683650e+03 29050.95 NA NA NA NULL
2021 Police Department Computer Associate 76839.93636 8.452393e+06 98343.00 8.940273e+02 49.465 1611.75 110 4.946500e+01 5441.15 8.550736e+06 8.457834e+06 92901.85 NULL
2021 Police Department Computer Operations Manager 167595.87500 1.340767e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.340767e+06 1.340767e+06 0.00 NULL
2021 Police Department Computer Programmer Analyst 69996.00000 6.999600e+04 8365.14 8.365140e+03 8365.140 184.25 1 8.365140e+03 8365.14 7.836114e+04 7.836114e+04 0.00 NULL
2021 Police Department Computer Specialist 103807.93103 6.020860e+06 20460.37 3.527650e+02 0.000 318.25 58 0.000000e+00 0.00 6.041320e+06 6.020860e+06 20460.37 NULL
2021 Police Department Computer Systems Manager 167452.00000 3.181588e+06 419.98 2.210421e+01 0.000 4.75 19 0.000000e+00 0.00 3.182008e+06 3.181588e+06 419.98 NULL
2021 Police Department Construction Project Manager 112301.00000 2.246020e+05 3067.94 1.533970e+03 1533.970 42.25 2 1.533970e+03 3067.94 2.276699e+05 2.276699e+05 0.00 NULL
2021 Police Department Crime Analyst 59681.93976 4.953601e+06 21633.95 2.606500e+02 0.000 616.25 83 0.000000e+00 0.00 4.975235e+06 4.953601e+06 21633.95 NULL
2021 Police Department Criminalist 75018.55814 1.935479e+07 512511.15 1.986477e+03 647.470 8837.75 258 6.474700e+02 167047.26 1.986730e+07 1.952184e+07 345463.89 NULL
2021 Police Department Criminalist Assistant Director Of Laboratory 130952.12500 1.047617e+06 15557.36 1.944670e+03 0.000 235.25 8 0.000000e+00 0.00 1.063174e+06 1.047617e+06 15557.36 NULL
2021 Police Department Criminalist Deputy Director Of Labatory 169331.00000 1.693310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.693310e+05 1.693310e+05 0.00 NULL
2021 Police Department Criminalist Director Of Laboratory 191282.00000 1.912820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.912820e+05 1.912820e+05 0.00 NULL
2021 Police Department Custodian 43558.75000 1.045410e+06 95325.68 3.971903e+03 3697.345 2897.75 24 3.697345e+03 88736.28 1.140736e+06 1.134146e+06 6589.40 NULL
2021 Police Department Deputy Chief Surgeon 156754.00000 6.270160e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.270160e+05 6.270160e+05 0.00 NULL
2021 Police Department Deputy Commissioner 236377.33333 1.418264e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.418264e+06 1.418264e+06 0.00 NULL
2021 Police Department Director 145022.00000 1.450220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450220e+05 1.450220e+05 0.00 NULL
2021 Police Department Director Employee Management Division 157222.00000 1.572220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.572220e+05 1.572220e+05 0.00 NULL
2021 Police Department Director Management Information Systems 208826.00000 2.088260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.088260e+05 2.088260e+05 0.00 NULL
2021 Police Department Director Of Communications 128909.00000 1.289090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.289090e+05 1.289090e+05 0.00 NULL
2021 Police Department Director Of Department Advocates Office 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2021 Police Department Director Of Internal Affairs - Pd 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2021 Police Department Director Of Motor Transport 167614.00000 1.676140e+05 1685.76 1.685760e+03 1685.760 17.50 1 1.685760e+03 1685.76 1.692998e+05 1.692998e+05 0.00 NULL
2021 Police Department Director Of Organized Crime Control-Pd 192152.00000 1.921520e+05 14105.04 1.410504e+04 14105.040 134.08 1 1.410504e+04 14105.04 2.062570e+05 2.062570e+05 0.00 NULL
2021 Police Department Director Of Photographic Services-Pd 149350.00000 1.493500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.493500e+05 1.493500e+05 0.00 NULL
2021 Police Department Director Of Psychological Services 139652.00000 1.396520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.396520e+05 1.396520e+05 0.00 NULL
2021 Police Department Director Of Support Services-Pd 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2021 Police Department Director Of Technology Development-Pd 166860.00000 1.668600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.668600e+05 1.668600e+05 0.00 NULL
2021 Police Department Director Of Training 138308.00000 1.383080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.383080e+05 1.383080e+05 0.00 NULL
2021 Police Department Economist 70817.00000 1.416340e+05 284.13 1.420650e+02 142.065 7.00 2 1.420650e+02 284.13 1.419181e+05 1.419181e+05 0.00 NULL
2021 Police Department Electrician NA NA 310362.91 7.759073e+03 4565.590 3487.50 40 4.565590e+03 182623.60 NA NA NA NULL
2021 Police Department Electricians Helper NA NA 4532.64 4.532640e+03 4532.640 78.00 1 4.532640e+03 4532.64 NA NA NA NULL
2021 Police Department Elevator Mechanic NA NA 5416.86 5.416860e+03 5416.860 70.50 1 5.416860e+03 5416.86 NA NA NA NULL
2021 Police Department Employee Assistance Program Specialist 71393.33333 2.141800e+05 1760.88 5.869600e+02 392.030 41.75 3 3.920300e+02 1176.09 2.159409e+05 2.153561e+05 584.79 NULL
2021 Police Department Evidence And Property Control Specialist 58981.80874 1.079367e+07 101984.87 5.572944e+02 0.000 2312.25 183 0.000000e+00 0.00 1.089566e+07 1.079367e+07 101984.87 NULL
2021 Police Department Executive Agency Counsel 161564.02326 6.947253e+06 41457.55 9.641291e+02 0.000 506.50 43 0.000000e+00 0.00 6.988711e+06 6.947253e+06 41457.55 NULL
2021 Police Department Fingerprint Technician Trainee 32717.57143 2.290230e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.290230e+05 2.290230e+05 0.00 NULL
2021 Police Department First Deputy Commissioner 242592.00000 2.425920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.425920e+05 2.425920e+05 0.00 NULL
2021 Police Department Fitness Instructor 60598.37500 9.695740e+05 7444.70 4.652937e+02 0.020 165.25 16 2.000000e-02 0.32 9.770187e+05 9.695743e+05 7444.38 NULL
2021 Police Department Glazier NA NA 23499.70 7.833233e+03 11023.130 164.50 3 7.833233e+03 23499.70 NA NA NA NULL
2021 Police Department Graphic Artist 67328.50000 6.732850e+05 10192.85 1.019285e+03 156.845 190.00 10 1.568450e+02 1568.45 6.834778e+05 6.748534e+05 8624.40 NULL
2021 Police Department Health Services Manager Non Managerial Level I 83599.00000 8.359900e+04 160.16 1.601600e+02 160.160 3.50 1 1.601600e+02 160.16 8.375916e+04 8.375916e+04 0.00 NULL
2021 Police Department Horseshoer NA NA 41.59 1.386333e+01 16.640 1.00 3 1.386333e+01 41.59 NA NA NA NULL
2021 Police Department Hostler 47213.68876 1.038701e+06 64456.32 2.929833e+03 1458.135 1794.00 22 1.458135e+03 32078.97 1.103157e+06 1.070780e+06 32377.35 NULL
2021 Police Department Intelligence Research Manager-Pd 161729.20000 8.086460e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.086460e+05 8.086460e+05 0.00 NULL
2021 Police Department Intelligence Research Specialist-Pd 96868.64444 4.359089e+06 16204.24 3.600942e+02 0.000 234.00 45 0.000000e+00 0.00 4.375293e+06 4.359089e+06 16204.24 NULL
2021 Police Department Investigator 51162.93333 2.302332e+06 34906.19 7.756931e+02 245.480 960.25 45 2.454800e+02 11046.60 2.337238e+06 2.313379e+06 23859.59 NULL
2021 Police Department Investigator Trainee 45130.40000 2.256520e+05 4891.56 9.783120e+02 118.720 160.50 5 1.187200e+02 593.60 2.305436e+05 2.262456e+05 4297.96 NULL
2021 Police Department It Project Specialist 105049.25000 4.201970e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.201970e+05 4.201970e+05 0.00 NULL
2021 Police Department It Security Specialist 107500.00000 2.150000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.150000e+05 2.150000e+05 0.00 NULL
2021 Police Department Lieutenant 130437.26137 1.691771e+08 26576497.78 2.049075e+04 19139.790 390915.58 1297 1.913979e+04 24824307.63 1.957536e+08 1.940014e+08 1752190.15 NULL
2021 Police Department Lieutenant D/A Commander Of Detective Squad 144269.36154 1.875502e+07 5070078.54 3.900060e+04 41308.155 62234.58 130 3.900060e+04 5070078.54 2.382510e+07 2.382510e+07 0.00 NULL
2021 Police Department Lieutenant D/A Special Assignment 143216.36207 1.661310e+07 3778921.78 3.257691e+04 33310.785 47424.41 116 3.257691e+04 3778921.78 2.039202e+07 2.039202e+07 0.00 NULL
2021 Police Department Locksmith NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2021 Police Department Maintenance Worker NA NA 42419.29 1.696772e+03 849.120 902.75 25 8.491200e+02 21228.00 NA NA NA NULL
2021 Police Department Management Auditor 78533.15000 1.570663e+06 4811.88 2.405940e+02 0.000 82.00 20 0.000000e+00 0.00 1.575475e+06 1.570663e+06 4811.88 NULL
2021 Police Department Manager Of Radio Repair Operations 149169.00000 8.950140e+05 11968.20 1.994700e+03 0.000 150.00 6 0.000000e+00 0.00 9.069822e+05 8.950140e+05 11968.20 NULL
2021 Police Department Marine Maintenance Mechanic 78628.00000 1.572560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.572560e+05 1.572560e+05 0.00 NULL
2021 Police Department Media Services Technician 49303.04167 1.183273e+06 20794.75 8.664479e+02 308.805 602.00 24 3.088050e+02 7411.32 1.204068e+06 1.190684e+06 13383.43 NULL
2021 Police Department Motor Vehicle Operator 49937.24242 1.647929e+06 85845.03 2.601365e+03 1395.840 2209.00 33 1.395840e+03 46062.72 1.733774e+06 1.693992e+06 39782.31 NULL
2021 Police Department Motor Vehicle Supervisor 58854.20000 2.942710e+05 13403.41 2.680682e+03 1999.190 299.00 5 1.999190e+03 9995.95 3.076744e+05 3.042670e+05 3407.46 NULL
2021 Police Department Office Machine Aide 41134.50000 8.226900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.226900e+04 8.226900e+04 0.00 NULL
2021 Police Department Oiler NA NA 343484.25 1.717421e+04 11137.415 3924.75 20 1.113742e+04 222748.30 NA NA NA NULL
2021 Police Department Operations Communications Specialist 46215.50000 9.243100e+04 10743.36 5.371680e+03 5371.680 302.00 2 5.371680e+03 10743.36 1.031744e+05 1.031744e+05 0.00 NULL
2021 Police Department P.o. Da Det Gr3 96956.86675 3.172429e+08 80661834.05 2.465215e+04 26669.120 1548486.20 3272 2.465215e+04 80661834.05 3.979047e+08 3.979047e+08 0.00 NULL
2021 Police Department P.o. Det Spec 96897.63920 7.761501e+07 13773362.39 1.719521e+04 17752.680 257173.68 801 1.719521e+04 13773362.39 9.138837e+07 9.138837e+07 0.00 NULL
2021 Police Department Painter NA NA 28333.93 1.666702e+03 501.480 452.00 17 5.014800e+02 8525.16 NA NA NA NULL
2021 Police Department Paralegal Aide 48449.33333 5.813920e+05 7043.33 5.869442e+02 0.000 234.37 12 0.000000e+00 0.00 5.884353e+05 5.813920e+05 7043.33 NULL
2021 Police Department Parking Control Specialist 47111.15385 6.124450e+05 66396.92 5.107455e+03 2495.100 1958.33 13 2.495100e+03 32436.30 6.788419e+05 6.448813e+05 33960.62 NULL
2021 Police Department Photographer 53739.84211 1.021057e+06 15142.38 7.969674e+02 80.860 428.25 19 8.086000e+01 1536.34 1.036199e+06 1.022593e+06 13606.04 NULL
2021 Police Department Physician’s Assistant 30499.40060 6.099880e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.099880e+04 6.099880e+04 0.00 NULL
2021 Police Department Plumber NA NA 450932.33 2.652543e+04 20904.840 4272.25 17 2.090484e+04 355382.28 NA NA NA NULL
2021 Police Department Plumber’s Helper NA NA 1219.35 1.219350e+03 1219.350 16.50 1 1.219350e+03 1219.35 NA NA NA NULL
2021 Police Department Police Administrative Aide 42990.72720 5.752159e+07 420088.46 3.139675e+02 0.000 13424.86 1338 0.000000e+00 0.00 5.794168e+07 5.752159e+07 420088.46 NULL
2021 Police Department Police Attendant 42065.02941 1.430211e+06 256240.44 7.536484e+03 5078.280 8187.50 34 5.078280e+03 172661.52 1.686451e+06 1.602873e+06 83578.92 NULL
2021 Police Department Police Cadet 17536.07643 3.647504e+06 0.00 0.000000e+00 0.000 0.00 208 0.000000e+00 0.00 3.647504e+06 3.647504e+06 0.00 NULL
2021 Police Department Police Communications Technician 47940.95700 8.250639e+07 4519182.45 2.625905e+03 903.170 130894.54 1721 9.031700e+02 1554355.57 8.702557e+07 8.406074e+07 2964826.88 NULL
2021 Police Department Police Officer 69597.21655 1.640685e+09 185416825.97 7.865310e+03 5674.105 4949417.12 23574 5.674105e+03 133761351.27 1.826102e+09 1.774446e+09 51655474.70 NULL
2021 Police Department Police Officer D/A Detective 1st Gr 125503.14706 2.986975e+07 7876913.20 3.309627e+04 36081.005 111977.29 238 3.309627e+04 7876913.20 3.774666e+07 3.774666e+07 0.00 NULL
2021 Police Department Police Officer D/A Detective 2nd Gr 109360.00000 5.850760e+07 15472072.23 2.891976e+04 31326.670 254588.32 535 2.891976e+04 15472072.23 7.397967e+07 7.397967e+07 0.00 NULL
2021 Police Department Police Surgeon 143199.76923 3.723194e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 3.723194e+06 3.723194e+06 0.00 NULL
2021 Police Department Precinct Community Relations Aide 31687.52667 9.506258e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.506258e+04 9.506258e+04 0.00 NULL
2021 Police Department Precinct Receptionist 24434.65818 2.687812e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 2.687812e+05 2.687812e+05 0.00 NULL
2021 Police Department Principal Administrative Associate - Non Supvr 64955.96842 1.851245e+07 256042.93 8.983962e+02 0.000 5523.40 285 0.000000e+00 0.00 1.876849e+07 1.851245e+07 256042.93 NULL
2021 Police Department Principal Fingerprint Technician 58099.80000 2.904990e+05 61.86 1.237200e+01 0.000 1.00 5 0.000000e+00 0.00 2.905609e+05 2.904990e+05 61.86 NULL
2021 Police Department Principal Police Communication Technician 74514.27941 5.066971e+06 697078.79 1.025116e+04 9365.275 12975.62 68 9.365275e+03 636838.70 5.764050e+06 5.703810e+06 60240.09 NULL
2021 Police Department Printing Press Operator NA NA 63694.92 3.980932e+03 4776.385 1094.75 16 3.980932e+03 63694.92 NA NA NA NULL
2021 Police Department Procurement Analyst 68401.93750 1.094431e+06 18369.40 1.148088e+03 145.390 445.75 16 1.453900e+02 2326.24 1.112800e+06 1.096757e+06 16043.16 NULL
2021 Police Department Program Producer 54819.25000 2.192770e+05 1976.64 4.941600e+02 243.605 64.25 4 2.436050e+02 974.42 2.212536e+05 2.202514e+05 1002.22 NULL
2021 Police Department Project Manager 77250.00000 7.725000e+04 3405.81 3.405810e+03 3405.810 71.25 1 3.405810e+03 3405.81 8.065581e+04 8.065581e+04 0.00 NULL
2021 Police Department Psychologist 76584.42971 2.680455e+06 108585.88 3.102454e+03 3101.540 1705.50 35 3.101540e+03 108553.90 2.789041e+06 2.789009e+06 31.98 NULL
2021 Police Department Public Health Assistant 34477.45455 3.792520e+05 12698.69 1.154426e+03 9.710 492.25 11 9.710000e+00 106.81 3.919507e+05 3.793588e+05 12591.88 NULL
2021 Police Department Public Records Officer 56400.66667 1.692020e+05 1476.53 4.921767e+02 390.050 47.25 3 3.900500e+02 1170.15 1.706785e+05 1.703721e+05 306.38 NULL
2021 Police Department Quality Assurance Specialist 55442.50000 1.108850e+05 10112.37 5.056185e+03 5056.185 307.00 2 5.056185e+03 10112.37 1.209974e+05 1.209974e+05 0.00 NULL
2021 Police Department Radio Repair Mechanic NA NA 787919.38 7.724700e+03 1273.620 10687.79 102 1.273620e+03 129909.24 NA NA NA NULL
2021 Police Department Research Assistant 66422.00000 6.642200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.642200e+04 6.642200e+04 0.00 NULL
2021 Police Department Roofer NA NA 228.26 5.706500e+01 34.240 5.00 4 3.424000e+01 136.96 NA NA NA NULL
2021 Police Department School Crossing Guard 16651.51157 4.342714e+07 18209.85 6.982304e+00 0.000 891.50 2608 0.000000e+00 0.00 4.344535e+07 4.342714e+07 18209.85 NULL
2021 Police Department School Safety Agent 45922.33982 2.594612e+08 13413805.84 2.374125e+03 1046.025 391422.97 5650 1.046025e+03 5910041.25 2.728750e+08 2.653713e+08 7503764.59 NULL
2021 Police Department Secretary 52171.64706 8.869180e+05 12580.07 7.400041e+02 0.000 349.25 17 0.000000e+00 0.00 8.994981e+05 8.869180e+05 12580.07 NULL
2021 Police Department Secretary To The First Deputy Commissioner-Pd 112197.00000 1.121970e+05 3707.64 3.707640e+03 3707.640 45.25 1 3.707640e+03 3707.64 1.159046e+05 1.159046e+05 0.00 NULL
2021 Police Department Senior It Architect 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2021 Police Department Senior Office Appliance Maintainer 50855.00000 5.085500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.085500e+04 5.085500e+04 0.00 NULL
2021 Police Department Senior Photographer 61574.37500 4.925950e+05 16538.55 2.067319e+03 1207.545 443.25 8 1.207545e+03 9660.36 5.091335e+05 5.022554e+05 6878.19 NULL
2021 Police Department Senior Police Administrative Aide 53891.73464 4.386787e+07 479756.21 5.893811e+02 0.000 12423.01 814 0.000000e+00 0.00 4.434763e+07 4.386787e+07 479756.21 NULL
2021 Police Department Senior Stationary Engineer NA NA 115802.04 3.860068e+04 38494.800 1029.75 3 3.849480e+04 115484.40 NA NA NA NULL
2021 Police Department Sergeant- 103403.18204 3.811441e+08 55154776.57 1.496331e+04 12352.885 973996.56 3686 1.235289e+04 45532734.11 4.362989e+08 4.266769e+08 9622042.46 NULL
2021 Police Department Sergeant-D/A Special Assignment 119253.21182 2.420840e+07 4736669.85 2.333335e+04 24677.620 68909.54 203 2.333335e+04 4736669.85 2.894507e+07 2.894507e+07 0.00 NULL
2021 Police Department Sergeant-D/A Supervisor Detective Squad 119981.77116 3.827418e+07 10179349.43 3.191019e+04 34946.340 156873.14 319 3.191019e+04 10179349.43 4.845353e+07 4.845353e+07 0.00 NULL
2021 Police Department Sheet Metal Worker NA NA 59949.34 8.564191e+03 10193.920 517.00 7 8.564191e+03 59949.34 NA NA NA NULL
2021 Police Department Special Officer 50392.00000 5.039200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.039200e+04 5.039200e+04 0.00 NULL
2021 Police Department Staff Analyst 63272.00000 3.037056e+06 16576.32 3.453400e+02 0.000 409.75 48 0.000000e+00 0.00 3.053632e+06 3.037056e+06 16576.32 NULL
2021 Police Department Staff Analyst Trainee 43081.50000 1.723260e+05 197.58 4.939500e+01 0.000 7.00 4 0.000000e+00 0.00 1.725236e+05 1.723260e+05 197.58 NULL
2021 Police Department Stationary Engineer NA NA 884103.07 5.894020e+04 58270.320 9196.00 15 5.827032e+04 874054.80 NA NA NA NULL
2021 Police Department Steam Fitter NA NA 57420.00 9.570000e+03 8401.250 523.25 6 8.401250e+03 50407.50 NA NA NA NULL
2021 Police Department Steam Fitter’s Helper NA NA 11818.13 1.181813e+04 11818.130 143.25 1 1.181813e+04 11818.13 NA NA NA NULL
2021 Police Department Stenographer To Each Deputy Commissioner 99954.25000 3.998170e+05 5886.56 1.471640e+03 0.000 86.50 4 0.000000e+00 0.00 4.057036e+05 3.998170e+05 5886.56 NULL
2021 Police Department Stenographic Specialist 53747.66667 1.612430e+05 625.09 2.083633e+02 0.000 24.75 3 0.000000e+00 0.00 1.618681e+05 1.612430e+05 625.09 NULL
2021 Police Department Stock Worker 43691.12000 1.092278e+06 39948.44 1.597938e+03 31.060 1337.50 25 3.106000e+01 776.50 1.132226e+06 1.093054e+06 39171.94 NULL
2021 Police Department Supervising Chief Surgeon 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2021 Police Department Supervising Police Communications Technician 67314.85083 1.218399e+07 1582968.69 8.745683e+03 7347.740 31356.06 181 7.347740e+03 1329940.94 1.376696e+07 1.351393e+07 253027.75 NULL
2021 Police Department Supervisor 74684.33333 2.240530e+05 32117.22 1.070574e+04 2566.120 543.50 3 2.566120e+03 7698.36 2.561702e+05 2.317514e+05 24418.86 NULL
2021 Police Department Supervisor Carpenter NA NA 9315.20 4.657600e+03 4657.600 116.00 2 4.657600e+03 9315.20 NA NA NA NULL
2021 Police Department Supervisor Electrician NA NA 61337.78 1.533444e+04 18015.875 613.75 4 1.533444e+04 61337.78 NA NA NA NULL
2021 Police Department Supervisor Elevator Mechanic NA NA 20102.40 2.010240e+04 20102.400 238.00 1 2.010240e+04 20102.40 NA NA NA NULL
2021 Police Department Supervisor Glazier NA NA 14654.84 1.465484e+04 14654.840 94.00 1 1.465484e+04 14654.84 NA NA NA NULL
2021 Police Department Supervisor Locksmith NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2021 Police Department Supervisor Of Mechanical Installations & Maintenance 81037.50000 1.620750e+05 4383.10 2.191550e+03 2191.550 83.50 2 2.191550e+03 4383.10 1.664581e+05 1.664581e+05 0.00 NULL
2021 Police Department Supervisor Of Mechanics 124202.55319 5.837520e+06 253463.07 5.392831e+03 5643.310 2793.75 47 5.392831e+03 253463.07 6.090983e+06 6.090983e+06 0.00 NULL
2021 Police Department Supervisor Of Office Machine Operations 55323.00000 5.532300e+04 5038.25 5.038250e+03 5038.250 133.00 1 5.038250e+03 5038.25 6.036125e+04 6.036125e+04 0.00 NULL
2021 Police Department Supervisor Of School Security 72194.00662 1.090130e+07 692338.20 4.585021e+03 3277.800 12725.17 151 3.277800e+03 494947.80 1.159363e+07 1.139624e+07 197390.40 NULL
2021 Police Department Supervisor Of Stock Workers 55567.80000 5.556780e+05 45853.20 4.585320e+03 4793.990 1417.00 10 4.585320e+03 45853.20 6.015312e+05 6.015312e+05 0.00 NULL
2021 Police Department Supervisor Painter NA NA 11928.06 2.982015e+03 3170.070 166.50 4 2.982015e+03 11928.06 NA NA NA NULL
2021 Police Department Supervisor Plumber NA NA 112736.36 3.757879e+04 54045.990 1019.50 3 3.757879e+04 112736.36 NA NA NA NULL
2021 Police Department Supervisor Roofer NA NA 188.28 1.882800e+02 188.280 4.00 1 1.882800e+02 188.28 NA NA NA NULL
2021 Police Department Supervisor Sheet Metal Worker NA NA 15232.16 1.523216e+04 15232.160 124.00 1 1.523216e+04 15232.16 NA NA NA NULL
2021 Police Department Supervisor Steamfitter NA NA 45999.00 4.599900e+04 45999.000 403.50 1 4.599900e+04 45999.00 NA NA NA NULL
2021 Police Department Supervisor Thermostat Repair NA NA 2101.02 2.101020e+03 2101.020 19.00 1 2.101020e+03 2101.02 NA NA NA NULL
2021 Police Department Telecommunications Associate 88557.00000 1.151241e+06 18067.33 1.389795e+03 1423.270 302.25 13 1.389795e+03 18067.33 1.169308e+06 1.169308e+06 0.00 NULL
2021 Police Department Telephone Service Technician 75048.33333 2.251450e+05 1169.18 3.897267e+02 100.440 25.00 3 1.004400e+02 301.32 2.263142e+05 2.254463e+05 867.86 NULL
2021 Police Department Tests And Measurement Specialist 95790.00000 9.579000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.579000e+04 9.579000e+04 0.00 NULL
2021 Police Department Thermostat Repairer NA NA 209632.05 2.329245e+04 20772.870 1987.25 9 2.077287e+04 186955.83 NA NA NA NULL
2021 Police Department Traffic Enforcement Agent 44211.40784 1.252067e+08 17398669.71 6.143598e+03 4574.565 527604.61 2832 4.574565e+03 12955168.08 1.426054e+08 1.381619e+08 4443501.63 NULL
2021 Police Department Welder NA NA 21098.06 1.054903e+04 10549.030 205.33 2 1.054903e+04 21098.06 NA NA NA NULL
2021 Public Administrator-Bronx Community Associate 52911.60000 2.645580e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.645580e+05 2.645580e+05 0.00 NULL
2021 Public Administrator-Bronx Decedent Property Agent 51556.00000 5.155600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.155600e+04 5.155600e+04 0.00 NULL
2021 Public Administrator-Bronx Deputy Public Administator 126540.00000 1.265400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.265400e+05 1.265400e+05 0.00 NULL
2021 Public Administrator-Bronx Principal Administrative Associate - Non Supvr 73978.00000 7.397800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.397800e+04 7.397800e+04 0.00 NULL
2021 Public Administrator-Bronx Public Administrator 189810.00000 1.898100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.898100e+05 1.898100e+05 0.00 NULL
2021 Public Administrator-Kings Community Assistant 35084.00000 1.052520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.052520e+05 1.052520e+05 0.00 NULL
2021 Public Administrator-Kings Community Associate 42316.00000 1.692640e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.692640e+05 1.692640e+05 0.00 NULL
2021 Public Administrator-Kings Community Coordinator 61605.50000 1.232110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.232110e+05 1.232110e+05 0.00 NULL
2021 Public Administrator-Kings Decedent Property Agent 50420.25000 2.016810e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.016810e+05 2.016810e+05 0.00 NULL
2021 Public Administrator-Kings Deputy Public Administator 126540.00000 1.265400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.265400e+05 1.265400e+05 0.00 NULL
2021 Public Administrator-Kings Public Administrator 189810.00000 1.898100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.898100e+05 1.898100e+05 0.00 NULL
2021 Public Administrator-New York Accountant 65924.00000 6.592400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.592400e+04 6.592400e+04 0.00 NULL
2021 Public Administrator-New York Clerical Associate 45160.00000 1.354800e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.354800e+05 1.354800e+05 0.00 NULL
2021 Public Administrator-New York Decedent Property Agent 48201.75000 1.928070e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.928070e+05 1.928070e+05 0.00 NULL
2021 Public Administrator-New York Deputy Public Administator 126540.00000 1.265400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.265400e+05 1.265400e+05 0.00 NULL
2021 Public Administrator-New York Public Administrator 189810.00000 1.898100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.898100e+05 1.898100e+05 0.00 NULL
2021 Public Administrator-Queens Decedent Property Agent 47742.00000 2.387100e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.387100e+05 2.387100e+05 0.00 NULL
2021 Public Administrator-Queens Deputy Public Administator 126540.00000 1.265400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.265400e+05 1.265400e+05 0.00 NULL
2021 Public Administrator-Queens Public Administrator 189810.00000 1.898100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.898100e+05 1.898100e+05 0.00 NULL
2021 Public Administrator-Queens Secretary 37777.00000 3.777700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.777700e+04 3.777700e+04 0.00 NULL
2021 Public Administrator-Richmond Community Coordinator 72407.00000 7.240700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.240700e+04 7.240700e+04 0.00 NULL
2021 Public Administrator-Richmond Deputy Public Administator 124800.00000 1.248000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.248000e+05 1.248000e+05 0.00 NULL
2021 Public Administrator-Richmond Public Administrator 187200.00000 1.872000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.872000e+05 1.872000e+05 0.00 NULL
2021 Public Administrator-Richmond Secretary To Public Administrator 77931.00000 1.558620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.558620e+05 1.558620e+05 0.00 NULL
2021 Public Advocate Assistant To The Public Advocate 43358.74466 1.864426e+06 0.00 0.000000e+00 0.000 0.00 43 0.000000e+00 0.00 1.864426e+06 1.864426e+06 0.00 NULL
2021 Public Advocate Counsel To The Public Advocate 130000.00000 2.600000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.600000e+05 2.600000e+05 0.00 NULL
2021 Public Advocate Director Of Communications 105000.00000 3.150000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.150000e+05 3.150000e+05 0.00 NULL
2021 Public Advocate Director Of The Ombudsman Program 102500.00000 2.050000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.050000e+05 2.050000e+05 0.00 NULL
2021 Public Advocate Executive Secretary To The Public Advocate 50000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2021 Public Advocate First Assistant To The Public Advocate 138333.33333 4.150000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.150000e+05 4.150000e+05 0.00 NULL
2021 Public Advocate Legislative Attorney 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2021 Public Advocate Legislative Information Officer 94166.66667 8.475000e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.475000e+05 8.475000e+05 0.00 NULL
2021 Public Advocate Office Assistant 11634.97500 2.326995e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.326995e+04 2.326995e+04 0.00 NULL
2021 Public Advocate Office Manager 87571.42857 6.130000e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.130000e+05 6.130000e+05 0.00 NULL
2021 Public Advocate Public Advocate 184800.00000 1.848000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.848000e+05 1.848000e+05 0.00 NULL
2021 Public Advocate Special Assistant 54000.00000 1.620000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.620000e+05 1.620000e+05 0.00 NULL
2021 Public Service Corps College Aide 4311.77778 1.164180e+05 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 1.164180e+05 1.164180e+05 0.00 NULL
2021 Queens Community Board #1 Community Assistant 35928.00000 7.185600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.185600e+04 7.185600e+04 0.00 NULL
2021 Queens Community Board #1 Community Service Aide 27224.00000 2.722400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.722400e+04 2.722400e+04 0.00 NULL
2021 Queens Community Board #1 District Manager 103159.00000 1.031590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.031590e+05 1.031590e+05 0.00 NULL
2021 Queens Community Board #10 Community Assistant 39000.00000 3.900000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.900000e+04 3.900000e+04 0.00 NULL
2021 Queens Community Board #10 Community Associate 47611.00000 4.761100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.761100e+04 4.761100e+04 0.00 NULL
2021 Queens Community Board #10 Community Coordinator 40034.32040 8.006864e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.006864e+04 8.006864e+04 0.00 NULL
2021 Queens Community Board #10 District Manager 101134.00000 1.011340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.011340e+05 1.011340e+05 0.00 NULL
2021 Queens Community Board #11 Community Associate 53370.00000 5.337000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.337000e+04 5.337000e+04 0.00 NULL
2021 Queens Community Board #11 Community Coordinator 70051.00000 7.005100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.005100e+04 7.005100e+04 0.00 NULL
2021 Queens Community Board #11 District Manager 82144.00000 8.214400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.214400e+04 8.214400e+04 0.00 NULL
2021 Queens Community Board #12 Community Assistant 39209.50000 7.841900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.841900e+04 7.841900e+04 0.00 NULL
2021 Queens Community Board #12 Community Service Aide 21286.00000 2.128600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128600e+04 2.128600e+04 0.00 NULL
2021 Queens Community Board #12 District Manager 119471.00000 1.194710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.194710e+05 1.194710e+05 0.00 NULL
2021 Queens Community Board #13 Community Assistant 41200.00000 4.120000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.120000e+04 4.120000e+04 0.00 NULL
2021 Queens Community Board #13 Community Coordinator 71450.00000 7.145000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.145000e+04 7.145000e+04 0.00 NULL
2021 Queens Community Board #13 District Manager 111168.00000 1.111680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.111680e+05 1.111680e+05 0.00 NULL
2021 Queens Community Board #14 Community Coordinator 76052.00000 7.605200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.605200e+04 7.605200e+04 0.00 NULL
2021 Queens Community Board #14 Community Service Aide 24195.00000 2.419500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.419500e+04 2.419500e+04 0.00 NULL
2021 Queens Community Board #14 District Manager 137910.00000 1.379100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.379100e+05 1.379100e+05 0.00 NULL
2021 Queens Community Board #2 Community Assistant 37958.00000 3.795800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.795800e+04 3.795800e+04 0.00 NULL
2021 Queens Community Board #2 Community Associate 61454.00000 6.145400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.145400e+04 6.145400e+04 0.00 NULL
2021 Queens Community Board #2 Community Service Aide 19454.93550 1.945494e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.945494e+04 1.945494e+04 0.00 NULL
2021 Queens Community Board #2 District Manager 110083.00000 1.100830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100830e+05 1.100830e+05 0.00 NULL
2021 Queens Community Board #3 Community Associate 52048.00000 5.204800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.204800e+04 5.204800e+04 0.00 NULL
2021 Queens Community Board #3 Community Service Aide 29361.00000 2.936100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.936100e+04 2.936100e+04 0.00 NULL
2021 Queens Community Board #3 District Manager 110398.00000 1.103980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.103980e+05 1.103980e+05 0.00 NULL
2021 Queens Community Board #4 Community Assistant 42191.00000 4.219100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.219100e+04 4.219100e+04 0.00 NULL
2021 Queens Community Board #4 Community Coordinator 84066.00000 8.406600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.406600e+04 8.406600e+04 0.00 NULL
2021 Queens Community Board #4 District Manager 103707.00000 1.037070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.037070e+05 1.037070e+05 0.00 NULL
2021 Queens Community Board #5 Community Associate 42427.07393 1.272812e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.272812e+05 1.272812e+05 0.00 NULL
2021 Queens Community Board #5 District Manager 99183.00000 9.918300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.918300e+04 9.918300e+04 0.00 NULL
2021 Queens Community Board #6 Community Coordinator 65116.00000 6.511600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.511600e+04 6.511600e+04 0.00 NULL
2021 Queens Community Board #6 Community Service Aide 25684.00000 5.136800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.136800e+04 5.136800e+04 0.00 NULL
2021 Queens Community Board #6 District Manager 113318.00000 1.133180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133180e+05 1.133180e+05 0.00 NULL
2021 Queens Community Board #7 Community Assistant 30611.31180 3.061131e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.061131e+04 3.061131e+04 0.00 NULL
2021 Queens Community Board #7 Community Associate 37029.50000 7.405900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.405900e+04 7.405900e+04 0.00 NULL
2021 Queens Community Board #7 Community Service Aide 20259.00000 2.025900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.025900e+04 2.025900e+04 0.00 NULL
2021 Queens Community Board #7 District Manager 91557.00000 9.155700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.155700e+04 9.155700e+04 0.00 NULL
2021 Queens Community Board #8 Community Assistant 39965.00000 3.996500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.996500e+04 3.996500e+04 0.00 NULL
2021 Queens Community Board #8 Community Associate 49463.00000 4.946300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.946300e+04 4.946300e+04 0.00 NULL
2021 Queens Community Board #8 Community Service Aide 2168.64000 2.168640e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.168640e+03 2.168640e+03 0.00 NULL
2021 Queens Community Board #8 District Manager 126801.00000 1.268010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.268010e+05 1.268010e+05 0.00 NULL
2021 Queens Community Board #9 Community Assistant 39544.00000 3.954400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.954400e+04 3.954400e+04 0.00 NULL
2021 Queens Community Board #9 Community Associate 47436.00000 4.743600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.743600e+04 4.743600e+04 0.00 NULL
2021 Queens Community Board #9 Community Service Aide 21356.00000 2.135600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.135600e+04 2.135600e+04 0.00 NULL
2021 Queens Community Board #9 District Manager 71585.00000 7.158500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.158500e+04 7.158500e+04 0.00 NULL
2021 Staten Island Community Bd #1 Community Associate 53303.00000 5.330300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.330300e+04 5.330300e+04 0.00 NULL
2021 Staten Island Community Bd #1 Community Coordinator 71698.00000 7.169800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.169800e+04 7.169800e+04 0.00 NULL
2021 Staten Island Community Bd #1 District Manager 98033.00000 9.803300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.803300e+04 9.803300e+04 0.00 NULL
2021 Staten Island Community Bd #2 Community Assistant 24788.54100 2.478854e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.478854e+04 2.478854e+04 0.00 NULL
2021 Staten Island Community Bd #2 District Manager 108861.00000 1.088610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.088610e+05 1.088610e+05 0.00 NULL
2021 Staten Island Community Bd #3 Community Coordinator 62480.00000 1.249600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.249600e+05 1.249600e+05 0.00 NULL
2021 Staten Island Community Bd #3 District Manager 104201.00000 1.042010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.042010e+05 1.042010e+05 0.00 NULL
2021 Tax Commission *Administrative Attorney 156958.00000 1.569580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.569580e+05 1.569580e+05 0.00 NULL
2021 Tax Commission *Certified Database Administrator 104053.00000 1.040530e+05 1115.29 1.115290e+03 1115.290 14.00 1 1.115290e+03 1115.29 1.051683e+05 1.051683e+05 0.00 NULL
2021 Tax Commission Adm Manager-Non-Mgrl 83544.50000 1.670890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.670890e+05 1.670890e+05 0.00 NULL
2021 Tax Commission Administrative Assessor 147708.00000 1.477080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.477080e+05 1.477080e+05 0.00 NULL
2021 Tax Commission Agency Attorney 102123.41625 4.084937e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.084937e+05 4.084937e+05 0.00 NULL
2021 Tax Commission Assistant Counsel 146010.00000 1.460100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.460100e+05 1.460100e+05 0.00 NULL
2021 Tax Commission Associate Staff Analyst 102326.00000 1.023260e+05 21210.50 2.121050e+04 21210.500 316.00 1 2.121050e+04 21210.50 1.235365e+05 1.235365e+05 0.00 NULL
2021 Tax Commission Certified It Administrator 107000.00000 1.070000e+05 845.09 8.450900e+02 845.090 13.75 1 8.450900e+02 845.09 1.078451e+05 1.078451e+05 0.00 NULL
2021 Tax Commission Certified It Developer 118450.00000 1.184500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.184500e+05 1.184500e+05 0.00 NULL
2021 Tax Commission City Assessor 100684.12500 1.610946e+06 172882.03 1.080513e+04 10849.850 2222.00 16 1.080513e+04 172882.03 1.783828e+06 1.783828e+06 0.00 NULL
2021 Tax Commission College Aide 10820.53472 9.738481e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.738481e+04 9.738481e+04 0.00 NULL
2021 Tax Commission Commissioner 73626.42857 5.153850e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.153850e+05 5.153850e+05 0.00 NULL
2021 Tax Commission Computer Associate 76734.00000 7.673400e+04 1003.01 1.003010e+03 1003.010 16.00 1 1.003010e+03 1003.01 7.773701e+04 7.773701e+04 0.00 NULL
2021 Tax Commission Computer Specialist 116820.00000 1.168200e+05 815.69 8.156900e+02 815.690 8.50 1 8.156900e+02 815.69 1.176357e+05 1.176357e+05 0.00 NULL
2021 Tax Commission Computer Systems Manager 179040.00000 1.790400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.790400e+05 1.790400e+05 0.00 NULL
2021 Tax Commission Executive Agency Counsel 161628.00000 1.616280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.616280e+05 1.616280e+05 0.00 NULL
2021 Tax Commission Executive Assistant To The President Of The Tax Commission 147708.00000 1.477080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.477080e+05 1.477080e+05 0.00 NULL
2021 Tax Commission President 227786.00000 4.555720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.555720e+05 4.555720e+05 0.00 NULL
2021 Tax Commission Principal Administrative Associate - Non Supvr 73162.40000 3.658120e+05 442.31 8.846200e+01 0.000 9.75 5 0.000000e+00 0.00 3.662543e+05 3.658120e+05 442.31 NULL
2021 Tax Commission Secretary 70354.50000 1.407090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.407090e+05 1.407090e+05 0.00 NULL
2021 Tax Commission Secretary Of The Tax Commission 63709.00000 6.370900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.370900e+04 6.370900e+04 0.00 NULL
2021 Tax Commission Secretary To The President 84460.00000 8.446000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.446000e+04 8.446000e+04 0.00 NULL
2021 Tax Commission Special Assistant 163243.00000 1.632430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.632430e+05 1.632430e+05 0.00 NULL
2021 Taxi & Limousine Commission Accountant 78597.00000 3.143880e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.143880e+05 3.143880e+05 0.00 NULL
2021 Taxi & Limousine Commission Adm Manager-Non-Mgrl 80732.20000 4.036610e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.036610e+05 4.036610e+05 0.00 NULL
2021 Taxi & Limousine Commission Admin Community Relations Specialist 78438.33333 2.353150e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.353150e+05 2.353150e+05 0.00 NULL
2021 Taxi & Limousine Commission Administratiive Taxi & Limousine Inspector 115591.73333 1.733876e+06 1611.45 1.074300e+02 0.000 28.25 15 0.000000e+00 0.00 1.735487e+06 1.733876e+06 1611.45 NULL
2021 Taxi & Limousine Commission Administrative Accountant 121988.00000 1.219880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.219880e+05 1.219880e+05 0.00 NULL
2021 Taxi & Limousine Commission Administrative City Planner 109343.00000 1.093430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.093430e+05 1.093430e+05 0.00 NULL
2021 Taxi & Limousine Commission Administrative Manager 152124.00000 1.521240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.521240e+05 1.521240e+05 0.00 NULL
2021 Taxi & Limousine Commission Administrative Procurement Analyst-Non-Mgrl 76508.00000 7.650800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.650800e+04 7.650800e+04 0.00 NULL
2021 Taxi & Limousine Commission Administrative Public Information Specialist 182519.00000 1.825190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.825190e+05 1.825190e+05 0.00 NULL
2021 Taxi & Limousine Commission Administrative Quality Assurance Specialist 150185.00000 4.505550e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.505550e+05 4.505550e+05 0.00 NULL
2021 Taxi & Limousine Commission Administrative Staff Analyst 137525.12500 1.100201e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.100201e+06 1.100201e+06 0.00 NULL
2021 Taxi & Limousine Commission Agency Attorney 75167.70000 3.006708e+06 65294.72 1.632368e+03 0.000 1296.50 40 0.000000e+00 0.00 3.072003e+06 3.006708e+06 65294.72 NULL
2021 Taxi & Limousine Commission Agency Attorney Interne 63437.00000 5.709330e+05 4103.51 4.559456e+02 221.990 95.00 9 2.219900e+02 1997.91 5.750365e+05 5.729309e+05 2105.60 NULL
2021 Taxi & Limousine Commission Associate Staff Analyst 78295.50000 1.565910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.565910e+05 1.565910e+05 0.00 NULL
2021 Taxi & Limousine Commission Associate Taxi & Limousine Inspector 67676.09804 3.451481e+06 104685.50 2.052657e+03 423.660 1980.25 51 4.236600e+02 21606.66 3.556166e+06 3.473088e+06 83078.84 NULL
2021 Taxi & Limousine Commission Cashier 40249.69469 3.219976e+05 618.37 7.729625e+01 0.000 27.00 8 0.000000e+00 0.00 3.226159e+05 3.219976e+05 618.37 NULL
2021 Taxi & Limousine Commission Certified It Administrator 131288.50000 2.625770e+05 53679.21 2.683960e+04 26839.605 458.00 2 2.683960e+04 53679.21 3.162562e+05 3.162562e+05 0.00 NULL
2021 Taxi & Limousine Commission Chairman 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2021 Taxi & Limousine Commission City Research Scientist 85099.00000 5.105940e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.105940e+05 5.105940e+05 0.00 NULL
2021 Taxi & Limousine Commission Clerical Aide 35636.50000 7.127300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.127300e+04 7.127300e+04 0.00 NULL
2021 Taxi & Limousine Commission Clerical Associate 45593.32332 2.006106e+06 2844.51 6.464795e+01 0.000 108.25 44 0.000000e+00 0.00 2.008951e+06 2.006106e+06 2844.51 NULL
2021 Taxi & Limousine Commission College Aide 13447.00000 4.034100e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.034100e+04 4.034100e+04 0.00 NULL
2021 Taxi & Limousine Commission Community Assistant 36219.73047 5.795157e+05 24202.31 1.512644e+03 105.530 863.98 16 1.055300e+02 1688.48 6.037180e+05 5.812042e+05 22513.83 NULL
2021 Taxi & Limousine Commission Community Associate 46349.11213 3.476183e+06 26507.35 3.534313e+02 0.000 852.25 75 0.000000e+00 0.00 3.502691e+06 3.476183e+06 26507.35 NULL
2021 Taxi & Limousine Commission Community Coordinator 65216.61364 2.869531e+06 74437.55 1.691763e+03 0.000 1436.25 44 0.000000e+00 0.00 2.943969e+06 2.869531e+06 74437.55 NULL
2021 Taxi & Limousine Commission Computer Aide-Non-Spvr 48462.51000 1.453875e+05 1340.36 4.467867e+02 493.510 58.00 3 4.467867e+02 1340.36 1.467279e+05 1.467279e+05 0.00 NULL
2021 Taxi & Limousine Commission Computer Associate 68015.81750 2.720633e+05 5256.82 1.314205e+03 1205.180 160.25 4 1.205180e+03 4820.72 2.773201e+05 2.768840e+05 436.10 NULL
2021 Taxi & Limousine Commission Computer Operations Manager 152200.00000 4.566000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.566000e+05 4.566000e+05 0.00 NULL
2021 Taxi & Limousine Commission Computer Programmer Analyst 79899.12000 7.989912e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.989912e+04 7.989912e+04 0.00 NULL
2021 Taxi & Limousine Commission Computer Specialist 106657.69231 1.386550e+06 26231.89 2.017838e+03 0.000 367.00 13 0.000000e+00 0.00 1.412782e+06 1.386550e+06 26231.89 NULL
2021 Taxi & Limousine Commission Computer Systems Manager 138929.25000 1.111434e+06 99.13 1.239125e+01 0.000 1.50 8 0.000000e+00 0.00 1.111533e+06 1.111434e+06 99.13 NULL
2021 Taxi & Limousine Commission Customer Information Representative Ma L 1549 38934.34773 4.282778e+05 4192.39 3.811264e+02 0.000 172.50 11 0.000000e+00 0.00 4.324702e+05 4.282778e+05 4192.39 NULL
2021 Taxi & Limousine Commission Economist 58452.50000 1.169050e+05 334.03 1.670150e+02 167.015 8.00 2 1.670150e+02 334.03 1.172390e+05 1.172390e+05 0.00 NULL
2021 Taxi & Limousine Commission Executive Agency Counsel 154940.45455 1.704345e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.704345e+06 1.704345e+06 0.00 NULL
2021 Taxi & Limousine Commission Graphic Artist 51500.00000 5.150000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.150000e+04 5.150000e+04 0.00 NULL
2021 Taxi & Limousine Commission Investigator 66236.00000 6.623600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.623600e+04 6.623600e+04 0.00 NULL
2021 Taxi & Limousine Commission Maintenance Worker NA NA 8369.87 2.789957e+03 3030.380 181.75 3 2.789957e+03 8369.87 NA NA NA NULL
2021 Taxi & Limousine Commission Operations Communications Specialist 39945.22040 3.195618e+05 269.39 3.367375e+01 11.975 9.00 8 1.197500e+01 95.80 3.198312e+05 3.196576e+05 173.59 NULL
2021 Taxi & Limousine Commission Principal Administrative Associate - Non Supvr 65958.32826 1.517042e+06 15929.63 6.925926e+02 0.000 302.50 23 0.000000e+00 0.00 1.532971e+06 1.517042e+06 15929.63 NULL
2021 Taxi & Limousine Commission Secretary 42223.50000 8.444700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.444700e+04 8.444700e+04 0.00 NULL
2021 Taxi & Limousine Commission Staff Analyst 59393.33333 1.781800e+05 161.71 5.390333e+01 0.000 5.00 3 0.000000e+00 0.00 1.783417e+05 1.781800e+05 161.71 NULL
2021 Taxi & Limousine Commission Staff Analyst Trainee 42373.00000 4.237300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.237300e+04 4.237300e+04 0.00 NULL
2021 Taxi & Limousine Commission Stock Worker 26862.43813 1.074498e+05 757.27 1.893175e+02 48.130 36.00 4 4.813000e+01 192.52 1.082070e+05 1.076423e+05 564.75 NULL
2021 Taxi & Limousine Commission Supervisor Of Stock Workers 45311.00750 9.062201e+04 3425.73 1.712865e+03 1712.865 115.50 2 1.712865e+03 3425.73 9.404774e+04 9.404774e+04 0.00 NULL
2021 Taxi & Limousine Commission Taxi And Limousine Inspector 51150.30876 1.109962e+07 337676.90 1.556115e+03 246.850 8341.50 217 2.468500e+02 53566.45 1.143729e+07 1.115318e+07 284110.45 NULL
2021 Taxi & Limousine Commission Telecommunications Associate 72100.00000 7.210000e+04 286.11 2.861100e+02 286.110 7.25 1 2.861100e+02 286.11 7.238611e+04 7.238611e+04 0.00 NULL
2021 Teachers Retirement System Accountant 71010.44444 6.390940e+05 14900.70 1.655633e+03 0.000 250.25 9 0.000000e+00 0.00 6.539947e+05 6.390940e+05 14900.70 NULL
2021 Teachers Retirement System Actuarial Specialist Level I 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2021 Teachers Retirement System Adm Manager-Non-Mgrl 82533.85714 5.777370e+05 24848.23 3.549747e+03 277.640 452.00 7 2.776400e+02 1943.48 6.025852e+05 5.796805e+05 22904.75 NULL
2021 Teachers Retirement System Administrative Accountant 92999.16667 5.579950e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.579950e+05 5.579950e+05 0.00 NULL
2021 Teachers Retirement System Administrative Community Relations Specialist 98050.00000 9.805000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.805000e+04 9.805000e+04 0.00 NULL
2021 Teachers Retirement System Administrative Labor Relations Analyst 127842.00000 1.278420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.278420e+05 1.278420e+05 0.00 NULL
2021 Teachers Retirement System Administrative Management Auditor 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2021 Teachers Retirement System Administrative Manager 107982.75000 8.638620e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.638620e+05 8.638620e+05 0.00 NULL
2021 Teachers Retirement System Administrative Project Manager 163126.00000 1.631260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.631260e+05 1.631260e+05 0.00 NULL
2021 Teachers Retirement System Administrative Public Information Specialist 102537.00000 1.025370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.025370e+05 1.025370e+05 0.00 NULL
2021 Teachers Retirement System Administrative Retirement Benefits Specialist 117732.16667 3.531965e+06 6811.32 2.270440e+02 0.000 132.50 30 0.000000e+00 0.00 3.538776e+06 3.531965e+06 6811.32 NULL
2021 Teachers Retirement System Administrative Retirements Benefits Specialist 85080.25000 3.403210e+05 2515.03 6.287575e+02 0.000 56.00 4 0.000000e+00 0.00 3.428360e+05 3.403210e+05 2515.03 NULL
2021 Teachers Retirement System Administrative Staff Analyst 101762.00000 1.322906e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.322906e+06 1.322906e+06 0.00 NULL
2021 Teachers Retirement System Agency Attorney 93626.00000 1.872520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.872520e+05 1.872520e+05 0.00 NULL
2021 Teachers Retirement System Agency Attorney Interne 62397.00000 6.239700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.239700e+04 6.239700e+04 0.00 NULL
2021 Teachers Retirement System Assistant Executive Director 185637.00000 5.569110e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.569110e+05 5.569110e+05 0.00 NULL
2021 Teachers Retirement System Assistant Retirement Benefits Examiner 55502.25000 2.220090e+05 9749.56 2.437390e+03 649.630 225.00 4 6.496300e+02 2598.52 2.317586e+05 2.246075e+05 7151.04 NULL
2021 Teachers Retirement System Associate Public Records Officer 71616.00000 7.161600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.161600e+04 7.161600e+04 0.00 NULL
2021 Teachers Retirement System Associate Retirement Benefits Examiner 64835.70787 5.770378e+06 83120.06 9.339333e+02 0.000 1596.00 89 0.000000e+00 0.00 5.853498e+06 5.770378e+06 83120.06 NULL
2021 Teachers Retirement System Associate Staff Analyst 75618.50000 1.512370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.512370e+05 1.512370e+05 0.00 NULL
2021 Teachers Retirement System Bookkeeper 56842.20000 2.842110e+05 150.65 3.013000e+01 0.000 3.75 5 0.000000e+00 0.00 2.843617e+05 2.842110e+05 150.65 NULL
2021 Teachers Retirement System Certified It Developer 127639.00000 1.276390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.276390e+05 1.276390e+05 0.00 NULL
2021 Teachers Retirement System Clerical Associate 51897.06250 8.303530e+05 3324.43 2.077769e+02 0.000 79.75 16 0.000000e+00 0.00 8.336774e+05 8.303530e+05 3324.43 NULL
2021 Teachers Retirement System College Aide 15445.57292 1.853469e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.853469e+05 1.853469e+05 0.00 NULL
2021 Teachers Retirement System College Aide - Assignment Levels Ii And Iii 21113.27417 6.333982e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.333982e+04 6.333982e+04 0.00 NULL
2021 Teachers Retirement System Community Associate 53185.00000 1.063700e+05 5.87 2.935000e+00 2.935 0.00 2 2.935000e+00 5.87 1.063759e+05 1.063759e+05 0.00 NULL
2021 Teachers Retirement System Community Coordinator 72249.66667 2.167490e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.167490e+05 2.167490e+05 0.00 NULL
2021 Teachers Retirement System Computer Associate 75028.11111 6.752530e+05 13978.13 1.553126e+03 0.000 284.58 9 0.000000e+00 0.00 6.892311e+05 6.752530e+05 13978.13 NULL
2021 Teachers Retirement System Computer Operations Manager 127805.50000 2.556110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.556110e+05 2.556110e+05 0.00 NULL
2021 Teachers Retirement System Computer Programmer Analyst 83740.00000 8.374000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.374000e+04 8.374000e+04 0.00 NULL
2021 Teachers Retirement System Computer Specialist 109464.20000 2.189284e+06 91.08 4.554000e+00 0.000 1.75 20 0.000000e+00 0.00 2.189375e+06 2.189284e+06 91.08 NULL
2021 Teachers Retirement System Computer Systems Manager 157434.78723 7.399435e+06 0.00 0.000000e+00 0.000 0.00 47 0.000000e+00 0.00 7.399435e+06 7.399435e+06 0.00 NULL
2021 Teachers Retirement System Customer Information Representative Ma L 1549 57708.11765 9.810380e+05 17556.25 1.032721e+03 0.000 331.00 17 0.000000e+00 0.00 9.985942e+05 9.810380e+05 17556.25 NULL
2021 Teachers Retirement System Deputy Executive Director 226402.00000 2.264020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.264020e+05 2.264020e+05 0.00 NULL
2021 Teachers Retirement System Executive Agency Counsel 167686.00000 3.353720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.353720e+05 3.353720e+05 0.00 NULL
2021 Teachers Retirement System Executive Director 244491.00000 2.444910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.444910e+05 2.444910e+05 0.00 NULL
2021 Teachers Retirement System Graphic Artist 64677.50000 1.293550e+05 0.90 4.500000e-01 0.450 0.00 2 4.500000e-01 0.90 1.293559e+05 1.293559e+05 0.00 NULL
2021 Teachers Retirement System Investment Analyst 68407.33333 2.052220e+05 1759.50 5.865000e+02 0.000 31.50 3 0.000000e+00 0.00 2.069815e+05 2.052220e+05 1759.50 NULL
2021 Teachers Retirement System Labor Relations Analyst Trainee 59180.00000 5.918000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.918000e+04 5.918000e+04 0.00 NULL
2021 Teachers Retirement System Management Auditor 78024.50000 3.120980e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.120980e+05 3.120980e+05 0.00 NULL
2021 Teachers Retirement System Management Auditor Trainee 51100.00000 1.022000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.022000e+05 1.022000e+05 0.00 NULL
2021 Teachers Retirement System Office Machine Aide 48373.20000 2.418660e+05 57.14 1.142800e+01 0.000 2.00 5 0.000000e+00 0.00 2.419231e+05 2.418660e+05 57.14 NULL
2021 Teachers Retirement System Paralegal Aide 59724.00000 5.972400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.972400e+04 5.972400e+04 0.00 NULL
2021 Teachers Retirement System Principal Administrative Associate - Non Supvr 68543.30769 8.910630e+05 155.78 1.198308e+01 0.000 4.75 13 0.000000e+00 0.00 8.912188e+05 8.910630e+05 155.78 NULL
2021 Teachers Retirement System Secretary To The Executive Director Of Retirement System 49329.00000 4.932900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.932900e+04 4.932900e+04 0.00 NULL
2021 Teachers Retirement System Staff Analyst 65007.00000 1.300140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.300140e+05 1.300140e+05 0.00 NULL
2021 Teachers Retirement System Summer College Intern 3093.97426 1.051951e+05 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 1.051951e+05 1.051951e+05 0.00 NULL
2021 Teachers Retirement System Supervisor Of Office Machine Operations 48341.00000 4.834100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.834100e+04 4.834100e+04 0.00 NULL
2021 Teachers Retirement System Supervisor Of Stock Workers 55204.33333 1.656130e+05 112.86 3.762000e+01 0.000 3.25 3 0.000000e+00 0.00 1.657259e+05 1.656130e+05 112.86 NULL
2022 Admin For Children’s Svcs *Attorney At Law 98207.44444 8.838670e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.838670e+05 8.838670e+05 0.00 NULL
2022 Admin For Children’s Svcs *Certified Database Administrator 115599.00000 2.311980e+05 6862.48 3.431240e+03 3431.240 83.00 2 3.431240e+03 6862.48 2.380605e+05 2.380605e+05 0.00 NULL
2022 Admin For Children’s Svcs *Certified Local Area Network Administrator 122075.00000 1.220750e+05 789.18 7.891800e+02 789.180 11.00 1 7.891800e+02 789.18 1.228642e+05 1.228642e+05 0.00 NULL
2022 Admin For Children’s Svcs *Cook 39919.76923 5.189570e+05 37196.62 2.861278e+03 1592.790 1304.33 13 1.592790e+03 20706.27 5.561536e+05 5.396633e+05 16490.35 NULL
2022 Admin For Children’s Svcs *Senior Cook 43839.00000 3.068730e+05 10500.23 1.500033e+03 367.640 356.25 7 3.676400e+02 2573.48 3.173732e+05 3.094465e+05 7926.75 NULL
2022 Admin For Children’s Svcs Accountant 69608.55556 6.264770e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 6.264770e+05 6.264770e+05 0.00 NULL
2022 Admin For Children’s Svcs Adm Manager-Non-Mgrl 80297.80000 4.817868e+06 162013.04 2.700217e+03 0.000 2955.50 60 0.000000e+00 0.00 4.979881e+06 4.817868e+06 162013.04 NULL
2022 Admin For Children’s Svcs Admin Community Relations Specialist 89027.82857 3.115974e+06 92233.10 2.635231e+03 0.000 1231.25 35 0.000000e+00 0.00 3.208207e+06 3.115974e+06 92233.10 NULL
2022 Admin For Children’s Svcs Admin Construction Project Manager 132185.00000 1.321850e+05 16091.31 1.609131e+04 16091.310 208.75 1 1.609131e+04 16091.31 1.482763e+05 1.482763e+05 0.00 NULL
2022 Admin For Children’s Svcs Administrative Architect 132200.66667 3.966020e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.966020e+05 3.966020e+05 0.00 NULL
2022 Admin For Children’s Svcs Administrative Business Promotion Coordinator 115871.20000 5.793560e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.793560e+05 5.793560e+05 0.00 NULL
2022 Admin For Children’s Svcs Administrative Construction Project Manager 141956.00000 1.419560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.419560e+05 1.419560e+05 0.00 NULL
2022 Admin For Children’s Svcs Administrative Contract Specialist 99450.33333 2.983510e+05 63174.98 2.105833e+04 0.000 884.00 3 0.000000e+00 0.00 3.615260e+05 2.983510e+05 63174.98 NULL
2022 Admin For Children’s Svcs Administrative Director Of Residential Child Care 91268.16216 3.376922e+06 407856.01 1.102314e+04 1596.030 6634.00 37 1.596030e+03 59053.11 3.784778e+06 3.435975e+06 348802.90 NULL
2022 Admin For Children’s Svcs Administrative Director Of Social Services 108708.25632 3.130798e+07 797530.82 2.769204e+03 0.000 13150.25 288 0.000000e+00 0.00 3.210551e+07 3.130798e+07 797530.82 NULL
2022 Admin For Children’s Svcs Administrative Juvenile Counselor 107860.00000 3.235800e+05 851.35 2.837833e+02 0.000 0.00 3 0.000000e+00 0.00 3.244313e+05 3.235800e+05 851.35 NULL
2022 Admin For Children’s Svcs Administrative Management Auditor 110262.00000 1.102620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.102620e+05 1.102620e+05 0.00 NULL
2022 Admin For Children’s Svcs Administrative Manager 181137.50000 3.622750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.622750e+05 3.622750e+05 0.00 NULL
2022 Admin For Children’s Svcs Administrative Nutritionist 108204.50000 2.164090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.164090e+05 2.164090e+05 0.00 NULL
2022 Admin For Children’s Svcs Administrative Procurement Analyst 127000.00000 1.270000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.270000e+05 1.270000e+05 0.00 NULL
2022 Admin For Children’s Svcs Administrative Procurement Analyst-Non-Mgrl 84069.33333 5.044160e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.044160e+05 5.044160e+05 0.00 NULL
2022 Admin For Children’s Svcs Administrative Project Manager 106386.33333 3.191590e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.191590e+05 3.191590e+05 0.00 NULL
2022 Admin For Children’s Svcs Administrative Public Health Nurse 114989.55750 4.599582e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.599582e+05 4.599582e+05 0.00 NULL
2022 Admin For Children’s Svcs Administrative Public Information Specialist 135083.50000 2.701670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.701670e+05 2.701670e+05 0.00 NULL
2022 Admin For Children’s Svcs Administrative Public Information Specialist Nm Former M1/M2 107116.00000 1.071160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.071160e+05 1.071160e+05 0.00 NULL
2022 Admin For Children’s Svcs Administrative Staff Analyst 109140.01227 1.778982e+07 196977.23 1.208449e+03 0.000 2109.00 163 0.000000e+00 0.00 1.798680e+07 1.778982e+07 196977.23 NULL
2022 Admin For Children’s Svcs Agency Attorney 90047.62559 1.900005e+07 285244.41 1.351869e+03 0.000 4595.25 211 0.000000e+00 0.00 1.928529e+07 1.900005e+07 285244.41 NULL
2022 Admin For Children’s Svcs Agency Attorney Interne 71757.00000 5.022990e+06 19849.69 2.835670e+02 0.000 446.50 70 0.000000e+00 0.00 5.042840e+06 5.022990e+06 19849.69 NULL
2022 Admin For Children’s Svcs Agency Chief Contracting Officer 203029.00000 2.030290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.030290e+05 2.030290e+05 0.00 NULL
2022 Admin For Children’s Svcs Architect 92251.50000 1.845030e+05 917.12 4.585600e+02 458.560 0.00 2 4.585600e+02 917.12 1.854201e+05 1.854201e+05 0.00 NULL
2022 Admin For Children’s Svcs Assistant Commissioner 161752.00000 1.617520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.617520e+05 1.617520e+05 0.00 NULL
2022 Admin For Children’s Svcs Assistant Commissioner For Aftercare & Preventive Svcs 119499.00000 1.194990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.194990e+05 1.194990e+05 0.00 NULL
2022 Admin For Children’s Svcs Assistant Commissioner For Facilities Development & Const 198000.00000 1.980000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.980000e+05 1.980000e+05 0.00 NULL
2022 Admin For Children’s Svcs Assistant Commissioner For Facilities Operations 160370.00000 1.603700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.603700e+05 1.603700e+05 0.00 NULL
2022 Admin For Children’s Svcs Assistant Commissioner For Program Development 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2022 Admin For Children’s Svcs Assistant Deputy Administrator 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2022 Admin For Children’s Svcs Associate Investigator 80000.00000 8.000000e+04 7.90 7.900000e+00 7.900 0.00 1 7.900000e+00 7.90 8.000790e+04 8.000790e+04 0.00 NULL
2022 Admin For Children’s Svcs Associate Project Manager 86838.00000 8.683800e+04 2314.53 2.314530e+03 2314.530 37.50 1 2.314530e+03 2314.53 8.915253e+04 8.915253e+04 0.00 NULL
2022 Admin For Children’s Svcs Associate Staff Analyst 85467.03883 8.803105e+06 95560.58 9.277726e+02 0.000 1168.50 103 0.000000e+00 0.00 8.898666e+06 8.803105e+06 95560.58 NULL
2022 Admin For Children’s Svcs Associate Youth Development Specialist 71993.19780 6.551381e+06 1814113.89 1.993532e+04 12950.630 31374.00 91 1.295063e+04 1178507.33 8.365495e+06 7.729888e+06 635606.56 NULL
2022 Admin For Children’s Svcs Asst Commissioner For Non-Secure Detention Juvenile Justice 172287.00000 1.722870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.722870e+05 1.722870e+05 0.00 NULL
2022 Admin For Children’s Svcs Asst Commissioner For Planning & Prg Deve 134197.00000 1.341970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.341970e+05 1.341970e+05 0.00 NULL
2022 Admin For Children’s Svcs Bookkeeper 49476.00000 2.473800e+05 9.19 1.838000e+00 0.000 0.00 5 0.000000e+00 0.00 2.473892e+05 2.473800e+05 9.19 NULL
2022 Admin For Children’s Svcs Carpenter NA NA 88628.63 2.954288e+04 31987.540 1180.75 3 2.954288e+04 88628.63 NA NA NA NULL
2022 Admin For Children’s Svcs Caseworker 50040.84783 2.301879e+06 6249.33 1.358550e+02 0.000 198.00 46 0.000000e+00 0.00 2.308128e+06 2.301879e+06 6249.33 NULL
2022 Admin For Children’s Svcs Certified It Administrator 109550.58333 1.314607e+06 17694.67 1.474556e+03 887.790 262.25 12 8.877900e+02 10653.48 1.332302e+06 1.325260e+06 7041.19 NULL
2022 Admin For Children’s Svcs Certified It Developer 103254.33333 3.097630e+05 435.83 1.452767e+02 0.000 7.00 3 0.000000e+00 0.00 3.101988e+05 3.097630e+05 435.83 NULL
2022 Admin For Children’s Svcs Child And Family Specialist 86029.37712 2.030293e+07 724321.74 3.069160e+03 38.285 11916.00 236 3.828500e+01 9035.26 2.102725e+07 2.031197e+07 715286.48 NULL
2022 Admin For Children’s Svcs Child Protective Specialist 58647.52609 1.674387e+08 13527006.29 4.738006e+03 1577.910 312947.41 2855 1.577910e+03 4504933.05 1.809657e+08 1.719436e+08 9022073.24 NULL
2022 Admin For Children’s Svcs Child Protective Specialist Supervisor 82010.90259 5.388116e+07 6517423.63 9.919975e+03 3071.250 105290.95 657 3.071250e+03 2017811.25 6.039859e+07 5.589897e+07 4499612.38 NULL
2022 Admin For Children’s Svcs Child Welfare Specialist 60025.33838 1.188502e+07 868449.20 4.386107e+03 0.000 17831.50 198 0.000000e+00 0.00 1.275347e+07 1.188502e+07 868449.20 NULL
2022 Admin For Children’s Svcs Child Welfare Specialist Supervisor 79896.20896 1.070609e+07 434206.67 3.240348e+03 0.000 7811.25 134 0.000000e+00 0.00 1.114030e+07 1.070609e+07 434206.67 NULL
2022 Admin For Children’s Svcs Children’s Counselor 56886.32920 1.706590e+05 21030.45 7.010150e+03 244.200 600.75 3 2.442000e+02 732.60 1.916894e+05 1.713916e+05 20297.85 NULL
2022 Admin For Children’s Svcs City Custodial Assistant 39168.00000 7.833600e+04 6774.97 3.387485e+03 3387.485 245.75 2 3.387485e+03 6774.97 8.511097e+04 8.511097e+04 0.00 NULL
2022 Admin For Children’s Svcs City Laborer NA NA 25544.26 5.108852e+03 3969.370 337.25 5 3.969370e+03 19846.85 NA NA NA NULL
2022 Admin For Children’s Svcs City Medical Director 183760.58100 9.188029e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.188029e+05 9.188029e+05 0.00 NULL
2022 Admin For Children’s Svcs City Research Scientist 96648.55882 3.286051e+06 13620.82 4.006124e+02 0.000 206.50 34 0.000000e+00 0.00 3.299672e+06 3.286051e+06 13620.82 NULL
2022 Admin For Children’s Svcs Clerical Aide 33906.00000 3.390600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.390600e+04 3.390600e+04 0.00 NULL
2022 Admin For Children’s Svcs Clerical Associate 45147.30769 5.869150e+06 236762.58 1.821251e+03 0.000 6353.75 130 0.000000e+00 0.00 6.105913e+06 5.869150e+06 236762.58 NULL
2022 Admin For Children’s Svcs Commissioner Of Children’s Services 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2022 Admin For Children’s Svcs Community Assistant 37610.95008 1.353994e+06 21793.58 6.053772e+02 0.000 772.50 36 0.000000e+00 0.00 1.375788e+06 1.353994e+06 21793.58 NULL
2022 Admin For Children’s Svcs Community Associate 48064.33871 2.979989e+06 378316.61 6.101881e+03 0.000 10744.25 62 0.000000e+00 0.00 3.358306e+06 2.979989e+06 378316.61 NULL
2022 Admin For Children’s Svcs Community Coordinator 67451.95765 2.866708e+07 655580.24 1.542542e+03 0.000 14408.25 425 0.000000e+00 0.00 2.932266e+07 2.866708e+07 655580.24 NULL
2022 Admin For Children’s Svcs Computer Aide-Non-Spvr 54714.11111 4.924270e+05 5797.19 6.441322e+02 0.000 140.00 9 0.000000e+00 0.00 4.982242e+05 4.924270e+05 5797.19 NULL
2022 Admin For Children’s Svcs Computer Associate 65591.11164 2.295689e+06 27133.25 7.752357e+02 0.000 662.50 35 0.000000e+00 0.00 2.322822e+06 2.295689e+06 27133.25 NULL
2022 Admin For Children’s Svcs Computer Service Technician 46301.90000 4.630190e+05 5572.77 5.572770e+02 273.905 161.75 10 2.739050e+02 2739.05 4.685918e+05 4.657580e+05 2833.72 NULL
2022 Admin For Children’s Svcs Computer Specialist 105052.38710 3.256624e+06 18205.77 5.872829e+02 0.000 280.25 31 0.000000e+00 0.00 3.274830e+06 3.256624e+06 18205.77 NULL
2022 Admin For Children’s Svcs Computer Systems Manager 121084.16129 3.753609e+06 14936.92 4.818361e+02 0.000 222.25 31 0.000000e+00 0.00 3.768546e+06 3.753609e+06 14936.92 NULL
2022 Admin For Children’s Svcs Confidential Strategy Planner 91548.25000 7.323860e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.323860e+05 7.323860e+05 0.00 NULL
2022 Admin For Children’s Svcs Congreg Care Spec - Acs 46259.05385 6.013677e+06 2267330.06 1.744100e+04 7226.555 60823.23 130 7.226555e+03 939452.15 8.281007e+06 6.953129e+06 1327877.91 NULL
2022 Admin For Children’s Svcs Congreg Care Spec- Djj 59585.21429 8.341930e+05 220359.03 1.573993e+04 14509.310 5187.12 14 1.450931e+04 203130.34 1.054552e+06 1.037323e+06 17228.69 NULL
2022 Admin For Children’s Svcs Construction Project Manager 98844.00000 5.930640e+05 25281.07 4.213512e+03 414.645 400.50 6 4.146450e+02 2487.87 6.183451e+05 5.955519e+05 22793.20 NULL
2022 Admin For Children’s Svcs Contract Specialist 47754.00000 4.775400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.775400e+04 4.775400e+04 0.00 NULL
2022 Admin For Children’s Svcs Custodian 45526.81818 5.007950e+05 52099.64 4.736331e+03 4934.740 1778.00 11 4.736331e+03 52099.64 5.528946e+05 5.528946e+05 0.00 NULL
2022 Admin For Children’s Svcs Deputy Commissioner 191094.66667 5.732840e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.732840e+05 5.732840e+05 0.00 NULL
2022 Admin For Children’s Svcs Deputy Director Of Administration 128780.66667 7.726840e+05 2519.54 4.199233e+02 0.000 0.00 6 0.000000e+00 0.00 7.752035e+05 7.726840e+05 2519.54 NULL
2022 Admin For Children’s Svcs Deputy Director Of Headstart Program 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2022 Admin For Children’s Svcs Deputy General Counsel 177038.00000 1.770380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.770380e+05 1.770380e+05 0.00 NULL
2022 Admin For Children’s Svcs Deputy Superintendent 105811.00000 2.116220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.116220e+05 2.116220e+05 0.00 NULL
2022 Admin For Children’s Svcs Director Of Advocacy 113300.00000 1.133000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133000e+05 1.133000e+05 0.00 NULL
2022 Admin For Children’s Svcs Director Of Field Operations 111209.27852 3.314036e+07 83501.50 2.802064e+02 0.000 1527.25 298 0.000000e+00 0.00 3.322387e+07 3.314036e+07 83501.50 NULL
2022 Admin For Children’s Svcs Director Of Headstart Program 162000.00000 1.620000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.620000e+05 1.620000e+05 0.00 NULL
2022 Admin For Children’s Svcs Director Of Program Planning 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2022 Admin For Children’s Svcs Director Of Security 114000.00000 1.140000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.140000e+05 1.140000e+05 0.00 NULL
2022 Admin For Children’s Svcs Electrician NA NA 121961.12 6.098056e+04 60980.560 1299.75 2 6.098056e+04 121961.12 NA NA NA NULL
2022 Admin For Children’s Svcs Eligibility Specialist 51005.50000 1.020110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.020110e+05 1.020110e+05 0.00 NULL
2022 Admin For Children’s Svcs Exec Asst To The Deputy Commissioner 185400.00000 1.854000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.854000e+05 1.854000e+05 0.00 NULL
2022 Admin For Children’s Svcs Executive Agency Counsel 144255.90000 1.009791e+07 0.00 0.000000e+00 0.000 0.00 70 0.000000e+00 0.00 1.009791e+07 1.009791e+07 0.00 NULL
2022 Admin For Children’s Svcs Executive Assistant To The Executive Deputy Adm 122698.00000 2.453960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.453960e+05 2.453960e+05 0.00 NULL
2022 Admin For Children’s Svcs Executive Deputy Administrator 237947.00000 4.758940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.758940e+05 4.758940e+05 0.00 NULL
2022 Admin For Children’s Svcs Graphic Artist 79700.00000 1.594000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.594000e+05 1.594000e+05 0.00 NULL
2022 Admin For Children’s Svcs Homemaker 37673.00000 1.506920e+05 1772.80 4.432000e+02 21.315 83.00 4 2.131500e+01 85.26 1.524648e+05 1.507773e+05 1687.54 NULL
2022 Admin For Children’s Svcs Institutional Aide 39766.84211 1.511140e+06 189486.15 4.986478e+03 2441.150 6660.50 38 2.441150e+03 92763.70 1.700626e+06 1.603904e+06 96722.45 NULL
2022 Admin For Children’s Svcs Investigator 78716.66667 2.361500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.361500e+05 2.361500e+05 0.00 NULL
2022 Admin For Children’s Svcs It Infrastructure Engineer 150000.00000 1.500000e+05 41483.92 4.148392e+04 41483.920 378.03 1 4.148392e+04 41483.92 1.914839e+05 1.914839e+05 0.00 NULL
2022 Admin For Children’s Svcs It Project Specialist 104841.00000 4.193640e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.193640e+05 4.193640e+05 0.00 NULL
2022 Admin For Children’s Svcs Maintenance Worker 43907.95850 8.781592e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.781592e+04 8.781592e+04 0.00 NULL
2022 Admin For Children’s Svcs Management Auditor 85629.50000 3.425180e+05 271.11 6.777750e+01 0.000 5.00 4 0.000000e+00 0.00 3.427891e+05 3.425180e+05 271.11 NULL
2022 Admin For Children’s Svcs Motor Vehicle Operator 48754.76471 8.288310e+05 406998.48 2.394109e+04 19613.240 10924.33 17 1.961324e+04 333425.08 1.235829e+06 1.162256e+06 73573.40 NULL
2022 Admin For Children’s Svcs Motor Vehicle Supervisor 58036.00000 1.160720e+05 17794.29 8.897145e+03 8897.145 401.75 2 8.897145e+03 17794.29 1.338663e+05 1.338663e+05 0.00 NULL
2022 Admin For Children’s Svcs Ombudsman 73024.00000 7.302400e+04 61.79 6.179000e+01 61.790 0.00 1 6.179000e+01 61.79 7.308579e+04 7.308579e+04 0.00 NULL
2022 Admin For Children’s Svcs Painter NA NA 89116.67 2.970556e+04 42468.440 989.50 3 2.970556e+04 89116.67 NA NA NA NULL
2022 Admin For Children’s Svcs Paralegal Aide 46227.15789 8.783160e+05 845.89 4.452053e+01 0.000 35.50 19 0.000000e+00 0.00 8.791619e+05 8.783160e+05 845.89 NULL
2022 Admin For Children’s Svcs Plumber NA NA 69939.83 1.748496e+04 9129.210 666.50 4 9.129210e+03 36516.84 NA NA NA NULL
2022 Admin For Children’s Svcs Principal Administrative Associate - Non Supvr 59990.93049 1.571762e+07 385655.26 1.471967e+03 0.000 8123.87 262 0.000000e+00 0.00 1.610328e+07 1.571762e+07 385655.26 NULL
2022 Admin For Children’s Svcs Procurement Analyst 71123.00000 4.267380e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.267380e+05 4.267380e+05 0.00 NULL
2022 Admin For Children’s Svcs Program Evaluator 80413.64130 7.398055e+06 127620.73 1.387182e+03 0.000 2286.75 92 0.000000e+00 0.00 7.525676e+06 7.398055e+06 127620.73 NULL
2022 Admin For Children’s Svcs Protection Agent 68794.69935 1.052559e+07 179838.50 1.175415e+03 0.000 3482.22 153 0.000000e+00 0.00 1.070543e+07 1.052559e+07 179838.50 NULL
2022 Admin For Children’s Svcs Public Health Assistant 36955.00000 3.695500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.695500e+04 3.695500e+04 0.00 NULL
2022 Admin For Children’s Svcs Research Assistant 58618.66667 1.758560e+05 5586.85 1.862283e+03 85.610 124.00 3 8.561000e+01 256.83 1.814429e+05 1.761128e+05 5330.02 NULL
2022 Admin For Children’s Svcs Secretary 47530.33333 1.425910e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.425910e+05 1.425910e+05 0.00 NULL
2022 Admin For Children’s Svcs Senior Advisor For Investigations 154905.00000 1.549050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.549050e+05 1.549050e+05 0.00 NULL
2022 Admin For Children’s Svcs Senior Stationary Engineer NA NA 563.52 2.817600e+02 281.760 8.00 2 2.817600e+02 563.52 NA NA NA NULL
2022 Admin For Children’s Svcs Sheet Metal Worker NA NA 5197.60 2.598800e+03 2598.800 46.00 2 2.598800e+03 5197.60 NA NA NA NULL
2022 Admin For Children’s Svcs Space Analyst 82821.33333 2.484640e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.484640e+05 2.484640e+05 0.00 NULL
2022 Admin For Children’s Svcs Special Assistant To The Human Resources Administrator 143000.00000 1.430000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.430000e+05 1.430000e+05 0.00 NULL
2022 Admin For Children’s Svcs Special Officer 37979.49286 5.317129e+06 657501.24 4.696437e+03 2921.225 23115.85 140 2.921225e+03 408971.50 5.974630e+06 5.726100e+06 248529.74 NULL
2022 Admin For Children’s Svcs Staff Analyst 66622.22222 4.197200e+06 14485.37 2.299265e+02 0.000 100.00 63 0.000000e+00 0.00 4.211685e+06 4.197200e+06 14485.37 NULL
2022 Admin For Children’s Svcs Staff Nurse 85290.84211 1.620526e+06 7514.27 3.954879e+02 0.000 125.25 19 0.000000e+00 0.00 1.628040e+06 1.620526e+06 7514.27 NULL
2022 Admin For Children’s Svcs Stationary Engineer NA NA 255374.67 4.256244e+04 51544.620 2626.00 6 4.256244e+04 255374.67 NA NA NA NULL
2022 Admin For Children’s Svcs Stock Worker 36715.75000 1.468630e+05 8130.70 2.032675e+03 522.455 312.00 4 5.224550e+02 2089.82 1.549937e+05 1.489528e+05 6040.88 NULL
2022 Admin For Children’s Svcs Strategic Initiative Specialist 133454.62500 1.067637e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.067637e+06 1.067637e+06 0.00 NULL
2022 Admin For Children’s Svcs Superintendent 116834.50000 2.336690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.336690e+05 2.336690e+05 0.00 NULL
2022 Admin For Children’s Svcs Supervising Computer Service Technician 71824.72000 2.872989e+05 6250.11 1.562527e+03 129.720 155.75 4 1.297200e+02 518.88 2.935490e+05 2.878178e+05 5731.23 NULL
2022 Admin For Children’s Svcs Supervising Special Officer 58235.28125 1.863529e+06 446974.08 1.396794e+04 12070.645 11173.25 32 1.207065e+04 386260.64 2.310503e+06 2.249790e+06 60713.44 NULL
2022 Admin For Children’s Svcs Supervisor I 60688.41667 7.282610e+05 2685.88 2.238233e+02 0.000 67.50 12 0.000000e+00 0.00 7.309469e+05 7.282610e+05 2685.88 NULL
2022 Admin For Children’s Svcs Supervisor I Social Work 65539.00000 1.310780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.310780e+05 1.310780e+05 0.00 NULL
2022 Admin For Children’s Svcs Supervisor Ii 70500.86957 1.621520e+06 23992.25 1.043141e+03 0.000 432.75 23 0.000000e+00 0.00 1.645512e+06 1.621520e+06 23992.25 NULL
2022 Admin For Children’s Svcs Supervisor Iii 76486.40000 3.824320e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.824320e+05 3.824320e+05 0.00 NULL
2022 Admin For Children’s Svcs Supervisor Of Child Care 69213.83333 4.152830e+05 160042.10 2.667368e+04 26509.060 3091.50 6 2.650906e+04 159054.36 5.753251e+05 5.743374e+05 987.74 NULL
2022 Admin For Children’s Svcs Supervisor Of Mechanical Installations & Maintenance 89073.00000 8.907300e+04 239.81 2.398100e+02 239.810 4.50 1 2.398100e+02 239.81 8.931281e+04 8.931281e+04 0.00 NULL
2022 Admin For Children’s Svcs Supervisor Of Nurses 95814.00000 7.665120e+05 2070.36 2.587950e+02 0.000 31.75 8 0.000000e+00 0.00 7.685824e+05 7.665120e+05 2070.36 NULL
2022 Admin For Children’s Svcs Telecommunications Associate 78702.27273 8.657250e+05 10090.10 9.172818e+02 279.640 184.00 11 2.796400e+02 3076.04 8.758151e+05 8.688010e+05 7014.06 NULL
2022 Admin For Children’s Svcs Youth Development Specialist 50602.96433 3.830644e+07 5637710.69 7.447438e+03 2987.980 137756.93 757 2.987980e+03 2261900.86 4.394415e+07 4.056834e+07 3375809.83 NULL
2022 Admin Trials And Hearings *Attorney At Law 93597.50000 1.871950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.871950e+05 1.871950e+05 0.00 NULL
2022 Admin Trials And Hearings Adm Manager-Non-Mgrl 81128.78571 1.135803e+06 5.70 4.071429e-01 0.000 0.00 14 0.000000e+00 0.00 1.135809e+06 1.135803e+06 5.70 NULL
2022 Admin Trials And Hearings Admin Community Relations Specialist 99159.75000 3.966390e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.966390e+05 3.966390e+05 0.00 NULL
2022 Admin Trials And Hearings Admin Contract Specialist 90022.00000 9.002200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.002200e+04 9.002200e+04 0.00 NULL
2022 Admin Trials And Hearings Administrative Accountant 110216.00000 1.102160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.102160e+05 1.102160e+05 0.00 NULL
2022 Admin Trials And Hearings Administrative City Planner 131359.00000 1.313590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.313590e+05 1.313590e+05 0.00 NULL
2022 Admin Trials And Hearings Administrative Community Relations Specialist 123536.00000 2.470720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.470720e+05 2.470720e+05 0.00 NULL
2022 Admin Trials And Hearings Administrative Labor Relations Analyst 96682.00000 9.668200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.668200e+04 9.668200e+04 0.00 NULL
2022 Admin Trials And Hearings Administrative Law Judge 161497.94118 2.745465e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.745465e+06 2.745465e+06 0.00 NULL
2022 Admin Trials And Hearings Administrative Procurement Analyst 92000.00000 9.200000e+04 5389.72 5.389720e+03 5389.720 117.25 1 5.389720e+03 5389.72 9.738972e+04 9.738972e+04 0.00 NULL
2022 Admin Trials And Hearings Administrative Procurement Analyst-Non-Mgrl 108150.00000 1.081500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081500e+05 1.081500e+05 0.00 NULL
2022 Admin Trials And Hearings Administrative Staff Analyst 132268.81818 1.454957e+06 3.66 3.327273e-01 0.000 0.00 11 0.000000e+00 0.00 1.454961e+06 1.454957e+06 3.66 NULL
2022 Admin Trials And Hearings Agency Attorney 94228.22222 3.392216e+06 748.88 2.080222e+01 0.000 10.00 36 0.000000e+00 0.00 3.392965e+06 3.392216e+06 748.88 NULL
2022 Admin Trials And Hearings Agency Attorney Interne 41526.54417 1.245796e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.245796e+05 1.245796e+05 0.00 NULL
2022 Admin Trials And Hearings Agency Chief Contracting Officer 144163.00000 1.441630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.441630e+05 1.441630e+05 0.00 NULL
2022 Admin Trials And Hearings Associate Contract Specialist 85000.00000 8.500000e+04 1759.94 1.759940e+03 1759.940 39.75 1 1.759940e+03 1759.94 8.675994e+04 8.675994e+04 0.00 NULL
2022 Admin Trials And Hearings Associate Public Information Specialist 59083.00000 5.908300e+04 1246.56 1.246560e+03 1246.560 41.00 1 1.246560e+03 1246.56 6.032956e+04 6.032956e+04 0.00 NULL
2022 Admin Trials And Hearings Associate Staff Analyst 83721.33333 2.511640e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.511640e+05 2.511640e+05 0.00 NULL
2022 Admin Trials And Hearings Bookkeeper 52704.33333 1.581130e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.581130e+05 1.581130e+05 0.00 NULL
2022 Admin Trials And Hearings Certified It Administrator 103668.00000 1.036680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.036680e+05 1.036680e+05 0.00 NULL
2022 Admin Trials And Hearings Certified It Developer 124123.00000 1.241230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.241230e+05 1.241230e+05 0.00 NULL
2022 Admin Trials And Hearings Chief Administrative Law Judge 227786.00000 4.555720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.555720e+05 4.555720e+05 0.00 NULL
2022 Admin Trials And Hearings City Laborer NA NA 489.38 2.446900e+02 244.690 9.00 2 2.446900e+02 489.38 NA NA NA NULL
2022 Admin Trials And Hearings Clerical Aide 35304.04000 7.060808e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.060808e+04 7.060808e+04 0.00 NULL
2022 Admin Trials And Hearings Clerical Associate 36342.23044 1.853454e+06 7335.41 1.438316e+02 0.000 268.50 51 0.000000e+00 0.00 1.860789e+06 1.853454e+06 7335.41 NULL
2022 Admin Trials And Hearings College Aide 11728.74219 9.382994e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.382994e+04 9.382994e+04 0.00 NULL
2022 Admin Trials And Hearings Community Assistant 35059.76883 1.262152e+06 508.22 1.411722e+01 0.000 24.50 36 0.000000e+00 0.00 1.262660e+06 1.262152e+06 508.22 NULL
2022 Admin Trials And Hearings Community Associate 47396.51029 1.943257e+06 8621.90 2.102902e+02 0.000 306.75 41 0.000000e+00 0.00 1.951879e+06 1.943257e+06 8621.90 NULL
2022 Admin Trials And Hearings Community Coordinator 67359.02500 2.694361e+06 6023.52 1.505880e+02 0.000 154.00 40 0.000000e+00 0.00 2.700385e+06 2.694361e+06 6023.52 NULL
2022 Admin Trials And Hearings Community Service Aide 24348.05799 4.139170e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 4.139170e+05 4.139170e+05 0.00 NULL
2022 Admin Trials And Hearings Computer Associate 73784.00000 2.951360e+05 9674.11 2.418528e+03 1328.760 204.75 4 1.328760e+03 5315.04 3.048101e+05 3.004510e+05 4359.07 NULL
2022 Admin Trials And Hearings Computer Specialist 104775.75000 4.191030e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.191030e+05 4.191030e+05 0.00 NULL
2022 Admin Trials And Hearings Computer Systems Manager 145285.14286 1.016996e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.016996e+06 1.016996e+06 0.00 NULL
2022 Admin Trials And Hearings Confidential Secretary Of Administrative Law Judge 51209.00000 1.024180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.024180e+05 1.024180e+05 0.00 NULL
2022 Admin Trials And Hearings Customer Information Representative Ma L 1549 38725.56000 1.161767e+05 480.24 1.600800e+02 44.160 21.75 3 4.416000e+01 132.48 1.166569e+05 1.163092e+05 347.76 NULL
2022 Admin Trials And Hearings Cyber Security Analyst 59396.00000 5.345640e+05 14614.60 1.623844e+03 282.250 380.25 9 2.822500e+02 2540.25 5.491786e+05 5.371042e+05 12074.35 NULL
2022 Admin Trials And Hearings Executive Agency Counsel 135758.06349 8.552758e+06 0.00 0.000000e+00 0.000 0.00 63 0.000000e+00 0.00 8.552758e+06 8.552758e+06 0.00 NULL
2022 Admin Trials And Hearings Executive Assistant To The Chief Administrative Law Judge 150393.00000 1.503930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503930e+05 1.503930e+05 0.00 NULL
2022 Admin Trials And Hearings Hearing Officer 35712.13164 7.820957e+06 0.00 0.000000e+00 0.000 0.00 219 0.000000e+00 0.00 7.820957e+06 7.820957e+06 0.00 NULL
2022 Admin Trials And Hearings Maintenance Worker NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2022 Admin Trials And Hearings Member Of The Environmental Control Board - Oath 71.78260 3.589130e+02 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.589130e+02 3.589130e+02 0.00 NULL
2022 Admin Trials And Hearings Principal Administrative Associate - Non Supvr 67258.22222 1.210648e+06 1278.02 7.100111e+01 0.000 31.25 18 0.000000e+00 0.00 1.211926e+06 1.210648e+06 1278.02 NULL
2022 Admin Trials And Hearings Public Records Aide 43041.00000 3.012870e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.012870e+05 3.012870e+05 0.00 NULL
2022 Admin Trials And Hearings Secretary 43947.00000 1.318410e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.318410e+05 1.318410e+05 0.00 NULL
2022 Admin Trials And Hearings Special Officer 49793.42200 2.489671e+05 7139.37 1.427874e+03 24.040 199.50 5 2.404000e+01 120.20 2.561065e+05 2.490873e+05 7019.17 NULL
2022 Admin Trials And Hearings Staff Analyst 65869.66667 1.976090e+05 8.92 2.973333e+00 0.000 0.00 3 0.000000e+00 0.00 1.976179e+05 1.976090e+05 8.92 NULL
2022 Admin Trials And Hearings Summer Graduate Intern 3084.21333 1.850528e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.850528e+04 1.850528e+04 0.00 NULL
2022 Board Of Correction Administrative Staff Analyst 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2022 Board Of Correction City Research Scientist 86830.00000 1.736600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.736600e+05 1.736600e+05 0.00 NULL
2022 Board Of Correction Community Coordinator 65938.88333 1.978166e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.978166e+05 1.978166e+05 0.00 NULL
2022 Board Of Correction Computer Specialist 106023.00000 1.060230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.060230e+05 1.060230e+05 0.00 NULL
2022 Board Of Correction Computer Systems Manager 142500.00000 1.425000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.425000e+05 1.425000e+05 0.00 NULL
2022 Board Of Correction Confidential Agency Investigator 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2022 Board Of Correction Correctional Standards Review Specialist 77719.39600 3.885970e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.885970e+05 3.885970e+05 0.00 NULL
2022 Board Of Correction Counsel 185000.00000 3.700000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.700000e+05 3.700000e+05 0.00 NULL
2022 Board Of Correction Deputy Executive Director 154967.33333 4.649020e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.649020e+05 4.649020e+05 0.00 NULL
2022 Board Of Correction Director Of Correctional Standards Review 99501.11667 5.970067e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.970067e+05 5.970067e+05 0.00 NULL
2022 Board Of Correction Executive Agency Counsel 133399.95000 2.667999e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.667999e+05 2.667999e+05 0.00 NULL
2022 Board Of Correction Executive Director 202000.00000 4.040000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.040000e+05 4.040000e+05 0.00 NULL
2022 Board Of Correction Secretary 62820.16000 6.282016e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.282016e+04 6.282016e+04 0.00 NULL
2022 Board Of Correction Secretary To The Board Of Correction 96895.50000 1.937910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.937910e+05 1.937910e+05 0.00 NULL
2022 Board Of Election Administrative Assistant 52836.47321 5.917685e+06 1431542.82 1.278163e+04 9215.750 35859.00 112 9.215750e+03 1032164.00 7.349228e+06 6.949849e+06 399378.82 NULL
2022 Board Of Election Administrative Associate 67164.33750 5.373147e+06 1936317.75 2.420397e+04 18351.910 37927.33 80 1.835191e+04 1468152.80 7.309465e+06 6.841300e+06 468164.95 NULL
2022 Board Of Election Administrative Manager 170807.33333 5.124220e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.124220e+05 5.124220e+05 0.00 NULL
2022 Board Of Election Assistance Finance Officer 72598.33333 2.177950e+05 47045.95 1.568198e+04 14664.260 1086.25 3 1.466426e+04 43992.78 2.648410e+05 2.617878e+05 3053.17 NULL
2022 Board Of Election Associate Staff Analyst 93354.72727 1.026902e+06 324269.30 2.947903e+04 19761.000 4585.25 11 1.976100e+04 217371.00 1.351171e+06 1.244273e+06 106898.30 NULL
2022 Board Of Election Chief Clerk 150649.00000 7.532450e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.532450e+05 7.532450e+05 0.00 NULL
2022 Board Of Election Clerk To The Board 36118.28385 3.756302e+06 610860.57 5.873659e+03 4231.405 23064.70 104 4.231405e+03 440066.12 4.367162e+06 4.196368e+06 170794.45 NULL
2022 Board Of Election Commissioner 19338.46154 2.514000e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 2.514000e+05 2.514000e+05 0.00 NULL
2022 Board Of Election Computer Operator 48033.00000 9.606600e+04 41727.77 2.086388e+04 20863.885 1144.25 2 2.086388e+04 41727.77 1.377938e+05 1.377938e+05 0.00 NULL
2022 Board Of Election Computer Specialist 124960.50000 4.998420e+05 182535.75 4.563394e+04 46974.195 2837.25 4 4.563394e+04 182535.75 6.823778e+05 6.823778e+05 0.00 NULL
2022 Board Of Election Computer System Manager 141834.25000 5.673370e+05 16227.52 4.056880e+03 0.000 190.00 4 0.000000e+00 0.00 5.835645e+05 5.673370e+05 16227.52 NULL
2022 Board Of Election Coordinator, Election Day Operations 117217.00000 1.172170e+05 39673.82 3.967382e+04 39673.820 455.92 1 3.967382e+04 39673.82 1.568908e+05 1.568908e+05 0.00 NULL
2022 Board Of Election Coordinator, Voter Registration Activities 101097.00000 1.010970e+05 20069.86 2.006986e+04 20069.860 291.42 1 2.006986e+04 20069.86 1.211669e+05 1.211669e+05 0.00 NULL
2022 Board Of Election Counsel 148447.60000 7.422380e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.422380e+05 7.422380e+05 0.00 NULL
2022 Board Of Election Counsel To The Board 58957.50000 1.179150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.179150e+05 1.179150e+05 0.00 NULL
2022 Board Of Election Deputy Chief Clerk 145028.42857 1.015199e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.015199e+06 1.015199e+06 0.00 NULL
2022 Board Of Election Deputy Executive Director 214190.00000 2.141900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.141900e+05 2.141900e+05 0.00 NULL
2022 Board Of Election Director Of Equipment 79792.33333 2.393770e+05 66205.00 2.206833e+04 29762.290 1118.00 3 2.206833e+04 66205.00 3.055820e+05 3.055820e+05 0.00 NULL
2022 Board Of Election Director Of Training 98203.00000 1.964060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.964060e+05 1.964060e+05 0.00 NULL
2022 Board Of Election Director, Public Affairs And Communication 124875.00000 1.248750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.248750e+05 1.248750e+05 0.00 NULL
2022 Board Of Election Executive Director 232615.00000 2.326150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.326150e+05 2.326150e+05 0.00 NULL
2022 Board Of Election Finance Officer 123745.00000 1.237450e+05 7339.84 7.339840e+03 7339.840 98.50 1 7.339840e+03 7339.84 1.310848e+05 1.310848e+05 0.00 NULL
2022 Board Of Election Financial Clerk 39108.31118 5.592488e+06 977532.96 6.835895e+03 5667.530 33806.91 143 5.667530e+03 810456.79 6.570021e+06 6.402945e+06 167076.17 NULL
2022 Board Of Election Project Coordinator 98924.06250 1.582785e+06 463089.10 2.894307e+04 22879.535 6416.50 16 2.287953e+04 366072.56 2.045874e+06 1.948858e+06 97016.54 NULL
2022 Board Of Election Senior Adminisrator 91191.21429 1.276677e+06 402684.75 2.876320e+04 18554.985 6085.25 14 1.855499e+04 259769.79 1.679362e+06 1.536447e+06 142914.96 NULL
2022 Board Of Election Senior Administrative Assistant 77879.00000 8.566690e+05 210554.00 1.914127e+04 13699.910 3493.00 11 1.369991e+04 150699.01 1.067223e+06 1.007368e+06 59854.99 NULL
2022 Board Of Election Senior Computer Programmer 78584.50000 6.286760e+05 275780.37 3.447255e+04 28414.805 4819.75 8 2.841481e+04 227318.44 9.044564e+05 8.559944e+05 48461.93 NULL
2022 Board Of Election Senior Systems Analysts 110310.50000 2.206210e+05 159465.00 7.973250e+04 79732.500 1977.00 2 7.973250e+04 159465.00 3.800860e+05 3.800860e+05 0.00 NULL
2022 Board Of Election Senior Voting Machine Technician 50240.36207 2.913941e+06 1049734.94 1.809888e+04 15897.685 27385.25 58 1.589768e+04 922065.73 3.963676e+06 3.836007e+06 127669.21 NULL
2022 Board Of Election Stenographic/Secretarial Associate 49123.00000 9.824600e+04 12842.17 6.421085e+03 6421.085 452.00 2 6.421085e+03 12842.17 1.110882e+05 1.110882e+05 0.00 NULL
2022 Board Of Election Temporary Clerk 19013.18616 3.061123e+06 491844.10 3.054932e+03 1885.700 23750.57 161 1.885700e+03 303597.70 3.552967e+06 3.364721e+06 188246.40 NULL
2022 Board Of Election Trainer Assistant 55212.70020 4.085740e+06 1165402.60 1.574868e+04 13021.090 27375.78 74 1.302109e+04 963560.66 5.251142e+06 5.049300e+06 201841.94 NULL
2022 Board Of Election Voting Machine Technician 45448.73171 7.453592e+06 2261042.63 1.378685e+04 12739.730 66350.17 164 1.273973e+04 2089315.72 9.714635e+06 9.542908e+06 171726.91 NULL
2022 Board Of Election Poll Workers Election Trainer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 244 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Board Of Election Poll Workers Election Worker 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 35459 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Borough President-Bronx Administrative Business Promotion Coordinator 124050.00000 1.240500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.240500e+05 1.240500e+05 0.00 NULL
2022 Borough President-Bronx Administrative City Planner 99849.00000 9.984900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.984900e+04 9.984900e+04 0.00 NULL
2022 Borough President-Bronx Administrative Education Officer 115287.00000 1.152870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.152870e+05 1.152870e+05 0.00 NULL
2022 Borough President-Bronx Administrative Manager 110392.00000 2.207840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.207840e+05 2.207840e+05 0.00 NULL
2022 Borough President-Bronx Administrative Staff Analyst 122013.00000 2.440260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.440260e+05 2.440260e+05 0.00 NULL
2022 Borough President-Bronx Assistant To The President 82897.20000 4.144860e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.144860e+05 4.144860e+05 0.00 NULL
2022 Borough President-Bronx Borough President 179200.00000 3.584000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.584000e+05 3.584000e+05 0.00 NULL
2022 Borough President-Bronx City Planner 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2022 Borough President-Bronx Community Assistant 30506.88500 6.101377e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.101377e+04 6.101377e+04 0.00 NULL
2022 Borough President-Bronx Community Associate 52232.85714 7.312600e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 7.312600e+05 7.312600e+05 0.00 NULL
2022 Borough President-Bronx Community Coordinator 68049.46705 1.769286e+06 50628.51 1.947250e+03 0.000 918.00 26 0.000000e+00 0.00 1.819915e+06 1.769286e+06 50628.51 NULL
2022 Borough President-Bronx Computer Systems Manager 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2022 Borough President-Bronx Counsel To The Borough President 134280.00000 1.342800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.342800e+05 1.342800e+05 0.00 NULL
2022 Borough President-Bronx Deputy Borough President 160753.50000 3.215070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.215070e+05 3.215070e+05 0.00 NULL
2022 Borough President-Bronx Executive Assistant 190000.00000 3.800000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.800000e+05 3.800000e+05 0.00 NULL
2022 Borough President-Bronx Public Information Officer 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2022 Borough President-Bronx Research And Liaison Coordinator 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2022 Borough President-Bronx Research Liaison Adn Governmental Coordinator 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2022 Borough President-Bronx Secretary To Assistant To President 105235.00000 1.052350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.052350e+05 1.052350e+05 0.00 NULL
2022 Borough President-Bronx Secretary To The Deputy Boro President 81612.00000 8.161200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.161200e+04 8.161200e+04 0.00 NULL
2022 Borough President-Bronx Secretary To The Excutive Assistant 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2022 Borough President-Bronx Secretary To The President 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2022 Borough President-Bronx Special Assistant To The Borough President 80817.80000 4.040890e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.040890e+05 4.040890e+05 0.00 NULL
2022 Borough President-Brooklyn Assistant To The President 97308.87097 3.016575e+06 7906.07 2.550345e+02 0.000 126.50 31 0.000000e+00 0.00 3.024481e+06 3.016575e+06 7906.07 NULL
2022 Borough President-Brooklyn Borough President 179200.00000 3.584000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.584000e+05 3.584000e+05 0.00 NULL
2022 Borough President-Brooklyn Chauffeur-Attendant 91087.00000 9.108700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.108700e+04 9.108700e+04 0.00 NULL
2022 Borough President-Brooklyn City Planner 111059.50000 2.221190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.221190e+05 2.221190e+05 0.00 NULL
2022 Borough President-Brooklyn Clerical Associate 59532.66667 1.785980e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.785980e+05 1.785980e+05 0.00 NULL
2022 Borough President-Brooklyn Community Assistant 41531.00000 4.153100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.153100e+04 4.153100e+04 0.00 NULL
2022 Borough President-Brooklyn Community Associate 55566.42857 3.889650e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.889650e+05 3.889650e+05 0.00 NULL
2022 Borough President-Brooklyn Community Coordinator 65830.29463 1.974909e+06 2885.42 9.618067e+01 0.000 60.00 30 0.000000e+00 0.00 1.977794e+06 1.974909e+06 2885.42 NULL
2022 Borough President-Brooklyn Counsel To The Borough President 130342.00000 2.606840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.606840e+05 2.606840e+05 0.00 NULL
2022 Borough President-Brooklyn Deputy Borough President 171451.50000 3.429030e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.429030e+05 3.429030e+05 0.00 NULL
2022 Borough President-Brooklyn Director Of Community Planning Boards 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2022 Borough President-Brooklyn Executive Agency Counsel 126874.50000 2.537490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.537490e+05 2.537490e+05 0.00 NULL
2022 Borough President-Brooklyn Executive Assistant 150000.00000 3.000000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.000000e+05 3.000000e+05 0.00 NULL
2022 Borough President-Brooklyn Principal Administrative Associate - Non Supvr 86271.00000 8.627100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.627100e+04 8.627100e+04 0.00 NULL
2022 Borough President-Brooklyn Program Producer 93443.00000 9.344300e+04 3632.36 3.632360e+03 3632.360 54.50 1 3.632360e+03 3632.36 9.707536e+04 9.707536e+04 0.00 NULL
2022 Borough President-Brooklyn Public Information Officer 93550.00000 1.871000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.871000e+05 1.871000e+05 0.00 NULL
2022 Borough President-Brooklyn Research & Liaison Coordinator 85378.00000 8.537800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.537800e+04 8.537800e+04 0.00 NULL
2022 Borough President-Brooklyn Research And Liaison Coordinator 64543.00000 6.454300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.454300e+04 6.454300e+04 0.00 NULL
2022 Borough President-Brooklyn Secretary To The President 78671.00000 7.867100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.867100e+04 7.867100e+04 0.00 NULL
2022 Borough President-Brooklyn Special Assistant To The Borough President 114442.00000 1.144420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.144420e+05 1.144420e+05 0.00 NULL
2022 Borough President-Brooklyn Special Assistant To The President 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2022 Borough President-Manhattan Adm Manager-Non-Mgrl 84254.00000 8.425400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.425400e+04 8.425400e+04 0.00 NULL
2022 Borough President-Manhattan Admin Contract Specialist 98000.00000 9.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.800000e+04 9.800000e+04 0.00 NULL
2022 Borough President-Manhattan Administrative City Planner 88958.00000 8.895800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.895800e+04 8.895800e+04 0.00 NULL
2022 Borough President-Manhattan Administrative Public Information Specialist 143000.00000 1.430000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.430000e+05 1.430000e+05 0.00 NULL
2022 Borough President-Manhattan Administrative Staff Analyst 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2022 Borough President-Manhattan Agency Chief Contracting Officer 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2022 Borough President-Manhattan Assistant To The President 106059.16667 6.363550e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.363550e+05 6.363550e+05 0.00 NULL
2022 Borough President-Manhattan Associate Director, Borough Improvement Board 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2022 Borough President-Manhattan Associate Public Information Specialist 72500.00000 7.250000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.250000e+04 7.250000e+04 0.00 NULL
2022 Borough President-Manhattan Borough President 179200.00000 3.584000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.584000e+05 3.584000e+05 0.00 NULL
2022 Borough President-Manhattan Chauffeur Attendant 64279.75000 2.571190e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.571190e+05 2.571190e+05 0.00 NULL
2022 Borough President-Manhattan Clerical Associate 71243.00000 7.124300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.124300e+04 7.124300e+04 0.00 NULL
2022 Borough President-Manhattan College Aide 16538.80000 1.653880e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.653880e+04 1.653880e+04 0.00 NULL
2022 Borough President-Manhattan Community Associate 58263.73600 2.913187e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.913187e+05 2.913187e+05 0.00 NULL
2022 Borough President-Manhattan Community Coordinator 68347.28960 1.708682e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.708682e+06 1.708682e+06 0.00 NULL
2022 Borough President-Manhattan Community Planning Board Coordinator 60555.00000 3.027750e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.027750e+05 3.027750e+05 0.00 NULL
2022 Borough President-Manhattan Computer Operations Manager 81649.00000 8.164900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.164900e+04 8.164900e+04 0.00 NULL
2022 Borough President-Manhattan Computer Systems Manager 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2022 Borough President-Manhattan Deputy Borough President 175666.66667 5.270000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.270000e+05 5.270000e+05 0.00 NULL
2022 Borough President-Manhattan Director Borough Improvement Board 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2022 Borough President-Manhattan Director Of Community Planning Boards 103079.50000 2.061590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.061590e+05 2.061590e+05 0.00 NULL
2022 Borough President-Manhattan Executive Assistant 160000.00000 3.200000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.200000e+05 3.200000e+05 0.00 NULL
2022 Borough President-Manhattan General Counsel 143000.00000 1.430000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.430000e+05 1.430000e+05 0.00 NULL
2022 Borough President-Manhattan Housing Consultant 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2022 Borough President-Manhattan Principal Administrative Associate - Non Supvr 57561.00000 5.756100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.756100e+04 5.756100e+04 0.00 NULL
2022 Borough President-Manhattan Public Information Officer 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2022 Borough President-Manhattan Public Relations Officer 85000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2022 Borough President-Manhattan Secretary To The Deputy Boro President 57204.00000 5.720400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.720400e+04 5.720400e+04 0.00 NULL
2022 Borough President-Manhattan Secretary To The President 98333.33333 2.950000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.950000e+05 2.950000e+05 0.00 NULL
2022 Borough President-Queens Adm Manager-Non-Mgrl 112320.00000 1.123200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.123200e+05 1.123200e+05 0.00 NULL
2022 Borough President-Queens Administrative Community Relations Specialist 109465.00000 1.094650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.094650e+05 1.094650e+05 0.00 NULL
2022 Borough President-Queens Administrative Engineer 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2022 Borough President-Queens Agency Attorney 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2022 Borough President-Queens Assistant Civil Engineer 73823.00000 7.382300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.382300e+04 7.382300e+04 0.00 NULL
2022 Borough President-Queens Assistant To The President 70833.33333 2.125000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.125000e+05 2.125000e+05 0.00 NULL
2022 Borough President-Queens Associate Staff Analyst 94480.00000 9.448000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.448000e+04 9.448000e+04 0.00 NULL
2022 Borough President-Queens Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2022 Borough President-Queens Cashier 35473.00000 3.547300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.547300e+04 3.547300e+04 0.00 NULL
2022 Borough President-Queens College Aide 1307.29500 5.229180e+03 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.229180e+03 5.229180e+03 0.00 NULL
2022 Borough President-Queens Community Assistant 33294.33333 9.988300e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.988300e+04 9.988300e+04 0.00 NULL
2022 Borough President-Queens Community Associate 55461.12500 8.873780e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 8.873780e+05 8.873780e+05 0.00 NULL
2022 Borough President-Queens Community Coordinator 71756.33333 1.506883e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.506883e+06 1.506883e+06 0.00 NULL
2022 Borough President-Queens Community Planning Board Coordinator 57000.00000 5.700000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.700000e+04 5.700000e+04 0.00 NULL
2022 Borough President-Queens Computer Systems Manager 97850.00000 9.785000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.785000e+04 9.785000e+04 0.00 NULL
2022 Borough President-Queens Counsel To The Borough President 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2022 Borough President-Queens Deputy Borough President 140000.00000 2.800000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.800000e+05 2.800000e+05 0.00 NULL
2022 Borough President-Queens Director Of Community Planning Boards 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2022 Borough President-Queens Director, Office Of Administration 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2022 Borough President-Queens Engineering Technician 68743.00000 1.374860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.374860e+05 1.374860e+05 0.00 NULL
2022 Borough President-Queens Executive Assistant 160000.00000 3.200000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.200000e+05 3.200000e+05 0.00 NULL
2022 Borough President-Queens Principal Administrative Associate - Non Supvr 70719.00000 1.414380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.414380e+05 1.414380e+05 0.00 NULL
2022 Borough President-Queens Public Information Officer 90000.00000 1.800000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.800000e+05 1.800000e+05 0.00 NULL
2022 Borough President-Queens Research And Liaison Specialist 57500.00000 2.300000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.300000e+05 2.300000e+05 0.00 NULL
2022 Borough President-Queens Secretary To The President 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2022 Borough President-Queens Special Assistant To The Borough President 90222.22222 8.120000e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.120000e+05 8.120000e+05 0.00 NULL
2022 Borough President-Staten Is Administrative Architect 147650.00000 1.476500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.476500e+05 1.476500e+05 0.00 NULL
2022 Borough President-Staten Is Agency Attorney 84914.45500 1.698289e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.698289e+05 1.698289e+05 0.00 NULL
2022 Borough President-Staten Is Assistant To The President 126500.00000 2.530000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.530000e+05 2.530000e+05 0.00 NULL
2022 Borough President-Staten Is Borough President 179200.00000 3.584000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.584000e+05 3.584000e+05 0.00 NULL
2022 Borough President-Staten Is Community Associate 52200.59182 5.742065e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.742065e+05 5.742065e+05 0.00 NULL
2022 Borough President-Staten Is Community Coordinator 68186.84331 1.500111e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 1.500111e+06 1.500111e+06 0.00 NULL
2022 Borough President-Staten Is Counsel To The Borough President 41519.07500 4.151907e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.151907e+04 4.151907e+04 0.00 NULL
2022 Borough President-Staten Is Deputy Borough President 148820.00000 1.488200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.488200e+05 1.488200e+05 0.00 NULL
2022 Borough President-Staten Is Engineering Technician 72124.00000 7.212400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.212400e+04 7.212400e+04 0.00 NULL
2022 Borough President-Staten Is Executive Assistant 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2022 Borough President-Staten Is Project Planner 53217.01000 5.321701e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.321701e+04 5.321701e+04 0.00 NULL
2022 Borough President-Staten Is Public Information Officer 69142.00000 1.382840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.382840e+05 1.382840e+05 0.00 NULL
2022 Borough President-Staten Is Secretary To The Deputy Boro President 7394.10000 7.394100e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.394100e+03 7.394100e+03 0.00 NULL
2022 Borough President-Staten Is Special Assistant To The Borough President 73134.88000 7.313488e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.313488e+04 7.313488e+04 0.00 NULL
2022 Bronx Community Board #1 Community Coordinator 84054.00000 8.405400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.405400e+04 8.405400e+04 0.00 NULL
2022 Bronx Community Board #1 District Manager 145193.00000 1.451930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.451930e+05 1.451930e+05 0.00 NULL
2022 Bronx Community Board #10 Clerical Associate 26004.56000 5.200912e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.200912e+04 5.200912e+04 0.00 NULL
2022 Bronx Community Board #10 Community Assistant 30464.00000 3.046400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.046400e+04 3.046400e+04 0.00 NULL
2022 Bronx Community Board #10 Community Associate 46449.00000 4.644900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.644900e+04 4.644900e+04 0.00 NULL
2022 Bronx Community Board #10 District Manager 88827.00000 8.882700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.882700e+04 8.882700e+04 0.00 NULL
2022 Bronx Community Board #11 Community Coordinator 69590.50000 1.391810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.391810e+05 1.391810e+05 0.00 NULL
2022 Bronx Community Board #11 District Manager 92447.00000 9.244700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.244700e+04 9.244700e+04 0.00 NULL
2022 Bronx Community Board #12 Community Coordinator 84005.00000 8.400500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.400500e+04 8.400500e+04 0.00 NULL
2022 Bronx Community Board #12 District Manager 138746.00000 1.387460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.387460e+05 1.387460e+05 0.00 NULL
2022 Bronx Community Board #2 Community Assistant 13649.96000 1.364996e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.364996e+04 1.364996e+04 0.00 NULL
2022 Bronx Community Board #2 Community Coordinator 66818.00000 6.681800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.681800e+04 6.681800e+04 0.00 NULL
2022 Bronx Community Board #2 District Manager 128118.00000 1.281180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.281180e+05 1.281180e+05 0.00 NULL
2022 Bronx Community Board #3 District Manager 140435.00000 1.404350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.404350e+05 1.404350e+05 0.00 NULL
2022 Bronx Community Board #3 Principal Administrative Associate - Non Supvr 89771.00000 8.977100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.977100e+04 8.977100e+04 0.00 NULL
2022 Bronx Community Board #4 Community Associate 61406.50000 1.228130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.228130e+05 1.228130e+05 0.00 NULL
2022 Bronx Community Board #4 District Manager 97136.00000 9.713600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.713600e+04 9.713600e+04 0.00 NULL
2022 Bronx Community Board #5 Community Assistant 13069.65000 1.306965e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.306965e+04 1.306965e+04 0.00 NULL
2022 Bronx Community Board #5 Community Coordinator 68437.00000 6.843700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.843700e+04 6.843700e+04 0.00 NULL
2022 Bronx Community Board #5 District Manager 79310.00000 7.931000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.931000e+04 7.931000e+04 0.00 NULL
2022 Bronx Community Board #6 Community Associate 16216.06250 1.621606e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.621606e+04 1.621606e+04 0.00 NULL
2022 Bronx Community Board #6 Community Coordinator 67216.00000 6.721600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.721600e+04 6.721600e+04 0.00 NULL
2022 Bronx Community Board #6 District Manager 129772.00000 1.297720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.297720e+05 1.297720e+05 0.00 NULL
2022 Bronx Community Board #7 Community Associate 44541.50000 8.908300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.908300e+04 8.908300e+04 0.00 NULL
2022 Bronx Community Board #7 Community Coordinator 65107.50000 1.302150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.302150e+05 1.302150e+05 0.00 NULL
2022 Bronx Community Board #7 District Manager 106272.00000 1.062720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.062720e+05 1.062720e+05 0.00 NULL
2022 Bronx Community Board #8 Community Associate 53168.50000 1.063370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.063370e+05 1.063370e+05 0.00 NULL
2022 Bronx Community Board #8 Community Coordinator 65205.00000 6.520500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.520500e+04 6.520500e+04 0.00 NULL
2022 Bronx Community Board #8 District Manager 93775.00000 9.377500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.377500e+04 9.377500e+04 0.00 NULL
2022 Bronx Community Board #9 Community Associate 55985.00000 5.598500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.598500e+04 5.598500e+04 0.00 NULL
2022 Bronx Community Board #9 Community Coordinator 75574.00000 7.557400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.557400e+04 7.557400e+04 0.00 NULL
2022 Bronx Community Board #9 District Manager 120314.00000 1.203140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.203140e+05 1.203140e+05 0.00 NULL
2022 Bronx District Attorney Adm Manager-Non-Mgrl 76270.00000 1.525400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.525400e+05 1.525400e+05 0.00 NULL
2022 Bronx District Attorney Administrative Accountant 145000.00000 2.900000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.900000e+05 2.900000e+05 0.00 NULL
2022 Bronx District Attorney Administrative Chief 139800.00000 4.194000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.194000e+05 4.194000e+05 0.00 NULL
2022 Bronx District Attorney Administrative Community Relations Specialist 146000.00000 4.380000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.380000e+05 4.380000e+05 0.00 NULL
2022 Bronx District Attorney Administrative Labor Relations Analyst 177300.00000 1.773000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.773000e+05 1.773000e+05 0.00 NULL
2022 Bronx District Attorney Administrative Manager 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2022 Bronx District Attorney Administrative Staff Analyst 127803.00000 1.278030e+05 26.53 2.653000e+01 26.530 0.00 1 2.653000e+01 26.53 1.278295e+05 1.278295e+05 0.00 NULL
2022 Bronx District Attorney Agency Chief Contracting Officer 180900.00000 3.618000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.618000e+05 3.618000e+05 0.00 NULL
2022 Bronx District Attorney Assistant District Attorney 111557.68113 5.912557e+07 0.00 0.000000e+00 0.000 0.00 530 0.000000e+00 0.00 5.912557e+07 5.912557e+07 0.00 NULL
2022 Bronx District Attorney Associate Staff Analyst 86880.00000 8.688000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.688000e+04 8.688000e+04 0.00 NULL
2022 Bronx District Attorney Certified It Administrator 121875.00000 2.437500e+05 2390.19 1.195095e+03 1195.095 29.50 2 1.195095e+03 2390.19 2.461402e+05 2.461402e+05 0.00 NULL
2022 Bronx District Attorney Certified It Developer 119334.75000 4.773390e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.773390e+05 4.773390e+05 0.00 NULL
2022 Bronx District Attorney City Research Scientist 85915.00000 1.718300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.718300e+05 1.718300e+05 0.00 NULL
2022 Bronx District Attorney Clerical Associate 49397.16667 1.778298e+06 29649.15 8.235875e+02 0.000 815.25 36 0.000000e+00 0.00 1.807947e+06 1.778298e+06 29649.15 NULL
2022 Bronx District Attorney College Aide 4249.77778 7.649600e+04 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 7.649600e+04 7.649600e+04 0.00 NULL
2022 Bronx District Attorney Community Assistant 37634.32624 5.306440e+06 128265.73 9.096860e+02 0.000 5171.50 141 0.000000e+00 0.00 5.434706e+06 5.306440e+06 128265.73 NULL
2022 Bronx District Attorney Community Associate 48197.84351 1.262784e+07 115165.55 4.395632e+02 0.000 3867.00 262 0.000000e+00 0.00 1.274300e+07 1.262784e+07 115165.55 NULL
2022 Bronx District Attorney Community Coordinator 69455.90722 6.737223e+06 172165.10 1.774898e+03 62.260 3801.25 97 6.226000e+01 6039.22 6.909388e+06 6.743262e+06 166125.88 NULL
2022 Bronx District Attorney Community Service Aide 29360.00000 5.872000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.872000e+04 5.872000e+04 0.00 NULL
2022 Bronx District Attorney Computer Associate 70833.00000 7.083300e+04 1771.37 1.771370e+03 1771.370 75.50 1 1.771370e+03 1771.37 7.260437e+04 7.260437e+04 0.00 NULL
2022 Bronx District Attorney Computer Specialist 121794.50000 2.435890e+05 2925.91 1.462955e+03 1462.955 43.75 2 1.462955e+03 2925.91 2.465149e+05 2.465149e+05 0.00 NULL
2022 Bronx District Attorney Computer Systems Manager 164750.00000 6.590000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.590000e+05 6.590000e+05 0.00 NULL
2022 Bronx District Attorney Director Of Public Information 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2022 Bronx District Attorney District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2022 Bronx District Attorney Interpreter 64817.16667 7.778060e+05 30547.86 2.545655e+03 923.190 920.25 12 9.231900e+02 11078.28 8.083539e+05 7.888843e+05 19469.58 NULL
2022 Bronx District Attorney Media Services Technician 59122.22222 5.321000e+05 4255.21 4.728011e+02 525.090 117.75 9 4.728011e+02 4255.21 5.363552e+05 5.363552e+05 0.00 NULL
2022 Bronx District Attorney Paralegal Aide 56360.00000 1.127200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.127200e+05 1.127200e+05 0.00 NULL
2022 Bronx District Attorney Principal Accountant Investigator 136333.33333 8.180000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.180000e+05 8.180000e+05 0.00 NULL
2022 Bronx District Attorney Principal Administrative Associate - Non Supvr 66724.50000 1.067592e+06 9124.97 5.703106e+02 0.000 253.25 16 0.000000e+00 0.00 1.076717e+06 1.067592e+06 9124.97 NULL
2022 Bronx District Attorney Private Secretary 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2022 Bronx District Attorney Procurement Analyst 94495.00000 9.449500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.449500e+04 9.449500e+04 0.00 NULL
2022 Bronx District Attorney Reporter/ Stenographer 77253.47156 1.854083e+06 4629.06 1.928775e+02 0.000 100.50 24 0.000000e+00 0.00 1.858712e+06 1.854083e+06 4629.06 NULL
2022 Bronx District Attorney Secretary 51895.00000 1.556850e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.556850e+05 1.556850e+05 0.00 NULL
2022 Bronx District Attorney Special Assistant To The District Attorney 160375.00000 1.283000e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.283000e+06 1.283000e+06 0.00 NULL
2022 Bronx District Attorney Staff Analyst 77913.00000 7.791300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.791300e+04 7.791300e+04 0.00 NULL
2022 Bronx District Attorney Student Legal Assistant 5024.58375 1.406883e+05 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 1.406883e+05 1.406883e+05 0.00 NULL
2022 Brooklyn Community Board #1 Assistant District Manager 63255.00000 6.325500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.325500e+04 6.325500e+04 0.00 NULL
2022 Brooklyn Community Board #1 Community Associate 44083.00000 4.408300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.408300e+04 4.408300e+04 0.00 NULL
2022 Brooklyn Community Board #1 District Manager 133081.00000 1.330810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.330810e+05 1.330810e+05 0.00 NULL
2022 Brooklyn Community Board #10 Community Assistant 25172.98250 2.517298e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.517298e+04 2.517298e+04 0.00 NULL
2022 Brooklyn Community Board #10 Community Coordinator 77866.00000 7.786600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.786600e+04 7.786600e+04 0.00 NULL
2022 Brooklyn Community Board #10 District Manager 128778.00000 1.287780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287780e+05 1.287780e+05 0.00 NULL
2022 Brooklyn Community Board #11 Community Assistant 26294.27200 2.629427e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.629427e+04 2.629427e+04 0.00 NULL
2022 Brooklyn Community Board #11 Community Coordinator 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2022 Brooklyn Community Board #11 District Manager 100285.00000 1.002850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.002850e+05 1.002850e+05 0.00 NULL
2022 Brooklyn Community Board #12 Community Assistant 39153.00000 3.915300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.915300e+04 3.915300e+04 0.00 NULL
2022 Brooklyn Community Board #12 Community Coordinator 36790.00350 3.679000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.679000e+04 3.679000e+04 0.00 NULL
2022 Brooklyn Community Board #12 District Manager 134046.00000 1.340460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.340460e+05 1.340460e+05 0.00 NULL
2022 Brooklyn Community Board #13 Community Assistant 32520.00000 3.252000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.252000e+04 3.252000e+04 0.00 NULL
2022 Brooklyn Community Board #13 Community Associate 52232.00000 5.223200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.223200e+04 5.223200e+04 0.00 NULL
2022 Brooklyn Community Board #13 District Manager 92234.00000 9.223400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.223400e+04 9.223400e+04 0.00 NULL
2022 Brooklyn Community Board #13 Secretary 47193.15000 4.719315e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.719315e+04 4.719315e+04 0.00 NULL
2022 Brooklyn Community Board #14 Community Associate 2452.56200 2.452562e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.452562e+03 2.452562e+03 0.00 NULL
2022 Brooklyn Community Board #14 Community Coordinator 49103.05500 9.820611e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.820611e+04 9.820611e+04 0.00 NULL
2022 Brooklyn Community Board #14 District Manager 114035.00000 1.140350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.140350e+05 1.140350e+05 0.00 NULL
2022 Brooklyn Community Board #15 Community Associate 51780.50000 1.035610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.035610e+05 1.035610e+05 0.00 NULL
2022 Brooklyn Community Board #15 District Manager 70860.00000 7.086000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.086000e+04 7.086000e+04 0.00 NULL
2022 Brooklyn Community Board #16 Community Assistant 29916.60000 5.983320e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.983320e+04 5.983320e+04 0.00 NULL
2022 Brooklyn Community Board #16 District Manager 117917.00000 1.179170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.179170e+05 1.179170e+05 0.00 NULL
2022 Brooklyn Community Board #17 Assistant District Manager 55000.00000 5.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.500000e+04 5.500000e+04 0.00 NULL
2022 Brooklyn Community Board #17 Community Assistant 40354.00000 8.070800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.070800e+04 8.070800e+04 0.00 NULL
2022 Brooklyn Community Board #17 District Manager 101844.00000 1.018440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.018440e+05 1.018440e+05 0.00 NULL
2022 Brooklyn Community Board #18 Community Assistant 37398.00000 3.739800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.739800e+04 3.739800e+04 0.00 NULL
2022 Brooklyn Community Board #18 Community Associate 48667.00000 4.866700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.866700e+04 4.866700e+04 0.00 NULL
2022 Brooklyn Community Board #18 District Manager 136142.00000 2.722840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.722840e+05 2.722840e+05 0.00 NULL
2022 Brooklyn Community Board #2 Community Assistant 4803.33000 4.803330e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.803330e+03 4.803330e+03 0.00 NULL
2022 Brooklyn Community Board #2 Community Associate 38333.00000 3.833300e+04 4977.31 4.977310e+03 4977.310 158.15 1 4.977310e+03 4977.31 4.331031e+04 4.331031e+04 0.00 NULL
2022 Brooklyn Community Board #2 Community Coordinator 66526.00000 6.652600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.652600e+04 6.652600e+04 0.00 NULL
2022 Brooklyn Community Board #2 District Manager 105360.00000 1.053600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.053600e+05 1.053600e+05 0.00 NULL
2022 Brooklyn Community Board #3 Community Associate 44083.00000 4.408300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.408300e+04 4.408300e+04 0.00 NULL
2022 Brooklyn Community Board #3 Community Coordinator 67331.00000 6.733100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.733100e+04 6.733100e+04 0.00 NULL
2022 Brooklyn Community Board #3 District Manager 106400.00000 1.064000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.064000e+05 1.064000e+05 0.00 NULL
2022 Brooklyn Community Board #4 Community Coordinator 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2022 Brooklyn Community Board #4 District Manager 82645.00000 8.264500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.264500e+04 8.264500e+04 0.00 NULL
2022 Brooklyn Community Board #4 Principal Administrative Associate - Non Supvr 63775.00000 6.377500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.377500e+04 6.377500e+04 0.00 NULL
2022 Brooklyn Community Board #5 Community Associate 38558.00000 7.711600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.711600e+04 7.711600e+04 0.00 NULL
2022 Brooklyn Community Board #5 Community Coordinator 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2022 Brooklyn Community Board #5 District Manager 93500.00000 9.350000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.350000e+04 9.350000e+04 0.00 NULL
2022 Brooklyn Community Board #6 Community Coordinator 70443.00000 1.408860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.408860e+05 1.408860e+05 0.00 NULL
2022 Brooklyn Community Board #6 District Manager 89585.00000 8.958500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.958500e+04 8.958500e+04 0.00 NULL
2022 Brooklyn Community Board #7 Community Associate 51436.00000 5.143600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.143600e+04 5.143600e+04 0.00 NULL
2022 Brooklyn Community Board #7 Community Coordinator 71241.00000 7.124100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.124100e+04 7.124100e+04 0.00 NULL
2022 Brooklyn Community Board #7 District Manager 100498.00000 1.004980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.004980e+05 1.004980e+05 0.00 NULL
2022 Brooklyn Community Board #8 Community Coordinator 77600.00000 7.760000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.760000e+04 7.760000e+04 0.00 NULL
2022 Brooklyn Community Board #8 District Manager 117775.00000 1.177750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.177750e+05 1.177750e+05 0.00 NULL
2022 Brooklyn Community Board #9 Community Assistant 40000.00000 4.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.000000e+04 4.000000e+04 0.00 NULL
2022 Brooklyn Community Board #9 Community Coordinator 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2022 Brooklyn Community Board #9 District Manager 85000.00000 8.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.500000e+04 8.500000e+04 0.00 NULL
2022 Business Integrity Commission Accountant 73682.40000 7.368240e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.368240e+04 7.368240e+04 0.00 NULL
2022 Business Integrity Commission Admin Contract Specialist 130132.19500 2.602644e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.602644e+05 2.602644e+05 0.00 NULL
2022 Business Integrity Commission Administrative Investigator 161663.99000 1.616640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.616640e+05 1.616640e+05 0.00 NULL
2022 Business Integrity Commission Administrative Staff Analyst 116529.10000 3.495873e+05 24264.94 8.088313e+03 7338.620 324.50 3 7.338620e+03 22015.86 3.738522e+05 3.716032e+05 2249.08 NULL
2022 Business Integrity Commission Agency Attorney 86816.90000 3.472676e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.472676e+05 3.472676e+05 0.00 NULL
2022 Business Integrity Commission Associate Fraud Investigator 68636.01250 5.490881e+05 39051.09 4.881386e+03 197.995 776.50 8 1.979950e+02 1583.96 5.881392e+05 5.506721e+05 37467.13 NULL
2022 Business Integrity Commission Associate Staff Analyst 97207.64000 1.944153e+05 9.07 4.535000e+00 4.535 0.00 2 4.535000e+00 9.07 1.944244e+05 1.944244e+05 0.00 NULL
2022 Business Integrity Commission Chair 243171.00000 4.863420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863420e+05 4.863420e+05 0.00 NULL
2022 Business Integrity Commission Clerical Associate 56848.35500 1.136967e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.136967e+05 1.136967e+05 0.00 NULL
2022 Business Integrity Commission Community Assistant 6380.06500 1.276013e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.276013e+04 1.276013e+04 0.00 NULL
2022 Business Integrity Commission Community Associate 47936.53067 1.438096e+06 9850.08 3.283360e+02 0.000 349.50 30 0.000000e+00 0.00 1.447946e+06 1.438096e+06 9850.08 NULL
2022 Business Integrity Commission Community Coordinator 69741.66667 8.369000e+05 13161.13 1.096761e+03 0.000 288.50 12 0.000000e+00 0.00 8.500611e+05 8.369000e+05 13161.13 NULL
2022 Business Integrity Commission Computer Programmer Analyst 71227.00000 7.122700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.122700e+04 7.122700e+04 0.00 NULL
2022 Business Integrity Commission Computer Systems Manager 111400.00000 1.114000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.114000e+05 1.114000e+05 0.00 NULL
2022 Business Integrity Commission Deputy Commissioner Of Investigations 133900.00000 1.339000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339000e+05 1.339000e+05 0.00 NULL
2022 Business Integrity Commission Director Of Investigations 113557.50000 1.135575e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.135575e+05 1.135575e+05 0.00 NULL
2022 Business Integrity Commission Director Of Investigative Audits 121121.17500 2.422424e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.422424e+05 2.422424e+05 0.00 NULL
2022 Business Integrity Commission Executive Agency Counsel 118511.19273 1.303623e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.303623e+06 1.303623e+06 0.00 NULL
2022 Business Integrity Commission Management Auditor 81831.75000 1.636635e+05 522.76 2.613800e+02 261.380 14.00 2 2.613800e+02 522.76 1.641863e+05 1.641863e+05 0.00 NULL
2022 Business Integrity Commission Market Agent 57215.75778 5.149418e+05 37481.33 4.164592e+03 871.900 884.75 9 8.719000e+02 7847.10 5.524232e+05 5.227889e+05 29634.23 NULL
2022 Business Integrity Commission Principal Administrative Associate - Non Supvr 61858.00000 6.185800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.185800e+04 6.185800e+04 0.00 NULL
2022 Campaign Finance Board Admin Asst-Campaign Fin Board 59873.43694 8.382281e+05 6612.09 4.722921e+02 23.400 170.50 14 2.340000e+01 327.60 8.448402e+05 8.385557e+05 6284.49 NULL
2022 Campaign Finance Board Agency Attorney 88519.00000 2.655570e+05 1050.61 3.502033e+02 328.410 22.50 3 3.284100e+02 985.23 2.666076e+05 2.665422e+05 65.38 NULL
2022 Campaign Finance Board Analyst 80951.52500 8.095152e+06 435073.44 4.350734e+03 301.280 7517.75 100 3.012800e+02 30128.00 8.530226e+06 8.125280e+06 404945.44 NULL
2022 Campaign Finance Board Associate Staff Analyst 124214.00000 1.242140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.242140e+05 1.242140e+05 0.00 NULL
2022 Campaign Finance Board Attorney-Campaign Fin Board 118075.80000 5.903790e+05 634.74 1.269480e+02 0.000 6.50 5 0.000000e+00 0.00 5.910137e+05 5.903790e+05 634.74 NULL
2022 Campaign Finance Board Deputy Executive Director Campaign Finance Board 177007.20000 8.850360e+05 7001.95 1.400390e+03 89.170 47.00 5 8.917000e+01 445.85 8.920379e+05 8.854818e+05 6556.10 NULL
2022 Campaign Finance Board Director Of Public Relations 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2022 Campaign Finance Board Executive Agency Counsel 181613.00000 3.632260e+05 559.68 2.798400e+02 279.840 7.00 2 2.798400e+02 559.68 3.637857e+05 3.637857e+05 0.00 NULL
2022 Campaign Finance Board Executive Director 263017.00000 2.630170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.630170e+05 2.630170e+05 0.00 NULL
2022 Campaign Finance Board Systems Administrator-Cam Fin Bd 113560.19048 2.384764e+06 58310.13 2.776673e+03 0.000 830.25 21 0.000000e+00 0.00 2.443074e+06 2.384764e+06 58310.13 NULL
2022 City Clerk Administrative Investigator 94934.00000 9.493400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.493400e+04 9.493400e+04 0.00 NULL
2022 City Clerk Administrative Management Auditor 202050.00000 2.020500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.020500e+05 2.020500e+05 0.00 NULL
2022 City Clerk Agency Attorney 88000.00000 8.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.800000e+04 8.800000e+04 0.00 NULL
2022 City Clerk Chief Of Staff 111145.00000 1.111450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.111450e+05 1.111450e+05 0.00 NULL
2022 City Clerk City Clerk & Clerk Of Council 238216.00000 2.382160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.382160e+05 2.382160e+05 0.00 NULL
2022 City Clerk Clerical Associate 45912.39535 1.974233e+06 2794.25 6.498256e+01 0.000 80.20 43 0.000000e+00 0.00 1.977027e+06 1.974233e+06 2794.25 NULL
2022 City Clerk College Aide 6335.86964 4.435109e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.435109e+04 4.435109e+04 0.00 NULL
2022 City Clerk Community Assistant 45159.00000 4.515900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.515900e+04 4.515900e+04 0.00 NULL
2022 City Clerk Community Associate 49274.33333 1.478230e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.478230e+05 1.478230e+05 0.00 NULL
2022 City Clerk Community Coordinator 86654.00000 8.665400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.665400e+04 8.665400e+04 0.00 NULL
2022 City Clerk Deputy City Clerk 154531.75000 6.181270e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.181270e+05 6.181270e+05 0.00 NULL
2022 City Clerk Executive Agency Counsel 171153.00000 1.711530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.711530e+05 1.711530e+05 0.00 NULL
2022 City Clerk Executive Assistant To The City Clerk 94412.00000 9.441200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.441200e+04 9.441200e+04 0.00 NULL
2022 City Clerk Executive Assistant To The Director Of Administration 60000.00000 6.000000e+04 451.70 4.517000e+02 451.700 11.75 1 4.517000e+02 451.70 6.045170e+04 6.045170e+04 0.00 NULL
2022 City Clerk Principal Administrative Associate - Non Supvr 71779.40000 3.588970e+05 1680.33 3.360660e+02 0.000 28.75 5 0.000000e+00 0.00 3.605773e+05 3.588970e+05 1680.33 NULL
2022 City Council Assistant Director Of Administration 148337.66667 8.900260e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.900260e+05 8.900260e+05 0.00 NULL
2022 City Council Assistant Director Of Finance 170000.00000 3.400000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.400000e+05 3.400000e+05 0.00 NULL
2022 City Council Assistant Director Of Legal Services 132477.38889 2.384593e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.384593e+06 2.384593e+06 0.00 NULL
2022 City Council Assistant Sergeant At Arms 62485.50000 6.248550e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 6.248550e+05 6.248550e+05 0.00 NULL
2022 City Council Chief Of Staff 236381.00000 4.727620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.727620e+05 4.727620e+05 0.00 NULL
2022 City Council Communication Assistant 87156.54545 9.587220e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 9.587220e+05 9.587220e+05 0.00 NULL
2022 City Council Council Member 148462.96296 1.202550e+07 0.00 0.000000e+00 0.000 0.00 81 0.000000e+00 0.00 1.202550e+07 1.202550e+07 0.00 NULL
2022 City Council Council Member Aide 56271.75503 3.353797e+07 0.00 0.000000e+00 0.000 0.00 596 0.000000e+00 0.00 3.353797e+07 3.353797e+07 0.00 NULL
2022 City Council Deputy Chief Of Staff 212857.14286 1.490000e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.490000e+06 1.490000e+06 0.00 NULL
2022 City Council Deputy Director 149508.43478 3.438694e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 3.438694e+06 3.438694e+06 0.00 NULL
2022 City Council Deputy Director- Finance 200902.00000 1.205412e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.205412e+06 1.205412e+06 0.00 NULL
2022 City Council Deputy Director-Legal Division 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2022 City Council Deputy Director-Office Of Communications 139050.00000 2.781000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.781000e+05 2.781000e+05 0.00 NULL
2022 City Council Deputy Unit Chief 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2022 City Council Director 178593.69231 2.321718e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 2.321718e+06 2.321718e+06 0.00 NULL
2022 City Council Director Legal Division/Gen Counsel& Spec Counsel 187991.00000 1.879910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.879910e+05 1.879910e+05 0.00 NULL
2022 City Council Director Of Finance 235000.00000 2.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.350000e+05 2.350000e+05 0.00 NULL
2022 City Council Director-Office Of Communications 194838.00000 1.948380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.948380e+05 1.948380e+05 0.00 NULL
2022 City Council Executive Legislative Coordinator 215575.00000 4.311500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.311500e+05 4.311500e+05 0.00 NULL
2022 City Council Legislative Administrative Assistant 63405.66667 7.608680e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.608680e+05 7.608680e+05 0.00 NULL
2022 City Council Legislative Administrative Manager 101791.66667 2.443000e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 2.443000e+06 2.443000e+06 0.00 NULL
2022 City Council Legislative Assistant 67973.46329 5.777744e+06 0.00 0.000000e+00 0.000 0.00 85 0.000000e+00 0.00 5.777744e+06 5.777744e+06 0.00 NULL
2022 City Council Legislative Clerk 23680.00000 4.736000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.736000e+04 4.736000e+04 0.00 NULL
2022 City Council Legislative Computer Support Specialist 87015.75000 6.961260e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.961260e+05 6.961260e+05 0.00 NULL
2022 City Council Legislative Coordinator 89886.00000 5.393160e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.393160e+05 5.393160e+05 0.00 NULL
2022 City Council Legislative Counsel 109115.72549 5.564902e+06 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 5.564902e+06 5.564902e+06 0.00 NULL
2022 City Council Legislative Financial Analyst 65200.00000 4.564000e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.564000e+05 4.564000e+05 0.00 NULL
2022 City Council Legislative Intern 4051.40893 2.835986e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.835986e+04 2.835986e+04 0.00 NULL
2022 City Council Legislative Investigator 69262.16667 4.155730e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.155730e+05 4.155730e+05 0.00 NULL
2022 City Council Legislative Policy Analyst 72664.90909 7.993140e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.993140e+05 7.993140e+05 0.00 NULL
2022 City Council Legislative Programmer/Analyst 80673.50000 8.067350e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 8.067350e+05 8.067350e+05 0.00 NULL
2022 City Council Legislative Project Manager 88792.85714 6.215500e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.215500e+05 6.215500e+05 0.00 NULL
2022 City Council Legislative Support Service Coord 66666.66667 2.000000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2022 City Council Legislative Systems Manager 135000.00000 4.050000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.050000e+05 4.050000e+05 0.00 NULL
2022 City Council Minority Leader 148500.00000 1.485000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.485000e+05 1.485000e+05 0.00 NULL
2022 City Council Principal Legislative Financial Analyst 120637.66667 1.085739e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.085739e+06 1.085739e+06 0.00 NULL
2022 City Council Senior Legislative Financial Analyst 75362.63636 8.289890e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 8.289890e+05 8.289890e+05 0.00 NULL
2022 City Council Senior Legislative Investigator 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2022 City Council Senior Legislative Policy Analyst 86992.53333 1.304888e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.304888e+06 1.304888e+06 0.00 NULL
2022 City Council Sergeant At Arms 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2022 City Council Speaker/Majority Leader 164500.00000 3.290000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.290000e+05 3.290000e+05 0.00 NULL
2022 City Council Special Advisor To The Director 145744.11111 1.311697e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.311697e+06 1.311697e+06 0.00 NULL
2022 Civil Service Commission Agency Attorney 86850.00000 1.737000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.737000e+05 1.737000e+05 0.00 NULL
2022 Civil Service Commission Agency Attorney Interne 62397.00000 1.247940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.247940e+05 1.247940e+05 0.00 NULL
2022 Civil Service Commission Chairman 1876.05180 1.876052e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.876052e+03 1.876052e+03 0.00 NULL
2022 Civil Service Commission Commissioner 1408.11300 4.224339e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.224339e+03 4.224339e+03 0.00 NULL
2022 Civil Service Commission Community Associate 52473.33333 1.574200e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.574200e+05 1.574200e+05 0.00 NULL
2022 Civil Service Commission Executive Agency Counsel 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2022 Civil Service Commission Secretary Of The Commission 117558.00000 1.175580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.175580e+05 1.175580e+05 0.00 NULL
2022 Civilian Complaint Review Bd Adm Manager-Non-Mgrl 112691.00000 1.126910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.126910e+05 1.126910e+05 0.00 NULL
2022 Civilian Complaint Review Bd Administrative Director Of Social Services 115689.60000 1.156896e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.156896e+05 1.156896e+05 0.00 NULL
2022 Civilian Complaint Review Bd Administrative Staff Analyst 151855.54500 3.037111e+05 212.19 1.060950e+02 106.095 0.00 2 1.060950e+02 212.19 3.039233e+05 3.039233e+05 0.00 NULL
2022 Civilian Complaint Review Bd Agency Attorney 87886.00000 4.394300e+05 1020.28 2.040560e+02 0.000 19.50 5 0.000000e+00 0.00 4.404503e+05 4.394300e+05 1020.28 NULL
2022 Civilian Complaint Review Bd Certified It Administrator 138860.00000 1.388600e+05 8908.90 8.908900e+03 8908.900 117.50 1 8.908900e+03 8908.90 1.477689e+05 1.477689e+05 0.00 NULL
2022 Civilian Complaint Review Bd Clerical Associate 58328.08333 1.749842e+05 3503.13 1.167710e+03 30.040 111.00 3 3.004000e+01 90.12 1.784874e+05 1.750744e+05 3413.01 NULL
2022 Civilian Complaint Review Bd Community Assistant 31811.04000 6.362208e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.362208e+04 6.362208e+04 0.00 NULL
2022 Civilian Complaint Review Bd Community Associate 55376.18979 3.322571e+05 16386.18 2.731030e+03 729.145 490.25 6 7.291450e+02 4374.87 3.486433e+05 3.366320e+05 12011.31 NULL
2022 Civilian Complaint Review Bd Community Coordinator 80330.26222 7.229724e+05 50700.87 5.633430e+03 3077.460 1176.00 9 3.077460e+03 27697.14 7.736732e+05 7.506695e+05 23003.73 NULL
2022 Civilian Complaint Review Bd Computer Operations Manager 140400.00000 1.404000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.404000e+05 1.404000e+05 0.00 NULL
2022 Civilian Complaint Review Bd Computer Specialist 120000.00000 1.200000e+05 8970.53 8.970530e+03 8970.530 124.50 1 8.970530e+03 8970.53 1.289705e+05 1.289705e+05 0.00 NULL
2022 Civilian Complaint Review Bd Computer Systems Manager 119000.00000 2.380000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.380000e+05 2.380000e+05 0.00 NULL
2022 Civilian Complaint Review Bd Deputy Assistant Director 135131.65375 2.162106e+06 20426.47 1.276654e+03 0.000 318.00 16 0.000000e+00 0.00 2.182533e+06 2.162106e+06 20426.47 NULL
2022 Civilian Complaint Review Bd Deputy Executive Director 185711.09000 3.714222e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.714222e+05 3.714222e+05 0.00 NULL
2022 Civilian Complaint Review Bd Executive Agency Counsel 136065.51208 3.265572e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 3.265572e+06 3.265572e+06 0.00 NULL
2022 Civilian Complaint Review Bd Executive Director 226385.43000 2.263854e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263854e+05 2.263854e+05 0.00 NULL
2022 Civilian Complaint Review Bd Investigative Manager 107656.99958 2.583768e+06 10332.17 4.305071e+02 0.000 217.50 24 0.000000e+00 0.00 2.594100e+06 2.583768e+06 10332.17 NULL
2022 Civilian Complaint Review Bd Investigator 56084.76589 7.571443e+06 79545.54 5.892262e+02 0.000 1948.75 135 0.000000e+00 0.00 7.650989e+06 7.571443e+06 79545.54 NULL
2022 Civilian Complaint Review Bd Media Services Technician 58300.00000 5.830000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.830000e+04 5.830000e+04 0.00 NULL
2022 Civilian Complaint Review Bd Member, Civilian Complaint Review Board 163.14000 1.631400e+03 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.631400e+03 1.631400e+03 0.00 NULL
2022 Civilian Complaint Review Bd Principal Administrative Associate - Non Supvr 59299.50000 1.185990e+05 1661.16 8.305800e+02 830.580 40.00 2 8.305800e+02 1661.16 1.202602e+05 1.202602e+05 0.00 NULL
2022 Civilian Complaint Review Bd Procurement Analyst 82106.75000 1.642135e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.642135e+05 1.642135e+05 0.00 NULL
2022 Civilian Complaint Review Bd Secretary 64467.00000 1.289340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.289340e+05 1.289340e+05 0.00 NULL
2022 Civilian Complaint Review Bd Special Officer 64580.55625 6.458056e+04 11907.12 1.190712e+04 11907.120 301.25 1 1.190712e+04 11907.12 7.648768e+04 7.648768e+04 0.00 NULL
2022 Civilian Complaint Review Bd Strategic Initiative Specialist 84254.00000 8.425400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.425400e+04 8.425400e+04 0.00 NULL
2022 Civilian Complaint Review Bd Supervisor Of Investigators 85358.94444 1.536461e+06 41280.47 2.293359e+03 242.915 821.00 18 2.429150e+02 4372.47 1.577741e+06 1.540833e+06 36908.00 NULL
2022 Community College (Bronx) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 122 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Bronx) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Bronx) Adjunct College Lab Tech 7400.54283 1.702125e+05 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 1.702125e+05 1.702125e+05 0.00 NULL
2022 Community College (Bronx) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 294 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Bronx) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Bronx) Adjunct Senior College Lab Tech 17824.04000 1.782404e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.782404e+04 1.782404e+04 0.00 NULL
2022 Community College (Bronx) Administrator 156191.50000 6.247660e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.247660e+05 6.247660e+05 0.00 NULL
2022 Community College (Bronx) Administrator Supt Campus B/G 96688.00000 9.668800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.668800e+04 9.668800e+04 0.00 NULL
2022 Community College (Bronx) Assistant College Security Director 82728.00000 8.272800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.272800e+04 8.272800e+04 0.00 NULL
2022 Community College (Bronx) Assistant Dean 128282.00000 1.282820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.282820e+05 1.282820e+05 0.00 NULL
2022 Community College (Bronx) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 96 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Bronx) Assistant Purchasing Agent 40170.00000 4.017000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.017000e+04 4.017000e+04 0.00 NULL
2022 Community College (Bronx) Assistant To Heo 69915.00000 2.167365e+06 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 2.167365e+06 2.167365e+06 0.00 NULL
2022 Community College (Bronx) Assistant Vice President 145123.00000 4.353690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.353690e+05 4.353690e+05 0.00 NULL
2022 Community College (Bronx) Associate Administrator 142000.00000 1.420000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.420000e+05 1.420000e+05 0.00 NULL
2022 Community College (Bronx) Associate Dean 141974.00000 2.839480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.839480e+05 2.839480e+05 0.00 NULL
2022 Community College (Bronx) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 133 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Bronx) Auto Mechanic NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Bronx) Business Data And Reporting Analyst 49898.00000 8.981640e+05 1748.74 9.715222e+01 0.000 48.50 18 0.000000e+00 0.00 8.999127e+05 8.981640e+05 1748.74 NULL
2022 Community College (Bronx) Campus Peace Officer 43545.75862 1.262827e+06 75264.24 2.595319e+03 2103.310 2475.25 29 2.103310e+03 60995.99 1.338091e+06 1.323823e+06 14268.25 NULL
2022 Community College (Bronx) Campus Public Safety Sergeant 60217.66667 3.613060e+05 40488.71 6.748118e+03 2808.645 939.25 6 2.808645e+03 16851.87 4.017947e+05 3.781579e+05 23636.84 NULL
2022 Community College (Bronx) Campus Security Assistant 33225.79283 4.983869e+05 36127.13 2.408475e+03 812.520 1378.97 15 8.125200e+02 12187.80 5.345140e+05 5.105747e+05 23939.33 NULL
2022 Community College (Bronx) Carpenter NA NA 1580.61 7.903050e+02 790.305 21.00 2 7.903050e+02 1580.61 NA NA NA NULL
2022 Community College (Bronx) Cement Mason NA NA 2982.20 1.491100e+03 1491.100 31.00 2 1.491100e+03 2982.20 NA NA NA NULL
2022 Community College (Bronx) Chief College Lab Technician 93805.33333 2.814160e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.814160e+05 2.814160e+05 0.00 NULL
2022 Community College (Bronx) City Laborer NA NA 110206.62 1.001878e+04 4640.000 2070.50 11 4.640000e+03 51040.00 NA NA NA NULL
2022 Community College (Bronx) Clip Instructor 59011.60000 5.901160e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.901160e+05 5.901160e+05 0.00 NULL
2022 Community College (Bronx) College Accountant 58837.50000 2.353500e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.353500e+05 2.353500e+05 0.00 NULL
2022 Community College (Bronx) College Accounting Assistant 47435.50000 9.487100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.487100e+04 9.487100e+04 0.00 NULL
2022 Community College (Bronx) College Assistant 8571.25471 1.902819e+06 189.00 8.513514e-01 0.000 7.00 222 0.000000e+00 0.00 1.903008e+06 1.902819e+06 189.00 NULL
2022 Community College (Bronx) College Graph Designer 64482.00000 6.448200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.448200e+04 6.448200e+04 0.00 NULL
2022 Community College (Bronx) College Lab Technician 56932.20000 8.539830e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 8.539830e+05 8.539830e+05 0.00 NULL
2022 Community College (Bronx) College Print Shop Assistant 39167.00000 3.916700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.916700e+04 3.916700e+04 0.00 NULL
2022 Community College (Bronx) College Print Shop Associate 45644.50000 9.128900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.128900e+04 9.128900e+04 0.00 NULL
2022 Community College (Bronx) College Security Director 110250.00000 1.102500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.102500e+05 1.102500e+05 0.00 NULL
2022 Community College (Bronx) College Security Specialist 65607.25000 2.624290e+05 7307.25 1.826812e+03 1672.455 151.50 4 1.672455e+03 6689.82 2.697362e+05 2.691188e+05 617.43 NULL
2022 Community College (Bronx) Computer Systems Manager 101310.33333 3.039310e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.039310e+05 3.039310e+05 0.00 NULL
2022 Community College (Bronx) Continuing Education Teacher 11070.39771 3.874639e+05 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 3.874639e+05 3.874639e+05 0.00 NULL
2022 Community College (Bronx) Cuny Administrator Assistant 56043.69231 7.285680e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 7.285680e+05 7.285680e+05 0.00 NULL
2022 Community College (Bronx) Cuny Custodial Assistant 34527.83333 1.450169e+06 10498.97 2.499755e+02 0.000 419.50 42 0.000000e+00 0.00 1.460668e+06 1.450169e+06 10498.97 NULL
2022 Community College (Bronx) Cuny Office Assistant 39825.88462 3.106419e+06 0.00 0.000000e+00 0.000 0.00 78 0.000000e+00 0.00 3.106419e+06 3.106419e+06 0.00 NULL
2022 Community College (Bronx) Cuny Start Instructor 73301.83333 4.398110e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.398110e+05 4.398110e+05 0.00 NULL
2022 Community College (Bronx) Custodial Supervisor 38873.00000 7.774600e+04 2279.69 1.139845e+03 1139.845 77.50 2 1.139845e+03 2279.69 8.002569e+04 8.002569e+04 0.00 NULL
2022 Community College (Bronx) Dean 155971.00000 3.119420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.119420e+05 3.119420e+05 0.00 NULL
2022 Community College (Bronx) Disability Accommodations Specialist 22943.30000 1.147165e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.147165e+05 1.147165e+05 0.00 NULL
2022 Community College (Bronx) Electrician NA NA 52969.99 2.648499e+04 26484.995 562.50 2 2.648499e+04 52969.99 NA NA NA NULL
2022 Community College (Bronx) Eoc Accounting Assistant 44601.00000 4.460100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.460100e+04 4.460100e+04 0.00 NULL
2022 Community College (Bronx) Eoc Adjunct College Lab Tech 4334.54000 4.334540e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.334540e+03 4.334540e+03 0.00 NULL
2022 Community College (Bronx) Eoc Adjunct Lecturer 11661.80643 1.632653e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.632653e+05 1.632653e+05 0.00 NULL
2022 Community College (Bronx) Eoc Administrative Assistant 57629.00000 1.152580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.152580e+05 1.152580e+05 0.00 NULL
2022 Community College (Bronx) Eoc Assistant To Heo 74222.33333 6.680010e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 6.680010e+05 6.680010e+05 0.00 NULL
2022 Community College (Bronx) Eoc College Lab Technician 72971.00000 7.297100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.297100e+04 7.297100e+04 0.00 NULL
2022 Community College (Bronx) Eoc Custodial Assistant 35567.33333 1.067020e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.067020e+05 1.067020e+05 0.00 NULL
2022 Community College (Bronx) Eoc Custodial Supervisor 42874.00000 4.287400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.287400e+04 4.287400e+04 0.00 NULL
2022 Community College (Bronx) Eoc Higher Education Assistant 97580.00000 9.758000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.758000e+04 9.758000e+04 0.00 NULL
2022 Community College (Bronx) Eoc Higher Education Associate 100191.50000 2.003830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.003830e+05 2.003830e+05 0.00 NULL
2022 Community College (Bronx) Eoc Higher Education Officer 105699.00000 3.170970e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.170970e+05 3.170970e+05 0.00 NULL
2022 Community College (Bronx) Eoc It Support Assistant 38928.00000 3.892800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.892800e+04 3.892800e+04 0.00 NULL
2022 Community College (Bronx) Eoc Lecturer 85069.66667 2.552090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.552090e+05 2.552090e+05 0.00 NULL
2022 Community College (Bronx) Eoc Office Assistant 39113.28571 2.737930e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.737930e+05 2.737930e+05 0.00 NULL
2022 Community College (Bronx) High Pressure Plant Tender NA NA 128714.20 3.217855e+04 25192.000 2287.50 4 2.519200e+04 100768.00 NA NA NA NULL
2022 Community College (Bronx) Higher Education Assistant 83947.25773 8.142884e+06 0.00 0.000000e+00 0.000 0.00 97 0.000000e+00 0.00 8.142884e+06 8.142884e+06 0.00 NULL
2022 Community College (Bronx) Higher Education Associate 103926.26667 3.117788e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 3.117788e+06 3.117788e+06 0.00 NULL
2022 Community College (Bronx) Higher Education Officer 126957.57143 4.443515e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 4.443515e+06 4.443515e+06 0.00 NULL
2022 Community College (Bronx) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Bronx) It Assistant 60068.25000 4.805460e+05 3573.07 4.466338e+02 107.120 90.50 8 1.071200e+02 856.96 4.841191e+05 4.814030e+05 2716.11 NULL
2022 Community College (Bronx) It Associate 85098.16667 5.105890e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.105890e+05 5.105890e+05 0.00 NULL
2022 Community College (Bronx) It Senior Associate 110017.50000 2.200350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.200350e+05 2.200350e+05 0.00 NULL
2022 Community College (Bronx) It Support Assistant 31304.11904 1.095644e+06 5683.40 1.623829e+02 0.000 198.00 35 0.000000e+00 0.00 1.101328e+06 1.095644e+06 5683.40 NULL
2022 Community College (Bronx) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 57 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Bronx) Lecturer/Doctoral Schedule 82718.00000 1.654360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.654360e+05 1.654360e+05 0.00 NULL
2022 Community College (Bronx) Locksmith NA NA 11290.32 1.129032e+04 11290.320 256.50 1 1.129032e+04 11290.32 NA NA NA NULL
2022 Community College (Bronx) Machinist NA NA 8676.92 8.676920e+03 8676.920 155.50 1 8.676920e+03 8676.92 NA NA NA NULL
2022 Community College (Bronx) Mail/Message Services Worker 38406.00000 7.681200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.681200e+04 7.681200e+04 0.00 NULL
2022 Community College (Bronx) Maintenance Worker NA NA 21339.30 5.334825e+03 3530.115 457.50 4 3.530115e+03 14120.46 NA NA NA NULL
2022 Community College (Bronx) Motor Vehicle Operator 44084.00000 8.816800e+04 1135.95 5.679750e+02 567.975 33.00 2 5.679750e+02 1135.95 8.930395e+04 8.930395e+04 0.00 NULL
2022 Community College (Bronx) Non-Teaching Adjunct Ii 5012.20629 3.107568e+05 0.00 0.000000e+00 0.000 0.00 62 0.000000e+00 0.00 3.107568e+05 3.107568e+05 0.00 NULL
2022 Community College (Bronx) Non-Teaching Adjunct Iii 1055.08523 4.536867e+04 0.00 0.000000e+00 0.000 0.00 43 0.000000e+00 0.00 4.536867e+04 4.536867e+04 0.00 NULL
2022 Community College (Bronx) Non-Teaching Adjunct Iv 1169.42400 1.169424e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.169424e+04 1.169424e+04 0.00 NULL
2022 Community College (Bronx) Non-Teaching Adjunct V 1951.21235 3.317061e+04 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 3.317061e+04 3.317061e+04 0.00 NULL
2022 Community College (Bronx) Painter NA NA 2329.68 4.659360e+02 17.010 33.75 5 1.701000e+01 85.05 NA NA NA NULL
2022 Community College (Bronx) Plumber NA NA 10848.35 5.424175e+03 5424.175 102.75 2 5.424175e+03 10848.35 NA NA NA NULL
2022 Community College (Bronx) Plumber’s Helper NA NA 7814.93 3.907465e+03 3907.465 105.75 2 3.907465e+03 7814.93 NA NA NA NULL
2022 Community College (Bronx) President 270000.00000 2.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.700000e+05 2.700000e+05 0.00 NULL
2022 Community College (Bronx) Principal Custodial Supervisor 65774.00000 6.577400e+04 2570.65 2.570650e+03 2570.650 53.75 1 2.570650e+03 2570.65 6.834465e+04 6.834465e+04 0.00 NULL
2022 Community College (Bronx) Professor NA NA 0.00 0.000000e+00 0.000 0.00 112 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Bronx) Project Manager 114949.00000 1.149490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.149490e+05 1.149490e+05 0.00 NULL
2022 Community College (Bronx) Senior College Lab Tech 76376.07692 9.928890e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 9.928890e+05 9.928890e+05 0.00 NULL
2022 Community College (Bronx) Senior Custodial Supervisor 41913.00000 8.382600e+04 1542.47 7.712350e+02 771.235 48.50 2 7.712350e+02 1542.47 8.536847e+04 8.536847e+04 0.00 NULL
2022 Community College (Bronx) Senior Stationary Engineer NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Bronx) Senior Vice President 218820.00000 2.188200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.188200e+05 2.188200e+05 0.00 NULL
2022 Community College (Bronx) Sr College Laboratory Tech 7458.94000 7.458940e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.458940e+03 7.458940e+03 0.00 NULL
2022 Community College (Bronx) Stationary Engineer NA NA 250997.40 2.788860e+04 19843.200 2639.00 9 1.984320e+04 178588.80 NA NA NA NULL
2022 Community College (Bronx) Steam Fitter NA NA 22385.00 1.119250e+04 11192.500 203.50 2 1.119250e+04 22385.00 NA NA NA NULL
2022 Community College (Bronx) Stock Worker 37486.80000 1.874340e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.874340e+05 1.874340e+05 0.00 NULL
2022 Community College (Bronx) Supervisor Carpenter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Bronx) Supervisor Electrician NA NA 101517.00 1.015170e+05 101517.000 996.50 1 1.015170e+05 101517.00 NA NA NA NULL
2022 Community College (Bronx) Supervisor Painter NA NA 3.27 3.270000e+00 3.270 0.00 1 3.270000e+00 3.27 NA NA NA NULL
2022 Community College (Bronx) Thermostat Repairer NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Bronx) University Professor 167670.00000 1.676700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.676700e+05 1.676700e+05 0.00 NULL
2022 Community College (Bronx) Vice President 177522.20000 8.876110e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.876110e+05 8.876110e+05 0.00 NULL
2022 Community College (Hostos) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 140 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Hostos) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Hostos) Adjunct College Lab Tech 11494.22778 1.034481e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.034481e+05 1.034481e+05 0.00 NULL
2022 Community College (Hostos) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 180 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Hostos) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Hostos) Administrator 154704.00000 1.547040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.547040e+05 1.547040e+05 0.00 NULL
2022 Community College (Hostos) Administrator Supt Campus B/G 91120.00000 9.112000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.112000e+04 9.112000e+04 0.00 NULL
2022 Community College (Hostos) Assistant Administrator 130000.00000 3.900000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.900000e+05 3.900000e+05 0.00 NULL
2022 Community College (Hostos) Assistant College Security Director 77287.00000 7.728700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.728700e+04 7.728700e+04 0.00 NULL
2022 Community College (Hostos) Assistant Dean 123580.50000 2.471610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.471610e+05 2.471610e+05 0.00 NULL
2022 Community College (Hostos) Assistant Principal Custodial Supervisor 47155.00000 4.715500e+04 809.59 8.095900e+02 809.590 23.50 1 8.095900e+02 809.59 4.796459e+04 4.796459e+04 0.00 NULL
2022 Community College (Hostos) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 75 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Hostos) Assistant To Heo 57103.16949 3.369087e+06 562.05 9.526271e+00 0.000 12.00 59 0.000000e+00 0.00 3.369649e+06 3.369087e+06 562.05 NULL
2022 Community College (Hostos) Assistant Vice President 160833.00000 1.608330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.608330e+05 1.608330e+05 0.00 NULL
2022 Community College (Hostos) Associate Administrator 134574.00000 1.345740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.345740e+05 1.345740e+05 0.00 NULL
2022 Community College (Hostos) Associate Dean 132500.00000 1.325000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.325000e+05 1.325000e+05 0.00 NULL
2022 Community College (Hostos) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 66 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Hostos) Business Data And Reporting Analyst 55608.00000 1.112160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.112160e+05 1.112160e+05 0.00 NULL
2022 Community College (Hostos) Campus Peace Officer 42555.79167 1.021339e+06 341534.40 1.423060e+04 10393.180 10034.95 24 1.039318e+04 249436.32 1.362873e+06 1.270775e+06 92098.08 NULL
2022 Community College (Hostos) Campus Public Safety Sergeant 59951.75000 2.398070e+05 118515.81 2.962895e+04 30727.905 2740.75 4 2.962895e+04 118515.81 3.583228e+05 3.583228e+05 0.00 NULL
2022 Community College (Hostos) Campus Security Assistant 32285.63750 3.228564e+05 78090.43 7.809043e+03 8433.210 3031.45 10 7.809043e+03 78090.43 4.009468e+05 4.009468e+05 0.00 NULL
2022 Community College (Hostos) Chief Administrative Supt Campus B/G 142233.00000 1.422330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.422330e+05 1.422330e+05 0.00 NULL
2022 Community College (Hostos) City Laborer NA NA 11319.14 3.773047e+03 2963.480 208.17 3 2.963480e+03 8890.44 NA NA NA NULL
2022 Community College (Hostos) Clip Instructor 65388.50000 5.231080e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.231080e+05 5.231080e+05 0.00 NULL
2022 Community College (Hostos) College Accountant 63799.00000 6.379900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.379900e+04 6.379900e+04 0.00 NULL
2022 Community College (Hostos) College Accounting Assistant 47435.50000 9.487100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.487100e+04 9.487100e+04 0.00 NULL
2022 Community College (Hostos) College Assistant 6945.91859 1.805939e+06 0.00 0.000000e+00 0.000 0.00 260 0.000000e+00 0.00 1.805939e+06 1.805939e+06 0.00 NULL
2022 Community College (Hostos) College Lab Technician 68779.55556 6.190160e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 6.190160e+05 6.190160e+05 0.00 NULL
2022 Community College (Hostos) College Print Shop Assistant 39183.00000 3.918300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.918300e+04 3.918300e+04 0.00 NULL
2022 Community College (Hostos) College Security Director 137913.00000 1.379130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.379130e+05 1.379130e+05 0.00 NULL
2022 Community College (Hostos) College Security Specialist 63124.00000 1.262480e+05 8627.21 4.313605e+03 4313.605 190.25 2 4.313605e+03 8627.21 1.348752e+05 1.348752e+05 0.00 NULL
2022 Community College (Hostos) Computer Systems Manager 115000.00000 2.300000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.300000e+05 2.300000e+05 0.00 NULL
2022 Community College (Hostos) Continuing Education Teacher 10873.60281 7.937730e+05 0.00 0.000000e+00 0.000 0.00 73 0.000000e+00 0.00 7.937730e+05 7.937730e+05 0.00 NULL
2022 Community College (Hostos) Cuny Administrator Assistant 60207.42857 4.214520e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.214520e+05 4.214520e+05 0.00 NULL
2022 Community College (Hostos) Cuny Custodial Assistant 34502.50000 1.104080e+06 20376.55 6.367672e+02 244.400 800.00 32 2.444000e+02 7820.80 1.124457e+06 1.111901e+06 12555.75 NULL
2022 Community College (Hostos) Cuny Office Assistant 40338.13725 2.057245e+06 790.74 1.550471e+01 0.000 27.50 51 0.000000e+00 0.00 2.058036e+06 2.057245e+06 790.74 NULL
2022 Community College (Hostos) Cuny Start Instructor 68971.81818 7.586900e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.586900e+05 7.586900e+05 0.00 NULL
2022 Community College (Hostos) Custodial Supervisor 38127.66667 2.287660e+05 13324.76 2.220793e+03 2573.355 483.00 6 2.220793e+03 13324.76 2.420908e+05 2.420908e+05 0.00 NULL
2022 Community College (Hostos) Dean 137796.66667 4.133900e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.133900e+05 4.133900e+05 0.00 NULL
2022 Community College (Hostos) Disability Accommodations Specialist 18620.13357 1.303409e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.303409e+05 1.303409e+05 0.00 NULL
2022 Community College (Hostos) Electrician NA NA 9617.03 4.808515e+03 4808.515 98.00 2 4.808515e+03 9617.03 NA NA NA NULL
2022 Community College (Hostos) Electricians Helper NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Hostos) High Pressure Plant Tender NA NA 17360.05 1.736005e+04 17360.050 274.25 1 1.736005e+04 17360.05 NA NA NA NULL
2022 Community College (Hostos) Higher Education Assistant 77338.60638 7.269829e+06 0.00 0.000000e+00 0.000 0.00 94 0.000000e+00 0.00 7.269829e+06 7.269829e+06 0.00 NULL
2022 Community College (Hostos) Higher Education Associate 101185.13953 4.350961e+06 0.00 0.000000e+00 0.000 0.00 43 0.000000e+00 0.00 4.350961e+06 4.350961e+06 0.00 NULL
2022 Community College (Hostos) Higher Education Officer 128953.88889 4.642340e+06 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 4.642340e+06 4.642340e+06 0.00 NULL
2022 Community College (Hostos) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Hostos) It Assistant 49322.81000 7.891650e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 7.891650e+05 7.891650e+05 0.00 NULL
2022 Community College (Hostos) It Senior Associate 100152.33333 3.004570e+05 458.61 1.528700e+02 0.000 5.00 3 0.000000e+00 0.00 3.009156e+05 3.004570e+05 458.61 NULL
2022 Community College (Hostos) It Support Assistant 28607.54400 2.860754e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 2.860754e+05 2.860754e+05 0.00 NULL
2022 Community College (Hostos) Lead Theatre Technician 4252.96472 7.655337e+04 2869.20 1.594000e+02 79.500 80.00 18 7.950000e+01 1431.00 7.942257e+04 7.798437e+04 1438.20 NULL
2022 Community College (Hostos) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 46 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Hostos) Lecturer/Doctoral Schedule 87223.00000 1.744460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.744460e+05 1.744460e+05 0.00 NULL
2022 Community College (Hostos) Locksmith NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Hostos) Mail/Message Services Worker 39704.50000 1.588180e+05 107.52 2.688000e+01 0.000 4.00 4 0.000000e+00 0.00 1.589255e+05 1.588180e+05 107.52 NULL
2022 Community College (Hostos) Maintenance Worker NA NA 49716.38 7.102340e+03 2664.180 1093.75 7 2.664180e+03 18649.26 NA NA NA NULL
2022 Community College (Hostos) Non-Teaching Adjunct I 6231.56146 2.243362e+05 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 2.243362e+05 2.243362e+05 0.00 NULL
2022 Community College (Hostos) Non-Teaching Adjunct Ii 8512.42500 8.512425e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 8.512425e+04 8.512425e+04 0.00 NULL
2022 Community College (Hostos) Non-Teaching Adjunct Iii 3198.20292 3.837843e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 3.837843e+04 3.837843e+04 0.00 NULL
2022 Community College (Hostos) Non-Teaching Adjunct Iv 5209.93875 4.167951e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.167951e+04 4.167951e+04 0.00 NULL
2022 Community College (Hostos) Non-Teaching Adjunct V 11825.48357 8.277838e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.277838e+04 8.277838e+04 0.00 NULL
2022 Community College (Hostos) Oiler NA NA 20882.64 2.088264e+04 20882.640 233.00 1 2.088264e+04 20882.64 NA NA NA NULL
2022 Community College (Hostos) Painter NA NA 95.85 3.195000e+01 11.460 1.25 3 1.146000e+01 34.38 NA NA NA NULL
2022 Community College (Hostos) Plumber NA NA 211.16 1.055800e+02 105.580 2.00 2 1.055800e+02 211.16 NA NA NA NULL
2022 Community College (Hostos) Plumber’s Helper NA NA 775.95 7.759500e+02 775.950 10.50 1 7.759500e+02 775.95 NA NA NA NULL
2022 Community College (Hostos) President 278000.00000 2.780000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.780000e+05 2.780000e+05 0.00 NULL
2022 Community College (Hostos) Principal Custodial Supervisor 75198.00000 7.519800e+04 4749.92 4.749920e+03 4749.920 87.00 1 4.749920e+03 4749.92 7.994792e+04 7.994792e+04 0.00 NULL
2022 Community College (Hostos) Professor NA NA 0.00 0.000000e+00 0.000 0.00 67 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Hostos) Senior College Lab Tech 76656.00000 3.066240e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.066240e+05 3.066240e+05 0.00 NULL
2022 Community College (Hostos) Senior Custodial Supervisor 41913.00000 4.191300e+04 1445.21 1.445210e+03 1445.210 48.00 1 1.445210e+03 1445.21 4.335821e+04 4.335821e+04 0.00 NULL
2022 Community College (Hostos) Senior Stationary Engineer NA NA 18622.60 1.862260e+04 18622.600 176.25 1 1.862260e+04 18622.60 NA NA NA NULL
2022 Community College (Hostos) Senior Vice President 216250.00000 2.162500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.162500e+05 2.162500e+05 0.00 NULL
2022 Community College (Hostos) Staff Nurse 73279.00000 7.327900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.327900e+04 7.327900e+04 0.00 NULL
2022 Community College (Hostos) Stationary Engineer NA NA 184287.36 3.685747e+04 34151.610 1931.73 5 3.415161e+04 170758.05 NA NA NA NULL
2022 Community College (Hostos) Stock Worker 40272.00000 4.027200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.027200e+04 4.027200e+04 0.00 NULL
2022 Community College (Hostos) Student Aide 1033.82667 3.101480e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.101480e+03 3.101480e+03 0.00 NULL
2022 Community College (Hostos) Supervisor Thermostat Repair NA NA 34113.99 3.411399e+04 34113.990 308.50 1 3.411399e+04 34113.99 NA NA NA NULL
2022 Community College (Hostos) Vice President 171666.66667 5.150000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.150000e+05 5.150000e+05 0.00 NULL
2022 Community College (Kingsboro) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 93 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Kingsboro) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Kingsboro) Adjunct College Lab Tech 11198.15227 8.622577e+05 0.00 0.000000e+00 0.000 0.00 77 0.000000e+00 0.00 8.622577e+05 8.622577e+05 0.00 NULL
2022 Community College (Kingsboro) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 474 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Kingsboro) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Kingsboro) Adjunct Senior College Lab Tech 15393.20250 3.078640e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.078640e+04 3.078640e+04 0.00 NULL
2022 Community College (Kingsboro) Administrator Supt Campus B/G 96201.50000 1.924030e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.924030e+05 1.924030e+05 0.00 NULL
2022 Community College (Kingsboro) Assistant Administrator 137100.00000 2.742000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.742000e+05 2.742000e+05 0.00 NULL
2022 Community College (Kingsboro) Assistant College Security Director 76006.66667 2.280200e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.280200e+05 2.280200e+05 0.00 NULL
2022 Community College (Kingsboro) Assistant Dean 130000.00000 2.600000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.600000e+05 2.600000e+05 0.00 NULL
2022 Community College (Kingsboro) Assistant Principal Custodial Supervisor 47165.00000 9.433000e+04 797.28 3.986400e+02 398.640 23.50 2 3.986400e+02 797.28 9.512728e+04 9.512728e+04 0.00 NULL
2022 Community College (Kingsboro) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 160 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Kingsboro) Assistant Purchasing Agent 45396.00000 4.539600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.539600e+04 4.539600e+04 0.00 NULL
2022 Community College (Kingsboro) Assistant To Heo 65946.32692 3.429209e+06 1026.67 1.974365e+01 0.000 18.50 52 0.000000e+00 0.00 3.430236e+06 3.429209e+06 1026.67 NULL
2022 Community College (Kingsboro) Assistant Vice President 166944.33333 5.008330e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.008330e+05 5.008330e+05 0.00 NULL
2022 Community College (Kingsboro) Associate Administrator 147852.00000 2.957040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.957040e+05 2.957040e+05 0.00 NULL
2022 Community College (Kingsboro) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 122 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Kingsboro) Auto Mechanic NA NA 1855.35 9.276750e+02 927.675 28.50 2 9.276750e+02 1855.35 NA NA NA NULL
2022 Community College (Kingsboro) Campus Peace Officer 43249.44000 1.081236e+06 70989.52 2.839581e+03 1578.200 2321.00 25 1.578200e+03 39455.00 1.152226e+06 1.120691e+06 31534.52 NULL
2022 Community College (Kingsboro) Campus Public Safety Sergeant 60406.00000 5.436540e+05 111426.97 1.238077e+04 10848.550 2541.25 9 1.084855e+04 97636.95 6.550810e+05 6.412909e+05 13790.02 NULL
2022 Community College (Kingsboro) Campus Security Assistant 35505.11111 3.195460e+05 32095.00 3.566111e+03 1567.690 1255.25 9 1.567690e+03 14109.21 3.516410e+05 3.336552e+05 17985.79 NULL
2022 Community College (Kingsboro) Carpenter NA NA 72922.39 2.430746e+04 33299.970 869.00 3 2.430746e+04 72922.39 NA NA NA NULL
2022 Community College (Kingsboro) Chief Administrative Supt Campus B/G 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2022 Community College (Kingsboro) Chief College Lab Technician 76316.42857 5.342150e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.342150e+05 5.342150e+05 0.00 NULL
2022 Community College (Kingsboro) City Laborer NA NA 75074.14 6.256178e+03 6955.495 1342.00 12 6.256178e+03 75074.14 NA NA NA NULL
2022 Community College (Kingsboro) Clip Instructor 65207.57143 4.564530e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.564530e+05 4.564530e+05 0.00 NULL
2022 Community College (Kingsboro) College Accountant 61430.50000 1.228610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.228610e+05 1.228610e+05 0.00 NULL
2022 Community College (Kingsboro) College Accounting Assistant 44775.00000 1.343250e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.343250e+05 1.343250e+05 0.00 NULL
2022 Community College (Kingsboro) College Assistant 8890.65811 2.347134e+06 0.00 0.000000e+00 0.000 0.00 264 0.000000e+00 0.00 2.347134e+06 2.347134e+06 0.00 NULL
2022 Community College (Kingsboro) College Lab Technician 54010.08667 9.721816e+05 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 9.721816e+05 9.721816e+05 0.00 NULL
2022 Community College (Kingsboro) College Print Shop Assistant 40114.00000 1.203420e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.203420e+05 1.203420e+05 0.00 NULL
2022 Community College (Kingsboro) College Print Shop Associate 51608.00000 5.160800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.160800e+04 5.160800e+04 0.00 NULL
2022 Community College (Kingsboro) College Print Shop Coordinator 64417.00000 6.441700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.441700e+04 6.441700e+04 0.00 NULL
2022 Community College (Kingsboro) College Security Director 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2022 Community College (Kingsboro) College Security Specialist 63124.00000 1.262480e+05 10395.93 5.197965e+03 5197.965 229.25 2 5.197965e+03 10395.93 1.366439e+05 1.366439e+05 0.00 NULL
2022 Community College (Kingsboro) Computer Operator Manager 91908.00000 1.838160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.838160e+05 1.838160e+05 0.00 NULL
2022 Community College (Kingsboro) Computer Systems Manager 103466.00000 3.103980e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.103980e+05 3.103980e+05 0.00 NULL
2022 Community College (Kingsboro) Continuing Education Teacher NA NA 0.00 0.000000e+00 0.000 0.00 174 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Kingsboro) Cuny Administrator Assistant 54556.20000 1.091124e+06 1970.91 9.854550e+01 0.000 54.25 20 0.000000e+00 0.00 1.093095e+06 1.091124e+06 1970.91 NULL
2022 Community College (Kingsboro) Cuny Broadcast Associate 61875.00000 6.187500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.187500e+04 6.187500e+04 0.00 NULL
2022 Community College (Kingsboro) Cuny Custodial Assistant 28735.26535 2.643644e+06 45632.14 4.960015e+02 260.250 1824.75 92 2.602500e+02 23943.00 2.689277e+06 2.667587e+06 21689.14 NULL
2022 Community College (Kingsboro) Cuny Office Assistant 39670.95349 1.705851e+06 206.81 4.809535e+00 0.000 9.00 43 0.000000e+00 0.00 1.706058e+06 1.705851e+06 206.81 NULL
2022 Community College (Kingsboro) Cuny Start Instructor 69080.16667 4.144810e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.144810e+05 4.144810e+05 0.00 NULL
2022 Community College (Kingsboro) Custodial Supervisor 38877.00000 1.555080e+05 8273.18 2.068295e+03 1744.650 292.25 4 1.744650e+03 6978.60 1.637812e+05 1.624866e+05 1294.58 NULL
2022 Community College (Kingsboro) Dean 153969.50000 6.158780e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.158780e+05 6.158780e+05 0.00 NULL
2022 Community College (Kingsboro) Disability Accommodations Specialist 24606.10000 2.460610e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.460610e+04 2.460610e+04 0.00 NULL
2022 Community College (Kingsboro) Electrician NA NA 60520.42 3.026021e+04 30260.210 635.00 2 3.026021e+04 60520.42 NA NA NA NULL
2022 Community College (Kingsboro) Electricians Helper NA NA 14268.03 1.426803e+04 14268.030 233.50 1 1.426803e+04 14268.03 NA NA NA NULL
2022 Community College (Kingsboro) Facilities Coordinator 75430.50000 1.508610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.508610e+05 1.508610e+05 0.00 NULL
2022 Community College (Kingsboro) High Pressure Plant Tender NA NA 85795.60 8.579560e+03 4332.550 1581.00 10 4.332550e+03 43325.50 NA NA NA NULL
2022 Community College (Kingsboro) Higher Education Assistant 79484.16162 7.868932e+06 510.04 5.151919e+00 0.000 9.50 99 0.000000e+00 0.00 7.869442e+06 7.868932e+06 510.04 NULL
2022 Community College (Kingsboro) Higher Education Associate 100696.12727 5.538287e+06 0.00 0.000000e+00 0.000 0.00 55 0.000000e+00 0.00 5.538287e+06 5.538287e+06 0.00 NULL
2022 Community College (Kingsboro) Higher Education Officer 124726.51020 6.111599e+06 133.78 2.730204e+00 0.000 2.00 49 0.000000e+00 0.00 6.111733e+06 6.111599e+06 133.78 NULL
2022 Community College (Kingsboro) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Kingsboro) It Assistant 60372.50000 1.207450e+06 11113.05 5.556525e+02 0.000 317.50 20 0.000000e+00 0.00 1.218563e+06 1.207450e+06 11113.05 NULL
2022 Community College (Kingsboro) It Associate 76428.75000 3.057150e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.057150e+05 3.057150e+05 0.00 NULL
2022 Community College (Kingsboro) It Senior Associate 104579.50000 2.091590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.091590e+05 2.091590e+05 0.00 NULL
2022 Community College (Kingsboro) It Support Assistant 44355.50000 3.548440e+05 3358.04 4.197550e+02 0.000 126.00 8 0.000000e+00 0.00 3.582020e+05 3.548440e+05 3358.04 NULL
2022 Community College (Kingsboro) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 182 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Kingsboro) Lecturer/Doctoral Schedule 90849.00000 1.090188e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.090188e+06 1.090188e+06 0.00 NULL
2022 Community College (Kingsboro) Locksmith NA NA 1139.35 1.139350e+03 1139.350 26.50 1 1.139350e+03 1139.35 NA NA NA NULL
2022 Community College (Kingsboro) Mail/Message Services Worker 37232.20000 1.861610e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.861610e+05 1.861610e+05 0.00 NULL
2022 Community College (Kingsboro) Maintenance Worker NA NA 72662.73 1.038039e+04 12806.760 1562.00 7 1.038039e+04 72662.73 NA NA NA NULL
2022 Community College (Kingsboro) Media Services Technician 69832.00000 6.983200e+04 2636.52 2.636520e+03 2636.520 54.50 1 2.636520e+03 2636.52 7.246852e+04 7.246852e+04 0.00 NULL
2022 Community College (Kingsboro) Non-Teaching Adjunct I 6445.95576 1.495462e+06 0.00 0.000000e+00 0.000 0.00 232 0.000000e+00 0.00 1.495462e+06 1.495462e+06 0.00 NULL
2022 Community College (Kingsboro) Non-Teaching Adjunct Iii 3155.62370 1.325362e+05 0.00 0.000000e+00 0.000 0.00 42 0.000000e+00 0.00 1.325362e+05 1.325362e+05 0.00 NULL
2022 Community College (Kingsboro) Non-Teaching Adjunct Iv 13304.28840 1.463472e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.463472e+05 1.463472e+05 0.00 NULL
2022 Community College (Kingsboro) Non-Teaching Adjunct V 4504.15164 6.756227e+04 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 6.756227e+04 6.756227e+04 0.00 NULL
2022 Community College (Kingsboro) Oiler NA NA 20882.75 1.044138e+04 10441.375 233.00 2 1.044138e+04 20882.75 NA NA NA NULL
2022 Community College (Kingsboro) Painter NA NA 74155.18 3.531199e+03 51.570 1029.00 21 5.157000e+01 1082.97 NA NA NA NULL
2022 Community College (Kingsboro) Plumber NA NA 28612.18 9.537393e+03 9185.460 271.00 3 9.185460e+03 27556.38 NA NA NA NULL
2022 Community College (Kingsboro) President 270000.00000 2.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.700000e+05 2.700000e+05 0.00 NULL
2022 Community College (Kingsboro) Principal Custodial Supervisor 65598.00000 6.559800e+04 4582.84 4.582840e+03 4582.840 97.25 1 4.582840e+03 4582.84 7.018084e+04 7.018084e+04 0.00 NULL
2022 Community College (Kingsboro) Professor NA NA 0.00 0.000000e+00 0.000 0.00 144 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Kingsboro) Project Manager 107428.00000 1.074280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074280e+05 1.074280e+05 0.00 NULL
2022 Community College (Kingsboro) Purchasing Agent 63070.50000 1.261410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.261410e+05 1.261410e+05 0.00 NULL
2022 Community College (Kingsboro) Senior College Lab Tech 75005.00000 9.000600e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 9.000600e+05 9.000600e+05 0.00 NULL
2022 Community College (Kingsboro) Senior Custodial Supervisor 41913.00000 4.191300e+04 444.11 4.441100e+02 444.110 14.75 1 4.441100e+02 444.11 4.235711e+04 4.235711e+04 0.00 NULL
2022 Community College (Kingsboro) Senior Stationary Engineer NA NA 28570.29 2.857029e+04 28570.290 267.00 1 2.857029e+04 28570.29 NA NA NA NULL
2022 Community College (Kingsboro) Senior Vice President 198000.00000 1.980000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.980000e+05 1.980000e+05 0.00 NULL
2022 Community College (Kingsboro) Sign Language Interpreter 1336.39500 2.672790e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.672790e+03 2.672790e+03 0.00 NULL
2022 Community College (Kingsboro) Sr College Laboratory Tech 3541.06500 1.416426e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.416426e+04 1.416426e+04 0.00 NULL
2022 Community College (Kingsboro) Staff Nurse 18163.40568 1.997975e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.997975e+05 1.997975e+05 0.00 NULL
2022 Community College (Kingsboro) Stationary Engineer NA NA 165837.00 2.763950e+04 16504.200 1749.00 6 1.650420e+04 99025.20 NA NA NA NULL
2022 Community College (Kingsboro) Stock Worker 36516.00000 1.095480e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.095480e+05 1.095480e+05 0.00 NULL
2022 Community College (Kingsboro) Supervisor Of Stock Workers 50992.00000 5.099200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.099200e+04 5.099200e+04 0.00 NULL
2022 Community College (Kingsboro) Supervisor Painter NA NA 243.36 2.433600e+02 243.360 0.00 1 2.433600e+02 243.36 NA NA NA NULL
2022 Community College (Kingsboro) Thermostat Repairer NA NA 1372.54 1.372540e+03 1372.540 13.00 1 1.372540e+03 1372.54 NA NA NA NULL
2022 Community College (Kingsboro) University Architect 114610.00000 1.146100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.146100e+05 1.146100e+05 0.00 NULL
2022 Community College (Kingsboro) Vice President 176075.85714 1.232531e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.232531e+06 1.232531e+06 0.00 NULL
2022 Community College (Kingsboro) NA 55092.00000 1.101840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.101840e+05 1.101840e+05 0.00 NULL
2022 Community College (Laguardia) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 211 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Laguardia) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Laguardia) Adjunct College Lab Tech 9245.06696 6.748899e+05 0.00 0.000000e+00 0.000 0.00 73 0.000000e+00 0.00 6.748899e+05 6.748899e+05 0.00 NULL
2022 Community College (Laguardia) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 580 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Laguardia) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Laguardia) Administrator 162057.50000 3.241150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.241150e+05 3.241150e+05 0.00 NULL
2022 Community College (Laguardia) Administrator Supt Campus B/G 81095.33333 2.432860e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.432860e+05 2.432860e+05 0.00 NULL
2022 Community College (Laguardia) Assistant Administrator 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2022 Community College (Laguardia) Assistant College Security Director 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2022 Community College (Laguardia) Assistant Dean 136250.00000 5.450000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.450000e+05 5.450000e+05 0.00 NULL
2022 Community College (Laguardia) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 64 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Laguardia) Assistant To Heo 64788.51807 5.377447e+06 0.00 0.000000e+00 0.000 0.00 83 0.000000e+00 0.00 5.377447e+06 5.377447e+06 0.00 NULL
2022 Community College (Laguardia) Associate Administrator 152500.00000 7.625000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.625000e+05 7.625000e+05 0.00 NULL
2022 Community College (Laguardia) Associate Dean 147792.40000 7.389620e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.389620e+05 7.389620e+05 0.00 NULL
2022 Community College (Laguardia) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 178 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Laguardia) Business Data And Reporting Analyst 42542.92250 3.403434e+05 121.75 1.521875e+01 0.000 4.00 8 0.000000e+00 0.00 3.404651e+05 3.403434e+05 121.75 NULL
2022 Community College (Laguardia) Campus Peace Officer 46155.24138 1.338502e+06 26650.05 9.189672e+02 518.800 808.25 29 5.188000e+02 15045.20 1.365152e+06 1.353547e+06 11604.85 NULL
2022 Community College (Laguardia) Campus Public Safety Sergeant 60114.14286 4.207990e+05 18469.62 2.638517e+03 2508.950 427.75 7 2.508950e+03 17562.65 4.392686e+05 4.383617e+05 906.97 NULL
2022 Community College (Laguardia) Campus Security Assistant 36005.36364 1.188177e+06 24572.85 7.446318e+02 397.940 965.75 33 3.979400e+02 13132.02 1.212750e+06 1.201309e+06 11440.83 NULL
2022 Community College (Laguardia) Chief Administrative Supt Campus B/G 116000.00000 1.160000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.160000e+05 1.160000e+05 0.00 NULL
2022 Community College (Laguardia) Chief College Lab Technician 93497.66667 8.414790e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.414790e+05 8.414790e+05 0.00 NULL
2022 Community College (Laguardia) Clip Instructor 64741.44444 5.826730e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.826730e+05 5.826730e+05 0.00 NULL
2022 Community College (Laguardia) College Accountant 50373.00000 1.007460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.007460e+05 1.007460e+05 0.00 NULL
2022 Community College (Laguardia) College Accounting Assistant 51527.20000 2.576360e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.576360e+05 2.576360e+05 0.00 NULL
2022 Community College (Laguardia) College Assistant 6909.92891 4.270336e+06 3334.09 5.394968e+00 0.000 190.00 618 0.000000e+00 0.00 4.273670e+06 4.270336e+06 3334.09 NULL
2022 Community College (Laguardia) College Graph Designer 68259.00000 6.825900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.825900e+04 6.825900e+04 0.00 NULL
2022 Community College (Laguardia) College Lab Technician 68531.56522 1.576226e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 1.576226e+06 1.576226e+06 0.00 NULL
2022 Community College (Laguardia) College Print Shop Coordinator 64351.00000 6.435100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.435100e+04 6.435100e+04 0.00 NULL
2022 Community College (Laguardia) College Security Director 124000.00000 1.240000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.240000e+05 1.240000e+05 0.00 NULL
2022 Community College (Laguardia) College Security Specialist 71869.00000 2.156070e+05 3952.19 1.317397e+03 1204.220 79.75 3 1.204220e+03 3612.66 2.195592e+05 2.192197e+05 339.53 NULL
2022 Community College (Laguardia) Computer Systems Manager 128060.50000 5.122420e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.122420e+05 5.122420e+05 0.00 NULL
2022 Community College (Laguardia) Continuing Education Teacher 6773.21351 1.815221e+06 0.00 0.000000e+00 0.000 0.00 268 0.000000e+00 0.00 1.815221e+06 1.815221e+06 0.00 NULL
2022 Community College (Laguardia) Cuny Administrator Assistant 58370.87500 9.339340e+05 734.85 4.592813e+01 0.000 20.50 16 0.000000e+00 0.00 9.346688e+05 9.339340e+05 734.85 NULL
2022 Community College (Laguardia) Cuny Art Model 565.14875 2.260595e+03 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.260595e+03 2.260595e+03 0.00 NULL
2022 Community College (Laguardia) Cuny Broadcast Associate 49830.00000 1.494900e+05 7227.64 2.409213e+03 2747.860 208.00 3 2.409213e+03 7227.64 1.567176e+05 1.567176e+05 0.00 NULL
2022 Community College (Laguardia) Cuny Custodial Assistant 28936.25885 1.388940e+06 4393.81 9.153771e+01 0.000 174.00 48 0.000000e+00 0.00 1.393334e+06 1.388940e+06 4393.81 NULL
2022 Community College (Laguardia) Cuny Office Assistant 41620.47692 2.705331e+06 453.34 6.974462e+00 0.000 17.50 65 0.000000e+00 0.00 2.705784e+06 2.705331e+06 453.34 NULL
2022 Community College (Laguardia) Cuny Start Instructor 66783.28571 4.674830e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.674830e+05 4.674830e+05 0.00 NULL
2022 Community College (Laguardia) Custodial Supervisor 38873.00000 1.166190e+05 313.51 1.045033e+02 0.000 11.00 3 0.000000e+00 0.00 1.169325e+05 1.166190e+05 313.51 NULL
2022 Community College (Laguardia) Dean 153000.00000 1.530000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.530000e+05 1.530000e+05 0.00 NULL
2022 Community College (Laguardia) Facilities Coordinator 64466.00000 6.446600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.446600e+04 6.446600e+04 0.00 NULL
2022 Community College (Laguardia) Higher Education Assistant 82494.82979 1.163177e+07 0.00 0.000000e+00 0.000 0.00 141 0.000000e+00 0.00 1.163177e+07 1.163177e+07 0.00 NULL
2022 Community College (Laguardia) Higher Education Associate 103590.25926 8.390811e+06 0.00 0.000000e+00 0.000 0.00 81 0.000000e+00 0.00 8.390811e+06 8.390811e+06 0.00 NULL
2022 Community College (Laguardia) Higher Education Officer 127745.85455 7.026022e+06 0.00 0.000000e+00 0.000 0.00 55 0.000000e+00 0.00 7.026022e+06 7.026022e+06 0.00 NULL
2022 Community College (Laguardia) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Laguardia) It Assistant 56703.58369 1.190775e+06 120.86 5.755238e+00 0.000 3.50 21 0.000000e+00 0.00 1.190896e+06 1.190775e+06 120.86 NULL
2022 Community College (Laguardia) It Associate 77192.16667 1.389459e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.389459e+06 1.389459e+06 0.00 NULL
2022 Community College (Laguardia) It Senior Associate 102243.90909 1.124683e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.124683e+06 1.124683e+06 0.00 NULL
2022 Community College (Laguardia) It Support Assistant 42092.98778 7.576738e+05 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 7.576738e+05 7.576738e+05 0.00 NULL
2022 Community College (Laguardia) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 67 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Laguardia) Lecturer/Doctoral Schedule 96351.00000 2.890530e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.890530e+05 2.890530e+05 0.00 NULL
2022 Community College (Laguardia) Mail/Message Services Worker 43098.90000 4.309890e+05 240.82 2.408200e+01 0.000 12.00 10 0.000000e+00 0.00 4.312298e+05 4.309890e+05 240.82 NULL
2022 Community College (Laguardia) Media Services Technician 63750.00000 6.375000e+04 4029.10 4.029100e+03 4029.100 85.00 1 4.029100e+03 4029.10 6.777910e+04 6.777910e+04 0.00 NULL
2022 Community College (Laguardia) Non-Teaching Adjunct I 2210.20647 4.884556e+05 0.00 0.000000e+00 0.000 0.00 221 0.000000e+00 0.00 4.884556e+05 4.884556e+05 0.00 NULL
2022 Community College (Laguardia) Non-Teaching Adjunct Ii 1063.48000 3.190440e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.190440e+03 3.190440e+03 0.00 NULL
2022 Community College (Laguardia) Non-Teaching Adjunct Iii 4276.39933 3.036244e+05 0.00 0.000000e+00 0.000 0.00 71 0.000000e+00 0.00 3.036244e+05 3.036244e+05 0.00 NULL
2022 Community College (Laguardia) Non-Teaching Adjunct Iv 2708.64441 9.209391e+04 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 9.209391e+04 9.209391e+04 0.00 NULL
2022 Community College (Laguardia) Non-Teaching Adjunct V 3140.59053 1.130613e+05 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 1.130613e+05 1.130613e+05 0.00 NULL
2022 Community College (Laguardia) President 270000.00000 2.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.700000e+05 2.700000e+05 0.00 NULL
2022 Community College (Laguardia) Professor NA NA 0.00 0.000000e+00 0.000 0.00 270 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Laguardia) Project Manager 90292.00000 9.029200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.029200e+04 9.029200e+04 0.00 NULL
2022 Community College (Laguardia) Purchasing Agent 60578.25000 2.423130e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.423130e+05 2.423130e+05 0.00 NULL
2022 Community College (Laguardia) Senior College Lab Tech 75813.00000 8.339430e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 8.339430e+05 8.339430e+05 0.00 NULL
2022 Community College (Laguardia) Senior Vice President 198032.00000 1.980320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.980320e+05 1.980320e+05 0.00 NULL
2022 Community College (Laguardia) Sign Language Interpreter 21407.39200 5.351848e+05 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 5.351848e+05 5.351848e+05 0.00 NULL
2022 Community College (Laguardia) Sr College Laboratory Tech 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Community College (Laguardia) Staff Nurse 93228.00000 9.322800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.322800e+04 9.322800e+04 0.00 NULL
2022 Community College (Laguardia) Supervisor Of Stock Workers 43413.00000 4.341300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.341300e+04 4.341300e+04 0.00 NULL
2022 Community College (Laguardia) University Assistant Architect 63290.00000 6.329000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.329000e+04 6.329000e+04 0.00 NULL
2022 Community College (Laguardia) University Assistant Engineer 75132.00000 7.513200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.513200e+04 7.513200e+04 0.00 NULL
2022 Community College (Laguardia) Vice President 175547.80000 8.777390e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.777390e+05 8.777390e+05 0.00 NULL
2022 Community College (Manhattan) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 327 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Manhattan) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Manhattan) Adjunct College Lab Tech 9764.88226 5.956578e+05 0.00 0.000000e+00 0.000 0.00 61 0.000000e+00 0.00 5.956578e+05 5.956578e+05 0.00 NULL
2022 Community College (Manhattan) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 825 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Manhattan) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Manhattan) Adjunct Senior College Lab Tech 4597.81743 1.609236e+05 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 1.609236e+05 1.609236e+05 0.00 NULL
2022 Community College (Manhattan) Administrator Supt Campus B/G 99327.60000 4.966380e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.966380e+05 4.966380e+05 0.00 NULL
2022 Community College (Manhattan) Assistant Administrator 129000.00000 5.160000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.160000e+05 5.160000e+05 0.00 NULL
2022 Community College (Manhattan) Assistant College Security Director 76228.60000 3.811430e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.811430e+05 3.811430e+05 0.00 NULL
2022 Community College (Manhattan) Assistant Dean 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2022 Community College (Manhattan) Assistant Media Services Technican 24587.43821 1.721121e+05 942.28 1.346114e+02 108.630 49.75 7 1.086300e+02 760.41 1.730543e+05 1.728725e+05 181.87 NULL
2022 Community College (Manhattan) Assistant Principal Custodial Supervisor 47088.00000 9.417600e+04 62203.34 3.110167e+04 31101.670 1835.25 2 3.110167e+04 62203.34 1.563793e+05 1.563793e+05 0.00 NULL
2022 Community College (Manhattan) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 253 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Manhattan) Assistant Purchasing Agent 42783.00000 8.556600e+04 99.40 4.970000e+01 49.700 4.00 2 4.970000e+01 99.40 8.566540e+04 8.566540e+04 0.00 NULL
2022 Community College (Manhattan) Assistant To Heo 57988.79070 4.987036e+06 2742.81 3.189314e+01 0.000 45.50 86 0.000000e+00 0.00 4.989779e+06 4.987036e+06 2742.81 NULL
2022 Community College (Manhattan) Assistant Vice President 156219.50000 3.124390e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.124390e+05 3.124390e+05 0.00 NULL
2022 Community College (Manhattan) Associate Administrator 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2022 Community College (Manhattan) Associate Dean 148495.00000 2.969900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.969900e+05 2.969900e+05 0.00 NULL
2022 Community College (Manhattan) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 247 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Manhattan) Business Data And Reporting Analyst 45675.72222 8.221630e+05 350.27 1.945944e+01 0.000 11.50 18 0.000000e+00 0.00 8.225133e+05 8.221630e+05 350.27 NULL
2022 Community College (Manhattan) Campus Peace Officer 43694.45455 1.441917e+06 132825.96 4.025029e+03 3493.280 4226.99 33 3.493280e+03 115278.24 1.574743e+06 1.557195e+06 17547.72 NULL
2022 Community College (Manhattan) Campus Public Safety Sergeant 59952.50000 5.995250e+05 32003.79 3.200379e+03 2546.675 747.75 10 2.546675e+03 25466.75 6.315288e+05 6.249918e+05 6537.04 NULL
2022 Community College (Manhattan) Campus Security Assistant 30025.46941 1.411197e+06 159615.70 3.396079e+03 2428.880 6435.92 47 2.428880e+03 114157.36 1.570813e+06 1.525354e+06 45458.34 NULL
2022 Community College (Manhattan) Carpenter NA NA 25946.13 4.324355e+03 4601.185 305.75 6 4.324355e+03 25946.13 NA NA NA NULL
2022 Community College (Manhattan) Chief Administrator Supt Campus B/G 140902.00000 1.409020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.409020e+05 1.409020e+05 0.00 NULL
2022 Community College (Manhattan) City Laborer NA NA 57778.00 6.419778e+03 1794.380 1070.75 9 1.794380e+03 16149.42 NA NA NA NULL
2022 Community College (Manhattan) Clip Instructor 64805.80000 6.480580e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 6.480580e+05 6.480580e+05 0.00 NULL
2022 Community College (Manhattan) College Accountant 54267.75000 2.170710e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.170710e+05 2.170710e+05 0.00 NULL
2022 Community College (Manhattan) College Accounting Assistant 50286.12500 4.022890e+05 100.55 1.256875e+01 0.000 3.50 8 0.000000e+00 0.00 4.023895e+05 4.022890e+05 100.55 NULL
2022 Community College (Manhattan) College Assistant 6163.28354 4.622463e+06 25227.17 3.363623e+01 0.000 1604.75 750 0.000000e+00 0.00 4.647690e+06 4.622463e+06 25227.17 NULL
2022 Community College (Manhattan) College Graph Designer 52845.00000 1.056900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.056900e+05 1.056900e+05 0.00 NULL
2022 Community College (Manhattan) College Lab Technician 64452.05882 1.095685e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.095685e+06 1.095685e+06 0.00 NULL
2022 Community College (Manhattan) College Print Shop Assistant 33571.00000 1.342840e+05 498.73 1.246825e+02 132.815 22.50 4 1.246825e+02 498.73 1.347827e+05 1.347827e+05 0.00 NULL
2022 Community College (Manhattan) College Print Shop Associate 40793.00000 4.079300e+04 11.16 1.116000e+01 11.160 0.50 1 1.116000e+01 11.16 4.080416e+04 4.080416e+04 0.00 NULL
2022 Community College (Manhattan) College Print Shop Coordinator 64351.00000 6.435100e+04 510.71 5.107100e+02 510.710 13.50 1 5.107100e+02 510.71 6.486171e+04 6.486171e+04 0.00 NULL
2022 Community College (Manhattan) College Security Director 125292.00000 1.252920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.252920e+05 1.252920e+05 0.00 NULL
2022 Community College (Manhattan) Computer Systems Manager 162000.00000 1.620000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.620000e+05 1.620000e+05 0.00 NULL
2022 Community College (Manhattan) Continuing Education Teacher 10961.15293 8.988145e+05 0.00 0.000000e+00 0.000 0.00 82 0.000000e+00 0.00 8.988145e+05 8.988145e+05 0.00 NULL
2022 Community College (Manhattan) Cuny Administrator Assistant 55854.08333 6.702490e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 6.702490e+05 6.702490e+05 0.00 NULL
2022 Community College (Manhattan) Cuny Art Model 3941.70333 1.182511e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.182511e+04 1.182511e+04 0.00 NULL
2022 Community College (Manhattan) Cuny Custodial Assistant 25112.12584 2.737222e+06 347017.42 3.183646e+03 771.790 13992.75 109 7.717900e+02 84125.11 3.084239e+06 2.821347e+06 262892.31 NULL
2022 Community College (Manhattan) Cuny Office Assistant 39869.04651 3.428738e+06 11289.38 1.312719e+02 0.000 432.25 86 0.000000e+00 0.00 3.440027e+06 3.428738e+06 11289.38 NULL
2022 Community College (Manhattan) Cuny Start Instructor 69435.52632 1.319275e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.319275e+06 1.319275e+06 0.00 NULL
2022 Community College (Manhattan) Custodial Supervisor 38873.00000 4.664760e+05 85151.88 7.095990e+03 3906.125 3051.00 12 3.906125e+03 46873.50 5.516279e+05 5.133495e+05 38278.38 NULL
2022 Community College (Manhattan) Dean 161743.80000 8.087190e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.087190e+05 8.087190e+05 0.00 NULL
2022 Community College (Manhattan) Electrician NA NA 51626.76 5.736307e+03 4741.610 542.00 9 4.741610e+03 42674.49 NA NA NA NULL
2022 Community College (Manhattan) Eoc Accounting Assistant 44601.00000 4.460100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.460100e+04 4.460100e+04 0.00 NULL
2022 Community College (Manhattan) Eoc Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Manhattan) Eoc Assistant To Heo 68726.00000 6.872600e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 6.872600e+05 6.872600e+05 0.00 NULL
2022 Community College (Manhattan) Eoc College Lab Technician 68154.00000 1.363080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.363080e+05 1.363080e+05 0.00 NULL
2022 Community College (Manhattan) Eoc Higher Education Assistant 95335.50000 3.813420e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.813420e+05 3.813420e+05 0.00 NULL
2022 Community College (Manhattan) Eoc Higher Education Associate 105676.00000 1.056760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.056760e+05 1.056760e+05 0.00 NULL
2022 Community College (Manhattan) Eoc Higher Education Officer 129849.50000 5.193980e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.193980e+05 5.193980e+05 0.00 NULL
2022 Community College (Manhattan) Eoc Lecturer 85836.66667 5.150200e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.150200e+05 5.150200e+05 0.00 NULL
2022 Community College (Manhattan) Eoc Lecturer/ Doctral Schedule 94368.33333 2.831050e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.831050e+05 2.831050e+05 0.00 NULL
2022 Community College (Manhattan) Eoc Mail/Message Services Worker 38740.00000 3.874000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.874000e+04 3.874000e+04 0.00 NULL
2022 Community College (Manhattan) Eoc Office Assistant 43990.11111 3.959110e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 3.959110e+05 3.959110e+05 0.00 NULL
2022 Community College (Manhattan) Facilities Coordinator 64466.00000 6.446600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.446600e+04 6.446600e+04 0.00 NULL
2022 Community College (Manhattan) Higher Education Assistant 77998.60976 1.279177e+07 0.00 0.000000e+00 0.000 0.00 164 0.000000e+00 0.00 1.279177e+07 1.279177e+07 0.00 NULL
2022 Community College (Manhattan) Higher Education Associate 100050.00000 7.203600e+06 0.00 0.000000e+00 0.000 0.00 72 0.000000e+00 0.00 7.203600e+06 7.203600e+06 0.00 NULL
2022 Community College (Manhattan) Higher Education Officer 123257.82692 6.409407e+06 0.00 0.000000e+00 0.000 0.00 52 0.000000e+00 0.00 6.409407e+06 6.409407e+06 0.00 NULL
2022 Community College (Manhattan) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Manhattan) It Assistant 61654.00000 8.631560e+05 969.26 6.923286e+01 0.000 27.50 14 0.000000e+00 0.00 8.641253e+05 8.631560e+05 969.26 NULL
2022 Community College (Manhattan) It Associate 76637.20000 3.831860e+05 86.57 1.731400e+01 0.000 2.00 5 0.000000e+00 0.00 3.832726e+05 3.831860e+05 86.57 NULL
2022 Community College (Manhattan) It Senior Associate 95467.00000 5.728020e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.728020e+05 5.728020e+05 0.00 NULL
2022 Community College (Manhattan) It Support Assistant 34069.42694 6.132497e+05 1196.38 6.646556e+01 0.000 53.75 18 0.000000e+00 0.00 6.144461e+05 6.132497e+05 1196.38 NULL
2022 Community College (Manhattan) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 97 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Manhattan) Lecturer/Doctoral Schedule 86471.66667 2.594150e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.594150e+05 2.594150e+05 0.00 NULL
2022 Community College (Manhattan) Locksmith NA NA 3215.02 1.607510e+03 1607.510 79.25 2 1.607510e+03 3215.02 NA NA NA NULL
2022 Community College (Manhattan) Mail/Message Services Worker 36571.66667 1.097150e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.097150e+05 1.097150e+05 0.00 NULL
2022 Community College (Manhattan) Maintenance Worker NA NA 2096.08 1.048040e+03 1048.040 34.00 2 1.048040e+03 2096.08 NA NA NA NULL
2022 Community College (Manhattan) Non-Teaching Adjunct I NA NA 0.00 0.000000e+00 0.000 0.00 300 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Manhattan) Non-Teaching Adjunct Ii 5763.61306 1.556176e+05 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 1.556176e+05 1.556176e+05 0.00 NULL
2022 Community College (Manhattan) Non-Teaching Adjunct Iii 5282.68969 3.380921e+05 0.00 0.000000e+00 0.000 0.00 64 0.000000e+00 0.00 3.380921e+05 3.380921e+05 0.00 NULL
2022 Community College (Manhattan) Non-Teaching Adjunct Iv 2325.38975 4.650779e+04 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 4.650779e+04 4.650779e+04 0.00 NULL
2022 Community College (Manhattan) Non-Teaching Adjunct V 7768.59357 5.438015e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.438015e+04 5.438015e+04 0.00 NULL
2022 Community College (Manhattan) Oiler NA NA 350702.74 2.338018e+04 22466.000 4009.00 15 2.246600e+04 336990.00 NA NA NA NULL
2022 Community College (Manhattan) Painter NA NA 18438.67 2.634096e+03 1379.760 275.50 7 1.379760e+03 9658.32 NA NA NA NULL
2022 Community College (Manhattan) Plumber NA NA 91062.82 3.035427e+04 29826.390 862.50 3 2.982639e+04 89479.17 NA NA NA NULL
2022 Community College (Manhattan) President 275000.00000 2.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.750000e+05 2.750000e+05 0.00 NULL
2022 Community College (Manhattan) Principal Custodial Supervisor 65631.00000 1.312620e+05 31897.88 1.594894e+04 15948.940 673.00 2 1.594894e+04 31897.88 1.631599e+05 1.631599e+05 0.00 NULL
2022 Community College (Manhattan) Professor NA NA 0.00 0.000000e+00 0.000 0.00 187 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Manhattan) Purchasing Agent 67282.50000 2.691300e+05 159.65 3.991250e+01 24.795 5.25 4 2.479500e+01 99.18 2.692897e+05 2.692292e+05 60.47 NULL
2022 Community College (Manhattan) Research Assistant 48622.00000 4.862200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.862200e+04 4.862200e+04 0.00 NULL
2022 Community College (Manhattan) Senior College Lab Tech 76942.11111 1.384958e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.384958e+06 1.384958e+06 0.00 NULL
2022 Community College (Manhattan) Senior Custodial Supervisor 41913.00000 8.382600e+04 25073.80 1.253690e+04 12536.900 835.75 2 1.253690e+04 25073.80 1.088998e+05 1.088998e+05 0.00 NULL
2022 Community College (Manhattan) Senior Stationary Engineer NA NA 71932.11 2.397737e+04 17964.780 702.50 3 1.796478e+04 53894.34 NA NA NA NULL
2022 Community College (Manhattan) Senior Vice President 214995.00000 2.149950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.149950e+05 2.149950e+05 0.00 NULL
2022 Community College (Manhattan) Sign Language Interpreter 2800.81750 1.120327e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.120327e+04 1.120327e+04 0.00 NULL
2022 Community College (Manhattan) Staff Nurse 99290.00000 9.929000e+04 1499.04 1.499040e+03 1499.040 20.00 1 1.499040e+03 1499.04 1.007890e+05 1.007890e+05 0.00 NULL
2022 Community College (Manhattan) Stationary Engineer NA NA 375060.00 3.750600e+04 39050.400 4017.50 10 3.750600e+04 375060.00 NA NA NA NULL
2022 Community College (Manhattan) Stock Worker 36516.00000 1.095480e+05 69.96 2.332000e+01 19.990 3.50 3 1.999000e+01 59.97 1.096180e+05 1.096080e+05 9.99 NULL
2022 Community College (Manhattan) Supervisor Of Stock Workers 61497.00000 6.149700e+04 656.37 6.563700e+02 656.370 17.50 1 6.563700e+02 656.37 6.215337e+04 6.215337e+04 0.00 NULL
2022 Community College (Manhattan) Thermostat Repairer NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Manhattan) University Professor 167670.00000 1.676700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.676700e+05 1.676700e+05 0.00 NULL
2022 Community College (Manhattan) Vice President 180985.71429 1.266900e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.266900e+06 1.266900e+06 0.00 NULL
2022 Community College (Queensboro) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 95 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Queensboro) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Queensboro) Adjunct College Lab Tech 7993.08561 2.637718e+05 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 2.637718e+05 2.637718e+05 0.00 NULL
2022 Community College (Queensboro) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 299 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Queensboro) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Queensboro) Adjunct Senior College Lab Tech 6613.50000 6.613500e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.613500e+03 6.613500e+03 0.00 NULL
2022 Community College (Queensboro) Administrator 155622.66667 4.668680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.668680e+05 4.668680e+05 0.00 NULL
2022 Community College (Queensboro) Administrator Supt Campus B/G 78989.74000 2.369692e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.369692e+05 2.369692e+05 0.00 NULL
2022 Community College (Queensboro) Assistant Administrator 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2022 Community College (Queensboro) Assistant College Security Director 89368.00000 1.787360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.787360e+05 1.787360e+05 0.00 NULL
2022 Community College (Queensboro) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 127 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Queensboro) Assistant To Heo 64513.22917 3.096635e+06 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 3.096635e+06 3.096635e+06 0.00 NULL
2022 Community College (Queensboro) Assistant Vice President 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2022 Community College (Queensboro) Associate Administrator 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2022 Community College (Queensboro) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 209 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Queensboro) Campus Peace Officer 47449.42424 1.565831e+06 121113.68 3.670112e+03 1451.100 3408.50 33 1.451100e+03 47886.30 1.686945e+06 1.613717e+06 73227.38 NULL
2022 Community College (Queensboro) Campus Public Safety Sergeant 59949.37500 4.795950e+05 45221.61 5.652701e+03 3907.325 1049.00 8 3.907325e+03 31258.60 5.248166e+05 5.108536e+05 13963.01 NULL
2022 Community College (Queensboro) Campus Security Assistant 36170.00000 4.702100e+05 34155.04 2.627311e+03 2099.000 1333.00 13 2.099000e+03 27287.00 5.043650e+05 4.974970e+05 6868.04 NULL
2022 Community College (Queensboro) Carpenter NA NA 20768.98 6.922993e+03 6041.160 245.00 3 6.041160e+03 18123.48 NA NA NA NULL
2022 Community College (Queensboro) Cement Mason NA NA 18927.35 1.892735e+04 18927.350 196.75 1 1.892735e+04 18927.35 NA NA NA NULL
2022 Community College (Queensboro) Chief Administrative Supt Campus B/G 142658.00000 1.426580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.426580e+05 1.426580e+05 0.00 NULL
2022 Community College (Queensboro) Chief College Lab Technician 67299.80667 4.037988e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.037988e+05 4.037988e+05 0.00 NULL
2022 Community College (Queensboro) City Laborer NA NA 227545.79 3.792430e+04 40087.915 4082.75 6 3.792430e+04 227545.79 NA NA NA NULL
2022 Community College (Queensboro) Clip Instructor 66232.37500 5.298590e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.298590e+05 5.298590e+05 0.00 NULL
2022 Community College (Queensboro) College Accountant 61530.00000 1.230600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.230600e+05 1.230600e+05 0.00 NULL
2022 Community College (Queensboro) College Accounting Assistant 53739.00000 5.373900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.373900e+04 5.373900e+04 0.00 NULL
2022 Community College (Queensboro) College Assistant 6390.38970 2.626450e+06 0.00 0.000000e+00 0.000 0.00 411 0.000000e+00 0.00 2.626450e+06 2.626450e+06 0.00 NULL
2022 Community College (Queensboro) College Graph Designer 68820.00000 6.882000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.882000e+04 6.882000e+04 0.00 NULL
2022 Community College (Queensboro) College Lab Technician 49619.56737 9.427718e+05 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 9.427718e+05 9.427718e+05 0.00 NULL
2022 Community College (Queensboro) College Print Shop Assistant 39353.00000 3.935300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.935300e+04 3.935300e+04 0.00 NULL
2022 Community College (Queensboro) College Print Shop Associate 51255.00000 5.125500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.125500e+04 5.125500e+04 0.00 NULL
2022 Community College (Queensboro) College Security Director 147704.00000 1.477040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.477040e+05 1.477040e+05 0.00 NULL
2022 Community College (Queensboro) College Security Specialist 63124.00000 1.262480e+05 17390.79 8.695395e+03 8695.395 383.50 2 8.695395e+03 17390.79 1.436388e+05 1.436388e+05 0.00 NULL
2022 Community College (Queensboro) Computer Systems Manager 131602.80000 6.580140e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.580140e+05 6.580140e+05 0.00 NULL
2022 Community College (Queensboro) Continuing Education Teacher 7241.94421 7.821300e+05 0.00 0.000000e+00 0.000 0.00 108 0.000000e+00 0.00 7.821300e+05 7.821300e+05 0.00 NULL
2022 Community College (Queensboro) Cuny Administrator Assistant 56897.45000 1.137949e+06 1952.15 9.760750e+01 0.000 56.75 20 0.000000e+00 0.00 1.139901e+06 1.137949e+06 1952.15 NULL
2022 Community College (Queensboro) Cuny Broadcast Associate 61843.00000 6.184300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.184300e+04 6.184300e+04 0.00 NULL
2022 Community College (Queensboro) Cuny Custodial Assistant 31719.59535 1.459101e+06 85450.00 1.857609e+03 0.000 3342.75 46 0.000000e+00 0.00 1.544551e+06 1.459101e+06 85450.00 NULL
2022 Community College (Queensboro) Cuny Office Assistant 40608.60000 2.436516e+06 0.00 0.000000e+00 0.000 0.00 60 0.000000e+00 0.00 2.436516e+06 2.436516e+06 0.00 NULL
2022 Community College (Queensboro) Cuny Start Instructor 67730.00000 1.151410e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.151410e+06 1.151410e+06 0.00 NULL
2022 Community College (Queensboro) Custodial Supervisor 38886.66667 2.333200e+05 9448.47 1.574745e+03 969.350 336.75 6 9.693500e+02 5816.10 2.427685e+05 2.391361e+05 3632.37 NULL
2022 Community College (Queensboro) Dean 158000.00000 1.106000e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.106000e+06 1.106000e+06 0.00 NULL
2022 Community College (Queensboro) Disability Accommodations Specialist 35151.63000 2.109098e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.109098e+05 2.109098e+05 0.00 NULL
2022 Community College (Queensboro) Electrician NA NA 94739.49 1.353421e+04 13829.880 1007.75 7 1.353421e+04 94739.49 NA NA NA NULL
2022 Community College (Queensboro) Facilities Coordinator 77880.00000 7.788000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.788000e+04 7.788000e+04 0.00 NULL
2022 Community College (Queensboro) High Pressure Plant Tender NA NA 113522.00 1.621743e+04 16412.400 2015.50 7 1.621743e+04 113522.00 NA NA NA NULL
2022 Community College (Queensboro) Higher Education Assistant 80016.30769 8.321696e+06 0.00 0.000000e+00 0.000 0.00 104 0.000000e+00 0.00 8.321696e+06 8.321696e+06 0.00 NULL
2022 Community College (Queensboro) Higher Education Associate 104055.50000 5.410886e+06 0.00 0.000000e+00 0.000 0.00 52 0.000000e+00 0.00 5.410886e+06 5.410886e+06 0.00 NULL
2022 Community College (Queensboro) Higher Education Officer 128906.98000 6.445349e+06 0.00 0.000000e+00 0.000 0.00 50 0.000000e+00 0.00 6.445349e+06 6.445349e+06 0.00 NULL
2022 Community College (Queensboro) Higher Education Officer/Asst Administrator 146746.00000 1.467460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.467460e+05 1.467460e+05 0.00 NULL
2022 Community College (Queensboro) Instructor 68243.00000 6.824300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.824300e+04 6.824300e+04 0.00 NULL
2022 Community College (Queensboro) It Assistant 60588.00000 1.817640e+05 373.78 1.245933e+02 120.840 11.50 3 1.208400e+02 362.52 1.821378e+05 1.821265e+05 11.26 NULL
2022 Community College (Queensboro) It Associate 75601.40000 3.780070e+05 313.54 6.270800e+01 0.000 7.00 5 0.000000e+00 0.00 3.783205e+05 3.780070e+05 313.54 NULL
2022 Community College (Queensboro) It Senior Associate 104810.91667 1.257731e+06 7443.68 6.203067e+02 0.000 106.50 12 0.000000e+00 0.00 1.265175e+06 1.257731e+06 7443.68 NULL
2022 Community College (Queensboro) It Support Assistant 26188.32440 2.618832e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 2.618832e+05 2.618832e+05 0.00 NULL
2022 Community College (Queensboro) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 110 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Queensboro) Lecturer/Doctoral Schedule 86570.60000 8.657060e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 8.657060e+05 8.657060e+05 0.00 NULL
2022 Community College (Queensboro) Locksmith NA NA 4410.07 4.410070e+03 4410.070 97.25 1 4.410070e+03 4410.07 NA NA NA NULL
2022 Community College (Queensboro) Mail/Message Services Worker 36505.50000 7.301100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.301100e+04 7.301100e+04 0.00 NULL
2022 Community College (Queensboro) Maintenance Worker NA NA 63278.18 2.109273e+04 30384.900 1372.00 3 2.109273e+04 63278.18 NA NA NA NULL
2022 Community College (Queensboro) Motor Vehicle Operator 48588.00000 4.858800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.858800e+04 4.858800e+04 0.00 NULL
2022 Community College (Queensboro) Non-Teaching Adjunct I 5082.13728 5.082137e+05 0.00 0.000000e+00 0.000 0.00 100 0.000000e+00 0.00 5.082137e+05 5.082137e+05 0.00 NULL
2022 Community College (Queensboro) Non-Teaching Adjunct Iii 518.18235 2.642730e+04 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 2.642730e+04 2.642730e+04 0.00 NULL
2022 Community College (Queensboro) Non-Teaching Adjunct Iv 96.73444 1.741220e+03 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.741220e+03 1.741220e+03 0.00 NULL
2022 Community College (Queensboro) Non-Teaching Adjunct V 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Community College (Queensboro) Oiler NA NA 5915.26 5.915260e+03 5915.260 66.00 1 5.915260e+03 5915.26 NA NA NA NULL
2022 Community College (Queensboro) Painter NA NA 2208.43 1.104215e+03 1104.215 7.00 2 1.104215e+03 2208.43 NA NA NA NULL
2022 Community College (Queensboro) Plumber NA NA 36161.15 1.808058e+04 18080.575 345.00 2 1.808058e+04 36161.15 NA NA NA NULL
2022 Community College (Queensboro) President 270000.00000 2.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.700000e+05 2.700000e+05 0.00 NULL
2022 Community College (Queensboro) Professor NA NA 0.00 0.000000e+00 0.000 0.00 125 0.000000e+00 0.00 NA NA NA NULL
2022 Community College (Queensboro) Project Manager 95069.00000 9.506900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.506900e+04 9.506900e+04 0.00 NULL
2022 Community College (Queensboro) Senior College Lab Tech 76264.96154 1.982889e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 1.982889e+06 1.982889e+06 0.00 NULL
2022 Community College (Queensboro) Senior Custodial Supervisor 42039.50000 8.407900e+04 7903.91 3.951955e+03 3951.955 257.00 2 3.951955e+03 7903.91 9.198291e+04 9.198291e+04 0.00 NULL
2022 Community College (Queensboro) Senior Stationary Engineer NA NA 36733.23 3.673323e+04 36733.230 333.00 1 3.673323e+04 36733.23 NA NA NA NULL
2022 Community College (Queensboro) Senior Vice President 198000.00000 1.980000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.980000e+05 1.980000e+05 0.00 NULL
2022 Community College (Queensboro) Sr College Laboratory Tech 5428.71818 5.971590e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.971590e+04 5.971590e+04 0.00 NULL
2022 Community College (Queensboro) Staff Nurse 55460.54375 2.218422e+05 13280.11 3.320028e+03 0.000 181.75 4 0.000000e+00 0.00 2.351223e+05 2.218422e+05 13280.11 NULL
2022 Community College (Queensboro) Stationary Engineer NA NA 465231.78 6.646168e+04 67447.800 4830.00 7 6.646168e+04 465231.78 NA NA NA NULL
2022 Community College (Queensboro) Stock Worker 36516.00000 3.651600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.651600e+04 3.651600e+04 0.00 NULL
2022 Community College (Queensboro) Supervisor Of Stock Workers 61507.00000 6.150700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.150700e+04 6.150700e+04 0.00 NULL
2022 Community College (Queensboro) Supervisor Painter NA NA 6101.84 6.101840e+03 6101.840 50.75 1 6.101840e+03 6101.84 NA NA NA NULL
2022 Community College (Queensboro) Vice President 183000.00000 9.150000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.150000e+05 9.150000e+05 0.00 NULL
2022 Community College (Queensboro) NA 64158.00000 6.415800e+04 7236.15 7.236150e+03 7236.150 157.00 1 7.236150e+03 7236.15 7.139415e+04 7.139415e+04 0.00 NULL
2022 Conflicts Of Interest Board Administrative Claim Examiner 111100.00000 1.111000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.111000e+05 1.111000e+05 0.00 NULL
2022 Conflicts Of Interest Board Administrative Staff Analyst 150393.00000 1.503930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503930e+05 1.503930e+05 0.00 NULL
2022 Conflicts Of Interest Board Agency Attorney 82467.33333 4.948040e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.948040e+05 4.948040e+05 0.00 NULL
2022 Conflicts Of Interest Board Agency Chief Contracting Officer 130072.50000 2.601450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.601450e+05 2.601450e+05 0.00 NULL
2022 Conflicts Of Interest Board Community Associate 52621.00000 1.578630e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.578630e+05 1.578630e+05 0.00 NULL
2022 Conflicts Of Interest Board Community Coordinator 65281.00000 6.528100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.528100e+04 6.528100e+04 0.00 NULL
2022 Conflicts Of Interest Board Computer Operations Manager 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2022 Conflicts Of Interest Board Computer Specialist 97389.00000 9.738900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.738900e+04 9.738900e+04 0.00 NULL
2022 Conflicts Of Interest Board Confidential Investigator 60188.50000 3.611310e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.611310e+05 3.611310e+05 0.00 NULL
2022 Conflicts Of Interest Board Counsel 223735.00000 2.237350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.237350e+05 2.237350e+05 0.00 NULL
2022 Conflicts Of Interest Board Executive Agency Counsel 148041.00000 8.882460e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.882460e+05 8.882460e+05 0.00 NULL
2022 Conflicts Of Interest Board Principal Administrative Associate - Non Supvr 58081.00000 5.808100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.808100e+04 5.808100e+04 0.00 NULL
2022 Conflicts Of Interest Board Secretary To Conflicts Of Interest Board 60157.00000 6.015700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.015700e+04 6.015700e+04 0.00 NULL
2022 Consumer And Worker Protection Adm Manager-Non-Mgrl 76172.33333 2.285170e+05 98.94 3.298000e+01 0.000 2.00 3 0.000000e+00 0.00 2.286159e+05 2.285170e+05 98.94 NULL
2022 Consumer And Worker Protection Admin Community Relations Specialist 79110.80000 3.955540e+05 106.44 2.128800e+01 0.000 0.00 5 0.000000e+00 0.00 3.956604e+05 3.955540e+05 106.44 NULL
2022 Consumer And Worker Protection Admin Contract Specialist 120285.00000 2.405700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.405700e+05 2.405700e+05 0.00 NULL
2022 Consumer And Worker Protection Administrative Business Promotion Coordinator 98943.00000 2.968290e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.968290e+05 2.968290e+05 0.00 NULL
2022 Consumer And Worker Protection Administrative Community Relations Specialist 111991.00000 4.479640e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.479640e+05 4.479640e+05 0.00 NULL
2022 Consumer And Worker Protection Administrative Contract Specialist 81728.00000 1.634560e+05 603.94 3.019700e+02 301.970 15.75 2 3.019700e+02 603.94 1.640599e+05 1.640599e+05 0.00 NULL
2022 Consumer And Worker Protection Administrative Staff Analyst 135608.61250 2.169738e+06 1260.19 7.876188e+01 0.000 0.00 16 0.000000e+00 0.00 2.170998e+06 2.169738e+06 1260.19 NULL
2022 Consumer And Worker Protection Agency Attorney 84503.53778 3.802659e+06 2670.51 5.934467e+01 0.000 57.00 45 0.000000e+00 0.00 3.805330e+06 3.802659e+06 2670.51 NULL
2022 Consumer And Worker Protection Agency Attorney Interne 71757.00000 7.175700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.175700e+04 7.175700e+04 0.00 NULL
2022 Consumer And Worker Protection Associate Inspector 78416.37455 1.725160e+06 9182.22 4.173736e+02 0.000 187.50 22 0.000000e+00 0.00 1.734342e+06 1.725160e+06 9182.22 NULL
2022 Consumer And Worker Protection Associate Staff Analyst 79458.50000 1.589170e+05 363.42 1.817100e+02 181.710 0.00 2 1.817100e+02 363.42 1.592804e+05 1.592804e+05 0.00 NULL
2022 Consumer And Worker Protection Bookkeeper 49870.00000 4.987000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.987000e+04 4.987000e+04 0.00 NULL
2022 Consumer And Worker Protection Business Promotion Coordinator 83783.50000 1.675670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.675670e+05 1.675670e+05 0.00 NULL
2022 Consumer And Worker Protection Certified It Administrator 100683.66667 3.020510e+05 6774.67 2.258223e+03 2555.650 115.25 3 2.258223e+03 6774.67 3.088257e+05 3.088257e+05 0.00 NULL
2022 Consumer And Worker Protection Certified It Developer 110864.50000 4.434580e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.434580e+05 4.434580e+05 0.00 NULL
2022 Consumer And Worker Protection City Research Scientist 93072.20000 1.116866e+06 888.80 7.406667e+01 0.000 15.25 12 0.000000e+00 0.00 1.117755e+06 1.116866e+06 888.80 NULL
2022 Consumer And Worker Protection Clerical Associate 45890.01429 3.212301e+06 5.39 7.700000e-02 0.000 0.00 70 0.000000e+00 0.00 3.212306e+06 3.212301e+06 5.39 NULL
2022 Consumer And Worker Protection College Aide 6841.84281 8.894396e+04 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 8.894396e+04 8.894396e+04 0.00 NULL
2022 Consumer And Worker Protection Commissioner 227786.00000 6.833580e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.833580e+05 6.833580e+05 0.00 NULL
2022 Consumer And Worker Protection Community Assistant 41669.66667 1.250090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.250090e+05 1.250090e+05 0.00 NULL
2022 Consumer And Worker Protection Community Associate 49800.76667 2.988046e+06 2559.46 4.265767e+01 0.000 83.75 60 0.000000e+00 0.00 2.990605e+06 2.988046e+06 2559.46 NULL
2022 Consumer And Worker Protection Community Coordinator 68988.88372 2.966522e+06 1228.93 2.857977e+01 0.000 35.25 43 0.000000e+00 0.00 2.967751e+06 2.966522e+06 1228.93 NULL
2022 Consumer And Worker Protection Computer Associate 76028.50000 7.602850e+05 2797.97 2.797970e+02 30.105 60.75 10 3.010500e+01 301.05 7.630830e+05 7.605861e+05 2496.92 NULL
2022 Consumer And Worker Protection Computer Specialist 111255.37500 8.900430e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.900430e+05 8.900430e+05 0.00 NULL
2022 Consumer And Worker Protection Computer Systems Manager 124083.49211 2.357586e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.357586e+06 2.357586e+06 0.00 NULL
2022 Consumer And Worker Protection Confidential Examiner 55000.00000 1.100000e+05 293.51 1.467550e+02 146.755 8.50 2 1.467550e+02 293.51 1.102935e+05 1.102935e+05 0.00 NULL
2022 Consumer And Worker Protection Consumer Advocate 98862.12000 9.886212e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.886212e+04 9.886212e+04 0.00 NULL
2022 Consumer And Worker Protection Counsel 193743.00000 1.937430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.937430e+05 1.937430e+05 0.00 NULL
2022 Consumer And Worker Protection Customer Information Representative Ma L 1549 57114.90909 6.282640e+05 178.76 1.625091e+01 0.000 6.50 11 0.000000e+00 0.00 6.284428e+05 6.282640e+05 178.76 NULL
2022 Consumer And Worker Protection Deputy Commissioner 152500.00000 3.050000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.050000e+05 3.050000e+05 0.00 NULL
2022 Consumer And Worker Protection Director Bureau Of Weights And Measures 117810.00000 1.178100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.178100e+05 1.178100e+05 0.00 NULL
2022 Consumer And Worker Protection Director Of Bureau Of Consumer Services 97200.00000 9.720000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.720000e+04 9.720000e+04 0.00 NULL
2022 Consumer And Worker Protection Director Of Consumer Information 81000.00000 8.100000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.100000e+04 8.100000e+04 0.00 NULL
2022 Consumer And Worker Protection Economist 52242.00000 5.224200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.224200e+04 5.224200e+04 0.00 NULL
2022 Consumer And Worker Protection Executive Agency Counsel 140452.08333 1.685425e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.685425e+06 1.685425e+06 0.00 NULL
2022 Consumer And Worker Protection Executive Assistant To The Commissioner 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2022 Consumer And Worker Protection General Inspector 64463.00000 1.289260e+05 3309.72 1.654860e+03 1654.860 84.50 2 1.654860e+03 3309.72 1.322357e+05 1.322357e+05 0.00 NULL
2022 Consumer And Worker Protection Graphic Artist 58721.66667 1.761650e+05 630.95 2.103167e+02 0.000 15.00 3 0.000000e+00 0.00 1.767960e+05 1.761650e+05 630.95 NULL
2022 Consumer And Worker Protection Inspector 51883.61724 4.513875e+06 10007.62 1.150301e+02 0.000 299.25 87 0.000000e+00 0.00 4.523882e+06 4.513875e+06 10007.62 NULL
2022 Consumer And Worker Protection Principal Administrative Associate - Non Supvr 63829.88636 1.404258e+06 1158.68 5.266727e+01 0.000 26.00 22 0.000000e+00 0.00 1.405416e+06 1.404258e+06 1158.68 NULL
2022 Consumer And Worker Protection Procurement Analyst 58618.00000 5.861800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.861800e+04 5.861800e+04 0.00 NULL
2022 Consumer And Worker Protection Public Records Aide 44083.00000 4.408300e+04 364.96 3.649600e+02 364.960 13.75 1 3.649600e+02 364.96 4.444796e+04 4.444796e+04 0.00 NULL
2022 Consumer And Worker Protection Research Assistant 52194.22222 1.409244e+06 49.73 1.841852e+00 0.000 2.00 27 0.000000e+00 0.00 1.409294e+06 1.409244e+06 49.73 NULL
2022 Consumer And Worker Protection Secretary 43933.00000 8.786600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.786600e+04 8.786600e+04 0.00 NULL
2022 Consumer And Worker Protection Secretary To The Department 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2022 Consumer And Worker Protection Space Analyst 65640.00000 1.312800e+05 362.06 1.810300e+02 181.030 9.00 2 1.810300e+02 362.06 1.316421e+05 1.316421e+05 0.00 NULL
2022 Consumer And Worker Protection Staff Analyst 67187.75000 2.687510e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.687510e+05 2.687510e+05 0.00 NULL
2022 Consumer And Worker Protection Staff Analyst Trainee 42150.00000 4.215000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.215000e+04 4.215000e+04 0.00 NULL
2022 Cultural Affairs Adm Manager-Non-Mgrl 73975.00000 7.397500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.397500e+04 7.397500e+04 0.00 NULL
2022 Cultural Affairs Admin Contract Specialist 87740.00000 8.774000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.774000e+04 8.774000e+04 0.00 NULL
2022 Cultural Affairs Administrative Community Relations Specialist 140429.00000 1.404290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.404290e+05 1.404290e+05 0.00 NULL
2022 Cultural Affairs Administrative Project Manager 157598.00000 1.575980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.575980e+05 1.575980e+05 0.00 NULL
2022 Cultural Affairs Administrative Public Information Specialist Nm Former M1/M2 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2022 Cultural Affairs Administrative Staff Analyst 108667.00000 2.173340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.173340e+05 2.173340e+05 0.00 NULL
2022 Cultural Affairs Agency Attorney 95265.00000 2.857950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.857950e+05 2.857950e+05 0.00 NULL
2022 Cultural Affairs Agency Chief Contracting Officer 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2022 Cultural Affairs Arts Program Specialist 20746.07500 4.149215e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.149215e+04 4.149215e+04 0.00 NULL
2022 Cultural Affairs Assistant Commissioner 127652.50000 5.106100e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.106100e+05 5.106100e+05 0.00 NULL
2022 Cultural Affairs Associate Arts Programs Specialist 63119.30919 1.136148e+06 3.64 2.022222e-01 0.000 0.00 18 0.000000e+00 0.00 1.136151e+06 1.136148e+06 3.64 NULL
2022 Cultural Affairs City Laborer 69890.00000 6.989000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.989000e+04 6.989000e+04 0.00 NULL
2022 Cultural Affairs City Research Scientist 128750.00000 1.287500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287500e+05 1.287500e+05 0.00 NULL
2022 Cultural Affairs Commissioner Of Cultural Affairs 227786.00000 4.555720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.555720e+05 4.555720e+05 0.00 NULL
2022 Cultural Affairs Community Assistant 40172.18560 4.017219e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.017219e+04 4.017219e+04 0.00 NULL
2022 Cultural Affairs Community Associate 42367.22345 6.778756e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 6.778756e+05 6.778756e+05 0.00 NULL
2022 Cultural Affairs Community Coordinator 74019.00000 8.142090e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 8.142090e+05 8.142090e+05 0.00 NULL
2022 Cultural Affairs Computer Associate 102480.00000 1.024800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.024800e+05 1.024800e+05 0.00 NULL
2022 Cultural Affairs Computer Systems Manager 137117.00000 1.371170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.371170e+05 1.371170e+05 0.00 NULL
2022 Cultural Affairs Deputy Commissioner 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2022 Cultural Affairs Executive Agency Counsel 129935.00000 2.598700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.598700e+05 2.598700e+05 0.00 NULL
2022 Cultural Affairs Executive Director Of Materials For The Arts 113770.00000 2.275400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.275400e+05 2.275400e+05 0.00 NULL
2022 Cultural Affairs Staff Analyst 78970.33333 2.369110e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.369110e+05 2.369110e+05 0.00 NULL
2022 Cuny Central Office Administrator Supt Campus B/G 29120.00000 2.912000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.912000e+04 2.912000e+04 0.00 NULL
2022 Cuny Central Office Assistant To Heo 63148.04762 1.326109e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.326109e+06 1.326109e+06 0.00 NULL
2022 Cuny Central Office Campus Peace Officer 50907.00000 1.018140e+05 1938.27 9.691350e+02 969.135 53.00 2 9.691350e+02 1938.27 1.037523e+05 1.037523e+05 0.00 NULL
2022 Cuny Central Office College Accounting Assistant 50270.00000 5.027000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.027000e+04 5.027000e+04 0.00 NULL
2022 Cuny Central Office College Assistant 13164.90500 5.265962e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.265962e+04 5.265962e+04 0.00 NULL
2022 Cuny Central Office Higher Education Assistant 79781.20000 1.595624e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.595624e+06 1.595624e+06 0.00 NULL
2022 Cuny Central Office Higher Education Associate 97058.44444 2.620578e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 2.620578e+06 2.620578e+06 0.00 NULL
2022 Cuny Central Office Higher Education Officer 116911.81250 1.870589e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.870589e+06 1.870589e+06 0.00 NULL
2022 Cuny Central Office It Associate 75196.20000 3.759810e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.759810e+05 3.759810e+05 0.00 NULL
2022 Cuny Central Office It Senior Associate 57073.91500 1.141478e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.141478e+05 1.141478e+05 0.00 NULL
2022 Cuny Central Office Non-Teaching Adjunct I 5866.96937 4.693575e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.693575e+04 4.693575e+04 0.00 NULL
2022 Cuny Central Office Non-Teaching Adjunct Iii 28527.20000 2.852720e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.852720e+04 2.852720e+04 0.00 NULL
2022 Cuny Central Office Non-Teaching Adjunct Iv 11187.90000 4.475160e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.475160e+04 4.475160e+04 0.00 NULL
2022 Cuny Central Office Non-Teaching Adjunct V 31936.32000 3.193632e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.193632e+04 3.193632e+04 0.00 NULL
2022 Cuny Central Office University Assistant Dean 128408.00000 2.568160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.568160e+05 2.568160e+05 0.00 NULL
2022 Cuny Central Office University Associate Administrator 150700.00000 1.507000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.507000e+05 1.507000e+05 0.00 NULL
2022 Cuny Central Office University Associate Dean 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2022 Cuny Central Office University Dean 178000.00000 1.780000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.780000e+05 1.780000e+05 0.00 NULL
2022 Cuny Central Office University Payroll Analyst 53745.00000 2.687250e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.687250e+05 2.687250e+05 0.00 NULL
2022 Department For The Aging Accountant 68450.75000 2.738030e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.738030e+05 2.738030e+05 0.00 NULL
2022 Department For The Aging Adm Manager-Non-Mgrl 113505.50000 2.270110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.270110e+05 2.270110e+05 0.00 NULL
2022 Department For The Aging Admin Community Relations Specialist 84696.50000 1.693930e+05 1564.67 7.823350e+02 782.335 15.00 2 7.823350e+02 1564.67 1.709577e+05 1.709577e+05 0.00 NULL
2022 Department For The Aging Administrative Program Officer 97794.57898 5.769880e+06 0.00 0.000000e+00 0.000 0.00 59 0.000000e+00 0.00 5.769880e+06 5.769880e+06 0.00 NULL
2022 Department For The Aging Administrative Accountant 120054.00000 1.200540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200540e+05 1.200540e+05 0.00 NULL
2022 Department For The Aging Administrative Community Relations Specialist 133894.00000 1.338940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.338940e+05 1.338940e+05 0.00 NULL
2022 Department For The Aging Administrative Director Of Social Services 146989.25000 5.879570e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.879570e+05 5.879570e+05 0.00 NULL
2022 Department For The Aging Administrative Labor Relations Analyst 127000.00000 1.270000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.270000e+05 1.270000e+05 0.00 NULL
2022 Department For The Aging Administrative Manager 133000.00000 1.330000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.330000e+05 1.330000e+05 0.00 NULL
2022 Department For The Aging Administrative Procurement Analyst 147358.00000 1.473580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.473580e+05 1.473580e+05 0.00 NULL
2022 Department For The Aging Administrative Procurement Analyst-Non-Mgrl 71127.33333 2.133820e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.133820e+05 2.133820e+05 0.00 NULL
2022 Department For The Aging Administrative Project Manager 127949.00000 1.279490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.279490e+05 1.279490e+05 0.00 NULL
2022 Department For The Aging Administrative Staff Analyst 121434.31034 3.521595e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 3.521595e+06 3.521595e+06 0.00 NULL
2022 Department For The Aging Administrative Supervisor Of Building Maintenance 118800.00000 1.188000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.188000e+05 1.188000e+05 0.00 NULL
2022 Department For The Aging Agency Chief Contracting Officer 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2022 Department For The Aging Architect 77921.00000 7.792100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.792100e+04 7.792100e+04 0.00 NULL
2022 Department For The Aging Assistant Architect 72332.50000 1.446650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.446650e+05 1.446650e+05 0.00 NULL
2022 Department For The Aging Associate Project Manager 74650.00000 7.465000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.465000e+04 7.465000e+04 0.00 NULL
2022 Department For The Aging Associate Staff Analyst 81423.28333 9.770794e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 9.770794e+05 9.770794e+05 0.00 NULL
2022 Department For The Aging Bookkeeper 64959.00000 6.495900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.495900e+04 6.495900e+04 0.00 NULL
2022 Department For The Aging Certified It Developer 54160.90000 1.083218e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.083218e+05 1.083218e+05 0.00 NULL
2022 Department For The Aging City Custodial Assistant 44677.00000 4.467700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.467700e+04 4.467700e+04 0.00 NULL
2022 Department For The Aging City Research Scientist 62637.73375 2.505509e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.505509e+05 2.505509e+05 0.00 NULL
2022 Department For The Aging Clerical Associate 50196.91280 2.509846e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.509846e+05 2.509846e+05 0.00 NULL
2022 Department For The Aging College Aide 5820.30936 6.402340e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 6.402340e+04 6.402340e+04 0.00 NULL
2022 Department For The Aging Commissioner 241166.00000 2.411660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411660e+05 2.411660e+05 0.00 NULL
2022 Department For The Aging Community Assistant 44064.00000 4.406400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.406400e+04 4.406400e+04 0.00 NULL
2022 Department For The Aging Community Associate 49927.37056 1.697531e+06 18734.92 5.510271e+02 0.000 477.25 34 0.000000e+00 0.00 1.716266e+06 1.697531e+06 18734.92 NULL
2022 Department For The Aging Community Coordinator 67324.92995 4.443445e+06 1132.64 1.716121e+01 0.000 23.75 66 0.000000e+00 0.00 4.444578e+06 4.443445e+06 1132.64 NULL
2022 Department For The Aging Community Service Aide 9266.01562 2.075588e+06 0.00 0.000000e+00 0.000 0.00 224 0.000000e+00 0.00 2.075588e+06 2.075588e+06 0.00 NULL
2022 Department For The Aging Computer Associate 79680.50500 3.984025e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.984025e+05 3.984025e+05 0.00 NULL
2022 Department For The Aging Computer Operations Manager 133566.09000 1.335661e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.335661e+05 1.335661e+05 0.00 NULL
2022 Department For The Aging Computer Specialist 102824.20000 5.141210e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.141210e+05 5.141210e+05 0.00 NULL
2022 Department For The Aging Computer Systems Manager 114683.51375 9.174681e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.174681e+05 9.174681e+05 0.00 NULL
2022 Department For The Aging Counsel 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2022 Department For The Aging Deputy Commissioner 192413.00000 1.924130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.924130e+05 1.924130e+05 0.00 NULL
2022 Department For The Aging Director Of Administration 183153.00000 1.831530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.831530e+05 1.831530e+05 0.00 NULL
2022 Department For The Aging Director Of Community Programs 146806.00000 1.468060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.468060e+05 1.468060e+05 0.00 NULL
2022 Department For The Aging Director Of Direct Service Programs 133478.00000 1.334780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.334780e+05 1.334780e+05 0.00 NULL
2022 Department For The Aging Director Of Research Planning And Policy Analysis 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2022 Department For The Aging Executive Agency Counsel 122500.00000 2.450000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.450000e+05 2.450000e+05 0.00 NULL
2022 Department For The Aging Foster Grandparent 1745.91100 4.696501e+05 0.00 0.000000e+00 0.000 0.00 269 0.000000e+00 0.00 4.696501e+05 4.696501e+05 0.00 NULL
2022 Department For The Aging Housing Development Specialist 65640.00000 6.564000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.564000e+04 6.564000e+04 0.00 NULL
2022 Department For The Aging Management Auditor 77095.30769 1.002239e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.002239e+06 1.002239e+06 0.00 NULL
2022 Department For The Aging Nutrition Consultant 72414.25000 8.689710e+05 43.98 3.665000e+00 0.000 0.00 12 0.000000e+00 0.00 8.690150e+05 8.689710e+05 43.98 NULL
2022 Department For The Aging Principal Administrative Associate - Non Supvr 65676.68762 1.379210e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.379210e+06 1.379210e+06 0.00 NULL
2022 Department For The Aging Principal Nutrition Consultant 84480.00000 2.534400e+05 749.41 2.498033e+02 20.820 12.00 3 2.082000e+01 62.46 2.541894e+05 2.535025e+05 686.95 NULL
2022 Department For The Aging Procurement Analyst 64612.00000 6.461200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.461200e+04 6.461200e+04 0.00 NULL
2022 Department For The Aging Program Officer 69399.69946 2.914787e+06 1462.00 3.480952e+01 0.000 30.00 42 0.000000e+00 0.00 2.916249e+06 2.914787e+06 1462.00 NULL
2022 Department For The Aging Secretary 51173.50000 1.023470e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.023470e+05 1.023470e+05 0.00 NULL
2022 Department For The Aging Staff Analyst 71920.00000 1.438400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.438400e+05 1.438400e+05 0.00 NULL
2022 Department For The Aging Supervisor Ii 78383.66667 2.351510e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.351510e+05 2.351510e+05 0.00 NULL
2022 Department For The Aging Supervisor Iii 73461.68050 3.673084e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.673084e+05 3.673084e+05 0.00 NULL
2022 Department Of Buildings Adm Manager-Non-Mgrl 86523.21277 4.066591e+06 109024.39 2.319668e+03 0.000 1744.25 47 0.000000e+00 0.00 4.175615e+06 4.066591e+06 109024.39 NULL
2022 Department Of Buildings Admin Community Relations Specialist 89008.13333 1.335122e+06 50604.91 3.373661e+03 43.950 784.00 15 4.395000e+01 659.25 1.385727e+06 1.335781e+06 49945.66 NULL
2022 Department Of Buildings Admin Inspector 104189.55814 4.480151e+06 715726.00 1.664479e+04 10642.450 11269.75 43 1.064245e+04 457625.35 5.195877e+06 4.937776e+06 258100.65 NULL
2022 Department Of Buildings Administrative Architect 133139.15385 5.192427e+06 176875.53 4.535270e+03 0.000 2265.00 39 0.000000e+00 0.00 5.369303e+06 5.192427e+06 176875.53 NULL
2022 Department Of Buildings Administrative Borough Superintendent 146946.00000 5.877840e+05 2359.35 5.898375e+02 0.000 37.50 4 0.000000e+00 0.00 5.901433e+05 5.877840e+05 2359.35 NULL
2022 Department Of Buildings Administrative City Planner 109230.33333 3.276910e+05 11811.89 3.937297e+03 0.000 153.00 3 0.000000e+00 0.00 3.395029e+05 3.276910e+05 11811.89 NULL
2022 Department Of Buildings Administrative Engineer 135730.34043 6.379326e+06 52904.87 1.125636e+03 0.000 856.50 47 0.000000e+00 0.00 6.432231e+06 6.379326e+06 52904.87 NULL
2022 Department Of Buildings Administrative Inspector 140256.30769 1.823332e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.823332e+06 1.823332e+06 0.00 NULL
2022 Department Of Buildings Administrative Investigator 128909.00000 1.289090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.289090e+05 1.289090e+05 0.00 NULL
2022 Department Of Buildings Administrative Manager 131888.75000 5.275550e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.275550e+05 5.275550e+05 0.00 NULL
2022 Department Of Buildings Administrative Procurement Analyst-Non-Mgrl 90908.75000 3.636350e+05 1577.73 3.944325e+02 0.000 35.50 4 0.000000e+00 0.00 3.652127e+05 3.636350e+05 1577.73 NULL
2022 Department Of Buildings Administrative Project Manager 139755.75000 5.590230e+05 34200.17 8.550042e+03 0.000 378.75 4 0.000000e+00 0.00 5.932232e+05 5.590230e+05 34200.17 NULL
2022 Department Of Buildings Administrative Public Information Specialist 154046.00000 3.080920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.080920e+05 3.080920e+05 0.00 NULL
2022 Department Of Buildings Administrative Staff Analyst 117150.09434 6.208955e+06 236774.70 4.467447e+03 0.000 2233.25 53 0.000000e+00 0.00 6.445730e+06 6.208955e+06 236774.70 NULL
2022 Department Of Buildings Agency Attorney 82781.60345 4.801333e+06 28510.85 4.915664e+02 0.000 560.50 58 0.000000e+00 0.00 4.829844e+06 4.801333e+06 28510.85 NULL
2022 Department Of Buildings Agency Attorney Interne 64269.00000 3.213450e+05 34.15 6.830000e+00 0.000 1.00 5 0.000000e+00 0.00 3.213792e+05 3.213450e+05 34.15 NULL
2022 Department Of Buildings Agency Chief Contracting Officer 138694.00000 1.386940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.386940e+05 1.386940e+05 0.00 NULL
2022 Department Of Buildings Architect 96534.10000 9.653410e+05 8993.05 8.993050e+02 0.000 141.75 10 0.000000e+00 0.00 9.743341e+05 9.653410e+05 8993.05 NULL
2022 Department Of Buildings Assistant Architect 81749.76923 1.062747e+06 35712.13 2.747087e+03 0.000 566.50 13 0.000000e+00 0.00 1.098459e+06 1.062747e+06 35712.13 NULL
2022 Department Of Buildings Assistant Civil Engineer 72025.65000 1.440513e+06 51439.94 2.571997e+03 171.600 999.50 20 1.716000e+02 3432.00 1.491953e+06 1.443945e+06 48007.94 NULL
2022 Department Of Buildings Assistant Commissioner 179027.14286 1.253190e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.253190e+06 1.253190e+06 0.00 NULL
2022 Department Of Buildings Assistant Electrical Engineer 73039.00000 3.651950e+05 742.28 1.484560e+02 0.000 16.25 5 0.000000e+00 0.00 3.659373e+05 3.651950e+05 742.28 NULL
2022 Department Of Buildings Assistant Mechanical Engineer 69824.66667 8.378960e+05 13305.81 1.108818e+03 0.000 224.75 12 0.000000e+00 0.00 8.512018e+05 8.378960e+05 13305.81 NULL
2022 Department Of Buildings Assistant Plan Examiner 72566.76271 1.284432e+07 706195.17 3.989803e+03 39.740 13395.00 177 3.974000e+01 7033.98 1.355051e+07 1.285135e+07 699161.19 NULL
2022 Department Of Buildings Associate Inspector 75331.64706 1.280638e+06 198156.50 1.165626e+04 4991.910 3690.00 17 4.991910e+03 84862.47 1.478794e+06 1.365500e+06 113294.03 NULL
2022 Department Of Buildings Associate Investigator 72968.00000 2.918720e+05 41254.26 1.031357e+04 486.755 954.50 4 4.867550e+02 1947.02 3.331263e+05 2.938190e+05 39307.24 NULL
2022 Department Of Buildings Associate Labor Relations Analyst 90180.00000 2.705400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.705400e+05 2.705400e+05 0.00 NULL
2022 Department Of Buildings Associate Project Manager 95054.50000 1.901090e+05 32548.35 1.627417e+04 16274.175 475.00 2 1.627417e+04 32548.35 2.226574e+05 2.226574e+05 0.00 NULL
2022 Department Of Buildings Associate Public Information Specialist 75197.00000 7.519700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.519700e+04 7.519700e+04 0.00 NULL
2022 Department Of Buildings Associate Public Records Officer 71344.50000 1.426890e+05 8490.23 4.245115e+03 4245.115 238.50 2 4.245115e+03 8490.23 1.511792e+05 1.511792e+05 0.00 NULL
2022 Department Of Buildings Associate Staff Analyst 85461.87500 2.051085e+06 1364.12 5.683833e+01 0.000 8.00 24 0.000000e+00 0.00 2.052449e+06 2.051085e+06 1364.12 NULL
2022 Department Of Buildings Borough Commissioner 183971.00000 3.679420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.679420e+05 3.679420e+05 0.00 NULL
2022 Department Of Buildings Certified It Administrator 101676.80000 5.083840e+05 237668.09 4.753362e+04 7647.340 2703.50 5 7.647340e+03 38236.70 7.460521e+05 5.466207e+05 199431.39 NULL
2022 Department Of Buildings Chief Of Staff 157250.00000 3.145000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.145000e+05 3.145000e+05 0.00 NULL
2022 Department Of Buildings Chief Strategy Officer 143442.50000 2.868850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.868850e+05 2.868850e+05 0.00 NULL
2022 Department Of Buildings City Laborer 75690.00000 7.569000e+04 2256.59 2.256590e+03 2256.590 41.50 1 2.256590e+03 2256.59 7.794659e+04 7.794659e+04 0.00 NULL
2022 Department Of Buildings City Planner 99891.00000 9.989100e+04 2495.99 2.495990e+03 2495.990 37.50 1 2.495990e+03 2495.99 1.023870e+05 1.023870e+05 0.00 NULL
2022 Department Of Buildings City Research Scientist 85516.00000 3.420640e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.420640e+05 3.420640e+05 0.00 NULL
2022 Department Of Buildings Civil Engineer 99678.57143 2.093250e+06 52820.20 2.515248e+03 0.000 961.50 21 0.000000e+00 0.00 2.146070e+06 2.093250e+06 52820.20 NULL
2022 Department Of Buildings Clerical Associate 44141.46852 9.225567e+06 135955.76 6.505060e+02 0.000 4451.25 209 0.000000e+00 0.00 9.361523e+06 9.225567e+06 135955.76 NULL
2022 Department Of Buildings College Aide 8748.82292 4.199435e+05 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 4.199435e+05 4.199435e+05 0.00 NULL
2022 Department Of Buildings College Aide - Assignment Levels Ii And Iii 7712.34840 7.712348e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.712348e+03 7.712348e+03 0.00 NULL
2022 Department Of Buildings Commissioner Of Buildings 243171.00000 4.863420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863420e+05 4.863420e+05 0.00 NULL
2022 Department Of Buildings Community Assistant 41438.40000 2.071920e+05 257.73 5.154600e+01 0.000 10.00 5 0.000000e+00 0.00 2.074497e+05 2.071920e+05 257.73 NULL
2022 Department Of Buildings Community Associate 48842.18879 8.791594e+05 46844.86 2.602492e+03 51.260 1277.00 18 5.126000e+01 922.68 9.260043e+05 8.800821e+05 45922.18 NULL
2022 Department Of Buildings Community Coordinator 67530.94444 2.431114e+06 73649.34 2.045815e+03 312.000 1647.00 36 3.120000e+02 11232.00 2.504763e+06 2.442346e+06 62417.34 NULL
2022 Department Of Buildings Computer Associate 82809.15385 1.076519e+06 141257.86 1.086599e+04 775.410 2339.00 13 7.754100e+02 10080.33 1.217777e+06 1.086599e+06 131177.53 NULL
2022 Department Of Buildings Computer Operations Manager 123600.00000 1.236000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.236000e+05 1.236000e+05 0.00 NULL
2022 Department Of Buildings Computer Programmer Analyst 68733.00000 6.873300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.873300e+04 6.873300e+04 0.00 NULL
2022 Department Of Buildings Computer Specialist 105308.16667 1.895547e+06 13635.51 7.575283e+02 0.000 207.25 18 0.000000e+00 0.00 1.909183e+06 1.895547e+06 13635.51 NULL
2022 Department Of Buildings Computer Systems Manager 129264.55556 2.326762e+06 1112.06 6.178111e+01 0.000 19.00 18 0.000000e+00 0.00 2.327874e+06 2.326762e+06 1112.06 NULL
2022 Department Of Buildings Confidential Strategy Planner 87304.85714 6.111340e+05 50981.26 7.283037e+03 0.000 746.00 7 0.000000e+00 0.00 6.621153e+05 6.111340e+05 50981.26 NULL
2022 Department Of Buildings Deputy Commissioner 219349.00000 2.193490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.193490e+05 2.193490e+05 0.00 NULL
2022 Department Of Buildings Electrical Engineer 110583.50000 2.211670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.211670e+05 2.211670e+05 0.00 NULL
2022 Department Of Buildings Equal Employment Opportunity Officer 120077.00000 1.200770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200770e+05 1.200770e+05 0.00 NULL
2022 Department Of Buildings Estimator 65640.00000 6.564000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.564000e+04 6.564000e+04 0.00 NULL
2022 Department Of Buildings Executive Agency Counsel 143060.50000 2.861210e+06 3580.99 1.790495e+02 0.000 70.75 20 0.000000e+00 0.00 2.864791e+06 2.861210e+06 3580.99 NULL
2022 Department Of Buildings Executive Assistant 81193.50000 1.623870e+05 631.98 3.159900e+02 315.990 16.00 2 3.159900e+02 631.98 1.630190e+05 1.630190e+05 0.00 NULL
2022 Department Of Buildings Executive Director Of Professional Development 155764.00000 1.557640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.557640e+05 1.557640e+05 0.00 NULL
2022 Department Of Buildings Executive Director, New York City Loft Board 150000.00000 3.000000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.000000e+05 3.000000e+05 0.00 NULL
2022 Department Of Buildings Executive Inspector 120333.33333 3.610000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.610000e+05 3.610000e+05 0.00 NULL
2022 Department Of Buildings Executive Program Specialist 157500.00000 3.150000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.150000e+05 3.150000e+05 0.00 NULL
2022 Department Of Buildings Industrial Hygienist 64447.00000 1.933410e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.933410e+05 1.933410e+05 0.00 NULL
2022 Department Of Buildings Inspector 67363.72340 3.166095e+06 354474.77 7.542016e+03 847.460 7103.25 47 8.474600e+02 39830.62 3.520570e+06 3.205926e+06 314644.15 NULL
2022 Department Of Buildings Inspector Boilers 70848.75000 1.416975e+06 72919.70 3.645985e+03 146.645 3549.75 20 1.466450e+02 2932.90 1.489895e+06 1.419908e+06 69986.80 NULL
2022 Department Of Buildings Inspector Construction 66095.93864 2.908221e+07 2352438.35 5.346451e+03 675.635 50002.33 440 6.756350e+02 297279.40 3.143465e+07 2.937949e+07 2055158.95 NULL
2022 Department Of Buildings Inspector Elevators 71077.00108 2.629849e+06 674269.53 1.822350e+04 12752.410 15291.50 37 1.275241e+04 471839.17 3.304119e+06 3.101688e+06 202430.36 NULL
2022 Department Of Buildings Inspector Hoists And Rigging 78398.00000 6.271840e+05 97022.62 1.212783e+04 12804.820 1670.50 8 1.212783e+04 97022.62 7.242066e+05 7.242066e+05 0.00 NULL
2022 Department Of Buildings Inspector Plumbing 68130.92188 4.360379e+06 149155.11 2.330549e+03 221.975 2810.83 64 2.219750e+02 14206.40 4.509534e+06 4.374585e+06 134948.71 NULL
2022 Department Of Buildings Investigator 50150.74204 2.106331e+06 53282.40 1.268629e+03 26.050 1543.00 42 2.605000e+01 1094.10 2.159614e+06 2.107425e+06 52188.30 NULL
2022 Department Of Buildings Management Auditor 74585.00000 7.458500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.458500e+04 7.458500e+04 0.00 NULL
2022 Department Of Buildings Mechanical Engineer 96051.75000 7.684140e+05 2993.11 3.741388e+02 0.000 43.75 8 0.000000e+00 0.00 7.714071e+05 7.684140e+05 2993.11 NULL
2022 Department Of Buildings Mechanical Engineering Intern 28088.48000 2.808848e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.808848e+04 2.808848e+04 0.00 NULL
2022 Department Of Buildings Multiple Dwelling Specialist 74592.00000 1.491840e+05 4327.24 2.163620e+03 2163.620 78.25 2 2.163620e+03 4327.24 1.535112e+05 1.535112e+05 0.00 NULL
2022 Department Of Buildings Paralegal Aide 43197.00000 8.639400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.639400e+04 8.639400e+04 0.00 NULL
2022 Department Of Buildings Plan Examiner 88926.05405 3.290264e+06 195613.06 5.286839e+03 0.000 3388.00 37 0.000000e+00 0.00 3.485877e+06 3.290264e+06 195613.06 NULL
2022 Department Of Buildings Principal Administrative Associate - Non Supvr 67152.23093 5.036417e+06 198900.67 2.652009e+03 0.000 4611.68 75 0.000000e+00 0.00 5.235318e+06 5.036417e+06 198900.67 NULL
2022 Department Of Buildings Principal Multiple Dwelling Specialist 95468.66667 2.864060e+05 5107.90 1.702633e+03 1207.970 67.75 3 1.207970e+03 3623.91 2.915139e+05 2.900299e+05 1483.99 NULL
2022 Department Of Buildings Procurement Analyst 69123.40000 3.456170e+05 16886.20 3.377240e+03 0.000 424.25 5 0.000000e+00 0.00 3.625032e+05 3.456170e+05 16886.20 NULL
2022 Department Of Buildings Safety Specialist 45068.00000 9.013600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.013600e+04 9.013600e+04 0.00 NULL
2022 Department Of Buildings Secretary 46419.61538 6.034550e+05 11098.28 8.537138e+02 0.000 295.75 13 0.000000e+00 0.00 6.145533e+05 6.034550e+05 11098.28 NULL
2022 Department Of Buildings Senior Policy Advisor 118960.00000 1.189600e+05 3890.12 3.890120e+03 3890.120 88.00 1 3.890120e+03 3890.12 1.228501e+05 1.228501e+05 0.00 NULL
2022 Department Of Buildings Space Analyst 76534.33333 2.296030e+05 4099.93 1.366643e+03 90.280 87.00 3 9.028000e+01 270.84 2.337029e+05 2.298738e+05 3829.09 NULL
2022 Department Of Buildings Staff Analyst 66973.20000 1.004598e+06 622.12 4.147467e+01 0.000 6.25 15 0.000000e+00 0.00 1.005220e+06 1.004598e+06 622.12 NULL
2022 Department Of Buildings Strategic Initiative Specialist 118024.33333 7.081460e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.081460e+05 7.081460e+05 0.00 NULL
2022 Department Of Buildings Summer College Intern 773.08875 1.546177e+04 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.546177e+04 1.546177e+04 0.00 NULL
2022 Department Of Buildings Summer Graduate Intern 1384.88000 5.539520e+03 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.539520e+03 5.539520e+03 0.00 NULL
2022 Department Of Business Serv. Adm Manager-Non-Mgrl 94108.09091 1.035189e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.035189e+06 1.035189e+06 0.00 NULL
2022 Department Of Business Serv. Admin Contract Specialist 128000.00000 1.280000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.280000e+05 1.280000e+05 0.00 NULL
2022 Department Of Business Serv. Administrative Architect 160502.00000 1.605020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.605020e+05 1.605020e+05 0.00 NULL
2022 Department Of Business Serv. Administrative Business Promotion Coordinator 106367.60000 6.382056e+06 5432.84 9.054733e+01 0.000 94.50 60 0.000000e+00 0.00 6.387489e+06 6.382056e+06 5432.84 NULL
2022 Department Of Business Serv. Administrative City Planner 87624.00000 8.762400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.762400e+04 8.762400e+04 0.00 NULL
2022 Department Of Business Serv. Administrative Contract Specialist 97798.50000 1.955970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.955970e+05 1.955970e+05 0.00 NULL
2022 Department Of Business Serv. Administrative Manager 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2022 Department Of Business Serv. Administrative Public Information Specialist 134280.00000 1.342800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.342800e+05 1.342800e+05 0.00 NULL
2022 Department Of Business Serv. Administrative Space Analyst 119561.00000 1.195610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.195610e+05 1.195610e+05 0.00 NULL
2022 Department Of Business Serv. Administrative Staff Analyst 123426.16667 7.405570e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.405570e+05 7.405570e+05 0.00 NULL
2022 Department Of Business Serv. Agency Attorney 76306.00000 7.630600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.630600e+04 7.630600e+04 0.00 NULL
2022 Department Of Business Serv. Agency Chief Contracting Officer 142888.00000 1.428880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.428880e+05 1.428880e+05 0.00 NULL
2022 Department Of Business Serv. Assistant Architect 83816.50000 1.676330e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.676330e+05 1.676330e+05 0.00 NULL
2022 Department Of Business Serv. Assistant Commissioner 141248.00000 9.887360e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.887360e+05 9.887360e+05 0.00 NULL
2022 Department Of Business Serv. Assistant Plan Examiner 86285.00000 8.628500e+04 7.56 7.560000e+00 7.560 0.00 1 7.560000e+00 7.56 8.629256e+04 8.629256e+04 0.00 NULL
2022 Department Of Business Serv. Associate Contract Specialist 80952.28571 5.666660e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.666660e+05 5.666660e+05 0.00 NULL
2022 Department Of Business Serv. Associate Investigator 33058.20000 3.305820e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.305820e+04 3.305820e+04 0.00 NULL
2022 Department Of Business Serv. Associate Staff Analyst 90874.50000 3.634980e+05 6.25 1.562500e+00 0.000 0.00 4 0.000000e+00 0.00 3.635042e+05 3.634980e+05 6.25 NULL
2022 Department Of Business Serv. Business Promotion Coordinator 76351.20414 2.214185e+06 26027.83 8.975114e+02 0.000 476.00 29 0.000000e+00 0.00 2.240213e+06 2.214185e+06 26027.83 NULL
2022 Department Of Business Serv. Certified It Developer 101037.33333 6.062240e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.062240e+05 6.062240e+05 0.00 NULL
2022 Department Of Business Serv. City Planner 63489.00000 6.348900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.348900e+04 6.348900e+04 0.00 NULL
2022 Department Of Business Serv. Clerical Associate 60055.00000 3.603300e+05 449.58 7.493000e+01 0.000 9.75 6 0.000000e+00 0.00 3.607796e+05 3.603300e+05 449.58 NULL
2022 Department Of Business Serv. College Aide 6235.20000 6.235200e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.235200e+03 6.235200e+03 0.00 NULL
2022 Department Of Business Serv. Commissioner Of Business Services 227786.00000 4.555720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.555720e+05 4.555720e+05 0.00 NULL
2022 Department Of Business Serv. Community Associate 62020.00000 4.961600e+05 2785.21 3.481513e+02 0.000 73.25 8 0.000000e+00 0.00 4.989452e+05 4.961600e+05 2785.21 NULL
2022 Department Of Business Serv. Community Coordinator 67079.69447 4.091861e+06 58892.52 9.654511e+02 0.000 1177.75 61 0.000000e+00 0.00 4.150754e+06 4.091861e+06 58892.52 NULL
2022 Department Of Business Serv. Computer Associate 81475.00000 2.444250e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.444250e+05 2.444250e+05 0.00 NULL
2022 Department Of Business Serv. Computer Service Technician 60262.00000 6.026200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.026200e+04 6.026200e+04 0.00 NULL
2022 Department Of Business Serv. Computer Specialist 98617.00000 9.861700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.861700e+04 9.861700e+04 0.00 NULL
2022 Department Of Business Serv. Computer Systems Manager 113460.00000 4.538400e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.538400e+05 4.538400e+05 0.00 NULL
2022 Department Of Business Serv. Contract Reviewer 66195.48114 2.316842e+06 503.48 1.438514e+01 0.000 13.00 35 0.000000e+00 0.00 2.317345e+06 2.316842e+06 503.48 NULL
2022 Department Of Business Serv. Deputy Commissioner 177337.25000 7.093490e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.093490e+05 7.093490e+05 0.00 NULL
2022 Department Of Business Serv. Executive Agency Counsel 144666.00000 2.893320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.893320e+05 2.893320e+05 0.00 NULL
2022 Department Of Business Serv. Executive Assistant To The Commissioner 127500.00000 2.550000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.550000e+05 2.550000e+05 0.00 NULL
2022 Department Of Business Serv. General Counsel 211681.00000 2.116810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.116810e+05 2.116810e+05 0.00 NULL
2022 Department Of Business Serv. Graphic Artist 76881.50000 1.537630e+05 168.19 8.409500e+01 84.095 4.00 2 8.409500e+01 168.19 1.539312e+05 1.539312e+05 0.00 NULL
2022 Department Of Business Serv. Management Auditor 80785.00000 8.078500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.078500e+04 8.078500e+04 0.00 NULL
2022 Department Of Business Serv. Principal Administrative Associate - Non Supvr 75092.33333 6.758310e+05 80.36 8.928889e+00 0.000 2.00 9 0.000000e+00 0.00 6.759114e+05 6.758310e+05 80.36 NULL
2022 Department Of Business Serv. Procurement Analyst 79190.60000 3.959530e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.959530e+05 3.959530e+05 0.00 NULL
2022 Department Of Business Serv. Project Manager 102905.00000 6.174300e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.174300e+05 6.174300e+05 0.00 NULL
2022 Department Of Business Serv. Secretary To The Deputy Commissioner 67184.00000 6.718400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.718400e+04 6.718400e+04 0.00 NULL
2022 Department Of Business Serv. Space Analyst 85646.00000 8.564600e+04 2762.14 2.762140e+03 2762.140 51.75 1 2.762140e+03 2762.14 8.840814e+04 8.840814e+04 0.00 NULL
2022 Department Of Business Serv. Staff Analyst 79821.25000 3.192850e+05 2.80 7.000000e-01 0.000 0.00 4 0.000000e+00 0.00 3.192878e+05 3.192850e+05 2.80 NULL
2022 Department Of Business Serv. Telecommunications Associate 68240.00000 6.824000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.824000e+04 6.824000e+04 0.00 NULL
2022 Department Of City Planning *Certified Local Area Network Administrator 121000.00000 1.210000e+05 99.75 9.975000e+01 99.750 1.50 1 9.975000e+01 99.75 1.210998e+05 1.210998e+05 0.00 NULL
2022 Department Of City Planning Accountant 77065.00000 7.706500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.706500e+04 7.706500e+04 0.00 NULL
2022 Department Of City Planning Adm Manager-Non-Mgrl 75164.60000 3.758230e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.758230e+05 3.758230e+05 0.00 NULL
2022 Department Of City Planning Admin Community Relations Specialist 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2022 Department Of City Planning Administrative City Planner 127778.18919 4.727793e+06 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 4.727793e+06 4.727793e+06 0.00 NULL
2022 Department Of City Planning Administrative Staff Analyst 134771.42857 9.434000e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.434000e+05 9.434000e+05 0.00 NULL
2022 Department Of City Planning Agency Attorney 105409.50000 4.216380e+05 1.33 3.325000e-01 0.000 0.00 4 0.000000e+00 0.00 4.216393e+05 4.216380e+05 1.33 NULL
2022 Department Of City Planning Architectural Intern 61000.00000 1.220000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.220000e+05 1.220000e+05 0.00 NULL
2022 Department Of City Planning Assistant Architect 69996.00000 6.999600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.999600e+04 6.999600e+04 0.00 NULL
2022 Department Of City Planning Assistant Environmental Engineer 69000.00000 6.900000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.900000e+04 6.900000e+04 0.00 NULL
2022 Department Of City Planning Assistant Transportation Specialist 66529.00000 2.661160e+05 0.09 2.250000e-02 0.000 0.00 4 0.000000e+00 0.00 2.661161e+05 2.661160e+05 0.09 NULL
2022 Department Of City Planning Assistant Urban Designer 65653.50000 7.878420e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.878420e+05 7.878420e+05 0.00 NULL
2022 Department Of City Planning Associate Staff Analyst 85667.33333 5.140040e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.140040e+05 5.140040e+05 0.00 NULL
2022 Department Of City Planning Associate Urban Designer 86060.60000 4.303030e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.303030e+05 4.303030e+05 0.00 NULL
2022 Department Of City Planning Bookbinder 57707.00000 5.770700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.770700e+04 5.770700e+04 0.00 NULL
2022 Department Of City Planning Bookkeeper 62500.00000 6.250000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.250000e+04 6.250000e+04 0.00 NULL
2022 Department Of City Planning Business Promotion Coordinator 74825.00000 7.482500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.482500e+04 7.482500e+04 0.00 NULL
2022 Department Of City Planning Certified It Administrator 96256.00000 1.925120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.925120e+05 1.925120e+05 0.00 NULL
2022 Department Of City Planning Certified It Developer 123600.00000 1.236000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.236000e+05 1.236000e+05 0.00 NULL
2022 Department Of City Planning Chairman 243171.00000 7.295130e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.295130e+05 7.295130e+05 0.00 NULL
2022 Department Of City Planning City Planner 85316.95238 5.374968e+06 371.49 5.896667e+00 0.000 6.50 63 0.000000e+00 0.00 5.375339e+06 5.374968e+06 371.49 NULL
2022 Department Of City Planning City Research Scientist 80636.92000 2.015923e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 2.015923e+06 2.015923e+06 0.00 NULL
2022 Department Of City Planning Civil Engineer 96682.00000 9.668200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.668200e+04 9.668200e+04 0.00 NULL
2022 Department Of City Planning Clerical Associate 52140.41420 2.085617e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.085617e+05 2.085617e+05 0.00 NULL
2022 Department Of City Planning Commissioner 64224.00000 7.064640e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.064640e+05 7.064640e+05 0.00 NULL
2022 Department Of City Planning Commissioner Designated As Vice Chairman 73855.00000 7.385500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.385500e+04 7.385500e+04 0.00 NULL
2022 Department Of City Planning Community Associate 57417.60000 2.870880e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.870880e+05 2.870880e+05 0.00 NULL
2022 Department Of City Planning Community Coordinator 71123.38298 3.342799e+06 3222.82 6.857064e+01 0.000 82.75 47 0.000000e+00 0.00 3.346022e+06 3.342799e+06 3222.82 NULL
2022 Department Of City Planning Computer Aide-Non-Spvr 65847.00000 6.584700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.584700e+04 6.584700e+04 0.00 NULL
2022 Department Of City Planning Computer Associate 76991.39286 5.389398e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.389398e+05 5.389398e+05 0.00 NULL
2022 Department Of City Planning Computer Operations Manager 116296.00000 3.488880e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.488880e+05 3.488880e+05 0.00 NULL
2022 Department Of City Planning Computer Service Technician 55000.00000 5.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.500000e+04 5.500000e+04 0.00 NULL
2022 Department Of City Planning Computer Specialist 100311.85714 7.021830e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.021830e+05 7.021830e+05 0.00 NULL
2022 Department Of City Planning Computer Systems Manager 133463.00000 4.003890e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.003890e+05 4.003890e+05 0.00 NULL
2022 Department Of City Planning Contract Specialist 78860.00000 7.886000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.886000e+04 7.886000e+04 0.00 NULL
2022 Department Of City Planning Counsel 206000.00000 2.060000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.060000e+05 2.060000e+05 0.00 NULL
2022 Department Of City Planning Deputy Executive Director 207552.00000 2.075520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.075520e+05 2.075520e+05 0.00 NULL
2022 Department Of City Planning Director Of Mortgage Research And Analysis 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2022 Department Of City Planning Director Of Public Information 160609.00000 1.606090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.606090e+05 1.606090e+05 0.00 NULL
2022 Department Of City Planning Economist 66008.44000 1.650211e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.650211e+06 1.650211e+06 0.00 NULL
2022 Department Of City Planning Executive Agency Counsel 127377.50000 2.547550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.547550e+05 2.547550e+05 0.00 NULL
2022 Department Of City Planning Executive Assistant For Planning 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2022 Department Of City Planning Executive Assistant To The Chairman 72100.00000 7.210000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.210000e+04 7.210000e+04 0.00 NULL
2022 Department Of City Planning Executive Director 222326.00000 2.223260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.223260e+05 2.223260e+05 0.00 NULL
2022 Department Of City Planning Geologist 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2022 Department Of City Planning Graphic Artist 79993.00000 7.999300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.999300e+04 7.999300e+04 0.00 NULL
2022 Department Of City Planning Housing Development Specialist 77000.00000 1.540000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.540000e+05 1.540000e+05 0.00 NULL
2022 Department Of City Planning Labor Relations Analyst 77250.00000 7.725000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.725000e+04 7.725000e+04 0.00 NULL
2022 Department Of City Planning Motor Vehicle Supervisor 62205.00000 6.220500e+04 31612.28 3.161228e+04 31612.280 685.50 1 3.161228e+04 31612.28 9.381728e+04 9.381728e+04 0.00 NULL
2022 Department Of City Planning Principal Administrative Associate - Non Supvr 73874.00000 5.171180e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.171180e+05 5.171180e+05 0.00 NULL
2022 Department Of City Planning Principal Planning Consultant 104676.33333 3.140290e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.140290e+05 3.140290e+05 0.00 NULL
2022 Department Of City Planning Procurement Analyst 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2022 Department Of City Planning Project Manager 83000.00000 8.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.300000e+04 8.300000e+04 0.00 NULL
2022 Department Of City Planning Public Records Officer 61027.50000 1.220550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.220550e+05 1.220550e+05 0.00 NULL
2022 Department Of City Planning Secretary 58953.00000 5.895300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.895300e+04 5.895300e+04 0.00 NULL
2022 Department Of City Planning Secretary To The Chairman 87044.50000 1.740890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.740890e+05 1.740890e+05 0.00 NULL
2022 Department Of City Planning Staff Analyst 70232.00000 2.809280e+05 4.71 1.177500e+00 0.000 0.00 4 0.000000e+00 0.00 2.809327e+05 2.809280e+05 4.71 NULL
2022 Department Of City Planning Summer College Intern 2048.28140 8.807610e+04 0.00 0.000000e+00 0.000 0.00 43 0.000000e+00 0.00 8.807610e+04 8.807610e+04 0.00 NULL
2022 Department Of City Planning Telecommunications Associate 75833.00000 7.583300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.583300e+04 7.583300e+04 0.00 NULL
2022 Department Of City Planning Telecommunications Manager 84729.33333 1.270940e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.270940e+06 1.270940e+06 0.00 NULL
2022 Department Of City Planning Transportation Specialist 88734.50000 5.324070e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.324070e+05 5.324070e+05 0.00 NULL
2022 Department Of Correction *Cook 41045.35455 4.514989e+06 226177.87 2.056162e+03 644.290 6624.75 110 6.442900e+02 70871.90 4.741167e+06 4.585861e+06 155305.97 NULL
2022 Department Of Correction *Senior Cook 45054.54545 9.912000e+05 137921.54 6.269161e+03 4259.080 3674.00 22 4.259080e+03 93699.76 1.129122e+06 1.084900e+06 44221.78 NULL
2022 Department Of Correction ?Warden 97866.00000 9.786600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.786600e+04 9.786600e+04 0.00 NULL
2022 Department Of Correction Adm Manager-Non-Mgrl 80350.76190 3.374732e+06 127760.86 3.041925e+03 0.000 2441.50 42 0.000000e+00 0.00 3.502493e+06 3.374732e+06 127760.86 NULL
2022 Department Of Correction Admin Community Relations Specialist 104058.33333 3.121750e+05 1084.00 3.613333e+02 99.990 9.25 3 9.999000e+01 299.97 3.132590e+05 3.124750e+05 784.03 NULL
2022 Department Of Correction Admin Construction Project Manager 117428.00000 1.174280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.174280e+05 1.174280e+05 0.00 NULL
2022 Department Of Correction Admin Inspector 106741.00000 1.067410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.067410e+05 1.067410e+05 0.00 NULL
2022 Department Of Correction Administrative Architect 150779.50000 3.015590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.015590e+05 3.015590e+05 0.00 NULL
2022 Department Of Correction Administrative Business Promotion Coordinator 135000.00000 4.050000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.050000e+05 4.050000e+05 0.00 NULL
2022 Department Of Correction Administrative Construction Project Manager 154054.00000 1.540540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.540540e+05 1.540540e+05 0.00 NULL
2022 Department Of Correction Administrative Contract Specialist 89658.50000 1.793170e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.793170e+05 1.793170e+05 0.00 NULL
2022 Department Of Correction Administrative Director Of Social Services 124367.16667 7.462030e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.462030e+05 7.462030e+05 0.00 NULL
2022 Department Of Correction Administrative Graphic Artist 102072.00000 1.020720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020720e+05 1.020720e+05 0.00 NULL
2022 Department Of Correction Administrative Investigator 93424.85714 6.539740e+05 34430.33 4.918619e+03 0.000 620.75 7 0.000000e+00 0.00 6.884043e+05 6.539740e+05 34430.33 NULL
2022 Department Of Correction Administrative Management Auditor 105318.00000 1.053180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.053180e+05 1.053180e+05 0.00 NULL
2022 Department Of Correction Administrative Manager 164000.00000 1.640000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.640000e+05 1.640000e+05 0.00 NULL
2022 Department Of Correction Administrative Procurement Analyst-Non-Mgrl 94812.28571 6.636860e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.636860e+05 6.636860e+05 0.00 NULL
2022 Department Of Correction Administrative Project Manager 119946.57143 8.396260e+05 267.52 3.821714e+01 0.000 4.00 7 0.000000e+00 0.00 8.398935e+05 8.396260e+05 267.52 NULL
2022 Department Of Correction Administrative Public Health Sanitarian 148042.33333 4.441270e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.441270e+05 4.441270e+05 0.00 NULL
2022 Department Of Correction Administrative Public Information Specialist 166092.50000 3.321850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.321850e+05 3.321850e+05 0.00 NULL
2022 Department Of Correction Administrative Public Information Specialist Nm Former M1/M2 89610.00000 2.688300e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.688300e+05 2.688300e+05 0.00 NULL
2022 Department Of Correction Administrative Public Records Officer 122487.00000 1.224870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.224870e+05 1.224870e+05 0.00 NULL
2022 Department Of Correction Administrative Quality Assurance Specialist 147708.00000 1.477080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.477080e+05 1.477080e+05 0.00 NULL
2022 Department Of Correction Administrative Staff Analyst 115735.47273 6.365451e+06 32032.77 5.824140e+02 6.630 27.50 55 6.630000e+00 364.65 6.397484e+06 6.365816e+06 31668.12 NULL
2022 Department Of Correction Administrative Supervisor Of Building Maintenance 177548.00000 3.550960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.550960e+05 3.550960e+05 0.00 NULL
2022 Department Of Correction Agency Attorney 98955.13793 5.739398e+06 4977.97 8.582707e+01 0.000 86.00 58 0.000000e+00 0.00 5.744376e+06 5.739398e+06 4977.97 NULL
2022 Department Of Correction Agency Attorney Interne 62397.00000 6.239700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.239700e+04 6.239700e+04 0.00 NULL
2022 Department Of Correction Agency Chief Contracting Officer 177113.00000 1.771130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.771130e+05 1.771130e+05 0.00 NULL
2022 Department Of Correction Architect 112525.00000 1.125250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.125250e+05 1.125250e+05 0.00 NULL
2022 Department Of Correction Asbestos Handler Supervisor 84800.00000 1.696000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.696000e+05 1.696000e+05 0.00 NULL
2022 Department Of Correction Assistant Commissioner 152321.38462 1.980178e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.980178e+06 1.980178e+06 0.00 NULL
2022 Department Of Correction Associate Commissioner 187232.00000 5.616960e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.616960e+05 5.616960e+05 0.00 NULL
2022 Department Of Correction Associate Correctional Counselor 65827.59322 3.883828e+06 5131.76 8.697898e+01 0.000 104.75 59 0.000000e+00 0.00 3.888960e+06 3.883828e+06 5131.76 NULL
2022 Department Of Correction Associate Investigator 68049.15446 4.763441e+05 16053.23 2.293319e+03 1618.100 354.75 7 1.618100e+03 11326.70 4.923973e+05 4.876708e+05 4726.53 NULL
2022 Department Of Correction Associate Project Manager 96312.66667 2.889380e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.889380e+05 2.889380e+05 0.00 NULL
2022 Department Of Correction Associate Public Health Sanitarian 77349.75000 3.093990e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.093990e+05 3.093990e+05 0.00 NULL
2022 Department Of Correction Associate Staff Analyst 91307.47619 1.917457e+06 5154.27 2.454414e+02 0.000 1.75 21 0.000000e+00 0.00 1.922611e+06 1.917457e+06 5154.27 NULL
2022 Department Of Correction Auto Body Worker 64125.50000 1.282510e+05 39617.20 1.980860e+04 19808.600 868.75 2 1.980860e+04 39617.20 1.678682e+05 1.678682e+05 0.00 NULL
2022 Department Of Correction Auto Mechanic NA NA 206460.09 1.214471e+04 11271.700 3175.25 17 1.127170e+04 191618.90 NA NA NA NULL
2022 Department Of Correction Automotive Service Worker 40444.00000 2.426640e+05 10491.89 1.748648e+03 360.745 346.50 6 3.607450e+02 2164.47 2.531559e+05 2.448285e+05 8327.42 NULL
2022 Department Of Correction Baker 41351.00000 1.240530e+05 3990.91 1.330303e+03 263.690 140.00 3 2.636900e+02 791.07 1.280439e+05 1.248441e+05 3199.84 NULL
2022 Department Of Correction Bookkeeper 44115.00000 4.411500e+04 1305.22 1.305220e+03 1305.220 41.50 1 1.305220e+03 1305.22 4.542022e+04 4.542022e+04 0.00 NULL
2022 Department Of Correction Bricklayer NA NA 332086.77 5.534779e+04 48661.695 4489.50 6 4.866169e+04 291970.17 NA NA NA NULL
2022 Department Of Correction Captain 112680.41220 9.239794e+07 32366936.70 3.947187e+04 32042.865 527061.08 820 3.204287e+04 26275149.30 1.247649e+08 1.186731e+08 6091787.40 NULL
2022 Department Of Correction Carpenter NA NA 862297.01 6.159264e+04 57806.150 10876.25 14 5.780615e+04 809286.10 NA NA NA NULL
2022 Department Of Correction Case Management Nurse 86007.31187 1.720146e+05 43209.51 2.160476e+04 21604.755 526.25 2 2.160476e+04 43209.51 2.152241e+05 2.152241e+05 0.00 NULL
2022 Department Of Correction Cashier 43543.48276 1.262761e+06 239887.46 8.271981e+03 3722.740 7406.50 29 3.722740e+03 107959.46 1.502648e+06 1.370720e+06 131928.00 NULL
2022 Department Of Correction Cement Mason NA NA 81024.45 8.102445e+04 81024.450 842.25 1 8.102445e+04 81024.45 NA NA NA NULL
2022 Department Of Correction Certified It Administrator 98419.33333 5.905160e+05 21269.28 3.544880e+03 3347.730 301.25 6 3.347730e+03 20086.38 6.117853e+05 6.106024e+05 1182.90 NULL
2022 Department Of Correction Certified It Developer 103325.00000 6.199500e+05 6798.91 1.133152e+03 0.000 95.00 6 0.000000e+00 0.00 6.267489e+05 6.199500e+05 6798.91 NULL
2022 Department Of Correction Chaplain 42814.26859 9.847282e+05 2179.53 9.476217e+01 0.000 54.00 23 0.000000e+00 0.00 9.869077e+05 9.847282e+05 2179.53 NULL
2022 Department Of Correction Chief Of Staff 222257.00000 6.667710e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.667710e+05 6.667710e+05 0.00 NULL
2022 Department Of Correction City Laborer 80402.96319 7.236267e+05 161133.40 1.790371e+04 20853.030 2903.25 9 1.790371e+04 161133.40 8.847601e+05 8.847601e+05 0.00 NULL
2022 Department Of Correction City Medical Specialist 126711.40770 1.647248e+06 2138.80 1.645231e+02 0.000 22.00 13 0.000000e+00 0.00 1.649387e+06 1.647248e+06 2138.80 NULL
2022 Department Of Correction City Research Scientist 96077.84615 1.249012e+06 940.91 7.237769e+01 0.000 20.50 13 0.000000e+00 0.00 1.249953e+06 1.249012e+06 940.91 NULL
2022 Department Of Correction Civil Engineer 95310.00000 9.531000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.531000e+04 9.531000e+04 0.00 NULL
2022 Department Of Correction Clerical Associate 46418.22807 2.645839e+06 184670.86 3.239840e+03 585.310 5285.35 57 5.853100e+02 33362.67 2.830510e+06 2.679202e+06 151308.19 NULL
2022 Department Of Correction Commissary Manager 41104.33333 1.233130e+05 3517.34 1.172447e+03 357.780 143.50 3 3.577800e+02 1073.34 1.268303e+05 1.243863e+05 2444.00 NULL
2022 Department Of Correction Commissioner 243171.00000 7.295130e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.295130e+05 7.295130e+05 0.00 NULL
2022 Department Of Correction Community Assistant 39794.00000 7.958800e+04 18505.78 9.252890e+03 9252.890 672.00 2 9.252890e+03 18505.78 9.809378e+04 9.809378e+04 0.00 NULL
2022 Department Of Correction Community Associate 42496.43457 3.824679e+05 4918.12 5.464578e+02 0.000 156.00 9 0.000000e+00 0.00 3.873860e+05 3.824679e+05 4918.12 NULL
2022 Department Of Correction Community Coordinator 60348.47866 8.448787e+06 366447.36 2.617481e+03 0.000 7555.25 140 0.000000e+00 0.00 8.815234e+06 8.448787e+06 366447.36 NULL
2022 Department Of Correction Computer Aide-Non-Spvr 53318.50000 1.066370e+05 1882.01 9.410050e+02 941.005 52.50 2 9.410050e+02 1882.01 1.085190e+05 1.085190e+05 0.00 NULL
2022 Department Of Correction Computer Associate 78694.07143 1.101717e+06 29798.05 2.128432e+03 0.000 523.00 14 0.000000e+00 0.00 1.131515e+06 1.101717e+06 29798.05 NULL
2022 Department Of Correction Computer Operations Manager 138729.50000 8.323770e+05 11117.64 1.852940e+03 0.000 114.50 6 0.000000e+00 0.00 8.434946e+05 8.323770e+05 11117.64 NULL
2022 Department Of Correction Computer Specialist 96994.46667 1.454917e+06 27333.52 1.822235e+03 0.000 369.00 15 0.000000e+00 0.00 1.482251e+06 1.454917e+06 27333.52 NULL
2022 Department Of Correction Computer Systems Manager 122999.68182 2.705993e+06 11254.43 5.115650e+02 0.000 161.50 22 0.000000e+00 0.00 2.717247e+06 2.705993e+06 11254.43 NULL
2022 Department Of Correction Confidential Agency Investigator 121849.61111 2.193293e+06 6150.52 3.416956e+02 0.000 115.35 18 0.000000e+00 0.00 2.199444e+06 2.193293e+06 6150.52 NULL
2022 Department Of Correction Construction Project Manager 102334.00000 2.046680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.046680e+05 2.046680e+05 0.00 NULL
2022 Department Of Correction Correction Administrative Aide 36521.30249 2.921704e+05 9708.78 1.213598e+03 148.915 366.00 8 1.489150e+02 1191.32 3.018792e+05 2.933617e+05 8517.46 NULL
2022 Department Of Correction Correction Officer 83463.93184 7.359015e+08 199753575.35 2.265550e+04 14676.450 4445023.14 8817 1.467645e+04 129402259.65 9.356551e+08 8.653037e+08 70351315.70 NULL
2022 Department Of Correction Correctional Standards Review Specialist 73786.48387 2.287381e+06 32327.89 1.042835e+03 0.000 640.25 31 0.000000e+00 0.00 2.319709e+06 2.287381e+06 32327.89 NULL
2022 Department Of Correction Deputy Commissioner 203644.69231 2.647381e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 2.647381e+06 2.647381e+06 0.00 NULL
2022 Department Of Correction Dietary Aide 38941.66667 2.336500e+05 9782.34 1.630390e+03 1244.535 327.25 6 1.244535e+03 7467.21 2.434323e+05 2.411172e+05 2315.13 NULL
2022 Department Of Correction Dietitian 59767.88889 5.379110e+05 1.81 2.011111e-01 0.000 0.00 9 0.000000e+00 0.00 5.379128e+05 5.379110e+05 1.81 NULL
2022 Department Of Correction Director Of Correctional Standards Review 101064.27778 3.638314e+06 250.13 6.948056e+00 0.000 11.50 36 0.000000e+00 0.00 3.638564e+06 3.638314e+06 250.13 NULL
2022 Department Of Correction Director Of Public Affairs 130000.00000 2.600000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.600000e+05 2.600000e+05 0.00 NULL
2022 Department Of Correction Electrical Engineer 102917.00000 1.029170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.029170e+05 1.029170e+05 0.00 NULL
2022 Department Of Correction Electrician NA NA 2442076.67 6.105192e+04 58548.670 26568.75 40 5.854867e+04 2341946.80 NA NA NA NULL
2022 Department Of Correction Electricians Helper NA NA 375904.17 2.088356e+04 19412.775 6313.75 18 1.941278e+04 349429.95 NA NA NA NULL
2022 Department Of Correction Executive Agency Counsel 149788.48000 3.744712e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 3.744712e+06 3.744712e+06 0.00 NULL
2022 Department Of Correction Executive Assistant To The Commissioner 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2022 Department Of Correction Executive Director Of Food Services 145022.00000 1.450220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450220e+05 1.450220e+05 0.00 NULL
2022 Department Of Correction Executive Program Specialist 131515.75000 5.260630e+05 42097.66 1.052442e+04 0.000 593.75 4 0.000000e+00 0.00 5.681607e+05 5.260630e+05 42097.66 NULL
2022 Department Of Correction Exterminator 45010.50000 1.800420e+05 52831.98 1.320800e+04 11246.910 1826.75 4 1.124691e+04 44987.64 2.328740e+05 2.250296e+05 7844.34 NULL
2022 Department Of Correction Film Manager 67964.33333 2.038930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.038930e+05 2.038930e+05 0.00 NULL
2022 Department Of Correction First Deputy Commissioner 220000.00000 2.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.200000e+05 2.200000e+05 0.00 NULL
2022 Department Of Correction Fitness Instructor 48180.16668 1.927207e+05 770.16 1.925400e+02 192.540 24.00 4 1.925400e+02 770.16 1.934908e+05 1.934908e+05 0.00 NULL
2022 Department Of Correction Food Service Administrator 85574.75000 3.422990e+05 831.33 2.078325e+02 155.060 17.75 4 1.550600e+02 620.24 3.431303e+05 3.429192e+05 211.09 NULL
2022 Department Of Correction Food Service Manager 63185.80000 6.318580e+05 4400.76 4.400760e+02 504.090 112.75 10 4.400760e+02 4400.76 6.362588e+05 6.362588e+05 0.00 NULL
2022 Department Of Correction Fraud Investigator 67013.00000 6.701300e+04 84551.60 8.455160e+04 84551.600 1503.00 1 8.455160e+04 84551.60 1.515646e+05 1.515646e+05 0.00 NULL
2022 Department Of Correction Graphic Artist 76291.50000 1.525830e+05 13072.28 6.536140e+03 6536.140 356.00 2 6.536140e+03 13072.28 1.656553e+05 1.656553e+05 0.00 NULL
2022 Department Of Correction Health Services Manager Non Managerial Level I 110354.00000 1.103540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.103540e+05 1.103540e+05 0.00 NULL
2022 Department Of Correction High Pressure Plant Tender NA NA 528491.48 4.404096e+04 41791.050 9345.00 12 4.179105e+04 501492.60 NA NA NA NULL
2022 Department Of Correction Industrial Hygienist 65229.50000 1.304590e+05 10760.15 5.380075e+03 5380.075 267.75 2 5.380075e+03 10760.15 1.412191e+05 1.412191e+05 0.00 NULL
2022 Department Of Correction Institutional Aide 40142.92857 5.620010e+05 181256.49 1.294689e+04 4185.165 6091.25 14 4.185165e+03 58592.31 7.432575e+05 6.205933e+05 122664.18 NULL
2022 Department Of Correction Investigator 59761.46701 8.426367e+06 516259.70 3.661416e+03 1194.000 12092.00 141 1.194000e+03 168354.00 8.942627e+06 8.594721e+06 347905.70 NULL
2022 Department Of Correction It Infrastructure Engineer 105000.00000 2.100000e+05 3386.32 1.693160e+03 1693.160 65.50 2 1.693160e+03 3386.32 2.133863e+05 2.133863e+05 0.00 NULL
2022 Department Of Correction Legal Coordinator 59211.30303 1.953973e+06 103468.47 3.135408e+03 277.860 2335.75 33 2.778600e+02 9169.38 2.057441e+06 1.963142e+06 94299.09 NULL
2022 Department Of Correction Licensed Barber 40480.42857 2.833630e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.833630e+05 2.833630e+05 0.00 NULL
2022 Department Of Correction Locksmith NA NA 236104.83 1.816191e+04 2159.200 5347.00 13 2.159200e+03 28069.60 NA NA NA NULL
2022 Department Of Correction Machinist NA NA 145812.57 4.860419e+04 42267.270 2248.50 3 4.226727e+04 126801.81 NA NA NA NULL
2022 Department Of Correction Maintenance Worker NA NA 604843.69 2.160156e+04 18757.565 13036.57 28 1.875756e+04 525211.82 NA NA NA NULL
2022 Department Of Correction Management Auditor 83878.50000 1.677570e+05 364.98 1.824900e+02 182.490 6.50 2 1.824900e+02 364.98 1.681220e+05 1.681220e+05 0.00 NULL
2022 Department Of Correction Marine Engineer 106107.94315 5.305397e+05 352039.84 7.040797e+04 62579.840 6233.00 5 6.257984e+04 312899.20 8.825796e+05 8.434389e+05 39140.64 NULL
2022 Department Of Correction Marine Oiler 204979.35465 2.049794e+05 138965.29 1.389653e+05 138965.290 2567.25 1 1.389653e+05 138965.29 3.439446e+05 3.439446e+05 0.00 NULL
2022 Department Of Correction Masons Helper NA NA 38250.73 3.825073e+04 38250.730 740.25 1 3.825073e+04 38250.73 NA NA NA NULL
2022 Department Of Correction Metal Work Mechanic 101007.00000 4.040280e+05 258641.23 6.466031e+04 61020.785 2136.75 4 6.102079e+04 244083.14 6.626692e+05 6.481111e+05 14558.09 NULL
2022 Department Of Correction Motor Vehicle Operator 49356.13636 2.171670e+06 524561.30 1.192185e+04 5954.630 13800.50 44 5.954630e+03 262003.72 2.696231e+06 2.433674e+06 262557.58 NULL
2022 Department Of Correction Motor Vehicle Supervisor 59060.25000 2.362410e+05 6914.95 1.728737e+03 142.110 159.25 4 1.421100e+02 568.44 2.431560e+05 2.368094e+05 6346.51 NULL
2022 Department Of Correction New York City Public Service Fellow 46350.00000 4.635000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.635000e+04 4.635000e+04 0.00 NULL
2022 Department Of Correction Office Machine Aide 41107.00000 4.110700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.110700e+04 4.110700e+04 0.00 NULL
2022 Department Of Correction Oiler NA NA 1912888.44 5.796632e+04 58713.810 21144.50 33 5.796632e+04 1912888.44 NA NA NA NULL
2022 Department Of Correction Paralegal Aide 47550.62460 4.755062e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.755062e+04 4.755062e+04 0.00 NULL
2022 Department Of Correction Plasterer NA NA 165194.42 8.259721e+04 82597.210 1896.25 2 8.259721e+04 165194.42 NA NA NA NULL
2022 Department Of Correction Plumber NA NA 1430252.96 4.613719e+04 43683.730 13561.50 31 4.368373e+04 1354195.63 NA NA NA NULL
2022 Department Of Correction Plumber’s Helper NA NA 536004.90 3.350031e+04 36063.220 7277.75 16 3.350031e+04 536004.90 NA NA NA NULL
2022 Department Of Correction Principal Administrative Associate - Non Supvr 62822.05835 4.209078e+06 117803.89 1.758267e+03 4.360 2651.25 67 4.360000e+00 292.12 4.326882e+06 4.209370e+06 117511.77 NULL
2022 Department Of Correction Printing Press Operator NA NA 57837.68 5.783768e+04 57837.680 976.00 1 5.783768e+04 57837.68 NA NA NA NULL
2022 Department Of Correction Procurement Analyst 65186.45455 7.170510e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.170510e+05 7.170510e+05 0.00 NULL
2022 Department Of Correction Program Specialist Correction 72271.30037 6.287603e+06 764661.11 8.789208e+03 211.380 13368.02 87 2.113800e+02 18390.06 7.052264e+06 6.305993e+06 746271.05 NULL
2022 Department Of Correction Project Manager 71548.00000 7.154800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.154800e+04 7.154800e+04 0.00 NULL
2022 Department Of Correction Psychologist 70305.71616 4.921400e+05 29791.92 4.255989e+03 0.000 389.50 7 0.000000e+00 0.00 5.219319e+05 4.921400e+05 29791.92 NULL
2022 Department Of Correction Public Health Sanitarian 59842.33333 3.590540e+05 4890.93 8.151550e+02 0.000 93.87 6 0.000000e+00 0.00 3.639449e+05 3.590540e+05 4890.93 NULL
2022 Department Of Correction Radio Repair Mechanic NA NA 25696.15 2.569615e+04 25696.150 335.00 1 2.569615e+04 25696.15 NA NA NA NULL
2022 Department Of Correction Recreation Director 45438.30000 9.087660e+05 1109.64 5.548200e+01 0.000 41.00 20 0.000000e+00 0.00 9.098756e+05 9.087660e+05 1109.64 NULL
2022 Department Of Correction Recreation Supervisor 59446.00000 5.944600e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.944600e+05 5.944600e+05 0.00 NULL
2022 Department Of Correction Roofer NA NA 242664.40 3.033305e+04 25107.665 4247.25 8 2.510767e+04 200861.32 NA NA NA NULL
2022 Department Of Correction Rubber Tire Repairer NA NA 2061.85 1.030925e+03 1030.925 45.75 2 1.030925e+03 2061.85 NA NA NA NULL
2022 Department Of Correction Secretary 38714.00000 3.871400e+04 11043.43 1.104343e+04 11043.430 399.50 1 1.104343e+04 11043.43 4.975743e+04 4.975743e+04 0.00 NULL
2022 Department Of Correction Secretary To The Commissioner Of Correction 93063.00000 9.306300e+04 24809.88 2.480988e+04 24809.880 405.50 1 2.480988e+04 24809.88 1.178729e+05 1.178729e+05 0.00 NULL
2022 Department Of Correction Senior Baker 46652.66667 1.399580e+05 574.26 1.914200e+02 0.000 13.00 3 0.000000e+00 0.00 1.405323e+05 1.399580e+05 574.26 NULL
2022 Department Of Correction Senior Institutional Trades Instructor 48542.50000 9.708500e+04 52643.23 2.632162e+04 26321.615 1279.00 2 2.632162e+04 52643.23 1.497282e+05 1.497282e+05 0.00 NULL
2022 Department Of Correction Senior Stationary Engineer NA NA 626254.99 8.946500e+04 72213.240 5786.50 7 7.221324e+04 505492.68 NA NA NA NULL
2022 Department Of Correction Sheet Metal Worker NA NA 371914.95 5.313071e+04 72168.320 3211.50 7 5.313071e+04 371914.95 NA NA NA NULL
2022 Department Of Correction Social Worker 56187.00000 3.371220e+05 8778.85 1.463142e+03 0.000 205.50 6 0.000000e+00 0.00 3.459008e+05 3.371220e+05 8778.85 NULL
2022 Department Of Correction Staff Analyst 66727.09633 1.000906e+06 7603.88 5.069253e+02 0.000 119.25 15 0.000000e+00 0.00 1.008510e+06 1.000906e+06 7603.88 NULL
2022 Department Of Correction Staff Nurse 73071.64450 5.845732e+05 42415.69 5.301961e+03 148.025 663.00 8 1.480250e+02 1184.20 6.269888e+05 5.857574e+05 41231.49 NULL
2022 Department Of Correction Stationary Engineer NA NA 2207267.71 1.103634e+05 107841.750 23009.00 20 1.078418e+05 2156835.00 NA NA NA NULL
2022 Department Of Correction Steam Fitter NA NA 538518.39 4.487653e+04 40823.750 4991.00 12 4.082375e+04 489885.00 NA NA NA NULL
2022 Department Of Correction Steam Fitter’s Helper NA NA 221241.51 5.531038e+04 58068.330 2617.00 4 5.531038e+04 221241.51 NA NA NA NULL
2022 Department Of Correction Stock Worker 39915.77778 3.592420e+05 81224.77 9.024974e+03 5078.070 2831.00 9 5.078070e+03 45702.63 4.404668e+05 4.049446e+05 35522.14 NULL
2022 Department Of Correction Summer College Intern 1421.88235 2.417200e+04 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.417200e+04 2.417200e+04 0.00 NULL
2022 Department Of Correction Summer Graduate Intern 2360.75000 3.541125e+04 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 3.541125e+04 3.541125e+04 0.00 NULL
2022 Department Of Correction Supervising Computer Service Technician 29728.92000 2.972892e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.972892e+04 2.972892e+04 0.00 NULL
2022 Department Of Correction Supervising Housekeeper 51781.00000 1.035620e+05 32757.21 1.637860e+04 16378.605 814.75 2 1.637860e+04 32757.21 1.363192e+05 1.363192e+05 0.00 NULL
2022 Department Of Correction Supervisor Of Electrical Installations & Maintenance 78130.00000 7.813000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.813000e+04 7.813000e+04 0.00 NULL
2022 Department Of Correction Supervisor Of Mechanics NA NA 996883.39 6.230521e+04 77950.965 10661.50 16 6.230521e+04 996883.39 NA NA NA NULL
2022 Department Of Correction Supervisor Of Stock Workers 47832.58333 5.739910e+05 48923.59 4.076966e+03 141.465 1388.00 12 1.414650e+02 1697.58 6.229146e+05 5.756886e+05 47226.01 NULL
2022 Department Of Correction Supervisor Plumber NA NA 152469.04 7.623452e+04 76234.520 1378.50 2 7.623452e+04 152469.04 NA NA NA NULL
2022 Department Of Correction Supervisor Steamfitter NA NA 100915.65 1.009156e+05 100915.650 886.00 1 1.009156e+05 100915.65 NA NA NA NULL
2022 Department Of Correction Telecommunications Associate 89254.50000 1.785090e+05 22044.69 1.102234e+04 11022.345 322.00 2 1.102234e+04 22044.69 2.005537e+05 2.005537e+05 0.00 NULL
2022 Department Of Correction Thermostat Repairer NA NA 807260.46 6.209696e+04 73589.260 7881.25 13 6.209696e+04 807260.46 NA NA NA NULL
2022 Department Of Correction Tractor Operator NA NA 292450.68 9.748356e+04 104389.590 2447.75 3 9.748356e+04 292450.68 NA NA NA NULL
2022 Department Of Correction Warden 212008.35714 2.968117e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.968117e+06 2.968117e+06 0.00 NULL
2022 Department Of Correction Warden-Assistant Deputy Warden Ted < 11/1/92 129277.91837 1.266924e+07 5430607.08 5.541436e+04 46707.525 79735.98 98 4.670753e+04 4577337.45 1.809984e+07 1.724657e+07 853269.63 NULL
2022 Department Of Correction Warden-Deputy Warden In Comm Ted < 11/1/92 183466.50000 3.669330e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.669330e+05 3.669330e+05 0.00 NULL
2022 Department Of Correction Warden-Deputy Warden Ted < 11/1/92 169311.30303 5.587273e+06 43149.12 1.307549e+03 0.000 685.75 33 0.000000e+00 0.00 5.630422e+06 5.587273e+06 43149.12 NULL
2022 Department Of Correction Welder NA NA 333728.16 4.171602e+04 43289.440 3347.75 8 4.171602e+04 333728.16 NA NA NA NULL
2022 Department Of Correction Worker’s Compensation Benefits Examiner 52097.00000 5.209700e+04 7061.91 7.061910e+03 7061.910 184.50 1 7.061910e+03 7061.91 5.915891e+04 5.915891e+04 0.00 NULL
2022 Department Of Education Admin *Associate Education Officer 103136.00000 4.125440e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.125440e+05 4.125440e+05 0.00 NULL
2022 Department Of Education Admin *Certified Wide Area Network Administrator 126361.00000 2.527220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.527220e+05 2.527220e+05 0.00 NULL
2022 Department Of Education Admin Accountant 65677.89286 3.677962e+06 70111.11 1.251984e+03 0.000 1697.75 56 0.000000e+00 0.00 3.748073e+06 3.677962e+06 70111.11 NULL
2022 Department Of Education Admin Adm Manager-Non-Mgrl 83351.16667 5.001070e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.001070e+05 5.001070e+05 0.00 NULL
2022 Department Of Education Admin Admin Community Relations Specialist 84469.00000 1.689380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.689380e+05 1.689380e+05 0.00 NULL
2022 Department Of Education Admin Admin Contract Specialist 120560.00000 2.411200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.411200e+05 2.411200e+05 0.00 NULL
2022 Department Of Education Admin Administrative Accountant 127600.09091 1.403601e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.403601e+06 1.403601e+06 0.00 NULL
2022 Department Of Education Admin Administrative Assistant To Community Education Council 44384.50000 8.876900e+05 625.68 3.128400e+01 0.000 21.00 20 0.000000e+00 0.00 8.883157e+05 8.876900e+05 625.68 NULL
2022 Department Of Education Admin Administrative Community Relations Specialist 107015.61111 1.926281e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.926281e+06 1.926281e+06 0.00 NULL
2022 Department Of Education Admin Administrative Director Of Social Services 97982.64706 1.665705e+06 1385.94 8.152588e+01 0.000 21.50 17 0.000000e+00 0.00 1.667091e+06 1.665705e+06 1385.94 NULL
2022 Department Of Education Admin Administrative Education Analyst 116131.77143 5.283996e+07 233098.25 5.123038e+02 0.000 3263.50 455 0.000000e+00 0.00 5.307305e+07 5.283996e+07 233098.25 NULL
2022 Department Of Education Admin Administrative Education Officer 111430.53984 5.593813e+07 79166.82 1.577028e+02 0.000 1106.00 502 0.000000e+00 0.00 5.601730e+07 5.593813e+07 79166.82 NULL
2022 Department Of Education Admin Administrative Engineer 133250.00000 1.332500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.332500e+05 1.332500e+05 0.00 NULL
2022 Department Of Education Admin Administrative Management Auditor 113150.42857 7.920530e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.920530e+05 7.920530e+05 0.00 NULL
2022 Department Of Education Admin Administrative Manager 123121.09091 1.354332e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.354332e+06 1.354332e+06 0.00 NULL
2022 Department Of Education Admin Administrative Procurement Analyst 112937.46429 3.162249e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 3.162249e+06 3.162249e+06 0.00 NULL
2022 Department Of Education Admin Administrative Project Manager 102763.00000 3.082890e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.082890e+05 3.082890e+05 0.00 NULL
2022 Department Of Education Admin Administrative Public Health Nurse 134055.50000 5.362220e+05 4224.44 1.056110e+03 0.000 38.25 4 0.000000e+00 0.00 5.404464e+05 5.362220e+05 4224.44 NULL
2022 Department Of Education Admin Administrative Public Information Specialist 106890.44444 1.924028e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.924028e+06 1.924028e+06 0.00 NULL
2022 Department Of Education Admin Administrative Quality Assurance Specialist 108547.51111 4.884638e+06 3728.15 8.284778e+01 0.000 79.75 45 0.000000e+00 0.00 4.888366e+06 4.884638e+06 3728.15 NULL
2022 Department Of Education Admin Administrative Retirement Benefits Specialist 142595.00000 1.853735e+06 2252.88 1.732985e+02 0.000 60.50 13 0.000000e+00 0.00 1.855988e+06 1.853735e+06 2252.88 NULL
2022 Department Of Education Admin Administrative School Food Service Manager 112326.30000 2.246526e+06 1837.62 9.188100e+01 0.000 48.75 20 0.000000e+00 0.00 2.248364e+06 2.246526e+06 1837.62 NULL
2022 Department Of Education Admin Administrative Space Analyst 116031.23529 1.972531e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.972531e+06 1.972531e+06 0.00 NULL
2022 Department Of Education Admin Administrative Staff Analyst 135350.44554 2.734079e+07 0.00 0.000000e+00 0.000 0.00 202 0.000000e+00 0.00 2.734079e+07 2.734079e+07 0.00 NULL
2022 Department Of Education Admin Administrative Storekeeper 106355.33333 3.190660e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.190660e+05 3.190660e+05 0.00 NULL
2022 Department Of Education Admin Administrative Supervisor Of Building Maintenance 95087.00000 9.508700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.508700e+04 9.508700e+04 0.00 NULL
2022 Department Of Education Admin Agency Attorney 99120.97246 2.230222e+07 227.99 1.013289e+00 0.000 8.50 225 0.000000e+00 0.00 2.230245e+07 2.230222e+07 227.99 NULL
2022 Department Of Education Admin Agency Chief Contracting Officer 202602.00000 2.026020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.026020e+05 2.026020e+05 0.00 NULL
2022 Department Of Education Admin Architect 95758.00000 9.575800e+04 183.44 1.834400e+02 183.440 7.00 1 1.834400e+02 183.44 9.594144e+04 9.594144e+04 0.00 NULL
2022 Department Of Education Admin Area Manager Of School Maintenance 142673.21739 3.281484e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 3.281484e+06 3.281484e+06 0.00 NULL
2022 Department Of Education Admin Asbestos Handler 85815.62500 6.865250e+05 109424.08 1.367801e+04 11031.990 1772.50 8 1.103199e+04 88255.92 7.959491e+05 7.747809e+05 21168.16 NULL
2022 Department Of Education Admin Assistant Accountant 63186.00000 6.318600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.318600e+04 6.318600e+04 0.00 NULL
2022 Department Of Education Admin Assistant Architect 70140.00000 7.014000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.014000e+04 7.014000e+04 0.00 NULL
2022 Department Of Education Admin Assistant Retirement Benefits Examiner 52518.61111 9.453350e+05 25655.08 1.425282e+03 355.740 954.50 18 3.557400e+02 6403.32 9.709901e+05 9.517383e+05 19251.76 NULL
2022 Department Of Education Admin Associate Education Analyst 103128.89744 4.022027e+06 147104.04 3.771898e+03 0.000 1649.25 39 0.000000e+00 0.00 4.169131e+06 4.022027e+06 147104.04 NULL
2022 Department Of Education Admin Associate Fingerprint Technician 44287.20000 2.214360e+05 46401.65 9.280330e+03 6591.620 1503.75 5 6.591620e+03 32958.10 2.678377e+05 2.543941e+05 13443.55 NULL
2022 Department Of Education Admin Associate Human Rights Specialist 99929.00000 9.992900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.992900e+04 9.992900e+04 0.00 NULL
2022 Department Of Education Admin Associate Investigator 65103.75000 5.208300e+05 517.51 6.468875e+01 0.000 15.50 8 0.000000e+00 0.00 5.213475e+05 5.208300e+05 517.51 NULL
2022 Department Of Education Admin Associate Project Manager 86334.00000 4.316700e+05 2002.32 4.004640e+02 0.000 37.25 5 0.000000e+00 0.00 4.336723e+05 4.316700e+05 2002.32 NULL
2022 Department Of Education Admin Associate Quality Assurance Specialist 71924.43182 3.164675e+06 99567.83 2.262905e+03 1112.845 2133.75 44 1.112845e+03 48965.18 3.264243e+06 3.213640e+06 50602.65 NULL
2022 Department Of Education Admin Associate Retirement Benefits Examiner 68999.00000 3.725946e+06 278952.84 5.165793e+03 1005.480 6132.25 54 1.005480e+03 54295.92 4.004899e+06 3.780242e+06 224656.92 NULL
2022 Department Of Education Admin Associate School Food Service Manager 73575.38983 4.340948e+06 129428.13 2.193697e+03 1132.420 2800.50 59 1.132420e+03 66812.78 4.470376e+06 4.407761e+06 62615.35 NULL
2022 Department Of Education Admin Associate Staff Analyst 83293.73913 1.915756e+06 12250.94 5.326496e+02 0.000 260.50 23 0.000000e+00 0.00 1.928007e+06 1.915756e+06 12250.94 NULL
2022 Department Of Education Admin Attorney At Law 79468.50000 7.946850e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.946850e+04 7.946850e+04 0.00 NULL
2022 Department Of Education Admin Bookkeeper 51649.71429 2.530836e+06 3013.42 6.149837e+01 0.000 99.75 49 0.000000e+00 0.00 2.533849e+06 2.530836e+06 3013.42 NULL
2022 Department Of Education Admin Bricklayer NA NA 59147.81 2.957390e+04 29573.905 830.00 2 2.957390e+04 59147.81 NA NA NA NULL
2022 Department Of Education Admin Carpenter NA NA 825125.74 1.683930e+04 15752.540 9906.75 49 1.575254e+04 771874.46 NA NA NA NULL
2022 Department Of Education Admin Caseworker 47801.66667 1.434050e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.434050e+05 1.434050e+05 0.00 NULL
2022 Department Of Education Admin Certified It Administrator 112011.52381 9.408968e+06 204974.46 2.440172e+03 0.000 2606.75 84 0.000000e+00 0.00 9.613942e+06 9.408968e+06 204974.46 NULL
2022 Department Of Education Admin Certified It Developer 120884.44286 8.461911e+06 77315.66 1.104509e+03 0.000 1007.25 70 0.000000e+00 0.00 8.539227e+06 8.461911e+06 77315.66 NULL
2022 Department Of Education Admin Chief Administrator Of Impartial Hearings 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2022 Department Of Education Admin Chief Information Technology Officer 197731.00000 1.977310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.977310e+05 1.977310e+05 0.00 NULL
2022 Department Of Education Admin Chief School Business Executive 214848.00000 2.148480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.148480e+05 2.148480e+05 0.00 NULL
2022 Department Of Education Admin City Dentist 55248.48000 5.524848e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.524848e+04 5.524848e+04 0.00 NULL
2022 Department Of Education Admin City Elevator Operator 38913.00000 1.167390e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.167390e+05 1.167390e+05 0.00 NULL
2022 Department Of Education Admin City Laborer NA NA 45801.98 3.523229e+03 652.520 844.00 13 6.525200e+02 8482.76 NA NA NA NULL
2022 Department Of Education Admin City Medical Specialist 107679.00316 1.507506e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.507506e+06 1.507506e+06 0.00 NULL
2022 Department Of Education Admin City Planner 97417.00000 9.741700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.741700e+04 9.741700e+04 0.00 NULL
2022 Department Of Education Admin City Research Scientist 104569.80000 5.228490e+05 12083.77 2.416754e+03 0.000 179.25 5 0.000000e+00 0.00 5.349328e+05 5.228490e+05 12083.77 NULL
2022 Department Of Education Admin Civil Engineer 107016.00000 2.140320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.140320e+05 2.140320e+05 0.00 NULL
2022 Department Of Education Admin Clerical Aide 34509.41713 3.105848e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 3.105848e+05 3.105848e+05 0.00 NULL
2022 Department Of Education Admin Clerical Associate 47644.25514 1.157755e+07 86788.91 3.571560e+02 0.000 2783.00 243 0.000000e+00 0.00 1.166434e+07 1.157755e+07 86788.91 NULL
2022 Department Of Education Admin Community Assistant 37364.00488 7.659621e+06 125412.39 6.117678e+02 6.660 4205.50 205 6.660000e+00 1365.30 7.785033e+06 7.660986e+06 124047.09 NULL
2022 Department Of Education Admin Community Associate 48099.53834 1.191907e+08 2041106.43 8.236911e+02 141.265 54743.00 2478 1.412650e+02 350054.67 1.212318e+08 1.195407e+08 1691051.76 NULL
2022 Department Of Education Admin Community Coordinator 66243.40804 8.465908e+07 1243034.55 9.726405e+02 0.000 24857.00 1278 0.000000e+00 0.00 8.590211e+07 8.465908e+07 1243034.55 NULL
2022 Department Of Education Admin Computer Aide-Non-Spvr 54462.00000 2.723100e+05 6487.58 1.297516e+03 0.000 132.25 5 0.000000e+00 0.00 2.787976e+05 2.723100e+05 6487.58 NULL
2022 Department Of Education Admin Computer Associate 77140.75000 7.096949e+06 33363.39 3.626455e+02 0.000 874.00 92 0.000000e+00 0.00 7.130312e+06 7.096949e+06 33363.39 NULL
2022 Department Of Education Admin Computer Operations Manager 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2022 Department Of Education Admin Computer Programmer Analyst 65198.40000 3.259920e+05 4087.40 8.174800e+02 0.000 78.75 5 0.000000e+00 0.00 3.300794e+05 3.259920e+05 4087.40 NULL
2022 Department Of Education Admin Computer Service Technician 58592.33333 2.636655e+06 89279.37 1.983986e+03 0.000 1792.25 45 0.000000e+00 0.00 2.725934e+06 2.636655e+06 89279.37 NULL
2022 Department Of Education Admin Computer Specialist 110207.46154 2.005776e+07 161537.28 8.875675e+02 0.000 2154.25 182 0.000000e+00 0.00 2.021930e+07 2.005776e+07 161537.28 NULL
2022 Department Of Education Admin Computer Systems Manager 145116.41860 1.872002e+07 11568.56 8.967876e+01 0.000 154.50 129 0.000000e+00 0.00 1.873159e+07 1.872002e+07 11568.56 NULL
2022 Department Of Education Admin Confidential Investigator 74302.47368 7.058735e+06 21903.52 2.305634e+02 0.000 538.00 95 0.000000e+00 0.00 7.080639e+06 7.058735e+06 21903.52 NULL
2022 Department Of Education Admin Confidential Strategy Planner 93475.60000 9.347560e+05 1103.34 1.103340e+02 0.000 17.00 10 0.000000e+00 0.00 9.358593e+05 9.347560e+05 1103.34 NULL
2022 Department Of Education Admin Construction Laborer NA NA 136491.13 7.183744e+03 5416.920 2090.75 19 5.416920e+03 102921.48 NA NA NA NULL
2022 Department Of Education Admin Construction Project Manager 81364.56250 1.301833e+06 66815.27 4.175954e+03 2841.040 1297.50 16 2.841040e+03 45456.64 1.368648e+06 1.347290e+06 21358.63 NULL
2022 Department Of Education Admin Consultant 80932.66667 4.855960e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.855960e+05 4.855960e+05 0.00 NULL
2022 Department Of Education Admin Contract Specialist 59925.12500 9.588020e+05 4120.61 2.575381e+02 0.000 142.50 16 0.000000e+00 0.00 9.629226e+05 9.588020e+05 4120.61 NULL
2022 Department Of Education Admin Counsel To The Chancellor 217880.50000 4.357610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.357610e+05 4.357610e+05 0.00 NULL
2022 Department Of Education Admin Customer Information Representative Ma L 1549 58251.80608 1.532022e+07 196234.44 7.461386e+02 0.000 5482.25 263 0.000000e+00 0.00 1.551646e+07 1.532022e+07 196234.44 NULL
2022 Department Of Education Admin Deputy Auditor General 149321.50000 2.986430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.986430e+05 2.986430e+05 0.00 NULL
2022 Department Of Education Admin Deputy Executive Director 262650.00000 2.626500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.626500e+05 2.626500e+05 0.00 NULL
2022 Department Of Education Admin Deputy Executive Director Of Financial Operations 140864.00000 1.408640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.408640e+05 1.408640e+05 0.00 NULL
2022 Department Of Education Admin Deputy Inspector General 150972.00000 4.529160e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.529160e+05 4.529160e+05 0.00 NULL
2022 Department Of Education Admin Director 177477.00000 3.549540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.549540e+05 3.549540e+05 0.00 NULL
2022 Department Of Education Admin Director Of Audit And Investigation 168172.00000 1.681720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.681720e+05 1.681720e+05 0.00 NULL
2022 Department Of Education Admin Director Of Equal Opportunity 156365.00000 1.563650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.563650e+05 1.563650e+05 0.00 NULL
2022 Department Of Education Admin Director Of Headstart Program 129014.00000 1.290140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.290140e+05 1.290140e+05 0.00 NULL
2022 Department Of Education Admin Director Of News Bureau 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2022 Department Of Education Admin Director Of Parent Involvement 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2022 Department Of Education Admin Director Of School Safety 207045.00000 2.070450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.070450e+05 2.070450e+05 0.00 NULL
2022 Department Of Education Admin District Manager Of Administration And Business Affairs 96051.52381 2.017082e+06 13725.73 6.536062e+02 0.000 253.25 21 0.000000e+00 0.00 2.030808e+06 2.017082e+06 13725.73 NULL
2022 Department Of Education Admin Education Analyst 78809.37037 4.255706e+06 2771.20 5.131852e+01 0.000 61.75 54 0.000000e+00 0.00 4.258477e+06 4.255706e+06 2771.20 NULL
2022 Department Of Education Admin Education Analyst Trainee 46528.92632 1.256281e+06 1235.27 4.575074e+01 0.000 53.50 27 0.000000e+00 0.00 1.257516e+06 1.256281e+06 1235.27 NULL
2022 Department Of Education Admin Education Officer 87173.90043 2.013717e+07 68273.86 2.955578e+02 0.000 1094.50 231 0.000000e+00 0.00 2.020544e+07 2.013717e+07 68273.86 NULL
2022 Department Of Education Admin Educational Management Associate 172896.28125 5.532681e+06 9786.19 3.058184e+02 0.000 255.25 32 0.000000e+00 0.00 5.542467e+06 5.532681e+06 9786.19 NULL
2022 Department Of Education Admin Electrician NA NA 1135750.09 1.437658e+04 10047.560 12137.75 79 1.004756e+04 793757.24 NA NA NA NULL
2022 Department Of Education Admin Electricians Helper NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2022 Department Of Education Admin Elevator Mechanic NA NA 40469.84 1.011746e+04 9412.875 472.50 4 9.412875e+03 37651.50 NA NA NA NULL
2022 Department Of Education Admin Equal Rights Compliance Specialist 74090.11765 1.259532e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.259532e+06 1.259532e+06 0.00 NULL
2022 Department Of Education Admin Executive Agency Counsel 138814.78689 8.467702e+06 0.00 0.000000e+00 0.000 0.00 61 0.000000e+00 0.00 8.467702e+06 8.467702e+06 0.00 NULL
2022 Department Of Education Admin Executive Assistant To The Chancellor 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2022 Department Of Education Admin Executive Director 228783.50000 4.575670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.575670e+05 4.575670e+05 0.00 NULL
2022 Department Of Education Admin Executive Program Specialist 218960.60000 1.094803e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.094803e+06 1.094803e+06 0.00 NULL
2022 Department Of Education Admin Exterminator 53117.55556 9.561160e+05 10976.90 6.098278e+02 109.090 276.25 18 1.090900e+02 1963.62 9.670929e+05 9.580796e+05 9013.28 NULL
2022 Department Of Education Admin Glazier NA NA 44995.45 8.999090e+03 6211.100 481.75 5 6.211100e+03 31055.50 NA NA NA NULL
2022 Department Of Education Admin Graphic Artist 82000.00000 8.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.200000e+04 8.200000e+04 0.00 NULL
2022 Department Of Education Admin Health Services Manager 97059.40000 4.852970e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.852970e+05 4.852970e+05 0.00 NULL
2022 Department Of Education Admin Industrial Hygienist 75318.00000 7.531800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.531800e+04 7.531800e+04 0.00 NULL
2022 Department Of Education Admin Interpreter/Translator 59769.54167 1.434469e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 1.434469e+06 1.434469e+06 0.00 NULL
2022 Department Of Education Admin Investigator Empl Disc 63030.46429 1.764853e+06 26271.72 9.382757e+02 0.000 571.25 28 0.000000e+00 0.00 1.791125e+06 1.764853e+06 26271.72 NULL
2022 Department Of Education Admin Investment Analyst 85495.33333 2.564860e+05 1855.48 6.184933e+02 0.000 65.75 3 0.000000e+00 0.00 2.583415e+05 2.564860e+05 1855.48 NULL
2022 Department Of Education Admin It Automation And Monitoring Engineer 115000.00000 2.300000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.300000e+05 2.300000e+05 0.00 NULL
2022 Department Of Education Admin It Infrastructure Engineer 125183.33333 3.755500e+05 41528.22 1.384274e+04 39.420 347.25 3 3.942000e+01 118.26 4.170782e+05 3.756683e+05 41409.96 NULL
2022 Department Of Education Admin It Project Specialist 120000.00000 3.600000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.600000e+05 3.600000e+05 0.00 NULL
2022 Department Of Education Admin It Security Specialist 117342.00000 9.387360e+05 17008.67 2.126084e+03 0.000 179.25 8 0.000000e+00 0.00 9.557447e+05 9.387360e+05 17008.67 NULL
2022 Department Of Education Admin It Service Management Specialist 113645.00000 3.409350e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.409350e+05 3.409350e+05 0.00 NULL
2022 Department Of Education Admin Legal Secretarial Assistant 53397.00000 1.067940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.067940e+05 1.067940e+05 0.00 NULL
2022 Department Of Education Admin Legislative Representative 195000.00000 1.950000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.950000e+05 1.950000e+05 0.00 NULL
2022 Department Of Education Admin Locksmith NA NA 908.30 3.027667e+02 0.000 19.00 3 0.000000e+00 0.00 NA NA NA NULL
2022 Department Of Education Admin Machinist NA NA 969562.20 2.486057e+04 25519.200 15048.50 39 2.486057e+04 969562.20 NA NA NA NULL
2022 Department Of Education Admin Machinist’s Helper NA NA 54308.57 1.357714e+04 8251.665 966.75 4 8.251665e+03 33006.66 NA NA NA NULL
2022 Department Of Education Admin Maintenance Worker NA NA 1986.45 2.837786e+02 327.180 42.50 7 2.837786e+02 1986.45 NA NA NA NULL
2022 Department Of Education Admin Management Auditor 69216.66667 1.245900e+06 3274.81 1.819339e+02 0.000 73.50 18 0.000000e+00 0.00 1.249175e+06 1.245900e+06 3274.81 NULL
2022 Department Of Education Admin Mechanical Engineering Intern 59125.00000 5.912500e+04 6879.33 6.879330e+03 6879.330 211.25 1 6.879330e+03 6879.33 6.600433e+04 6.600433e+04 0.00 NULL
2022 Department Of Education Admin Media Services Technician 63158.00000 1.263160e+05 8364.46 4.182230e+03 4182.230 189.25 2 4.182230e+03 8364.46 1.346805e+05 1.346805e+05 0.00 NULL
2022 Department Of Education Admin Mental Health Worker 46710.50000 9.342100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.342100e+04 9.342100e+04 0.00 NULL
2022 Department Of Education Admin Motor Vehicle Operator 48544.90909 5.339940e+05 60531.81 5.502892e+03 1779.900 1704.50 11 1.779900e+03 19578.90 5.945258e+05 5.535729e+05 40952.91 NULL
2022 Department Of Education Admin Occupational Therapist 52028.37520 1.915685e+08 2689690.17 7.304971e+02 0.000 35409.50 3682 0.000000e+00 0.00 1.942582e+08 1.915685e+08 2689690.17 NULL
2022 Department Of Education Admin Office Machine Aide 46456.66667 1.393700e+05 140.90 4.696667e+01 0.000 10.50 3 0.000000e+00 0.00 1.395109e+05 1.393700e+05 140.90 NULL
2022 Department Of Education Admin Painter NA NA 34167.50 1.138917e+04 8503.320 482.50 3 8.503320e+03 25509.96 NA NA NA NULL
2022 Department Of Education Admin Physical Therapist 49828.72583 6.771724e+07 815897.62 6.003662e+02 0.000 10176.75 1359 0.000000e+00 0.00 6.853314e+07 6.771724e+07 815897.62 NULL
2022 Department Of Education Admin Plasterer NA NA 103472.58 6.898172e+03 3818.390 1082.75 15 3.818390e+03 57275.85 NA NA NA NULL
2022 Department Of Education Admin Plumber NA NA 488360.31 1.039064e+04 7073.860 4625.50 47 7.073860e+03 332471.42 NA NA NA NULL
2022 Department Of Education Admin Principal Administrative Associate - Non Supvr 64675.54404 1.248238e+07 86848.81 4.499938e+02 0.000 2017.75 193 0.000000e+00 0.00 1.256923e+07 1.248238e+07 86848.81 NULL
2022 Department Of Education Admin Principal School-Neighborhood Worker 56043.00000 5.604300e+04 295.57 2.955700e+02 295.570 11.50 1 2.955700e+02 295.57 5.633857e+04 5.633857e+04 0.00 NULL
2022 Department Of Education Admin Procurement Analyst 72592.08197 4.428117e+06 31236.09 5.120670e+02 0.000 727.75 61 0.000000e+00 0.00 4.459353e+06 4.428117e+06 31236.09 NULL
2022 Department Of Education Admin Program Producer 92747.00000 9.274700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.274700e+04 9.274700e+04 0.00 NULL
2022 Department Of Education Admin Public Records Aide 49270.75000 3.941660e+05 10823.16 1.352895e+03 608.140 477.75 8 6.081400e+02 4865.12 4.049892e+05 3.990311e+05 5958.04 NULL
2022 Department Of Education Admin Quality Assurance Specialist 61943.00000 1.610518e+06 14486.54 5.571746e+02 0.000 388.75 26 0.000000e+00 0.00 1.625005e+06 1.610518e+06 14486.54 NULL
2022 Department Of Education Admin Quality Assurance Specialist Trainee 36205.65517 1.049964e+06 9140.00 3.151724e+02 19.800 454.50 29 1.980000e+01 574.20 1.059104e+06 1.050538e+06 8565.80 NULL
2022 Department Of Education Admin Radio Repair Mechanic NA NA 94601.32 6.757237e+03 2579.495 1196.50 14 2.579495e+03 36112.93 NA NA NA NULL
2022 Department Of Education Admin Research Assistant 57173.46154 7.432550e+05 5504.48 4.234215e+02 0.000 153.50 13 0.000000e+00 0.00 7.487595e+05 7.432550e+05 5504.48 NULL
2022 Department Of Education Admin Roofer NA NA 10471.03 9.519118e+02 0.000 175.25 11 0.000000e+00 0.00 NA NA NA NULL
2022 Department Of Education Admin School Business Manager 85629.15068 1.250186e+07 489953.93 3.355849e+03 5.560 8243.50 146 5.560000e+00 811.76 1.299181e+07 1.250267e+07 489142.17 NULL
2022 Department Of Education Admin School Computer Technology Specialist 60363.65655 1.490982e+07 434613.92 1.759571e+03 0.000 9532.25 247 0.000000e+00 0.00 1.534444e+07 1.490982e+07 434613.92 NULL
2022 Department Of Education Admin School Equipment Maintainer 41288.00000 4.128800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.128800e+04 4.128800e+04 0.00 NULL
2022 Department Of Education Admin School Food Service Manager 55695.35099 2.522999e+07 393505.52 8.686656e+02 210.830 12571.25 453 2.108300e+02 95505.99 2.562350e+07 2.532550e+07 297999.53 NULL
2022 Department Of Education Admin School Lunch Aide 35117.33655 2.546007e+07 1269035.64 1.750394e+03 1851.930 28701.00 725 1.750394e+03 1269035.64 2.672910e+07 2.672910e+07 0.00 NULL
2022 Department Of Education Admin School Lunch Assistant 42289.32609 3.890618e+06 51588.18 5.607411e+02 59.210 1956.00 92 5.921000e+01 5447.32 3.942206e+06 3.896065e+06 46140.86 NULL
2022 Department Of Education Admin School Lunch Assistant Cook 41762.84615 2.714585e+06 53233.08 8.189705e+02 150.060 2075.75 65 1.500600e+02 9753.90 2.767818e+06 2.724339e+06 43479.18 NULL
2022 Department Of Education Admin School Lunch Loader And Handler 53216.03571 1.490049e+06 120296.48 4.296303e+03 2028.335 3272.75 28 2.028335e+03 56793.38 1.610345e+06 1.546842e+06 63503.10 NULL
2022 Department Of Education Admin School Plant Manager 134113.15909 5.900979e+06 2503.00 5.688636e+01 0.000 63.50 44 0.000000e+00 0.00 5.903482e+06 5.900979e+06 2503.00 NULL
2022 Department Of Education Admin School-Neighborhood Worker 42484.33333 1.274530e+05 89.00 2.966667e+01 0.000 2.50 3 0.000000e+00 0.00 1.275420e+05 1.274530e+05 89.00 NULL
2022 Department Of Education Admin Secretary 49368.24000 2.468412e+06 20811.08 4.162216e+02 0.000 506.25 50 0.000000e+00 0.00 2.489223e+06 2.468412e+06 20811.08 NULL
2022 Department Of Education Admin Secretary To Community School Board 51765.77778 4.658920e+05 806.68 8.963111e+01 0.000 23.50 9 0.000000e+00 0.00 4.666987e+05 4.658920e+05 806.68 NULL
2022 Department Of Education Admin Secretary To The Chancellor 82685.00000 8.268500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.268500e+04 8.268500e+04 0.00 NULL
2022 Department Of Education Admin Secretary To The Counsel To The Chancellor 75197.00000 7.519700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.519700e+04 7.519700e+04 0.00 NULL
2022 Department Of Education Admin Secretary To The Deputy Chancellor 102625.57143 7.183790e+05 280.82 4.011714e+01 0.000 12.25 7 0.000000e+00 0.00 7.186598e+05 7.183790e+05 280.82 NULL
2022 Department Of Education Admin Secretary To The Special Commissioner Investigation Nyc Sch 90928.00000 9.092800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.092800e+04 9.092800e+04 0.00 NULL
2022 Department Of Education Admin Senior It Architect 130000.00000 2.600000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.600000e+05 2.600000e+05 0.00 NULL
2022 Department Of Education Admin Senior Occupational Therapist 18206.14286 1.274430e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.274430e+05 1.274430e+05 0.00 NULL
2022 Department Of Education Admin Senior School Lunch Aide 38258.28475 1.128619e+07 291020.63 9.865106e+02 172.960 12173.25 295 1.729600e+02 51023.20 1.157721e+07 1.133722e+07 239997.43 NULL
2022 Department Of Education Admin Senior School-Neighborhood Worker 53416.00000 1.602480e+05 1657.29 5.524300e+02 721.460 45.25 3 5.524300e+02 1657.29 1.619053e+05 1.619053e+05 0.00 NULL
2022 Department Of Education Admin Service Inspector 47805.00000 9.561000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.561000e+04 9.561000e+04 0.00 NULL
2022 Department Of Education Admin Sign Language Interpreter 64315.80344 2.058106e+06 16062.48 5.019525e+02 266.720 241.00 32 2.667200e+02 8535.04 2.074168e+06 2.066641e+06 7527.44 NULL
2022 Department Of Education Admin Special Assistant 142174.11111 1.279567e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.279567e+06 1.279567e+06 0.00 NULL
2022 Department Of Education Admin Special Assistant To Member Of The Board Of Education 145235.50000 8.714130e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.714130e+05 8.714130e+05 0.00 NULL
2022 Department Of Education Admin Special Assistant To The Chancellor 142879.90000 1.428799e+06 3324.53 3.324530e+02 0.000 54.00 10 0.000000e+00 0.00 1.432124e+06 1.428799e+06 3324.53 NULL
2022 Department Of Education Admin Special Commissioner Of Investigation-Nyc School District 229836.00000 2.298360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.298360e+05 2.298360e+05 0.00 NULL
2022 Department Of Education Admin Special Officer 44300.16667 1.860607e+06 195862.54 4.663394e+03 1458.565 6338.75 42 1.458565e+03 61259.73 2.056470e+06 1.921867e+06 134602.81 NULL
2022 Department Of Education Admin Staff Analyst 70866.16667 8.503940e+05 20981.03 1.748419e+03 0.000 502.25 12 0.000000e+00 0.00 8.713750e+05 8.503940e+05 20981.03 NULL
2022 Department Of Education Admin Staff Audiologist 74493.20000 3.724660e+05 1314.13 2.628260e+02 33.080 17.25 5 3.308000e+01 165.40 3.737801e+05 3.726314e+05 1148.73 NULL
2022 Department Of Education Admin Staff Nurse 46948.60377 6.981257e+07 5555533.19 3.736068e+03 0.000 68060.50 1487 0.000000e+00 0.00 7.536811e+07 6.981257e+07 5555533.19 NULL
2022 Department Of Education Admin Steam Fitter NA NA 768739.80 1.787767e+04 13530.000 7038.75 43 1.353000e+04 581790.00 NA NA NA NULL
2022 Department Of Education Admin Steam Fitter’s Helper NA NA 116448.75 3.881625e+04 31556.250 1411.50 3 3.155625e+04 94668.75 NA NA NA NULL
2022 Department Of Education Admin Stock Worker 41118.50984 4.111851e+05 1642.82 1.642820e+02 0.000 42.75 10 0.000000e+00 0.00 4.128279e+05 4.111851e+05 1642.82 NULL
2022 Department Of Education Admin Strategi Initiative Specialist 94146.00000 9.414600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.414600e+04 9.414600e+04 0.00 NULL
2022 Department Of Education Admin Strategic Initiative Specialist 104146.00000 1.041460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.041460e+05 1.041460e+05 0.00 NULL
2022 Department Of Education Admin Substance Abuse Prevention & Intervention Specialist 61671.57410 1.967323e+07 42091.79 1.319492e+02 0.000 1130.75 319 0.000000e+00 0.00 1.971532e+07 1.967323e+07 42091.79 NULL
2022 Department Of Education Admin Supervising Computer Service Technician 77409.08141 2.322272e+06 79330.11 2.644337e+03 0.000 1321.75 30 0.000000e+00 0.00 2.401603e+06 2.322272e+06 79330.11 NULL
2022 Department Of Education Admin Supervising Therapist 51097.89020 4.701006e+06 389985.72 4.238975e+03 0.000 3417.75 92 0.000000e+00 0.00 5.090992e+06 4.701006e+06 389985.72 NULL
2022 Department Of Education Admin Supervisor 78456.33333 2.353690e+05 19638.91 6.546303e+03 5940.160 368.75 3 5.940160e+03 17820.48 2.550079e+05 2.531895e+05 1818.43 NULL
2022 Department Of Education Admin Supervisor Bricklayer NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2022 Department Of Education Admin Supervisor Carpenter NA NA 72192.80 1.804820e+04 21257.400 808.00 4 1.804820e+04 72192.80 NA NA NA NULL
2022 Department Of Education Admin Supervisor Electrician NA NA 106067.47 2.121349e+04 18419.210 1057.50 5 1.841921e+04 92096.05 NA NA NA NULL
2022 Department Of Education Admin Supervisor I 62398.50000 2.495940e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.495940e+05 2.495940e+05 0.00 NULL
2022 Department Of Education Admin Supervisor I Social Work 67677.00000 1.353540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.353540e+05 1.353540e+05 0.00 NULL
2022 Department Of Education Admin Supervisor Ii 69275.00000 1.385500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.385500e+05 1.385500e+05 0.00 NULL
2022 Department Of Education Admin Supervisor Of Electrical Installations & Maintenance 80497.73684 1.529457e+06 108695.48 5.720815e+03 3962.820 2036.25 19 3.962820e+03 75293.58 1.638152e+06 1.604751e+06 33401.90 NULL
2022 Department Of Education Admin Supervisor Of Mechanical Installations & Maintenance 80470.11111 1.448462e+06 86493.11 4.805173e+03 4140.130 1762.75 18 4.140130e+03 74522.34 1.534955e+06 1.522984e+06 11970.77 NULL
2022 Department Of Education Admin Supervisor Of Mechanics NA NA 241917.63 1.423045e+04 5469.470 2663.25 17 5.469470e+03 92980.99 NA NA NA NULL
2022 Department Of Education Admin Supervisor Of Nurses 50833.38536 2.490836e+06 77868.08 1.589144e+03 0.000 653.50 49 0.000000e+00 0.00 2.568704e+06 2.490836e+06 77868.08 NULL
2022 Department Of Education Admin Supervisor Of Office Machine Operations 44180.25000 1.767210e+05 92.43 2.310750e+01 0.000 7.50 4 0.000000e+00 0.00 1.768134e+05 1.767210e+05 92.43 NULL
2022 Department Of Education Admin Supervisor Of Stock Workers 68145.00000 1.362900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.362900e+05 1.362900e+05 0.00 NULL
2022 Department Of Education Admin Supervisor Plasterer NA NA 17205.14 8.602570e+03 8602.570 144.00 2 8.602570e+03 17205.14 NA NA NA NULL
2022 Department Of Education Admin Supervisor Plumber NA NA 106156.80 1.769280e+04 16006.455 960.00 6 1.600645e+04 96038.73 NA NA NA NULL
2022 Department Of Education Admin Supervisor Roofer NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2022 Department Of Education Admin Supervisor Steamfitter NA NA 79401.00 2.646700e+04 24852.000 696.50 3 2.485200e+04 74556.00 NA NA NA NULL
2022 Department Of Education Admin Telecommunication Manager 117218.00000 1.172180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.172180e+05 1.172180e+05 0.00 NULL
2022 Department Of Education Admin Telecommunications Associate 82059.26087 1.887363e+06 9108.91 3.960396e+02 0.000 215.75 23 0.000000e+00 0.00 1.896472e+06 1.887363e+06 9108.91 NULL
2022 Department Of Education Admin Thermostat Repairer NA NA 88845.57 1.269222e+04 1425.330 841.50 7 1.425330e+03 9977.31 NA NA NA NULL
2022 Department Of Finance *Attorney At Law 110613.60000 1.106136e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.106136e+06 1.106136e+06 0.00 NULL
2022 Department Of Finance *Senior Estimator 77921.00000 7.792100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.792100e+04 7.792100e+04 0.00 NULL
2022 Department Of Finance Accountant 74525.43750 1.192407e+06 574.58 3.591125e+01 0.000 15.00 16 0.000000e+00 0.00 1.192982e+06 1.192407e+06 574.58 NULL
2022 Department Of Finance Actuarial Specialist Level Ii, Oj 112293.00000 1.122930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.122930e+05 1.122930e+05 0.00 NULL
2022 Department Of Finance Adm Manager-Non-Mgrl 84173.53947 6.397189e+06 64770.54 8.522439e+02 0.000 1300.75 76 0.000000e+00 0.00 6.461960e+06 6.397189e+06 64770.54 NULL
2022 Department Of Finance Admin Contract Specialist 112282.80000 5.614140e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.614140e+05 5.614140e+05 0.00 NULL
2022 Department Of Finance Administrative Accountant 110364.12500 8.829130e+05 6086.78 7.608475e+02 0.000 104.75 8 0.000000e+00 0.00 8.889998e+05 8.829130e+05 6086.78 NULL
2022 Department Of Finance Administrative Actuary 144200.00000 1.442000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.442000e+05 1.442000e+05 0.00 NULL
2022 Department Of Finance Administrative Architect 94786.00000 9.478600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.478600e+04 9.478600e+04 0.00 NULL
2022 Department Of Finance Administrative Assessor 147081.75000 5.883270e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.883270e+05 5.883270e+05 0.00 NULL
2022 Department Of Finance Administrative City Planner 146698.40000 7.334920e+05 7443.24 1.488648e+03 0.000 87.25 5 0.000000e+00 0.00 7.409352e+05 7.334920e+05 7443.24 NULL
2022 Department Of Finance Administrative Deputy Register 120295.75000 4.811830e+05 7615.55 1.903888e+03 191.140 152.50 4 1.911400e+02 764.56 4.887985e+05 4.819476e+05 6850.99 NULL
2022 Department Of Finance Administrative Investigator 127289.25000 5.091570e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.091570e+05 5.091570e+05 0.00 NULL
2022 Department Of Finance Administrative Labor Relations Analyst 115524.57143 8.086720e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.086720e+05 8.086720e+05 0.00 NULL
2022 Department Of Finance Administrative Management Auditor 116853.40000 5.842670e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.842670e+05 5.842670e+05 0.00 NULL
2022 Department Of Finance Administrative Manager 122964.50000 4.918580e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.918580e+05 4.918580e+05 0.00 NULL
2022 Department Of Finance Administrative Procurement Analyst-Non-Mgrl 107998.75000 8.639900e+05 245.57 3.069625e+01 0.000 4.00 8 0.000000e+00 0.00 8.642356e+05 8.639900e+05 245.57 NULL
2022 Department Of Finance Administrative Public Information Specialist Nm Former M1/M2 112547.50000 2.250950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.250950e+05 2.250950e+05 0.00 NULL
2022 Department Of Finance Administrative Quality Assurance Specialist 84254.00000 8.425400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.425400e+04 8.425400e+04 0.00 NULL
2022 Department Of Finance Administrative Space Analyst 91917.50000 1.838350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.838350e+05 1.838350e+05 0.00 NULL
2022 Department Of Finance Administrative Staff Analyst 115636.87970 1.537970e+07 107593.40 8.089729e+02 0.000 1228.50 133 0.000000e+00 0.00 1.548730e+07 1.537970e+07 107593.40 NULL
2022 Department Of Finance Administrative Storekeeper 114762.33333 3.442870e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.442870e+05 3.442870e+05 0.00 NULL
2022 Department Of Finance Administrative Supervisor Of Building Maintenance 114854.00000 1.148540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.148540e+05 1.148540e+05 0.00 NULL
2022 Department Of Finance Administrative Tax Auditor 120889.07692 4.714674e+06 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 4.714674e+06 4.714674e+06 0.00 NULL
2022 Department Of Finance Agency Attorney 94847.90476 1.991806e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.991806e+06 1.991806e+06 0.00 NULL
2022 Department Of Finance Agency Chief Contracting Officer 162962.50000 3.259250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.259250e+05 3.259250e+05 0.00 NULL
2022 Department Of Finance Assist Commissioner 161136.00000 1.611360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.611360e+05 1.611360e+05 0.00 NULL
2022 Department Of Finance Assistant City Assessor 51316.83333 2.771109e+06 6840.14 1.266693e+02 0.000 171.00 54 0.000000e+00 0.00 2.777949e+06 2.771109e+06 6840.14 NULL
2022 Department Of Finance Assistant Commissioner 180984.66667 5.429540e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.429540e+05 5.429540e+05 0.00 NULL
2022 Department Of Finance Associate Fraud Investigator 74121.18182 1.630666e+06 134021.51 6.091887e+03 2250.700 2446.00 22 2.250700e+03 49515.40 1.764688e+06 1.680181e+06 84506.11 NULL
2022 Department Of Finance Associate Labor Relations Analyst 88530.50000 1.770610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.770610e+05 1.770610e+05 0.00 NULL
2022 Department Of Finance Associate Staff Analyst 86898.13889 3.128333e+06 11503.48 3.195411e+02 0.000 101.25 36 0.000000e+00 0.00 3.139836e+06 3.128333e+06 11503.48 NULL
2022 Department Of Finance Asst Commissioner 177228.00000 1.772280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.772280e+05 1.772280e+05 0.00 NULL
2022 Department Of Finance Cashier 47305.66667 1.419170e+05 348.41 1.161367e+02 0.000 11.25 3 0.000000e+00 0.00 1.422654e+05 1.419170e+05 348.41 NULL
2022 Department Of Finance Certified It Administrator 118340.90909 1.301750e+06 81821.39 7.438308e+03 3544.260 1077.75 11 3.544260e+03 38986.86 1.383571e+06 1.340737e+06 42834.53 NULL
2022 Department Of Finance Chief Of Staff 213000.00000 2.130000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.130000e+05 2.130000e+05 0.00 NULL
2022 Department Of Finance City Assessor 83606.57895 9.531150e+06 360171.73 3.159401e+03 0.000 5357.50 114 0.000000e+00 0.00 9.891322e+06 9.531150e+06 360171.73 NULL
2022 Department Of Finance City Laborer NA NA 209255.95 1.609661e+04 14753.850 3877.50 13 1.475385e+04 191800.05 NA NA NA NULL
2022 Department Of Finance City Planner 72988.00000 1.459760e+05 3309.81 1.654905e+03 1654.905 60.00 2 1.654905e+03 3309.81 1.492858e+05 1.492858e+05 0.00 NULL
2022 Department Of Finance City Planning Technician 46942.00000 9.388400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.388400e+04 9.388400e+04 0.00 NULL
2022 Department Of Finance City Register 194800.00000 1.948000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.948000e+05 1.948000e+05 0.00 NULL
2022 Department Of Finance City Research Scientist 94553.65517 2.742056e+06 9067.57 3.126748e+02 0.000 142.00 29 0.000000e+00 0.00 2.751124e+06 2.742056e+06 9067.57 NULL
2022 Department Of Finance City Tax Auditor 70264.53779 2.417100e+07 53115.80 1.544064e+02 0.000 981.25 344 0.000000e+00 0.00 2.422412e+07 2.417100e+07 53115.80 NULL
2022 Department Of Finance Clerical Aide 38895.00000 6.612150e+05 58.29 3.428824e+00 0.000 2.50 17 0.000000e+00 0.00 6.612733e+05 6.612150e+05 58.29 NULL
2022 Department Of Finance Clerical Associate 44890.52893 1.086351e+07 79337.00 3.278388e+02 0.000 2432.25 242 0.000000e+00 0.00 1.094284e+07 1.086351e+07 79337.00 NULL
2022 Department Of Finance Commissioner Of Finance 243171.00000 4.863420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863420e+05 4.863420e+05 0.00 NULL
2022 Department Of Finance Community Assistant 39328.00000 1.573120e+05 197.24 4.931000e+01 0.000 7.00 4 0.000000e+00 0.00 1.575092e+05 1.573120e+05 197.24 NULL
2022 Department Of Finance Community Associate 52852.14286 3.699650e+05 9470.00 1.352857e+03 0.000 329.75 7 0.000000e+00 0.00 3.794350e+05 3.699650e+05 9470.00 NULL
2022 Department Of Finance Community Coordinator 73789.20000 1.106838e+06 1921.19 1.280793e+02 0.000 45.25 15 0.000000e+00 0.00 1.108759e+06 1.106838e+06 1921.19 NULL
2022 Department Of Finance Community Service Aide 35562.00000 3.556200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.556200e+04 3.556200e+04 0.00 NULL
2022 Department Of Finance Computer Aide-Non-Spvr 65652.00000 1.313040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.313040e+05 1.313040e+05 0.00 NULL
2022 Department Of Finance Computer Associate 82054.40000 1.641088e+06 54009.05 2.700452e+03 128.475 991.50 20 1.284750e+02 2569.50 1.695097e+06 1.643658e+06 51439.55 NULL
2022 Department Of Finance Computer Programmer Analyst 64666.50000 3.879990e+05 656.28 1.093800e+02 15.465 17.00 6 1.546500e+01 92.79 3.886553e+05 3.880918e+05 563.49 NULL
2022 Department Of Finance Computer Specialist 108292.53623 7.472185e+06 133968.07 1.941566e+03 0.000 1831.50 69 0.000000e+00 0.00 7.606153e+06 7.472185e+06 133968.07 NULL
2022 Department Of Finance Computer Systems Manager 138991.23944 1.973676e+07 204487.98 1.440056e+03 0.000 2412.00 142 0.000000e+00 0.00 1.994124e+07 1.973676e+07 204487.98 NULL
2022 Department Of Finance Confidential Strategy Planner 85608.00000 8.560800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.560800e+04 8.560800e+04 0.00 NULL
2022 Department Of Finance Counsel 213000.00000 2.130000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.130000e+05 2.130000e+05 0.00 NULL
2022 Department Of Finance Deputy City Sheriff - Non-Spvr 73910.85882 1.256485e+07 4912707.40 2.889828e+04 18248.725 73209.47 170 1.824872e+04 3102283.25 1.747755e+07 1.566713e+07 1810424.15 NULL
2022 Department Of Finance Deputy Commissioner 217309.25000 8.692370e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.692370e+05 8.692370e+05 0.00 NULL
2022 Department Of Finance Director Of Public Information 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2022 Department Of Finance Economist 78165.50000 1.563310e+05 1819.46 9.097300e+02 909.730 34.50 2 9.097300e+02 1819.46 1.581505e+05 1.581505e+05 0.00 NULL
2022 Department Of Finance Examiner Of Accounts 95737.50000 1.914750e+05 16.35 8.175000e+00 8.175 0.25 2 8.175000e+00 16.35 1.914914e+05 1.914914e+05 0.00 NULL
2022 Department Of Finance Exec Asst To The Commissioner Of Finance 102566.00000 1.025660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.025660e+05 1.025660e+05 0.00 NULL
2022 Department Of Finance Executive Agency Counsel 145956.84615 3.794878e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 3.794878e+06 3.794878e+06 0.00 NULL
2022 Department Of Finance Executive Deputy Sheriff 210000.00000 2.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.100000e+05 2.100000e+05 0.00 NULL
2022 Department Of Finance Executive Program Specialist 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2022 Department Of Finance Graphic Artist 85798.00000 1.715960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.715960e+05 1.715960e+05 0.00 NULL
2022 Department Of Finance Hearing Officer 52625.70546 5.578325e+06 0.00 0.000000e+00 0.000 0.00 106 0.000000e+00 0.00 5.578325e+06 5.578325e+06 0.00 NULL
2022 Department Of Finance Investigator 45216.20000 2.260810e+05 1437.58 2.875160e+02 0.000 44.25 5 0.000000e+00 0.00 2.275186e+05 2.260810e+05 1437.58 NULL
2022 Department Of Finance Labor Relations Analyst 75846.50000 1.516930e+05 199.19 9.959500e+01 99.595 5.00 2 9.959500e+01 199.19 1.518922e+05 1.518922e+05 0.00 NULL
2022 Department Of Finance Legal Secretarial Assistant 58866.00000 5.886600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.886600e+04 5.886600e+04 0.00 NULL
2022 Department Of Finance Management Auditor 78950.00000 2.368500e+05 3825.52 1.275173e+03 1416.780 67.00 3 1.275173e+03 3825.52 2.406755e+05 2.406755e+05 0.00 NULL
2022 Department Of Finance Motor Vehicle Operator 49500.50000 9.900100e+04 1252.65 6.263250e+02 626.325 35.25 2 6.263250e+02 1252.65 1.002536e+05 1.002536e+05 0.00 NULL
2022 Department Of Finance Motor Vehicle Supervisor 57976.00000 5.797600e+04 18127.32 1.812732e+04 18127.320 474.25 1 1.812732e+04 18127.32 7.610332e+04 7.610332e+04 0.00 NULL
2022 Department Of Finance Principal Administrative Associate - Non Supvr 63267.83951 1.537408e+07 242660.34 9.986022e+02 0.000 6005.50 243 0.000000e+00 0.00 1.561675e+07 1.537408e+07 242660.34 NULL
2022 Department Of Finance Procurement Analyst 78110.40000 7.811040e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.811040e+05 7.811040e+05 0.00 NULL
2022 Department Of Finance Public Records Aide 45336.00000 4.533600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.533600e+04 4.533600e+04 0.00 NULL
2022 Department Of Finance Secretary 47038.75000 1.881550e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.881550e+05 1.881550e+05 0.00 NULL
2022 Department Of Finance Secretary To Deputy Commissioner 61800.00000 6.180000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.180000e+04 6.180000e+04 0.00 NULL
2022 Department Of Finance Special Officer 45998.25000 1.839930e+05 34659.16 8.664790e+03 6481.765 974.50 4 6.481765e+03 25927.06 2.186522e+05 2.099201e+05 8732.10 NULL
2022 Department Of Finance Staff Analyst 71932.95238 1.510592e+06 5030.87 2.395652e+02 0.000 23.50 21 0.000000e+00 0.00 1.515623e+06 1.510592e+06 5030.87 NULL
2022 Department Of Finance Summer College Intern 612.50000 3.062500e+03 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.062500e+03 3.062500e+03 0.00 NULL
2022 Department Of Finance Summer Graduate Intern 742.85115 9.657065e+03 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 9.657065e+03 9.657065e+03 0.00 NULL
2022 Department Of Finance Supervising Deputy Sheriff - Al 1 Only 40 Hr 115904.33333 2.086278e+06 1381713.78 7.676188e+04 48029.035 13026.75 18 4.802904e+04 864522.63 3.467992e+06 2.950801e+06 517191.15 NULL
2022 Department Of Finance Supervising Special Officer 60890.16667 3.653410e+05 10941.38 1.823563e+03 434.855 268.00 6 4.348550e+02 2609.13 3.762824e+05 3.679501e+05 8332.25 NULL
2022 Department Of Finance Tax Map Cartographer 75379.00000 1.507580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.507580e+05 1.507580e+05 0.00 NULL
2022 Department Of Finance Telecommunications Associate 54022.00000 5.402200e+04 6946.36 6.946360e+03 6946.360 165.75 1 6.946360e+03 6946.36 6.096836e+04 6.096836e+04 0.00 NULL
2022 Department Of Investigation Adm Manager-Non-Mgrl 83958.33333 7.556250e+05 505.31 5.614556e+01 0.000 11.00 9 0.000000e+00 0.00 7.561303e+05 7.556250e+05 505.31 NULL
2022 Department Of Investigation Administrative Manager 121282.75000 4.851310e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.851310e+05 4.851310e+05 0.00 NULL
2022 Department Of Investigation Administrative Public Information Specialist 122842.33333 3.685270e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.685270e+05 3.685270e+05 0.00 NULL
2022 Department Of Investigation Administrative Staff Analyst 120825.00000 2.416500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.416500e+05 2.416500e+05 0.00 NULL
2022 Department Of Investigation Clerical Associate 54044.21429 7.566190e+05 88.79 6.342143e+00 0.000 2.50 14 0.000000e+00 0.00 7.567078e+05 7.566190e+05 88.79 NULL
2022 Department Of Investigation Commissioner 237240.00000 4.744800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.744800e+05 4.744800e+05 0.00 NULL
2022 Department Of Investigation Community Assistant 31293.62500 6.258725e+04 746.74 3.733700e+02 373.370 29.25 2 3.733700e+02 746.74 6.333399e+04 6.333399e+04 0.00 NULL
2022 Department Of Investigation Community Associate 53167.81818 5.848460e+05 3316.94 3.015400e+02 0.000 88.25 11 0.000000e+00 0.00 5.881629e+05 5.848460e+05 3316.94 NULL
2022 Department Of Investigation Community Coordinator 75299.33333 2.258980e+05 12618.25 4.206083e+03 2636.320 178.00 3 2.636320e+03 7908.96 2.385162e+05 2.338070e+05 4709.29 NULL
2022 Department Of Investigation Computer Associate 71200.00000 2.136000e+05 34208.07 1.140269e+04 1023.240 596.75 3 1.023240e+03 3069.72 2.478081e+05 2.166697e+05 31138.35 NULL
2022 Department Of Investigation Computer Operations Manager 99926.00000 1.998520e+05 524.12 2.620600e+02 262.060 8.25 2 2.620600e+02 524.12 2.003761e+05 2.003761e+05 0.00 NULL
2022 Department Of Investigation Computer Specialist 100405.50000 2.008110e+05 1019.09 5.095450e+02 509.545 16.75 2 5.095450e+02 1019.09 2.018301e+05 2.018301e+05 0.00 NULL
2022 Department Of Investigation Computer Systems Manager 132724.57143 9.290720e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.290720e+05 9.290720e+05 0.00 NULL
2022 Department Of Investigation Confidential Investigator 61160.75410 7.461612e+06 89371.24 7.325511e+02 0.000 2178.75 122 0.000000e+00 0.00 7.550983e+06 7.461612e+06 89371.24 NULL
2022 Department Of Investigation Confidential Secretary To The Deputy Commissioner 73355.00000 1.467100e+05 386.31 1.931550e+02 193.155 10.00 2 1.931550e+02 386.31 1.470963e+05 1.470963e+05 0.00 NULL
2022 Department Of Investigation Customer Information Representative Ma L 1549 43244.50000 8.648900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.648900e+04 8.648900e+04 0.00 NULL
2022 Department Of Investigation Deputy Commissioner 191984.00000 5.759520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.759520e+05 5.759520e+05 0.00 NULL
2022 Department Of Investigation Deputy Inspector General 109830.25714 3.844059e+06 786.14 2.246114e+01 0.000 16.50 35 0.000000e+00 0.00 3.844845e+06 3.844059e+06 786.14 NULL
2022 Department Of Investigation Examiner Of Accounts 119423.00000 2.388460e+05 8236.01 4.118005e+03 4118.005 127.50 2 4.118005e+03 8236.01 2.470820e+05 2.470820e+05 0.00 NULL
2022 Department Of Investigation Examining Attorney 112895.66667 1.693435e+06 5889.00 3.926000e+02 0.000 104.50 15 0.000000e+00 0.00 1.699324e+06 1.693435e+06 5889.00 NULL
2022 Department Of Investigation Inspector General 154043.04348 3.542990e+06 511.49 2.223870e+01 0.000 7.75 23 0.000000e+00 0.00 3.543501e+06 3.542990e+06 511.49 NULL
2022 Department Of Investigation Principal Administrative Associate - Non Supvr 71196.11111 6.407650e+05 802.40 8.915556e+01 0.000 22.75 9 0.000000e+00 0.00 6.415674e+05 6.407650e+05 802.40 NULL
2022 Department Of Investigation Procurement Analyst 85186.00000 1.703720e+05 17.96 8.980000e+00 8.980 0.00 2 8.980000e+00 17.96 1.703900e+05 1.703900e+05 0.00 NULL
2022 Department Of Investigation Secretary 50534.00000 1.010680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.010680e+05 1.010680e+05 0.00 NULL
2022 Department Of Investigation Special Investigator 81166.19101 7.223791e+06 208037.41 2.337499e+03 297.730 4014.75 89 2.977300e+02 26497.97 7.431828e+06 7.250289e+06 181539.44 NULL
2022 Department Of Investigation Staff Analyst 78098.00000 7.809800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.809800e+04 7.809800e+04 0.00 NULL
2022 Department Of Probation *Attorney At Law 91563.00000 1.831260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.831260e+05 1.831260e+05 0.00 NULL
2022 Department Of Probation Adm Manager-Non-Mgrl 80504.70000 8.050470e+05 1119.88 1.119880e+02 0.000 27.50 10 0.000000e+00 0.00 8.061669e+05 8.050470e+05 1119.88 NULL
2022 Department Of Probation Admin Contract Specialist 175101.00000 1.751010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.751010e+05 1.751010e+05 0.00 NULL
2022 Department Of Probation Administrative Contract Specialist 78280.00000 7.828000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.828000e+04 7.828000e+04 0.00 NULL
2022 Department Of Probation Administrative Director Of Social Services 185000.00000 1.850000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.850000e+05 1.850000e+05 0.00 NULL
2022 Department Of Probation Administrative Probation Officer 101602.75472 5.384946e+06 0.00 0.000000e+00 0.000 0.00 53 0.000000e+00 0.00 5.384946e+06 5.384946e+06 0.00 NULL
2022 Department Of Probation Administrative Procurement Analyst-Non-Mgrl 83330.00000 1.666600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.666600e+05 1.666600e+05 0.00 NULL
2022 Department Of Probation Administrative Public Information Specialist 109195.50000 2.183910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.183910e+05 2.183910e+05 0.00 NULL
2022 Department Of Probation Administrative Staff Analyst 124933.88889 1.124405e+06 433.41 4.815667e+01 0.000 1.00 9 0.000000e+00 0.00 1.124838e+06 1.124405e+06 433.41 NULL
2022 Department Of Probation Agency Attorney 104474.30000 1.044743e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.044743e+06 1.044743e+06 0.00 NULL
2022 Department Of Probation Agency Chief Contracting Officer 132816.00000 1.328160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.328160e+05 1.328160e+05 0.00 NULL
2022 Department Of Probation Associate Staff Analyst 81203.00000 2.436090e+05 13.64 4.546667e+00 0.650 0.00 3 6.500000e-01 1.95 2.436226e+05 2.436110e+05 11.69 NULL
2022 Department Of Probation Certified It Administrator 94244.00000 9.424400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.424400e+04 9.424400e+04 0.00 NULL
2022 Department Of Probation City Attendant 42757.00000 4.275700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.275700e+04 4.275700e+04 0.00 NULL
2022 Department Of Probation City Laborer NA NA 6579.46 2.193153e+03 462.210 115.50 3 4.622100e+02 1386.63 NA NA NA NULL
2022 Department Of Probation City Research Scientist 107110.12500 8.568810e+05 569.24 7.115500e+01 0.000 12.00 8 0.000000e+00 0.00 8.574502e+05 8.568810e+05 569.24 NULL
2022 Department Of Probation Clerical Associate 43297.00000 1.428801e+06 10093.17 3.058536e+02 0.000 345.50 33 0.000000e+00 0.00 1.438894e+06 1.428801e+06 10093.17 NULL
2022 Department Of Probation College Aide 22015.40333 1.320924e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.320924e+05 1.320924e+05 0.00 NULL
2022 Department Of Probation Community Assistant 31590.71429 3.790886e+05 87.61 7.300833e+00 0.000 3.75 12 0.000000e+00 0.00 3.791762e+05 3.790886e+05 87.61 NULL
2022 Department Of Probation Community Associate 45375.96721 2.767934e+06 37143.71 6.089133e+02 0.000 1289.25 61 0.000000e+00 0.00 2.805078e+06 2.767934e+06 37143.71 NULL
2022 Department Of Probation Community Coordinator 73530.43750 1.176487e+06 10357.66 6.473537e+02 0.000 248.25 16 0.000000e+00 0.00 1.186845e+06 1.176487e+06 10357.66 NULL
2022 Department Of Probation Community Service Aide 33764.00000 3.376400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.376400e+04 3.376400e+04 0.00 NULL
2022 Department Of Probation Computer Aide-Non-Spvr 40990.00000 4.099000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.099000e+04 4.099000e+04 0.00 NULL
2022 Department Of Probation Computer Associate 76587.00000 7.658700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.658700e+04 7.658700e+04 0.00 NULL
2022 Department Of Probation Computer Service Technician 49033.50000 9.806700e+04 434.59 2.172950e+02 217.295 14.00 2 2.172950e+02 434.59 9.850159e+04 9.850159e+04 0.00 NULL
2022 Department Of Probation Computer Specialist 104205.80000 5.210290e+05 39068.87 7.813774e+03 4992.260 500.50 5 4.992260e+03 24961.30 5.600979e+05 5.459903e+05 14107.57 NULL
2022 Department Of Probation Counsel 191881.00000 1.918810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.918810e+05 1.918810e+05 0.00 NULL
2022 Department Of Probation Deputy Director Of Probation 186423.00000 5.592690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.592690e+05 5.592690e+05 0.00 NULL
2022 Department Of Probation District Supervisor 102915.00000 1.029150e+05 1681.22 1.681220e+03 1681.220 28.00 1 1.681220e+03 1681.22 1.045962e+05 1.045962e+05 0.00 NULL
2022 Department Of Probation Executive Agency Counsel 157777.57143 1.104443e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.104443e+06 1.104443e+06 0.00 NULL
2022 Department Of Probation Executive Dir Of Administration 192678.00000 1.926780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.926780e+05 1.926780e+05 0.00 NULL
2022 Department Of Probation Executive Program Specialist 132588.00000 1.325880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.325880e+05 1.325880e+05 0.00 NULL
2022 Department Of Probation Investigator 42304.00000 1.269120e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.269120e+05 1.269120e+05 0.00 NULL
2022 Department Of Probation It Project Specialist 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2022 Department Of Probation Press Officer 144199.00000 1.441990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.441990e+05 1.441990e+05 0.00 NULL
2022 Department Of Probation Principal Administrative Associate - Non Supvr 59879.69697 1.976030e+06 43184.73 1.308628e+03 0.000 1056.50 33 0.000000e+00 0.00 2.019215e+06 1.976030e+06 43184.73 NULL
2022 Department Of Probation Probation Assistant 34174.82353 5.809720e+05 857.48 5.044000e+01 0.000 37.00 17 0.000000e+00 0.00 5.818295e+05 5.809720e+05 857.48 NULL
2022 Department Of Probation Probation Officer 57455.92227 3.843801e+07 512297.70 7.657664e+02 0.000 12276.83 669 0.000000e+00 0.00 3.895031e+07 3.843801e+07 512297.70 NULL
2022 Department Of Probation Probation Officer Trainee 43421.00000 4.342100e+05 411.98 4.119800e+01 0.000 14.00 10 0.000000e+00 0.00 4.346220e+05 4.342100e+05 411.98 NULL
2022 Department Of Probation Procurement Analyst 58688.00000 5.868800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.868800e+04 5.868800e+04 0.00 NULL
2022 Department Of Probation Secretary 41182.00000 8.648220e+05 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 8.648220e+05 8.648220e+05 0.00 NULL
2022 Department Of Probation Senior Consultant 82816.66667 2.484500e+05 117.21 3.907000e+01 0.000 3.00 3 0.000000e+00 0.00 2.485672e+05 2.484500e+05 117.21 NULL
2022 Department Of Probation Senior Mental Health Worker 49760.66667 2.985640e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.985640e+05 2.985640e+05 0.00 NULL
2022 Department Of Probation Social Worker 58741.00000 5.874100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.874100e+04 5.874100e+04 0.00 NULL
2022 Department Of Probation Staff Analyst 69272.60000 3.463630e+05 11532.62 2.306524e+03 0.000 147.50 5 0.000000e+00 0.00 3.578956e+05 3.463630e+05 11532.62 NULL
2022 Department Of Probation Stock Worker 37840.00000 3.784000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.784000e+04 3.784000e+04 0.00 NULL
2022 Department Of Probation Strategic Initiative Specialist 99955.00000 9.995500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.995500e+04 9.995500e+04 0.00 NULL
2022 Department Of Probation Summer College Intern 2523.60000 1.261800e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.261800e+04 1.261800e+04 0.00 NULL
2022 Department Of Probation Summer Graduate Intern 2919.07143 2.043350e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.043350e+04 2.043350e+04 0.00 NULL
2022 Department Of Probation Supervising Computer Service Technician 78604.00000 7.860400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.860400e+04 7.860400e+04 0.00 NULL
2022 Department Of Probation Supervising Probation Officer 75351.50785 1.439214e+07 198400.46 1.038746e+03 39.130 3812.00 191 3.913000e+01 7473.83 1.459054e+07 1.439961e+07 190926.63 NULL
2022 Department Of Probation Supervisor Ii Social Work 73722.00000 7.372200e+04 753.77 7.537700e+02 753.770 16.50 1 7.537700e+02 753.77 7.447577e+04 7.447577e+04 0.00 NULL
2022 Department Of Sanitation *Attorney At Law 108713.00000 2.174260e+05 449.35 2.246750e+02 224.675 6.00 2 2.246750e+02 449.35 2.178754e+05 2.178754e+05 0.00 NULL
2022 Department Of Sanitation *Custodial Assistant 37987.00000 3.798700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.798700e+04 3.798700e+04 0.00 NULL
2022 Department Of Sanitation Accountant 66174.75000 5.293980e+05 13465.63 1.683204e+03 38.320 289.75 8 3.832000e+01 306.56 5.428636e+05 5.297046e+05 13159.07 NULL
2022 Department Of Sanitation Adm Manager-Non-Mgrl 85968.72727 1.891312e+06 274755.55 1.248889e+04 6233.815 4739.00 22 6.233815e+03 137143.93 2.166068e+06 2.028456e+06 137611.62 NULL
2022 Department Of Sanitation Admin Community Relations Specialist 116293.75000 9.303500e+05 78953.53 9.869191e+03 3875.335 1047.25 8 3.875335e+03 31002.68 1.009304e+06 9.613527e+05 47950.85 NULL
2022 Department Of Sanitation Administrative Accountant 137865.00000 1.378650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.378650e+05 1.378650e+05 0.00 NULL
2022 Department Of Sanitation Administrative Architect 129889.00000 5.195560e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.195560e+05 5.195560e+05 0.00 NULL
2022 Department Of Sanitation Administrative Business Promotion Coordinator 139979.80000 6.998990e+05 1415.92 2.831840e+02 0.000 30.00 5 0.000000e+00 0.00 7.013149e+05 6.998990e+05 1415.92 NULL
2022 Department Of Sanitation Administrative City Planner 121611.00000 9.728880e+05 149.97 1.874625e+01 0.000 2.75 8 0.000000e+00 0.00 9.730380e+05 9.728880e+05 149.97 NULL
2022 Department Of Sanitation Administrative Construction Project Manager 152796.75000 6.111870e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.111870e+05 6.111870e+05 0.00 NULL
2022 Department Of Sanitation Administrative Engineer 152832.50000 1.833990e+06 458.63 3.821917e+01 0.000 6.00 12 0.000000e+00 0.00 1.834449e+06 1.833990e+06 458.63 NULL
2022 Department Of Sanitation Administrative Management Auditor 99551.50000 1.991030e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.991030e+05 1.991030e+05 0.00 NULL
2022 Department Of Sanitation Administrative Manager 205610.00000 2.056100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.056100e+05 2.056100e+05 0.00 NULL
2022 Department Of Sanitation Administrative Procurement Analyst 136986.00000 1.369860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.369860e+05 1.369860e+05 0.00 NULL
2022 Department Of Sanitation Administrative Procurement Analyst-Non-Mgrl 86813.66667 7.813230e+05 41160.42 4.573380e+03 2282.660 809.75 9 2.282660e+03 20543.94 8.224834e+05 8.018669e+05 20616.48 NULL
2022 Department Of Sanitation Administrative Project Manager 125971.77778 2.267492e+06 5541.63 3.078683e+02 0.000 77.00 18 0.000000e+00 0.00 2.273034e+06 2.267492e+06 5541.63 NULL
2022 Department Of Sanitation Administrative Public Information Specialist 160112.00000 1.601120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.601120e+05 1.601120e+05 0.00 NULL
2022 Department Of Sanitation Administrative Staff Analyst 113092.11681 7.350988e+06 264870.00 4.074923e+03 88.740 2928.25 65 8.874000e+01 5768.10 7.615858e+06 7.356756e+06 259101.90 NULL
2022 Department Of Sanitation Administrative Supervisor Of Building Maintenance 167913.00000 6.716520e+05 1781.91 4.454775e+02 0.000 16.00 4 0.000000e+00 0.00 6.734339e+05 6.716520e+05 1781.91 NULL
2022 Department Of Sanitation Agency Attorney 103591.07143 1.450275e+06 74203.74 5.300267e+03 462.145 1010.00 14 4.621450e+02 6470.03 1.524479e+06 1.456745e+06 67733.71 NULL
2022 Department Of Sanitation Agency Chief Contracting Officer 164006.00000 1.640060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.640060e+05 1.640060e+05 0.00 NULL
2022 Department Of Sanitation Assistant Architect 65640.00000 6.564000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.564000e+04 6.564000e+04 0.00 NULL
2022 Department Of Sanitation Assistant Civil Engineer 71873.50000 2.874940e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.874940e+05 2.874940e+05 0.00 NULL
2022 Department Of Sanitation Assistant Electrical Engineer 81783.50000 1.635670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.635670e+05 1.635670e+05 0.00 NULL
2022 Department Of Sanitation Assistant Mechanical Engineer 71050.00000 7.105000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.105000e+04 7.105000e+04 0.00 NULL
2022 Department Of Sanitation Assistant To The Commissioner 89529.00000 8.952900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.952900e+04 8.952900e+04 0.00 NULL
2022 Department Of Sanitation Associate Fingerprint Technician 58367.00000 5.836700e+04 1739.62 1.739620e+03 1739.620 48.50 1 1.739620e+03 1739.62 6.010662e+04 6.010662e+04 0.00 NULL
2022 Department Of Sanitation Associate Fraud Investigator 87909.00000 8.790900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.790900e+04 8.790900e+04 0.00 NULL
2022 Department Of Sanitation Associate Project Manager 87177.14889 7.845943e+05 6951.53 7.723922e+02 0.000 119.25 9 0.000000e+00 0.00 7.915459e+05 7.845943e+05 6951.53 NULL
2022 Department Of Sanitation Associate Public Records Officer 80330.00000 8.033000e+04 3306.88 3.306880e+03 3306.880 71.75 1 3.306880e+03 3306.88 8.363688e+04 8.363688e+04 0.00 NULL
2022 Department Of Sanitation Associate Sanitation Enforcement Agent 46406.37255 2.366725e+06 154233.77 3.024192e+03 2808.820 4511.25 51 2.808820e+03 143249.82 2.520959e+06 2.509975e+06 10983.95 NULL
2022 Department Of Sanitation Associate Staff Analyst 89183.63636 2.943060e+06 48509.10 1.469973e+03 61.930 794.25 33 6.193000e+01 2043.69 2.991569e+06 2.945104e+06 46465.41 NULL
2022 Department Of Sanitation Auto Machinist NA NA 127576.80 1.822526e+04 17331.870 1896.50 7 1.733187e+04 121323.09 NA NA NA NULL
2022 Department Of Sanitation Auto Mechanic NA NA 10507901.57 1.856520e+04 19743.255 160214.90 566 1.856520e+04 10507901.57 NA NA NA NULL
2022 Department Of Sanitation Automotive Service Worker 48618.80000 2.430940e+05 22650.74 4.530148e+03 450.230 600.00 5 4.502300e+02 2251.15 2.657447e+05 2.453451e+05 20399.59 NULL
2022 Department Of Sanitation Blacksmith NA NA 37341.31 7.468262e+03 0.000 358.50 5 0.000000e+00 0.00 NA NA NA NULL
2022 Department Of Sanitation Boiler Maker NA NA 8974.82 2.991607e+03 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2022 Department Of Sanitation Bookkeeper 52750.72727 5.802580e+05 61.40 5.581818e+00 0.000 2.00 11 0.000000e+00 0.00 5.803194e+05 5.802580e+05 61.40 NULL
2022 Department Of Sanitation Carpenter NA NA 403913.01 3.365942e+04 29783.795 4716.75 12 2.978379e+04 357405.54 NA NA NA NULL
2022 Department Of Sanitation Carriage Upholsterer NA NA 4597.76 4.597760e+03 4597.760 92.00 1 4.597760e+03 4597.76 NA NA NA NULL
2022 Department Of Sanitation Cement Mason NA NA 129605.45 2.160091e+04 1635.400 1347.25 6 1.635400e+03 9812.40 NA NA NA NULL
2022 Department Of Sanitation Certified It Administrator 129588.13333 1.943822e+06 335861.27 2.239075e+04 20155.690 5463.25 15 2.015569e+04 302335.35 2.279683e+06 2.246157e+06 33525.92 NULL
2022 Department Of Sanitation Certified It Developer 133017.28000 3.325432e+06 169638.43 6.785537e+03 1313.940 3001.75 25 1.313940e+03 32848.50 3.495070e+06 3.358280e+06 136789.93 NULL
2022 Department Of Sanitation Chaplain 29452.00000 1.178080e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.178080e+05 1.178080e+05 0.00 NULL
2022 Department Of Sanitation City Attendant 37777.22917 1.813307e+06 163775.19 3.411983e+03 1209.110 5928.75 48 1.209110e+03 58037.28 1.977082e+06 1.871344e+06 105737.91 NULL
2022 Department Of Sanitation City Clinician 53075.39000 5.307539e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.307539e+04 5.307539e+04 0.00 NULL
2022 Department Of Sanitation City Custodial Assistant 44720.00000 4.472000e+04 28474.17 2.847417e+04 28474.170 793.00 1 2.847417e+04 28474.17 7.319417e+04 7.319417e+04 0.00 NULL
2022 Department Of Sanitation City Deputy Medical Director 179040.00000 1.790400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.790400e+05 1.790400e+05 0.00 NULL
2022 Department Of Sanitation City Laborer NA NA 207322.42 1.594788e+04 11346.250 3471.50 13 1.134625e+04 147501.25 NA NA NA NULL
2022 Department Of Sanitation City Medical Specialist 72598.42102 9.437795e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 9.437795e+05 9.437795e+05 0.00 NULL
2022 Department Of Sanitation City Planner 74989.00000 7.498900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.498900e+04 7.498900e+04 0.00 NULL
2022 Department Of Sanitation City Research Scientist 91538.44444 8.238460e+05 19576.10 2.175122e+03 191.330 262.25 9 1.913300e+02 1721.97 8.434221e+05 8.255680e+05 17854.13 NULL
2022 Department Of Sanitation City Seasonal Aide 365.85126 1.712184e+05 63.75 1.362179e-01 0.000 2.50 468 0.000000e+00 0.00 1.712821e+05 1.712184e+05 63.75 NULL
2022 Department Of Sanitation Civil Engineer 109336.33333 3.280090e+05 452.83 1.509433e+02 0.000 6.25 3 0.000000e+00 0.00 3.284618e+05 3.280090e+05 452.83 NULL
2022 Department Of Sanitation Clerical Aide 38893.33333 1.166800e+05 20051.26 6.683753e+03 0.000 582.75 3 0.000000e+00 0.00 1.367313e+05 1.166800e+05 20051.26 NULL
2022 Department Of Sanitation Clerical Associate 43933.06865 9.445610e+06 1534839.18 7.138787e+03 4485.220 46291.08 215 4.485220e+03 964322.30 1.098045e+07 1.040993e+07 570516.88 NULL
2022 Department Of Sanitation College Aide 9022.27097 5.232917e+05 0.00 0.000000e+00 0.000 0.00 58 0.000000e+00 0.00 5.232917e+05 5.232917e+05 0.00 NULL
2022 Department Of Sanitation College Aide - Assignment Levels Ii And Iii 3833.82160 3.833822e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.833822e+03 3.833822e+03 0.00 NULL
2022 Department Of Sanitation Commissioner Of Sanitation 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2022 Department Of Sanitation Community Assistant 38694.62500 3.095570e+05 1344.10 1.680125e+02 0.000 49.75 8 0.000000e+00 0.00 3.109011e+05 3.095570e+05 1344.10 NULL
2022 Department Of Sanitation Community Associate 46120.91304 1.060781e+06 46662.64 2.028810e+03 0.000 1404.50 23 0.000000e+00 0.00 1.107444e+06 1.060781e+06 46662.64 NULL
2022 Department Of Sanitation Community Coordinator 65249.68293 5.350474e+06 230420.85 2.810010e+03 428.615 4902.50 82 4.286150e+02 35146.43 5.580895e+06 5.385620e+06 195274.42 NULL
2022 Department Of Sanitation Computer Aide-Non-Spvr 77256.00000 7.725600e+04 10433.94 1.043394e+04 10433.940 210.50 1 1.043394e+04 10433.94 8.768994e+04 8.768994e+04 0.00 NULL
2022 Department Of Sanitation Computer Associate 80973.20000 1.214598e+06 133549.60 8.903307e+03 136.130 2165.00 15 1.361300e+02 2041.95 1.348148e+06 1.216640e+06 131507.65 NULL
2022 Department Of Sanitation Computer Operations Manager 93968.20000 4.698410e+05 1904.64 3.809280e+02 0.000 43.00 5 0.000000e+00 0.00 4.717456e+05 4.698410e+05 1904.64 NULL
2022 Department Of Sanitation Computer Specialist 107154.58333 3.857565e+06 361237.63 1.003438e+04 2673.025 5235.25 36 2.673025e+03 96228.90 4.218803e+06 3.953794e+06 265008.73 NULL
2022 Department Of Sanitation Computer Systems Manager 141066.63768 9.733598e+06 120079.68 1.740285e+03 0.000 1754.75 69 0.000000e+00 0.00 9.853678e+06 9.733598e+06 120079.68 NULL
2022 Department Of Sanitation Confidential Assistant To The Commissioner 147393.00000 1.473930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.473930e+05 1.473930e+05 0.00 NULL
2022 Department Of Sanitation Construction Laborer NA NA 111856.18 1.398202e+04 10107.180 1679.50 8 1.010718e+04 80857.44 NA NA NA NULL
2022 Department Of Sanitation Construction Project Manager 90321.90000 9.032190e+05 10010.26 1.001026e+03 0.000 172.75 10 0.000000e+00 0.00 9.132293e+05 9.032190e+05 10010.26 NULL
2022 Department Of Sanitation Counselor 78380.00000 1.567600e+05 9243.20 4.621600e+03 4621.600 164.50 2 4.621600e+03 9243.20 1.660032e+05 1.660032e+05 0.00 NULL
2022 Department Of Sanitation Custodian 39137.00000 3.913700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.913700e+04 3.913700e+04 0.00 NULL
2022 Department Of Sanitation Dep Dir Mtr Eq Mntc 158948.50000 3.178970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.178970e+05 3.178970e+05 0.00 NULL
2022 Department Of Sanitation Deputy Administrator 132827.00000 2.656540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.656540e+05 2.656540e+05 0.00 NULL
2022 Department Of Sanitation Deputy Administrator/Comsnr-Dos 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2022 Department Of Sanitation Deputy Commissioner 230543.00000 6.916290e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.916290e+05 6.916290e+05 0.00 NULL
2022 Department Of Sanitation Deputy Director Of Motor Equipment Maintenance 156750.50000 3.135010e+05 13475.71 6.737855e+03 6737.855 120.25 2 6.737855e+03 13475.71 3.269767e+05 3.269767e+05 0.00 NULL
2022 Department Of Sanitation Director 138012.00000 1.380120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.380120e+05 1.380120e+05 0.00 NULL
2022 Department Of Sanitation Director Of Motor Equipment Maintenance 220388.00000 2.203880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.203880e+05 2.203880e+05 0.00 NULL
2022 Department Of Sanitation Director Of Motor Equipment Maintenance-Nm 181341.50000 3.626830e+05 36552.42 1.827621e+04 18276.210 288.25 2 1.827621e+04 36552.42 3.992354e+05 3.992354e+05 0.00 NULL
2022 Department Of Sanitation Economist 84516.00000 8.451600e+04 724.48 7.244800e+02 724.480 13.50 1 7.244800e+02 724.48 8.524048e+04 8.524048e+04 0.00 NULL
2022 Department Of Sanitation Electrician NA NA 1288267.20 1.922787e+04 19835.940 17324.75 67 1.922787e+04 1288267.20 NA NA NA NULL
2022 Department Of Sanitation Estimator 81069.00000 1.621380e+05 8118.17 4.059085e+03 4059.085 164.00 2 4.059085e+03 8118.17 1.702562e+05 1.702562e+05 0.00 NULL
2022 Department Of Sanitation Executive Agency Counsel 153808.16667 9.228490e+05 2595.13 4.325217e+02 0.000 90.25 6 0.000000e+00 0.00 9.254441e+05 9.228490e+05 2595.13 NULL
2022 Department Of Sanitation Executive Assistant To The Commissioner 171666.66667 5.150000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.150000e+05 5.150000e+05 0.00 NULL
2022 Department Of Sanitation General Superintendent 147155.95847 4.605982e+07 8734560.64 2.790594e+04 19968.110 83972.58 313 1.996811e+04 6250018.43 5.479438e+07 5.230983e+07 2484542.21 NULL
2022 Department Of Sanitation Graphic Artist 88434.00000 3.537360e+05 2155.29 5.388225e+02 106.265 38.00 4 1.062650e+02 425.06 3.558913e+05 3.541611e+05 1730.23 NULL
2022 Department Of Sanitation Health Services Manager 198132.00000 1.981320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.981320e+05 1.981320e+05 0.00 NULL
2022 Department Of Sanitation High Pressure Plant Tender NA NA 222069.03 3.701150e+04 44640.600 3828.50 6 3.701150e+04 222069.03 NA NA NA NULL
2022 Department Of Sanitation Incinerator Facility Manager 112002.00000 1.120020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.120020e+05 1.120020e+05 0.00 NULL
2022 Department Of Sanitation Instrumental Specialist 74773.00000 7.477300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.477300e+04 7.477300e+04 0.00 NULL
2022 Department Of Sanitation Investigator 60057.22222 5.405150e+05 91931.52 1.021461e+04 4532.350 2061.75 9 4.532350e+03 40791.15 6.324465e+05 5.813062e+05 51140.37 NULL
2022 Department Of Sanitation Job Training Participant 7177.00728 2.698555e+06 1224.42 3.256436e+00 0.000 53.00 376 0.000000e+00 0.00 2.699779e+06 2.698555e+06 1224.42 NULL
2022 Department Of Sanitation Laboratory Associate 47070.50000 9.414100e+04 5153.59 2.576795e+03 2576.795 148.25 2 2.576795e+03 5153.59 9.929459e+04 9.929459e+04 0.00 NULL
2022 Department Of Sanitation Laboratory Microbiologist 59992.00000 1.199840e+05 4389.63 2.194815e+03 2194.815 125.75 2 2.194815e+03 4389.63 1.243736e+05 1.243736e+05 0.00 NULL
2022 Department Of Sanitation Letterer And Sign Painter NA NA 11569.04 3.856347e+03 1976.990 243.50 3 1.976990e+03 5930.97 NA NA NA NULL
2022 Department Of Sanitation Machinist NA NA 352061.43 1.408246e+04 13395.440 5426.75 25 1.339544e+04 334886.00 NA NA NA NULL
2022 Department Of Sanitation Maintenance Worker NA NA 299161.23 1.246505e+04 9714.555 6324.00 24 9.714555e+03 233149.32 NA NA NA NULL
2022 Department Of Sanitation Management Auditor 77191.25000 3.087650e+05 38.46 9.615000e+00 0.000 1.00 4 0.000000e+00 0.00 3.088035e+05 3.087650e+05 38.46 NULL
2022 Department Of Sanitation Mechanical Engineer 109480.00000 1.094800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.094800e+05 1.094800e+05 0.00 NULL
2022 Department Of Sanitation Medical Director 193741.00000 1.937410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.937410e+05 1.937410e+05 0.00 NULL
2022 Department Of Sanitation Medical Record Librarian 59601.80000 2.980090e+05 22882.54 4.576508e+03 0.000 455.75 5 0.000000e+00 0.00 3.208915e+05 2.980090e+05 22882.54 NULL
2022 Department Of Sanitation Metal Work Mechanic 98030.29167 7.058181e+06 1284403.32 1.783894e+04 9899.330 11713.00 72 9.899330e+03 712751.76 8.342584e+06 7.770933e+06 571651.56 NULL
2022 Department Of Sanitation Motor Vehicle Operator 50035.00000 1.501050e+05 13022.80 4.340933e+03 2963.480 317.00 3 2.963480e+03 8890.44 1.631278e+05 1.589954e+05 4132.36 NULL
2022 Department Of Sanitation Office Machine Aide 40133.00000 8.026600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.026600e+04 8.026600e+04 0.00 NULL
2022 Department Of Sanitation Oiler NA NA 46648.50 1.166212e+04 2612.570 526.00 4 2.612570e+03 10450.28 NA NA NA NULL
2022 Department Of Sanitation Painter NA NA 164217.53 2.736959e+04 32622.955 2326.00 6 2.736959e+04 164217.53 NA NA NA NULL
2022 Department Of Sanitation Plumber NA NA 334345.47 2.388182e+04 26315.815 3171.25 14 2.388182e+04 334345.47 NA NA NA NULL
2022 Department Of Sanitation Principal Administrative Associate - Non Supvr 61389.39130 4.235868e+06 509294.34 7.381077e+03 3537.730 11716.50 69 3.537730e+03 244103.37 4.745162e+06 4.479971e+06 265190.97 NULL
2022 Department Of Sanitation Procurement Analyst 64830.54857 1.361442e+06 34339.45 1.635212e+03 425.960 795.50 21 4.259600e+02 8945.16 1.395781e+06 1.370387e+06 25394.29 NULL
2022 Department Of Sanitation Public Records Aide 45000.00000 4.500000e+04 46.83 4.683000e+01 46.830 2.50 1 4.683000e+01 46.83 4.504683e+04 4.504683e+04 0.00 NULL
2022 Department Of Sanitation Research Assistant 58824.33333 1.764730e+05 52681.81 1.756060e+04 23842.120 1175.00 3 1.756060e+04 52681.81 2.291548e+05 2.291548e+05 0.00 NULL
2022 Department Of Sanitation Rubber Tire Repairer NA NA 73510.68 6.682789e+03 7689.110 1609.50 11 6.682789e+03 73510.68 NA NA NA NULL
2022 Department Of Sanitation Sanitation Compliance Agent 38797.71429 2.715840e+05 783.14 1.118771e+02 28.870 34.25 7 2.887000e+01 202.09 2.723671e+05 2.717861e+05 581.05 NULL
2022 Department Of Sanitation Sanitation Enforcement Agent 37768.17391 6.080676e+06 254227.85 1.579055e+03 1216.410 8763.75 161 1.216410e+03 195842.01 6.334904e+06 6.276518e+06 58385.84 NULL
2022 Department Of Sanitation Sanitation Worker 73652.17268 5.617451e+08 210199554.20 2.755993e+04 23171.610 3331975.39 7627 2.317161e+04 176729869.47 7.719447e+08 7.384750e+08 33469684.73 NULL
2022 Department Of Sanitation Secretary 53152.80000 2.657640e+05 5189.07 1.037814e+03 704.250 142.25 5 7.042500e+02 3521.25 2.709531e+05 2.692852e+05 1667.82 NULL
2022 Department Of Sanitation Secretary To The Commissioner 89474.00000 8.947400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.947400e+04 8.947400e+04 0.00 NULL
2022 Department Of Sanitation Secretary To The Department 157500.00000 1.575000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.575000e+05 1.575000e+05 0.00 NULL
2022 Department Of Sanitation Senior Automotive Specialist 104907.00000 1.049070e+05 7075.05 7.075050e+03 7075.050 102.00 1 7.075050e+03 7075.05 1.119821e+05 1.119821e+05 0.00 NULL
2022 Department Of Sanitation Senior Photographer 74670.00000 7.467000e+04 2614.19 2.614190e+03 2614.190 57.00 1 2.614190e+03 2614.19 7.728419e+04 7.728419e+04 0.00 NULL
2022 Department Of Sanitation Senior Stationary Engineer NA NA 172756.08 4.318902e+04 47924.240 1602.50 4 4.318902e+04 172756.08 NA NA NA NULL
2022 Department Of Sanitation Sheet Metal Worker NA NA 243003.36 3.471477e+04 25774.400 2099.25 7 2.577440e+04 180420.80 NA NA NA NULL
2022 Department Of Sanitation Staff Analyst 69315.57895 1.316996e+06 26663.75 1.403355e+03 48.600 599.75 19 4.860000e+01 923.40 1.343660e+06 1.317919e+06 25740.35 NULL
2022 Department Of Sanitation Staff Nurse 96855.20000 4.842760e+05 6313.43 1.262686e+03 83.720 87.50 5 8.372000e+01 418.60 4.905894e+05 4.846946e+05 5894.83 NULL
2022 Department Of Sanitation Stationary Engineer NA NA 1146768.42 4.247290e+04 40525.920 11853.50 27 4.052592e+04 1094199.84 NA NA NA NULL
2022 Department Of Sanitation Statistician 63393.00000 6.339300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.339300e+04 6.339300e+04 0.00 NULL
2022 Department Of Sanitation Steam Fitter NA NA 345675.00 3.840833e+04 43450.000 3144.00 9 3.840833e+04 345675.00 NA NA NA NULL
2022 Department Of Sanitation Stock Worker 43096.71429 3.016770e+05 70789.24 1.011275e+04 7807.700 2562.00 7 7.807700e+03 54653.90 3.724662e+05 3.563309e+05 16135.34 NULL
2022 Department Of Sanitation Summer College Intern 3326.18500 1.164165e+05 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 1.164165e+05 1.164165e+05 0.00 NULL
2022 Department Of Sanitation Summer Graduate Intern 6360.09945 8.268129e+04 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 8.268129e+04 8.268129e+04 0.00 NULL
2022 Department Of Sanitation Supervising Computer Service Technician 78286.00000 1.565720e+05 12375.05 6.187525e+03 6187.525 319.00 2 6.187525e+03 12375.05 1.689470e+05 1.689470e+05 0.00 NULL
2022 Department Of Sanitation Supervisor 104140.96296 1.321549e+08 40676268.62 3.205380e+04 30971.960 496770.78 1269 3.097196e+04 39303417.24 1.728312e+08 1.714583e+08 1372851.38 NULL
2022 Department Of Sanitation Supervisor Bricklayer NA NA 2981.12 2.981120e+03 2981.120 39.50 1 2.981120e+03 2981.12 NA NA NA NULL
2022 Department Of Sanitation Supervisor Carpenter NA NA 128950.20 6.447510e+04 64475.100 1429.00 2 6.447510e+04 128950.20 NA NA NA NULL
2022 Department Of Sanitation Supervisor Electrician NA NA 154152.31 5.138410e+04 63243.130 1503.25 3 5.138410e+04 154152.31 NA NA NA NULL
2022 Department Of Sanitation Supervisor Of Ironwork 122721.00000 3.681630e+05 161134.34 5.371145e+04 33159.480 1221.50 3 3.315948e+04 99478.44 5.292973e+05 4.676414e+05 61655.90 NULL
2022 Department Of Sanitation Supervisor Of Mechanics 128167.64935 9.868909e+06 2291285.89 2.975696e+04 34164.670 25044.27 77 2.975696e+04 2291285.89 1.216019e+07 1.216019e+07 0.00 NULL
2022 Department Of Sanitation Supervisor Of Office Machine Operations 58636.66667 1.759100e+05 6695.77 2.231923e+03 0.000 205.50 3 0.000000e+00 0.00 1.826058e+05 1.759100e+05 6695.77 NULL
2022 Department Of Sanitation Supervisor Of Stock Workers 54176.76923 7.042980e+05 278644.93 2.143423e+04 19878.390 7148.25 13 1.987839e+04 258419.07 9.829429e+05 9.627171e+05 20225.86 NULL
2022 Department Of Sanitation Supervisor Painter NA NA 9773.79 9.773790e+03 9773.790 67.25 1 9.773790e+03 9773.79 NA NA NA NULL
2022 Department Of Sanitation Supervisor Plumber NA NA 64551.10 3.227555e+04 32275.550 587.75 2 3.227555e+04 64551.10 NA NA NA NULL
2022 Department Of Sanitation Supervisor Sheet Metal Worker NA NA 102697.58 1.026976e+05 102697.580 765.50 1 1.026976e+05 102697.58 NA NA NA NULL
2022 Department Of Sanitation Supervisor Steamfitter NA NA 81975.00 4.098750e+04 40987.500 722.00 2 4.098750e+04 81975.00 NA NA NA NULL
2022 Department Of Sanitation Telecommunications Associate 67271.00000 3.363550e+05 27576.88 5.515376e+03 2692.990 635.75 5 2.692990e+03 13464.95 3.639319e+05 3.498200e+05 14111.93 NULL
2022 Department Of Sanitation Thermostat Repairer NA NA 28918.40 2.891840e+04 28918.400 280.00 1 2.891840e+04 28918.40 NA NA NA NULL
2022 Department Of Sanitation Tractor Operator NA NA 24741.40 1.237070e+04 12370.700 217.50 2 1.237070e+04 24741.40 NA NA NA NULL
2022 Department Of Sanitation Welder NA NA 102801.38 5.140069e+04 51400.690 1007.50 2 5.140069e+04 102801.38 NA NA NA NULL
2022 Department Of Transportation *Certified Database Administrator 121564.00000 1.215640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.215640e+05 1.215640e+05 0.00 NULL
2022 Department Of Transportation Accountant 64493.38095 1.354361e+06 7693.27 3.663462e+02 0.000 175.25 21 0.000000e+00 0.00 1.362054e+06 1.354361e+06 7693.27 NULL
2022 Department Of Transportation Adm Manager-Non-Mgrl 89993.76774 1.511895e+07 533475.40 3.175449e+03 0.000 8503.00 168 0.000000e+00 0.00 1.565243e+07 1.511895e+07 533475.40 NULL
2022 Department Of Transportation Admin Community Relations Specialist 94139.45474 1.788650e+06 90341.08 4.754794e+03 462.580 1403.75 19 4.625800e+02 8789.02 1.878991e+06 1.797439e+06 81552.06 NULL
2022 Department Of Transportation Admin Construction Project Manager 119593.33333 3.587800e+05 3643.64 1.214547e+03 0.000 54.75 3 0.000000e+00 0.00 3.624236e+05 3.587800e+05 3643.64 NULL
2022 Department Of Transportation Admin Inspector 115212.16667 6.912730e+05 134554.08 2.242568e+04 20568.825 1746.50 6 2.056883e+04 123412.95 8.258271e+05 8.146859e+05 11141.13 NULL
2022 Department Of Transportation Administrative Accountant 116107.00000 6.966420e+05 177.75 2.962500e+01 0.000 0.00 6 0.000000e+00 0.00 6.968198e+05 6.966420e+05 177.75 NULL
2022 Department Of Transportation Administrative Architect 118000.00000 1.180000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.180000e+05 1.180000e+05 0.00 NULL
2022 Department Of Transportation Administrative City Planner 114133.86441 6.733898e+06 114216.48 1.935873e+03 0.000 1875.25 59 0.000000e+00 0.00 6.848114e+06 6.733898e+06 114216.48 NULL
2022 Department Of Transportation Administrative Community Relations Specialist 151799.33333 4.553980e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.553980e+05 4.553980e+05 0.00 NULL
2022 Department Of Transportation Administrative Construction Project Manager 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2022 Department Of Transportation Administrative Contract Specialist 96259.50000 1.925190e+05 18568.24 9.284120e+03 9284.120 262.00 2 9.284120e+03 18568.24 2.110872e+05 2.110872e+05 0.00 NULL
2022 Department Of Transportation Administrative Director Of Marine Maintenance 164800.00000 1.648000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.648000e+05 1.648000e+05 0.00 NULL
2022 Department Of Transportation Administrative Engineer 132867.34351 1.740562e+07 534098.05 4.077084e+03 0.000 6947.50 131 0.000000e+00 0.00 1.793972e+07 1.740562e+07 534098.05 NULL
2022 Department Of Transportation Administrative Graphic Artist 127895.00000 1.278950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.278950e+05 1.278950e+05 0.00 NULL
2022 Department Of Transportation Administrative Inspector 150900.66667 4.527020e+05 22469.46 7.489820e+03 0.000 273.50 3 0.000000e+00 0.00 4.751715e+05 4.527020e+05 22469.46 NULL
2022 Department Of Transportation Administrative Investigator 94849.20000 4.742460e+05 8987.17 1.797434e+03 0.000 179.50 5 0.000000e+00 0.00 4.832332e+05 4.742460e+05 8987.17 NULL
2022 Department Of Transportation Administrative Management Auditor 128930.33333 7.735820e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.735820e+05 7.735820e+05 0.00 NULL
2022 Department Of Transportation Administrative Manager 151388.33333 9.083300e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.083300e+05 9.083300e+05 0.00 NULL
2022 Department Of Transportation Administrative Procurement Analyst 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2022 Department Of Transportation Administrative Procurement Analyst-Non-Mgrl 93177.70968 2.888509e+06 68700.33 2.216140e+03 0.000 1160.50 31 0.000000e+00 0.00 2.957209e+06 2.888509e+06 68700.33 NULL
2022 Department Of Transportation Administrative Project Manager 128750.71000 1.287507e+07 630689.85 6.306899e+03 0.000 8498.00 100 0.000000e+00 0.00 1.350576e+07 1.287507e+07 630689.85 NULL
2022 Department Of Transportation Administrative Public Information Specialist 198734.00000 1.987340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.987340e+05 1.987340e+05 0.00 NULL
2022 Department Of Transportation Administrative Quality Assurance Specialist 103301.60000 1.033016e+06 105498.72 1.054987e+04 6384.075 1755.25 10 6.384075e+03 63840.75 1.138515e+06 1.096857e+06 41657.97 NULL
2022 Department Of Transportation Administrative Real Property Manager 198472.00000 1.984720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.984720e+05 1.984720e+05 0.00 NULL
2022 Department Of Transportation Administrative Staff Analyst 123569.24597 1.606400e+07 269530.36 2.073310e+03 45.745 3246.25 130 4.574500e+01 5946.85 1.633353e+07 1.606995e+07 263583.51 NULL
2022 Department Of Transportation Administrative Superintendent Of Bridge Operations 133000.00000 1.330000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.330000e+05 1.330000e+05 0.00 NULL
2022 Department Of Transportation Administrative Superintendent Of Highway Operations 141451.62500 3.394839e+06 18399.19 7.666329e+02 0.000 280.50 24 0.000000e+00 0.00 3.413238e+06 3.394839e+06 18399.19 NULL
2022 Department Of Transportation Administrative Supervisor Of Building Maintenance 139283.00000 1.392830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.392830e+05 1.392830e+05 0.00 NULL
2022 Department Of Transportation Administrative Transportation Coordinator 140781.92593 3.801112e+06 3495.00 1.294444e+02 0.000 78.75 27 0.000000e+00 0.00 3.804607e+06 3.801112e+06 3495.00 NULL
2022 Department Of Transportation Agency Attorney 96351.17391 2.216077e+06 11744.38 5.106252e+02 0.000 149.50 23 0.000000e+00 0.00 2.227821e+06 2.216077e+06 11744.38 NULL
2022 Department Of Transportation Agency Chief Contracting Officer 194048.00000 1.940480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.940480e+05 1.940480e+05 0.00 NULL
2022 Department Of Transportation Apprentice Inspector 43335.53147 6.196981e+06 443527.52 3.101591e+03 509.990 13974.75 143 5.099900e+02 72928.57 6.640509e+06 6.269910e+06 370598.95 NULL
2022 Department Of Transportation Architect 102980.50000 2.059610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.059610e+05 2.059610e+05 0.00 NULL
2022 Department Of Transportation Area Supervisor 111746.64516 6.928292e+06 2657358.86 4.286063e+04 43946.350 31995.00 62 4.286063e+04 2657358.86 9.585651e+06 9.585651e+06 0.00 NULL
2022 Department Of Transportation Asphalt Plant Manager 179552.50000 3.591050e+05 831.29 4.156450e+02 415.645 0.00 2 4.156450e+02 831.29 3.599363e+05 3.599363e+05 0.00 NULL
2022 Department Of Transportation Assistant Accountant 56517.00000 5.651700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.651700e+04 5.651700e+04 0.00 NULL
2022 Department Of Transportation Assistant Architect 72610.50000 1.452210e+05 3986.64 1.993320e+03 1993.320 72.50 2 1.993320e+03 3986.64 1.492076e+05 1.492076e+05 0.00 NULL
2022 Department Of Transportation Assistant Captain 63014.00000 9.452100e+05 613585.75 4.090572e+04 43667.380 10923.00 15 4.090572e+04 613585.75 1.558796e+06 1.558796e+06 0.00 NULL
2022 Department Of Transportation Assistant City Highway Repairer 40939.98968 3.373455e+07 3917062.72 4.753717e+03 2550.895 99486.73 824 2.550895e+03 2101937.48 3.765161e+07 3.583649e+07 1815125.24 NULL
2022 Department Of Transportation Assistant Civil Engineer 74329.35099 1.122373e+07 578573.06 3.831610e+03 40.540 11041.75 151 4.054000e+01 6121.54 1.180231e+07 1.122985e+07 572451.52 NULL
2022 Department Of Transportation Assistant Commissioner 160733.00000 1.607330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.607330e+05 1.607330e+05 0.00 NULL
2022 Department Of Transportation Assistant Director 113300.00000 1.133000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133000e+05 1.133000e+05 0.00 NULL
2022 Department Of Transportation Assistant Electrical Engineer 72135.46875 2.308335e+06 290950.02 9.092188e+03 8774.380 5799.50 32 8.774380e+03 280780.16 2.599285e+06 2.589115e+06 10169.86 NULL
2022 Department Of Transportation Assistant Landscape Architect 61862.47750 6.186248e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.186248e+04 6.186248e+04 0.00 NULL
2022 Department Of Transportation Assistant Mechanical Engineer 76996.00000 4.619760e+05 39429.54 6.571590e+03 0.000 668.00 6 0.000000e+00 0.00 5.014055e+05 4.619760e+05 39429.54 NULL
2022 Department Of Transportation Assistant Printing Press Operator 67058.00000 1.341160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.341160e+05 1.341160e+05 0.00 NULL
2022 Department Of Transportation Assistant To The Deputy Commissioner 171878.00000 1.718780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.718780e+05 1.718780e+05 0.00 NULL
2022 Department Of Transportation Assistant Transportation Specialist 63053.15625 2.017701e+06 123587.68 3.862115e+03 288.930 2807.03 32 2.889300e+02 9245.76 2.141289e+06 2.026947e+06 114341.92 NULL
2022 Department Of Transportation Assistant Urban Designer 75307.33333 2.259220e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.259220e+05 2.259220e+05 0.00 NULL
2022 Department Of Transportation Associate Fraud Investigator 82154.00000 8.215400e+04 111.83 1.118300e+02 111.830 2.50 1 1.118300e+02 111.83 8.226583e+04 8.226583e+04 0.00 NULL
2022 Department Of Transportation Associate Inspector 77809.56000 3.890478e+06 703999.37 1.407999e+04 14238.155 12191.75 50 1.407999e+04 703999.37 4.594477e+06 4.594477e+06 0.00 NULL
2022 Department Of Transportation Associate Investigator 72160.25000 2.886410e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.886410e+05 2.886410e+05 0.00 NULL
2022 Department Of Transportation Associate Labor Relations Analyst 104148.50000 2.082970e+05 3534.10 1.767050e+03 1767.050 53.75 2 1.767050e+03 3534.10 2.118311e+05 2.118311e+05 0.00 NULL
2022 Department Of Transportation Associate Operations Communications Specialist 62761.75000 2.510470e+05 33152.06 8.288015e+03 2801.110 630.25 4 2.801110e+03 11204.44 2.841991e+05 2.622514e+05 21947.62 NULL
2022 Department Of Transportation Associate Project Manager 88104.52000 2.202613e+06 106848.04 4.273922e+03 0.000 1669.25 25 0.000000e+00 0.00 2.309461e+06 2.202613e+06 106848.04 NULL
2022 Department Of Transportation Associate Quality Assurance Specialist 82873.00000 8.287300e+04 10493.39 1.049339e+04 10493.390 182.00 1 1.049339e+04 10493.39 9.336639e+04 9.336639e+04 0.00 NULL
2022 Department Of Transportation Associate Staff Analyst 85643.95590 7.279736e+06 161564.86 1.900763e+03 99.060 2653.50 85 9.906000e+01 8420.10 7.441301e+06 7.288156e+06 153144.76 NULL
2022 Department Of Transportation Associate Urban Designer 95924.98000 2.877749e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.877749e+05 2.877749e+05 0.00 NULL
2022 Department Of Transportation Auto Machinist NA NA 28928.36 2.892836e+04 28928.360 440.00 1 2.892836e+04 28928.36 NA NA NA NULL
2022 Department Of Transportation Auto Body Worker 58725.00000 1.761750e+05 12557.11 4.185703e+03 362.700 318.00 3 3.627000e+02 1088.10 1.887321e+05 1.772631e+05 11469.01 NULL
2022 Department Of Transportation Auto Mechanic NA NA 1241489.69 1.241490e+04 11880.820 19057.75 100 1.188082e+04 1188082.00 NA NA NA NULL
2022 Department Of Transportation Automotive Service Worker 40815.58333 4.897870e+05 47511.05 3.959254e+03 1505.890 1528.00 12 1.505890e+03 18070.68 5.372981e+05 5.078577e+05 29440.37 NULL
2022 Department Of Transportation Automotive Specialist 85939.00000 8.593900e+04 18047.24 1.804724e+04 18047.240 325.50 1 1.804724e+04 18047.24 1.039862e+05 1.039862e+05 0.00 NULL
2022 Department Of Transportation Blacksmith NA NA 107962.34 2.159247e+04 12496.900 650.00 5 1.249690e+04 62484.50 NA NA NA NULL
2022 Department Of Transportation Blacksmith’s Helper NA NA 63663.43 3.183172e+04 31831.715 786.50 2 3.183172e+04 63663.43 NA NA NA NULL
2022 Department Of Transportation Boiler Maker NA NA 313888.29 2.414525e+04 19325.690 2265.00 13 1.932569e+04 251233.97 NA NA NA NULL
2022 Department Of Transportation Bookkeeper 54823.50000 3.289410e+05 2039.76 3.399600e+02 0.000 57.75 6 0.000000e+00 0.00 3.309808e+05 3.289410e+05 2039.76 NULL
2022 Department Of Transportation Borough Commissioner 168679.16667 1.012075e+06 399.86 6.664333e+01 0.000 0.00 6 0.000000e+00 0.00 1.012475e+06 1.012075e+06 399.86 NULL
2022 Department Of Transportation Bricklayer NA NA 270420.35 2.253503e+04 28145.360 3831.75 12 2.253503e+04 270420.35 NA NA NA NULL
2022 Department Of Transportation Bridge Operator 49188.61250 3.935089e+06 1028410.58 1.285513e+04 9047.350 24203.20 80 9.047350e+03 723788.00 4.963500e+06 4.658877e+06 304622.58 NULL
2022 Department Of Transportation Bridge Painter NA NA 412683.97 9.597302e+03 11476.820 3727.75 43 9.597302e+03 412683.97 NA NA NA NULL
2022 Department Of Transportation Bridge Repairer And Riveter NA NA 1101716.40 2.824914e+04 23588.810 16527.00 39 2.358881e+04 919963.59 NA NA NA NULL
2022 Department Of Transportation Captain 70926.00000 1.702224e+06 1201084.78 5.004520e+04 50761.040 19260.50 24 5.004520e+04 1201084.78 2.903309e+06 2.903309e+06 0.00 NULL
2022 Department Of Transportation Carpenter NA NA 476669.84 2.648166e+04 25557.830 6188.25 18 2.555783e+04 460040.94 NA NA NA NULL
2022 Department Of Transportation Cement Mason NA NA 1290402.75 4.608581e+04 47811.400 13413.75 28 4.608581e+04 1290402.75 NA NA NA NULL
2022 Department Of Transportation Certified It Administrator 120147.75000 1.441773e+06 230692.79 1.922440e+04 19537.140 2752.25 12 1.922440e+04 230692.79 1.672466e+06 1.672466e+06 0.00 NULL
2022 Department Of Transportation Certified It Developer 117423.66667 1.409084e+06 58392.34 4.866028e+03 38.965 680.75 12 3.896500e+01 467.58 1.467476e+06 1.409552e+06 57924.76 NULL
2022 Department Of Transportation Chief Marine Engineer 68789.00000 1.719725e+06 1434457.70 5.737831e+04 59542.560 23750.00 25 5.737831e+04 1434457.70 3.154183e+06 3.154183e+06 0.00 NULL
2022 Department Of Transportation City Attendant 40898.67585 1.145163e+06 162101.66 5.789345e+03 2877.755 5298.00 28 2.877755e+03 80577.14 1.307265e+06 1.225740e+06 81524.52 NULL
2022 Department Of Transportation City Custodial Assistant 40259.28140 1.207778e+05 57.79 1.926333e+01 21.390 0.00 3 1.926333e+01 57.79 1.208356e+05 1.208356e+05 0.00 NULL
2022 Department Of Transportation City Debris Remover 43156.00000 1.726240e+05 38856.74 9.714185e+03 9962.140 1181.50 4 9.714185e+03 38856.74 2.114807e+05 2.114807e+05 0.00 NULL
2022 Department Of Transportation City Laborer NA NA 546718.41 2.102763e+04 20544.720 9636.25 26 2.054472e+04 534162.72 NA NA NA NULL
2022 Department Of Transportation City Parking Equipment Service Worker 42250.83146 3.760324e+06 291190.21 3.271800e+03 2400.660 8473.67 89 2.400660e+03 213658.74 4.051514e+06 3.973983e+06 77531.47 NULL
2022 Department Of Transportation City Planner 87341.05000 6.987284e+06 285721.73 3.571522e+03 92.760 4836.25 80 9.276000e+01 7420.80 7.273006e+06 6.994705e+06 278300.93 NULL
2022 Department Of Transportation City Research Scientist 90582.38462 1.177571e+06 20349.68 1.565360e+03 0.000 402.25 13 0.000000e+00 0.00 1.197921e+06 1.177571e+06 20349.68 NULL
2022 Department Of Transportation City Tax Auditor 59527.00000 1.785810e+05 3474.55 1.158183e+03 0.000 76.50 3 0.000000e+00 0.00 1.820555e+05 1.785810e+05 3474.55 NULL
2022 Department Of Transportation Civil Engineer 103834.95238 4.361068e+06 151325.80 3.602995e+03 0.000 2129.75 42 0.000000e+00 0.00 4.512394e+06 4.361068e+06 151325.80 NULL
2022 Department Of Transportation Civil Engineering Intern 57796.88889 1.040344e+06 46077.55 2.559864e+03 28.140 1287.75 18 2.814000e+01 506.52 1.086422e+06 1.040851e+06 45571.03 NULL
2022 Department Of Transportation Claim Specialist 58227.57812 1.164552e+05 10782.73 5.391365e+03 5391.365 290.50 2 5.391365e+03 10782.73 1.272379e+05 1.272379e+05 0.00 NULL
2022 Department Of Transportation Clerical Aide 41086.00000 4.108600e+04 1607.67 1.607670e+03 1607.670 55.50 1 1.607670e+03 1607.67 4.269367e+04 4.269367e+04 0.00 NULL
2022 Department Of Transportation Clerical Associate 47762.10244 1.280024e+07 690786.95 2.577563e+03 332.920 20242.30 268 3.329200e+02 89222.56 1.349103e+07 1.288947e+07 601564.39 NULL
2022 Department Of Transportation Climber & Pruner 69277.00000 2.078310e+05 19298.78 6.432927e+03 859.460 348.00 3 8.594600e+02 2578.38 2.271298e+05 2.104094e+05 16720.40 NULL
2022 Department Of Transportation College Aide 7631.96720 7.708287e+05 0.00 0.000000e+00 0.000 0.00 101 0.000000e+00 0.00 7.708287e+05 7.708287e+05 0.00 NULL
2022 Department Of Transportation College Aide - Assignment Levels Ii And Iii 10311.55453 2.165426e+05 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 2.165426e+05 2.165426e+05 0.00 NULL
2022 Department Of Transportation Commissioner Of Transportation 243171.00000 4.863420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863420e+05 4.863420e+05 0.00 NULL
2022 Department Of Transportation Community Assistant 40706.34867 6.105952e+05 34259.87 2.283991e+03 878.550 1176.00 15 8.785500e+02 13178.25 6.448551e+05 6.237735e+05 21081.62 NULL
2022 Department Of Transportation Community Associate 48956.74309 1.615573e+06 31575.87 9.568445e+02 0.000 974.75 33 0.000000e+00 0.00 1.647148e+06 1.615573e+06 31575.87 NULL
2022 Department Of Transportation Community Coordinator 68807.85373 6.880785e+06 254628.92 2.546289e+03 996.355 5659.25 100 9.963550e+02 99635.50 7.135414e+06 6.980421e+06 154993.42 NULL
2022 Department Of Transportation Community Service Aide 32217.65010 3.221765e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.221765e+04 3.221765e+04 0.00 NULL
2022 Department Of Transportation Computer Aide-Non-Spvr 53126.50000 1.062530e+05 9933.83 4.966915e+03 4966.915 293.25 2 4.966915e+03 9933.83 1.161868e+05 1.161868e+05 0.00 NULL
2022 Department Of Transportation Computer Associate 73897.84789 1.404059e+06 94644.84 4.981307e+03 3480.490 1942.42 19 3.480490e+03 66129.31 1.498704e+06 1.470188e+06 28515.53 NULL
2022 Department Of Transportation Computer Specialist 106959.30435 2.460064e+06 127602.60 5.547939e+03 0.000 1497.00 23 0.000000e+00 0.00 2.587667e+06 2.460064e+06 127602.60 NULL
2022 Department Of Transportation Computer Systems Manager 158680.61538 2.062848e+06 9514.52 7.318862e+02 0.000 154.75 13 0.000000e+00 0.00 2.072363e+06 2.062848e+06 9514.52 NULL
2022 Department Of Transportation Confidential Strategy Planner 91508.89117 1.464142e+06 26223.86 1.638991e+03 850.710 416.75 16 8.507100e+02 13611.36 1.490366e+06 1.477754e+06 12612.50 NULL
2022 Department Of Transportation Construction Project Manager 87281.90000 2.618457e+06 272631.92 9.087731e+03 2567.020 4384.75 30 2.567020e+03 77010.60 2.891089e+06 2.695468e+06 195621.32 NULL
2022 Department Of Transportation Counsel 237401.00000 2.374010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.374010e+05 2.374010e+05 0.00 NULL
2022 Department Of Transportation Crane Operator Ampes NA NA 544724.17 9.078736e+04 89461.395 4012.75 6 8.946140e+04 536768.37 NA NA NA NULL
2022 Department Of Transportation Customer Information Representative Ma L 1549 57010.56806 5.130951e+05 36784.97 4.087219e+03 1323.160 1150.00 9 1.323160e+03 11908.44 5.498801e+05 5.250036e+05 24876.53 NULL
2022 Department Of Transportation Cyber Security Analyst 72666.50000 2.906660e+05 20715.58 5.178895e+03 21.560 480.50 4 2.156000e+01 86.24 3.113816e+05 2.907522e+05 20629.34 NULL
2022 Department Of Transportation Deckhand 57587.86090 1.531837e+07 6521401.40 2.451655e+04 22716.455 126177.75 266 2.271646e+04 6042577.03 2.183977e+07 2.136095e+07 478824.37 NULL
2022 Department Of Transportation Deputy Commissioner 216628.80000 1.083144e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.083144e+06 1.083144e+06 0.00 NULL
2022 Department Of Transportation Deputy Director 148574.00000 2.971480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.971480e+05 2.971480e+05 0.00 NULL
2022 Department Of Transportation Dockbuilder NA NA 302054.69 2.157533e+04 19295.165 3902.00 14 1.929517e+04 270132.31 NA NA NA NULL
2022 Department Of Transportation Economist 72235.78571 1.011301e+06 752.31 5.373643e+01 0.000 17.75 14 0.000000e+00 0.00 1.012053e+06 1.011301e+06 752.31 NULL
2022 Department Of Transportation Electrical Engineering Intern 62260.00000 1.867800e+05 10926.47 3.642157e+03 0.000 271.25 3 0.000000e+00 0.00 1.977065e+05 1.867800e+05 10926.47 NULL
2022 Department Of Transportation Electrician NA NA 2901614.15 3.672929e+04 37442.420 30985.00 79 3.672929e+04 2901614.15 NA NA NA NULL
2022 Department Of Transportation Electricians Helper NA NA 98682.46 3.289415e+04 38866.190 1656.00 3 3.289415e+04 98682.46 NA NA NA NULL
2022 Department Of Transportation Engineering Technician 62080.50000 3.724830e+05 60305.09 1.005085e+04 9176.985 1438.77 6 9.176985e+03 55061.91 4.327881e+05 4.275449e+05 5243.18 NULL
2022 Department Of Transportation Executive Agency Counsel 161640.85714 2.262972e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.262972e+06 2.262972e+06 0.00 NULL
2022 Department Of Transportation Executive Program Specialist 163819.33333 4.914580e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.914580e+05 4.914580e+05 0.00 NULL
2022 Department Of Transportation Ferry Terminal Supervisor 80024.00000 1.360408e+06 425972.10 2.505718e+04 26083.670 7424.50 17 2.505718e+04 425972.10 1.786380e+06 1.786380e+06 0.00 NULL
2022 Department Of Transportation Gardener 59425.33333 1.782760e+05 20862.22 6.954073e+03 7446.860 500.00 3 6.954073e+03 20862.22 1.991382e+05 1.991382e+05 0.00 NULL
2022 Department Of Transportation Gasoline Roller Engineer-L15 NA NA 2042014.37 2.320471e+04 18237.620 20185.75 88 1.823762e+04 1604910.56 NA NA NA NULL
2022 Department Of Transportation Graphic Artist 71910.25000 2.876410e+05 2538.46 6.346150e+02 542.350 56.25 4 5.423500e+02 2169.40 2.901795e+05 2.898104e+05 369.06 NULL
2022 Department Of Transportation High Pressure Plant Tender NA NA 392262.00 5.603743e+04 62011.800 6955.00 7 5.603743e+04 392262.00 NA NA NA NULL
2022 Department Of Transportation Highway Repairer NA NA 8158156.28 1.685569e+04 13793.750 113782.00 484 1.379375e+04 6676175.00 NA NA NA NULL
2022 Department Of Transportation Highways And Sewers Inspector 67617.82000 6.761782e+06 904537.94 9.045379e+03 3783.495 17834.25 100 3.783495e+03 378349.50 7.666320e+06 7.140132e+06 526188.44 NULL
2022 Department Of Transportation Industrial Hygienist 67357.71429 4.715040e+05 18315.16 2.616451e+03 0.000 451.25 7 0.000000e+00 0.00 4.898192e+05 4.715040e+05 18315.16 NULL
2022 Department Of Transportation Investigator 51537.81818 5.669160e+05 26759.14 2.432649e+03 245.300 668.25 11 2.453000e+02 2698.30 5.936751e+05 5.696143e+05 24060.84 NULL
2022 Department Of Transportation It Automation And Monitoring Engineer 108000.00000 5.400000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.400000e+05 5.400000e+05 0.00 NULL
2022 Department Of Transportation It Project Specialist 111805.80000 1.118058e+06 65476.96 6.547696e+03 607.790 806.50 10 6.077900e+02 6077.90 1.183535e+06 1.124136e+06 59399.06 NULL
2022 Department Of Transportation It Service Management Specialist 122500.00000 2.450000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.450000e+05 2.450000e+05 0.00 NULL
2022 Department Of Transportation Landmarks Preservationist 80340.00000 8.034000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.034000e+04 8.034000e+04 0.00 NULL
2022 Department Of Transportation Letterer And Sign Painter NA NA 101488.75 1.014888e+04 9660.670 2157.25 10 9.660670e+03 96606.70 NA NA NA NULL
2022 Department Of Transportation Machinist NA NA 269464.17 4.491069e+04 50069.445 4204.00 6 4.491069e+04 269464.17 NA NA NA NULL
2022 Department Of Transportation Management Auditor 78913.52632 1.499357e+06 9016.03 4.745279e+02 0.000 167.75 19 0.000000e+00 0.00 1.508373e+06 1.499357e+06 9016.03 NULL
2022 Department Of Transportation Marine Electronics Technician 105839.00000 3.175170e+05 33451.95 1.115065e+04 8597.660 401.25 3 8.597660e+03 25792.98 3.509690e+05 3.433100e+05 7658.97 NULL
2022 Department Of Transportation Marine Engineer 63963.06250 1.023409e+06 789433.92 4.933962e+04 53105.320 13911.00 16 4.933962e+04 789433.92 1.812843e+06 1.812843e+06 0.00 NULL
2022 Department Of Transportation Marine Oiler 61555.00000 3.508635e+06 2751705.79 4.827554e+04 46550.960 50778.25 57 4.655096e+04 2653404.72 6.260341e+06 6.162040e+06 98301.07 NULL
2022 Department Of Transportation Masons Helper NA NA 805.80 8.058000e+02 805.800 20.00 1 8.058000e+02 805.80 NA NA NA NULL
2022 Department Of Transportation Mate 57875.00000 3.704000e+06 2325589.40 3.633733e+04 37693.300 45386.25 64 3.633733e+04 2325589.40 6.029589e+06 6.029589e+06 0.00 NULL
2022 Department Of Transportation Mechanical Engineer 110408.00000 2.208160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.208160e+05 2.208160e+05 0.00 NULL
2022 Department Of Transportation Mechanical Engineering Intern 62260.00000 6.226000e+04 3674.38 3.674380e+03 3674.380 80.00 1 3.674380e+03 3674.38 6.593438e+04 6.593438e+04 0.00 NULL
2022 Department Of Transportation Motor Grader Operator NA NA 684414.89 2.281383e+04 20868.250 7484.00 30 2.086825e+04 626047.50 NA NA NA NULL
2022 Department Of Transportation Motor Vehicle Operator 49500.50000 9.900100e+04 3399.37 1.699685e+03 1699.685 94.00 2 1.699685e+03 3399.37 1.024004e+05 1.024004e+05 0.00 NULL
2022 Department Of Transportation New York City Public Service Fellow 46350.00000 4.635000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.635000e+04 4.635000e+04 0.00 NULL
2022 Department Of Transportation Office Machine Aide 38781.75000 3.102540e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 3.102540e+05 3.102540e+05 0.00 NULL
2022 Department Of Transportation Oiler NA NA 568188.30 2.840942e+04 16442.495 6348.75 20 1.644249e+04 328849.90 NA NA NA NULL
2022 Department Of Transportation Operations Communications Specialist 48422.00000 6.779080e+05 56266.12 4.019009e+03 2741.040 1507.25 14 2.741040e+03 38374.56 7.341741e+05 7.162826e+05 17891.56 NULL
2022 Department Of Transportation Painter NA NA 111494.49 1.858242e+04 22023.540 1502.25 6 1.858242e+04 111494.49 NA NA NA NULL
2022 Department Of Transportation Paralegal Aide 49677.00000 4.967700e+04 28.52 2.852000e+01 28.520 0.00 1 2.852000e+01 28.52 4.970552e+04 4.970552e+04 0.00 NULL
2022 Department Of Transportation Plumber NA NA 391618.26 3.916183e+04 42931.480 3709.50 10 3.916183e+04 391618.26 NA NA NA NULL
2022 Department Of Transportation Principal Administrative Associate - Non Supvr 63241.63372 1.239536e+07 525264.69 2.679922e+03 0.000 12920.75 196 0.000000e+00 0.00 1.292062e+07 1.239536e+07 525264.69 NULL
2022 Department Of Transportation Procurement Analyst 66279.87254 1.922116e+06 80320.84 2.769684e+03 0.000 1818.75 29 0.000000e+00 0.00 2.002437e+06 1.922116e+06 80320.84 NULL
2022 Department Of Transportation Project Manager 73464.76923 9.550420e+05 88679.47 6.821498e+03 3625.010 1763.25 13 3.625010e+03 47125.13 1.043721e+06 1.002167e+06 41554.34 NULL
2022 Department Of Transportation Project Manager Intern# 56688.33333 1.700650e+05 7736.34 2.578780e+03 2778.410 231.25 3 2.578780e+03 7736.34 1.778013e+05 1.778013e+05 0.00 NULL
2022 Department Of Transportation Public Records Aide 42078.85528 2.524731e+05 2171.63 3.619383e+02 0.000 84.75 6 0.000000e+00 0.00 2.546448e+05 2.524731e+05 2171.63 NULL
2022 Department Of Transportation Public Records Officer 50706.00000 5.070600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.070600e+04 5.070600e+04 0.00 NULL
2022 Department Of Transportation Quality Assurance Specialist 56894.73571 3.982632e+05 81417.52 1.163107e+04 13879.010 2211.75 7 1.163107e+04 81417.52 4.796807e+05 4.796807e+05 0.00 NULL
2022 Department Of Transportation Radio Repair Mechanic NA NA 9487.82 3.162607e+03 2253.360 120.00 3 2.253360e+03 6760.08 NA NA NA NULL
2022 Department Of Transportation Research Assistant 56710.60640 4.536849e+05 22979.27 2.872409e+03 0.245 546.00 8 2.450000e-01 1.96 4.766641e+05 4.536868e+05 22977.31 NULL
2022 Department Of Transportation Rigger NA NA 217650.80 4.353016e+04 48032.920 2670.50 5 4.353016e+04 217650.80 NA NA NA NULL
2022 Department Of Transportation Roofer NA NA 19407.09 1.940709e+04 19407.090 376.50 1 1.940709e+04 19407.09 NA NA NA NULL
2022 Department Of Transportation Rubber Tire Repairer NA NA 33193.70 1.106457e+04 13875.440 727.50 3 1.106457e+04 33193.70 NA NA NA NULL
2022 Department Of Transportation Secretary 44029.46707 5.283536e+05 805.09 6.709083e+01 0.000 23.75 12 0.000000e+00 0.00 5.291587e+05 5.283536e+05 805.09 NULL
2022 Department Of Transportation Secretary Of Comm 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2022 Department Of Transportation Secretary To The Deputy Commissioner 50562.00000 1.516860e+05 1937.20 6.457333e+02 283.660 61.00 3 2.836600e+02 850.98 1.536232e+05 1.525370e+05 1086.22 NULL
2022 Department Of Transportation Senior It Architect 153333.33333 4.600000e+05 1256.17 4.187233e+02 0.000 13.50 3 0.000000e+00 0.00 4.612562e+05 4.600000e+05 1256.17 NULL
2022 Department Of Transportation Senior Photographer 76910.00000 7.691000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.691000e+04 7.691000e+04 0.00 NULL
2022 Department Of Transportation Senior Service Inspector 55131.00000 5.513100e+04 11267.50 1.126750e+04 11267.500 295.00 1 1.126750e+04 11267.50 6.639850e+04 6.639850e+04 0.00 NULL
2022 Department Of Transportation Service Inspector 40885.80000 2.044290e+05 3274.79 6.549580e+02 139.860 131.50 5 1.398600e+02 699.30 2.077038e+05 2.051283e+05 2575.49 NULL
2022 Department Of Transportation Sheet Metal Worker NA NA 131999.68 4.399989e+04 51954.240 1141.25 3 4.399989e+04 131999.68 NA NA NA NULL
2022 Department Of Transportation Ship Carpenter NA NA 179677.84 3.593557e+04 34140.850 2188.00 5 3.414085e+04 170704.25 NA NA NA NULL
2022 Department Of Transportation Space Analyst 83430.00000 8.343000e+04 68.92 6.892000e+01 68.920 1.50 1 6.892000e+01 68.92 8.349892e+04 8.349892e+04 0.00 NULL
2022 Department Of Transportation Staff Analyst 65884.13333 1.976524e+06 58137.39 1.937913e+03 14.595 1111.25 30 1.459500e+01 437.85 2.034661e+06 1.976962e+06 57699.54 NULL
2022 Department Of Transportation Staff Analyst Trainee 51860.50000 1.037210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.037210e+05 1.037210e+05 0.00 NULL
2022 Department Of Transportation Stationary Engineer NA NA 110234.47 5.511724e+04 55117.235 1196.75 2 5.511724e+04 110234.47 NA NA NA NULL
2022 Department Of Transportation Steam Fitter NA NA 331164.16 2.365458e+04 25141.875 3015.25 14 2.365458e+04 331164.16 NA NA NA NULL
2022 Department Of Transportation Stock Worker 40850.05000 8.170010e+05 94990.91 4.749546e+03 2311.060 3139.25 20 2.311060e+03 46221.20 9.119919e+05 8.632222e+05 48769.71 NULL
2022 Department Of Transportation Strategic Initiative Specialist 125529.76923 1.631887e+06 15785.10 1.214238e+03 0.000 212.75 13 0.000000e+00 0.00 1.647672e+06 1.631887e+06 15785.10 NULL
2022 Department Of Transportation Summer College Intern 2760.31111 2.484280e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 2.484280e+04 2.484280e+04 0.00 NULL
2022 Department Of Transportation Summer Graduate Intern 3726.13125 1.490452e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.490452e+04 1.490452e+04 0.00 NULL
2022 Department Of Transportation Supervising Special Officer 61728.33333 5.555550e+05 123347.82 1.370531e+04 14110.760 2759.25 9 1.370531e+04 123347.82 6.789028e+05 6.789028e+05 0.00 NULL
2022 Department Of Transportation Supervisor 78404.00000 7.840400e+04 5812.78 5.812780e+03 5812.780 97.00 1 5.812780e+03 5812.78 8.421678e+04 8.421678e+04 0.00 NULL
2022 Department Of Transportation Supervisor Boiler Maker NA NA 89823.54 4.491177e+04 44911.770 604.50 2 4.491177e+04 89823.54 NA NA NA NULL
2022 Department Of Transportation Supervisor Bricklayer NA NA 162145.51 5.404850e+04 71561.930 1968.00 3 5.404850e+04 162145.51 NA NA NA NULL
2022 Department Of Transportation Supervisor Bridge Painter NA NA 148101.56 1.346378e+04 12128.800 1188.00 11 1.212880e+04 133416.80 NA NA NA NULL
2022 Department Of Transportation Supervisor Bridge Repairer And Riveter NA NA 60815.01 2.027167e+04 11467.290 941.25 3 1.146729e+04 34401.87 NA NA NA NULL
2022 Department Of Transportation Supervisor Carpenter NA NA 108395.70 2.709892e+04 29028.350 1428.50 4 2.709892e+04 108395.70 NA NA NA NULL
2022 Department Of Transportation Supervisor Dockbuilder NA NA 56220.55 5.622055e+04 56220.550 715.25 1 5.622055e+04 56220.55 NA NA NA NULL
2022 Department Of Transportation Supervisor Electrician NA NA 1084176.18 7.227841e+04 74861.660 10764.25 15 7.227841e+04 1084176.18 NA NA NA NULL
2022 Department Of Transportation Supervisor Highway Repairer NA NA 5065660.18 2.814256e+04 23624.150 63909.50 180 2.362415e+04 4252347.00 NA NA NA NULL
2022 Department Of Transportation Supervisor Of Electrical Installations & Maintenance 71891.39024 2.947547e+06 649472.13 1.584078e+04 9630.720 11629.75 41 9.630720e+03 394859.52 3.597019e+06 3.342407e+06 254612.61 NULL
2022 Department Of Transportation Supervisor Of Mechanics NA NA 889778.88 2.965930e+04 25114.025 10002.38 30 2.511403e+04 753420.75 NA NA NA NULL
2022 Department Of Transportation Supervisor Of Office Machine Operations 50495.50000 1.009910e+05 242.11 1.210550e+02 121.055 8.25 2 1.210550e+02 242.11 1.012331e+05 1.012331e+05 0.00 NULL
2022 Department Of Transportation Supervisor Of Stock Workers 55280.50000 3.316830e+05 43601.04 7.266840e+03 5750.975 1142.25 6 5.750975e+03 34505.85 3.752840e+05 3.661888e+05 9095.19 NULL
2022 Department Of Transportation Supervisor Of Traffic Device Maintainers 80471.85294 2.736043e+06 877473.02 2.580803e+04 33424.190 11545.52 34 2.580803e+04 877473.02 3.613516e+06 3.613516e+06 0.00 NULL
2022 Department Of Transportation Supervisor Of Traffic Device Maintainers Level 1 Only 71287.61364 3.136655e+06 742437.21 1.687357e+04 15867.115 13094.97 44 1.586711e+04 698153.06 3.879092e+06 3.834808e+06 44284.15 NULL
2022 Department Of Transportation Supervisor Painter NA NA 47137.90 2.356895e+04 23568.950 476.75 2 2.356895e+04 47137.90 NA NA NA NULL
2022 Department Of Transportation Supervisor Plumber NA NA 121293.31 6.064665e+04 60646.655 1108.00 2 6.064665e+04 121293.31 NA NA NA NULL
2022 Department Of Transportation Supervisor Sheet Metal Worker NA NA 90932.31 9.093231e+04 90932.310 743.50 1 9.093231e+04 90932.31 NA NA NA NULL
2022 Department Of Transportation Supervisor Ship Carpenter NA NA 15279.20 1.527920e+04 15279.200 174.00 1 1.527920e+04 15279.20 NA NA NA NULL
2022 Department Of Transportation Supervisor Steamfitter NA NA 86383.50 8.638350e+04 86383.500 757.75 1 8.638350e+04 86383.50 NA NA NA NULL
2022 Department Of Transportation Telecommunications Associate 82856.69339 1.491420e+06 358644.49 1.992469e+04 7805.120 5236.40 18 7.805120e+03 140492.16 1.850065e+06 1.631913e+06 218152.33 NULL
2022 Department Of Transportation Tractor Operator NA NA 1115828.47 4.851428e+04 43335.140 9256.75 23 4.333514e+04 996708.22 NA NA NA NULL
2022 Department Of Transportation Traffic Control Inspector 56033.50538 5.211116e+06 448751.91 4.825289e+03 2154.930 11476.50 93 2.154930e+03 200408.49 5.659868e+06 5.411524e+06 248343.42 NULL
2022 Department Of Transportation Traffic Device Maintainer 63251.17597 1.473752e+07 2283681.80 9.801209e+03 7776.650 48026.47 233 7.776650e+03 1811959.45 1.702121e+07 1.654948e+07 471722.35 NULL
2022 Department Of Transportation Transportation Specialist 80704.20635 1.525310e+07 1136708.10 6.014329e+03 1686.860 20005.00 189 1.686860e+03 318816.54 1.638980e+07 1.557191e+07 817891.56 NULL
2022 Department Of Transportation Welder NA NA 53560.18 2.678009e+04 26780.090 467.50 2 2.678009e+04 53560.18 NA NA NA NULL
2022 Department Of Transportation Worker’s Compensation Benefits Examiner 74000.00000 7.400000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.400000e+04 7.400000e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs *Custodial Assistant 38672.50000 7.734500e+04 20485.66 1.024283e+04 10242.830 654.00 2 1.024283e+04 20485.66 9.783066e+04 9.783066e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs *Senior Estimator 98128.00000 9.812800e+04 107.97 1.079700e+02 107.970 2.00 1 1.079700e+02 107.97 9.823597e+04 9.823597e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Accountant 69165.70000 6.916570e+05 446.50 4.465000e+01 0.000 12.00 10 0.000000e+00 0.00 6.921035e+05 6.916570e+05 446.50 NULL
2022 Dept Of Citywide Admin Svcs Adm Manager-Non-Mgrl 88398.99153 5.215540e+06 34957.46 5.924993e+02 0.000 625.00 59 0.000000e+00 0.00 5.250498e+06 5.215540e+06 34957.46 NULL
2022 Dept Of Citywide Admin Svcs Admin Community Relations Specialist 88058.33333 5.283500e+05 6008.65 1.001442e+03 0.000 100.50 6 0.000000e+00 0.00 5.343587e+05 5.283500e+05 6008.65 NULL
2022 Dept Of Citywide Admin Svcs Admin Construction Project Manager 104862.66667 9.437640e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.437640e+05 9.437640e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Admin Contract Specialist 115849.00000 1.158490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.158490e+05 1.158490e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Admin Inspector 129229.00000 1.292290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.292290e+05 1.292290e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Admin Tests & Meas Spec 111716.00000 1.117160e+05 190.49 1.904900e+02 190.490 0.00 1 1.904900e+02 190.49 1.119065e+05 1.119065e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Administrative Accountant 99694.40000 4.984720e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.984720e+05 4.984720e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Administrative Architect 124910.83333 7.494650e+05 4224.88 7.041467e+02 0.000 60.00 6 0.000000e+00 0.00 7.536899e+05 7.494650e+05 4224.88 NULL
2022 Dept Of Citywide Admin Svcs Administrative Business Promotion Coordinator 132542.00000 1.457962e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.457962e+06 1.457962e+06 0.00 NULL
2022 Dept Of Citywide Admin Svcs Administrative City Planner 117438.50000 9.395080e+05 0.29 3.625000e-02 0.000 0.00 8 0.000000e+00 0.00 9.395083e+05 9.395080e+05 0.29 NULL
2022 Dept Of Citywide Admin Svcs Administrative Community Relations Specialist 167291.50000 1.003749e+06 404.60 6.743333e+01 0.000 0.00 6 0.000000e+00 0.00 1.004154e+06 1.003749e+06 404.60 NULL
2022 Dept Of Citywide Admin Svcs Administrative Construction Project Manager 111244.20000 5.562210e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.562210e+05 5.562210e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Administrative Engineer 140702.76923 1.829136e+06 3758.01 2.890777e+02 0.000 38.00 13 0.000000e+00 0.00 1.832894e+06 1.829136e+06 3758.01 NULL
2022 Dept Of Citywide Admin Svcs Administrative Graphic Artist 100328.00000 2.006560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.006560e+05 2.006560e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Administrative Inspector 118340.00000 1.183400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.183400e+05 1.183400e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Administrative Investigator 78147.00000 1.562940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.562940e+05 1.562940e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Administrative Management Auditor 120309.00000 1.203090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.203090e+05 1.203090e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Administrative Manager 136591.87500 1.092735e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.092735e+06 1.092735e+06 0.00 NULL
2022 Dept Of Citywide Admin Svcs Administrative Printing Services Manager 100666.00000 1.006660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.006660e+05 1.006660e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Administrative Procurement Analyst 91457.00000 9.145700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.145700e+04 9.145700e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Administrative Procurement Analyst-Non-Mgrl 98502.37500 1.576038e+06 6.06 3.787500e-01 0.000 0.00 16 0.000000e+00 0.00 1.576044e+06 1.576038e+06 6.06 NULL
2022 Dept Of Citywide Admin Svcs Administrative Project Manager 126672.62250 2.026762e+06 4964.16 3.102600e+02 0.000 57.75 16 0.000000e+00 0.00 2.031726e+06 2.026762e+06 4964.16 NULL
2022 Dept Of Citywide Admin Svcs Administrative Public Information Specialist 125000.00000 2.500000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.500000e+05 2.500000e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Administrative Public Information Specialist Nm Former M1/M2 107742.00000 1.077420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.077420e+05 1.077420e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Administrative Quality Assurance Specialist 87768.81250 1.404301e+06 98133.41 6.133338e+03 2972.425 1918.25 16 2.972425e+03 47558.80 1.502434e+06 1.451860e+06 50574.61 NULL
2022 Dept Of Citywide Admin Svcs Administrative Real Property Manager 108000.00000 4.320000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.320000e+05 4.320000e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Administrative Space Analyst 121838.00000 8.528660e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.528660e+05 8.528660e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Administrative Staff Analyst 114422.00000 1.373064e+07 59823.07 4.985256e+02 0.000 759.75 120 0.000000e+00 0.00 1.379046e+07 1.373064e+07 59823.07 NULL
2022 Dept Of Citywide Admin Svcs Administrative Supervisor Of Building Maintenance 107331.66667 3.219950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.219950e+05 3.219950e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Agency Attorney 103935.48125 3.325935e+06 2268.95 7.090469e+01 0.000 34.75 32 0.000000e+00 0.00 3.328204e+06 3.325935e+06 2268.95 NULL
2022 Dept Of Citywide Admin Svcs Agency Attorney Interne 62397.00000 6.239700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.239700e+04 6.239700e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Appraiser 102101.40000 5.105070e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.105070e+05 5.105070e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Architect 98546.53333 1.478198e+06 2284.16 1.522773e+02 0.000 38.50 15 0.000000e+00 0.00 1.480482e+06 1.478198e+06 2284.16 NULL
2022 Dept Of Citywide Admin Svcs Asbestos Handler 83206.00000 3.328240e+05 99353.81 2.483845e+04 25633.145 1648.00 4 2.483845e+04 99353.81 4.321778e+05 4.321778e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Assistant Architect 77148.33333 4.628900e+05 13084.46 2.180743e+03 0.000 220.50 6 0.000000e+00 0.00 4.759745e+05 4.628900e+05 13084.46 NULL
2022 Dept Of Citywide Admin Svcs Assistant Civil Engineer 85847.00000 8.584700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.584700e+04 8.584700e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Assistant Commissioner 177053.50000 1.062321e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.062321e+06 1.062321e+06 0.00 NULL
2022 Dept Of Citywide Admin Svcs Assistant Electrical Engineer 68539.00000 1.370780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.370780e+05 1.370780e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Assistant Landscape Architect 75651.00000 7.565100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.565100e+04 7.565100e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Assistant Mechanical Engineer 80097.00000 3.203880e+05 1076.31 2.690775e+02 256.515 20.75 4 2.565150e+02 1026.06 3.214643e+05 3.214141e+05 50.25 NULL
2022 Dept Of Citywide Admin Svcs Assistant Printing Press Operator 65039.00000 6.503900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.503900e+04 6.503900e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Associate Chemist 88120.00000 8.812000e+04 472.28 4.722800e+02 472.280 10.00 1 4.722800e+02 472.28 8.859228e+04 8.859228e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Associate Investigator 60823.20000 3.041160e+05 6309.82 1.261964e+03 0.000 189.50 5 0.000000e+00 0.00 3.104258e+05 3.041160e+05 6309.82 NULL
2022 Dept Of Citywide Admin Svcs Associate Project Manager 96891.14286 1.356476e+06 2569.36 1.835257e+02 0.000 44.25 14 0.000000e+00 0.00 1.359045e+06 1.356476e+06 2569.36 NULL
2022 Dept Of Citywide Admin Svcs Associate Quality Assurance Specialist 85405.00000 8.540500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.540500e+04 8.540500e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Associate Real Property Manager 67559.75000 2.702390e+05 11523.69 2.880923e+03 83.825 246.75 4 8.382500e+01 335.30 2.817627e+05 2.705743e+05 11188.39 NULL
2022 Dept Of Citywide Admin Svcs Associate Staff Analyst 88062.84375 2.818011e+06 11423.54 3.569856e+02 0.000 137.75 32 0.000000e+00 0.00 2.829435e+06 2.818011e+06 11423.54 NULL
2022 Dept Of Citywide Admin Svcs Auto Mechanic NA NA 15231.42 3.807855e+03 3846.375 233.00 4 3.807855e+03 15231.42 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Bookkeeper 54281.00000 1.085620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.085620e+05 1.085620e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Bricklayer NA NA 49481.39 4.948139e+04 49481.390 684.50 1 4.948139e+04 49481.39 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Business Promotion Coordinator 82591.25000 3.303650e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.303650e+05 3.303650e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Carpenter NA NA 566046.96 3.329688e+04 32241.790 7080.75 17 3.224179e+04 548110.43 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Cement Mason NA NA 80976.35 8.097635e+04 80976.350 841.75 1 8.097635e+04 80976.35 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Certified It Administrator 104269.50000 6.256170e+05 16828.18 2.804697e+03 0.415 268.75 6 4.150000e-01 2.49 6.424452e+05 6.256195e+05 16825.69 NULL
2022 Dept Of Citywide Admin Svcs Certified It Developer 118806.66667 1.069260e+06 24050.69 2.672299e+03 0.000 281.00 9 0.000000e+00 0.00 1.093311e+06 1.069260e+06 24050.69 NULL
2022 Dept Of Citywide Admin Svcs Chairman 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Chauffeur-Attendant 60361.81818 1.327960e+06 466267.43 2.119397e+04 19742.715 11749.50 22 1.974272e+04 434339.73 1.794227e+06 1.762300e+06 31927.70 NULL
2022 Dept Of Citywide Admin Svcs Chief Of Staff 225000.00000 2.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.250000e+05 2.250000e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs City Custodial Assistant 36543.56158 1.483669e+07 3663979.23 9.024579e+03 3723.160 132621.12 406 3.723160e+03 1511602.96 1.850067e+07 1.634829e+07 2152376.27 NULL
2022 Dept Of Citywide Admin Svcs City Laborer NA NA 271272.71 1.695454e+04 10696.130 4865.00 16 1.069613e+04 171138.08 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs City Planner 89425.85714 6.259810e+05 11.50 1.642857e+00 0.000 0.00 7 0.000000e+00 0.00 6.259925e+05 6.259810e+05 11.50 NULL
2022 Dept Of Citywide Admin Svcs City Research Scientist 83408.70588 1.417948e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.417948e+06 1.417948e+06 0.00 NULL
2022 Dept Of Citywide Admin Svcs City Security Aide 40212.90909 1.327026e+06 428497.29 1.298477e+04 7974.850 14280.50 33 7.974850e+03 263170.05 1.755523e+06 1.590196e+06 165327.24 NULL
2022 Dept Of Citywide Admin Svcs Clerical Associate 50565.18800 2.528259e+06 35184.34 7.036868e+02 0.000 1161.00 50 0.000000e+00 0.00 2.563444e+06 2.528259e+06 35184.34 NULL
2022 Dept Of Citywide Admin Svcs Clock Repairer 4790.90000 4.790900e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.790900e+03 4.790900e+03 0.00 NULL
2022 Dept Of Citywide Admin Svcs College Aide 8373.68500 2.177158e+05 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 2.177158e+05 2.177158e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Commissioner 179125.25000 7.165010e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.165010e+05 7.165010e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Commissioner Of Citywide Administrative Services 243171.00000 4.863420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863420e+05 4.863420e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Community Assistant 37197.88571 1.301926e+06 68621.29 1.960608e+03 67.100 2892.50 35 6.710000e+01 2348.50 1.370547e+06 1.304274e+06 66272.79 NULL
2022 Dept Of Citywide Admin Svcs Community Associate 53540.01194 3.587181e+06 253105.38 3.777692e+03 785.370 7159.00 67 7.853700e+02 52619.79 3.840286e+06 3.639801e+06 200485.59 NULL
2022 Dept Of Citywide Admin Svcs Community Coordinator 66719.64138 4.336777e+06 283584.42 4.362837e+03 0.000 5535.00 65 0.000000e+00 0.00 4.620361e+06 4.336777e+06 283584.42 NULL
2022 Dept Of Citywide Admin Svcs Community Service Aide 34762.00000 6.952400e+04 10801.07 5.400535e+03 5400.535 383.00 2 5.400535e+03 10801.07 8.032507e+04 8.032507e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Computer Associate 80879.07692 1.051428e+06 28580.63 2.198510e+03 0.000 466.50 13 0.000000e+00 0.00 1.080009e+06 1.051428e+06 28580.63 NULL
2022 Dept Of Citywide Admin Svcs Computer Operations Manager 114881.00000 3.446430e+05 20605.05 6.868350e+03 3970.860 272.75 3 3.970860e+03 11912.58 3.652480e+05 3.565556e+05 8692.47 NULL
2022 Dept Of Citywide Admin Svcs Computer Specialist 102807.08333 3.701055e+06 96836.25 2.689896e+03 0.000 1406.25 36 0.000000e+00 0.00 3.797891e+06 3.701055e+06 96836.25 NULL
2022 Dept Of Citywide Admin Svcs Computer Systems Manager 143335.11364 6.306745e+06 99358.64 2.258151e+03 0.000 1148.00 44 0.000000e+00 0.00 6.406104e+06 6.306745e+06 99358.64 NULL
2022 Dept Of Citywide Admin Svcs Confidential Strategy Planner 82789.95000 1.655799e+06 2598.98 1.299490e+02 0.000 34.25 20 0.000000e+00 0.00 1.658398e+06 1.655799e+06 2598.98 NULL
2022 Dept Of Citywide Admin Svcs Construction Project Manager 94197.33333 1.412960e+06 7757.28 5.171520e+02 0.000 122.00 15 0.000000e+00 0.00 1.420717e+06 1.412960e+06 7757.28 NULL
2022 Dept Of Citywide Admin Svcs Custodian 44755.31849 8.279734e+06 3445863.35 1.862629e+04 15546.720 106567.28 185 1.554672e+04 2876143.20 1.172560e+07 1.115588e+07 569720.15 NULL
2022 Dept Of Citywide Admin Svcs Deputy Assistant Commissioner 103227.62500 4.129105e+06 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 4.129105e+06 4.129105e+06 0.00 NULL
2022 Dept Of Citywide Admin Svcs Deputy Commissioner 225341.50000 4.506830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.506830e+05 4.506830e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Director Of Energy Conservation 213783.00000 2.137830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.137830e+05 2.137830e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Director Of Public Relations 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Director Of Stores 105115.00000 1.051150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.051150e+05 1.051150e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Director Of The City Record 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Director,Citywide Occupational Safety & Health Program 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Economist 64415.00000 6.441500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.441500e+04 6.441500e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Electrical Engineer 108150.00000 1.081500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081500e+05 1.081500e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Electrician NA NA 791377.35 2.728887e+04 801.720 8433.25 29 8.017200e+02 23249.88 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Elevator Mechanic NA NA 584043.81 1.717776e+04 14384.755 6469.58 34 1.438475e+04 489081.67 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Elevator Mechanic Helper NA NA -0.95 -4.750000e-01 -0.475 0.00 2 -4.750000e-01 -0.95 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Environmental Engineer 90114.00000 9.011400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.011400e+04 9.011400e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Estimator 87540.00000 8.754000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.754000e+04 8.754000e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Examining Attorney 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Exec Asst To The Deputy Com For Citywide Personnel Svcs-Dcas 113963.00000 1.139630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.139630e+05 1.139630e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Executive Agency Counsel 142929.90476 3.001528e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 3.001528e+06 3.001528e+06 0.00 NULL
2022 Dept Of Citywide Admin Svcs Executive Assistant To The Commissioner 74475.00000 7.447500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.447500e+04 7.447500e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Executive Program Specialist 135075.50000 2.701510e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.701510e+05 2.701510e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs General Counsel 213783.00000 2.137830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.137830e+05 2.137830e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Graphic Artist 72939.75000 2.917590e+05 10048.69 2.512173e+03 2056.435 199.25 4 2.056435e+03 8225.74 3.018077e+05 2.999847e+05 1822.95 NULL
2022 Dept Of Citywide Admin Svcs High Pressure Plant Tender NA NA 1039577.23 2.887715e+04 26898.100 18654.83 36 2.689810e+04 968331.60 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Industrial Hygienist 54499.00000 5.449900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.449900e+04 5.449900e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Investigator 44940.22222 4.044620e+05 2264.24 2.515822e+02 0.000 85.25 9 0.000000e+00 0.00 4.067262e+05 4.044620e+05 2264.24 NULL
2022 Dept Of Citywide Admin Svcs It Infrastructure Engineer 82400.00000 8.240000e+04 1319.22 1.319220e+03 1319.220 25.50 1 1.319220e+03 1319.22 8.371922e+04 8.371922e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs It Project Specialist 112500.00000 2.250000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.250000e+05 2.250000e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs It Service Management Specialist 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Job Training Participant 5142.85116 8.228562e+04 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 8.228562e+04 8.228562e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Landscape Architect 107221.00000 1.072210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.072210e+05 1.072210e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Locksmith NA NA 16751.35 1.675135e+04 16751.350 428.00 1 1.675135e+04 16751.35 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Machinist NA NA 54677.37 5.467737e+04 54677.370 882.25 1 5.467737e+04 54677.37 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Maintenance Worker NA NA 1081074.02 3.088783e+04 31054.850 23183.25 35 3.088783e+04 1081074.02 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Management Auditor 67707.00000 2.031210e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.031210e+05 2.031210e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Management Auditor Trainee 45428.00000 9.085600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.085600e+04 9.085600e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Mechanical Engineer 94446.66667 2.833400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.833400e+05 2.833400e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Media Services Technician 58300.00000 5.830000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.830000e+04 5.830000e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Motor Vehicle Supervisor 60090.50000 1.201810e+05 5150.77 2.575385e+03 2575.385 115.00 2 2.575385e+03 5150.77 1.253318e+05 1.253318e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs New York City Fellow 34803.86985 5.568619e+05 45.42 2.838750e+00 0.000 3.00 16 0.000000e+00 0.00 5.569073e+05 5.568619e+05 45.42 NULL
2022 Dept Of Citywide Admin Svcs New York City Public Service Fellow 46344.50000 9.268900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.268900e+04 9.268900e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs New York City Urban Fellow 20681.80186 9.099993e+05 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 9.099993e+05 9.099993e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Office Machine Aide 47233.00000 9.446600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.446600e+04 9.446600e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Oiler NA NA 1119673.30 3.998833e+04 36661.110 12536.25 28 3.666111e+04 1026511.08 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Painter NA NA 129593.00 1.851329e+04 8770.470 1597.00 7 8.770470e+03 61393.29 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Plasterer NA NA 189952.87 6.331762e+04 73337.190 2022.25 3 6.331762e+04 189952.87 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Plumber NA NA 867770.98 5.785140e+04 59573.530 8230.75 15 5.785140e+04 867770.98 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Principal Administrative Associate - Non Supvr 66133.88785 7.076326e+06 165388.71 1.545689e+03 0.000 3970.50 107 0.000000e+00 0.00 7.241715e+06 7.076326e+06 165388.71 NULL
2022 Dept Of Citywide Admin Svcs Procurement Analyst 71388.28125 2.284425e+06 2632.68 8.227125e+01 0.000 64.00 32 0.000000e+00 0.00 2.287058e+06 2.284425e+06 2632.68 NULL
2022 Dept Of Citywide Admin Svcs Project Manager 61800.00000 6.180000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.180000e+04 6.180000e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Public Records Officer 68613.00000 6.861300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.861300e+04 6.861300e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Quality Assurance Specialist 59980.45455 6.597850e+05 50853.83 4.623075e+03 3913.770 1307.00 11 3.913770e+03 43051.47 7.106388e+05 7.028365e+05 7802.36 NULL
2022 Dept Of Citywide Admin Svcs Radio And Television Operator 55824.00000 1.116480e+05 4037.90 2.018950e+03 2018.950 101.50 2 2.018950e+03 4037.90 1.156859e+05 1.156859e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Real Property Manager 51500.00000 5.150000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.150000e+04 5.150000e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Research Projects Coord 82275.55556 7.404800e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.404800e+05 7.404800e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Secretary 49014.77778 4.411330e+05 0.67 7.444440e-02 0.000 0.00 9 0.000000e+00 0.00 4.411337e+05 4.411330e+05 0.67 NULL
2022 Dept Of Citywide Admin Svcs Secretary Of Comm 66611.00000 6.661100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.661100e+04 6.661100e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Secretary To The Deputy Commissioner 96648.99500 1.932980e+05 5021.89 2.510945e+03 2510.945 80.00 2 2.510945e+03 5021.89 1.983199e+05 1.983199e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Senior Salvage Appraiser 77609.00000 7.760900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.760900e+04 7.760900e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Senior Stationary Engineer NA NA 1577668.63 6.310675e+04 58892.880 14537.00 25 5.889288e+04 1472322.00 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Sheet Metal Worker NA NA 93546.75 9.354675e+04 93546.750 834.00 1 9.354675e+04 93546.75 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Space Analyst 82763.33333 7.448700e+05 90.57 1.006333e+01 0.000 2.00 9 0.000000e+00 0.00 7.449606e+05 7.448700e+05 90.57 NULL
2022 Dept Of Citywide Admin Svcs Special Assistant To The First Deputy Commissioner 108000.00000 1.080000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.080000e+05 1.080000e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Special Examiner 8798.27785 1.759656e+05 123.87 6.193500e+00 0.000 5.25 20 0.000000e+00 0.00 1.760894e+05 1.759656e+05 123.87 NULL
2022 Dept Of Citywide Admin Svcs Special Officer 50207.00000 3.414076e+06 454845.45 6.688904e+03 5620.060 12672.58 68 5.620060e+03 382164.08 3.868921e+06 3.796240e+06 72681.37 NULL
2022 Dept Of Citywide Admin Svcs Staff Analyst 64954.50000 5.456178e+06 58047.61 6.910430e+02 6.680 1183.00 84 6.680000e+00 561.12 5.514226e+06 5.456739e+06 57486.49 NULL
2022 Dept Of Citywide Admin Svcs Staff Analyst Trainee 47061.00000 4.706100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.706100e+04 4.706100e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Stationary Engineer NA NA 6904564.43 6.452864e+04 66050.190 72171.25 107 6.452864e+04 6904564.43 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Statistician 74777.00000 7.477700e+04 2987.03 2.987030e+03 2987.030 67.75 1 2.987030e+03 2987.03 7.776403e+04 7.776403e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Steam Fitter NA NA 637501.34 5.795467e+04 56870.000 5798.75 11 5.687000e+04 625570.00 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Steam Fitter’s Helper NA NA 67732.50 6.773250e+04 67732.500 821.00 1 6.773250e+04 67732.50 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Stock Worker 38774.27273 4.265170e+05 11789.27 1.071752e+03 855.830 437.50 11 8.558300e+02 9414.13 4.383063e+05 4.359311e+05 2375.14 NULL
2022 Dept Of Citywide Admin Svcs Strategic Initiative Specialist 106949.25000 4.277970e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.277970e+05 4.277970e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Summer College Intern 2341.45833 4.214625e+04 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 4.214625e+04 4.214625e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Summer Graduate Intern 3068.56800 1.534284e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.534284e+04 1.534284e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Supervising Special Officer 65996.29630 1.781900e+06 368580.21 1.365112e+04 10544.590 7515.50 27 1.054459e+04 284703.93 2.150480e+06 2.066604e+06 83876.28 NULL
2022 Dept Of Citywide Admin Svcs Supervisor NA NA 108734.90 1.087349e+05 108734.900 1946.75 1 1.087349e+05 108734.90 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Supervisor Bricklayer NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Supervisor Carpenter NA NA 124562.40 4.152080e+04 54272.400 1548.75 3 4.152080e+04 124562.40 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Supervisor Electrician NA NA 162592.22 8.129611e+04 81296.110 1592.00 2 8.129611e+04 162592.22 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Supervisor Elevator Mechanic NA NA 223695.34 3.195648e+04 39133.000 2269.00 7 3.195648e+04 223695.34 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Supervisor Of Mechanics 121196.00000 1.211960e+05 11253.27 1.125327e+04 11253.270 129.25 1 1.125327e+04 11253.27 1.324493e+05 1.324493e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Supervisor Of Motor Transport 75000.00000 7.500000e+04 19053.70 1.905370e+04 19053.700 325.75 1 1.905370e+04 19053.70 9.405370e+04 9.405370e+04 0.00 NULL
2022 Dept Of Citywide Admin Svcs Supervisor Of Radio And Television Operators 87745.00000 1.754900e+05 31736.30 1.586815e+04 15868.150 523.00 2 1.586815e+04 31736.30 2.072263e+05 2.072263e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Supervisor Of Stock Workers 54312.77778 4.888150e+05 56184.57 6.242730e+03 5740.800 1397.00 9 5.740800e+03 51667.20 5.449996e+05 5.404822e+05 4517.37 NULL
2022 Dept Of Citywide Admin Svcs Supervisor Painter NA NA 86563.60 8.656360e+04 86563.600 983.50 1 8.656360e+04 86563.60 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Supervisor Plumber NA NA 105244.57 1.052446e+05 105244.570 951.75 1 1.052446e+05 105244.57 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Supervisor Sheet Metal Worker NA NA 125315.80 1.253158e+05 125315.800 1053.25 1 1.253158e+05 125315.80 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Supervisor Thermostat Repair NA NA 55331.80 5.533180e+04 55331.800 501.00 1 5.533180e+04 55331.80 NA NA NA NULL
2022 Dept Of Citywide Admin Svcs Telecommunication Manager 118000.00000 1.180000e+05 2423.35 2.423350e+03 2423.350 48.00 1 2.423350e+03 2423.35 1.204234e+05 1.204234e+05 0.00 NULL
2022 Dept Of Citywide Admin Svcs Telecommunications Associate 71818.00000 2.872720e+05 4128.81 1.032203e+03 834.255 87.50 4 8.342550e+02 3337.02 2.914008e+05 2.906090e+05 791.79 NULL
2022 Dept Of Citywide Admin Svcs Tests And Measurement Specialist 72920.97368 2.770997e+06 2732.70 7.191316e+01 0.000 26.75 38 0.000000e+00 0.00 2.773730e+06 2.770997e+06 2732.70 NULL
2022 Dept Of Citywide Admin Svcs Thermostat Repairer NA NA 112559.07 1.607987e+04 12247.340 1065.75 7 1.224734e+04 85731.38 NA NA NA NULL
2022 Dept Of Ed Hrly Support Staff Coop Education Trainee Computer Tech Aide/Jr 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 128 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Dept Of Ed Hrly Support Staff F/T Dc 37 Family Para 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1753 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Dept Of Ed Hrly Support Staff F/T Film Inspection Asst. 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Dept Of Ed Hrly Support Staff F/T Group Leader 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Dept Of Ed Hrly Support Staff F/T Health Service Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 99 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Dept Of Ed Hrly Support Staff F/T School Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 8820 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Dept Of Ed Hrly Support Staff F/T School Guard 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Dept Of Ed Hrly Support Staff F/T School Lunch Helper 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 3561 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Dept Of Ed Hrly Support Staff F/T School Safety Officer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Dept Of Ed Hrly Support Staff F/T Sr. School Lunch Helper 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 2790 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Dept Of Ed Hrly Support Staff Student Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 2180 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Dept Of Ed Hrly Support Staff Substitute Recreation Assistant 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Dept Of Ed Hrly Support Staff Substitute School Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1259 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Dept Of Ed Hrly Support Staff Substitute School Lunch Helper 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 879 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Dept Of Ed Hrly Support Staff Substitute Sr. School Lunch Helper 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 436 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Dept Of Ed Hrly Support Staff Supervising School Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 472 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Dept Of Ed Hrly Support Staff NA NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2022 Dept Of Ed Para Professionals Adult Ed-30 H 43538.89286 1.219089e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 1.219089e+06 1.219089e+06 0.00 NULL
2022 Dept Of Ed Para Professionals Adult Ed-35 H 47264.00000 9.452800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.452800e+04 9.452800e+04 0.00 NULL
2022 Dept Of Ed Para Professionals Annual Ed Para 40153.82943 1.336681e+09 0.00 0.000000e+00 0.000 0.00 33289 0.000000e+00 0.00 1.336681e+09 1.336681e+09 0.00 NULL
2022 Dept Of Ed Para Professionals Pre-Ses Ed Para 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 83 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Dept Of Ed Para Professionals Substitute Ed Para NA NA 0.00 0.000000e+00 0.000 0.00 13511 0.000000e+00 0.00 NA NA NA NULL
2022 Dept Of Ed Para Professionals Teacher Aide 29062.95960 5.754466e+06 0.00 0.000000e+00 0.000 0.00 198 0.000000e+00 0.00 5.754466e+06 5.754466e+06 0.00 NULL
2022 Dept Of Ed Para Professionals NA 39842.00000 3.984200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.984200e+04 3.984200e+04 0.00 NULL
2022 Dept Of Ed Pedagogical 12 Month Special Education Asst. Principal 149098.45667 4.472954e+07 0.00 0.000000e+00 0.000 0.00 300 0.000000e+00 0.00 4.472954e+07 4.472954e+07 0.00 NULL
2022 Dept Of Ed Pedagogical 12 Month Special Education Supervisor 156079.48000 3.901987e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 3.901987e+06 3.901987e+06 0.00 NULL
2022 Dept Of Ed Pedagogical ?Teacher Health Conservation Class 26903.00000 2.690300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.690300e+04 2.690300e+04 0.00 NULL
2022 Dept Of Ed Pedagogical Adult Educat Teach - Reg Sub 43742.75000 1.749710e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.749710e+05 1.749710e+05 0.00 NULL
2022 Dept Of Ed Pedagogical Adult Education Teacher 113388.38866 2.800693e+07 0.00 0.000000e+00 0.000 0.00 247 0.000000e+00 0.00 2.800693e+07 2.800693e+07 0.00 NULL
2022 Dept Of Ed Pedagogical Aspiring Principal 119357.00000 1.193570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.193570e+05 1.193570e+05 0.00 NULL
2022 Dept Of Ed Pedagogical Assistant Principal 140017.11598 5.819111e+08 0.00 0.000000e+00 0.000 0.00 4156 0.000000e+00 0.00 5.819111e+08 5.819111e+08 0.00 NULL
2022 Dept Of Ed Pedagogical Assistant Principal Assigned 158136.27273 1.739499e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.739499e+06 1.739499e+06 0.00 NULL
2022 Dept Of Ed Pedagogical Assistant Superintendent 171778.04435 4.260096e+07 0.00 0.000000e+00 0.000 0.00 248 0.000000e+00 0.00 4.260096e+07 4.260096e+07 0.00 NULL
2022 Dept Of Ed Pedagogical Chancellor 363346.00000 3.633460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.633460e+05 3.633460e+05 0.00 NULL
2022 Dept Of Ed Pedagogical Community Supertindent 188423.11594 1.300120e+07 0.00 0.000000e+00 0.000 0.00 69 0.000000e+00 0.00 1.300120e+07 1.300120e+07 0.00 NULL
2022 Dept Of Ed Pedagogical Cse Chairperson 163757.00000 2.292598e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.292598e+06 2.292598e+06 0.00 NULL
2022 Dept Of Ed Pedagogical Deputy Chancellor 243262.50000 9.730500e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 9.730500e+05 9.730500e+05 0.00 NULL
2022 Dept Of Ed Pedagogical Deputy Community Superintendent 172972.00000 1.729720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.729720e+05 1.729720e+05 0.00 NULL
2022 Dept Of Ed Pedagogical Director 152968.00000 6.118720e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.118720e+05 6.118720e+05 0.00 NULL
2022 Dept Of Ed Pedagogical Educational Administrator Csa 144848.80818 1.842477e+08 0.00 0.000000e+00 0.000 0.00 1272 0.000000e+00 0.00 1.842477e+08 1.842477e+08 0.00 NULL
2022 Dept Of Ed Pedagogical Educational Administrator Uft 141719.10000 1.417191e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.417191e+06 1.417191e+06 0.00 NULL
2022 Dept Of Ed Pedagogical Guidance Counselor 106492.20072 4.159585e+08 0.00 0.000000e+00 0.000 0.00 3906 0.000000e+00 0.00 4.159585e+08 4.159585e+08 0.00 NULL
2022 Dept Of Ed Pedagogical Guidance Counselor Assigned A 114799.76000 2.869994e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 2.869994e+06 2.869994e+06 0.00 NULL
2022 Dept Of Ed Pedagogical Guidance Counselor-Reg Sub 68839.65385 1.789831e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 1.789831e+06 1.789831e+06 0.00 NULL
2022 Dept Of Ed Pedagogical Lab Specialist/Assistant 91874.07080 1.038177e+07 0.00 0.000000e+00 0.000 0.00 113 0.000000e+00 0.00 1.038177e+07 1.038177e+07 0.00 NULL
2022 Dept Of Ed Pedagogical Local Instructional Supervisor 200807.25000 8.032290e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.032290e+05 8.032290e+05 0.00 NULL
2022 Dept Of Ed Pedagogical Principal 179337.32616 3.997429e+08 0.00 0.000000e+00 0.000 0.00 2229 0.000000e+00 0.00 3.997429e+08 3.997429e+08 0.00 NULL
2022 Dept Of Ed Pedagogical Principal Assigned 188748.89583 9.059947e+06 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 9.059947e+06 9.059947e+06 0.00 NULL
2022 Dept Of Ed Pedagogical Psychologist In Train - Reg Sub 53572.00000 6.428640e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 6.428640e+05 6.428640e+05 0.00 NULL
2022 Dept Of Ed Pedagogical Psychologist In Training 66507.60000 3.325380e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.325380e+05 3.325380e+05 0.00 NULL
2022 Dept Of Ed Pedagogical School Medical Inspector 92726.00000 2.781780e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.781780e+05 2.781780e+05 0.00 NULL
2022 Dept Of Ed Pedagogical School Medical Inspector - Reg Sub 73558.00000 7.355800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.355800e+04 7.355800e+04 0.00 NULL
2022 Dept Of Ed Pedagogical School Psychiatrist 102944.00000 1.029440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.029440e+05 1.029440e+05 0.00 NULL
2022 Dept Of Ed Pedagogical School Psycholgist 107055.92253 1.948418e+08 0.00 0.000000e+00 0.000 0.00 1820 0.000000e+00 0.00 1.948418e+08 1.948418e+08 0.00 NULL
2022 Dept Of Ed Pedagogical School Psychologist - Reg Sub 72064.00000 2.161920e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.161920e+05 2.161920e+05 0.00 NULL
2022 Dept Of Ed Pedagogical School Secretary 66823.51695 2.719717e+08 0.00 0.000000e+00 0.000 0.00 4070 0.000000e+00 0.00 2.719717e+08 2.719717e+08 0.00 NULL
2022 Dept Of Ed Pedagogical School Secretary-Reg Sub 46062.13505 1.432532e+07 0.00 0.000000e+00 0.000 0.00 311 0.000000e+00 0.00 1.432532e+07 1.432532e+07 0.00 NULL
2022 Dept Of Ed Pedagogical School Social Worker 102458.58773 2.838103e+08 0.00 0.000000e+00 0.000 0.00 2770 0.000000e+00 0.00 2.838103e+08 2.838103e+08 0.00 NULL
2022 Dept Of Ed Pedagogical School Social Worker - Reg Sub 77279.28571 5.409550e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.409550e+05 5.409550e+05 0.00 NULL
2022 Dept Of Ed Pedagogical Supervisor 135578.90000 1.220210e+07 0.00 0.000000e+00 0.000 0.00 90 0.000000e+00 0.00 1.220210e+07 1.220210e+07 0.00 NULL
2022 Dept Of Ed Pedagogical Supervisor Assigned 156150.36667 4.684511e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 4.684511e+06 4.684511e+06 0.00 NULL
2022 Dept Of Ed Pedagogical Teach Asst Vocation - Reg Sub 56140.21429 1.571926e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 1.571926e+06 1.571926e+06 0.00 NULL
2022 Dept Of Ed Pedagogical Teacher 100750.10084 6.522965e+09 0.00 0.000000e+00 0.000 0.00 64744 0.000000e+00 0.00 6.522965e+09 6.522965e+09 0.00 NULL
2022 Dept Of Ed Pedagogical Teacher Assigned A 109962.58716 1.148009e+08 0.00 0.000000e+00 0.000 0.00 1044 0.000000e+00 0.00 1.148009e+08 1.148009e+08 0.00 NULL
2022 Dept Of Ed Pedagogical Teacher Assigned B 103960.27273 1.143563e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.143563e+06 1.143563e+06 0.00 NULL
2022 Dept Of Ed Pedagogical Teacher Attendance 103658.45788 4.799387e+07 0.00 0.000000e+00 0.000 0.00 463 0.000000e+00 0.00 4.799387e+07 4.799387e+07 0.00 NULL
2022 Dept Of Ed Pedagogical Teacher Attendance-Reg Sub 78869.00000 1.577380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.577380e+05 1.577380e+05 0.00 NULL
2022 Dept Of Ed Pedagogical Teacher Special Education 93388.23322 2.916701e+09 0.00 0.000000e+00 0.000 0.00 31232 0.000000e+00 0.00 2.916701e+09 2.916701e+09 0.00 NULL
2022 Dept Of Ed Pedagogical Teacher Special Education-Reg Sub 64656.04502 2.010803e+07 0.00 0.000000e+00 0.000 0.00 311 0.000000e+00 0.00 2.010803e+07 2.010803e+07 0.00 NULL
2022 Dept Of Ed Pedagogical Teacher Trainer 109466.33333 3.283990e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.283990e+05 3.283990e+05 0.00 NULL
2022 Dept Of Ed Pedagogical Teacher-Reg Sub 69356.82062 4.910463e+07 0.00 0.000000e+00 0.000 0.00 708 0.000000e+00 0.00 4.910463e+07 4.910463e+07 0.00 NULL
2022 Dept Of Ed Pedagogical Uft School Secretary Assigned - Non School Based- 12 Month 65167.66667 1.955030e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.955030e+05 1.955030e+05 0.00 NULL
2022 Dept Of Ed Per Diem Teachers Assistant Principal NA NA 0.00 0.000000e+00 0.000 0.00 102 0.000000e+00 0.00 NA NA NA NULL
2022 Dept Of Ed Per Diem Teachers Guidance Counselor NA NA 0.00 0.000000e+00 0.000 0.00 117 0.000000e+00 0.00 NA NA NA NULL
2022 Dept Of Ed Per Diem Teachers Lab Specialist/Assistant NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2022 Dept Of Ed Per Diem Teachers Principal NA NA 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 NA NA NA NULL
2022 Dept Of Ed Per Diem Teachers School Psychologist NA NA 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 NA NA NA NULL
2022 Dept Of Ed Per Diem Teachers School Social Worker NA NA 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 NA NA NA NULL
2022 Dept Of Ed Per Diem Teachers Secretary NA NA 0.00 0.000000e+00 0.000 0.00 141 0.000000e+00 0.00 NA NA NA NULL
2022 Dept Of Ed Per Diem Teachers Supervisor NA NA 0.00 0.000000e+00 0.000 0.00 103 0.000000e+00 0.00 NA NA NA NULL
2022 Dept Of Ed Per Diem Teachers Teacher-General Ed NA NA 0.00 0.000000e+00 0.000 0.00 16064 0.000000e+00 0.00 NA NA NA NULL
2022 Dept Of Ed Per Diem Teachers Teacher-Special Ed NA NA 0.00 0.000000e+00 0.000 0.00 145 0.000000e+00 0.00 NA NA NA NULL
2022 Dept Of Ed Per Session Teacher School Secretary Per Session NA NA 0.00 0.000000e+00 0.000 0.00 1550 0.000000e+00 0.00 NA NA NA NULL
2022 Dept Of Ed Per Session Teacher Supervisor Per Session NA NA 0.00 0.000000e+00 0.000 0.00 1417 0.000000e+00 0.00 NA NA NA NULL
2022 Dept Of Ed Per Session Teacher Teacher- Per Session NA NA 0.00 0.000000e+00 0.000 0.00 113843 0.000000e+00 0.00 NA NA NA NULL
2022 Dept Of Environment Protection *Attorney At Law 116239.50000 2.324790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.324790e+05 2.324790e+05 0.00 NULL
2022 Dept Of Environment Protection *Custodial Assistant 40373.00000 4.037300e+04 10129.43 1.012943e+04 10129.430 313.50 1 1.012943e+04 10129.43 5.050243e+04 5.050243e+04 0.00 NULL
2022 Dept Of Environment Protection Accountant 74535.00000 4.472100e+05 5166.86 8.611433e+02 0.000 115.25 6 0.000000e+00 0.00 4.523769e+05 4.472100e+05 5166.86 NULL
2022 Dept Of Environment Protection Adm Manager-Non-Mgrl 94013.54000 9.401354e+06 458716.42 4.587164e+03 0.000 6699.75 100 0.000000e+00 0.00 9.860070e+06 9.401354e+06 458716.42 NULL
2022 Dept Of Environment Protection Admin Community Relations Specialist 115062.10000 1.150621e+06 86806.72 8.680672e+03 6305.605 1204.50 10 6.305605e+03 63056.05 1.237428e+06 1.213677e+06 23750.67 NULL
2022 Dept Of Environment Protection Admin Construction Project Manager 93278.50000 1.865570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.865570e+05 1.865570e+05 0.00 NULL
2022 Dept Of Environment Protection Admin Contract Specialist 124026.00000 1.240260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.240260e+05 1.240260e+05 0.00 NULL
2022 Dept Of Environment Protection Admin Dir Of Laboratory 109904.66667 3.297140e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.297140e+05 3.297140e+05 0.00 NULL
2022 Dept Of Environment Protection Admin Housing Development Spec 129734.75000 5.189390e+05 50478.26 1.261957e+04 10421.075 530.25 4 1.042108e+04 41684.30 5.694173e+05 5.606233e+05 8793.96 NULL
2022 Dept Of Environment Protection Administrative Accountant 78943.85667 2.368316e+05 31935.46 1.064515e+04 7229.250 659.75 3 7.229250e+03 21687.75 2.687670e+05 2.585193e+05 10247.71 NULL
2022 Dept Of Environment Protection Administrative Architect 139743.00000 1.397430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.397430e+05 1.397430e+05 0.00 NULL
2022 Dept Of Environment Protection Administrative City Planner 124443.13636 2.737749e+06 11216.06 5.098209e+02 0.000 175.00 22 0.000000e+00 0.00 2.748965e+06 2.737749e+06 11216.06 NULL
2022 Dept Of Environment Protection Administrative Community Relations Specialist 225145.00000 2.251450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.251450e+05 2.251450e+05 0.00 NULL
2022 Dept Of Environment Protection Administrative Construction Project Manager 134511.00000 2.690220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.690220e+05 2.690220e+05 0.00 NULL
2022 Dept Of Environment Protection Administrative Contract Specialist 107882.50000 2.157650e+05 4774.79 2.387395e+03 2387.395 69.00 2 2.387395e+03 4774.79 2.205398e+05 2.205398e+05 0.00 NULL
2022 Dept Of Environment Protection Administrative Director Of Laboratory 139431.26316 2.649194e+06 6583.32 3.464905e+02 0.000 98.50 19 0.000000e+00 0.00 2.655777e+06 2.649194e+06 6583.32 NULL
2022 Dept Of Environment Protection Administrative Engineer 140000.79767 3.598020e+07 190243.83 7.402484e+02 0.000 2553.50 257 0.000000e+00 0.00 3.617045e+07 3.598020e+07 190243.83 NULL
2022 Dept Of Environment Protection Administrative Horticulturist 110000.00000 1.100000e+05 737.86 7.378600e+02 737.860 11.75 1 7.378600e+02 737.86 1.107379e+05 1.107379e+05 0.00 NULL
2022 Dept Of Environment Protection Administrative Landscape Architect 145230.00000 1.452300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.452300e+05 1.452300e+05 0.00 NULL
2022 Dept Of Environment Protection Administrative Management Auditor 87550.00000 8.755000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.755000e+04 8.755000e+04 0.00 NULL
2022 Dept Of Environment Protection Administrative Manager 165169.50000 6.606780e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.606780e+05 6.606780e+05 0.00 NULL
2022 Dept Of Environment Protection Administrative Procurement Analyst-Non-Mgrl 83506.55172 2.421690e+06 109590.27 3.778975e+03 340.140 2113.50 29 3.401400e+02 9864.06 2.531280e+06 2.431554e+06 99726.21 NULL
2022 Dept Of Environment Protection Administrative Project Manager 119141.59547 1.846695e+07 302849.96 1.953871e+03 0.000 4750.75 155 0.000000e+00 0.00 1.876980e+07 1.846695e+07 302849.96 NULL
2022 Dept Of Environment Protection Administrative Public Health Sanitarian 140545.88889 1.264913e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.264913e+06 1.264913e+06 0.00 NULL
2022 Dept Of Environment Protection Administrative Public Information Specialist 161884.50000 3.237690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.237690e+05 3.237690e+05 0.00 NULL
2022 Dept Of Environment Protection Administrative Public Information Specialist Nm Former M1/M2 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2022 Dept Of Environment Protection Administrative Quality Assurance Specialist 108023.00000 4.320920e+05 21687.47 5.421868e+03 0.000 351.50 4 0.000000e+00 0.00 4.537795e+05 4.320920e+05 21687.47 NULL
2022 Dept Of Environment Protection Administrative Real Property Manager 126631.00000 3.798930e+05 1183.59 3.945300e+02 0.000 15.50 3 0.000000e+00 0.00 3.810766e+05 3.798930e+05 1183.59 NULL
2022 Dept Of Environment Protection Administrative Staff Analyst 126277.33077 1.641605e+07 469124.41 3.608649e+03 1.435 5117.25 130 1.435000e+00 186.55 1.688518e+07 1.641624e+07 468937.86 NULL
2022 Dept Of Environment Protection Administrative Storekeeper 117173.50000 2.343470e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.343470e+05 2.343470e+05 0.00 NULL
2022 Dept Of Environment Protection Administrative Supervisor Of Building Maintenance 123537.00000 1.235370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.235370e+05 1.235370e+05 0.00 NULL
2022 Dept Of Environment Protection Agency Attorney 98479.28571 3.446775e+06 5985.89 1.710254e+02 0.000 87.25 35 0.000000e+00 0.00 3.452761e+06 3.446775e+06 5985.89 NULL
2022 Dept Of Environment Protection Agency Attorney Interne 71757.00000 1.435140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.435140e+05 1.435140e+05 0.00 NULL
2022 Dept Of Environment Protection Air Pollution Inspector 51106.67308 2.657547e+06 457739.61 8.802685e+03 6177.905 12010.75 52 6.177905e+03 321251.06 3.115287e+06 2.978798e+06 136488.55 NULL
2022 Dept Of Environment Protection Apprentice 34229.50794 2.156459e+06 57276.99 9.091586e+02 324.470 2094.50 63 3.244700e+02 20441.61 2.213736e+06 2.176901e+06 36835.38 NULL
2022 Dept Of Environment Protection Architect 91999.75000 3.679990e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.679990e+05 3.679990e+05 0.00 NULL
2022 Dept Of Environment Protection Assistant Architect 70294.50000 4.217670e+05 410.42 6.840333e+01 0.000 10.50 6 0.000000e+00 0.00 4.221774e+05 4.217670e+05 410.42 NULL
2022 Dept Of Environment Protection Assistant Chemical Engineer 68685.78261 1.579773e+06 99149.72 4.310857e+03 958.490 2160.50 23 9.584900e+02 22045.27 1.678923e+06 1.601818e+06 77104.45 NULL
2022 Dept Of Environment Protection Assistant Civil Engineer 68450.86207 7.940300e+06 352897.40 3.042219e+03 0.000 7093.25 116 0.000000e+00 0.00 8.293197e+06 7.940300e+06 352897.40 NULL
2022 Dept Of Environment Protection Assistant Commissioner 188349.66667 5.650490e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.650490e+05 5.650490e+05 0.00 NULL
2022 Dept Of Environment Protection Assistant Electrical Engineer 68458.48649 2.532964e+06 65575.38 1.772308e+03 0.000 1674.50 37 0.000000e+00 0.00 2.598539e+06 2.532964e+06 65575.38 NULL
2022 Dept Of Environment Protection Assistant Environmental Engineer 68168.53846 4.430955e+06 97317.95 1.497199e+03 0.000 2216.50 65 0.000000e+00 0.00 4.528273e+06 4.430955e+06 97317.95 NULL
2022 Dept Of Environment Protection Assistant Landscape Architect 67354.25000 2.694170e+05 464.87 1.162175e+02 0.000 11.25 4 0.000000e+00 0.00 2.698819e+05 2.694170e+05 464.87 NULL
2022 Dept Of Environment Protection Assistant Mechanical Engineer 67775.08537 5.557557e+06 279907.01 3.413500e+03 0.000 6703.25 82 0.000000e+00 0.00 5.837464e+06 5.557557e+06 279907.01 NULL
2022 Dept Of Environment Protection Assoc Water Use Inspector-Mgrl 164800.00000 1.648000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.648000e+05 1.648000e+05 0.00 NULL
2022 Dept Of Environment Protection Associate Air Pollution Inspr 64916.23750 1.298325e+06 425414.57 2.127073e+04 23096.770 8504.50 20 2.127073e+04 425414.57 1.723739e+06 1.723739e+06 0.00 NULL
2022 Dept Of Environment Protection Associate Chemist 73940.66667 1.131292e+07 938289.72 6.132613e+03 507.500 22615.00 153 5.075000e+02 77647.50 1.225121e+07 1.139057e+07 860642.22 NULL
2022 Dept Of Environment Protection Associate Housing Development Specialist 93867.11111 8.448040e+05 58055.61 6.450623e+03 4288.420 858.00 9 4.288420e+03 38595.78 9.028596e+05 8.833998e+05 19459.83 NULL
2022 Dept Of Environment Protection Associate Investigator 75841.00000 2.275230e+05 340.09 1.133633e+02 94.630 8.00 3 9.463000e+01 283.89 2.278631e+05 2.278069e+05 56.20 NULL
2022 Dept Of Environment Protection Associate Labor Relations Analyst 102369.00000 1.023690e+05 1625.70 1.625700e+03 1625.700 23.75 1 1.625700e+03 1625.70 1.039947e+05 1.039947e+05 0.00 NULL
2022 Dept Of Environment Protection Associate Laboratory Microbiologist 79181.81818 1.742000e+06 74820.84 3.400947e+03 487.460 1257.25 22 4.874600e+02 10724.12 1.816821e+06 1.752724e+06 64096.72 NULL
2022 Dept Of Environment Protection Associate Park Service Worker 35022.82500 2.801826e+05 1983.06 2.478825e+02 125.120 63.25 8 1.251200e+02 1000.96 2.821657e+05 2.811836e+05 982.10 NULL
2022 Dept Of Environment Protection Associate Project Manager 86998.64258 1.618175e+07 548360.46 2.948175e+03 0.000 9233.25 186 0.000000e+00 0.00 1.673011e+07 1.618175e+07 548360.46 NULL
2022 Dept Of Environment Protection Associate Public Health Sanitarian 82750.18750 2.648006e+06 35413.28 1.106665e+03 327.715 583.25 32 3.277150e+02 10486.88 2.683419e+06 2.658493e+06 24926.40 NULL
2022 Dept Of Environment Protection Associate Public Records Officer 76917.50000 1.538350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.538350e+05 1.538350e+05 0.00 NULL
2022 Dept Of Environment Protection Associate Quality Assurance Specialist 85409.00000 8.540900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.540900e+04 8.540900e+04 0.00 NULL
2022 Dept Of Environment Protection Associate Staff Analyst 88551.46154 4.604676e+06 153145.61 2.945108e+03 0.000 2229.50 52 0.000000e+00 0.00 4.757822e+06 4.604676e+06 153145.61 NULL
2022 Dept Of Environment Protection Associate Water Use Inpector 78220.31250 2.503050e+06 606389.54 1.894967e+04 21117.600 10994.67 32 1.894967e+04 606389.54 3.109440e+06 3.109440e+06 0.00 NULL
2022 Dept Of Environment Protection Auto Mechanic NA NA 49084.58 6.135573e+03 4868.405 752.25 8 4.868405e+03 38947.24 NA NA NA NULL
2022 Dept Of Environment Protection Bricklayer NA NA 9890.87 4.945435e+03 4945.435 143.00 2 4.945435e+03 9890.87 NA NA NA NULL
2022 Dept Of Environment Protection Captain 94070.00000 9.407000e+05 223705.78 2.237058e+04 24072.895 3272.25 10 2.237058e+04 223705.78 1.164406e+06 1.164406e+06 0.00 NULL
2022 Dept Of Environment Protection Carpenter NA NA 29402.07 4.900345e+03 5485.255 381.00 6 4.900345e+03 29402.07 NA NA NA NULL
2022 Dept Of Environment Protection Certified It Administrator 112273.91667 2.694574e+06 278133.84 1.158891e+04 5496.280 3310.00 24 5.496280e+03 131910.72 2.972708e+06 2.826485e+06 146223.12 NULL
2022 Dept Of Environment Protection Certified It Developer 109080.78633 1.636212e+06 9297.41 6.198273e+02 0.000 103.00 15 0.000000e+00 0.00 1.645509e+06 1.636212e+06 9297.41 NULL
2022 Dept Of Environment Protection Chemical Engineer 104594.00000 1.045940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.045940e+05 1.045940e+05 0.00 NULL
2022 Dept Of Environment Protection Chemical Engineering Intern 59125.00000 5.912500e+04 8743.38 8.743380e+03 8743.380 253.75 1 8.743380e+03 8743.38 6.786838e+04 6.786838e+04 0.00 NULL
2022 Dept Of Environment Protection Chief Marine Engineer 87792.00000 7.901280e+05 262797.76 2.919975e+04 26071.630 4049.50 9 2.607163e+04 234644.67 1.052926e+06 1.024773e+06 28153.09 NULL
2022 Dept Of Environment Protection City Laborer NA NA 95814.27 6.387618e+03 2011.890 1574.50 15 2.011890e+03 30178.35 NA NA NA NULL
2022 Dept Of Environment Protection City Park Worker 13244.77795 1.456926e+06 38307.12 3.482465e+02 0.000 1387.25 110 0.000000e+00 0.00 1.495233e+06 1.456926e+06 38307.12 NULL
2022 Dept Of Environment Protection City Planner 79107.50000 2.531440e+06 17919.36 5.599800e+02 0.000 368.50 32 0.000000e+00 0.00 2.549359e+06 2.531440e+06 17919.36 NULL
2022 Dept Of Environment Protection City Research Scientist 90395.79009 9.401162e+06 133296.56 1.281698e+03 0.000 3527.00 104 0.000000e+00 0.00 9.534459e+06 9.401162e+06 133296.56 NULL
2022 Dept Of Environment Protection City Seasonal Aide 11638.17172 8.845011e+05 13048.38 1.716892e+02 0.000 731.50 76 0.000000e+00 0.00 8.975494e+05 8.845011e+05 13048.38 NULL
2022 Dept Of Environment Protection Civil Engineer 94452.28571 2.644664e+06 38115.49 1.361267e+03 0.000 551.50 28 0.000000e+00 0.00 2.682779e+06 2.644664e+06 38115.49 NULL
2022 Dept Of Environment Protection Civil Engineering Intern 55943.63636 6.153800e+05 112628.06 1.023891e+04 0.000 2660.75 11 0.000000e+00 0.00 7.280081e+05 6.153800e+05 112628.06 NULL
2022 Dept Of Environment Protection Claim Specialist 50253.20000 2.512660e+05 126.27 2.525400e+01 0.000 4.75 5 0.000000e+00 0.00 2.513923e+05 2.512660e+05 126.27 NULL
2022 Dept Of Environment Protection Clerical Associate 41320.48977 1.566047e+07 999015.07 2.635924e+03 257.920 29446.20 379 2.579200e+02 97751.68 1.665948e+07 1.575822e+07 901263.39 NULL
2022 Dept Of Environment Protection Climber & Pruner 64177.00000 3.208850e+05 2794.72 5.589440e+02 0.000 63.50 5 0.000000e+00 0.00 3.236797e+05 3.208850e+05 2794.72 NULL
2022 Dept Of Environment Protection College Aide 10439.06810 3.027330e+05 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 3.027330e+05 3.027330e+05 0.00 NULL
2022 Dept Of Environment Protection Commissioner Of Environmental Protection 247577.00000 2.475770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.475770e+05 2.475770e+05 0.00 NULL
2022 Dept Of Environment Protection Community Assistant 38927.04042 7.006867e+05 42593.05 2.366281e+03 88.135 1522.00 18 8.813500e+01 1586.43 7.432798e+05 7.022732e+05 41006.62 NULL
2022 Dept Of Environment Protection Community Associate 51509.57058 2.523969e+06 140886.16 2.875228e+03 0.000 3477.50 49 0.000000e+00 0.00 2.664855e+06 2.523969e+06 140886.16 NULL
2022 Dept Of Environment Protection Community Coordinator 65185.23179 3.520003e+06 257484.87 4.768238e+03 788.125 5105.75 54 7.881250e+02 42558.75 3.777487e+06 3.562561e+06 214926.12 NULL
2022 Dept Of Environment Protection Community Service Aide 34410.33333 1.032310e+05 5262.66 1.754220e+03 312.940 225.25 3 3.129400e+02 938.82 1.084937e+05 1.041698e+05 4323.84 NULL
2022 Dept Of Environment Protection Computer Aide-Non-Spvr 52443.66667 1.573310e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.573310e+05 1.573310e+05 0.00 NULL
2022 Dept Of Environment Protection Computer Associate 82868.05717 4.392007e+06 232412.78 4.385147e+03 0.000 3932.00 53 0.000000e+00 0.00 4.624420e+06 4.392007e+06 232412.78 NULL
2022 Dept Of Environment Protection Computer Operations Manager 108092.75000 4.323710e+05 67393.09 1.684827e+04 15393.220 951.50 4 1.539322e+04 61572.88 4.997641e+05 4.939439e+05 5820.21 NULL
2022 Dept Of Environment Protection Computer Programmer Analyst 65831.42929 4.608200e+05 565.51 8.078714e+01 0.000 12.50 7 0.000000e+00 0.00 4.613855e+05 4.608200e+05 565.51 NULL
2022 Dept Of Environment Protection Computer Service Technician 55235.00000 1.104700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.104700e+05 1.104700e+05 0.00 NULL
2022 Dept Of Environment Protection Computer Specialist 103746.77984 9.440957e+06 260821.71 2.866173e+03 0.000 3499.25 91 0.000000e+00 0.00 9.701779e+06 9.440957e+06 260821.71 NULL
2022 Dept Of Environment Protection Computer Systems Manager 135354.10000 1.353541e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.353541e+06 1.353541e+06 0.00 NULL
2022 Dept Of Environment Protection Confidential Asst To The Executive Deputy Commissioner 127620.00000 1.276200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.276200e+05 1.276200e+05 0.00 NULL
2022 Dept Of Environment Protection Construction Laborer NA NA 4195841.30 1.327798e+04 10487.025 62932.25 316 1.048702e+04 3313899.90 NA NA NA NULL
2022 Dept Of Environment Protection Construction Project Manager 79084.62857 2.767962e+06 143682.90 4.105226e+03 793.050 2624.25 35 7.930500e+02 27756.75 2.911645e+06 2.795719e+06 115926.15 NULL
2022 Dept Of Environment Protection Counsel 225145.00000 2.251450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.251450e+05 2.251450e+05 0.00 NULL
2022 Dept Of Environment Protection Crane Operator Ampes NA NA 78429.43 7.842943e+04 78429.430 578.50 1 7.842943e+04 78429.43 NA NA NA NULL
2022 Dept Of Environment Protection Custodian 40543.41120 1.013585e+06 100663.12 4.026525e+03 1628.490 3734.00 25 1.628490e+03 40712.25 1.114248e+06 1.054298e+06 59950.87 NULL
2022 Dept Of Environment Protection Customer Information Representative Ma L 1549 60316.99929 4.222190e+05 41270.40 5.895771e+03 2327.780 929.83 7 2.327780e+03 16294.46 4.634894e+05 4.385135e+05 24975.94 NULL
2022 Dept Of Environment Protection Cyber Security Analyst 78795.00000 2.363850e+05 204.86 6.828667e+01 0.000 4.75 3 0.000000e+00 0.00 2.365899e+05 2.363850e+05 204.86 NULL
2022 Dept Of Environment Protection Deputy Commissioner 219155.25000 8.766210e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.766210e+05 8.766210e+05 0.00 NULL
2022 Dept Of Environment Protection Deputy Commissioner Of It 231796.00000 2.317960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.317960e+05 2.317960e+05 0.00 NULL
2022 Dept Of Environment Protection Director Of Noise Abatement 184158.00000 1.841580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.841580e+05 1.841580e+05 0.00 NULL
2022 Dept Of Environment Protection Director Of Technical Services 155738.33333 4.672150e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.672150e+05 4.672150e+05 0.00 NULL
2022 Dept Of Environment Protection District Supervisor 101264.00000 2.227808e+06 740525.82 3.366026e+04 28467.440 9795.50 22 2.846744e+04 626283.68 2.968334e+06 2.854092e+06 114242.14 NULL
2022 Dept Of Environment Protection Economist 68000.00000 6.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.800000e+04 6.800000e+04 0.00 NULL
2022 Dept Of Environment Protection Electrical Engineer 99836.66667 2.995100e+05 26590.43 8.863477e+03 0.000 432.50 3 0.000000e+00 0.00 3.261004e+05 2.995100e+05 26590.43 NULL
2022 Dept Of Environment Protection Electrician NA NA 1979279.34 2.604315e+04 26627.755 21306.25 76 2.604315e+04 1979279.34 NA NA NA NULL
2022 Dept Of Environment Protection Electricians Helper NA NA 484481.66 1.424946e+04 14841.280 8143.25 34 1.424946e+04 484481.66 NA NA NA NULL
2022 Dept Of Environment Protection Engineering Technician 56946.22581 5.295999e+06 832582.19 8.952497e+03 5356.380 20221.25 93 5.356380e+03 498143.34 6.128581e+06 5.794142e+06 334438.85 NULL
2022 Dept Of Environment Protection Environmental Engineer 98135.50000 3.925420e+05 43788.77 1.094719e+04 10453.625 793.50 4 1.045362e+04 41814.50 4.363308e+05 4.343565e+05 1974.27 NULL
2022 Dept Of Environment Protection Environmental Engineering Intern 57010.00000 3.420600e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.420600e+05 3.420600e+05 0.00 NULL
2022 Dept Of Environment Protection Environmental Police Officer 61151.47881 1.443175e+07 786922.05 3.334415e+03 766.025 22580.94 236 7.660250e+02 180781.90 1.521867e+07 1.461253e+07 606140.15 NULL
2022 Dept Of Environment Protection Environmental Police Officer-Managerial 143661.66667 1.723940e+06 358.07 2.983917e+01 0.000 11.12 12 0.000000e+00 0.00 1.724298e+06 1.723940e+06 358.07 NULL
2022 Dept Of Environment Protection Executive Agency Counsel 157505.91667 3.780142e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 3.780142e+06 3.780142e+06 0.00 NULL
2022 Dept Of Environment Protection Executive Asst To The Commissioner 124630.00000 1.246300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.246300e+05 1.246300e+05 0.00 NULL
2022 Dept Of Environment Protection Executive Program Specialist 161473.62500 1.291789e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.291789e+06 1.291789e+06 0.00 NULL
2022 Dept Of Environment Protection Forester 61837.00000 1.236740e+05 7692.29 3.846145e+03 3846.145 178.50 2 3.846145e+03 7692.29 1.313663e+05 1.313663e+05 0.00 NULL
2022 Dept Of Environment Protection Gardener 54231.71429 7.592440e+05 83064.93 5.933209e+03 914.935 1813.00 14 9.149350e+02 12809.09 8.423089e+05 7.720531e+05 70255.84 NULL
2022 Dept Of Environment Protection Geologist 68404.47778 1.231281e+06 3807.37 2.115206e+02 0.000 103.50 18 0.000000e+00 0.00 1.235088e+06 1.231281e+06 3807.37 NULL
2022 Dept Of Environment Protection Graphic Artist 64800.00000 6.480000e+04 497.84 4.978400e+02 497.840 11.00 1 4.978400e+02 497.84 6.529784e+04 6.529784e+04 0.00 NULL
2022 Dept Of Environment Protection Helicopter Mechanic 50032.09840 1.000642e+05 149.87 7.493500e+01 74.935 3.25 2 7.493500e+01 149.87 1.002141e+05 1.002141e+05 0.00 NULL
2022 Dept Of Environment Protection Helicopter Pilot 84254.00000 1.685080e+05 1390.40 6.952000e+02 695.200 26.50 2 6.952000e+02 1390.40 1.698984e+05 1.698984e+05 0.00 NULL
2022 Dept Of Environment Protection Industrial Hygienist 62392.38596 3.556366e+06 293454.76 5.148329e+03 857.540 9702.25 57 8.575400e+02 48879.78 3.849821e+06 3.605246e+06 244574.98 NULL
2022 Dept Of Environment Protection Instrumental Specialist 67496.73214 3.779817e+06 218465.32 3.901166e+03 932.660 4665.25 56 9.326600e+02 52228.96 3.998282e+06 3.832046e+06 166236.36 NULL
2022 Dept Of Environment Protection Investigator 46460.60000 2.323030e+05 33020.63 6.604126e+03 0.000 929.75 5 0.000000e+00 0.00 2.653236e+05 2.323030e+05 33020.63 NULL
2022 Dept Of Environment Protection It Project Specialist 160438.00000 1.604380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.604380e+05 1.604380e+05 0.00 NULL
2022 Dept Of Environment Protection It Security Specialist 156531.00000 1.565310e+05 67777.16 6.777716e+04 67777.160 619.00 1 6.777716e+04 67777.16 2.243082e+05 2.243082e+05 0.00 NULL
2022 Dept Of Environment Protection It Service Management Specialist 88121.00000 8.812100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.812100e+04 8.812100e+04 0.00 NULL
2022 Dept Of Environment Protection Laboratory Associate 52677.00000 5.267700e+04 3956.07 3.956070e+03 3956.070 99.25 1 3.956070e+03 3956.07 5.663307e+04 5.663307e+04 0.00 NULL
2022 Dept Of Environment Protection Laboratory Helper 46451.00000 9.290200e+04 11738.63 5.869315e+03 5869.315 370.50 2 5.869315e+03 11738.63 1.046406e+05 1.046406e+05 0.00 NULL
2022 Dept Of Environment Protection Laboratory Microbiologist 59228.38462 7.699690e+05 8722.47 6.709592e+02 420.710 219.00 13 4.207100e+02 5469.23 7.786915e+05 7.754382e+05 3253.24 NULL
2022 Dept Of Environment Protection Landscape Architect 77921.00000 7.792100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.792100e+04 7.792100e+04 0.00 NULL
2022 Dept Of Environment Protection Machinist NA NA 584924.60 1.044508e+04 5144.945 8999.75 56 5.144945e+03 288116.92 NA NA NA NULL
2022 Dept Of Environment Protection Machinist’s Helper NA NA 36362.55 2.797119e+03 2667.180 613.00 13 2.667180e+03 34673.34 NA NA NA NULL
2022 Dept Of Environment Protection Management Auditor 85010.50000 1.700210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.700210e+05 1.700210e+05 0.00 NULL
2022 Dept Of Environment Protection Marine Electronics Technician 99613.00000 9.961300e+04 312.72 3.127200e+02 312.720 4.25 1 3.127200e+02 312.72 9.992572e+04 9.992572e+04 0.00 NULL
2022 Dept Of Environment Protection Marine Engineer 81321.66667 7.318950e+05 201138.29 2.234870e+04 18799.020 3264.25 9 1.879902e+04 169191.18 9.330333e+05 9.010862e+05 31947.11 NULL
2022 Dept Of Environment Protection Marine Oiler 68962.00000 6.206580e+05 227249.45 2.524994e+04 29558.590 4401.25 9 2.524994e+04 227249.45 8.479074e+05 8.479074e+05 0.00 NULL
2022 Dept Of Environment Protection Mariner 68962.00000 1.034430e+06 250046.33 1.666976e+04 10359.350 4835.25 15 1.035935e+04 155390.25 1.284476e+06 1.189820e+06 94656.08 NULL
2022 Dept Of Environment Protection Mate 76966.25000 1.231460e+06 255483.65 1.596773e+04 11800.775 4484.75 16 1.180077e+04 188812.40 1.486944e+06 1.420272e+06 66671.25 NULL
2022 Dept Of Environment Protection Mechanical Engineer 89035.66667 1.068428e+06 9820.29 8.183575e+02 0.000 200.25 12 0.000000e+00 0.00 1.078248e+06 1.068428e+06 9820.29 NULL
2022 Dept Of Environment Protection Mechanical Engineering Intern 56554.33333 5.089890e+05 45003.51 5.000390e+03 1582.880 1035.25 9 1.582880e+03 14245.92 5.539925e+05 5.232349e+05 30757.59 NULL
2022 Dept Of Environment Protection Motor Vehicle Operator 49844.26316 9.470410e+05 194267.20 1.022459e+04 11788.840 5151.50 19 1.022459e+04 194267.20 1.141308e+06 1.141308e+06 0.00 NULL
2022 Dept Of Environment Protection Motor Vehicle Supervisor 59120.50000 2.364820e+05 21755.84 5.438960e+03 4890.805 509.00 4 4.890805e+03 19563.22 2.582378e+05 2.560452e+05 2192.62 NULL
2022 Dept Of Environment Protection New York City Public Service Fellow 43534.66667 1.306040e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.306040e+05 1.306040e+05 0.00 NULL
2022 Dept Of Environment Protection Oiler NA NA 1079525.23 1.611232e+04 9709.570 11989.50 67 9.709570e+03 650541.19 NA NA NA NULL
2022 Dept Of Environment Protection Painter NA NA 1857.72 9.288600e+02 928.860 5.00 2 9.288600e+02 1857.72 NA NA NA NULL
2022 Dept Of Environment Protection Paralegal Aide 41993.00000 4.199300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.199300e+04 4.199300e+04 0.00 NULL
2022 Dept Of Environment Protection Plumber NA NA 308557.46 1.815044e+04 9739.870 2936.75 17 9.739870e+03 165577.79 NA NA NA NULL
2022 Dept Of Environment Protection Plumber’s Helper NA NA 27339.99 5.467998e+03 6623.330 371.75 5 5.467998e+03 27339.99 NA NA NA NULL
2022 Dept Of Environment Protection Port Marine Engineer 93392.50000 1.867850e+05 52270.34 2.613517e+04 26135.170 838.75 2 2.613517e+04 52270.34 2.390553e+05 2.390553e+05 0.00 NULL
2022 Dept Of Environment Protection Principal Administrative Associate - Non Supvr 65749.13127 1.742352e+07 957077.97 3.611615e+03 59.700 20444.80 265 5.970000e+01 15820.50 1.838060e+07 1.743934e+07 941257.47 NULL
2022 Dept Of Environment Protection Procurement Analyst 67277.94355 3.296619e+06 65097.11 1.328512e+03 0.000 1175.75 49 0.000000e+00 0.00 3.361716e+06 3.296619e+06 65097.11 NULL
2022 Dept Of Environment Protection Project Manager 67485.23333 2.024557e+06 57467.12 1.915571e+03 18.775 1388.75 30 1.877500e+01 563.25 2.082024e+06 2.025120e+06 56903.87 NULL
2022 Dept Of Environment Protection Project Manager Intern# 55400.00000 6.648000e+05 54548.48 4.545707e+03 8.110 1356.00 12 8.110000e+00 97.32 7.193485e+05 6.648973e+05 54451.16 NULL
2022 Dept Of Environment Protection Public Health Sanitarian 62426.41667 7.491170e+05 24349.90 2.029158e+03 535.230 564.65 12 5.352300e+02 6422.76 7.734669e+05 7.555398e+05 17927.14 NULL
2022 Dept Of Environment Protection Public Records Aide 46154.00000 3.230780e+05 22819.62 3.259946e+03 1566.840 690.00 7 1.566840e+03 10967.88 3.458976e+05 3.340459e+05 11851.74 NULL
2022 Dept Of Environment Protection Public Records Officer 50706.00000 5.070600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.070600e+04 5.070600e+04 0.00 NULL
2022 Dept Of Environment Protection Quality Assurance Specialist 59790.00000 1.195800e+05 925.93 4.629650e+02 462.965 23.50 2 4.629650e+02 925.93 1.205059e+05 1.205059e+05 0.00 NULL
2022 Dept Of Environment Protection Radio Repair Mechanic NA NA 6114.38 3.057190e+03 3057.190 80.75 2 3.057190e+03 6114.38 NA NA NA NULL
2022 Dept Of Environment Protection Research Assistant 40956.45280 1.228694e+05 3398.18 1.132727e+03 0.000 90.00 3 0.000000e+00 0.00 1.262675e+05 1.228694e+05 3398.18 NULL
2022 Dept Of Environment Protection Scientist 67368.23377 5.187354e+06 247795.11 3.218118e+03 363.630 5375.25 77 3.636300e+02 27999.51 5.435149e+06 5.215354e+06 219795.60 NULL
2022 Dept Of Environment Protection Secretary 50769.09563 4.061528e+05 59.75 7.468750e+00 0.000 3.00 8 0.000000e+00 0.00 4.062125e+05 4.061528e+05 59.75 NULL
2022 Dept Of Environment Protection Secretary To The Exec Deputy Commissioner 64192.00000 1.283840e+05 894.18 4.470900e+02 447.090 28.00 2 4.470900e+02 894.18 1.292782e+05 1.292782e+05 0.00 NULL
2022 Dept Of Environment Protection Senior Adviser To The Commissioner 154500.00000 1.545000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.545000e+05 1.545000e+05 0.00 NULL
2022 Dept Of Environment Protection Senior It Architect 156531.00000 1.565310e+05 80729.66 8.072966e+04 80729.660 711.00 1 8.072966e+04 80729.66 2.372607e+05 2.372607e+05 0.00 NULL
2022 Dept Of Environment Protection Senior Sewage Treatment Worker NA NA 3748513.84 1.893189e+04 18059.775 52047.25 198 1.805978e+04 3575835.45 NA NA NA NULL
2022 Dept Of Environment Protection Senior Stationary Engineer NA NA 2816513.87 5.314177e+04 55052.340 25575.25 53 5.314177e+04 2816513.87 NA NA NA NULL
2022 Dept Of Environment Protection Sewage Treatment Worker NA NA 11407507.51 1.920456e+04 16313.725 173377.43 594 1.631373e+04 9690352.65 NA NA NA NULL
2022 Dept Of Environment Protection Staff Analyst 69635.10379 2.437229e+06 18048.59 5.156740e+02 8.940 413.25 35 8.940000e+00 312.90 2.455277e+06 2.437542e+06 17735.69 NULL
2022 Dept Of Environment Protection Staff Analyst Trainee 47062.16667 2.823730e+05 323.80 5.396667e+01 0.000 9.50 6 0.000000e+00 0.00 2.826968e+05 2.823730e+05 323.80 NULL
2022 Dept Of Environment Protection Stationary Engineer NA NA 5100696.59 2.914684e+04 21366.140 53368.50 175 2.136614e+04 3739074.50 NA NA NA NULL
2022 Dept Of Environment Protection Stock Worker 41697.00000 1.250910e+05 23877.56 7.959187e+03 2633.170 796.00 3 2.633170e+03 7899.51 1.489686e+05 1.329905e+05 15978.05 NULL
2022 Dept Of Environment Protection Strategic Initiative Specialist 105229.55556 9.470660e+05 37855.13 4.206126e+03 0.000 582.75 9 0.000000e+00 0.00 9.849211e+05 9.470660e+05 37855.13 NULL
2022 Dept Of Environment Protection Summer College Intern 2273.41406 2.182478e+05 0.00 0.000000e+00 0.000 0.00 96 0.000000e+00 0.00 2.182478e+05 2.182478e+05 0.00 NULL
2022 Dept Of Environment Protection Summer Graduate Intern 1899.53750 3.799075e+04 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 3.799075e+04 3.799075e+04 0.00 NULL
2022 Dept Of Environment Protection Superintendent Of Water And Sewer Systems 138385.85714 2.906103e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 2.906103e+06 2.906103e+06 0.00 NULL
2022 Dept Of Environment Protection Supervising Special Officer 55853.00000 5.585300e+04 20062.28 2.006228e+04 20062.280 500.00 1 2.006228e+04 20062.28 7.591528e+04 7.591528e+04 0.00 NULL
2022 Dept Of Environment Protection Supervisor 88188.80519 2.037161e+07 3842667.09 1.663492e+04 12291.760 56138.75 231 1.229176e+04 2839396.56 2.421428e+07 2.321101e+07 1003270.53 NULL
2022 Dept Of Environment Protection Supervisor Bricklayer NA NA 7884.07 7.884070e+03 7884.070 104.50 1 7.884070e+03 7884.07 NA NA NA NULL
2022 Dept Of Environment Protection Supervisor Carpenter NA NA 11491.74 1.149174e+04 11491.740 157.25 1 1.149174e+04 11491.74 NA NA NA NULL
2022 Dept Of Environment Protection Supervisor Electrician NA NA 997195.57 4.154982e+04 42813.880 9881.50 24 4.154982e+04 997195.57 NA NA NA NULL
2022 Dept Of Environment Protection Supervisor Of Mechanics 125350.76923 1.629560e+06 362701.93 2.790015e+04 21353.040 3895.25 13 2.135304e+04 277589.52 1.992262e+06 1.907150e+06 85112.41 NULL
2022 Dept Of Environment Protection Supervisor Of Motor Transport 74301.00000 7.430100e+04 26154.82 2.615482e+04 26154.820 490.00 1 2.615482e+04 26154.82 1.004558e+05 1.004558e+05 0.00 NULL
2022 Dept Of Environment Protection Supervisor Of Stock Workers 48820.64516 1.513440e+06 236857.00 7.640548e+03 3136.830 6656.50 31 3.136830e+03 97241.73 1.750297e+06 1.610682e+06 139615.27 NULL
2022 Dept Of Environment Protection Supervisor Painter NA NA 786.10 7.861000e+02 786.100 5.00 1 7.861000e+02 786.10 NA NA NA NULL
2022 Dept Of Environment Protection Supervisor Plumber NA NA 198142.30 3.302372e+04 31624.115 1800.25 6 3.162412e+04 189744.69 NA NA NA NULL
2022 Dept Of Environment Protection Surveyor 78577.30000 7.857730e+05 99.74 9.974000e+00 0.000 2.00 10 0.000000e+00 0.00 7.858727e+05 7.857730e+05 99.74 NULL
2022 Dept Of Environment Protection Telecommunications Associate 73850.75375 8.862090e+05 137534.57 1.146121e+04 2225.155 2530.50 12 2.225155e+03 26701.86 1.023744e+06 9.129109e+05 110832.71 NULL
2022 Dept Of Environment Protection Telecommunications Manager 147868.00000 1.478680e+05 48378.68 4.837868e+04 48378.680 453.25 1 4.837868e+04 48378.68 1.962467e+05 1.962467e+05 0.00 NULL
2022 Dept Of Environment Protection Water Use Inspector 45708.97753 4.068099e+06 301399.66 3.386513e+03 361.670 9151.00 89 3.616700e+02 32188.63 4.369499e+06 4.100288e+06 269211.03 NULL
2022 Dept Of Environment Protection Watershed Maintainer 54992.30870 1.264823e+07 946287.48 4.114293e+03 1400.970 22546.91 230 1.400970e+03 322223.10 1.359452e+07 1.297045e+07 624064.38 NULL
2022 Dept Of Health/Mental Hygiene *Asist Systms Analyst 73482.00000 7.348200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.348200e+04 7.348200e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene *Assist Coordinating Manager 55384.00000 3.323040e+05 1938.60 3.231000e+02 153.805 59.00 6 1.538050e+02 922.83 3.342426e+05 3.332268e+05 1015.77 NULL
2022 Dept Of Health/Mental Hygiene *Associate Executive Director 110174.00000 1.101740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.101740e+05 1.101740e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene *Attorney At Law 125618.00000 1.256180e+05 1800.70 1.800700e+03 1800.700 23.00 1 1.800700e+03 1800.70 1.274187e+05 1.274187e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene *Certified Local Area Network Administrator 101820.00000 1.018200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.018200e+05 1.018200e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene *Coordinating Manager 72117.00000 4.327020e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.327020e+05 4.327020e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene *Custodial Assistant 44677.00000 8.935400e+04 3333.41 1.666705e+03 1666.705 101.50 2 1.666705e+03 3333.41 9.268741e+04 9.268741e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene *Director Of Health Care Program Planning/Analysis 116398.50000 2.327970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.327970e+05 2.327970e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene *Senior Staff Officer 88422.00000 8.842200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.842200e+04 8.842200e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene *Senior Systems Analyst 64178.00000 1.283560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.283560e+05 1.283560e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene *Sr Management Consultant 92395.25000 1.108743e+06 3877.94 3.231617e+02 0.000 46.50 12 0.000000e+00 0.00 1.112621e+06 1.108743e+06 3877.94 NULL
2022 Dept Of Health/Mental Hygiene *Sr Systems Analyst - Edp 63845.00000 6.384500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.384500e+04 6.384500e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene *Supvsng Systems Analyst 66562.33333 1.996870e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.996870e+05 1.996870e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene *Systems Analyst 52550.53846 6.831570e+05 19176.63 1.475125e+03 0.000 404.75 13 0.000000e+00 0.00 7.023336e+05 6.831570e+05 19176.63 NULL
2022 Dept Of Health/Mental Hygiene Accountant 71521.06443 3.433011e+06 52716.82 1.098267e+03 0.000 1088.00 48 0.000000e+00 0.00 3.485728e+06 3.433011e+06 52716.82 NULL
2022 Dept Of Health/Mental Hygiene Adm Manager-Non-Mgrl 84905.76042 8.150953e+06 340480.11 3.546668e+03 0.000 5628.25 96 0.000000e+00 0.00 8.491433e+06 8.150953e+06 340480.11 NULL
2022 Dept Of Health/Mental Hygiene Admin Community Relations Specialist 86647.81250 2.772730e+06 75363.02 2.355094e+03 122.985 1066.25 32 1.229850e+02 3935.52 2.848093e+06 2.776666e+06 71427.50 NULL
2022 Dept Of Health/Mental Hygiene Admin Contract Specialist 145046.41667 1.740557e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.740557e+06 1.740557e+06 0.00 NULL
2022 Dept Of Health/Mental Hygiene Administrative Accountant 115453.00000 4.618120e+05 188.23 4.705750e+01 0.000 3.50 4 0.000000e+00 0.00 4.620002e+05 4.618120e+05 188.23 NULL
2022 Dept Of Health/Mental Hygiene Administrative Business Promotion Coordinator 120258.33333 7.215500e+05 26285.50 4.380917e+03 0.000 345.50 6 0.000000e+00 0.00 7.478355e+05 7.215500e+05 26285.50 NULL
2022 Dept Of Health/Mental Hygiene Administrative Community Relations Specialist 146865.50000 2.937310e+05 313.12 1.565600e+02 156.560 0.00 2 1.565600e+02 313.12 2.940441e+05 2.940441e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Administrative Consultant 104680.25000 4.187210e+05 2126.84 5.317100e+02 0.000 39.75 4 0.000000e+00 0.00 4.208478e+05 4.187210e+05 2126.84 NULL
2022 Dept Of Health/Mental Hygiene Administrative Contract Specialist 96433.12500 1.542930e+06 44774.28 2.798392e+03 0.000 717.25 16 0.000000e+00 0.00 1.587704e+06 1.542930e+06 44774.28 NULL
2022 Dept Of Health/Mental Hygiene Administrative Director Of Social Services 115716.00000 2.314320e+05 3278.64 1.639320e+03 1639.320 41.75 2 1.639320e+03 3278.64 2.347106e+05 2.347106e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Administrative Investigator 69002.00000 1.380040e+05 2569.53 1.284765e+03 1284.765 72.00 2 1.284765e+03 2569.53 1.405735e+05 1.405735e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Administrative Labor Relations Analyst 138565.66667 4.156970e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.156970e+05 4.156970e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Administrative Management Auditor 122118.75000 4.884750e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.884750e+05 4.884750e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Administrative Manager 137907.66667 4.137230e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.137230e+05 4.137230e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Administrative Nutritionist 93500.00000 1.870000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.870000e+05 1.870000e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Administrative Printing Services Manager 147661.00000 1.476610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.476610e+05 1.476610e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Administrative Procurement Analyst 104323.33333 3.129700e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.129700e+05 3.129700e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Administrative Procurement Analyst-Non-Mgrl 93664.17647 1.592291e+06 15713.87 9.243453e+02 0.000 256.25 17 0.000000e+00 0.00 1.608005e+06 1.592291e+06 15713.87 NULL
2022 Dept Of Health/Mental Hygiene Administrative Project Manager 117500.00000 2.350000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.350000e+05 2.350000e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Administrative Public Health Nurse 110759.17143 3.876571e+06 92512.90 2.643226e+03 17.890 704.00 35 1.789000e+01 626.15 3.969084e+06 3.877197e+06 91886.75 NULL
2022 Dept Of Health/Mental Hygiene Administrative Public Health Sanitarian 126618.14286 1.772654e+06 14142.92 1.010209e+03 0.000 211.25 14 0.000000e+00 0.00 1.786797e+06 1.772654e+06 14142.92 NULL
2022 Dept Of Health/Mental Hygiene Administrative Public Information Specialist 134214.14286 9.394990e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.394990e+05 9.394990e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Administrative Public Information Specialist Nm Former M1/M2 89021.66667 5.341300e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.341300e+05 5.341300e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Administrative Quality Assurance Specialist 108342.25000 4.333690e+05 285.63 7.140750e+01 0.000 7.00 4 0.000000e+00 0.00 4.336546e+05 4.333690e+05 285.63 NULL
2022 Dept Of Health/Mental Hygiene Administrative Staff Analyst 108538.72896 1.997113e+07 570888.13 3.102653e+03 0.000 5958.25 184 0.000000e+00 0.00 2.054201e+07 1.997113e+07 570888.13 NULL
2022 Dept Of Health/Mental Hygiene Administrative Storekeeper 80200.25000 3.208010e+05 8734.72 2.183680e+03 0.000 285.25 4 0.000000e+00 0.00 3.295357e+05 3.208010e+05 8734.72 NULL
2022 Dept Of Health/Mental Hygiene Administrative Supervisor Of Building Maintenance 104174.40000 1.041744e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.041744e+06 1.041744e+06 0.00 NULL
2022 Dept Of Health/Mental Hygiene Agency Attorney 96294.33333 2.888830e+06 1522.24 5.074133e+01 0.000 24.25 30 0.000000e+00 0.00 2.890352e+06 2.888830e+06 1522.24 NULL
2022 Dept Of Health/Mental Hygiene Agency Attorney Interne 67038.50000 2.681540e+05 176.54 4.413500e+01 0.000 5.00 4 0.000000e+00 0.00 2.683305e+05 2.681540e+05 176.54 NULL
2022 Dept Of Health/Mental Hygiene Agency Chief Contracting Officer 160797.00000 1.607970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.607970e+05 1.607970e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Agency Deputy Medical Director 161800.33333 4.854010e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.854010e+05 4.854010e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Agency Medical Director 194600.57895 3.697411e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 3.697411e+06 3.697411e+06 0.00 NULL
2022 Dept Of Health/Mental Hygiene Architect 102885.50000 4.115420e+05 4.78 1.195000e+00 0.725 0.00 4 7.250000e-01 2.90 4.115468e+05 4.115449e+05 1.88 NULL
2022 Dept Of Health/Mental Hygiene Assistant Architect 76731.60000 3.836580e+05 29377.37 5.875474e+03 0.000 592.00 5 0.000000e+00 0.00 4.130354e+05 3.836580e+05 29377.37 NULL
2022 Dept Of Health/Mental Hygiene Assistant Commisioner 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Assistant Commissioner 188256.00000 3.765120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.765120e+05 3.765120e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Assistant Director Of Toxicology 123600.00000 1.236000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.236000e+05 1.236000e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Assistant Printing Press Operator 58040.57417 1.741217e+05 459.58 1.531933e+02 192.560 16.00 3 1.531933e+02 459.58 1.745813e+05 1.745813e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Associate Chemist 64953.50000 1.299070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.299070e+05 1.299070e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Associate Contract Specialist 78549.20000 3.927460e+05 203.65 4.073000e+01 0.000 5.25 5 0.000000e+00 0.00 3.929497e+05 3.927460e+05 203.65 NULL
2022 Dept Of Health/Mental Hygiene Associate Investigator 66659.57143 4.666170e+05 26267.79 3.752541e+03 105.000 595.75 7 1.050000e+02 735.00 4.928848e+05 4.673520e+05 25532.79 NULL
2022 Dept Of Health/Mental Hygiene Associate Labor Relations Analyst 88937.66667 5.336260e+05 9897.08 1.649513e+03 0.000 181.00 6 0.000000e+00 0.00 5.435231e+05 5.336260e+05 9897.08 NULL
2022 Dept Of Health/Mental Hygiene Associate Laboratory Microbiologist 81356.01351 6.020345e+06 81991.68 1.107996e+03 22.605 1454.25 74 2.260500e+01 1672.77 6.102337e+06 6.022018e+06 80318.91 NULL
2022 Dept Of Health/Mental Hygiene Associate Project Manager 109547.00000 1.095470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.095470e+05 1.095470e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Associate Public Health Sanitarian 75082.09333 1.126231e+07 350919.24 2.339462e+03 0.000 7219.25 150 0.000000e+00 0.00 1.161323e+07 1.126231e+07 350919.24 NULL
2022 Dept Of Health/Mental Hygiene Associate Public Records Officer 62694.00000 6.269400e+04 561.92 5.619200e+02 561.920 15.25 1 5.619200e+02 561.92 6.325592e+04 6.325592e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene Associate Staff Analyst 87945.10638 4.133420e+06 103927.15 2.211216e+03 0.000 1517.75 47 0.000000e+00 0.00 4.237347e+06 4.133420e+06 103927.15 NULL
2022 Dept Of Health/Mental Hygiene Asst Comm-Prgm Dev Revw-Hmh 163500.00000 3.270000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.270000e+05 3.270000e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Asst Commissioner 163243.00000 1.632430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.632430e+05 1.632430e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Asst Commissioner For Agency Preparedness And Response 144000.00000 2.880000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.880000e+05 2.880000e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Asst Commissioner For Policy And Community Resilience 159082.00000 3.181640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.181640e+05 3.181640e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Asst Pb Hlth Adv 41954.63742 2.517278e+05 1525.43 2.542383e+02 0.000 61.50 6 0.000000e+00 0.00 2.532533e+05 2.517278e+05 1525.43 NULL
2022 Dept Of Health/Mental Hygiene Bookbinder 42821.33333 1.284640e+05 11695.39 3.898463e+03 375.450 389.25 3 3.754500e+02 1126.35 1.401594e+05 1.295904e+05 10569.04 NULL
2022 Dept Of Health/Mental Hygiene Bookkeeper 57586.33333 1.727590e+05 7476.46 2.492153e+03 0.000 153.75 3 0.000000e+00 0.00 1.802355e+05 1.727590e+05 7476.46 NULL
2022 Dept Of Health/Mental Hygiene Business Promotion Coordinator 73770.00000 7.377000e+04 403.76 4.037600e+02 403.760 10.00 1 4.037600e+02 403.76 7.417376e+04 7.417376e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene Call Center Representative 35083.00000 3.508300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.508300e+04 3.508300e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene Caseworker 65920.00000 6.592000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.592000e+04 6.592000e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene Certified It Administrator 109159.95600 1.637399e+06 13448.23 8.965487e+02 0.000 194.25 15 0.000000e+00 0.00 1.650848e+06 1.637399e+06 13448.23 NULL
2022 Dept Of Health/Mental Hygiene Certified It Developer 104859.47619 2.202049e+06 52183.98 2.484951e+03 0.000 807.00 21 0.000000e+00 0.00 2.254233e+06 2.202049e+06 52183.98 NULL
2022 Dept Of Health/Mental Hygiene Chief City Medical Examiner 243171.00000 4.863420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863420e+05 4.863420e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene City Clinician 55786.54650 5.578655e+05 89.31 8.931000e+00 0.000 1.00 10 0.000000e+00 0.00 5.579548e+05 5.578655e+05 89.31 NULL
2022 Dept Of Health/Mental Hygiene City Custodial Assistant 40698.83786 2.157038e+06 432171.43 8.154178e+03 3230.120 13606.50 53 3.230120e+03 171196.36 2.589210e+06 2.328235e+06 260975.07 NULL
2022 Dept Of Health/Mental Hygiene City Dentist 86858.36000 8.685836e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.685836e+04 8.685836e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene City Deputy Medical Director 158645.00000 3.172900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.172900e+05 3.172900e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene City Laborer NA NA 108431.83 6.776989e+03 2662.880 2032.00 16 2.662880e+03 42606.08 NA NA NA NULL
2022 Dept Of Health/Mental Hygiene City Medical Director 166000.00000 1.660000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.660000e+05 1.660000e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene City Medical Examiner 202718.90538 1.054138e+07 395510.24 7.605966e+03 0.000 3672.50 52 0.000000e+00 0.00 1.093689e+07 1.054138e+07 395510.24 NULL
2022 Dept Of Health/Mental Hygiene City Medical Specialist 111327.88513 1.681051e+07 293549.02 1.944033e+03 0.000 3174.50 151 0.000000e+00 0.00 1.710406e+07 1.681051e+07 293549.02 NULL
2022 Dept Of Health/Mental Hygiene City Mortuary Technician 38349.11584 2.147550e+06 543769.02 9.710161e+03 5825.600 17742.06 56 5.825600e+03 326233.60 2.691320e+06 2.473784e+06 217535.42 NULL
2022 Dept Of Health/Mental Hygiene City Pest Control Aide 36172.58636 7.957969e+05 27711.29 1.259604e+03 0.000 1005.75 22 0.000000e+00 0.00 8.235082e+05 7.957969e+05 27711.29 NULL
2022 Dept Of Health/Mental Hygiene City Research Scientist 93002.08627 7.654072e+07 1825157.82 2.217689e+03 0.000 28041.50 823 0.000000e+00 0.00 7.836587e+07 7.654072e+07 1825157.82 NULL
2022 Dept Of Health/Mental Hygiene City Seasonal Aide 11180.42561 2.795106e+05 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 2.795106e+05 2.795106e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene City Veterinarian 31440.38072 1.257615e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.257615e+05 1.257615e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Civil Engineer 92712.00000 9.271200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.271200e+04 9.271200e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene Clerical Aide 35740.77375 4.288893e+05 761.73 6.347750e+01 0.000 36.50 12 0.000000e+00 0.00 4.296510e+05 4.288893e+05 761.73 NULL
2022 Dept Of Health/Mental Hygiene Clerical Associate 46122.09384 8.809320e+06 217189.77 1.137119e+03 0.000 6057.75 191 0.000000e+00 0.00 9.026510e+06 8.809320e+06 217189.77 NULL
2022 Dept Of Health/Mental Hygiene College Aide 5792.31934 6.950783e+05 0.00 0.000000e+00 0.000 0.00 120 0.000000e+00 0.00 6.950783e+05 6.950783e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene College Aide - Assignment Levels Ii And Iii 8439.12701 5.907389e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.907389e+04 5.907389e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene Commissioner Of Health 243166.00000 4.863320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863320e+05 4.863320e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Community Assistant 39335.13225 2.124097e+06 12827.95 2.375546e+02 0.000 489.00 54 0.000000e+00 0.00 2.136925e+06 2.124097e+06 12827.95 NULL
2022 Dept Of Health/Mental Hygiene Community Associate 51317.67445 3.540920e+06 155959.23 2.260279e+03 0.000 4380.25 69 0.000000e+00 0.00 3.696879e+06 3.540920e+06 155959.23 NULL
2022 Dept Of Health/Mental Hygiene Community Coordinator 67596.66499 1.872428e+07 1023440.97 3.694733e+03 90.300 21193.25 277 9.030000e+01 25013.10 1.974772e+07 1.874929e+07 998427.87 NULL
2022 Dept Of Health/Mental Hygiene Community Service Aide 35319.00000 7.063800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.063800e+04 7.063800e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene Computer Aide-Non-Spvr 53323.00000 6.931990e+05 18105.53 1.392733e+03 0.000 483.00 13 0.000000e+00 0.00 7.113045e+05 6.931990e+05 18105.53 NULL
2022 Dept Of Health/Mental Hygiene Computer Associate 72402.95222 4.271774e+06 135069.79 2.289318e+03 0.000 2610.00 59 0.000000e+00 0.00 4.406844e+06 4.271774e+06 135069.79 NULL
2022 Dept Of Health/Mental Hygiene Computer Operations Manager 112639.00000 1.126390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.126390e+05 1.126390e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Computer Programmer Analyst 63894.50000 1.277890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.277890e+05 1.277890e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Computer Service Technician 51689.69091 5.685866e+05 40555.10 3.686827e+03 2472.710 1110.25 11 2.472710e+03 27199.81 6.091417e+05 5.957864e+05 13355.29 NULL
2022 Dept Of Health/Mental Hygiene Computer Specialist 108163.49178 6.489810e+06 151761.56 2.529359e+03 0.000 1828.50 60 0.000000e+00 0.00 6.641571e+06 6.489810e+06 151761.56 NULL
2022 Dept Of Health/Mental Hygiene Computer Systems Manager 123212.80000 1.047309e+07 88099.69 1.036467e+03 0.000 1231.50 85 0.000000e+00 0.00 1.056119e+07 1.047309e+07 88099.69 NULL
2022 Dept Of Health/Mental Hygiene Confidential Strategy Planner 85297.33333 7.676760e+05 8136.47 9.040522e+02 0.000 122.75 9 0.000000e+00 0.00 7.758125e+05 7.676760e+05 8136.47 NULL
2022 Dept Of Health/Mental Hygiene Construction Project Manager 95754.50000 1.915090e+05 1958.34 9.791700e+02 979.170 27.00 2 9.791700e+02 1958.34 1.934673e+05 1.934673e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Consultant 77373.01429 5.416111e+06 48105.59 6.872227e+02 0.000 990.50 70 0.000000e+00 0.00 5.464217e+06 5.416111e+06 48105.59 NULL
2022 Dept Of Health/Mental Hygiene Consultant Public Health Nurse 84252.00000 1.011024e+06 6592.72 5.493933e+02 0.000 83.00 12 0.000000e+00 0.00 1.017617e+06 1.011024e+06 6592.72 NULL
2022 Dept Of Health/Mental Hygiene Contract Specialist 60932.94444 2.193586e+06 55745.90 1.548497e+03 0.000 1307.50 36 0.000000e+00 0.00 2.249332e+06 2.193586e+06 55745.90 NULL
2022 Dept Of Health/Mental Hygiene Counselor 77638.50000 3.105540e+05 2909.03 7.272575e+02 0.000 48.00 4 0.000000e+00 0.00 3.134630e+05 3.105540e+05 2909.03 NULL
2022 Dept Of Health/Mental Hygiene Criminalist 77038.45409 2.211004e+07 1490581.12 5.193662e+03 849.170 24892.02 287 8.491700e+02 243711.79 2.360062e+07 2.235375e+07 1246869.33 NULL
2022 Dept Of Health/Mental Hygiene Criminalist Assistant Director Of Laboratory 135979.93750 2.175679e+06 4463.16 2.789475e+02 0.000 62.25 16 0.000000e+00 0.00 2.180142e+06 2.175679e+06 4463.16 NULL
2022 Dept Of Health/Mental Hygiene Criminalist Deputy Director Of Labatory 188203.00000 3.764060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.764060e+05 3.764060e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Criminalist Director Of Laboratory 170237.33333 5.107120e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.107120e+05 5.107120e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Custodian 40946.27904 6.551405e+05 83486.00 5.217875e+03 4905.510 2547.25 16 4.905510e+03 78488.16 7.386265e+05 7.336286e+05 4997.84 NULL
2022 Dept Of Health/Mental Hygiene Customer Information Representative Ma L 1549 43698.16857 1.223549e+06 183267.13 6.545255e+03 335.170 5479.83 28 3.351700e+02 9384.76 1.406816e+06 1.232933e+06 173882.37 NULL
2022 Dept Of Health/Mental Hygiene Cyber Security Analyst 80811.20000 4.040560e+05 9.32 1.864000e+00 0.000 0.00 5 0.000000e+00 0.00 4.040653e+05 4.040560e+05 9.32 NULL
2022 Dept Of Health/Mental Hygiene Deputy Chief City Medical Examiner 241434.00000 2.414340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.414340e+05 2.414340e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Deputy Commissioner 221470.00000 1.107350e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.107350e+06 1.107350e+06 0.00 NULL
2022 Dept Of Health/Mental Hygiene Deputy Commissioner For Administation 200762.00000 2.007620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.007620e+05 2.007620e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Deputy Director Of Emergency Management 147197.00000 1.471970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.471970e+05 1.471970e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Deputy Director Of Medicolegal Investigations 125066.64286 1.750933e+06 6757.78 4.826986e+02 0.000 127.13 14 0.000000e+00 0.00 1.757691e+06 1.750933e+06 6757.78 NULL
2022 Dept Of Health/Mental Hygiene Dir Of Healthcare Facilities And Provider Readiness 148000.00000 1.480000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.480000e+05 1.480000e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Director 140344.25000 5.613770e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.613770e+05 5.613770e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Director Of Biodetection And Response 104234.00000 2.084680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.084680e+05 2.084680e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Director Of Community Engagement And Response 132473.50000 2.649470e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.649470e+05 2.649470e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Director Of Countermeasures And Response 128000.00000 1.280000e+05 6504.43 6.504430e+03 6504.430 65.25 1 6.504430e+03 6504.43 1.345044e+05 1.345044e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Director Of Crisis Assistance And Training 106166.00000 3.184980e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.184980e+05 3.184980e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Director Of Forensic Biology 217359.00000 2.173590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.173590e+05 2.173590e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Director Of Interagency Planning 123046.00000 1.230460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.230460e+05 1.230460e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Director Of Mental Health Disaster Preparedness 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene Director Of Public Health Emergency Evaluation 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Director Of Public Health Emergency Planning 97000.00000 9.700000e+04 318.06 3.180600e+02 318.060 6.50 1 3.180600e+02 318.06 9.731806e+04 9.731806e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene Director Of Public Relations 136148.33333 4.084450e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.084450e+05 4.084450e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Director Of Security 107104.00000 1.071040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.071040e+05 1.071040e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Economist 67297.38095 1.413245e+06 37187.99 1.770857e+03 130.300 798.00 21 1.303000e+02 2736.30 1.450433e+06 1.415981e+06 34451.69 NULL
2022 Dept Of Health/Mental Hygiene Electrician NA NA 57555.10 8.222157e+03 3513.420 610.75 7 3.513420e+03 24593.94 NA NA NA NULL
2022 Dept Of Health/Mental Hygiene Environmental Health Technician 42978.00000 4.297800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.297800e+04 4.297800e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene Evidence And Property Control Specialist 64862.55263 2.464777e+06 436850.41 1.149606e+04 1677.430 8426.50 38 1.677430e+03 63742.34 2.901627e+06 2.528519e+06 373108.07 NULL
2022 Dept Of Health/Mental Hygiene Exec Director Of Grants Management And Administration 149174.00000 1.491740e+05 791.39 7.913900e+02 791.390 0.00 1 7.913900e+02 791.39 1.499654e+05 1.499654e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Executive Agency Counsel 149135.68750 2.386171e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.386171e+06 2.386171e+06 0.00 NULL
2022 Dept Of Health/Mental Hygiene Executive Deputy Commissioner For Mental Hygiene 233800.00000 2.338000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.338000e+05 2.338000e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Executive Director Of Healthcare Systems Readiness 124803.00000 1.248030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.248030e+05 1.248030e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Executive Program Specialist 138419.60000 6.920980e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.920980e+05 6.920980e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Executive Secretary 62171.10000 6.217110e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.217110e+04 6.217110e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene Exterminator 48521.67344 1.940867e+06 296935.35 7.423384e+03 1556.110 7279.00 40 1.556110e+03 62244.40 2.237802e+06 2.003111e+06 234690.95 NULL
2022 Dept Of Health/Mental Hygiene Family Pub Health Nurse 88691.89091 4.878054e+06 30791.18 5.598396e+02 0.000 455.50 55 0.000000e+00 0.00 4.908845e+06 4.878054e+06 30791.18 NULL
2022 Dept Of Health/Mental Hygiene Forensic Mortuary Technician 57810.91304 2.659302e+06 1060126.63 2.304623e+04 12778.385 23523.25 46 1.277839e+04 587805.71 3.719429e+06 3.247108e+06 472320.92 NULL
2022 Dept Of Health/Mental Hygiene Forensic Mortuary Technician-Coord Of Mortuary Services 85950.00000 8.595000e+04 8343.54 8.343540e+03 8343.540 156.00 1 8.343540e+03 8343.54 9.429354e+04 9.429354e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene Graphic Artist 80095.00000 3.203800e+05 1737.90 4.344750e+02 368.645 35.75 4 3.686450e+02 1474.58 3.221179e+05 3.218546e+05 263.32 NULL
2022 Dept Of Health/Mental Hygiene Health Care Prog Plan/Analyst 60442.50000 3.626550e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.626550e+05 3.626550e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Health Services Manager 155643.77500 6.225751e+06 22859.53 5.714882e+02 0.000 241.50 40 0.000000e+00 0.00 6.248611e+06 6.225751e+06 22859.53 NULL
2022 Dept Of Health/Mental Hygiene Health Services Manager Non Managerial Level I 102885.73171 1.265494e+07 397752.65 3.233761e+03 14.490 4904.75 123 1.449000e+01 1782.27 1.305270e+07 1.265673e+07 395970.38 NULL
2022 Dept Of Health/Mental Hygiene Health Services Manager Non Managerial Level Ii 120422.24074 6.502801e+06 49613.11 9.187613e+02 0.000 485.75 54 0.000000e+00 0.00 6.552414e+06 6.502801e+06 49613.11 NULL
2022 Dept Of Health/Mental Hygiene Institutional Aide 41487.74937 6.638040e+05 687092.26 4.294327e+04 54588.800 23101.75 16 4.294327e+04 687092.26 1.350896e+06 1.350896e+06 0.00 NULL
2022 Dept Of Health/Mental Hygiene Interpreter 70349.00000 1.406980e+05 1120.27 5.601350e+02 560.135 31.25 2 5.601350e+02 1120.27 1.418183e+05 1.418183e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Investigator 54485.54545 1.198682e+06 58161.76 2.643716e+03 0.000 1045.25 22 0.000000e+00 0.00 1.256844e+06 1.198682e+06 58161.76 NULL
2022 Dept Of Health/Mental Hygiene It Automation And Monitoring Engineer 106097.72875 8.487818e+05 2761.16 3.451450e+02 351.505 45.00 8 3.451450e+02 2761.16 8.515430e+05 8.515430e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene It Infrastructure Engineer 88566.16667 5.313970e+05 190.27 3.171167e+01 0.000 4.50 6 0.000000e+00 0.00 5.315873e+05 5.313970e+05 190.27 NULL
2022 Dept Of Health/Mental Hygiene It Project Specialist 98055.41118 1.666942e+06 28659.43 1.685849e+03 0.000 457.75 17 0.000000e+00 0.00 1.695601e+06 1.666942e+06 28659.43 NULL
2022 Dept Of Health/Mental Hygiene It Security Specialist 101187.66667 3.035630e+05 16247.77 5.415923e+03 655.340 261.50 3 6.553400e+02 1966.02 3.198108e+05 3.055290e+05 14281.75 NULL
2022 Dept Of Health/Mental Hygiene It Service Management Specialist 96585.41667 1.159025e+06 39077.88 3.256490e+03 240.750 609.00 12 2.407500e+02 2889.00 1.198103e+06 1.161914e+06 36188.88 NULL
2022 Dept Of Health/Mental Hygiene Jr Phnurse 39750.53925 1.637722e+07 720802.78 1.749521e+03 2.745 15471.50 412 2.745000e+00 1130.94 1.709802e+07 1.637835e+07 719671.84 NULL
2022 Dept Of Health/Mental Hygiene Junior Public Health Nurse 74054.15608 1.481083e+06 4597.16 2.298580e+02 0.000 73.75 20 0.000000e+00 0.00 1.485680e+06 1.481083e+06 4597.16 NULL
2022 Dept Of Health/Mental Hygiene Laboratory Associate 47028.08331 2.962769e+06 53365.87 8.470773e+02 69.830 1316.00 63 6.983000e+01 4399.29 3.016135e+06 2.967169e+06 48966.58 NULL
2022 Dept Of Health/Mental Hygiene Laboratory Helper 42108.30000 4.210830e+05 12556.70 1.255670e+03 0.000 422.75 10 0.000000e+00 0.00 4.336397e+05 4.210830e+05 12556.70 NULL
2022 Dept Of Health/Mental Hygiene Laboratory Microbiologist 61265.48649 2.266823e+06 5320.82 1.438059e+02 0.930 67.25 37 9.300000e-01 34.41 2.272144e+06 2.266857e+06 5286.41 NULL
2022 Dept Of Health/Mental Hygiene Legal Secretarial Assistant 67225.00000 6.722500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.722500e+04 6.722500e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene Machinist NA NA 4994.27 4.994270e+03 4994.270 75.50 1 4.994270e+03 4994.27 NA NA NA NULL
2022 Dept Of Health/Mental Hygiene Maintenance Worker NA NA 131929.57 1.014843e+04 1079.280 2841.25 13 1.079280e+03 14030.64 NA NA NA NULL
2022 Dept Of Health/Mental Hygiene Management Auditor 79556.78947 1.511579e+06 82847.73 4.360407e+03 147.780 1352.75 19 1.477800e+02 2807.82 1.594427e+06 1.514387e+06 80039.91 NULL
2022 Dept Of Health/Mental Hygiene Medical Investigator 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Dept Of Health/Mental Hygiene Medical Record Librarian 47849.00000 1.913960e+05 18748.07 4.687017e+03 0.000 427.25 4 0.000000e+00 0.00 2.101441e+05 1.913960e+05 18748.07 NULL
2022 Dept Of Health/Mental Hygiene Medical Specialist 33477.27000 6.695454e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.695454e+04 6.695454e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene Medicolegal Investigator 96859.81633 4.746131e+06 536924.09 1.095763e+04 7377.250 7149.91 49 7.377250e+03 361485.25 5.283055e+06 5.107616e+06 175438.84 NULL
2022 Dept Of Health/Mental Hygiene Motor Vehicle Operator 49212.67617 1.624018e+06 300649.38 9.110587e+03 1774.410 7741.37 33 1.774410e+03 58555.53 1.924668e+06 1.682574e+06 242093.85 NULL
2022 Dept Of Health/Mental Hygiene Motor Vehicle Supervisor 59076.00000 2.363040e+05 79211.36 1.980284e+04 18474.475 1835.00 4 1.847447e+04 73897.90 3.155154e+05 3.102019e+05 5313.46 NULL
2022 Dept Of Health/Mental Hygiene New York City Public Service Fellow 42127.00000 4.212700e+04 9084.78 9.084780e+03 9084.780 298.00 1 9.084780e+03 9084.78 5.121178e+04 5.121178e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene Nurse Practicioner 105726.49667 1.585897e+06 3612.55 2.408367e+02 0.000 57.50 15 0.000000e+00 0.00 1.589510e+06 1.585897e+06 3612.55 NULL
2022 Dept Of Health/Mental Hygiene Nurse’s Aide 43075.00000 4.307500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.307500e+04 4.307500e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene Nutritionist 72834.22222 6.555080e+05 17171.22 1.907913e+03 0.000 294.00 9 0.000000e+00 0.00 6.726792e+05 6.555080e+05 17171.22 NULL
2022 Dept Of Health/Mental Hygiene Office Machine Aide 41435.60000 2.071780e+05 31412.58 6.282516e+03 0.000 870.00 5 0.000000e+00 0.00 2.385906e+05 2.071780e+05 31412.58 NULL
2022 Dept Of Health/Mental Hygiene Oiler NA NA 258463.74 8.615458e+04 93898.460 2863.25 3 8.615458e+04 258463.74 NA NA NA NULL
2022 Dept Of Health/Mental Hygiene Paralegal Aide 50870.40000 2.543520e+05 2729.17 5.458340e+02 0.000 90.25 5 0.000000e+00 0.00 2.570812e+05 2.543520e+05 2729.17 NULL
2022 Dept Of Health/Mental Hygiene Peer Counselor 37555.00000 3.755500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.755500e+04 3.755500e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene Poison Information Specialist 98266.10815 2.161854e+06 92934.85 4.224311e+03 382.755 1186.50 22 3.827550e+02 8420.61 2.254789e+06 2.170275e+06 84514.24 NULL
2022 Dept Of Health/Mental Hygiene Principal Administrative Associate - Non Supvr 63064.31997 1.576608e+07 299739.47 1.198958e+03 0.000 6693.50 250 0.000000e+00 0.00 1.606582e+07 1.576608e+07 299739.47 NULL
2022 Dept Of Health/Mental Hygiene Printing Press Operator NA NA 1191.47 2.978675e+02 314.925 20.50 4 2.978675e+02 1191.47 NA NA NA NULL
2022 Dept Of Health/Mental Hygiene Procurement Analyst 73948.91667 4.436935e+06 115660.30 1.927672e+03 0.000 2504.00 60 0.000000e+00 0.00 4.552595e+06 4.436935e+06 115660.30 NULL
2022 Dept Of Health/Mental Hygiene Psychiatrist 64073.26013 1.922198e+05 100.44 3.348000e+01 0.000 0.00 3 0.000000e+00 0.00 1.923202e+05 1.922198e+05 100.44 NULL
2022 Dept Of Health/Mental Hygiene Public Health Adviser 43244.05686 2.257340e+07 515903.96 9.883218e+02 0.000 13309.10 522 0.000000e+00 0.00 2.308930e+07 2.257340e+07 515903.96 NULL
2022 Dept Of Health/Mental Hygiene Public Health Assistant 27478.39554 3.792019e+06 73820.28 5.349296e+02 0.000 2746.73 138 0.000000e+00 0.00 3.865839e+06 3.792019e+06 73820.28 NULL
2022 Dept Of Health/Mental Hygiene Public Health Educator 65932.27419 4.087801e+06 198678.72 3.204495e+03 0.000 3680.25 62 0.000000e+00 0.00 4.286480e+06 4.087801e+06 198678.72 NULL
2022 Dept Of Health/Mental Hygiene Public Health Emergency Preparedness Specialist 82816.04762 3.478274e+06 110811.45 2.638368e+03 754.360 1988.00 42 7.543600e+02 31683.12 3.589085e+06 3.509957e+06 79128.33 NULL
2022 Dept Of Health/Mental Hygiene Public Health Epidemiologist 69288.31667 4.157299e+06 200461.23 3.341021e+03 391.255 3830.00 60 3.912550e+02 23475.30 4.357760e+06 4.180774e+06 176985.93 NULL
2022 Dept Of Health/Mental Hygiene Public Health Nurse 44827.13273 3.326173e+07 1269456.26 1.710857e+03 2.750 26566.92 742 2.750000e+00 2040.50 3.453119e+07 3.326377e+07 1267415.76 NULL
2022 Dept Of Health/Mental Hygiene Public Health Preventative Medicine Resident 80657.00000 3.226280e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.226280e+05 3.226280e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Public Health Sanitarian 57264.09137 2.256205e+07 688629.53 1.747791e+03 0.000 16450.41 394 0.000000e+00 0.00 2.325068e+07 2.256205e+07 688629.53 NULL
2022 Dept Of Health/Mental Hygiene Public Records Aide 44853.46800 6.728020e+05 1967.00 1.311333e+02 0.000 67.00 15 0.000000e+00 0.00 6.747690e+05 6.728020e+05 1967.00 NULL
2022 Dept Of Health/Mental Hygiene Quality Assurance Specialist 32058.13625 6.411627e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.411627e+04 6.411627e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene Regional Director Mental Health Mental Retard & Alc Service 123437.50000 4.937500e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.937500e+05 4.937500e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Research Assistant 59424.00000 1.188480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.188480e+05 1.188480e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Scientist 66754.41667 4.005265e+06 58129.30 9.688217e+02 0.000 1083.75 60 0.000000e+00 0.00 4.063394e+06 4.005265e+06 58129.30 NULL
2022 Dept Of Health/Mental Hygiene Secretary 49073.73792 1.864802e+06 7714.45 2.030118e+02 0.000 232.50 38 0.000000e+00 0.00 1.872516e+06 1.864802e+06 7714.45 NULL
2022 Dept Of Health/Mental Hygiene Senior Consultant 89080.00000 1.781600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.781600e+05 1.781600e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Senior It Architect 115646.50000 6.938790e+05 1155.01 1.925017e+02 0.000 16.50 6 0.000000e+00 0.00 6.950340e+05 6.938790e+05 1155.01 NULL
2022 Dept Of Health/Mental Hygiene Senior Medical Specialist 143583.12000 1.435831e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.435831e+05 1.435831e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Senior Mental Health Worker 44878.66667 1.346360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.346360e+05 1.346360e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Senior Photographer 60386.62500 4.830930e+05 49744.63 6.218079e+03 4472.990 1346.00 8 4.472990e+03 35783.92 5.328376e+05 5.188769e+05 13960.71 NULL
2022 Dept Of Health/Mental Hygiene Senior Stationary Engineer NA NA 83612.97 8.361297e+04 83612.970 743.50 1 8.361297e+04 83612.97 NA NA NA NULL
2022 Dept Of Health/Mental Hygiene Social Worker 66302.38889 3.580329e+06 105417.34 1.952173e+03 0.000 1953.25 54 0.000000e+00 0.00 3.685746e+06 3.580329e+06 105417.34 NULL
2022 Dept Of Health/Mental Hygiene Space Analyst 84412.00000 8.441200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.441200e+04 8.441200e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene Spec Consultant 84927.55115 8.662610e+06 599081.95 5.873352e+03 0.000 9120.50 102 0.000000e+00 0.00 9.261692e+06 8.662610e+06 599081.95 NULL
2022 Dept Of Health/Mental Hygiene Special Advisor To The Mayor For Health Services 92700.00000 9.270000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.270000e+04 9.270000e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene Special Assistant In Mental Retardation 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Special Assistant To Commissioner 155000.00000 1.550000e+05 8120.30 8.120300e+03 8120.300 111.00 1 8.120300e+03 8120.30 1.631203e+05 1.631203e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Special Consultant 70651.25532 6.641218e+06 35789.46 3.807389e+02 0.000 680.75 94 0.000000e+00 0.00 6.677007e+06 6.641218e+06 35789.46 NULL
2022 Dept Of Health/Mental Hygiene Special Officer 42341.38182 2.328776e+06 685714.41 1.246753e+04 10204.580 22317.52 55 1.020458e+04 561251.90 3.014490e+06 2.890028e+06 124462.51 NULL
2022 Dept Of Health/Mental Hygiene Sr Healthcare Prog Plan Anlyst 65093.91667 5.663171e+06 13191.17 1.516226e+02 0.000 290.50 87 0.000000e+00 0.00 5.676362e+06 5.663171e+06 13191.17 NULL
2022 Dept Of Health/Mental Hygiene Staff Analyst 69586.44828 2.018007e+06 15302.45 5.276707e+02 0.000 178.25 29 0.000000e+00 0.00 2.033309e+06 2.018007e+06 15302.45 NULL
2022 Dept Of Health/Mental Hygiene Staff Analyst Trainee 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Dept Of Health/Mental Hygiene Stationary Engineer NA NA 2029791.35 1.068311e+05 103187.290 20793.13 19 1.031873e+05 1960558.51 NA NA NA NULL
2022 Dept Of Health/Mental Hygiene Statistician 58593.00000 5.859300e+04 51.97 5.197000e+01 51.970 1.50 1 5.197000e+01 51.97 5.864497e+04 5.864497e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene Steam Fitter NA NA 43230.00 2.161500e+04 21615.000 394.00 2 2.161500e+04 43230.00 NA NA NA NULL
2022 Dept Of Health/Mental Hygiene Stock Worker 40597.70000 4.059770e+05 14202.83 1.420283e+03 0.000 478.00 10 0.000000e+00 0.00 4.201798e+05 4.059770e+05 14202.83 NULL
2022 Dept Of Health/Mental Hygiene Strategic Initiative Specialist 127639.22222 1.148753e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.148753e+06 1.148753e+06 0.00 NULL
2022 Dept Of Health/Mental Hygiene Summer College Intern 5738.60000 3.443160e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.443160e+04 3.443160e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene Summer Graduate Intern 7405.04707 1.406959e+05 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.406959e+05 1.406959e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Supervising Computer Service Technician 75805.66667 2.274170e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.274170e+05 2.274170e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Supervising Public Health Adviser 65474.01931 7.594986e+06 247825.46 2.136426e+03 0.000 5258.00 116 0.000000e+00 0.00 7.842812e+06 7.594986e+06 247825.46 NULL
2022 Dept Of Health/Mental Hygiene Supervising Special Officer 57982.64706 9.857050e+05 299323.12 1.760724e+04 14738.010 7235.25 17 1.473801e+04 250546.17 1.285028e+06 1.236251e+06 48776.95 NULL
2022 Dept Of Health/Mental Hygiene Supervisor 52323.52941 8.895000e+05 65185.34 3.834432e+03 255.670 1687.78 17 2.556700e+02 4346.39 9.546853e+05 8.938464e+05 60838.95 NULL
2022 Dept Of Health/Mental Hygiene Supervisor Electrician NA NA 127516.09 1.275161e+05 127516.090 1292.25 1 1.275161e+05 127516.09 NA NA NA NULL
2022 Dept Of Health/Mental Hygiene Supervisor I Social Work 73588.66667 2.207660e+05 22.86 7.620000e+00 0.120 0.00 3 1.200000e-01 0.36 2.207889e+05 2.207664e+05 22.50 NULL
2022 Dept Of Health/Mental Hygiene Supervisor Ii Social Work 77264.00000 5.408480e+05 1889.42 2.699171e+02 0.000 34.25 7 0.000000e+00 0.00 5.427374e+05 5.408480e+05 1889.42 NULL
2022 Dept Of Health/Mental Hygiene Supervisor Iii Social Work 93251.25000 7.460100e+05 1154.24 1.442800e+02 0.000 18.00 8 0.000000e+00 0.00 7.471642e+05 7.460100e+05 1154.24 NULL
2022 Dept Of Health/Mental Hygiene Supervisor Of Mechanical Installations & Maintenance 102473.50000 2.049470e+05 6204.12 3.102060e+03 3102.060 83.50 2 3.102060e+03 6204.12 2.111511e+05 2.111511e+05 0.00 NULL
2022 Dept Of Health/Mental Hygiene Supervisor Of Motor Transport 70936.00000 4.256160e+05 132935.90 2.215598e+04 18749.670 2629.50 6 1.874967e+04 112498.02 5.585519e+05 5.381140e+05 20437.88 NULL
2022 Dept Of Health/Mental Hygiene Supervisor Of Stock Workers 59635.80000 2.981790e+05 34334.27 6.866854e+03 159.920 865.25 5 1.599200e+02 799.60 3.325133e+05 2.989786e+05 33534.67 NULL
2022 Dept Of Health/Mental Hygiene Telecommunications Associate 83952.00000 8.395200e+04 3203.23 3.203230e+03 3203.230 63.25 1 3.203230e+03 3203.23 8.715523e+04 8.715523e+04 0.00 NULL
2022 Dept Of Health/Mental Hygiene X-Ray Technician 57845.51732 6.363007e+05 79056.74 7.186976e+03 87.970 1745.75 11 8.797000e+01 967.67 7.153574e+05 6.372684e+05 78089.07 NULL
2022 Dept Of Info Tech & Telecomm *Certified Local Area Network Administrator 98255.00000 9.825500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.825500e+04 9.825500e+04 0.00 NULL
2022 Dept Of Info Tech & Telecomm Accountant 88045.00000 8.804500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.804500e+04 8.804500e+04 0.00 NULL
2022 Dept Of Info Tech & Telecomm Adm Manager-Non-Mgrl 97923.51429 3.427323e+06 9972.00 2.849143e+02 0.000 198.25 35 0.000000e+00 0.00 3.437295e+06 3.427323e+06 9972.00 NULL
2022 Dept Of Info Tech & Telecomm Admin Contract Specialist 236900.00000 2.369000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.369000e+05 2.369000e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Administrative Business Promotion Coordinator 136899.84211 2.601097e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.601097e+06 2.601097e+06 0.00 NULL
2022 Dept Of Info Tech & Telecomm Administrative Community Relations Specialist 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Administrative Construction Project Manager 151976.50000 3.039530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.039530e+05 3.039530e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Administrative Manager 176592.33333 5.297770e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.297770e+05 5.297770e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Administrative Procurement Analyst 128750.00000 1.287500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287500e+05 1.287500e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Administrative Procurement Analyst-Non-Mgrl 115744.62500 9.259570e+05 689.64 8.620500e+01 0.000 14.00 8 0.000000e+00 0.00 9.266466e+05 9.259570e+05 689.64 NULL
2022 Dept Of Info Tech & Telecomm Administrative Project Manager 203372.00000 6.101160e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.101160e+05 6.101160e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Administrative Public Information Specialist 123660.00000 6.183000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.183000e+05 6.183000e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Administrative Public Information Specialist Nm Former M1/M2 120360.00000 2.407200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.407200e+05 2.407200e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Administrative Real Property Manager 142179.00000 1.421790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.421790e+05 1.421790e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Administrative Staff Analyst 125138.83333 9.009996e+06 18412.87 2.557343e+02 0.000 240.75 72 0.000000e+00 0.00 9.028409e+06 9.009996e+06 18412.87 NULL
2022 Dept Of Info Tech & Telecomm Agency Attorney 100946.76923 1.312308e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.312308e+06 1.312308e+06 0.00 NULL
2022 Dept Of Info Tech & Telecomm Agency Attorney Interne 72100.00000 7.210000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.210000e+04 7.210000e+04 0.00 NULL
2022 Dept Of Info Tech & Telecomm Agency Chief Contracting Officer 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Assistant Commissioner 176000.00000 1.760000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.760000e+05 1.760000e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Associate Call Center Representative-Non-Spvr 65372.40984 3.987717e+06 16153.58 2.648128e+02 0.000 363.00 61 0.000000e+00 0.00 4.003871e+06 3.987717e+06 16153.58 NULL
2022 Dept Of Info Tech & Telecomm Associate Commissioner 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Associate Investigator 71745.50000 1.434910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.434910e+05 1.434910e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Associate Labor Relations Analyst 108156.00000 1.081560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081560e+05 1.081560e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Associate Staff Analyst 91542.87500 7.323430e+05 25946.05 3.243256e+03 0.000 395.50 8 0.000000e+00 0.00 7.582891e+05 7.323430e+05 25946.05 NULL
2022 Dept Of Info Tech & Telecomm Business Promotion Coordinator 65199.66667 5.867970e+05 1481.23 1.645811e+02 0.000 32.25 9 0.000000e+00 0.00 5.882782e+05 5.867970e+05 1481.23 NULL
2022 Dept Of Info Tech & Telecomm Call Center Representative 38644.24355 1.348684e+07 31352.37 8.983487e+01 0.000 1266.00 349 0.000000e+00 0.00 1.351819e+07 1.348684e+07 31352.37 NULL
2022 Dept Of Info Tech & Telecomm Certified It Administrator 120322.60448 1.612323e+07 180371.06 1.346053e+03 0.000 2038.00 134 0.000000e+00 0.00 1.630360e+07 1.612323e+07 180371.06 NULL
2022 Dept Of Info Tech & Telecomm Certified It Developer 114067.27778 2.053211e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.053211e+06 2.053211e+06 0.00 NULL
2022 Dept Of Info Tech & Telecomm Chief Operating Officer 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm City Research Scientist 98451.25000 7.876100e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.876100e+05 7.876100e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Clerical Associate 51752.90521 1.242070e+06 804.13 3.350542e+01 0.000 26.25 24 0.000000e+00 0.00 1.242874e+06 1.242070e+06 804.13 NULL
2022 Dept Of Info Tech & Telecomm College Aide 12694.47500 7.616685e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.616685e+04 7.616685e+04 0.00 NULL
2022 Dept Of Info Tech & Telecomm College Aide - Assignment Levels Ii And Iii 871.92000 8.719200e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.719200e+02 8.719200e+02 0.00 NULL
2022 Dept Of Info Tech & Telecomm Commissioner Of Dept Of Info Technology & Telecommunications 247577.00000 2.475770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.475770e+05 2.475770e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Community Assistant 37459.00000 3.745900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.745900e+04 3.745900e+04 0.00 NULL
2022 Dept Of Info Tech & Telecomm Community Associate 50013.09524 2.100550e+06 9962.10 2.371929e+02 0.000 282.50 42 0.000000e+00 0.00 2.110512e+06 2.100550e+06 9962.10 NULL
2022 Dept Of Info Tech & Telecomm Community Coordinator 74408.29938 2.976332e+06 36161.07 9.040267e+02 0.000 785.50 40 0.000000e+00 0.00 3.012493e+06 2.976332e+06 36161.07 NULL
2022 Dept Of Info Tech & Telecomm Computer Aide-Non-Spvr 51607.11111 4.644640e+05 853.88 9.487556e+01 0.000 27.00 9 0.000000e+00 0.00 4.653179e+05 4.644640e+05 853.88 NULL
2022 Dept Of Info Tech & Telecomm Computer Associate 78485.07273 8.633358e+06 191466.55 1.740605e+03 30.330 3015.75 110 3.033000e+01 3336.30 8.824825e+06 8.636694e+06 188130.25 NULL
2022 Dept Of Info Tech & Telecomm Computer Operations Manager 138076.66667 5.384990e+06 21012.93 5.387931e+02 0.000 224.50 39 0.000000e+00 0.00 5.406003e+06 5.384990e+06 21012.93 NULL
2022 Dept Of Info Tech & Telecomm Computer Programmer Analyst 72074.00000 2.162220e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.162220e+05 2.162220e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Computer Service Technician 61039.00000 6.103900e+04 580.52 5.805200e+02 580.520 12.00 1 5.805200e+02 580.52 6.161952e+04 6.161952e+04 0.00 NULL
2022 Dept Of Info Tech & Telecomm Computer Specialist 112050.36970 1.848831e+07 135583.17 8.217162e+02 0.000 1740.00 165 0.000000e+00 0.00 1.862389e+07 1.848831e+07 135583.17 NULL
2022 Dept Of Info Tech & Telecomm Computer Systems Manager 142857.16279 3.785715e+07 18117.83 6.836917e+01 0.000 239.50 265 0.000000e+00 0.00 3.787527e+07 3.785715e+07 18117.83 NULL
2022 Dept Of Info Tech & Telecomm Confidential Strategy Planner 82387.42857 5.767120e+05 16173.77 2.310539e+03 0.000 275.00 7 0.000000e+00 0.00 5.928858e+05 5.767120e+05 16173.77 NULL
2022 Dept Of Info Tech & Telecomm Cyber Security Analyst 88944.25455 4.891934e+06 15734.69 2.860853e+02 0.000 309.25 55 0.000000e+00 0.00 4.907669e+06 4.891934e+06 15734.69 NULL
2022 Dept Of Info Tech & Telecomm Deputy Commissioner 165780.25000 6.631210e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.631210e+05 6.631210e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Deputy Commissioner Film Office 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Deputy Commissioner Of It 216005.33333 6.480160e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.480160e+05 6.480160e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Director Of Television 60439.00000 1.208780e+05 5468.75 2.734375e+03 2734.375 126.00 2 2.734375e+03 5468.75 1.263468e+05 1.263468e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Economist 85000.00000 8.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.500000e+04 8.500000e+04 0.00 NULL
2022 Dept Of Info Tech & Telecomm Executive Agency Counsel 165937.61905 3.484690e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 3.484690e+06 3.484690e+06 0.00 NULL
2022 Dept Of Info Tech & Telecomm Executive Program Specialist 98285.71429 6.880000e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.880000e+05 6.880000e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Film Manager 74981.00000 7.498100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.498100e+04 7.498100e+04 0.00 NULL
2022 Dept Of Info Tech & Telecomm Graphic Artist 81593.00000 3.263720e+05 5751.96 1.437990e+03 0.000 98.00 4 0.000000e+00 0.00 3.321240e+05 3.263720e+05 5751.96 NULL
2022 Dept Of Info Tech & Telecomm Inspector 58825.66667 1.764770e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.764770e+05 1.764770e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm It Automation And Monitoring Engineer 126537.00000 3.796110e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.796110e+05 3.796110e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm It Infrastructure Engineer 130005.33333 7.800320e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.800320e+05 7.800320e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm It Project Specialist 106747.96429 2.988943e+06 22423.62 8.008436e+02 0.000 319.75 28 0.000000e+00 0.00 3.011367e+06 2.988943e+06 22423.62 NULL
2022 Dept Of Info Tech & Telecomm It Security Specialist 135347.28205 1.055709e+07 155873.47 1.998378e+03 0.000 1874.17 78 0.000000e+00 0.00 1.071296e+07 1.055709e+07 155873.47 NULL
2022 Dept Of Info Tech & Telecomm It Service Management Specialist 98660.00000 4.933000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.933000e+05 4.933000e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Labor Relations Analyst 82298.00000 8.229800e+04 2012.76 2.012760e+03 2012.760 45.50 1 2.012760e+03 2012.76 8.431076e+04 8.431076e+04 0.00 NULL
2022 Dept Of Info Tech & Telecomm Principal Administrative Associate - Non Supvr 72291.30000 1.445826e+06 12602.68 6.301340e+02 0.000 267.00 20 0.000000e+00 0.00 1.458429e+06 1.445826e+06 12602.68 NULL
2022 Dept Of Info Tech & Telecomm Procurement Analyst 84633.71429 5.924360e+05 43.23 6.175714e+00 0.000 1.00 7 0.000000e+00 0.00 5.924792e+05 5.924360e+05 43.23 NULL
2022 Dept Of Info Tech & Telecomm Program Producer 71802.87500 5.744230e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.744230e+05 5.744230e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Quality Assurance Specialist 57098.00000 5.709800e+04 463.32 4.633200e+02 463.320 12.00 1 4.633200e+02 463.32 5.756132e+04 5.756132e+04 0.00 NULL
2022 Dept Of Info Tech & Telecomm Radio And Television Operator 55690.95789 1.058128e+06 39732.30 2.091174e+03 906.250 953.25 19 9.062500e+02 17218.75 1.097860e+06 1.075347e+06 22513.55 NULL
2022 Dept Of Info Tech & Telecomm Secretary 62560.00000 6.256000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.256000e+04 6.256000e+04 0.00 NULL
2022 Dept Of Info Tech & Telecomm Secretary Of Commissioner 61800.00000 6.180000e+04 1200.82 1.200820e+03 1200.820 30.00 1 1.200820e+03 1200.82 6.300082e+04 6.300082e+04 0.00 NULL
2022 Dept Of Info Tech & Telecomm Secretary To The Deputy Commissioner 75197.00000 7.519700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.519700e+04 7.519700e+04 0.00 NULL
2022 Dept Of Info Tech & Telecomm Senior It Architect 168392.85714 1.178750e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.178750e+06 1.178750e+06 0.00 NULL
2022 Dept Of Info Tech & Telecomm Staff Analyst 68261.24000 1.706531e+06 1319.74 5.278960e+01 0.000 15.50 25 0.000000e+00 0.00 1.707851e+06 1.706531e+06 1319.74 NULL
2022 Dept Of Info Tech & Telecomm Staff Analyst Trainee 47448.33333 1.423450e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.423450e+05 1.423450e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Strategic Initiative Specialist 94049.00000 1.880980e+05 545.13 2.725650e+02 272.565 12.25 2 2.725650e+02 545.13 1.886431e+05 1.886431e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Summer College Intern 2651.41705 1.166624e+05 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 1.166624e+05 1.166624e+05 0.00 NULL
2022 Dept Of Info Tech & Telecomm Summer Graduate Intern 2919.62273 8.466906e+04 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 8.466906e+04 8.466906e+04 0.00 NULL
2022 Dept Of Info Tech & Telecomm Supervising Computer Service Technician 70715.00000 7.071500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.071500e+04 7.071500e+04 0.00 NULL
2022 Dept Of Info Tech & Telecomm Supervisor Of Office Machine Operations 49592.00000 4.959200e+04 118.11 1.181100e+02 118.110 4.00 1 1.181100e+02 118.11 4.971011e+04 4.971011e+04 0.00 NULL
2022 Dept Of Info Tech & Telecomm Supervisor Of Radio And Television Operators 80818.00000 4.849080e+05 845.99 1.409983e+02 0.000 14.50 6 0.000000e+00 0.00 4.857540e+05 4.849080e+05 845.99 NULL
2022 Dept Of Info Tech & Telecomm Telecommunication Manager 148425.53846 3.859064e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 3.859064e+06 3.859064e+06 0.00 NULL
2022 Dept Of Info Tech & Telecomm Telecommunications Associate 77935.76471 5.299632e+06 51164.36 7.524171e+02 0.000 820.50 68 0.000000e+00 0.00 5.350796e+06 5.299632e+06 51164.36 NULL
2022 Dept Of Info Tech & Telecomm Telecommunications Manager 116757.11111 1.050814e+06 6754.49 7.504989e+02 0.000 74.00 9 0.000000e+00 0.00 1.057568e+06 1.050814e+06 6754.49 NULL
2022 Dept Of Parks & Recreation *Principal Park Supervisor 86535.00000 8.653500e+04 3950.90 3.950900e+03 3950.900 60.25 1 3.950900e+03 3950.90 9.048590e+04 9.048590e+04 0.00 NULL
2022 Dept Of Parks & Recreation *Senior Estimator 93008.25000 3.720330e+05 1266.96 3.167400e+02 0.000 21.50 4 0.000000e+00 0.00 3.733000e+05 3.720330e+05 1266.96 NULL
2022 Dept Of Parks & Recreation Accountant 75000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2022 Dept Of Parks & Recreation Adm Manager-Non-Mgrl 83786.31930 5.278538e+06 162012.29 2.571624e+03 0.000 2507.25 63 0.000000e+00 0.00 5.440550e+06 5.278538e+06 162012.29 NULL
2022 Dept Of Parks & Recreation Admin Community Relations Specialist 98062.14000 9.806214e+06 458942.36 4.589424e+03 348.925 6344.50 100 3.489250e+02 34892.50 1.026516e+07 9.841106e+06 424049.86 NULL
2022 Dept Of Parks & Recreation Admin Landmarks Preservationist 123600.00000 1.236000e+05 1085.13 1.085130e+03 1085.130 16.00 1 1.085130e+03 1085.13 1.246851e+05 1.246851e+05 0.00 NULL
2022 Dept Of Parks & Recreation Administrative Architect 142636.50000 2.852730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.852730e+05 2.852730e+05 0.00 NULL
2022 Dept Of Parks & Recreation Administrative City Planner 129603.40000 6.480170e+05 1976.21 3.952420e+02 0.000 27.25 5 0.000000e+00 0.00 6.499932e+05 6.480170e+05 1976.21 NULL
2022 Dept Of Parks & Recreation Administrative Community Relations Specialist 130435.94118 2.217411e+06 21422.96 1.260174e+03 0.000 220.50 17 0.000000e+00 0.00 2.238834e+06 2.217411e+06 21422.96 NULL
2022 Dept Of Parks & Recreation Administrative Construction Project Manager 150393.00000 1.503930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503930e+05 1.503930e+05 0.00 NULL
2022 Dept Of Parks & Recreation Administrative Engineer 124103.50000 4.964140e+05 5467.23 1.366807e+03 991.250 74.50 4 9.912500e+02 3965.00 5.018812e+05 5.003790e+05 1502.23 NULL
2022 Dept Of Parks & Recreation Administrative Graphic Artist 100425.00000 2.008500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.008500e+05 2.008500e+05 0.00 NULL
2022 Dept Of Parks & Recreation Administrative Horticulturist 86583.15556 3.896242e+06 126004.76 2.800106e+03 0.000 2184.75 45 0.000000e+00 0.00 4.022247e+06 3.896242e+06 126004.76 NULL
2022 Dept Of Parks & Recreation Administrative Landscape Architect 144844.33333 4.345330e+05 4274.84 1.424947e+03 0.000 64.00 3 0.000000e+00 0.00 4.388078e+05 4.345330e+05 4274.84 NULL
2022 Dept Of Parks & Recreation Administrative Management Auditor 107000.00000 1.070000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.070000e+05 1.070000e+05 0.00 NULL
2022 Dept Of Parks & Recreation Administrative Manager 153000.00000 1.530000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.530000e+05 1.530000e+05 0.00 NULL
2022 Dept Of Parks & Recreation Administrative Parks & Recreation Manager 102306.63415 9.616824e+06 480315.88 5.109743e+03 520.865 6913.00 94 5.208650e+02 48961.31 1.009714e+07 9.665785e+06 431354.57 NULL
2022 Dept Of Parks & Recreation Administrative Procurement Analyst-Non-Mgrl 86067.14286 6.024700e+05 7863.96 1.123423e+03 0.000 122.25 7 0.000000e+00 0.00 6.103340e+05 6.024700e+05 7863.96 NULL
2022 Dept Of Parks & Recreation Administrative Project Manager 109860.81395 4.724015e+06 16609.82 3.862749e+02 0.000 309.50 43 0.000000e+00 0.00 4.740625e+06 4.724015e+06 16609.82 NULL
2022 Dept Of Parks & Recreation Administrative Public Information Specialist 160680.00000 1.606800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.606800e+05 1.606800e+05 0.00 NULL
2022 Dept Of Parks & Recreation Administrative Public Information Specialist Nm Former M1/M2 115800.50000 2.316010e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.316010e+05 2.316010e+05 0.00 NULL
2022 Dept Of Parks & Recreation Administrative Quality Assurance Specialist 82716.00000 8.271600e+04 2993.78 2.993780e+03 2993.780 47.00 1 2.993780e+03 2993.78 8.570978e+04 8.570978e+04 0.00 NULL
2022 Dept Of Parks & Recreation Administrative Staff Analyst 107943.28235 9.175179e+06 175534.75 2.065115e+03 4.420 2080.50 85 4.420000e+00 375.70 9.350714e+06 9.175555e+06 175159.05 NULL
2022 Dept Of Parks & Recreation Administrative Supervisor Of Building Maintenance 114429.00000 2.288580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.288580e+05 2.288580e+05 0.00 NULL
2022 Dept Of Parks & Recreation Agency Attorney 89242.66667 1.338640e+06 2522.75 1.681833e+02 0.000 52.25 15 0.000000e+00 0.00 1.341163e+06 1.338640e+06 2522.75 NULL
2022 Dept Of Parks & Recreation Agency Chief Contracting Officer 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2022 Dept Of Parks & Recreation Architect 105269.00000 1.368497e+06 10083.18 7.756292e+02 0.000 153.75 13 0.000000e+00 0.00 1.378580e+06 1.368497e+06 10083.18 NULL
2022 Dept Of Parks & Recreation Assistant Architect 77152.25000 3.086090e+05 1681.98 4.204950e+02 0.350 29.75 4 3.500000e-01 1.40 3.102910e+05 3.086104e+05 1680.58 NULL
2022 Dept Of Parks & Recreation Assistant Civil Engineer 75054.22222 6.754880e+05 41368.61 4.596512e+03 295.470 729.25 9 2.954700e+02 2659.23 7.168566e+05 6.781472e+05 38709.38 NULL
2022 Dept Of Parks & Recreation Assistant Commissioner 178442.75000 7.137710e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.137710e+05 7.137710e+05 0.00 NULL
2022 Dept Of Parks & Recreation Assistant Electrical Engineer 80034.50000 1.600690e+05 2126.67 1.063335e+03 1063.335 34.00 2 1.063335e+03 2126.67 1.621957e+05 1.621957e+05 0.00 NULL
2022 Dept Of Parks & Recreation Assistant Environmental Engineer 73307.00000 2.199210e+05 2530.68 8.435600e+02 686.180 57.00 3 6.861800e+02 2058.54 2.224517e+05 2.219795e+05 472.14 NULL
2022 Dept Of Parks & Recreation Assistant Landscape Architect 67425.83333 1.618220e+06 7695.49 3.206454e+02 0.000 163.50 24 0.000000e+00 0.00 1.625915e+06 1.618220e+06 7695.49 NULL
2022 Dept Of Parks & Recreation Assistant Mechanical Engineer 70933.20000 3.546660e+05 2058.42 4.116840e+02 0.000 50.00 5 0.000000e+00 0.00 3.567244e+05 3.546660e+05 2058.42 NULL
2022 Dept Of Parks & Recreation Assistant To The Commissioner Of Parks And Recreation 171000.00000 1.710000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.710000e+05 1.710000e+05 0.00 NULL
2022 Dept Of Parks & Recreation Associate Fraud Investigator 94394.50000 1.887890e+05 23272.55 1.163627e+04 11636.275 329.50 2 1.163627e+04 23272.55 2.120615e+05 2.120615e+05 0.00 NULL
2022 Dept Of Parks & Recreation Associate Labor Relations Analyst 82985.00000 8.298500e+04 5416.49 5.416490e+03 5416.490 97.75 1 5.416490e+03 5416.49 8.840149e+04 8.840149e+04 0.00 NULL
2022 Dept Of Parks & Recreation Associate Park Service Worker 47626.79597 1.447855e+07 1403825.50 4.617847e+03 1793.445 34019.44 304 1.793445e+03 545207.28 1.588237e+07 1.502375e+07 858618.22 NULL
2022 Dept Of Parks & Recreation Associate Project Manager 90280.57324 6.680762e+06 65758.74 8.886316e+02 0.325 1080.75 74 3.250000e-01 24.05 6.746521e+06 6.680786e+06 65734.69 NULL
2022 Dept Of Parks & Recreation Associate Quality Assurance Specialist 82914.00000 8.291400e+04 5926.90 5.926900e+03 5926.900 125.25 1 5.926900e+03 5926.90 8.884090e+04 8.884090e+04 0.00 NULL
2022 Dept Of Parks & Recreation Associate Staff Analyst 81805.53068 1.799722e+06 18166.44 8.257473e+02 56.845 268.50 22 5.684500e+01 1250.59 1.817888e+06 1.800972e+06 16915.85 NULL
2022 Dept Of Parks & Recreation Associate Urban Designer 82399.90000 8.239990e+05 5259.98 5.259980e+02 0.000 82.00 10 0.000000e+00 0.00 8.292590e+05 8.239990e+05 5259.98 NULL
2022 Dept Of Parks & Recreation Associate Urban Park Ranger 59442.47054 7.786964e+06 1166458.11 8.904260e+03 5148.170 26668.14 131 5.148170e+03 674410.27 8.953422e+06 8.461374e+06 492047.84 NULL
2022 Dept Of Parks & Recreation Auto Mechanic NA NA 116065.57 3.744051e+03 2552.750 1864.25 31 2.552750e+03 79135.25 NA NA NA NULL
2022 Dept Of Parks & Recreation Automotive Service Worker 43767.15380 4.376715e+05 25317.99 2.531799e+03 2225.380 652.75 10 2.225380e+03 22253.80 4.629895e+05 4.599253e+05 3064.19 NULL
2022 Dept Of Parks & Recreation Blacksmith NA NA 243160.29 1.105274e+04 4249.755 1500.50 22 4.249755e+03 93494.61 NA NA NA NULL
2022 Dept Of Parks & Recreation Blacksmith’s Helper NA NA 102331.65 1.705528e+04 7311.400 1296.25 6 7.311400e+03 43868.40 NA NA NA NULL
2022 Dept Of Parks & Recreation Borough Commissioner 177028.25000 7.081130e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.081130e+05 7.081130e+05 0.00 NULL
2022 Dept Of Parks & Recreation Carpenter NA NA 382610.86 1.034083e+04 4540.920 4796.75 37 4.540920e+03 168014.04 NA NA NA NULL
2022 Dept Of Parks & Recreation Cement Mason NA NA 219111.90 1.153221e+04 3495.560 2436.00 19 3.495560e+03 66415.64 NA NA NA NULL
2022 Dept Of Parks & Recreation Certified It Administrator 99989.41176 1.699820e+06 60158.50 3.538735e+03 2327.670 853.50 17 2.327670e+03 39570.39 1.759978e+06 1.739390e+06 20588.11 NULL
2022 Dept Of Parks & Recreation Certified It Developer 99153.45455 1.090688e+06 39759.67 3.614515e+03 0.000 609.25 11 0.000000e+00 0.00 1.130448e+06 1.090688e+06 39759.67 NULL
2022 Dept Of Parks & Recreation Chief Lifeguard 33578.05824 3.156337e+06 333608.27 3.549024e+03 3243.585 6554.50 94 3.243585e+03 304896.99 3.489946e+06 3.461234e+06 28711.28 NULL
2022 Dept Of Parks & Recreation City Park Worker 31248.43419 4.959127e+07 3008112.66 1.895471e+03 556.990 104442.59 1587 5.569900e+02 883943.13 5.259938e+07 5.047521e+07 2124169.53 NULL
2022 Dept Of Parks & Recreation City Planner 89622.46667 1.344337e+06 318.06 2.120400e+01 0.000 6.00 15 0.000000e+00 0.00 1.344655e+06 1.344337e+06 318.06 NULL
2022 Dept Of Parks & Recreation City Research Scientist 86722.83774 1.821180e+06 3312.29 1.577281e+02 0.000 60.50 21 0.000000e+00 0.00 1.824492e+06 1.821180e+06 3312.29 NULL
2022 Dept Of Parks & Recreation City Seasonal Aide 20648.06566 4.573547e+07 1849102.65 8.348093e+02 193.140 75253.18 2215 1.931400e+02 427805.10 4.758457e+07 4.616327e+07 1421297.55 NULL
2022 Dept Of Parks & Recreation Civil Engineer 109711.25000 8.776900e+05 9382.46 1.172807e+03 355.785 140.75 8 3.557850e+02 2846.28 8.870725e+05 8.805363e+05 6536.18 NULL
2022 Dept Of Parks & Recreation Clerical Aide 17084.02860 5.125209e+04 4256.27 1.418757e+03 1986.930 220.00 3 1.418757e+03 4256.27 5.550836e+04 5.550836e+04 0.00 NULL
2022 Dept Of Parks & Recreation Clerical Associate 51112.66087 2.913422e+06 51658.58 9.062909e+02 0.000 1389.25 57 0.000000e+00 0.00 2.965080e+06 2.913422e+06 51658.58 NULL
2022 Dept Of Parks & Recreation Climber & Pruner 68445.27723 6.912973e+06 1654868.73 1.638484e+04 11092.870 31611.48 101 1.109287e+04 1120379.87 8.567842e+06 8.033353e+06 534488.86 NULL
2022 Dept Of Parks & Recreation Commissioner Of Parks & Recreation 243171.00000 7.295130e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.295130e+05 7.295130e+05 0.00 NULL
2022 Dept Of Parks & Recreation Community Assistant 39954.75000 1.598190e+05 32.65 8.162500e+00 0.000 1.50 4 0.000000e+00 0.00 1.598516e+05 1.598190e+05 32.65 NULL
2022 Dept Of Parks & Recreation Community Associate 36626.15358 5.750306e+06 45160.96 2.876494e+02 0.000 1318.50 157 0.000000e+00 0.00 5.795467e+06 5.750306e+06 45160.96 NULL
2022 Dept Of Parks & Recreation Community Coordinator 66632.18863 3.218335e+07 1045850.01 2.165321e+03 0.000 20194.75 483 0.000000e+00 0.00 3.322920e+07 3.218335e+07 1045850.01 NULL
2022 Dept Of Parks & Recreation Computer Aide-Non-Spvr 55159.80000 2.757990e+05 16995.38 3.399076e+03 1353.500 443.00 5 1.353500e+03 6767.50 2.927944e+05 2.825665e+05 10227.88 NULL
2022 Dept Of Parks & Recreation Computer Associate 75290.89003 1.355236e+06 49094.24 2.727458e+03 0.000 790.75 18 0.000000e+00 0.00 1.404330e+06 1.355236e+06 49094.24 NULL
2022 Dept Of Parks & Recreation Computer Operations Manager 108056.00000 3.241680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.241680e+05 3.241680e+05 0.00 NULL
2022 Dept Of Parks & Recreation Computer Specialist 96681.53846 1.256860e+06 20701.45 1.592419e+03 490.910 346.75 13 4.909100e+02 6381.83 1.277561e+06 1.263242e+06 14319.62 NULL
2022 Dept Of Parks & Recreation Computer Systems Manager 124283.33333 3.728500e+05 4920.63 1.640210e+03 0.000 84.25 3 0.000000e+00 0.00 3.777706e+05 3.728500e+05 4920.63 NULL
2022 Dept Of Parks & Recreation Construction Project Manager 87260.94286 6.108266e+06 94905.31 1.355790e+03 0.415 1597.00 70 4.150000e-01 29.05 6.203171e+06 6.108295e+06 94876.26 NULL
2022 Dept Of Parks & Recreation Counsel 198551.00000 1.985510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.985510e+05 1.985510e+05 0.00 NULL
2022 Dept Of Parks & Recreation Deputy Borough Commissioner 155572.66667 9.334360e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.334360e+05 9.334360e+05 0.00 NULL
2022 Dept Of Parks & Recreation Deputy Chief Of Operations 128018.78571 1.792263e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.792263e+06 1.792263e+06 0.00 NULL
2022 Dept Of Parks & Recreation Deputy Commissioner 199857.50000 1.199145e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.199145e+06 1.199145e+06 0.00 NULL
2022 Dept Of Parks & Recreation Director Of Community Involvement 128750.00000 1.287500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287500e+05 1.287500e+05 0.00 NULL
2022 Dept Of Parks & Recreation Director Of Neighborhood Park Restoration 105318.00000 1.053180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.053180e+05 1.053180e+05 0.00 NULL
2022 Dept Of Parks & Recreation Director Of Puppetry 61960.00000 6.196000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.196000e+04 6.196000e+04 0.00 NULL
2022 Dept Of Parks & Recreation Director Of Urban Park Ranger Program 102094.00000 3.062820e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.062820e+05 3.062820e+05 0.00 NULL
2022 Dept Of Parks & Recreation Electrical Engineer 109077.50000 2.181550e+05 2074.48 1.037240e+03 1037.240 31.25 2 1.037240e+03 2074.48 2.202295e+05 2.202295e+05 0.00 NULL
2022 Dept Of Parks & Recreation Electrician NA NA 576791.10 1.310889e+04 6914.585 6155.50 44 6.914585e+03 304241.74 NA NA NA NULL
2022 Dept Of Parks & Recreation Engineering Technician 59740.00000 5.974000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.974000e+04 5.974000e+04 0.00 NULL
2022 Dept Of Parks & Recreation Environmental Engineer 104845.00000 1.048450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.048450e+05 1.048450e+05 0.00 NULL
2022 Dept Of Parks & Recreation Estimator 93996.00000 9.399600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.399600e+04 9.399600e+04 0.00 NULL
2022 Dept Of Parks & Recreation Executive Agency Counsel 146023.50000 5.840940e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.840940e+05 5.840940e+05 0.00 NULL
2022 Dept Of Parks & Recreation Executive Assistant To The Commissioner 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2022 Dept Of Parks & Recreation Exterminator 47661.71790 5.242789e+05 196464.32 1.786039e+04 11749.570 5166.00 11 1.174957e+04 129245.27 7.207432e+05 6.535242e+05 67219.05 NULL
2022 Dept Of Parks & Recreation Forester 60466.93666 3.930351e+06 104784.94 1.612076e+03 456.690 2459.75 65 4.566900e+02 29684.85 4.035136e+06 3.960036e+06 75100.09 NULL
2022 Dept Of Parks & Recreation Gardener 47967.67590 1.060086e+07 888123.34 4.018658e+03 915.800 23820.15 221 9.158000e+02 202391.80 1.148898e+07 1.080325e+07 685731.54 NULL
2022 Dept Of Parks & Recreation Graphic Artist 58839.00000 5.883900e+04 559.56 5.595600e+02 559.560 14.00 1 5.595600e+02 559.56 5.939856e+04 5.939856e+04 0.00 NULL
2022 Dept Of Parks & Recreation Hostler 12090.70730 3.627212e+04 552.77 1.842567e+02 135.610 23.25 3 1.356100e+02 406.83 3.682489e+04 3.667895e+04 145.94 NULL
2022 Dept Of Parks & Recreation Investigator 68406.46154 8.892840e+05 41426.92 3.186686e+03 0.000 780.25 13 0.000000e+00 0.00 9.307109e+05 8.892840e+05 41426.92 NULL
2022 Dept Of Parks & Recreation It Automation And Monitoring Engineer 85231.00000 8.523100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.523100e+04 8.523100e+04 0.00 NULL
2022 Dept Of Parks & Recreation It Project Specialist 96413.00000 5.784780e+05 2941.38 4.902300e+02 286.575 44.25 6 2.865750e+02 1719.45 5.814194e+05 5.801974e+05 1221.93 NULL
2022 Dept Of Parks & Recreation It Service Management Specialist 75000.00000 7.500000e+04 1298.23 1.298230e+03 1298.230 24.25 1 1.298230e+03 1298.23 7.629823e+04 7.629823e+04 0.00 NULL
2022 Dept Of Parks & Recreation Job Training Participant 8582.12729 2.536019e+07 893244.32 3.022823e+02 0.000 41038.00 2955 0.000000e+00 0.00 2.625343e+07 2.536019e+07 893244.32 NULL
2022 Dept Of Parks & Recreation Labor Relations Analyst 74699.50000 1.493990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.493990e+05 1.493990e+05 0.00 NULL
2022 Dept Of Parks & Recreation Landmarks Preservationist 79914.33333 4.794860e+05 767.28 1.278800e+02 66.530 17.75 6 6.653000e+01 399.18 4.802533e+05 4.798852e+05 368.10 NULL
2022 Dept Of Parks & Recreation Landscape Architect 96284.36842 9.147015e+06 29160.39 3.069515e+02 0.000 428.00 95 0.000000e+00 0.00 9.176175e+06 9.147015e+06 29160.39 NULL
2022 Dept Of Parks & Recreation Letterer And Sign Painter NA NA 23385.04 7.795013e+03 8095.530 531.00 3 7.795013e+03 23385.04 NA NA NA NULL
2022 Dept Of Parks & Recreation Lifeguard 9749.24295 8.979053e+06 730251.48 7.928898e+02 479.040 25103.50 921 4.790400e+02 441195.84 9.709304e+06 9.420249e+06 289055.64 NULL
2022 Dept Of Parks & Recreation Machinist NA NA 11309.01 3.769670e+03 533.820 171.50 3 5.338200e+02 1601.46 NA NA NA NULL
2022 Dept Of Parks & Recreation Maintenance Worker NA NA 691169.78 6.981513e+03 3494.250 14516.00 99 3.494250e+03 345930.75 NA NA NA NULL
2022 Dept Of Parks & Recreation Management Auditor 80000.00000 8.000000e+04 352.45 3.524500e+02 352.450 5.00 1 3.524500e+02 352.45 8.035245e+04 8.035245e+04 0.00 NULL
2022 Dept Of Parks & Recreation Manager Of Park License Agreements 160112.00000 1.601120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.601120e+05 1.601120e+05 0.00 NULL
2022 Dept Of Parks & Recreation Marine Maintenance Mechanic 77198.00000 3.087920e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.087920e+05 3.087920e+05 0.00 NULL
2022 Dept Of Parks & Recreation Masons Helper NA NA 24556.68 1.227834e+04 12278.340 480.75 2 1.227834e+04 24556.68 NA NA NA NULL
2022 Dept Of Parks & Recreation Mechanical Engineer 107685.00000 2.153700e+05 64.18 3.209000e+01 32.090 1.00 2 3.209000e+01 64.18 2.154342e+05 2.154342e+05 0.00 NULL
2022 Dept Of Parks & Recreation Monuments Officer 96682.00000 9.668200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.668200e+04 9.668200e+04 0.00 NULL
2022 Dept Of Parks & Recreation Oiler NA NA 81169.09 2.705636e+04 24534.870 906.50 3 2.453487e+04 73604.61 NA NA NA NULL
2022 Dept Of Parks & Recreation Painter NA NA 435731.39 1.320398e+04 5144.610 5571.00 33 5.144610e+03 169772.13 NA NA NA NULL
2022 Dept Of Parks & Recreation Park Supervisor 76291.14735 3.723008e+07 4283107.17 8.776859e+03 5297.525 79212.55 488 5.297525e+03 2585192.20 4.151319e+07 3.981527e+07 1697914.97 NULL
2022 Dept Of Parks & Recreation Playground Associate 15551.50239 3.172506e+06 28361.24 1.390257e+02 0.000 1319.84 204 0.000000e+00 0.00 3.200868e+06 3.172506e+06 28361.24 NULL
2022 Dept Of Parks & Recreation Plumber NA NA 1473932.60 2.167548e+04 11719.385 14003.00 68 1.171939e+04 796918.18 NA NA NA NULL
2022 Dept Of Parks & Recreation Plumber’s Helper NA NA 133657.27 3.341432e+04 39023.470 1900.00 4 3.341432e+04 133657.27 NA NA NA NULL
2022 Dept Of Parks & Recreation Principal Administrative Associate - Non Supvr 68906.96101 6.477254e+06 165321.65 1.758741e+03 0.000 3231.58 94 0.000000e+00 0.00 6.642576e+06 6.477254e+06 165321.65 NULL
2022 Dept Of Parks & Recreation Procurement Analyst 74328.80952 1.560905e+06 35247.69 1.678461e+03 0.000 791.25 21 0.000000e+00 0.00 1.596153e+06 1.560905e+06 35247.69 NULL
2022 Dept Of Parks & Recreation Project Manager 73643.50000 8.837220e+05 7463.95 6.219958e+02 0.000 155.75 12 0.000000e+00 0.00 8.911859e+05 8.837220e+05 7463.95 NULL
2022 Dept Of Parks & Recreation Public Records Officer 55323.00000 5.532300e+04 703.98 7.039800e+02 703.980 20.00 1 7.039800e+02 703.98 5.602698e+04 5.602698e+04 0.00 NULL
2022 Dept Of Parks & Recreation Puppeteer 47909.00000 1.916360e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.916360e+05 1.916360e+05 0.00 NULL
2022 Dept Of Parks & Recreation Quality Assurance Specialist 57442.00000 5.744200e+04 275.10 2.751000e+02 275.100 7.50 1 2.751000e+02 275.10 5.771710e+04 5.771710e+04 0.00 NULL
2022 Dept Of Parks & Recreation Recreation Director 46117.53473 9.684682e+05 12421.90 5.915190e+02 29.650 333.25 21 2.965000e+01 622.65 9.808901e+05 9.690909e+05 11799.25 NULL
2022 Dept Of Parks & Recreation Recreation Specialist 33232.55547 7.876116e+06 151717.40 6.401578e+02 54.130 5165.91 237 5.413000e+01 12828.81 8.027833e+06 7.888944e+06 138888.59 NULL
2022 Dept Of Parks & Recreation Recreation Supervisor 57622.75190 8.297676e+06 530059.37 3.680968e+03 877.965 11390.04 144 8.779650e+02 126426.96 8.827736e+06 8.424103e+06 403632.41 NULL
2022 Dept Of Parks & Recreation Research Assistant 63935.50000 1.278710e+05 5811.17 2.905585e+03 2905.585 138.25 2 2.905585e+03 5811.17 1.336822e+05 1.336822e+05 0.00 NULL
2022 Dept Of Parks & Recreation Secretary 56024.00000 1.120480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.120480e+05 1.120480e+05 0.00 NULL
2022 Dept Of Parks & Recreation Senior Photographer 75824.50000 1.516490e+05 2848.40 1.424200e+03 1424.200 53.25 2 1.424200e+03 2848.40 1.544974e+05 1.544974e+05 0.00 NULL
2022 Dept Of Parks & Recreation Senior Stationary Engineer NA NA 209907.93 6.996931e+04 62252.130 1892.50 3 6.225213e+04 186756.39 NA NA NA NULL
2022 Dept Of Parks & Recreation Sheet Metal Worker NA NA 42802.88 8.560576e+03 5212.800 369.50 5 5.212800e+03 26064.00 NA NA NA NULL
2022 Dept Of Parks & Recreation Staff Analyst 68473.53333 1.027103e+06 42117.92 2.807861e+03 14.010 654.25 15 1.401000e+01 210.15 1.069221e+06 1.027313e+06 41907.77 NULL
2022 Dept Of Parks & Recreation Stationary Engineer NA NA 1816118.41 3.026864e+04 28174.405 19499.22 60 2.817440e+04 1690464.30 NA NA NA NULL
2022 Dept Of Parks & Recreation Steam Fitter NA NA 259151.04 2.591510e+04 21725.000 2357.00 10 2.172500e+04 217250.00 NA NA NA NULL
2022 Dept Of Parks & Recreation Steam Fitter’s Helper NA NA 701.25 7.012500e+02 701.250 8.50 1 7.012500e+02 701.25 NA NA NA NULL
2022 Dept Of Parks & Recreation Supervising Computer Service Technician 70691.00000 7.069100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.069100e+04 7.069100e+04 0.00 NULL
2022 Dept Of Parks & Recreation Supervising Dockmaster 60766.87500 4.861350e+05 414.91 5.186375e+01 0.000 10.50 8 0.000000e+00 0.00 4.865499e+05 4.861350e+05 414.91 NULL
2022 Dept Of Parks & Recreation Supervisor 72823.00000 7.282300e+04 33197.76 3.319776e+04 33197.760 658.00 1 3.319776e+04 33197.76 1.060208e+05 1.060208e+05 0.00 NULL
2022 Dept Of Parks & Recreation Supervisor Carpenter NA NA 110774.20 3.692473e+04 54265.300 1321.50 3 3.692473e+04 110774.20 NA NA NA NULL
2022 Dept Of Parks & Recreation Supervisor Electrician NA NA 59061.64 2.953082e+04 29530.820 587.00 2 2.953082e+04 59061.64 NA NA NA NULL
2022 Dept Of Parks & Recreation Supervisor Of Mechanics NA NA 487142.86 4.059524e+04 21443.025 4693.25 12 2.144303e+04 257316.30 NA NA NA NULL
2022 Dept Of Parks & Recreation Supervisor Of Stock Workers 52994.00000 5.299400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.299400e+04 5.299400e+04 0.00 NULL
2022 Dept Of Parks & Recreation Supervisor Painter NA NA 92112.37 3.070412e+04 37990.960 1098.50 3 3.070412e+04 92112.37 NA NA NA NULL
2022 Dept Of Parks & Recreation Supervisor Plumber NA NA 468542.92 7.809049e+04 76834.570 4274.75 6 7.683457e+04 461007.42 NA NA NA NULL
2022 Dept Of Parks & Recreation Surveyor 71841.42857 5.028900e+05 14533.93 2.076276e+03 1405.320 307.50 7 1.405320e+03 9837.24 5.174239e+05 5.127272e+05 4696.69 NULL
2022 Dept Of Parks & Recreation Telecommunications Associate 69170.50000 6.917050e+05 40011.41 4.001141e+03 1525.415 747.75 10 1.525415e+03 15254.15 7.317164e+05 7.069592e+05 24757.26 NULL
2022 Dept Of Parks & Recreation Telephone Service Technician 64072.83333 3.844370e+05 51360.55 8.560092e+03 9297.235 1106.75 6 8.560092e+03 51360.55 4.357975e+05 4.357975e+05 0.00 NULL
2022 Dept Of Parks & Recreation Thermostat Repairer NA NA 46112.07 4.611207e+04 46112.070 436.75 1 4.611207e+04 46112.07 NA NA NA NULL
2022 Dept Of Parks & Recreation Urban Park Ranger 41803.28541 1.780820e+07 1014504.25 2.381465e+03 275.635 26113.92 426 2.756350e+02 117420.51 1.882270e+07 1.792562e+07 897083.74 NULL
2022 Dept Of Records & Info Service Adm Manager-Non-Mgrl 82711.75000 3.308470e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.308470e+05 3.308470e+05 0.00 NULL
2022 Dept Of Records & Info Service Administrative Public Records Officer 107803.25000 4.312130e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.312130e+05 4.312130e+05 0.00 NULL
2022 Dept Of Records & Info Service Agency Attorney 117541.00000 1.175410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.175410e+05 1.175410e+05 0.00 NULL
2022 Dept Of Records & Info Service Assistant Commissioner 156972.00000 1.569720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.569720e+05 1.569720e+05 0.00 NULL
2022 Dept Of Records & Info Service Associate Project Manager 103000.00000 1.030000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030000e+05 1.030000e+05 0.00 NULL
2022 Dept Of Records & Info Service Associate Public Records Officer 65645.77778 5.908120e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.908120e+05 5.908120e+05 0.00 NULL
2022 Dept Of Records & Info Service Associate Staff Analyst 105138.00000 1.051380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.051380e+05 1.051380e+05 0.00 NULL
2022 Dept Of Records & Info Service Certified It Administrator 124376.00000 1.243760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.243760e+05 1.243760e+05 0.00 NULL
2022 Dept Of Records & Info Service Certified It Developer 114518.00000 2.290360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.290360e+05 2.290360e+05 0.00 NULL
2022 Dept Of Records & Info Service Clerical Associate 46325.00000 9.265000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.265000e+04 9.265000e+04 0.00 NULL
2022 Dept Of Records & Info Service Commissioner 218405.00000 2.184050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.184050e+05 2.184050e+05 0.00 NULL
2022 Dept Of Records & Info Service Community Assistant 40245.87000 4.024587e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.024587e+04 4.024587e+04 0.00 NULL
2022 Dept Of Records & Info Service Community Associate 48856.33333 1.465690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.465690e+05 1.465690e+05 0.00 NULL
2022 Dept Of Records & Info Service Community Coordinator 77128.60000 3.856430e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.856430e+05 3.856430e+05 0.00 NULL
2022 Dept Of Records & Info Service Computer Associate 67817.00000 1.356340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.356340e+05 1.356340e+05 0.00 NULL
2022 Dept Of Records & Info Service Computer Specialist 94244.00000 9.424400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.424400e+04 9.424400e+04 0.00 NULL
2022 Dept Of Records & Info Service Computer Systems Manager 157584.00000 3.151680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.151680e+05 3.151680e+05 0.00 NULL
2022 Dept Of Records & Info Service Motor Vehicle Operator 45141.50000 9.028300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.028300e+04 9.028300e+04 0.00 NULL
2022 Dept Of Records & Info Service Principal Administrative Associate - Non Supvr 62094.50000 2.483780e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.483780e+05 2.483780e+05 0.00 NULL
2022 Dept Of Records & Info Service Public Records Aide 33644.56790 3.700902e+05 396.12 3.601091e+01 0.000 0.00 11 0.000000e+00 0.00 3.704864e+05 3.700902e+05 396.12 NULL
2022 Dept Of Records & Info Service Public Records Officer 48004.35554 6.720610e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 6.720610e+05 6.720610e+05 0.00 NULL
2022 Dept Of Records & Info Service Research Assistant 60434.00000 1.208680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.208680e+05 1.208680e+05 0.00 NULL
2022 Dept Of Records & Info Service Staff Analyst 61866.00000 6.186600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.186600e+04 6.186600e+04 0.00 NULL
2022 Dept Of Records & Info Service Stock Worker 27958.81080 2.795881e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.795881e+04 2.795881e+04 0.00 NULL
2022 Dept Of Records & Info Service Summer Graduate Intern 159.30000 1.593000e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.593000e+02 1.593000e+02 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Accountant 80233.00000 2.406990e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.406990e+05 2.406990e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Adm Manager-Non-Mgrl 83016.06250 1.328257e+06 533.12 3.332000e+01 0.000 10.75 16 0.000000e+00 0.00 1.328790e+06 1.328257e+06 533.12 NULL
2022 Dept Of Youth & Comm Dev Srvs Admin Community Relations Specialist 83532.58108 6.181411e+06 111873.92 1.511810e+03 0.000 2199.50 74 0.000000e+00 0.00 6.293285e+06 6.181411e+06 111873.92 NULL
2022 Dept Of Youth & Comm Dev Srvs Admin Contract Specialist 137539.00000 1.512929e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.512929e+06 1.512929e+06 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Administrative Business Promotion Coordinator 90224.09091 9.924650e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 9.924650e+05 9.924650e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Administrative Community Relations Specialist 122756.92308 1.595840e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.595840e+06 1.595840e+06 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Administrative Contract Specialist 84404.12500 5.401864e+06 21745.97 3.397808e+02 0.000 420.25 64 0.000000e+00 0.00 5.423610e+06 5.401864e+06 21745.97 NULL
2022 Dept Of Youth & Comm Dev Srvs Administrative Graphic Artist 106341.00000 1.063410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.063410e+05 1.063410e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Administrative Labor Relations Analyst 106985.00000 2.139700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.139700e+05 2.139700e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Administrative Management Auditor 95103.50000 7.608280e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.608280e+05 7.608280e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Administrative Manager 113210.06667 1.698151e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.698151e+06 1.698151e+06 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Administrative Procurement Analyst 147250.33333 4.417510e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.417510e+05 4.417510e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Administrative Procurement Analyst-Non-Mgrl 75476.00000 3.773800e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.773800e+05 3.773800e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Administrative Public Information Specialist 108821.00000 1.088210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.088210e+05 1.088210e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Administrative Staff Analyst 116555.27054 6.527095e+06 493.35 8.809821e+00 0.000 6.75 56 0.000000e+00 0.00 6.527588e+06 6.527095e+06 493.35 NULL
2022 Dept Of Youth & Comm Dev Srvs Agency Attorney 98983.83333 5.939030e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.939030e+05 5.939030e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Agency Chief Contracting Officer 191580.00000 1.915800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.915800e+05 1.915800e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Assist Commissioner For Intergovernmental Relations 185000.00000 1.850000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.850000e+05 1.850000e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Associate Contract Specialist 70855.94122 4.180501e+06 25474.22 4.317664e+02 0.000 513.25 59 0.000000e+00 0.00 4.205975e+06 4.180501e+06 25474.22 NULL
2022 Dept Of Youth & Comm Dev Srvs Associate Staff Analyst 88029.12500 7.042330e+05 1860.68 2.325850e+02 0.000 34.25 8 0.000000e+00 0.00 7.060937e+05 7.042330e+05 1860.68 NULL
2022 Dept Of Youth & Comm Dev Srvs Certified It Administrator 109179.33333 3.275380e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.275380e+05 3.275380e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Certified It Developer 117787.33333 1.413448e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.413448e+06 1.413448e+06 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs City Research Scientist 86411.33333 2.592340e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.592340e+05 2.592340e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Clerical Associate 58354.00000 1.167080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.167080e+05 1.167080e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs College Aide - Assignment Levels Ii And Iii 10234.96285 1.125846e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.125846e+05 1.125846e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Commissioner Of Community Development 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Community Assistant 18432.41186 9.216206e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.216206e+04 9.216206e+04 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Community Associate 52802.85714 3.696200e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.696200e+05 3.696200e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Community Coordinator 62746.07496 4.141241e+06 38688.65 5.861917e+02 0.000 677.25 66 0.000000e+00 0.00 4.179930e+06 4.141241e+06 38688.65 NULL
2022 Dept Of Youth & Comm Dev Srvs Computer Associate 86104.00000 3.444160e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.444160e+05 3.444160e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Computer Specialist 110195.06250 1.763121e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.763121e+06 1.763121e+06 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Computer Systems Manager 123879.33333 1.486552e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.486552e+06 1.486552e+06 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Contract Specialist 66827.72414 1.938004e+06 8135.80 2.805448e+02 0.000 173.75 29 0.000000e+00 0.00 1.946140e+06 1.938004e+06 8135.80 NULL
2022 Dept Of Youth & Comm Dev Srvs Deputy Commissioner 195471.00000 5.864130e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.864130e+05 5.864130e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Director Of Planning 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Executive Agency Counsel 162661.66667 4.879850e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.879850e+05 4.879850e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Executive Assistant To The Commissioner Of Employment 115000.00000 2.300000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.300000e+05 2.300000e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Management Auditor 77506.00000 7.750600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.750600e+04 7.750600e+04 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Motor Vehicle Operator 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Photographer 47104.14500 4.710414e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.710414e+04 4.710414e+04 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Principal Administrative Associate - Non Supvr 71616.44087 1.862027e+06 482.58 1.856077e+01 0.000 13.00 26 0.000000e+00 0.00 1.862510e+06 1.862027e+06 482.58 NULL
2022 Dept Of Youth & Comm Dev Srvs Procurement Analyst 65847.05263 1.251094e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.251094e+06 1.251094e+06 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Public Records Aide 39357.00000 3.935700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.935700e+04 3.935700e+04 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Research Assistant 53237.00000 5.323700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.323700e+04 5.323700e+04 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Secretary 53255.00000 5.325500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.325500e+04 5.325500e+04 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Secretary To Commissioner 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Senior Field Supervisor 13905.78382 4.449851e+05 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 4.449851e+05 4.449851e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Staff Analyst 74219.85714 5.195390e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.195390e+05 5.195390e+05 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Supervisor Of Motor Transport 68420.00000 6.842000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.842000e+04 6.842000e+04 0.00 NULL
2022 Dept Of Youth & Comm Dev Srvs Youth Coordinator 42832.66000 2.569960e+05 42022.01 7.003668e+03 1535.535 1009.75 6 1.535535e+03 9213.21 2.990180e+05 2.662092e+05 32808.80 NULL
2022 Dept. Of Design & Construction *Certified Local Area Network Administrator 127916.00000 1.279160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.279160e+05 1.279160e+05 0.00 NULL
2022 Dept. Of Design & Construction *Senior Estimator 94149.00000 1.882980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.882980e+05 1.882980e+05 0.00 NULL
2022 Dept. Of Design & Construction Accountant 76461.26667 1.146919e+06 21313.86 1.420924e+03 1226.090 487.50 15 1.226090e+03 18391.35 1.168233e+06 1.165310e+06 2922.51 NULL
2022 Dept. Of Design & Construction Adm Manager-Non-Mgrl 86259.83333 1.552677e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.552677e+06 1.552677e+06 0.00 NULL
2022 Dept. Of Design & Construction Admin Community Relations Specialist 99039.85714 1.386558e+06 2478.41 1.770293e+02 29.955 18.25 14 2.995500e+01 419.37 1.389036e+06 1.386977e+06 2059.04 NULL
2022 Dept. Of Design & Construction Admin Construction Project Manager 110609.57778 4.977431e+06 72218.24 1.604850e+03 0.000 1012.50 45 0.000000e+00 0.00 5.049649e+06 4.977431e+06 72218.24 NULL
2022 Dept. Of Design & Construction Admin Contract Specialist 107809.00000 1.078090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.078090e+05 1.078090e+05 0.00 NULL
2022 Dept. Of Design & Construction Administrative Accountant 101070.00000 3.032100e+05 1371.74 4.572467e+02 0.000 33.25 3 0.000000e+00 0.00 3.045817e+05 3.032100e+05 1371.74 NULL
2022 Dept. Of Design & Construction Administrative Architect 130994.08571 4.584793e+06 5384.71 1.538489e+02 0.000 68.00 35 0.000000e+00 0.00 4.590178e+06 4.584793e+06 5384.71 NULL
2022 Dept. Of Design & Construction Administrative Business Promotion Coordinator 144200.00000 1.442000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.442000e+05 1.442000e+05 0.00 NULL
2022 Dept. Of Design & Construction Administrative City Planner 119841.66667 3.595250e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.595250e+05 3.595250e+05 0.00 NULL
2022 Dept. Of Design & Construction Administrative Community Relations Specialist 198273.75000 7.930950e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.930950e+05 7.930950e+05 0.00 NULL
2022 Dept. Of Design & Construction Administrative Construction Project Manager 154442.62500 3.706623e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 3.706623e+06 3.706623e+06 0.00 NULL
2022 Dept. Of Design & Construction Administrative Engineer 134562.25610 1.103410e+07 180507.21 2.201307e+03 0.000 2640.75 82 0.000000e+00 0.00 1.121461e+07 1.103410e+07 180507.21 NULL
2022 Dept. Of Design & Construction Administrative Graphic Artist 116452.50000 2.329050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.329050e+05 2.329050e+05 0.00 NULL
2022 Dept. Of Design & Construction Administrative Landmarks Preservationist 141766.00000 1.417660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.417660e+05 1.417660e+05 0.00 NULL
2022 Dept. Of Design & Construction Administrative Landscape Architect 130911.50000 5.236460e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.236460e+05 5.236460e+05 0.00 NULL
2022 Dept. Of Design & Construction Administrative Manager 164639.00000 4.939170e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.939170e+05 4.939170e+05 0.00 NULL
2022 Dept. Of Design & Construction Administrative Procurement Analyst-Non-Mgrl 96690.50000 1.160286e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.160286e+06 1.160286e+06 0.00 NULL
2022 Dept. Of Design & Construction Administrative Project Manager 112733.62227 1.589544e+07 215012.34 1.524910e+03 0.000 3435.00 141 0.000000e+00 0.00 1.611045e+07 1.589544e+07 215012.34 NULL
2022 Dept. Of Design & Construction Administrative Public Information Specialist 161544.00000 1.615440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.615440e+05 1.615440e+05 0.00 NULL
2022 Dept. Of Design & Construction Administrative Staff Analyst 110214.88568 4.077951e+06 1460.19 3.946459e+01 0.000 15.00 37 0.000000e+00 0.00 4.079411e+06 4.077951e+06 1460.19 NULL
2022 Dept. Of Design & Construction Administrative Supervisor Of Building Maintenance 99254.00000 9.925400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.925400e+04 9.925400e+04 0.00 NULL
2022 Dept. Of Design & Construction Agency Attorney 87098.16667 5.225890e+05 7429.19 1.238198e+03 0.000 162.00 6 0.000000e+00 0.00 5.300182e+05 5.225890e+05 7429.19 NULL
2022 Dept. Of Design & Construction Agency Attorney Interne 62397.00000 6.239700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.239700e+04 6.239700e+04 0.00 NULL
2022 Dept. Of Design & Construction Agency Chief Contracting Officer 149350.00000 2.987000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.987000e+05 2.987000e+05 0.00 NULL
2022 Dept. Of Design & Construction Architect 103370.13333 1.550552e+06 1510.60 1.007067e+02 0.000 24.25 15 0.000000e+00 0.00 1.552063e+06 1.550552e+06 1510.60 NULL
2022 Dept. Of Design & Construction Architectural Intern 62260.00000 6.226000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.226000e+04 6.226000e+04 0.00 NULL
2022 Dept. Of Design & Construction Asbestos Hazard Investigator 73112.66667 2.193380e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.193380e+05 2.193380e+05 0.00 NULL
2022 Dept. Of Design & Construction Ass Commissioner Design And Construction Management 187460.00000 1.874600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.874600e+05 1.874600e+05 0.00 NULL
2022 Dept. Of Design & Construction Assistant Architect 83071.00000 2.492130e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.492130e+05 2.492130e+05 0.00 NULL
2022 Dept. Of Design & Construction Assistant Civil Engineer 70051.08462 9.106641e+06 212689.53 1.636073e+03 464.875 4833.00 130 4.648750e+02 60433.75 9.319331e+06 9.167075e+06 152255.78 NULL
2022 Dept. Of Design & Construction Assistant Electrical Engineer 79126.50000 1.582530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.582530e+05 1.582530e+05 0.00 NULL
2022 Dept. Of Design & Construction Assistant Environmental Engineer 74606.00000 7.460600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.460600e+04 7.460600e+04 0.00 NULL
2022 Dept. Of Design & Construction Assistant Landscape Architect 71357.66667 2.140730e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.140730e+05 2.140730e+05 0.00 NULL
2022 Dept. Of Design & Construction Assistant Mechanical Engineer 80178.50000 1.603570e+05 1500.46 7.502300e+02 750.230 29.25 2 7.502300e+02 1500.46 1.618575e+05 1.618575e+05 0.00 NULL
2022 Dept. Of Design & Construction Assistant Urban Designer 72100.00000 1.442000e+05 981.32 4.906600e+02 490.660 24.75 2 4.906600e+02 981.32 1.451813e+05 1.451813e+05 0.00 NULL
2022 Dept. Of Design & Construction Associate Investigator 70970.75000 2.838830e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.838830e+05 2.838830e+05 0.00 NULL
2022 Dept. Of Design & Construction Associate Project Manager 91862.60274 6.705970e+06 190699.24 2.612318e+03 0.000 3045.00 73 0.000000e+00 0.00 6.896669e+06 6.705970e+06 190699.24 NULL
2022 Dept. Of Design & Construction Associate Public Health Sanitarian 98444.00000 9.844400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.844400e+04 9.844400e+04 0.00 NULL
2022 Dept. Of Design & Construction Associate Staff Analyst 89495.37500 1.431926e+06 245.52 1.534500e+01 0.000 0.00 16 0.000000e+00 0.00 1.432172e+06 1.431926e+06 245.52 NULL
2022 Dept. Of Design & Construction Associate Urban Designer 94054.50000 5.643270e+05 492.00 8.200000e+01 0.000 7.00 6 0.000000e+00 0.00 5.648190e+05 5.643270e+05 492.00 NULL
2022 Dept. Of Design & Construction Certified It Administrator 105159.25000 4.206370e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.206370e+05 4.206370e+05 0.00 NULL
2022 Dept. Of Design & Construction Certified It Developer 103197.27273 1.135170e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.135170e+06 1.135170e+06 0.00 NULL
2022 Dept. Of Design & Construction City Planner 90608.00000 5.436480e+05 18569.96 3.094993e+03 0.000 391.00 6 0.000000e+00 0.00 5.622180e+05 5.436480e+05 18569.96 NULL
2022 Dept. Of Design & Construction Civil Engineer 96187.59091 2.116127e+06 11981.18 5.445991e+02 28.820 173.25 22 2.882000e+01 634.04 2.128108e+06 2.116761e+06 11347.14 NULL
2022 Dept. Of Design & Construction Civil Engineering Intern 57269.00000 1.259918e+06 6780.39 3.081995e+02 0.000 187.50 22 0.000000e+00 0.00 1.266698e+06 1.259918e+06 6780.39 NULL
2022 Dept. Of Design & Construction Claim Specialist 57000.00000 5.700000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.700000e+04 5.700000e+04 0.00 NULL
2022 Dept. Of Design & Construction Clerical Associate 55364.74783 1.273389e+06 522.97 2.273783e+01 0.000 14.25 23 0.000000e+00 0.00 1.273912e+06 1.273389e+06 522.97 NULL
2022 Dept. Of Design & Construction College Aide 12040.95312 4.816381e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.816381e+04 4.816381e+04 0.00 NULL
2022 Dept. Of Design & Construction Commissioner Of Design & Construction 243171.00000 4.863420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863420e+05 4.863420e+05 0.00 NULL
2022 Dept. Of Design & Construction Community Assistant 29598.28485 5.919657e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.919657e+04 5.919657e+04 0.00 NULL
2022 Dept. Of Design & Construction Community Associate 49493.75000 7.919000e+05 3784.33 2.365206e+02 0.000 123.00 16 0.000000e+00 0.00 7.956843e+05 7.919000e+05 3784.33 NULL
2022 Dept. Of Design & Construction Community Coordinator 70514.65143 2.468013e+06 6474.95 1.849986e+02 0.000 149.75 35 0.000000e+00 0.00 2.474488e+06 2.468013e+06 6474.95 NULL
2022 Dept. Of Design & Construction Computer Aide-Non-Spvr 65562.00000 6.556200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.556200e+04 6.556200e+04 0.00 NULL
2022 Dept. Of Design & Construction Computer Associate 91123.58667 2.733708e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.733708e+05 2.733708e+05 0.00 NULL
2022 Dept. Of Design & Construction Computer Programmer Analyst 60566.50000 1.211330e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.211330e+05 1.211330e+05 0.00 NULL
2022 Dept. Of Design & Construction Computer Service Technician 63564.66667 1.906940e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.906940e+05 1.906940e+05 0.00 NULL
2022 Dept. Of Design & Construction Computer Specialist 102413.71429 2.150688e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 2.150688e+06 2.150688e+06 0.00 NULL
2022 Dept. Of Design & Construction Computer Systems Manager 129052.75000 1.032422e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.032422e+06 1.032422e+06 0.00 NULL
2022 Dept. Of Design & Construction Construction Project Manager 86103.80390 9.040899e+06 241469.68 2.299711e+03 0.000 4256.00 105 0.000000e+00 0.00 9.282369e+06 9.040899e+06 241469.68 NULL
2022 Dept. Of Design & Construction Deputy Commissioner 192000.00000 1.920000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.920000e+05 1.920000e+05 0.00 NULL
2022 Dept. Of Design & Construction Deputy Commissioner For Policy And Analysis 200140.00000 2.001400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.001400e+05 2.001400e+05 0.00 NULL
2022 Dept. Of Design & Construction Director For Equal Employment Opportunity 127342.00000 1.273420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.273420e+05 1.273420e+05 0.00 NULL
2022 Dept. Of Design & Construction Electrical Engineer 86337.00000 8.633700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.633700e+04 8.633700e+04 0.00 NULL
2022 Dept. Of Design & Construction Engineering Technician 65389.33333 1.373176e+06 8319.78 3.961800e+02 0.000 208.75 21 0.000000e+00 0.00 1.381496e+06 1.373176e+06 8319.78 NULL
2022 Dept. Of Design & Construction Estimator 83148.66667 1.247230e+06 26335.75 1.755717e+03 0.000 519.25 15 0.000000e+00 0.00 1.273566e+06 1.247230e+06 26335.75 NULL
2022 Dept. Of Design & Construction Executive Agency Counsel 173855.87500 1.390847e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.390847e+06 1.390847e+06 0.00 NULL
2022 Dept. Of Design & Construction Executive Program Specialist 169537.50000 3.390750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.390750e+05 3.390750e+05 0.00 NULL
2022 Dept. Of Design & Construction First Deputy Commissioner 232000.00000 2.320000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.320000e+05 2.320000e+05 0.00 NULL
2022 Dept. Of Design & Construction Geologist 82404.00000 4.944240e+05 2151.37 3.585617e+02 0.000 41.25 6 0.000000e+00 0.00 4.965754e+05 4.944240e+05 2151.37 NULL
2022 Dept. Of Design & Construction Graphic Artist 84485.75000 3.379430e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.379430e+05 3.379430e+05 0.00 NULL
2022 Dept. Of Design & Construction Highways And Sewers Inspector 65490.50000 1.309810e+05 8480.48 4.240240e+03 4240.240 173.00 2 4.240240e+03 8480.48 1.394615e+05 1.394615e+05 0.00 NULL
2022 Dept. Of Design & Construction Industrial Hygienist 56724.60000 2.836230e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.836230e+05 2.836230e+05 0.00 NULL
2022 Dept. Of Design & Construction Inspector 77921.00000 7.792100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.792100e+04 7.792100e+04 0.00 NULL
2022 Dept. Of Design & Construction Investigator 54970.40000 2.748520e+05 176.23 3.524600e+01 23.150 5.75 5 2.315000e+01 115.75 2.750282e+05 2.749678e+05 60.48 NULL
2022 Dept. Of Design & Construction Landscape Architect 95646.00000 3.825840e+05 3149.83 7.874575e+02 0.000 49.50 4 0.000000e+00 0.00 3.857338e+05 3.825840e+05 3149.83 NULL
2022 Dept. Of Design & Construction Management Auditor 85525.75000 3.421030e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.421030e+05 3.421030e+05 0.00 NULL
2022 Dept. Of Design & Construction Mechanical Engineer 100572.33333 3.017170e+05 905.21 3.017367e+02 0.000 13.50 3 0.000000e+00 0.00 3.026222e+05 3.017170e+05 905.21 NULL
2022 Dept. Of Design & Construction Mechanical Engineering Intern 62260.00000 1.245200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.245200e+05 1.245200e+05 0.00 NULL
2022 Dept. Of Design & Construction Motor Vehicle Operator 49074.00000 4.907400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.907400e+04 4.907400e+04 0.00 NULL
2022 Dept. Of Design & Construction Motor Vehicle Supervisor 60144.00000 1.202880e+05 5624.21 2.812105e+03 2812.105 126.75 2 2.812105e+03 5624.21 1.259122e+05 1.259122e+05 0.00 NULL
2022 Dept. Of Design & Construction Principal Administrative Associate - Non Supvr 68869.29412 2.341556e+06 6323.61 1.859885e+02 0.000 156.75 34 0.000000e+00 0.00 2.347880e+06 2.341556e+06 6323.61 NULL
2022 Dept. Of Design & Construction Principal Title Examiner 64175.00000 1.283500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.283500e+05 1.283500e+05 0.00 NULL
2022 Dept. Of Design & Construction Procurement Analyst 74308.42857 1.040318e+06 6062.54 4.330386e+02 0.000 151.00 14 0.000000e+00 0.00 1.046381e+06 1.040318e+06 6062.54 NULL
2022 Dept. Of Design & Construction Program Producer 90730.00000 9.073000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.073000e+04 9.073000e+04 0.00 NULL
2022 Dept. Of Design & Construction Project Manager 72896.76190 3.061664e+06 91167.29 2.170650e+03 0.000 1817.25 42 0.000000e+00 0.00 3.152831e+06 3.061664e+06 91167.29 NULL
2022 Dept. Of Design & Construction Project Manager Intern# 52237.72727 1.149230e+06 511.26 2.323909e+01 0.000 12.75 22 0.000000e+00 0.00 1.149741e+06 1.149230e+06 511.26 NULL
2022 Dept. Of Design & Construction Public Records Aide 46863.20000 4.686320e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.686320e+05 4.686320e+05 0.00 NULL
2022 Dept. Of Design & Construction Quality Assurance Specialist 67403.00000 6.740300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.740300e+04 6.740300e+04 0.00 NULL
2022 Dept. Of Design & Construction Research Assistant 60491.50000 1.209830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.209830e+05 1.209830e+05 0.00 NULL
2022 Dept. Of Design & Construction Secretary 57598.50000 4.607880e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.607880e+05 4.607880e+05 0.00 NULL
2022 Dept. Of Design & Construction Special Assistant 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2022 Dept. Of Design & Construction Special Assistant To The Commissioner 157075.00000 1.570750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.570750e+05 1.570750e+05 0.00 NULL
2022 Dept. Of Design & Construction Staff Analyst 69427.55378 3.124240e+06 13471.32 2.993627e+02 0.000 278.25 45 0.000000e+00 0.00 3.137711e+06 3.124240e+06 13471.32 NULL
2022 Dept. Of Design & Construction Staff Analyst Trainee 58009.00000 5.800900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.800900e+04 5.800900e+04 0.00 NULL
2022 Dept. Of Design & Construction Stock Worker 49870.00000 9.974000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.974000e+04 9.974000e+04 0.00 NULL
2022 Dept. Of Design & Construction Summer College Intern 522.60000 1.306500e+04 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.306500e+04 1.306500e+04 0.00 NULL
2022 Dept. Of Design & Construction Summer Graduate Intern 770.00000 3.850000e+03 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.850000e+03 3.850000e+03 0.00 NULL
2022 Dept. Of Design & Construction Supervising Special Officer 73884.00000 7.388400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.388400e+04 7.388400e+04 0.00 NULL
2022 Dept. Of Design & Construction Supervisor Of Electrical Installations & Maintenance 84003.00000 1.680060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.680060e+05 1.680060e+05 0.00 NULL
2022 Dept. Of Design & Construction Supervisor Of Stock Workers 70530.00000 7.053000e+04 6103.99 6.103990e+03 6103.990 139.75 1 6.103990e+03 6103.99 7.663399e+04 7.663399e+04 0.00 NULL
2022 Dept. Of Design & Construction Surveyor 77106.93395 3.315598e+06 10595.40 2.464047e+02 0.000 211.50 43 0.000000e+00 0.00 3.326194e+06 3.315598e+06 10595.40 NULL
2022 Dept. Of Design & Construction Transportation Specialist 100941.00000 2.018820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.018820e+05 2.018820e+05 0.00 NULL
2022 Dept. Of Homeless Services Adm Manager-Non-Mgrl 74696.00000 1.120440e+06 36091.43 2.406095e+03 0.000 716.00 15 0.000000e+00 0.00 1.156531e+06 1.120440e+06 36091.43 NULL
2022 Dept. Of Homeless Services Admin Community Relations Specialist 88811.73765 3.019599e+06 145635.20 4.283388e+03 95.525 2283.50 34 9.552500e+01 3247.85 3.165234e+06 3.022847e+06 142387.35 NULL
2022 Dept. Of Homeless Services Admin Contract Specialist 125149.50000 2.502990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.502990e+05 2.502990e+05 0.00 NULL
2022 Dept. Of Homeless Services Admin Job Opor Spec-Managerial 128910.00000 1.289100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.289100e+05 1.289100e+05 0.00 NULL
2022 Dept. Of Homeless Services Admin Job Opportunity Spec Nm 98185.66667 5.891140e+05 2882.23 4.803717e+02 0.000 51.00 6 0.000000e+00 0.00 5.919962e+05 5.891140e+05 2882.23 NULL
2022 Dept. Of Homeless Services Administrative Community Relations Specialist 187984.00000 1.879840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.879840e+05 1.879840e+05 0.00 NULL
2022 Dept. Of Homeless Services Administrative Construction Project Manager 150141.00000 1.501410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.501410e+05 1.501410e+05 0.00 NULL
2022 Dept. Of Homeless Services Administrative Contract Specialist 93733.40000 2.812002e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.812002e+05 2.812002e+05 0.00 NULL
2022 Dept. Of Homeless Services Administrative Director Of Social Services 115922.40000 1.738836e+07 92929.37 6.195291e+02 0.000 1613.75 150 0.000000e+00 0.00 1.748129e+07 1.738836e+07 92929.37 NULL
2022 Dept. Of Homeless Services Administrative Engineer 110210.00000 1.102100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.102100e+05 1.102100e+05 0.00 NULL
2022 Dept. Of Homeless Services Administrative Housing Development Specialist 124278.00000 3.728340e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.728340e+05 3.728340e+05 0.00 NULL
2022 Dept. Of Homeless Services Administrative Management Auditor 106252.00000 1.062520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.062520e+05 1.062520e+05 0.00 NULL
2022 Dept. Of Homeless Services Administrative Nutritionist 96682.00000 9.668200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.668200e+04 9.668200e+04 0.00 NULL
2022 Dept. Of Homeless Services Administrative Public Information Specialist Nm Former M1/M2 107421.00000 1.074210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074210e+05 1.074210e+05 0.00 NULL
2022 Dept. Of Homeless Services Administrative Real Property Manager 82610.00000 8.261000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.261000e+04 8.261000e+04 0.00 NULL
2022 Dept. Of Homeless Services Administrative Staff Analyst 91497.78112 6.038854e+06 65683.62 9.952064e+02 13.175 827.25 66 1.317500e+01 869.55 6.104537e+06 6.039723e+06 64814.07 NULL
2022 Dept. Of Homeless Services Administrative Supervisor Of Building Maintenance 121454.23077 1.578905e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.578905e+06 1.578905e+06 0.00 NULL
2022 Dept. Of Homeless Services Agency Medical Director 219468.00000 2.194680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.194680e+05 2.194680e+05 0.00 NULL
2022 Dept. Of Homeless Services Architect 92640.00000 9.264000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.264000e+04 9.264000e+04 0.00 NULL
2022 Dept. Of Homeless Services Assistant Comissioner For Family Operations 171878.00000 1.718780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.718780e+05 1.718780e+05 0.00 NULL
2022 Dept. Of Homeless Services Assistant Commissioner 149350.00000 1.493500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.493500e+05 1.493500e+05 0.00 NULL
2022 Dept. Of Homeless Services Assistant Deputy Commissioner Ss 159675.00000 3.193500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.193500e+05 3.193500e+05 0.00 NULL
2022 Dept. Of Homeless Services Assistant Superintendent Of Welfare Shelters 69821.34848 4.608209e+06 576237.77 8.730875e+03 6524.415 11517.25 66 6.524415e+03 430611.39 5.184447e+06 5.038820e+06 145626.38 NULL
2022 Dept. Of Homeless Services Associate Commissioner For Adult Services 187911.00000 1.879110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.879110e+05 1.879110e+05 0.00 NULL
2022 Dept. Of Homeless Services Associate Contract Specialist 66212.33333 3.972740e+05 12648.16 2.108027e+03 0.000 270.00 6 0.000000e+00 0.00 4.099222e+05 3.972740e+05 12648.16 NULL
2022 Dept. Of Homeless Services Associate Fraud Investigator 71471.44286 5.003001e+06 867426.86 1.239181e+04 9270.795 16339.75 70 9.270795e+03 648955.65 5.870428e+06 5.651957e+06 218471.21 NULL
2022 Dept. Of Homeless Services Associate Housing Development Specialist 83047.75000 3.321910e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.321910e+05 3.321910e+05 0.00 NULL
2022 Dept. Of Homeless Services Associate Investigator 76765.00000 7.676500e+04 5675.38 5.675380e+03 5675.380 98.00 1 5.675380e+03 5675.38 8.244038e+04 8.244038e+04 0.00 NULL
2022 Dept. Of Homeless Services Associate Labor Relations Analyst 82275.00000 8.227500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.227500e+04 8.227500e+04 0.00 NULL
2022 Dept. Of Homeless Services Associate Project Manager 88048.72727 9.685360e+05 536.59 4.878091e+01 0.000 10.00 11 0.000000e+00 0.00 9.690726e+05 9.685360e+05 536.59 NULL
2022 Dept. Of Homeless Services Associate Staff Analyst 82734.96000 4.136748e+06 42858.31 8.571662e+02 0.000 650.00 50 0.000000e+00 0.00 4.179606e+06 4.136748e+06 42858.31 NULL
2022 Dept. Of Homeless Services Asst Commissioner For Planning & Program Dev 150393.00000 1.503930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503930e+05 1.503930e+05 0.00 NULL
2022 Dept. Of Homeless Services Carpenter NA NA 240051.85 1.500324e+04 15015.800 3118.00 16 1.500324e+04 240051.85 NA NA NA NULL
2022 Dept. Of Homeless Services Caseworker 48278.28767 3.524315e+06 251535.44 3.445691e+03 472.970 6940.25 73 4.729700e+02 34526.81 3.775850e+06 3.558842e+06 217008.63 NULL
2022 Dept. Of Homeless Services Cement Mason NA NA 161086.90 3.221738e+04 35738.300 1674.50 5 3.221738e+04 161086.90 NA NA NA NULL
2022 Dept. Of Homeless Services City Laborer NA NA 1204100.67 6.689448e+04 55543.325 20651.00 18 5.554332e+04 999779.85 NA NA NA NULL
2022 Dept. Of Homeless Services City Research Scientist 87278.20540 5.236692e+05 2603.88 4.339800e+02 0.000 54.00 6 0.000000e+00 0.00 5.262731e+05 5.236692e+05 2603.88 NULL
2022 Dept. Of Homeless Services Clerical Associate 47117.33333 7.067600e+05 100336.72 6.689115e+03 0.000 2473.27 15 0.000000e+00 0.00 8.070967e+05 7.067600e+05 100336.72 NULL
2022 Dept. Of Homeless Services Community Assistant 36474.75623 5.033516e+06 845074.51 6.123728e+03 1667.425 28863.95 138 1.667425e+03 230104.65 5.878591e+06 5.263621e+06 614969.86 NULL
2022 Dept. Of Homeless Services Community Associate 36551.51642 5.738588e+06 708432.91 4.512312e+03 610.300 21797.59 157 6.103000e+02 95817.10 6.447021e+06 5.834405e+06 612615.81 NULL
2022 Dept. Of Homeless Services Community Coordinator 60999.60251 2.238685e+07 2484132.44 6.768753e+03 1916.410 56271.75 367 1.916410e+03 703322.47 2.487099e+07 2.309018e+07 1780809.97 NULL
2022 Dept. Of Homeless Services Computer Specialist 94244.00000 9.424400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.424400e+04 9.424400e+04 0.00 NULL
2022 Dept. Of Homeless Services Computer Systems Manager 160882.50000 3.217650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.217650e+05 3.217650e+05 0.00 NULL
2022 Dept. Of Homeless Services Construction Project Manager 84729.33333 5.083760e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.083760e+05 5.083760e+05 0.00 NULL
2022 Dept. Of Homeless Services Counselor 56951.00000 1.139020e+05 5074.84 2.537420e+03 2537.420 127.50 2 2.537420e+03 5074.84 1.189768e+05 1.189768e+05 0.00 NULL
2022 Dept. Of Homeless Services Deputy Commisioner 198454.00000 3.969080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.969080e+05 3.969080e+05 0.00 NULL
2022 Dept. Of Homeless Services Director Of Administration 138852.00000 1.388520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.388520e+05 1.388520e+05 0.00 NULL
2022 Dept. Of Homeless Services Electrician NA NA 315297.49 2.425365e+04 27256.760 3350.50 13 2.425365e+04 315297.49 NA NA NA NULL
2022 Dept. Of Homeless Services Exec Asst To The Deputy Commissioner 102591.00000 1.025910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.025910e+05 1.025910e+05 0.00 NULL
2022 Dept. Of Homeless Services Executive Assistant To The Commissioner 145026.00000 1.450260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450260e+05 1.450260e+05 0.00 NULL
2022 Dept. Of Homeless Services Executive Program Specialist 149350.00000 1.493500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.493500e+05 1.493500e+05 0.00 NULL
2022 Dept. Of Homeless Services Fraud Investigator 53510.51546 5.190520e+06 1307467.20 1.347904e+04 3339.330 28962.00 97 3.339330e+03 323915.01 6.497987e+06 5.514435e+06 983552.19 NULL
2022 Dept. Of Homeless Services Homemaker 37489.00000 7.497800e+04 221.77 1.108850e+02 110.885 9.50 2 1.108850e+02 221.77 7.519977e+04 7.519977e+04 0.00 NULL
2022 Dept. Of Homeless Services Housekeeper 43595.00000 1.307850e+05 69794.77 2.326492e+04 26959.280 2085.75 3 2.326492e+04 69794.77 2.005798e+05 2.005798e+05 0.00 NULL
2022 Dept. Of Homeless Services Human Resources Technician 39049.00000 3.904900e+04 54.53 5.453000e+01 54.530 2.50 1 5.453000e+01 54.53 3.910353e+04 3.910353e+04 0.00 NULL
2022 Dept. Of Homeless Services Inspector 61598.00000 6.159800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.159800e+04 6.159800e+04 0.00 NULL
2022 Dept. Of Homeless Services Locksmith NA NA 6716.72 3.358360e+03 3358.360 148.50 2 3.358360e+03 6716.72 NA NA NA NULL
2022 Dept. Of Homeless Services Maintenance Worker NA NA 67450.03 3.747224e+03 2659.245 1480.50 18 2.659245e+03 47866.41 NA NA NA NULL
2022 Dept. Of Homeless Services Motor Vehicle Operator 49635.94872 1.935802e+06 435956.24 1.117837e+04 4858.660 11902.75 39 4.858660e+03 189487.74 2.371758e+06 2.125290e+06 246468.50 NULL
2022 Dept. Of Homeless Services Motor Vehicle Supervisor 58284.16667 3.497050e+05 110625.17 1.843753e+04 13896.795 2572.00 6 1.389680e+04 83380.77 4.603302e+05 4.330858e+05 27244.40 NULL
2022 Dept. Of Homeless Services Oiler NA NA 171022.31 1.554748e+04 15015.320 1930.50 11 1.501532e+04 165168.52 NA NA NA NULL
2022 Dept. Of Homeless Services Painter NA NA 60672.07 6.067207e+03 40.950 781.50 10 4.095000e+01 409.50 NA NA NA NULL
2022 Dept. Of Homeless Services Plumber NA NA 340073.18 2.267155e+04 23438.760 3221.00 15 2.267155e+04 340073.18 NA NA NA NULL
2022 Dept. Of Homeless Services Plumber’s Helper NA NA 14410.50 7.205250e+03 7205.250 195.00 2 7.205250e+03 14410.50 NA NA NA NULL
2022 Dept. Of Homeless Services Principal Administrative Associate - Non Supvr 63678.07692 1.655630e+06 158346.94 6.090267e+03 417.010 3298.75 26 4.170100e+02 10842.26 1.813977e+06 1.666472e+06 147504.68 NULL
2022 Dept. Of Homeless Services Procurement Analyst 47604.00000 4.760400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.760400e+04 4.760400e+04 0.00 NULL
2022 Dept. Of Homeless Services Recreation Director 47909.00000 4.790900e+04 6404.46 6.404460e+03 6404.460 154.50 1 6.404460e+03 6404.46 5.431346e+04 5.431346e+04 0.00 NULL
2022 Dept. Of Homeless Services Recreation Supervisor 59269.00000 5.926900e+04 5636.62 5.636620e+03 5636.620 135.00 1 5.636620e+03 5636.62 6.490562e+04 6.490562e+04 0.00 NULL
2022 Dept. Of Homeless Services Research Assistant 57584.00000 5.758400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.758400e+04 5.758400e+04 0.00 NULL
2022 Dept. Of Homeless Services Secretary 61604.00000 6.160400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.160400e+04 6.160400e+04 0.00 NULL
2022 Dept. Of Homeless Services Secretary To The Commissioner 96000.00000 9.600000e+04 84558.49 8.455849e+04 84558.490 1157.75 1 8.455849e+04 84558.49 1.805585e+05 1.805585e+05 0.00 NULL
2022 Dept. Of Homeless Services Senior Consultant 71420.46931 4.999433e+05 41350.45 5.907207e+03 6268.630 830.75 7 5.907207e+03 41350.45 5.412937e+05 5.412937e+05 0.00 NULL
2022 Dept. Of Homeless Services Senior Stationary Engineer NA NA 77461.74 7.746174e+04 77461.740 699.00 1 7.746174e+04 77461.74 NA NA NA NULL
2022 Dept. Of Homeless Services Sheet Metal Worker NA NA 32840.64 1.642032e+04 16420.320 283.50 2 1.642032e+04 32840.64 NA NA NA NULL
2022 Dept. Of Homeless Services Social Worker 60516.30000 6.051630e+05 29599.10 2.959910e+03 3641.865 670.25 10 2.959910e+03 29599.10 6.347621e+05 6.347621e+05 0.00 NULL
2022 Dept. Of Homeless Services Space Analyst 68096.07692 8.852490e+05 68494.96 5.268843e+03 0.000 1411.00 13 0.000000e+00 0.00 9.537440e+05 8.852490e+05 68494.96 NULL
2022 Dept. Of Homeless Services Special Officer 41775.06443 2.982740e+07 5423023.16 7.595271e+03 1271.235 168090.75 714 1.271235e+03 907661.79 3.525042e+07 3.073506e+07 4515361.37 NULL
2022 Dept. Of Homeless Services Staff Analyst 71881.91667 8.625830e+05 109.10 9.091667e+00 0.000 0.00 12 0.000000e+00 0.00 8.626921e+05 8.625830e+05 109.10 NULL
2022 Dept. Of Homeless Services Stationary Engineer NA NA 193.98 1.939800e+02 193.980 2.00 1 1.939800e+02 193.98 NA NA NA NULL
2022 Dept. Of Homeless Services Stock Worker 37803.00000 2.268180e+05 708.67 1.181117e+02 0.000 29.50 6 0.000000e+00 0.00 2.275267e+05 2.268180e+05 708.67 NULL
2022 Dept. Of Homeless Services Superintendent Of Adult Institutions 76471.90909 8.411910e+05 113240.62 1.029460e+04 3728.980 2417.25 11 3.728980e+03 41018.78 9.544316e+05 8.822098e+05 72221.84 NULL
2022 Dept. Of Homeless Services Supervising Special Officer 57280.23810 8.420195e+06 2132090.94 1.450402e+04 14737.760 54251.75 147 1.450402e+04 2132090.94 1.055229e+07 1.055229e+07 0.00 NULL
2022 Dept. Of Homeless Services Supervisor Bricklayer NA NA 38361.17 3.836117e+04 38361.170 467.50 1 3.836117e+04 38361.17 NA NA NA NULL
2022 Dept. Of Homeless Services Supervisor Carpenter NA NA 50736.60 1.691220e+04 22691.600 623.00 3 1.691220e+04 50736.60 NA NA NA NULL
2022 Dept. Of Homeless Services Supervisor Electrician NA NA 93682.68 3.122756e+04 42604.520 924.00 3 3.122756e+04 93682.68 NA NA NA NULL
2022 Dept. Of Homeless Services Supervisor I 59533.18750 1.905062e+06 284655.51 8.895485e+03 2453.095 6245.75 32 2.453095e+03 78499.04 2.189718e+06 1.983561e+06 206156.47 NULL
2022 Dept. Of Homeless Services Supervisor I Social Work 65372.00000 6.537200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.537200e+04 6.537200e+04 0.00 NULL
2022 Dept. Of Homeless Services Supervisor Ii 69368.12500 5.549450e+05 51616.93 6.452116e+03 4413.565 1022.50 8 4.413565e+03 35308.52 6.065619e+05 5.902535e+05 16308.41 NULL
2022 Dept. Of Homeless Services Supervisor Ii Social Work 76268.93750 1.220303e+06 108695.90 6.793494e+03 5142.450 1983.25 16 5.142450e+03 82279.20 1.328999e+06 1.302582e+06 26416.70 NULL
2022 Dept. Of Homeless Services Supervisor Iii Social Work 83981.00000 8.398100e+04 5410.65 5.410650e+03 5410.650 97.75 1 5.410650e+03 5410.65 8.939165e+04 8.939165e+04 0.00 NULL
2022 Dept. Of Homeless Services Supervisor Of Mechanics NA NA 208828.37 4.176567e+04 65518.650 2101.50 5 4.176567e+04 208828.37 NA NA NA NULL
2022 Dept. Of Homeless Services Supervisor Of Stock Workers 66732.00000 1.334640e+05 15522.01 7.761005e+03 7761.005 340.50 2 7.761005e+03 15522.01 1.489860e+05 1.489860e+05 0.00 NULL
2022 Dept. Of Homeless Services Supervisor Painter NA NA 19429.92 1.942992e+04 19429.920 217.00 1 1.942992e+04 19429.92 NA NA NA NULL
2022 Dept. Of Homeless Services Supervisor Plumber NA NA 50673.29 2.533665e+04 25336.645 460.50 2 2.533665e+04 50673.29 NA NA NA NULL
2022 District Attorney Kings County Accountant 72523.33333 2.175700e+05 363.98 1.213267e+02 0.000 8.00 3 0.000000e+00 0.00 2.179340e+05 2.175700e+05 363.98 NULL
2022 District Attorney Kings County Adm Manager-Non-Mgrl 93941.27273 1.033354e+06 842.37 7.657909e+01 0.000 14.00 11 0.000000e+00 0.00 1.034196e+06 1.033354e+06 842.37 NULL
2022 District Attorney Kings County Administrative Community Relations Specialist 113170.00000 2.263400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.263400e+05 2.263400e+05 0.00 NULL
2022 District Attorney Kings County Administrative Procurement Analyst-Non-Mgrl 95638.00000 9.563800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.563800e+04 9.563800e+04 0.00 NULL
2022 District Attorney Kings County Administrative Staff Analyst 126260.40000 6.313020e+05 29.18 5.836000e+00 0.000 0.00 5 0.000000e+00 0.00 6.313312e+05 6.313020e+05 29.18 NULL
2022 District Attorney Kings County Assistant District Attorney 103798.12356 6.300546e+07 0.00 0.000000e+00 0.000 0.00 607 0.000000e+00 0.00 6.300546e+07 6.300546e+07 0.00 NULL
2022 District Attorney Kings County Certified It Developer 119592.00000 3.587760e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.587760e+05 3.587760e+05 0.00 NULL
2022 District Attorney Kings County Chief Information Technology Officer 195000.00000 1.950000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.950000e+05 1.950000e+05 0.00 NULL
2022 District Attorney Kings County City Research Scientist 107929.59500 2.158592e+05 6007.46 3.003730e+03 3003.730 114.00 2 3.003730e+03 6007.46 2.218666e+05 2.218666e+05 0.00 NULL
2022 District Attorney Kings County Clerical Associate 51749.71429 7.244960e+05 4279.80 3.057000e+02 0.000 111.00 14 0.000000e+00 0.00 7.287758e+05 7.244960e+05 4279.80 NULL
2022 District Attorney Kings County Community Assistant 37142.22128 3.862791e+06 9642.10 9.271250e+01 0.000 398.00 104 0.000000e+00 0.00 3.872433e+06 3.862791e+06 9642.10 NULL
2022 District Attorney Kings County Community Associate 47224.40132 1.780360e+07 77406.67 2.053227e+02 0.000 2311.25 377 0.000000e+00 0.00 1.788101e+07 1.780360e+07 77406.67 NULL
2022 District Attorney Kings County Community Coordinator 71506.09615 7.436634e+06 59743.98 5.744613e+02 0.000 1207.75 104 0.000000e+00 0.00 7.496378e+06 7.436634e+06 59743.98 NULL
2022 District Attorney Kings County Computer Associate 82620.50000 3.304820e+05 5.35 1.337500e+00 0.000 0.00 4 0.000000e+00 0.00 3.304873e+05 3.304820e+05 5.35 NULL
2022 District Attorney Kings County Computer Specialist 112243.75000 4.489750e+05 7289.79 1.822447e+03 322.875 128.25 4 3.228750e+02 1291.50 4.562648e+05 4.502665e+05 5998.29 NULL
2022 District Attorney Kings County Computer Systems Manager 201507.00000 2.015070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.015070e+05 2.015070e+05 0.00 NULL
2022 District Attorney Kings County Confidential Asst Office Of District Attorney, King County 97250.00000 9.725000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.725000e+04 9.725000e+04 0.00 NULL
2022 District Attorney Kings County Confidential Strategy Planner 114086.50000 4.563460e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.563460e+05 4.563460e+05 0.00 NULL
2022 District Attorney Kings County Director Of Public Information 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2022 District Attorney Kings County District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2022 District Attorney Kings County Executive Assistant 104392.60000 1.043926e+06 3286.44 3.286440e+02 0.000 55.75 10 0.000000e+00 0.00 1.047212e+06 1.043926e+06 3286.44 NULL
2022 District Attorney Kings County Executive Program Specialist 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2022 District Attorney Kings County It Infrastructure Engineer 150000.00000 1.500000e+05 12670.75 1.267075e+04 12670.750 160.25 1 1.267075e+04 12670.75 1.626708e+05 1.626708e+05 0.00 NULL
2022 District Attorney Kings County Media Services Technician 58824.80000 5.882480e+05 42875.36 4.287536e+03 5089.410 1038.50 10 4.287536e+03 42875.36 6.311234e+05 6.311234e+05 0.00 NULL
2022 District Attorney Kings County Office Assistant 38981.00000 3.898100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.898100e+04 3.898100e+04 0.00 NULL
2022 District Attorney Kings County Paralegal Aide 49244.11111 4.431970e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.431970e+05 4.431970e+05 0.00 NULL
2022 District Attorney Kings County Principal Administrative Associate - Non Supvr 71229.15385 9.259790e+05 1011.68 7.782154e+01 0.000 31.00 13 0.000000e+00 0.00 9.269907e+05 9.259790e+05 1011.68 NULL
2022 District Attorney Kings County Procurement Analyst 73776.00000 7.377600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.377600e+04 7.377600e+04 0.00 NULL
2022 District Attorney Kings County Reporter/ Stenographer 63994.65217 1.471877e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 1.471877e+06 1.471877e+06 0.00 NULL
2022 District Attorney Kings County Secretary 51364.25000 2.054570e+05 592.80 1.482000e+02 0.000 19.00 4 0.000000e+00 0.00 2.060498e+05 2.054570e+05 592.80 NULL
2022 District Attorney Kings County Social Worker 59992.80000 2.999640e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.999640e+05 2.999640e+05 0.00 NULL
2022 District Attorney Kings County Special Officer 50207.00000 1.004140e+05 3009.57 1.504785e+03 1504.785 85.50 2 1.504785e+03 3009.57 1.034236e+05 1.034236e+05 0.00 NULL
2022 District Attorney Kings County Staff Analyst 69918.00000 6.991800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.991800e+04 6.991800e+04 0.00 NULL
2022 District Attorney Kings County Strategic Initiative Specialist 103992.75000 4.159710e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.159710e+05 4.159710e+05 0.00 NULL
2022 District Attorney Kings County Supervising Accountant Investigator 107441.00000 7.520870e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.520870e+05 7.520870e+05 0.00 NULL
2022 District Attorney Qns County Accountant 74160.00000 7.416000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.416000e+04 7.416000e+04 0.00 NULL
2022 District Attorney Qns County Adm Manager-Non-Mgrl 91120.33333 8.200830e+05 77347.38 8.594153e+03 7441.660 1298.75 9 7.441660e+03 66974.94 8.974304e+05 8.870579e+05 10372.44 NULL
2022 District Attorney Qns County Administrative Manager 149960.00000 2.999200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.999200e+05 2.999200e+05 0.00 NULL
2022 District Attorney Qns County Administrative Public Information Specialist 138809.00000 1.388090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.388090e+05 1.388090e+05 0.00 NULL
2022 District Attorney Qns County Administrative Staff Analyst 133350.50000 5.334020e+05 19.53 4.882500e+00 0.000 0.00 4 0.000000e+00 0.00 5.334215e+05 5.334020e+05 19.53 NULL
2022 District Attorney Qns County Agency Chief Contracting Officer 119384.50000 2.387690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.387690e+05 2.387690e+05 0.00 NULL
2022 District Attorney Qns County Assistant District Attorney 112937.30012 4.653017e+07 0.00 0.000000e+00 0.000 0.00 412 0.000000e+00 0.00 4.653017e+07 4.653017e+07 0.00 NULL
2022 District Attorney Qns County Certified It Administrator 120686.33333 3.620590e+05 34956.16 1.165205e+04 13599.430 484.25 3 1.165205e+04 34956.16 3.970152e+05 3.970152e+05 0.00 NULL
2022 District Attorney Qns County Certified It Developer 98177.00000 9.817700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.817700e+04 9.817700e+04 0.00 NULL
2022 District Attorney Qns County City Seasonal Aide 16372.16100 1.637216e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.637216e+04 1.637216e+04 0.00 NULL
2022 District Attorney Qns County City Tax Auditor 78500.00000 1.570000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.570000e+05 1.570000e+05 0.00 NULL
2022 District Attorney Qns County Clerical Associate 53192.63636 1.170238e+06 27921.77 1.269171e+03 0.000 628.75 22 0.000000e+00 0.00 1.198160e+06 1.170238e+06 27921.77 NULL
2022 District Attorney Qns County Community Assistant 37383.11887 1.981305e+06 53075.21 1.001419e+03 0.000 2104.25 53 0.000000e+00 0.00 2.034381e+06 1.981305e+06 53075.21 NULL
2022 District Attorney Qns County Community Associate 43244.76667 9.340870e+06 151028.00 6.992037e+02 0.000 4922.25 216 0.000000e+00 0.00 9.491898e+06 9.340870e+06 151028.00 NULL
2022 District Attorney Qns County Community Coordinator 75324.39868 2.862327e+06 95540.33 2.514219e+03 0.000 1846.00 38 0.000000e+00 0.00 2.957867e+06 2.862327e+06 95540.33 NULL
2022 District Attorney Qns County Computer Associate 91311.00000 9.131100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.131100e+04 9.131100e+04 0.00 NULL
2022 District Attorney Qns County Computer Specialist 100676.33333 3.020290e+05 49682.73 1.656091e+04 13674.280 716.75 3 1.367428e+04 41022.84 3.517117e+05 3.430518e+05 8659.89 NULL
2022 District Attorney Qns County Computer Systems Manager 171000.00000 3.420000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.420000e+05 3.420000e+05 0.00 NULL
2022 District Attorney Qns County Customer Information Representative Ma L 1549 40345.00000 4.034500e+04 567.27 5.672700e+02 567.270 21.25 1 5.672700e+02 567.27 4.091227e+04 4.091227e+04 0.00 NULL
2022 District Attorney Qns County Director Of Alt Sentencing And Offender Re-Entry Progs Qn Da 156913.00000 1.569130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.569130e+05 1.569130e+05 0.00 NULL
2022 District Attorney Qns County Director Of Criminal Justice Data Share And Info Servs Qn Da 42287.65750 4.228766e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.228766e+04 4.228766e+04 0.00 NULL
2022 District Attorney Qns County Director Of Criminal Justice Planning And Policy Development 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2022 District Attorney Qns County Director Of Elder Abuse Program Services Qn Da 98447.00000 9.844700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.844700e+04 9.844700e+04 0.00 NULL
2022 District Attorney Qns County Director Of Invest Accounting And Econ Crimes Investigation 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2022 District Attorney Qns County Director Of Public Information 188000.00000 1.880000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.880000e+05 1.880000e+05 0.00 NULL
2022 District Attorney Qns County District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2022 District Attorney Qns County Executive Agency Counsel 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2022 District Attorney Qns County It Security Specialist 123600.00000 1.236000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.236000e+05 1.236000e+05 0.00 NULL
2022 District Attorney Qns County Paralegal Aide 52308.33333 1.255400e+06 15409.49 6.420621e+02 3.970 457.50 24 3.970000e+00 95.28 1.270809e+06 1.255495e+06 15314.21 NULL
2022 District Attorney Qns County Principal Administrative Associate - Non Supvr 71382.75000 1.142124e+06 111025.24 6.939078e+03 5119.585 2417.50 16 5.119585e+03 81913.36 1.253149e+06 1.224037e+06 29111.88 NULL
2022 District Attorney Qns County Private Secretary 103939.00000 2.078780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.078780e+05 2.078780e+05 0.00 NULL
2022 District Attorney Qns County Reporter/ Stenographer 77270.58824 1.313600e+06 94787.50 5.575735e+03 258.350 1686.75 17 2.583500e+02 4391.95 1.408388e+06 1.317992e+06 90395.55 NULL
2022 District Attorney Qns County Secretary 62718.40000 3.135920e+05 167.41 3.348200e+01 0.000 4.50 5 0.000000e+00 0.00 3.137594e+05 3.135920e+05 167.41 NULL
2022 District Attorney Qns County Special Assistant To Da 118723.69231 1.543408e+06 11609.96 8.930738e+02 0.000 244.25 13 0.000000e+00 0.00 1.555018e+06 1.543408e+06 11609.96 NULL
2022 District Attorney Qns County Staff Analyst 81072.50000 1.621450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.621450e+05 1.621450e+05 0.00 NULL
2022 District Attorney Qns County Summer Graduate Intern 5023.65938 2.009464e+05 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 2.009464e+05 2.009464e+05 0.00 NULL
2022 District Attorney Qns County Supervising Accountant Investigator 95790.00000 9.579000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.579000e+04 9.579000e+04 0.00 NULL
2022 District Attorney Richmond Cou Administrative Manager 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2022 District Attorney Richmond Cou Administrative Procurement Analyst 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2022 District Attorney Richmond Cou Administrative Staff Analyst 155765.00000 1.557650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.557650e+05 1.557650e+05 0.00 NULL
2022 District Attorney Richmond Cou Assistant District Attorney 112446.07143 9.445470e+06 0.00 0.000000e+00 0.000 0.00 84 0.000000e+00 0.00 9.445470e+06 9.445470e+06 0.00 NULL
2022 District Attorney Richmond Cou Chief Investigator 154500.00000 1.545000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.545000e+05 1.545000e+05 0.00 NULL
2022 District Attorney Richmond Cou Clerical Associate 65418.20000 3.270910e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.270910e+05 3.270910e+05 0.00 NULL
2022 District Attorney Richmond Cou Community Assistant 48500.00000 9.700000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.700000e+04 9.700000e+04 0.00 NULL
2022 District Attorney Richmond Cou Community Associate 55070.82857 5.782437e+06 9671.69 9.211133e+01 0.000 228.00 105 0.000000e+00 0.00 5.792109e+06 5.782437e+06 9671.69 NULL
2022 District Attorney Richmond Cou Community Coordinator 80488.23810 1.690253e+06 4190.18 1.995324e+02 0.000 93.50 21 0.000000e+00 0.00 1.694443e+06 1.690253e+06 4190.18 NULL
2022 District Attorney Richmond Cou Computer Programmer Analyst 78989.00000 7.898900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.898900e+04 7.898900e+04 0.00 NULL
2022 District Attorney Richmond Cou Computer Systems Manager 118000.00000 1.180000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.180000e+05 1.180000e+05 0.00 NULL
2022 District Attorney Richmond Cou District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2022 District Attorney Richmond Cou Paralegal Aide 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2022 District Attorney Richmond Cou Reporter/ Stenographer 69666.75000 2.786670e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.786670e+05 2.786670e+05 0.00 NULL
2022 District Attorney Richmond Cou Secretary 55408.00000 5.540800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.540800e+04 5.540800e+04 0.00 NULL
2022 District Attorney Richmond Cou Social Worker 66835.00000 1.336700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.336700e+05 1.336700e+05 0.00 NULL
2022 District Attorney Richmond Cou Special Assistant To The District Attorney 116145.66667 6.968740e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.968740e+05 6.968740e+05 0.00 NULL
2022 District Attorney-Manhattan Admin Contract Specialist 148398.00000 2.967960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.967960e+05 2.967960e+05 0.00 NULL
2022 District Attorney-Manhattan Administrative Chief 150306.80000 6.012272e+06 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 6.012272e+06 6.012272e+06 0.00 NULL
2022 District Attorney-Manhattan Administrative Labor Relations Analyst 153955.00000 4.618650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.618650e+05 4.618650e+05 0.00 NULL
2022 District Attorney-Manhattan Administrative Public Records Officer 142500.00000 1.425000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.425000e+05 1.425000e+05 0.00 NULL
2022 District Attorney-Manhattan Assistant District Attorney 119501.56623 7.217895e+07 0.00 0.000000e+00 0.000 0.00 604 0.000000e+00 0.00 7.217895e+07 7.217895e+07 0.00 NULL
2022 District Attorney-Manhattan Assistant Media Services Technican 45970.33333 1.379110e+05 39011.75 1.300392e+04 11212.410 1209.50 3 1.121241e+04 33637.23 1.769228e+05 1.715482e+05 5374.52 NULL
2022 District Attorney-Manhattan Carpenter NA NA 16489.00 4.122250e+03 2966.865 195.25 4 2.966865e+03 11867.46 NA NA NA NULL
2022 District Attorney-Manhattan Chief Investigating Accountant 135632.10000 2.712642e+06 3376.72 1.688360e+02 0.000 51.75 20 0.000000e+00 0.00 2.716019e+06 2.712642e+06 3376.72 NULL
2022 District Attorney-Manhattan City Custodial Assistant 37835.85714 5.297020e+05 17476.27 1.248305e+03 460.910 564.25 14 4.609100e+02 6452.74 5.471783e+05 5.361547e+05 11023.53 NULL
2022 District Attorney-Manhattan City Laborer NA NA 24676.82 3.525260e+03 2270.180 517.75 7 2.270180e+03 15891.26 NA NA NA NULL
2022 District Attorney-Manhattan Clerical Associate 75907.77778 6.831700e+05 10492.38 1.165820e+03 0.000 178.25 9 0.000000e+00 0.00 6.936624e+05 6.831700e+05 10492.38 NULL
2022 District Attorney-Manhattan College Aide 222.69886 3.429562e+04 0.00 0.000000e+00 0.000 0.00 154 0.000000e+00 0.00 3.429562e+04 3.429562e+04 0.00 NULL
2022 District Attorney-Manhattan Community Assistant 44330.61386 1.551571e+06 107335.14 3.066718e+03 83.820 2693.50 35 8.382000e+01 2933.70 1.658907e+06 1.554505e+06 104401.44 NULL
2022 District Attorney-Manhattan Community Associate 51563.04193 4.063168e+07 505916.78 6.420264e+02 0.000 12991.82 788 0.000000e+00 0.00 4.113759e+07 4.063168e+07 505916.78 NULL
2022 District Attorney-Manhattan Community Coordinator 83533.02128 1.194522e+07 549145.77 3.840180e+03 0.000 7933.00 143 0.000000e+00 0.00 1.249437e+07 1.194522e+07 549145.77 NULL
2022 District Attorney-Manhattan Computer Operations Manager 152500.00000 1.525000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.525000e+05 1.525000e+05 0.00 NULL
2022 District Attorney-Manhattan County Detective 69359.62500 5.548770e+05 44370.19 5.546274e+03 329.530 758.25 8 3.295300e+02 2636.24 5.992472e+05 5.575132e+05 41733.95 NULL
2022 District Attorney-Manhattan District Attorney 212800.00000 4.256000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.256000e+05 4.256000e+05 0.00 NULL
2022 District Attorney-Manhattan Electrician NA NA 12437.83 6.218915e+03 6218.915 134.00 2 6.218915e+03 12437.83 NA NA NA NULL
2022 District Attorney-Manhattan Electricians Helper NA NA 6224.74 6.224740e+03 6224.740 105.75 1 6.224740e+03 6224.74 NA NA NA NULL
2022 District Attorney-Manhattan Engineering Technician 64050.50000 1.281010e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.281010e+05 1.281010e+05 0.00 NULL
2022 District Attorney-Manhattan Interpreter 78500.00000 4.710000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.710000e+05 4.710000e+05 0.00 NULL
2022 District Attorney-Manhattan Management Auditor 109046.00000 1.090460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.090460e+05 1.090460e+05 0.00 NULL
2022 District Attorney-Manhattan Media Services Technician 72887.84615 9.475420e+05 250689.93 1.928384e+04 8710.160 4084.48 13 8.710160e+03 113232.08 1.198232e+06 1.060774e+06 137457.85 NULL
2022 District Attorney-Manhattan Office Assistant 50257.50000 1.005150e+05 405.66 2.028300e+02 202.830 11.00 2 2.028300e+02 405.66 1.009207e+05 1.009207e+05 0.00 NULL
2022 District Attorney-Manhattan Painter NA NA 14700.68 4.900227e+03 115.320 201.25 3 1.153200e+02 345.96 NA NA NA NULL
2022 District Attorney-Manhattan Paralegal Aide 80171.00000 8.017100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.017100e+04 8.017100e+04 0.00 NULL
2022 District Attorney-Manhattan Photographer 65055.33333 1.951660e+05 30007.32 1.000244e+04 8537.280 731.00 3 8.537280e+03 25611.84 2.251733e+05 2.207778e+05 4395.48 NULL
2022 District Attorney-Manhattan Principal Accountant Investigator 126253.09524 2.651315e+06 77.23 3.677619e+00 0.000 1.00 21 0.000000e+00 0.00 2.651392e+06 2.651315e+06 77.23 NULL
2022 District Attorney-Manhattan Principal Administrative Associate - Non Supvr 89798.60000 4.489930e+05 10146.26 2.029252e+03 0.000 166.75 5 0.000000e+00 0.00 4.591393e+05 4.489930e+05 10146.26 NULL
2022 District Attorney-Manhattan Reporter/ Stenographer 82352.39286 2.305867e+06 31.23 1.115357e+00 0.000 1.00 28 0.000000e+00 0.00 2.305898e+06 2.305867e+06 31.23 NULL
2022 District Attorney-Manhattan Secretary 111444.25000 4.457770e+05 26875.77 6.718943e+03 4992.710 442.25 4 4.992710e+03 19970.84 4.726528e+05 4.657478e+05 6904.93 NULL
2022 District Attorney-Manhattan Senior Accountant Investigator 71311.48176 1.283607e+06 16855.28 9.364044e+02 0.000 291.00 18 0.000000e+00 0.00 1.300462e+06 1.283607e+06 16855.28 NULL
2022 District Attorney-Manhattan Senior Secretary 67671.33333 2.030140e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.030140e+05 2.030140e+05 0.00 NULL
2022 District Attorney-Manhattan Special Officer 46255.50000 2.775330e+05 5085.16 8.475267e+02 496.965 146.00 6 4.969650e+02 2981.79 2.826182e+05 2.805148e+05 2103.37 NULL
2022 District Attorney-Manhattan Staff Analyst 101802.00000 1.018020e+05 465.19 4.651900e+02 465.190 0.00 1 4.651900e+02 465.19 1.022672e+05 1.022672e+05 0.00 NULL
2022 District Attorney-Manhattan Supervising Accountant Investigator 78275.00000 7.827500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.827500e+04 7.827500e+04 0.00 NULL
2022 District Attorney-Manhattan Supervising Special Officer 55853.00000 1.117060e+05 17955.33 8.977665e+03 8977.665 447.50 2 8.977665e+03 17955.33 1.296613e+05 1.296613e+05 0.00 NULL
2022 District Attorney-Manhattan Supervisor Electrician NA NA 8005.41 8.005410e+03 8005.410 77.00 1 8.005410e+03 8005.41 NA NA NA NULL
2022 District Attorney-Manhattan Supervisor Of Mechanics 133577.00000 1.335770e+05 15017.74 1.501774e+04 15017.740 156.50 1 1.501774e+04 15017.74 1.485947e+05 1.485947e+05 0.00 NULL
2022 District Attorney-Manhattan Supervisor Painter NA NA 16280.61 1.628061e+04 16280.610 199.50 1 1.628061e+04 16280.61 NA NA NA NULL
2022 District Attorney-Special Narc Administrative Chief 189462.33333 5.683870e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.683870e+05 5.683870e+05 0.00 NULL
2022 District Attorney-Special Narc Assistant District Attorney 117347.83704 1.584196e+07 0.00 0.000000e+00 0.000 0.00 135 0.000000e+00 0.00 1.584196e+07 1.584196e+07 0.00 NULL
2022 District Attorney-Special Narc Chief Investigating Accountant 141231.20000 7.061560e+05 169.85 3.397000e+01 0.000 2.50 5 0.000000e+00 0.00 7.063258e+05 7.061560e+05 169.85 NULL
2022 District Attorney-Special Narc Clerical Associate 91260.28571 6.388220e+05 127.14 1.816286e+01 0.000 2.00 7 0.000000e+00 0.00 6.389491e+05 6.388220e+05 127.14 NULL
2022 District Attorney-Special Narc College Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 District Attorney-Special Narc Community Assistant 56999.00000 1.709970e+05 2605.65 8.685500e+02 973.670 77.50 3 8.685500e+02 2605.65 1.736026e+05 1.736026e+05 0.00 NULL
2022 District Attorney-Special Narc Community Associate 62870.16327 3.080638e+06 12882.39 2.629059e+02 0.000 348.50 49 0.000000e+00 0.00 3.093520e+06 3.080638e+06 12882.39 NULL
2022 District Attorney-Special Narc Community Coordinator 95871.75000 7.669740e+05 740.65 9.258125e+01 0.000 12.25 8 0.000000e+00 0.00 7.677147e+05 7.669740e+05 740.65 NULL
2022 District Attorney-Special Narc Computer Operations Manager 136249.00000 1.362490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.362490e+05 1.362490e+05 0.00 NULL
2022 District Attorney-Special Narc Computer Specialist 125582.00000 1.255820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.255820e+05 1.255820e+05 0.00 NULL
2022 District Attorney-Special Narc Deputy Chief Rackets Investigator 136227.50000 2.724550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.724550e+05 2.724550e+05 0.00 NULL
2022 District Attorney-Special Narc Director Of Public Information 175200.00000 1.752000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.752000e+05 1.752000e+05 0.00 NULL
2022 District Attorney-Special Narc Paralegal Aide 97578.83333 5.854730e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.854730e+05 5.854730e+05 0.00 NULL
2022 District Attorney-Special Narc Reporter/ Stenographer 92047.66667 5.522860e+05 241.28 4.021333e+01 0.000 4.00 6 0.000000e+00 0.00 5.525273e+05 5.522860e+05 241.28 NULL
2022 District Attorney-Special Narc Secretary 91192.00000 1.823840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.823840e+05 1.823840e+05 0.00 NULL
2022 District Attorney-Special Narc Senior Rackets Investigator 82102.83333 4.926170e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.926170e+05 4.926170e+05 0.00 NULL
2022 District Attorney-Special Narc Special Assistant District Attorney 211000.00000 2.110000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.110000e+05 2.110000e+05 0.00 NULL
2022 District Attorney-Special Narc Supervising Computer Service Technician 95893.00000 9.589300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.589300e+04 9.589300e+04 0.00 NULL
2022 Districting Commission Assistant Corporation Counsel 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2022 Districting Commission Community Liaison Representive 70000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2022 Districting Commission Counsel 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2022 Districting Commission Executive Director 160000.00000 4.800000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.800000e+05 4.800000e+05 0.00 NULL
2022 Districting Commission Press Officer 107500.00000 1.075000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.075000e+05 1.075000e+05 0.00 NULL
2022 Districting Commission Technical Systems Manager 107500.00000 1.075000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.075000e+05 1.075000e+05 0.00 NULL
2022 Doe Custodial Payrol Custodian Engineer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1320 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2022 Equal Employ Practices Comm Administrative Staff Analyst 100425.00000 1.004250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.004250e+05 1.004250e+05 0.00 NULL
2022 Equal Employ Practices Comm City Research Scientist 100900.66667 3.027020e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.027020e+05 3.027020e+05 0.00 NULL
2022 Equal Employ Practices Comm Community Coordinator 62516.60000 3.125830e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.125830e+05 3.125830e+05 0.00 NULL
2022 Equal Employ Practices Comm Computer Specialist 94244.00000 9.424400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.424400e+04 9.424400e+04 0.00 NULL
2022 Equal Employ Practices Comm Executive Agency Counsel 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2022 Equal Employ Practices Comm Executive Director 154121.50000 3.082430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.082430e+05 3.082430e+05 0.00 NULL
2022 Equal Employ Practices Comm Executive Secretary 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2022 Equal Employ Practices Comm Summer College Intern 2835.00000 2.835000e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.835000e+03 2.835000e+03 0.00 NULL
2022 Financial Info Svcs Agency *Certified Wide Area Network Administrator 129964.00000 1.299640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.299640e+05 1.299640e+05 0.00 NULL
2022 Financial Info Svcs Agency Accountant 66981.00000 6.698100e+04 40.14 4.014000e+01 40.140 1.00 1 4.014000e+01 40.14 6.702114e+04 6.702114e+04 0.00 NULL
2022 Financial Info Svcs Agency Adm Manager-Non-Mgrl 95866.66667 5.752000e+05 1776.69 2.961150e+02 0.000 17.50 6 0.000000e+00 0.00 5.769767e+05 5.752000e+05 1776.69 NULL
2022 Financial Info Svcs Agency Admin Contract Specialist 145484.00000 1.454840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.454840e+05 1.454840e+05 0.00 NULL
2022 Financial Info Svcs Agency Administrative Accountant 95458.00000 9.545800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.545800e+04 9.545800e+04 0.00 NULL
2022 Financial Info Svcs Agency Administrative Procurement Analyst-Non-Mgrl 94344.50000 1.886890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.886890e+05 1.886890e+05 0.00 NULL
2022 Financial Info Svcs Agency Administrative Public Information Specialist Nm Former M1/M2 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2022 Financial Info Svcs Agency Administrative Space Analyst 153842.00000 3.076840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.076840e+05 3.076840e+05 0.00 NULL
2022 Financial Info Svcs Agency Administrative Staff Analyst 115215.69231 1.497804e+06 230.28 1.771385e+01 0.000 2.75 13 0.000000e+00 0.00 1.498034e+06 1.497804e+06 230.28 NULL
2022 Financial Info Svcs Agency Agency Chief Contracting Officer 153056.00000 1.530560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.530560e+05 1.530560e+05 0.00 NULL
2022 Financial Info Svcs Agency Associate Staff Analyst 90116.00000 1.802320e+05 1379.63 6.898150e+02 689.815 12.00 2 6.898150e+02 1379.63 1.816116e+05 1.816116e+05 0.00 NULL
2022 Financial Info Svcs Agency Certified It Administrator 116856.50000 2.337130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.337130e+05 2.337130e+05 0.00 NULL
2022 Financial Info Svcs Agency City Attendant 40260.00000 4.026000e+04 7012.92 7.012920e+03 7012.920 217.75 1 7.012920e+03 7012.92 4.727292e+04 4.727292e+04 0.00 NULL
2022 Financial Info Svcs Agency City Custodial Assistant 35650.66667 1.069520e+05 1929.36 6.431200e+02 544.650 83.25 3 5.446500e+02 1633.95 1.088814e+05 1.085859e+05 295.41 NULL
2022 Financial Info Svcs Agency City Tax Auditor 64415.00000 6.441500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.441500e+04 6.441500e+04 0.00 NULL
2022 Financial Info Svcs Agency Clerical Associate 48172.05296 2.408603e+05 35.98 7.196000e+00 0.000 1.25 5 0.000000e+00 0.00 2.408962e+05 2.408603e+05 35.98 NULL
2022 Financial Info Svcs Agency College Aide 5949.38125 2.379753e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.379753e+04 2.379753e+04 0.00 NULL
2022 Financial Info Svcs Agency Community Assistant 35392.01590 3.539202e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.539202e+04 3.539202e+04 0.00 NULL
2022 Financial Info Svcs Agency Community Associate 55060.80000 2.753040e+05 2590.78 5.181560e+02 0.000 72.25 5 0.000000e+00 0.00 2.778948e+05 2.753040e+05 2590.78 NULL
2022 Financial Info Svcs Agency Community Coordinator 72409.62500 5.792770e+05 16301.87 2.037734e+03 0.000 296.00 8 0.000000e+00 0.00 5.955789e+05 5.792770e+05 16301.87 NULL
2022 Financial Info Svcs Agency Computer Associate 80568.93333 3.625602e+06 428311.55 9.518034e+03 4435.520 6578.75 45 4.435520e+03 199598.40 4.053914e+06 3.825200e+06 228713.15 NULL
2022 Financial Info Svcs Agency Computer Operations Manager 101280.33333 3.038410e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.038410e+05 3.038410e+05 0.00 NULL
2022 Financial Info Svcs Agency Computer Programmer Analyst 66813.00000 1.336260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.336260e+05 1.336260e+05 0.00 NULL
2022 Financial Info Svcs Agency Computer Specialist 115059.94444 6.213237e+06 6162.54 1.141211e+02 0.000 90.50 54 0.000000e+00 0.00 6.219400e+06 6.213237e+06 6162.54 NULL
2022 Financial Info Svcs Agency Computer Systems Manager 139170.69061 2.518990e+07 294437.00 1.626724e+03 0.000 3790.50 181 0.000000e+00 0.00 2.548433e+07 2.518990e+07 294437.00 NULL
2022 Financial Info Svcs Agency Executive Agency Counsel 179422.20000 8.971110e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.971110e+05 8.971110e+05 0.00 NULL
2022 Financial Info Svcs Agency Executive Director 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2022 Financial Info Svcs Agency It Automation And Monitoring Engineer 94008.73333 1.410131e+06 54802.47 3.653498e+03 0.000 898.25 15 0.000000e+00 0.00 1.464933e+06 1.410131e+06 54802.47 NULL
2022 Financial Info Svcs Agency It Infrastructure Engineer 124753.71429 1.746552e+06 6815.48 4.868200e+02 0.000 81.50 14 0.000000e+00 0.00 1.753367e+06 1.746552e+06 6815.48 NULL
2022 Financial Info Svcs Agency It Project Specialist 118340.18750 1.893443e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.893443e+06 1.893443e+06 0.00 NULL
2022 Financial Info Svcs Agency It Security Specialist 109398.64706 1.859777e+06 63614.17 3.742010e+03 0.000 966.50 17 0.000000e+00 0.00 1.923391e+06 1.859777e+06 63614.17 NULL
2022 Financial Info Svcs Agency It Service Management Specialist 108960.26667 1.634404e+06 891.46 5.943067e+01 0.000 13.50 15 0.000000e+00 0.00 1.635295e+06 1.634404e+06 891.46 NULL
2022 Financial Info Svcs Agency Motor Vehicle Operator 49927.00000 4.992700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.992700e+04 4.992700e+04 0.00 NULL
2022 Financial Info Svcs Agency Nycaps Process Analyst 129882.00000 1.298820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.298820e+05 1.298820e+05 0.00 NULL
2022 Financial Info Svcs Agency Principal Administrative Associate - Non Supvr 75020.14286 5.251410e+05 8356.78 1.193826e+03 0.000 131.25 7 0.000000e+00 0.00 5.334978e+05 5.251410e+05 8356.78 NULL
2022 Financial Info Svcs Agency Public Records Officer 44092.00000 4.409200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.409200e+04 4.409200e+04 0.00 NULL
2022 Financial Info Svcs Agency Senior It Architect 138476.36364 1.523240e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.523240e+06 1.523240e+06 0.00 NULL
2022 Financial Info Svcs Agency Staff Analyst 62370.00000 6.237000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.237000e+04 6.237000e+04 0.00 NULL
2022 Financial Info Svcs Agency Supervisor Of Office Machine Operations 53591.50000 1.071830e+05 33949.61 1.697481e+04 16974.805 771.00 2 1.697481e+04 33949.61 1.411326e+05 1.411326e+05 0.00 NULL
2022 Financial Info Svcs Agency Telecommunications Associate 65987.00000 3.299350e+05 13520.98 2.704196e+03 2051.890 332.75 5 2.051890e+03 10259.45 3.434560e+05 3.401945e+05 3261.53 NULL
2022 Fire Department *Certified Applications Developer 105801.00000 1.058010e+05 2781.69 2.781690e+03 2781.690 45.75 1 2.781690e+03 2781.69 1.085827e+05 1.085827e+05 0.00 NULL
2022 Fire Department Accountant 64297.00000 6.429700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.429700e+04 6.429700e+04 0.00 NULL
2022 Fire Department Adm Manager-Non-Mgrl 83901.18240 5.117972e+06 259955.16 4.261560e+03 0.000 4832.75 61 0.000000e+00 0.00 5.377927e+06 5.117972e+06 259955.16 NULL
2022 Fire Department Admin Community Relations Specialist 82570.38333 1.238556e+06 125699.85 8.379990e+03 25.710 2253.00 15 2.571000e+01 385.65 1.364256e+06 1.238941e+06 125314.20 NULL
2022 Fire Department Admin Inspector 80032.28571 5.602260e+05 294963.21 4.213760e+04 39832.090 4805.00 7 3.983209e+04 278824.63 8.551892e+05 8.390506e+05 16138.58 NULL
2022 Fire Department Admin Tests & Meas Spec 147842.00000 1.478420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.478420e+05 1.478420e+05 0.00 NULL
2022 Fire Department Administrative Architect 141000.00000 1.410000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.410000e+05 1.410000e+05 0.00 NULL
2022 Fire Department Administrative Blasting Inspector 123537.00000 1.235370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.235370e+05 1.235370e+05 0.00 NULL
2022 Fire Department Administrative Community Relations Specialist 157178.00000 1.571780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.571780e+05 1.571780e+05 0.00 NULL
2022 Fire Department Administrative Construction Project Manager 148860.50000 2.977210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.977210e+05 2.977210e+05 0.00 NULL
2022 Fire Department Administrative Director Of Marine Maintenance 120510.00000 1.205100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.205100e+05 1.205100e+05 0.00 NULL
2022 Fire Department Administrative Engineer 126918.50000 2.538370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.538370e+05 2.538370e+05 0.00 NULL
2022 Fire Department Administrative Fire Protection Inspector 118056.69231 1.534737e+06 3428.34 2.637185e+02 0.000 0.00 13 0.000000e+00 0.00 1.538165e+06 1.534737e+06 3428.34 NULL
2022 Fire Department Administrative Graphic Artist 90174.00000 9.017400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.017400e+04 9.017400e+04 0.00 NULL
2022 Fire Department Administrative Investigator 69353.00000 6.935300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.935300e+04 6.935300e+04 0.00 NULL
2022 Fire Department Administrative Labor Relations Analyst 122277.00000 3.668310e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.668310e+05 3.668310e+05 0.00 NULL
2022 Fire Department Administrative Procurement Analyst-Non-Mgrl 81634.00769 1.061242e+06 43661.31 3.358562e+03 0.000 863.25 13 0.000000e+00 0.00 1.104903e+06 1.061242e+06 43661.31 NULL
2022 Fire Department Administrative Project Manager 118377.77778 1.065400e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.065400e+06 1.065400e+06 0.00 NULL
2022 Fire Department Administrative Psychologist 154766.66667 4.643000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.643000e+05 4.643000e+05 0.00 NULL
2022 Fire Department Administrative Public Information Specialist Nm Former M1/M2 98364.66667 2.950940e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.950940e+05 2.950940e+05 0.00 NULL
2022 Fire Department Administrative Quality Assurance Specialist 85102.93000 8.510293e+04 4081.62 4.081620e+03 4081.620 82.50 1 4.081620e+03 4081.62 8.918455e+04 8.918455e+04 0.00 NULL
2022 Fire Department Administrative Staff Analyst 105989.05432 8.161157e+06 206501.98 2.681844e+03 0.000 2530.00 77 0.000000e+00 0.00 8.367659e+06 8.161157e+06 206501.98 NULL
2022 Fire Department Administrative Storekeeper 143610.00000 1.436100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.436100e+05 1.436100e+05 0.00 NULL
2022 Fire Department Administrative Supervisor Of Building Maintenance 137129.50000 2.742590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.742590e+05 2.742590e+05 0.00 NULL
2022 Fire Department Administrator Of Medical Affairs 213609.00000 2.136090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.136090e+05 2.136090e+05 0.00 NULL
2022 Fire Department Agency Attorney 94413.60891 2.454754e+06 5489.34 2.111285e+02 0.000 91.50 26 0.000000e+00 0.00 2.460243e+06 2.454754e+06 5489.34 NULL
2022 Fire Department Agency Deputy Medical Director 173371.16667 1.040227e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.040227e+06 1.040227e+06 0.00 NULL
2022 Fire Department Architect 92700.00000 9.270000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.270000e+04 9.270000e+04 0.00 NULL
2022 Fire Department Assistant Architect 65958.00000 6.595800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.595800e+04 6.595800e+04 0.00 NULL
2022 Fire Department Assistant Chemical Engineer 72204.00000 2.166120e+05 2302.98 7.676600e+02 1151.490 47.50 3 7.676600e+02 2302.98 2.189150e+05 2.189150e+05 0.00 NULL
2022 Fire Department Assistant Chief Fire Marshal 215352.00000 4.307040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.307040e+05 4.307040e+05 0.00 NULL
2022 Fire Department Assistant Chief Of Department 241424.16667 4.345635e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 4.345635e+06 4.345635e+06 0.00 NULL
2022 Fire Department Assistant Civil Engineer 65640.00000 6.564000e+04 6252.48 6.252480e+03 6252.480 155.50 1 6.252480e+03 6252.48 7.189248e+04 7.189248e+04 0.00 NULL
2022 Fire Department Assistant Commissioner 165126.44444 1.486138e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.486138e+06 1.486138e+06 0.00 NULL
2022 Fire Department Assistant Electrical Engineer 66824.50000 2.672980e+05 42063.06 1.051576e+04 11828.520 934.00 4 1.051576e+04 42063.06 3.093611e+05 3.093611e+05 0.00 NULL
2022 Fire Department Assistant Environmental Engineer 65640.00000 6.564000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.564000e+04 6.564000e+04 0.00 NULL
2022 Fire Department Assistant Mechanical Engineer 69900.00000 2.796000e+05 11751.48 2.937870e+03 2937.870 305.00 4 2.937870e+03 11751.48 2.913515e+05 2.913515e+05 0.00 NULL
2022 Fire Department Associate Commissioner 213210.00000 2.132100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.132100e+05 2.132100e+05 0.00 NULL
2022 Fire Department Associate Fire Protection Inspector 73978.38367 1.812470e+07 2801948.65 1.143653e+04 7132.040 41389.85 245 7.132040e+03 1747349.80 2.092665e+07 1.987205e+07 1054598.85 NULL
2022 Fire Department Associate Inspector 70405.05556 1.267291e+06 316046.37 1.755813e+04 14883.605 6036.75 18 1.488360e+04 267904.89 1.583337e+06 1.535196e+06 48141.48 NULL
2022 Fire Department Associate Investigator 61849.00000 6.803390e+05 54282.82 4.934802e+03 2707.880 1306.25 11 2.707880e+03 29786.68 7.346218e+05 7.101257e+05 24496.14 NULL
2022 Fire Department Associate Project Manager 90967.90000 1.819358e+06 25847.65 1.292382e+03 0.000 516.25 20 0.000000e+00 0.00 1.845206e+06 1.819358e+06 25847.65 NULL
2022 Fire Department Associate Staff Analyst 88679.94444 1.596239e+06 29871.50 1.659528e+03 0.000 515.00 18 0.000000e+00 0.00 1.626110e+06 1.596239e+06 29871.50 NULL
2022 Fire Department Attending Physician 35532.50589 4.619226e+05 82503.18 6.346398e+03 0.000 1330.00 13 0.000000e+00 0.00 5.444258e+05 4.619226e+05 82503.18 NULL
2022 Fire Department Auto Mechanic NA NA 3312739.39 2.284648e+04 17723.120 51455.75 145 1.772312e+04 2569852.40 NA NA NA NULL
2022 Fire Department Automotive Service Worker 47023.14286 9.874860e+05 180392.86 8.590136e+03 5143.100 5346.14 21 5.143100e+03 108005.10 1.167879e+06 1.095491e+06 72387.76 NULL
2022 Fire Department Battalion Chief 169613.63889 7.937918e+07 988631.27 2.112460e+03 0.000 14694.69 468 0.000000e+00 0.00 8.036781e+07 7.937918e+07 988631.27 NULL
2022 Fire Department Blacksmith’s Helper NA NA 6784.84 6.784840e+03 6784.840 0.00 1 6.784840e+03 6784.84 NA NA NA NULL
2022 Fire Department Captain 130490.28442 1.004775e+08 35549899.57 4.616870e+04 49800.750 515652.51 770 4.616870e+04 35549899.57 1.360274e+08 1.360274e+08 0.00 NULL
2022 Fire Department Carpenter NA NA 230830.44 1.923587e+04 12758.750 2810.50 12 1.275875e+04 153105.00 NA NA NA NULL
2022 Fire Department Case - Management Nurse 83748.29781 2.931190e+06 30085.92 8.595977e+02 0.000 485.75 35 0.000000e+00 0.00 2.961276e+06 2.931190e+06 30085.92 NULL
2022 Fire Department Cashier 53089.00000 5.308900e+04 3029.98 3.029980e+03 3029.980 83.25 1 3.029980e+03 3029.98 5.611898e+04 5.611898e+04 0.00 NULL
2022 Fire Department Cement Mason NA NA 33910.50 1.695525e+04 16955.250 352.50 2 1.695525e+04 33910.50 NA NA NA NULL
2022 Fire Department Certified It Administrator 104376.82795 1.148145e+06 153658.51 1.396896e+04 12657.400 2055.00 11 1.265740e+04 139231.40 1.301804e+06 1.287377e+06 14427.11 NULL
2022 Fire Department Certified It Developer 110632.62500 8.850610e+05 13190.86 1.648858e+03 1187.585 196.25 8 1.187585e+03 9500.68 8.982519e+05 8.945617e+05 3690.18 NULL
2022 Fire Department Chaplain 28887.37500 2.310990e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 2.310990e+05 2.310990e+05 0.00 NULL
2022 Fire Department Chief Fire Marshal 235462.00000 4.709240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.709240e+05 4.709240e+05 0.00 NULL
2022 Fire Department City Laborer NA NA 216042.71 1.350267e+04 6393.630 4283.50 16 6.393630e+03 102298.08 NA NA NA NULL
2022 Fire Department City Medical Specialist 31647.43696 8.544808e+05 51911.38 1.922644e+03 0.000 611.50 27 0.000000e+00 0.00 9.063922e+05 8.544808e+05 51911.38 NULL
2022 Fire Department City Research Scientist 96925.52000 2.423138e+06 5741.22 2.296488e+02 0.000 76.00 25 0.000000e+00 0.00 2.428879e+06 2.423138e+06 5741.22 NULL
2022 Fire Department Clerical Associate 47599.81176 5.140780e+06 265492.81 2.458267e+03 3.570 7317.25 108 3.570000e+00 385.56 5.406272e+06 5.141165e+06 265107.25 NULL
2022 Fire Department Commissioner 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2022 Fire Department Communication Electrician NA NA 1373960.97 2.544372e+04 27205.630 17762.75 54 2.544372e+04 1373960.97 NA NA NA NULL
2022 Fire Department Community Associate 43322.19155 7.364773e+05 9919.82 5.835188e+02 0.000 314.75 17 0.000000e+00 0.00 7.463971e+05 7.364773e+05 9919.82 NULL
2022 Fire Department Community Coordinator 68088.61765 2.315013e+06 181439.78 5.336464e+03 1045.035 3593.50 34 1.045035e+03 35531.19 2.496453e+06 2.350544e+06 145908.59 NULL
2022 Fire Department Computer Aide-Non-Spvr 51065.00000 5.106500e+04 55.90 5.590000e+01 55.900 2.00 1 5.590000e+01 55.90 5.112090e+04 5.112090e+04 0.00 NULL
2022 Fire Department Computer Associate 79231.09677 2.456164e+06 775229.81 2.500741e+04 15871.080 12431.73 31 1.587108e+04 492003.48 3.231394e+06 2.948167e+06 283226.33 NULL
2022 Fire Department Computer Operations Manager 63301.00000 6.330100e+04 2481.63 2.481630e+03 2481.630 50.00 1 2.481630e+03 2481.63 6.578263e+04 6.578263e+04 0.00 NULL
2022 Fire Department Computer Service Technician 65888.00000 6.588800e+04 29248.13 2.924813e+04 29248.130 520.25 1 2.924813e+04 29248.13 9.513613e+04 9.513613e+04 0.00 NULL
2022 Fire Department Computer Specialist 107051.56716 7.172455e+06 448014.68 6.686786e+03 190.350 5863.25 67 1.903500e+02 12753.45 7.620470e+06 7.185208e+06 435261.23 NULL
2022 Fire Department Computer Systems Manager 141771.93333 4.253158e+06 38568.21 1.285607e+03 0.000 679.50 30 0.000000e+00 0.00 4.291726e+06 4.253158e+06 38568.21 NULL
2022 Fire Department Confidential Strategy Planner 93234.50000 1.864690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.864690e+05 1.864690e+05 0.00 NULL
2022 Fire Department Customer Information Representative Ma L 1549 61145.33333 1.834360e+05 749.68 2.498933e+02 193.180 18.25 3 1.931800e+02 579.54 1.841857e+05 1.840155e+05 170.14 NULL
2022 Fire Department Deputy Assistant Chief Of Department 235462.00000 1.648234e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.648234e+06 1.648234e+06 0.00 NULL
2022 Fire Department Deputy Chief 194479.98901 1.769768e+07 0.00 0.000000e+00 0.000 0.00 91 0.000000e+00 0.00 1.769768e+07 1.769768e+07 0.00 NULL
2022 Fire Department Deputy Commissioner 225342.00000 9.013680e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 9.013680e+05 9.013680e+05 0.00 NULL
2022 Fire Department Director 85000.00000 8.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.500000e+04 8.500000e+04 0.00 NULL
2022 Fire Department Electrical Engineer 92640.00000 9.264000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.264000e+04 9.264000e+04 0.00 NULL
2022 Fire Department Electrical Engineering Intern 62260.00000 1.245200e+05 11205.97 5.602985e+03 5602.985 296.00 2 5.602985e+03 11205.97 1.357260e+05 1.357260e+05 0.00 NULL
2022 Fire Department Electrician NA NA 883507.53 6.310768e+04 43926.350 9411.50 14 4.392635e+04 614968.90 NA NA NA NULL
2022 Fire Department Emergency Medical Specialist Trainee 36330.00000 8.464890e+06 6496.44 2.788172e+01 0.000 242.00 233 0.000000e+00 0.00 8.471386e+06 8.464890e+06 6496.44 NULL
2022 Fire Department Emergency Medical Specialist-Emt 50673.79917 1.715815e+08 22825908.59 6.741261e+03 3640.675 659324.33 3386 3.640675e+03 12327325.55 1.944074e+08 1.839088e+08 10498583.04 NULL
2022 Fire Department Emergency Medical Specialist-Paramedic 69040.67716 6.800507e+07 13485326.93 1.369069e+04 10281.650 260864.00 985 1.028165e+04 10127425.25 8.149039e+07 7.813249e+07 3357901.68 NULL
2022 Fire Department Employee Assistance Program Specialist 46534.65941 4.188119e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.188119e+05 4.188119e+05 0.00 NULL
2022 Fire Department Executive Agency Counsel 151462.00000 1.969006e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.969006e+06 1.969006e+06 0.00 NULL
2022 Fire Department Executive Inspector 118000.00000 1.180000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.180000e+05 1.180000e+05 0.00 NULL
2022 Fire Department Executive Program Specialist 157483.66667 9.449020e+05 1023.70 1.706167e+02 0.000 16.00 6 0.000000e+00 0.00 9.459257e+05 9.449020e+05 1023.70 NULL
2022 Fire Department Fire Alarm Dispatcher 57890.73092 1.441479e+07 4564562.60 1.833158e+04 13620.770 97598.02 249 1.362077e+04 3391571.73 1.897935e+07 1.780636e+07 1172990.87 NULL
2022 Fire Department Fire Marshal 102627.91250 1.642047e+07 4842551.21 3.026595e+04 28146.315 79827.71 160 2.814631e+04 4503410.40 2.126302e+07 2.092388e+07 339140.81 NULL
2022 Fire Department Fire Medical Officer 153408.22581 4.755655e+06 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 4.755655e+06 4.755655e+06 0.00 NULL
2022 Fire Department Fire Protection Inspector 58530.65169 1.041846e+07 689835.10 3.875478e+03 921.770 14440.47 178 9.217700e+02 164075.06 1.110829e+07 1.058253e+07 525760.04 NULL
2022 Fire Department Firefighter 83782.26972 8.126042e+08 317701633.28 3.275612e+04 33878.360 6588991.27 9699 3.275612e+04 317701633.28 1.130306e+09 1.130306e+09 0.00 NULL
2022 Fire Department First Deputy Commissioner 242767.00000 2.427670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.427670e+05 2.427670e+05 0.00 NULL
2022 Fire Department Head Nurse 94330.00000 2.829900e+05 4786.35 1.595450e+03 0.000 66.75 3 0.000000e+00 0.00 2.877763e+05 2.829900e+05 4786.35 NULL
2022 Fire Department Institutional Aide 40123.00000 8.024600e+04 11175.74 5.587870e+03 5587.870 379.50 2 5.587870e+03 11175.74 9.142174e+04 9.142174e+04 0.00 NULL
2022 Fire Department Investigator 60035.66667 1.080642e+06 24999.18 1.388843e+03 13.280 609.50 18 1.328000e+01 239.04 1.105641e+06 1.080881e+06 24760.14 NULL
2022 Fire Department It Automation And Monitoring Engineer 139666.66667 4.190000e+05 14687.23 4.895743e+03 1590.040 176.50 3 1.590040e+03 4770.12 4.336872e+05 4.237701e+05 9917.11 NULL
2022 Fire Department It Infrastructure Engineer 150173.66667 4.505210e+05 39519.22 1.317307e+04 12709.990 408.75 3 1.270999e+04 38129.97 4.900402e+05 4.886510e+05 1389.25 NULL
2022 Fire Department It Project Specialist 112467.50000 2.249350e+05 62452.23 3.122612e+04 31226.115 682.25 2 3.122612e+04 62452.23 2.873872e+05 2.873872e+05 0.00 NULL
2022 Fire Department It Security Specialist 151500.00000 3.030000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.030000e+05 3.030000e+05 0.00 NULL
2022 Fire Department It Service Management Specialist 130000.00000 1.300000e+05 658.18 6.581800e+02 658.180 9.25 1 6.581800e+02 658.18 1.306582e+05 1.306582e+05 0.00 NULL
2022 Fire Department Lieutenant 111687.45154 2.028244e+08 66522307.10 3.663123e+04 38307.275 1107523.23 1816 3.663123e+04 66522307.10 2.693467e+08 2.693467e+08 0.00 NULL
2022 Fire Department Locksmith NA NA 21544.18 7.181393e+03 7744.440 479.75 3 7.181393e+03 21544.18 NA NA NA NULL
2022 Fire Department Machinist NA NA 36964.19 3.696419e+04 36964.190 560.75 1 3.696419e+04 36964.19 NA NA NA NULL
2022 Fire Department Marine Engineer 104521.33333 2.822076e+06 1970306.63 7.297432e+04 71965.110 32512.38 27 7.196511e+04 1943057.97 4.792383e+06 4.765134e+06 27248.66 NULL
2022 Fire Department Marine Maintenance Mechanic 79484.00000 3.179360e+05 73459.29 1.836482e+04 18825.305 1456.75 4 1.836482e+04 73459.29 3.913953e+05 3.913953e+05 0.00 NULL
2022 Fire Department Metal Work Mechanic 101007.00000 2.020140e+05 140550.73 7.027537e+04 70275.365 1330.75 2 7.027537e+04 140550.73 3.425647e+05 3.425647e+05 0.00 NULL
2022 Fire Department Motor Vehicle Operator 48186.25857 8.191664e+05 45338.24 2.666955e+03 1558.430 1213.25 17 1.558430e+03 26493.31 8.645046e+05 8.456597e+05 18844.93 NULL
2022 Fire Department Motor Vehicle Supervisor 60160.00000 1.203200e+05 31035.82 1.551791e+04 15517.910 685.50 2 1.551791e+04 31035.82 1.513558e+05 1.513558e+05 0.00 NULL
2022 Fire Department New York City Public Service Fellow 42127.00000 4.212700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.212700e+04 4.212700e+04 0.00 NULL
2022 Fire Department Oiler NA NA 267221.00 4.453683e+04 43138.230 2998.00 6 4.313823e+04 258829.38 NA NA NA NULL
2022 Fire Department Painter NA NA 27048.83 9.016277e+03 13436.030 297.00 3 9.016277e+03 27048.83 NA NA NA NULL
2022 Fire Department Physician 53154.86096 2.657743e+05 77.76 1.555200e+01 0.000 1.00 5 0.000000e+00 0.00 2.658521e+05 2.657743e+05 77.76 NULL
2022 Fire Department Physician’s Assistant 93530.00000 9.353000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.353000e+04 9.353000e+04 0.00 NULL
2022 Fire Department Pilot 109806.45000 2.196129e+06 1287193.02 6.435965e+04 43092.975 19729.45 20 4.309297e+04 861859.50 3.483322e+06 3.057988e+06 425333.52 NULL
2022 Fire Department Planner: Production Cntrl & Scheduling 66471.50000 2.658860e+05 131535.37 3.288384e+04 30003.085 2036.25 4 3.000308e+04 120012.34 3.974214e+05 3.858983e+05 11523.03 NULL
2022 Fire Department Plasterer NA NA 10614.72 1.061472e+04 10614.720 111.25 1 1.061472e+04 10614.72 NA NA NA NULL
2022 Fire Department Plumber NA NA 526396.56 4.049204e+04 48527.290 5003.75 13 4.049204e+04 526396.56 NA NA NA NULL
2022 Fire Department Principal Administrative Associate - Non Supvr 65049.59384 8.196249e+06 283474.72 2.249799e+03 0.000 6258.25 126 0.000000e+00 0.00 8.479724e+06 8.196249e+06 283474.72 NULL
2022 Fire Department Procurement Analyst 60374.21507 9.659874e+05 11102.65 6.939156e+02 0.000 300.75 16 0.000000e+00 0.00 9.770901e+05 9.659874e+05 11102.65 NULL
2022 Fire Department Program Producer 64101.47810 3.205074e+05 34738.88 6.947776e+03 1002.430 616.25 5 1.002430e+03 5012.15 3.552463e+05 3.255195e+05 29726.73 NULL
2022 Fire Department Project Manager 69281.60000 6.928160e+05 45760.05 4.576005e+03 0.000 1033.50 10 0.000000e+00 0.00 7.385761e+05 6.928160e+05 45760.05 NULL
2022 Fire Department Psychologist 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2022 Fire Department Public Records Aide 41458.80000 6.218820e+05 10803.40 7.202267e+02 0.000 451.75 15 0.000000e+00 0.00 6.326854e+05 6.218820e+05 10803.40 NULL
2022 Fire Department Public Records Officer 63500.00000 6.350000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.350000e+04 6.350000e+04 0.00 NULL
2022 Fire Department Radio Repair Mechanic NA NA 993373.38 2.838210e+04 21893.240 13805.00 35 2.189324e+04 766263.40 NA NA NA NULL
2022 Fire Department Research Assistant 65670.00000 1.313400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.313400e+05 1.313400e+05 0.00 NULL
2022 Fire Department Roofer NA NA 24753.98 1.237699e+04 12376.990 422.50 2 1.237699e+04 24753.98 NA NA NA NULL
2022 Fire Department Rubber Tire Repairer NA NA 114938.45 8.841419e+03 767.560 2532.50 13 7.675600e+02 9978.28 NA NA NA NULL
2022 Fire Department Secretary To The Deputy Commissioner 78889.00000 7.888900e+04 15862.78 1.586278e+04 15862.780 312.25 1 1.586278e+04 15862.78 9.475178e+04 9.475178e+04 0.00 NULL
2022 Fire Department Secretary To The Fire Commissioner 127023.00000 1.270230e+05 2442.04 2.442040e+03 2442.040 33.00 1 2.442040e+03 2442.04 1.294650e+05 1.294650e+05 0.00 NULL
2022 Fire Department Secretary To The First Deputy Commissioner 92405.00000 1.848100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.848100e+05 1.848100e+05 0.00 NULL
2022 Fire Department Senior It Architect 128909.00000 1.289090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.289090e+05 1.289090e+05 0.00 NULL
2022 Fire Department Senior Stationary Engineer NA NA 101398.38 1.013984e+05 101398.380 961.00 1 1.013984e+05 101398.38 NA NA NA NULL
2022 Fire Department Senior Supervisor Communication Electrician NA NA 70049.09 7.004909e+04 70049.090 806.50 1 7.004909e+04 70049.09 NA NA NA NULL
2022 Fire Department Sheet Metal Worker NA NA 240220.31 6.005508e+04 69040.640 2089.50 4 6.005508e+04 240220.31 NA NA NA NULL
2022 Fire Department Social Worker 67860.65333 2.035820e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.035820e+05 2.035820e+05 0.00 NULL
2022 Fire Department Special Assistant To The Fire Commissioner 101795.00000 1.017950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.017950e+05 1.017950e+05 0.00 NULL
2022 Fire Department Spvsg Fad-Asst Commiss Detail 173040.00000 1.730400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.730400e+05 1.730400e+05 0.00 NULL
2022 Fire Department Spvsg Fad-Dep Dir Dsptch Dtail 112795.00000 2.255900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.255900e+05 2.255900e+05 0.00 NULL
2022 Fire Department Spvsg Fad-Dir Dsptch Op Detail 115680.00000 1.156800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.156800e+05 1.156800e+05 0.00 NULL
2022 Fire Department Staff Analyst 65025.79167 1.560619e+06 115297.85 4.804077e+03 39.400 2017.25 24 3.940000e+01 945.60 1.675917e+06 1.561565e+06 114352.25 NULL
2022 Fire Department Steam Fitter NA NA 14190.00 1.419000e+04 14190.000 129.00 1 1.419000e+04 14190.00 NA NA NA NULL
2022 Fire Department Steam Fitter’s Helper NA NA 104998.53 3.499951e+04 47664.390 1276.25 3 3.499951e+04 104998.53 NA NA NA NULL
2022 Fire Department Stock Worker 41556.33333 1.246690e+05 11439.21 3.813070e+03 2558.950 374.75 3 2.558950e+03 7676.85 1.361082e+05 1.323459e+05 3762.36 NULL
2022 Fire Department Strategic Initiative Specialist 136099.00000 2.721980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.721980e+05 2.721980e+05 0.00 NULL
2022 Fire Department Summer College Intern 490.00000 1.960000e+03 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.960000e+03 1.960000e+03 0.00 NULL
2022 Fire Department Summer Graduate Intern 661.50000 2.646000e+03 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.646000e+03 2.646000e+03 0.00 NULL
2022 Fire Department Supervising Blasting Inspector 84833.00000 5.938310e+05 277047.95 3.957828e+04 45183.920 4205.00 7 3.957828e+04 277047.95 8.708789e+05 8.708789e+05 0.00 NULL
2022 Fire Department Supervising Communication Electrician NA NA 399540.02 4.439334e+04 40834.670 4925.00 9 4.083467e+04 367512.03 NA NA NA NULL
2022 Fire Department Supervising Emergency Medical Service Specialist 81723.11028 5.483621e+07 13201403.11 1.967422e+04 14086.670 208937.40 671 1.408667e+04 9452155.57 6.803761e+07 6.428836e+07 3749247.54 NULL
2022 Fire Department Supervising Emergency Medical Service Specialist-Dpty Chiefs 114007.82456 6.498446e+06 352155.78 6.178172e+03 334.000 4108.25 57 3.340000e+02 19038.00 6.850602e+06 6.517484e+06 333117.78 NULL
2022 Fire Department Supervising Fire Alarm Dispatcher 82243.00000 4.276636e+06 2139476.68 4.114378e+04 32707.750 34192.00 52 3.270775e+04 1700803.00 6.416113e+06 5.977439e+06 438673.68 NULL
2022 Fire Department Supervising Fire Marshal 133034.59615 6.917799e+06 1095441.98 2.106619e+04 2397.230 16622.69 52 2.397230e+03 124655.96 8.013241e+06 7.042455e+06 970786.02 NULL
2022 Fire Department Supervisor Carpenter NA NA 284955.78 9.498526e+04 81968.140 3479.25 3 8.196814e+04 245904.42 NA NA NA NULL
2022 Fire Department Supervisor Electrician NA NA 348044.00 1.160147e+05 92399.950 3453.50 3 9.239995e+04 277199.85 NA NA NA NULL
2022 Fire Department Supervisor Of Electrical Installations & Maintenance 79057.00000 3.162280e+05 89049.67 2.226242e+04 23928.040 1568.50 4 2.226242e+04 89049.67 4.052777e+05 4.052777e+05 0.00 NULL
2022 Fire Department Supervisor Of Mechanics NA NA 2306215.81 5.490990e+04 56116.535 25824.50 42 5.490990e+04 2306215.81 NA NA NA NULL
2022 Fire Department Supervisor Of Nurses 93733.00000 9.373300e+04 2973.43 2.973430e+03 2973.430 40.25 1 2.973430e+03 2973.43 9.670643e+04 9.670643e+04 0.00 NULL
2022 Fire Department Supervisor Of Stock Workers 55761.95000 1.115239e+06 238552.46 1.192762e+04 9431.655 6235.25 20 9.431655e+03 188633.10 1.353791e+06 1.303872e+06 49919.36 NULL
2022 Fire Department Supervisor Plumber NA NA 212629.98 4.252600e+04 40062.570 1941.75 5 4.006257e+04 200312.85 NA NA NA NULL
2022 Fire Department Telecommunications Associate 79471.15385 1.033125e+06 217042.14 1.669555e+04 5670.340 4124.75 13 5.670340e+03 73714.42 1.250167e+06 1.106839e+06 143327.72 NULL
2022 Fire Department Telecommunications Manager 128292.00000 7.697520e+05 59330.65 9.888442e+03 4927.575 661.50 6 4.927575e+03 29565.45 8.290827e+05 7.993174e+05 29765.20 NULL
2022 Fire Department Wiper 95428.00000 1.335992e+06 867764.67 6.198319e+04 48586.780 15269.98 14 4.858678e+04 680214.92 2.203757e+06 2.016207e+06 187549.75 NULL
2022 Fire Department Worker’s Compensation Benefits Examiner 50943.70000 5.094370e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.094370e+05 5.094370e+05 0.00 NULL
2022 Guttman Community College Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 NA NA NA NULL
2022 Guttman Community College Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 NA NA NA NULL
2022 Guttman Community College Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2022 Guttman Community College Assistant Administrator 145003.00000 2.900060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.900060e+05 2.900060e+05 0.00 NULL
2022 Guttman Community College Assistant Dean 148500.00000 1.485000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.485000e+05 1.485000e+05 0.00 NULL
2022 Guttman Community College Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 NA NA NA NULL
2022 Guttman Community College Assistant Purchasing Agent 45396.00000 4.539600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.539600e+04 4.539600e+04 0.00 NULL
2022 Guttman Community College Assistant To Heo 68986.50000 6.898650e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 6.898650e+05 6.898650e+05 0.00 NULL
2022 Guttman Community College Assistant Vice President 165286.00000 3.305720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.305720e+05 3.305720e+05 0.00 NULL
2022 Guttman Community College Associate Administrator 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2022 Guttman Community College Associate Dean 138000.00000 1.380000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.380000e+05 1.380000e+05 0.00 NULL
2022 Guttman Community College Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 NA NA NA NULL
2022 Guttman Community College Business Data And Reporting Analyst 25093.83000 2.509383e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.509383e+04 2.509383e+04 0.00 NULL
2022 Guttman Community College Campus Peace Officer 48257.75000 1.930310e+05 18226.65 4.556663e+03 5548.180 517.00 4 4.556663e+03 18226.65 2.112576e+05 2.112576e+05 0.00 NULL
2022 Guttman Community College Campus Public Safety Sergeant 59939.25000 2.397570e+05 60359.89 1.508997e+04 13404.290 1407.50 4 1.340429e+04 53617.16 3.001169e+05 2.933742e+05 6742.73 NULL
2022 Guttman Community College Campus Security Assistant 34560.85714 2.419260e+05 26658.08 3.808297e+03 2387.590 1024.50 7 2.387590e+03 16713.13 2.685841e+05 2.586391e+05 9944.95 NULL
2022 Guttman Community College Clinical Professor 113231.00000 1.132310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.132310e+05 1.132310e+05 0.00 NULL
2022 Guttman Community College College Accounting Assistant 39469.00000 3.946900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.946900e+04 3.946900e+04 0.00 NULL
2022 Guttman Community College College Assistant 9937.65619 8.148878e+05 0.00 0.000000e+00 0.000 0.00 82 0.000000e+00 0.00 8.148878e+05 8.148878e+05 0.00 NULL
2022 Guttman Community College College Lab Technician 62830.00000 6.283000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.283000e+04 6.283000e+04 0.00 NULL
2022 Guttman Community College College Security Director 120351.00000 1.203510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.203510e+05 1.203510e+05 0.00 NULL
2022 Guttman Community College College Security Specialist 67514.00000 6.751400e+04 11640.35 1.164035e+04 11640.350 240.00 1 1.164035e+04 11640.35 7.915435e+04 7.915435e+04 0.00 NULL
2022 Guttman Community College Computer Systems Manager 111300.00000 2.226000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.226000e+05 2.226000e+05 0.00 NULL
2022 Guttman Community College Continuing Education Teacher 5223.10889 4.700798e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.700798e+04 4.700798e+04 0.00 NULL
2022 Guttman Community College Cuny Office Assistant 39481.33333 1.184440e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.184440e+05 1.184440e+05 0.00 NULL
2022 Guttman Community College Dean 154391.33333 4.631740e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.631740e+05 4.631740e+05 0.00 NULL
2022 Guttman Community College Disability Accommodations Specialist 45476.48500 1.364295e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.364295e+05 1.364295e+05 0.00 NULL
2022 Guttman Community College Higher Education Assistant 83916.00000 2.265732e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 2.265732e+06 2.265732e+06 0.00 NULL
2022 Guttman Community College Higher Education Associate 101684.64706 1.728639e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.728639e+06 1.728639e+06 0.00 NULL
2022 Guttman Community College Higher Education Officer 124679.29412 2.119548e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.119548e+06 2.119548e+06 0.00 NULL
2022 Guttman Community College Instructor 78005.00000 7.800500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.800500e+04 7.800500e+04 0.00 NULL
2022 Guttman Community College It Assistant 64321.00000 1.286420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.286420e+05 1.286420e+05 0.00 NULL
2022 Guttman Community College It Associate 75943.00000 1.518860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.518860e+05 1.518860e+05 0.00 NULL
2022 Guttman Community College It Senior Associate 95448.50000 1.908970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.908970e+05 1.908970e+05 0.00 NULL
2022 Guttman Community College It Support Assistant 41459.00000 8.291800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.291800e+04 8.291800e+04 0.00 NULL
2022 Guttman Community College Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 NA NA NA NULL
2022 Guttman Community College Non-Teaching Adjunct I 4146.02085 1.824249e+05 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 1.824249e+05 1.824249e+05 0.00 NULL
2022 Guttman Community College Non-Teaching Adjunct Ii 12231.40500 8.561984e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.561984e+04 8.561984e+04 0.00 NULL
2022 Guttman Community College Non-Teaching Adjunct Iii 1864.96823 5.781401e+04 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 5.781401e+04 5.781401e+04 0.00 NULL
2022 Guttman Community College Non-Teaching Adjunct Iv 2099.03455 2.308938e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 2.308938e+04 2.308938e+04 0.00 NULL
2022 Guttman Community College Non-Teaching Adjunct V 4508.76450 4.508764e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.508764e+04 4.508764e+04 0.00 NULL
2022 Guttman Community College President 236000.00000 4.720000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.720000e+05 4.720000e+05 0.00 NULL
2022 Guttman Community College Professor 127544.00000 1.147896e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.147896e+06 1.147896e+06 0.00 NULL
2022 Guttman Community College Student Aide 4078.46591 8.972625e+04 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 8.972625e+04 8.972625e+04 0.00 NULL
2022 Guttman Community College Vice President 185000.00000 3.700000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.700000e+05 3.700000e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt *Attorney At Law 97455.56281 7.796445e+05 13580.23 1.697529e+03 0.000 172.25 8 0.000000e+00 0.00 7.932247e+05 7.796445e+05 13580.23 NULL
2022 Housing Preservation & Dvlpmnt *Senior Estimator 88421.50000 1.768430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.768430e+05 1.768430e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Accountant 57743.25065 1.790041e+06 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 1.790041e+06 1.790041e+06 0.00 NULL
2022 Housing Preservation & Dvlpmnt Adm Manager-Non-Mgrl 86574.18961 6.666213e+06 83273.63 1.081476e+03 0.000 1472.50 77 0.000000e+00 0.00 6.749486e+06 6.666213e+06 83273.63 NULL
2022 Housing Preservation & Dvlpmnt Admin Community Relations Specialist 76269.38638 3.660931e+06 72164.53 1.503428e+03 0.820 1402.75 48 8.200000e-01 39.36 3.733095e+06 3.660970e+06 72125.17 NULL
2022 Housing Preservation & Dvlpmnt Admin Construction Project Manager 133900.00000 1.339000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339000e+05 1.339000e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Admin Contract Specialist 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Admin Housing Development Spec 101271.40909 4.455942e+06 58425.93 1.327862e+03 0.000 1025.00 44 0.000000e+00 0.00 4.514368e+06 4.455942e+06 58425.93 NULL
2022 Housing Preservation & Dvlpmnt Administrative Accountant 88533.71429 6.197360e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.197360e+05 6.197360e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Administrative Architect 115799.00000 1.157990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.157990e+05 1.157990e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Administrative Business Promotion Coordinator 74018.75000 2.960750e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.960750e+05 2.960750e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Administrative City Planner 111321.33333 1.335856e+06 452.16 3.768000e+01 0.000 6.75 12 0.000000e+00 0.00 1.336308e+06 1.335856e+06 452.16 NULL
2022 Housing Preservation & Dvlpmnt Administrative Community Relations Specialist 161478.00000 1.614780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.614780e+05 1.614780e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Administrative Construction Project Manager 113225.00000 1.132250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.132250e+05 1.132250e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Administrative Engineer 119546.66667 3.586400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.586400e+05 3.586400e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Administrative Housing Development Specialist 138532.62500 2.216522e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.216522e+06 2.216522e+06 0.00 NULL
2022 Housing Preservation & Dvlpmnt Administrative Inspector 117006.92857 1.638097e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.638097e+06 1.638097e+06 0.00 NULL
2022 Housing Preservation & Dvlpmnt Administrative Management Auditor 121835.66667 3.655070e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.655070e+05 3.655070e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Administrative Manager 154714.00000 7.735700e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.735700e+05 7.735700e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Administrative Procurement Analyst 122681.50000 2.453630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.453630e+05 2.453630e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Administrative Procurement Analyst-Non-Mgrl 87764.63636 9.654110e+05 8916.00 8.105455e+02 0.000 214.50 11 0.000000e+00 0.00 9.743270e+05 9.654110e+05 8916.00 NULL
2022 Housing Preservation & Dvlpmnt Administrative Project Director 114373.58621 3.316834e+06 10150.99 3.500341e+02 0.000 182.00 29 0.000000e+00 0.00 3.326985e+06 3.316834e+06 10150.99 NULL
2022 Housing Preservation & Dvlpmnt Administrative Project Manager 108395.37500 8.671630e+05 22917.43 2.864679e+03 0.000 310.75 8 0.000000e+00 0.00 8.900804e+05 8.671630e+05 22917.43 NULL
2022 Housing Preservation & Dvlpmnt Administrative Public Information Specialist Nm Former M1/M2 110216.00000 1.102160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.102160e+05 1.102160e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Administrative Quality Assurance Specialist 110016.00000 1.100160e+05 711.66 7.116600e+02 711.660 13.00 1 7.116600e+02 711.66 1.107277e+05 1.107277e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Administrative Real Property Manager 97335.00000 3.893400e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.893400e+05 3.893400e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Administrative Staff Analyst 113460.21429 9.530658e+06 61556.85 7.328196e+02 0.000 807.75 84 0.000000e+00 0.00 9.592215e+06 9.530658e+06 61556.85 NULL
2022 Housing Preservation & Dvlpmnt Administrative Supervisor Of Building Maintenance 110634.00000 1.106340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.106340e+05 1.106340e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Agency Attorney 97028.00000 6.015736e+06 22968.17 3.704544e+02 0.000 406.25 62 0.000000e+00 0.00 6.038704e+06 6.015736e+06 22968.17 NULL
2022 Housing Preservation & Dvlpmnt Agency Attorney Interne 71757.00000 7.175700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.175700e+04 7.175700e+04 0.00 NULL
2022 Housing Preservation & Dvlpmnt Agency Chief Contracting Officer 142827.50000 2.856550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.856550e+05 2.856550e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Appraiser 74720.71429 5.230450e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.230450e+05 5.230450e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Assistant Architect 74568.64286 1.043961e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.043961e+06 1.043961e+06 0.00 NULL
2022 Housing Preservation & Dvlpmnt Assistant Civil Engineer 68314.25000 2.732570e+05 32442.39 8.110597e+03 7703.880 674.75 4 7.703880e+03 30815.52 3.056994e+05 3.040725e+05 1626.87 NULL
2022 Housing Preservation & Dvlpmnt Assistant Commissioner 145625.75000 1.747509e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.747509e+06 1.747509e+06 0.00 NULL
2022 Housing Preservation & Dvlpmnt Assistant Mechanical Engineer 73777.75000 2.951110e+05 21454.00 5.363500e+03 0.000 405.75 4 0.000000e+00 0.00 3.165650e+05 2.951110e+05 21454.00 NULL
2022 Housing Preservation & Dvlpmnt Assistant Urban Designer 61026.00000 3.661560e+05 199.95 3.332500e+01 0.000 5.50 6 0.000000e+00 0.00 3.663560e+05 3.661560e+05 199.95 NULL
2022 Housing Preservation & Dvlpmnt Associate Housing Development Specialist 91775.55446 9.269331e+06 115947.46 1.147995e+03 0.000 2126.00 101 0.000000e+00 0.00 9.385278e+06 9.269331e+06 115947.46 NULL
2022 Housing Preservation & Dvlpmnt Associate Inspector 72069.11111 3.891732e+06 220113.35 4.076173e+03 860.380 3887.11 54 8.603800e+02 46460.52 4.111845e+06 3.938193e+06 173652.83 NULL
2022 Housing Preservation & Dvlpmnt Associate Investigator 64204.50000 1.284090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.284090e+05 1.284090e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Associate Project Manager 86649.40000 4.332470e+05 12876.43 2.575286e+03 0.000 205.50 5 0.000000e+00 0.00 4.461234e+05 4.332470e+05 12876.43 NULL
2022 Housing Preservation & Dvlpmnt Associate Quality Assurance Specialist 76193.00000 7.619300e+04 334.94 3.349400e+02 334.940 7.00 1 3.349400e+02 334.94 7.652794e+04 7.652794e+04 0.00 NULL
2022 Housing Preservation & Dvlpmnt Associate Real Property Manager 70372.28571 2.463030e+06 18518.41 5.290974e+02 0.000 353.50 35 0.000000e+00 0.00 2.481548e+06 2.463030e+06 18518.41 NULL
2022 Housing Preservation & Dvlpmnt Associate Rehabilitation Specialist 70161.00000 1.403220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.403220e+05 1.403220e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Associate Staff Analyst 91578.78857 1.923155e+06 630.69 3.003286e+01 0.000 7.00 21 0.000000e+00 0.00 1.923785e+06 1.923155e+06 630.69 NULL
2022 Housing Preservation & Dvlpmnt Asst Commissioner 137410.00000 1.374100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.374100e+05 1.374100e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Bookkeeper 61856.40000 3.092820e+05 111.19 2.223800e+01 0.000 3.00 5 0.000000e+00 0.00 3.093932e+05 3.092820e+05 111.19 NULL
2022 Housing Preservation & Dvlpmnt Certified It Administrator 135314.00000 1.353140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.353140e+05 1.353140e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Certified It Developer 106294.60000 5.314730e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.314730e+05 5.314730e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt City Planner 92600.03448 2.685401e+06 28666.91 9.885141e+02 0.000 432.00 29 0.000000e+00 0.00 2.714068e+06 2.685401e+06 28666.91 NULL
2022 Housing Preservation & Dvlpmnt City Research Scientist 96101.20000 4.805060e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.805060e+05 4.805060e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Civil Engineer 91074.00000 1.821480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.821480e+05 1.821480e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Clerical Associate 49594.42347 6.744842e+06 89632.68 6.590638e+02 0.000 2704.00 136 0.000000e+00 0.00 6.834474e+06 6.744842e+06 89632.68 NULL
2022 Housing Preservation & Dvlpmnt Commissioner Of Housing Preservation & Development 243171.00000 4.863420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863420e+05 4.863420e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Community Assistant 40758.29315 9.374407e+05 7319.06 3.182200e+02 0.000 290.50 23 0.000000e+00 0.00 9.447598e+05 9.374407e+05 7319.06 NULL
2022 Housing Preservation & Dvlpmnt Community Associate 46089.91604 1.636192e+07 223615.34 6.299024e+02 0.000 7540.75 355 0.000000e+00 0.00 1.658554e+07 1.636192e+07 223615.34 NULL
2022 Housing Preservation & Dvlpmnt Community Coordinator 65317.48042 2.168540e+07 261166.64 7.866465e+02 0.000 6012.75 332 0.000000e+00 0.00 2.194657e+07 2.168540e+07 261166.64 NULL
2022 Housing Preservation & Dvlpmnt Community Service Aide 28897.48272 1.733849e+05 5461.12 9.101867e+02 69.895 233.75 6 6.989500e+01 419.37 1.788460e+05 1.738043e+05 5041.75 NULL
2022 Housing Preservation & Dvlpmnt Computer Associate 89754.16667 3.231150e+06 2728.80 7.580000e+01 0.000 52.25 36 0.000000e+00 0.00 3.233879e+06 3.231150e+06 2728.80 NULL
2022 Housing Preservation & Dvlpmnt Computer Operations Manager 119710.16667 7.182610e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.182610e+05 7.182610e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Computer Specialist 107932.33898 6.368008e+06 27955.15 4.738161e+02 0.000 295.50 59 0.000000e+00 0.00 6.395963e+06 6.368008e+06 27955.15 NULL
2022 Housing Preservation & Dvlpmnt Computer Systems Manager 125401.77143 4.389062e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 4.389062e+06 4.389062e+06 0.00 NULL
2022 Housing Preservation & Dvlpmnt Confidential Strategy Planner 80356.50000 1.607130e+05 271.97 1.359850e+02 135.985 6.50 2 1.359850e+02 271.97 1.609850e+05 1.609850e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Construction Project Manager 79003.64750 1.516870e+07 556886.76 2.900452e+03 0.000 9738.75 192 0.000000e+00 0.00 1.572559e+07 1.516870e+07 556886.76 NULL
2022 Housing Preservation & Dvlpmnt Customer Information Representative Ma L 1549 61358.00000 1.227160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.227160e+05 1.227160e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Deputy Commissioner 204827.50000 8.193100e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.193100e+05 8.193100e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Deputy Counsel 154905.00000 1.549050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.549050e+05 1.549050e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Deputy General Counsel 164761.50000 6.590460e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.590460e+05 6.590460e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Director Of Neighborhood Conservation 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Director Of Property Management 134681.50000 2.693630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.693630e+05 2.693630e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Economist 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2022 Housing Preservation & Dvlpmnt Electrician NA NA 88754.28 8.875428e+04 88754.280 910.00 1 8.875428e+04 88754.28 NA NA NA NULL
2022 Housing Preservation & Dvlpmnt Eligibility Specialist 54387.00000 1.087740e+05 738.84 3.694200e+02 369.420 18.25 2 3.694200e+02 738.84 1.095128e+05 1.095128e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Estimator 77688.66667 2.330660e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.330660e+05 2.330660e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Executive Agency Counsel 140483.77273 3.090643e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 3.090643e+06 3.090643e+06 0.00 NULL
2022 Housing Preservation & Dvlpmnt Executive Assistant To The Deputy Commissioner 102449.80000 5.122490e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.122490e+05 5.122490e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Executive Program Specialist 103085.66667 3.092570e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.092570e+05 3.092570e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt General Counsel 207155.00000 2.071550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.071550e+05 2.071550e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Housing Development Specialist 77574.62602 9.541679e+06 244767.64 1.989981e+03 0.000 4647.50 123 0.000000e+00 0.00 9.786447e+06 9.541679e+06 244767.64 NULL
2022 Housing Preservation & Dvlpmnt Industrial Hygienist 61520.50000 1.230410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.230410e+05 1.230410e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Inspector 59871.09735 2.029630e+07 671920.13 1.982065e+03 0.000 14275.87 339 0.000000e+00 0.00 2.096822e+07 2.029630e+07 671920.13 NULL
2022 Housing Preservation & Dvlpmnt Investigator 68794.84615 8.943330e+05 1395.85 1.073731e+02 0.000 36.25 13 0.000000e+00 0.00 8.957288e+05 8.943330e+05 1395.85 NULL
2022 Housing Preservation & Dvlpmnt Lead Abatement Worker 53951.00000 1.079020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.079020e+05 1.079020e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Legislative Assistant 99333.33333 2.980000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.980000e+05 2.980000e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Management Auditor 82799.00000 5.795930e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.795930e+05 5.795930e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Mechanical Engineer 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Multiple Dwelling Specialist 73384.00000 1.467680e+05 34021.60 1.701080e+04 17010.800 544.00 2 1.701080e+04 34021.60 1.807896e+05 1.807896e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt New York City Public Service Fellow 44238.50000 8.847700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.847700e+04 8.847700e+04 0.00 NULL
2022 Housing Preservation & Dvlpmnt Paralegal Aide 53488.40000 2.674420e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.674420e+05 2.674420e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Principal Administrative Associate - Non Supvr 65668.91892 7.289250e+06 89953.02 8.103876e+02 0.000 1755.68 111 0.000000e+00 0.00 7.379203e+06 7.289250e+06 89953.02 NULL
2022 Housing Preservation & Dvlpmnt Principal Appraiser 131060.00000 1.310600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.310600e+05 1.310600e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Procurement Analyst 66106.20000 6.610620e+05 824.71 8.247100e+01 0.000 26.25 10 0.000000e+00 0.00 6.618867e+05 6.610620e+05 824.71 NULL
2022 Housing Preservation & Dvlpmnt Project Manager 65640.00000 6.564000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.564000e+04 6.564000e+04 0.00 NULL
2022 Housing Preservation & Dvlpmnt Quality Assurance Specialist 59966.87500 4.797350e+05 3735.69 4.669613e+02 0.000 89.75 8 0.000000e+00 0.00 4.834707e+05 4.797350e+05 3735.69 NULL
2022 Housing Preservation & Dvlpmnt Real Property Manager 60500.08696 1.391502e+06 12776.33 5.554926e+02 0.000 306.75 23 0.000000e+00 0.00 1.404278e+06 1.391502e+06 12776.33 NULL
2022 Housing Preservation & Dvlpmnt Repair Crew Chief 43693.60000 2.184680e+05 10919.44 2.183888e+03 0.000 329.92 5 0.000000e+00 0.00 2.293874e+05 2.184680e+05 10919.44 NULL
2022 Housing Preservation & Dvlpmnt Repair Shop Manager 78318.00000 7.831800e+04 26434.30 2.643430e+04 26434.300 468.00 1 2.643430e+04 26434.30 1.047523e+05 1.047523e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Secretary 48302.30769 6.279300e+05 97.28 7.483077e+00 0.000 3.75 13 0.000000e+00 0.00 6.280273e+05 6.279300e+05 97.28 NULL
2022 Housing Preservation & Dvlpmnt Secretary Of The Department 141532.00000 1.415320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.415320e+05 1.415320e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Senior Repair Crew Chief 63872.75000 2.554910e+05 150871.96 3.771799e+04 44455.600 3364.38 4 3.771799e+04 150871.96 4.063630e+05 4.063630e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Special Assistant To The Commissioner 200000.00000 4.000000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.000000e+05 4.000000e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Staff Analyst 68445.11111 1.232012e+06 1959.78 1.088767e+02 0.000 8.00 18 0.000000e+00 0.00 1.233972e+06 1.232012e+06 1959.78 NULL
2022 Housing Preservation & Dvlpmnt Statistician 68335.00000 6.833500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.833500e+04 6.833500e+04 0.00 NULL
2022 Housing Preservation & Dvlpmnt Strategic Initiative Specialist 103781.71429 7.264720e+05 829.93 1.185614e+02 0.000 12.75 7 0.000000e+00 0.00 7.273019e+05 7.264720e+05 829.93 NULL
2022 Housing Preservation & Dvlpmnt Supervising Demolition Inspector 81404.00000 3.256160e+05 42074.47 1.051862e+04 10545.995 700.50 4 1.051862e+04 42074.47 3.676905e+05 3.676905e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Supervisor Of Electrical Installations & Maintenance 91048.00000 3.641920e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.641920e+05 3.641920e+05 0.00 NULL
2022 Housing Preservation & Dvlpmnt Supervisor Of Mechanical Installations & Maintenance 82631.40000 8.263140e+05 13655.34 1.365534e+03 0.000 241.75 10 0.000000e+00 0.00 8.399693e+05 8.263140e+05 13655.34 NULL
2022 Housing Preservation & Dvlpmnt Supervisor Of Stock Workers 68869.00000 6.886900e+04 5970.05 5.970050e+03 5970.050 122.25 1 5.970050e+03 5970.05 7.483905e+04 7.483905e+04 0.00 NULL
2022 Hra/Dept Of Social Services *Attorney At Law 90797.71429 6.355840e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.355840e+05 6.355840e+05 0.00 NULL
2022 Hra/Dept Of Social Services *Certified Applications Developer 129573.00000 1.295730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.295730e+05 1.295730e+05 0.00 NULL
2022 Hra/Dept Of Social Services *Certified Database Administrator 115100.00000 1.151000e+05 21060.48 2.106048e+04 21060.480 225.00 1 2.106048e+04 21060.48 1.361605e+05 1.361605e+05 0.00 NULL
2022 Hra/Dept Of Social Services *Certified Local Area Network Administrator 99786.75000 7.982940e+05 62162.51 7.770314e+03 0.000 793.50 8 0.000000e+00 0.00 8.604565e+05 7.982940e+05 62162.51 NULL
2022 Hra/Dept Of Social Services *Certified Wide Area Network Administrator 113753.00000 1.137530e+05 3648.82 3.648820e+03 3648.820 47.00 1 3.648820e+03 3648.82 1.174018e+05 1.174018e+05 0.00 NULL
2022 Hra/Dept Of Social Services *Custodial Assistant 37378.00000 3.737800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.737800e+04 3.737800e+04 0.00 NULL
2022 Hra/Dept Of Social Services Accountant 65215.26667 9.782290e+05 1752.89 1.168593e+02 0.000 46.00 15 0.000000e+00 0.00 9.799819e+05 9.782290e+05 1752.89 NULL
2022 Hra/Dept Of Social Services Adm Manager-Non-Mgrl 80912.00000 7.362992e+06 409496.23 4.499959e+03 0.000 7228.75 91 0.000000e+00 0.00 7.772488e+06 7.362992e+06 409496.23 NULL
2022 Hra/Dept Of Social Services Admin Community Relations Specialist 98589.91437 3.154877e+06 70844.65 2.213895e+03 0.000 1157.25 32 0.000000e+00 0.00 3.225722e+06 3.154877e+06 70844.65 NULL
2022 Hra/Dept Of Social Services Admin Construction Project Manager 118424.00000 1.184240e+05 -269.48 -2.694800e+02 -269.480 0.00 1 -2.694800e+02 -269.48 1.181545e+05 1.181545e+05 0.00 NULL
2022 Hra/Dept Of Social Services Admin Contract Specialist 122348.25000 4.893930e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.893930e+05 4.893930e+05 0.00 NULL
2022 Hra/Dept Of Social Services Admin Job Opor Spec-Managerial 140399.87500 3.369597e+06 48655.70 2.027321e+03 0.000 707.00 24 0.000000e+00 0.00 3.418253e+06 3.369597e+06 48655.70 NULL
2022 Hra/Dept Of Social Services Admin Job Opportunity Spec Nm 88331.41935 8.214822e+06 857510.74 9.220546e+03 6991.230 13136.00 93 6.991230e+03 650184.39 9.072333e+06 8.865006e+06 207326.35 NULL
2022 Hra/Dept Of Social Services Administrative Accountant 113478.50000 9.078280e+05 2837.41 3.546762e+02 0.000 54.50 8 0.000000e+00 0.00 9.106654e+05 9.078280e+05 2837.41 NULL
2022 Hra/Dept Of Social Services Administrative Architect 113300.00000 1.133000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133000e+05 1.133000e+05 0.00 NULL
2022 Hra/Dept Of Social Services Administrative Business Promotion Coordinator 113921.66667 3.417650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.417650e+05 3.417650e+05 0.00 NULL
2022 Hra/Dept Of Social Services Administrative City Planner 109524.00000 1.095240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.095240e+05 1.095240e+05 0.00 NULL
2022 Hra/Dept Of Social Services Administrative Community Relations Specialist 161140.25000 6.445610e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.445610e+05 6.445610e+05 0.00 NULL
2022 Hra/Dept Of Social Services Administrative Construction Project Manager 123150.00000 1.231500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.231500e+05 1.231500e+05 0.00 NULL
2022 Hra/Dept Of Social Services Administrative Contract Specialist 90983.84615 1.182790e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.182790e+06 1.182790e+06 0.00 NULL
2022 Hra/Dept Of Social Services Administrative Director Of Social Services 110401.13462 1.722258e+07 118341.14 7.585971e+02 0.000 2247.75 156 0.000000e+00 0.00 1.734092e+07 1.722258e+07 118341.14 NULL
2022 Hra/Dept Of Social Services Administrative Engineer 120389.00000 1.203890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.203890e+05 1.203890e+05 0.00 NULL
2022 Hra/Dept Of Social Services Administrative Graphic Artist 94875.00000 9.487500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.487500e+04 9.487500e+04 0.00 NULL
2022 Hra/Dept Of Social Services Administrative Investigator 95849.91892 3.546447e+06 2513.89 6.794297e+01 0.000 41.25 37 0.000000e+00 0.00 3.548961e+06 3.546447e+06 2513.89 NULL
2022 Hra/Dept Of Social Services Administrative Labor Relations Analyst 101400.00000 1.014000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.014000e+05 1.014000e+05 0.00 NULL
2022 Hra/Dept Of Social Services Administrative Management Auditor 106589.90909 1.172489e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.172489e+06 1.172489e+06 0.00 NULL
2022 Hra/Dept Of Social Services Administrative Manager 124108.80000 6.205440e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.205440e+05 6.205440e+05 0.00 NULL
2022 Hra/Dept Of Social Services Administrative Printing Services Manager 113015.33333 3.390460e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.390460e+05 3.390460e+05 0.00 NULL
2022 Hra/Dept Of Social Services Administrative Procurement Analyst 124032.33333 3.720970e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.720970e+05 3.720970e+05 0.00 NULL
2022 Hra/Dept Of Social Services Administrative Procurement Analyst-Non-Mgrl 90332.20690 2.619634e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 2.619634e+06 2.619634e+06 0.00 NULL
2022 Hra/Dept Of Social Services Administrative Public Information Specialist 128708.71429 9.009610e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.009610e+05 9.009610e+05 0.00 NULL
2022 Hra/Dept Of Social Services Administrative Public Information Specialist Nm Former M1/M2 100031.20000 5.001560e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.001560e+05 5.001560e+05 0.00 NULL
2022 Hra/Dept Of Social Services Administrative Retirement Benefits Specialist 91902.00000 9.190200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.190200e+04 9.190200e+04 0.00 NULL
2022 Hra/Dept Of Social Services Administrative Space Analyst 96721.16667 5.803270e+05 190.51 3.175167e+01 0.000 5.00 6 0.000000e+00 0.00 5.805175e+05 5.803270e+05 190.51 NULL
2022 Hra/Dept Of Social Services Administrative Staff Analyst 107052.00508 4.217849e+07 172955.72 4.389739e+02 0.000 2263.00 394 0.000000e+00 0.00 4.235145e+07 4.217849e+07 172955.72 NULL
2022 Hra/Dept Of Social Services Administrative Storekeeper 110013.00000 3.300390e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.300390e+05 3.300390e+05 0.00 NULL
2022 Hra/Dept Of Social Services Administrative Supervisor Of Building Maintenance 146943.00000 1.028601e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.028601e+06 1.028601e+06 0.00 NULL
2022 Hra/Dept Of Social Services Agency Attorney 87501.43119 9.537656e+06 7492.17 6.873550e+01 0.000 138.50 109 0.000000e+00 0.00 9.545148e+06 9.537656e+06 7492.17 NULL
2022 Hra/Dept Of Social Services Agency Attorney Interne 64296.88889 5.786720e+05 3936.33 4.373700e+02 0.000 100.50 9 0.000000e+00 0.00 5.826083e+05 5.786720e+05 3936.33 NULL
2022 Hra/Dept Of Social Services Agency Chief Contracting Officer 209106.00000 2.091060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.091060e+05 2.091060e+05 0.00 NULL
2022 Hra/Dept Of Social Services Architect 92640.00000 9.264000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.264000e+04 9.264000e+04 0.00 NULL
2022 Hra/Dept Of Social Services Assist Commissioner For Policy Analysis & Prog Deve 152310.00000 1.523100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.523100e+05 1.523100e+05 0.00 NULL
2022 Hra/Dept Of Social Services Assistant Administrator Of Public Affairs 114225.00000 2.284500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.284500e+05 2.284500e+05 0.00 NULL
2022 Hra/Dept Of Social Services Assistant Architect 75643.00000 1.512860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.512860e+05 1.512860e+05 0.00 NULL
2022 Hra/Dept Of Social Services Assistant Commissioner 164217.28571 1.149521e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.149521e+06 1.149521e+06 0.00 NULL
2022 Hra/Dept Of Social Services Assistant Deputy Administrator 191184.00000 3.823680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.823680e+05 3.823680e+05 0.00 NULL
2022 Hra/Dept Of Social Services Assistant Deputy Commissioner Ss 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2022 Hra/Dept Of Social Services Assistant Printing Press Operator 60757.50000 1.215150e+05 150.69 7.534500e+01 75.345 4.25 2 7.534500e+01 150.69 1.216657e+05 1.216657e+05 0.00 NULL
2022 Hra/Dept Of Social Services Assistant Superintendent Of Welfare Shelters 70083.70000 7.008370e+05 30013.23 3.001323e+03 2644.295 626.50 10 2.644295e+03 26442.95 7.308502e+05 7.272799e+05 3570.28 NULL
2022 Hra/Dept Of Social Services Assoc Adm For Purchasing Materials Mgt & Envir Control 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2022 Hra/Dept Of Social Services Associate Commissioner For Employment Service 172000.00000 1.720000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.720000e+05 1.720000e+05 0.00 NULL
2022 Hra/Dept Of Social Services Associate Commissioner For Personnel Service 164000.00000 1.640000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.640000e+05 1.640000e+05 0.00 NULL
2022 Hra/Dept Of Social Services Associate Contract Specialist 71591.75000 5.727340e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.727340e+05 5.727340e+05 0.00 NULL
2022 Hra/Dept Of Social Services Associate Fraud Investigator 71451.47639 1.664819e+07 1229862.99 5.278382e+03 0.000 22382.75 233 0.000000e+00 0.00 1.787806e+07 1.664819e+07 1229862.99 NULL
2022 Hra/Dept Of Social Services Associate Housing Development Specialist 95189.71429 6.663280e+05 14755.05 2.107864e+03 0.000 278.00 7 0.000000e+00 0.00 6.810831e+05 6.663280e+05 14755.05 NULL
2022 Hra/Dept Of Social Services Associate Job Opportunity Specialist 64718.08957 4.840913e+07 9847224.49 1.316474e+04 11655.125 201963.75 748 1.165512e+04 8718033.50 5.825636e+07 5.712716e+07 1129190.99 NULL
2022 Hra/Dept Of Social Services Associate Labor Relations Analyst 87820.25000 3.512810e+05 114.83 2.870750e+01 0.000 0.00 4 0.000000e+00 0.00 3.513958e+05 3.512810e+05 114.83 NULL
2022 Hra/Dept Of Social Services Associate Project Manager 88377.00000 8.837700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.837700e+04 8.837700e+04 0.00 NULL
2022 Hra/Dept Of Social Services Associate Staff Analyst 82912.51190 2.089395e+07 357781.63 1.419768e+03 0.000 5477.50 252 0.000000e+00 0.00 2.125173e+07 2.089395e+07 357781.63 NULL
2022 Hra/Dept Of Social Services Asst Commissioner For Public & Legis Affairs 109936.00000 2.198720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.198720e+05 2.198720e+05 0.00 NULL
2022 Hra/Dept Of Social Services Bookbinder 43831.00000 4.383100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.383100e+04 4.383100e+04 0.00 NULL
2022 Hra/Dept Of Social Services Bookkeeper 50805.12500 4.470851e+06 894727.33 1.016736e+04 2048.515 22682.25 88 2.048515e+03 180269.32 5.365578e+06 4.651120e+06 714458.01 NULL
2022 Hra/Dept Of Social Services Business Promotion Coordinator 87714.00000 1.754280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.754280e+05 1.754280e+05 0.00 NULL
2022 Hra/Dept Of Social Services Carpenter NA NA 109218.22 7.801301e+03 6282.255 1238.00 14 6.282255e+03 87951.57 NA NA NA NULL
2022 Hra/Dept Of Social Services Caseworker 47951.23232 5.965133e+07 5640703.17 4.534327e+03 0.000 141187.00 1244 0.000000e+00 0.00 6.529204e+07 5.965133e+07 5640703.17 NULL
2022 Hra/Dept Of Social Services Cement Mason NA NA 865.80 4.329000e+02 432.900 9.00 2 4.329000e+02 865.80 NA NA NA NULL
2022 Hra/Dept Of Social Services Certified It Administrator 103316.22222 2.789538e+06 195732.00 7.249333e+03 2778.420 2555.50 27 2.778420e+03 75017.34 2.985270e+06 2.864555e+06 120714.66 NULL
2022 Hra/Dept Of Social Services Certified It Developer 113802.55556 1.024223e+06 18229.74 2.025527e+03 0.000 264.50 9 0.000000e+00 0.00 1.042453e+06 1.024223e+06 18229.74 NULL
2022 Hra/Dept Of Social Services Chief Of Staff 147500.00000 2.950000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.950000e+05 2.950000e+05 0.00 NULL
2022 Hra/Dept Of Social Services City Custodial Assistant 39835.50000 7.967100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.967100e+04 7.967100e+04 0.00 NULL
2022 Hra/Dept Of Social Services City Laborer NA NA 73298.24 4.581140e+03 4458.750 1220.75 16 4.458750e+03 71340.00 NA NA NA NULL
2022 Hra/Dept Of Social Services City Planner 87393.00000 8.739300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.739300e+04 8.739300e+04 0.00 NULL
2022 Hra/Dept Of Social Services City Research Scientist 94121.46479 6.682624e+06 61370.89 8.643787e+02 0.000 1169.25 71 0.000000e+00 0.00 6.743995e+06 6.682624e+06 61370.89 NULL
2022 Hra/Dept Of Social Services Clerical Aide 35848.40000 1.792420e+05 3351.46 6.702920e+02 0.000 115.00 5 0.000000e+00 0.00 1.825935e+05 1.792420e+05 3351.46 NULL
2022 Hra/Dept Of Social Services Clerical Associate 41990.66182 3.082115e+07 3016389.41 4.109522e+03 0.000 91811.04 734 0.000000e+00 0.00 3.383754e+07 3.082115e+07 3016389.41 NULL
2022 Hra/Dept Of Social Services Community Assistant 37828.01695 2.231853e+06 109151.01 1.850017e+03 0.000 4100.50 59 0.000000e+00 0.00 2.341004e+06 2.231853e+06 109151.01 NULL
2022 Hra/Dept Of Social Services Community Associate 44630.71784 1.669189e+07 1190962.80 3.184393e+03 111.115 36948.07 374 1.111150e+02 41557.01 1.788285e+07 1.673345e+07 1149405.79 NULL
2022 Hra/Dept Of Social Services Community Coordinator 67370.67478 2.236706e+07 1585176.21 4.774627e+03 0.000 34591.50 332 0.000000e+00 0.00 2.395224e+07 2.236706e+07 1585176.21 NULL
2022 Hra/Dept Of Social Services Computer Aide-Non-Spvr 48166.75000 1.926670e+05 1220.13 3.050325e+02 43.295 40.75 4 4.329500e+01 173.18 1.938871e+05 1.928402e+05 1046.95 NULL
2022 Hra/Dept Of Social Services Computer Associate 74650.94118 8.883462e+06 717710.69 6.031182e+03 0.000 13200.50 119 0.000000e+00 0.00 9.601173e+06 8.883462e+06 717710.69 NULL
2022 Hra/Dept Of Social Services Computer Operations Manager 117604.83333 7.056290e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.056290e+05 7.056290e+05 0.00 NULL
2022 Hra/Dept Of Social Services Computer Programmer Analyst 70820.00000 7.082000e+04 6871.97 6.871970e+03 6871.970 162.75 1 6.871970e+03 6871.97 7.769197e+04 7.769197e+04 0.00 NULL
2022 Hra/Dept Of Social Services Computer Service Technician 49862.25000 3.988980e+05 21453.55 2.681694e+03 780.255 593.25 8 7.802550e+02 6242.04 4.203515e+05 4.051400e+05 15211.51 NULL
2022 Hra/Dept Of Social Services Computer Specialist 103809.24214 3.301134e+07 1480262.04 4.654912e+03 0.000 20107.25 318 0.000000e+00 0.00 3.449160e+07 3.301134e+07 1480262.04 NULL
2022 Hra/Dept Of Social Services Computer Systems Manager 136130.98795 1.129887e+07 142175.60 1.712959e+03 0.000 1768.75 83 0.000000e+00 0.00 1.144105e+07 1.129887e+07 142175.60 NULL
2022 Hra/Dept Of Social Services Confidential Strategy Planner 88502.40000 4.425120e+05 4986.08 9.972160e+02 0.000 88.00 5 0.000000e+00 0.00 4.474981e+05 4.425120e+05 4986.08 NULL
2022 Hra/Dept Of Social Services Construction Project Manager 86746.33333 2.602390e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.602390e+05 2.602390e+05 0.00 NULL
2022 Hra/Dept Of Social Services Consultant 75544.44444 6.799000e+05 59.76 6.640000e+00 0.000 0.00 9 0.000000e+00 0.00 6.799598e+05 6.799000e+05 59.76 NULL
2022 Hra/Dept Of Social Services Contract Specialist 58893.00000 6.478230e+05 8648.49 7.862264e+02 0.000 195.25 11 0.000000e+00 0.00 6.564715e+05 6.478230e+05 8648.49 NULL
2022 Hra/Dept Of Social Services Custodian 46879.94937 3.703516e+06 475160.41 6.014689e+03 5196.190 13324.50 79 5.196190e+03 410499.01 4.178676e+06 4.114015e+06 64661.40 NULL
2022 Hra/Dept Of Social Services Cyber Security Analyst 87138.00000 4.356900e+05 16798.71 3.359742e+03 851.460 312.50 5 8.514600e+02 4257.30 4.524887e+05 4.399473e+05 12541.41 NULL
2022 Hra/Dept Of Social Services Deputy Assistant Commissioner 153107.00000 1.531070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.531070e+05 1.531070e+05 0.00 NULL
2022 Hra/Dept Of Social Services Deputy Asst Admin For Personnel Adm & Labor Rel 106023.00000 1.060230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.060230e+05 1.060230e+05 0.00 NULL
2022 Hra/Dept Of Social Services Deputy Commisioner 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2022 Hra/Dept Of Social Services Deputy Commissioner 180758.33333 5.422750e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.422750e+05 5.422750e+05 0.00 NULL
2022 Hra/Dept Of Social Services Deputy Commissioner Of It 166990.40000 8.349520e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.349520e+05 8.349520e+05 0.00 NULL
2022 Hra/Dept Of Social Services Deputy Director Of Administration 122134.58333 1.465615e+06 5051.46 4.209550e+02 0.000 99.50 12 0.000000e+00 0.00 1.470666e+06 1.465615e+06 5051.46 NULL
2022 Hra/Dept Of Social Services Deputy Director Of Labor Relations 115924.50000 2.318490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.318490e+05 2.318490e+05 0.00 NULL
2022 Hra/Dept Of Social Services Deputy Director Of Security 96586.33333 2.897590e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.897590e+05 2.897590e+05 0.00 NULL
2022 Hra/Dept Of Social Services Deputy General Counsel 98500.00000 1.970000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.970000e+05 1.970000e+05 0.00 NULL
2022 Hra/Dept Of Social Services Dir Of Contract Mgmt & Intergovernmental Relations 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2022 Hra/Dept Of Social Services Dir Of Home Care Services/Family And Adult Services 126331.00000 1.263310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.263310e+05 1.263310e+05 0.00 NULL
2022 Hra/Dept Of Social Services Dir Of Mgnt System, Planning, Research And Eval 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2022 Hra/Dept Of Social Services Dir Policy Econom Resrch 92436.00000 9.243600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.243600e+04 9.243600e+04 0.00 NULL
2022 Hra/Dept Of Social Services Director Of Admin 215848.00000 2.158480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.158480e+05 2.158480e+05 0.00 NULL
2022 Hra/Dept Of Social Services Director Of Community Participation Programs 114755.00000 2.295100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.295100e+05 2.295100e+05 0.00 NULL
2022 Hra/Dept Of Social Services Director Of Compliance & Legislative Development 95676.00000 9.567600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.567600e+04 9.567600e+04 0.00 NULL
2022 Hra/Dept Of Social Services Director Of Eeo 114173.00000 1.141730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.141730e+05 1.141730e+05 0.00 NULL
2022 Hra/Dept Of Social Services Director Of Eeo/Contract Compliance 139467.00000 1.394670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.394670e+05 1.394670e+05 0.00 NULL
2022 Hra/Dept Of Social Services Director Of Fiscal Operations 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2022 Hra/Dept Of Social Services Director Of Food Stamp Program 156000.00000 1.560000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.560000e+05 1.560000e+05 0.00 NULL
2022 Hra/Dept Of Social Services Director Of Labor Relations 165534.00000 1.655340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.655340e+05 1.655340e+05 0.00 NULL
2022 Hra/Dept Of Social Services Director Of Legislative Coordination 122847.50000 2.456950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.456950e+05 2.456950e+05 0.00 NULL
2022 Hra/Dept Of Social Services Director Of Management Design 93730.00000 9.373000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.373000e+04 9.373000e+04 0.00 NULL
2022 Hra/Dept Of Social Services Director Of Management Planning 108871.00000 1.088710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.088710e+05 1.088710e+05 0.00 NULL
2022 Hra/Dept Of Social Services Director Of Management Planning Ss 141047.66667 4.231430e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.231430e+05 4.231430e+05 0.00 NULL
2022 Hra/Dept Of Social Services Director Of Policy Analysis 152391.00000 3.047820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.047820e+05 3.047820e+05 0.00 NULL
2022 Hra/Dept Of Social Services Director Of Program Planning 152002.50000 3.040050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.040050e+05 3.040050e+05 0.00 NULL
2022 Hra/Dept Of Social Services Director Of Public Information 144375.00000 2.887500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.887500e+05 2.887500e+05 0.00 NULL
2022 Hra/Dept Of Social Services Director Of Security 101110.00000 1.011100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.011100e+05 1.011100e+05 0.00 NULL
2022 Hra/Dept Of Social Services Electrician NA NA 12541.82 1.567727e+03 1366.270 133.00 8 1.366270e+03 10930.16 NA NA NA NULL
2022 Hra/Dept Of Social Services Electricians Helper NA NA 3041.91 6.083820e+02 0.000 51.00 5 0.000000e+00 0.00 NA NA NA NULL
2022 Hra/Dept Of Social Services Eligibility Specialist 43762.72105 9.710948e+07 16297189.08 7.344384e+03 566.300 466589.36 2219 5.663000e+02 1256619.70 1.134067e+08 9.836610e+07 15040569.38 NULL
2022 Hra/Dept Of Social Services Exec Asst To The Deputy Commissioner 116856.50000 2.337130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.337130e+05 2.337130e+05 0.00 NULL
2022 Hra/Dept Of Social Services Executive Agency Counsel 137900.54717 7.308729e+06 0.00 0.000000e+00 0.000 0.00 53 0.000000e+00 0.00 7.308729e+06 7.308729e+06 0.00 NULL
2022 Hra/Dept Of Social Services Executive Assistant To The Commissioner Of Community Develop 186923.00000 1.869230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.869230e+05 1.869230e+05 0.00 NULL
2022 Hra/Dept Of Social Services Executive Assistant To The Executive Deputy Adm 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2022 Hra/Dept Of Social Services Executive Assistant To The Human Resources Admin 162791.00000 3.255820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.255820e+05 3.255820e+05 0.00 NULL
2022 Hra/Dept Of Social Services Executive Asst-Domestic Violence-Hra 64911.00000 3.245550e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.245550e+05 3.245550e+05 0.00 NULL
2022 Hra/Dept Of Social Services Executive Deputy Administrator 217664.33333 6.529930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.529930e+05 6.529930e+05 0.00 NULL
2022 Hra/Dept Of Social Services Executive Program Specialist 118450.00000 2.369000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.369000e+05 2.369000e+05 0.00 NULL
2022 Hra/Dept Of Social Services First Deputy Commissioner 221301.00000 2.213010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.213010e+05 2.213010e+05 0.00 NULL
2022 Hra/Dept Of Social Services Fraud Investigator 54565.60033 3.317588e+07 4360835.07 7.172426e+03 0.000 97661.14 608 0.000000e+00 0.00 3.753672e+07 3.317588e+07 4360835.07 NULL
2022 Hra/Dept Of Social Services General Counsel 215857.00000 2.158570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.158570e+05 2.158570e+05 0.00 NULL
2022 Hra/Dept Of Social Services Graphic Artist 56184.10000 5.618410e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.618410e+05 5.618410e+05 0.00 NULL
2022 Hra/Dept Of Social Services Head Nurse 92496.00000 1.202448e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.202448e+06 1.202448e+06 0.00 NULL
2022 Hra/Dept Of Social Services Homemaker 37489.00000 7.497800e+04 1748.83 8.744150e+02 874.415 68.00 2 8.744150e+02 1748.83 7.672683e+04 7.672683e+04 0.00 NULL
2022 Hra/Dept Of Social Services Housing Development Specialist 77921.00000 7.792100e+04 16504.64 1.650464e+04 16504.640 317.50 1 1.650464e+04 16504.64 9.442564e+04 9.442564e+04 0.00 NULL
2022 Hra/Dept Of Social Services Human Resources Administrator 243171.00000 4.863420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863420e+05 4.863420e+05 0.00 NULL
2022 Hra/Dept Of Social Services Human Resources Technician 36871.00000 3.687100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.687100e+04 3.687100e+04 0.00 NULL
2022 Hra/Dept Of Social Services Investigator 66381.63636 7.301980e+05 104.52 9.501818e+00 0.000 2.50 11 0.000000e+00 0.00 7.303025e+05 7.301980e+05 104.52 NULL
2022 Hra/Dept Of Social Services It Project Specialist 112323.99310 1.628698e+07 463023.81 3.193268e+03 0.000 6114.00 145 0.000000e+00 0.00 1.675000e+07 1.628698e+07 463023.81 NULL
2022 Hra/Dept Of Social Services It Security Specialist 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2022 Hra/Dept Of Social Services It Service Management Specialist 106321.40000 5.316070e+05 537.58 1.075160e+02 0.000 9.00 5 0.000000e+00 0.00 5.321446e+05 5.316070e+05 537.58 NULL
2022 Hra/Dept Of Social Services Job Opportunity Specialist 48363.44608 6.234048e+07 16291097.79 1.263856e+04 6853.750 430197.84 1289 6.853750e+03 8834483.75 7.863158e+07 7.117497e+07 7456614.04 NULL
2022 Hra/Dept Of Social Services Locksmith NA NA 892.36 2.974533e+02 0.000 20.00 3 0.000000e+00 0.00 NA NA NA NULL
2022 Hra/Dept Of Social Services Management Auditor 70037.50000 2.941575e+06 49.65 1.182143e+00 0.000 1.50 42 0.000000e+00 0.00 2.941625e+06 2.941575e+06 49.65 NULL
2022 Hra/Dept Of Social Services Mechanical Engineer 98354.00000 9.835400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.835400e+04 9.835400e+04 0.00 NULL
2022 Hra/Dept Of Social Services Medical Specialist 12198.62500 4.879450e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.879450e+04 4.879450e+04 0.00 NULL
2022 Hra/Dept Of Social Services Motor Vehicle Operator 48666.46154 6.326640e+05 71694.01 5.514924e+03 741.670 2178.75 13 7.416700e+02 9641.71 7.043580e+05 6.423057e+05 62052.30 NULL
2022 Hra/Dept Of Social Services Motor Vehicle Supervisor 61261.75000 2.450470e+05 47330.00 1.183250e+04 970.335 891.75 4 9.703350e+02 3881.34 2.923770e+05 2.489283e+05 43448.66 NULL
2022 Hra/Dept Of Social Services New York City Public Service Fellow 46350.00000 4.635000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.635000e+04 4.635000e+04 0.00 NULL
2022 Hra/Dept Of Social Services Office Machine Aide 35565.00000 2.489550e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.489550e+05 2.489550e+05 0.00 NULL
2022 Hra/Dept Of Social Services Oiler NA NA 29252.88 5.850576e+03 6270.020 330.00 5 5.850576e+03 29252.88 NA NA NA NULL
2022 Hra/Dept Of Social Services Paralegal Aide 49137.28571 1.031883e+06 1705.47 8.121286e+01 0.000 63.50 21 0.000000e+00 0.00 1.033588e+06 1.031883e+06 1705.47 NULL
2022 Hra/Dept Of Social Services Plumber NA NA 78789.08 1.125558e+04 12088.910 750.00 7 1.125558e+04 78789.08 NA NA NA NULL
2022 Hra/Dept Of Social Services Principal Administrative Associate - Non Supvr 59865.78588 7.632888e+07 11237472.81 8.813704e+03 1182.120 247993.39 1275 1.182120e+03 1507203.00 8.756635e+07 7.783608e+07 9730269.81 NULL
2022 Hra/Dept Of Social Services Printing Press Operator NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2022 Hra/Dept Of Social Services Procurement Analyst 66679.23810 1.400264e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.400264e+06 1.400264e+06 0.00 NULL
2022 Hra/Dept Of Social Services Psychiatrist 120713.35000 1.448560e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.448560e+06 1.448560e+06 0.00 NULL
2022 Hra/Dept Of Social Services Public Health Educator 62630.38235 2.129433e+06 82955.28 2.439861e+03 35.510 1854.50 34 3.551000e+01 1207.34 2.212388e+06 2.130640e+06 81747.94 NULL
2022 Hra/Dept Of Social Services Research Assistant 60479.00000 1.209580e+05 1513.36 7.566800e+02 756.680 26.00 2 7.566800e+02 1513.36 1.224714e+05 1.224714e+05 0.00 NULL
2022 Hra/Dept Of Social Services Secretary 42554.22222 7.659760e+05 125992.99 6.999611e+03 1827.440 3657.25 18 1.827440e+03 32893.92 8.919690e+05 7.988699e+05 93099.07 NULL
2022 Hra/Dept Of Social Services Secretary Of Comm 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2022 Hra/Dept Of Social Services Secretary To One Deputy Commissioner 92839.00000 9.283900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.283900e+04 9.283900e+04 0.00 NULL
2022 Hra/Dept Of Social Services Secretary To The Department 135000.00000 2.700000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.700000e+05 2.700000e+05 0.00 NULL
2022 Hra/Dept Of Social Services Secretary To The Human Resources Administrator 85939.00000 8.593900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.593900e+04 8.593900e+04 0.00 NULL
2022 Hra/Dept Of Social Services Senior Consultant 82027.10526 1.558515e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.558515e+06 1.558515e+06 0.00 NULL
2022 Hra/Dept Of Social Services Senior It Architect 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2022 Hra/Dept Of Social Services Senior Stationary Engineer NA NA 44924.62 1.497487e+04 16718.830 408.00 3 1.497487e+04 44924.62 NA NA NA NULL
2022 Hra/Dept Of Social Services Sheet Metal Worker NA NA 1042.56 1.042560e+03 1042.560 9.00 1 1.042560e+03 1042.56 NA NA NA NULL
2022 Hra/Dept Of Social Services Social Worker 59078.00000 3.249290e+06 84088.35 1.528879e+03 0.000 1988.25 55 0.000000e+00 0.00 3.333378e+06 3.249290e+06 84088.35 NULL
2022 Hra/Dept Of Social Services Space Analyst 73855.37500 1.772529e+06 7952.47 3.313529e+02 0.000 191.00 24 0.000000e+00 0.00 1.780481e+06 1.772529e+06 7952.47 NULL
2022 Hra/Dept Of Social Services Special Assistant To The Human Resources Administrator 91717.00000 2.751510e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.751510e+05 2.751510e+05 0.00 NULL
2022 Hra/Dept Of Social Services Special Officer 42980.77465 3.051635e+06 95340.60 1.342825e+03 355.530 3128.00 71 3.555300e+02 25242.63 3.146976e+06 3.076878e+06 70097.97 NULL
2022 Hra/Dept Of Social Services Staff Analyst 71569.73469 1.402767e+07 897617.62 4.579682e+03 0.000 15922.25 196 0.000000e+00 0.00 1.492529e+07 1.402767e+07 897617.62 NULL
2022 Hra/Dept Of Social Services Staff Nurse 86118.51351 3.186385e+06 565.69 1.528892e+01 0.000 9.50 37 0.000000e+00 0.00 3.186951e+06 3.186385e+06 565.69 NULL
2022 Hra/Dept Of Social Services Stationary Engineer NA NA 17273.76 5.757920e+03 7393.500 181.50 3 5.757920e+03 17273.76 NA NA NA NULL
2022 Hra/Dept Of Social Services Stock Worker 42865.40000 2.143270e+05 10001.24 2.000248e+03 0.000 325.50 5 0.000000e+00 0.00 2.243282e+05 2.143270e+05 10001.24 NULL
2022 Hra/Dept Of Social Services Strategic Initiative Specialist 94677.00000 3.787080e+05 36.50 9.125000e+00 0.000 0.00 4 0.000000e+00 0.00 3.787445e+05 3.787080e+05 36.50 NULL
2022 Hra/Dept Of Social Services Supervising Bookbinder 65390.00000 6.539000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.539000e+04 6.539000e+04 0.00 NULL
2022 Hra/Dept Of Social Services Supervising Computer Service Technician 70691.00000 7.069100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.069100e+04 7.069100e+04 0.00 NULL
2022 Hra/Dept Of Social Services Supervising Special Officer 59573.88889 2.144660e+06 196247.35 5.451315e+03 3180.635 4281.75 36 3.180635e+03 114502.86 2.340907e+06 2.259163e+06 81744.49 NULL
2022 Hra/Dept Of Social Services Supervisor Carpenter NA NA 20575.80 2.057580e+04 20575.800 222.50 1 2.057580e+04 20575.80 NA NA NA NULL
2022 Hra/Dept Of Social Services Supervisor Electrician NA NA 8686.85 4.343425e+03 4343.425 85.75 2 4.343425e+03 8686.85 NA NA NA NULL
2022 Hra/Dept Of Social Services Supervisor I 59156.37396 2.135545e+07 3502809.42 9.703073e+03 277.480 73439.15 361 2.774800e+02 100170.28 2.485826e+07 2.145562e+07 3402639.14 NULL
2022 Hra/Dept Of Social Services Supervisor I Social Work 65787.52632 1.249963e+06 52447.66 2.760403e+03 0.000 1057.75 19 0.000000e+00 0.00 1.302411e+06 1.249963e+06 52447.66 NULL
2022 Hra/Dept Of Social Services Supervisor Ii 69381.96403 9.644093e+06 535705.99 3.854000e+03 0.000 10405.25 139 0.000000e+00 0.00 1.017980e+07 9.644093e+06 535705.99 NULL
2022 Hra/Dept Of Social Services Supervisor Ii Social Work 76423.60000 3.821180e+05 5896.61 1.179322e+03 0.000 117.25 5 0.000000e+00 0.00 3.880146e+05 3.821180e+05 5896.61 NULL
2022 Hra/Dept Of Social Services Supervisor Iii 76731.90244 3.146008e+06 168498.68 4.109724e+03 0.000 2988.00 41 0.000000e+00 0.00 3.314507e+06 3.146008e+06 168498.68 NULL
2022 Hra/Dept Of Social Services Supervisor Iii Social Work 83981.00000 8.398100e+05 6865.62 6.865620e+02 0.000 140.50 10 0.000000e+00 0.00 8.466756e+05 8.398100e+05 6865.62 NULL
2022 Hra/Dept Of Social Services Supervisor Of Electrical Installations & Maintenance 78105.00000 7.810500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.810500e+04 7.810500e+04 0.00 NULL
2022 Hra/Dept Of Social Services Supervisor Of Mechanics NA NA 29394.24 2.939424e+04 29394.240 310.00 1 2.939424e+04 29394.24 NA NA NA NULL
2022 Hra/Dept Of Social Services Supervisor Of Nurses 108277.42857 7.579420e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.579420e+05 7.579420e+05 0.00 NULL
2022 Hra/Dept Of Social Services Supervisor Of Office Machine Operations 47100.95000 9.420190e+05 200502.09 1.002510e+04 2588.650 5503.63 20 2.588650e+03 51773.00 1.142521e+06 9.937920e+05 148729.09 NULL
2022 Hra/Dept Of Social Services Supervisor Of Stock Workers 55837.75000 2.233510e+05 33774.09 8.443522e+03 5751.420 808.75 4 5.751420e+03 23005.68 2.571251e+05 2.463567e+05 10768.41 NULL
2022 Hra/Dept Of Social Services Supervisor Plumber NA NA 32289.40 1.614470e+04 16144.700 294.50 2 1.614470e+04 32289.40 NA NA NA NULL
2022 Hra/Dept Of Social Services Telecommunications Associate 71798.66667 4.307920e+05 4816.91 8.028183e+02 355.720 112.75 6 3.557200e+02 2134.32 4.356089e+05 4.329263e+05 2682.59 NULL
2022 Hra/Dept Of Social Services Telecommunications Manager 102623.00000 1.026230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.026230e+05 1.026230e+05 0.00 NULL
2022 Human Rights Commission *Attorney At Law 93000.00000 9.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.300000e+04 9.300000e+04 0.00 NULL
2022 Human Rights Commission Administrative Business Promotion Coordinator 133900.00000 1.339000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339000e+05 1.339000e+05 0.00 NULL
2022 Human Rights Commission Administrative Public Information Specialist 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2022 Human Rights Commission Agency Attorney 73806.97059 2.509437e+06 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 2.509437e+06 2.509437e+06 0.00 NULL
2022 Human Rights Commission Agency Attorney Interne 62397.00000 6.239700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.239700e+04 6.239700e+04 0.00 NULL
2022 Human Rights Commission Associate Human Rights Specialist 70554.83333 2.116645e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 2.116645e+06 2.116645e+06 0.00 NULL
2022 Human Rights Commission Asst To The Chairman 94532.00000 9.453200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.453200e+04 9.453200e+04 0.00 NULL
2022 Human Rights Commission Chairman Commission On Human Rights 227786.00000 4.555720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.555720e+05 4.555720e+05 0.00 NULL
2022 Human Rights Commission Community Assistant 12650.15861 8.855111e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.855111e+04 8.855111e+04 0.00 NULL
2022 Human Rights Commission Community Associate 38333.00000 3.833300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.833300e+04 3.833300e+04 0.00 NULL
2022 Human Rights Commission Community Coordinator 66708.61538 8.672120e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 8.672120e+05 8.672120e+05 0.00 NULL
2022 Human Rights Commission Computer Associate 76587.00000 7.658700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.658700e+04 7.658700e+04 0.00 NULL
2022 Human Rights Commission Computer Systems Manager 141625.00000 1.416250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.416250e+05 1.416250e+05 0.00 NULL
2022 Human Rights Commission Contract Specialist 41525.00000 4.152500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.152500e+04 4.152500e+04 0.00 NULL
2022 Human Rights Commission Counsel 181670.00000 1.816700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.816700e+05 1.816700e+05 0.00 NULL
2022 Human Rights Commission Cyber Security Analyst 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2022 Human Rights Commission Dep Commissioner For Community Relations 204696.00000 4.093920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.093920e+05 4.093920e+05 0.00 NULL
2022 Human Rights Commission Deputy Commissioner For Law Enforcement 173349.00000 1.733490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.733490e+05 1.733490e+05 0.00 NULL
2022 Human Rights Commission Deputy Executive Director 158178.00000 4.745340e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.745340e+05 4.745340e+05 0.00 NULL
2022 Human Rights Commission Executive Agency Counsel 105184.00000 1.893312e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.893312e+06 1.893312e+06 0.00 NULL
2022 Human Rights Commission Executive Director 118528.85714 8.297020e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.297020e+05 8.297020e+05 0.00 NULL
2022 Human Rights Commission Graphic Artist 68647.00000 6.864700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.864700e+04 6.864700e+04 0.00 NULL
2022 Human Rights Commission Human Rights Specialist 58779.92857 8.229190e+05 1189.72 8.498000e+01 0.000 19.75 14 0.000000e+00 0.00 8.241087e+05 8.229190e+05 1189.72 NULL
2022 Human Rights Commission Principal Administrative Associate - Non Supvr 71240.50000 1.424810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.424810e+05 1.424810e+05 0.00 NULL
2022 Human Rights Commission Prinicipal Human Rights Specialist 82990.40000 4.149520e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.149520e+05 4.149520e+05 0.00 NULL
2022 Human Rights Commission Secretary To The Chairperson 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2022 Hunter College High School Administrator 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2022 Hunter College High School Assistant Principal 123237.83333 1.478854e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.478854e+06 1.478854e+06 0.00 NULL
2022 Hunter College High School Assistant Principal Admin 135616.00000 4.068480e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.068480e+05 4.068480e+05 0.00 NULL
2022 Hunter College High School Assistant Teacher 32876.05556 5.917690e+05 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 5.917690e+05 5.917690e+05 0.00 NULL
2022 Hunter College High School Assistant To Heo 76808.00000 1.536160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.536160e+05 1.536160e+05 0.00 NULL
2022 Hunter College High School Business Data And Reporting Analyst 55608.00000 1.112160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.112160e+05 1.112160e+05 0.00 NULL
2022 Hunter College High School Coach NA NA 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 NA NA NA NULL
2022 Hunter College High School College Assistant 3770.36863 1.131111e+05 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 1.131111e+05 1.131111e+05 0.00 NULL
2022 Hunter College High School Computer Systems Manager 99471.00000 9.947100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.947100e+04 9.947100e+04 0.00 NULL
2022 Hunter College High School Cuny Administrator Assistant 55927.28571 3.914910e+05 1027.27 1.467529e+02 0.000 28.00 7 0.000000e+00 0.00 3.925183e+05 3.914910e+05 1027.27 NULL
2022 Hunter College High School Cuny Custodial Assistant 32918.49397 5.266959e+05 25585.75 1.599109e+03 574.530 1018.16 16 5.745300e+02 9192.48 5.522817e+05 5.358884e+05 16393.27 NULL
2022 Hunter College High School Cuny Office Assistant 42001.50000 1.680060e+05 1024.79 2.561975e+02 0.000 28.00 4 0.000000e+00 0.00 1.690308e+05 1.680060e+05 1024.79 NULL
2022 Hunter College High School Education & Vocat Counselor 88223.50000 1.764470e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.764470e+05 1.764470e+05 0.00 NULL
2022 Hunter College High School Hccs Sr College Lab Tech 70221.33333 2.106640e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.106640e+05 2.106640e+05 0.00 NULL
2022 Hunter College High School High School Elem Counselor 92488.71429 6.474210e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.474210e+05 6.474210e+05 0.00 NULL
2022 Hunter College High School Higher Education Assistant 88602.00000 8.860200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.860200e+04 8.860200e+04 0.00 NULL
2022 Hunter College High School Higher Education Associate 115496.00000 3.464880e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.464880e+05 3.464880e+05 0.00 NULL
2022 Hunter College High School Higher Education Officer 122208.00000 2.444160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.444160e+05 2.444160e+05 0.00 NULL
2022 Hunter College High School It Assistant 55608.00000 5.560800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.560800e+04 5.560800e+04 0.00 NULL
2022 Hunter College High School It Associate 75162.00000 1.503240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.503240e+05 1.503240e+05 0.00 NULL
2022 Hunter College High School It Senior Associate 91298.00000 1.825960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.825960e+05 1.825960e+05 0.00 NULL
2022 Hunter College High School Maintenance Worker NA NA 5414.05 5.414050e+03 5414.050 120.00 1 5.414050e+03 5414.05 NA NA NA NULL
2022 Hunter College High School Oiler NA NA 30233.61 3.023361e+04 30233.610 351.00 1 3.023361e+04 30233.61 NA NA NA NULL
2022 Hunter College High School Principal 172382.50000 3.447650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.447650e+05 3.447650e+05 0.00 NULL
2022 Hunter College High School Senior Custodial Supervisor 41913.00000 4.191300e+04 562.05 5.620500e+02 562.050 20.00 1 5.620500e+02 562.05 4.247505e+04 4.247505e+04 0.00 NULL
2022 Hunter College High School Substitute Teacher 33788.71610 2.770675e+06 0.00 0.000000e+00 0.000 0.00 82 0.000000e+00 0.00 2.770675e+06 2.770675e+06 0.00 NULL
2022 Hunter College High School Teacher NA NA 0.00 0.000000e+00 0.000 0.00 131 0.000000e+00 0.00 NA NA NA NULL
2022 Hunter College High School Teacher Of Library 88604.00000 8.860400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.860400e+04 8.860400e+04 0.00 NULL
2022 Independent Budget Office Agency Chief Contracting Officer 131137.00000 1.311370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.311370e+05 1.311370e+05 0.00 NULL
2022 Independent Budget Office Assistant Budget Analyst 50916.12917 1.527484e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.527484e+05 1.527484e+05 0.00 NULL
2022 Independent Budget Office Budget Analyst 106209.75486 3.717341e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 3.717341e+06 3.717341e+06 0.00 NULL
2022 Independent Budget Office Director Of Independent Budget Office 218774.00000 2.187740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.187740e+05 2.187740e+05 0.00 NULL
2022 Independent Budget Office Executive Agency Counsel 151207.25480 3.024145e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.024145e+05 3.024145e+05 0.00 NULL
2022 Independent Budget Office Principal Administrative Associate - Non Supvr 93711.00000 9.371100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.371100e+04 9.371100e+04 0.00 NULL
2022 Landmarks Preservation Comm *Attorney At Law 91563.00000 9.156300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.156300e+04 9.156300e+04 0.00 NULL
2022 Landmarks Preservation Comm Admin Landmarks Preservationist 82750.00000 8.275000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.275000e+04 8.275000e+04 0.00 NULL
2022 Landmarks Preservation Comm Administrative Landmarks Preservationist 101869.58453 9.168263e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.168263e+05 9.168263e+05 0.00 NULL
2022 Landmarks Preservation Comm Administrative Public Information Specialist 92814.00000 9.281400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.281400e+04 9.281400e+04 0.00 NULL
2022 Landmarks Preservation Comm Administrative Staff Analyst 120000.00000 3.600000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.600000e+05 3.600000e+05 0.00 NULL
2022 Landmarks Preservation Comm Associate Landmarks Preservationist 84471.00000 8.447100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.447100e+04 8.447100e+04 0.00 NULL
2022 Landmarks Preservation Comm Associate Staff Analyst 97985.00000 9.798500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.798500e+04 9.798500e+04 0.00 NULL
2022 Landmarks Preservation Comm Chair-Landmarks Preservation Commission 223319.00000 2.233190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.233190e+05 2.233190e+05 0.00 NULL
2022 Landmarks Preservation Comm City Research Scientist 86830.00000 8.683000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.683000e+04 8.683000e+04 0.00 NULL
2022 Landmarks Preservation Comm Community Assistant 4715.79500 9.431590e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.431590e+03 9.431590e+03 0.00 NULL
2022 Landmarks Preservation Comm Community Associate 47431.44444 4.268830e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.268830e+05 4.268830e+05 0.00 NULL
2022 Landmarks Preservation Comm Community Coordinator 50984.57283 1.529537e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.529537e+05 1.529537e+05 0.00 NULL
2022 Landmarks Preservation Comm Computer Systems Manager 128120.00000 1.281200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.281200e+05 1.281200e+05 0.00 NULL
2022 Landmarks Preservation Comm Counsel 165258.00000 1.652580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.652580e+05 1.652580e+05 0.00 NULL
2022 Landmarks Preservation Comm Director Of Public Relations 87525.00000 1.750500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.750500e+05 1.750500e+05 0.00 NULL
2022 Landmarks Preservation Comm Director Of Urban Archaeology 97291.00000 9.729100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.729100e+04 9.729100e+04 0.00 NULL
2022 Landmarks Preservation Comm Executive Director 178190.00000 1.781900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.781900e+05 1.781900e+05 0.00 NULL
2022 Landmarks Preservation Comm Executive Program Specialist 133900.00000 1.339000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339000e+05 1.339000e+05 0.00 NULL
2022 Landmarks Preservation Comm Landmarks Preservationist 66188.90000 2.713745e+06 7841.87 1.912651e+02 0.000 209.75 41 0.000000e+00 0.00 2.721587e+06 2.713745e+06 7841.87 NULL
2022 Landmarks Preservation Comm Principal Administrative Associate - Non Supvr 70381.00000 7.038100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.038100e+04 7.038100e+04 0.00 NULL
2022 Landmarks Preservation Comm Procurement Analyst 63191.00000 6.319100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.319100e+04 6.319100e+04 0.00 NULL
2022 Landmarks Preservation Comm Secretary To The Chair, Landmarks Preservation Commission 70310.00000 7.031000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.031000e+04 7.031000e+04 0.00 NULL
2022 Landmarks Preservation Comm Secretary To The Executive Director 56720.00000 5.672000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.672000e+04 5.672000e+04 0.00 NULL
2022 Landmarks Preservation Comm Staff Analyst 62068.50000 1.241370e+05 846.55 4.232750e+02 423.275 25.00 2 4.232750e+02 846.55 1.249836e+05 1.249836e+05 0.00 NULL
2022 Landmarks Preservation Comm Summer College Intern 1309.00000 1.309000e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.309000e+03 1.309000e+03 0.00 NULL
2022 Landmarks Preservation Comm Summer Graduate Intern 714.40375 4.286422e+03 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.286422e+03 4.286422e+03 0.00 NULL
2022 Landmarks Preservation Comm Urban Archeologist 39914.52750 1.197436e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.197436e+05 1.197436e+05 0.00 NULL
2022 Law Department Accountant 87134.00000 8.713400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.713400e+04 8.713400e+04 0.00 NULL
2022 Law Department Administrative Procurement Analyst 99445.00000 1.988900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.988900e+05 1.988900e+05 0.00 NULL
2022 Law Department Administrative Public Information Specialist 167503.50000 3.350070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.350070e+05 3.350070e+05 0.00 NULL
2022 Law Department Administrative Public Information Specialist Nm Former M1/M2 117526.00000 1.175260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.175260e+05 1.175260e+05 0.00 NULL
2022 Law Department Administrative Staff Analyst 122015.57895 2.318296e+06 93602.32 4.926438e+03 0.000 995.75 19 0.000000e+00 0.00 2.411898e+06 2.318296e+06 93602.32 NULL
2022 Law Department Appraiser 96000.00000 9.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.600000e+04 9.600000e+04 0.00 NULL
2022 Law Department Assistant Corporation Counsel 111777.23157 1.147952e+08 0.00 0.000000e+00 0.000 0.00 1027 0.000000e+00 0.00 1.147952e+08 1.147952e+08 0.00 NULL
2022 Law Department Associate Quality Assurance Specialist 78276.16667 4.696570e+05 19584.51 3.264085e+03 300.790 353.50 6 3.007900e+02 1804.74 4.892415e+05 4.714617e+05 17779.77 NULL
2022 Law Department Associate Staff Analyst 72402.99200 3.620150e+05 7112.59 1.422518e+03 0.000 118.50 5 0.000000e+00 0.00 3.691275e+05 3.620150e+05 7112.59 NULL
2022 Law Department Bookkeeper 55155.00000 4.963950e+05 38131.12 4.236791e+03 95.550 833.75 9 9.555000e+01 859.95 5.345261e+05 4.972550e+05 37271.17 NULL
2022 Law Department Certified It Administrator 123194.00000 6.159700e+05 36020.06 7.204012e+03 3848.930 500.25 5 3.848930e+03 19244.65 6.519901e+05 6.352147e+05 16775.41 NULL
2022 Law Department Certified It Developer 103078.25000 4.123130e+05 928.51 2.321275e+02 0.000 15.50 4 0.000000e+00 0.00 4.132415e+05 4.123130e+05 928.51 NULL
2022 Law Department City Assessor 93697.66667 2.810930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.810930e+05 2.810930e+05 0.00 NULL
2022 Law Department City Custodial Assistant 38223.50000 7.644700e+04 3789.20 1.894600e+03 1894.600 140.75 2 1.894600e+03 3789.20 8.023620e+04 8.023620e+04 0.00 NULL
2022 Law Department Claim Specialist 51052.65560 4.901055e+06 230893.67 2.405142e+03 0.000 6194.95 96 0.000000e+00 0.00 5.131949e+06 4.901055e+06 230893.67 NULL
2022 Law Department Clerical Associate 37117.87345 8.388639e+06 320180.80 1.416729e+03 0.000 10581.33 226 0.000000e+00 0.00 8.708820e+06 8.388639e+06 320180.80 NULL
2022 Law Department College Aide 4692.37800 2.346189e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.346189e+04 2.346189e+04 0.00 NULL
2022 Law Department Community Associate 61335.00000 6.133500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.133500e+04 6.133500e+04 0.00 NULL
2022 Law Department Community Coordinator 62756.78788 2.070974e+06 16834.33 5.101312e+02 0.000 414.00 33 0.000000e+00 0.00 2.087808e+06 2.070974e+06 16834.33 NULL
2022 Law Department Computer Aide-Non-Spvr 33498.26944 3.014844e+05 12760.50 1.417833e+03 42.080 414.17 9 4.208000e+01 378.72 3.142449e+05 3.018631e+05 12381.78 NULL
2022 Law Department Computer Associate 75536.37824 1.284118e+06 13695.05 8.055912e+02 237.700 249.00 17 2.377000e+02 4040.90 1.297813e+06 1.288159e+06 9654.15 NULL
2022 Law Department Computer Operations Manager 154700.80000 7.735040e+05 31107.01 6.221402e+03 0.000 402.00 5 0.000000e+00 0.00 8.046110e+05 7.735040e+05 31107.01 NULL
2022 Law Department Computer Service Technician 59973.10313 1.199462e+05 1688.26 8.441300e+02 844.130 70.25 2 8.441300e+02 1688.26 1.216345e+05 1.216345e+05 0.00 NULL
2022 Law Department Computer Specialist 102957.66667 9.266190e+05 38576.41 4.286268e+03 4324.350 627.50 9 4.286268e+03 38576.41 9.651954e+05 9.651954e+05 0.00 NULL
2022 Law Department Computer Systems Manager 151020.62500 1.208165e+06 34605.35 4.325669e+03 0.000 373.50 8 0.000000e+00 0.00 1.242770e+06 1.208165e+06 34605.35 NULL
2022 Law Department Corporation Counsel 243238.33333 7.297150e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.297150e+05 7.297150e+05 0.00 NULL
2022 Law Department Custodian 45695.90000 4.569590e+05 32737.66 3.273766e+03 2820.090 1018.00 10 2.820090e+03 28200.90 4.896967e+05 4.851599e+05 4536.76 NULL
2022 Law Department Customer Information Representative Ma L 1549 64709.75000 5.176780e+05 10523.59 1.315449e+03 118.990 240.50 8 1.189900e+02 951.92 5.282016e+05 5.186299e+05 9571.67 NULL
2022 Law Department Department Librarian 43095.31000 1.723812e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.723812e+05 1.723812e+05 0.00 NULL
2022 Law Department Deputy Director Of Admin Worker’s Comp Benefits 105593.00000 2.111860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.111860e+05 2.111860e+05 0.00 NULL
2022 Law Department Deputy Operation Support Manager 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2022 Law Department Dir Of Administration, Worker’s Comp Benefits 143841.00000 1.438410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.438410e+05 1.438410e+05 0.00 NULL
2022 Law Department Executive Agency Counsel 205248.00000 2.052480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.052480e+05 2.052480e+05 0.00 NULL
2022 Law Department Executive Program Specialist 105707.00000 1.057070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.057070e+05 1.057070e+05 0.00 NULL
2022 Law Department First Assistant Corporation Counsel 243272.00000 2.432720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.432720e+05 2.432720e+05 0.00 NULL
2022 Law Department Graphic Artist 52433.00000 5.243300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.243300e+04 5.243300e+04 0.00 NULL
2022 Law Department It Security Specialist 143009.00000 4.290270e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.290270e+05 4.290270e+05 0.00 NULL
2022 Law Department Legal Secretarial Assistant 58169.63664 1.686919e+06 33573.97 1.157723e+03 0.000 808.50 29 0.000000e+00 0.00 1.720493e+06 1.686919e+06 33573.97 NULL
2022 Law Department Legal Secretarial Assistant - Al 1 Only 44325.00000 1.329750e+05 5246.16 1.748720e+03 52.540 160.75 3 5.254000e+01 157.62 1.382212e+05 1.331326e+05 5088.54 NULL
2022 Law Department Management Auditor 82437.00000 8.243700e+04 5964.54 5.964540e+03 5964.540 97.50 1 5.964540e+03 5964.54 8.840154e+04 8.840154e+04 0.00 NULL
2022 Law Department Media Services Technician 46669.00000 1.400070e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.400070e+05 1.400070e+05 0.00 NULL
2022 Law Department Medicolegal Analyst 78748.00000 1.574960e+05 11596.01 5.798005e+03 5798.005 221.25 2 5.798005e+03 11596.01 1.690920e+05 1.690920e+05 0.00 NULL
2022 Law Department Motor Vehicle Operator 32344.47672 2.911003e+05 10358.62 1.150958e+03 0.000 288.00 9 0.000000e+00 0.00 3.014589e+05 2.911003e+05 10358.62 NULL
2022 Law Department Paralegal Aide 49505.90109 1.257450e+07 395473.73 1.556983e+03 0.000 10370.50 254 0.000000e+00 0.00 1.296997e+07 1.257450e+07 395473.73 NULL
2022 Law Department Principal Administrative Associate - Non Supvr 65786.77778 5.920810e+05 37642.44 4.182493e+03 162.950 817.25 9 1.629500e+02 1466.55 6.297234e+05 5.935476e+05 36175.89 NULL
2022 Law Department Principal Title Examiner 70153.40000 3.507670e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.507670e+05 3.507670e+05 0.00 NULL
2022 Law Department Procurement Analyst 58336.50000 1.166730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.166730e+05 1.166730e+05 0.00 NULL
2022 Law Department Project Manager 85490.00000 8.549000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.549000e+04 8.549000e+04 0.00 NULL
2022 Law Department Public Records Aide 38590.69068 2.315441e+05 7988.57 1.331428e+03 54.405 249.25 6 5.440500e+01 326.43 2.395327e+05 2.318706e+05 7662.14 NULL
2022 Law Department Research Assistant 52242.00000 5.224200e+04 4332.03 4.332030e+03 4332.030 113.00 1 4.332030e+03 4332.03 5.657403e+04 5.657403e+04 0.00 NULL
2022 Law Department Secretary 39668.00000 7.933600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.933600e+04 7.933600e+04 0.00 NULL
2022 Law Department Secretary To The Corporation Counsel 105707.00000 1.057070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.057070e+05 1.057070e+05 0.00 NULL
2022 Law Department Secretary To The First Assistant Corporation Counsel 76277.00000 7.627700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.627700e+04 7.627700e+04 0.00 NULL
2022 Law Department Senior Photographer 57114.00000 5.711400e+04 4482.08 4.482080e+03 4482.080 128.75 1 4.482080e+03 4482.08 6.159608e+04 6.159608e+04 0.00 NULL
2022 Law Department Senior Student Legal Specialist 50755.00000 1.522650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.522650e+05 1.522650e+05 0.00 NULL
2022 Law Department Senior Title Examiner 56211.00000 5.621100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.621100e+04 5.621100e+04 0.00 NULL
2022 Law Department Space Analyst 77921.00000 7.792100e+04 23171.80 2.317180e+04 23171.800 421.50 1 2.317180e+04 23171.80 1.010928e+05 1.010928e+05 0.00 NULL
2022 Law Department Staff Analyst 70266.24870 1.616124e+06 26746.64 1.162897e+03 12.440 505.75 23 1.244000e+01 286.12 1.642870e+06 1.616410e+06 26460.52 NULL
2022 Law Department Staff Analyst Trainee 52347.00000 5.234700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.234700e+04 5.234700e+04 0.00 NULL
2022 Law Department Stenographer To The Corporation Counsel 71749.00000 7.174900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.174900e+04 7.174900e+04 0.00 NULL
2022 Law Department Summer Graduate Intern 2618.21478 1.858932e+05 0.00 0.000000e+00 0.000 0.00 71 0.000000e+00 0.00 1.858932e+05 1.858932e+05 0.00 NULL
2022 Law Department Supervising Computer Service Technician 71509.41640 2.145282e+05 8592.69 2.864230e+03 1153.950 172.50 3 1.153950e+03 3461.85 2.231209e+05 2.179901e+05 5130.84 NULL
2022 Law Department Supervisor Of Office Machine Operations 48193.33333 1.445800e+05 1583.20 5.277333e+02 161.490 50.25 3 1.614900e+02 484.47 1.461632e+05 1.450645e+05 1098.73 NULL
2022 Law Department Worker’s Compensation Benefits Examiner 48726.83087 3.654512e+06 209545.37 2.793938e+03 1111.790 6186.00 75 1.111790e+03 83384.25 3.864058e+06 3.737897e+06 126161.12 NULL
2022 Manhattan Community Board #1 Community Coordinator 74035.50000 1.480710e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.480710e+05 1.480710e+05 0.00 NULL
2022 Manhattan Community Board #1 District Manager 88468.00000 8.846800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.846800e+04 8.846800e+04 0.00 NULL
2022 Manhattan Community Board #10 Community Associate 47955.00000 9.591000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.591000e+04 9.591000e+04 0.00 NULL
2022 Manhattan Community Board #10 District Manager 91915.00000 9.191500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.191500e+04 9.191500e+04 0.00 NULL
2022 Manhattan Community Board #11 Assistant District Manager 53560.00000 5.356000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.356000e+04 5.356000e+04 0.00 NULL
2022 Manhattan Community Board #11 Community Associate 53818.00000 5.381800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.381800e+04 5.381800e+04 0.00 NULL
2022 Manhattan Community Board #11 District Manager 99752.00000 9.975200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.975200e+04 9.975200e+04 0.00 NULL
2022 Manhattan Community Board #12 Community Associate 44083.00000 4.408300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.408300e+04 4.408300e+04 0.00 NULL
2022 Manhattan Community Board #12 Community Coordinator 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2022 Manhattan Community Board #12 District Manager 94540.00000 9.454000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.454000e+04 9.454000e+04 0.00 NULL
2022 Manhattan Community Board #2 Assistant District Manager 52341.00000 5.234100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.234100e+04 5.234100e+04 0.00 NULL
2022 Manhattan Community Board #2 Community Assistant 37398.00000 3.739800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.739800e+04 3.739800e+04 0.00 NULL
2022 Manhattan Community Board #2 Community Coordinator 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2022 Manhattan Community Board #2 District Manager 88893.00000 8.889300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.889300e+04 8.889300e+04 0.00 NULL
2022 Manhattan Community Board #3 Assistant District Manager 54608.33333 1.638250e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.638250e+05 1.638250e+05 0.00 NULL
2022 Manhattan Community Board #3 Community Associate 46309.00000 9.261800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.261800e+04 9.261800e+04 0.00 NULL
2022 Manhattan Community Board #3 District Manager 90306.00000 9.030600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.030600e+04 9.030600e+04 0.00 NULL
2022 Manhattan Community Board #4 Community Associate 44233.00000 4.423300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.423300e+04 4.423300e+04 0.00 NULL
2022 Manhattan Community Board #4 Community Coordinator 67935.00000 6.793500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.793500e+04 6.793500e+04 0.00 NULL
2022 Manhattan Community Board #4 District Manager 97079.00000 9.707900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.707900e+04 9.707900e+04 0.00 NULL
2022 Manhattan Community Board #5 Community Associate 47538.00000 9.507600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.507600e+04 9.507600e+04 0.00 NULL
2022 Manhattan Community Board #5 Community Coordinator 69238.00000 6.923800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.923800e+04 6.923800e+04 0.00 NULL
2022 Manhattan Community Board #5 District Manager 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2022 Manhattan Community Board #6 Community Associate 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2022 Manhattan Community Board #6 Community Coordinator 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2022 Manhattan Community Board #6 District Manager 102805.00000 1.028050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.028050e+05 1.028050e+05 0.00 NULL
2022 Manhattan Community Board #7 Community Coordinator 68599.38000 1.371988e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.371988e+05 1.371988e+05 0.00 NULL
2022 Manhattan Community Board #7 District Manager 93312.00000 2.799360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.799360e+05 2.799360e+05 0.00 NULL
2022 Manhattan Community Board #8 Assistant District Manager 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2022 Manhattan Community Board #8 Community Associate 45000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2022 Manhattan Community Board #8 District Manager 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2022 Manhattan Community Board #9 Community Associate 34642.22900 6.928446e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.928446e+04 6.928446e+04 0.00 NULL
2022 Manhattan Community Board #9 District Manager 102310.00000 1.023100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.023100e+05 1.023100e+05 0.00 NULL
2022 Mayors Office Of Contract Svcs Admin Contract Specialist 199178.00000 3.983560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.983560e+05 3.983560e+05 0.00 NULL
2022 Mayors Office Of Contract Svcs Administrative Engineer 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2022 Mayors Office Of Contract Svcs Administrative Manager 99028.50000 1.980570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.980570e+05 1.980570e+05 0.00 NULL
2022 Mayors Office Of Contract Svcs Administrative Procurement Analyst 117901.00000 1.179010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.179010e+05 1.179010e+05 0.00 NULL
2022 Mayors Office Of Contract Svcs Administrative Procurement Analyst-Non-Mgrl 84254.00000 8.425400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.425400e+04 8.425400e+04 0.00 NULL
2022 Mayors Office Of Contract Svcs Administrative Staff Analyst 169644.87500 1.357159e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.357159e+06 1.357159e+06 0.00 NULL
2022 Mayors Office Of Contract Svcs Computer Systems Manager 135440.26667 2.031604e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 2.031604e+06 2.031604e+06 0.00 NULL
2022 Mayors Office Of Contract Svcs Executive Agency Counsel 183861.25000 7.354450e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.354450e+05 7.354450e+05 0.00 NULL
2022 Mayors Office Of Contract Svcs Graphic Artist 79389.00000 7.938900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.938900e+04 7.938900e+04 0.00 NULL
2022 Mayors Office Of Contract Svcs Mayoral Office Assistant 52476.90909 5.772460e+05 191.83 1.743909e+01 0.000 6.50 11 0.000000e+00 0.00 5.774378e+05 5.772460e+05 191.83 NULL
2022 Mayors Office Of Contract Svcs Mayoral Program Coordinator 72599.00000 7.259900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.259900e+04 7.259900e+04 0.00 NULL
2022 Mayors Office Of Contract Svcs Procurement Analyst 68457.00000 6.845700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.845700e+04 6.845700e+04 0.00 NULL
2022 Mayors Office Of Contract Svcs Research Projects Coord 94167.72428 1.469016e+07 0.00 0.000000e+00 0.000 0.00 156 0.000000e+00 0.00 1.469016e+07 1.469016e+07 0.00 NULL
2022 Mayors Office Of Contract Svcs Research Projects Coordinator 56435.48148 1.523758e+06 2231.99 8.266630e+01 0.000 65.50 27 0.000000e+00 0.00 1.525990e+06 1.523758e+06 2231.99 NULL
2022 Mayors Office Of Contract Svcs Special Assistant 133557.25000 5.342290e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.342290e+05 5.342290e+05 0.00 NULL
2022 Mayors Office Of Contract Svcs Staff Analyst 61866.00000 6.186600e+04 2.20 2.200000e+00 2.200 0.00 1 2.200000e+00 2.20 6.186820e+04 6.186820e+04 0.00 NULL
2022 Mayors Office Of Contract Svcs Summer College Intern 538.12500 1.614375e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.614375e+03 1.614375e+03 0.00 NULL
2022 Mayors Office Of Contract Svcs Summer Graduate Intern 595.00000 5.950000e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.950000e+02 5.950000e+02 0.00 NULL
2022 Municipal Water Fin Authority Budget Analyst 123048.80000 1.230488e+06 2267.86 2.267860e+02 0.000 54.00 10 0.000000e+00 0.00 1.232756e+06 1.230488e+06 2267.86 NULL
2022 Municipal Water Fin Authority Statistical Secretary 67676.00000 6.767600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.767600e+04 6.767600e+04 0.00 NULL
2022 Nyc Dept Of Veterans’ Services Admin Community Relations Specialist 85623.50000 1.712470e+05 61.03 3.051500e+01 30.515 1.75 2 3.051500e+01 61.03 1.713080e+05 1.713080e+05 0.00 NULL
2022 Nyc Dept Of Veterans’ Services Administrative Business Promotion Coordinator 131650.00000 2.633000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.633000e+05 2.633000e+05 0.00 NULL
2022 Nyc Dept Of Veterans’ Services Administrative Community Relations Specialist 156500.00000 6.260000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.260000e+05 6.260000e+05 0.00 NULL
2022 Nyc Dept Of Veterans’ Services Administrative Graphic Artist 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2022 Nyc Dept Of Veterans’ Services Administrative Staff Analyst 147500.00000 2.950000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.950000e+05 2.950000e+05 0.00 NULL
2022 Nyc Dept Of Veterans’ Services Agency Attorney 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2022 Nyc Dept Of Veterans’ Services Assistant Commissioner 107160.00000 1.071600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.071600e+05 1.071600e+05 0.00 NULL
2022 Nyc Dept Of Veterans’ Services Chauffeur-Attendant 53663.00000 5.366300e+04 15156.02 1.515602e+04 15156.020 344.00 1 1.515602e+04 15156.02 6.881902e+04 6.881902e+04 0.00 NULL
2022 Nyc Dept Of Veterans’ Services Chief Information Officer 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2022 Nyc Dept Of Veterans’ Services City Research Scientist 94283.00000 9.428300e+04 941.81 9.418100e+02 941.810 16.00 1 9.418100e+02 941.81 9.522481e+04 9.522481e+04 0.00 NULL
2022 Nyc Dept Of Veterans’ Services College Aide 15875.79000 4.762737e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.762737e+04 4.762737e+04 0.00 NULL
2022 Nyc Dept Of Veterans’ Services Commissioner Of Department Of Veteran’s Services 227785.00000 2.277850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277850e+05 2.277850e+05 0.00 NULL
2022 Nyc Dept Of Veterans’ Services Community Coordinator 68575.66667 1.028635e+06 5035.13 3.356753e+02 0.000 122.50 15 0.000000e+00 0.00 1.033670e+06 1.028635e+06 5035.13 NULL
2022 Nyc Dept Of Veterans’ Services Computer Associate 84362.00000 8.436200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.436200e+04 8.436200e+04 0.00 NULL
2022 Nyc Dept Of Veterans’ Services Deputy Assistant Commissioner 114462.16667 6.867730e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.867730e+05 6.867730e+05 0.00 NULL
2022 Nyc Dept Of Veterans’ Services Executive Agency Counsel 190000.00000 1.900000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.900000e+05 1.900000e+05 0.00 NULL
2022 Nyc Dept Of Veterans’ Services Mayoral Office Assistant 109250.00000 1.092500e+05 1527.76 1.527760e+03 1527.760 22.75 1 1.527760e+03 1527.76 1.107778e+05 1.107778e+05 0.00 NULL
2022 Nyc Dept Of Veterans’ Services Special Assistant 155310.66667 4.659320e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.659320e+05 4.659320e+05 0.00 NULL
2022 Nyc Employees Retirement Sys Accountant 63575.00000 2.543000e+05 3501.59 8.753975e+02 617.475 84.50 4 6.174750e+02 2469.90 2.578016e+05 2.567699e+05 1031.69 NULL
2022 Nyc Employees Retirement Sys Adm Manager-Non-Mgrl 91513.60000 4.575680e+05 12244.69 2.448938e+03 0.000 216.25 5 0.000000e+00 0.00 4.698127e+05 4.575680e+05 12244.69 NULL
2022 Nyc Employees Retirement Sys Administrative Accountant 93589.01389 8.423011e+05 31904.22 3.544913e+03 900.040 645.00 9 9.000400e+02 8100.36 8.742053e+05 8.504015e+05 23803.86 NULL
2022 Nyc Employees Retirement Sys Administrative Actuary 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2022 Nyc Employees Retirement Sys Administrative Graphic Artist 105536.00000 1.055360e+05 0.50 5.000000e-01 0.500 0.00 1 5.000000e-01 0.50 1.055365e+05 1.055365e+05 0.00 NULL
2022 Nyc Employees Retirement Sys Administrative Investigator 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2022 Nyc Employees Retirement Sys Administrative Labor Relations Analyst 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2022 Nyc Employees Retirement Sys Administrative Management Auditor 86000.00000 8.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.600000e+04 8.600000e+04 0.00 NULL
2022 Nyc Employees Retirement Sys Administrative Manager 130064.33333 3.901930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.901930e+05 3.901930e+05 0.00 NULL
2022 Nyc Employees Retirement Sys Administrative Procurement Analyst 158902.00000 1.589020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.589020e+05 1.589020e+05 0.00 NULL
2022 Nyc Employees Retirement Sys Administrative Procurement Analyst-Non-Mgrl 105000.00000 1.050000e+05 273.77 2.737700e+02 273.770 4.75 1 2.737700e+02 273.77 1.052738e+05 1.052738e+05 0.00 NULL
2022 Nyc Employees Retirement Sys Administrative Public Information Specialist 153996.66667 4.619900e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.619900e+05 4.619900e+05 0.00 NULL
2022 Nyc Employees Retirement Sys Administrative Retirement Benefits Specialist 138989.50000 3.057769e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 3.057769e+06 3.057769e+06 0.00 NULL
2022 Nyc Employees Retirement Sys Administrative Retirements Benefits Specialist 96953.00000 5.817180e+05 10647.36 1.774560e+03 307.630 181.50 6 3.076300e+02 1845.78 5.923654e+05 5.835638e+05 8801.58 NULL
2022 Nyc Employees Retirement Sys Administrative Staff Analyst 135755.36364 1.493309e+06 74562.06 6.778369e+03 0.000 1014.75 11 0.000000e+00 0.00 1.567871e+06 1.493309e+06 74562.06 NULL
2022 Nyc Employees Retirement Sys Agency Attorney 89332.28571 6.253260e+05 4153.22 5.933171e+02 0.000 93.25 7 0.000000e+00 0.00 6.294792e+05 6.253260e+05 4153.22 NULL
2022 Nyc Employees Retirement Sys Agency Attorney Interne 62397.00000 6.239700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.239700e+04 6.239700e+04 0.00 NULL
2022 Nyc Employees Retirement Sys Assistant Retirement Benefits Examiner 37007.33537 2.812557e+06 149528.73 1.967483e+03 0.000 4554.00 76 0.000000e+00 0.00 2.962086e+06 2.812557e+06 149528.73 NULL
2022 Nyc Employees Retirement Sys Associate Retirement Benefits Examiner 62369.10366 1.022853e+07 1138692.54 6.943247e+03 1850.010 24326.75 164 1.850010e+03 303401.64 1.136723e+07 1.053193e+07 835290.90 NULL
2022 Nyc Employees Retirement Sys Associate Staff Analyst 81203.00000 2.436090e+05 8756.85 2.918950e+03 1504.770 130.75 3 1.504770e+03 4514.31 2.523659e+05 2.481233e+05 4242.54 NULL
2022 Nyc Employees Retirement Sys Bookkeeper 23641.50900 2.364151e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.364151e+04 2.364151e+04 0.00 NULL
2022 Nyc Employees Retirement Sys Certified It Administrator 108103.20000 1.621548e+06 61767.79 4.117853e+03 4702.970 957.25 15 4.117853e+03 61767.79 1.683316e+06 1.683316e+06 0.00 NULL
2022 Nyc Employees Retirement Sys Certified It Developer 115531.33333 3.465940e+05 11139.19 3.713063e+03 2318.470 147.75 3 2.318470e+03 6955.41 3.577332e+05 3.535494e+05 4183.78 NULL
2022 Nyc Employees Retirement Sys Clerical Associate 40480.52222 1.254896e+06 96244.70 3.104668e+03 232.620 3473.00 31 2.326200e+02 7211.22 1.351141e+06 1.262107e+06 89033.48 NULL
2022 Nyc Employees Retirement Sys College Aide 15385.15125 3.077030e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.077030e+04 3.077030e+04 0.00 NULL
2022 Nyc Employees Retirement Sys Community Assistant 39587.66667 2.375260e+05 63924.94 1.065416e+04 7560.510 2258.50 6 7.560510e+03 45363.06 3.014509e+05 2.828891e+05 18561.88 NULL
2022 Nyc Employees Retirement Sys Community Associate 45014.58836 6.752188e+05 23172.25 1.544817e+03 627.350 856.00 15 6.273500e+02 9410.25 6.983911e+05 6.846291e+05 13762.00 NULL
2022 Nyc Employees Retirement Sys Community Coordinator 70186.33333 2.105590e+05 1570.71 5.235700e+02 303.520 35.25 3 3.035200e+02 910.56 2.121297e+05 2.114696e+05 660.15 NULL
2022 Nyc Employees Retirement Sys Computer Associate 79491.85714 5.564430e+05 9180.20 1.311457e+03 1482.960 183.00 7 1.311457e+03 9180.20 5.656232e+05 5.656232e+05 0.00 NULL
2022 Nyc Employees Retirement Sys Computer Specialist 105091.20000 1.576368e+06 23197.64 1.546509e+03 283.750 338.25 15 2.837500e+02 4256.25 1.599566e+06 1.580624e+06 18941.39 NULL
2022 Nyc Employees Retirement Sys Computer Systems Manager 150595.33333 4.517860e+06 12463.04 4.154347e+02 0.000 166.75 30 0.000000e+00 0.00 4.530323e+06 4.517860e+06 12463.04 NULL
2022 Nyc Employees Retirement Sys Confidential Strategy Planner 87500.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2022 Nyc Employees Retirement Sys Customer Information Representative Ma L 1549 42298.92530 1.268968e+06 71865.23 2.395508e+03 593.025 1998.50 30 5.930250e+02 17790.75 1.340833e+06 1.286759e+06 54074.48 NULL
2022 Nyc Employees Retirement Sys Cyber Security Analyst 95837.50000 1.916750e+05 19250.17 9.625085e+03 9625.085 317.50 2 9.625085e+03 19250.17 2.109252e+05 2.109252e+05 0.00 NULL
2022 Nyc Employees Retirement Sys Deputy Executive Director 224197.00000 2.241970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.241970e+05 2.241970e+05 0.00 NULL
2022 Nyc Employees Retirement Sys Executive Agency Counsel 158908.50000 6.356340e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.356340e+05 6.356340e+05 0.00 NULL
2022 Nyc Employees Retirement Sys Executive Director 240630.00000 2.406300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.406300e+05 2.406300e+05 0.00 NULL
2022 Nyc Employees Retirement Sys Graphic Artist 45030.00000 4.503000e+04 30.00 3.000000e+01 30.000 1.00 1 3.000000e+01 30.00 4.506000e+04 4.506000e+04 0.00 NULL
2022 Nyc Employees Retirement Sys Legal Secretarial Assistant - Al 1 Only 18159.46560 1.815947e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.815947e+04 1.815947e+04 0.00 NULL
2022 Nyc Employees Retirement Sys Management Auditor 75093.33333 2.252800e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.252800e+05 2.252800e+05 0.00 NULL
2022 Nyc Employees Retirement Sys Office Machine Aide 25781.63704 2.320347e+05 23013.14 2.557016e+03 2736.400 1279.50 9 2.557016e+03 23013.14 2.550479e+05 2.550479e+05 0.00 NULL
2022 Nyc Employees Retirement Sys Principal Administrative Associate - Non Supvr 67279.75610 2.758470e+06 381541.22 9.305883e+03 5483.710 8919.25 41 5.483710e+03 224832.11 3.140011e+06 2.983302e+06 156709.11 NULL
2022 Nyc Employees Retirement Sys Research Assistant 48153.60000 2.407680e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.407680e+05 2.407680e+05 0.00 NULL
2022 Nyc Employees Retirement Sys Staff Analyst 66552.66667 3.993160e+05 33041.06 5.506843e+03 4617.095 674.25 6 4.617095e+03 27702.57 4.323571e+05 4.270186e+05 5338.49 NULL
2022 Nyc Employees Retirement Sys Supervising Computer Service Technician 80601.00000 8.060100e+04 9686.53 9.686530e+03 9686.530 179.25 1 9.686530e+03 9686.53 9.028753e+04 9.028753e+04 0.00 NULL
2022 Nyc Employees Retirement Sys Telecommunication Manager 178500.00000 1.785000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.785000e+05 1.785000e+05 0.00 NULL
2022 Nyc Employees Retirement Sys Telecommunications Associate 113445.00000 1.134450e+05 654.27 6.542700e+02 654.270 10.00 1 6.542700e+02 654.27 1.140993e+05 1.140993e+05 0.00 NULL
2022 Nyc Employees Retirement Sys Telecommunications Manager 98000.00000 9.800000e+04 549.81 5.498100e+02 549.810 8.50 1 5.498100e+02 549.81 9.854981e+04 9.854981e+04 0.00 NULL
2022 Nyc Fire Pension Fund Accountant 61859.00000 1.237180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.237180e+05 1.237180e+05 0.00 NULL
2022 Nyc Fire Pension Fund Actuarial Specialist Level Ii, Oj 102715.00000 1.027150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.027150e+05 1.027150e+05 0.00 NULL
2022 Nyc Fire Pension Fund Adm Manager-Non-Mgrl 84552.33333 2.536570e+05 26327.59 8.775863e+03 7883.100 467.75 3 7.883100e+03 23649.30 2.799846e+05 2.773063e+05 2678.29 NULL
2022 Nyc Fire Pension Fund Administrative Retirement Benefits Specialist 142546.00000 4.276380e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.276380e+05 4.276380e+05 0.00 NULL
2022 Nyc Fire Pension Fund Administrative Retirements Benefits Specialist 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2022 Nyc Fire Pension Fund Administrative Staff Analyst 116246.50000 4.649860e+05 5583.02 1.395755e+03 0.000 89.00 4 0.000000e+00 0.00 4.705690e+05 4.649860e+05 5583.02 NULL
2022 Nyc Fire Pension Fund Agency Attorney 105446.00000 1.054460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.054460e+05 1.054460e+05 0.00 NULL
2022 Nyc Fire Pension Fund Agency Chief Contracting Officer 182621.00000 1.826210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.826210e+05 1.826210e+05 0.00 NULL
2022 Nyc Fire Pension Fund Associate Retirement Benefits Examiner 70276.00000 4.919320e+05 64257.68 9.179669e+03 10177.430 1236.00 7 9.179669e+03 64257.68 5.561897e+05 5.561897e+05 0.00 NULL
2022 Nyc Fire Pension Fund Certified It Administrator 101784.00000 1.017840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.017840e+05 1.017840e+05 0.00 NULL
2022 Nyc Fire Pension Fund Chief Of Staff 193363.00000 1.933630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.933630e+05 1.933630e+05 0.00 NULL
2022 Nyc Fire Pension Fund Community Coordinator 62973.00000 2.518920e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.518920e+05 2.518920e+05 0.00 NULL
2022 Nyc Fire Pension Fund Computer Systems Manager 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2022 Nyc Fire Pension Fund Confidential Asst To The Executive Dir 86520.00000 8.652000e+04 568.30 5.683000e+02 568.300 12.00 1 5.683000e+02 568.30 8.708830e+04 8.708830e+04 0.00 NULL
2022 Nyc Fire Pension Fund Deputy Executive Director 225018.00000 2.250180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.250180e+05 2.250180e+05 0.00 NULL
2022 Nyc Fire Pension Fund Executive Agency Counsel 187991.00000 1.879910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.879910e+05 1.879910e+05 0.00 NULL
2022 Nyc Fire Pension Fund Executive Director 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2022 Nyc Fire Pension Fund Principal Administrative Associate - Non Supvr 80024.16667 4.801450e+05 4293.76 7.156267e+02 203.425 83.00 6 2.034250e+02 1220.55 4.844388e+05 4.813655e+05 3073.21 NULL
2022 Nyc Fire Pension Fund Public Records Aide 45626.12500 3.650090e+05 12576.93 1.572116e+03 543.605 417.25 8 5.436050e+02 4348.84 3.775859e+05 3.693578e+05 8228.09 NULL
2022 Nyc Fire Pension Fund Research Assistant 63837.00000 6.383700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.383700e+04 6.383700e+04 0.00 NULL
2022 Nyc Fire Pension Fund Staff Analyst 61866.00000 6.186600e+04 4285.60 4.285600e+03 4285.600 104.00 1 4.285600e+03 4285.60 6.615160e+04 6.615160e+04 0.00 NULL
2022 Nyc Fire Pension Fund Staff Analyst Trainee 58163.00000 5.816300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.816300e+04 5.816300e+04 0.00 NULL
2022 Nyc Housing Authority *Administrative Attorney 135883.00000 1.358830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.358830e+05 1.358830e+05 0.00 NULL
2022 Nyc Housing Authority *Attorney At Law 91563.00000 1.831260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.831260e+05 1.831260e+05 0.00 NULL
2022 Nyc Housing Authority *Housing Caretaker 46278.00000 1.851120e+05 78383.05 1.959576e+04 9047.190 2131.50 4 9.047190e+03 36188.76 2.634950e+05 2.213008e+05 42194.29 NULL
2022 Nyc Housing Authority *Senior Estimator 92000.00000 3.680000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.680000e+05 3.680000e+05 0.00 NULL
2022 Nyc Housing Authority Accountant 66452.73077 1.727771e+06 11625.08 4.471185e+02 0.000 233.50 26 0.000000e+00 0.00 1.739396e+06 1.727771e+06 11625.08 NULL
2022 Nyc Housing Authority Adm Manager-Non-Mgrl 86400.46970 5.702431e+06 43009.59 6.516605e+02 0.000 661.00 66 0.000000e+00 0.00 5.745441e+06 5.702431e+06 43009.59 NULL
2022 Nyc Housing Authority Admin Community Relations Specialist 95230.86667 5.713852e+06 67441.76 1.124029e+03 0.000 1140.25 60 0.000000e+00 0.00 5.781294e+06 5.713852e+06 67441.76 NULL
2022 Nyc Housing Authority Admin Contract Specialist 140684.27273 1.547527e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.547527e+06 1.547527e+06 0.00 NULL
2022 Nyc Housing Authority Admin Job Opportunity Spec Nm 77714.50000 1.554290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.554290e+05 1.554290e+05 0.00 NULL
2022 Nyc Housing Authority Administratiive Taxi & Limousine Inspector 118000.00000 1.180000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.180000e+05 1.180000e+05 0.00 NULL
2022 Nyc Housing Authority Administrative Accountant 113289.79167 2.718955e+06 288.45 1.201875e+01 0.000 6.75 24 0.000000e+00 0.00 2.719243e+06 2.718955e+06 288.45 NULL
2022 Nyc Housing Authority Administrative Architect 130484.00000 9.133880e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.133880e+05 9.133880e+05 0.00 NULL
2022 Nyc Housing Authority Administrative Business Promotion Coordinator 91311.00000 9.131100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.131100e+04 9.131100e+04 0.00 NULL
2022 Nyc Housing Authority Administrative City Planner 171364.33333 5.140930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.140930e+05 5.140930e+05 0.00 NULL
2022 Nyc Housing Authority Administrative Claim Examiner 125547.66667 7.532860e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.532860e+05 7.532860e+05 0.00 NULL
2022 Nyc Housing Authority Administrative Community Relations Specialist 159088.00000 1.113616e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.113616e+06 1.113616e+06 0.00 NULL
2022 Nyc Housing Authority Administrative Construction Project Manager 120864.96552 3.505084e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 3.505084e+06 3.505084e+06 0.00 NULL
2022 Nyc Housing Authority Administrative Engineer 129580.00000 9.070600e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.070600e+05 9.070600e+05 0.00 NULL
2022 Nyc Housing Authority Administrative Fire Protection Inspector 113558.00000 1.135580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.135580e+05 1.135580e+05 0.00 NULL
2022 Nyc Housing Authority Administrative Graphic Artist 99625.00000 9.962500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.962500e+04 9.962500e+04 0.00 NULL
2022 Nyc Housing Authority Administrative Housing Development Specialist 127229.26667 1.908439e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.908439e+06 1.908439e+06 0.00 NULL
2022 Nyc Housing Authority Administrative Housing Manager 130412.67568 4.825269e+06 66878.76 1.807534e+03 0.000 940.75 37 0.000000e+00 0.00 4.892148e+06 4.825269e+06 66878.76 NULL
2022 Nyc Housing Authority Administrative Housing Superintendent 125607.69792 1.205834e+07 264713.82 2.757436e+03 0.000 4344.75 96 0.000000e+00 0.00 1.232305e+07 1.205834e+07 264713.82 NULL
2022 Nyc Housing Authority Administrative Inspector 128967.09091 2.837276e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 2.837276e+06 2.837276e+06 0.00 NULL
2022 Nyc Housing Authority Administrative Investigator 91785.00000 2.753550e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.753550e+05 2.753550e+05 0.00 NULL
2022 Nyc Housing Authority Administrative Labor Relations Analyst 140103.20000 7.005160e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.005160e+05 7.005160e+05 0.00 NULL
2022 Nyc Housing Authority Administrative Landmarks Preservationist 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2022 Nyc Housing Authority Administrative Landscape Architect 118453.00000 1.184530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.184530e+05 1.184530e+05 0.00 NULL
2022 Nyc Housing Authority Administrative Management Auditor 103021.66667 3.090650e+05 1417.80 4.726000e+02 0.000 28.00 3 0.000000e+00 0.00 3.104828e+05 3.090650e+05 1417.80 NULL
2022 Nyc Housing Authority Administrative Printing Services Manager 136927.00000 1.369270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.369270e+05 1.369270e+05 0.00 NULL
2022 Nyc Housing Authority Administrative Procurement Analyst-Non-Mgrl 90556.31579 1.720570e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.720570e+06 1.720570e+06 0.00 NULL
2022 Nyc Housing Authority Administrative Project Manager 125819.00000 3.145475e+06 -308.46 -1.233840e+01 0.000 0.00 25 -1.233840e+01 -308.46 3.145167e+06 3.145167e+06 0.00 NULL
2022 Nyc Housing Authority Administrative Public Health Sanitarian 114068.33333 3.422050e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.422050e+05 3.422050e+05 0.00 NULL
2022 Nyc Housing Authority Administrative Public Information Specialist 184335.50000 3.686710e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.686710e+05 3.686710e+05 0.00 NULL
2022 Nyc Housing Authority Administrative Public Information Specialist Nm Former M1/M2 116167.50000 2.323350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.323350e+05 2.323350e+05 0.00 NULL
2022 Nyc Housing Authority Administrative Public Records Officer 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2022 Nyc Housing Authority Administrative Quality Assurance Specialist 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2022 Nyc Housing Authority Administrative Real Property Manager 177350.75000 7.094030e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.094030e+05 7.094030e+05 0.00 NULL
2022 Nyc Housing Authority Administrative Space Analyst 103388.75000 4.135550e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.135550e+05 4.135550e+05 0.00 NULL
2022 Nyc Housing Authority Administrative Staff Analyst 122601.55556 2.096487e+07 104776.81 6.127299e+02 0.000 1437.25 171 0.000000e+00 0.00 2.106964e+07 2.096487e+07 104776.81 NULL
2022 Nyc Housing Authority Administrative Storekeeper 130950.66667 3.928520e+05 16389.69 5.463230e+03 0.000 314.25 3 0.000000e+00 0.00 4.092417e+05 3.928520e+05 16389.69 NULL
2022 Nyc Housing Authority Administrative Supervisor Of Building Maintenance 121481.77778 1.093336e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.093336e+06 1.093336e+06 0.00 NULL
2022 Nyc Housing Authority Administrative Supervisor Of Skilled Trades 147145.50000 2.942910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.942910e+05 2.942910e+05 0.00 NULL
2022 Nyc Housing Authority Agency Attorney 91546.70909 5.035069e+06 0.00 0.000000e+00 0.000 0.00 55 0.000000e+00 0.00 5.035069e+06 5.035069e+06 0.00 NULL
2022 Nyc Housing Authority Agency Attorney Interne 71880.00000 1.437600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.437600e+05 1.437600e+05 0.00 NULL
2022 Nyc Housing Authority Agency Chief Contracting Officer 226000.00000 2.260000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.260000e+05 2.260000e+05 0.00 NULL
2022 Nyc Housing Authority Architect 92386.16667 5.543170e+05 456.66 7.611000e+01 0.000 10.00 6 0.000000e+00 0.00 5.547737e+05 5.543170e+05 456.66 NULL
2022 Nyc Housing Authority Asbestos Handler 81646.80952 1.714583e+06 361697.97 1.722371e+04 20137.970 6095.50 21 1.722371e+04 361697.97 2.076281e+06 2.076281e+06 0.00 NULL
2022 Nyc Housing Authority Asbestos Handler Supervisor 89989.00000 6.299230e+05 343587.63 4.908395e+04 46513.410 5409.25 7 4.651341e+04 325593.87 9.735106e+05 9.555169e+05 17993.76 NULL
2022 Nyc Housing Authority Asbestos Hazard Investigator 79397.00000 3.175880e+05 175296.73 4.382418e+04 42527.865 2828.50 4 4.252786e+04 170111.46 4.928847e+05 4.876995e+05 5185.27 NULL
2022 Nyc Housing Authority Assistant Architect 75329.50000 4.519770e+05 192.84 3.214000e+01 0.000 4.00 6 0.000000e+00 0.00 4.521698e+05 4.519770e+05 192.84 NULL
2022 Nyc Housing Authority Assistant Civil Engineer 78848.00000 2.365440e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.365440e+05 2.365440e+05 0.00 NULL
2022 Nyc Housing Authority Assistant Director Of Intergroup Relations 91000.00000 1.820000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.820000e+05 1.820000e+05 0.00 NULL
2022 Nyc Housing Authority Assistant Electrical Engineer 72588.33333 2.177650e+05 13644.86 4.548287e+03 4373.740 311.75 3 4.373740e+03 13121.22 2.314099e+05 2.308862e+05 523.64 NULL
2022 Nyc Housing Authority Assistant Environmental Engineer 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2022 Nyc Housing Authority Assistant Executive Director 195466.75000 1.563734e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.563734e+06 1.563734e+06 0.00 NULL
2022 Nyc Housing Authority Assistant Housing Manager 74769.00521 1.435565e+07 1140468.05 5.939938e+03 503.255 21730.00 192 5.032550e+02 96624.96 1.549612e+07 1.445227e+07 1043843.09 NULL
2022 Nyc Housing Authority Assistant Landscape Architect 72666.66667 2.180000e+05 46.07 1.535667e+01 0.000 1.25 3 0.000000e+00 0.00 2.180461e+05 2.180000e+05 46.07 NULL
2022 Nyc Housing Authority Assistant Mechanical Engineer 76033.40000 3.801670e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.801670e+05 3.801670e+05 0.00 NULL
2022 Nyc Housing Authority Assistant Printing Press Operator 59663.66667 3.579820e+05 3596.17 5.993617e+02 99.860 119.50 6 9.986000e+01 599.16 3.615782e+05 3.585812e+05 2997.01 NULL
2022 Nyc Housing Authority Assistant Resident Building Supt 72355.74545 1.591826e+07 4829810.56 2.195368e+04 19034.130 93705.75 220 1.903413e+04 4187508.60 2.074807e+07 2.010577e+07 642301.96 NULL
2022 Nyc Housing Authority Assoc Inspector 83648.50000 5.018910e+05 66198.99 1.103317e+04 11017.000 1139.25 6 1.101700e+04 66102.00 5.680900e+05 5.679930e+05 96.99 NULL
2022 Nyc Housing Authority Associate Contract Specialist 90728.00000 9.072800e+04 155.84 1.558400e+02 155.840 0.00 1 1.558400e+02 155.84 9.088384e+04 9.088384e+04 0.00 NULL
2022 Nyc Housing Authority Associate Fire Protection Inspector 78154.80000 3.907740e+05 3291.48 6.582960e+02 285.620 30.50 5 2.856200e+02 1428.10 3.940655e+05 3.922021e+05 1863.38 NULL
2022 Nyc Housing Authority Associate Fraud Investigator 79704.33333 2.391130e+05 1119.07 3.730233e+02 0.000 23.50 3 0.000000e+00 0.00 2.402321e+05 2.391130e+05 1119.07 NULL
2022 Nyc Housing Authority Associate Housing Development Specialist 98794.66667 3.852992e+06 32732.27 8.392890e+02 0.000 550.75 39 0.000000e+00 0.00 3.885724e+06 3.852992e+06 32732.27 NULL
2022 Nyc Housing Authority Associate Inspector 79652.00000 1.035476e+06 170472.68 1.311328e+04 8416.720 2950.00 13 8.416720e+03 109417.36 1.205949e+06 1.144893e+06 61055.32 NULL
2022 Nyc Housing Authority Associate Investigator 65502.44444 5.895220e+05 167.49 1.861000e+01 0.000 4.00 9 0.000000e+00 0.00 5.896895e+05 5.895220e+05 167.49 NULL
2022 Nyc Housing Authority Associate Job Opportunity Specialist 74514.50000 1.490290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.490290e+05 1.490290e+05 0.00 NULL
2022 Nyc Housing Authority Associate Labor Relations Analyst 100797.55556 9.071780e+05 15135.59 1.681732e+03 0.000 238.00 9 0.000000e+00 0.00 9.223136e+05 9.071780e+05 15135.59 NULL
2022 Nyc Housing Authority Associate Operations Communications Specialist 61311.00000 6.131100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.131100e+04 6.131100e+04 0.00 NULL
2022 Nyc Housing Authority Associate Project Manager 92100.41667 1.105205e+06 27873.11 2.322759e+03 0.000 501.50 12 0.000000e+00 0.00 1.133078e+06 1.105205e+06 27873.11 NULL
2022 Nyc Housing Authority Associate Public Health Sanitarian 79523.76923 1.033809e+06 57928.48 4.456037e+03 210.570 971.25 13 2.105700e+02 2737.41 1.091737e+06 1.036546e+06 55191.07 NULL
2022 Nyc Housing Authority Associate Public Information Specialist 58869.00000 5.886900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.886900e+04 5.886900e+04 0.00 NULL
2022 Nyc Housing Authority Associate Quality Assurance Specialist 70549.00000 7.054900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.054900e+04 7.054900e+04 0.00 NULL
2022 Nyc Housing Authority Associate Real Property Manager 82719.66667 2.481590e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.481590e+05 2.481590e+05 0.00 NULL
2022 Nyc Housing Authority Associate Staff Analyst 86482.67308 4.497099e+06 48144.41 9.258540e+02 0.000 587.50 52 0.000000e+00 0.00 4.545243e+06 4.497099e+06 48144.41 NULL
2022 Nyc Housing Authority Associate Urban Designer 85000.00000 8.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.500000e+04 8.500000e+04 0.00 NULL
2022 Nyc Housing Authority Auto Mechanic NA NA 45342.48 2.267124e+04 22671.240 750.25 2 2.267124e+04 45342.48 NA NA NA NULL
2022 Nyc Housing Authority Automotive Service Worker 54400.00000 1.088000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.088000e+05 1.088000e+05 0.00 NULL
2022 Nyc Housing Authority Bookkeeper 53939.23810 1.132724e+06 6566.38 3.126848e+02 0.000 182.50 21 0.000000e+00 0.00 1.139290e+06 1.132724e+06 6566.38 NULL
2022 Nyc Housing Authority Bricklayer NA NA 2593671.72 4.052612e+04 34757.390 35441.00 64 3.475739e+04 2224472.96 NA NA NA NULL
2022 Nyc Housing Authority Business Promotion Coordinator 68348.00000 1.366960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.366960e+05 1.366960e+05 0.00 NULL
2022 Nyc Housing Authority Caretaker 40981.78821 1.820821e+08 29820358.68 6.711762e+03 4180.680 905157.50 4443 4.180680e+03 18574761.24 2.119024e+08 2.006568e+08 11245597.44 NULL
2022 Nyc Housing Authority Carpenter NA NA 7692037.29 2.902656e+04 18357.850 97067.75 265 1.835785e+04 4864830.25 NA NA NA NULL
2022 Nyc Housing Authority Certified It Administrator 110049.18182 1.210541e+06 116634.89 1.060317e+04 5574.750 1470.25 11 5.574750e+03 61322.25 1.327176e+06 1.271863e+06 55312.64 NULL
2022 Nyc Housing Authority Chair 414707.00000 4.147070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.147070e+05 4.147070e+05 0.00 NULL
2022 Nyc Housing Authority Chauffeur-Attendant 60071.00000 6.007100e+04 11828.58 1.182858e+04 11828.580 294.50 1 1.182858e+04 11828.58 7.189958e+04 7.189958e+04 0.00 NULL
2022 Nyc Housing Authority Chief Caretaker 51819.00000 7.772850e+05 204183.36 1.361222e+04 14059.660 5860.50 15 1.361222e+04 204183.36 9.814684e+05 9.814684e+05 0.00 NULL
2022 Nyc Housing Authority Chief Of Housing Community Activities 104710.66667 3.141320e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.141320e+05 3.141320e+05 0.00 NULL
2022 Nyc Housing Authority Chief, Publications & Reports 112000.00000 1.120000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.120000e+05 1.120000e+05 0.00 NULL
2022 Nyc Housing Authority City Attendant 37364.00000 2.241840e+05 12222.30 2.037050e+03 0.000 456.50 6 0.000000e+00 0.00 2.364063e+05 2.241840e+05 12222.30 NULL
2022 Nyc Housing Authority City Laborer NA NA 2821134.59 2.029593e+04 15868.430 49151.00 139 1.586843e+04 2205711.77 NA NA NA NULL
2022 Nyc Housing Authority City Pest Control Aide 32460.48276 9.413540e+05 15326.97 5.285162e+02 0.000 712.75 29 0.000000e+00 0.00 9.566810e+05 9.413540e+05 15326.97 NULL
2022 Nyc Housing Authority City Planner 91746.00000 3.669840e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.669840e+05 3.669840e+05 0.00 NULL
2022 Nyc Housing Authority City Research Scientist 95997.60000 9.599760e+05 7582.04 7.582040e+02 0.000 137.75 10 0.000000e+00 0.00 9.675580e+05 9.599760e+05 7582.04 NULL
2022 Nyc Housing Authority City Seasonal Aide 39277.37389 4.874322e+07 20082.30 1.618235e+01 0.000 682.00 1241 0.000000e+00 0.00 4.876330e+07 4.874322e+07 20082.30 NULL
2022 Nyc Housing Authority City Security Aide 9663.13793 2.802310e+05 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 2.802310e+05 2.802310e+05 0.00 NULL
2022 Nyc Housing Authority Civil Engineer 100836.75000 4.033470e+05 7071.56 1.767890e+03 182.210 111.75 4 1.822100e+02 728.84 4.104186e+05 4.040758e+05 6342.72 NULL
2022 Nyc Housing Authority Claim Specialist 62992.60000 3.149630e+05 5159.74 1.031948e+03 0.000 123.50 5 0.000000e+00 0.00 3.201227e+05 3.149630e+05 5159.74 NULL
2022 Nyc Housing Authority Clerical Aide 34202.75000 1.368110e+05 267.68 6.692000e+01 0.000 8.50 4 0.000000e+00 0.00 1.370787e+05 1.368110e+05 267.68 NULL
2022 Nyc Housing Authority Clerical Associate 42383.29907 4.535013e+06 35367.85 3.305407e+02 0.000 1071.50 107 0.000000e+00 0.00 4.570381e+06 4.535013e+06 35367.85 NULL
2022 Nyc Housing Authority College Aide 18356.75000 1.468540e+05 1229.06 1.536325e+02 0.000 63.75 8 0.000000e+00 0.00 1.480831e+05 1.468540e+05 1229.06 NULL
2022 Nyc Housing Authority Community Assistant 39157.64286 5.482070e+05 42630.10 3.045007e+03 26.040 1384.00 14 2.604000e+01 364.56 5.908371e+05 5.485716e+05 42265.54 NULL
2022 Nyc Housing Authority Community Associate 49215.66887 7.431566e+06 56755.38 3.758634e+02 0.000 1645.25 151 0.000000e+00 0.00 7.488321e+06 7.431566e+06 56755.38 NULL
2022 Nyc Housing Authority Community Coordinator 69584.42909 1.913572e+07 279568.86 1.016614e+03 0.000 6066.75 275 0.000000e+00 0.00 1.941529e+07 1.913572e+07 279568.86 NULL
2022 Nyc Housing Authority Community Service Aide 34839.29252 5.121376e+06 169080.62 1.150208e+03 0.000 5616.50 147 0.000000e+00 0.00 5.290457e+06 5.121376e+06 169080.62 NULL
2022 Nyc Housing Authority Computer Associate 68593.42857 4.801540e+05 23692.28 3.384611e+03 379.330 507.75 7 3.793300e+02 2655.31 5.038463e+05 4.828093e+05 21036.97 NULL
2022 Nyc Housing Authority Computer Operations Manager 106641.83333 6.398510e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.398510e+05 6.398510e+05 0.00 NULL
2022 Nyc Housing Authority Computer Programmer Analyst 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2022 Nyc Housing Authority Computer Service Technician 51940.33333 1.558210e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.558210e+05 1.558210e+05 0.00 NULL
2022 Nyc Housing Authority Computer Specialist 100360.24390 4.114770e+06 215396.00 5.253561e+03 1335.650 2903.75 41 1.335650e+03 54761.65 4.330166e+06 4.169532e+06 160634.35 NULL
2022 Nyc Housing Authority Computer Systems Manager 135441.96296 7.313866e+06 10042.34 1.859693e+02 0.000 146.00 54 0.000000e+00 0.00 7.323908e+06 7.313866e+06 10042.34 NULL
2022 Nyc Housing Authority Confidential Investigator 71166.65000 2.846666e+06 53888.96 1.347224e+03 0.000 967.75 40 0.000000e+00 0.00 2.900555e+06 2.846666e+06 53888.96 NULL
2022 Nyc Housing Authority Construction Project Manager 86806.98077 9.027926e+06 388916.50 3.739582e+03 0.000 6436.50 104 0.000000e+00 0.00 9.416842e+06 9.027926e+06 388916.50 NULL
2022 Nyc Housing Authority Consultant On Race Relations 97400.00000 9.740000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.740000e+04 9.740000e+04 0.00 NULL
2022 Nyc Housing Authority Contract Specialist 60816.13333 9.122420e+05 6755.03 4.503353e+02 50.080 184.00 15 5.008000e+01 751.20 9.189970e+05 9.129932e+05 6003.83 NULL
2022 Nyc Housing Authority Controller 185000.00000 1.850000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.850000e+05 1.850000e+05 0.00 NULL
2022 Nyc Housing Authority Coordinator, Tenant Patrol 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2022 Nyc Housing Authority Counsel 226600.00000 2.266000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.266000e+05 2.266000e+05 0.00 NULL
2022 Nyc Housing Authority Custodian 68000.00000 6.800000e+04 317.53 3.175300e+02 317.530 6.50 1 3.175300e+02 317.53 6.831753e+04 6.831753e+04 0.00 NULL
2022 Nyc Housing Authority Customer Information Representative Ma L 1549 47737.04598 4.153123e+06 32668.07 3.754951e+02 0.000 1023.00 87 0.000000e+00 0.00 4.185791e+06 4.153123e+06 32668.07 NULL
2022 Nyc Housing Authority Cyber Security Analyst 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2022 Nyc Housing Authority Dep Dir Research & Pol Develp 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2022 Nyc Housing Authority Deputy Controller 173531.00000 1.735310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.735310e+05 1.735310e+05 0.00 NULL
2022 Nyc Housing Authority Deputy Director Of Design 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2022 Nyc Housing Authority Deputy Director Of Management 107500.00000 2.150000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.150000e+05 2.150000e+05 0.00 NULL
2022 Nyc Housing Authority Deputy Executive Director 228649.66667 6.859490e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.859490e+05 6.859490e+05 0.00 NULL
2022 Nyc Housing Authority Deputy Inspector General 120995.00000 3.629850e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.629850e+05 3.629850e+05 0.00 NULL
2022 Nyc Housing Authority Dir Of Quality & Cost Control 185000.00000 1.850000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.850000e+05 1.850000e+05 0.00 NULL
2022 Nyc Housing Authority Director Of Contract Administration 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2022 Nyc Housing Authority Director Of Development 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2022 Nyc Housing Authority Director Of Equal Opportunity 141017.00000 1.410170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.410170e+05 1.410170e+05 0.00 NULL
2022 Nyc Housing Authority Director Of General Services 158926.00000 3.178520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.178520e+05 3.178520e+05 0.00 NULL
2022 Nyc Housing Authority Director Of Hud Acquired Properties 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2022 Nyc Housing Authority Director Of Information Systems 162244.50000 3.244890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.244890e+05 3.244890e+05 0.00 NULL
2022 Nyc Housing Authority Director Of Leased Housing 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2022 Nyc Housing Authority Director Of Methods & Analysis 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2022 Nyc Housing Authority Director Of Plant Operations & Maintenance 169350.00000 1.693500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.693500e+05 1.693500e+05 0.00 NULL
2022 Nyc Housing Authority Director Of Program Planning 132449.00000 1.324490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.324490e+05 1.324490e+05 0.00 NULL
2022 Nyc Housing Authority Director Of Public And Community Relations 215850.00000 2.158500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.158500e+05 2.158500e+05 0.00 NULL
2022 Nyc Housing Authority Director Of Research & Policy Development 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2022 Nyc Housing Authority Director Of Review & Counseling 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2022 Nyc Housing Authority Director Of Social & Community Services 137500.00000 1.375000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.375000e+05 1.375000e+05 0.00 NULL
2022 Nyc Housing Authority Director Or Management 153107.00000 1.531070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.531070e+05 1.531070e+05 0.00 NULL
2022 Nyc Housing Authority Economist 80807.63636 1.777768e+06 6065.99 2.757268e+02 0.000 102.00 22 0.000000e+00 0.00 1.783834e+06 1.777768e+06 6065.99 NULL
2022 Nyc Housing Authority Electrical Engineer 100726.66667 3.021800e+05 14377.67 4.792557e+03 5950.240 230.25 3 4.792557e+03 14377.67 3.165577e+05 3.165577e+05 0.00 NULL
2022 Nyc Housing Authority Electrician NA NA 4808972.29 6.087307e+04 58563.550 53972.75 79 5.856355e+04 4626520.45 NA NA NA NULL
2022 Nyc Housing Authority Electricians Helper NA NA 1820022.82 2.333363e+04 18579.620 30947.00 78 1.857962e+04 1449210.36 NA NA NA NULL
2022 Nyc Housing Authority Elevator Mechanic NA NA 9392053.49 3.946241e+04 32513.590 94633.00 238 3.251359e+04 7738234.42 NA NA NA NULL
2022 Nyc Housing Authority Elevator Mechanic Helper NA NA 4095720.32 2.824635e+04 24880.000 68673.75 145 2.488000e+04 3607600.00 NA NA NA NULL
2022 Nyc Housing Authority Emergency Service Aide 41838.30000 2.510298e+06 180971.83 3.016197e+03 641.375 6185.75 60 6.413750e+02 38482.50 2.691270e+06 2.548780e+06 142489.33 NULL
2022 Nyc Housing Authority Engineering Technician 78530.00000 7.853000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.853000e+04 7.853000e+04 0.00 NULL
2022 Nyc Housing Authority Estimator 89707.25000 3.588290e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.588290e+05 3.588290e+05 0.00 NULL
2022 Nyc Housing Authority Executive Agency Counsel 136101.78333 8.166107e+06 0.00 0.000000e+00 0.000 0.00 60 0.000000e+00 0.00 8.166107e+06 8.166107e+06 0.00 NULL
2022 Nyc Housing Authority Executive Director 258000.00000 2.580000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.580000e+05 2.580000e+05 0.00 NULL
2022 Nyc Housing Authority Executive Program Specialist 167500.00000 3.350000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.350000e+05 3.350000e+05 0.00 NULL
2022 Nyc Housing Authority Fraud Investigator 62797.00000 6.279700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.279700e+04 6.279700e+04 0.00 NULL
2022 Nyc Housing Authority Geologist 92132.66667 2.763980e+05 16735.01 5.578337e+03 0.000 219.75 3 0.000000e+00 0.00 2.931330e+05 2.763980e+05 16735.01 NULL
2022 Nyc Housing Authority Glazier NA NA 510559.47 2.836442e+04 31113.880 5474.00 18 2.836442e+04 510559.47 NA NA NA NULL
2022 Nyc Housing Authority Graphic Artist 54431.25000 2.177250e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.177250e+05 2.177250e+05 0.00 NULL
2022 Nyc Housing Authority Health Services Manager 125497.50000 2.509950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.509950e+05 2.509950e+05 0.00 NULL
2022 Nyc Housing Authority Hearing Examiner 128812.00000 3.864360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.864360e+05 3.864360e+05 0.00 NULL
2022 Nyc Housing Authority Heating Plant Technician 54019.88849 1.501753e+07 4185001.87 1.505396e+04 10492.485 113088.25 278 1.049249e+04 2916910.83 1.920253e+07 1.793444e+07 1268091.04 NULL
2022 Nyc Housing Authority Housing Assistant 55443.20239 5.095230e+07 1986167.82 2.161227e+03 0.000 45855.00 919 0.000000e+00 0.00 5.293847e+07 5.095230e+07 1986167.82 NULL
2022 Nyc Housing Authority Housing Assistant Trainee 33775.00000 2.702000e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 2.702000e+05 2.702000e+05 0.00 NULL
2022 Nyc Housing Authority Housing Development Specialist 81307.00000 2.439210e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.439210e+05 2.439210e+05 0.00 NULL
2022 Nyc Housing Authority Housing Exterminator 52210.80645 4.855605e+06 519202.20 5.582819e+03 3199.820 14000.50 93 3.199820e+03 297583.26 5.374807e+06 5.153188e+06 221618.94 NULL
2022 Nyc Housing Authority Housing Exterminator-Al Ii & Iii 62551.22222 1.125922e+06 288251.49 1.601397e+04 15895.055 6382.25 18 1.589506e+04 286110.99 1.414173e+06 1.412033e+06 2140.50 NULL
2022 Nyc Housing Authority Housing Exterminator-Al Iv 81911.75000 3.276470e+05 55040.56 1.376014e+04 13424.855 933.50 4 1.342485e+04 53699.42 3.826876e+05 3.813464e+05 1341.14 NULL
2022 Nyc Housing Authority Housing Manager 92802.36458 1.781805e+07 1591366.11 8.288365e+03 2348.230 25447.25 192 2.348230e+03 450860.16 1.940942e+07 1.826891e+07 1140505.95 NULL
2022 Nyc Housing Authority Housing Stock Worker 49463.88235 8.408860e+05 9050.96 5.324094e+02 390.200 275.00 17 3.902000e+02 6633.40 8.499370e+05 8.475194e+05 2417.56 NULL
2022 Nyc Housing Authority Industrial Hygienist 72214.66667 6.499320e+05 21308.34 2.367593e+03 0.000 465.75 9 0.000000e+00 0.00 6.712403e+05 6.499320e+05 21308.34 NULL
2022 Nyc Housing Authority Inspector 68650.50000 5.492040e+05 25802.37 3.225296e+03 227.930 556.25 8 2.279300e+02 1823.44 5.750064e+05 5.510274e+05 23978.93 NULL
2022 Nyc Housing Authority Inspector Boilers 82500.00000 1.650000e+05 7657.41 3.828705e+03 3828.705 160.50 2 3.828705e+03 7657.41 1.726574e+05 1.726574e+05 0.00 NULL
2022 Nyc Housing Authority Inspector Elevators 86985.00000 1.739700e+05 1028.54 5.142700e+02 514.270 16.50 2 5.142700e+02 1028.54 1.749985e+05 1.749985e+05 0.00 NULL
2022 Nyc Housing Authority Inspector General 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2022 Nyc Housing Authority Insurance Advisor 69927.00000 6.992700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.992700e+04 6.992700e+04 0.00 NULL
2022 Nyc Housing Authority Interpreter 54535.33333 1.636060e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.636060e+05 1.636060e+05 0.00 NULL
2022 Nyc Housing Authority Interpreter/Translator 57112.00000 1.142240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.142240e+05 1.142240e+05 0.00 NULL
2022 Nyc Housing Authority Investigator 53040.00000 2.121600e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.121600e+05 2.121600e+05 0.00 NULL
2022 Nyc Housing Authority Labor Relations Analyst 71743.42857 5.022040e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.022040e+05 5.022040e+05 0.00 NULL
2022 Nyc Housing Authority Labor Relations Analyst Trainee 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2022 Nyc Housing Authority Landscape Architect 87776.00000 1.755520e+05 2616.38 1.308190e+03 1308.190 49.00 2 1.308190e+03 2616.38 1.781684e+05 1.781684e+05 0.00 NULL
2022 Nyc Housing Authority Lead Abatement Worker 53550.90000 1.071018e+06 112154.97 5.607748e+03 4183.200 2995.75 20 4.183200e+03 83664.00 1.183173e+06 1.154682e+06 28490.97 NULL
2022 Nyc Housing Authority Legal Secretarial Assistant 63515.00000 6.351500e+04 1078.43 1.078430e+03 1078.430 31.00 1 1.078430e+03 1078.43 6.459343e+04 6.459343e+04 0.00 NULL
2022 Nyc Housing Authority Legal Secretarial Assistant - Al 1 Only 44069.00000 4.406900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.406900e+04 4.406900e+04 0.00 NULL
2022 Nyc Housing Authority Machinist NA NA 31516.95 1.050565e+04 2245.950 494.50 3 2.245950e+03 6737.85 NA NA NA NULL
2022 Nyc Housing Authority Maintenance Worker NA NA 16484707.89 1.352314e+04 9643.560 358055.25 1219 9.643560e+03 11755499.64 NA NA NA NULL
2022 Nyc Housing Authority Management Auditor 72057.60000 1.080864e+06 791.94 5.279600e+01 0.000 17.50 15 0.000000e+00 0.00 1.081656e+06 1.080864e+06 791.94 NULL
2022 Nyc Housing Authority Management Auditor Trainee 52242.00000 5.224200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.224200e+04 5.224200e+04 0.00 NULL
2022 Nyc Housing Authority Masons Helper NA NA 1018400.70 1.958463e+04 11806.910 19362.25 52 1.180691e+04 613959.32 NA NA NA NULL
2022 Nyc Housing Authority Mechanical Engineer 101263.16667 6.075790e+05 1862.32 3.103867e+02 0.000 31.25 6 0.000000e+00 0.00 6.094413e+05 6.075790e+05 1862.32 NULL
2022 Nyc Housing Authority Media Services Technician 62573.00000 6.257300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.257300e+04 6.257300e+04 0.00 NULL
2022 Nyc Housing Authority Motor Grader Operator NA NA 35153.09 1.757654e+04 17576.545 405.75 2 1.757654e+04 35153.09 NA NA NA NULL
2022 Nyc Housing Authority Motor Vehicle Operator 47996.33333 5.759560e+05 13213.35 1.101112e+03 196.120 403.75 12 1.961200e+02 2353.44 5.891693e+05 5.783094e+05 10859.91 NULL
2022 Nyc Housing Authority Office Machine Aide 44014.00000 4.401400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.401400e+04 4.401400e+04 0.00 NULL
2022 Nyc Housing Authority Oil Burner Specialist 67874.80000 3.393740e+05 108363.02 2.167260e+04 3434.130 2263.50 5 3.434130e+03 17170.65 4.477370e+05 3.565447e+05 91192.37 NULL
2022 Nyc Housing Authority Oiler NA NA 32257.59 6.451518e+03 8081.190 360.50 5 6.451518e+03 32257.59 NA NA NA NULL
2022 Nyc Housing Authority Painter NA NA 10629586.57 2.711629e+04 19814.290 141030.25 392 1.981429e+04 7767201.68 NA NA NA NULL
2022 Nyc Housing Authority Plasterer NA NA 10972335.80 3.407558e+04 26550.505 101567.25 322 2.655051e+04 8549262.61 NA NA NA NULL
2022 Nyc Housing Authority Plumber NA NA 9576761.52 6.840544e+04 59164.425 92836.50 140 5.916443e+04 8283019.50 NA NA NA NULL
2022 Nyc Housing Authority Plumber’s Helper NA NA 4245910.52 3.099205e+04 26308.400 57452.50 137 2.630840e+04 3604250.80 NA NA NA NULL
2022 Nyc Housing Authority Principal Administrative Associate - Non Supvr 66669.52577 6.466944e+06 58532.20 6.034247e+02 0.000 1456.00 97 0.000000e+00 0.00 6.525476e+06 6.466944e+06 58532.20 NULL
2022 Nyc Housing Authority Printing Press Operator NA NA 1375.99 1.375990e+03 1375.990 22.50 1 1.375990e+03 1375.99 NA NA NA NULL
2022 Nyc Housing Authority Procurement Analyst 69011.27500 2.760451e+06 118878.10 2.971952e+03 0.000 2041.75 40 0.000000e+00 0.00 2.879329e+06 2.760451e+06 118878.10 NULL
2022 Nyc Housing Authority Program Producer 91000.00000 1.820000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.820000e+05 1.820000e+05 0.00 NULL
2022 Nyc Housing Authority Project Manager 72424.00000 1.448480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.448480e+05 1.448480e+05 0.00 NULL
2022 Nyc Housing Authority Project Manager Intern# 59265.00000 1.777950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.777950e+05 1.777950e+05 0.00 NULL
2022 Nyc Housing Authority Public Health Sanitarian 64249.66667 1.927490e+05 7159.69 2.386563e+03 382.950 152.50 3 3.829500e+02 1148.85 1.999087e+05 1.938979e+05 6010.84 NULL
2022 Nyc Housing Authority Public Records Aide 52426.00000 5.242600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.242600e+04 5.242600e+04 0.00 NULL
2022 Nyc Housing Authority Quality Assurance Specialist 59890.33333 7.186840e+05 492.76 4.106333e+01 0.000 15.00 12 0.000000e+00 0.00 7.191768e+05 7.186840e+05 492.76 NULL
2022 Nyc Housing Authority Real Property Manager 61000.00000 6.100000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.100000e+04 6.100000e+04 0.00 NULL
2022 Nyc Housing Authority Research Assistant 58564.33333 5.270790e+05 1164.63 1.294033e+02 0.000 26.50 9 0.000000e+00 0.00 5.282436e+05 5.270790e+05 1164.63 NULL
2022 Nyc Housing Authority Resident Building Superintendent 90823.29630 1.961783e+07 4314379.86 1.997398e+04 13911.310 69529.50 216 1.391131e+04 3004842.96 2.393221e+07 2.262267e+07 1309536.90 NULL
2022 Nyc Housing Authority Roofer NA NA 463859.95 1.656643e+04 10744.940 7776.50 28 1.074494e+04 300858.32 NA NA NA NULL
2022 Nyc Housing Authority Secretary 43035.88416 1.820418e+07 97767.04 2.311278e+02 0.000 3220.00 423 0.000000e+00 0.00 1.830195e+07 1.820418e+07 97767.04 NULL
2022 Nyc Housing Authority Secretary To Deputy Executive Director 86666.66667 2.600000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.600000e+05 2.600000e+05 0.00 NULL
2022 Nyc Housing Authority Secretary To Executive Director 85276.00000 8.527600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.527600e+04 8.527600e+04 0.00 NULL
2022 Nyc Housing Authority Secretary To Member 83123.66667 2.493710e+05 73.38 2.446000e+01 0.000 1.50 3 0.000000e+00 0.00 2.494444e+05 2.493710e+05 73.38 NULL
2022 Nyc Housing Authority Secretary To The Chairman 82876.00000 8.287600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.287600e+04 8.287600e+04 0.00 NULL
2022 Nyc Housing Authority Senior Intergroup Relations Officer 90898.00000 1.817960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.817960e+05 1.817960e+05 0.00 NULL
2022 Nyc Housing Authority Social Worker 60200.50000 3.612030e+05 152.72 2.545333e+01 0.000 4.75 6 0.000000e+00 0.00 3.613557e+05 3.612030e+05 152.72 NULL
2022 Nyc Housing Authority Space Analyst 76016.00000 7.601600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.601600e+04 7.601600e+04 0.00 NULL
2022 Nyc Housing Authority Special Assistant To The Deputy Executive Director 127216.83333 7.633010e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.633010e+05 7.633010e+05 0.00 NULL
2022 Nyc Housing Authority Special Assistant To The Executive Director 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2022 Nyc Housing Authority Special Officer 46617.33333 1.398520e+05 7433.98 2.477993e+03 2732.210 208.25 3 2.477993e+03 7433.98 1.472860e+05 1.472860e+05 0.00 NULL
2022 Nyc Housing Authority Staff Analyst 69938.06250 3.357027e+06 6606.58 1.376371e+02 0.000 147.75 48 0.000000e+00 0.00 3.363634e+06 3.357027e+06 6606.58 NULL
2022 Nyc Housing Authority Staff Analyst Trainee 41086.50000 8.217300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.217300e+04 8.217300e+04 0.00 NULL
2022 Nyc Housing Authority Statistician 77481.66667 2.324450e+05 1526.08 5.086933e+02 118.720 27.25 3 1.187200e+02 356.16 2.339711e+05 2.328012e+05 1169.92 NULL
2022 Nyc Housing Authority Summer Graduate Intern 22942.50000 4.588500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.588500e+04 4.588500e+04 0.00 NULL
2022 Nyc Housing Authority Supervising Computer Service Technician 71559.75000 2.862390e+05 212.02 5.300500e+01 21.910 5.00 4 2.191000e+01 87.64 2.864510e+05 2.863266e+05 124.38 NULL
2022 Nyc Housing Authority Supervising Housing Groundskeeper 61214.97222 8.814956e+06 2985645.33 2.073365e+04 20071.870 64403.00 144 2.007187e+04 2890349.28 1.180060e+07 1.170531e+07 95296.05 NULL
2022 Nyc Housing Authority Supervising Special Officer 55853.00000 1.117060e+05 6051.95 3.025975e+03 3025.975 149.75 2 3.025975e+03 6051.95 1.177579e+05 1.177579e+05 0.00 NULL
2022 Nyc Housing Authority Supervisor 78345.00000 1.566900e+05 31057.21 1.552860e+04 15528.605 633.25 2 1.552860e+04 31057.21 1.877472e+05 1.877472e+05 0.00 NULL
2022 Nyc Housing Authority Supervisor Bricklayer NA NA 878697.48 6.759211e+04 71032.680 10587.25 13 6.759211e+04 878697.48 NA NA NA NULL
2022 Nyc Housing Authority Supervisor Carpenter NA NA 1356219.37 6.164633e+04 58243.265 16291.75 22 5.824326e+04 1281351.83 NA NA NA NULL
2022 Nyc Housing Authority Supervisor Electrician NA NA 1092272.02 8.402092e+04 95843.950 10944.00 13 8.402092e+04 1092272.02 NA NA NA NULL
2022 Nyc Housing Authority Supervisor Elevator Mechanic NA NA 1115787.79 4.132547e+04 36275.400 10090.50 27 3.627540e+04 979435.80 NA NA NA NULL
2022 Nyc Housing Authority Supervisor Glazier NA NA 204945.07 5.123627e+04 52947.840 2138.00 4 5.123627e+04 204945.07 NA NA NA NULL
2022 Nyc Housing Authority Supervisor Ii Social Work 76706.85714 5.369480e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.369480e+05 5.369480e+05 0.00 NULL
2022 Nyc Housing Authority Supervisor Of Electrical Installations & Maintenance 84146.66667 2.524400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.524400e+05 2.524400e+05 0.00 NULL
2022 Nyc Housing Authority Supervisor Of Elevator Maintenance 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2022 Nyc Housing Authority Supervisor Of Housing Caretaker 61706.79670 1.123064e+07 3718001.13 2.042858e+04 19811.850 80338.25 182 1.981185e+04 3605756.70 1.494864e+07 1.483639e+07 112244.43 NULL
2022 Nyc Housing Authority Supervisor Of Housing Stock Workers 73998.78571 1.035983e+06 56591.05 4.042218e+03 198.920 1019.00 14 1.989200e+02 2784.88 1.092574e+06 1.038768e+06 53806.17 NULL
2022 Nyc Housing Authority Supervisor Of Mechanical Installations & Maintenance 84414.80769 2.194785e+06 96727.37 3.720283e+03 0.000 1526.00 26 0.000000e+00 0.00 2.291512e+06 2.194785e+06 96727.37 NULL
2022 Nyc Housing Authority Supervisor Of Office Machine Operations 44352.50000 8.870500e+04 0.55 2.750000e-01 0.275 0.00 2 2.750000e-01 0.55 8.870555e+04 8.870555e+04 0.00 NULL
2022 Nyc Housing Authority Supervisor Painter NA NA 5425685.46 4.717987e+04 53699.830 61576.00 115 4.717987e+04 5425685.46 NA NA NA NULL
2022 Nyc Housing Authority Supervisor Plasterer NA NA 2522276.47 5.732447e+04 63644.000 21978.25 44 5.732447e+04 2522276.47 NA NA NA NULL
2022 Nyc Housing Authority Supervisor Plumber NA NA 1984925.74 9.452027e+04 103060.640 18090.00 21 9.452027e+04 1984925.74 NA NA NA NULL
2022 Nyc Housing Authority Supervisor Roofer NA NA 258738.84 4.312314e+04 32584.470 3917.75 6 3.258447e+04 195506.82 NA NA NA NULL
2022 Nyc Housing Authority Telecommunication Manager 153750.00000 6.150000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.150000e+05 6.150000e+05 0.00 NULL
2022 Nyc Housing Authority Telecommunications Associate 81127.85714 5.678950e+05 14587.30 2.083900e+03 2114.770 272.75 7 2.083900e+03 14587.30 5.824823e+05 5.824823e+05 0.00 NULL
2022 Nyc Housing Authority Welder NA NA 573570.86 6.373010e+04 73988.640 5696.50 9 6.373010e+04 573570.86 NA NA NA NULL
2022 Nyc Housing Authority Worker’s Compensation Benefits Examiner 60975.50000 2.439020e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.439020e+05 2.439020e+05 0.00 NULL
2022 Nyc Police Pension Fund Accountant 64372.50000 2.574900e+05 8798.13 2.199532e+03 0.000 134.00 4 0.000000e+00 0.00 2.662881e+05 2.574900e+05 8798.13 NULL
2022 Nyc Police Pension Fund Adm Manager-Non-Mgrl 87046.00000 8.704600e+04 4656.42 4.656420e+03 4656.420 77.00 1 4.656420e+03 4656.42 9.170242e+04 9.170242e+04 0.00 NULL
2022 Nyc Police Pension Fund Administrative Accountant 156578.00000 6.263120e+05 6238.79 1.559697e+03 0.000 75.00 4 0.000000e+00 0.00 6.325508e+05 6.263120e+05 6238.79 NULL
2022 Nyc Police Pension Fund Administrative Management Auditor 96814.66667 2.904440e+05 26115.33 8.705110e+03 2779.370 446.00 3 2.779370e+03 8338.11 3.165593e+05 2.987821e+05 17777.22 NULL
2022 Nyc Police Pension Fund Administrative Procurement Analyst 164512.00000 1.645120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.645120e+05 1.645120e+05 0.00 NULL
2022 Nyc Police Pension Fund Administrative Real Property Manager 119102.00000 1.191020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.191020e+05 1.191020e+05 0.00 NULL
2022 Nyc Police Pension Fund Administrative Retirement Benefits Specialist 143391.00000 1.720692e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.720692e+06 1.720692e+06 0.00 NULL
2022 Nyc Police Pension Fund Administrative Staff Analyst 140309.00000 4.209270e+05 1836.38 6.121267e+02 877.720 3.50 3 6.121267e+02 1836.38 4.227634e+05 4.227634e+05 0.00 NULL
2022 Nyc Police Pension Fund Assistant Retirement Benefits Examiner 44117.20000 4.411720e+05 175.56 1.755600e+01 0.000 7.75 10 0.000000e+00 0.00 4.413476e+05 4.411720e+05 175.56 NULL
2022 Nyc Police Pension Fund Associate Retirement Benefits Examiner 69035.20000 1.380704e+06 21683.10 1.084155e+03 248.545 477.50 20 2.485450e+02 4970.90 1.402387e+06 1.385675e+06 16712.20 NULL
2022 Nyc Police Pension Fund Associate Staff Analyst 101735.00000 1.017350e+05 1976.41 1.976410e+03 1976.410 28.25 1 1.976410e+03 1976.41 1.037114e+05 1.037114e+05 0.00 NULL
2022 Nyc Police Pension Fund Certified It Administrator 133684.50000 2.673690e+05 40173.65 2.008683e+04 20086.825 447.75 2 2.008683e+04 40173.65 3.075427e+05 3.075427e+05 0.00 NULL
2022 Nyc Police Pension Fund Certified It Developer 122132.00000 1.221320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.221320e+05 1.221320e+05 0.00 NULL
2022 Nyc Police Pension Fund Clerical Aide 38402.23529 6.528380e+05 2232.01 1.312947e+02 68.550 95.00 17 6.855000e+01 1165.35 6.550700e+05 6.540033e+05 1066.66 NULL
2022 Nyc Police Pension Fund Clerical Associate 51393.70400 5.139370e+05 4964.36 4.964360e+02 120.525 159.25 10 1.205250e+02 1205.25 5.189014e+05 5.151423e+05 3759.11 NULL
2022 Nyc Police Pension Fund College Aide 294.50000 2.945000e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.945000e+02 2.945000e+02 0.00 NULL
2022 Nyc Police Pension Fund Community Assistant 45922.00000 2.296100e+05 770.74 1.541480e+02 0.000 26.25 5 0.000000e+00 0.00 2.303807e+05 2.296100e+05 770.74 NULL
2022 Nyc Police Pension Fund Community Associate 53297.70833 1.279145e+06 48861.63 2.035901e+03 122.165 1224.75 24 1.221650e+02 2931.96 1.328007e+06 1.282077e+06 45929.67 NULL
2022 Nyc Police Pension Fund Community Coordinator 86904.28571 6.083300e+05 17964.25 2.566321e+03 341.330 317.00 7 3.413300e+02 2389.31 6.262942e+05 6.107193e+05 15574.94 NULL
2022 Nyc Police Pension Fund Computer Aide-Non-Spvr 48758.00000 4.875800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.875800e+04 4.875800e+04 0.00 NULL
2022 Nyc Police Pension Fund Computer Associate 80323.00000 2.409690e+05 6067.82 2.022607e+03 0.000 134.50 3 0.000000e+00 0.00 2.470368e+05 2.409690e+05 6067.82 NULL
2022 Nyc Police Pension Fund Computer Programmer Analyst 58918.00000 5.891800e+04 113.83 1.138300e+02 113.830 3.50 1 1.138300e+02 113.83 5.903183e+04 5.903183e+04 0.00 NULL
2022 Nyc Police Pension Fund Computer Specialist 122681.66667 3.680450e+05 1412.90 4.709667e+02 0.000 11.50 3 0.000000e+00 0.00 3.694579e+05 3.680450e+05 1412.90 NULL
2022 Nyc Police Pension Fund Computer Systems Manager 172767.14286 1.209370e+06 28032.43 4.004633e+03 0.000 324.75 7 0.000000e+00 0.00 1.237402e+06 1.209370e+06 28032.43 NULL
2022 Nyc Police Pension Fund Customer Information Representative Ma L 1549 66641.20000 3.332060e+05 29597.51 5.919502e+03 459.220 601.00 5 4.592200e+02 2296.10 3.628035e+05 3.355021e+05 27301.41 NULL
2022 Nyc Police Pension Fund Cyber Security Analyst 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2022 Nyc Police Pension Fund Deputy Director 227924.00000 4.558480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.558480e+05 4.558480e+05 0.00 NULL
2022 Nyc Police Pension Fund Executive Agency Counsel 157372.50000 3.147450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.147450e+05 3.147450e+05 0.00 NULL
2022 Nyc Police Pension Fund Executive Director 240511.00000 2.405110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.405110e+05 2.405110e+05 0.00 NULL
2022 Nyc Police Pension Fund Office Machine Aide 36753.00000 3.675300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.675300e+04 3.675300e+04 0.00 NULL
2022 Nyc Police Pension Fund Paralegal Aide 65848.00000 1.316960e+05 80.46 4.023000e+01 40.230 2.00 2 4.023000e+01 80.46 1.317765e+05 1.317765e+05 0.00 NULL
2022 Nyc Police Pension Fund Principal Administrative Associate - Non Supvr 75603.62500 6.048290e+05 14675.42 1.834428e+03 1469.725 319.75 8 1.469725e+03 11757.80 6.195044e+05 6.165868e+05 2917.62 NULL
2022 Nyc Police Pension Fund Procurement Analyst 79101.00000 7.910100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.910100e+04 7.910100e+04 0.00 NULL
2022 Nyc Police Pension Fund Staff Analyst 60315.33333 1.809460e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.809460e+05 1.809460e+05 0.00 NULL
2022 Nyc Police Pension Fund Staff Analyst Trainee 46486.00000 9.297200e+04 90.64 4.532000e+01 45.320 3.50 2 4.532000e+01 90.64 9.306264e+04 9.306264e+04 0.00 NULL
2022 Nyc Police Pension Fund Supervisor Of Office Machine Operations 68701.00000 6.870100e+04 1059.62 1.059620e+03 1059.620 21.00 1 1.059620e+03 1059.62 6.976062e+04 6.976062e+04 0.00 NULL
2022 Off Of Payroll Administration Accountant 63191.00000 6.319100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.319100e+04 6.319100e+04 0.00 NULL
2022 Off Of Payroll Administration Adm Manager-Non-Mgrl 84893.66667 7.640430e+05 1105.15 1.227944e+02 0.000 17.50 9 0.000000e+00 0.00 7.651482e+05 7.640430e+05 1105.15 NULL
2022 Off Of Payroll Administration Admin Contract Specialist 148592.00000 1.485920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.485920e+05 1.485920e+05 0.00 NULL
2022 Off Of Payroll Administration Administrative Accountant 104764.71429 7.333530e+05 65.18 9.311429e+00 0.000 0.00 7 0.000000e+00 0.00 7.334182e+05 7.333530e+05 65.18 NULL
2022 Off Of Payroll Administration Administrative Public Information Specialist 138732.00000 1.387320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.387320e+05 1.387320e+05 0.00 NULL
2022 Off Of Payroll Administration Administrative Staff Analyst 114505.00000 2.748120e+06 2441.76 1.017400e+02 0.000 0.00 24 0.000000e+00 0.00 2.750562e+06 2.748120e+06 2441.76 NULL
2022 Off Of Payroll Administration Associate Staff Analyst 85702.62500 6.856210e+05 143.95 1.799375e+01 0.000 2.50 8 0.000000e+00 0.00 6.857649e+05 6.856210e+05 143.95 NULL
2022 Off Of Payroll Administration Bookkeeper 56650.00000 5.665000e+04 144.11 1.441100e+02 144.110 4.25 1 1.441100e+02 144.11 5.679411e+04 5.679411e+04 0.00 NULL
2022 Off Of Payroll Administration Certified It Administrator 103169.00000 1.031690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.031690e+05 1.031690e+05 0.00 NULL
2022 Off Of Payroll Administration Certified It Developer 123537.00000 1.235370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.235370e+05 1.235370e+05 0.00 NULL
2022 Off Of Payroll Administration Clerical Associate 52009.76471 8.841660e+05 4779.87 2.811688e+02 0.000 119.00 17 0.000000e+00 0.00 8.889459e+05 8.841660e+05 4779.87 NULL
2022 Off Of Payroll Administration College Aide 3125.18750 6.250375e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.250375e+03 6.250375e+03 0.00 NULL
2022 Off Of Payroll Administration College Aide - Assignment Levels Ii And Iii 14060.75400 2.812151e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.812151e+04 2.812151e+04 0.00 NULL
2022 Off Of Payroll Administration Community Assistant 42191.00000 4.219100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.219100e+04 4.219100e+04 0.00 NULL
2022 Off Of Payroll Administration Community Associate 54210.25000 2.168410e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.168410e+05 2.168410e+05 0.00 NULL
2022 Off Of Payroll Administration Community Coordinator 77970.00000 2.339100e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.339100e+05 2.339100e+05 0.00 NULL
2022 Off Of Payroll Administration Computer Associate 81198.00000 4.059900e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.059900e+05 4.059900e+05 0.00 NULL
2022 Off Of Payroll Administration Computer Programmer Analyst 61864.00000 6.186400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.186400e+04 6.186400e+04 0.00 NULL
2022 Off Of Payroll Administration Computer Specialist 110159.92308 1.432079e+06 5049.13 3.883946e+02 0.000 66.25 13 0.000000e+00 0.00 1.437128e+06 1.432079e+06 5049.13 NULL
2022 Off Of Payroll Administration Computer Systems Manager 132972.93750 2.127567e+06 4507.71 2.817319e+02 0.000 56.25 16 0.000000e+00 0.00 2.132075e+06 2.127567e+06 4507.71 NULL
2022 Off Of Payroll Administration Custodian 61017.00000 6.101700e+04 5811.41 5.811410e+03 5811.410 131.50 1 5.811410e+03 5811.41 6.682841e+04 6.682841e+04 0.00 NULL
2022 Off Of Payroll Administration Customer Information Representative Ma L 1549 91597.75000 3.663910e+05 47.33 1.183250e+01 0.000 1.00 4 0.000000e+00 0.00 3.664383e+05 3.663910e+05 47.33 NULL
2022 Off Of Payroll Administration Executive Agency Counsel 180851.00000 1.808510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.808510e+05 1.808510e+05 0.00 NULL
2022 Off Of Payroll Administration Executive Director 238848.00000 2.388480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.388480e+05 2.388480e+05 0.00 NULL
2022 Off Of Payroll Administration Management Auditor 84611.00000 2.538330e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.538330e+05 2.538330e+05 0.00 NULL
2022 Off Of Payroll Administration New York City Public Service Fellow 46350.00000 4.635000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.635000e+04 4.635000e+04 0.00 NULL
2022 Off Of Payroll Administration Nycaps Process Analyst 102819.00000 2.056380e+05 493.71 2.468550e+02 246.855 0.00 2 2.468550e+02 493.71 2.061317e+05 2.061317e+05 0.00 NULL
2022 Off Of Payroll Administration Principal Administrative Associate - Non Supvr 74948.84211 1.424028e+06 3021.31 1.590163e+02 0.000 54.25 19 0.000000e+00 0.00 1.427049e+06 1.424028e+06 3021.31 NULL
2022 Off Of Payroll Administration Public Records Officer 50706.00000 5.070600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.070600e+04 5.070600e+04 0.00 NULL
2022 Off Of Payroll Administration Research Assistant 68741.00000 6.874100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.874100e+04 6.874100e+04 0.00 NULL
2022 Off Of Payroll Administration Staff Analyst 73469.57143 5.142870e+05 62.25 8.892857e+00 0.000 1.00 7 0.000000e+00 0.00 5.143492e+05 5.142870e+05 62.25 NULL
2022 Off Of Payroll Administration Supervisor Of Stock Workers 52750.00000 5.275000e+04 3118.20 3.118200e+03 3118.200 82.75 1 3.118200e+03 3118.20 5.586820e+04 5.586820e+04 0.00 NULL
2022 Off Of Payroll Administration Telecommunications Associate 69826.00000 6.982600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.982600e+04 6.982600e+04 0.00 NULL
2022 Office Of Collective Bargainin Administrative Staff Analyst 151575.00000 1.515750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.515750e+05 1.515750e+05 0.00 NULL
2022 Office Of Collective Bargainin College Aide 1229.10510 1.229105e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.229105e+03 1.229105e+03 0.00 NULL
2022 Office Of Collective Bargainin Community Associate 55323.00000 5.532300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.532300e+04 5.532300e+04 0.00 NULL
2022 Office Of Collective Bargainin Computer Systems Manager 110149.00000 1.101490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.101490e+05 1.101490e+05 0.00 NULL
2022 Office Of Collective Bargainin Deputy Director 197965.50000 3.959310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.959310e+05 3.959310e+05 0.00 NULL
2022 Office Of Collective Bargainin Director Of Information And Research 161719.00000 1.617190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.617190e+05 1.617190e+05 0.00 NULL
2022 Office Of Collective Bargainin Director Of The Office Of Collective Bargaining 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2022 Office Of Collective Bargainin Executive Assistant To The Director 93000.00000 9.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.300000e+04 9.300000e+04 0.00 NULL
2022 Office Of Collective Bargainin Labor Relations Trial Examiner 127584.83333 7.655090e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.655090e+05 7.655090e+05 0.00 NULL
2022 Office Of Collective Bargainin Secretary To The Deputy Chair 60752.00000 6.075200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.075200e+04 6.075200e+04 0.00 NULL
2022 Office Of Collective Bargainin Secy To The Director Of Collective Bargaining 85190.00000 8.519000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.519000e+04 8.519000e+04 0.00 NULL
2022 Office Of Collective Bargainin Staff Analyst 77251.00000 7.725100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.725100e+04 7.725100e+04 0.00 NULL
2022 Office Of Emergency Management Administrative Public Information Specialist 124221.00000 1.242210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.242210e+05 1.242210e+05 0.00 NULL
2022 Office Of Emergency Management Agency Attorney 88884.50000 1.777690e+05 21366.92 1.068346e+04 10683.460 335.25 2 1.068346e+04 21366.92 1.991359e+05 1.991359e+05 0.00 NULL
2022 Office Of Emergency Management Certified It Administrator 146852.00000 1.468520e+05 5276.07 5.276070e+03 5276.070 59.50 1 5.276070e+03 5276.07 1.521281e+05 1.521281e+05 0.00 NULL
2022 Office Of Emergency Management Commissioner Of Emergency Management 243171.00000 7.295130e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.295130e+05 7.295130e+05 0.00 NULL
2022 Office Of Emergency Management Community Associate 51517.00000 5.151700e+04 4610.50 4.610500e+03 4610.500 137.50 1 4.610500e+03 4610.50 5.612750e+04 5.612750e+04 0.00 NULL
2022 Office Of Emergency Management Community Coordinator 76000.00000 7.600000e+04 10340.61 1.034061e+04 10340.610 211.00 1 1.034061e+04 10340.61 8.634061e+04 8.634061e+04 0.00 NULL
2022 Office Of Emergency Management Emergency Preparedness Manager 118330.46092 1.029475e+07 48704.80 5.598253e+02 0.000 908.00 87 0.000000e+00 0.00 1.034345e+07 1.029475e+07 48704.80 NULL
2022 Office Of Emergency Management Emergency Preparedness Specialist 73519.99589 1.095448e+07 895575.25 6.010572e+03 3467.190 17519.00 149 3.467190e+03 516611.31 1.185005e+07 1.147109e+07 378963.94 NULL
2022 Office Of Emergency Management Executive Agency Counsel 148874.33333 4.466230e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.466230e+05 4.466230e+05 0.00 NULL
2022 Office Of Emergency Management First Deputy Commissioner 230000.00000 2.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.300000e+05 2.300000e+05 0.00 NULL
2022 Office Of Labor Relations Accountant 78322.66667 2.349680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.349680e+05 2.349680e+05 0.00 NULL
2022 Office Of Labor Relations Adm Manager-Non-Mgrl 109454.50000 2.189090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.189090e+05 2.189090e+05 0.00 NULL
2022 Office Of Labor Relations Admin Community Relations Specialist 68203.00000 6.820300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.820300e+04 6.820300e+04 0.00 NULL
2022 Office Of Labor Relations Administrative Labor Relations Analyst 127152.16667 7.629130e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.629130e+05 7.629130e+05 0.00 NULL
2022 Office Of Labor Relations Administrative Manager 109538.25000 4.381530e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.381530e+05 4.381530e+05 0.00 NULL
2022 Office Of Labor Relations Administrative Staff Analyst 119554.20000 2.391084e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.391084e+05 2.391084e+05 0.00 NULL
2022 Office Of Labor Relations Agency Attorney 94986.00000 1.899720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.899720e+05 1.899720e+05 0.00 NULL
2022 Office Of Labor Relations Assistant Commissioner Of Labor Relations 170031.70000 1.360254e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.360254e+06 1.360254e+06 0.00 NULL
2022 Office Of Labor Relations Associate Counsel 179567.30000 1.795673e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.795673e+05 1.795673e+05 0.00 NULL
2022 Office Of Labor Relations Associate Labor Relations Analyst 101042.26667 3.031268e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.031268e+05 3.031268e+05 0.00 NULL
2022 Office Of Labor Relations Associate Staff Analyst 81203.00000 3.248120e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.248120e+05 3.248120e+05 0.00 NULL
2022 Office Of Labor Relations Bookkeeper 53705.00000 5.370500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.370500e+04 5.370500e+04 0.00 NULL
2022 Office Of Labor Relations Certified It Administrator 114798.50000 2.295970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.295970e+05 2.295970e+05 0.00 NULL
2022 Office Of Labor Relations City Research Scientist 88546.13333 1.328192e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.328192e+06 1.328192e+06 0.00 NULL
2022 Office Of Labor Relations Clerical Associate 46189.00292 2.771340e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.771340e+05 2.771340e+05 0.00 NULL
2022 Office Of Labor Relations Commissioner Of Labor Relations 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2022 Office Of Labor Relations Community Assistant 34534.02529 9.669527e+05 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 9.669527e+05 9.669527e+05 0.00 NULL
2022 Office Of Labor Relations Community Associate 45361.84615 1.179408e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 1.179408e+06 1.179408e+06 0.00 NULL
2022 Office Of Labor Relations Community Coordinator 67588.50000 1.622124e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 1.622124e+06 1.622124e+06 0.00 NULL
2022 Office Of Labor Relations Computer Specialist 103813.00000 2.076260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.076260e+05 2.076260e+05 0.00 NULL
2022 Office Of Labor Relations Computer Systems Manager 167270.00000 1.672700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.672700e+05 1.672700e+05 0.00 NULL
2022 Office Of Labor Relations Counsel 210000.00000 2.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.100000e+05 2.100000e+05 0.00 NULL
2022 Office Of Labor Relations Customer Information Representative Ma L 1549 48966.00000 4.896600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.896600e+04 4.896600e+04 0.00 NULL
2022 Office Of Labor Relations Deputy Assistant Counsel 87252.28571 6.107660e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.107660e+05 6.107660e+05 0.00 NULL
2022 Office Of Labor Relations Deputy Commissioner Of Labor Relations 231863.00000 6.955890e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.955890e+05 6.955890e+05 0.00 NULL
2022 Office Of Labor Relations Director 142826.50000 2.856530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.856530e+05 2.856530e+05 0.00 NULL
2022 Office Of Labor Relations Employee Assistance Program Specialist 65086.00000 3.254300e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.254300e+05 3.254300e+05 0.00 NULL
2022 Office Of Labor Relations Employee Health Benefits Program Director 218802.00000 2.188020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.188020e+05 2.188020e+05 0.00 NULL
2022 Office Of Labor Relations Executive Agency Counsel 169000.00000 3.380000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.380000e+05 3.380000e+05 0.00 NULL
2022 Office Of Labor Relations Health Services Manager 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2022 Office Of Labor Relations Insurance Advisor 59266.25000 2.370650e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.370650e+05 2.370650e+05 0.00 NULL
2022 Office Of Labor Relations Labor Relations Analyst 63471.33333 3.808280e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.808280e+05 3.808280e+05 0.00 NULL
2022 Office Of Labor Relations Principal Administrative Associate - Non Supvr 65582.23474 9.181513e+05 171.34 1.223857e+01 0.000 6.50 14 0.000000e+00 0.00 9.183226e+05 9.181513e+05 171.34 NULL
2022 Office Of Labor Relations Secretary 43390.00000 8.678000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.678000e+04 8.678000e+04 0.00 NULL
2022 Office Of Labor Relations Secretary To The Commissioner Of Labor Relations 91311.00000 9.131100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.131100e+04 9.131100e+04 0.00 NULL
2022 Office Of Labor Relations Staff Analyst 68332.00000 1.366640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.366640e+05 1.366640e+05 0.00 NULL
2022 Office Of Labor Relations Supervisor Of Office Machine Operations 63692.00000 6.369200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.369200e+04 6.369200e+04 0.00 NULL
2022 Office Of Labor Relations Telecommunications Associate 84362.00000 8.436200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.436200e+04 8.436200e+04 0.00 NULL
2022 Office Of Labor Relations Tests And Measurement Specialist 90776.00000 9.077600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.077600e+04 9.077600e+04 0.00 NULL
2022 Office Of Management & Budget Administrative Manager 182304.00000 1.823040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.823040e+05 1.823040e+05 0.00 NULL
2022 Office Of Management & Budget Administrative Staff Analyst 155764.60000 7.788230e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.788230e+05 7.788230e+05 0.00 NULL
2022 Office Of Management & Budget Budget Analyst 96164.10103 4.635110e+07 298916.37 6.201584e+02 0.000 6539.75 482 0.000000e+00 0.00 4.665001e+07 4.635110e+07 298916.37 NULL
2022 Office Of Management & Budget College Aide 13476.09375 2.695219e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.695219e+04 2.695219e+04 0.00 NULL
2022 Office Of Management & Budget Community Associate 46200.00000 4.620000e+04 2592.85 2.592850e+03 2592.850 86.75 1 2.592850e+03 2592.85 4.879285e+04 4.879285e+04 0.00 NULL
2022 Office Of Management & Budget Computer Specialist 82234.00000 8.223400e+04 71.44 7.144000e+01 71.440 1.50 1 7.144000e+01 71.44 8.230544e+04 8.230544e+04 0.00 NULL
2022 Office Of Management & Budget Computer Systems Manager 174351.75000 6.974070e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.974070e+05 6.974070e+05 0.00 NULL
2022 Office Of Management & Budget Deputy General Counsel 185341.00000 1.853410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.853410e+05 1.853410e+05 0.00 NULL
2022 Office Of Management & Budget Director Of Financing Policy Coordination 222924.00000 2.229240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.229240e+05 2.229240e+05 0.00 NULL
2022 Office Of Management & Budget Director Of Management & Budget 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2022 Office Of Management & Budget Executive Agency Counsel 222924.00000 2.229240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.229240e+05 2.229240e+05 0.00 NULL
2022 Office Of Management & Budget Statistical Secretary 69913.18182 7.690450e+05 475.49 4.322636e+01 0.000 10.50 11 0.000000e+00 0.00 7.695205e+05 7.690450e+05 475.49 NULL
2022 Office Of Management & Budget Summer College Intern 1317.75000 1.581300e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.581300e+04 1.581300e+04 0.00 NULL
2022 Office Of Management & Budget Summer Graduate Intern 2045.25000 1.227150e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.227150e+04 1.227150e+04 0.00 NULL
2022 Office Of Management & Budget Supervisor Of Office Machine Operations 53690.00000 5.369000e+04 10645.27 1.064527e+04 10645.270 280.50 1 1.064527e+04 10645.27 6.433527e+04 6.433527e+04 0.00 NULL
2022 Office Of The Actuary Actuarial Specialist Level I 74692.45455 1.643234e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 1.643234e+06 1.643234e+06 0.00 NULL
2022 Office Of The Actuary Actuarial Specialist Level Ii, Oj 116456.00000 2.329120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.329120e+05 2.329120e+05 0.00 NULL
2022 Office Of The Actuary Administrative Actuary 178427.63636 1.962704e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.962704e+06 1.962704e+06 0.00 NULL
2022 Office Of The Actuary Administrative Public Information Specialist 105875.00000 1.058750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.058750e+05 1.058750e+05 0.00 NULL
2022 Office Of The Actuary Administrative Staff Analyst 111536.50000 2.230730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.230730e+05 2.230730e+05 0.00 NULL
2022 Office Of The Actuary Certified It Administrator 94702.00000 9.470200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.470200e+04 9.470200e+04 0.00 NULL
2022 Office Of The Actuary Chief Actuary 311885.00000 3.118850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.118850e+05 3.118850e+05 0.00 NULL
2022 Office Of The Actuary Community Associate 54000.00000 5.400000e+04 3172.87 3.172870e+03 3172.870 97.75 1 3.172870e+03 3172.87 5.717287e+04 5.717287e+04 0.00 NULL
2022 Office Of The Actuary Computer Systems Manager 188591.00000 1.885910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.885910e+05 1.885910e+05 0.00 NULL
2022 Office Of The Actuary Executive Agency Counsel 163625.00000 3.272500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.272500e+05 3.272500e+05 0.00 NULL
2022 Office Of The Actuary Procurement Analyst 58627.00000 5.862700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.862700e+04 5.862700e+04 0.00 NULL
2022 Office Of The Actuary Secretary 61839.00000 6.183900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.183900e+04 6.183900e+04 0.00 NULL
2022 Office Of The Actuary Secretary To The Chief Actuary 57764.00000 5.776400e+04 53.70 5.370000e+01 53.700 1.75 1 5.370000e+01 53.70 5.781770e+04 5.781770e+04 0.00 NULL
2022 Office Of The Comptroller Accountant 66270.85484 4.108793e+06 44125.38 7.116997e+02 0.000 795.50 62 0.000000e+00 0.00 4.152918e+06 4.108793e+06 44125.38 NULL
2022 Office Of The Comptroller Adm Manager-Non-Mgrl 81960.42105 1.557248e+06 4084.36 2.149663e+02 0.000 82.75 19 0.000000e+00 0.00 1.561332e+06 1.557248e+06 4084.36 NULL
2022 Office Of The Comptroller Admin Community Relations Specialist 85285.40000 4.264270e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.264270e+05 4.264270e+05 0.00 NULL
2022 Office Of The Comptroller Administrative Accountant 127977.65000 2.559553e+06 512.12 2.560600e+01 0.000 7.75 20 0.000000e+00 0.00 2.560065e+06 2.559553e+06 512.12 NULL
2022 Office Of The Comptroller Administrative Assistant To The Comptroller 129788.83333 7.787330e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.787330e+05 7.787330e+05 0.00 NULL
2022 Office Of The Comptroller Administrative Business Promotion Coordinator 109444.55000 1.094446e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.094446e+06 1.094446e+06 0.00 NULL
2022 Office Of The Comptroller Administrative City Planner 139460.77778 1.255147e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.255147e+06 1.255147e+06 0.00 NULL
2022 Office Of The Comptroller Administrative Claim Examiner 89851.64516 2.785401e+06 1488.56 4.801806e+01 0.000 31.00 31 0.000000e+00 0.00 2.786890e+06 2.785401e+06 1488.56 NULL
2022 Office Of The Comptroller Administrative Construction Project Manager 115625.00000 3.468750e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.468750e+05 3.468750e+05 0.00 NULL
2022 Office Of The Comptroller Administrative Engineer 121716.80000 2.434336e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 2.434336e+06 2.434336e+06 0.00 NULL
2022 Office Of The Comptroller Administrative Graphic Artist 93996.00000 9.399600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.399600e+04 9.399600e+04 0.00 NULL
2022 Office Of The Comptroller Administrative Labor Relations Analyst 145510.61538 1.891638e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.891638e+06 1.891638e+06 0.00 NULL
2022 Office Of The Comptroller Administrative Management Auditor 128162.62500 2.050602e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.050602e+06 2.050602e+06 0.00 NULL
2022 Office Of The Comptroller Administrative Manager 135574.00000 1.355740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.355740e+05 1.355740e+05 0.00 NULL
2022 Office Of The Comptroller Administrative Procurement Analyst 150431.00000 6.017240e+05 10193.77 2.548443e+03 0.000 135.50 4 0.000000e+00 0.00 6.119178e+05 6.017240e+05 10193.77 NULL
2022 Office Of The Comptroller Administrative Procurement Analyst-Non-Mgrl 88086.16667 5.285170e+05 29879.47 4.979912e+03 1248.395 422.75 6 1.248395e+03 7490.37 5.583965e+05 5.360074e+05 22389.10 NULL
2022 Office Of The Comptroller Administrative Project Manager 112446.50000 8.995720e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.995720e+05 8.995720e+05 0.00 NULL
2022 Office Of The Comptroller Administrative Public Information Specialist 95387.50000 3.815500e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.815500e+05 3.815500e+05 0.00 NULL
2022 Office Of The Comptroller Administrative Public Information Specialist Nm Former M1/M2 86402.50000 3.456100e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.456100e+05 3.456100e+05 0.00 NULL
2022 Office Of The Comptroller Administrative Public Records Officer 153458.50000 3.069170e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.069170e+05 3.069170e+05 0.00 NULL
2022 Office Of The Comptroller Administrative Staff Analyst 126036.46154 3.276948e+06 147.32 5.666154e+00 0.000 0.00 26 0.000000e+00 0.00 3.277095e+06 3.276948e+06 147.32 NULL
2022 Office Of The Comptroller Administrative Supervisor Of Building Maintenance 86096.50000 1.721930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.721930e+05 1.721930e+05 0.00 NULL
2022 Office Of The Comptroller Agency Attorney 82490.33333 9.898840e+05 41.05 3.420833e+00 0.000 1.00 12 0.000000e+00 0.00 9.899251e+05 9.898840e+05 41.05 NULL
2022 Office Of The Comptroller Agency Chief Contracting Officer 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2022 Office Of The Comptroller Architect 102052.00000 1.020520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020520e+05 1.020520e+05 0.00 NULL
2022 Office Of The Comptroller Assistant Budget Analyst 34622.90293 1.765768e+06 156.59 3.070392e+00 0.000 3.50 51 0.000000e+00 0.00 1.765925e+06 1.765768e+06 156.59 NULL
2022 Office Of The Comptroller Assistant Mechanical Engineer 61880.00000 1.856400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.856400e+05 1.856400e+05 0.00 NULL
2022 Office Of The Comptroller Assistant To Deputy Comptroller 119150.00000 4.766000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.766000e+05 4.766000e+05 0.00 NULL
2022 Office Of The Comptroller Assistant To The Comptroller 189983.33333 5.699500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.699500e+05 5.699500e+05 0.00 NULL
2022 Office Of The Comptroller Associate Fraud Investigator 79389.00000 7.938900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.938900e+04 7.938900e+04 0.00 NULL
2022 Office Of The Comptroller Associate Investigator 68400.00000 1.368000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.368000e+05 1.368000e+05 0.00 NULL
2022 Office Of The Comptroller Associate Project Manager 105667.25000 4.226690e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.226690e+05 4.226690e+05 0.00 NULL
2022 Office Of The Comptroller Associate Staff Analyst 87731.00000 6.141170e+05 794.29 1.134700e+02 0.000 13.25 7 0.000000e+00 0.00 6.149113e+05 6.141170e+05 794.29 NULL
2022 Office Of The Comptroller Bookkeeper 56827.14286 3.977900e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.977900e+05 3.977900e+05 0.00 NULL
2022 Office Of The Comptroller Budget Analyst 92564.37500 7.405150e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.405150e+05 7.405150e+05 0.00 NULL
2022 Office Of The Comptroller Business Promotion Coordinator 69923.80000 6.992380e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 6.992380e+05 6.992380e+05 0.00 NULL
2022 Office Of The Comptroller Certified It Administrator 119883.00000 1.198830e+05 6054.79 6.054790e+03 6054.790 79.50 1 6.054790e+03 6054.79 1.259378e+05 1.259378e+05 0.00 NULL
2022 Office Of The Comptroller Certified It Developer 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2022 Office Of The Comptroller City Custodial Assistant 27447.81103 2.744781e+05 39064.51 3.906451e+03 3178.495 1371.00 10 3.178495e+03 31784.95 3.135426e+05 3.062631e+05 7279.56 NULL
2022 Office Of The Comptroller Civil Engineer 111721.00000 1.117210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.117210e+05 1.117210e+05 0.00 NULL
2022 Office Of The Comptroller Claim Specialist 63343.73529 2.153687e+06 10186.92 2.996153e+02 0.000 233.25 34 0.000000e+00 0.00 2.163874e+06 2.153687e+06 10186.92 NULL
2022 Office Of The Comptroller Clerical Associate 49584.92000 1.239623e+06 7198.18 2.879272e+02 0.000 177.00 25 0.000000e+00 0.00 1.246821e+06 1.239623e+06 7198.18 NULL
2022 Office Of The Comptroller College Aide 2965.20000 5.930400e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.930400e+03 5.930400e+03 0.00 NULL
2022 Office Of The Comptroller Community Assistant 39480.00000 7.896000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.896000e+04 7.896000e+04 0.00 NULL
2022 Office Of The Comptroller Community Associate 50090.10000 5.009010e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.009010e+05 5.009010e+05 0.00 NULL
2022 Office Of The Comptroller Community Coordinator 70497.14286 1.480440e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.480440e+06 1.480440e+06 0.00 NULL
2022 Office Of The Comptroller Community Service Aide 33764.00000 3.376400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.376400e+04 3.376400e+04 0.00 NULL
2022 Office Of The Comptroller Comptroller 209050.00000 4.181000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.181000e+05 4.181000e+05 0.00 NULL
2022 Office Of The Comptroller Computer Associate 71960.88235 1.223335e+06 19637.16 1.155127e+03 0.000 356.72 17 0.000000e+00 0.00 1.242972e+06 1.223335e+06 19637.16 NULL
2022 Office Of The Comptroller Computer Operations Manager 130984.71429 9.168930e+05 3878.69 5.540986e+02 0.000 73.75 7 0.000000e+00 0.00 9.207717e+05 9.168930e+05 3878.69 NULL
2022 Office Of The Comptroller Computer Service Technician 54756.60000 2.737830e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.737830e+05 2.737830e+05 0.00 NULL
2022 Office Of The Comptroller Computer Specialist 98323.55556 8.849120e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.849120e+05 8.849120e+05 0.00 NULL
2022 Office Of The Comptroller Computer Systems Manager 122338.13333 1.835072e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.835072e+06 1.835072e+06 0.00 NULL
2022 Office Of The Comptroller Confidential Assistant To The Comptroller 77500.00000 1.550000e+05 307.88 1.539400e+02 153.940 7.50 2 1.539400e+02 307.88 1.553079e+05 1.553079e+05 0.00 NULL
2022 Office Of The Comptroller Confidential Strategy Planner 86136.42857 6.029550e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.029550e+05 6.029550e+05 0.00 NULL
2022 Office Of The Comptroller Construction Project Manager 105713.00000 1.057130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.057130e+05 1.057130e+05 0.00 NULL
2022 Office Of The Comptroller Contract Specialist 57103.28571 3.997230e+05 4966.49 7.094986e+02 413.400 169.00 7 4.134000e+02 2893.80 4.046895e+05 4.026168e+05 2072.69 NULL
2022 Office Of The Comptroller Custodian 61236.00000 1.224720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.224720e+05 1.224720e+05 0.00 NULL
2022 Office Of The Comptroller Cyber Security Analyst 70000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2022 Office Of The Comptroller Director Of Investments 248008.50000 9.920340e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 9.920340e+05 9.920340e+05 0.00 NULL
2022 Office Of The Comptroller Director Of Audits 219621.50000 4.392430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.392430e+05 4.392430e+05 0.00 NULL
2022 Office Of The Comptroller Director Of Budget Studies & Economic Research 167272.00000 1.672720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.672720e+05 1.672720e+05 0.00 NULL
2022 Office Of The Comptroller Economist 66012.50000 5.281000e+05 753.60 9.420000e+01 0.000 17.75 8 0.000000e+00 0.00 5.288536e+05 5.281000e+05 753.60 NULL
2022 Office Of The Comptroller Engineering Technician 63860.00000 6.386000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.386000e+04 6.386000e+04 0.00 NULL
2022 Office Of The Comptroller Executive Agency Counsel 150819.83784 5.580334e+06 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 5.580334e+06 5.580334e+06 0.00 NULL
2022 Office Of The Comptroller Executive Assistant To The Comptroller 168765.50000 3.375310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.375310e+05 3.375310e+05 0.00 NULL
2022 Office Of The Comptroller Executive Program Specialist 96682.00000 9.668200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.668200e+04 9.668200e+04 0.00 NULL
2022 Office Of The Comptroller First Deputy Comptroller 233908.00000 4.678160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.678160e+05 4.678160e+05 0.00 NULL
2022 Office Of The Comptroller Fraud Investigator 76232.66667 2.286980e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.286980e+05 2.286980e+05 0.00 NULL
2022 Office Of The Comptroller Investigator 63860.00000 6.386000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.386000e+04 6.386000e+04 0.00 NULL
2022 Office Of The Comptroller Investment Analyst 76406.15385 1.986560e+06 31.53 1.212692e+00 0.000 1.00 26 0.000000e+00 0.00 1.986592e+06 1.986560e+06 31.53 NULL
2022 Office Of The Comptroller Investment Manager 182640.59375 5.844499e+06 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 5.844499e+06 5.844499e+06 0.00 NULL
2022 Office Of The Comptroller Legal Secretarial Assistant 67128.86667 1.006933e+06 1758.44 1.172293e+02 0.000 37.75 15 0.000000e+00 0.00 1.008691e+06 1.006933e+06 1758.44 NULL
2022 Office Of The Comptroller Management Auditor 77338.20191 6.264394e+06 27286.76 3.368736e+02 0.000 430.50 81 0.000000e+00 0.00 6.291681e+06 6.264394e+06 27286.76 NULL
2022 Office Of The Comptroller Management Auditor Trainee 50538.50000 2.021540e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.021540e+05 2.021540e+05 0.00 NULL
2022 Office Of The Comptroller Mechanical Engineer 90236.00000 9.023600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.023600e+04 9.023600e+04 0.00 NULL
2022 Office Of The Comptroller Office Machine Aide 32815.27017 9.844581e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.844581e+04 9.844581e+04 0.00 NULL
2022 Office Of The Comptroller Pension Investment Advisor 350000.00000 3.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.500000e+05 3.500000e+05 0.00 NULL
2022 Office Of The Comptroller Principal Administrative Associate - Non Supvr 65682.12256 1.642053e+06 15921.03 6.368412e+02 0.000 340.75 25 0.000000e+00 0.00 1.657974e+06 1.642053e+06 15921.03 NULL
2022 Office Of The Comptroller Principal Investment Officer 214848.00000 2.148480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.148480e+05 2.148480e+05 0.00 NULL
2022 Office Of The Comptroller Procurement Analyst 65821.11111 5.923900e+05 22225.02 2.469447e+03 110.880 407.50 9 1.108800e+02 997.92 6.146150e+05 5.933879e+05 21227.10 NULL
2022 Office Of The Comptroller Public Records Aide 16113.42780 1.611343e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.611343e+04 1.611343e+04 0.00 NULL
2022 Office Of The Comptroller Research And Liaison Coordinator 126781.27778 2.282063e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.282063e+06 2.282063e+06 0.00 NULL
2022 Office Of The Comptroller Research Assistant 52242.00000 5.224200e+04 116.36 1.163600e+02 116.360 4.00 1 1.163600e+02 116.36 5.235836e+04 5.235836e+04 0.00 NULL
2022 Office Of The Comptroller Second Deputy Comptroller 240000.00000 2.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.400000e+05 2.400000e+05 0.00 NULL
2022 Office Of The Comptroller Secretary 45753.00000 2.287650e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.287650e+05 2.287650e+05 0.00 NULL
2022 Office Of The Comptroller Secretary To The Comptroller 53878.00000 5.387800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.387800e+04 5.387800e+04 0.00 NULL
2022 Office Of The Comptroller Special Deputy Comptroller 214924.00000 4.298480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.298480e+05 4.298480e+05 0.00 NULL
2022 Office Of The Comptroller Staff Analyst 65135.26316 1.237570e+06 6722.97 3.538405e+02 5.450 159.00 19 5.450000e+00 103.55 1.244293e+06 1.237674e+06 6619.42 NULL
2022 Office Of The Comptroller Staff Analyst Trainee 48205.60000 2.410280e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.410280e+05 2.410280e+05 0.00 NULL
2022 Office Of The Comptroller Strategic Initiative Specialist 124181.50000 7.450890e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.450890e+05 7.450890e+05 0.00 NULL
2022 Office Of The Comptroller Summer College Intern 1639.52802 7.049971e+04 0.00 0.000000e+00 0.000 0.00 43 0.000000e+00 0.00 7.049971e+04 7.049971e+04 0.00 NULL
2022 Office Of The Comptroller Summer Graduate Intern 2960.73646 7.105768e+04 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 7.105768e+04 7.105768e+04 0.00 NULL
2022 Office Of The Comptroller Supervising Computer Service Technician 91589.00000 9.158900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.158900e+04 9.158900e+04 0.00 NULL
2022 Office Of The Comptroller Supervisor Of Motor Transport 59491.00000 5.949100e+04 2136.91 2.136910e+03 2136.910 50.00 1 2.136910e+03 2136.91 6.162791e+04 6.162791e+04 0.00 NULL
2022 Office Of The Comptroller Supervisor Of Stock Workers 44069.00000 4.406900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.406900e+04 4.406900e+04 0.00 NULL
2022 Office Of The Comptroller Telecommunications Associate 92645.00000 9.264500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.264500e+04 9.264500e+04 0.00 NULL
2022 Office Of The Comptroller Third Deputy Comptroller 225000.00000 2.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.250000e+05 2.250000e+05 0.00 NULL
2022 Office Of The Mayor Administrative Assistant To The Mayor 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2022 Office Of The Mayor Assistant Legislative Representative 134472.33333 1.613668e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.613668e+06 1.613668e+06 0.00 NULL
2022 Office Of The Mayor Assistant To The Deputy Mayor 168536.15385 2.190970e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 2.190970e+06 2.190970e+06 0.00 NULL
2022 Office Of The Mayor Assistant To The Mayor 196684.66667 5.900540e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.900540e+05 5.900540e+05 0.00 NULL
2022 Office Of The Mayor Asst Dir Of Intergvnmental Reltns For The Albany Office 190998.00000 3.819960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.819960e+05 3.819960e+05 0.00 NULL
2022 Office Of The Mayor Asst Director Of Intergovermental Rel For City Legist Affs 211150.00000 2.111500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.111500e+05 2.111500e+05 0.00 NULL
2022 Office Of The Mayor Chief Of Staff - Mayor’s Office 251982.00000 2.519820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.519820e+05 2.519820e+05 0.00 NULL
2022 Office Of The Mayor Chief Service Officer 180250.00000 1.802500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.802500e+05 1.802500e+05 0.00 NULL
2022 Office Of The Mayor Clerical Associate 47888.00000 4.788800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.788800e+04 4.788800e+04 0.00 NULL
2022 Office Of The Mayor College Aide 2614.20387 1.097966e+05 0.00 0.000000e+00 0.000 0.00 42 0.000000e+00 0.00 1.097966e+05 1.097966e+05 0.00 NULL
2022 Office Of The Mayor Commiss Of The Off To End Domest And Gend Ba Viol 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2022 Office Of The Mayor Commissioner, Un & Consular Corps Diplomatic Relations 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2022 Office Of The Mayor Counsel To The Mayor 239884.00000 4.797680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.797680e+05 4.797680e+05 0.00 NULL
2022 Office Of The Mayor Deputy Mayor 251982.00000 2.519820e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 2.519820e+06 2.519820e+06 0.00 NULL
2022 Office Of The Mayor Director 148000.00000 1.480000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.480000e+05 1.480000e+05 0.00 NULL
2022 Office Of The Mayor Director Of Community Assistance Unit 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2022 Office Of The Mayor Director Of Criminal Justice 227786.00000 4.555720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.555720e+05 4.555720e+05 0.00 NULL
2022 Office Of The Mayor Director Of Immigrant Affairs 227524.00000 6.825720e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.825720e+05 6.825720e+05 0.00 NULL
2022 Office Of The Mayor Director Of Intergovernmental Relations 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2022 Office Of The Mayor Director Of Office For People With Disabilities 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2022 Office Of The Mayor Director, Office Of Operations 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2022 Office Of The Mayor Executive Administrator Of Gracie Mansion 237033.00000 2.370330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.370330e+05 2.370330e+05 0.00 NULL
2022 Office Of The Mayor Executive Agency Counsel 155044.06667 4.651322e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 4.651322e+06 4.651322e+06 0.00 NULL
2022 Office Of The Mayor Executive Assistant-Midtown Enforcement 87789.00000 8.778900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.778900e+04 8.778900e+04 0.00 NULL
2022 Office Of The Mayor Executive Cook 120271.50000 2.405430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.405430e+05 2.405430e+05 0.00 NULL
2022 Office Of The Mayor Executive Director On Commission On Gender Equality 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2022 Office Of The Mayor Executive Secretary 110040.00000 1.100400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100400e+05 1.100400e+05 0.00 NULL
2022 Office Of The Mayor First Deputy Mayor 283069.50000 5.661390e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.661390e+05 5.661390e+05 0.00 NULL
2022 Office Of The Mayor High School Student Aide 1372.50000 2.745000e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.745000e+03 2.745000e+03 0.00 NULL
2022 Office Of The Mayor Mayor 258750.00000 5.175000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.175000e+05 5.175000e+05 0.00 NULL
2022 Office Of The Mayor Mayoral Office Assistant 52259.96296 1.411019e+06 18909.02 7.003341e+02 24.630 685.42 27 2.463000e+01 665.01 1.429928e+06 1.411684e+06 18244.01 NULL
2022 Office Of The Mayor Mayoral Program Coordinator 77543.61429 5.428053e+05 4001.60 5.716571e+02 0.000 82.00 7 0.000000e+00 0.00 5.468069e+05 5.428053e+05 4001.60 NULL
2022 Office Of The Mayor Press Officer 144252.72727 1.586780e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.586780e+06 1.586780e+06 0.00 NULL
2022 Office Of The Mayor Project Planner 84643.00000 8.464300e+04 231.64 2.316400e+02 231.640 5.00 1 2.316400e+02 231.64 8.487464e+04 8.487464e+04 0.00 NULL
2022 Office Of The Mayor Research Projects Coord 113574.28571 1.749044e+07 11426.51 7.419812e+01 0.000 330.25 154 0.000000e+00 0.00 1.750187e+07 1.749044e+07 11426.51 NULL
2022 Office Of The Mayor Research Projects Coordinator 65597.14286 9.183600e+05 8161.52 5.829657e+02 164.905 280.50 14 1.649050e+02 2308.67 9.265215e+05 9.206687e+05 5852.85 NULL
2022 Office Of The Mayor Secretary 74133.92000 7.413392e+05 14871.44 1.487144e+03 0.000 329.75 10 0.000000e+00 0.00 7.562106e+05 7.413392e+05 14871.44 NULL
2022 Office Of The Mayor Senior Advisor To The Mayor 238960.00000 2.389600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.389600e+05 2.389600e+05 0.00 NULL
2022 Office Of The Mayor Senior Policy Advisor To The Mayor 251982.00000 2.519820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.519820e+05 2.519820e+05 0.00 NULL
2022 Office Of The Mayor Senior Project Planner 111200.00000 3.336000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.336000e+05 3.336000e+05 0.00 NULL
2022 Office Of The Mayor Senior Service Inspector 62696.00000 6.269600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.269600e+04 6.269600e+04 0.00 NULL
2022 Office Of The Mayor Service Inspector 45120.80000 2.256040e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.256040e+05 2.256040e+05 0.00 NULL
2022 Office Of The Mayor Special Assistant 113820.29556 3.585339e+07 0.00 0.000000e+00 0.000 0.00 315 0.000000e+00 0.00 3.585339e+07 3.585339e+07 0.00 NULL
2022 Office Of The Mayor Sr Project Planner 107241.50000 2.144830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.144830e+05 2.144830e+05 0.00 NULL
2022 Office Of The Mayor Staff Assistant 61805.53333 9.270830e+05 7277.11 4.851407e+02 161.200 243.50 15 1.612000e+02 2418.00 9.343601e+05 9.295010e+05 4859.11 NULL
2022 Office Of The Mayor Summer College Intern 1149.15937 2.298319e+04 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 2.298319e+04 2.298319e+04 0.00 NULL
2022 Office Of The Mayor Summer Graduate Intern 2017.33333 1.815600e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.815600e+04 1.815600e+04 0.00 NULL
2022 Personnel Monitors Monitor 7214.77273 9.523500e+05 0.00 0.000000e+00 0.000 0.00 132 0.000000e+00 0.00 9.523500e+05 9.523500e+05 0.00 NULL
2022 Police Department *Agency Attorney 124126.33333 3.723790e+05 34308.46 1.143615e+04 14472.970 427.50 3 1.143615e+04 34308.46 4.066875e+05 4.066875e+05 0.00 NULL
2022 Police Department *Assistant Advocate-Pd 105694.00000 1.056940e+05 72.31 7.231000e+01 72.310 1.25 1 7.231000e+01 72.31 1.057663e+05 1.057663e+05 0.00 NULL
2022 Police Department *Attorney At Law 108572.50000 2.171450e+05 6633.73 3.316865e+03 3316.865 69.25 2 3.316865e+03 6633.73 2.237787e+05 2.237787e+05 0.00 NULL
2022 Police Department *Certified Local Area Network Administrator 111324.00000 1.113240e+05 18733.58 1.873358e+04 18733.580 219.50 1 1.873358e+04 18733.58 1.300576e+05 1.300576e+05 0.00 NULL
2022 Police Department *Custodial Assistant 38738.33333 1.162150e+05 572.11 1.907033e+02 0.000 17.00 3 0.000000e+00 0.00 1.167871e+05 1.162150e+05 572.11 NULL
2022 Police Department Accountant 64548.34783 1.484612e+06 44606.33 1.939406e+03 32.910 1119.25 23 3.291000e+01 756.93 1.529218e+06 1.485369e+06 43849.40 NULL
2022 Police Department Adm Manager-Non-Mgrl 91584.90000 3.663396e+06 100371.11 2.509278e+03 0.000 1598.50 40 0.000000e+00 0.00 3.763767e+06 3.663396e+06 100371.11 NULL
2022 Police Department Admin Community Relations Specialist 100194.81818 1.102143e+06 8646.71 7.860645e+02 0.000 145.50 11 0.000000e+00 0.00 1.110790e+06 1.102143e+06 8646.71 NULL
2022 Police Department Admin Construction Project Manager 85000.00000 8.500000e+04 139.57 1.395700e+02 139.570 3.00 1 1.395700e+02 139.57 8.513957e+04 8.513957e+04 0.00 NULL
2022 Police Department Admin Contract Specialist 167746.12500 1.341969e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.341969e+06 1.341969e+06 0.00 NULL
2022 Police Department Admin Tests & Meas Spec 186076.00000 1.860760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.860760e+05 1.860760e+05 0.00 NULL
2022 Police Department Admin Traffic Enf Agnt-Union 70871.25000 1.700910e+06 283867.61 1.182782e+04 13115.200 5506.25 24 1.182782e+04 283867.61 1.984778e+06 1.984778e+06 0.00 NULL
2022 Police Department Admin Traffic Enfrcmnt Agent 131322.66667 3.939680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.939680e+05 3.939680e+05 0.00 NULL
2022 Police Department Administrative Accountant 127582.42857 8.930770e+05 30008.74 4.286963e+03 0.000 448.00 7 0.000000e+00 0.00 9.230857e+05 8.930770e+05 30008.74 NULL
2022 Police Department Administrative Architect 143038.25000 5.721530e+05 31235.04 7.808760e+03 3898.360 461.00 4 3.898360e+03 15593.44 6.033880e+05 5.877464e+05 15641.60 NULL
2022 Police Department Administrative City Planner 129620.00000 2.592400e+05 6217.38 3.108690e+03 3108.690 98.75 2 3.108690e+03 6217.38 2.654574e+05 2.654574e+05 0.00 NULL
2022 Police Department Administrative Community Relations Specialist 183606.00000 1.836060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.836060e+05 1.836060e+05 0.00 NULL
2022 Police Department Administrative Contract Specialist 108609.50000 2.172190e+05 8987.80 4.493900e+03 4493.900 152.50 2 4.493900e+03 8987.80 2.262068e+05 2.262068e+05 0.00 NULL
2022 Police Department Administrative Engineer 129454.00000 3.883620e+05 40715.11 1.357170e+04 11397.800 516.50 3 1.139780e+04 34193.40 4.290771e+05 4.225554e+05 6521.71 NULL
2022 Police Department Administrative Graphic Artist 109111.00000 1.091110e+05 2902.55 2.902550e+03 2902.550 39.00 1 2.902550e+03 2902.55 1.120136e+05 1.120136e+05 0.00 NULL
2022 Police Department Administrative Investigator 102691.00000 1.026910e+05 25194.62 2.519462e+04 25194.620 344.25 1 2.519462e+04 25194.62 1.278856e+05 1.278856e+05 0.00 NULL
2022 Police Department Administrative Management Auditor 97234.50000 3.889380e+05 1998.91 4.997275e+02 200.845 39.50 4 2.008450e+02 803.38 3.909369e+05 3.897414e+05 1195.53 NULL
2022 Police Department Administrative Manager 126660.50000 2.533210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.533210e+05 2.533210e+05 0.00 NULL
2022 Police Department Administrative Printing Services Manager 128837.00000 2.576740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.576740e+05 2.576740e+05 0.00 NULL
2022 Police Department Administrative Procurement Analyst-Non-Mgrl 92085.22222 1.657534e+06 86487.26 4.804848e+03 148.045 1408.00 18 1.480450e+02 2664.81 1.744021e+06 1.660199e+06 83822.45 NULL
2022 Police Department Administrative Project Manager 141841.38462 1.843938e+06 61991.43 4.768572e+03 0.000 761.00 13 0.000000e+00 0.00 1.905929e+06 1.843938e+06 61991.43 NULL
2022 Police Department Administrative Psychologist 144653.00000 8.679180e+05 2258.11 3.763517e+02 0.000 12.00 6 0.000000e+00 0.00 8.701761e+05 8.679180e+05 2258.11 NULL
2022 Police Department Administrative Public Health Sanitarian 160771.00000 1.607710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.607710e+05 1.607710e+05 0.00 NULL
2022 Police Department Administrative Public Information Specialist 190266.75000 7.610670e+05 4857.87 1.214467e+03 0.000 65.00 4 0.000000e+00 0.00 7.659249e+05 7.610670e+05 4857.87 NULL
2022 Police Department Administrative Public Information Specialist Nm Former M1/M2 89091.16667 5.345470e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.345470e+05 5.345470e+05 0.00 NULL
2022 Police Department Administrative Quality Assurance Specialist 90493.00000 9.049300e+04 18654.47 1.865447e+04 18654.470 315.50 1 1.865447e+04 18654.47 1.091475e+05 1.091475e+05 0.00 NULL
2022 Police Department Administrative Staff Analyst 116231.31818 1.278544e+07 347338.74 3.157625e+03 265.910 4182.50 110 2.659100e+02 29250.10 1.313278e+07 1.281470e+07 318088.64 NULL
2022 Police Department Administrative Supervisor Of Building Maintenance 190765.00000 1.907650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.907650e+05 1.907650e+05 0.00 NULL
2022 Police Department Administrative Transportation Coordinator 148976.00000 1.489760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.489760e+05 1.489760e+05 0.00 NULL
2022 Police Department Agency Attorney 93796.21875 9.004437e+06 578868.41 6.029879e+03 1264.220 8469.00 96 1.264220e+03 121365.12 9.583305e+06 9.125802e+06 457503.29 NULL
2022 Police Department Agency Attorney Interne 68991.25000 2.759650e+05 2532.59 6.331475e+02 521.950 53.75 4 5.219500e+02 2087.80 2.784976e+05 2.780528e+05 444.79 NULL
2022 Police Department Agency Chief Contracting Officer 190550.00000 1.905500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.905500e+05 1.905500e+05 0.00 NULL
2022 Police Department Architect 96694.00000 1.933880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.933880e+05 1.933880e+05 0.00 NULL
2022 Police Department Assistant Architect 83052.50000 1.661050e+05 9196.25 4.598125e+03 4598.125 185.75 2 4.598125e+03 9196.25 1.753012e+05 1.753012e+05 0.00 NULL
2022 Police Department Assistant Commissioner 182775.00000 3.655500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.655500e+05 3.655500e+05 0.00 NULL
2022 Police Department Assistant Counsel-Pd 119276.66667 1.073490e+06 72105.87 8.011763e+03 2537.570 812.25 9 2.537570e+03 22838.13 1.145596e+06 1.096328e+06 49267.74 NULL
2022 Police Department Assistant Deputy Commissioner 171971.00000 1.719710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.719710e+05 1.719710e+05 0.00 NULL
2022 Police Department Assistant Mechanical Engineer 70891.00000 7.089100e+04 5167.18 5.167180e+03 5167.180 123.00 1 5.167180e+03 5167.18 7.605818e+04 7.605818e+04 0.00 NULL
2022 Police Department Assistant Printing Press Operator 55760.50000 1.115210e+05 3628.30 1.814150e+03 1814.150 109.00 2 1.814150e+03 3628.30 1.151493e+05 1.151493e+05 0.00 NULL
2022 Police Department Assistant To Police Commissionor 210000.00000 2.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.100000e+05 2.100000e+05 0.00 NULL
2022 Police Department Assoc Spvr Of School Security 75662.45000 3.026498e+06 478492.77 1.196232e+04 11888.770 9050.17 40 1.188877e+04 475550.80 3.504991e+06 3.502049e+06 2941.97 NULL
2022 Police Department Assoc Supvr Of Schl Sec 114150.00000 5.707500e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.707500e+05 5.707500e+05 0.00 NULL
2022 Police Department Associate Fingerprint Technician 46789.25000 1.122942e+06 22176.76 9.240317e+02 69.280 630.75 24 6.928000e+01 1662.72 1.145119e+06 1.124605e+06 20514.04 NULL
2022 Police Department Associate Investigator 62327.72222 3.365697e+06 499200.64 9.244456e+03 10045.460 10469.20 54 9.244456e+03 499200.64 3.864898e+06 3.864898e+06 0.00 NULL
2022 Police Department Associate Labor Relations Analyst 108106.00000 1.081060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081060e+05 1.081060e+05 0.00 NULL
2022 Police Department Associate Parking Control Specialist 60224.40000 3.011220e+05 51336.35 1.026727e+04 8194.760 1188.25 5 8.194760e+03 40973.80 3.524583e+05 3.420958e+05 10362.55 NULL
2022 Police Department Associate Project Manager 100168.00000 3.005040e+05 580.28 1.934267e+02 0.000 11.00 3 0.000000e+00 0.00 3.010843e+05 3.005040e+05 580.28 NULL
2022 Police Department Associate Public Records Officer 62694.00000 6.269400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.269400e+04 6.269400e+04 0.00 NULL
2022 Police Department Associate Staff Analyst 88033.86154 5.722201e+06 209807.63 3.227810e+03 263.670 3319.25 65 2.636700e+02 17138.55 5.932009e+06 5.739340e+06 192669.08 NULL
2022 Police Department Associate Traffic Enforcement Agent 53428.70562 2.377577e+07 6504109.31 1.461598e+04 13504.620 160785.90 445 1.350462e+04 6009555.90 3.027988e+07 2.978533e+07 494553.41 NULL
2022 Police Department Auto Body Worker 64073.04762 1.345534e+06 326182.56 1.553250e+04 18324.800 7078.50 21 1.553250e+04 326182.56 1.671717e+06 1.671717e+06 0.00 NULL
2022 Police Department Auto Mechanic NA NA 2693588.48 1.402911e+04 11693.130 41262.50 192 1.169313e+04 2245080.96 NA NA NA NULL
2022 Police Department Automotive Service Worker 44615.27869 2.721532e+06 349657.92 5.732097e+03 2320.360 10183.25 61 2.320360e+03 141541.96 3.071190e+06 2.863074e+06 208115.96 NULL
2022 Police Department Bookbinder 46016.75000 1.840670e+05 2564.53 6.411325e+02 569.755 85.75 4 5.697550e+02 2279.02 1.866315e+05 1.863460e+05 285.51 NULL
2022 Police Department Bookkeeper 52537.86792 2.784507e+06 59415.27 1.121043e+03 0.000 1469.03 53 0.000000e+00 0.00 2.843922e+06 2.784507e+06 59415.27 NULL
2022 Police Department Capt Det Chief Of Department 242592.00000 2.425920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.425920e+05 2.425920e+05 0.00 NULL
2022 Police Department Capt Det Chief Of Internal Affairs 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2022 Police Department Capt Det Chief Of The Housing Bureau 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2022 Police Department Capt Det Chief Of The Transit Bureau 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2022 Police Department Captain 163337.70604 5.945492e+07 2838035.68 7.796801e+03 3750.775 38619.64 364 3.750775e+03 1365282.10 6.229296e+07 6.082021e+07 1472753.58 NULL
2022 Police Department Captain D/A Deputy Chief 206011.00000 1.318470e+07 219921.60 3.436275e+03 0.000 5771.73 64 0.000000e+00 0.00 1.340463e+07 1.318470e+07 219921.60 NULL
2022 Police Department Captain D/A Deputy Inspector 185701.17219 2.804088e+07 440537.05 2.917464e+03 0.000 9626.90 151 0.000000e+00 0.00 2.848141e+07 2.804088e+07 440537.05 NULL
2022 Police Department Captain D/A Inspector 195575.00000 2.346900e+07 283009.06 2.358409e+03 0.000 7671.97 120 0.000000e+00 0.00 2.375201e+07 2.346900e+07 283009.06 NULL
2022 Police Department Captain Detailed As Assistant Chief 240511.00000 4.088687e+06 14493.75 8.525735e+02 0.000 381.48 17 0.000000e+00 0.00 4.103181e+06 4.088687e+06 14493.75 NULL
2022 Police Department Captain Detailed As Chief Of Crime Control Strategies 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2022 Police Department Captain Detailed As Chief Of Detectives 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2022 Police Department Captain Detailed As Chief Of Interagency Operations 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2022 Police Department Captain Detailed As Chief Of Patrol 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2022 Police Department Captain Detailed As Chief Of Personnel 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2022 Police Department Captain Detailed As Chief Of Risk Management 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2022 Police Department Captain Detailed As Chief Of Special Operations 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2022 Police Department Captain-Chief Of Intelligence 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2022 Police Department Captain-Chief Of Staff 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2022 Police Department Captain: Chief Of Transportation Bureau 241116.00000 4.822320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.822320e+05 4.822320e+05 0.00 NULL
2022 Police Department Carpenter NA NA 230060.48 1.278114e+04 11506.315 3039.50 18 1.150632e+04 207113.67 NA NA NA NULL
2022 Police Department Case Management Nurse 87556.91304 2.013809e+06 177721.75 7.727033e+03 5691.100 2640.00 23 5.691100e+03 130895.30 2.191531e+06 2.144704e+06 46826.45 NULL
2022 Police Department Cashier 49473.50000 1.978940e+05 6068.68 1.517170e+03 1301.510 184.25 4 1.301510e+03 5206.04 2.039627e+05 2.031000e+05 862.64 NULL
2022 Police Department Cement Mason NA NA 31409.30 3.140930e+04 31409.300 326.50 1 3.140930e+04 31409.30 NA NA NA NULL
2022 Police Department Certified It Administrator 111957.80488 4.590270e+06 294282.42 7.177620e+03 5992.720 3957.75 41 5.992720e+03 245701.52 4.884552e+06 4.835972e+06 48580.90 NULL
2022 Police Department Certified It Developer 109835.25000 4.393410e+05 36385.84 9.096460e+03 6898.340 458.75 4 6.898340e+03 27593.36 4.757268e+05 4.669344e+05 8792.48 NULL
2022 Police Department Chaplain 40495.72727 4.454530e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 4.454530e+05 4.454530e+05 0.00 NULL
2022 Police Department Chief Of Strategic Initiatives 241116.00000 2.411160e+05 7220.47 7.220470e+03 7220.470 191.42 1 7.220470e+03 7220.47 2.483365e+05 2.483365e+05 0.00 NULL
2022 Police Department City Attendant 41458.00000 4.145800e+04 8479.60 8.479600e+03 8479.600 251.00 1 8.479600e+03 8479.60 4.993760e+04 4.993760e+04 0.00 NULL
2022 Police Department City Custodial Assistant 37258.70407 1.277974e+07 463065.20 1.350044e+03 0.000 16071.50 343 0.000000e+00 0.00 1.324280e+07 1.277974e+07 463065.20 NULL
2022 Police Department City Dentist 83789.16000 8.378916e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.378916e+04 8.378916e+04 0.00 NULL
2022 Police Department City Deputy Medical Director 188100.00000 1.881000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.881000e+05 1.881000e+05 0.00 NULL
2022 Police Department City Laborer NA NA 261194.91 1.004596e+04 6877.555 4744.50 26 6.877555e+03 178816.43 NA NA NA NULL
2022 Police Department City Research Scientist 93838.05556 3.378170e+06 103451.10 2.873642e+03 817.065 1825.25 36 8.170650e+02 29414.34 3.481621e+06 3.407584e+06 74036.76 NULL
2022 Police Department Civilianization Manager-Pd 119846.00000 1.198460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.198460e+05 1.198460e+05 0.00 NULL
2022 Police Department Clerical Aide 31270.68480 1.563534e+05 7558.98 1.511796e+03 592.260 292.00 5 5.922600e+02 2961.30 1.639124e+05 1.593147e+05 4597.68 NULL
2022 Police Department Clerical Associate 48904.80586 2.591955e+06 96859.06 1.827529e+03 103.340 2731.75 53 1.033400e+02 5477.02 2.688814e+06 2.597432e+06 91382.04 NULL
2022 Police Department College Aide 12644.26276 7.460115e+05 0.00 0.000000e+00 0.000 0.00 59 0.000000e+00 0.00 7.460115e+05 7.460115e+05 0.00 NULL
2022 Police Department Commissioner 243171.00000 7.295130e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.295130e+05 7.295130e+05 0.00 NULL
2022 Police Department Community Assistant 33292.00774 6.525234e+06 14677.94 7.488745e+01 0.000 649.00 196 0.000000e+00 0.00 6.539911e+06 6.525234e+06 14677.94 NULL
2022 Police Department Community Associate 50549.33333 3.032960e+05 3317.09 5.528483e+02 0.000 115.00 6 0.000000e+00 0.00 3.066131e+05 3.032960e+05 3317.09 NULL
2022 Police Department Community Coordinator 65003.98333 1.300080e+06 10749.45 5.374725e+02 0.000 254.50 20 0.000000e+00 0.00 1.310829e+06 1.300080e+06 10749.45 NULL
2022 Police Department Compositor NA NA 73330.71 1.833268e+04 17138.595 953.50 4 1.713860e+04 68554.38 NA NA NA NULL
2022 Police Department Computer Associate 76181.23000 7.618123e+06 520786.90 5.207869e+03 4376.320 9128.00 100 4.376320e+03 437632.00 8.138910e+06 8.055755e+06 83154.90 NULL
2022 Police Department Computer Operations Manager 155250.12500 1.242001e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.242001e+06 1.242001e+06 0.00 NULL
2022 Police Department Computer Programmer Analyst 69996.00000 6.999600e+04 9947.47 9.947470e+03 9947.470 206.50 1 9.947470e+03 9947.47 7.994347e+04 7.994347e+04 0.00 NULL
2022 Police Department Computer Specialist 102736.38596 5.855974e+06 275521.45 4.833710e+03 570.000 4106.00 57 5.700000e+02 32490.00 6.131495e+06 5.888464e+06 243031.45 NULL
2022 Police Department Computer Systems Manager 153993.66667 4.157829e+06 78644.37 2.912754e+03 0.000 917.00 27 0.000000e+00 0.00 4.236473e+06 4.157829e+06 78644.37 NULL
2022 Police Department Construction Project Manager 112301.00000 2.246020e+05 17563.18 8.781590e+03 8781.590 245.00 2 8.781590e+03 17563.18 2.421652e+05 2.421652e+05 0.00 NULL
2022 Police Department Counsel To The Police Commissioner 238568.00000 4.771360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.771360e+05 4.771360e+05 0.00 NULL
2022 Police Department Crime Analyst 60644.49296 4.305759e+06 149177.46 2.101091e+03 775.920 4189.50 71 7.759200e+02 55090.32 4.454936e+06 4.360849e+06 94087.14 NULL
2022 Police Department Criminalist 75949.17761 1.967084e+07 1172537.57 4.527172e+03 2002.860 20271.50 259 2.002860e+03 518740.74 2.084337e+07 2.018958e+07 653796.83 NULL
2022 Police Department Criminalist Assistant Director Of Laboratory 131512.10000 1.315121e+06 1313.13 1.313130e+02 0.000 40.25 10 0.000000e+00 0.00 1.316434e+06 1.315121e+06 1313.13 NULL
2022 Police Department Criminalist Deputy Director Of Labatory 169331.00000 1.693310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.693310e+05 1.693310e+05 0.00 NULL
2022 Police Department Criminalist Director Of Laboratory 191282.00000 1.912820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.912820e+05 1.912820e+05 0.00 NULL
2022 Police Department Custodian 43562.30435 1.001933e+06 150944.72 6.562814e+03 5151.850 4633.50 23 5.151850e+03 118492.55 1.152878e+06 1.120426e+06 32452.17 NULL
2022 Police Department Deputy Chief Surgeon 161837.40000 8.091870e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.091870e+05 8.091870e+05 0.00 NULL
2022 Police Department Deputy Commissioner 241116.00000 1.687812e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.687812e+06 1.687812e+06 0.00 NULL
2022 Police Department Director 145022.00000 1.450220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450220e+05 1.450220e+05 0.00 NULL
2022 Police Department Director Employee Management Division 157222.00000 1.572220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.572220e+05 1.572220e+05 0.00 NULL
2022 Police Department Director Management Information Systems 208826.00000 2.088260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.088260e+05 2.088260e+05 0.00 NULL
2022 Police Department Director Of Communications 128909.00000 1.289090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.289090e+05 1.289090e+05 0.00 NULL
2022 Police Department Director Of Department Advocates Office 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2022 Police Department Director Of Internal Affairs - Pd 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2022 Police Department Director Of Motor Transport 168293.00000 1.682930e+05 23144.13 2.314413e+04 23144.130 230.50 1 2.314413e+04 23144.13 1.914371e+05 1.914371e+05 0.00 NULL
2022 Police Department Director Of Organized Crime Control-Pd 192152.00000 1.921520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.921520e+05 1.921520e+05 0.00 NULL
2022 Police Department Director Of Photographic Services-Pd 161298.00000 1.612980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.612980e+05 1.612980e+05 0.00 NULL
2022 Police Department Director Of Psychological Services 150824.00000 1.508240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.508240e+05 1.508240e+05 0.00 NULL
2022 Police Department Director Of Support Services-Pd 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2022 Police Department Director Of Technology Development-Pd 166860.00000 1.668600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.668600e+05 1.668600e+05 0.00 NULL
2022 Police Department Director Of Training 129154.00000 2.583080e+05 8486.77 4.243385e+03 4243.385 155.75 2 4.243385e+03 8486.77 2.667948e+05 2.667948e+05 0.00 NULL
2022 Police Department Economist 67474.00000 6.747400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.747400e+04 6.747400e+04 0.00 NULL
2022 Police Department Electrical Engineer 111150.00000 1.111500e+05 8869.42 8.869420e+03 8869.420 134.00 1 8.869420e+03 8869.42 1.200194e+05 1.200194e+05 0.00 NULL
2022 Police Department Electrician NA NA 746070.65 2.072418e+04 21800.525 8219.50 36 2.072418e+04 746070.65 NA NA NA NULL
2022 Police Department Electricians Helper NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2022 Police Department Elevator Mechanic NA NA 22420.91 7.473637e+03 10415.540 259.00 3 7.473637e+03 22420.91 NA NA NA NULL
2022 Police Department Employee Assistance Program Specialist 72390.00000 2.171700e+05 2761.23 9.204100e+02 274.830 65.25 3 2.748300e+02 824.49 2.199312e+05 2.179945e+05 1936.74 NULL
2022 Police Department Evidence And Property Control Specialist 59360.18436 1.062547e+07 338995.58 1.893830e+03 384.720 8506.72 179 3.847200e+02 68864.88 1.096447e+07 1.069434e+07 270130.70 NULL
2022 Police Department Executive Agency Counsel 163290.58696 7.511367e+06 18135.92 3.942591e+02 0.000 241.50 46 0.000000e+00 0.00 7.529503e+06 7.511367e+06 18135.92 NULL
2022 Police Department Fingerprint Technician Trainee 32153.40000 4.823010e+05 1702.88 1.135253e+02 0.000 79.50 15 0.000000e+00 0.00 4.840039e+05 4.823010e+05 1702.88 NULL
2022 Police Department First Deputy Commissioner 242592.00000 2.425920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.425920e+05 2.425920e+05 0.00 NULL
2022 Police Department Fitness Instructor 60047.80000 9.007170e+05 9435.79 6.290527e+02 0.000 195.25 15 0.000000e+00 0.00 9.101528e+05 9.007170e+05 9435.79 NULL
2022 Police Department Glazier NA NA 58013.82 1.933794e+04 25597.080 621.00 3 1.933794e+04 58013.82 NA NA NA NULL
2022 Police Department Graphic Artist 65296.90000 6.529690e+05 23063.82 2.306382e+03 1221.670 561.75 10 1.221670e+03 12216.70 6.760328e+05 6.651857e+05 10847.12 NULL
2022 Police Department Health Services Manager Non Managerial Level I 94724.00000 9.472400e+04 194.10 1.941000e+02 194.100 4.00 1 1.941000e+02 194.10 9.491810e+04 9.491810e+04 0.00 NULL
2022 Police Department Horseshoer NA NA 199.63 6.654333e+01 0.000 6.00 3 0.000000e+00 0.00 NA NA NA NULL
2022 Police Department Hostler 48137.32490 1.010884e+06 158632.25 7.553917e+03 4892.490 4383.00 21 4.892490e+03 102742.29 1.169516e+06 1.113626e+06 55889.96 NULL
2022 Police Department Intelligence Research Manager-Pd 171138.50000 6.845540e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.845540e+05 6.845540e+05 0.00 NULL
2022 Police Department Intelligence Research Specialist-Pd 96957.45455 4.266128e+06 277814.60 6.313968e+03 3318.880 3969.00 44 3.318880e+03 146030.72 4.543943e+06 4.412159e+06 131783.88 NULL
2022 Police Department Investigator 51383.64865 1.901195e+06 168841.38 4.563281e+03 3148.340 4413.53 37 3.148340e+03 116488.58 2.070036e+06 2.017684e+06 52352.80 NULL
2022 Police Department Investigator Trainee 43942.40000 2.197120e+05 20054.57 4.010914e+03 1503.100 656.25 5 1.503100e+03 7515.50 2.397666e+05 2.272275e+05 12539.07 NULL
2022 Police Department It Automation And Monitoring Engineer 126933.50000 2.538670e+05 15509.47 7.754735e+03 7754.735 203.13 2 7.754735e+03 15509.47 2.693765e+05 2.693765e+05 0.00 NULL
2022 Police Department It Project Specialist 116039.40000 5.801970e+05 17334.33 3.466866e+03 2588.060 276.50 5 2.588060e+03 12940.30 5.975313e+05 5.931373e+05 4394.03 NULL
2022 Police Department It Security Specialist 117600.00000 5.880000e+05 6564.91 1.312982e+03 1625.620 83.50 5 1.312982e+03 6564.91 5.945649e+05 5.945649e+05 0.00 NULL
2022 Police Department It Service Management Specialist 110000.00000 1.100000e+05 150.52 1.505200e+02 150.520 2.50 1 1.505200e+02 150.52 1.101505e+05 1.101505e+05 0.00 NULL
2022 Police Department Lieutenant 129995.17728 1.693837e+08 39460921.23 3.028467e+04 30070.350 543649.54 1303 3.007035e+04 39181666.05 2.088446e+08 2.085654e+08 279255.18 NULL
2022 Police Department Lieutenant D/A Commander Of Detective Squad 143030.92308 2.231282e+07 7914518.19 5.073409e+04 54446.085 97982.40 156 5.073409e+04 7914518.19 3.022734e+07 3.022734e+07 0.00 NULL
2022 Police Department Lieutenant D/A Special Assignment 143117.40000 1.645850e+07 5318102.91 4.624437e+04 44471.590 65211.52 115 4.447159e+04 5114232.85 2.177660e+07 2.157273e+07 203870.06 NULL
2022 Police Department Locksmith NA NA 262.93 2.629300e+02 262.930 7.00 1 2.629300e+02 262.93 NA NA NA NULL
2022 Police Department Maintenance Worker NA NA 66307.13 2.210238e+03 958.185 1410.25 30 9.581850e+02 28745.55 NA NA NA NULL
2022 Police Department Management Auditor 76456.27778 1.376213e+06 60684.64 3.371369e+03 195.675 959.25 18 1.956750e+02 3522.15 1.436898e+06 1.379735e+06 57162.49 NULL
2022 Police Department Management Auditor Trainee 52242.00000 5.224200e+04 1668.82 1.668820e+03 1668.820 56.75 1 1.668820e+03 1668.82 5.391082e+04 5.391082e+04 0.00 NULL
2022 Police Department Manager Of Radio Repair Operations 161480.28571 1.130362e+06 40316.93 5.759561e+03 755.260 439.50 7 7.552600e+02 5286.82 1.170679e+06 1.135649e+06 35030.11 NULL
2022 Police Department Marine Maintenance Mechanic 78628.00000 1.572560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.572560e+05 1.572560e+05 0.00 NULL
2022 Police Department Media Services Technician 49674.12000 1.241853e+06 24522.79 9.809116e+02 177.370 692.25 25 1.773700e+02 4434.25 1.266376e+06 1.246287e+06 20088.54 NULL
2022 Police Department Motor Vehicle Operator 49367.21212 1.629118e+06 240695.58 7.293805e+03 3771.920 6227.25 33 3.771920e+03 124473.36 1.869814e+06 1.753591e+06 116222.22 NULL
2022 Police Department Motor Vehicle Supervisor 58854.20000 2.942710e+05 45552.24 9.110448e+03 10851.280 1033.00 5 9.110448e+03 45552.24 3.398232e+05 3.398232e+05 0.00 NULL
2022 Police Department Office Machine Aide 40268.00000 4.026800e+04 484.80 4.848000e+02 484.800 20.00 1 4.848000e+02 484.80 4.075280e+04 4.075280e+04 0.00 NULL
2022 Police Department Oiler NA NA 680012.24 3.238154e+04 30747.390 7619.58 21 3.074739e+04 645695.19 NA NA NA NULL
2022 Police Department Operations Communications Specialist 46129.00000 4.612900e+04 11332.19 1.133219e+04 11332.190 304.75 1 1.133219e+04 11332.19 5.746119e+04 5.746119e+04 0.00 NULL
2022 Police Department P.o. Da Det Gr3 104470.67721 3.501857e+08 118345265.56 3.530587e+04 37057.235 1973160.49 3352 3.530587e+04 118345265.56 4.685310e+08 4.685310e+08 0.00 NULL
2022 Police Department P.o. Det Spec 104258.61498 9.883717e+07 24880426.86 2.624518e+04 26803.215 424987.56 948 2.624518e+04 24880426.86 1.237176e+08 1.237176e+08 0.00 NULL
2022 Police Department Painter NA NA 291347.96 1.618600e+04 18182.700 3771.50 18 1.618600e+04 291347.96 NA NA NA NULL
2022 Police Department Paralegal Aide 49507.72222 8.911390e+05 20708.68 1.150482e+03 27.610 600.48 18 2.761000e+01 496.98 9.118477e+05 8.916360e+05 20211.70 NULL
2022 Police Department Parking Control Specialist 47100.54545 5.181060e+05 87464.92 7.951356e+03 3967.310 2577.00 11 3.967310e+03 43640.41 6.055709e+05 5.617464e+05 43824.51 NULL
2022 Police Department Photographer 52719.95000 1.054399e+06 26624.22 1.331211e+03 185.080 748.00 20 1.850800e+02 3701.60 1.081023e+06 1.058101e+06 22922.62 NULL
2022 Police Department Physician’s Assistant 31155.02040 6.231004e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.231004e+04 6.231004e+04 0.00 NULL
2022 Police Department Plumber NA NA 624083.58 3.284650e+04 45373.010 5912.50 19 3.284650e+04 624083.58 NA NA NA NULL
2022 Police Department Plumber’s Helper NA NA 22280.85 2.228085e+04 22280.850 301.50 1 2.228085e+04 22280.85 NA NA NA NULL
2022 Police Department Police Administrative Aide 42714.70695 5.655427e+07 826691.50 6.243894e+02 0.000 25960.53 1324 0.000000e+00 0.00 5.738096e+07 5.655427e+07 826691.50 NULL
2022 Police Department Police Attendant 42084.89655 1.220462e+06 220874.19 7.616351e+03 7536.860 7062.75 29 7.536860e+03 218568.94 1.441336e+06 1.439031e+06 2305.25 NULL
2022 Police Department Police Cadet 9928.73146 1.538953e+06 0.00 0.000000e+00 0.000 0.00 155 0.000000e+00 0.00 1.538953e+06 1.538953e+06 0.00 NULL
2022 Police Department Police Communications Technician 47812.42010 8.706642e+07 7528948.92 4.134513e+03 2153.720 214805.00 1821 2.153720e+03 3921924.12 9.459537e+07 9.098834e+07 3607024.80 NULL
2022 Police Department Police Officer 68148.24364 1.606118e+09 283715152.96 1.203815e+04 9357.560 7746251.09 23568 9.357560e+03 220538974.08 1.889833e+09 1.826657e+09 63176178.88 NULL
2022 Police Department Police Officer D/A Detective 1st Gr 135447.37979 3.887340e+07 14689307.82 5.118226e+04 54737.640 178124.92 287 5.118226e+04 14689307.82 5.356271e+07 5.356271e+07 0.00 NULL
2022 Police Department Police Officer D/A Detective 2nd Gr 118008.46780 6.962500e+07 25449844.39 4.313533e+04 45826.205 358495.41 590 4.313533e+04 25449844.39 9.507484e+07 9.507484e+07 0.00 NULL
2022 Police Department Police Surgeon 147453.04000 3.686326e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 3.686326e+06 3.686326e+06 0.00 NULL
2022 Police Department Precinct Community Relations Aide 26764.01000 8.029203e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 8.029203e+04 8.029203e+04 0.00 NULL
2022 Police Department Precinct Receptionist 22168.36684 2.216837e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 2.216837e+05 2.216837e+05 0.00 NULL
2022 Police Department Principal Administrative Associate - Non Supvr 65026.72318 1.879272e+07 753521.92 2.607342e+03 0.000 16295.35 289 0.000000e+00 0.00 1.954624e+07 1.879272e+07 753521.92 NULL
2022 Police Department Principal Fingerprint Technician 57380.50000 3.442830e+05 13196.49 2.199415e+03 1607.080 364.75 6 1.607080e+03 9642.48 3.574795e+05 3.539255e+05 3554.01 NULL
2022 Police Department Principal Police Communication Technician 75256.35211 5.343201e+06 800623.75 1.127639e+04 8281.510 14621.08 71 8.281510e+03 587987.21 6.143825e+06 5.931188e+06 212636.54 NULL
2022 Police Department Printing Press Operator NA NA 173419.64 9.127349e+03 7432.260 3068.75 19 7.432260e+03 141212.94 NA NA NA NULL
2022 Police Department Procurement Analyst 69025.78571 9.663610e+05 63405.36 4.528954e+03 3778.340 1449.00 14 3.778340e+03 52896.76 1.029766e+06 1.019258e+06 10508.60 NULL
2022 Police Department Program Producer 61003.00000 2.440120e+05 5490.46 1.372615e+03 657.215 139.75 4 6.572150e+02 2628.86 2.495025e+05 2.466409e+05 2861.60 NULL
2022 Police Department Project Manager 77250.00000 7.725000e+04 2939.08 2.939080e+03 2939.080 66.00 1 2.939080e+03 2939.08 8.018908e+04 8.018908e+04 0.00 NULL
2022 Police Department Property Clerk 157859.00000 1.578590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.578590e+05 1.578590e+05 0.00 NULL
2022 Police Department Psychologist 78975.56031 2.527218e+06 229445.33 7.170167e+03 6043.350 3591.75 32 6.043350e+03 193387.20 2.756663e+06 2.720605e+06 36058.13 NULL
2022 Police Department Public Health Assistant 37055.12500 2.964410e+05 9334.72 1.166840e+03 216.185 368.00 8 2.161850e+02 1729.48 3.057757e+05 2.981705e+05 7605.24 NULL
2022 Police Department Public Records Officer 57300.50000 2.292020e+05 18124.71 4.531177e+03 3625.430 488.75 4 3.625430e+03 14501.72 2.473267e+05 2.437037e+05 3622.99 NULL
2022 Police Department Quality Assurance Specialist 58210.00000 1.164200e+05 25744.21 1.287210e+04 12872.105 621.00 2 1.287210e+04 25744.21 1.421642e+05 1.421642e+05 0.00 NULL
2022 Police Department Radio Repair Mechanic NA NA 952357.86 1.175750e+04 11183.760 12691.77 81 1.118376e+04 905884.56 NA NA NA NULL
2022 Police Department Research Assistant 66422.00000 6.642200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.642200e+04 6.642200e+04 0.00 NULL
2022 Police Department Roofer NA NA 43367.70 1.084192e+04 11657.935 777.00 4 1.084192e+04 43367.70 NA NA NA NULL
2022 Police Department School Crossing Guard 14336.25117 3.598399e+07 2695.05 1.073725e+00 0.000 243.25 2510 0.000000e+00 0.00 3.598669e+07 3.598399e+07 2695.05 NULL
2022 Police Department School Safety Agent 45581.94994 2.294595e+08 40137496.52 7.973281e+03 6014.675 1166099.13 5034 6.014675e+03 30277873.95 2.695970e+08 2.597374e+08 9859622.57 NULL
2022 Police Department Secretary 50627.28571 7.087820e+05 19093.26 1.363804e+03 0.000 517.50 14 0.000000e+00 0.00 7.278753e+05 7.087820e+05 19093.26 NULL
2022 Police Department Secretary Of The Department 89624.00000 8.962400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.962400e+04 8.962400e+04 0.00 NULL
2022 Police Department Secretary To The Commissioner 90000.00000 9.000000e+04 14218.66 1.421866e+04 14218.660 284.50 1 1.421866e+04 14218.66 1.042187e+05 1.042187e+05 0.00 NULL
2022 Police Department Secretary To The First Deputy Commissioner-Pd 112197.00000 1.121970e+05 9864.04 9.864040e+03 9864.040 122.50 1 9.864040e+03 9864.04 1.220610e+05 1.220610e+05 0.00 NULL
2022 Police Department Senior It Architect 160366.00000 9.621960e+05 103658.27 1.727638e+04 17034.695 1062.00 6 1.703469e+04 102208.17 1.065854e+06 1.064404e+06 1450.10 NULL
2022 Police Department Senior Office Appliance Maintainer 50855.00000 5.085500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.085500e+04 5.085500e+04 0.00 NULL
2022 Police Department Senior Photographer 62179.12500 4.974330e+05 60956.99 7.619624e+03 7300.000 1479.75 8 7.300000e+03 58400.00 5.583900e+05 5.558330e+05 2556.99 NULL
2022 Police Department Senior Police Administrative Aide 53436.63736 4.376461e+07 1076370.64 1.314250e+03 0.000 28765.51 819 0.000000e+00 0.00 4.484098e+07 4.376461e+07 1076370.64 NULL
2022 Police Department Senior Stationary Engineer NA NA 130222.20 4.340740e+04 51062.220 1167.75 3 4.340740e+04 130222.20 NA NA NA NULL
2022 Police Department Sergeant- 109433.54155 4.122362e+08 89465319.66 2.374975e+04 20811.200 1403496.07 3767 2.081120e+04 78395790.40 5.017015e+08 4.906319e+08 11069529.26 NULL
2022 Police Department Sergeant-D/A Special Assignment 128208.25946 2.371853e+07 6928845.45 3.745322e+04 38537.590 82317.50 185 3.745322e+04 6928845.45 3.064737e+07 3.064737e+07 0.00 NULL
2022 Police Department Sergeant-D/A Supervisor Detective Squad 129236.55031 4.109722e+07 16399867.50 5.157191e+04 54747.120 203915.30 318 5.157191e+04 16399867.50 5.749709e+07 5.749709e+07 0.00 NULL
2022 Police Department Sheet Metal Worker NA NA 317401.60 4.534309e+04 47320.640 2740.00 7 4.534309e+04 317401.60 NA NA NA NULL
2022 Police Department Staff Analyst 67754.07018 3.861982e+06 52317.07 9.178433e+02 15.570 1002.75 57 1.557000e+01 887.49 3.914299e+06 3.862869e+06 51429.58 NULL
2022 Police Department Staff Analyst Trainee 46375.85714 3.246310e+05 3405.37 4.864814e+02 0.000 123.25 7 0.000000e+00 0.00 3.280364e+05 3.246310e+05 3405.37 NULL
2022 Police Department Stationary Engineer NA NA 977238.12 6.514921e+04 66145.590 10185.25 15 6.514921e+04 977238.12 NA NA NA NULL
2022 Police Department Steam Fitter NA NA 146756.50 1.834456e+04 12677.500 1334.75 8 1.267750e+04 101420.00 NA NA NA NULL
2022 Police Department Steam Fitter’s Helper NA NA 22770.00 2.277000e+04 22770.000 276.00 1 2.277000e+04 22770.00 NA NA NA NULL
2022 Police Department Stenographer To Each Deputy Commissioner 97637.00000 4.881850e+05 32914.94 6.582988e+03 409.760 455.75 5 4.097600e+02 2048.80 5.210999e+05 4.902338e+05 30866.14 NULL
2022 Police Department Stenographic Specialist 55864.33333 1.675930e+05 992.26 3.307533e+02 472.130 34.75 3 3.307533e+02 992.26 1.685853e+05 1.685853e+05 0.00 NULL
2022 Police Department Stock Worker 42089.48387 1.304774e+06 70043.00 2.259452e+03 399.860 2312.75 31 3.998600e+02 12395.66 1.374817e+06 1.317170e+06 57647.34 NULL
2022 Police Department Summer College Intern 2599.81154 2.027853e+05 0.00 0.000000e+00 0.000 0.00 78 0.000000e+00 0.00 2.027853e+05 2.027853e+05 0.00 NULL
2022 Police Department Summer Graduate Intern 2974.72026 5.949441e+04 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 5.949441e+04 5.949441e+04 0.00 NULL
2022 Police Department Supervising Chief Surgeon 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2022 Police Department Supervising Police Communications Technician 67299.58791 1.224852e+07 2139754.38 1.175689e+04 9182.950 42036.51 182 9.182950e+03 1671296.90 1.438828e+07 1.391982e+07 468457.48 NULL
2022 Police Department Supervisor 75336.66667 2.260100e+05 41798.87 1.393296e+04 3046.240 705.50 3 3.046240e+03 9138.72 2.678089e+05 2.351487e+05 32660.15 NULL
2022 Police Department Supervisor Carpenter NA NA 46079.00 2.303950e+04 23039.500 572.50 2 2.303950e+04 46079.00 NA NA NA NULL
2022 Police Department Supervisor Electrician NA NA 114381.89 2.859547e+04 29985.085 1107.50 4 2.859547e+04 114381.89 NA NA NA NULL
2022 Police Department Supervisor Elevator Mechanic NA NA 30564.84 3.056484e+04 30564.840 302.00 1 3.056484e+04 30564.84 NA NA NA NULL
2022 Police Department Supervisor Glazier NA NA 28296.40 2.829640e+04 28296.400 295.00 1 2.829640e+04 28296.40 NA NA NA NULL
2022 Police Department Supervisor Of Mechanical Installations & Maintenance 80892.00000 8.089200e+04 15855.58 1.585558e+04 15855.580 293.50 1 1.585558e+04 15855.58 9.674758e+04 9.674758e+04 0.00 NULL
2022 Police Department Supervisor Of Mechanics 124629.62745 6.356111e+06 888964.26 1.743067e+04 19346.300 9925.25 51 1.743067e+04 888964.26 7.245075e+06 7.245075e+06 0.00 NULL
2022 Police Department Supervisor Of Office Machine Operations 55323.00000 5.532300e+04 6834.06 6.834060e+03 6834.060 171.00 1 6.834060e+03 6834.06 6.215706e+04 6.215706e+04 0.00 NULL
2022 Police Department Supervisor Of Radio Repair Operations 122429.00000 8.570030e+05 118669.22 1.695275e+04 16855.940 1568.00 7 1.685594e+04 117991.58 9.756722e+05 9.749946e+05 677.64 NULL
2022 Police Department Supervisor Of School Security 72258.35928 1.206715e+07 1359519.12 8.140833e+03 5671.100 24688.50 167 5.671100e+03 947073.70 1.342667e+07 1.301422e+07 412445.42 NULL
2022 Police Department Supervisor Of Stock Workers 55567.80000 5.556780e+05 77158.43 7.715843e+03 6326.240 2173.00 10 6.326240e+03 63262.40 6.328364e+05 6.189404e+05 13896.03 NULL
2022 Police Department Supervisor Painter NA NA 113462.85 3.782095e+04 39006.250 1298.00 3 3.782095e+04 113462.85 NA NA NA NULL
2022 Police Department Supervisor Plumber NA NA 189589.95 4.739749e+04 58925.565 1721.25 4 4.739749e+04 189589.95 NA NA NA NULL
2022 Police Department Supervisor Roofer NA NA 13956.30 1.395630e+04 13956.300 250.00 1 1.395630e+04 13956.30 NA NA NA NULL
2022 Police Department Supervisor Sheet Metal Worker NA NA 77266.36 7.726636e+04 77266.360 629.00 1 7.726636e+04 77266.36 NA NA NA NULL
2022 Police Department Supervisor Steamfitter NA NA 77719.50 7.771950e+04 77719.500 681.75 1 7.771950e+04 77719.50 NA NA NA NULL
2022 Police Department Supervisor Thermostat Repair NA NA 66854.42 6.685442e+04 66854.420 606.75 1 6.685442e+04 66854.42 NA NA NA NULL
2022 Police Department Telecommunications Associate 87679.42857 1.227512e+06 153931.72 1.099512e+04 12701.090 2479.25 14 1.099512e+04 153931.72 1.381444e+06 1.381444e+06 0.00 NULL
2022 Police Department Telephone Service Technician 75048.33333 2.251450e+05 14896.69 4.965563e+03 2632.330 283.00 3 2.632330e+03 7896.99 2.400417e+05 2.330420e+05 6999.70 NULL
2022 Police Department Tests And Measurement Specialist 105138.00000 1.051380e+05 4952.54 4.952540e+03 4952.540 58.00 1 4.952540e+03 4952.54 1.100905e+05 1.100905e+05 0.00 NULL
2022 Police Department Thermostat Repairer NA NA 349410.94 3.494109e+04 28928.920 3310.50 10 2.892892e+04 289289.20 NA NA NA NULL
2022 Police Department Traffic Enforcement Agent 44458.35286 1.350645e+08 23767995.96 7.823567e+03 5220.330 695311.26 3038 5.220330e+03 15859362.54 1.588325e+08 1.509238e+08 7908633.42 NULL
2022 Police Department Welder NA NA 64398.76 3.219938e+04 32199.380 641.75 2 3.219938e+04 64398.76 NA NA NA NULL
2022 Public Administrator-Bronx Community Associate 51308.20000 2.565410e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.565410e+05 2.565410e+05 0.00 NULL
2022 Public Administrator-Bronx Decedent Property Agent 51556.00000 5.155600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.155600e+04 5.155600e+04 0.00 NULL
2022 Public Administrator-Bronx Deputy Public Administator 126540.00000 1.265400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.265400e+05 1.265400e+05 0.00 NULL
2022 Public Administrator-Bronx Principal Administrative Associate - Non Supvr 73978.00000 7.397800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.397800e+04 7.397800e+04 0.00 NULL
2022 Public Administrator-Bronx Public Administrator 189810.00000 1.898100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.898100e+05 1.898100e+05 0.00 NULL
2022 Public Administrator-Kings Community Assistant 36563.00000 1.462520e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.462520e+05 1.462520e+05 0.00 NULL
2022 Public Administrator-Kings Community Associate 41224.75000 1.648990e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.648990e+05 1.648990e+05 0.00 NULL
2022 Public Administrator-Kings Community Coordinator 61605.50000 1.232110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.232110e+05 1.232110e+05 0.00 NULL
2022 Public Administrator-Kings Decedent Property Agent 53968.33333 1.619050e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.619050e+05 1.619050e+05 0.00 NULL
2022 Public Administrator-Kings Deputy Public Administator 126540.00000 2.530800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.530800e+05 2.530800e+05 0.00 NULL
2022 Public Administrator-Kings Public Administrator 189297.00000 3.785940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.785940e+05 3.785940e+05 0.00 NULL
2022 Public Administrator-New York Accountant 65924.00000 6.592400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.592400e+04 6.592400e+04 0.00 NULL
2022 Public Administrator-New York Bookkeeper 42182.50000 8.436500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.436500e+04 8.436500e+04 0.00 NULL
2022 Public Administrator-New York Clerical Associate 45160.00000 1.354800e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.354800e+05 1.354800e+05 0.00 NULL
2022 Public Administrator-New York Decedent Property Agent 48201.75000 1.928070e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.928070e+05 1.928070e+05 0.00 NULL
2022 Public Administrator-New York Deputy Public Administator 126540.00000 1.265400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.265400e+05 1.265400e+05 0.00 NULL
2022 Public Administrator-New York Principal Administrative Associate - Non Supvr 69462.00000 6.946200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.946200e+04 6.946200e+04 0.00 NULL
2022 Public Administrator-New York Public Administrator 189810.00000 1.898100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.898100e+05 1.898100e+05 0.00 NULL
2022 Public Administrator-Queens Decedent Property Agent 46698.83333 2.801930e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.801930e+05 2.801930e+05 0.00 NULL
2022 Public Administrator-Queens Deputy Public Administator 126540.00000 1.265400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.265400e+05 1.265400e+05 0.00 NULL
2022 Public Administrator-Queens Public Administrator 189810.00000 1.898100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.898100e+05 1.898100e+05 0.00 NULL
2022 Public Administrator-Queens Secretary 37777.00000 3.777700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.777700e+04 3.777700e+04 0.00 NULL
2022 Public Administrator-Richmond Community Coordinator 72407.00000 7.240700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.240700e+04 7.240700e+04 0.00 NULL
2022 Public Administrator-Richmond Deputy Public Administator 124800.00000 1.248000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.248000e+05 1.248000e+05 0.00 NULL
2022 Public Administrator-Richmond Public Administrator 187200.00000 1.872000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.872000e+05 1.872000e+05 0.00 NULL
2022 Public Administrator-Richmond Secretary To Public Administrator 77931.00000 1.558620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.558620e+05 1.558620e+05 0.00 NULL
2022 Public Advocate Assistant To The Public Advocate 38484.31894 2.155122e+06 0.00 0.000000e+00 0.000 0.00 56 0.000000e+00 0.00 2.155122e+06 2.155122e+06 0.00 NULL
2022 Public Advocate Counsel To The Public Advocate 130000.00000 2.600000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.600000e+05 2.600000e+05 0.00 NULL
2022 Public Advocate Director Of Communications 105000.00000 3.150000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.150000e+05 3.150000e+05 0.00 NULL
2022 Public Advocate Director Of The Ombudsman Program 102500.00000 2.050000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.050000e+05 2.050000e+05 0.00 NULL
2022 Public Advocate Executive Secretary To The Public Advocate 50000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2022 Public Advocate First Assistant To The Public Advocate 145000.00000 2.900000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.900000e+05 2.900000e+05 0.00 NULL
2022 Public Advocate Legislative Attorney 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2022 Public Advocate Legislative Information Officer 96750.00000 9.675000e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 9.675000e+05 9.675000e+05 0.00 NULL
2022 Public Advocate Office Assistant 11529.75000 2.305950e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.305950e+04 2.305950e+04 0.00 NULL
2022 Public Advocate Office Manager 90045.45455 9.905000e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 9.905000e+05 9.905000e+05 0.00 NULL
2022 Public Advocate Public Advocate 184800.00000 1.848000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.848000e+05 1.848000e+05 0.00 NULL
2022 Public Advocate Special Assistant 55000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2022 Public Service Corps College Aide 2923.28772 1.637041e+05 0.00 0.000000e+00 0.000 0.00 56 0.000000e+00 0.00 1.637041e+05 1.637041e+05 0.00 NULL
2022 Queens Community Board #1 Community Assistant 35928.00000 7.185600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.185600e+04 7.185600e+04 0.00 NULL
2022 Queens Community Board #1 District Manager 103159.00000 1.031590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.031590e+05 1.031590e+05 0.00 NULL
2022 Queens Community Board #10 Community Assistant 39000.00000 3.900000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.900000e+04 3.900000e+04 0.00 NULL
2022 Queens Community Board #10 Community Associate 39000.00000 3.900000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.900000e+04 3.900000e+04 0.00 NULL
2022 Queens Community Board #10 Community Coordinator 43750.91860 8.750184e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.750184e+04 8.750184e+04 0.00 NULL
2022 Queens Community Board #10 District Manager 111247.00000 1.112470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.112470e+05 1.112470e+05 0.00 NULL
2022 Queens Community Board #11 Community Associate 56572.00000 5.657200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.657200e+04 5.657200e+04 0.00 NULL
2022 Queens Community Board #11 Community Coordinator 74254.00000 7.425400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.425400e+04 7.425400e+04 0.00 NULL
2022 Queens Community Board #11 District Manager 91427.00000 9.142700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.142700e+04 9.142700e+04 0.00 NULL
2022 Queens Community Board #12 Community Assistant 39209.50000 7.841900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.841900e+04 7.841900e+04 0.00 NULL
2022 Queens Community Board #12 District Manager 119471.00000 1.194710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.194710e+05 1.194710e+05 0.00 NULL
2022 Queens Community Board #13 Community Assistant 41200.00000 4.120000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.120000e+04 4.120000e+04 0.00 NULL
2022 Queens Community Board #13 Community Coordinator 71450.00000 7.145000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.145000e+04 7.145000e+04 0.00 NULL
2022 Queens Community Board #13 District Manager 122285.00000 1.222850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.222850e+05 1.222850e+05 0.00 NULL
2022 Queens Community Board #14 Community Coordinator 76052.00000 7.605200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.605200e+04 7.605200e+04 0.00 NULL
2022 Queens Community Board #14 Community Service Aide 24195.00000 2.419500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.419500e+04 2.419500e+04 0.00 NULL
2022 Queens Community Board #14 District Manager 137910.00000 1.379100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.379100e+05 1.379100e+05 0.00 NULL
2022 Queens Community Board #2 Community Assistant 37958.00000 3.795800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.795800e+04 3.795800e+04 0.00 NULL
2022 Queens Community Board #2 Community Associate 61454.00000 6.145400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.145400e+04 6.145400e+04 0.00 NULL
2022 Queens Community Board #2 Community Service Aide 19114.23360 1.911423e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.911423e+04 1.911423e+04 0.00 NULL
2022 Queens Community Board #2 District Manager 110083.00000 1.100830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100830e+05 1.100830e+05 0.00 NULL
2022 Queens Community Board #3 Community Coordinator 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2022 Queens Community Board #3 Community Service Aide 29361.00000 2.936100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.936100e+04 2.936100e+04 0.00 NULL
2022 Queens Community Board #3 District Manager 114398.00000 1.143980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.143980e+05 1.143980e+05 0.00 NULL
2022 Queens Community Board #4 Community Associate 45191.00000 4.519100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.519100e+04 4.519100e+04 0.00 NULL
2022 Queens Community Board #4 Community Coordinator 84066.00000 8.406600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.406600e+04 8.406600e+04 0.00 NULL
2022 Queens Community Board #4 District Manager 110966.00000 1.109660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.109660e+05 1.109660e+05 0.00 NULL
2022 Queens Community Board #5 Community Associate 34674.59357 1.386984e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.386984e+05 1.386984e+05 0.00 NULL
2022 Queens Community Board #5 District Manager 99183.00000 9.918300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.918300e+04 9.918300e+04 0.00 NULL
2022 Queens Community Board #6 Community Coordinator 68371.00000 6.837100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.837100e+04 6.837100e+04 0.00 NULL
2022 Queens Community Board #6 Community Service Aide 26289.00000 5.257800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.257800e+04 5.257800e+04 0.00 NULL
2022 Queens Community Board #6 District Manager 123517.00000 1.235170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.235170e+05 1.235170e+05 0.00 NULL
2022 Queens Community Board #7 Community Assistant 29066.79510 5.813359e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.813359e+04 5.813359e+04 0.00 NULL
2022 Queens Community Board #7 Community Coordinator 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2022 Queens Community Board #7 District Manager 91557.00000 9.155700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.155700e+04 9.155700e+04 0.00 NULL
2022 Queens Community Board #8 Community Assistant 39965.00000 3.996500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.996500e+04 3.996500e+04 0.00 NULL
2022 Queens Community Board #8 Community Associate 43964.50000 8.792900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.792900e+04 8.792900e+04 0.00 NULL
2022 Queens Community Board #8 Community Service Aide 2115.54000 2.115540e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.115540e+03 2.115540e+03 0.00 NULL
2022 Queens Community Board #8 District Manager 126801.00000 1.268010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.268010e+05 1.268010e+05 0.00 NULL
2022 Queens Community Board #9 Community Assistant 33054.00000 6.610800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.610800e+04 6.610800e+04 0.00 NULL
2022 Queens Community Board #9 Community Associate 55179.00000 5.517900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.517900e+04 5.517900e+04 0.00 NULL
2022 Queens Community Board #9 District Manager 84254.00000 8.425400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.425400e+04 8.425400e+04 0.00 NULL
2022 Staten Island Community Bd #1 Community Associate 53303.00000 5.330300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.330300e+04 5.330300e+04 0.00 NULL
2022 Staten Island Community Bd #1 Community Coordinator 71698.00000 7.169800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.169800e+04 7.169800e+04 0.00 NULL
2022 Staten Island Community Bd #1 District Manager 98033.00000 9.803300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.803300e+04 9.803300e+04 0.00 NULL
2022 Staten Island Community Bd #2 Community Associate 31290.00000 3.129000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.129000e+04 3.129000e+04 0.00 NULL
2022 Staten Island Community Bd #2 District Manager 119747.00000 1.197470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.197470e+05 1.197470e+05 0.00 NULL
2022 Staten Island Community Bd #3 Community Coordinator 66980.00000 1.339600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.339600e+05 1.339600e+05 0.00 NULL
2022 Staten Island Community Bd #3 District Manager 104201.00000 1.042010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.042010e+05 1.042010e+05 0.00 NULL
2022 Tax Commission *Administrative Attorney 156958.00000 1.569580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.569580e+05 1.569580e+05 0.00 NULL
2022 Tax Commission *Certified Database Administrator 104053.00000 1.040530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.040530e+05 1.040530e+05 0.00 NULL
2022 Tax Commission Adm Manager-Non-Mgrl 83544.50000 1.670890e+05 4866.26 2.433130e+03 2433.130 87.00 2 2.433130e+03 4866.26 1.719553e+05 1.719553e+05 0.00 NULL
2022 Tax Commission Administrative Assessor 156354.00000 3.127080e+05 21007.32 1.050366e+04 10503.660 223.50 2 1.050366e+04 21007.32 3.337153e+05 3.337153e+05 0.00 NULL
2022 Tax Commission Administrative Staff Analyst 155000.00000 1.550000e+05 7868.31 7.868310e+03 7868.310 81.00 1 7.868310e+03 7868.31 1.628683e+05 1.628683e+05 0.00 NULL
2022 Tax Commission Agency Attorney 103642.58625 4.145703e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.145703e+05 4.145703e+05 0.00 NULL
2022 Tax Commission Assistant Counsel 160611.00000 1.606110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.606110e+05 1.606110e+05 0.00 NULL
2022 Tax Commission Certified It Administrator 107000.00000 1.070000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.070000e+05 1.070000e+05 0.00 NULL
2022 Tax Commission Certified It Developer 118450.00000 2.369000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.369000e+05 2.369000e+05 0.00 NULL
2022 Tax Commission City Assessor 96294.57895 1.829597e+06 158479.45 8.341024e+03 6075.250 2044.25 19 6.075250e+03 115429.75 1.988076e+06 1.945027e+06 43049.70 NULL
2022 Tax Commission College Aide 9582.07212 1.245669e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.245669e+05 1.245669e+05 0.00 NULL
2022 Tax Commission Commissioner 73626.42857 5.153850e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.153850e+05 5.153850e+05 0.00 NULL
2022 Tax Commission Computer Associate 84407.00000 8.440700e+04 555.34 5.553400e+02 555.340 9.00 1 5.553400e+02 555.34 8.496234e+04 8.496234e+04 0.00 NULL
2022 Tax Commission Computer Specialist 116820.00000 1.168200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.168200e+05 1.168200e+05 0.00 NULL
2022 Tax Commission Computer Systems Manager 179040.00000 1.790400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.790400e+05 1.790400e+05 0.00 NULL
2022 Tax Commission Executive Agency Counsel 110549.00000 1.105490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.105490e+05 1.105490e+05 0.00 NULL
2022 Tax Commission Executive Assistant To The President Of The Tax Commission 147708.00000 1.477080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.477080e+05 1.477080e+05 0.00 NULL
2022 Tax Commission President 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2022 Tax Commission Principal Administrative Associate - Non Supvr 77200.00000 4.632000e+05 15896.40 2.649400e+03 0.880 283.00 6 8.800000e-01 5.28 4.790964e+05 4.632053e+05 15891.12 NULL
2022 Tax Commission Secretary 62820.00000 6.282000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.282000e+04 6.282000e+04 0.00 NULL
2022 Tax Commission Secretary Of The Tax Commission 63709.00000 6.370900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.370900e+04 6.370900e+04 0.00 NULL
2022 Tax Commission Secretary To The President 84460.00000 8.446000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.446000e+04 8.446000e+04 0.00 NULL
2022 Tax Commission Special Assistant 163243.00000 1.632430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.632430e+05 1.632430e+05 0.00 NULL
2022 Taxi & Limousine Commission Accountant 80183.00000 3.207320e+05 594.67 1.486675e+02 0.000 16.25 4 0.000000e+00 0.00 3.213267e+05 3.207320e+05 594.67 NULL
2022 Taxi & Limousine Commission Adm Manager-Non-Mgrl 83028.40000 4.151420e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.151420e+05 4.151420e+05 0.00 NULL
2022 Taxi & Limousine Commission Admin Community Relations Specialist 86092.00000 2.582760e+05 10.45 3.483333e+00 0.000 0.00 3 0.000000e+00 0.00 2.582865e+05 2.582760e+05 10.45 NULL
2022 Taxi & Limousine Commission Administratiive Taxi & Limousine Inspector 110103.58824 1.871761e+06 2160.46 1.270859e+02 0.000 37.50 17 0.000000e+00 0.00 1.873921e+06 1.871761e+06 2160.46 NULL
2022 Taxi & Limousine Commission Administrative Accountant 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2022 Taxi & Limousine Commission Administrative City Planner 131000.00000 1.310000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.310000e+05 1.310000e+05 0.00 NULL
2022 Taxi & Limousine Commission Administrative Manager 164661.00000 1.646610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.646610e+05 1.646610e+05 0.00 NULL
2022 Taxi & Limousine Commission Administrative Procurement Analyst-Non-Mgrl 102000.00000 1.020000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020000e+05 1.020000e+05 0.00 NULL
2022 Taxi & Limousine Commission Administrative Public Information Specialist 182519.00000 1.825190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.825190e+05 1.825190e+05 0.00 NULL
2022 Taxi & Limousine Commission Administrative Quality Assurance Specialist 148798.50000 2.975970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.975970e+05 2.975970e+05 0.00 NULL
2022 Taxi & Limousine Commission Administrative Staff Analyst 120196.83333 1.442362e+06 3.32 2.766667e-01 0.000 0.00 12 0.000000e+00 0.00 1.442365e+06 1.442362e+06 3.32 NULL
2022 Taxi & Limousine Commission Agency Attorney 77690.90476 3.263018e+06 55676.46 1.325630e+03 0.000 1061.25 42 0.000000e+00 0.00 3.318694e+06 3.263018e+06 55676.46 NULL
2022 Taxi & Limousine Commission Agency Attorney Interne 65517.00000 1.965510e+05 8297.53 2.765843e+03 2663.970 161.00 3 2.663970e+03 7991.91 2.048485e+05 2.045429e+05 305.62 NULL
2022 Taxi & Limousine Commission Associate Investigator 73089.50000 1.461790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.461790e+05 1.461790e+05 0.00 NULL
2022 Taxi & Limousine Commission Associate Staff Analyst 86668.00000 1.733360e+05 13.15 6.575000e+00 6.575 0.00 2 6.575000e+00 13.15 1.733491e+05 1.733491e+05 0.00 NULL
2022 Taxi & Limousine Commission Associate Taxi & Limousine Inspector 67179.81818 3.694890e+06 106914.52 1.943900e+03 719.980 2043.50 55 7.199800e+02 39598.90 3.801805e+06 3.734489e+06 67315.62 NULL
2022 Taxi & Limousine Commission Cashier 37435.81304 2.620507e+05 355.09 5.072714e+01 0.000 15.50 7 0.000000e+00 0.00 2.624058e+05 2.620507e+05 355.09 NULL
2022 Taxi & Limousine Commission Certified It Administrator 131288.50000 2.625770e+05 846.00 4.230000e+02 423.000 10.00 2 4.230000e+02 846.00 2.634230e+05 2.634230e+05 0.00 NULL
2022 Taxi & Limousine Commission Chairman 243171.00000 4.863420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863420e+05 4.863420e+05 0.00 NULL
2022 Taxi & Limousine Commission City Research Scientist 91210.00000 7.296800e+05 7180.47 8.975588e+02 0.000 137.00 8 0.000000e+00 0.00 7.368605e+05 7.296800e+05 7180.47 NULL
2022 Taxi & Limousine Commission City Tax Auditor 65948.00000 6.594800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.594800e+04 6.594800e+04 0.00 NULL
2022 Taxi & Limousine Commission Clerical Aide 35841.50000 7.168300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.168300e+04 7.168300e+04 0.00 NULL
2022 Taxi & Limousine Commission Clerical Associate 45761.37602 2.013501e+06 18302.23 4.159598e+02 0.000 655.00 44 0.000000e+00 0.00 2.031803e+06 2.013501e+06 18302.23 NULL
2022 Taxi & Limousine Commission College Aide 5804.35096 7.545656e+04 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 7.545656e+04 7.545656e+04 0.00 NULL
2022 Taxi & Limousine Commission Community Assistant 34363.17429 3.779949e+05 27849.29 2.531754e+03 0.000 1004.50 11 0.000000e+00 0.00 4.058442e+05 3.779949e+05 27849.29 NULL
2022 Taxi & Limousine Commission Community Associate 45653.12400 3.287025e+06 41439.99 5.755554e+02 0.000 1295.62 72 0.000000e+00 0.00 3.328465e+06 3.287025e+06 41439.99 NULL
2022 Taxi & Limousine Commission Community Coordinator 69178.27027 2.559596e+06 7658.18 2.069778e+02 0.000 196.75 37 0.000000e+00 0.00 2.567254e+06 2.559596e+06 7658.18 NULL
2022 Taxi & Limousine Commission Computer Aide-Non-Spvr 53951.56625 2.158063e+05 607.86 1.519650e+02 0.000 17.50 4 0.000000e+00 0.00 2.164141e+05 2.158063e+05 607.86 NULL
2022 Taxi & Limousine Commission Computer Associate 73355.42750 3.667771e+05 1835.76 3.671520e+02 0.000 41.00 5 0.000000e+00 0.00 3.686129e+05 3.667771e+05 1835.76 NULL
2022 Taxi & Limousine Commission Computer Operations Manager 143613.50000 2.872270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.872270e+05 2.872270e+05 0.00 NULL
2022 Taxi & Limousine Commission Computer Programmer Analyst 78523.92000 7.852392e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.852392e+04 7.852392e+04 0.00 NULL
2022 Taxi & Limousine Commission Computer Specialist 108367.72727 1.192045e+06 839.18 7.628909e+01 0.000 13.25 11 0.000000e+00 0.00 1.192884e+06 1.192045e+06 839.18 NULL
2022 Taxi & Limousine Commission Computer Systems Manager 138203.60000 1.382036e+06 380.54 3.805400e+01 0.000 6.00 10 0.000000e+00 0.00 1.382417e+06 1.382036e+06 380.54 NULL
2022 Taxi & Limousine Commission Customer Information Representative Ma L 1549 42817.50337 5.566275e+05 4805.61 3.696623e+02 0.000 196.00 13 0.000000e+00 0.00 5.614332e+05 5.566275e+05 4805.61 NULL
2022 Taxi & Limousine Commission Deputy Commissioner 187460.00000 1.874600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.874600e+05 1.874600e+05 0.00 NULL
2022 Taxi & Limousine Commission Economist 66231.25000 2.649250e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.649250e+05 2.649250e+05 0.00 NULL
2022 Taxi & Limousine Commission Executive Agency Counsel 147397.07692 1.916162e+06 5734.35 4.411038e+02 0.000 120.50 13 0.000000e+00 0.00 1.921896e+06 1.916162e+06 5734.35 NULL
2022 Taxi & Limousine Commission Graphic Artist 52433.00000 5.243300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.243300e+04 5.243300e+04 0.00 NULL
2022 Taxi & Limousine Commission Investigator 66000.00000 6.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.600000e+04 6.600000e+04 0.00 NULL
2022 Taxi & Limousine Commission It Project Specialist 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2022 Taxi & Limousine Commission Maintenance Worker NA NA 18973.82 6.324607e+03 6333.320 406.25 3 6.324607e+03 18973.82 NA NA NA NULL
2022 Taxi & Limousine Commission Motor Vehicle Operator 13941.69563 5.576678e+04 8208.40 2.052100e+03 1976.390 283.75 4 1.976390e+03 7905.56 6.397518e+04 6.367234e+04 302.84 NULL
2022 Taxi & Limousine Commission Operations Communications Specialist 37301.31500 1.492053e+05 1692.30 4.230750e+02 127.565 56.00 4 1.275650e+02 510.26 1.508976e+05 1.497155e+05 1182.04 NULL
2022 Taxi & Limousine Commission Principal Administrative Associate - Non Supvr 69317.30000 1.663615e+06 15154.73 6.314471e+02 0.000 284.00 24 0.000000e+00 0.00 1.678770e+06 1.663615e+06 15154.73 NULL
2022 Taxi & Limousine Commission Procurement Analyst 66744.00000 6.674400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.674400e+04 6.674400e+04 0.00 NULL
2022 Taxi & Limousine Commission Secretary 42223.50000 8.444700e+04 874.02 4.370100e+02 437.010 31.00 2 4.370100e+02 874.02 8.532102e+04 8.532102e+04 0.00 NULL
2022 Taxi & Limousine Commission Staff Analyst 51812.33333 3.108740e+05 209.10 3.485000e+01 0.000 1.50 6 0.000000e+00 0.00 3.110831e+05 3.108740e+05 209.10 NULL
2022 Taxi & Limousine Commission Staff Analyst Trainee 57783.00000 5.778300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.778300e+04 5.778300e+04 0.00 NULL
2022 Taxi & Limousine Commission Stock Worker 26457.24800 1.322862e+05 8530.09 1.706018e+03 629.200 388.50 5 6.292000e+02 3146.00 1.408163e+05 1.354322e+05 5384.09 NULL
2022 Taxi & Limousine Commission Supervisor Of Stock Workers 45600.54000 1.824022e+05 20776.52 5.194130e+03 4017.510 594.25 4 4.017510e+03 16070.04 2.031787e+05 1.984722e+05 4706.48 NULL
2022 Taxi & Limousine Commission Taxi And Limousine Inspector 51644.03980 1.038045e+07 182047.33 9.057081e+02 378.870 4517.25 201 3.788700e+02 76152.87 1.056250e+07 1.045660e+07 105894.46 NULL
2022 Taxi & Limousine Commission Telecommunications Associate 69676.00000 6.967600e+04 381.39 3.813900e+02 381.390 10.00 1 3.813900e+02 381.39 7.005739e+04 7.005739e+04 0.00 NULL
2022 Taxi & Limousine Commission Transportation Specialist 67946.00000 2.038380e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.038380e+05 2.038380e+05 0.00 NULL
2022 Teachers Retirement System Accountant 68834.14286 4.818390e+05 1950.28 2.786114e+02 0.000 30.75 7 0.000000e+00 0.00 4.837893e+05 4.818390e+05 1950.28 NULL
2022 Teachers Retirement System Actuarial Specialist Level I 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2022 Teachers Retirement System Adm Manager-Non-Mgrl 82648.85714 5.785420e+05 10041.06 1.434437e+03 0.000 225.25 7 0.000000e+00 0.00 5.885831e+05 5.785420e+05 10041.06 NULL
2022 Teachers Retirement System Administrative Accountant 91209.22222 8.208830e+05 5311.62 5.901800e+02 0.000 116.50 9 0.000000e+00 0.00 8.261946e+05 8.208830e+05 5311.62 NULL
2022 Teachers Retirement System Administrative Community Relations Specialist 98050.00000 9.805000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.805000e+04 9.805000e+04 0.00 NULL
2022 Teachers Retirement System Administrative Labor Relations Analyst 127842.00000 1.278420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.278420e+05 1.278420e+05 0.00 NULL
2022 Teachers Retirement System Administrative Management Auditor 157500.00000 3.150000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.150000e+05 3.150000e+05 0.00 NULL
2022 Teachers Retirement System Administrative Manager 113374.12500 9.069930e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.069930e+05 9.069930e+05 0.00 NULL
2022 Teachers Retirement System Administrative Project Manager 163126.00000 1.631260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.631260e+05 1.631260e+05 0.00 NULL
2022 Teachers Retirement System Administrative Public Information Specialist 101268.50000 2.025370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.025370e+05 2.025370e+05 0.00 NULL
2022 Teachers Retirement System Administrative Retirement Benefits Specialist 116636.25000 3.265815e+06 710.57 2.537750e+01 0.000 19.25 28 0.000000e+00 0.00 3.266526e+06 3.265815e+06 710.57 NULL
2022 Teachers Retirement System Administrative Retirements Benefits Specialist 89513.55556 8.056220e+05 8374.44 9.304933e+02 0.000 153.00 9 0.000000e+00 0.00 8.139964e+05 8.056220e+05 8374.44 NULL
2022 Teachers Retirement System Administrative Staff Analyst 103398.07143 1.447573e+06 1510.93 1.079236e+02 0.000 0.00 14 0.000000e+00 0.00 1.449084e+06 1.447573e+06 1510.93 NULL
2022 Teachers Retirement System Agency Attorney 100750.66667 3.022520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.022520e+05 3.022520e+05 0.00 NULL
2022 Teachers Retirement System Assistant Executive Director 185637.00000 5.569110e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.569110e+05 5.569110e+05 0.00 NULL
2022 Teachers Retirement System Assistant Retirement Benefits Examiner 49716.10526 9.446060e+05 8711.02 4.584747e+02 0.000 249.50 19 0.000000e+00 0.00 9.533170e+05 9.446060e+05 8711.02 NULL
2022 Teachers Retirement System Associate Public Records Officer 71616.00000 7.161600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.161600e+04 7.161600e+04 0.00 NULL
2022 Teachers Retirement System Associate Retirement Benefits Examiner 64673.49438 5.755941e+06 101047.99 1.135371e+03 0.000 1940.75 89 0.000000e+00 0.00 5.856989e+06 5.755941e+06 101047.99 NULL
2022 Teachers Retirement System Associate Staff Analyst 85523.00000 3.420920e+05 1678.83 4.197075e+02 422.725 5.00 4 4.197075e+02 1678.83 3.437708e+05 3.437708e+05 0.00 NULL
2022 Teachers Retirement System Bookkeeper 54029.75000 2.161190e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.161190e+05 2.161190e+05 0.00 NULL
2022 Teachers Retirement System Certified It Developer 127639.00000 1.276390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.276390e+05 1.276390e+05 0.00 NULL
2022 Teachers Retirement System Clerical Associate 53393.54545 5.873290e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.873290e+05 5.873290e+05 0.00 NULL
2022 Teachers Retirement System College Aide 9461.19896 1.135344e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.135344e+05 1.135344e+05 0.00 NULL
2022 Teachers Retirement System College Aide - Assignment Levels Ii And Iii 9582.67177 6.707870e+04 38.00 5.428571e+00 0.000 2.00 7 0.000000e+00 0.00 6.711670e+04 6.707870e+04 38.00 NULL
2022 Teachers Retirement System Community Associate 53185.00000 1.063700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.063700e+05 1.063700e+05 0.00 NULL
2022 Teachers Retirement System Community Coordinator 72249.66667 2.167490e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.167490e+05 2.167490e+05 0.00 NULL
2022 Teachers Retirement System Computer Associate 78496.88889 7.064720e+05 18511.65 2.056850e+03 0.000 296.88 9 0.000000e+00 0.00 7.249837e+05 7.064720e+05 18511.65 NULL
2022 Teachers Retirement System Computer Operations Manager 130805.50000 2.616110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.616110e+05 2.616110e+05 0.00 NULL
2022 Teachers Retirement System Computer Programmer Analyst 83740.00000 8.374000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.374000e+04 8.374000e+04 0.00 NULL
2022 Teachers Retirement System Computer Specialist 110192.61111 1.983467e+06 246.96 1.372000e+01 0.000 4.50 18 0.000000e+00 0.00 1.983714e+06 1.983467e+06 246.96 NULL
2022 Teachers Retirement System Computer Systems Manager 156186.98039 7.965536e+06 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 7.965536e+06 7.965536e+06 0.00 NULL
2022 Teachers Retirement System Customer Information Representative Ma L 1549 55454.70000 1.109094e+06 20107.06 1.005353e+03 24.630 408.25 20 2.463000e+01 492.60 1.129201e+06 1.109587e+06 19614.46 NULL
2022 Teachers Retirement System Deputy Executive Director 226402.00000 2.264020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.264020e+05 2.264020e+05 0.00 NULL
2022 Teachers Retirement System Executive Agency Counsel 175186.00000 3.503720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.503720e+05 3.503720e+05 0.00 NULL
2022 Teachers Retirement System Executive Director 244491.00000 2.444910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.444910e+05 2.444910e+05 0.00 NULL
2022 Teachers Retirement System Graphic Artist 64677.50000 1.293550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.293550e+05 1.293550e+05 0.00 NULL
2022 Teachers Retirement System Investment Analyst 68407.33333 2.052220e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.052220e+05 2.052220e+05 0.00 NULL
2022 Teachers Retirement System Labor Relations Analyst Trainee 52360.00000 1.047200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.047200e+05 1.047200e+05 0.00 NULL
2022 Teachers Retirement System Management Auditor 74739.20000 3.736960e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.736960e+05 3.736960e+05 0.00 NULL
2022 Teachers Retirement System Management Auditor Trainee 51100.00000 5.110000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.110000e+04 5.110000e+04 0.00 NULL
2022 Teachers Retirement System Office Machine Aide 48381.25000 1.935250e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.935250e+05 1.935250e+05 0.00 NULL
2022 Teachers Retirement System Paralegal Aide 59724.00000 5.972400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.972400e+04 5.972400e+04 0.00 NULL
2022 Teachers Retirement System Principal Administrative Associate - Non Supvr 68054.21429 9.527590e+05 5365.82 3.832729e+02 0.000 107.50 14 0.000000e+00 0.00 9.581248e+05 9.527590e+05 5365.82 NULL
2022 Teachers Retirement System Public Records Officer 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2022 Teachers Retirement System Secretary To The Executive Director Of Retirement System 49329.00000 4.932900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.932900e+04 4.932900e+04 0.00 NULL
2022 Teachers Retirement System Staff Analyst 69296.00000 2.078880e+05 277.10 9.236667e+01 0.000 5.00 3 0.000000e+00 0.00 2.081651e+05 2.078880e+05 277.10 NULL
2022 Teachers Retirement System Staff Analyst Trainee 47061.00000 4.706100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.706100e+04 4.706100e+04 0.00 NULL
2022 Teachers Retirement System Summer College Intern 3204.33974 1.249692e+05 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 1.249692e+05 1.249692e+05 0.00 NULL
2022 Teachers Retirement System Supervisor Of Office Machine Operations 48341.00000 4.834100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.834100e+04 4.834100e+04 0.00 NULL
2022 Teachers Retirement System Supervisor Of Stock Workers 56871.00000 1.706130e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.706130e+05 1.706130e+05 0.00 NULL
2022 Teachers Retirement System Telecommunications Associate 63333.33333 1.900000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.900000e+05 1.900000e+05 0.00 NULL
2023 Admin For Children’s Svcs *Attorney At Law 109691.28571 7.678390e+05 8664.69 1.237813e+03 0.000 125.00 7 0.000000e+00 0.00 7.765037e+05 7.678390e+05 8664.69 NULL
2023 Admin For Children’s Svcs *Certified Database Administrator 128888.50000 2.577770e+05 891.50 4.457500e+02 445.750 7.00 2 4.457500e+02 891.50 2.586685e+05 2.586685e+05 0.00 NULL
2023 Admin For Children’s Svcs *Certified Local Area Network Administrator 92871.50000 1.857430e+05 4.17 2.085000e+00 2.085 0.00 2 2.085000e+00 4.17 1.857472e+05 1.857472e+05 0.00 NULL
2023 Admin For Children’s Svcs *Cook 41121.22222 3.700910e+05 82718.53 9.190948e+03 5179.970 2835.25 9 5.179970e+03 46619.73 4.528095e+05 4.167107e+05 36098.80 NULL
2023 Admin For Children’s Svcs *Senior Cook 45036.80000 2.251840e+05 25336.71 5.067342e+03 494.270 797.00 5 4.942700e+02 2471.35 2.505207e+05 2.276554e+05 22865.36 NULL
2023 Admin For Children’s Svcs Accountant 75118.88889 6.760700e+05 4.58 5.088889e-01 0.000 0.00 9 0.000000e+00 0.00 6.760746e+05 6.760700e+05 4.58 NULL
2023 Admin For Children’s Svcs Adm Manager-Non-Mgrl 82578.81818 4.541835e+06 182274.25 3.314077e+03 0.000 3241.50 55 0.000000e+00 0.00 4.724109e+06 4.541835e+06 182274.25 NULL
2023 Admin For Children’s Svcs Admin Community Relations Specialist 89355.42105 1.697753e+06 91948.76 4.839408e+03 0.000 1390.25 19 0.000000e+00 0.00 1.789702e+06 1.697753e+06 91948.76 NULL
2023 Admin For Children’s Svcs Admin Construction Project Manager 144442.00000 1.444420e+05 8133.96 8.133960e+03 8133.960 78.00 1 8.133960e+03 8133.96 1.525760e+05 1.525760e+05 0.00 NULL
2023 Admin For Children’s Svcs Administrative Accountant 101953.50000 2.039070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.039070e+05 2.039070e+05 0.00 NULL
2023 Admin For Children’s Svcs Administrative Architect 140042.66667 4.201280e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.201280e+05 4.201280e+05 0.00 NULL
2023 Admin For Children’s Svcs Administrative Business Promotion Coordinator 113062.00000 4.522480e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.522480e+05 4.522480e+05 0.00 NULL
2023 Admin For Children’s Svcs Administrative Community Relations Specialist 136799.00000 1.367990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.367990e+05 1.367990e+05 0.00 NULL
2023 Admin For Children’s Svcs Administrative Construction Project Manager 151893.00000 1.518930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.518930e+05 1.518930e+05 0.00 NULL
2023 Admin For Children’s Svcs Administrative Contract Specialist 113955.00000 3.418650e+05 81253.75 2.708458e+04 0.000 997.50 3 0.000000e+00 0.00 4.231188e+05 3.418650e+05 81253.75 NULL
2023 Admin For Children’s Svcs Administrative Director Of Residential Child Care 100168.05769 5.208739e+06 734065.11 1.411664e+04 1230.445 11145.50 52 1.230445e+03 63983.14 5.942804e+06 5.272722e+06 670081.97 NULL
2023 Admin For Children’s Svcs Administrative Director Of Social Services 116717.18104 3.524859e+07 1067641.55 3.535237e+03 0.000 15313.25 302 0.000000e+00 0.00 3.631623e+07 3.524859e+07 1067641.55 NULL
2023 Admin For Children’s Svcs Administrative Juvenile Counselor 98219.00000 1.964380e+05 34.05 1.702500e+01 17.025 0.00 2 1.702500e+01 34.05 1.964720e+05 1.964720e+05 0.00 NULL
2023 Admin For Children’s Svcs Administrative Management Auditor 115440.33333 3.463210e+05 8.95 2.983333e+00 0.000 0.00 3 0.000000e+00 0.00 3.463300e+05 3.463210e+05 8.95 NULL
2023 Admin For Children’s Svcs Administrative Manager 181137.50000 3.622750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.622750e+05 3.622750e+05 0.00 NULL
2023 Admin For Children’s Svcs Administrative Nutritionist 100226.50000 2.004530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.004530e+05 2.004530e+05 0.00 NULL
2023 Admin For Children’s Svcs Administrative Procurement Analyst 130885.50000 2.617710e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.617710e+05 2.617710e+05 0.00 NULL
2023 Admin For Children’s Svcs Administrative Procurement Analyst-Non-Mgrl 74654.50000 4.479270e+05 -4.13 -6.883333e-01 0.000 0.00 6 -6.883333e-01 -4.13 4.479229e+05 4.479229e+05 0.00 NULL
2023 Admin For Children’s Svcs Administrative Project Manager 119318.00000 3.579540e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.579540e+05 3.579540e+05 0.00 NULL
2023 Admin For Children’s Svcs Administrative Psychologist 6615.00000 6.615000e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.615000e+03 6.615000e+03 0.00 NULL
2023 Admin For Children’s Svcs Administrative Public Health Nurse 131730.25000 5.269210e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.269210e+05 5.269210e+05 0.00 NULL
2023 Admin For Children’s Svcs Administrative Public Information Specialist 151342.00000 3.026840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.026840e+05 3.026840e+05 0.00 NULL
2023 Admin For Children’s Svcs Administrative Public Information Specialist Nm Former M1/M2 112472.00000 1.124720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.124720e+05 1.124720e+05 0.00 NULL
2023 Admin For Children’s Svcs Administrative Staff Analyst 113131.86466 1.504654e+07 140718.36 1.058033e+03 0.000 1879.75 133 0.000000e+00 0.00 1.518726e+07 1.504654e+07 140718.36 NULL
2023 Admin For Children’s Svcs Agency Attorney 98279.68137 2.004906e+07 749886.99 3.675917e+03 539.235 11423.00 204 5.392350e+02 110003.94 2.079894e+07 2.015906e+07 639883.05 NULL
2023 Admin For Children’s Svcs Agency Attorney Interne 73358.20000 2.567537e+06 13129.24 3.751211e+02 0.000 294.00 35 0.000000e+00 0.00 2.580666e+06 2.567537e+06 13129.24 NULL
2023 Admin For Children’s Svcs Agency Chief Contracting Officer 201514.50000 4.030290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.030290e+05 4.030290e+05 0.00 NULL
2023 Admin For Children’s Svcs Architect 101102.00000 2.022040e+05 141.78 7.089000e+01 70.890 2.50 2 7.089000e+01 141.78 2.023458e+05 2.023458e+05 0.00 NULL
2023 Admin For Children’s Svcs Assistant Commissioner 161000.00000 1.610000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.610000e+05 1.610000e+05 0.00 NULL
2023 Admin For Children’s Svcs Assistant Commissioner For Facilities Development & Const 235224.00000 2.352240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.352240e+05 2.352240e+05 0.00 NULL
2023 Admin For Children’s Svcs Assistant Commissioner For Program Development 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2023 Admin For Children’s Svcs Associate Contract Specialist 75641.00000 7.564100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.564100e+04 7.564100e+04 0.00 NULL
2023 Admin For Children’s Svcs Associate Investigator 87495.00000 8.749500e+04 9853.19 9.853190e+03 9853.190 190.25 1 9.853190e+03 9853.19 9.734819e+04 9.734819e+04 0.00 NULL
2023 Admin For Children’s Svcs Associate Project Manager 95339.00000 9.533900e+04 354.40 3.544000e+02 354.400 5.00 1 3.544000e+02 354.40 9.569340e+04 9.569340e+04 0.00 NULL
2023 Admin For Children’s Svcs Associate Staff Analyst 86430.22581 5.358674e+06 86126.24 1.389133e+03 0.000 1362.00 62 0.000000e+00 0.00 5.444800e+06 5.358674e+06 86126.24 NULL
2023 Admin For Children’s Svcs Associate Youth Development Specialist 78095.53191 7.340980e+06 2578152.08 2.742715e+04 19960.800 40304.25 94 1.996080e+04 1876315.20 9.919132e+06 9.217295e+06 701836.88 NULL
2023 Admin For Children’s Svcs Asst Commissioner For Non-Secure Detention Juvenile Justice 172287.00000 1.722870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.722870e+05 1.722870e+05 0.00 NULL
2023 Admin For Children’s Svcs Asst Commissioner For Planning & Prg Deve 134197.00000 1.341970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.341970e+05 1.341970e+05 0.00 NULL
2023 Admin For Children’s Svcs Bookkeeper 53553.33333 1.606600e+05 1.04 3.466667e-01 0.000 0.00 3 0.000000e+00 0.00 1.606610e+05 1.606600e+05 1.04 NULL
2023 Admin For Children’s Svcs Carpenter NA NA 109374.91 2.734373e+04 29060.640 1433.00 4 2.734373e+04 109374.91 NA NA NA NULL
2023 Admin For Children’s Svcs Caseworker 52952.73913 2.435826e+06 23643.01 5.139785e+02 0.000 738.50 46 0.000000e+00 0.00 2.459469e+06 2.435826e+06 23643.01 NULL
2023 Admin For Children’s Svcs Certified It Administrator 121442.83333 1.457314e+06 111432.50 9.286042e+03 1151.360 1323.25 12 1.151360e+03 13816.32 1.568746e+06 1.471130e+06 97616.18 NULL
2023 Admin For Children’s Svcs Certified It Developer 110115.50000 4.404620e+05 315.18 7.879500e+01 4.705 5.00 4 4.705000e+00 18.82 4.407772e+05 4.404808e+05 296.36 NULL
2023 Admin For Children’s Svcs Chaplain 68606.00000 6.860600e+04 42336.90 4.233690e+04 42336.900 845.25 1 4.233690e+04 42336.90 1.109429e+05 1.109429e+05 0.00 NULL
2023 Admin For Children’s Svcs Child And Family Specialist 93008.21224 2.278701e+07 898825.16 3.668674e+03 21.230 13534.50 245 2.123000e+01 5201.35 2.368584e+07 2.279221e+07 893623.81 NULL
2023 Admin For Children’s Svcs Child Protective Specialist 62595.45020 1.910413e+08 17254846.99 5.653620e+03 1284.340 365313.72 3052 1.284340e+03 3919805.68 2.082962e+08 1.949611e+08 13335041.31 NULL
2023 Admin For Children’s Svcs Child Protective Specialist Supervisor 89565.59425 5.606806e+07 8165538.22 1.304399e+04 5512.435 120026.97 626 5.512435e+03 3450784.31 6.423360e+07 5.951885e+07 4714753.91 NULL
2023 Admin For Children’s Svcs Child Welfare Specialist 64595.75263 1.227319e+07 1010069.55 5.316156e+03 1.005 21287.00 190 1.005000e+00 190.95 1.328326e+07 1.227338e+07 1009878.60 NULL
2023 Admin For Children’s Svcs Child Welfare Specialist Supervisor 86091.27941 1.170841e+07 590995.18 4.345553e+03 2.785 9981.25 136 2.785000e+00 378.76 1.229941e+07 1.170879e+07 590616.42 NULL
2023 Admin For Children’s Svcs Children’s Counselor 60299.51850 1.808986e+05 25499.35 8.499783e+03 310.860 644.25 3 3.108600e+02 932.58 2.063979e+05 1.818311e+05 24566.77 NULL
2023 Admin For Children’s Svcs City Custodial Assistant 41637.00000 8.327400e+04 2248.82 1.124410e+03 1124.410 65.00 2 1.124410e+03 2248.82 8.552282e+04 8.552282e+04 0.00 NULL
2023 Admin For Children’s Svcs City Laborer NA NA 58706.74 9.784457e+03 11779.045 959.50 6 9.784457e+03 58706.74 NA NA NA NULL
2023 Admin For Children’s Svcs City Medical Director 167554.78250 6.702191e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.702191e+05 6.702191e+05 0.00 NULL
2023 Admin For Children’s Svcs City Research Scientist 99821.73585 5.290552e+06 58711.09 1.107756e+03 0.000 838.75 53 0.000000e+00 0.00 5.349263e+06 5.290552e+06 58711.09 NULL
2023 Admin For Children’s Svcs Clerical Aide 34923.00000 3.492300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.492300e+04 3.492300e+04 0.00 NULL
2023 Admin For Children’s Svcs Clerical Associate 47974.80952 5.037355e+06 183720.87 1.749723e+03 0.000 4175.00 105 0.000000e+00 0.00 5.221076e+06 5.037355e+06 183720.87 NULL
2023 Admin For Children’s Svcs Commissioner Of Children’s Services 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2023 Admin For Children’s Svcs Community Assistant 40743.33064 1.670477e+06 47004.27 1.146446e+03 0.000 1626.25 41 0.000000e+00 0.00 1.717481e+06 1.670477e+06 47004.27 NULL
2023 Admin For Children’s Svcs Community Associate 49156.32000 3.686724e+06 297514.42 3.966859e+03 49.340 8221.25 75 4.934000e+01 3700.50 3.984238e+06 3.690424e+06 293813.92 NULL
2023 Admin For Children’s Svcs Community Coordinator 72671.47924 3.183011e+07 935922.80 2.136810e+03 0.000 19334.75 438 0.000000e+00 0.00 3.276603e+07 3.183011e+07 935922.80 NULL
2023 Admin For Children’s Svcs Computer Aide-Non-Spvr 56722.00000 4.537760e+05 29.01 3.626250e+00 0.000 0.00 8 0.000000e+00 0.00 4.538050e+05 4.537760e+05 29.01 NULL
2023 Admin For Children’s Svcs Computer Associate 70623.62451 2.895569e+06 15822.88 3.859239e+02 1.650 365.25 41 1.650000e+00 67.65 2.911391e+06 2.895636e+06 15755.23 NULL
2023 Admin For Children’s Svcs Computer Service Technician 51468.00000 5.146800e+05 1023.02 1.023020e+02 23.280 34.00 10 2.328000e+01 232.80 5.157030e+05 5.149128e+05 790.22 NULL
2023 Admin For Children’s Svcs Computer Specialist 113825.88235 3.870080e+06 15481.46 4.553371e+02 0.000 207.25 34 0.000000e+00 0.00 3.885561e+06 3.870080e+06 15481.46 NULL
2023 Admin For Children’s Svcs Computer Systems Manager 130401.38235 4.433647e+06 10624.18 3.124759e+02 0.000 122.25 34 0.000000e+00 0.00 4.444271e+06 4.433647e+06 10624.18 NULL
2023 Admin For Children’s Svcs Confidential Strategy Planner 93110.33333 5.586620e+05 73.70 1.228333e+01 0.000 0.00 6 0.000000e+00 0.00 5.587357e+05 5.586620e+05 73.70 NULL
2023 Admin For Children’s Svcs Congreg Care Spec - Acs 49616.05229 7.591256e+06 2218655.24 1.450101e+04 3440.790 55247.52 153 3.440790e+03 526440.87 9.809911e+06 8.117697e+06 1692214.37 NULL
2023 Admin For Children’s Svcs Congreg Care Spec- Djj 65678.33333 7.881400e+05 178030.17 1.483585e+04 873.465 3815.00 12 8.734650e+02 10481.58 9.661702e+05 7.986216e+05 167548.59 NULL
2023 Admin For Children’s Svcs Construction Project Manager 108451.33333 6.507080e+05 33284.52 5.547420e+03 2624.450 374.00 6 2.624450e+03 15746.70 6.839925e+05 6.664547e+05 17537.82 NULL
2023 Admin For Children’s Svcs Contract Specialist 52183.00000 5.218300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.218300e+04 5.218300e+04 0.00 NULL
2023 Admin For Children’s Svcs Custodian 45124.37500 3.609950e+05 73776.99 9.222124e+03 7785.930 2559.50 8 7.785930e+03 62287.44 4.347720e+05 4.232824e+05 11489.55 NULL
2023 Admin For Children’s Svcs Deputy Commissioner 223303.33333 6.699100e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.699100e+05 6.699100e+05 0.00 NULL
2023 Admin For Children’s Svcs Deputy Director Of Administration 130881.62500 1.047053e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.047053e+06 1.047053e+06 0.00 NULL
2023 Admin For Children’s Svcs Deputy Director Of Headstart Program 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2023 Admin For Children’s Svcs Deputy General Counsel 203593.00000 2.035930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.035930e+05 2.035930e+05 0.00 NULL
2023 Admin For Children’s Svcs Deputy Superintendent 115362.00000 2.307240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.307240e+05 2.307240e+05 0.00 NULL
2023 Admin For Children’s Svcs Director Of Advocacy 113300.00000 1.133000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133000e+05 1.133000e+05 0.00 NULL
2023 Admin For Children’s Svcs Director Of Field Operations 111380.34653 3.374824e+07 181858.32 6.001925e+02 0.000 2779.25 303 0.000000e+00 0.00 3.393010e+07 3.374824e+07 181858.32 NULL
2023 Admin For Children’s Svcs Director Of Headstart Program 162000.00000 1.620000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.620000e+05 1.620000e+05 0.00 NULL
2023 Admin For Children’s Svcs Director Of Program Planning 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2023 Admin For Children’s Svcs Director Of Public Information 120000.00000 2.400000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.400000e+05 2.400000e+05 0.00 NULL
2023 Admin For Children’s Svcs Director Of Security 136800.00000 1.368000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.368000e+05 1.368000e+05 0.00 NULL
2023 Admin For Children’s Svcs Electrician NA NA 141362.10 4.712070e+04 51262.920 1498.75 3 4.712070e+04 141362.10 NA NA NA NULL
2023 Admin For Children’s Svcs Exec Asst To The Deputy Commissioner 185400.00000 1.854000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.854000e+05 1.854000e+05 0.00 NULL
2023 Admin For Children’s Svcs Executive Agency Counsel 160978.52000 1.207339e+07 9769.42 1.302589e+02 0.000 151.75 75 0.000000e+00 0.00 1.208316e+07 1.207339e+07 9769.42 NULL
2023 Admin For Children’s Svcs Executive Assistant To The Executive Deputy Adm 129800.00000 1.298000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.298000e+05 1.298000e+05 0.00 NULL
2023 Admin For Children’s Svcs Executive Deputy Administrator 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2023 Admin For Children’s Svcs Executive Director Of Public And Private Partnerships 100000.00000 1.000000e+05 1152.98 1.152980e+03 1152.980 27.50 1 1.152980e+03 1152.98 1.011530e+05 1.011530e+05 0.00 NULL
2023 Admin For Children’s Svcs Graphic Artist 85227.50000 1.704550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.704550e+05 1.704550e+05 0.00 NULL
2023 Admin For Children’s Svcs Homemaker 41240.25000 1.649610e+05 1682.48 4.206200e+02 226.740 68.50 4 2.267400e+02 906.96 1.666435e+05 1.658680e+05 775.52 NULL
2023 Admin For Children’s Svcs Institutional Aide 42649.69231 1.663338e+06 292094.76 7.489609e+03 2906.030 9290.25 39 2.906030e+03 113335.17 1.955433e+06 1.776673e+06 178759.59 NULL
2023 Admin For Children’s Svcs Investigator 90318.00000 2.709540e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.709540e+05 2.709540e+05 0.00 NULL
2023 Admin For Children’s Svcs It Infrastructure Engineer 163909.00000 1.639090e+05 32578.57 3.257857e+04 32578.570 267.33 1 3.257857e+04 32578.57 1.964876e+05 1.964876e+05 0.00 NULL
2023 Admin For Children’s Svcs It Project Specialist 105959.00000 5.297950e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.297950e+05 5.297950e+05 0.00 NULL
2023 Admin For Children’s Svcs Maintenance Worker 62709.01610 6.270902e+04 6742.09 6.742090e+03 6742.090 160.25 1 6.742090e+03 6742.09 6.945111e+04 6.945111e+04 0.00 NULL
2023 Admin For Children’s Svcs Management Auditor 83856.50000 1.677130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.677130e+05 1.677130e+05 0.00 NULL
2023 Admin For Children’s Svcs Motor Vehicle Operator 53187.70588 9.041910e+05 586594.04 3.450553e+04 36096.980 14471.17 17 3.450553e+04 586594.04 1.490785e+06 1.490785e+06 0.00 NULL
2023 Admin For Children’s Svcs Motor Vehicle Supervisor 61683.00000 6.168300e+04 7631.47 7.631470e+03 7631.470 151.50 1 7.631470e+03 7631.47 6.931447e+04 6.931447e+04 0.00 NULL
2023 Admin For Children’s Svcs Painter NA NA 131384.91 4.379497e+04 62215.400 1946.00 3 4.379497e+04 131384.91 NA NA NA NULL
2023 Admin For Children’s Svcs Paralegal Aide 49513.93333 7.427090e+05 88.36 5.890667e+00 0.000 3.00 15 0.000000e+00 0.00 7.427974e+05 7.427090e+05 88.36 NULL
2023 Admin For Children’s Svcs Plumber NA NA 74669.03 1.866726e+04 13819.595 534.75 4 1.381959e+04 55278.38 NA NA NA NULL
2023 Admin For Children’s Svcs Principal Administrative Associate - Non Supvr 59491.01121 1.832323e+07 802257.51 2.604732e+03 0.000 17526.27 308 0.000000e+00 0.00 1.912549e+07 1.832323e+07 802257.51 NULL
2023 Admin For Children’s Svcs Procurement Analyst 73567.20000 3.678360e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.678360e+05 3.678360e+05 0.00 NULL
2023 Admin For Children’s Svcs Program Evaluator 87334.29787 8.209424e+06 251381.79 2.674274e+03 0.000 4092.25 94 0.000000e+00 0.00 8.460806e+06 8.209424e+06 251381.79 NULL
2023 Admin For Children’s Svcs Protection Agent 74320.45963 1.196559e+07 220009.03 1.366516e+03 0.000 3933.83 161 0.000000e+00 0.00 1.218560e+07 1.196559e+07 220009.03 NULL
2023 Admin For Children’s Svcs Public Health Assistant 42342.00000 4.234200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.234200e+04 4.234200e+04 0.00 NULL
2023 Admin For Children’s Svcs Research Assistant 62689.50000 2.507580e+05 9594.23 2.398557e+03 37.930 191.75 4 3.793000e+01 151.72 2.603522e+05 2.509097e+05 9442.51 NULL
2023 Admin For Children’s Svcs Secretary 51059.00000 1.021180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.021180e+05 1.021180e+05 0.00 NULL
2023 Admin For Children’s Svcs Secretary Of Comm 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2023 Admin For Children’s Svcs Senior Advisor For Investigations 147202.50000 2.944050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.944050e+05 2.944050e+05 0.00 NULL
2023 Admin For Children’s Svcs Senior Stationary Engineer NA NA 32930.70 1.646535e+04 16465.350 318.50 2 1.646535e+04 32930.70 NA NA NA NULL
2023 Admin For Children’s Svcs Sheet Metal Worker NA NA 15074.40 7.537200e+03 7537.200 129.00 2 7.537200e+03 15074.40 NA NA NA NULL
2023 Admin For Children’s Svcs Space Analyst 88323.00000 2.649690e+05 1185.67 3.952233e+02 0.000 19.50 3 0.000000e+00 0.00 2.661547e+05 2.649690e+05 1185.67 NULL
2023 Admin For Children’s Svcs Special Assistant To The Human Resources Administrator 154440.00000 1.544400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.544400e+05 1.544400e+05 0.00 NULL
2023 Admin For Children’s Svcs Special Officer 37714.06494 5.807966e+06 858101.80 5.572090e+03 1211.790 29753.90 154 1.211790e+03 186615.66 6.666068e+06 5.994582e+06 671486.14 NULL
2023 Admin For Children’s Svcs Staff Analyst 68543.00000 3.290064e+06 14939.69 3.112435e+02 0.000 343.25 48 0.000000e+00 0.00 3.305004e+06 3.290064e+06 14939.69 NULL
2023 Admin For Children’s Svcs Staff Nurse 85654.73333 1.284821e+06 3298.03 2.198687e+02 0.000 53.25 15 0.000000e+00 0.00 1.288119e+06 1.284821e+06 3298.03 NULL
2023 Admin For Children’s Svcs Stationary Engineer NA NA 679605.49 1.359211e+05 131478.690 6879.50 5 1.314787e+05 657393.45 NA NA NA NULL
2023 Admin For Children’s Svcs Stock Worker 36353.33333 1.090600e+05 1860.14 6.200467e+02 0.000 66.00 3 0.000000e+00 0.00 1.109201e+05 1.090600e+05 1860.14 NULL
2023 Admin For Children’s Svcs Strategic Initiative Specialist 137080.44444 1.233724e+06 11280.08 1.253342e+03 0.000 123.50 9 0.000000e+00 0.00 1.245004e+06 1.233724e+06 11280.08 NULL
2023 Admin For Children’s Svcs Superintendent 116834.50000 2.336690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.336690e+05 2.336690e+05 0.00 NULL
2023 Admin For Children’s Svcs Supervising Computer Service Technician 76950.27000 3.078011e+05 320.47 8.011750e+01 7.170 3.00 4 7.170000e+00 28.68 3.081215e+05 3.078298e+05 291.79 NULL
2023 Admin For Children’s Svcs Supervising Special Officer 59206.00000 1.835386e+06 359286.11 1.158987e+04 10713.230 8935.50 31 1.071323e+04 332110.13 2.194672e+06 2.167496e+06 27175.98 NULL
2023 Admin For Children’s Svcs Supervisor I 65874.66667 9.881200e+05 7310.49 4.873660e+02 0.000 166.25 15 0.000000e+00 0.00 9.954305e+05 9.881200e+05 7310.49 NULL
2023 Admin For Children’s Svcs Supervisor I Social Work 67447.33333 2.023420e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.023420e+05 2.023420e+05 0.00 NULL
2023 Admin For Children’s Svcs Supervisor Ii 76107.86364 1.674373e+06 49577.79 2.253536e+03 0.000 832.75 22 0.000000e+00 0.00 1.723951e+06 1.674373e+06 49577.79 NULL
2023 Admin For Children’s Svcs Supervisor Iii 83731.71429 5.861220e+05 38167.78 5.452540e+03 0.000 678.50 7 0.000000e+00 0.00 6.242898e+05 5.861220e+05 38167.78 NULL
2023 Admin For Children’s Svcs Supervisor Of Child Care 75335.00000 4.520100e+05 177265.48 2.954425e+04 31469.040 3134.75 6 2.954425e+04 177265.48 6.292755e+05 6.292755e+05 0.00 NULL
2023 Admin For Children’s Svcs Supervisor Of Mechanical Installations & Maintenance 102642.50000 2.052850e+05 3794.53 1.897265e+03 1897.265 61.50 2 1.897265e+03 3794.53 2.090795e+05 2.090795e+05 0.00 NULL
2023 Admin For Children’s Svcs Supervisor Of Nurses 97190.00000 5.831400e+05 292.36 4.872667e+01 0.000 4.25 6 0.000000e+00 0.00 5.834324e+05 5.831400e+05 292.36 NULL
2023 Admin For Children’s Svcs Telecommunications Associate 82652.07692 1.074477e+06 13876.22 1.067402e+03 39.810 350.75 13 3.981000e+01 517.53 1.088353e+06 1.074995e+06 13358.69 NULL
2023 Admin For Children’s Svcs Youth Development Specialist 54083.75924 5.121732e+07 10161783.61 1.073050e+04 1975.490 230902.83 947 1.975490e+03 1870789.03 6.137910e+07 5.308811e+07 8290994.58 NULL
2023 Admin Trials And Hearings *Attorney At Law 95632.00000 9.563200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.563200e+04 9.563200e+04 0.00 NULL
2023 Admin Trials And Hearings Adm Manager-Non-Mgrl 81332.90909 8.946620e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 8.946620e+05 8.946620e+05 0.00 NULL
2023 Admin Trials And Hearings Admin Community Relations Specialist 99475.33333 2.984260e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.984260e+05 2.984260e+05 0.00 NULL
2023 Admin Trials And Hearings Admin Contract Specialist 90022.00000 9.002200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.002200e+04 9.002200e+04 0.00 NULL
2023 Admin Trials And Hearings Administrative Accountant 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2023 Admin Trials And Hearings Administrative City Planner 141878.00000 1.418780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.418780e+05 1.418780e+05 0.00 NULL
2023 Admin Trials And Hearings Administrative Community Relations Specialist 126036.00000 2.520720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.520720e+05 2.520720e+05 0.00 NULL
2023 Admin Trials And Hearings Administrative Labor Relations Analyst 96682.00000 9.668200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.668200e+04 9.668200e+04 0.00 NULL
2023 Admin Trials And Hearings Administrative Law Judge 162442.18750 2.599075e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.599075e+06 2.599075e+06 0.00 NULL
2023 Admin Trials And Hearings Administrative Procurement Analyst-Non-Mgrl 112000.00000 1.120000e+05 334.66 3.346600e+02 334.660 0.00 1 3.346600e+02 334.66 1.123347e+05 1.123347e+05 0.00 NULL
2023 Admin Trials And Hearings Administrative Staff Analyst 143142.55556 1.288283e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.288283e+06 1.288283e+06 0.00 NULL
2023 Admin Trials And Hearings Agency Attorney 97752.77083 4.692133e+06 157.35 3.278125e+00 0.000 3.50 48 0.000000e+00 0.00 4.692290e+06 4.692133e+06 157.35 NULL
2023 Admin Trials And Hearings Agency Attorney Interne 67008.58571 4.690601e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.690601e+05 4.690601e+05 0.00 NULL
2023 Admin Trials And Hearings Agency Chief Contracting Officer 144163.00000 1.441630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.441630e+05 1.441630e+05 0.00 NULL
2023 Admin Trials And Hearings Associate Public Information Specialist 59083.00000 5.908300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.908300e+04 5.908300e+04 0.00 NULL
2023 Admin Trials And Hearings Associate Staff Analyst 86711.75000 3.468470e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.468470e+05 3.468470e+05 0.00 NULL
2023 Admin Trials And Hearings Bookkeeper 55738.50000 1.114770e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.114770e+05 1.114770e+05 0.00 NULL
2023 Admin Trials And Hearings Certified It Administrator 103526.00000 2.070520e+05 2018.23 1.009115e+03 1009.115 27.75 2 1.009115e+03 2018.23 2.090702e+05 2.090702e+05 0.00 NULL
2023 Admin Trials And Hearings Certified It Developer 135632.00000 1.356320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.356320e+05 1.356320e+05 0.00 NULL
2023 Admin Trials And Hearings Chief Administrative Law Judge 227786.00000 4.555720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.555720e+05 4.555720e+05 0.00 NULL
2023 Admin Trials And Hearings City Laborer NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2023 Admin Trials And Hearings Clerical Aide 40415.33333 1.212460e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.212460e+05 1.212460e+05 0.00 NULL
2023 Admin Trials And Hearings Clerical Associate 41122.24016 2.508457e+06 2253.17 3.693721e+01 0.000 90.75 61 0.000000e+00 0.00 2.510710e+06 2.508457e+06 2253.17 NULL
2023 Admin Trials And Hearings College Aide 8453.48056 7.608132e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.608132e+04 7.608132e+04 0.00 NULL
2023 Admin Trials And Hearings Community Assistant 32608.97860 8.804424e+05 32.58 1.206667e+00 0.000 1.50 27 0.000000e+00 0.00 8.804750e+05 8.804424e+05 32.58 NULL
2023 Admin Trials And Hearings Community Associate 46890.25545 2.063171e+06 2350.68 5.342455e+01 0.000 91.25 44 0.000000e+00 0.00 2.065522e+06 2.063171e+06 2350.68 NULL
2023 Admin Trials And Hearings Community Coordinator 72526.47500 2.901059e+06 583.14 1.457850e+01 0.000 16.25 40 0.000000e+00 0.00 2.901642e+06 2.901059e+06 583.14 NULL
2023 Admin Trials And Hearings Community Service Aide 19748.52085 3.357249e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 3.357249e+05 3.357249e+05 0.00 NULL
2023 Admin Trials And Hearings Computer Associate 81088.00000 3.243520e+05 7593.79 1.898447e+03 55.845 157.00 4 5.584500e+01 223.38 3.319458e+05 3.245754e+05 7370.41 NULL
2023 Admin Trials And Hearings Computer Specialist 116670.00000 5.833500e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.833500e+05 5.833500e+05 0.00 NULL
2023 Admin Trials And Hearings Computer Systems Manager 147033.16667 8.821990e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.821990e+05 8.821990e+05 0.00 NULL
2023 Admin Trials And Hearings Confidential Secretary Of Administrative Law Judge 60000.00000 2.400000e+05 98.52 2.463000e+01 0.000 3.00 4 0.000000e+00 0.00 2.400985e+05 2.400000e+05 98.52 NULL
2023 Admin Trials And Hearings Confidential Strategy Planner 97448.50000 1.948970e+05 77.11 3.855500e+01 38.555 0.00 2 3.855500e+01 77.11 1.949741e+05 1.949741e+05 0.00 NULL
2023 Admin Trials And Hearings Customer Information Representative Ma L 1549 37317.62667 1.119529e+05 14.36 4.786667e+00 1.320 0.00 3 1.320000e+00 3.96 1.119672e+05 1.119568e+05 10.40 NULL
2023 Admin Trials And Hearings Cyber Security Analyst 63247.55556 5.692280e+05 7723.42 8.581578e+02 282.250 194.50 9 2.822500e+02 2540.25 5.769514e+05 5.717682e+05 5183.17 NULL
2023 Admin Trials And Hearings Executive Agency Counsel 139145.30476 1.461026e+07 0.00 0.000000e+00 0.000 0.00 105 0.000000e+00 0.00 1.461026e+07 1.461026e+07 0.00 NULL
2023 Admin Trials And Hearings Executive Assistant To The Chief Administrative Law Judge 150393.00000 1.503930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503930e+05 1.503930e+05 0.00 NULL
2023 Admin Trials And Hearings Hearing Officer 42811.21639 7.706019e+06 0.00 0.000000e+00 0.000 0.00 180 0.000000e+00 0.00 7.706019e+06 7.706019e+06 0.00 NULL
2023 Admin Trials And Hearings Maintenance Worker NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2023 Admin Trials And Hearings Member Of The Environmental Control Board - Oath 75.63480 3.781740e+02 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.781740e+02 3.781740e+02 0.00 NULL
2023 Admin Trials And Hearings New York City Public Service Fellow 46350.00000 9.270000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.270000e+04 9.270000e+04 0.00 NULL
2023 Admin Trials And Hearings Principal Administrative Associate - Non Supvr 63501.63636 2.794072e+06 8759.50 1.990795e+02 0.000 260.25 44 0.000000e+00 0.00 2.802832e+06 2.794072e+06 8759.50 NULL
2023 Admin Trials And Hearings Procurement Analyst 54124.55000 1.623736e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.623736e+05 1.623736e+05 0.00 NULL
2023 Admin Trials And Hearings Public Records Aide 46149.74286 3.230482e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.230482e+05 3.230482e+05 0.00 NULL
2023 Admin Trials And Hearings Public Records Officer 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2023 Admin Trials And Hearings Secretary 47254.33333 1.417630e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.417630e+05 1.417630e+05 0.00 NULL
2023 Admin Trials And Hearings Special Officer 48438.50000 5.812620e+05 2687.03 2.239192e+02 27.050 76.00 12 2.705000e+01 324.60 5.839490e+05 5.815866e+05 2362.43 NULL
2023 Admin Trials And Hearings Staff Analyst 72000.00000 7.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.200000e+04 7.200000e+04 0.00 NULL
2023 Admin Trials And Hearings Staff Analyst Trainee 48473.00000 4.847300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.847300e+04 4.847300e+04 0.00 NULL
2023 Admin Trials And Hearings Statistician 65835.00000 1.316700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.316700e+05 1.316700e+05 0.00 NULL
2023 Admin Trials And Hearings Summer College Intern 2687.63375 5.375267e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.375267e+03 5.375267e+03 0.00 NULL
2023 Admin Trials And Hearings Summer Graduate Intern 2884.92000 1.730952e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.730952e+04 1.730952e+04 0.00 NULL
2023 Admin Trials And Hearings Telecommunications Associate 65776.00000 6.577600e+04 3884.28 3.884280e+03 3884.280 98.50 1 3.884280e+03 3884.28 6.966028e+04 6.966028e+04 0.00 NULL
2023 Board Of Correction City Research Scientist 91687.25000 3.667490e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.667490e+05 3.667490e+05 0.00 NULL
2023 Board Of Correction Community Coordinator 70622.00000 2.118660e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.118660e+05 2.118660e+05 0.00 NULL
2023 Board Of Correction Computer Specialist 115929.00000 1.159290e+05 6.03 6.030000e+00 6.030 0.00 1 6.030000e+00 6.03 1.159350e+05 1.159350e+05 0.00 NULL
2023 Board Of Correction Computer Systems Manager 142500.00000 1.425000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.425000e+05 1.425000e+05 0.00 NULL
2023 Board Of Correction Confidential Agency Investigator 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2023 Board Of Correction Correctional Standards Review Specialist 80310.88889 7.227980e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.227980e+05 7.227980e+05 0.00 NULL
2023 Board Of Correction Counsel 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2023 Board Of Correction Deputy Executive Director 146666.66667 4.400000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.400000e+05 4.400000e+05 0.00 NULL
2023 Board Of Correction Director Of Correctional Standards Review 100000.00000 5.000000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.000000e+05 5.000000e+05 0.00 NULL
2023 Board Of Correction Executive Agency Counsel 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2023 Board Of Correction Executive Director 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2023 Board Of Correction Secretary 68722.00000 6.872200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.872200e+04 6.872200e+04 0.00 NULL
2023 Board Of Correction Secretary To The Board Of Correction 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2023 Board Of Election Administrative Assistant 52474.94915 6.192044e+06 1273839.13 1.079525e+04 8359.405 32570.93 118 8.359405e+03 986409.79 7.465883e+06 7.178454e+06 287429.34 NULL
2023 Board Of Election Administrative Associate 66979.90667 5.023493e+06 1727933.82 2.303912e+04 20581.110 34343.63 75 2.058111e+04 1543583.25 6.751427e+06 6.567076e+06 184350.57 NULL
2023 Board Of Election Administrative Manager 175743.50000 3.514870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.514870e+05 3.514870e+05 0.00 NULL
2023 Board Of Election Assistance Finance Officer 72598.33333 2.177950e+05 24771.06 8.257020e+03 6889.570 555.50 3 6.889570e+03 20668.71 2.425661e+05 2.384637e+05 4102.35 NULL
2023 Board Of Election Associate Staff Analyst 91581.90000 9.158190e+05 226210.27 2.262103e+04 22005.860 3394.50 10 2.200586e+04 220058.60 1.142029e+06 1.135878e+06 6151.67 NULL
2023 Board Of Election Chief Clerk 150969.83333 9.058190e+05 68929.99 1.148833e+04 0.000 871.75 6 0.000000e+00 0.00 9.747490e+05 9.058190e+05 68929.99 NULL
2023 Board Of Election Clerk To The Board 44137.59574 4.148934e+06 621924.82 6.616221e+03 5420.720 19855.30 94 5.420720e+03 509547.68 4.770859e+06 4.658482e+06 112377.14 NULL
2023 Board Of Election Commissioner 25718.18182 2.829000e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 2.829000e+05 2.829000e+05 0.00 NULL
2023 Board Of Election Computer Operator 48389.50000 9.677900e+04 3458.73 1.729365e+03 1729.365 105.00 2 1.729365e+03 3458.73 1.002377e+05 1.002377e+05 0.00 NULL
2023 Board Of Election Computer Specialist 120510.66667 3.615320e+05 133455.41 4.448514e+04 47552.290 2267.50 3 4.448514e+04 133455.41 4.949874e+05 4.949874e+05 0.00 NULL
2023 Board Of Election Computer System Manager 138858.33333 4.165750e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.165750e+05 4.165750e+05 0.00 NULL
2023 Board Of Election Coordinator, Election Day Operations 117217.00000 1.172170e+05 29320.31 2.932031e+04 29320.310 331.50 1 2.932031e+04 29320.31 1.465373e+05 1.465373e+05 0.00 NULL
2023 Board Of Election Coordinator, Voter Registration Activities 101097.00000 1.010970e+05 10511.72 1.051172e+04 10511.720 151.97 1 1.051172e+04 10511.72 1.116087e+05 1.116087e+05 0.00 NULL
2023 Board Of Election Counsel 140559.50000 5.622380e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.622380e+05 5.622380e+05 0.00 NULL
2023 Board Of Election Counsel To The Board 58957.50000 1.179150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.179150e+05 1.179150e+05 0.00 NULL
2023 Board Of Election Deputy Chief Clerk 144749.00000 8.684940e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.684940e+05 8.684940e+05 0.00 NULL
2023 Board Of Election Deputy Executive Director 214190.00000 2.141900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.141900e+05 2.141900e+05 0.00 NULL
2023 Board Of Election Director Of Equipment 81792.33333 2.453770e+05 45315.69 1.510523e+04 11790.000 681.50 3 1.179000e+04 35370.00 2.906927e+05 2.807470e+05 9945.69 NULL
2023 Board Of Election Director Of Training 98203.00000 1.964060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.964060e+05 1.964060e+05 0.00 NULL
2023 Board Of Election Executive Director 232615.00000 2.326150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.326150e+05 2.326150e+05 0.00 NULL
2023 Board Of Election Finance Officer 123745.00000 1.237450e+05 3444.59 3.444590e+03 3444.590 39.25 1 3.444590e+03 3444.59 1.271896e+05 1.271896e+05 0.00 NULL
2023 Board Of Election Financial Clerk 44545.85000 6.860061e+06 1087208.39 7.059795e+03 5410.645 32858.96 154 5.410645e+03 833239.33 7.947269e+06 7.693300e+06 253969.06 NULL
2023 Board Of Election Project Coordinator 103557.06250 1.656913e+06 387361.02 2.421006e+04 15706.015 5340.50 16 1.570601e+04 251296.24 2.044274e+06 1.908209e+06 136064.78 NULL
2023 Board Of Election Senior Adminisrator 91844.46667 1.377667e+06 482855.43 3.219036e+04 18395.690 7497.25 15 1.839569e+04 275935.35 1.860522e+06 1.653602e+06 206920.08 NULL
2023 Board Of Election Senior Administrative Assistant 84234.36364 9.265780e+05 180498.53 1.640896e+04 15365.910 2958.75 11 1.536591e+04 169025.01 1.107077e+06 1.095603e+06 11473.52 NULL
2023 Board Of Election Senior Computer Programmer 79805.57143 5.586390e+05 184014.69 2.628781e+04 22799.200 3138.00 7 2.279920e+04 159594.40 7.426537e+05 7.182334e+05 24420.29 NULL
2023 Board Of Election Senior Systems Analysts 110310.50000 2.206210e+05 154427.52 7.721376e+04 77213.760 2152.75 2 7.721376e+04 154427.52 3.750485e+05 3.750485e+05 0.00 NULL
2023 Board Of Election Senior Voting Machine Technician 50625.54098 3.088158e+06 1106429.65 1.813819e+04 16743.960 28730.00 61 1.674396e+04 1021381.56 4.194588e+06 4.109540e+06 85048.09 NULL
2023 Board Of Election Stenographic/Secretarial Associate 43903.00000 4.390300e+04 8124.04 8.124040e+03 8124.040 273.00 1 8.124040e+03 8124.04 5.202704e+04 5.202704e+04 0.00 NULL
2023 Board Of Election Temporary Clerk 22057.37015 3.882097e+06 561591.96 3.190863e+03 1437.760 21283.00 176 1.437760e+03 253045.76 4.443689e+06 4.135143e+06 308546.20 NULL
2023 Board Of Election Trainer Assistant 54854.53584 5.046617e+06 1231866.60 1.338985e+04 10656.680 29136.00 92 1.065668e+04 980414.56 6.278484e+06 6.027032e+06 251452.04 NULL
2023 Board Of Election Voting Machine Technician 45553.52632 6.924136e+06 2195615.67 1.444484e+04 14256.430 64287.02 152 1.425643e+04 2166977.36 9.119752e+06 9.091113e+06 28638.31 NULL
2023 Board Of Election Poll Workers Election Trainer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 227 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Board Of Election Poll Workers Election Worker 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 29686 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Borough President-Bronx Administrative Business Promotion Coordinator 124050.00000 1.240500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.240500e+05 1.240500e+05 0.00 NULL
2023 Borough President-Bronx Administrative City Planner 99849.00000 9.984900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.984900e+04 9.984900e+04 0.00 NULL
2023 Borough President-Bronx Administrative Manager 118892.00000 2.377840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.377840e+05 2.377840e+05 0.00 NULL
2023 Borough President-Bronx Administrative Staff Analyst 124038.00000 1.240380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.240380e+05 1.240380e+05 0.00 NULL
2023 Borough President-Bronx Assistant To The President 95297.20000 4.764860e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.764860e+05 4.764860e+05 0.00 NULL
2023 Borough President-Bronx Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2023 Borough President-Bronx City Planner 122313.00000 1.223130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.223130e+05 1.223130e+05 0.00 NULL
2023 Borough President-Bronx Community Assistant 24503.80137 7.351140e+04 30.41 1.013667e+01 0.000 2.63 3 0.000000e+00 0.00 7.354181e+04 7.351140e+04 30.41 NULL
2023 Borough President-Bronx Community Associate 54898.93750 8.783830e+05 16284.32 1.017770e+03 0.000 366.50 16 0.000000e+00 0.00 8.946673e+05 8.783830e+05 16284.32 NULL
2023 Borough President-Bronx Community Coordinator 71877.44243 2.012568e+06 105393.64 3.764059e+03 0.000 1703.50 28 0.000000e+00 0.00 2.117962e+06 2.012568e+06 105393.64 NULL
2023 Borough President-Bronx Computer Systems Manager 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2023 Borough President-Bronx Counsel To The Borough President 144640.00000 2.892800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.892800e+05 2.892800e+05 0.00 NULL
2023 Borough President-Bronx Deputy Borough President 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2023 Borough President-Bronx Director Of Community Planning Boards 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2023 Borough President-Bronx Executive Assistant 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2023 Borough President-Bronx Public Information Officer 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2023 Borough President-Bronx Research And Liaison Coordinator 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2023 Borough President-Bronx Research Liaison Adn Governmental Coordinator 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2023 Borough President-Bronx Secretary To Assistant To President 105235.00000 1.052350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.052350e+05 1.052350e+05 0.00 NULL
2023 Borough President-Bronx Secretary To The Deputy Boro President 81612.00000 8.161200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.161200e+04 8.161200e+04 0.00 NULL
2023 Borough President-Bronx Secretary To The Excutive Assistant 85826.00000 8.582600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.582600e+04 8.582600e+04 0.00 NULL
2023 Borough President-Bronx Secretary To The President 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2023 Borough President-Bronx Special Assistant To The Borough President 98029.66667 2.940890e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.940890e+05 2.940890e+05 0.00 NULL
2023 Borough President-Brooklyn Adm Manager-Non-Mgrl 93172.00000 9.317200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.317200e+04 9.317200e+04 0.00 NULL
2023 Borough President-Brooklyn Assistant To The President 96852.71957 2.227613e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 2.227613e+06 2.227613e+06 0.00 NULL
2023 Borough President-Brooklyn Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2023 Borough President-Brooklyn Chauffeur-Attendant 65000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2023 Borough President-Brooklyn City Planner 114994.00000 2.299880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.299880e+05 2.299880e+05 0.00 NULL
2023 Borough President-Brooklyn Clerical Associate 68200.66667 2.046020e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.046020e+05 2.046020e+05 0.00 NULL
2023 Borough President-Brooklyn Community Assistant 42777.00000 4.277700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.277700e+04 4.277700e+04 0.00 NULL
2023 Borough President-Brooklyn Community Associate 58166.42857 4.071650e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.071650e+05 4.071650e+05 0.00 NULL
2023 Borough President-Brooklyn Community Coordinator 63406.13071 2.219215e+06 85.51 2.443143e+00 0.000 0.00 35 0.000000e+00 0.00 2.219300e+06 2.219215e+06 85.51 NULL
2023 Borough President-Brooklyn Counsel To The Borough President 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2023 Borough President-Brooklyn Deputy Borough President 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2023 Borough President-Brooklyn Director Of Community Planning Boards 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2023 Borough President-Brooklyn Executive Agency Counsel 108000.00000 1.080000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.080000e+05 1.080000e+05 0.00 NULL
2023 Borough President-Brooklyn Executive Assistant 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2023 Borough President-Brooklyn Principal Administrative Associate - Non Supvr 75596.00000 7.559600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.559600e+04 7.559600e+04 0.00 NULL
2023 Borough President-Brooklyn Program Producer 102632.00000 1.026320e+05 2057.91 2.057910e+03 2057.910 26.00 1 2.057910e+03 2057.91 1.046899e+05 1.046899e+05 0.00 NULL
2023 Borough President-Brooklyn Public Information Officer 107500.00000 1.075000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.075000e+05 1.075000e+05 0.00 NULL
2023 Borough President-Brooklyn Research And Liaison Coordinator 64543.00000 1.290860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.290860e+05 1.290860e+05 0.00 NULL
2023 Borough President-Brooklyn Special Assistant To The President 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2023 Borough President-Manhattan Admin Contract Specialist 98000.00000 9.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.800000e+04 9.800000e+04 0.00 NULL
2023 Borough President-Manhattan Administrative Staff Analyst 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2023 Borough President-Manhattan Agency Chief Contracting Officer 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2023 Borough President-Manhattan Assistant To The President 107142.85714 7.500000e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.500000e+05 7.500000e+05 0.00 NULL
2023 Borough President-Manhattan Associate Public Information Specialist 72500.00000 7.250000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.250000e+04 7.250000e+04 0.00 NULL
2023 Borough President-Manhattan Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2023 Borough President-Manhattan Chauffeur Attendant 65706.33333 1.971190e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.971190e+05 1.971190e+05 0.00 NULL
2023 Borough President-Manhattan Community Associate 60932.44667 3.655947e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.655947e+05 3.655947e+05 0.00 NULL
2023 Borough President-Manhattan Community Coordinator 72018.87467 2.160566e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 2.160566e+06 2.160566e+06 0.00 NULL
2023 Borough President-Manhattan Community Planning Board Coordinator 63877.80000 3.193890e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.193890e+05 3.193890e+05 0.00 NULL
2023 Borough President-Manhattan Computer Operations Manager 84098.00000 8.409800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.409800e+04 8.409800e+04 0.00 NULL
2023 Borough President-Manhattan Computer Systems Manager 116637.00000 1.166370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.166370e+05 1.166370e+05 0.00 NULL
2023 Borough President-Manhattan Deputy Borough President 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2023 Borough President-Manhattan Director Of Community Planning Boards 103079.50000 2.061590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.061590e+05 2.061590e+05 0.00 NULL
2023 Borough President-Manhattan Executive Assistant 160000.00000 3.200000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.200000e+05 3.200000e+05 0.00 NULL
2023 Borough President-Manhattan General Counsel 146500.00000 2.930000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.930000e+05 2.930000e+05 0.00 NULL
2023 Borough President-Manhattan Housing Consultant 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2023 Borough President-Manhattan Principal Administrative Associate - Non Supvr 64402.00000 1.288040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.288040e+05 1.288040e+05 0.00 NULL
2023 Borough President-Manhattan Public Information Officer 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2023 Borough President-Manhattan Public Relations Officer 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2023 Borough President-Manhattan Secretary To The Deputy Boro President 57204.00000 5.720400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.720400e+04 5.720400e+04 0.00 NULL
2023 Borough President-Queens Adm Manager-Non-Mgrl 112320.00000 1.123200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.123200e+05 1.123200e+05 0.00 NULL
2023 Borough President-Queens Administrative Community Relations Specialist 109465.00000 1.094650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.094650e+05 1.094650e+05 0.00 NULL
2023 Borough President-Queens Administrative Engineer 136665.00000 1.366650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.366650e+05 1.366650e+05 0.00 NULL
2023 Borough President-Queens Agency Attorney 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2023 Borough President-Queens Assistant Civil Engineer 76038.00000 7.603800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.603800e+04 7.603800e+04 0.00 NULL
2023 Borough President-Queens Assistant To The President 69958.33333 2.098750e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.098750e+05 2.098750e+05 0.00 NULL
2023 Borough President-Queens Associate Staff Analyst 94480.00000 9.448000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.448000e+04 9.448000e+04 0.00 NULL
2023 Borough President-Queens Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2023 Borough President-Queens Cashier 36537.00000 3.653700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.653700e+04 3.653700e+04 0.00 NULL
2023 Borough President-Queens City Planner 92700.00000 9.270000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.270000e+04 9.270000e+04 0.00 NULL
2023 Borough President-Queens Community Assistant 39302.00000 1.179060e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.179060e+05 1.179060e+05 0.00 NULL
2023 Borough President-Queens Community Associate 56757.72500 1.135154e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.135154e+06 1.135154e+06 0.00 NULL
2023 Borough President-Queens Community Coordinator 76000.73684 1.444014e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.444014e+06 1.444014e+06 0.00 NULL
2023 Borough President-Queens Community Planning Board Coordinator 58710.00000 5.871000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.871000e+04 5.871000e+04 0.00 NULL
2023 Borough President-Queens Computer Associate 87550.00000 8.755000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.755000e+04 8.755000e+04 0.00 NULL
2023 Borough President-Queens Computer Systems Manager 97850.00000 9.785000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.785000e+04 9.785000e+04 0.00 NULL
2023 Borough President-Queens Counsel To The Borough President 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2023 Borough President-Queens Deputy Borough President 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2023 Borough President-Queens Director Of Community Planning Boards 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2023 Borough President-Queens Director, Office Of Administration 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2023 Borough President-Queens Engineering Technician 75154.00000 1.503080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.503080e+05 1.503080e+05 0.00 NULL
2023 Borough President-Queens Executive Assistant 160000.00000 3.200000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.200000e+05 3.200000e+05 0.00 NULL
2023 Borough President-Queens Fiscal & Policy Analyst 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2023 Borough President-Queens Principal Administrative Associate - Non Supvr 55000.00000 5.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.500000e+04 5.500000e+04 0.00 NULL
2023 Borough President-Queens Public Information Officer 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2023 Borough President-Queens Research And Liaison Specialist 57500.00000 2.300000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.300000e+05 2.300000e+05 0.00 NULL
2023 Borough President-Queens Secretary To The President 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2023 Borough President-Queens Special Assistant To The Borough President 94666.66667 8.520000e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.520000e+05 8.520000e+05 0.00 NULL
2023 Borough President-Queens Staff Analyst 71840.00000 7.184000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.184000e+04 7.184000e+04 0.00 NULL
2023 Borough President-Staten Is Administrative Architect 147650.00000 1.476500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.476500e+05 1.476500e+05 0.00 NULL
2023 Borough President-Staten Is Agency Attorney 16602.04000 1.660204e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.660204e+04 1.660204e+04 0.00 NULL
2023 Borough President-Staten Is Assistant To The President 133000.00000 3.990000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.990000e+05 3.990000e+05 0.00 NULL
2023 Borough President-Staten Is Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2023 Borough President-Staten Is College Aide 4981.00000 9.962000e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.962000e+03 9.962000e+03 0.00 NULL
2023 Borough President-Staten Is Community Assistant 41200.00000 4.120000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.120000e+04 4.120000e+04 0.00 NULL
2023 Borough President-Staten Is Community Associate 51862.17848 5.704840e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 5.704840e+05 5.704840e+05 0.00 NULL
2023 Borough President-Staten Is Community Coordinator 66675.53491 1.466862e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 1.466862e+06 1.466862e+06 0.00 NULL
2023 Borough President-Staten Is Counsel To The Borough President 111110.31000 1.111103e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.111103e+05 1.111103e+05 0.00 NULL
2023 Borough President-Staten Is Deputy Borough President 157000.00000 1.570000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.570000e+05 1.570000e+05 0.00 NULL
2023 Borough President-Staten Is Director Of Community Planning Boards 98000.00000 9.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.800000e+04 9.800000e+04 0.00 NULL
2023 Borough President-Staten Is Engineering Technician 78886.00000 7.888600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.888600e+04 7.888600e+04 0.00 NULL
2023 Borough President-Staten Is Executive Assistant 127000.00000 1.270000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.270000e+05 1.270000e+05 0.00 NULL
2023 Borough President-Staten Is Public Information Officer 98000.00000 9.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.800000e+04 9.800000e+04 0.00 NULL
2023 Borough President-Staten Is Secretary To The Deputy Boro President 30061.91750 3.006192e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.006192e+04 3.006192e+04 0.00 NULL
2023 Borough President-Staten Is Secretary To The President 15429.12000 1.542912e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.542912e+04 1.542912e+04 0.00 NULL
2023 Borough President-Staten Is Special Assistant To The Borough President 77007.84000 7.700784e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.700784e+04 7.700784e+04 0.00 NULL
2023 Borough President-Staten Is Staff Analyst 70255.00000 7.025500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.025500e+04 7.025500e+04 0.00 NULL
2023 Borough President-Staten Is Summer College Intern 1290.98000 2.581960e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.581960e+03 2.581960e+03 0.00 NULL
2023 Bronx Community Board #1 Community Coordinator 91923.00000 9.192300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.192300e+04 9.192300e+04 0.00 NULL
2023 Bronx Community Board #1 District Manager 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2023 Bronx Community Board #10 Clerical Associate 25158.02500 5.031605e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.031605e+04 5.031605e+04 0.00 NULL
2023 Bronx Community Board #10 Community Assistant 33270.36000 3.327036e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.327036e+04 3.327036e+04 0.00 NULL
2023 Bronx Community Board #10 Community Associate 49277.00000 4.927700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.927700e+04 4.927700e+04 0.00 NULL
2023 Bronx Community Board #10 District Manager 97700.00000 9.770000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.770000e+04 9.770000e+04 0.00 NULL
2023 Bronx Community Board #11 Community Coordinator 74780.00000 1.495600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.495600e+05 1.495600e+05 0.00 NULL
2023 Bronx Community Board #11 District Manager 95447.00000 9.544700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.544700e+04 9.544700e+04 0.00 NULL
2023 Bronx Community Board #12 Community Coordinator 91868.00000 9.186800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.186800e+04 9.186800e+04 0.00 NULL
2023 Bronx Community Board #12 District Manager 138746.00000 1.387460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.387460e+05 1.387460e+05 0.00 NULL
2023 Bronx Community Board #2 Community Assistant 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Bronx Community Board #2 Community Coordinator 72288.00000 7.228800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.228800e+04 7.228800e+04 0.00 NULL
2023 Bronx Community Board #2 District Manager 134524.00000 1.345240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.345240e+05 1.345240e+05 0.00 NULL
2023 Bronx Community Board #3 District Manager 98748.00000 9.874800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.874800e+04 9.874800e+04 0.00 NULL
2023 Bronx Community Board #4 Community Coordinator 67174.50000 1.343490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.343490e+05 1.343490e+05 0.00 NULL
2023 Bronx Community Board #4 District Manager 97136.00000 9.713600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.713600e+04 9.713600e+04 0.00 NULL
2023 Bronx Community Board #5 Community Assistant 18699.00000 3.739800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.739800e+04 3.739800e+04 0.00 NULL
2023 Bronx Community Board #5 Community Coordinator 74659.00000 7.465900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.465900e+04 7.465900e+04 0.00 NULL
2023 Bronx Community Board #5 District Manager 79310.00000 7.931000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.931000e+04 7.931000e+04 0.00 NULL
2023 Bronx Community Board #6 Community Associate 3483.30000 3.483300e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.483300e+03 3.483300e+03 0.00 NULL
2023 Bronx Community Board #6 Community Coordinator 72730.00000 7.273000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.273000e+04 7.273000e+04 0.00 NULL
2023 Bronx Community Board #6 District Manager 97500.00000 9.750000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.750000e+04 9.750000e+04 0.00 NULL
2023 Bronx Community Board #7 Community Associate 45877.50000 9.175500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.175500e+04 9.175500e+04 0.00 NULL
2023 Bronx Community Board #7 Community Coordinator 64081.00000 6.408100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.408100e+04 6.408100e+04 0.00 NULL
2023 Bronx Community Board #7 District Manager 89206.50000 1.784130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.784130e+05 1.784130e+05 0.00 NULL
2023 Bronx Community Board #8 Community Associate 54590.00000 5.459000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.459000e+04 5.459000e+04 0.00 NULL
2023 Bronx Community Board #8 Community Coordinator 69682.50000 1.393650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.393650e+05 1.393650e+05 0.00 NULL
2023 Bronx Community Board #8 District Manager 93775.00000 9.377500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.377500e+04 9.377500e+04 0.00 NULL
2023 Bronx Community Board #9 Community Associate 61017.00000 6.101700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.101700e+04 6.101700e+04 0.00 NULL
2023 Bronx Community Board #9 Community Coordinator 77841.00000 7.784100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.784100e+04 7.784100e+04 0.00 NULL
2023 Bronx Community Board #9 District Manager 120314.00000 1.203140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.203140e+05 1.203140e+05 0.00 NULL
2023 Bronx District Attorney Adm Manager-Non-Mgrl 83981.00000 8.398100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.398100e+04 8.398100e+04 0.00 NULL
2023 Bronx District Attorney Administrative Accountant 145000.00000 2.900000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.900000e+05 2.900000e+05 0.00 NULL
2023 Bronx District Attorney Administrative Chief 145000.00000 4.350000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.350000e+05 4.350000e+05 0.00 NULL
2023 Bronx District Attorney Administrative Community Relations Specialist 146000.00000 4.380000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.380000e+05 4.380000e+05 0.00 NULL
2023 Bronx District Attorney Administrative Labor Relations Analyst 177300.00000 1.773000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.773000e+05 1.773000e+05 0.00 NULL
2023 Bronx District Attorney Administrative Manager 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2023 Bronx District Attorney Administrative Staff Analyst 136260.00000 1.362600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.362600e+05 1.362600e+05 0.00 NULL
2023 Bronx District Attorney Agency Chief Contracting Officer 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2023 Bronx District Attorney Assistant District Attorney 117282.31383 5.512269e+07 5603.35 1.192202e+01 0.000 154.75 470 0.000000e+00 0.00 5.512829e+07 5.512269e+07 5603.35 NULL
2023 Bronx District Attorney Associate Contract Specialist 74416.00000 7.441600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.441600e+04 7.441600e+04 0.00 NULL
2023 Bronx District Attorney Certified It Administrator 146754.00000 2.935080e+05 1456.08 7.280400e+02 728.040 18.50 2 7.280400e+02 1456.08 2.949641e+05 2.949641e+05 0.00 NULL
2023 Bronx District Attorney Certified It Developer 134547.50000 5.381900e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.381900e+05 5.381900e+05 0.00 NULL
2023 Bronx District Attorney City Research Scientist 108073.00000 4.322920e+05 485.27 1.213175e+02 0.000 6.50 4 0.000000e+00 0.00 4.327773e+05 4.322920e+05 485.27 NULL
2023 Bronx District Attorney City Tax Auditor 87741.00000 8.774100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.774100e+04 8.774100e+04 0.00 NULL
2023 Bronx District Attorney Clerical Associate 59574.63889 2.144687e+06 22761.45 6.322625e+02 0.000 490.50 36 0.000000e+00 0.00 2.167448e+06 2.144687e+06 22761.45 NULL
2023 Bronx District Attorney College Aide 2221.10806 1.199398e+05 0.00 0.000000e+00 0.000 0.00 54 0.000000e+00 0.00 1.199398e+05 1.199398e+05 0.00 NULL
2023 Bronx District Attorney Community Assistant 41844.53957 5.816391e+06 45988.53 3.308527e+02 0.000 1619.50 139 0.000000e+00 0.00 5.862380e+06 5.816391e+06 45988.53 NULL
2023 Bronx District Attorney Community Associate 54877.35168 1.794489e+07 251453.84 7.689720e+02 0.000 6116.00 327 0.000000e+00 0.00 1.819635e+07 1.794489e+07 251453.84 NULL
2023 Bronx District Attorney Community Coordinator 74321.88966 1.077667e+07 225929.10 1.558132e+03 7.380 4415.50 145 7.380000e+00 1070.10 1.100260e+07 1.077774e+07 224859.00 NULL
2023 Bronx District Attorney Computer Associate 80323.33333 2.409700e+05 682.27 2.274233e+02 217.730 26.25 3 2.177300e+02 653.19 2.416523e+05 2.416232e+05 29.08 NULL
2023 Bronx District Attorney Computer Specialist 136015.33333 4.080460e+05 2266.19 7.553967e+02 0.000 28.50 3 0.000000e+00 0.00 4.103122e+05 4.080460e+05 2266.19 NULL
2023 Bronx District Attorney Computer Systems Manager 171000.00000 6.840000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.840000e+05 6.840000e+05 0.00 NULL
2023 Bronx District Attorney Deputy Chief Technology Officer 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2023 Bronx District Attorney Director Of Public Information 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2023 Bronx District Attorney District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2023 Bronx District Attorney Interpreter 65601.41667 1.574434e+06 51021.94 2.125914e+03 393.920 1282.50 24 3.939200e+02 9454.08 1.625456e+06 1.583888e+06 41567.86 NULL
2023 Bronx District Attorney It Project Specialist 112914.00000 2.258280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.258280e+05 2.258280e+05 0.00 NULL
2023 Bronx District Attorney Media Services Technician 60878.00000 6.696580e+05 10769.28 9.790255e+02 306.470 269.75 11 3.064700e+02 3371.17 6.804273e+05 6.730292e+05 7398.11 NULL
2023 Bronx District Attorney Paralegal Aide 60797.33333 3.647840e+05 33.03 5.505000e+00 0.000 0.00 6 0.000000e+00 0.00 3.648170e+05 3.647840e+05 33.03 NULL
2023 Bronx District Attorney Principal Accountant Investigator 132600.00000 6.630000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.630000e+05 6.630000e+05 0.00 NULL
2023 Bronx District Attorney Principal Administrative Associate - Non Supvr 68229.46667 1.023442e+06 19549.98 1.303332e+03 0.000 469.25 15 0.000000e+00 0.00 1.042992e+06 1.023442e+06 19549.98 NULL
2023 Bronx District Attorney Private Secretary 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2023 Bronx District Attorney Reporter/ Stenographer 86118.20000 2.152955e+06 1127.36 4.509440e+01 0.000 19.25 25 0.000000e+00 0.00 2.154082e+06 2.152955e+06 1127.36 NULL
2023 Bronx District Attorney Secretary 61317.33333 1.839520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.839520e+05 1.839520e+05 0.00 NULL
2023 Bronx District Attorney Social Worker 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2023 Bronx District Attorney Special Assistant To The District Attorney 162566.66667 9.754000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.754000e+05 9.754000e+05 0.00 NULL
2023 Bronx District Attorney Special Officer 50207.00000 5.020700e+04 450.85 4.508500e+02 450.850 12.50 1 4.508500e+02 450.85 5.065785e+04 5.065785e+04 0.00 NULL
2023 Bronx District Attorney Student Legal Assistant 2077.10172 1.869392e+05 0.00 0.000000e+00 0.000 0.00 90 0.000000e+00 0.00 1.869392e+05 1.869392e+05 0.00 NULL
2023 Brooklyn Community Board #1 Assistant District Manager 63255.00000 6.325500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.325500e+04 6.325500e+04 0.00 NULL
2023 Brooklyn Community Board #1 District Manager 110540.50000 2.210810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.210810e+05 2.210810e+05 0.00 NULL
2023 Brooklyn Community Board #10 College Aide 2344.37500 2.344375e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.344375e+03 2.344375e+03 0.00 NULL
2023 Brooklyn Community Board #10 Community Assistant 5572.95625 1.114591e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.114591e+04 1.114591e+04 0.00 NULL
2023 Brooklyn Community Board #10 Community Coordinator 88465.00000 8.846500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.846500e+04 8.846500e+04 0.00 NULL
2023 Brooklyn Community Board #10 District Manager 133929.00000 1.339290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339290e+05 1.339290e+05 0.00 NULL
2023 Brooklyn Community Board #11 Community Assistant 28916.58050 2.891658e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.891658e+04 2.891658e+04 0.00 NULL
2023 Brooklyn Community Board #11 Community Coordinator 67983.00000 6.798300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.798300e+04 6.798300e+04 0.00 NULL
2023 Brooklyn Community Board #11 District Manager 100285.00000 1.002850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.002850e+05 1.002850e+05 0.00 NULL
2023 Brooklyn Community Board #12 Community Coordinator 36252.51600 3.625252e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.625252e+04 3.625252e+04 0.00 NULL
2023 Brooklyn Community Board #12 District Manager 134046.00000 1.340460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.340460e+05 1.340460e+05 0.00 NULL
2023 Brooklyn Community Board #13 Community Assistant 33496.00000 3.349600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.349600e+04 3.349600e+04 0.00 NULL
2023 Brooklyn Community Board #13 Community Associate 56928.00000 5.692800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.692800e+04 5.692800e+04 0.00 NULL
2023 Brooklyn Community Board #13 Community Coordinator 49879.44000 4.987944e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.987944e+04 4.987944e+04 0.00 NULL
2023 Brooklyn Community Board #13 District Manager 92234.00000 9.223400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.223400e+04 9.223400e+04 0.00 NULL
2023 Brooklyn Community Board #14 Community Associate 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Brooklyn Community Board #14 Community Coordinator 62424.34667 1.872730e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.872730e+05 1.872730e+05 0.00 NULL
2023 Brooklyn Community Board #14 District Manager 124269.00000 1.242690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.242690e+05 1.242690e+05 0.00 NULL
2023 Brooklyn Community Board #15 Community Associate 55917.00000 1.118340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.118340e+05 1.118340e+05 0.00 NULL
2023 Brooklyn Community Board #15 District Manager 76883.00000 7.688300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.688300e+04 7.688300e+04 0.00 NULL
2023 Brooklyn Community Board #16 Community Assistant 40360.50000 8.072100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.072100e+04 8.072100e+04 0.00 NULL
2023 Brooklyn Community Board #16 District Manager 117917.00000 1.179170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.179170e+05 1.179170e+05 0.00 NULL
2023 Brooklyn Community Board #17 Assistant District Manager 58000.00000 5.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.800000e+04 5.800000e+04 0.00 NULL
2023 Brooklyn Community Board #17 Community Assistant 44108.00000 8.821600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.821600e+04 8.821600e+04 0.00 NULL
2023 Brooklyn Community Board #17 District Manager 101844.00000 1.018440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.018440e+05 1.018440e+05 0.00 NULL
2023 Brooklyn Community Board #18 Community Assistant 39676.00000 3.967600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.967600e+04 3.967600e+04 0.00 NULL
2023 Brooklyn Community Board #18 Community Associate 52896.00000 5.289600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.289600e+04 5.289600e+04 0.00 NULL
2023 Brooklyn Community Board #18 District Manager 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2023 Brooklyn Community Board #2 Community Assistant 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Brooklyn Community Board #2 Community Coordinator 68522.00000 6.852200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.852200e+04 6.852200e+04 0.00 NULL
2023 Brooklyn Community Board #2 District Manager 97680.00000 1.953600e+05 6054.53 3.027265e+03 3027.265 230.00 2 3.027265e+03 6054.53 2.014145e+05 2.014145e+05 0.00 NULL
2023 Brooklyn Community Board #3 Community Associate 44083.00000 4.408300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.408300e+04 4.408300e+04 0.00 NULL
2023 Brooklyn Community Board #3 Community Coordinator 71480.00000 7.148000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.148000e+04 7.148000e+04 0.00 NULL
2023 Brooklyn Community Board #3 District Manager 106400.00000 1.064000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.064000e+05 1.064000e+05 0.00 NULL
2023 Brooklyn Community Board #4 Community Coordinator 65508.00000 6.550800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.550800e+04 6.550800e+04 0.00 NULL
2023 Brooklyn Community Board #4 District Manager 88430.00000 8.843000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.843000e+04 8.843000e+04 0.00 NULL
2023 Brooklyn Community Board #4 Principal Administrative Associate - Non Supvr 63775.00000 6.377500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.377500e+04 6.377500e+04 0.00 NULL
2023 Brooklyn Community Board #5 Community Associate 54524.50000 1.090490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.090490e+05 1.090490e+05 0.00 NULL
2023 Brooklyn Community Board #5 Community Coordinator 62215.00000 6.221500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.221500e+04 6.221500e+04 0.00 NULL
2023 Brooklyn Community Board #5 District Manager 101915.00000 1.019150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.019150e+05 1.019150e+05 0.00 NULL
2023 Brooklyn Community Board #6 Community Coordinator 78448.00000 1.568960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.568960e+05 1.568960e+05 0.00 NULL
2023 Brooklyn Community Board #6 District Manager 98543.00000 9.854300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.854300e+04 9.854300e+04 0.00 NULL
2023 Brooklyn Community Board #7 Community Associate 56280.00000 5.628000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.628000e+04 5.628000e+04 0.00 NULL
2023 Brooklyn Community Board #7 Community Coordinator 77921.00000 7.792100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.792100e+04 7.792100e+04 0.00 NULL
2023 Brooklyn Community Board #7 District Manager 103513.00000 1.035130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.035130e+05 1.035130e+05 0.00 NULL
2023 Brooklyn Community Board #8 Community Coordinator 84870.00000 8.487000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.487000e+04 8.487000e+04 0.00 NULL
2023 Brooklyn Community Board #8 District Manager 117775.00000 1.177750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.177750e+05 1.177750e+05 0.00 NULL
2023 Brooklyn Community Board #9 Community Assistant 42436.00000 4.243600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.243600e+04 4.243600e+04 0.00 NULL
2023 Brooklyn Community Board #9 Community Associate 46350.00000 4.635000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.635000e+04 4.635000e+04 0.00 NULL
2023 Brooklyn Community Board #9 Community Coordinator 81955.00000 8.195500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.195500e+04 8.195500e+04 0.00 NULL
2023 Brooklyn Community Board #9 District Manager 85000.00000 8.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.500000e+04 8.500000e+04 0.00 NULL
2023 Business Integrity Commission Admin Contract Specialist 130132.19500 2.602644e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.602644e+05 2.602644e+05 0.00 NULL
2023 Business Integrity Commission Administrative Investigator 177830.00000 1.778300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.778300e+05 1.778300e+05 0.00 NULL
2023 Business Integrity Commission Administrative Staff Analyst 137770.50000 1.377705e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.377705e+05 1.377705e+05 0.00 NULL
2023 Business Integrity Commission Agency Attorney 91415.47000 9.141547e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.141547e+04 9.141547e+04 0.00 NULL
2023 Business Integrity Commission Associate Fraud Investigator 74129.62500 5.930370e+05 27656.28 3.457035e+03 119.390 537.75 8 1.193900e+02 955.12 6.206933e+05 5.939921e+05 26701.16 NULL
2023 Business Integrity Commission Associate Investigator 67983.00000 6.798300e+04 611.50 6.115000e+02 611.500 15.00 1 6.115000e+02 611.50 6.859450e+04 6.859450e+04 0.00 NULL
2023 Business Integrity Commission Associate Staff Analyst 97207.64000 1.944153e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.944153e+05 1.944153e+05 0.00 NULL
2023 Business Integrity Commission Chair 243171.00000 4.863420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863420e+05 4.863420e+05 0.00 NULL
2023 Business Integrity Commission Clerical Associate 60360.50000 1.207210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.207210e+05 1.207210e+05 0.00 NULL
2023 Business Integrity Commission College Aide 2784.51250 5.569025e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.569025e+03 5.569025e+03 0.00 NULL
2023 Business Integrity Commission Community Assistant 2383.11100 4.766222e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.766222e+03 4.766222e+03 0.00 NULL
2023 Business Integrity Commission Community Associate 49034.27935 1.520063e+06 6832.90 2.204161e+02 0.000 257.50 31 0.000000e+00 0.00 1.526896e+06 1.520063e+06 6832.90 NULL
2023 Business Integrity Commission Community Coordinator 73704.22222 1.326676e+06 13943.85 7.746583e+02 0.000 301.50 18 0.000000e+00 0.00 1.340620e+06 1.326676e+06 13943.85 NULL
2023 Business Integrity Commission Computer Programmer Analyst 73388.00000 7.338800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.338800e+04 7.338800e+04 0.00 NULL
2023 Business Integrity Commission Computer Service Technician 64081.00000 6.408100e+04 231.75 2.317500e+02 231.750 6.25 1 2.317500e+02 231.75 6.431275e+04 6.431275e+04 0.00 NULL
2023 Business Integrity Commission Computer Systems Manager 115700.40000 2.314008e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.314008e+05 2.314008e+05 0.00 NULL
2023 Business Integrity Commission Cyber Security Analyst 87550.00000 8.755000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.755000e+04 8.755000e+04 0.00 NULL
2023 Business Integrity Commission Deputy Commissioner Of Investigations 133900.00000 1.339000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339000e+05 1.339000e+05 0.00 NULL
2023 Business Integrity Commission Director Of Investigations 113557.50000 1.135575e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.135575e+05 1.135575e+05 0.00 NULL
2023 Business Integrity Commission Director Of Investigative Audits 124075.35000 1.240754e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.240754e+05 1.240754e+05 0.00 NULL
2023 Business Integrity Commission Executive Agency Counsel 123671.62857 1.731403e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.731403e+06 1.731403e+06 0.00 NULL
2023 Business Integrity Commission Management Auditor 86647.66667 2.599430e+05 160.77 5.359000e+01 7.740 3.00 3 7.740000e+00 23.22 2.601038e+05 2.599662e+05 137.55 NULL
2023 Business Integrity Commission Market Agent 62100.11111 5.589010e+05 39941.47 4.437941e+03 703.670 885.25 9 7.036700e+02 6333.03 5.988425e+05 5.652340e+05 33608.44 NULL
2023 Business Integrity Commission Principal Administrative Associate - Non Supvr 61858.00000 6.185800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.185800e+04 6.185800e+04 0.00 NULL
2023 Campaign Finance Board Admin Asst-Campaign Fin Board 56850.34071 7.959048e+05 5741.26 4.100900e+02 1.290 112.00 14 1.290000e+00 18.06 8.016460e+05 7.959228e+05 5723.20 NULL
2023 Campaign Finance Board Agency Attorney 96621.00000 3.864840e+05 23.34 5.835000e+00 0.000 0.00 4 0.000000e+00 0.00 3.865073e+05 3.864840e+05 23.34 NULL
2023 Campaign Finance Board Agency Chief Contracting Officer 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2023 Campaign Finance Board Analyst 83856.88333 1.006283e+07 402246.19 3.352052e+03 228.455 7084.00 120 2.284550e+02 27414.60 1.046507e+07 1.009024e+07 374831.59 NULL
2023 Campaign Finance Board Associate Staff Analyst 130424.00000 1.304240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.304240e+05 1.304240e+05 0.00 NULL
2023 Campaign Finance Board Attorney-Campaign Fin Board 138403.50000 5.536140e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.536140e+05 5.536140e+05 0.00 NULL
2023 Campaign Finance Board College Aide 560.00000 5.600000e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.600000e+02 5.600000e+02 0.00 NULL
2023 Campaign Finance Board Deputy Executive Director Campaign Finance Board 172503.00000 1.035018e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.035018e+06 1.035018e+06 0.00 NULL
2023 Campaign Finance Board Director Of Public Relations 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2023 Campaign Finance Board Executive Agency Counsel 158840.43750 6.353618e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.353618e+05 6.353618e+05 0.00 NULL
2023 Campaign Finance Board Executive Director 250000.00000 2.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.500000e+05 2.500000e+05 0.00 NULL
2023 Campaign Finance Board Systems Administrator-Cam Fin Bd 126045.95000 2.520919e+06 61152.49 3.057624e+03 357.660 820.00 20 3.576600e+02 7153.20 2.582071e+06 2.528072e+06 53999.29 NULL
2023 City Clerk Administrative Investigator 103736.00000 1.037360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.037360e+05 1.037360e+05 0.00 NULL
2023 City Clerk Administrative Management Auditor 202050.00000 2.020500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.020500e+05 2.020500e+05 0.00 NULL
2023 City Clerk Agency Attorney 88000.00000 8.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.800000e+04 8.800000e+04 0.00 NULL
2023 City Clerk Chief Of Staff 117814.00000 1.178140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.178140e+05 1.178140e+05 0.00 NULL
2023 City Clerk City Clerk & Clerk Of Council 238216.00000 2.382160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.382160e+05 2.382160e+05 0.00 NULL
2023 City Clerk Clerical Associate 49473.20000 2.226294e+06 1437.16 3.193689e+01 0.000 38.25 45 0.000000e+00 0.00 2.227731e+06 2.226294e+06 1437.16 NULL
2023 City Clerk College Aide 17437.37500 1.220616e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.220616e+05 1.220616e+05 0.00 NULL
2023 City Clerk Community Assistant 50791.00000 5.079100e+04 204.13 2.041300e+02 204.130 5.75 1 2.041300e+02 204.13 5.099513e+04 5.099513e+04 0.00 NULL
2023 City Clerk Community Associate 53408.33333 1.602250e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.602250e+05 1.602250e+05 0.00 NULL
2023 City Clerk Community Coordinator 97416.00000 9.741600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.741600e+04 9.741600e+04 0.00 NULL
2023 City Clerk Deputy City Clerk 154531.75000 6.181270e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.181270e+05 6.181270e+05 0.00 NULL
2023 City Clerk Director Of Administration 138000.00000 1.380000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.380000e+05 1.380000e+05 0.00 NULL
2023 City Clerk Executive Agency Counsel 171153.00000 1.711530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.711530e+05 1.711530e+05 0.00 NULL
2023 City Clerk Executive Assistant To The City Clerk 101021.00000 1.010210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.010210e+05 1.010210e+05 0.00 NULL
2023 City Clerk Executive Assistant To The Director Of Administration 64200.00000 6.420000e+04 8.25 8.250000e+00 8.250 0.00 1 8.250000e+00 8.25 6.420825e+04 6.420825e+04 0.00 NULL
2023 City Clerk Executive Assistant To The First Deputy City Clerk 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2023 City Clerk Principal Administrative Associate - Non Supvr 72882.20000 3.644110e+05 629.40 1.258800e+02 27.470 14.00 5 2.747000e+01 137.35 3.650404e+05 3.645483e+05 492.05 NULL
2023 City Clerk Special Advisor To The City Clerk 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2023 City Council Assistant Director Of Administration 148337.66667 8.900260e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.900260e+05 8.900260e+05 0.00 NULL
2023 City Council Assistant Director Of Finance 171666.66667 5.150000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.150000e+05 5.150000e+05 0.00 NULL
2023 City Council Assistant Director Of Legal Services 133967.31818 2.947281e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 2.947281e+06 2.947281e+06 0.00 NULL
2023 City Council Assistant Sergeant At Arms 62545.45455 6.880000e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 6.880000e+05 6.880000e+05 0.00 NULL
2023 City Council Chief Of Staff 253000.00000 2.530000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.530000e+05 2.530000e+05 0.00 NULL
2023 City Council Communication Assistant 87935.16667 1.055222e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.055222e+06 1.055222e+06 0.00 NULL
2023 City Council Council Member 148500.00000 7.276500e+06 0.00 0.000000e+00 0.000 0.00 49 0.000000e+00 0.00 7.276500e+06 7.276500e+06 0.00 NULL
2023 City Council Council Member Aide 57571.09213 2.999454e+07 0.00 0.000000e+00 0.000 0.00 521 0.000000e+00 0.00 2.999454e+07 2.999454e+07 0.00 NULL
2023 City Council Deputy Chief Of Staff 219333.33333 1.316000e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.316000e+06 1.316000e+06 0.00 NULL
2023 City Council Deputy Director 148309.81818 3.262816e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 3.262816e+06 3.262816e+06 0.00 NULL
2023 City Council Deputy Director- Finance 201926.50000 1.615412e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.615412e+06 1.615412e+06 0.00 NULL
2023 City Council Deputy Director-Legal Division 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2023 City Council Deputy Director-Office Of Communications 123600.00000 1.236000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.236000e+05 1.236000e+05 0.00 NULL
2023 City Council Deputy Unit Chief 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2023 City Council Director 180325.92857 2.524563e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.524563e+06 2.524563e+06 0.00 NULL
2023 City Council Director Legal Division/Gen Counsel& Spec Counsel 220000.00000 2.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.200000e+05 2.200000e+05 0.00 NULL
2023 City Council Director Of Finance 220000.00000 2.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.200000e+05 2.200000e+05 0.00 NULL
2023 City Council Director Of Land Use Division 185000.00000 1.850000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.850000e+05 1.850000e+05 0.00 NULL
2023 City Council Executive Legislative Coordinator 215575.00000 4.311500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.311500e+05 4.311500e+05 0.00 NULL
2023 City Council Legislative Administrative Assistant 68894.30000 6.889430e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 6.889430e+05 6.889430e+05 0.00 NULL
2023 City Council Legislative Administrative Manager 105444.44444 2.847000e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 2.847000e+06 2.847000e+06 0.00 NULL
2023 City Council Legislative Assistant 73084.92105 5.554454e+06 0.00 0.000000e+00 0.000 0.00 76 0.000000e+00 0.00 5.554454e+06 5.554454e+06 0.00 NULL
2023 City Council Legislative Computer Support Specialist 84265.75000 6.741260e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.741260e+05 6.741260e+05 0.00 NULL
2023 City Council Legislative Coordinator 90539.50000 7.243160e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.243160e+05 7.243160e+05 0.00 NULL
2023 City Council Legislative Counsel 101232.79032 6.276433e+06 0.00 0.000000e+00 0.000 0.00 62 0.000000e+00 0.00 6.276433e+06 6.276433e+06 0.00 NULL
2023 City Council Legislative Financial Analyst 61416.66667 7.370000e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.370000e+05 7.370000e+05 0.00 NULL
2023 City Council Legislative Intern 3056.86875 2.445495e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 2.445495e+04 2.445495e+04 0.00 NULL
2023 City Council Legislative Investigator 76416.66667 4.585000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.585000e+05 4.585000e+05 0.00 NULL
2023 City Council Legislative Policy Analyst 71598.95000 1.431979e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.431979e+06 1.431979e+06 0.00 NULL
2023 City Council Legislative Programmer/Analyst 86155.06250 1.378481e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.378481e+06 1.378481e+06 0.00 NULL
2023 City Council Legislative Project Manager 88333.33333 5.300000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.300000e+05 5.300000e+05 0.00 NULL
2023 City Council Legislative Support Service Coord 70000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2023 City Council Legislative Systems Manager 133750.00000 5.350000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.350000e+05 5.350000e+05 0.00 NULL
2023 City Council Minority Leader 148500.00000 1.485000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.485000e+05 1.485000e+05 0.00 NULL
2023 City Council Principal Legislative Financial Analyst 115058.12500 1.840930e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.840930e+06 1.840930e+06 0.00 NULL
2023 City Council Senior Legislative Financial Analyst 75164.83333 4.509890e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.509890e+05 4.509890e+05 0.00 NULL
2023 City Council Senior Legislative Investigator 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2023 City Council Senior Legislative Policy Analyst 90046.70000 9.004670e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 9.004670e+05 9.004670e+05 0.00 NULL
2023 City Council Sergeant At Arms 122500.00000 2.450000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.450000e+05 2.450000e+05 0.00 NULL
2023 City Council Speaker/Majority Leader 164500.00000 1.645000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.645000e+05 1.645000e+05 0.00 NULL
2023 City Council Special Advisor To The Director 154520.00000 1.545200e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.545200e+06 1.545200e+06 0.00 NULL
2023 Civil Service Commission Administrative Manager 126963.00000 1.269630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.269630e+05 1.269630e+05 0.00 NULL
2023 Civil Service Commission Agency Attorney 69531.00000 2.085930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.085930e+05 2.085930e+05 0.00 NULL
2023 Civil Service Commission Chairman 1811.53150 1.811532e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.811532e+03 1.811532e+03 0.00 NULL
2023 Civil Service Commission Clerical Associate 52414.00000 5.241400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.241400e+04 5.241400e+04 0.00 NULL
2023 Civil Service Commission Commissioner 1569.12700 4.707381e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.707381e+03 4.707381e+03 0.00 NULL
2023 Civil Service Commission Community Associate 59586.50000 1.191730e+05 35.48 1.774000e+01 17.740 1.00 2 1.774000e+01 35.48 1.192085e+05 1.192085e+05 0.00 NULL
2023 Civil Service Commission Executive Agency Counsel 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2023 Civilian Complaint Review Bd Adm Manager-Non-Mgrl 104845.50000 2.096910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.096910e+05 2.096910e+05 0.00 NULL
2023 Civilian Complaint Review Bd Administrative Director Of Social Services 115689.60000 1.156896e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.156896e+05 1.156896e+05 0.00 NULL
2023 Civilian Complaint Review Bd Administrative Staff Analyst 185711.09000 1.857111e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.857111e+05 1.857111e+05 0.00 NULL
2023 Civilian Complaint Review Bd Agency Attorney 85490.00000 5.984300e+05 2873.67 4.105243e+02 0.000 49.50 7 0.000000e+00 0.00 6.013037e+05 5.984300e+05 2873.67 NULL
2023 Civilian Complaint Review Bd Agency Attorney Interne 72000.00000 7.200000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.200000e+04 7.200000e+04 0.00 NULL
2023 Civilian Complaint Review Bd Certified It Administrator 143026.00000 1.430260e+05 5007.94 5.007940e+03 5007.940 60.00 1 5.007940e+03 5007.94 1.480339e+05 1.480339e+05 0.00 NULL
2023 Civilian Complaint Review Bd City Research Scientist 93996.50000 1.879930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.879930e+05 1.879930e+05 0.00 NULL
2023 Civilian Complaint Review Bd Clerical Associate 46178.68000 1.385360e+05 140.02 4.667333e+01 0.910 1.00 3 9.100000e-01 2.73 1.386761e+05 1.385388e+05 137.29 NULL
2023 Civilian Complaint Review Bd College Aide 920.00000 1.840000e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.840000e+03 1.840000e+03 0.00 NULL
2023 Civilian Complaint Review Bd Community Assistant 20572.54375 4.114509e+04 57.40 2.870000e+01 28.700 2.50 2 2.870000e+01 57.40 4.120249e+04 4.120249e+04 0.00 NULL
2023 Civilian Complaint Review Bd Community Associate 50138.31620 3.008299e+05 4877.43 8.129050e+02 218.965 156.50 6 2.189650e+02 1313.79 3.057073e+05 3.021437e+05 3563.64 NULL
2023 Civilian Complaint Review Bd Community Coordinator 73967.06550 7.396707e+05 44736.30 4.473630e+03 3343.315 995.25 10 3.343315e+03 33433.15 7.844070e+05 7.731038e+05 11303.15 NULL
2023 Civilian Complaint Review Bd Computer Operations Manager 140400.00000 1.404000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.404000e+05 1.404000e+05 0.00 NULL
2023 Civilian Complaint Review Bd Computer Specialist 114022.35375 2.280447e+05 7925.39 3.962695e+03 3962.695 111.00 2 3.962695e+03 7925.39 2.359701e+05 2.359701e+05 0.00 NULL
2023 Civilian Complaint Review Bd Computer Systems Manager 130035.00000 2.600700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.600700e+05 2.600700e+05 0.00 NULL
2023 Civilian Complaint Review Bd Deputy Assistant Director 139550.12411 1.953702e+06 19221.86 1.372990e+03 0.000 331.50 14 0.000000e+00 0.00 1.972924e+06 1.953702e+06 19221.86 NULL
2023 Civilian Complaint Review Bd Deputy Executive Director 185711.09000 3.714222e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.714222e+05 3.714222e+05 0.00 NULL
2023 Civilian Complaint Review Bd Executive Agency Counsel 138542.51208 3.325020e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 3.325020e+06 3.325020e+06 0.00 NULL
2023 Civilian Complaint Review Bd Executive Director 226385.43000 2.263854e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.263854e+05 2.263854e+05 0.00 NULL
2023 Civilian Complaint Review Bd Executive Program Specialist 95880.00000 1.917600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.917600e+05 1.917600e+05 0.00 NULL
2023 Civilian Complaint Review Bd Investigative Manager 107538.78542 2.580931e+06 789.62 3.290083e+01 0.000 10.25 24 0.000000e+00 0.00 2.581720e+06 2.580931e+06 789.62 NULL
2023 Civilian Complaint Review Bd Investigator 57842.83353 9.081325e+06 69351.84 4.417315e+02 0.000 1645.75 157 0.000000e+00 0.00 9.150677e+06 9.081325e+06 69351.84 NULL
2023 Civilian Complaint Review Bd Media Services Technician 58300.00000 5.830000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.830000e+04 5.830000e+04 0.00 NULL
2023 Civilian Complaint Review Bd Member, Civilian Complaint Review Board 163.85667 1.966280e+03 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.966280e+03 1.966280e+03 0.00 NULL
2023 Civilian Complaint Review Bd New York City Public Service Fellow 42127.00000 4.212700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.212700e+04 4.212700e+04 0.00 NULL
2023 Civilian Complaint Review Bd Paralegal Aide 64705.00000 6.470500e+04 31.84 3.184000e+01 31.840 1.00 1 3.184000e+01 31.84 6.473684e+04 6.473684e+04 0.00 NULL
2023 Civilian Complaint Review Bd Principal Administrative Associate - Non Supvr 59299.50000 1.185990e+05 131.39 6.569500e+01 65.695 3.50 2 6.569500e+01 131.39 1.187304e+05 1.187304e+05 0.00 NULL
2023 Civilian Complaint Review Bd Procurement Analyst 93407.00000 9.340700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.340700e+04 9.340700e+04 0.00 NULL
2023 Civilian Complaint Review Bd Secretary 68538.00000 1.370760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.370760e+05 1.370760e+05 0.00 NULL
2023 Civilian Complaint Review Bd Special Officer 60384.31875 6.038432e+04 15925.05 1.592505e+04 15925.050 405.75 1 1.592505e+04 15925.05 7.630937e+04 7.630937e+04 0.00 NULL
2023 Civilian Complaint Review Bd Strategic Initiative Specialist 84254.00000 8.425400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.425400e+04 8.425400e+04 0.00 NULL
2023 Civilian Complaint Review Bd Supervisor Of Investigators 88105.32143 2.466949e+06 109744.06 3.919431e+03 922.510 1883.75 28 9.225100e+02 25830.28 2.576693e+06 2.492779e+06 83913.78 NULL
2023 Community College (Bronx) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 114 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Bronx) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Bronx) Adjunct College Lab Tech 10254.14827 2.666079e+05 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 2.666079e+05 2.666079e+05 0.00 NULL
2023 Community College (Bronx) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 299 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Bronx) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Bronx) Adjunct Senior College Lab Tech 18783.45000 1.878345e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.878345e+04 1.878345e+04 0.00 NULL
2023 Community College (Bronx) Administrator 160714.00000 4.821420e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.821420e+05 4.821420e+05 0.00 NULL
2023 Community College (Bronx) Administrator Supt Campus B/G 112665.00000 1.126650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.126650e+05 1.126650e+05 0.00 NULL
2023 Community College (Bronx) Assistant College Security Director 85000.00000 1.700000e+05 645.83 3.229150e+02 322.915 15.00 2 3.229150e+02 645.83 1.706458e+05 1.706458e+05 0.00 NULL
2023 Community College (Bronx) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 90 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Bronx) Assistant Purchasing Agent 40170.00000 4.017000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.017000e+04 4.017000e+04 0.00 NULL
2023 Community College (Bronx) Assistant To Heo 72986.93750 2.335582e+06 4135.77 1.292428e+02 0.000 66.25 32 0.000000e+00 0.00 2.339718e+06 2.335582e+06 4135.77 NULL
2023 Community College (Bronx) Assistant Vice President 152655.00000 4.579650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.579650e+05 4.579650e+05 0.00 NULL
2023 Community College (Bronx) Associate Administrator 139920.00000 2.798400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.798400e+05 2.798400e+05 0.00 NULL
2023 Community College (Bronx) Associate Dean 147709.00000 2.954180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.954180e+05 2.954180e+05 0.00 NULL
2023 Community College (Bronx) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 121 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Bronx) Business Data And Reporting Analyst 49827.20889 8.968898e+05 5912.75 3.284861e+02 0.000 161.00 18 0.000000e+00 0.00 9.028025e+05 8.968898e+05 5912.75 NULL
2023 Community College (Bronx) Campus Peace Officer 43351.08000 1.083777e+06 123997.15 4.959886e+03 4213.790 4022.75 25 4.213790e+03 105344.75 1.207774e+06 1.189122e+06 18652.40 NULL
2023 Community College (Bronx) Campus Public Safety Sergeant 60221.75000 2.408870e+05 96755.71 2.418893e+04 25977.890 2242.33 4 2.418893e+04 96755.71 3.376427e+05 3.376427e+05 0.00 NULL
2023 Community College (Bronx) Campus Security Assistant 21813.83417 3.272075e+05 71969.17 4.797945e+03 642.820 2794.75 15 6.428200e+02 9642.30 3.991767e+05 3.368498e+05 62326.87 NULL
2023 Community College (Bronx) Carpenter NA NA 11091.07 5.545535e+03 5545.535 143.00 2 5.545535e+03 11091.07 NA NA NA NULL
2023 Community College (Bronx) Cement Mason NA NA 3848.00 1.924000e+03 1924.000 40.00 2 1.924000e+03 3848.00 NA NA NA NULL
2023 Community College (Bronx) Chief Administrative Supt Campus B/G 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2023 Community College (Bronx) Chief College Lab Technician 92556.00000 3.702240e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.702240e+05 3.702240e+05 0.00 NULL
2023 Community College (Bronx) City Laborer NA NA 68535.36 5.711280e+03 6937.365 1190.00 12 5.711280e+03 68535.36 NA NA NA NULL
2023 Community College (Bronx) Clip Instructor 64117.00000 5.129360e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.129360e+05 5.129360e+05 0.00 NULL
2023 Community College (Bronx) College Accountant 58837.50000 2.353500e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.353500e+05 2.353500e+05 0.00 NULL
2023 Community College (Bronx) College Accounting Assistant 47435.50000 9.487100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.487100e+04 9.487100e+04 0.00 NULL
2023 Community College (Bronx) College Assistant 8868.49450 1.915595e+06 0.00 0.000000e+00 0.000 0.00 216 0.000000e+00 0.00 1.915595e+06 1.915595e+06 0.00 NULL
2023 Community College (Bronx) College Graph Designer 47661.05000 1.906442e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.906442e+05 1.906442e+05 0.00 NULL
2023 Community College (Bronx) College Lab Technician 62500.27714 8.750039e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 8.750039e+05 8.750039e+05 0.00 NULL
2023 Community College (Bronx) College Print Shop Assistant 39167.00000 3.916700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.916700e+04 3.916700e+04 0.00 NULL
2023 Community College (Bronx) College Print Shop Associate 45644.50000 9.128900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.128900e+04 9.128900e+04 0.00 NULL
2023 Community College (Bronx) College Security Director 114704.00000 1.147040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.147040e+05 1.147040e+05 0.00 NULL
2023 Community College (Bronx) College Security Specialist 66424.66667 1.992740e+05 8169.59 2.723197e+03 3344.390 179.25 3 2.723197e+03 8169.59 2.074436e+05 2.074436e+05 0.00 NULL
2023 Community College (Bronx) Computer Systems Manager 105402.66667 3.162080e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.162080e+05 3.162080e+05 0.00 NULL
2023 Community College (Bronx) Continuing Education Teacher 9616.15470 3.173331e+05 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 3.173331e+05 3.173331e+05 0.00 NULL
2023 Community College (Bronx) Cuny Administrator Assistant 55902.00000 6.708240e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 6.708240e+05 6.708240e+05 0.00 NULL
2023 Community College (Bronx) Cuny Art Model 518.00000 1.554000e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.554000e+03 1.554000e+03 0.00 NULL
2023 Community College (Bronx) Cuny Custodial Assistant 35409.48649 1.310151e+06 8212.26 2.219530e+02 0.000 322.50 37 0.000000e+00 0.00 1.318363e+06 1.310151e+06 8212.26 NULL
2023 Community College (Bronx) Cuny Office Assistant 38759.26316 2.945704e+06 0.00 0.000000e+00 0.000 0.00 76 0.000000e+00 0.00 2.945704e+06 2.945704e+06 0.00 NULL
2023 Community College (Bronx) Cuny Start Instructor 73891.42857 5.172400e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.172400e+05 5.172400e+05 0.00 NULL
2023 Community College (Bronx) Custodial Supervisor 38873.00000 1.554920e+05 2534.63 6.336575e+02 237.375 85.50 4 2.373750e+02 949.50 1.580266e+05 1.564415e+05 1585.13 NULL
2023 Community College (Bronx) Dean 160657.50000 3.213150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.213150e+05 3.213150e+05 0.00 NULL
2023 Community College (Bronx) Disability Accommodations Specialist 20355.68750 1.221341e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.221341e+05 1.221341e+05 0.00 NULL
2023 Community College (Bronx) Electrician NA NA 26975.52 1.348776e+04 13487.760 286.00 2 1.348776e+04 26975.52 NA NA NA NULL
2023 Community College (Bronx) Eoc Accounting Assistant 44601.00000 4.460100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.460100e+04 4.460100e+04 0.00 NULL
2023 Community College (Bronx) Eoc Adjunct College Lab Tech 13668.33000 2.733666e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.733666e+04 2.733666e+04 0.00 NULL
2023 Community College (Bronx) Eoc Adjunct Lecturer 29179.96875 2.917997e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 2.917997e+05 2.917997e+05 0.00 NULL
2023 Community College (Bronx) Eoc Administrative Assistant 57629.00000 1.152580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.152580e+05 1.152580e+05 0.00 NULL
2023 Community College (Bronx) Eoc Assistant To Heo 76874.30000 7.687430e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.687430e+05 7.687430e+05 0.00 NULL
2023 Community College (Bronx) Eoc College Lab Technician 74430.00000 7.443000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.443000e+04 7.443000e+04 0.00 NULL
2023 Community College (Bronx) Eoc Custodial Assistant 35610.00000 7.122000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.122000e+04 7.122000e+04 0.00 NULL
2023 Community College (Bronx) Eoc Custodial Supervisor 42874.00000 4.287400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.287400e+04 4.287400e+04 0.00 NULL
2023 Community College (Bronx) Eoc Higher Education Assistant 99532.00000 9.953200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.953200e+04 9.953200e+04 0.00 NULL
2023 Community College (Bronx) Eoc Higher Education Associate 104059.00000 2.081180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.081180e+05 2.081180e+05 0.00 NULL
2023 Community College (Bronx) Eoc Higher Education Officer 109989.66667 3.299690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.299690e+05 3.299690e+05 0.00 NULL
2023 Community College (Bronx) Eoc Lecturer 86802.00000 2.604060e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.604060e+05 2.604060e+05 0.00 NULL
2023 Community College (Bronx) Eoc Office Assistant 39388.80000 1.969440e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.969440e+05 1.969440e+05 0.00 NULL
2023 Community College (Bronx) High Pressure Plant Tender NA NA 89416.20 1.277374e+04 2520.000 1606.00 7 2.520000e+03 17640.00 NA NA NA NULL
2023 Community College (Bronx) Higher Education Assistant 87073.75000 8.010785e+06 0.00 0.000000e+00 0.000 0.00 92 0.000000e+00 0.00 8.010785e+06 8.010785e+06 0.00 NULL
2023 Community College (Bronx) Higher Education Associate 105997.20690 3.073919e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 3.073919e+06 3.073919e+06 0.00 NULL
2023 Community College (Bronx) Higher Education Officer 129889.74359 5.065700e+06 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 5.065700e+06 5.065700e+06 0.00 NULL
2023 Community College (Bronx) Instructor 67708.00000 1.354160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.354160e+05 1.354160e+05 0.00 NULL
2023 Community College (Bronx) It Assistant 56742.01778 5.106782e+05 9323.96 1.035996e+03 178.530 235.00 9 1.785300e+02 1606.77 5.200021e+05 5.122849e+05 7717.19 NULL
2023 Community College (Bronx) It Associate 85098.16667 5.105890e+05 329.55 5.492500e+01 0.000 6.00 6 0.000000e+00 0.00 5.109185e+05 5.105890e+05 329.55 NULL
2023 Community College (Bronx) It Senior Associate 110017.50000 2.200350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.200350e+05 2.200350e+05 0.00 NULL
2023 Community College (Bronx) It Support Assistant 38772.17519 1.008077e+06 12179.59 4.684458e+02 0.000 420.00 26 0.000000e+00 0.00 1.020256e+06 1.008077e+06 12179.59 NULL
2023 Community College (Bronx) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 71 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Bronx) Lecturer/Doctoral Schedule 85168.00000 2.555040e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.555040e+05 2.555040e+05 0.00 NULL
2023 Community College (Bronx) Locksmith NA NA 9338.29 9.338290e+03 9338.290 234.50 1 9.338290e+03 9338.29 NA NA NA NULL
2023 Community College (Bronx) Machinist NA NA 354.16 3.541600e+02 354.160 6.00 1 3.541600e+02 354.16 NA NA NA NULL
2023 Community College (Bronx) Mail/Message Services Worker 38406.00000 7.681200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.681200e+04 7.681200e+04 0.00 NULL
2023 Community College (Bronx) Maintenance Worker NA NA 5439.77 7.771100e+02 759.020 102.00 7 7.590200e+02 5313.14 NA NA NA NULL
2023 Community College (Bronx) Motor Vehicle Operator 44084.00000 8.816800e+04 1731.79 8.658950e+02 865.895 53.17 2 8.658950e+02 1731.79 8.989979e+04 8.989979e+04 0.00 NULL
2023 Community College (Bronx) Non-Teaching Adjunct Ii 3888.37262 3.266233e+05 0.00 0.000000e+00 0.000 0.00 84 0.000000e+00 0.00 3.266233e+05 3.266233e+05 0.00 NULL
2023 Community College (Bronx) Non-Teaching Adjunct Iii 1183.83386 4.143418e+04 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 4.143418e+04 4.143418e+04 0.00 NULL
2023 Community College (Bronx) Non-Teaching Adjunct Iv 1177.70971 2.002106e+04 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.002106e+04 2.002106e+04 0.00 NULL
2023 Community College (Bronx) Non-Teaching Adjunct V 1598.58321 2.238017e+04 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.238017e+04 2.238017e+04 0.00 NULL
2023 Community College (Bronx) Nurse Practitioner 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2023 Community College (Bronx) Painter NA NA 13587.51 4.529170e+03 6717.800 201.25 3 4.529170e+03 13587.51 NA NA NA NULL
2023 Community College (Bronx) Plumber NA NA 22742.61 7.580870e+03 3240.530 191.75 3 3.240530e+03 9721.59 NA NA NA NULL
2023 Community College (Bronx) Plumber’s Helper NA NA 1038.47 5.192350e+02 519.235 4.50 2 5.192350e+02 1038.47 NA NA NA NULL
2023 Community College (Bronx) President 280908.00000 2.809080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.809080e+05 2.809080e+05 0.00 NULL
2023 Community College (Bronx) Principal Custodial Supervisor 65774.00000 6.577400e+04 1650.01 1.650010e+03 1650.010 34.50 1 1.650010e+03 1650.01 6.742401e+04 6.742401e+04 0.00 NULL
2023 Community College (Bronx) Professor NA NA 0.00 0.000000e+00 0.000 0.00 123 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Bronx) Project Manager 90940.00000 1.818800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.818800e+05 1.818800e+05 0.00 NULL
2023 Community College (Bronx) Senior College Lab Tech 78856.33333 9.462760e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 9.462760e+05 9.462760e+05 0.00 NULL
2023 Community College (Bronx) Senior Stationary Engineer NA NA 1253.04 1.253040e+03 1253.040 11.50 1 1.253040e+03 1253.04 NA NA NA NULL
2023 Community College (Bronx) Senior Vice President 227660.00000 2.276600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.276600e+05 2.276600e+05 0.00 NULL
2023 Community College (Bronx) Sr College Laboratory Tech 14398.92000 1.439892e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.439892e+04 1.439892e+04 0.00 NULL
2023 Community College (Bronx) Stationary Engineer NA NA 205873.20 2.941046e+04 22800.600 2158.00 7 2.280060e+04 159604.20 NA NA NA NULL
2023 Community College (Bronx) Steam Fitter NA NA 27020.20 5.404040e+03 2979.820 158.00 5 2.979820e+03 14899.10 NA NA NA NULL
2023 Community College (Bronx) Stock Worker 36653.50000 1.466140e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.466140e+05 1.466140e+05 0.00 NULL
2023 Community College (Bronx) Supervisor Carpenter NA NA 3692.00 3.692000e+03 3692.000 43.00 1 3.692000e+03 3692.00 NA NA NA NULL
2023 Community College (Bronx) Supervisor Electrician NA NA 84819.50 8.481950e+04 84819.500 835.00 1 8.481950e+04 84819.50 NA NA NA NULL
2023 Community College (Bronx) Thermostat Repairer NA NA 1480.88 3.702200e+02 285.560 12.00 4 2.855600e+02 1142.24 NA NA NA NULL
2023 Community College (Bronx) University Professor 170452.00000 1.704520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.704520e+05 1.704520e+05 0.00 NULL
2023 Community College (Bronx) Vice President 183411.66667 1.100470e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.100470e+06 1.100470e+06 0.00 NULL
2023 Community College (Hostos) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 117 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Hostos) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Hostos) Adjunct College Lab Tech 14586.10444 1.312749e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.312749e+05 1.312749e+05 0.00 NULL
2023 Community College (Hostos) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 145 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Hostos) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Hostos) Administrator 165954.00000 3.319080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.319080e+05 3.319080e+05 0.00 NULL
2023 Community College (Hostos) Administrator Supt Campus B/G 94801.00000 9.480100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.480100e+04 9.480100e+04 0.00 NULL
2023 Community College (Hostos) Assistant Administrator 142275.00000 5.691000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.691000e+05 5.691000e+05 0.00 NULL
2023 Community College (Hostos) Assistant College Security Director 95205.00000 1.904100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.904100e+05 1.904100e+05 0.00 NULL
2023 Community College (Hostos) Assistant Dean 127145.00000 2.542900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.542900e+05 2.542900e+05 0.00 NULL
2023 Community College (Hostos) Assistant Principal Custodial Supervisor 47155.00000 4.715500e+04 904.31 9.043100e+02 904.310 26.25 1 9.043100e+02 904.31 4.805931e+04 4.805931e+04 0.00 NULL
2023 Community College (Hostos) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 72 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Hostos) Assistant To Heo 60142.90566 3.187574e+06 0.00 0.000000e+00 0.000 0.00 53 0.000000e+00 0.00 3.187574e+06 3.187574e+06 0.00 NULL
2023 Community College (Hostos) Assistant Vice President 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2023 Community College (Hostos) Associate Administrator 140010.00000 1.400100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400100e+05 1.400100e+05 0.00 NULL
2023 Community College (Hostos) Associate Dean 139000.00000 2.780000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.780000e+05 2.780000e+05 0.00 NULL
2023 Community College (Hostos) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 59 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Hostos) Business Data And Reporting Analyst 55608.00000 1.112160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.112160e+05 1.112160e+05 0.00 NULL
2023 Community College (Hostos) Campus Peace Officer 44398.94118 7.547820e+05 306756.36 1.804449e+04 14192.610 9213.50 17 1.419261e+04 241274.37 1.061538e+06 9.960564e+05 65481.99 NULL
2023 Community College (Hostos) Campus Public Safety Sergeant 59948.20000 2.997410e+05 115381.33 2.307627e+04 25139.130 2667.00 5 2.307627e+04 115381.33 4.151223e+05 4.151223e+05 0.00 NULL
2023 Community College (Hostos) Campus Security Assistant 35114.20000 1.755710e+05 43735.96 8.747192e+03 8336.820 1741.50 5 8.336820e+03 41684.10 2.193070e+05 2.172551e+05 2051.86 NULL
2023 Community College (Hostos) Chief Administrative Supt Campus B/G 158339.00000 1.583390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.583390e+05 1.583390e+05 0.00 NULL
2023 Community College (Hostos) City Laborer NA NA 32265.44 8.066360e+03 9179.160 593.35 4 8.066360e+03 32265.44 NA NA NA NULL
2023 Community College (Hostos) Clip Instructor 66388.00000 5.311040e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.311040e+05 5.311040e+05 0.00 NULL
2023 Community College (Hostos) College Accountant 63799.00000 1.275980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.275980e+05 1.275980e+05 0.00 NULL
2023 Community College (Hostos) College Accounting Assistant 47435.50000 9.487100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.487100e+04 9.487100e+04 0.00 NULL
2023 Community College (Hostos) College Assistant 6972.58129 2.015076e+06 0.00 0.000000e+00 0.000 0.00 289 0.000000e+00 0.00 2.015076e+06 2.015076e+06 0.00 NULL
2023 Community College (Hostos) College Lab Technician 69490.72727 7.643980e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.643980e+05 7.643980e+05 0.00 NULL
2023 Community College (Hostos) College Print Shop Assistant 39183.00000 3.918300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.918300e+04 3.918300e+04 0.00 NULL
2023 Community College (Hostos) College Security Director 143484.00000 2.869680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.869680e+05 2.869680e+05 0.00 NULL
2023 Community College (Hostos) College Security Specialist 63124.00000 1.262480e+05 4557.36 2.278680e+03 2278.680 100.50 2 2.278680e+03 4557.36 1.308054e+05 1.308054e+05 0.00 NULL
2023 Community College (Hostos) Computer Systems Manager 124646.00000 2.492920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.492920e+05 2.492920e+05 0.00 NULL
2023 Community College (Hostos) Continuing Education Teacher 12126.51051 9.579943e+05 0.00 0.000000e+00 0.000 0.00 79 0.000000e+00 0.00 9.579943e+05 9.579943e+05 0.00 NULL
2023 Community College (Hostos) Cuny Administrator Assistant 61356.42857 4.294950e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.294950e+05 4.294950e+05 0.00 NULL
2023 Community College (Hostos) Cuny Custodial Assistant 34430.78571 9.640620e+05 27793.24 9.926157e+02 887.555 1126.75 28 8.875550e+02 24851.54 9.918552e+05 9.889135e+05 2941.70 NULL
2023 Community College (Hostos) Cuny Office Assistant 40938.97778 1.842254e+06 211.91 4.709111e+00 0.000 10.75 45 0.000000e+00 0.00 1.842466e+06 1.842254e+06 211.91 NULL
2023 Community College (Hostos) Cuny Start Instructor 73637.88889 6.627410e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 6.627410e+05 6.627410e+05 0.00 NULL
2023 Community College (Hostos) Custodial Supervisor 38873.00000 2.332380e+05 19512.12 3.252020e+03 3170.710 701.00 6 3.170710e+03 19024.26 2.527501e+05 2.522623e+05 487.86 NULL
2023 Community College (Hostos) Dean 149051.50000 2.981030e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.981030e+05 2.981030e+05 0.00 NULL
2023 Community College (Hostos) Disability Accommodations Specialist 14783.38830 1.330505e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.330505e+05 1.330505e+05 0.00 NULL
2023 Community College (Hostos) Electrician NA NA 22518.90 7.506300e+03 10611.000 238.75 3 7.506300e+03 22518.90 NA NA NA NULL
2023 Community College (Hostos) Electricians Helper NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Hostos) High Pressure Plant Tender NA NA 27646.31 2.764631e+04 27646.310 436.75 1 2.764631e+04 27646.31 NA NA NA NULL
2023 Community College (Hostos) Higher Education Assistant 80012.24096 6.641016e+06 0.00 0.000000e+00 0.000 0.00 83 0.000000e+00 0.00 6.641016e+06 6.641016e+06 0.00 NULL
2023 Community College (Hostos) Higher Education Associate 102670.24444 4.620161e+06 0.00 0.000000e+00 0.000 0.00 45 0.000000e+00 0.00 4.620161e+06 4.620161e+06 0.00 NULL
2023 Community College (Hostos) Higher Education Officer 129432.18750 4.141830e+06 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 4.141830e+06 4.141830e+06 0.00 NULL
2023 Community College (Hostos) Instructor 78525.33333 2.355760e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.355760e+05 2.355760e+05 0.00 NULL
2023 Community College (Hostos) It Assistant 48219.25692 6.268503e+05 2178.22 1.675554e+02 0.000 48.00 13 0.000000e+00 0.00 6.290286e+05 6.268503e+05 2178.22 NULL
2023 Community College (Hostos) It Associate 72209.00000 7.220900e+04 1495.58 1.495580e+03 1495.580 34.25 1 1.495580e+03 1495.58 7.370458e+04 7.370458e+04 0.00 NULL
2023 Community College (Hostos) It Senior Associate 102313.33333 3.069400e+05 2953.79 9.845967e+02 0.000 42.75 3 0.000000e+00 0.00 3.098938e+05 3.069400e+05 2953.79 NULL
2023 Community College (Hostos) It Support Assistant 34618.63611 3.115677e+05 170.13 1.890333e+01 0.000 6.25 9 0.000000e+00 0.00 3.117379e+05 3.115677e+05 170.13 NULL
2023 Community College (Hostos) Lead Theatre Technician 6166.01573 1.479844e+05 10366.89 4.319538e+02 19.035 229.00 24 1.903500e+01 456.84 1.583513e+05 1.484412e+05 9910.05 NULL
2023 Community College (Hostos) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 55 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Hostos) Lecturer/Doctoral Schedule 81188.60000 4.059430e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.059430e+05 4.059430e+05 0.00 NULL
2023 Community College (Hostos) Locksmith NA NA 525.85 2.629250e+02 262.925 11.00 2 2.629250e+02 525.85 NA NA NA NULL
2023 Community College (Hostos) Mail/Message Services Worker 39704.50000 1.588180e+05 276.59 6.914750e+01 0.000 0.00 4 0.000000e+00 0.00 1.590946e+05 1.588180e+05 276.59 NULL
2023 Community College (Hostos) Maintenance Worker NA NA 54214.82 6.776852e+03 3294.470 1213.00 8 3.294470e+03 26355.76 NA NA NA NULL
2023 Community College (Hostos) Non-Teaching Adjunct I 9286.01779 2.414365e+05 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 2.414365e+05 2.414365e+05 0.00 NULL
2023 Community College (Hostos) Non-Teaching Adjunct Ii 8091.36521 9.709638e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 9.709638e+04 9.709638e+04 0.00 NULL
2023 Community College (Hostos) Non-Teaching Adjunct Iii 1769.20231 4.776846e+04 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 4.776846e+04 4.776846e+04 0.00 NULL
2023 Community College (Hostos) Non-Teaching Adjunct Iv 2089.40556 1.880465e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.880465e+04 1.880465e+04 0.00 NULL
2023 Community College (Hostos) Non-Teaching Adjunct V 7790.70417 4.674422e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.674422e+04 4.674422e+04 0.00 NULL
2023 Community College (Hostos) Oiler NA NA 24019.52 2.401952e+04 24019.520 268.00 1 2.401952e+04 24019.52 NA NA NA NULL
2023 Community College (Hostos) Painter NA NA 506.36 2.531800e+02 253.180 7.50 2 2.531800e+02 506.36 NA NA NA NULL
2023 Community College (Hostos) Plumber NA NA 2473.74 8.245800e+02 211.490 19.75 3 2.114900e+02 634.47 NA NA NA NULL
2023 Community College (Hostos) Plumber’s Helper NA NA 2160.93 2.160930e+03 2160.930 24.25 1 2.160930e+03 2160.93 NA NA NA NULL
2023 Community College (Hostos) President 283560.00000 2.835600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.835600e+05 2.835600e+05 0.00 NULL
2023 Community College (Hostos) Principal Custodial Supervisor 75198.00000 7.519800e+04 6810.91 6.810910e+03 6810.910 124.75 1 6.810910e+03 6810.91 8.200891e+04 8.200891e+04 0.00 NULL
2023 Community College (Hostos) Professor NA NA 0.00 0.000000e+00 0.000 0.00 71 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Hostos) Senior College Lab Tech 77701.33333 2.331040e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.331040e+05 2.331040e+05 0.00 NULL
2023 Community College (Hostos) Senior Custodial Supervisor 41913.00000 8.382600e+04 4531.64 2.265820e+03 2265.820 162.00 2 2.265820e+03 4531.64 8.835764e+04 8.835764e+04 0.00 NULL
2023 Community College (Hostos) Senior Vice President 245000.00000 2.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.450000e+05 2.450000e+05 0.00 NULL
2023 Community College (Hostos) Staff Nurse 84331.00000 8.433100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.433100e+04 8.433100e+04 0.00 NULL
2023 Community College (Hostos) Stationary Engineer NA NA 281859.30 9.395310e+04 93825.900 2954.50 3 9.382590e+04 281477.70 NA NA NA NULL
2023 Community College (Hostos) Stock Worker 40272.00000 4.027200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.027200e+04 4.027200e+04 0.00 NULL
2023 Community College (Hostos) Student Aide 1270.00000 3.810000e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.810000e+03 3.810000e+03 0.00 NULL
2023 Community College (Hostos) Supervisor Thermostat Repair NA NA 46869.54 4.686954e+04 46869.540 352.50 1 4.686954e+04 46869.54 NA NA NA NULL
2023 Community College (Hostos) Vice President 175000.00000 5.250000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.250000e+05 5.250000e+05 0.00 NULL
2023 Community College (Kingsboro) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 77 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Kingsboro) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Kingsboro) Adjunct College Lab Tech 11993.82500 8.755492e+05 0.00 0.000000e+00 0.000 0.00 73 0.000000e+00 0.00 8.755492e+05 8.755492e+05 0.00 NULL
2023 Community College (Kingsboro) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 466 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Kingsboro) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Kingsboro) Adjunct Senior College Lab Tech 17707.43333 5.312230e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.312230e+04 5.312230e+04 0.00 NULL
2023 Community College (Kingsboro) Administrator Supt Campus B/G 98156.00000 1.963120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.963120e+05 1.963120e+05 0.00 NULL
2023 Community College (Kingsboro) Assistant Administrator 142639.00000 2.852780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.852780e+05 2.852780e+05 0.00 NULL
2023 Community College (Kingsboro) Assistant College Security Director 79077.33333 2.372320e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.372320e+05 2.372320e+05 0.00 NULL
2023 Community College (Kingsboro) Assistant Dean 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2023 Community College (Kingsboro) Assistant Principal Custodial Supervisor 47165.00000 9.433000e+04 4762.22 2.381110e+03 2381.110 138.25 2 2.381110e+03 4762.22 9.909222e+04 9.909222e+04 0.00 NULL
2023 Community College (Kingsboro) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 157 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Kingsboro) Assistant Purchasing Agent 45396.00000 4.539600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.539600e+04 4.539600e+04 0.00 NULL
2023 Community College (Kingsboro) Assistant To Heo 67129.26829 2.752300e+06 940.07 2.292854e+01 0.000 18.50 41 0.000000e+00 0.00 2.753240e+06 2.752300e+06 940.07 NULL
2023 Community College (Kingsboro) Assistant Vice President 174200.00000 3.484000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.484000e+05 3.484000e+05 0.00 NULL
2023 Community College (Kingsboro) Associate Administrator 153827.00000 4.614810e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.614810e+05 4.614810e+05 0.00 NULL
2023 Community College (Kingsboro) Associate Dean 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2023 Community College (Kingsboro) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 111 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Kingsboro) Auto Mechanic NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Kingsboro) Campus Peace Officer 44266.94444 7.968050e+05 116596.04 6.477558e+03 3943.660 3423.10 18 3.943660e+03 70985.88 9.134010e+05 8.677909e+05 45610.16 NULL
2023 Community College (Kingsboro) Campus Public Safety Sergeant 61617.90000 6.161790e+05 152898.13 1.528981e+04 11304.725 3538.05 10 1.130473e+04 113047.25 7.690771e+05 7.292262e+05 39850.88 NULL
2023 Community College (Kingsboro) Campus Security Assistant 34442.00000 3.788620e+05 41368.63 3.760785e+03 1084.500 1612.25 11 1.084500e+03 11929.50 4.202306e+05 3.907915e+05 29439.13 NULL
2023 Community College (Kingsboro) Carpenter NA NA 71609.68 1.432194e+04 0.000 876.00 5 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Kingsboro) Chief Administrative Supt Campus B/G 146125.00000 1.461250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.461250e+05 1.461250e+05 0.00 NULL
2023 Community College (Kingsboro) Chief College Lab Technician 66906.37429 4.683446e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.683446e+05 4.683446e+05 0.00 NULL
2023 Community College (Kingsboro) City Laborer NA NA 72061.04 5.543157e+03 6180.680 1299.25 13 5.543157e+03 72061.04 NA NA NA NULL
2023 Community College (Kingsboro) Clip Instructor 67356.83333 4.041410e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.041410e+05 4.041410e+05 0.00 NULL
2023 Community College (Kingsboro) College Accountant 61430.50000 1.228610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.228610e+05 1.228610e+05 0.00 NULL
2023 Community College (Kingsboro) College Accounting Assistant 39469.00000 3.946900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.946900e+04 3.946900e+04 0.00 NULL
2023 Community College (Kingsboro) College Assistant 8960.44025 2.302833e+06 67.50 2.626459e-01 0.000 2.25 257 0.000000e+00 0.00 2.302901e+06 2.302833e+06 67.50 NULL
2023 Community College (Kingsboro) College Lab Technician 55056.86941 9.359668e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 9.359668e+05 9.359668e+05 0.00 NULL
2023 Community College (Kingsboro) College Print Shop Assistant 40114.00000 1.203420e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.203420e+05 1.203420e+05 0.00 NULL
2023 Community College (Kingsboro) College Print Shop Associate 51608.00000 5.160800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.160800e+04 5.160800e+04 0.00 NULL
2023 Community College (Kingsboro) College Print Shop Coordinator 64417.00000 6.441700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.441700e+04 6.441700e+04 0.00 NULL
2023 Community College (Kingsboro) College Security Director 124848.00000 1.248480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.248480e+05 1.248480e+05 0.00 NULL
2023 Community College (Kingsboro) College Security Specialist 65333.50000 1.306670e+05 21210.37 1.060518e+04 10605.185 462.25 2 1.060518e+04 21210.37 1.518774e+05 1.518774e+05 0.00 NULL
2023 Community College (Kingsboro) Computer Operator Manager 95621.50000 1.912430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.912430e+05 1.912430e+05 0.00 NULL
2023 Community College (Kingsboro) Computer Systems Manager 107646.00000 3.229380e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.229380e+05 3.229380e+05 0.00 NULL
2023 Community College (Kingsboro) Continuing Education Teacher NA NA 0.00 0.000000e+00 0.000 0.00 203 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Kingsboro) Cuny Administrator Assistant 54867.11111 9.876080e+05 393.61 2.186722e+01 0.000 12.25 18 0.000000e+00 0.00 9.880016e+05 9.876080e+05 393.61 NULL
2023 Community College (Kingsboro) Cuny Broadcast Associate 61875.00000 6.187500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.187500e+04 6.187500e+04 0.00 NULL
2023 Community College (Kingsboro) Cuny Custodial Assistant 29264.00794 2.575233e+06 22887.35 2.600835e+02 2.300 901.50 88 2.300000e+00 202.40 2.598120e+06 2.575435e+06 22684.95 NULL
2023 Community College (Kingsboro) Cuny Office Assistant 39192.84444 1.763678e+06 1515.76 3.368356e+01 0.000 60.00 45 0.000000e+00 0.00 1.765194e+06 1.763678e+06 1515.76 NULL
2023 Community College (Kingsboro) Cuny Start Instructor 67174.20000 3.358710e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.358710e+05 3.358710e+05 0.00 NULL
2023 Community College (Kingsboro) Custodial Supervisor 38877.00000 1.555080e+05 4957.67 1.239418e+03 1190.630 173.50 4 1.190630e+03 4762.52 1.604657e+05 1.602705e+05 195.15 NULL
2023 Community College (Kingsboro) Dean 159374.75000 6.374990e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.374990e+05 6.374990e+05 0.00 NULL
2023 Community College (Kingsboro) Disability Accommodations Specialist 7278.20000 1.455640e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.455640e+04 1.455640e+04 0.00 NULL
2023 Community College (Kingsboro) Electrician NA NA 108750.96 3.625032e+04 40793.400 1153.00 3 3.625032e+04 108750.96 NA NA NA NULL
2023 Community College (Kingsboro) Electricians Helper NA NA 5326.65 5.326650e+03 5326.650 89.00 1 5.326650e+03 5326.65 NA NA NA NULL
2023 Community College (Kingsboro) Facilities Coordinator 75430.50000 1.508610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.508610e+05 1.508610e+05 0.00 NULL
2023 Community College (Kingsboro) High Pressure Plant Tender NA NA 46378.73 7.729788e+03 7019.050 859.25 6 7.019050e+03 42114.30 NA NA NA NULL
2023 Community College (Kingsboro) Higher Education Assistant 80700.28302 8.554230e+06 2328.95 2.197123e+01 0.000 28.50 106 0.000000e+00 0.00 8.556559e+06 8.554230e+06 2328.95 NULL
2023 Community College (Kingsboro) Higher Education Associate 104079.01786 5.828425e+06 0.00 0.000000e+00 0.000 0.00 56 0.000000e+00 0.00 5.828425e+06 5.828425e+06 0.00 NULL
2023 Community College (Kingsboro) Higher Education Officer 128787.50000 6.181800e+06 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 6.181800e+06 6.181800e+06 0.00 NULL
2023 Community College (Kingsboro) It Assistant 60372.50000 1.207450e+06 8322.66 4.161330e+02 23.715 235.50 20 2.371500e+01 474.30 1.215773e+06 1.207924e+06 7848.36 NULL
2023 Community College (Kingsboro) It Associate 76428.75000 3.057150e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.057150e+05 3.057150e+05 0.00 NULL
2023 Community College (Kingsboro) It Senior Associate 104579.50000 2.091590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.091590e+05 2.091590e+05 0.00 NULL
2023 Community College (Kingsboro) It Support Assistant 44477.33333 2.668640e+05 284.59 4.743167e+01 0.000 11.50 6 0.000000e+00 0.00 2.671486e+05 2.668640e+05 284.59 NULL
2023 Community College (Kingsboro) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 159 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Kingsboro) Lecturer/Doctoral Schedule 85856.23077 1.116131e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.116131e+06 1.116131e+06 0.00 NULL
2023 Community College (Kingsboro) Locksmith NA NA 103.58 1.035800e+02 103.580 3.25 1 1.035800e+02 103.58 NA NA NA NULL
2023 Community College (Kingsboro) Mail/Message Services Worker 39187.25000 1.567490e+05 88.13 2.203250e+01 0.000 3.50 4 0.000000e+00 0.00 1.568371e+05 1.567490e+05 88.13 NULL
2023 Community College (Kingsboro) Maintenance Worker NA NA 102188.01 1.703133e+04 22126.890 2203.50 6 1.703133e+04 102188.01 NA NA NA NULL
2023 Community College (Kingsboro) Media Services Technician 69832.00000 6.983200e+04 9289.69 9.289690e+03 9289.690 199.00 1 9.289690e+03 9289.69 7.912169e+04 7.912169e+04 0.00 NULL
2023 Community College (Kingsboro) Non-Teaching Adjunct I 6571.29150 1.511397e+06 0.00 0.000000e+00 0.000 0.00 230 0.000000e+00 0.00 1.511397e+06 1.511397e+06 0.00 NULL
2023 Community College (Kingsboro) Non-Teaching Adjunct Iii 4818.75472 1.782939e+05 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 1.782939e+05 1.782939e+05 0.00 NULL
2023 Community College (Kingsboro) Non-Teaching Adjunct Iv 10840.70769 1.409292e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.409292e+05 1.409292e+05 0.00 NULL
2023 Community College (Kingsboro) Non-Teaching Adjunct V 6041.02787 7.249233e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.249233e+04 7.249233e+04 0.00 NULL
2023 Community College (Kingsboro) Oiler NA NA 8626.44 4.313220e+03 4313.220 96.25 2 4.313220e+03 8626.44 NA NA NA NULL
2023 Community College (Kingsboro) Painter NA NA 71228.85 5.479142e+03 1012.730 1055.00 13 1.012730e+03 13165.49 NA NA NA NULL
2023 Community College (Kingsboro) Plumber NA NA 46025.46 6.575066e+03 139.870 373.00 7 1.398700e+02 979.09 NA NA NA NULL
2023 Community College (Kingsboro) President 280908.00000 2.809080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.809080e+05 2.809080e+05 0.00 NULL
2023 Community College (Kingsboro) Principal Custodial Supervisor 65598.00000 6.559800e+04 3192.66 3.192660e+03 3192.660 67.75 1 3.192660e+03 3192.66 6.879066e+04 6.879066e+04 0.00 NULL
2023 Community College (Kingsboro) Professor NA NA 0.00 0.000000e+00 0.000 0.00 145 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Kingsboro) Project Manager 107428.00000 1.074280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074280e+05 1.074280e+05 0.00 NULL
2023 Community College (Kingsboro) Purchasing Agent 63070.50000 1.261410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.261410e+05 1.261410e+05 0.00 NULL
2023 Community College (Kingsboro) Senior College Lab Tech 77056.58333 9.246790e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 9.246790e+05 9.246790e+05 0.00 NULL
2023 Community College (Kingsboro) Senior Custodial Supervisor 41913.00000 4.191300e+04 775.32 7.753200e+02 775.320 25.75 1 7.753200e+02 775.32 4.268832e+04 4.268832e+04 0.00 NULL
2023 Community College (Kingsboro) Senior Stationary Engineer NA NA 40202.37 2.010119e+04 20101.185 387.75 2 2.010119e+04 40202.37 NA NA NA NULL
2023 Community College (Kingsboro) Senior Vice President 205999.00000 2.059990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.059990e+05 2.059990e+05 0.00 NULL
2023 Community College (Kingsboro) Sign Language Interpreter 1588.54500 1.588545e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.588545e+03 1.588545e+03 0.00 NULL
2023 Community College (Kingsboro) Sr College Laboratory Tech 4980.01500 1.992006e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.992006e+04 1.992006e+04 0.00 NULL
2023 Community College (Kingsboro) Staff Nurse 40859.45500 2.042973e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.042973e+05 2.042973e+05 0.00 NULL
2023 Community College (Kingsboro) Stationary Engineer NA NA 163768.80 3.275376e+04 40163.400 1759.00 5 3.275376e+04 163768.80 NA NA NA NULL
2023 Community College (Kingsboro) Stock Worker 36516.00000 7.303200e+04 2079.10 1.039550e+03 1039.550 83.40 2 1.039550e+03 2079.10 7.511110e+04 7.511110e+04 0.00 NULL
2023 Community College (Kingsboro) Student Aide 367.50000 3.675000e+03 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 3.675000e+03 3.675000e+03 0.00 NULL
2023 Community College (Kingsboro) Supervisor Of Stock Workers 50992.00000 5.099200e+04 1172.26 1.172260e+03 1172.260 33.00 1 1.172260e+03 1172.26 5.216426e+04 5.216426e+04 0.00 NULL
2023 Community College (Kingsboro) Supervisor Painter NA NA 24151.08 2.415108e+04 24151.080 313.00 1 2.415108e+04 24151.08 NA NA NA NULL
2023 Community College (Kingsboro) Thermostat Repairer NA NA 1360.82 1.360820e+03 1360.820 8.00 1 1.360820e+03 1360.82 NA NA NA NULL
2023 Community College (Kingsboro) University Architect 117801.00000 1.178010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.178010e+05 1.178010e+05 0.00 NULL
2023 Community College (Kingsboro) Vice President 179485.14286 1.256396e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.256396e+06 1.256396e+06 0.00 NULL
2023 Community College (Kingsboro) NA 55092.00000 5.509200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.509200e+04 5.509200e+04 0.00 NULL
2023 Community College (Laguardia) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 173 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Laguardia) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Laguardia) Adjunct College Lab Tech 10459.13736 7.530579e+05 0.00 0.000000e+00 0.000 0.00 72 0.000000e+00 0.00 7.530579e+05 7.530579e+05 0.00 NULL
2023 Community College (Laguardia) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 472 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Laguardia) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Laguardia) Administrator 174705.00000 5.241150e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.241150e+05 5.241150e+05 0.00 NULL
2023 Community College (Laguardia) Administrator Supt Campus B/G 84371.66667 2.531150e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.531150e+05 2.531150e+05 0.00 NULL
2023 Community College (Laguardia) Assistant Administrator 141400.00000 2.828000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.828000e+05 2.828000e+05 0.00 NULL
2023 Community College (Laguardia) Assistant College Security Director 81600.00000 8.160000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.160000e+04 8.160000e+04 0.00 NULL
2023 Community College (Laguardia) Assistant Dean 146523.00000 4.395690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.395690e+05 4.395690e+05 0.00 NULL
2023 Community College (Laguardia) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Laguardia) Assistant To Heo 68052.33803 4.831716e+06 0.00 0.000000e+00 0.000 0.00 71 0.000000e+00 0.00 4.831716e+06 4.831716e+06 0.00 NULL
2023 Community College (Laguardia) Assistant Vice President 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2023 Community College (Laguardia) Associate Administrator 153843.83333 9.230630e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.230630e+05 9.230630e+05 0.00 NULL
2023 Community College (Laguardia) Associate Dean 153992.33333 4.619770e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.619770e+05 4.619770e+05 0.00 NULL
2023 Community College (Laguardia) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 148 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Laguardia) Business Data And Reporting Analyst 46897.59429 3.282832e+05 4012.05 5.731500e+02 0.000 94.75 7 0.000000e+00 0.00 3.322952e+05 3.282832e+05 4012.05 NULL
2023 Community College (Laguardia) Campus Peace Officer 46687.38462 1.213872e+06 76684.68 2.949411e+03 2663.645 2348.50 26 2.663645e+03 69254.77 1.290557e+06 1.283127e+06 7429.91 NULL
2023 Community College (Laguardia) Campus Public Safety Sergeant 60137.33333 3.608240e+05 43013.53 7.168922e+03 6595.900 993.50 6 6.595900e+03 39575.40 4.038375e+05 4.003994e+05 3438.13 NULL
2023 Community College (Laguardia) Campus Security Assistant 36106.23333 1.083187e+06 102832.73 3.427758e+03 2656.510 3975.00 30 2.656510e+03 79695.30 1.186020e+06 1.162882e+06 23137.43 NULL
2023 Community College (Laguardia) Chief Administrative Supt Campus B/G 120686.00000 1.206860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.206860e+05 1.206860e+05 0.00 NULL
2023 Community College (Laguardia) Chief College Lab Technician 96840.22222 8.715620e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.715620e+05 8.715620e+05 0.00 NULL
2023 Community College (Laguardia) Clip Instructor 68533.66667 6.168030e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 6.168030e+05 6.168030e+05 0.00 NULL
2023 Community College (Laguardia) College Accountant 50373.00000 1.007460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.007460e+05 1.007460e+05 0.00 NULL
2023 Community College (Laguardia) College Accounting Assistant 51841.50000 2.073660e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.073660e+05 2.073660e+05 0.00 NULL
2023 Community College (Laguardia) College Assistant 6750.35869 4.603745e+06 2420.80 3.549560e+00 0.000 104.25 682 0.000000e+00 0.00 4.606165e+06 4.603745e+06 2420.80 NULL
2023 Community College (Laguardia) College Graph Designer 50651.48000 1.013030e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.013030e+05 1.013030e+05 0.00 NULL
2023 Community College (Laguardia) College Lab Technician 66485.54525 1.329711e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.329711e+06 1.329711e+06 0.00 NULL
2023 Community College (Laguardia) College Print Shop Coordinator 64351.00000 6.435100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.435100e+04 6.435100e+04 0.00 NULL
2023 Community College (Laguardia) College Security Director 124000.00000 1.240000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.240000e+05 1.240000e+05 0.00 NULL
2023 Community College (Laguardia) College Security Specialist 67612.33333 2.028370e+05 31005.06 1.033502e+04 10047.270 670.00 3 1.004727e+04 30141.81 2.338421e+05 2.329788e+05 863.25 NULL
2023 Community College (Laguardia) Computer Systems Manager 134587.75000 5.383510e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.383510e+05 5.383510e+05 0.00 NULL
2023 Community College (Laguardia) Continuing Education Teacher 8388.39224 2.071933e+06 0.00 0.000000e+00 0.000 0.00 247 0.000000e+00 0.00 2.071933e+06 2.071933e+06 0.00 NULL
2023 Community College (Laguardia) Cuny Administrator Assistant 58319.71429 8.164760e+05 158.03 1.128786e+01 0.000 5.00 14 0.000000e+00 0.00 8.166340e+05 8.164760e+05 158.03 NULL
2023 Community College (Laguardia) Cuny Art Model 1707.46100 8.537305e+03 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.537305e+03 8.537305e+03 0.00 NULL
2023 Community College (Laguardia) Cuny Broadcast Associate 49830.00000 1.494900e+05 25426.28 8.475427e+03 8427.710 747.00 3 8.427710e+03 25283.13 1.749163e+05 1.747731e+05 143.15 NULL
2023 Community College (Laguardia) Cuny Custodial Assistant 28246.67115 1.468827e+06 10173.34 1.956412e+02 0.000 395.00 52 0.000000e+00 0.00 1.479000e+06 1.468827e+06 10173.34 NULL
2023 Community College (Laguardia) Cuny Office Assistant 40347.80000 3.026085e+06 6141.45 8.188600e+01 0.000 204.00 75 0.000000e+00 0.00 3.032226e+06 3.026085e+06 6141.45 NULL
2023 Community College (Laguardia) Cuny Start Instructor 69741.75000 2.789670e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.789670e+05 2.789670e+05 0.00 NULL
2023 Community College (Laguardia) Custodial Supervisor 38873.00000 1.166190e+05 507.27 1.690900e+02 228.010 18.00 3 1.690900e+02 507.27 1.171263e+05 1.171263e+05 0.00 NULL
2023 Community College (Laguardia) Dean 159181.00000 1.591810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.591810e+05 1.591810e+05 0.00 NULL
2023 Community College (Laguardia) Facilities Coordinator 64466.00000 6.446600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.446600e+04 6.446600e+04 0.00 NULL
2023 Community College (Laguardia) Higher Education Assistant 84572.66912 1.150188e+07 1729.99 1.272051e+01 0.000 30.00 136 0.000000e+00 0.00 1.150361e+07 1.150188e+07 1729.99 NULL
2023 Community College (Laguardia) Higher Education Associate 105448.96000 7.908672e+06 0.00 0.000000e+00 0.000 0.00 75 0.000000e+00 0.00 7.908672e+06 7.908672e+06 0.00 NULL
2023 Community College (Laguardia) Higher Education Officer 130237.45098 6.642110e+06 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 6.642110e+06 6.642110e+06 0.00 NULL
2023 Community College (Laguardia) It Assistant 51058.76476 1.072234e+06 1979.72 9.427238e+01 0.000 42.00 21 0.000000e+00 0.00 1.074214e+06 1.072234e+06 1979.72 NULL
2023 Community College (Laguardia) It Associate 76722.50000 1.227560e+06 6178.74 3.861712e+02 0.000 131.00 16 0.000000e+00 0.00 1.233739e+06 1.227560e+06 6178.74 NULL
2023 Community College (Laguardia) It Senior Associate 102509.00000 1.230108e+06 2595.91 2.163258e+02 0.000 34.00 12 0.000000e+00 0.00 1.232704e+06 1.230108e+06 2595.91 NULL
2023 Community College (Laguardia) It Support Assistant 37047.00267 1.111410e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 1.111410e+06 1.111410e+06 0.00 NULL
2023 Community College (Laguardia) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 81 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Laguardia) Lecturer/Doctoral Schedule 83772.50000 1.172815e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.172815e+06 1.172815e+06 0.00 NULL
2023 Community College (Laguardia) Mail/Message Services Worker 42581.88889 3.832370e+05 2574.25 2.860278e+02 140.070 103.25 9 1.400700e+02 1260.63 3.858112e+05 3.844976e+05 1313.62 NULL
2023 Community College (Laguardia) Media Services Technician 63750.00000 6.375000e+04 12947.04 1.294704e+04 12947.040 293.00 1 1.294704e+04 12947.04 7.669704e+04 7.669704e+04 0.00 NULL
2023 Community College (Laguardia) Non-Teaching Adjunct I 3534.04229 5.124361e+05 0.00 0.000000e+00 0.000 0.00 145 0.000000e+00 0.00 5.124361e+05 5.124361e+05 0.00 NULL
2023 Community College (Laguardia) Non-Teaching Adjunct Ii 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Community College (Laguardia) Non-Teaching Adjunct Iii 8113.49375 3.245398e+05 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 3.245398e+05 3.245398e+05 0.00 NULL
2023 Community College (Laguardia) Non-Teaching Adjunct Iv 3644.67380 9.840619e+04 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 9.840619e+04 9.840619e+04 0.00 NULL
2023 Community College (Laguardia) Non-Teaching Adjunct V 3614.50220 9.036255e+04 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 9.036255e+04 9.036255e+04 0.00 NULL
2023 Community College (Laguardia) President 280908.00000 2.809080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.809080e+05 2.809080e+05 0.00 NULL
2023 Community College (Laguardia) Professor NA NA 0.00 0.000000e+00 0.000 0.00 289 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Laguardia) Purchasing Agent 60578.25000 2.423130e+05 247.52 6.188000e+01 0.000 6.50 4 0.000000e+00 0.00 2.425605e+05 2.423130e+05 247.52 NULL
2023 Community College (Laguardia) Senior College Lab Tech 77845.20000 7.784520e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.784520e+05 7.784520e+05 0.00 NULL
2023 Community College (Laguardia) Senior Vice President 220664.33333 6.619930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.619930e+05 6.619930e+05 0.00 NULL
2023 Community College (Laguardia) Sign Language Interpreter 23969.99002 5.033698e+05 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 5.033698e+05 5.033698e+05 0.00 NULL
2023 Community College (Laguardia) Staff Nurse 93228.00000 9.322800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.322800e+04 9.322800e+04 0.00 NULL
2023 Community College (Laguardia) Supervisor Of Stock Workers 43413.00000 4.341300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.341300e+04 4.341300e+04 0.00 NULL
2023 Community College (Laguardia) University Assistant Architect 63290.00000 6.329000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.329000e+04 6.329000e+04 0.00 NULL
2023 Community College (Laguardia) University Assistant Engineer 75132.00000 7.513200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.513200e+04 7.513200e+04 0.00 NULL
2023 Community College (Laguardia) Vice President 178743.60000 8.937180e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.937180e+05 8.937180e+05 0.00 NULL
2023 Community College (Manhattan) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 268 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Manhattan) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Manhattan) Adjunct College Lab Tech 10948.47629 6.788055e+05 0.00 0.000000e+00 0.000 0.00 62 0.000000e+00 0.00 6.788055e+05 6.788055e+05 0.00 NULL
2023 Community College (Manhattan) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 741 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Manhattan) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Manhattan) Adjunct Senior College Lab Tech 5678.99594 1.817279e+05 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 1.817279e+05 1.817279e+05 0.00 NULL
2023 Community College (Manhattan) Administrator 153000.00000 1.530000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.530000e+05 1.530000e+05 0.00 NULL
2023 Community College (Manhattan) Administrator Supt Campus B/G 99023.50000 3.960940e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.960940e+05 3.960940e+05 0.00 NULL
2023 Community College (Manhattan) Assistant Administrator 139369.20000 6.968460e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.968460e+05 6.968460e+05 0.00 NULL
2023 Community College (Manhattan) Assistant College Security Director 78053.66667 4.683220e+05 271.53 4.525500e+01 0.000 6.25 6 0.000000e+00 0.00 4.685935e+05 4.683220e+05 271.53 NULL
2023 Community College (Manhattan) Assistant Dean 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2023 Community College (Manhattan) Assistant Media Services Technican 15787.55750 6.315023e+04 78.21 1.955250e+01 21.725 4.50 4 1.955250e+01 78.21 6.322844e+04 6.322844e+04 0.00 NULL
2023 Community College (Manhattan) Assistant Principal Custodial Supervisor 47088.00000 9.417600e+04 57836.97 2.891849e+04 28918.485 1704.00 2 2.891849e+04 57836.97 1.520130e+05 1.520130e+05 0.00 NULL
2023 Community College (Manhattan) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 200 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Manhattan) Assistant Purchasing Agent 45396.00000 4.539600e+04 49.69 4.969000e+01 49.690 2.00 1 4.969000e+01 49.69 4.544569e+04 4.544569e+04 0.00 NULL
2023 Community College (Manhattan) Assistant To Heo 60256.89655 5.242350e+06 0.00 0.000000e+00 0.000 0.00 87 0.000000e+00 0.00 5.242350e+06 5.242350e+06 0.00 NULL
2023 Community College (Manhattan) Assistant Vice President 162687.00000 4.880610e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.880610e+05 4.880610e+05 0.00 NULL
2023 Community College (Manhattan) Associate Administrator 152626.00000 3.052520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.052520e+05 3.052520e+05 0.00 NULL
2023 Community College (Manhattan) Associate Dean 150732.50000 3.014650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.014650e+05 3.014650e+05 0.00 NULL
2023 Community College (Manhattan) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 251 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Manhattan) Business Data And Reporting Analyst 44077.88235 7.493240e+05 3792.52 2.230894e+02 0.000 154.50 17 0.000000e+00 0.00 7.531165e+05 7.493240e+05 3792.52 NULL
2023 Community College (Manhattan) Campus Peace Officer 45190.57895 8.586210e+05 179454.49 9.444973e+03 5674.490 5513.53 19 5.674490e+03 107815.31 1.038075e+06 9.664363e+05 71639.18 NULL
2023 Community College (Manhattan) Campus Public Safety Sergeant 59948.40000 5.994840e+05 61443.85 6.144385e+03 6261.035 1483.50 10 6.144385e+03 61443.85 6.609278e+05 6.609278e+05 0.00 NULL
2023 Community College (Manhattan) Campus Security Assistant 30358.92952 1.426870e+06 288868.41 6.146136e+03 4840.740 11844.13 47 4.840740e+03 227514.78 1.715738e+06 1.654384e+06 61353.63 NULL
2023 Community College (Manhattan) Carpenter NA NA 56721.15 6.302350e+03 2015.950 688.50 9 2.015950e+03 18143.55 NA NA NA NULL
2023 Community College (Manhattan) Chief Administrator Supt Campus B/G 146594.00000 1.465940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.465940e+05 1.465940e+05 0.00 NULL
2023 Community College (Manhattan) City Laborer NA NA 89112.08 1.485201e+04 11736.090 1600.00 6 1.173609e+04 70416.54 NA NA NA NULL
2023 Community College (Manhattan) Clip Instructor 68083.54545 7.489190e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.489190e+05 7.489190e+05 0.00 NULL
2023 Community College (Manhattan) College Accountant 52969.50000 2.118780e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.118780e+05 2.118780e+05 0.00 NULL
2023 Community College (Manhattan) College Accounting Assistant 50288.42857 3.520190e+05 1816.00 2.594286e+02 0.000 66.00 7 0.000000e+00 0.00 3.538350e+05 3.520190e+05 1816.00 NULL
2023 Community College (Manhattan) College Assistant 6171.02349 4.628268e+06 55610.76 7.414768e+01 0.000 3440.00 750 0.000000e+00 0.00 4.683878e+06 4.628268e+06 55610.76 NULL
2023 Community College (Manhattan) College Graph Designer 56071.00000 1.121420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.121420e+05 1.121420e+05 0.00 NULL
2023 Community College (Manhattan) College Lab Technician 64858.72222 1.167457e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.167457e+06 1.167457e+06 0.00 NULL
2023 Community College (Manhattan) College Print Shop Assistant 33571.00000 1.342840e+05 996.75 2.491875e+02 147.375 48.50 4 1.473750e+02 589.50 1.352808e+05 1.348735e+05 407.25 NULL
2023 Community College (Manhattan) College Print Shop Associate 40793.00000 4.079300e+04 100.47 1.004700e+02 100.470 4.50 1 1.004700e+02 100.47 4.089347e+04 4.089347e+04 0.00 NULL
2023 Community College (Manhattan) College Print Shop Coordinator 64351.00000 6.435100e+04 1831.52 1.831520e+03 1831.520 48.00 1 1.831520e+03 1831.52 6.618252e+04 6.618252e+04 0.00 NULL
2023 Community College (Manhattan) College Security Director 130354.00000 1.303540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.303540e+05 1.303540e+05 0.00 NULL
2023 Community College (Manhattan) Computer Systems Manager 165240.00000 1.652400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.652400e+05 1.652400e+05 0.00 NULL
2023 Community College (Manhattan) Continuing Education Teacher 12170.28534 8.884308e+05 0.00 0.000000e+00 0.000 0.00 73 0.000000e+00 0.00 8.884308e+05 8.884308e+05 0.00 NULL
2023 Community College (Manhattan) Cuny Administrator Assistant 56016.00000 6.161760e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 6.161760e+05 6.161760e+05 0.00 NULL
2023 Community College (Manhattan) Cuny Art Model 2575.55100 1.287775e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.287775e+04 1.287775e+04 0.00 NULL
2023 Community College (Manhattan) Cuny Custodial Assistant 27325.76992 2.896532e+06 233984.91 2.207405e+03 535.630 10155.50 106 5.356300e+02 56776.78 3.130517e+06 2.953308e+06 177208.13 NULL
2023 Community College (Manhattan) Cuny Office Assistant 40037.93506 3.082921e+06 10559.05 1.371305e+02 0.000 396.75 77 0.000000e+00 0.00 3.093480e+06 3.082921e+06 10559.05 NULL
2023 Community College (Manhattan) Cuny Start Instructor 74176.05556 1.335169e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.335169e+06 1.335169e+06 0.00 NULL
2023 Community College (Manhattan) Custodial Supervisor 38873.00000 3.887300e+05 93991.64 9.399164e+03 6479.990 3368.00 10 6.479990e+03 64799.90 4.827216e+05 4.535299e+05 29191.74 NULL
2023 Community College (Manhattan) Dean 167496.40000 8.374820e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.374820e+05 8.374820e+05 0.00 NULL
2023 Community College (Manhattan) Electrician NA NA 50697.00 6.337125e+03 4244.400 537.50 8 4.244400e+03 33955.20 NA NA NA NULL
2023 Community College (Manhattan) Eoc Accounting Assistant 44601.00000 4.460100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.460100e+04 4.460100e+04 0.00 NULL
2023 Community College (Manhattan) Eoc Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Manhattan) Eoc Assistant 12456.78000 1.245678e+04 31.22 3.122000e+01 31.220 2.00 1 3.122000e+01 31.22 1.248800e+04 1.248800e+04 0.00 NULL
2023 Community College (Manhattan) Eoc Assistant To Heo 73226.62500 5.858130e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.858130e+05 5.858130e+05 0.00 NULL
2023 Community College (Manhattan) Eoc College Lab Technician 70222.00000 1.404440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.404440e+05 1.404440e+05 0.00 NULL
2023 Community College (Manhattan) Eoc Higher Education Assistant 97932.50000 3.917300e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.917300e+05 3.917300e+05 0.00 NULL
2023 Community College (Manhattan) Eoc Higher Education Associate 107789.00000 1.077890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.077890e+05 1.077890e+05 0.00 NULL
2023 Community College (Manhattan) Eoc Higher Education Officer 128483.40000 6.424170e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.424170e+05 6.424170e+05 0.00 NULL
2023 Community College (Manhattan) Eoc Lecturer 79401.00000 3.970050e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.970050e+05 3.970050e+05 0.00 NULL
2023 Community College (Manhattan) Eoc Lecturer/ Doctral Schedule 98309.00000 2.949270e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.949270e+05 2.949270e+05 0.00 NULL
2023 Community College (Manhattan) Eoc Mail/Message Services Worker 38740.00000 3.874000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.874000e+04 3.874000e+04 0.00 NULL
2023 Community College (Manhattan) Eoc Office Assistant 42130.90909 4.634400e+05 58.83 5.348182e+00 0.000 3.00 11 0.000000e+00 0.00 4.634988e+05 4.634400e+05 58.83 NULL
2023 Community College (Manhattan) Facilities Coordinator 64466.00000 6.446600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.446600e+04 6.446600e+04 0.00 NULL
2023 Community College (Manhattan) Grad Assistant “C” 17668.00000 1.766800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.766800e+04 1.766800e+04 0.00 NULL
2023 Community College (Manhattan) Higher Education Assistant 81630.83333 1.224462e+07 0.00 0.000000e+00 0.000 0.00 150 0.000000e+00 0.00 1.224462e+07 1.224462e+07 0.00 NULL
2023 Community College (Manhattan) Higher Education Associate 101572.39474 7.719502e+06 0.00 0.000000e+00 0.000 0.00 76 0.000000e+00 0.00 7.719502e+06 7.719502e+06 0.00 NULL
2023 Community College (Manhattan) Higher Education Officer 127292.80000 6.364640e+06 0.00 0.000000e+00 0.000 0.00 50 0.000000e+00 0.00 6.364640e+06 6.364640e+06 0.00 NULL
2023 Community College (Manhattan) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Manhattan) It Assistant 64226.15385 8.349400e+05 4986.35 3.835654e+02 0.000 120.50 13 0.000000e+00 0.00 8.399263e+05 8.349400e+05 4986.35 NULL
2023 Community College (Manhattan) It Associate 77143.83333 4.628630e+05 2289.56 3.815933e+02 0.000 50.25 6 0.000000e+00 0.00 4.651526e+05 4.628630e+05 2289.56 NULL
2023 Community College (Manhattan) It Senior Associate 95467.00000 5.728020e+05 272.58 4.543000e+01 0.000 5.00 6 0.000000e+00 0.00 5.730746e+05 5.728020e+05 272.58 NULL
2023 Community College (Manhattan) It Support Assistant 28387.04080 7.096760e+05 1369.55 5.478200e+01 0.000 50.25 25 0.000000e+00 0.00 7.110456e+05 7.096760e+05 1369.55 NULL
2023 Community College (Manhattan) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 127 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Manhattan) Lecturer/Doctoral Schedule 88998.00000 2.669940e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.669940e+05 2.669940e+05 0.00 NULL
2023 Community College (Manhattan) Locksmith NA NA 4047.60 2.023800e+03 2023.800 92.00 2 2.023800e+03 4047.60 NA NA NA NULL
2023 Community College (Manhattan) Mail/Message Services Worker 36571.66667 1.097150e+05 320.14 1.067133e+02 36.040 13.00 3 3.604000e+01 108.12 1.100351e+05 1.098231e+05 212.02 NULL
2023 Community College (Manhattan) Maintenance Worker NA NA 1203.56 6.017800e+02 601.780 25.75 2 6.017800e+02 1203.56 NA NA NA NULL
2023 Community College (Manhattan) Media Services Technician 47906.00000 9.581200e+04 1880.92 9.404600e+02 940.460 68.00 2 9.404600e+02 1880.92 9.769292e+04 9.769292e+04 0.00 NULL
2023 Community College (Manhattan) Non-Teaching Adjunct I NA NA 0.00 0.000000e+00 0.000 0.00 293 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Manhattan) Non-Teaching Adjunct Ii NA NA 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Manhattan) Non-Teaching Adjunct Iii 5836.57477 2.568093e+05 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 2.568093e+05 2.568093e+05 0.00 NULL
2023 Community College (Manhattan) Non-Teaching Adjunct Iv 2428.89000 5.100669e+04 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 5.100669e+04 5.100669e+04 0.00 NULL
2023 Community College (Manhattan) Non-Teaching Adjunct V 8611.52250 6.889218e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.889218e+04 6.889218e+04 0.00 NULL
2023 Community College (Manhattan) Oiler NA NA 390511.26 3.254260e+04 29695.765 4298.50 12 2.969576e+04 356349.18 NA NA NA NULL
2023 Community College (Manhattan) Painter NA NA 12859.45 3.214863e+03 3380.715 186.00 4 3.214863e+03 12859.45 NA NA NA NULL
2023 Community College (Manhattan) Plumber NA NA 102182.52 1.459750e+04 1387.010 787.25 7 1.387010e+03 9709.07 NA NA NA NULL
2023 Community College (Manhattan) President 280500.00000 2.805000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.805000e+05 2.805000e+05 0.00 NULL
2023 Community College (Manhattan) Principal Custodial Supervisor 65631.00000 1.312620e+05 19474.62 9.737310e+03 9737.310 408.00 2 9.737310e+03 19474.62 1.507366e+05 1.507366e+05 0.00 NULL
2023 Community College (Manhattan) Professor NA NA 0.00 0.000000e+00 0.000 0.00 197 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Manhattan) Purchasing Agent 67282.50000 2.691300e+05 487.94 1.219850e+02 95.200 14.00 4 9.520000e+01 380.80 2.696179e+05 2.695108e+05 107.14 NULL
2023 Community College (Manhattan) Research Assistant 46387.00000 4.638700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.638700e+04 4.638700e+04 0.00 NULL
2023 Community College (Manhattan) Senior College Lab Tech 78778.47059 1.339234e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.339234e+06 1.339234e+06 0.00 NULL
2023 Community College (Manhattan) Senior Custodial Supervisor 41913.00000 8.382600e+04 20419.40 1.020970e+04 10209.700 682.00 2 1.020970e+04 20419.40 1.042454e+05 1.042454e+05 0.00 NULL
2023 Community College (Manhattan) Senior Stationary Engineer NA NA 57496.65 1.916555e+04 1056.600 541.50 3 1.056600e+03 3169.80 NA NA NA NULL
2023 Community College (Manhattan) Senior Vice President 219295.00000 2.192950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.192950e+05 2.192950e+05 0.00 NULL
2023 Community College (Manhattan) Sign Language Interpreter 10527.65500 4.211062e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.211062e+04 4.211062e+04 0.00 NULL
2023 Community College (Manhattan) Staff Nurse 66344.53333 1.990336e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.990336e+05 1.990336e+05 0.00 NULL
2023 Community College (Manhattan) Stationary Engineer NA NA 435410.85 3.958280e+04 41340.000 4496.50 11 3.958280e+04 435410.85 NA NA NA NULL
2023 Community College (Manhattan) Stock Worker 36078.50000 7.215700e+04 503.65 2.518250e+02 251.825 24.75 2 2.518250e+02 503.65 7.266065e+04 7.266065e+04 0.00 NULL
2023 Community College (Manhattan) Student Aide 110.62500 2.212500e+02 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.212500e+02 2.212500e+02 0.00 NULL
2023 Community College (Manhattan) Supervisor Of Stock Workers 61497.00000 6.149700e+04 1068.71 1.068710e+03 1068.710 26.75 1 1.068710e+03 1068.71 6.256571e+04 6.256571e+04 0.00 NULL
2023 Community College (Manhattan) Thermostat Repairer NA NA 14.84 1.484000e+01 14.840 0.00 1 1.484000e+01 14.84 NA NA NA NULL
2023 Community College (Manhattan) University Professor 170452.00000 1.704520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.704520e+05 1.704520e+05 0.00 NULL
2023 Community College (Manhattan) Vice President 189830.60000 9.491530e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.491530e+05 9.491530e+05 0.00 NULL
2023 Community College (Queensboro) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 76 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Queensboro) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Queensboro) Adjunct College Lab Tech 10611.11054 2.971111e+05 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 2.971111e+05 2.971111e+05 0.00 NULL
2023 Community College (Queensboro) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 261 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Queensboro) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Queensboro) Adjunct Senior College Lab Tech 5396.40000 5.396400e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.396400e+03 5.396400e+03 0.00 NULL
2023 Community College (Queensboro) Administrator 166464.00000 3.329280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.329280e+05 3.329280e+05 0.00 NULL
2023 Community College (Queensboro) Administrator Supt Campus B/G 65440.50000 1.308810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.308810e+05 1.308810e+05 0.00 NULL
2023 Community College (Queensboro) Assistant Administrator 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2023 Community College (Queensboro) Assistant College Security Director 92978.50000 1.859570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.859570e+05 1.859570e+05 0.00 NULL
2023 Community College (Queensboro) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 98 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Queensboro) Assistant To Heo 66720.39394 2.201773e+06 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 2.201773e+06 2.201773e+06 0.00 NULL
2023 Community College (Queensboro) Assistant Vice President 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2023 Community College (Queensboro) Associate Administrator 162916.50000 6.516660e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.516660e+05 6.516660e+05 0.00 NULL
2023 Community College (Queensboro) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 246 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Queensboro) Campus Peace Officer 48802.24138 1.415265e+06 145584.29 5.020148e+03 2570.020 4042.00 29 2.570020e+03 74530.58 1.560849e+06 1.489796e+06 71053.71 NULL
2023 Community College (Queensboro) Campus Public Safety Sergeant 60163.09091 6.617940e+05 83487.21 7.589746e+03 8670.290 2014.00 11 7.589746e+03 83487.21 7.452812e+05 7.452812e+05 0.00 NULL
2023 Community College (Queensboro) Campus Security Assistant 36023.86667 5.403580e+05 37313.07 2.487538e+03 1889.090 1418.50 15 1.889090e+03 28336.35 5.776711e+05 5.686943e+05 8976.72 NULL
2023 Community College (Queensboro) Carpenter NA NA 13207.47 3.301867e+03 2478.075 150.50 4 2.478075e+03 9912.30 NA NA NA NULL
2023 Community College (Queensboro) Cement Mason NA NA 8177.00 8.177000e+03 8177.000 85.00 1 8.177000e+03 8177.00 NA NA NA NULL
2023 Community College (Queensboro) Chief Administrative Supt Campus B/G 148421.00000 1.484210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.484210e+05 1.484210e+05 0.00 NULL
2023 Community College (Queensboro) Chief College Lab Technician 70960.12917 4.257608e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.257608e+05 4.257608e+05 0.00 NULL
2023 Community College (Queensboro) City Laborer NA NA 171744.05 2.862401e+04 33263.930 3126.50 6 2.862401e+04 171744.05 NA NA NA NULL
2023 Community College (Queensboro) Clip Instructor 69758.37500 5.580670e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.580670e+05 5.580670e+05 0.00 NULL
2023 Community College (Queensboro) College Accountant 67398.00000 1.347960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.347960e+05 1.347960e+05 0.00 NULL
2023 Community College (Queensboro) College Assistant 6492.34207 2.519029e+06 0.00 0.000000e+00 0.000 0.00 388 0.000000e+00 0.00 2.519029e+06 2.519029e+06 0.00 NULL
2023 Community College (Queensboro) College Graph Designer 68820.00000 6.882000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.882000e+04 6.882000e+04 0.00 NULL
2023 Community College (Queensboro) College Lab Technician 42367.03647 7.202396e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 7.202396e+05 7.202396e+05 0.00 NULL
2023 Community College (Queensboro) College Print Shop Assistant 39353.00000 3.935300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.935300e+04 3.935300e+04 0.00 NULL
2023 Community College (Queensboro) College Print Shop Associate 51255.00000 5.125500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.125500e+04 5.125500e+04 0.00 NULL
2023 Community College (Queensboro) College Security Director 153671.00000 1.536710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.536710e+05 1.536710e+05 0.00 NULL
2023 Community College (Queensboro) College Security Specialist 64374.00000 1.287480e+05 28921.88 1.446094e+04 14460.940 632.00 2 1.446094e+04 28921.88 1.576699e+05 1.576699e+05 0.00 NULL
2023 Community College (Queensboro) Computer Systems Manager 140030.40000 7.001520e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.001520e+05 7.001520e+05 0.00 NULL
2023 Community College (Queensboro) Continuing Education Teacher 6796.67591 8.223978e+05 0.00 0.000000e+00 0.000 0.00 121 0.000000e+00 0.00 8.223978e+05 8.223978e+05 0.00 NULL
2023 Community College (Queensboro) Cuny Administrator Assistant 56256.00000 9.563520e+05 693.52 4.079529e+01 0.000 19.75 17 0.000000e+00 0.00 9.570455e+05 9.563520e+05 693.52 NULL
2023 Community College (Queensboro) Cuny Broadcast Associate 61843.00000 6.184300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.184300e+04 6.184300e+04 0.00 NULL
2023 Community College (Queensboro) Cuny Custodial Assistant 32763.86420 1.277791e+06 158367.32 4.060701e+03 1123.620 6150.70 39 1.123620e+03 43821.18 1.436158e+06 1.321612e+06 114546.14 NULL
2023 Community College (Queensboro) Cuny Office Assistant 40575.55000 2.434533e+06 140.48 2.341333e+00 0.000 6.00 60 0.000000e+00 0.00 2.434673e+06 2.434533e+06 140.48 NULL
2023 Community College (Queensboro) Cuny Start Instructor 70350.31250 1.125605e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.125605e+06 1.125605e+06 0.00 NULL
2023 Community College (Queensboro) Custodial Supervisor 38893.50000 1.555740e+05 23668.98 5.917245e+03 6360.165 839.50 4 5.917245e+03 23668.98 1.792430e+05 1.792430e+05 0.00 NULL
2023 Community College (Queensboro) Dean 164037.00000 1.148259e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.148259e+06 1.148259e+06 0.00 NULL
2023 Community College (Queensboro) Disability Accommodations Specialist 31627.24100 1.581362e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.581362e+05 1.581362e+05 0.00 NULL
2023 Community College (Queensboro) Electrician NA NA 103940.64 1.732344e+04 20278.800 1102.00 6 1.732344e+04 103940.64 NA NA NA NULL
2023 Community College (Queensboro) Facilities Coordinator 77880.00000 7.788000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.788000e+04 7.788000e+04 0.00 NULL
2023 Community College (Queensboro) High Pressure Plant Tender NA NA 68645.25 8.580656e+03 8337.800 1247.50 8 8.337800e+03 66702.40 NA NA NA NULL
2023 Community College (Queensboro) Higher Education Assistant 81545.41667 8.806905e+06 0.00 0.000000e+00 0.000 0.00 108 0.000000e+00 0.00 8.806905e+06 8.806905e+06 0.00 NULL
2023 Community College (Queensboro) Higher Education Associate 105908.70909 5.824979e+06 0.00 0.000000e+00 0.000 0.00 55 0.000000e+00 0.00 5.824979e+06 5.824979e+06 0.00 NULL
2023 Community College (Queensboro) Higher Education Officer 132752.95556 5.973883e+06 0.00 0.000000e+00 0.000 0.00 45 0.000000e+00 0.00 5.973883e+06 5.973883e+06 0.00 NULL
2023 Community College (Queensboro) Higher Education Officer/Asst Administrator 149528.00000 1.495280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.495280e+05 1.495280e+05 0.00 NULL
2023 Community College (Queensboro) It Assistant 55608.00000 3.336480e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.336480e+05 3.336480e+05 0.00 NULL
2023 Community College (Queensboro) It Associate 75262.75000 6.021020e+05 777.00 9.712500e+01 0.000 18.50 8 0.000000e+00 0.00 6.028790e+05 6.021020e+05 777.00 NULL
2023 Community College (Queensboro) It Senior Associate 106872.09091 1.175593e+06 1982.38 1.802164e+02 0.000 30.50 11 0.000000e+00 0.00 1.177575e+06 1.175593e+06 1982.38 NULL
2023 Community College (Queensboro) It Support Assistant 24262.92000 2.668921e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 2.668921e+05 2.668921e+05 0.00 NULL
2023 Community College (Queensboro) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 117 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Queensboro) Lecturer/Doctoral Schedule 86835.21429 1.215693e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.215693e+06 1.215693e+06 0.00 NULL
2023 Community College (Queensboro) Locksmith NA NA 9059.17 9.059170e+03 9059.170 206.00 1 9.059170e+03 9059.17 NA NA NA NULL
2023 Community College (Queensboro) Mail/Message Services Worker 36505.50000 7.301100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.301100e+04 7.301100e+04 0.00 NULL
2023 Community College (Queensboro) Maintenance Worker NA NA 57459.04 2.872952e+04 28729.520 1233.50 2 2.872952e+04 57459.04 NA NA NA NULL
2023 Community College (Queensboro) Motor Vehicle Operator 48588.00000 4.858800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.858800e+04 4.858800e+04 0.00 NULL
2023 Community College (Queensboro) Non-Teaching Adjunct I 4042.48496 5.336080e+05 0.00 0.000000e+00 0.000 0.00 132 0.000000e+00 0.00 5.336080e+05 5.336080e+05 0.00 NULL
2023 Community College (Queensboro) Non-Teaching Adjunct Iii 1290.06724 3.741195e+04 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 3.741195e+04 3.741195e+04 0.00 NULL
2023 Community College (Queensboro) Non-Teaching Adjunct Iv 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Community College (Queensboro) Non-Teaching Adjunct V 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Community College (Queensboro) Oiler NA NA 24346.65 1.217333e+04 12173.325 276.00 2 1.217333e+04 24346.65 NA NA NA NULL
2023 Community College (Queensboro) Painter NA NA 270.06 1.350300e+02 135.030 4.00 2 1.350300e+02 270.06 NA NA NA NULL
2023 Community College (Queensboro) Plumber NA NA 15301.65 5.100550e+03 5290.700 103.00 3 5.100550e+03 15301.65 NA NA NA NULL
2023 Community College (Queensboro) President 280908.00000 2.809080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.809080e+05 2.809080e+05 0.00 NULL
2023 Community College (Queensboro) Professor NA NA 0.00 0.000000e+00 0.000 0.00 128 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Queensboro) Project Manager 107428.00000 1.074280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074280e+05 1.074280e+05 0.00 NULL
2023 Community College (Queensboro) Senior College Lab Tech 78005.03448 2.262146e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 2.262146e+06 2.262146e+06 0.00 NULL
2023 Community College (Queensboro) Senior Custodial Supervisor 42039.50000 8.407900e+04 9954.47 4.977235e+03 4977.235 323.00 2 4.977235e+03 9954.47 9.403347e+04 9.403347e+04 0.00 NULL
2023 Community College (Queensboro) Senior Stationary Engineer NA NA 37284.78 3.728478e+04 37284.780 338.00 1 3.728478e+04 37284.78 NA NA NA NULL
2023 Community College (Queensboro) Senior Vice President 201960.00000 2.019600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.019600e+05 2.019600e+05 0.00 NULL
2023 Community College (Queensboro) Sr College Laboratory Tech 5944.39200 8.916588e+04 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 8.916588e+04 8.916588e+04 0.00 NULL
2023 Community College (Queensboro) Staff Nurse 54106.23125 2.164249e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.164249e+05 2.164249e+05 0.00 NULL
2023 Community College (Queensboro) Stationary Engineer NA NA 328884.33 4.111054e+04 41085.600 3416.50 8 4.108560e+04 328684.80 NA NA NA NULL
2023 Community College (Queensboro) Stock Worker 36516.00000 3.651600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.651600e+04 3.651600e+04 0.00 NULL
2023 Community College (Queensboro) Supervisor Of Stock Workers 63967.00000 6.396700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.396700e+04 6.396700e+04 0.00 NULL
2023 Community College (Queensboro) Thermostat Repairer NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2023 Community College (Queensboro) Vice President 191505.00000 7.660200e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.660200e+05 7.660200e+05 0.00 NULL
2023 Community College (Queensboro) NA 67016.00000 6.701600e+04 4079.32 4.079320e+03 4079.320 80.50 1 4.079320e+03 4079.32 7.109532e+04 7.109532e+04 0.00 NULL
2023 Conflicts Of Interest Board Administrative Staff Analyst 150393.00000 1.503930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503930e+05 1.503930e+05 0.00 NULL
2023 Conflicts Of Interest Board Agency Attorney 86233.16667 5.173990e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.173990e+05 5.173990e+05 0.00 NULL
2023 Conflicts Of Interest Board Agency Chief Contracting Officer 131572.50000 2.631450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.631450e+05 2.631450e+05 0.00 NULL
2023 Conflicts Of Interest Board Community Associate 55199.50000 2.207980e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.207980e+05 2.207980e+05 0.00 NULL
2023 Conflicts Of Interest Board Community Coordinator 71334.00000 7.133400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.133400e+04 7.133400e+04 0.00 NULL
2023 Conflicts Of Interest Board Computer Operations Manager 148500.00000 1.485000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.485000e+05 1.485000e+05 0.00 NULL
2023 Conflicts Of Interest Board Computer Specialist 106420.00000 1.064200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.064200e+05 1.064200e+05 0.00 NULL
2023 Conflicts Of Interest Board Confidential Investigator 62305.25000 2.492210e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.492210e+05 2.492210e+05 0.00 NULL
2023 Conflicts Of Interest Board Counsel 228000.00000 2.280000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.280000e+05 2.280000e+05 0.00 NULL
2023 Conflicts Of Interest Board Executive Agency Counsel 146166.66667 8.770000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.770000e+05 8.770000e+05 0.00 NULL
2023 Conflicts Of Interest Board Principal Administrative Associate - Non Supvr 62400.00000 6.240000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.240000e+04 6.240000e+04 0.00 NULL
2023 Conflicts Of Interest Board Secretary To Conflicts Of Interest Board 62200.00000 6.220000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.220000e+04 6.220000e+04 0.00 NULL
2023 Consumer And Worker Protection Adm Manager-Non-Mgrl 78925.16000 3.946258e+05 38.87 7.774000e+00 0.000 0.50 5 0.000000e+00 0.00 3.946647e+05 3.946258e+05 38.87 NULL
2023 Consumer And Worker Protection Admin Community Relations Specialist 84696.25000 3.387850e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.387850e+05 3.387850e+05 0.00 NULL
2023 Consumer And Worker Protection Admin Contract Specialist 153452.20000 1.534522e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.534522e+05 1.534522e+05 0.00 NULL
2023 Consumer And Worker Protection Administrative Business Promotion Coordinator 114335.31333 3.430059e+05 0.13 4.333330e-02 0.000 0.00 3 0.000000e+00 0.00 3.430061e+05 3.430059e+05 0.13 NULL
2023 Consumer And Worker Protection Administrative Community Relations Specialist 127538.82000 5.101553e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.101553e+05 5.101553e+05 0.00 NULL
2023 Consumer And Worker Protection Administrative Contract Specialist 94660.00000 1.893200e+05 2.33 1.165000e+00 1.165 0.00 2 1.165000e+00 2.33 1.893223e+05 1.893223e+05 0.00 NULL
2023 Consumer And Worker Protection Administrative Graphic Artist 82750.00000 8.275000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.275000e+04 8.275000e+04 0.00 NULL
2023 Consumer And Worker Protection Administrative Public Information Specialist Nm Former M1/M2 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2023 Consumer And Worker Protection Administrative Staff Analyst 129761.48250 2.076184e+06 1723.66 1.077288e+02 0.000 27.00 16 0.000000e+00 0.00 2.077907e+06 2.076184e+06 1723.66 NULL
2023 Consumer And Worker Protection Agency Attorney 85546.66952 3.592960e+06 6831.52 1.626552e+02 0.000 113.00 42 0.000000e+00 0.00 3.599792e+06 3.592960e+06 6831.52 NULL
2023 Consumer And Worker Protection Agency Attorney Interne 71171.33333 4.270280e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.270280e+05 4.270280e+05 0.00 NULL
2023 Consumer And Worker Protection Associate Inspector 85722.29083 2.057335e+06 25913.75 1.079740e+03 0.000 489.75 24 0.000000e+00 0.00 2.083249e+06 2.057335e+06 25913.75 NULL
2023 Consumer And Worker Protection Associate Staff Analyst 88018.66667 2.640560e+05 3.90 1.300000e+00 0.000 0.00 3 0.000000e+00 0.00 2.640599e+05 2.640560e+05 3.90 NULL
2023 Consumer And Worker Protection Bookkeeper 51352.00000 5.135200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.135200e+04 5.135200e+04 0.00 NULL
2023 Consumer And Worker Protection Business Promotion Coordinator 89226.50000 1.784530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.784530e+05 1.784530e+05 0.00 NULL
2023 Consumer And Worker Protection Certified It Administrator 110019.69333 3.300591e+05 6059.71 2.019903e+03 1031.280 85.50 3 1.031280e+03 3093.84 3.361188e+05 3.331529e+05 2965.87 NULL
2023 Consumer And Worker Protection Certified It Developer 120552.40000 6.027620e+05 1.58 3.160000e-01 0.000 0.00 5 0.000000e+00 0.00 6.027636e+05 6.027620e+05 1.58 NULL
2023 Consumer And Worker Protection City Research Scientist 100024.72154 1.300321e+06 2978.71 2.291315e+02 0.000 57.25 13 0.000000e+00 0.00 1.303300e+06 1.300321e+06 2978.71 NULL
2023 Consumer And Worker Protection Clerical Associate 49301.76692 5.275289e+06 4582.00 4.282243e+01 0.000 112.25 107 0.000000e+00 0.00 5.279871e+06 5.275289e+06 4582.00 NULL
2023 Consumer And Worker Protection College Aide 6534.31630 6.534316e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 6.534316e+04 6.534316e+04 0.00 NULL
2023 Consumer And Worker Protection Commissioner 227786.00000 4.555720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.555720e+05 4.555720e+05 0.00 NULL
2023 Consumer And Worker Protection Community Assistant 43812.66667 1.314380e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.314380e+05 1.314380e+05 0.00 NULL
2023 Consumer And Worker Protection Community Associate 53231.87875 2.555130e+06 1892.55 3.942813e+01 0.000 52.75 48 0.000000e+00 0.00 2.557023e+06 2.555130e+06 1892.55 NULL
2023 Consumer And Worker Protection Community Coordinator 72122.34103 2.812771e+06 2344.70 6.012051e+01 0.000 60.75 39 0.000000e+00 0.00 2.815116e+06 2.812771e+06 2344.70 NULL
2023 Consumer And Worker Protection Computer Associate 80907.09250 9.708851e+05 4772.15 3.976792e+02 0.160 97.25 12 1.600000e-01 1.92 9.756573e+05 9.708870e+05 4770.23 NULL
2023 Consumer And Worker Protection Computer Specialist 117331.60000 1.759974e+06 12308.18 8.205453e+02 0.000 170.50 15 0.000000e+00 0.00 1.772282e+06 1.759974e+06 12308.18 NULL
2023 Consumer And Worker Protection Computer Systems Manager 131244.91150 2.624898e+06 72.15 3.607500e+00 0.000 1.00 20 0.000000e+00 0.00 2.624970e+06 2.624898e+06 72.15 NULL
2023 Consumer And Worker Protection Confidential Examiner 55000.00000 5.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.500000e+04 5.500000e+04 0.00 NULL
2023 Consumer And Worker Protection Consumer Advocate 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2023 Consumer And Worker Protection Counsel 193743.00000 1.937430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.937430e+05 1.937430e+05 0.00 NULL
2023 Consumer And Worker Protection Customer Information Representative Ma L 1549 57513.78000 6.326516e+05 513.02 4.663818e+01 0.000 10.50 11 0.000000e+00 0.00 6.331646e+05 6.326516e+05 513.02 NULL
2023 Consumer And Worker Protection Deputy Commissioner 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2023 Consumer And Worker Protection Director Bureau Of Weights And Measures 117810.00000 1.178100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.178100e+05 1.178100e+05 0.00 NULL
2023 Consumer And Worker Protection Director Of Bureau Of Consumer Services 97200.00000 9.720000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.720000e+04 9.720000e+04 0.00 NULL
2023 Consumer And Worker Protection Director Of Consumer Information 81000.00000 8.100000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.100000e+04 8.100000e+04 0.00 NULL
2023 Consumer And Worker Protection Executive Agency Counsel 147137.86667 2.207068e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 2.207068e+06 2.207068e+06 0.00 NULL
2023 Consumer And Worker Protection Executive Assistant To The Commissioner 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2023 Consumer And Worker Protection General Inspector 69713.00000 1.394260e+05 7878.06 3.939030e+03 3939.030 187.25 2 3.939030e+03 7878.06 1.473041e+05 1.473041e+05 0.00 NULL
2023 Consumer And Worker Protection Graphic Artist 62198.33333 1.865950e+05 103.81 3.460333e+01 0.000 1.50 3 0.000000e+00 0.00 1.866988e+05 1.865950e+05 103.81 NULL
2023 Consumer And Worker Protection Inspector 55810.76272 5.748509e+06 33254.37 3.228580e+02 0.000 948.00 103 0.000000e+00 0.00 5.781763e+06 5.748509e+06 33254.37 NULL
2023 Consumer And Worker Protection Principal Administrative Associate - Non Supvr 64016.10714 3.584902e+06 965.66 1.724393e+01 0.000 24.25 56 0.000000e+00 0.00 3.585868e+06 3.584902e+06 965.66 NULL
2023 Consumer And Worker Protection Procurement Analyst 58618.00000 1.172360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.172360e+05 1.172360e+05 0.00 NULL
2023 Consumer And Worker Protection Public Records Aide 48170.00000 4.817000e+04 10.92 1.092000e+01 10.920 0.00 1 1.092000e+01 10.92 4.818092e+04 4.818092e+04 0.00 NULL
2023 Consumer And Worker Protection Research Assistant 56359.30783 1.296264e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 1.296264e+06 1.296264e+06 0.00 NULL
2023 Consumer And Worker Protection Secretary 50536.30000 1.010726e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.010726e+05 1.010726e+05 0.00 NULL
2023 Consumer And Worker Protection Secretary Of The Department 75000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2023 Consumer And Worker Protection Secretary To The Commissioner 65000.00000 6.500000e+04 71.15 7.115000e+01 71.150 2.00 1 7.115000e+01 71.15 6.507115e+04 6.507115e+04 0.00 NULL
2023 Consumer And Worker Protection Secretary To The Department 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2023 Consumer And Worker Protection Space Analyst 71726.30000 1.434526e+05 376.59 1.882950e+02 188.295 8.00 2 1.882950e+02 376.59 1.438292e+05 1.438292e+05 0.00 NULL
2023 Consumer And Worker Protection Staff Analyst 66898.50000 1.337970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.337970e+05 1.337970e+05 0.00 NULL
2023 Consumer And Worker Protection Staff Analyst Trainee 42150.00000 4.215000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.215000e+04 4.215000e+04 0.00 NULL
2023 Cultural Affairs Admin Contract Specialist 87740.00000 8.774000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.774000e+04 8.774000e+04 0.00 NULL
2023 Cultural Affairs Administrative Community Relations Specialist 140429.00000 1.404290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.404290e+05 1.404290e+05 0.00 NULL
2023 Cultural Affairs Administrative Project Manager 157598.00000 1.575980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.575980e+05 1.575980e+05 0.00 NULL
2023 Cultural Affairs Administrative Public Information Specialist Nm Former M1/M2 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2023 Cultural Affairs Administrative Staff Analyst 108667.00000 2.173340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.173340e+05 2.173340e+05 0.00 NULL
2023 Cultural Affairs Agency Attorney 88790.60000 4.439530e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.439530e+05 4.439530e+05 0.00 NULL
2023 Cultural Affairs Agency Chief Contracting Officer 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2023 Cultural Affairs Arts Program Specialist 26345.50000 5.269100e+04 189.00 9.450000e+01 94.500 6.75 2 9.450000e+01 189.00 5.288000e+04 5.288000e+04 0.00 NULL
2023 Cultural Affairs Assistant Commissioner 127652.50000 5.106100e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.106100e+05 5.106100e+05 0.00 NULL
2023 Cultural Affairs Associate Arts Programs Specialist 65091.76190 1.366927e+06 2951.71 1.405576e+02 0.000 95.25 21 0.000000e+00 0.00 1.369879e+06 1.366927e+06 2951.71 NULL
2023 Cultural Affairs City Laborer 58802.03125 5.880203e+04 1345.79 1.345790e+03 1345.790 24.75 1 1.345790e+03 1345.79 6.014782e+04 6.014782e+04 0.00 NULL
2023 Cultural Affairs City Research Scientist 132613.00000 1.326130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.326130e+05 1.326130e+05 0.00 NULL
2023 Cultural Affairs Commissioner Of Cultural Affairs 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2023 Cultural Affairs Community Assistant 43668.51320 4.366851e+04 32.10 3.210000e+01 32.100 1.00 1 3.210000e+01 32.10 4.370061e+04 4.370061e+04 0.00 NULL
2023 Cultural Affairs Community Associate 36106.56893 6.860248e+05 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 6.860248e+05 6.860248e+05 0.00 NULL
2023 Cultural Affairs Community Coordinator 77102.92547 1.156544e+06 2642.67 1.761780e+02 0.000 57.00 15 0.000000e+00 0.00 1.159187e+06 1.156544e+06 2642.67 NULL
2023 Cultural Affairs Computer Associate 111888.00000 1.118880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.118880e+05 1.118880e+05 0.00 NULL
2023 Cultural Affairs Computer Systems Manager 137117.00000 1.371170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.371170e+05 1.371170e+05 0.00 NULL
2023 Cultural Affairs Deputy Commissioner 165000.00000 3.300000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.300000e+05 3.300000e+05 0.00 NULL
2023 Cultural Affairs Executive Agency Counsel 142290.00000 4.268700e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.268700e+05 4.268700e+05 0.00 NULL
2023 Cultural Affairs Executive Director Of Materials For The Arts 113770.00000 1.137700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.137700e+05 1.137700e+05 0.00 NULL
2023 Cultural Affairs Procurement Analyst 68246.00000 6.824600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.824600e+04 6.824600e+04 0.00 NULL
2023 Cultural Affairs Special Assistant 157000.00000 1.570000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.570000e+05 1.570000e+05 0.00 NULL
2023 Cultural Affairs Staff Analyst 78970.33333 2.369110e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.369110e+05 2.369110e+05 0.00 NULL
2023 Cuny Central Office Administrator Supt Campus B/G 67639.27500 1.352785e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.352785e+05 1.352785e+05 0.00 NULL
2023 Cuny Central Office Assistant To Heo 65704.62500 1.051274e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.051274e+06 1.051274e+06 0.00 NULL
2023 Cuny Central Office Campus Peace Officer 50907.00000 1.018140e+05 146.28 7.314000e+01 73.140 4.00 2 7.314000e+01 146.28 1.019603e+05 1.019603e+05 0.00 NULL
2023 Cuny Central Office College Accounting Assistant 50270.00000 5.027000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.027000e+04 5.027000e+04 0.00 NULL
2023 Cuny Central Office College Assistant 9395.16125 7.516129e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.516129e+04 7.516129e+04 0.00 NULL
2023 Cuny Central Office Higher Education Assistant 82830.85000 1.656617e+06 15267.66 7.633830e+02 0.000 207.00 20 0.000000e+00 0.00 1.671885e+06 1.656617e+06 15267.66 NULL
2023 Cuny Central Office Higher Education Associate 101333.81481 2.736013e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 2.736013e+06 2.736013e+06 0.00 NULL
2023 Cuny Central Office Higher Education Officer 121656.50000 1.946504e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.946504e+06 1.946504e+06 0.00 NULL
2023 Cuny Central Office It Associate 74698.33333 2.240950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.240950e+05 2.240950e+05 0.00 NULL
2023 Cuny Central Office It Senior Associate 42665.67000 4.266567e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.266567e+04 4.266567e+04 0.00 NULL
2023 Cuny Central Office Non-Teaching Adjunct I 4489.09333 1.346728e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.346728e+04 1.346728e+04 0.00 NULL
2023 Cuny Central Office Non-Teaching Adjunct Ii 25547.00000 2.554700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.554700e+04 2.554700e+04 0.00 NULL
2023 Cuny Central Office Non-Teaching Adjunct Iii 15727.00000 3.145400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.145400e+04 3.145400e+04 0.00 NULL
2023 Cuny Central Office Non-Teaching Adjunct V 17408.70000 5.222610e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.222610e+04 5.222610e+04 0.00 NULL
2023 Cuny Central Office University Assistant Dean 122212.00000 1.222120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.222120e+05 1.222120e+05 0.00 NULL
2023 Cuny Central Office University Associate Administrator 153714.00000 1.537140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.537140e+05 1.537140e+05 0.00 NULL
2023 Cuny Central Office University Associate Dean 145656.00000 1.456560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.456560e+05 1.456560e+05 0.00 NULL
2023 Cuny Central Office University Dean 180095.50000 3.601910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.601910e+05 3.601910e+05 0.00 NULL
2023 Cuny Central Office University Payroll Analyst 57204.75000 2.288190e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.288190e+05 2.288190e+05 0.00 NULL
2023 Department For The Aging Accountant 73930.00000 3.696500e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.696500e+05 3.696500e+05 0.00 NULL
2023 Department For The Aging Adm Manager-Non-Mgrl 108613.66667 3.258410e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.258410e+05 3.258410e+05 0.00 NULL
2023 Department For The Aging Admin Community Relations Specialist 84696.50000 1.693930e+05 1198.96 5.994800e+02 599.480 18.00 2 5.994800e+02 1198.96 1.705920e+05 1.705920e+05 0.00 NULL
2023 Department For The Aging Administrative Program Officer 102731.48696 6.163889e+06 0.00 0.000000e+00 0.000 0.00 60 0.000000e+00 0.00 6.163889e+06 6.163889e+06 0.00 NULL
2023 Department For The Aging Administrative Accountant 120054.00000 1.200540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200540e+05 1.200540e+05 0.00 NULL
2023 Department For The Aging Administrative Community Relations Specialist 141947.00000 2.838940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.838940e+05 2.838940e+05 0.00 NULL
2023 Department For The Aging Administrative Director Of Social Services 151000.50000 6.040020e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.040020e+05 6.040020e+05 0.00 NULL
2023 Department For The Aging Administrative Labor Relations Analyst 137000.00000 1.370000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.370000e+05 1.370000e+05 0.00 NULL
2023 Department For The Aging Administrative Manager 133000.00000 1.330000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.330000e+05 1.330000e+05 0.00 NULL
2023 Department For The Aging Administrative Procurement Analyst 147358.00000 1.473580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.473580e+05 1.473580e+05 0.00 NULL
2023 Department For The Aging Administrative Procurement Analyst-Non-Mgrl 76817.66667 2.304530e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.304530e+05 2.304530e+05 0.00 NULL
2023 Department For The Aging Administrative Project Manager 127949.00000 1.279490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.279490e+05 1.279490e+05 0.00 NULL
2023 Department For The Aging Administrative Public Information Specialist 114000.00000 1.140000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.140000e+05 1.140000e+05 0.00 NULL
2023 Department For The Aging Administrative Staff Analyst 126537.10714 3.543039e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 3.543039e+06 3.543039e+06 0.00 NULL
2023 Department For The Aging Administrative Supervisor Of Building Maintenance 103900.00000 2.078000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.078000e+05 2.078000e+05 0.00 NULL
2023 Department For The Aging Agency Chief Contracting Officer 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2023 Department For The Aging Architect 80304.00000 8.030400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.030400e+04 8.030400e+04 0.00 NULL
2023 Department For The Aging Assistant Architect 76918.50000 1.538370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.538370e+05 1.538370e+05 0.00 NULL
2023 Department For The Aging Associate Investigator 26925.36000 2.692536e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.692536e+04 2.692536e+04 0.00 NULL
2023 Department For The Aging Associate Project Manager 84604.00000 2.538120e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.538120e+05 2.538120e+05 0.00 NULL
2023 Department For The Aging Associate Staff Analyst 81567.91875 6.525433e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.525433e+05 6.525433e+05 0.00 NULL
2023 Department For The Aging Bookkeeper 69003.00000 6.900300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.900300e+04 6.900300e+04 0.00 NULL
2023 Department For The Aging Certified It Developer 116713.56000 2.334271e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.334271e+05 2.334271e+05 0.00 NULL
2023 Department For The Aging City Custodial Assistant 48781.00000 4.878100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.878100e+04 4.878100e+04 0.00 NULL
2023 Department For The Aging City Research Scientist 86502.80000 4.325140e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.325140e+05 4.325140e+05 0.00 NULL
2023 Department For The Aging Clerical Associate 55339.66667 1.660190e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.660190e+05 1.660190e+05 0.00 NULL
2023 Department For The Aging College Aide 10676.45789 9.608812e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.608812e+04 9.608812e+04 0.00 NULL
2023 Department For The Aging Commissioner 241166.00000 2.411660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411660e+05 2.411660e+05 0.00 NULL
2023 Department For The Aging Community Assistant 48977.00000 4.897700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.897700e+04 4.897700e+04 0.00 NULL
2023 Department For The Aging Community Associate 52479.12207 1.784290e+06 35870.33 1.055010e+03 0.000 744.07 34 0.000000e+00 0.00 1.820160e+06 1.784290e+06 35870.33 NULL
2023 Department For The Aging Community Coordinator 68648.04356 5.423195e+06 367.76 4.655190e+00 0.000 7.00 79 0.000000e+00 0.00 5.423563e+06 5.423195e+06 367.76 NULL
2023 Department For The Aging Computer Associate 84180.81600 4.209041e+05 8.20 1.640000e+00 0.000 0.00 5 0.000000e+00 0.00 4.209123e+05 4.209041e+05 8.20 NULL
2023 Department For The Aging Computer Operations Manager 145042.80000 1.450428e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450428e+05 1.450428e+05 0.00 NULL
2023 Department For The Aging Computer Specialist 111177.71429 7.782440e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.782440e+05 7.782440e+05 0.00 NULL
2023 Department For The Aging Computer Systems Manager 123886.45000 9.910916e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.910916e+05 9.910916e+05 0.00 NULL
2023 Department For The Aging Counsel 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2023 Department For The Aging Deputy Commissioner 192413.00000 1.924130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.924130e+05 1.924130e+05 0.00 NULL
2023 Department For The Aging Director Of Community Programs 146806.00000 1.468060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.468060e+05 1.468060e+05 0.00 NULL
2023 Department For The Aging Executive Agency Counsel 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2023 Department For The Aging Housing Development Specialist 71726.00000 7.172600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.172600e+04 7.172600e+04 0.00 NULL
2023 Department For The Aging Management Auditor 85493.80000 1.282407e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.282407e+06 1.282407e+06 0.00 NULL
2023 Department For The Aging Nutrition Consultant 75253.00000 1.204048e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.204048e+06 1.204048e+06 0.00 NULL
2023 Department For The Aging Nutritionist 71106.50000 1.422130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.422130e+05 1.422130e+05 0.00 NULL
2023 Department For The Aging Principal Administrative Associate - Non Supvr 65204.84211 1.238892e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.238892e+06 1.238892e+06 0.00 NULL
2023 Department For The Aging Principal Nutrition Consultant 90720.20000 4.536010e+05 21.72 4.344000e+00 0.000 0.00 5 0.000000e+00 0.00 4.536227e+05 4.536010e+05 21.72 NULL
2023 Department For The Aging Procurement Analyst 96223.00000 9.622300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.622300e+04 9.622300e+04 0.00 NULL
2023 Department For The Aging Program Officer 74084.41667 3.556052e+06 43.88 9.141667e-01 0.000 0.00 48 0.000000e+00 0.00 3.556096e+06 3.556052e+06 43.88 NULL
2023 Department For The Aging Secretary 66435.00000 6.643500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.643500e+04 6.643500e+04 0.00 NULL
2023 Department For The Aging Staff Analyst 71920.00000 1.438400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.438400e+05 1.438400e+05 0.00 NULL
2023 Department For The Aging Supervisor Ii 83095.50000 3.323820e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.323820e+05 3.323820e+05 0.00 NULL
2023 Department For The Aging Supervisor Iii 77313.20000 3.865660e+05 256.71 5.134200e+01 0.000 0.00 5 0.000000e+00 0.00 3.868227e+05 3.865660e+05 256.71 NULL
2023 Department Of Buildings Adm Manager-Non-Mgrl 89370.40000 4.915372e+06 250916.43 4.562117e+03 0.000 4627.25 55 0.000000e+00 0.00 5.166288e+06 4.915372e+06 250916.43 NULL
2023 Department Of Buildings Admin Community Relations Specialist 98471.07692 1.280124e+06 71002.11 5.461701e+03 987.530 979.00 13 9.875300e+02 12837.89 1.351126e+06 1.292962e+06 58164.22 NULL
2023 Department Of Buildings Admin Inspector 110249.65000 4.409986e+06 648670.37 1.621676e+04 11304.200 9724.75 40 1.130420e+04 452168.00 5.058656e+06 4.862154e+06 196502.37 NULL
2023 Department Of Buildings Administrative Architect 140680.57447 6.611987e+06 74833.25 1.592197e+03 0.000 968.50 47 0.000000e+00 0.00 6.686820e+06 6.611987e+06 74833.25 NULL
2023 Department Of Buildings Administrative Borough Superintendent 166689.33333 5.000680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.000680e+05 5.000680e+05 0.00 NULL
2023 Department Of Buildings Administrative City Planner 116233.00000 3.486990e+05 8687.15 2.895717e+03 0.000 130.00 3 0.000000e+00 0.00 3.573862e+05 3.486990e+05 8687.15 NULL
2023 Department Of Buildings Administrative Engineer 141901.14000 7.095057e+06 378030.84 7.560617e+03 0.000 5471.50 50 0.000000e+00 0.00 7.473088e+06 7.095057e+06 378030.84 NULL
2023 Department Of Buildings Administrative Inspector 136458.52941 2.319795e+06 144604.50 8.506147e+03 0.000 2685.00 17 0.000000e+00 0.00 2.464400e+06 2.319795e+06 144604.50 NULL
2023 Department Of Buildings Administrative Investigator 128909.00000 1.289090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.289090e+05 1.289090e+05 0.00 NULL
2023 Department Of Buildings Administrative Manager 146502.50000 5.860100e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.860100e+05 5.860100e+05 0.00 NULL
2023 Department Of Buildings Administrative Procurement Analyst-Non-Mgrl 90908.75000 3.636350e+05 1105.53 2.763825e+02 0.000 24.25 4 0.000000e+00 0.00 3.647405e+05 3.636350e+05 1105.53 NULL
2023 Department Of Buildings Administrative Project Manager 147123.66667 4.413710e+05 37424.91 1.247497e+04 0.000 375.50 3 0.000000e+00 0.00 4.787959e+05 4.413710e+05 37424.91 NULL
2023 Department Of Buildings Administrative Public Information Specialist 154046.00000 3.080920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.080920e+05 3.080920e+05 0.00 NULL
2023 Department Of Buildings Administrative Staff Analyst 119178.89362 5.601408e+06 139424.01 2.966468e+03 0.000 1596.00 47 0.000000e+00 0.00 5.740832e+06 5.601408e+06 139424.01 NULL
2023 Department Of Buildings Agency Attorney 85920.17021 4.038248e+06 20389.92 4.338281e+02 32.840 380.00 47 3.284000e+01 1543.48 4.058638e+06 4.039791e+06 18846.44 NULL
2023 Department Of Buildings Agency Attorney Interne 62397.00000 6.863670e+05 691.58 6.287091e+01 0.000 20.25 11 0.000000e+00 0.00 6.870586e+05 6.863670e+05 691.58 NULL
2023 Department Of Buildings Agency Chief Contracting Officer 152563.00000 1.525630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.525630e+05 1.525630e+05 0.00 NULL
2023 Department Of Buildings Architect 101283.11111 9.115480e+05 1865.62 2.072911e+02 0.000 24.50 9 0.000000e+00 0.00 9.134136e+05 9.115480e+05 1865.62 NULL
2023 Department Of Buildings Assistant Architect 83333.37143 2.916668e+06 346522.50 9.900643e+03 189.520 5460.25 35 1.895200e+02 6633.20 3.263190e+06 2.923301e+06 339889.30 NULL
2023 Department Of Buildings Assistant Civil Engineer 78652.82143 2.202279e+06 210778.44 7.527801e+03 1520.940 3731.25 28 1.520940e+03 42586.32 2.413057e+06 2.244865e+06 168192.12 NULL
2023 Department Of Buildings Assistant Commissioner 184384.27273 2.028227e+06 7526.23 6.842027e+02 0.000 78.00 11 0.000000e+00 0.00 2.035753e+06 2.028227e+06 7526.23 NULL
2023 Department Of Buildings Assistant Electrical Engineer 70696.75000 2.827870e+05 2326.33 5.815825e+02 0.000 59.00 4 0.000000e+00 0.00 2.851133e+05 2.827870e+05 2326.33 NULL
2023 Department Of Buildings Assistant Mechanical Engineer 73744.66667 1.106170e+06 23845.52 1.589701e+03 0.000 392.75 15 0.000000e+00 0.00 1.130016e+06 1.106170e+06 23845.52 NULL
2023 Department Of Buildings Assistant Plan Examiner 77030.64706 1.571425e+07 927720.06 4.547647e+03 424.745 17108.70 204 4.247450e+02 86647.98 1.664197e+07 1.580090e+07 841072.08 NULL
2023 Department Of Buildings Associate Inspector 75952.08333 9.114250e+05 254147.23 2.117894e+04 17996.645 4622.00 12 1.799665e+04 215959.74 1.165572e+06 1.127385e+06 38187.49 NULL
2023 Department Of Buildings Associate Investigator 77076.66667 2.312300e+05 20481.42 6.827140e+03 167.720 331.50 3 1.677200e+02 503.16 2.517114e+05 2.317332e+05 19978.26 NULL
2023 Department Of Buildings Associate Labor Relations Analyst 86853.00000 1.737060e+05 4094.81 2.047405e+03 2047.405 73.25 2 2.047405e+03 4094.81 1.778008e+05 1.778008e+05 0.00 NULL
2023 Department Of Buildings Associate Project Manager 104126.50000 2.082530e+05 31041.06 1.552053e+04 15520.530 437.25 2 1.552053e+04 31041.06 2.392941e+05 2.392941e+05 0.00 NULL
2023 Department Of Buildings Associate Public Information Specialist 75197.00000 7.519700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.519700e+04 7.519700e+04 0.00 NULL
2023 Department Of Buildings Associate Public Records Officer 75689.50000 1.513790e+05 648.56 3.242800e+02 324.280 9.75 2 3.242800e+02 648.56 1.520276e+05 1.520276e+05 0.00 NULL
2023 Department Of Buildings Associate Staff Analyst 84580.58333 2.029934e+06 1635.45 6.814375e+01 0.000 33.50 24 0.000000e+00 0.00 2.031569e+06 2.029934e+06 1635.45 NULL
2023 Department Of Buildings Borough Commissioner 190000.00000 3.800000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.800000e+05 3.800000e+05 0.00 NULL
2023 Department Of Buildings Certified It Administrator 111813.33333 6.708800e+05 93307.22 1.555120e+04 1387.320 859.25 6 1.387320e+03 8323.92 7.641872e+05 6.792039e+05 84983.30 NULL
2023 Department Of Buildings Chief Of Staff 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2023 Department Of Buildings Chief Strategy Officer 128909.00000 1.289090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.289090e+05 1.289090e+05 0.00 NULL
2023 Department Of Buildings City Laborer NA NA 12524.61 4.174870e+03 5478.340 230.75 3 4.174870e+03 12524.61 NA NA NA NULL
2023 Department Of Buildings City Planner 103474.50000 2.069490e+05 73.36 3.668000e+01 36.680 0.00 2 3.668000e+01 73.36 2.070224e+05 2.070224e+05 0.00 NULL
2023 Department Of Buildings City Research Scientist 95433.40000 4.771670e+05 2572.13 5.144260e+02 0.000 49.00 5 0.000000e+00 0.00 4.797391e+05 4.771670e+05 2572.13 NULL
2023 Department Of Buildings Civil Engineer 108941.32000 2.723533e+06 253591.60 1.014366e+04 3964.320 4544.50 25 3.964320e+03 99108.00 2.977125e+06 2.822641e+06 154483.60 NULL
2023 Department Of Buildings Clerical Associate 46436.65831 1.086618e+07 278489.93 1.190128e+03 0.000 8403.76 234 0.000000e+00 0.00 1.114467e+07 1.086618e+07 278489.93 NULL
2023 Department Of Buildings College Aide 6450.10880 2.257538e+05 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 2.257538e+05 2.257538e+05 0.00 NULL
2023 Department Of Buildings College Aide - Assignment Levels Ii And Iii 2541.99120 5.083982e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.083982e+03 5.083982e+03 0.00 NULL
2023 Department Of Buildings Commissioner Of Buildings 243171.00000 4.863420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863420e+05 4.863420e+05 0.00 NULL
2023 Department Of Buildings Community Assistant 44902.75000 1.796110e+05 7.59 1.897500e+00 0.000 0.00 4 0.000000e+00 0.00 1.796186e+05 1.796110e+05 7.59 NULL
2023 Department Of Buildings Community Associate 49479.42913 7.421914e+05 39049.50 2.603300e+03 399.050 1083.75 15 3.990500e+02 5985.75 7.812409e+05 7.481772e+05 33063.75 NULL
2023 Department Of Buildings Community Coordinator 70778.55556 3.822042e+06 118267.28 2.190135e+03 220.085 2516.25 54 2.200850e+02 11884.59 3.940309e+06 3.833927e+06 106382.69 NULL
2023 Department Of Buildings Computer Associate 81216.46667 1.218247e+06 99289.20 6.619280e+03 138.930 1471.75 15 1.389300e+02 2083.95 1.317536e+06 1.220331e+06 97205.25 NULL
2023 Department Of Buildings Computer Operations Manager 123600.00000 1.236000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.236000e+05 1.236000e+05 0.00 NULL
2023 Department Of Buildings Computer Programmer Analyst 72919.00000 7.291900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.291900e+04 7.291900e+04 0.00 NULL
2023 Department Of Buildings Computer Specialist 112557.35714 1.575803e+06 213.95 1.528214e+01 0.000 3.50 14 0.000000e+00 0.00 1.576017e+06 1.575803e+06 213.95 NULL
2023 Department Of Buildings Computer Systems Manager 133821.61538 3.479362e+06 39982.24 1.537778e+03 0.000 534.50 26 0.000000e+00 0.00 3.519344e+06 3.479362e+06 39982.24 NULL
2023 Department Of Buildings Confidential Agency Investigator 130446.00000 1.304460e+05 8351.07 8.351070e+03 8351.070 148.75 1 8.351070e+03 8351.07 1.387971e+05 1.387971e+05 0.00 NULL
2023 Department Of Buildings Confidential Strategy Planner 92443.33333 8.319900e+05 31185.39 3.465043e+03 0.000 491.75 9 0.000000e+00 0.00 8.631754e+05 8.319900e+05 31185.39 NULL
2023 Department Of Buildings Deputy Commissioner 223761.00000 4.475220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.475220e+05 4.475220e+05 0.00 NULL
2023 Department Of Buildings Director, Energy Management Strategy 120000.00000 1.200000e+05 2406.71 2.406710e+03 2406.710 52.75 1 2.406710e+03 2406.71 1.224067e+05 1.224067e+05 0.00 NULL
2023 Department Of Buildings Electrical Engineer 108094.40000 5.404720e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.404720e+05 5.404720e+05 0.00 NULL
2023 Department Of Buildings Equal Employment Opportunity Officer 120077.00000 1.200770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200770e+05 1.200770e+05 0.00 NULL
2023 Department Of Buildings Estimator 71726.00000 7.172600e+04 17673.82 1.767382e+04 17673.820 344.75 1 1.767382e+04 17673.82 8.939982e+04 8.939982e+04 0.00 NULL
2023 Department Of Buildings Executive Agency Counsel 148310.00000 3.411130e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 3.411130e+06 3.411130e+06 0.00 NULL
2023 Department Of Buildings Executive Assistant 94903.50000 1.898070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.898070e+05 1.898070e+05 0.00 NULL
2023 Department Of Buildings Executive Director Of Professional Development 155764.00000 1.557640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.557640e+05 1.557640e+05 0.00 NULL
2023 Department Of Buildings Executive Director, New York City Loft Board 150000.00000 3.000000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.000000e+05 3.000000e+05 0.00 NULL
2023 Department Of Buildings Executive Inspector 122333.00000 3.669990e+05 8127.71 2.709237e+03 0.000 115.50 3 0.000000e+00 0.00 3.751267e+05 3.669990e+05 8127.71 NULL
2023 Department Of Buildings Executive Program Specialist 157500.00000 3.150000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.150000e+05 3.150000e+05 0.00 NULL
2023 Department Of Buildings First Deputy Commissioner 235000.00000 2.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.350000e+05 2.350000e+05 0.00 NULL
2023 Department Of Buildings Industrial Hygienist 66380.00000 1.991400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.991400e+05 1.991400e+05 0.00 NULL
2023 Department Of Buildings Inspector 66781.29545 2.938377e+06 380167.31 8.640166e+03 1299.990 7970.00 44 1.299990e+03 57199.56 3.318544e+06 2.995577e+06 322967.75 NULL
2023 Department Of Buildings Inspector Boilers 68517.94737 1.301841e+06 45530.28 2.396331e+03 45.160 2428.75 19 4.516000e+01 858.04 1.347371e+06 1.302699e+06 44672.24 NULL
2023 Department Of Buildings Inspector Construction 66595.11311 2.590550e+07 2898709.80 7.451696e+03 1708.710 55156.47 389 1.708710e+03 664688.19 2.880421e+07 2.657019e+07 2234021.61 NULL
2023 Department Of Buildings Inspector Elevators 70467.55368 2.677767e+06 454011.75 1.194768e+04 7518.860 11412.50 38 7.518860e+03 285716.68 3.131779e+06 2.963484e+06 168295.07 NULL
2023 Department Of Buildings Inspector Hoists And Rigging 77728.87500 6.218310e+05 114838.54 1.435482e+04 15396.360 1969.75 8 1.435482e+04 114838.54 7.366695e+05 7.366695e+05 0.00 NULL
2023 Department Of Buildings Inspector Plumbing 67758.49091 3.726717e+06 176621.78 3.211305e+03 1010.510 3353.95 55 1.010510e+03 55578.05 3.903339e+06 3.782295e+06 121043.73 NULL
2023 Department Of Buildings Investigator 51862.52459 3.163614e+06 51573.22 8.454626e+02 0.000 1783.25 61 0.000000e+00 0.00 3.215187e+06 3.163614e+06 51573.22 NULL
2023 Department Of Buildings It Security Specialist 110552.50000 2.211050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.211050e+05 2.211050e+05 0.00 NULL
2023 Department Of Buildings Labor Relations Analyst 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2023 Department Of Buildings Management Auditor 81646.00000 8.164600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.164600e+04 8.164600e+04 0.00 NULL
2023 Department Of Buildings Mechanical Engineer 104306.50000 6.258390e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.258390e+05 6.258390e+05 0.00 NULL
2023 Department Of Buildings Mechanical Engineering Intern 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Department Of Buildings Multiple Dwelling Specialist 75239.00000 7.523900e+04 3014.49 3.014490e+03 3014.490 59.50 1 3.014490e+03 3014.49 7.825349e+04 7.825349e+04 0.00 NULL
2023 Department Of Buildings New York City Public Service Fellow 46350.00000 4.635000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.635000e+04 4.635000e+04 0.00 NULL
2023 Department Of Buildings Paralegal Aide 49835.16667 2.990110e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.990110e+05 2.990110e+05 0.00 NULL
2023 Department Of Buildings Plan Examiner 96412.97059 3.278041e+06 251997.41 7.411689e+03 103.000 3783.50 34 1.030000e+02 3502.00 3.530038e+06 3.281543e+06 248495.41 NULL
2023 Department Of Buildings Principal Administrative Associate - Non Supvr 64593.17273 5.684199e+06 324998.78 3.693168e+03 137.400 7239.25 88 1.374000e+02 12091.20 6.009198e+06 5.696290e+06 312907.58 NULL
2023 Department Of Buildings Principal Multiple Dwelling Specialist 96135.00000 1.922700e+05 16416.90 8.208450e+03 8208.450 203.75 2 8.208450e+03 16416.90 2.086869e+05 2.086869e+05 0.00 NULL
2023 Department Of Buildings Procurement Analyst 71202.20000 3.560110e+05 15786.79 3.157358e+03 32.080 417.25 5 3.208000e+01 160.40 3.717978e+05 3.561714e+05 15626.39 NULL
2023 Department Of Buildings Public Records Officer 48180.00000 4.818000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.818000e+04 4.818000e+04 0.00 NULL
2023 Department Of Buildings Risk Management Officer 124270.00000 1.242700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.242700e+05 1.242700e+05 0.00 NULL
2023 Department Of Buildings Safety Specialist 47833.00000 9.566600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.566600e+04 9.566600e+04 0.00 NULL
2023 Department Of Buildings Secretary 52520.58333 6.302470e+05 17717.73 1.476477e+03 0.000 448.75 12 0.000000e+00 0.00 6.479647e+05 6.302470e+05 17717.73 NULL
2023 Department Of Buildings Secretary To Department 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2023 Department Of Buildings Senior Policy Advisor 118960.00000 1.189600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.189600e+05 1.189600e+05 0.00 NULL
2023 Department Of Buildings Space Analyst 79949.00000 3.197960e+05 5955.60 1.488900e+03 1.355 100.75 4 1.355000e+00 5.42 3.257516e+05 3.198014e+05 5950.18 NULL
2023 Department Of Buildings Staff Analyst 69856.10000 1.397122e+06 922.75 4.613750e+01 0.000 18.50 20 0.000000e+00 0.00 1.398045e+06 1.397122e+06 922.75 NULL
2023 Department Of Buildings Stock Worker 36900.00000 3.690000e+04 4774.69 4.774690e+03 4774.690 230.00 1 4.774690e+03 4774.69 4.167469e+04 4.167469e+04 0.00 NULL
2023 Department Of Buildings Strategic Initiative Specialist 128130.57143 8.969140e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.969140e+05 8.969140e+05 0.00 NULL
2023 Department Of Buildings Summer College Intern 3419.55000 9.574740e+04 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 9.574740e+04 9.574740e+04 0.00 NULL
2023 Department Of Buildings Summer Graduate Intern 6421.96883 3.853181e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.853181e+04 3.853181e+04 0.00 NULL
2023 Department Of Business Serv. Adm Manager-Non-Mgrl 96177.56250 1.538841e+06 574.40 3.590000e+01 0.000 11.50 16 0.000000e+00 0.00 1.539415e+06 1.538841e+06 574.40 NULL
2023 Department Of Business Serv. Admin Community Relations Specialist 75329.32538 3.013173e+05 205.25 5.131250e+01 0.000 5.00 4 0.000000e+00 0.00 3.015226e+05 3.013173e+05 205.25 NULL
2023 Department Of Business Serv. Admin Contract Specialist 128000.00000 1.280000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.280000e+05 1.280000e+05 0.00 NULL
2023 Department Of Business Serv. Administrative Architect 160502.00000 1.605020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.605020e+05 1.605020e+05 0.00 NULL
2023 Department Of Business Serv. Administrative Business Promotion Coordinator 113001.77586 6.554103e+06 2641.66 4.554586e+01 0.000 70.50 58 0.000000e+00 0.00 6.556745e+06 6.554103e+06 2641.66 NULL
2023 Department Of Business Serv. Administrative City Planner 92961.00000 9.296100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.296100e+04 9.296100e+04 0.00 NULL
2023 Department Of Business Serv. Administrative Contract Specialist 109542.00000 2.190840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.190840e+05 2.190840e+05 0.00 NULL
2023 Department Of Business Serv. Administrative Management Auditor 112551.00000 1.125510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.125510e+05 1.125510e+05 0.00 NULL
2023 Department Of Business Serv. Administrative Manager 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2023 Department Of Business Serv. Administrative Procurement Analyst 128000.00000 1.280000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.280000e+05 1.280000e+05 0.00 NULL
2023 Department Of Business Serv. Administrative Public Information Specialist 134280.00000 1.342800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.342800e+05 1.342800e+05 0.00 NULL
2023 Department Of Business Serv. Administrative Space Analyst 119561.00000 1.195610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.195610e+05 1.195610e+05 0.00 NULL
2023 Department Of Business Serv. Administrative Staff Analyst 132880.00000 9.301600e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.301600e+05 9.301600e+05 0.00 NULL
2023 Department Of Business Serv. Agency Attorney 76306.00000 7.630600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.630600e+04 7.630600e+04 0.00 NULL
2023 Department Of Business Serv. Agency Chief Contracting Officer 154319.00000 1.543190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.543190e+05 1.543190e+05 0.00 NULL
2023 Department Of Business Serv. Assistant Architect 90120.00000 1.802400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.802400e+05 1.802400e+05 0.00 NULL
2023 Department Of Business Serv. Assistant Commissioner 136993.00000 1.095944e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.095944e+06 1.095944e+06 0.00 NULL
2023 Department Of Business Serv. Assistant Plan Examiner 88773.00000 8.877300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.877300e+04 8.877300e+04 0.00 NULL
2023 Department Of Business Serv. Associate Contract Specialist 85052.75000 6.804220e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.804220e+05 6.804220e+05 0.00 NULL
2023 Department Of Business Serv. Associate Investigator 73442.60000 7.344260e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.344260e+04 7.344260e+04 0.00 NULL
2023 Department Of Business Serv. Associate Staff Analyst 84878.50000 1.697570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.697570e+05 1.697570e+05 0.00 NULL
2023 Department Of Business Serv. Business Promotion Coordinator 81660.10483 2.368143e+06 14791.73 5.100597e+02 0.000 249.00 29 0.000000e+00 0.00 2.382935e+06 2.368143e+06 14791.73 NULL
2023 Department Of Business Serv. Certified It Developer 112817.29333 6.769038e+05 0.90 1.500000e-01 0.000 0.00 6 0.000000e+00 0.00 6.769047e+05 6.769038e+05 0.90 NULL
2023 Department Of Business Serv. City Planner 87452.00000 8.745200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.745200e+04 8.745200e+04 0.00 NULL
2023 Department Of Business Serv. City Research Scientist 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2023 Department Of Business Serv. Clerical Associate 59441.00000 1.783230e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.783230e+05 1.783230e+05 0.00 NULL
2023 Department Of Business Serv. College Aide 10075.00000 1.007500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.007500e+04 1.007500e+04 0.00 NULL
2023 Department Of Business Serv. Commissioner Of Business Services 227786.00000 4.555720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.555720e+05 4.555720e+05 0.00 NULL
2023 Department Of Business Serv. Community Associate 67238.42857 4.706690e+05 1.40 2.000000e-01 0.000 0.00 7 0.000000e+00 0.00 4.706704e+05 4.706690e+05 1.40 NULL
2023 Department Of Business Serv. Community Coordinator 63553.57179 6.037589e+06 61310.58 6.453745e+02 0.000 1128.50 95 0.000000e+00 0.00 6.098900e+06 6.037589e+06 61310.58 NULL
2023 Department Of Business Serv. Computer Associate 81276.33333 2.438290e+05 -29.73 -9.910000e+00 0.000 0.00 3 -9.910000e+00 -29.73 2.437993e+05 2.437993e+05 0.00 NULL
2023 Department Of Business Serv. Computer Operations Manager 85552.00000 8.555200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.555200e+04 8.555200e+04 0.00 NULL
2023 Department Of Business Serv. Computer Service Technician 65874.00000 6.587400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.587400e+04 6.587400e+04 0.00 NULL
2023 Department Of Business Serv. Computer Specialist 107836.00000 1.078360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.078360e+05 1.078360e+05 0.00 NULL
2023 Department Of Business Serv. Computer Systems Manager 137710.25000 5.508410e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.508410e+05 5.508410e+05 0.00 NULL
2023 Department Of Business Serv. Contract Reviewer 68414.51724 1.984021e+06 338.73 1.168034e+01 0.000 9.50 29 0.000000e+00 0.00 1.984360e+06 1.984021e+06 338.73 NULL
2023 Department Of Business Serv. Customer Information Representative Ma L 1549 62321.00000 6.232100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.232100e+04 6.232100e+04 0.00 NULL
2023 Department Of Business Serv. Cyber Security Analyst 103000.00000 1.030000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030000e+05 1.030000e+05 0.00 NULL
2023 Department Of Business Serv. Deputy Commissioner 171891.50000 1.031349e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.031349e+06 1.031349e+06 0.00 NULL
2023 Department Of Business Serv. Executive Agency Counsel 134000.00000 2.680000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.680000e+05 2.680000e+05 0.00 NULL
2023 Department Of Business Serv. Executive Assistant To The Commissioner 127500.00000 2.550000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.550000e+05 2.550000e+05 0.00 NULL
2023 Department Of Business Serv. General Counsel 203340.50000 4.066810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.066810e+05 4.066810e+05 0.00 NULL
2023 Department Of Business Serv. Graphic Artist 84036.00000 1.680720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.680720e+05 1.680720e+05 0.00 NULL
2023 Department Of Business Serv. Management Auditor 92436.00000 9.243600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.243600e+04 9.243600e+04 0.00 NULL
2023 Department Of Business Serv. New York City Public Service Fellow 12643.40125 2.528680e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.528680e+04 2.528680e+04 0.00 NULL
2023 Department Of Business Serv. Principal Administrative Associate - Non Supvr 72528.80000 7.252880e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.252880e+05 7.252880e+05 0.00 NULL
2023 Department Of Business Serv. Procurement Analyst 80990.80000 4.049540e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.049540e+05 4.049540e+05 0.00 NULL
2023 Department Of Business Serv. Project Manager 109403.58333 1.312843e+06 6.07 5.058333e-01 0.000 0.00 12 0.000000e+00 0.00 1.312849e+06 1.312843e+06 6.07 NULL
2023 Department Of Business Serv. Secretary Of Department 64992.00000 6.499200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.499200e+04 6.499200e+04 0.00 NULL
2023 Department Of Business Serv. Space Analyst 93385.00000 9.338500e+04 1020.60 1.020600e+03 1020.600 18.50 1 1.020600e+03 1020.60 9.440560e+04 9.440560e+04 0.00 NULL
2023 Department Of Business Serv. Staff Analyst 79821.25000 3.192850e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.192850e+05 3.192850e+05 0.00 NULL
2023 Department Of Business Serv. Telecommunications Associate 78082.00000 7.808200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.808200e+04 7.808200e+04 0.00 NULL
2023 Department Of City Planning *Certified Local Area Network Administrator 141213.00000 1.412130e+05 -99.75 -9.975000e+01 -99.750 -1.50 1 -9.975000e+01 -99.75 1.411132e+05 1.411132e+05 0.00 NULL
2023 Department Of City Planning Accountant 79381.00000 7.938100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.938100e+04 7.938100e+04 0.00 NULL
2023 Department Of City Planning Adm Manager-Non-Mgrl 82700.80000 4.135040e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.135040e+05 4.135040e+05 0.00 NULL
2023 Department Of City Planning Admin Community Relations Specialist 102500.00000 2.050000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.050000e+05 2.050000e+05 0.00 NULL
2023 Department Of City Planning Administrative Accountant 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2023 Department Of City Planning Administrative City Planner 128007.27500 5.120291e+06 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 5.120291e+06 5.120291e+06 0.00 NULL
2023 Department Of City Planning Administrative Community Relations Specialist 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2023 Department Of City Planning Administrative Contract Specialist 103000.00000 1.030000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030000e+05 1.030000e+05 0.00 NULL
2023 Department Of City Planning Administrative Staff Analyst 133963.40000 6.698170e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.698170e+05 6.698170e+05 0.00 NULL
2023 Department Of City Planning Agency Attorney 98263.28571 6.878430e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.878430e+05 6.878430e+05 0.00 NULL
2023 Department Of City Planning Architectural Intern 63378.00000 6.337800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.337800e+04 6.337800e+04 0.00 NULL
2023 Department Of City Planning Assistant Architect 76487.00000 7.648700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.648700e+04 7.648700e+04 0.00 NULL
2023 Department Of City Planning Assistant Transportation Specialist 68959.00000 6.895900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.895900e+04 6.895900e+04 0.00 NULL
2023 Department Of City Planning Assistant Urban Designer 72031.33333 2.160940e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.160940e+05 2.160940e+05 0.00 NULL
2023 Department Of City Planning Associate Staff Analyst 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2023 Department Of City Planning Associate Urban Designer 93271.85714 6.529030e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.529030e+05 6.529030e+05 0.00 NULL
2023 Department Of City Planning Bookbinder 61259.00000 6.125900e+04 325.44 3.254400e+02 325.440 8.50 1 3.254400e+02 325.44 6.158444e+04 6.158444e+04 0.00 NULL
2023 Department Of City Planning Bookkeeper 65770.00000 6.577000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.577000e+04 6.577000e+04 0.00 NULL
2023 Department Of City Planning Certified It Administrator 107582.00000 2.151640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.151640e+05 2.151640e+05 0.00 NULL
2023 Department Of City Planning Certified It Developer 117255.00000 2.345100e+05 0.45 2.250000e-01 0.225 0.00 2 2.250000e-01 0.45 2.345105e+05 2.345105e+05 0.00 NULL
2023 Department Of City Planning Chairman 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2023 Department Of City Planning City Planner 89559.76724 1.038893e+07 35.55 3.064655e-01 0.000 0.00 116 0.000000e+00 0.00 1.038897e+07 1.038893e+07 35.55 NULL
2023 Department Of City Planning City Research Scientist 83441.66667 3.254225e+06 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 3.254225e+06 3.254225e+06 0.00 NULL
2023 Department Of City Planning Civil Engineer 102664.00000 1.026640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.026640e+05 1.026640e+05 0.00 NULL
2023 Department Of City Planning Clerical Associate 56837.74250 2.273510e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.273510e+05 2.273510e+05 0.00 NULL
2023 Department Of City Planning College Aide 14320.07500 2.864015e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.864015e+04 2.864015e+04 0.00 NULL
2023 Department Of City Planning Commissioner 64224.00000 9.633600e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 9.633600e+05 9.633600e+05 0.00 NULL
2023 Department Of City Planning Commissioner Designated As Vice Chairman 73855.00000 7.385500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.385500e+04 7.385500e+04 0.00 NULL
2023 Department Of City Planning Community Associate 62050.00000 1.241000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.241000e+05 1.241000e+05 0.00 NULL
2023 Department Of City Planning Community Coordinator 73055.32075 3.871932e+06 461.51 8.707736e+00 0.000 8.50 53 0.000000e+00 0.00 3.872394e+06 3.871932e+06 461.51 NULL
2023 Department Of City Planning Computer Aide-Non-Spvr 72026.00000 7.202600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.202600e+04 7.202600e+04 0.00 NULL
2023 Department Of City Planning Computer Associate 79501.06250 3.180042e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.180042e+05 3.180042e+05 0.00 NULL
2023 Department Of City Planning Computer Operations Manager 124107.33333 3.723220e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.723220e+05 3.723220e+05 0.00 NULL
2023 Department Of City Planning Computer Service Technician 70288.00000 7.028800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.028800e+04 7.028800e+04 0.00 NULL
2023 Department Of City Planning Computer Specialist 113493.90000 1.134939e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.134939e+06 1.134939e+06 0.00 NULL
2023 Department Of City Planning Computer Systems Manager 145440.00000 5.817600e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.817600e+05 5.817600e+05 0.00 NULL
2023 Department Of City Planning Contract Specialist 86173.00000 8.617300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.617300e+04 8.617300e+04 0.00 NULL
2023 Department Of City Planning Counsel 206000.00000 2.060000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.060000e+05 2.060000e+05 0.00 NULL
2023 Department Of City Planning Director Of Mortgage Research And Analysis 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2023 Department Of City Planning Director Of Public Information 160609.00000 1.606090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.606090e+05 1.606090e+05 0.00 NULL
2023 Department Of City Planning Economist 72144.05263 1.370737e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.370737e+06 1.370737e+06 0.00 NULL
2023 Department Of City Planning Executive Agency Counsel 130414.00000 3.912420e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.912420e+05 3.912420e+05 0.00 NULL
2023 Department Of City Planning Executive Assistant For Planning 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2023 Department Of City Planning Executive Director 222326.00000 2.223260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.223260e+05 2.223260e+05 0.00 NULL
2023 Department Of City Planning Geologist 92747.00000 9.274700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.274700e+04 9.274700e+04 0.00 NULL
2023 Department Of City Planning Graphic Artist 82417.00000 8.241700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.241700e+04 8.241700e+04 0.00 NULL
2023 Department Of City Planning Housing Development Specialist 84460.00000 8.446000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.446000e+04 8.446000e+04 0.00 NULL
2023 Department Of City Planning Motor Vehicle Supervisor 67997.00000 6.799700e+04 38480.09 3.848009e+04 38480.090 755.50 1 3.848009e+04 38480.09 1.064771e+05 1.064771e+05 0.00 NULL
2023 Department Of City Planning New York City Public Service Fellow 42127.00000 4.212700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.212700e+04 4.212700e+04 0.00 NULL
2023 Department Of City Planning Principal Administrative Associate - Non Supvr 69565.66667 4.173940e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.173940e+05 4.173940e+05 0.00 NULL
2023 Department Of City Planning Principal Planning Consultant 110641.42857 7.744900e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.744900e+05 7.744900e+05 0.00 NULL
2023 Department Of City Planning Procurement Analyst 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2023 Department Of City Planning Project Manager 85490.00000 8.549000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.549000e+04 8.549000e+04 0.00 NULL
2023 Department Of City Planning Secretary 65523.00000 6.552300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.552300e+04 6.552300e+04 0.00 NULL
2023 Department Of City Planning Secretary To The Chairman 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2023 Department Of City Planning Staff Analyst 73091.40000 3.654570e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.654570e+05 3.654570e+05 0.00 NULL
2023 Department Of City Planning Summer College Intern 2429.74667 1.093386e+05 0.00 0.000000e+00 0.000 0.00 45 0.000000e+00 0.00 1.093386e+05 1.093386e+05 0.00 NULL
2023 Department Of City Planning Telecommunication Manager 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2023 Department Of City Planning Telecommunications Associate 85138.00000 8.513800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.513800e+04 8.513800e+04 0.00 NULL
2023 Department Of City Planning Telecommunications Manager 88598.04545 1.949157e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 1.949157e+06 1.949157e+06 0.00 NULL
2023 Department Of City Planning Transportation Specialist 97210.20000 4.860510e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.860510e+05 4.860510e+05 0.00 NULL
2023 Department Of Correction *Cook 40809.21053 3.876875e+06 221866.07 2.335432e+03 850.030 6607.55 95 8.500300e+02 80752.85 4.098741e+06 3.957628e+06 141113.22 NULL
2023 Department Of Correction *Senior Cook 44810.66667 9.410240e+05 163859.14 7.802816e+03 7914.040 4462.75 21 7.802816e+03 163859.14 1.104883e+06 1.104883e+06 0.00 NULL
2023 Department Of Correction Adm Manager-Non-Mgrl 81609.97500 3.264399e+06 166491.35 4.162284e+03 0.000 2915.50 40 0.000000e+00 0.00 3.430890e+06 3.264399e+06 166491.35 NULL
2023 Department Of Correction Admin Community Relations Specialist 116557.00000 2.331140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.331140e+05 2.331140e+05 0.00 NULL
2023 Department Of Correction Admin Construction Project Manager 128317.00000 1.283170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.283170e+05 1.283170e+05 0.00 NULL
2023 Department Of Correction Administrative Architect 134800.50000 2.696010e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.696010e+05 2.696010e+05 0.00 NULL
2023 Department Of Correction Administrative Business Promotion Coordinator 138333.33333 4.150000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.150000e+05 4.150000e+05 0.00 NULL
2023 Department Of Correction Administrative Construction Project Manager 147027.00000 2.940540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.940540e+05 2.940540e+05 0.00 NULL
2023 Department Of Correction Administrative Contract Specialist 90856.50000 1.817130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.817130e+05 1.817130e+05 0.00 NULL
2023 Department Of Correction Administrative Director Of Social Services 107466.91667 1.289603e+06 18309.19 1.525766e+03 0.000 347.75 12 0.000000e+00 0.00 1.307912e+06 1.289603e+06 18309.19 NULL
2023 Department Of Correction Administrative Graphic Artist 111537.00000 1.115370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.115370e+05 1.115370e+05 0.00 NULL
2023 Department Of Correction Administrative Investigator 102120.14286 7.148410e+05 15693.08 2.241869e+03 0.000 278.00 7 0.000000e+00 0.00 7.305341e+05 7.148410e+05 15693.08 NULL
2023 Department Of Correction Administrative Management Auditor 105318.00000 1.053180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.053180e+05 1.053180e+05 0.00 NULL
2023 Department Of Correction Administrative Manager 157196.50000 3.143930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.143930e+05 3.143930e+05 0.00 NULL
2023 Department Of Correction Administrative Procurement Analyst-Non-Mgrl 97666.57143 6.836660e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.836660e+05 6.836660e+05 0.00 NULL
2023 Department Of Correction Administrative Project Manager 127834.16667 7.670050e+05 8.00 1.333333e+00 0.000 0.00 6 0.000000e+00 0.00 7.670130e+05 7.670050e+05 8.00 NULL
2023 Department Of Correction Administrative Public Health Sanitarian 139543.33333 4.186300e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.186300e+05 4.186300e+05 0.00 NULL
2023 Department Of Correction Administrative Public Information Specialist 136491.00000 1.364910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.364910e+05 1.364910e+05 0.00 NULL
2023 Department Of Correction Administrative Public Information Specialist Nm Former M1/M2 96779.00000 2.903370e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.903370e+05 2.903370e+05 0.00 NULL
2023 Department Of Correction Administrative Public Records Officer 106608.50000 2.132170e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.132170e+05 2.132170e+05 0.00 NULL
2023 Department Of Correction Administrative Quality Assurance Specialist 147708.00000 1.477080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.477080e+05 1.477080e+05 0.00 NULL
2023 Department Of Correction Administrative Staff Analyst 116008.80851 5.452414e+06 0.00 0.000000e+00 0.000 0.00 47 0.000000e+00 0.00 5.452414e+06 5.452414e+06 0.00 NULL
2023 Department Of Correction Administrative Supervisor Of Building Maintenance 177548.00000 3.550960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.550960e+05 3.550960e+05 0.00 NULL
2023 Department Of Correction Agency Attorney 100571.66071 5.632013e+06 696.81 1.244304e+01 0.000 19.25 56 0.000000e+00 0.00 5.632710e+06 5.632013e+06 696.81 NULL
2023 Department Of Correction Agency Attorney Interne 67077.00000 1.341540e+05 170.75 8.537500e+01 85.375 5.00 2 8.537500e+01 170.75 1.343248e+05 1.343248e+05 0.00 NULL
2023 Department Of Correction Agency Chief Contracting Officer 177113.00000 1.771130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.771130e+05 1.771130e+05 0.00 NULL
2023 Department Of Correction Architect 123399.00000 1.233990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.233990e+05 1.233990e+05 0.00 NULL
2023 Department Of Correction Asbestos Handler Supervisor 84800.00000 1.696000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.696000e+05 1.696000e+05 0.00 NULL
2023 Department Of Correction Assistant Commissioner 153323.55556 2.759824e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.759824e+06 2.759824e+06 0.00 NULL
2023 Department Of Correction Associate Commissioner 193724.28571 1.356070e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.356070e+06 1.356070e+06 0.00 NULL
2023 Department Of Correction Associate Correctional Counselor 70964.86154 4.612716e+06 23680.92 3.643218e+02 0.000 538.75 65 0.000000e+00 0.00 4.636397e+06 4.612716e+06 23680.92 NULL
2023 Department Of Correction Associate Investigator 71646.00368 7.164600e+05 12900.41 1.290041e+03 165.245 261.75 10 1.652450e+02 1652.45 7.293604e+05 7.181125e+05 11247.96 NULL
2023 Department Of Correction Associate Project Manager 100503.50000 4.020140e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.020140e+05 4.020140e+05 0.00 NULL
2023 Department Of Correction Associate Public Health Sanitarian 84578.00000 3.383120e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.383120e+05 3.383120e+05 0.00 NULL
2023 Department Of Correction Associate Staff Analyst 93054.00000 9.305400e+05 32553.08 3.255308e+03 0.000 649.50 10 0.000000e+00 0.00 9.630931e+05 9.305400e+05 32553.08 NULL
2023 Department Of Correction Auto Body Worker 64125.50000 1.282510e+05 63822.43 3.191122e+04 31911.215 1334.75 2 3.191122e+04 63822.43 1.920734e+05 1.920734e+05 0.00 NULL
2023 Department Of Correction Auto Mechanic NA NA 409989.67 2.049948e+04 17240.790 6580.77 20 1.724079e+04 344815.80 NA NA NA NULL
2023 Department Of Correction Automotive Service Worker 38857.50000 3.108600e+05 23092.77 2.886596e+03 679.175 786.75 8 6.791750e+02 5433.40 3.339528e+05 3.162934e+05 17659.37 NULL
2023 Department Of Correction Baker 39765.33333 1.192960e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.192960e+05 1.192960e+05 0.00 NULL
2023 Department Of Correction Bookkeeper 48205.00000 4.820500e+04 438.79 4.387900e+02 438.790 12.00 1 4.387900e+02 438.79 4.864379e+04 4.864379e+04 0.00 NULL
2023 Department Of Correction Bricklayer NA NA 366714.12 4.074601e+04 32509.150 5061.00 9 3.250915e+04 292582.35 NA NA NA NULL
2023 Department Of Correction Captain 114663.24011 8.118157e+07 35643815.32 5.034437e+04 42733.175 391494.66 708 4.273318e+04 30255087.90 1.168254e+08 1.114367e+08 5388727.42 NULL
2023 Department Of Correction Carpenter NA NA 1017688.17 7.269201e+04 71974.690 12748.00 14 7.197469e+04 1007645.66 NA NA NA NULL
2023 Department Of Correction Case Management Nurse 84787.85325 1.695757e+05 21945.97 1.097299e+04 10972.985 272.50 2 1.097299e+04 21945.97 1.915217e+05 1.915217e+05 0.00 NULL
2023 Department Of Correction Cashier 47861.20000 1.196530e+06 294643.75 1.178575e+04 3023.260 8010.00 25 3.023260e+03 75581.50 1.491174e+06 1.272112e+06 219062.25 NULL
2023 Department Of Correction Cement Mason NA NA 52717.60 5.271760e+04 52717.600 548.00 1 5.271760e+04 52717.60 NA NA NA NULL
2023 Department Of Correction Certified It Administrator 101023.28571 7.071630e+05 5204.82 7.435457e+02 29.240 64.50 7 2.924000e+01 204.68 7.123678e+05 7.073677e+05 5000.14 NULL
2023 Department Of Correction Certified It Developer 111424.50000 6.685470e+05 2692.02 4.486700e+02 0.000 36.25 6 0.000000e+00 0.00 6.712390e+05 6.685470e+05 2692.02 NULL
2023 Department Of Correction Chaplain 46841.10208 1.171028e+06 7040.89 2.816356e+02 0.000 192.50 25 0.000000e+00 0.00 1.178068e+06 1.171028e+06 7040.89 NULL
2023 Department Of Correction Chief Of Staff 220000.00000 4.400000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.400000e+05 4.400000e+05 0.00 NULL
2023 Department Of Correction City Laborer NA NA 192578.89 2.751127e+04 24207.810 3498.75 7 2.420781e+04 169454.67 NA NA NA NULL
2023 Department Of Correction City Medical Director 215000.00000 2.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.150000e+05 2.150000e+05 0.00 NULL
2023 Department Of Correction City Medical Specialist 158413.00631 1.900956e+06 906.12 7.551000e+01 0.000 9.00 12 0.000000e+00 0.00 1.901862e+06 1.900956e+06 906.12 NULL
2023 Department Of Correction City Research Scientist 100187.25000 3.205992e+06 7011.99 2.191247e+02 0.000 126.75 32 0.000000e+00 0.00 3.213004e+06 3.205992e+06 7011.99 NULL
2023 Department Of Correction Civil Engineer 104598.00000 1.045980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.045980e+05 1.045980e+05 0.00 NULL
2023 Department Of Correction Clerical Associate 49177.58335 3.344076e+06 189300.36 2.783829e+03 103.685 5046.58 68 1.036850e+02 7050.58 3.533376e+06 3.351126e+06 182249.78 NULL
2023 Department Of Correction College Aide 3412.81818 3.754100e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 3.754100e+04 3.754100e+04 0.00 NULL
2023 Department Of Correction Commissary Manager 42430.50000 8.486100e+04 549.84 2.749200e+02 274.920 22.50 2 2.749200e+02 549.84 8.541084e+04 8.541084e+04 0.00 NULL
2023 Department Of Correction Commissioner 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2023 Department Of Correction Community Assistant 46103.00000 4.610300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.610300e+04 4.610300e+04 0.00 NULL
2023 Department Of Correction Community Associate 45435.00000 3.634800e+05 21422.79 2.677849e+03 58.430 607.75 8 5.843000e+01 467.44 3.849028e+05 3.639474e+05 20955.35 NULL
2023 Department Of Correction Community Coordinator 64778.69615 1.042937e+07 301250.83 1.871123e+03 0.000 6285.00 161 0.000000e+00 0.00 1.073062e+07 1.042937e+07 301250.83 NULL
2023 Department Of Correction Computer Aide-Non-Spvr 58262.50000 1.165250e+05 150.24 7.512000e+01 75.120 0.00 2 7.512000e+01 150.24 1.166752e+05 1.166752e+05 0.00 NULL
2023 Department Of Correction Computer Associate 82675.20000 1.240128e+06 23184.55 1.545637e+03 3.800 430.75 15 3.800000e+00 57.00 1.263313e+06 1.240185e+06 23127.55 NULL
2023 Department Of Correction Computer Operations Manager 155606.75000 6.224270e+05 1102.39 2.755975e+02 0.000 8.50 4 0.000000e+00 0.00 6.235294e+05 6.224270e+05 1102.39 NULL
2023 Department Of Correction Computer Specialist 106972.37500 1.711558e+06 8349.38 5.218362e+02 0.000 103.00 16 0.000000e+00 0.00 1.719907e+06 1.711558e+06 8349.38 NULL
2023 Department Of Correction Computer Systems Manager 132170.48000 3.304262e+06 17147.65 6.859060e+02 0.000 219.50 25 0.000000e+00 0.00 3.321410e+06 3.304262e+06 17147.65 NULL
2023 Department Of Correction Confidential Agency Investigator 114949.75000 3.218593e+06 33951.17 1.212542e+03 0.000 583.75 28 0.000000e+00 0.00 3.252544e+06 3.218593e+06 33951.17 NULL
2023 Department Of Correction Construction Project Manager 108845.00000 2.176900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.176900e+05 2.176900e+05 0.00 NULL
2023 Department Of Correction Correction Administrative Aide 34603.15726 1.730158e+05 2261.84 4.523680e+02 0.000 71.50 5 0.000000e+00 0.00 1.752776e+05 1.730158e+05 2261.84 NULL
2023 Department Of Correction Correction Officer 87082.22523 5.958166e+08 226454039.09 3.309764e+04 29454.805 3275933.80 6842 2.945481e+04 201529775.81 8.222706e+08 7.973464e+08 24924263.28 NULL
2023 Department Of Correction Correctional Standards Review Specialist 74829.75000 3.292509e+06 44235.13 1.005344e+03 0.000 935.25 44 0.000000e+00 0.00 3.336744e+06 3.292509e+06 44235.13 NULL
2023 Department Of Correction Deputy Commissioner 212753.43750 3.404055e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 3.404055e+06 3.404055e+06 0.00 NULL
2023 Department Of Correction Dietary Aide 40586.83333 2.435210e+05 12409.81 2.068302e+03 84.995 395.25 6 8.499500e+01 509.97 2.559308e+05 2.440310e+05 11899.84 NULL
2023 Department Of Correction Dietitian 59397.62500 4.751810e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.751810e+05 4.751810e+05 0.00 NULL
2023 Department Of Correction Director Of Correctional Standards Review 105844.61111 3.810406e+06 468.71 1.301972e+01 0.000 4.00 36 0.000000e+00 0.00 3.810875e+06 3.810406e+06 468.71 NULL
2023 Department Of Correction Director Of Public Affairs 130000.00000 2.600000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.600000e+05 2.600000e+05 0.00 NULL
2023 Department Of Correction Electrical Engineer 106146.00000 1.061460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.061460e+05 1.061460e+05 0.00 NULL
2023 Department Of Correction Electrician NA NA 2360911.28 6.558087e+04 64312.360 25130.25 36 6.431236e+04 2315244.96 NA NA NA NULL
2023 Department Of Correction Electricians Helper NA NA 682288.44 3.248993e+04 35691.910 11412.50 21 3.248993e+04 682288.44 NA NA NA NULL
2023 Department Of Correction Executive Agency Counsel 152838.03571 4.279465e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 4.279465e+06 4.279465e+06 0.00 NULL
2023 Department Of Correction Executive Assistant To The Commissioner 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2023 Department Of Correction Executive Director Of Food Services 145022.00000 1.450220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450220e+05 1.450220e+05 0.00 NULL
2023 Department Of Correction Executive Program Specialist 131515.75000 5.260630e+05 1263.08 3.157700e+02 0.000 0.00 4 0.000000e+00 0.00 5.273261e+05 5.260630e+05 1263.08 NULL
2023 Department Of Correction Exterminator 58605.00000 5.860500e+04 6935.25 6.935250e+03 6935.250 151.75 1 6.935250e+03 6935.25 6.554025e+04 6.554025e+04 0.00 NULL
2023 Department Of Correction Facility Supervisor 201587.00000 8.063480e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.063480e+05 8.063480e+05 0.00 NULL
2023 Department Of Correction Film Manager 71833.00000 2.154990e+05 72.39 2.413000e+01 4.300 2.00 3 4.300000e+00 12.90 2.155714e+05 2.155119e+05 59.49 NULL
2023 Department Of Correction First Deputy Commissioner 220000.00000 2.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.200000e+05 2.200000e+05 0.00 NULL
2023 Department Of Correction Fitness Instructor 23542.91287 1.412575e+05 1338.93 2.231550e+02 22.780 44.50 6 2.278000e+01 136.68 1.425964e+05 1.413942e+05 1202.25 NULL
2023 Department Of Correction Food Service Administrator 85574.75000 3.422990e+05 1873.79 4.684475e+02 370.245 38.00 4 3.702450e+02 1480.98 3.441728e+05 3.437800e+05 392.81 NULL
2023 Department Of Correction Food Service Manager 63185.80000 6.318580e+05 2926.21 2.926210e+02 212.475 77.50 10 2.124750e+02 2124.75 6.347842e+05 6.339828e+05 801.46 NULL
2023 Department Of Correction Fraud Investigator 73300.00000 7.330000e+04 103062.23 1.030622e+05 103062.230 1681.25 1 1.030622e+05 103062.23 1.763622e+05 1.763622e+05 0.00 NULL
2023 Department Of Correction Graphic Artist 83366.50000 1.667330e+05 6863.65 3.431825e+03 3431.825 157.00 2 3.431825e+03 6863.65 1.735966e+05 1.735966e+05 0.00 NULL
2023 Department Of Correction Health Services Manager Non Managerial Level I 110354.00000 1.103540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.103540e+05 1.103540e+05 0.00 NULL
2023 Department Of Correction High Pressure Plant Tender NA NA 267384.38 2.228203e+04 13070.700 4791.00 12 1.307070e+04 156848.40 NA NA NA NULL
2023 Department Of Correction Industrial Hygienist 70422.00000 7.042200e+04 8841.97 8.841970e+03 8841.970 196.25 1 8.841970e+03 8841.97 7.926397e+04 7.926397e+04 0.00 NULL
2023 Department Of Correction Institutional Aide 41773.94444 7.519310e+05 168347.52 9.352640e+03 1060.590 5108.50 18 1.060590e+03 19090.62 9.202785e+05 7.710216e+05 149256.90 NULL
2023 Department Of Correction Investigator 63559.62304 1.023310e+07 295957.90 1.838248e+03 149.830 6285.75 161 1.498300e+02 24122.63 1.052906e+07 1.025722e+07 271835.27 NULL
2023 Department Of Correction It Automation And Monitoring Engineer 77250.00000 1.545000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.545000e+05 1.545000e+05 0.00 NULL
2023 Department Of Correction It Infrastructure Engineer 129084.75000 5.163390e+05 3346.81 8.367025e+02 582.120 38.50 4 5.821200e+02 2328.48 5.196858e+05 5.186675e+05 1018.33 NULL
2023 Department Of Correction It Project Specialist 128750.00000 1.287500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287500e+05 1.287500e+05 0.00 NULL
2023 Department Of Correction It Service Management Specialist 77250.00000 2.317500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.317500e+05 2.317500e+05 0.00 NULL
2023 Department Of Correction Legal Coordinator 58455.56667 1.753667e+06 173584.71 5.786157e+03 2044.620 4083.75 30 2.044620e+03 61338.60 1.927252e+06 1.815006e+06 112246.11 NULL
2023 Department Of Correction Licensed Barber 42398.12500 3.391850e+05 1318.29 1.647862e+02 0.000 54.50 8 0.000000e+00 0.00 3.405033e+05 3.391850e+05 1318.29 NULL
2023 Department Of Correction Locksmith NA NA 212209.56 1.768413e+04 3986.045 4442.50 12 3.986045e+03 47832.54 NA NA NA NULL
2023 Department Of Correction Machinist NA NA 181517.65 4.537941e+04 48576.680 2650.25 4 4.537941e+04 181517.65 NA NA NA NULL
2023 Department Of Correction Maintenance Worker NA NA 599427.92 2.397712e+04 15578.350 13263.68 25 1.557835e+04 389458.75 NA NA NA NULL
2023 Department Of Correction Management Auditor 92543.50000 1.850870e+05 11.82 5.910000e+00 5.910 0.00 2 5.910000e+00 11.82 1.850988e+05 1.850988e+05 0.00 NULL
2023 Department Of Correction Marine Engineer 109106.95390 5.455348e+05 385094.76 7.701895e+04 57510.760 6426.25 5 5.751076e+04 287553.80 9.306295e+05 8.330886e+05 97540.96 NULL
2023 Department Of Correction Marine Oiler 201902.97960 2.019030e+05 140305.09 1.403051e+05 140305.090 2512.00 1 1.403051e+05 140305.09 3.422081e+05 3.422081e+05 0.00 NULL
2023 Department Of Correction Masons Helper NA NA 56230.23 5.623023e+04 56230.230 1062.50 1 5.623023e+04 56230.23 NA NA NA NULL
2023 Department Of Correction Metal Work Mechanic 101007.00000 2.020140e+05 23177.67 1.158883e+04 11588.835 319.25 2 1.158883e+04 23177.67 2.251917e+05 2.251917e+05 0.00 NULL
2023 Department Of Correction Motor Vehicle Operator 53263.58537 2.183807e+06 500804.12 1.221473e+04 6980.390 12121.25 41 6.980390e+03 286195.99 2.684611e+06 2.470003e+06 214608.13 NULL
2023 Department Of Correction Motor Vehicle Supervisor 64592.25000 2.583690e+05 4368.92 1.092230e+03 924.630 97.50 4 9.246300e+02 3698.52 2.627379e+05 2.620675e+05 670.40 NULL
2023 Department Of Correction Office Machine Aide 44993.00000 4.499300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.499300e+04 4.499300e+04 0.00 NULL
2023 Department Of Correction Oiler NA NA 1709114.46 5.179135e+04 53092.730 18804.75 33 5.179135e+04 1709114.46 NA NA NA NULL
2023 Department Of Correction Paralegal Aide 51031.89000 5.103189e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.103189e+04 5.103189e+04 0.00 NULL
2023 Department Of Correction Plasterer NA NA 144267.00 7.213350e+04 72133.500 1806.25 2 7.213350e+04 144267.00 NA NA NA NULL
2023 Department Of Correction Plumber NA NA 1722666.13 4.533332e+04 15769.755 12810.75 38 1.576975e+04 599250.69 NA NA NA NULL
2023 Department Of Correction Plumber’s Helper NA NA 882780.93 3.395311e+04 27905.030 9965.50 26 2.790503e+04 725530.78 NA NA NA NULL
2023 Department Of Correction Principal Administrative Associate - Non Supvr 64189.74069 4.300713e+06 217271.90 3.242864e+03 135.260 5179.50 67 1.352600e+02 9062.42 4.517985e+06 4.309775e+06 208209.48 NULL
2023 Department Of Correction Printing Press Operator NA NA 61460.12 6.146012e+04 61460.120 1041.00 1 6.146012e+04 61460.12 NA NA NA NULL
2023 Department Of Correction Procurement Analyst 66616.12500 1.065858e+06 1102.80 6.892500e+01 0.000 33.50 16 0.000000e+00 0.00 1.066961e+06 1.065858e+06 1102.80 NULL
2023 Department Of Correction Program Specialist Correction 79037.22826 7.271425e+06 1258849.98 1.368315e+04 461.620 20297.25 92 4.616200e+02 42469.04 8.530275e+06 7.313894e+06 1216380.94 NULL
2023 Department Of Correction Project Manager 73694.00000 7.369400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.369400e+04 7.369400e+04 0.00 NULL
2023 Department Of Correction Psychologist 64135.38938 4.489477e+05 13435.37 1.919339e+03 0.000 160.25 7 0.000000e+00 0.00 4.623831e+05 4.489477e+05 13435.37 NULL
2023 Department Of Correction Public Health Assistant 32065.42200 6.413084e+04 27626.14 1.381307e+04 13813.070 1084.00 2 1.381307e+04 27626.14 9.175698e+04 9.175698e+04 0.00 NULL
2023 Department Of Correction Public Health Sanitarian 64753.33333 3.885200e+05 427.94 7.132333e+01 0.000 5.50 6 0.000000e+00 0.00 3.889479e+05 3.885200e+05 427.94 NULL
2023 Department Of Correction Radio Repair Mechanic NA NA 24075.33 2.407533e+04 24075.330 304.50 1 2.407533e+04 24075.33 NA NA NA NULL
2023 Department Of Correction Recreation Director 49837.90000 9.967580e+05 87.79 4.389500e+00 0.000 2.25 20 0.000000e+00 0.00 9.968458e+05 9.967580e+05 87.79 NULL
2023 Department Of Correction Recreation Supervisor 63702.00000 4.459140e+05 69.87 9.981429e+00 0.000 2.00 7 0.000000e+00 0.00 4.459839e+05 4.459140e+05 69.87 NULL
2023 Department Of Correction Roofer NA NA 213093.50 3.044193e+04 36224.860 3830.50 7 3.044193e+04 213093.50 NA NA NA NULL
2023 Department Of Correction Rubber Tire Repairer NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2023 Department Of Correction Secretary To The Commissioner Of Correction 102402.00000 1.024020e+05 32132.33 3.213233e+04 32132.330 502.25 1 3.213233e+04 32132.33 1.345343e+05 1.345343e+05 0.00 NULL
2023 Department Of Correction Senior Baker 46460.25000 1.858410e+05 260.62 6.515500e+01 0.000 10.00 4 0.000000e+00 0.00 1.861016e+05 1.858410e+05 260.62 NULL
2023 Department Of Correction Senior Institutional Trades Instructor 45918.50000 9.183700e+04 77173.61 3.858681e+04 38586.805 2138.50 2 3.858681e+04 77173.61 1.690106e+05 1.690106e+05 0.00 NULL
2023 Department Of Correction Senior Stationary Engineer NA NA 1223108.07 1.359009e+05 131005.030 11826.00 9 1.310050e+05 1179045.27 NA NA NA NULL
2023 Department Of Correction Sheet Metal Worker NA NA 523397.91 7.477113e+04 83978.210 4520.25 7 7.477113e+04 523397.91 NA NA NA NULL
2023 Department Of Correction Social Worker 63280.16667 3.796810e+05 39.64 6.606667e+00 0.000 7.25 6 0.000000e+00 0.00 3.797206e+05 3.796810e+05 39.64 NULL
2023 Department Of Correction Staff Analyst 70275.25375 5.622020e+05 4899.28 6.124100e+02 0.000 172.75 8 0.000000e+00 0.00 5.671013e+05 5.622020e+05 4899.28 NULL
2023 Department Of Correction Staff Nurse 76117.18183 7.611718e+05 33332.18 3.333218e+03 99.965 524.00 10 9.996500e+01 999.65 7.945040e+05 7.621715e+05 32332.53 NULL
2023 Department Of Correction Stationary Engineer NA NA 2054672.04 8.561134e+04 89548.220 22584.25 24 8.561134e+04 2054672.04 NA NA NA NULL
2023 Department Of Correction Statistician 92700.00000 9.270000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.270000e+04 9.270000e+04 0.00 NULL
2023 Department Of Correction Steam Fitter NA NA 997694.87 5.251026e+04 14790.340 6524.75 19 1.479034e+04 281016.46 NA NA NA NULL
2023 Department Of Correction Steam Fitter’s Helper NA NA 293320.11 4.190287e+04 46211.080 2608.50 7 4.190287e+04 293320.11 NA NA NA NULL
2023 Department Of Correction Stock Worker 40048.40000 2.002420e+05 32758.64 6.551728e+03 2496.290 1089.50 5 2.496290e+03 12481.45 2.330006e+05 2.127235e+05 20277.19 NULL
2023 Department Of Correction Summer College Intern 2305.57143 4.841700e+04 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 4.841700e+04 4.841700e+04 0.00 NULL
2023 Department Of Correction Summer Graduate Intern 3574.82143 5.004750e+04 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 5.004750e+04 5.004750e+04 0.00 NULL
2023 Department Of Correction Supervising Computer Service Technician 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Department Of Correction Supervising Housekeeper 51781.00000 1.035620e+05 32703.29 1.635165e+04 16351.645 857.25 2 1.635165e+04 32703.29 1.362653e+05 1.362653e+05 0.00 NULL
2023 Department Of Correction Supervisor Of Electrical Installations & Maintenance 83083.00000 8.308300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.308300e+04 8.308300e+04 0.00 NULL
2023 Department Of Correction Supervisor Of Mechanics NA NA 983223.42 7.023024e+04 81994.400 10282.00 14 7.023024e+04 983223.42 NA NA NA NULL
2023 Department Of Correction Supervisor Of Stock Workers 47598.23529 8.091700e+05 64011.86 3.765404e+03 965.660 1820.25 17 9.656600e+02 16416.22 8.731819e+05 8.255862e+05 47595.64 NULL
2023 Department Of Correction Supervisor Plumber NA NA 168678.45 8.433923e+04 84339.225 1222.00 2 8.433923e+04 168678.45 NA NA NA NULL
2023 Department Of Correction Supervisor Steamfitter NA NA 151386.61 7.569330e+04 75693.305 829.00 2 7.569330e+04 151386.61 NA NA NA NULL
2023 Department Of Correction Telecommunications Associate 97568.00000 1.951360e+05 35424.29 1.771215e+04 17712.145 489.00 2 1.771215e+04 35424.29 2.305603e+05 2.305603e+05 0.00 NULL
2023 Department Of Correction Thermostat Repairer NA NA 927937.27 7.137979e+04 70932.660 7022.25 13 7.093266e+04 922124.58 NA NA NA NULL
2023 Department Of Correction Tractor Operator NA NA 333781.39 1.112605e+05 107372.930 2769.00 3 1.073729e+05 322118.79 NA NA NA NULL
2023 Department Of Correction Warden 211313.60000 3.169704e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 3.169704e+06 3.169704e+06 0.00 NULL
2023 Department Of Correction Warden-Assistant Deputy Warden Ted < 11/1/92 127088.28283 1.258174e+07 7136715.71 7.208804e+04 64650.380 71445.60 99 6.465038e+04 6400387.62 1.971846e+07 1.898213e+07 736328.09 NULL
2023 Department Of Correction Warden-Deputy Warden In Comm Ted < 11/1/92 186178.00000 3.723560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.723560e+05 3.723560e+05 0.00 NULL
2023 Department Of Correction Warden-Deputy Warden Ted < 11/1/92 168935.05000 3.378701e+06 45875.91 2.293796e+03 0.000 499.50 20 0.000000e+00 0.00 3.424577e+06 3.378701e+06 45875.91 NULL
2023 Department Of Correction Welder NA NA 590091.58 5.900916e+04 64416.755 5903.25 10 5.900916e+04 590091.58 NA NA NA NULL
2023 Department Of Correction Worker’s Compensation Benefits Examiner 57951.00000 5.795100e+04 8365.91 8.365910e+03 8365.910 208.25 1 8.365910e+03 8365.91 6.631691e+04 6.631691e+04 0.00 NULL
2023 Department Of Education Admin *Certified Wide Area Network Administrator 135934.50000 2.718690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.718690e+05 2.718690e+05 0.00 NULL
2023 Department Of Education Admin Accountant 70569.70312 4.516461e+06 161839.63 2.528744e+03 3.545 3502.75 64 3.545000e+00 226.88 4.678301e+06 4.516688e+06 161612.75 NULL
2023 Department Of Education Admin Adm Manager-Non-Mgrl 83351.16667 5.001070e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.001070e+05 5.001070e+05 0.00 NULL
2023 Department Of Education Admin Admin Community Relations Specialist 90573.00000 1.811460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.811460e+05 1.811460e+05 0.00 NULL
2023 Department Of Education Admin Admin Contract Specialist 126858.00000 2.537160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.537160e+05 2.537160e+05 0.00 NULL
2023 Department Of Education Admin Administrative Accountant 127400.83333 1.528810e+06 4920.92 4.100767e+02 0.000 184.00 12 0.000000e+00 0.00 1.533731e+06 1.528810e+06 4920.92 NULL
2023 Department Of Education Admin Administrative Assistant To Community Education Council 50151.40000 1.504542e+06 3693.40 1.231133e+02 22.440 165.50 30 2.244000e+01 673.20 1.508235e+06 1.505215e+06 3020.20 NULL
2023 Department Of Education Admin Administrative Community Relations Specialist 109091.00000 1.745456e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.745456e+06 1.745456e+06 0.00 NULL
2023 Department Of Education Admin Administrative Director Of Social Services 103785.88235 1.764360e+06 22.03 1.295882e+00 0.000 0.00 17 0.000000e+00 0.00 1.764382e+06 1.764360e+06 22.03 NULL
2023 Department Of Education Admin Administrative Education Analyst 119564.16905 5.021695e+07 237513.75 5.655089e+02 0.000 3188.25 420 0.000000e+00 0.00 5.045446e+07 5.021695e+07 237513.75 NULL
2023 Department Of Education Admin Administrative Education Officer 116077.83188 5.316365e+07 151728.53 3.312850e+02 0.000 2193.25 458 0.000000e+00 0.00 5.331538e+07 5.316365e+07 151728.53 NULL
2023 Department Of Education Admin Administrative Engineer 133250.00000 1.332500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.332500e+05 1.332500e+05 0.00 NULL
2023 Department Of Education Admin Administrative Graphic Artist 127823.50000 2.556470e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.556470e+05 2.556470e+05 0.00 NULL
2023 Department Of Education Admin Administrative Labor Relations Analyst 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2023 Department Of Education Admin Administrative Management Auditor 108765.00000 7.613550e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.613550e+05 7.613550e+05 0.00 NULL
2023 Department Of Education Admin Administrative Manager 122473.60000 1.224736e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.224736e+06 1.224736e+06 0.00 NULL
2023 Department Of Education Admin Administrative Procurement Analyst 117358.21739 2.699239e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 2.699239e+06 2.699239e+06 0.00 NULL
2023 Department Of Education Admin Administrative Project Manager 101942.00000 1.019420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.019420e+05 1.019420e+05 0.00 NULL
2023 Department Of Education Admin Administrative Public Health Nurse 140974.00000 4.229220e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.229220e+05 4.229220e+05 0.00 NULL
2023 Department Of Education Admin Administrative Public Information Specialist 109429.78571 1.532017e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.532017e+06 1.532017e+06 0.00 NULL
2023 Department Of Education Admin Administrative Quality Assurance Specialist 109304.74359 4.262885e+06 3522.63 9.032385e+01 0.000 93.25 39 0.000000e+00 0.00 4.266408e+06 4.262885e+06 3522.63 NULL
2023 Department Of Education Admin Administrative Retirement Benefits Specialist 141721.76923 1.842383e+06 437.43 3.364846e+01 0.000 9.00 13 0.000000e+00 0.00 1.842820e+06 1.842383e+06 437.43 NULL
2023 Department Of Education Admin Administrative School Food Service Manager 114617.59091 2.521587e+06 5147.99 2.339995e+02 0.000 130.00 22 0.000000e+00 0.00 2.526735e+06 2.521587e+06 5147.99 NULL
2023 Department Of Education Admin Administrative Space Analyst 122907.60000 1.843614e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.843614e+06 1.843614e+06 0.00 NULL
2023 Department Of Education Admin Administrative Staff Analyst 137610.76087 2.532038e+07 4566.12 2.481587e+01 0.000 65.00 184 0.000000e+00 0.00 2.532495e+07 2.532038e+07 4566.12 NULL
2023 Department Of Education Admin Administrative Storekeeper 113201.66667 3.396050e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.396050e+05 3.396050e+05 0.00 NULL
2023 Department Of Education Admin Administrative Supervisor Of Building Maintenance 94396.75000 3.775870e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.775870e+05 3.775870e+05 0.00 NULL
2023 Department Of Education Admin Agency Attorney 106498.33538 2.151266e+07 42.40 2.099010e-01 0.000 1.00 202 0.000000e+00 0.00 2.151271e+07 2.151266e+07 42.40 NULL
2023 Department Of Education Admin Agency Attorney Interne 70042.00000 3.502100e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.502100e+05 3.502100e+05 0.00 NULL
2023 Department Of Education Admin Agency Chief Contracting Officer 210000.00000 2.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.100000e+05 2.100000e+05 0.00 NULL
2023 Department Of Education Admin Area Manager Of School Maintenance 144705.18519 3.907040e+06 40334.13 1.493857e+03 0.000 896.00 27 0.000000e+00 0.00 3.947374e+06 3.907040e+06 40334.13 NULL
2023 Department Of Education Admin Asbestos Handler 85812.28571 6.006860e+05 246150.96 3.516442e+04 32618.730 4009.50 7 3.261873e+04 228331.11 8.468370e+05 8.290171e+05 17819.85 NULL
2023 Department Of Education Admin Assistant Accountant 69107.00000 6.910700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.910700e+04 6.910700e+04 0.00 NULL
2023 Department Of Education Admin Assistant Architect 72244.00000 7.224400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.224400e+04 7.224400e+04 0.00 NULL
2023 Department Of Education Admin Assistant Retirement Benefits Examiner 55823.00000 1.172283e+06 13596.89 6.474710e+02 396.410 616.25 21 3.964100e+02 8324.61 1.185880e+06 1.180608e+06 5272.28 NULL
2023 Department Of Education Admin Associate Education Analyst 105608.46667 3.168254e+06 161861.43 5.395381e+03 0.000 1758.00 30 0.000000e+00 0.00 3.330115e+06 3.168254e+06 161861.43 NULL
2023 Department Of Education Admin Associate Fingerprint Technician 42931.75000 1.717270e+05 4599.06 1.149765e+03 28.100 195.50 4 2.810000e+01 112.40 1.763261e+05 1.718394e+05 4486.66 NULL
2023 Department Of Education Admin Associate Human Rights Specialist 109270.00000 1.092700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.092700e+05 1.092700e+05 0.00 NULL
2023 Department Of Education Admin Associate Investigator 74505.71429 5.215400e+05 14.71 2.101429e+00 0.000 0.00 7 0.000000e+00 0.00 5.215547e+05 5.215400e+05 14.71 NULL
2023 Department Of Education Admin Associate Project Manager 93125.42857 6.518780e+05 5614.04 8.020057e+02 454.860 123.00 7 4.548600e+02 3184.02 6.574920e+05 6.550620e+05 2430.02 NULL
2023 Department Of Education Admin Associate Quality Assurance Specialist 72646.97500 2.905879e+06 103032.70 2.575818e+03 622.695 2281.75 40 6.226950e+02 24907.80 3.008912e+06 2.930787e+06 78124.90 NULL
2023 Department Of Education Admin Associate Retirement Benefits Examiner 74223.47059 3.785397e+06 238462.53 4.675736e+03 761.790 4525.00 51 7.617900e+02 38851.29 4.023860e+06 3.824248e+06 199611.24 NULL
2023 Department Of Education Admin Associate School Food Service Manager 73497.32727 4.042353e+06 232960.95 4.235654e+03 1927.660 4855.00 55 1.927660e+03 106021.30 4.275314e+06 4.148374e+06 126939.65 NULL
2023 Department Of Education Admin Associate Staff Analyst 88792.34783 2.042224e+06 16173.19 7.031822e+02 0.000 325.75 23 0.000000e+00 0.00 2.058397e+06 2.042224e+06 16173.19 NULL
2023 Department Of Education Admin Attorney At Law 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Department Of Education Admin Bookkeeper 56853.96296 3.070114e+06 30755.60 5.695481e+02 0.000 821.00 54 0.000000e+00 0.00 3.100870e+06 3.070114e+06 30755.60 NULL
2023 Department Of Education Admin Bricklayer NA NA 50617.45 2.530872e+04 25308.725 707.75 2 2.530872e+04 50617.45 NA NA NA NULL
2023 Department Of Education Admin Carpenter NA NA 1265775.32 2.876762e+04 25664.830 15542.00 44 2.566483e+04 1129252.52 NA NA NA NULL
2023 Department Of Education Admin Caseworker 49243.66667 1.477310e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.477310e+05 1.477310e+05 0.00 NULL
2023 Department Of Education Admin Certified It Administrator 122451.73864 1.077575e+07 203618.83 2.313850e+03 2.955 2363.00 88 2.955000e+00 260.04 1.097937e+07 1.077601e+07 203358.79 NULL
2023 Department Of Education Admin Certified It Developer 131250.94203 9.056315e+06 79383.05 1.150479e+03 0.000 869.25 69 0.000000e+00 0.00 9.135698e+06 9.056315e+06 79383.05 NULL
2023 Department Of Education Admin Chief Administrator Of Impartial Hearings 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2023 Department Of Education Admin Chief Diversity Officer Ýdoe¨ 222972.00000 2.229720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.229720e+05 2.229720e+05 0.00 NULL
2023 Department Of Education Admin Chief Of Staff To The Deputy Chancellor Ýdoe¨ 148207.50000 2.964150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.964150e+05 2.964150e+05 0.00 NULL
2023 Department Of Education Admin Chief Of Student Pathways Ýdoe¨ 222972.00000 2.229720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.229720e+05 2.229720e+05 0.00 NULL
2023 Department Of Education Admin Chief School Business Executive 218910.00000 4.378200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.378200e+05 4.378200e+05 0.00 NULL
2023 Department Of Education Admin Chief Strategy Officer Ýdoe¨ 213000.00000 2.130000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.130000e+05 2.130000e+05 0.00 NULL
2023 Department Of Education Admin Chief Strategy Officer/Division Ýdoe¨ 179666.66667 5.390000e+05 8.43 2.810000e+00 0.000 0.00 3 0.000000e+00 0.00 5.390084e+05 5.390000e+05 8.43 NULL
2023 Department Of Education Admin City Dentist 38878.56000 3.887856e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.887856e+04 3.887856e+04 0.00 NULL
2023 Department Of Education Admin City Elevator Operator 41738.66667 1.252160e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.252160e+05 1.252160e+05 0.00 NULL
2023 Department Of Education Admin City Laborer NA NA 65345.49 5.026576e+03 792.970 1211.75 13 7.929700e+02 10308.61 NA NA NA NULL
2023 Department Of Education Admin City Medical Specialist 122854.83873 1.474258e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.474258e+06 1.474258e+06 0.00 NULL
2023 Department Of Education Admin City Planner 106451.00000 1.064510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.064510e+05 1.064510e+05 0.00 NULL
2023 Department Of Education Admin City Research Scientist 103259.44444 9.293350e+05 6685.30 7.428111e+02 0.000 94.75 9 0.000000e+00 0.00 9.360203e+05 9.293350e+05 6685.30 NULL
2023 Department Of Education Admin Civil Engineer 127303.00000 1.273030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.273030e+05 1.273030e+05 0.00 NULL
2023 Department Of Education Admin Clerical Aide 35422.99125 2.833839e+05 10.14 1.267500e+00 0.000 0.50 8 0.000000e+00 0.00 2.833941e+05 2.833839e+05 10.14 NULL
2023 Department Of Education Admin Clerical Associate 51255.35950 1.240380e+07 114823.90 4.744789e+02 0.000 3282.50 242 0.000000e+00 0.00 1.251862e+07 1.240380e+07 114823.90 NULL
2023 Department Of Education Admin Community Assistant 39690.17647 9.446262e+06 124507.08 5.231390e+02 16.850 4022.25 238 1.685000e+01 4010.30 9.570769e+06 9.450272e+06 120496.78 NULL
2023 Department Of Education Admin Community Associate 51484.03426 1.382346e+08 2831471.37 1.054552e+03 172.330 69883.75 2685 1.723300e+02 462706.05 1.410661e+08 1.386973e+08 2368765.32 NULL
2023 Department Of Education Admin Community Coordinator 71552.41950 1.093321e+08 1768815.70 1.157602e+03 22.530 33551.50 1528 2.253000e+01 34425.84 1.111009e+08 1.093665e+08 1734389.86 NULL
2023 Department Of Education Admin Computer Aide-Non-Spvr 60251.40000 3.012570e+05 2983.49 5.966980e+02 9.650 55.50 5 9.650000e+00 48.25 3.042405e+05 3.013052e+05 2935.24 NULL
2023 Department Of Education Admin Computer Associate 81500.48387 7.579545e+06 62517.72 6.722335e+02 0.000 1428.00 93 0.000000e+00 0.00 7.642063e+06 7.579545e+06 62517.72 NULL
2023 Department Of Education Admin Computer Operations Manager 152500.00000 3.050000e+05 111.22 5.561000e+01 55.610 0.00 2 5.561000e+01 111.22 3.051112e+05 3.051112e+05 0.00 NULL
2023 Department Of Education Admin Computer Programmer Analyst 70847.00000 3.542350e+05 283.48 5.669600e+01 0.000 5.00 5 0.000000e+00 0.00 3.545185e+05 3.542350e+05 283.48 NULL
2023 Department Of Education Admin Computer Service Technician 62975.60465 2.707951e+06 120383.99 2.799628e+03 0.780 2164.75 43 7.800000e-01 33.54 2.828335e+06 2.707985e+06 120350.45 NULL
2023 Department Of Education Admin Computer Specialist 120279.52604 2.309367e+07 142988.88 7.447337e+02 0.000 1816.50 192 0.000000e+00 0.00 2.323666e+07 2.309367e+07 142988.88 NULL
2023 Department Of Education Admin Computer Systems Manager 146517.17886 1.802161e+07 537.63 4.370976e+00 0.000 0.00 123 0.000000e+00 0.00 1.802215e+07 1.802161e+07 537.63 NULL
2023 Department Of Education Admin Confidential Investigator 74078.98837 6.370793e+06 11155.26 1.297123e+02 0.000 271.00 86 0.000000e+00 0.00 6.381948e+06 6.370793e+06 11155.26 NULL
2023 Department Of Education Admin Confidential Strategy Planner 96558.40000 9.655840e+05 346.55 3.465500e+01 0.000 5.50 10 0.000000e+00 0.00 9.659306e+05 9.655840e+05 346.55 NULL
2023 Department Of Education Admin Construction Laborer NA NA 113305.54 7.553703e+03 4851.390 1721.25 15 4.851390e+03 72770.85 NA NA NA NULL
2023 Department Of Education Admin Construction Project Manager 89909.46667 1.348642e+06 150001.26 1.000008e+04 4183.650 2528.50 15 4.183650e+03 62754.75 1.498643e+06 1.411397e+06 87246.51 NULL
2023 Department Of Education Admin Consultant 88306.33333 5.298380e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.298380e+05 5.298380e+05 0.00 NULL
2023 Department Of Education Admin Contract Specialist 64920.06667 9.738010e+05 2009.27 1.339513e+02 0.000 63.00 15 0.000000e+00 0.00 9.758103e+05 9.738010e+05 2009.27 NULL
2023 Department Of Education Admin Counsel To The Chancellor 220000.00000 2.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.200000e+05 2.200000e+05 0.00 NULL
2023 Department Of Education Admin Customer Information Representative Ma L 1549 63548.19580 1.817478e+07 331100.36 1.157694e+03 0.225 6596.50 286 2.250000e-01 64.35 1.850588e+07 1.817485e+07 331036.01 NULL
2023 Department Of Education Admin Deputy Auditor General 133514.00000 1.335140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.335140e+05 1.335140e+05 0.00 NULL
2023 Department Of Education Admin Deputy Chancellor Financial Affairs 241000.00000 2.410000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.410000e+05 2.410000e+05 0.00 NULL
2023 Department Of Education Admin Deputy Chief Of Staff To The Chancellor Ýdoe¨ 160000.00000 3.200000e+05 1.57 7.850000e-01 0.785 0.00 2 7.850000e-01 1.57 3.200016e+05 3.200016e+05 0.00 NULL
2023 Department Of Education Admin Deputy Chief Strategy Officer Ýdoe¨ 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2023 Department Of Education Admin Deputy Executive Director 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2023 Department Of Education Admin Deputy Executive Director Of Financial Operations 140864.00000 1.408640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.408640e+05 1.408640e+05 0.00 NULL
2023 Department Of Education Admin Deputy Inspector General 145248.50000 5.809940e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.809940e+05 5.809940e+05 0.00 NULL
2023 Department Of Education Admin Director 177477.00000 3.549540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.549540e+05 3.549540e+05 0.00 NULL
2023 Department Of Education Admin Director Of Audit And Investigation 168172.00000 1.681720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.681720e+05 1.681720e+05 0.00 NULL
2023 Department Of Education Admin Director Of Equal Opportunity 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2023 Department Of Education Admin Director Of Headstart Program 129014.00000 1.290140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.290140e+05 1.290140e+05 0.00 NULL
2023 Department Of Education Admin Director Of Parent Involvement 194324.00000 5.829720e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.829720e+05 5.829720e+05 0.00 NULL
2023 Department Of Education Admin Director Of School Safety 233142.00000 2.331420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.331420e+05 2.331420e+05 0.00 NULL
2023 Department Of Education Admin District Manager Of Administration And Business Affairs 95935.44444 1.726838e+06 9791.39 5.439661e+02 5.165 175.00 18 5.165000e+00 92.97 1.736629e+06 1.726931e+06 9698.42 NULL
2023 Department Of Education Admin Education Analyst 79971.00000 3.678666e+06 7466.77 1.623211e+02 0.000 212.75 46 0.000000e+00 0.00 3.686133e+06 3.678666e+06 7466.77 NULL
2023 Department Of Education Admin Education Analyst Trainee 45120.22235 7.670438e+05 997.14 5.865529e+01 0.000 37.00 17 0.000000e+00 0.00 7.680409e+05 7.670438e+05 997.14 NULL
2023 Department Of Education Admin Education Officer 90709.18519 1.714404e+07 53931.88 2.853539e+02 0.000 838.50 189 0.000000e+00 0.00 1.719797e+07 1.714404e+07 53931.88 NULL
2023 Department Of Education Admin Educational Management Associate 157892.63636 3.473638e+06 1510.62 6.866455e+01 0.000 23.00 22 0.000000e+00 0.00 3.475149e+06 3.473638e+06 1510.62 NULL
2023 Department Of Education Admin Electrician NA NA 1533761.10 2.222842e+04 15845.760 16261.25 69 1.584576e+04 1093357.44 NA NA NA NULL
2023 Department Of Education Admin Elevator Mechanic NA NA 37053.60 1.235120e+04 14580.210 413.00 3 1.235120e+04 37053.60 NA NA NA NULL
2023 Department Of Education Admin Equal Rights Compliance Specialist 80139.26316 1.522646e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.522646e+06 1.522646e+06 0.00 NULL
2023 Department Of Education Admin Executive Agency Counsel 140996.04348 9.728727e+06 0.00 0.000000e+00 0.000 0.00 69 0.000000e+00 0.00 9.728727e+06 9.728727e+06 0.00 NULL
2023 Department Of Education Admin Executive Director 229189.00000 6.875670e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.875670e+05 6.875670e+05 0.00 NULL
2023 Department Of Education Admin Executive Program Specialist 230000.00000 4.600000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.600000e+05 4.600000e+05 0.00 NULL
2023 Department Of Education Admin Exterminator 57986.91667 6.958430e+05 11496.90 9.580750e+02 226.770 346.00 12 2.267700e+02 2721.24 7.073399e+05 6.985642e+05 8775.66 NULL
2023 Department Of Education Admin Glazier NA NA 63371.90 1.584298e+04 10577.550 678.50 4 1.057755e+04 42310.20 NA NA NA NULL
2023 Department Of Education Admin Graphic Artist 86655.00000 8.665500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.665500e+04 8.665500e+04 0.00 NULL
2023 Department Of Education Admin Health Services Manager 121846.00000 1.218460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.218460e+05 1.218460e+05 0.00 NULL
2023 Department Of Education Admin Industrial Hygienist 77578.00000 7.757800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.757800e+04 7.757800e+04 0.00 NULL
2023 Department Of Education Admin Interpreter/Translator 64094.67742 1.986935e+06 1364.87 4.402806e+01 0.000 42.75 31 0.000000e+00 0.00 1.988300e+06 1.986935e+06 1364.87 NULL
2023 Department Of Education Admin Investigator Empl Disc 68898.38710 2.135850e+06 12611.55 4.068242e+02 0.000 275.00 31 0.000000e+00 0.00 2.148462e+06 2.135850e+06 12611.55 NULL
2023 Department Of Education Admin Investment Analyst 88060.33333 2.641810e+05 55.69 1.856333e+01 0.000 0.00 3 0.000000e+00 0.00 2.642367e+05 2.641810e+05 55.69 NULL
2023 Department Of Education Admin It Automation And Monitoring Engineer 122004.00000 2.440080e+05 48.62 2.431000e+01 24.310 0.75 2 2.431000e+01 48.62 2.440566e+05 2.440566e+05 0.00 NULL
2023 Department Of Education Admin It Infrastructure Engineer 137137.40000 6.856870e+05 47441.46 9.488292e+03 0.000 371.50 5 0.000000e+00 0.00 7.331285e+05 6.856870e+05 47441.46 NULL
2023 Department Of Education Admin It Project Specialist 135599.50000 2.711990e+05 3974.60 1.987300e+03 1987.300 35.25 2 1.987300e+03 3974.60 2.751736e+05 2.751736e+05 0.00 NULL
2023 Department Of Education Admin It Security Specialist 128026.25000 1.024210e+06 11704.77 1.463096e+03 0.000 103.25 8 0.000000e+00 0.00 1.035915e+06 1.024210e+06 11704.77 NULL
2023 Department Of Education Admin It Service Management Specialist 122857.00000 3.685710e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.685710e+05 3.685710e+05 0.00 NULL
2023 Department Of Education Admin Legal Secretarial Assistant 48030.00000 4.803000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.803000e+04 4.803000e+04 0.00 NULL
2023 Department Of Education Admin Locksmith NA NA 2127.33 7.091100e+02 286.830 44.50 3 2.868300e+02 860.49 NA NA NA NULL
2023 Department Of Education Admin Machinist NA NA 684079.70 2.280266e+04 19123.125 10759.00 30 1.912312e+04 573693.75 NA NA NA NULL
2023 Department Of Education Admin Machinist’s Helper NA NA 56037.59 1.867920e+04 20465.280 959.50 3 1.867920e+04 56037.59 NA NA NA NULL
2023 Department Of Education Admin Maintenance Worker NA NA 2313.63 7.712100e+02 747.840 49.50 3 7.478400e+02 2243.52 NA NA NA NULL
2023 Department Of Education Admin Management Auditor 76654.21053 1.456430e+06 8163.38 4.296516e+02 0.000 172.00 19 0.000000e+00 0.00 1.464593e+06 1.456430e+06 8163.38 NULL
2023 Department Of Education Admin Mechanical Engineering Intern 62726.00000 6.272600e+04 405.21 4.052100e+02 405.210 5.50 1 4.052100e+02 405.21 6.313121e+04 6.313121e+04 0.00 NULL
2023 Department Of Education Admin Media Services Technician 65672.00000 1.313440e+05 5864.81 2.932405e+03 2932.405 117.75 2 2.932405e+03 5864.81 1.372088e+05 1.372088e+05 0.00 NULL
2023 Department Of Education Admin Mental Health Worker 47401.00000 4.740100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.740100e+04 4.740100e+04 0.00 NULL
2023 Department Of Education Admin Motor Vehicle Operator 53152.63636 5.846790e+05 96579.89 8.779990e+03 6246.440 2565.00 11 6.246440e+03 68710.84 6.812589e+05 6.533898e+05 27869.05 NULL
2023 Department Of Education Admin New York City Public Service Fellow 44238.50000 1.769540e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.769540e+05 1.769540e+05 0.00 NULL
2023 Department Of Education Admin Occupational Therapist 60655.62204 1.976767e+08 3114679.23 9.557162e+02 0.000 39934.58 3259 0.000000e+00 0.00 2.007914e+08 1.976767e+08 3114679.23 NULL
2023 Department Of Education Admin Office Machine Aide 49814.00000 1.494420e+05 4.96 1.653333e+00 0.000 0.00 3 0.000000e+00 0.00 1.494470e+05 1.494420e+05 4.96 NULL
2023 Department Of Education Admin Painter NA NA 52956.62 1.059132e+04 980.220 758.75 5 9.802200e+02 4901.10 NA NA NA NULL
2023 Department Of Education Admin Physical Therapist 59565.53793 6.724949e+07 1282234.15 1.135726e+03 0.000 15305.58 1129 0.000000e+00 0.00 6.853173e+07 6.724949e+07 1282234.15 NULL
2023 Department Of Education Admin Plasterer NA NA 125936.47 1.259365e+04 8036.955 1588.25 10 8.036955e+03 80369.55 NA NA NA NULL
2023 Department Of Education Admin Plumber NA NA 840597.95 1.616535e+04 8389.160 6815.50 52 8.389160e+03 436236.32 NA NA NA NULL
2023 Department Of Education Admin Policy Advisor To The Chancellor Ýdoe¨ 133666.66667 4.010000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.010000e+05 4.010000e+05 0.00 NULL
2023 Department Of Education Admin Press Secretary Ýdoe¨ 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2023 Department Of Education Admin Principal Administrative Associate - Non Supvr 64906.41038 1.376016e+07 219058.39 1.033294e+03 0.000 5011.00 212 0.000000e+00 0.00 1.397922e+07 1.376016e+07 219058.39 NULL
2023 Department Of Education Admin Principal School-Neighborhood Worker 61313.00000 6.131300e+04 465.73 4.657300e+02 465.730 9.00 1 4.657300e+02 465.73 6.177873e+04 6.177873e+04 0.00 NULL
2023 Department Of Education Admin Procurement Analyst 73537.74603 4.632878e+06 95539.71 1.516503e+03 0.000 2151.00 63 0.000000e+00 0.00 4.728418e+06 4.632878e+06 95539.71 NULL
2023 Department Of Education Admin Program Producer 92747.00000 9.274700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.274700e+04 9.274700e+04 0.00 NULL
2023 Department Of Education Admin Public Records Aide 52445.80000 2.622290e+05 437.95 8.759000e+01 5.820 26.25 5 5.820000e+00 29.10 2.626670e+05 2.622581e+05 408.85 NULL
2023 Department Of Education Admin Quality Assurance Specialist 62304.62069 1.806834e+06 57450.73 1.981060e+03 70.450 1365.75 29 7.045000e+01 2043.05 1.864285e+06 1.808877e+06 55407.68 NULL
2023 Department Of Education Admin Quality Assurance Specialist Trainee 38676.66667 4.641200e+05 7266.02 6.055017e+02 4.950 351.75 12 4.950000e+00 59.40 4.713860e+05 4.641794e+05 7206.62 NULL
2023 Department Of Education Admin Radio Repair Mechanic NA NA 201102.16 1.675851e+04 19450.025 2543.50 12 1.675851e+04 201102.16 NA NA NA NULL
2023 Department Of Education Admin Research Assistant 63076.61538 8.199960e+05 13377.00 1.029000e+03 0.000 337.25 13 0.000000e+00 0.00 8.333730e+05 8.199960e+05 13377.00 NULL
2023 Department Of Education Admin Roofer NA NA 8445.31 7.677555e+02 114.130 157.00 11 1.141300e+02 1255.43 NA NA NA NULL
2023 Department Of Education Admin School Business Manager 86684.41844 1.222250e+07 577381.04 4.094901e+03 0.000 9281.00 141 0.000000e+00 0.00 1.279988e+07 1.222250e+07 577381.04 NULL
2023 Department Of Education Admin School Computer Technology Specialist 64597.56114 1.802272e+07 608724.73 2.181809e+03 6.090 11909.50 279 6.090000e+00 1699.11 1.863144e+07 1.802442e+07 607025.62 NULL
2023 Department Of Education Admin School Equipment Maintainer 41288.00000 4.128800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.128800e+04 4.128800e+04 0.00 NULL
2023 Department Of Education Admin School Food Service Manager 55100.91479 2.198526e+07 425124.59 1.065475e+03 299.050 13000.00 399 2.990500e+02 119320.95 2.241039e+07 2.210459e+07 305803.64 NULL
2023 Department Of Education Admin School Lunch Aide 37665.57464 3.178974e+07 575768.15 6.821898e+02 36.525 25386.00 844 3.652500e+01 30827.10 3.236551e+07 3.182057e+07 544941.05 NULL
2023 Department Of Education Admin School Lunch Assistant 45111.13333 4.060002e+06 42384.82 4.709424e+02 6.975 1652.25 90 6.975000e+00 627.75 4.102387e+06 4.060630e+06 41757.07 NULL
2023 Department Of Education Admin School Lunch Assistant Cook 44805.51456 4.614968e+06 95716.80 9.292893e+02 122.970 3774.75 103 1.229700e+02 12665.91 4.710685e+06 4.627634e+06 83050.89 NULL
2023 Department Of Education Admin School Lunch Loader And Handler 57539.60714 1.611109e+06 260066.73 9.288097e+03 8704.720 6254.50 28 8.704720e+03 243732.16 1.871176e+06 1.854841e+06 16334.57 NULL
2023 Department Of Education Admin School Plant Manager 134171.83784 4.964358e+06 9654.80 2.609405e+02 0.000 182.50 37 0.000000e+00 0.00 4.974013e+06 4.964358e+06 9654.80 NULL
2023 Department Of Education Admin School-Neighborhood Worker 45438.25000 1.817530e+05 355.19 8.879750e+01 0.000 10.50 4 0.000000e+00 0.00 1.821082e+05 1.817530e+05 355.19 NULL
2023 Department Of Education Admin Secretary 52998.26000 2.649913e+06 13545.06 2.709012e+02 0.000 365.50 50 0.000000e+00 0.00 2.663458e+06 2.649913e+06 13545.06 NULL
2023 Department Of Education Admin Secretary To Community School Board 49357.00000 4.935700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.935700e+04 4.935700e+04 0.00 NULL
2023 Department Of Education Admin Secretary To The Chancellor 82685.00000 8.268500e+04 33.94 3.394000e+01 33.940 0.75 1 3.394000e+01 33.94 8.271894e+04 8.271894e+04 0.00 NULL
2023 Department Of Education Admin Secretary To The Deputy Chancellor 104106.33333 6.246380e+05 662.73 1.104550e+02 0.000 10.75 6 0.000000e+00 0.00 6.253007e+05 6.246380e+05 662.73 NULL
2023 Department Of Education Admin Secretary To The Special Commissioner Of Investigation-Nyc 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2023 Department Of Education Admin Senior Executive Director Of Intergovernmental Affairs Ýdoe¨ 215000.00000 2.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.150000e+05 2.150000e+05 0.00 NULL
2023 Department Of Education Admin Senior It Architect 150020.57143 1.050144e+06 437.68 6.252571e+01 0.000 0.00 7 0.000000e+00 0.00 1.050582e+06 1.050144e+06 437.68 NULL
2023 Department Of Education Admin Senior School Lunch Aide 41086.31845 1.380500e+07 248917.64 7.408263e+02 72.150 10131.75 336 7.215000e+01 24242.40 1.405392e+07 1.382925e+07 224675.24 NULL
2023 Department Of Education Admin Senior School-Neighborhood Worker 57640.00000 1.729200e+05 5765.82 1.921940e+03 567.320 139.50 3 5.673200e+02 1701.96 1.786858e+05 1.746220e+05 4063.86 NULL
2023 Department Of Education Admin Service Inspector 52237.00000 1.044740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.044740e+05 1.044740e+05 0.00 NULL
2023 Department Of Education Admin Sign Language Interpreter 95846.87318 2.108631e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 2.108631e+06 2.108631e+06 0.00 NULL
2023 Department Of Education Admin Special Assistant 152134.40000 7.606720e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.606720e+05 7.606720e+05 0.00 NULL
2023 Department Of Education Admin Special Assistant To Member Of The Board Of Education 153199.00000 7.659950e+05 258.42 5.168400e+01 0.000 0.00 5 0.000000e+00 0.00 7.662534e+05 7.659950e+05 258.42 NULL
2023 Department Of Education Admin Special Assistant To The Chancellor 142902.50000 1.143220e+06 94.51 1.181375e+01 0.000 0.00 8 0.000000e+00 0.00 1.143315e+06 1.143220e+06 94.51 NULL
2023 Department Of Education Admin Special Commissioner Of Investigation-Nyc School District 229836.00000 2.298360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.298360e+05 2.298360e+05 0.00 NULL
2023 Department Of Education Admin Special Officer 41477.78571 1.742067e+06 183490.59 4.368824e+03 2266.395 5740.75 42 2.266395e+03 95188.59 1.925558e+06 1.837256e+06 88302.00 NULL
2023 Department Of Education Admin Staff Analyst 74053.00000 9.626890e+05 21318.49 1.639884e+03 92.520 442.75 13 9.252000e+01 1202.76 9.840075e+05 9.638918e+05 20115.73 NULL
2023 Department Of Education Admin Staff Audiologist 74427.22222 6.698450e+05 1930.01 2.144456e+02 0.000 30.00 9 0.000000e+00 0.00 6.717750e+05 6.698450e+05 1930.01 NULL
2023 Department Of Education Admin Staff Nurse 53947.77938 5.928861e+07 7499229.36 6.823685e+03 946.880 91359.00 1099 9.468800e+02 1040621.12 6.678784e+07 6.032923e+07 6458608.24 NULL
2023 Department Of Education Admin Steam Fitter NA NA 2049390.15 3.595421e+04 29487.230 16539.75 57 2.948723e+04 1680772.11 NA NA NA NULL
2023 Department Of Education Admin Steam Fitter’s Helper NA NA 148438.81 3.710970e+04 28322.445 1310.75 4 2.832244e+04 113289.78 NA NA NA NULL
2023 Department Of Education Admin Stock Worker 35839.70042 2.150382e+05 480.04 8.000667e+01 22.650 28.00 6 2.265000e+01 135.90 2.155182e+05 2.151741e+05 344.14 NULL
2023 Department Of Education Admin Strategi Initiative Specialist 94573.00000 1.891460e+05 291.11 1.455550e+02 145.555 11.50 2 1.455550e+02 291.11 1.894371e+05 1.894371e+05 0.00 NULL
2023 Department Of Education Admin Strategic Initiative Specialist 130760.83333 7.845650e+05 1720.28 2.867133e+02 0.000 29.00 6 0.000000e+00 0.00 7.862853e+05 7.845650e+05 1720.28 NULL
2023 Department Of Education Admin Substance Abuse Prevention & Intervention Specialist 66035.01187 2.443295e+07 51143.52 1.382257e+02 0.000 1230.75 370 0.000000e+00 0.00 2.448410e+07 2.443295e+07 51143.52 NULL
2023 Department Of Education Admin Summer College Intern 2371.65833 7.114975e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.114975e+03 7.114975e+03 0.00 NULL
2023 Department Of Education Admin Summer Graduate Intern 3062.68000 1.531340e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.531340e+04 1.531340e+04 0.00 NULL
2023 Department Of Education Admin Supervising Computer Service Technician 83906.42406 2.685006e+06 101599.73 3.174992e+03 5.160 1589.25 32 5.160000e+00 165.12 2.786605e+06 2.685171e+06 101434.61 NULL
2023 Department Of Education Admin Supervising Therapist 53804.75201 4.358185e+06 656116.23 8.100200e+03 845.010 5526.75 81 8.450100e+02 68445.81 5.014301e+06 4.426631e+06 587670.42 NULL
2023 Department Of Education Admin Supervisor 85780.66667 2.573420e+05 457.41 1.524700e+02 0.000 1.50 3 0.000000e+00 0.00 2.577994e+05 2.573420e+05 457.41 NULL
2023 Department Of Education Admin Supervisor Carpenter NA NA 87898.00 2.929933e+04 42003.600 1066.00 3 2.929933e+04 87898.00 NA NA NA NULL
2023 Department Of Education Admin Supervisor Electrician NA NA 116531.18 1.942186e+04 17987.410 1150.50 6 1.798741e+04 107924.46 NA NA NA NULL
2023 Department Of Education Admin Supervisor Elevator Mechanic NA NA 34301.18 3.430118e+04 34301.180 361.50 1 3.430118e+04 34301.18 NA NA NA NULL
2023 Department Of Education Admin Supervisor I 65964.33333 1.978930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.978930e+05 1.978930e+05 0.00 NULL
2023 Department Of Education Admin Supervisor I Social Work 69707.00000 1.394140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.394140e+05 1.394140e+05 0.00 NULL
2023 Department Of Education Admin Supervisor Ii 75772.00000 1.515440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.515440e+05 1.515440e+05 0.00 NULL
2023 Department Of Education Admin Supervisor Of Electrical Installations & Maintenance 88590.50000 1.594629e+06 112967.79 6.275988e+03 2274.225 1895.25 18 2.274225e+03 40936.05 1.707597e+06 1.635565e+06 72031.74 NULL
2023 Department Of Education Admin Supervisor Of Mechanical Installations & Maintenance 86926.69231 1.130047e+06 86294.22 6.638017e+03 6407.080 1549.75 13 6.407080e+03 83292.04 1.216341e+06 1.213339e+06 3002.18 NULL
2023 Department Of Education Admin Supervisor Of Mechanics NA NA 404356.63 2.246426e+04 8228.160 4263.25 18 8.228160e+03 148106.88 NA NA NA NULL
2023 Department Of Education Admin Supervisor Of Nurses 64401.23207 1.867636e+06 64999.31 2.241356e+03 0.000 540.00 29 0.000000e+00 0.00 1.932635e+06 1.867636e+06 64999.31 NULL
2023 Department Of Education Admin Supervisor Of Office Machine Operations 47023.00000 9.404600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.404600e+04 9.404600e+04 0.00 NULL
2023 Department Of Education Admin Supervisor Of Stock Workers 68145.00000 1.362900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.362900e+05 1.362900e+05 0.00 NULL
2023 Department Of Education Admin Supervisor Painter NA NA 363.18 1.815900e+02 181.590 0.00 2 1.815900e+02 363.18 NA NA NA NULL
2023 Department Of Education Admin Supervisor Plasterer NA NA 6391.95 6.391950e+03 6391.950 82.00 1 6.391950e+03 6391.95 NA NA NA NULL
2023 Department Of Education Admin Supervisor Plumber NA NA 185817.95 3.096966e+04 30875.885 1435.00 6 3.087588e+04 185255.31 NA NA NA NULL
2023 Department Of Education Admin Supervisor Roofer NA NA 2071.10 1.035550e+03 1035.550 38.50 2 1.035550e+03 2071.10 NA NA NA NULL
2023 Department Of Education Admin Supervisor Steamfitter NA NA 108908.52 2.178170e+04 1673.870 643.00 5 1.673870e+03 8369.35 NA NA NA NULL
2023 Department Of Education Admin Telecommunication Manager 132789.50000 2.655790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.655790e+05 2.655790e+05 0.00 NULL
2023 Department Of Education Admin Telecommunications Associate 89387.92000 2.234698e+06 33073.79 1.322952e+03 5.410 473.00 25 5.410000e+00 135.25 2.267772e+06 2.234833e+06 32938.54 NULL
2023 Department Of Education Admin Thermostat Repairer NA NA 150466.28 1.671848e+04 453.570 1179.00 9 4.535700e+02 4082.13 NA NA NA NULL
2023 Department Of Finance *Attorney At Law 106858.87500 8.548710e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.548710e+05 8.548710e+05 0.00 NULL
2023 Department Of Finance *Senior Estimator 80259.00000 8.025900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.025900e+04 8.025900e+04 0.00 NULL
2023 Department Of Finance Accountant 79771.50000 1.116801e+06 836.52 5.975143e+01 0.000 15.00 14 0.000000e+00 0.00 1.117638e+06 1.116801e+06 836.52 NULL
2023 Department Of Finance Adm Manager-Non-Mgrl 87012.20270 6.438903e+06 201684.41 2.725465e+03 0.000 3709.00 74 0.000000e+00 0.00 6.640587e+06 6.438903e+06 201684.41 NULL
2023 Department Of Finance Admin Community Relations Specialist 116500.00000 2.330000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.330000e+05 2.330000e+05 0.00 NULL
2023 Department Of Finance Admin Contract Specialist 111115.75000 4.444630e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.444630e+05 4.444630e+05 0.00 NULL
2023 Department Of Finance Administrative Accountant 102607.66667 1.231292e+06 3359.28 2.799400e+02 0.000 58.50 12 0.000000e+00 0.00 1.234651e+06 1.231292e+06 3359.28 NULL
2023 Department Of Finance Administrative Actuary 144200.00000 1.442000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.442000e+05 1.442000e+05 0.00 NULL
2023 Department Of Finance Administrative Architect 97630.00000 9.763000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.763000e+04 9.763000e+04 0.00 NULL
2023 Department Of Finance Administrative Assessor 161800.00000 6.472000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.472000e+05 6.472000e+05 0.00 NULL
2023 Department Of Finance Administrative City Planner 148126.40000 7.406320e+05 277.05 5.541000e+01 0.000 0.00 5 0.000000e+00 0.00 7.409091e+05 7.406320e+05 277.05 NULL
2023 Department Of Finance Administrative Deputy Register 111245.50000 2.224910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.224910e+05 2.224910e+05 0.00 NULL
2023 Department Of Finance Administrative Investigator 128911.66667 3.867350e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.867350e+05 3.867350e+05 0.00 NULL
2023 Department Of Finance Administrative Labor Relations Analyst 126899.83333 7.613990e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.613990e+05 7.613990e+05 0.00 NULL
2023 Department Of Finance Administrative Management Auditor 123046.42857 8.613250e+05 9954.70 1.422100e+03 0.000 145.50 7 0.000000e+00 0.00 8.712797e+05 8.613250e+05 9954.70 NULL
2023 Department Of Finance Administrative Manager 126037.75000 5.041510e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.041510e+05 5.041510e+05 0.00 NULL
2023 Department Of Finance Administrative Procurement Analyst-Non-Mgrl 109411.33333 9.847020e+05 2374.08 2.637867e+02 0.000 38.25 9 0.000000e+00 0.00 9.870761e+05 9.847020e+05 2374.08 NULL
2023 Department Of Finance Administrative Public Information Specialist Nm Former M1/M2 112547.50000 2.250950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.250950e+05 2.250950e+05 0.00 NULL
2023 Department Of Finance Administrative Quality Assurance Specialist 84254.00000 8.425400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.425400e+04 8.425400e+04 0.00 NULL
2023 Department Of Finance Administrative Space Analyst 105667.50000 2.113350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.113350e+05 2.113350e+05 0.00 NULL
2023 Department Of Finance Administrative Staff Analyst 118799.33628 1.342432e+07 139887.12 1.237939e+03 0.000 2005.00 113 0.000000e+00 0.00 1.356421e+07 1.342432e+07 139887.12 NULL
2023 Department Of Finance Administrative Storekeeper 106998.33333 3.209950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.209950e+05 3.209950e+05 0.00 NULL
2023 Department Of Finance Administrative Supervisor Of Building Maintenance 114854.00000 1.148540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.148540e+05 1.148540e+05 0.00 NULL
2023 Department Of Finance Administrative Tax Auditor 126279.18919 4.672330e+06 5.33 1.440541e-01 0.000 0.00 37 0.000000e+00 0.00 4.672335e+06 4.672330e+06 5.33 NULL
2023 Department Of Finance Agency Attorney 95146.71429 1.998081e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.998081e+06 1.998081e+06 0.00 NULL
2023 Department Of Finance Agency Chief Contracting Officer 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2023 Department Of Finance Assist Commissioner 161136.00000 1.611360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.611360e+05 1.611360e+05 0.00 NULL
2023 Department Of Finance Assistant City Assessor 57905.12245 2.837351e+06 31795.07 6.488790e+02 21.620 876.00 49 2.162000e+01 1059.38 2.869146e+06 2.838410e+06 30735.69 NULL
2023 Department Of Finance Assistant Commissioner 189125.00000 7.565000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.565000e+05 7.565000e+05 0.00 NULL
2023 Department Of Finance Assistant Commissioner, Citywide Pymt Svcs & Stnds 184250.00000 1.842500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.842500e+05 1.842500e+05 0.00 NULL
2023 Department Of Finance Associate Fraud Investigator 79780.86957 1.834960e+06 408187.83 1.774730e+04 8638.940 6611.25 23 8.638940e+03 198695.62 2.243148e+06 2.033656e+06 209492.21 NULL
2023 Department Of Finance Associate Staff Analyst 88109.20000 1.321638e+06 3534.76 2.356507e+02 0.000 63.25 15 0.000000e+00 0.00 1.325173e+06 1.321638e+06 3534.76 NULL
2023 Department Of Finance Asst Commissioner 184250.00000 1.842500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.842500e+05 1.842500e+05 0.00 NULL
2023 Department Of Finance Business Research & Data Analytics Specialist 89755.90909 9.873150e+05 2066.58 1.878709e+02 0.000 36.25 11 0.000000e+00 0.00 9.893816e+05 9.873150e+05 2066.58 NULL
2023 Department Of Finance Cashier 51348.33333 1.540450e+05 7761.23 2.587077e+03 0.000 228.50 3 0.000000e+00 0.00 1.618062e+05 1.540450e+05 7761.23 NULL
2023 Department Of Finance Certified It Administrator 129741.70000 1.297417e+06 106625.05 1.066250e+04 7789.785 1230.00 10 7.789785e+03 77897.85 1.404042e+06 1.375315e+06 28727.20 NULL
2023 Department Of Finance Chief Information Officer 213000.00000 2.130000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.130000e+05 2.130000e+05 0.00 NULL
2023 Department Of Finance Chief Of City Sheriff Operations 194800.00000 1.948000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.948000e+05 1.948000e+05 0.00 NULL
2023 Department Of Finance Chief Of Staff 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2023 Department Of Finance Chief Pension Investment Advisor, Finance 182000.00000 1.820000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.820000e+05 1.820000e+05 0.00 NULL
2023 Department Of Finance Chief Tax Compliance Officer 213000.00000 2.130000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.130000e+05 2.130000e+05 0.00 NULL
2023 Department Of Finance City Assessor 92702.40164 1.130969e+07 486909.64 3.991063e+03 460.675 6748.75 122 4.606750e+02 56202.35 1.179660e+07 1.136590e+07 430707.29 NULL
2023 Department Of Finance City Collector 136955.00000 1.369550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.369550e+05 1.369550e+05 0.00 NULL
2023 Department Of Finance City Laborer NA NA 269002.56 1.921447e+04 17980.240 4994.25 14 1.798024e+04 251723.36 NA NA NA NULL
2023 Department Of Finance City Planner 69377.00000 6.937700e+04 6118.17 6.118170e+03 6118.170 136.00 1 6.118170e+03 6118.17 7.549517e+04 7.549517e+04 0.00 NULL
2023 Department Of Finance City Planning Technician 47495.00000 4.749500e+04 1172.64 1.172640e+03 1172.640 41.75 1 1.172640e+03 1172.64 4.866764e+04 4.866764e+04 0.00 NULL
2023 Department Of Finance City Register 184250.00000 1.842500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.842500e+05 1.842500e+05 0.00 NULL
2023 Department Of Finance City Research Scientist 97618.44000 2.440461e+06 20483.88 8.193552e+02 0.000 296.50 25 0.000000e+00 0.00 2.460945e+06 2.440461e+06 20483.88 NULL
2023 Department Of Finance City Tax Auditor 75518.28643 3.005628e+07 60993.24 1.532493e+02 0.000 1032.50 398 0.000000e+00 0.00 3.011727e+07 3.005628e+07 60993.24 NULL
2023 Department Of Finance Clerical Aide 42291.23529 7.189510e+05 8623.21 5.072476e+02 0.000 282.50 17 0.000000e+00 0.00 7.275742e+05 7.189510e+05 8623.21 NULL
2023 Department Of Finance Clerical Associate 47829.33168 9.661525e+06 114202.87 5.653607e+02 0.000 3692.50 202 0.000000e+00 0.00 9.775728e+06 9.661525e+06 114202.87 NULL
2023 Department Of Finance Collections Specialist 58499.66667 1.754990e+05 1224.80 4.082667e+02 0.000 43.75 3 0.000000e+00 0.00 1.767238e+05 1.754990e+05 1224.80 NULL
2023 Department Of Finance Collections Unit Head 127243.00000 1.272430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.272430e+05 1.272430e+05 0.00 NULL
2023 Department Of Finance College Aide 3605.64750 7.211295e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.211295e+03 7.211295e+03 0.00 NULL
2023 Department Of Finance Commissioner Of Finance 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2023 Department Of Finance Community Assistant 42062.75000 1.682510e+05 5.92 1.480000e+00 0.000 0.00 4 0.000000e+00 0.00 1.682569e+05 1.682510e+05 5.92 NULL
2023 Department Of Finance Community Associate 58377.75000 2.335110e+05 17873.05 4.468262e+03 1811.500 521.00 4 1.811500e+03 7246.00 2.513840e+05 2.407570e+05 10627.05 NULL
2023 Department Of Finance Community Coordinator 79257.61111 1.426637e+06 13092.05 7.273361e+02 2.360 310.75 18 2.360000e+00 42.48 1.439729e+06 1.426679e+06 13049.57 NULL
2023 Department Of Finance Community Service Aide 38934.00000 3.893400e+04 257.76 2.577600e+02 257.760 12.00 1 2.577600e+02 257.76 3.919176e+04 3.919176e+04 0.00 NULL
2023 Department Of Finance Computer Aide-Non-Spvr 71929.00000 7.192900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.192900e+04 7.192900e+04 0.00 NULL
2023 Department Of Finance Computer Associate 84949.73077 2.208693e+06 102455.08 3.940580e+03 71.885 1652.00 26 7.188500e+01 1869.01 2.311148e+06 2.210562e+06 100586.07 NULL
2023 Department Of Finance Computer Programmer Analyst 68202.71429 4.774190e+05 523.97 7.485286e+01 6.090 9.75 7 6.090000e+00 42.63 4.779430e+05 4.774616e+05 481.34 NULL
2023 Department Of Finance Computer Specialist 115140.03750 9.211203e+06 149560.86 1.869511e+03 0.000 1660.75 80 0.000000e+00 0.00 9.360764e+06 9.211203e+06 149560.86 NULL
2023 Department Of Finance Computer Systems Manager 145253.05063 2.294998e+07 307602.89 1.946854e+03 0.000 3208.00 158 0.000000e+00 0.00 2.325758e+07 2.294998e+07 307602.89 NULL
2023 Department Of Finance Confidential Strategy Planner 87428.00000 5.245680e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.245680e+05 5.245680e+05 0.00 NULL
2023 Department Of Finance Counsel 213000.00000 2.130000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.130000e+05 2.130000e+05 0.00 NULL
2023 Department Of Finance Deputy City Sheriff - Non-Spvr 72225.28662 1.133937e+07 4595644.21 2.927162e+04 21541.000 79327.55 157 2.154100e+04 3381937.00 1.593501e+07 1.472131e+07 1213707.21 NULL
2023 Department Of Finance Deputy Commissioner 217309.25000 8.692370e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.692370e+05 8.692370e+05 0.00 NULL
2023 Department Of Finance Director Of Public Information 112500.00000 2.250000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.250000e+05 2.250000e+05 0.00 NULL
2023 Department Of Finance Director, Research Development And Policy Analysis 220000.00000 2.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.200000e+05 2.200000e+05 0.00 NULL
2023 Department Of Finance Economist 85928.25000 3.437130e+05 1578.57 3.946425e+02 38.840 31.00 4 3.884000e+01 155.36 3.452916e+05 3.438684e+05 1423.21 NULL
2023 Department Of Finance Examiner Of Accounts 119501.00000 1.195010e+05 605.03 6.050300e+02 605.030 9.25 1 6.050300e+02 605.03 1.201060e+05 1.201060e+05 0.00 NULL
2023 Department Of Finance Exec Asst To The Commissioner Of Finance 102566.00000 1.025660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.025660e+05 1.025660e+05 0.00 NULL
2023 Department Of Finance Executive Agency Counsel 148179.76190 3.111775e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 3.111775e+06 3.111775e+06 0.00 NULL
2023 Department Of Finance Executive Deputy Sheriff 205000.00000 2.050000e+05 172736.37 1.727364e+05 172736.370 1646.50 1 1.727364e+05 172736.37 3.777364e+05 3.777364e+05 0.00 NULL
2023 Department Of Finance Executive Program Specialist 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2023 Department Of Finance First Deputy Commissioner 230237.00000 2.302370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.302370e+05 2.302370e+05 0.00 NULL
2023 Department Of Finance Fraud Investigator 75427.00000 7.542700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.542700e+04 7.542700e+04 0.00 NULL
2023 Department Of Finance Graphic Artist 93754.50000 1.875090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.875090e+05 1.875090e+05 0.00 NULL
2023 Department Of Finance Hearing Officer 56447.64436 6.152793e+06 0.00 0.000000e+00 0.000 0.00 109 0.000000e+00 0.00 6.152793e+06 6.152793e+06 0.00 NULL
2023 Department Of Finance Investigator 49777.75000 1.991110e+05 42.44 1.061000e+01 0.000 0.00 4 0.000000e+00 0.00 1.991534e+05 1.991110e+05 42.44 NULL
2023 Department Of Finance It Project Specialist 146763.00000 1.467630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.467630e+05 1.467630e+05 0.00 NULL
2023 Department Of Finance Labor Relations Analyst 78909.00000 7.890900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.890900e+04 7.890900e+04 0.00 NULL
2023 Department Of Finance Legal Secretarial Assistant 58866.00000 5.886600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.886600e+04 5.886600e+04 0.00 NULL
2023 Department Of Finance Management Auditor 85515.50000 3.420620e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.420620e+05 3.420620e+05 0.00 NULL
2023 Department Of Finance Motor Vehicle Operator 54557.00000 1.091140e+05 3820.80 1.910400e+03 1910.400 100.00 2 1.910400e+03 3820.80 1.129348e+05 1.129348e+05 0.00 NULL
2023 Department Of Finance Motor Vehicle Supervisor 63351.00000 6.335100e+04 26532.91 2.653291e+04 26532.910 586.75 1 2.653291e+04 26532.91 8.988391e+04 8.988391e+04 0.00 NULL
2023 Department Of Finance Pension Investment Advisor 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2023 Department Of Finance Principal Administrative Associate - Non Supvr 61988.45556 1.673688e+07 471823.39 1.747494e+03 0.000 11629.00 270 0.000000e+00 0.00 1.720871e+07 1.673688e+07 471823.39 NULL
2023 Department Of Finance Procurement Analyst 79396.41667 9.527570e+05 1544.73 1.287275e+02 0.000 30.00 12 0.000000e+00 0.00 9.543017e+05 9.527570e+05 1544.73 NULL
2023 Department Of Finance Public Records Aide 49670.00000 4.967000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.967000e+04 4.967000e+04 0.00 NULL
2023 Department Of Finance Secretary 46902.66667 1.407080e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.407080e+05 1.407080e+05 0.00 NULL
2023 Department Of Finance Secretary To Deputy Commissioner 70900.00000 1.418000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.418000e+05 1.418000e+05 0.00 NULL
2023 Department Of Finance Senior Director Collections 87000.00000 1.740000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.740000e+05 1.740000e+05 0.00 NULL
2023 Department Of Finance Special Officer 43096.00000 8.619200e+04 20367.27 1.018364e+04 10183.635 695.25 2 1.018364e+04 20367.27 1.065593e+05 1.065593e+05 0.00 NULL
2023 Department Of Finance Staff Analyst 71277.45455 7.840520e+05 2229.36 2.026691e+02 0.000 53.50 11 0.000000e+00 0.00 7.862814e+05 7.840520e+05 2229.36 NULL
2023 Department Of Finance Summer College Intern 3253.89167 2.928503e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 2.928503e+04 2.928503e+04 0.00 NULL
2023 Department Of Finance Summer Graduate Intern 4034.88085 1.210464e+05 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 1.210464e+05 1.210464e+05 0.00 NULL
2023 Department Of Finance Supervising Deputy Sheriff - Al 1 Only 40 Hr 118533.44444 1.066801e+06 714344.43 7.937160e+04 88329.730 7761.50 9 7.937160e+04 714344.43 1.781145e+06 1.781145e+06 0.00 NULL
2023 Department Of Finance Supervising Special Officer 63408.75000 2.536350e+05 32108.14 8.027035e+03 9093.920 750.00 4 8.027035e+03 32108.14 2.857431e+05 2.857431e+05 0.00 NULL
2023 Department Of Finance Tax Map Cartographer 86693.00000 1.733860e+05 5217.36 2.608680e+03 2608.680 87.25 2 2.608680e+03 5217.36 1.786034e+05 1.786034e+05 0.00 NULL
2023 Department Of Finance Telecommunications Associate 64670.00000 6.467000e+04 5975.88 5.975880e+03 5975.880 128.75 1 5.975880e+03 5975.88 7.064588e+04 7.064588e+04 0.00 NULL
2023 Department Of Investigation Adm Manager-Non-Mgrl 88296.00000 7.946640e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.946640e+05 7.946640e+05 0.00 NULL
2023 Department Of Investigation Administrative Community Relations Specialist 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2023 Department Of Investigation Administrative Management Auditor 146220.00000 1.462200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.462200e+05 1.462200e+05 0.00 NULL
2023 Department Of Investigation Administrative Manager 119834.33333 3.595030e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.595030e+05 3.595030e+05 0.00 NULL
2023 Department Of Investigation Administrative Procurement Analyst-Non-Mgrl 99281.00000 9.928100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.928100e+04 9.928100e+04 0.00 NULL
2023 Department Of Investigation Administrative Public Information Specialist 138680.00000 2.773600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.773600e+05 2.773600e+05 0.00 NULL
2023 Department Of Investigation Administrative Staff Analyst 124227.00000 1.242270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.242270e+05 1.242270e+05 0.00 NULL
2023 Department Of Investigation Clerical Associate 61229.50000 7.347540e+05 519.95 4.332917e+01 0.000 20.00 12 0.000000e+00 0.00 7.352739e+05 7.347540e+05 519.95 NULL
2023 Department Of Investigation Commissioner 237240.00000 2.372400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.372400e+05 2.372400e+05 0.00 NULL
2023 Department Of Investigation Community Assistant 28762.67500 5.752535e+04 4.41 2.205000e+00 2.205 0.00 2 2.205000e+00 4.41 5.752976e+04 5.752976e+04 0.00 NULL
2023 Department Of Investigation Community Associate 52796.00000 5.807560e+05 5103.72 4.639745e+02 0.000 148.50 11 0.000000e+00 0.00 5.858597e+05 5.807560e+05 5103.72 NULL
2023 Department Of Investigation Community Coordinator 81132.50000 3.245300e+05 46422.81 1.160570e+04 5017.740 753.75 4 5.017740e+03 20070.96 3.709528e+05 3.446010e+05 26351.85 NULL
2023 Department Of Investigation Computer Associate 74550.40000 3.727520e+05 26605.03 5.321006e+03 117.630 453.30 5 1.176300e+02 588.15 3.993570e+05 3.733402e+05 26016.88 NULL
2023 Department Of Investigation Computer Operations Manager 88246.00000 8.824600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.824600e+04 8.824600e+04 0.00 NULL
2023 Department Of Investigation Computer Specialist 106569.00000 2.131380e+05 47.97 2.398500e+01 23.985 0.00 2 2.398500e+01 47.97 2.131860e+05 2.131860e+05 0.00 NULL
2023 Department Of Investigation Computer Systems Manager 132409.55556 1.191686e+06 8.42 9.355556e-01 0.000 0.00 9 0.000000e+00 0.00 1.191694e+06 1.191686e+06 8.42 NULL
2023 Department Of Investigation Confidential Investigator 61351.28333 7.362154e+06 100103.48 8.341957e+02 0.000 2283.25 120 0.000000e+00 0.00 7.462257e+06 7.362154e+06 100103.48 NULL
2023 Department Of Investigation Confidential Secretary To The Deputy Commissioner 84000.00000 8.400000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.400000e+04 8.400000e+04 0.00 NULL
2023 Department Of Investigation Deputy Commissioner 197226.00000 3.944520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.944520e+05 3.944520e+05 0.00 NULL
2023 Department Of Investigation Deputy Inspector General 111875.24324 4.139384e+06 16376.10 4.425973e+02 0.000 310.00 37 0.000000e+00 0.00 4.155760e+06 4.139384e+06 16376.10 NULL
2023 Department Of Investigation Examiner Of Accounts 122787.50000 2.455750e+05 1840.49 9.202450e+02 920.245 26.50 2 9.202450e+02 1840.49 2.474155e+05 2.474155e+05 0.00 NULL
2023 Department Of Investigation Examining Attorney 108483.66667 1.952706e+06 10630.74 5.905967e+02 0.000 160.50 18 0.000000e+00 0.00 1.963337e+06 1.952706e+06 10630.74 NULL
2023 Department Of Investigation Inspector General 155849.36364 3.428686e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 3.428686e+06 3.428686e+06 0.00 NULL
2023 Department Of Investigation New York City Public Service Fellow 42127.00000 4.212700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.212700e+04 4.212700e+04 0.00 NULL
2023 Department Of Investigation Principal Administrative Associate - Non Supvr 66172.30000 6.617230e+05 1220.50 1.220500e+02 0.000 32.75 10 0.000000e+00 0.00 6.629435e+05 6.617230e+05 1220.50 NULL
2023 Department Of Investigation Procurement Analyst 74187.00000 1.483740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.483740e+05 1.483740e+05 0.00 NULL
2023 Department Of Investigation Secretary 61721.00000 1.234420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.234420e+05 1.234420e+05 0.00 NULL
2023 Department Of Investigation Special Investigator 80940.05714 5.665804e+06 160418.42 2.291692e+03 303.090 2913.75 70 3.030900e+02 21216.30 5.826222e+06 5.687020e+06 139202.12 NULL
2023 Department Of Investigation Staff Analyst 80008.00000 8.000800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000800e+04 8.000800e+04 0.00 NULL
2023 Department Of Probation *Attorney At Law 91563.00000 1.831260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.831260e+05 1.831260e+05 0.00 NULL
2023 Department Of Probation Adm Manager-Non-Mgrl 80547.00000 9.665640e+05 5511.66 4.593050e+02 0.000 112.00 12 0.000000e+00 0.00 9.720757e+05 9.665640e+05 5511.66 NULL
2023 Department Of Probation Administrative Contract Specialist 80628.00000 8.062800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.062800e+04 8.062800e+04 0.00 NULL
2023 Department Of Probation Administrative Director Of Social Services 185000.00000 1.850000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.850000e+05 1.850000e+05 0.00 NULL
2023 Department Of Probation Administrative Graphic Artist 112365.00000 1.123650e+05 526.66 5.266600e+02 526.660 8.00 1 5.266600e+02 526.66 1.128917e+05 1.128917e+05 0.00 NULL
2023 Department Of Probation Administrative Probation Officer 99686.23214 5.582429e+06 7397.09 1.320909e+02 0.000 140.00 56 0.000000e+00 0.00 5.589826e+06 5.582429e+06 7397.09 NULL
2023 Department Of Probation Administrative Procurement Analyst-Non-Mgrl 74288.50000 1.485770e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.485770e+05 1.485770e+05 0.00 NULL
2023 Department Of Probation Administrative Public Information Specialist 119000.00000 1.190000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.190000e+05 1.190000e+05 0.00 NULL
2023 Department Of Probation Administrative Staff Analyst 126601.30000 1.266013e+06 226.96 2.269600e+01 0.000 3.25 10 0.000000e+00 0.00 1.266240e+06 1.266013e+06 226.96 NULL
2023 Department Of Probation Agency Attorney 98985.50000 3.959420e+05 1695.46 4.238650e+02 0.000 26.00 4 0.000000e+00 0.00 3.976375e+05 3.959420e+05 1695.46 NULL
2023 Department Of Probation Agency Chief Contracting Officer 136800.00000 1.368000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.368000e+05 1.368000e+05 0.00 NULL
2023 Department Of Probation Assistant Director 179000.00000 1.790000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.790000e+05 1.790000e+05 0.00 NULL
2023 Department Of Probation Associate Staff Analyst 81203.00000 2.436090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.436090e+05 2.436090e+05 0.00 NULL
2023 Department Of Probation Certified It Administrator 103006.00000 1.030060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030060e+05 1.030060e+05 0.00 NULL
2023 Department Of Probation City Attendant 46796.00000 4.679600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.679600e+04 4.679600e+04 0.00 NULL
2023 Department Of Probation City Laborer NA NA 18655.21 6.218403e+03 6991.710 337.75 3 6.218403e+03 18655.21 NA NA NA NULL
2023 Department Of Probation City Research Scientist 116804.87500 9.344390e+05 17.07 2.133750e+00 0.000 0.00 8 0.000000e+00 0.00 9.344561e+05 9.344390e+05 17.07 NULL
2023 Department Of Probation Clerical Associate 47030.17143 1.646056e+06 35346.65 1.009904e+03 0.000 1076.25 35 0.000000e+00 0.00 1.681403e+06 1.646056e+06 35346.65 NULL
2023 Department Of Probation College Aide 15509.56714 1.085670e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.085670e+05 1.085670e+05 0.00 NULL
2023 Department Of Probation Community Assistant 33531.26652 4.359065e+05 31.83 2.448462e+00 0.000 1.25 13 0.000000e+00 0.00 4.359383e+05 4.359065e+05 31.83 NULL
2023 Department Of Probation Community Associate 46677.09722 3.360751e+06 40493.53 5.624101e+02 0.000 1308.75 72 0.000000e+00 0.00 3.401245e+06 3.360751e+06 40493.53 NULL
2023 Department Of Probation Community Coordinator 77979.85000 1.559597e+06 988.46 4.942300e+01 0.000 20.00 20 0.000000e+00 0.00 1.560585e+06 1.559597e+06 988.46 NULL
2023 Department Of Probation Community Service Aide 33687.00000 1.010610e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.010610e+05 1.010610e+05 0.00 NULL
2023 Department Of Probation Computer Aide-Non-Spvr 44792.00000 4.479200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.479200e+04 4.479200e+04 0.00 NULL
2023 Department Of Probation Computer Associate 83690.00000 8.369000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.369000e+04 8.369000e+04 0.00 NULL
2023 Department Of Probation Computer Service Technician 53580.50000 1.071610e+05 228.12 1.140600e+02 114.060 7.00 2 1.140600e+02 228.12 1.073891e+05 1.073891e+05 0.00 NULL
2023 Department Of Probation Computer Specialist 114559.40000 5.727970e+05 97699.18 1.953984e+04 13832.280 1149.50 5 1.383228e+04 69161.40 6.704962e+05 6.419584e+05 28537.78 NULL
2023 Department Of Probation Counsel 194881.00000 3.897620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.897620e+05 3.897620e+05 0.00 NULL
2023 Department Of Probation Deputy Director Of Probation 189404.50000 3.788090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.788090e+05 3.788090e+05 0.00 NULL
2023 Department Of Probation Director Of Probation 235478.50000 4.709570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.709570e+05 4.709570e+05 0.00 NULL
2023 Department Of Probation District Supervisor 111412.00000 1.114120e+05 7977.03 7.977030e+03 7977.030 101.75 1 7.977030e+03 7977.03 1.193890e+05 1.193890e+05 0.00 NULL
2023 Department Of Probation Executive Agency Counsel 155271.33333 9.316280e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.316280e+05 9.316280e+05 0.00 NULL
2023 Department Of Probation Executive Dir Of Administration 195678.00000 1.956780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.956780e+05 1.956780e+05 0.00 NULL
2023 Department Of Probation Investigator 46227.00000 9.245400e+04 49.14 2.457000e+01 24.570 2.00 2 2.457000e+01 49.14 9.250314e+04 9.250314e+04 0.00 NULL
2023 Department Of Probation It Project Specialist 79568.00000 7.956800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.956800e+04 7.956800e+04 0.00 NULL
2023 Department Of Probation New York City Public Service Fellow 46000.00000 4.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.600000e+04 4.600000e+04 0.00 NULL
2023 Department Of Probation Press Officer 134599.50000 2.691990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.691990e+05 2.691990e+05 0.00 NULL
2023 Department Of Probation Principal Administrative Associate - Non Supvr 60941.62069 1.767307e+06 55850.84 1.925891e+03 0.000 1409.50 29 0.000000e+00 0.00 1.823158e+06 1.767307e+06 55850.84 NULL
2023 Department Of Probation Probation Adjunct Trainer 3339.84375 2.671875e+04 162.50 2.031250e+01 0.000 5.00 8 0.000000e+00 0.00 2.688125e+04 2.671875e+04 162.50 NULL
2023 Department Of Probation Probation Assistant 33556.17391 7.717920e+05 5668.91 2.464743e+02 0.000 234.25 23 0.000000e+00 0.00 7.774609e+05 7.717920e+05 5668.91 NULL
2023 Department Of Probation Probation Officer 55765.17134 3.775302e+07 1684400.63 2.488036e+03 199.600 42468.20 677 1.996000e+02 135129.20 3.943742e+07 3.788815e+07 1549271.43 NULL
2023 Department Of Probation Probation Officer Trainee 41234.10294 2.803919e+06 59042.99 8.682793e+02 0.000 1992.33 68 0.000000e+00 0.00 2.862962e+06 2.803919e+06 59042.99 NULL
2023 Department Of Probation Procurement Analyst 58688.00000 5.868800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.868800e+04 5.868800e+04 0.00 NULL
2023 Department Of Probation Research Assistant 57086.00000 5.708600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.708600e+04 5.708600e+04 0.00 NULL
2023 Department Of Probation Secretary 44440.57895 8.443710e+05 151.36 7.966316e+00 0.000 5.50 19 0.000000e+00 0.00 8.445224e+05 8.443710e+05 151.36 NULL
2023 Department Of Probation Senior Consultant 92658.00000 2.779740e+05 3.51 1.170000e+00 0.000 0.00 3 0.000000e+00 0.00 2.779775e+05 2.779740e+05 3.51 NULL
2023 Department Of Probation Senior Mental Health Worker 49975.25000 3.998020e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 3.998020e+05 3.998020e+05 0.00 NULL
2023 Department Of Probation Social Worker 60503.00000 6.050300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.050300e+04 6.050300e+04 0.00 NULL
2023 Department Of Probation Staff Analyst 73695.25000 2.947810e+05 9771.92 2.442980e+03 0.000 159.25 4 0.000000e+00 0.00 3.045529e+05 2.947810e+05 9771.92 NULL
2023 Department Of Probation Stock Worker 37840.00000 3.784000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.784000e+04 3.784000e+04 0.00 NULL
2023 Department Of Probation Strategic Initiative Specialist 99955.00000 9.995500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.995500e+04 9.995500e+04 0.00 NULL
2023 Department Of Probation Summer College Intern 3528.75938 5.646015e+04 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 5.646015e+04 5.646015e+04 0.00 NULL
2023 Department Of Probation Summer Graduate Intern 4988.13214 3.491693e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.491693e+04 3.491693e+04 0.00 NULL
2023 Department Of Probation Supervising Computer Service Technician 85967.00000 8.596700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.596700e+04 8.596700e+04 0.00 NULL
2023 Department Of Probation Supervising Probation Officer 74974.68508 1.357042e+07 831696.71 4.595009e+03 1790.830 15552.25 181 1.790830e+03 324140.23 1.440211e+07 1.389456e+07 507556.48 NULL
2023 Department Of Probation Supervisor Ii Social Work 75934.00000 7.593400e+04 22.10 2.210000e+01 22.100 0.00 1 2.210000e+01 22.10 7.595610e+04 7.595610e+04 0.00 NULL
2023 Department Of Sanitation *Attorney At Law 108713.00000 2.174260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.174260e+05 2.174260e+05 0.00 NULL
2023 Department Of Sanitation *Custodial Assistant 40350.00000 4.035000e+04 71.44 7.144000e+01 71.440 5.00 1 7.144000e+01 71.44 4.042144e+04 4.042144e+04 0.00 NULL
2023 Department Of Sanitation Accountant 72684.87500 5.814790e+05 12184.58 1.523072e+03 41.510 227.75 8 4.151000e+01 332.08 5.936636e+05 5.818111e+05 11852.50 NULL
2023 Department Of Sanitation Adm Manager-Non-Mgrl 86626.45455 1.905782e+06 214286.33 9.740288e+03 1902.060 3930.00 22 1.902060e+03 41845.32 2.120068e+06 1.947627e+06 172441.01 NULL
2023 Department Of Sanitation Admin Community Relations Specialist 117256.66667 7.035400e+05 65970.26 1.099504e+04 6997.175 908.50 6 6.997175e+03 41983.05 7.695103e+05 7.455231e+05 23987.21 NULL
2023 Department Of Sanitation Administrative Accountant 137865.00000 1.378650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.378650e+05 1.378650e+05 0.00 NULL
2023 Department Of Sanitation Administrative Architect 141141.25000 5.645650e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.645650e+05 5.645650e+05 0.00 NULL
2023 Department Of Sanitation Administrative Business Promotion Coordinator 122278.50000 4.891140e+05 5139.94 1.284985e+03 1094.105 82.75 4 1.094105e+03 4376.42 4.942539e+05 4.934904e+05 763.52 NULL
2023 Department Of Sanitation Administrative City Planner 128772.62500 1.030181e+06 10.58 1.322500e+00 0.000 0.00 8 0.000000e+00 0.00 1.030192e+06 1.030181e+06 10.58 NULL
2023 Department Of Sanitation Administrative Construction Project Manager 170274.33333 5.108230e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.108230e+05 5.108230e+05 0.00 NULL
2023 Department Of Sanitation Administrative Engineer 157155.50000 2.200177e+06 5458.36 3.898829e+02 0.000 72.00 14 0.000000e+00 0.00 2.205635e+06 2.200177e+06 5458.36 NULL
2023 Department Of Sanitation Administrative Management Auditor 108705.00000 2.174100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.174100e+05 2.174100e+05 0.00 NULL
2023 Department Of Sanitation Administrative Procurement Analyst 136986.00000 1.369860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.369860e+05 1.369860e+05 0.00 NULL
2023 Department Of Sanitation Administrative Procurement Analyst-Non-Mgrl 94456.81818 1.039025e+06 52526.35 4.775123e+03 430.660 838.00 11 4.306600e+02 4737.26 1.091551e+06 1.043762e+06 47789.09 NULL
2023 Department Of Sanitation Administrative Project Manager 129610.77778 2.332994e+06 5600.32 3.111289e+02 0.000 71.00 18 0.000000e+00 0.00 2.338594e+06 2.332994e+06 5600.32 NULL
2023 Department Of Sanitation Administrative Public Information Specialist 140556.00000 2.811120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.811120e+05 2.811120e+05 0.00 NULL
2023 Department Of Sanitation Administrative Staff Analyst 122349.07343 8.197388e+06 212797.24 3.176078e+03 0.000 2706.75 67 0.000000e+00 0.00 8.410185e+06 8.197388e+06 212797.24 NULL
2023 Department Of Sanitation Administrative Supervisor Of Building Maintenance 163506.66667 4.905200e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.905200e+05 4.905200e+05 0.00 NULL
2023 Department Of Sanitation Agency Attorney 103608.75000 1.243305e+06 21922.57 1.826881e+03 0.000 366.00 12 0.000000e+00 0.00 1.265228e+06 1.243305e+06 21922.57 NULL
2023 Department Of Sanitation Agency Chief Contracting Officer 180407.00000 1.804070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.804070e+05 1.804070e+05 0.00 NULL
2023 Department Of Sanitation Assistant Architect 71726.00000 7.172600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.172600e+04 7.172600e+04 0.00 NULL
2023 Department Of Sanitation Assistant Civil Engineer 77004.33333 2.310130e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.310130e+05 2.310130e+05 0.00 NULL
2023 Department Of Sanitation Assistant Commissioner 178000.00000 5.340000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.340000e+05 5.340000e+05 0.00 NULL
2023 Department Of Sanitation Assistant Electrical Engineer 89328.50000 1.786570e+05 102.24 5.112000e+01 51.120 2.00 2 5.112000e+01 102.24 1.787592e+05 1.787592e+05 0.00 NULL
2023 Department Of Sanitation Assistant Mechanical Engineer 77638.00000 7.763800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.763800e+04 7.763800e+04 0.00 NULL
2023 Department Of Sanitation Assistant To The Commissioner 88385.00000 1.767700e+05 2951.48 1.475740e+03 1475.740 58.25 2 1.475740e+03 2951.48 1.797215e+05 1.797215e+05 0.00 NULL
2023 Department Of Sanitation Associate Fraud Investigator 96109.00000 9.610900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.610900e+04 9.610900e+04 0.00 NULL
2023 Department Of Sanitation Associate Project Manager 92544.94444 8.329045e+05 4815.31 5.350344e+02 0.000 74.75 9 0.000000e+00 0.00 8.377198e+05 8.329045e+05 4815.31 NULL
2023 Department Of Sanitation Associate Public Records Officer 87573.00000 8.757300e+04 1404.55 1.404550e+03 1404.550 26.00 1 1.404550e+03 1404.55 8.897755e+04 8.897755e+04 0.00 NULL
2023 Department Of Sanitation Associate Sanitation Enforcement Agent 46491.69565 2.138618e+06 62213.17 1.352460e+03 406.440 1813.75 46 4.064400e+02 18696.24 2.200831e+06 2.157314e+06 43516.93 NULL
2023 Department Of Sanitation Associate Staff Analyst 89081.42308 2.316117e+06 72601.71 2.792373e+03 268.075 1217.00 26 2.680750e+02 6969.95 2.388719e+06 2.323087e+06 65631.76 NULL
2023 Department Of Sanitation Auto Machinist NA NA 48550.62 9.710124e+03 8107.130 729.00 5 8.107130e+03 40535.65 NA NA NA NULL
2023 Department Of Sanitation Auto Mechanic NA NA 4948228.74 8.820372e+03 6858.300 75345.75 561 6.858300e+03 3847506.30 NA NA NA NULL
2023 Department Of Sanitation Automotive Service Worker 42712.00000 8.542400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.542400e+04 8.542400e+04 0.00 NULL
2023 Department Of Sanitation Blacksmith NA NA 8264.16 8.264160e+03 8264.160 72.00 1 8.264160e+03 8264.16 NA NA NA NULL
2023 Department Of Sanitation Bookkeeper 56913.09091 6.260440e+05 1.84 1.672727e-01 0.000 0.00 11 0.000000e+00 0.00 6.260458e+05 6.260440e+05 1.84 NULL
2023 Department Of Sanitation Carpenter NA NA 806668.75 6.205144e+04 66332.050 9090.00 13 6.205144e+04 806668.75 NA NA NA NULL
2023 Department Of Sanitation Carriage Upholsterer NA NA 2801.76 2.801760e+03 2801.760 52.00 1 2.801760e+03 2801.76 NA NA NA NULL
2023 Department Of Sanitation Cement Mason NA NA 209090.70 3.484845e+04 16233.750 2173.50 6 1.623375e+04 97402.50 NA NA NA NULL
2023 Department Of Sanitation Certified It Administrator 138380.87500 2.214094e+06 494027.80 3.087674e+04 29058.445 6167.50 16 2.905844e+04 464935.12 2.708122e+06 2.679029e+06 29092.68 NULL
2023 Department Of Sanitation Certified It Developer 142831.00000 4.284930e+06 106839.10 3.561303e+03 996.080 1490.00 30 9.960800e+02 29882.40 4.391769e+06 4.314812e+06 76956.70 NULL
2023 Department Of Sanitation Chaplain 32238.50000 1.289540e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.289540e+05 1.289540e+05 0.00 NULL
2023 Department Of Sanitation City Attendant 41071.35556 1.848211e+06 94214.59 2.093658e+03 95.240 3038.75 45 9.524000e+01 4285.80 1.942426e+06 1.852497e+06 89928.79 NULL
2023 Department Of Sanitation City Custodial Assistant 48942.00000 4.894200e+04 15237.83 1.523783e+04 15237.830 373.00 1 1.523783e+04 15237.83 6.417983e+04 6.417983e+04 0.00 NULL
2023 Department Of Sanitation City Deputy Medical Director 179040.00000 1.790400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.790400e+05 1.790400e+05 0.00 NULL
2023 Department Of Sanitation City Laborer NA NA 165604.76 1.273883e+04 8355.640 2768.00 13 8.355640e+03 108623.32 NA NA NA NULL
2023 Department Of Sanitation City Medical Specialist 93327.79962 1.119934e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.119934e+06 1.119934e+06 0.00 NULL
2023 Department Of Sanitation City Planner 81943.00000 8.194300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.194300e+04 8.194300e+04 0.00 NULL
2023 Department Of Sanitation City Research Scientist 98251.83333 1.179022e+06 15445.74 1.287145e+03 154.035 242.75 12 1.540350e+02 1848.42 1.194468e+06 1.180870e+06 13597.32 NULL
2023 Department Of Sanitation Civil Engineer 119523.33333 3.585700e+05 2177.08 7.256933e+02 0.000 30.75 3 0.000000e+00 0.00 3.607471e+05 3.585700e+05 2177.08 NULL
2023 Department Of Sanitation Clerical Aide 41257.00000 8.251400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.251400e+04 8.251400e+04 0.00 NULL
2023 Department Of Sanitation Clerical Associate 47023.00433 1.086231e+07 1119582.86 4.846679e+03 1601.380 31847.75 231 1.601380e+03 369918.78 1.198190e+07 1.123223e+07 749664.08 NULL
2023 Department Of Sanitation College Aide 8468.63549 4.911809e+05 0.00 0.000000e+00 0.000 0.00 58 0.000000e+00 0.00 4.911809e+05 4.911809e+05 0.00 NULL
2023 Department Of Sanitation College Aide - Assignment Levels Ii And Iii 3072.82660 1.536413e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.536413e+04 1.536413e+04 0.00 NULL
2023 Department Of Sanitation Commissioner Of Sanitation 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2023 Department Of Sanitation Community Assistant 42290.25000 3.383220e+05 102.91 1.286375e+01 0.000 2.00 8 0.000000e+00 0.00 3.384249e+05 3.383220e+05 102.91 NULL
2023 Department Of Sanitation Community Associate 50146.27778 9.026330e+05 15147.30 8.415167e+02 0.795 448.25 18 7.950000e-01 14.31 9.177803e+05 9.026473e+05 15132.99 NULL
2023 Department Of Sanitation Community Coordinator 70526.30864 5.712631e+06 213075.81 2.630566e+03 478.670 4301.50 81 4.786700e+02 38772.27 5.925707e+06 5.751403e+06 174303.54 NULL
2023 Department Of Sanitation Computer Associate 83189.06667 1.247836e+06 91365.03 6.091002e+03 0.000 1699.75 15 0.000000e+00 0.00 1.339201e+06 1.247836e+06 91365.03 NULL
2023 Department Of Sanitation Computer Operations Manager 120332.50000 7.219950e+05 6235.94 1.039323e+03 0.000 106.25 6 0.000000e+00 0.00 7.282309e+05 7.219950e+05 6235.94 NULL
2023 Department Of Sanitation Computer Specialist 116910.00000 4.325670e+06 319351.26 8.631115e+03 763.650 4119.25 37 7.636500e+02 28255.05 4.645021e+06 4.353925e+06 291096.21 NULL
2023 Department Of Sanitation Computer Systems Manager 152388.44286 1.066719e+07 177414.16 2.534488e+03 0.000 1982.50 70 0.000000e+00 0.00 1.084461e+07 1.066719e+07 177414.16 NULL
2023 Department Of Sanitation Confidential Assistant To The Commissioner 147393.00000 1.473930e+05 201.69 2.016900e+02 201.690 2.50 1 2.016900e+02 201.69 1.475947e+05 1.475947e+05 0.00 NULL
2023 Department Of Sanitation Construction Laborer NA NA 70958.36 8.869795e+03 4909.915 1071.50 8 4.909915e+03 39279.32 NA NA NA NULL
2023 Department Of Sanitation Construction Project Manager 99041.90909 1.089461e+06 14535.94 1.321449e+03 0.000 194.50 11 0.000000e+00 0.00 1.103997e+06 1.089461e+06 14535.94 NULL
2023 Department Of Sanitation Counselor 84602.00000 1.692040e+05 14028.91 7.014455e+03 7014.455 200.50 2 7.014455e+03 14028.91 1.832329e+05 1.832329e+05 0.00 NULL
2023 Department Of Sanitation Custodian 39137.00000 3.913700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.913700e+04 3.913700e+04 0.00 NULL
2023 Department Of Sanitation Dep Dir Mtr Eq Mntc 158948.50000 3.178970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.178970e+05 3.178970e+05 0.00 NULL
2023 Department Of Sanitation Deputy Administrator 139059.50000 2.781190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.781190e+05 2.781190e+05 0.00 NULL
2023 Department Of Sanitation Deputy Administrator/Comsnr-Dos 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2023 Department Of Sanitation Deputy Commissioner 231540.50000 9.261620e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 9.261620e+05 9.261620e+05 0.00 NULL
2023 Department Of Sanitation Deputy Director Of Motor Equipment Maintenance 164586.00000 1.645860e+05 4325.70 4.325700e+03 4325.700 37.50 1 4.325700e+03 4325.70 1.689117e+05 1.689117e+05 0.00 NULL
2023 Department Of Sanitation Director 138012.00000 1.380120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.380120e+05 1.380120e+05 0.00 NULL
2023 Department Of Sanitation Director Of Motor Equipment Maintenance 220388.00000 2.203880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.203880e+05 2.203880e+05 0.00 NULL
2023 Department Of Sanitation Director Of Motor Equipment Maintenance-Nm 183958.50000 3.679170e+05 18379.34 9.189670e+03 9189.670 141.50 2 9.189670e+03 18379.34 3.862963e+05 3.862963e+05 0.00 NULL
2023 Department Of Sanitation Economist 92803.50000 1.856070e+05 787.49 3.937450e+02 393.745 14.50 2 3.937450e+02 787.49 1.863945e+05 1.863945e+05 0.00 NULL
2023 Department Of Sanitation Electrician NA NA 1011716.18 1.605899e+04 11200.500 12800.50 63 1.120050e+04 705631.50 NA NA NA NULL
2023 Department Of Sanitation Estimator 87535.00000 2.626050e+05 1481.39 4.937967e+02 0.000 25.00 3 0.000000e+00 0.00 2.640864e+05 2.626050e+05 1481.39 NULL
2023 Department Of Sanitation Executive Agency Counsel 157262.12500 1.258097e+06 22114.25 2.764281e+03 0.000 255.75 8 0.000000e+00 0.00 1.280211e+06 1.258097e+06 22114.25 NULL
2023 Department Of Sanitation Executive Assistant To The Commissioner 178833.33333 5.365000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.365000e+05 5.365000e+05 0.00 NULL
2023 Department Of Sanitation General Superintendent 148963.39405 4.007115e+07 5735834.11 2.132280e+04 13090.590 55749.49 269 1.309059e+04 3521368.71 4.580699e+07 4.359252e+07 2214465.40 NULL
2023 Department Of Sanitation Graphic Artist 96576.00000 3.863040e+05 505.99 1.264975e+02 72.335 8.25 4 7.233500e+01 289.34 3.868100e+05 3.865933e+05 216.65 NULL
2023 Department Of Sanitation High Pressure Plant Tender NA NA 233203.40 4.664068e+04 57753.600 4018.83 5 4.664068e+04 233203.40 NA NA NA NULL
2023 Department Of Sanitation Instrumental Specialist 81706.00000 8.170600e+04 22445.73 2.244573e+04 22445.730 384.75 1 2.244573e+04 22445.73 1.041517e+05 1.041517e+05 0.00 NULL
2023 Department Of Sanitation Investigator 63322.70000 6.332270e+05 86573.70 8.657370e+03 295.830 1776.50 10 2.958300e+02 2958.30 7.198007e+05 6.361853e+05 83615.40 NULL
2023 Department Of Sanitation It Project Specialist 138200.66667 4.146020e+05 15054.01 5.018003e+03 2297.810 276.25 3 2.297810e+03 6893.43 4.296560e+05 4.214954e+05 8160.58 NULL
2023 Department Of Sanitation Job Training Participant 6718.54074 2.915847e+06 896.13 2.064816e+00 0.000 42.00 434 0.000000e+00 0.00 2.916743e+06 2.915847e+06 896.13 NULL
2023 Department Of Sanitation Laboratory Associate 47070.50000 9.414100e+04 3022.65 1.511325e+03 1511.325 104.50 2 1.511325e+03 3022.65 9.716365e+04 9.716365e+04 0.00 NULL
2023 Department Of Sanitation Laboratory Microbiologist 59992.00000 1.199840e+05 4462.66 2.231330e+03 2231.330 107.50 2 2.231330e+03 4462.66 1.244467e+05 1.244467e+05 0.00 NULL
2023 Department Of Sanitation Letterer And Sign Painter NA NA 62389.81 3.119490e+04 31194.905 1267.42 2 3.119490e+04 62389.81 NA NA NA NULL
2023 Department Of Sanitation Machinist NA NA 317471.47 1.322798e+04 9924.495 4845.50 24 9.924495e+03 238187.88 NA NA NA NULL
2023 Department Of Sanitation Maintenance Worker NA NA 288725.20 1.374882e+04 10605.310 6093.50 21 1.060531e+04 222711.51 NA NA NA NULL
2023 Department Of Sanitation Management Auditor 81546.80000 4.077340e+05 2.07 4.140000e-01 0.000 0.00 5 0.000000e+00 0.00 4.077361e+05 4.077340e+05 2.07 NULL
2023 Department Of Sanitation Mechanical Engineer 119776.00000 1.197760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.197760e+05 1.197760e+05 0.00 NULL
2023 Department Of Sanitation Medical Director 193741.00000 1.937410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.937410e+05 1.937410e+05 0.00 NULL
2023 Department Of Sanitation Medical Record Librarian 65142.80000 3.257140e+05 20239.10 4.047820e+03 32.200 385.50 5 3.220000e+01 161.00 3.459531e+05 3.258750e+05 20078.10 NULL
2023 Department Of Sanitation Metal Work Mechanic 100814.31250 4.839087e+06 531306.43 1.106888e+04 11449.685 7256.00 48 1.106888e+04 531306.43 5.370393e+06 5.370393e+06 0.00 NULL
2023 Department Of Sanitation Motor Vehicle Operator 54699.66667 1.640990e+05 10065.14 3.355047e+03 4955.830 212.00 3 3.355047e+03 10065.14 1.741641e+05 1.741641e+05 0.00 NULL
2023 Department Of Sanitation Office Machine Aide 43788.00000 4.378800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.378800e+04 4.378800e+04 0.00 NULL
2023 Department Of Sanitation Oiler NA NA 41787.80 1.044695e+04 6537.405 478.00 4 6.537405e+03 26149.62 NA NA NA NULL
2023 Department Of Sanitation Painter NA NA 248952.36 4.979047e+04 64612.180 3687.00 5 4.979047e+04 248952.36 NA NA NA NULL
2023 Department Of Sanitation Plumber NA NA 340871.48 2.005126e+04 20520.060 2565.75 17 2.005126e+04 340871.48 NA NA NA NULL
2023 Department Of Sanitation Principal Administrative Associate - Non Supvr 62110.03077 4.037152e+06 485571.61 7.470332e+03 1889.160 10964.75 65 1.889160e+03 122795.40 4.522724e+06 4.159947e+06 362776.21 NULL
2023 Department Of Sanitation Procurement Analyst 68274.00881 1.433754e+06 39210.08 1.867147e+03 128.320 862.25 21 1.283200e+02 2694.72 1.472964e+06 1.436449e+06 36515.36 NULL
2023 Department Of Sanitation Project Manager 63728.00000 6.372800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.372800e+04 6.372800e+04 0.00 NULL
2023 Department Of Sanitation Public Records Aide 53628.00000 5.362800e+04 1729.61 1.729610e+03 1729.610 49.00 1 1.729610e+03 1729.61 5.535761e+04 5.535761e+04 0.00 NULL
2023 Department Of Sanitation Research Assistant 64424.00000 1.932720e+05 31472.12 1.049071e+04 11815.260 658.00 3 1.049071e+04 31472.12 2.247441e+05 2.247441e+05 0.00 NULL
2023 Department Of Sanitation Rubber Tire Repairer NA NA 60134.99 5.466817e+03 6061.430 1328.50 11 5.466817e+03 60134.99 NA NA NA NULL
2023 Department Of Sanitation Sanitation Compliance Agent 42085.00000 2.945950e+05 390.62 5.580286e+01 1.120 15.00 7 1.120000e+00 7.84 2.949856e+05 2.946028e+05 382.78 NULL
2023 Department Of Sanitation Sanitation Enforcement Agent 38782.73276 4.498797e+06 96990.91 8.361285e+02 0.000 3292.00 116 0.000000e+00 0.00 4.595788e+06 4.498797e+06 96990.91 NULL
2023 Department Of Sanitation Sanitation Worker 71476.77136 5.145613e+08 121206807.09 1.683662e+04 15099.770 1586472.43 7199 1.509977e+04 108703244.23 6.357681e+08 6.232645e+08 12503562.86 NULL
2023 Department Of Sanitation Secretary 58150.60000 2.907530e+05 6180.01 1.236002e+03 45.730 156.00 5 4.573000e+01 228.65 2.969330e+05 2.909817e+05 5951.36 NULL
2023 Department Of Sanitation Secretary To The Commissioner 89474.00000 8.947400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.947400e+04 8.947400e+04 0.00 NULL
2023 Department Of Sanitation Secretary To The Department 157500.00000 1.575000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.575000e+05 1.575000e+05 0.00 NULL
2023 Department Of Sanitation Senior Automotive Specialist 107320.50000 2.146410e+05 326.96 1.634800e+02 163.480 2.00 2 1.634800e+02 326.96 2.149680e+05 2.149680e+05 0.00 NULL
2023 Department Of Sanitation Senior Photographer 74670.00000 7.467000e+04 3867.94 3.867940e+03 3867.940 85.00 1 3.867940e+03 3867.94 7.853794e+04 7.853794e+04 0.00 NULL
2023 Department Of Sanitation Senior Stationary Engineer NA NA 188900.32 4.722508e+04 52536.880 1744.50 4 4.722508e+04 188900.32 NA NA NA NULL
2023 Department Of Sanitation Sheet Metal Worker NA NA 439757.60 6.282251e+04 57804.160 3806.50 7 5.780416e+04 404629.12 NA NA NA NULL
2023 Department Of Sanitation Staff Analyst 71203.84615 9.256500e+05 9565.31 7.357931e+02 0.000 238.75 13 0.000000e+00 0.00 9.352153e+05 9.256500e+05 9565.31 NULL
2023 Department Of Sanitation Staff Nurse 96855.20000 4.842760e+05 4469.79 8.939580e+02 0.000 60.75 5 0.000000e+00 0.00 4.887458e+05 4.842760e+05 4469.79 NULL
2023 Department Of Sanitation Stationary Engineer NA NA 1268614.89 4.530767e+04 38765.790 13018.25 28 3.876579e+04 1085442.12 NA NA NA NULL
2023 Department Of Sanitation Statistician 70113.00000 7.011300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.011300e+04 7.011300e+04 0.00 NULL
2023 Department Of Sanitation Steam Fitter NA NA 499550.42 4.162920e+04 32719.875 2417.25 12 3.271988e+04 392638.50 NA NA NA NULL
2023 Department Of Sanitation Stock Worker 43656.60000 2.182830e+05 41821.00 8.364200e+03 6547.560 1558.25 5 6.547560e+03 32737.80 2.601040e+05 2.510208e+05 9083.20 NULL
2023 Department Of Sanitation Summer College Intern 4641.40714 2.274290e+05 0.00 0.000000e+00 0.000 0.00 49 0.000000e+00 0.00 2.274290e+05 2.274290e+05 0.00 NULL
2023 Department Of Sanitation Summer Graduate Intern 7061.04149 1.059156e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.059156e+05 1.059156e+05 0.00 NULL
2023 Department Of Sanitation Supervising Computer Service Technician 93718.00000 9.371800e+04 0.65 6.500000e-01 0.650 0.00 1 6.500000e-01 0.65 9.371865e+04 9.371865e+04 0.00 NULL
2023 Department Of Sanitation Supervisor 104871.04618 1.180848e+08 31186681.37 2.769688e+04 24648.080 378391.41 1126 2.464808e+04 27753738.08 1.492715e+08 1.458385e+08 3432943.29 NULL
2023 Department Of Sanitation Supervisor Bricklayer NA NA 10229.64 1.022964e+04 10229.640 140.50 1 1.022964e+04 10229.64 NA NA NA NULL
2023 Department Of Sanitation Supervisor Carpenter NA NA 5026.80 5.026800e+03 5026.800 57.00 1 5.026800e+03 5026.80 NA NA NA NULL
2023 Department Of Sanitation Supervisor Electrician NA NA 147964.64 4.932155e+04 67068.270 1424.25 3 4.932155e+04 147964.64 NA NA NA NULL
2023 Department Of Sanitation Supervisor Of Ironwork 125151.00000 3.754530e+05 122224.47 4.074149e+04 17898.840 1305.50 3 1.789884e+04 53696.52 4.976775e+05 4.291495e+05 68527.95 NULL
2023 Department Of Sanitation Supervisor Of Mechanics 128169.83333 9.228228e+06 1232742.37 1.712142e+04 16403.385 13218.00 72 1.640338e+04 1181043.72 1.046097e+07 1.040927e+07 51698.65 NULL
2023 Department Of Sanitation Supervisor Of Office Machine Operations 58636.66667 1.759100e+05 3880.59 1.293530e+03 945.450 117.00 3 9.454500e+02 2836.35 1.797906e+05 1.787464e+05 1044.24 NULL
2023 Department Of Sanitation Supervisor Of Stock Workers 54395.92857 7.615430e+05 186992.43 1.335660e+04 12622.355 5027.50 14 1.262235e+04 176712.97 9.485354e+05 9.382560e+05 10279.46 NULL
2023 Department Of Sanitation Supervisor Painter NA NA 11689.74 1.168974e+04 11689.740 160.00 1 1.168974e+04 11689.74 NA NA NA NULL
2023 Department Of Sanitation Supervisor Plumber NA NA 74044.74 3.702237e+04 37022.370 545.25 2 3.702237e+04 74044.74 NA NA NA NULL
2023 Department Of Sanitation Supervisor Sheet Metal Worker NA NA 131960.87 1.319609e+05 131960.870 1078.50 1 1.319609e+05 131960.87 NA NA NA NULL
2023 Department Of Sanitation Supervisor Steamfitter NA NA 152366.43 7.618321e+04 76183.215 885.50 2 7.618321e+04 152366.43 NA NA NA NULL
2023 Department Of Sanitation Telecommunication Manager 208826.00000 2.088260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.088260e+05 2.088260e+05 0.00 NULL
2023 Department Of Sanitation Telecommunications Associate 85427.33333 5.125640e+05 35165.30 5.860883e+03 2613.580 653.50 6 2.613580e+03 15681.48 5.477293e+05 5.282455e+05 19483.82 NULL
2023 Department Of Sanitation Thermostat Repairer NA NA 22391.29 2.239129e+04 22391.290 150.50 1 2.239129e+04 22391.29 NA NA NA NULL
2023 Department Of Sanitation Tractor Operator NA NA 18322.49 9.161245e+03 9161.245 161.00 2 9.161245e+03 18322.49 NA NA NA NULL
2023 Department Of Sanitation Welder NA NA 53289.00 2.664450e+04 26644.500 534.00 2 2.664450e+04 53289.00 NA NA NA NULL
2023 Department Of Transportation *Certified Database Administrator 125211.00000 1.252110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.252110e+05 1.252110e+05 0.00 NULL
2023 Department Of Transportation Accountant 68449.07407 1.848125e+06 16814.75 6.227685e+02 0.000 372.00 27 0.000000e+00 0.00 1.864940e+06 1.848125e+06 16814.75 NULL
2023 Department Of Transportation Adm Manager-Non-Mgrl 90196.53780 1.785891e+07 916168.98 4.627116e+03 182.675 15405.25 198 1.826750e+02 36169.65 1.877508e+07 1.789508e+07 879999.33 NULL
2023 Department Of Transportation Admin Community Relations Specialist 91780.24326 1.652044e+06 118700.34 6.594463e+03 4427.915 2054.75 18 4.427915e+03 79702.47 1.770745e+06 1.731747e+06 38997.87 NULL
2023 Department Of Transportation Admin Construction Project Manager 124654.00000 6.232700e+05 89246.50 1.784930e+04 4033.830 1198.00 5 4.033830e+03 20169.15 7.125165e+05 6.434392e+05 69077.35 NULL
2023 Department Of Transportation Admin Inspector 111991.09091 1.231902e+06 367922.05 3.344746e+04 30507.700 4604.50 11 3.050770e+04 335584.70 1.599824e+06 1.567487e+06 32337.35 NULL
2023 Department Of Transportation Administrative Accountant 116192.71429 8.133490e+05 3779.01 5.398586e+02 0.000 61.75 7 0.000000e+00 0.00 8.171280e+05 8.133490e+05 3779.01 NULL
2023 Department Of Transportation Administrative Architect 128942.00000 1.289420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.289420e+05 1.289420e+05 0.00 NULL
2023 Department Of Transportation Administrative City Planner 122534.73239 8.699966e+06 167048.01 2.352789e+03 0.000 2661.50 71 0.000000e+00 0.00 8.867014e+06 8.699966e+06 167048.01 NULL
2023 Department Of Transportation Administrative Community Relations Specialist 177403.00000 5.322090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.322090e+05 5.322090e+05 0.00 NULL
2023 Department Of Transportation Administrative Construction Project Manager 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2023 Department Of Transportation Administrative Contract Specialist 109180.66667 3.275420e+05 38460.55 1.282018e+04 2780.280 469.75 3 2.780280e+03 8340.84 3.660025e+05 3.358828e+05 30119.71 NULL
2023 Department Of Transportation Administrative Director Of Marine Maintenance 164800.00000 1.648000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.648000e+05 1.648000e+05 0.00 NULL
2023 Department Of Transportation Administrative Engineer 142164.91045 1.905010e+07 563264.99 4.203470e+03 0.000 6715.25 134 0.000000e+00 0.00 1.961336e+07 1.905010e+07 563264.99 NULL
2023 Department Of Transportation Administrative Graphic Artist 127895.00000 1.278950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.278950e+05 1.278950e+05 0.00 NULL
2023 Department Of Transportation Administrative Inspector 150900.66667 4.527020e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.527020e+05 4.527020e+05 0.00 NULL
2023 Department Of Transportation Administrative Investigator 101915.20000 5.095760e+05 7787.61 1.557522e+03 0.000 154.00 5 0.000000e+00 0.00 5.173636e+05 5.095760e+05 7787.61 NULL
2023 Department Of Transportation Administrative Management Auditor 135937.30000 1.359373e+06 1254.07 1.254070e+02 0.000 18.75 10 0.000000e+00 0.00 1.360627e+06 1.359373e+06 1254.07 NULL
2023 Department Of Transportation Administrative Manager 151388.33333 9.083300e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.083300e+05 9.083300e+05 0.00 NULL
2023 Department Of Transportation Administrative Procurement Analyst 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2023 Department Of Transportation Administrative Procurement Analyst-Non-Mgrl 96855.46667 2.905664e+06 147536.56 4.917885e+03 0.000 2343.75 30 0.000000e+00 0.00 3.053201e+06 2.905664e+06 147536.56 NULL
2023 Department Of Transportation Administrative Project Manager 136312.55556 1.349494e+07 624560.47 6.308692e+03 0.000 7905.50 99 0.000000e+00 0.00 1.411950e+07 1.349494e+07 624560.47 NULL
2023 Department Of Transportation Administrative Public Information Specialist 185439.00000 3.708780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.708780e+05 3.708780e+05 0.00 NULL
2023 Department Of Transportation Administrative Quality Assurance Specialist 107039.22222 9.633530e+05 118401.91 1.315577e+04 3666.680 1872.00 9 3.666680e+03 33000.12 1.081755e+06 9.963531e+05 85401.79 NULL
2023 Department Of Transportation Administrative Real Property Manager 198472.00000 1.984720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.984720e+05 1.984720e+05 0.00 NULL
2023 Department Of Transportation Administrative Staff Analyst 125157.53175 1.576985e+07 269309.22 2.137375e+03 0.000 3784.00 126 0.000000e+00 0.00 1.603916e+07 1.576985e+07 269309.22 NULL
2023 Department Of Transportation Administrative Superintendent Of Bridge Operations 159500.00000 3.190000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.190000e+05 3.190000e+05 0.00 NULL
2023 Department Of Transportation Administrative Superintendent Of Highway Operations 146054.12000 3.651353e+06 120167.29 4.806692e+03 0.000 1372.00 25 0.000000e+00 0.00 3.771520e+06 3.651353e+06 120167.29 NULL
2023 Department Of Transportation Administrative Supervisor Of Building Maintenance 147640.00000 1.476400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.476400e+05 1.476400e+05 0.00 NULL
2023 Department Of Transportation Administrative Transportation Coordinator 140655.08696 3.235067e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 3.235067e+06 3.235067e+06 0.00 NULL
2023 Department Of Transportation Agency Attorney 99945.14286 2.098848e+06 5803.97 2.763795e+02 0.000 92.00 21 0.000000e+00 0.00 2.104652e+06 2.098848e+06 5803.97 NULL
2023 Department Of Transportation Agency Chief Contracting Officer 205000.00000 2.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.050000e+05 2.050000e+05 0.00 NULL
2023 Department Of Transportation Apprentice Inspector 41717.15646 6.132422e+06 475195.17 3.232620e+03 531.580 14724.28 147 5.315800e+02 78142.26 6.607617e+06 6.210564e+06 397052.91 NULL
2023 Department Of Transportation Architect 110658.50000 2.213170e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.213170e+05 2.213170e+05 0.00 NULL
2023 Department Of Transportation Area Supervisor 120165.29577 8.531736e+06 3091114.29 4.353682e+04 46269.300 34638.75 71 4.353682e+04 3091114.29 1.162285e+07 1.162285e+07 0.00 NULL
2023 Department Of Transportation Asphalt Plant Manager 179552.50000 3.591050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.591050e+05 3.591050e+05 0.00 NULL
2023 Department Of Transportation Assistant Accountant 61820.00000 6.182000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.182000e+04 6.182000e+04 0.00 NULL
2023 Department Of Transportation Assistant Architect 76897.50000 1.537950e+05 119.57 5.978500e+01 59.785 0.00 2 5.978500e+01 119.57 1.539146e+05 1.539146e+05 0.00 NULL
2023 Department Of Transportation Assistant Captain 63014.00000 8.821960e+05 494554.96 3.532535e+04 38742.540 7651.75 14 3.532535e+04 494554.96 1.376751e+06 1.376751e+06 0.00 NULL
2023 Department Of Transportation Assistant City Highway Repairer 42572.15147 3.835751e+07 4212938.06 4.675847e+03 2703.780 99719.09 901 2.703780e+03 2436105.78 4.257045e+07 4.079361e+07 1776832.28 NULL
2023 Department Of Transportation Assistant Civil Engineer 80699.57419 1.250843e+07 553236.88 3.569270e+03 21.600 9956.25 155 2.160000e+01 3348.00 1.306167e+07 1.251178e+07 549888.88 NULL
2023 Department Of Transportation Assistant Commissioner 155366.50000 3.107330e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.107330e+05 3.107330e+05 0.00 NULL
2023 Department Of Transportation Assistant Director 120098.00000 1.200980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200980e+05 1.200980e+05 0.00 NULL
2023 Department Of Transportation Assistant Electrical Engineer 79973.45455 2.639124e+06 415384.65 1.258741e+04 10949.130 7033.50 33 1.094913e+04 361321.29 3.054509e+06 3.000445e+06 54063.36 NULL
2023 Department Of Transportation Assistant Landscape Architect 79956.35130 7.995635e+04 3416.40 3.416400e+03 3416.400 80.00 1 3.416400e+03 3416.40 8.337275e+04 8.337275e+04 0.00 NULL
2023 Department Of Transportation Assistant Mechanical Engineer 82150.00000 4.929000e+05 49870.29 8.311715e+03 0.000 730.50 6 0.000000e+00 0.00 5.427703e+05 4.929000e+05 49870.29 NULL
2023 Department Of Transportation Assistant Printing Press Operator 73276.00000 1.465520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.465520e+05 1.465520e+05 0.00 NULL
2023 Department Of Transportation Assistant To The Deputy Commissioner 171878.00000 1.718780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.718780e+05 1.718780e+05 0.00 NULL
2023 Department Of Transportation Assistant Transportation Specialist 66423.88889 2.391260e+06 297911.47 8.275319e+03 3352.285 6346.00 36 3.352285e+03 120682.26 2.689171e+06 2.511942e+06 177229.21 NULL
2023 Department Of Transportation Assistant Urban Designer 82624.50000 1.652490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.652490e+05 1.652490e+05 0.00 NULL
2023 Department Of Transportation Associate Fraud Investigator 89851.00000 8.985100e+04 11.57 1.157000e+01 11.570 0.00 1 1.157000e+01 11.57 8.986257e+04 8.986257e+04 0.00 NULL
2023 Department Of Transportation Associate Inspector 78064.50943 4.137419e+06 756658.10 1.427657e+04 14408.870 13133.25 53 1.427657e+04 756658.10 4.894077e+06 4.894077e+06 0.00 NULL
2023 Department Of Transportation Associate Investigator 77605.25000 3.104210e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.104210e+05 3.104210e+05 0.00 NULL
2023 Department Of Transportation Associate Labor Relations Analyst 101970.00000 1.019700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.019700e+05 1.019700e+05 0.00 NULL
2023 Department Of Transportation Associate Operations Communications Specialist 67675.25000 2.707010e+05 51098.74 1.277468e+04 5039.300 911.78 4 5.039300e+03 20157.20 3.217997e+05 2.908582e+05 30941.54 NULL
2023 Department Of Transportation Associate Project Manager 99529.45161 3.085413e+06 176330.40 5.688077e+03 0.000 2440.75 31 0.000000e+00 0.00 3.261743e+06 3.085413e+06 176330.40 NULL
2023 Department Of Transportation Associate Quality Assurance Specialist 76648.50000 1.532970e+05 7295.13 3.647565e+03 3647.565 194.75 2 3.647565e+03 7295.13 1.605921e+05 1.605921e+05 0.00 NULL
2023 Department Of Transportation Associate Staff Analyst 84551.91579 4.819459e+06 177076.74 3.106609e+03 0.000 3111.00 57 0.000000e+00 0.00 4.996536e+06 4.819459e+06 177076.74 NULL
2023 Department Of Transportation Associate Urban Designer 88830.41600 4.441521e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.441521e+05 4.441521e+05 0.00 NULL
2023 Department Of Transportation Auto Machinist NA NA 23976.46 2.397646e+04 23976.460 363.25 1 2.397646e+04 23976.46 NA NA NA NULL
2023 Department Of Transportation Auto Body Worker 58725.00000 1.761750e+05 15863.73 5.287910e+03 6267.320 367.50 3 5.287910e+03 15863.73 1.920387e+05 1.920387e+05 0.00 NULL
2023 Department Of Transportation Auto Mechanic NA NA 903194.99 9.031950e+03 7047.080 14045.25 100 7.047080e+03 704708.00 NA NA NA NULL
2023 Department Of Transportation Automotive Service Worker 38422.52941 6.531830e+05 36888.85 2.169932e+03 1466.910 1255.75 17 1.466910e+03 24937.47 6.900718e+05 6.781205e+05 11951.38 NULL
2023 Department Of Transportation Automotive Specialist 93908.00000 9.390800e+04 12251.58 1.225158e+04 12251.580 209.50 1 1.225158e+04 12251.58 1.061596e+05 1.061596e+05 0.00 NULL
2023 Department Of Transportation Blacksmith NA NA 62526.42 2.084214e+04 24792.500 697.00 3 2.084214e+04 62526.42 NA NA NA NULL
2023 Department Of Transportation Blacksmith’s Helper NA NA 32068.94 1.603447e+04 16034.470 506.50 2 1.603447e+04 32068.94 NA NA NA NULL
2023 Department Of Transportation Boiler Maker NA NA 243907.85 3.048848e+04 29957.655 2828.75 8 2.995765e+04 239661.24 NA NA NA NULL
2023 Department Of Transportation Bookkeeper 57368.70000 5.736870e+05 9663.99 9.663990e+02 7.050 256.00 10 7.050000e+00 70.50 5.833510e+05 5.737575e+05 9593.49 NULL
2023 Department Of Transportation Borough Commissioner 177623.80000 8.881190e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.881190e+05 8.881190e+05 0.00 NULL
2023 Department Of Transportation Bricklayer NA NA 203837.18 1.853065e+04 16149.140 2982.25 11 1.614914e+04 177640.54 NA NA NA NULL
2023 Department Of Transportation Bridge Operator 49820.04110 3.636863e+06 1073838.60 1.471012e+04 10657.720 25242.28 73 1.065772e+04 778013.56 4.710702e+06 4.414877e+06 295825.04 NULL
2023 Department Of Transportation Bridge Painter NA NA 346528.89 9.900825e+03 9907.000 3473.25 35 9.900825e+03 346528.89 NA NA NA NULL
2023 Department Of Transportation Bridge Repairer And Riveter NA NA 1795676.54 3.150310e+04 32660.630 4480.50 57 3.150310e+04 1795676.54 NA NA NA NULL
2023 Department Of Transportation Captain 70926.00000 1.773150e+06 1224740.03 4.898960e+04 48391.360 17382.50 25 4.839136e+04 1209784.00 2.997890e+06 2.982934e+06 14956.03 NULL
2023 Department Of Transportation Carpenter NA NA 507157.04 2.983277e+04 28665.550 6559.75 17 2.866555e+04 487314.35 NA NA NA NULL
2023 Department Of Transportation Cement Mason NA NA 1013779.65 3.899153e+04 40295.775 10538.25 26 3.899153e+04 1013779.65 NA NA NA NULL
2023 Department Of Transportation Certified It Administrator 126355.30769 1.642619e+06 246846.38 1.898818e+04 16742.930 2700.00 13 1.674293e+04 217658.09 1.889465e+06 1.860277e+06 29188.29 NULL
2023 Department Of Transportation Certified It Developer 137380.91667 1.648571e+06 44068.10 3.672342e+03 396.085 409.50 12 3.960850e+02 4753.02 1.692639e+06 1.653324e+06 39315.08 NULL
2023 Department Of Transportation Chief Marine Engineer 68789.00000 1.650936e+06 1315258.56 5.480244e+04 57123.360 19788.50 24 5.480244e+04 1315258.56 2.966195e+06 2.966195e+06 0.00 NULL
2023 Department Of Transportation Chief Of Staff 220000.00000 2.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.200000e+05 2.200000e+05 0.00 NULL
2023 Department Of Transportation City Attendant 39860.32161 1.315391e+06 138728.27 4.203887e+03 424.730 4151.25 33 4.247300e+02 14016.09 1.454119e+06 1.329407e+06 124712.18 NULL
2023 Department Of Transportation City Custodial Assistant 35004.18533 1.050126e+05 152.20 5.073333e+01 0.000 5.00 3 0.000000e+00 0.00 1.051648e+05 1.050126e+05 152.20 NULL
2023 Department Of Transportation City Debris Remover 47368.50000 9.473700e+04 25228.85 1.261442e+04 12614.425 682.75 2 1.261442e+04 25228.85 1.199659e+05 1.199659e+05 0.00 NULL
2023 Department Of Transportation City Laborer NA NA 977888.23 2.963298e+04 23336.040 17309.25 33 2.333604e+04 770089.32 NA NA NA NULL
2023 Department Of Transportation City Parking Equipment Service Worker 44186.85714 4.021004e+06 273145.42 3.001598e+03 1097.920 7359.77 91 1.097920e+03 99910.72 4.294149e+06 4.120915e+06 173234.70 NULL
2023 Department Of Transportation City Planner 93655.19565 8.616278e+06 571135.06 6.207990e+03 391.660 9548.25 92 3.916600e+02 36032.72 9.187413e+06 8.652311e+06 535102.34 NULL
2023 Department Of Transportation City Research Scientist 101300.66667 1.823412e+06 29676.51 1.648695e+03 0.000 496.00 18 0.000000e+00 0.00 1.853089e+06 1.823412e+06 29676.51 NULL
2023 Department Of Transportation City Tax Auditor 71399.50000 2.855980e+05 94.27 2.356750e+01 0.000 2.50 4 0.000000e+00 0.00 2.856923e+05 2.855980e+05 94.27 NULL
2023 Department Of Transportation Civil Engineer 112735.00000 5.298545e+06 146030.42 3.107030e+03 0.000 1935.25 47 0.000000e+00 0.00 5.444575e+06 5.298545e+06 146030.42 NULL
2023 Department Of Transportation Civil Engineering Intern 63654.16667 7.638500e+05 10837.60 9.031333e+02 0.000 281.00 12 0.000000e+00 0.00 7.746876e+05 7.638500e+05 10837.60 NULL
2023 Department Of Transportation Claim Specialist 56065.04333 1.681951e+05 35229.22 1.174307e+04 13583.630 836.50 3 1.174307e+04 35229.22 2.034244e+05 2.034244e+05 0.00 NULL
2023 Department Of Transportation Clerical Aide 44945.00000 4.494500e+04 10826.32 1.082632e+04 10826.320 338.75 1 1.082632e+04 10826.32 5.577132e+04 5.577132e+04 0.00 NULL
2023 Department Of Transportation Clerical Associate 47651.94629 1.667818e+07 559650.08 1.599000e+03 186.835 15393.00 350 1.868350e+02 65392.25 1.723783e+07 1.674357e+07 494257.83 NULL
2023 Department Of Transportation Climber & Pruner 69522.75000 2.780910e+05 36855.71 9.213927e+03 7310.630 716.75 4 7.310630e+03 29242.52 3.149467e+05 3.073335e+05 7613.19 NULL
2023 Department Of Transportation College Aide 8346.59532 8.763925e+05 0.00 0.000000e+00 0.000 0.00 105 0.000000e+00 0.00 8.763925e+05 8.763925e+05 0.00 NULL
2023 Department Of Transportation College Aide - Assignment Levels Ii And Iii 7065.72051 1.978402e+05 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 1.978402e+05 1.978402e+05 0.00 NULL
2023 Department Of Transportation Commissioner Of Transportation 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2023 Department Of Transportation Community Assistant 40910.80644 3.681973e+05 38093.40 4.232600e+03 82.630 1097.00 9 8.263000e+01 743.67 4.062907e+05 3.689409e+05 37349.73 NULL
2023 Department Of Transportation Community Associate 46650.45810 1.819368e+06 59590.29 1.527956e+03 7.740 1761.25 39 7.740000e+00 301.86 1.878958e+06 1.819670e+06 59288.43 NULL
2023 Department Of Transportation Community Coordinator 73095.18016 8.771422e+06 227440.69 1.895339e+03 71.475 4713.75 120 7.147500e+01 8577.00 8.998862e+06 8.779999e+06 218863.69 NULL
2023 Department Of Transportation Computer Aide-Non-Spvr 58091.00000 1.161820e+05 6209.70 3.104850e+03 3104.850 158.50 2 3.104850e+03 6209.70 1.223917e+05 1.223917e+05 0.00 NULL
2023 Department Of Transportation Computer Associate 76890.09397 1.307132e+06 108182.33 6.363666e+03 2465.650 2131.50 17 2.465650e+03 41916.05 1.415314e+06 1.349048e+06 66266.28 NULL
2023 Department Of Transportation Computer Specialist 114398.79167 2.745571e+06 125675.72 5.236488e+03 1.600 1293.50 24 1.600000e+00 38.40 2.871247e+06 2.745609e+06 125637.32 NULL
2023 Department Of Transportation Computer Systems Manager 163661.73333 2.454926e+06 49080.82 3.272055e+03 0.000 683.25 15 0.000000e+00 0.00 2.504007e+06 2.454926e+06 49080.82 NULL
2023 Department Of Transportation Confidential Strategy Planner 91356.00000 6.394920e+05 2822.31 4.031871e+02 66.150 48.75 7 6.615000e+01 463.05 6.423143e+05 6.399551e+05 2359.26 NULL
2023 Department Of Transportation Construction Project Manager 95956.36667 2.878691e+06 301154.40 1.003848e+04 3210.320 4477.00 30 3.210320e+03 96309.60 3.179845e+06 2.975001e+06 204844.80 NULL
2023 Department Of Transportation Counsel 237401.00000 2.374010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.374010e+05 2.374010e+05 0.00 NULL
2023 Department Of Transportation Crane Operator Ampes NA NA 535585.87 8.926431e+04 91293.805 3944.50 6 8.926431e+04 535585.87 NA NA NA NULL
2023 Department Of Transportation Customer Information Representative Ma L 1549 49938.18000 4.494436e+05 59338.97 6.593219e+03 39.510 1267.25 9 3.951000e+01 355.59 5.087826e+05 4.497992e+05 58983.38 NULL
2023 Department Of Transportation Cyber Security Analyst 76340.90909 8.397500e+05 38526.77 3.502434e+03 806.080 801.50 11 8.060800e+02 8866.88 8.782768e+05 8.486169e+05 29659.89 NULL
2023 Department Of Transportation Deckhand 57567.25103 1.398884e+07 6222216.88 2.560583e+04 24296.710 103962.25 243 2.429671e+04 5904100.53 2.021106e+07 1.989294e+07 318116.35 NULL
2023 Department Of Transportation Deputy Commissioner 215969.33333 1.295816e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.295816e+06 1.295816e+06 0.00 NULL
2023 Department Of Transportation Deputy Director 148574.00000 2.971480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.971480e+05 2.971480e+05 0.00 NULL
2023 Department Of Transportation Director Of Public Relations 150000.00000 1.500000e+05 1853.44 1.853440e+03 1853.440 33.50 1 1.853440e+03 1853.44 1.518534e+05 1.518534e+05 0.00 NULL
2023 Department Of Transportation Dockbuilder NA NA 266288.96 2.048377e+04 19522.550 3452.25 13 1.952255e+04 253793.15 NA NA NA NULL
2023 Department Of Transportation Economist 77027.06250 1.232433e+06 426.75 2.667188e+01 0.000 8.00 16 0.000000e+00 0.00 1.232860e+06 1.232433e+06 426.75 NULL
2023 Department Of Transportation Electrical Engineering Intern 64128.00000 3.847680e+05 9455.42 1.575903e+03 1574.805 219.00 6 1.574805e+03 9448.83 3.942234e+05 3.942168e+05 6.59 NULL
2023 Department Of Transportation Electrician NA NA 3734371.02 4.849832e+04 47183.060 39842.00 77 4.718306e+04 3633095.62 NA NA NA NULL
2023 Department Of Transportation Engineering Technician 68861.33333 4.131680e+05 94156.92 1.569282e+04 14268.795 2028.50 6 1.426880e+04 85612.77 5.073249e+05 4.987808e+05 8544.15 NULL
2023 Department Of Transportation Executive Agency Counsel 164645.56250 2.634329e+06 0.00 0.000000e+00 0.000 14.00 16 0.000000e+00 0.00 2.634329e+06 2.634329e+06 0.00 NULL
2023 Department Of Transportation Executive Assistant To Commissioner Of Transportation 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2023 Department Of Transportation Executive Program Specialist 161799.00000 6.471960e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.471960e+05 6.471960e+05 0.00 NULL
2023 Department Of Transportation Ferry Terminal Supervisor 80024.00000 1.200360e+06 520346.78 3.468979e+04 33178.900 8747.25 15 3.317890e+04 497683.50 1.720707e+06 1.698044e+06 22663.28 NULL
2023 Department Of Transportation Gardener 58536.00000 2.926800e+05 24638.47 4.927694e+03 2268.760 499.25 5 2.268760e+03 11343.80 3.173185e+05 3.040238e+05 13294.67 NULL
2023 Department Of Transportation Gasoline Roller Engineer-L15 NA NA 2220711.10 2.413816e+04 19394.770 238.00 92 1.939477e+04 1784318.84 NA NA NA NULL
2023 Department Of Transportation Graphic Artist 76954.25000 3.078170e+05 13026.98 3.256745e+03 2750.310 267.75 4 2.750310e+03 11001.24 3.208440e+05 3.188182e+05 2025.74 NULL
2023 Department Of Transportation High Pressure Plant Tender NA NA 350145.30 5.835755e+04 60404.400 6208.25 6 5.835755e+04 350145.30 NA NA NA NULL
2023 Department Of Transportation Highway Repairer NA NA 8520720.37 1.654509e+04 13722.990 120020.45 515 1.372299e+04 7067339.85 NA NA NA NULL
2023 Department Of Transportation Highways And Sewers Inspector 65959.08911 6.661868e+06 985573.53 9.758154e+03 5025.150 19988.50 101 5.025150e+03 507540.15 7.647442e+06 7.169408e+06 478033.38 NULL
2023 Department Of Transportation Industrial Hygienist 72802.00000 5.096140e+05 19208.34 2.744049e+03 0.000 410.50 7 0.000000e+00 0.00 5.288223e+05 5.096140e+05 19208.34 NULL
2023 Department Of Transportation Investigator 57023.37500 4.561870e+05 46149.99 5.768749e+03 1543.640 1077.00 8 1.543640e+03 12349.12 5.023370e+05 4.685361e+05 33800.87 NULL
2023 Department Of Transportation It Automation And Monitoring Engineer 114457.50000 4.578300e+05 881.93 2.204825e+02 192.945 13.25 4 1.929450e+02 771.78 4.587119e+05 4.586018e+05 110.15 NULL
2023 Department Of Transportation It Infrastructure Engineer 141768.33333 4.253050e+05 46673.22 1.555774e+04 0.000 530.00 3 0.000000e+00 0.00 4.719782e+05 4.253050e+05 46673.22 NULL
2023 Department Of Transportation It Project Specialist 121985.69231 1.585814e+06 52310.29 4.023868e+03 234.020 582.25 13 2.340200e+02 3042.26 1.638124e+06 1.588856e+06 49268.03 NULL
2023 Department Of Transportation It Service Management Specialist 126175.00000 2.523500e+05 2758.58 1.379290e+03 1379.290 41.00 2 1.379290e+03 2758.58 2.551086e+05 2.551086e+05 0.00 NULL
2023 Department Of Transportation Landmarks Preservationist 94813.00000 9.481300e+04 289.95 2.899500e+02 289.950 5.50 1 2.899500e+02 289.95 9.510295e+04 9.510295e+04 0.00 NULL
2023 Department Of Transportation Letterer And Sign Painter NA NA 128777.84 1.170708e+04 15852.220 2756.50 11 1.170708e+04 128777.84 NA NA NA NULL
2023 Department Of Transportation Machinist NA NA 260154.69 5.203094e+04 62616.710 3987.25 5 5.203094e+04 260154.69 NA NA NA NULL
2023 Department Of Transportation Management Auditor 87364.06250 1.397825e+06 25370.07 1.585629e+03 88.785 465.75 16 8.878500e+01 1420.56 1.423195e+06 1.399246e+06 23949.51 NULL
2023 Department Of Transportation Marine Electronics Technician 115964.33333 3.478930e+05 76491.91 2.549730e+04 14433.400 845.00 3 1.443340e+04 43300.20 4.243849e+05 3.911932e+05 33191.71 NULL
2023 Department Of Transportation Marine Engineer 63671.30435 1.464440e+06 1092662.16 4.750705e+04 44082.640 17774.75 23 4.408264e+04 1013900.72 2.557102e+06 2.478341e+06 78761.44 NULL
2023 Department Of Transportation Marine Oiler 61555.00000 3.200860e+06 2430957.47 4.674918e+04 51694.375 41692.25 52 4.674918e+04 2430957.47 5.631817e+06 5.631817e+06 0.00 NULL
2023 Department Of Transportation Mate 57875.00000 4.282750e+06 2689018.42 3.633809e+04 36993.515 46932.50 74 3.633809e+04 2689018.42 6.971768e+06 6.971768e+06 0.00 NULL
2023 Department Of Transportation Mechanical Engineer 119438.00000 2.388760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.388760e+05 2.388760e+05 0.00 NULL
2023 Department Of Transportation Mechanical Engineering Intern 64128.00000 6.412800e+04 110.27 1.102700e+02 110.270 0.00 1 1.102700e+02 110.27 6.423827e+04 6.423827e+04 0.00 NULL
2023 Department Of Transportation Motor Grader Operator NA NA 595124.94 1.919758e+04 18080.990 1306.95 31 1.808099e+04 560510.69 NA NA NA NULL
2023 Department Of Transportation Motor Vehicle Operator 51815.50000 1.036310e+05 101.73 5.086500e+01 50.865 0.00 2 5.086500e+01 101.73 1.037327e+05 1.037327e+05 0.00 NULL
2023 Department Of Transportation New York City Public Service Fellow 45505.40000 4.550540e+05 1157.49 1.157490e+02 0.000 38.00 10 0.000000e+00 0.00 4.562115e+05 4.550540e+05 1157.49 NULL
2023 Department Of Transportation Office Machine Aide 40984.85714 2.868940e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.868940e+05 2.868940e+05 0.00 NULL
2023 Department Of Transportation Oiler NA NA 943194.20 5.894964e+04 55933.570 10575.00 16 5.593357e+04 894937.12 NA NA NA NULL
2023 Department Of Transportation Operations Communications Specialist 53002.83333 9.540510e+05 124003.23 6.889068e+03 5555.175 3211.75 18 5.555175e+03 99993.15 1.078054e+06 1.054044e+06 24010.08 NULL
2023 Department Of Transportation Painter NA NA 190157.09 2.716530e+04 25520.780 2830.50 7 2.552078e+04 178645.46 NA NA NA NULL
2023 Department Of Transportation Paralegal Aide 51167.00000 5.116700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.116700e+04 5.116700e+04 0.00 NULL
2023 Department Of Transportation Plumber NA NA 735014.39 6.681949e+04 71965.790 5948.00 11 6.681949e+04 735014.39 NA NA NA NULL
2023 Department Of Transportation Principal Administrative Associate - Non Supvr 61948.03285 1.331883e+07 952639.96 4.430884e+03 535.060 22090.17 215 5.350600e+02 115037.90 1.427147e+07 1.343386e+07 837602.06 NULL
2023 Department Of Transportation Procurement Analyst 65791.86693 2.171132e+06 136106.90 4.124452e+03 279.000 3320.00 33 2.790000e+02 9207.00 2.307239e+06 2.180339e+06 126899.90 NULL
2023 Department Of Transportation Project Manager 81069.00000 1.297104e+06 146933.07 9.183317e+03 3338.755 2643.25 16 3.338755e+03 53420.08 1.444037e+06 1.350524e+06 93512.99 NULL
2023 Department Of Transportation Project Manager Intern# 61343.57143 8.588100e+05 11833.59 8.452564e+02 0.000 297.50 14 0.000000e+00 0.00 8.706436e+05 8.588100e+05 11833.59 NULL
2023 Department Of Transportation Public Records Aide 42661.29667 2.559678e+05 1330.17 2.216950e+02 0.000 49.50 6 0.000000e+00 0.00 2.572980e+05 2.559678e+05 1330.17 NULL
2023 Department Of Transportation Public Records Officer 55408.00000 5.540800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.540800e+04 5.540800e+04 0.00 NULL
2023 Department Of Transportation Quality Assurance Specialist 54715.81161 3.830107e+05 48950.78 6.992969e+03 1355.760 1268.00 7 1.355760e+03 9490.32 4.319615e+05 3.925010e+05 39460.46 NULL
2023 Department Of Transportation Radio Repair Mechanic NA NA 14745.75 3.686438e+03 4546.275 186.50 4 3.686438e+03 14745.75 NA NA NA NULL
2023 Department Of Transportation Research Assistant 42404.66667 2.544280e+05 5955.79 9.926317e+02 0.570 183.75 6 5.700000e-01 3.42 2.603838e+05 2.544314e+05 5952.37 NULL
2023 Department Of Transportation Research Projects Coord 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2023 Department Of Transportation Rigger NA NA 220864.29 5.521607e+04 53341.005 2749.00 4 5.334100e+04 213364.02 NA NA NA NULL
2023 Department Of Transportation Roofer NA NA 46141.24 4.614124e+04 46141.240 828.00 1 4.614124e+04 46141.24 NA NA NA NULL
2023 Department Of Transportation Rubber Tire Repairer NA NA 28755.52 5.751104e+03 4059.460 662.75 5 4.059460e+03 20297.30 NA NA NA NULL
2023 Department Of Transportation Secretary 44902.64178 4.939291e+05 980.10 8.910000e+01 0.000 33.50 11 0.000000e+00 0.00 4.949092e+05 4.939291e+05 980.10 NULL
2023 Department Of Transportation Secretary Of Comm 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2023 Department Of Transportation Secretary To The Deputy Commissioner 50562.00000 1.011240e+05 3403.96 1.701980e+03 1701.980 107.00 2 1.701980e+03 3403.96 1.045280e+05 1.045280e+05 0.00 NULL
2023 Department Of Transportation Secretary To The First Deputy Commissioner 80223.00000 8.022300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.022300e+04 8.022300e+04 0.00 NULL
2023 Department Of Transportation Senior It Architect 139050.00000 2.781000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.781000e+05 2.781000e+05 0.00 NULL
2023 Department Of Transportation Senior Photographer 76910.00000 7.691000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.691000e+04 7.691000e+04 0.00 NULL
2023 Department Of Transportation Senior Service Inspector 55131.00000 5.513100e+04 15090.18 1.509018e+04 15090.180 390.25 1 1.509018e+04 15090.18 7.022118e+04 7.022118e+04 0.00 NULL
2023 Department Of Transportation Service Inspector 40612.00000 1.624480e+05 3074.48 7.686200e+02 234.285 141.25 4 2.342850e+02 937.14 1.655225e+05 1.633851e+05 2137.34 NULL
2023 Department Of Transportation Sheet Metal Worker NA NA 165622.24 3.312445e+04 12279.040 1432.75 5 1.227904e+04 61395.20 NA NA NA NULL
2023 Department Of Transportation Ship Carpenter NA NA 277218.93 5.544379e+04 55517.470 3455.50 5 5.544379e+04 277218.93 NA NA NA NULL
2023 Department Of Transportation Space Analyst 80151.50000 1.603030e+05 3930.96 1.965480e+03 1965.480 87.00 2 1.965480e+03 3930.96 1.642340e+05 1.642340e+05 0.00 NULL
2023 Department Of Transportation Staff Analyst 67476.29412 2.294194e+06 65734.67 1.933373e+03 0.000 1283.25 34 0.000000e+00 0.00 2.359929e+06 2.294194e+06 65734.67 NULL
2023 Department Of Transportation Stationary Engineer NA NA 107970.54 1.079705e+05 107970.540 1170.25 1 1.079705e+05 107970.54 NA NA NA NULL
2023 Department Of Transportation Steam Fitter NA NA 622248.23 2.828401e+04 13252.665 4064.50 22 1.325267e+04 291558.63 NA NA NA NULL
2023 Department Of Transportation Stock Worker 40589.61905 8.523820e+05 138142.92 6.578234e+03 4072.910 4775.00 21 4.072910e+03 85531.11 9.905249e+05 9.379131e+05 52611.81 NULL
2023 Department Of Transportation Strategic Initiative Specialist 130828.36364 1.439112e+06 61236.53 5.566957e+03 0.000 798.50 11 0.000000e+00 0.00 1.500349e+06 1.439112e+06 61236.53 NULL
2023 Department Of Transportation Summer College Intern 1511.27857 1.057895e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.057895e+04 1.057895e+04 0.00 NULL
2023 Department Of Transportation Summer Graduate Intern 5763.02680 2.881513e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.881513e+04 2.881513e+04 0.00 NULL
2023 Department Of Transportation Supervising Special Officer 62721.11111 5.644900e+05 85147.85 9.460872e+03 10767.530 1900.75 9 9.460872e+03 85147.85 6.496378e+05 6.496378e+05 0.00 NULL
2023 Department Of Transportation Supervisor 85748.00000 8.574800e+04 2841.94 2.841940e+03 2841.940 42.00 1 2.841940e+03 2841.94 8.858994e+04 8.858994e+04 0.00 NULL
2023 Department Of Transportation Supervisor Boiler Maker NA NA 51130.28 5.113028e+04 51130.280 514.25 1 5.113028e+04 51130.28 NA NA NA NULL
2023 Department Of Transportation Supervisor Bricklayer NA NA 238722.24 5.968056e+04 62216.830 2848.00 4 5.968056e+04 238722.24 NA NA NA NULL
2023 Department Of Transportation Supervisor Bridge Painter NA NA 137073.26 1.370733e+04 10025.630 1234.25 10 1.002563e+04 100256.30 NA NA NA NULL
2023 Department Of Transportation Supervisor Bridge Repairer And Riveter NA NA 288185.00 4.803083e+04 47527.030 1030.50 6 4.752703e+04 285162.18 NA NA NA NULL
2023 Department Of Transportation Supervisor Carpenter NA NA 315516.03 4.507372e+04 40122.100 4023.75 7 4.012210e+04 280854.70 NA NA NA NULL
2023 Department Of Transportation Supervisor Dockbuilder NA NA 61611.40 6.161140e+04 61611.400 767.00 1 6.161140e+04 61611.40 NA NA NA NULL
2023 Department Of Transportation Supervisor Electrician NA NA 1433690.35 7.964946e+04 84315.885 14245.00 18 7.964946e+04 1433690.35 NA NA NA NULL
2023 Department Of Transportation Supervisor Highway Repairer NA NA 4882488.83 2.838656e+04 25512.545 61317.50 172 2.551254e+04 4388157.74 NA NA NA NULL
2023 Department Of Transportation Supervisor Of Electrical Installations & Maintenance 77806.82500 3.112273e+06 937896.33 2.344741e+04 11153.685 15800.00 40 1.115368e+04 446147.40 4.050169e+06 3.558420e+06 491748.93 NULL
2023 Department Of Transportation Supervisor Of Mechanics NA NA 731577.21 2.612776e+04 19430.975 8016.50 28 1.943097e+04 544067.30 NA NA NA NULL
2023 Department Of Transportation Supervisor Of Office Machine Operations 50495.50000 1.009910e+05 73.18 3.659000e+01 36.590 2.50 2 3.659000e+01 73.18 1.010642e+05 1.010642e+05 0.00 NULL
2023 Department Of Transportation Supervisor Of Stock Workers 55009.50000 3.300570e+05 63819.74 1.063662e+04 5678.225 1621.50 6 5.678225e+03 34069.35 3.938767e+05 3.641263e+05 29750.39 NULL
2023 Department Of Transportation Supervisor Of Traffic Device Maintainers 80732.28571 2.260504e+06 837152.30 2.989830e+04 29162.525 12866.00 28 2.916253e+04 816550.70 3.097656e+06 3.077055e+06 20601.60 NULL
2023 Department Of Transportation Supervisor Of Traffic Device Maintainers Level 1 Only 69057.72222 3.729117e+06 1083033.52 2.005618e+04 20081.035 19241.04 54 2.005618e+04 1083033.52 4.812151e+06 4.812151e+06 0.00 NULL
2023 Department Of Transportation Supervisor Painter NA NA 38859.46 1.942973e+04 19429.730 521.75 2 1.942973e+04 38859.46 NA NA NA NULL
2023 Department Of Transportation Supervisor Plumber NA NA 156429.56 5.214319e+04 67655.990 1185.75 3 5.214319e+04 156429.56 NA NA NA NULL
2023 Department Of Transportation Supervisor Sheet Metal Worker NA NA 99807.50 9.980750e+04 99807.500 813.50 1 9.980750e+04 99807.50 NA NA NA NULL
2023 Department Of Transportation Supervisor Steamfitter NA NA 128254.19 6.412710e+04 64127.095 801.75 2 6.412710e+04 128254.19 NA NA NA NULL
2023 Department Of Transportation Telecommunications Associate 98845.58199 1.680375e+06 443298.58 2.607639e+04 10789.180 5392.00 17 1.078918e+04 183416.06 2.123673e+06 1.863791e+06 259882.52 NULL
2023 Department Of Transportation Tractor Operator NA NA 1086445.40 4.345782e+04 35198.430 9013.25 25 3.519843e+04 879960.75 NA NA NA NULL
2023 Department Of Transportation Traffic Control Inspector 60864.51282 4.747432e+06 471692.57 6.047341e+03 2219.200 10827.00 78 2.219200e+03 173097.60 5.219125e+06 4.920530e+06 298594.97 NULL
2023 Department Of Transportation Traffic Device Maintainer 66636.26744 1.719216e+07 2440939.22 9.461005e+03 4957.120 48194.00 258 4.957120e+03 1278936.96 1.963310e+07 1.847109e+07 1162002.26 NULL
2023 Department Of Transportation Transportation Specialist 88024.19118 1.795694e+07 1541022.16 7.554030e+03 1051.205 25630.50 204 1.051205e+03 214445.82 1.949796e+07 1.817138e+07 1326576.34 NULL
2023 Department Of Transportation Welder NA NA 27074.63 2.707463e+04 27074.630 263.50 1 2.707463e+04 27074.63 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs *Custodial Assistant 41684.00000 8.336800e+04 5186.77 2.593385e+03 2593.385 140.50 2 2.593385e+03 5186.77 8.855477e+04 8.855477e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs *Senior Estimator 107227.00000 1.072270e+05 3.24 3.240000e+00 3.240 0.00 1 3.240000e+00 3.24 1.072302e+05 1.072302e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Accountant 78931.66667 9.471800e+05 965.89 8.049083e+01 0.000 20.75 12 0.000000e+00 0.00 9.481459e+05 9.471800e+05 965.89 NULL
2023 Dept Of Citywide Admin Svcs Adm Manager-Non-Mgrl 89658.81944 6.455435e+06 105789.41 1.469297e+03 0.000 1935.00 72 0.000000e+00 0.00 6.561224e+06 6.455435e+06 105789.41 NULL
2023 Dept Of Citywide Admin Svcs Admin Community Relations Specialist 87521.33333 5.251280e+05 22455.56 3.742593e+03 218.285 405.00 6 2.182850e+02 1309.71 5.475836e+05 5.264377e+05 21145.85 NULL
2023 Dept Of Citywide Admin Svcs Admin Construction Project Manager 114084.50000 1.140845e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.140845e+06 1.140845e+06 0.00 NULL
2023 Dept Of Citywide Admin Svcs Admin Contract Specialist 115849.00000 1.158490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.158490e+05 1.158490e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Admin Inspector 133130.00000 1.331300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.331300e+05 1.331300e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Admin Tests & Meas Spec 109345.00000 3.280350e+05 3168.40 1.056133e+03 61.150 53.00 3 6.115000e+01 183.45 3.312034e+05 3.282185e+05 2984.95 NULL
2023 Dept Of Citywide Admin Svcs Administrative Accountant 113431.60000 5.671580e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.671580e+05 5.671580e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Administrative Architect 129198.50000 1.033588e+06 34907.16 4.363395e+03 0.000 434.25 8 0.000000e+00 0.00 1.068495e+06 1.033588e+06 34907.16 NULL
2023 Dept Of Citywide Admin Svcs Administrative Business Promotion Coordinator 127437.50000 1.274375e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.274375e+06 1.274375e+06 0.00 NULL
2023 Dept Of Citywide Admin Svcs Administrative City Planner 131780.50000 1.054244e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.054244e+06 1.054244e+06 0.00 NULL
2023 Dept Of Citywide Admin Svcs Administrative Community Relations Specialist 168091.16667 1.008547e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.008547e+06 1.008547e+06 0.00 NULL
2023 Dept Of Citywide Admin Svcs Administrative Construction Project Manager 105864.16667 6.351850e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.351850e+05 6.351850e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Administrative Engineer 153165.15385 1.991147e+06 23696.87 1.822836e+03 0.000 242.75 13 0.000000e+00 0.00 2.014844e+06 1.991147e+06 23696.87 NULL
2023 Dept Of Citywide Admin Svcs Administrative Graphic Artist 103941.00000 2.078820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.078820e+05 2.078820e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Administrative Inspector 118340.00000 1.183400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.183400e+05 1.183400e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Administrative Investigator 78147.00000 1.562940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.562940e+05 1.562940e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Administrative Management Auditor 115510.66667 3.465320e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.465320e+05 3.465320e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Administrative Manager 140457.00000 1.264113e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.264113e+06 1.264113e+06 0.00 NULL
2023 Dept Of Citywide Admin Svcs Administrative Printing Services Manager 100666.00000 1.006660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.006660e+05 1.006660e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Administrative Procurement Analyst 108234.00000 2.164680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.164680e+05 2.164680e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Administrative Procurement Analyst-Non-Mgrl 98045.25000 1.568724e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.568724e+06 1.568724e+06 0.00 NULL
2023 Dept Of Citywide Admin Svcs Administrative Project Manager 140557.75000 2.248924e+06 50867.31 3.179207e+03 0.000 527.50 16 0.000000e+00 0.00 2.299791e+06 2.248924e+06 50867.31 NULL
2023 Dept Of Citywide Admin Svcs Administrative Public Information Specialist 135000.00000 2.700000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.700000e+05 2.700000e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Administrative Public Information Specialist Nm Former M1/M2 107742.00000 1.077420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.077420e+05 1.077420e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Administrative Quality Assurance Specialist 90964.93333 1.364474e+06 86330.12 5.755341e+03 1570.880 1726.50 15 1.570880e+03 23563.20 1.450804e+06 1.388037e+06 62766.92 NULL
2023 Dept Of Citywide Admin Svcs Administrative Real Property Manager 97867.66667 8.808090e+05 4804.05 5.337833e+02 0.000 105.25 9 0.000000e+00 0.00 8.856131e+05 8.808090e+05 4804.05 NULL
2023 Dept Of Citywide Admin Svcs Administrative Space Analyst 113950.86667 1.709263e+06 68.52 4.568000e+00 0.000 0.00 15 0.000000e+00 0.00 1.709332e+06 1.709263e+06 68.52 NULL
2023 Dept Of Citywide Admin Svcs Administrative Staff Analyst 119562.82796 1.111934e+07 82637.32 8.885733e+02 0.000 1255.25 93 0.000000e+00 0.00 1.120198e+07 1.111934e+07 82637.32 NULL
2023 Dept Of Citywide Admin Svcs Administrative Storekeeper 95458.00000 9.545800e+04 -740.18 -7.401800e+02 -740.180 2.00 1 -7.401800e+02 -740.18 9.471782e+04 9.471782e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Administrative Supervisor Of Building Maintenance 105498.75000 4.219950e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.219950e+05 4.219950e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Agency Attorney 104573.64286 2.928062e+06 783.25 2.797321e+01 0.000 13.00 28 0.000000e+00 0.00 2.928845e+06 2.928062e+06 783.25 NULL
2023 Dept Of Citywide Admin Svcs Agency Attorney Interne 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Appraiser 110423.40000 5.521170e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.521170e+05 5.521170e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Architect 105030.57143 1.470428e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.470428e+06 1.470428e+06 0.00 NULL
2023 Dept Of Citywide Admin Svcs Asbestos Handler 83206.00000 3.328240e+05 148954.33 3.723858e+04 41157.750 2464.00 4 3.723858e+04 148954.33 4.817783e+05 4.817783e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Assistant Architect 84133.00000 6.730640e+05 9904.02 1.238003e+03 0.000 158.25 8 0.000000e+00 0.00 6.829680e+05 6.730640e+05 9904.02 NULL
2023 Dept Of Citywide Admin Svcs Assistant Civil Engineer 103282.00000 1.032820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.032820e+05 1.032820e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Assistant Commissioner 171780.14286 1.202461e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.202461e+06 1.202461e+06 0.00 NULL
2023 Dept Of Citywide Admin Svcs Assistant Electrical Engineer 72385.50000 1.447710e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.447710e+05 1.447710e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Assistant Landscape Architect 82667.00000 8.266700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.266700e+04 8.266700e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Assistant Mechanical Engineer 82471.00000 4.123550e+05 11887.83 2.377566e+03 0.000 176.25 5 0.000000e+00 0.00 4.242428e+05 4.123550e+05 11887.83 NULL
2023 Dept Of Citywide Admin Svcs Assistant Printing Press Operator 71143.00000 7.114300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.114300e+04 7.114300e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Associate Chemist 96492.00000 9.649200e+04 14.16 1.416000e+01 14.160 0.00 1 1.416000e+01 14.16 9.650616e+04 9.650616e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Associate Investigator 64864.16667 3.891850e+05 4388.34 7.313900e+02 500.520 114.50 6 5.005200e+02 3003.12 3.935733e+05 3.921881e+05 1385.22 NULL
2023 Dept Of Citywide Admin Svcs Associate Project Manager 104884.44444 1.887920e+06 5540.56 3.078089e+02 0.000 86.00 18 0.000000e+00 0.00 1.893461e+06 1.887920e+06 5540.56 NULL
2023 Dept Of Citywide Admin Svcs Associate Quality Assurance Specialist 85405.00000 8.540500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.540500e+04 8.540500e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Associate Real Property Manager 73861.50000 2.954460e+05 3188.17 7.970425e+02 228.120 51.75 4 2.281200e+02 912.48 2.986342e+05 2.963585e+05 2275.69 NULL
2023 Dept Of Citywide Admin Svcs Associate Staff Analyst 88115.29167 2.114767e+06 19411.18 8.087992e+02 0.000 333.75 24 0.000000e+00 0.00 2.134178e+06 2.114767e+06 19411.18 NULL
2023 Dept Of Citywide Admin Svcs Auto Mechanic NA NA 14579.50 3.644875e+03 3730.270 222.75 4 3.644875e+03 14579.50 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Bookkeeper 58684.00000 5.868400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.868400e+04 5.868400e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Bricklayer NA NA 37440.96 3.744096e+04 37440.960 533.00 1 3.744096e+04 37440.96 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Business Promotion Coordinator 81134.00000 2.434020e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.434020e+05 2.434020e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Carpenter NA NA 454654.14 2.841588e+04 23993.825 5845.00 16 2.399383e+04 383901.20 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Cement Mason NA NA 41534.35 2.076717e+04 20767.175 431.75 2 2.076717e+04 41534.35 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Certified It Administrator 114842.50000 6.890550e+05 62616.77 1.043613e+04 795.045 698.50 6 7.950450e+02 4770.27 7.516718e+05 6.938253e+05 57846.50 NULL
2023 Dept Of Citywide Admin Svcs Certified It Developer 134303.90000 1.343039e+06 15624.85 1.562485e+03 38.465 168.50 10 3.846500e+01 384.65 1.358664e+06 1.343424e+06 15240.20 NULL
2023 Dept Of Citywide Admin Svcs Chairman 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Chauffeur-Attendant 58023.15385 1.508602e+06 666958.96 2.565227e+04 27366.260 15959.55 26 2.565227e+04 666958.96 2.175561e+06 2.175561e+06 0.00 NULL
2023 Dept Of Citywide Admin Svcs Chief Of Staff 225000.00000 2.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.250000e+05 2.250000e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs City Chief Decarbonization Officer 213783.00000 2.137830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.137830e+05 2.137830e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs City Custodial Assistant 38758.15984 1.891398e+07 3843031.18 7.875064e+03 2281.940 128393.52 488 2.281940e+03 1113586.72 2.275701e+07 2.002757e+07 2729444.46 NULL
2023 Dept Of Citywide Admin Svcs City Laborer NA NA 217929.88 1.556642e+04 14339.140 3978.75 14 1.433914e+04 200747.96 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs City Planner 97870.00000 6.850900e+05 -10.70 -1.528571e+00 0.000 0.00 7 -1.528571e+00 -10.70 6.850793e+05 6.850793e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs City Research Scientist 88805.80769 2.308951e+06 326.73 1.256654e+01 0.000 8.75 26 0.000000e+00 0.00 2.309278e+06 2.308951e+06 326.73 NULL
2023 Dept Of Citywide Admin Svcs City Security Aide 43368.48485 1.431160e+06 503440.24 1.525576e+04 5749.970 15389.71 33 5.749970e+03 189749.01 1.934600e+06 1.620909e+06 313691.23 NULL
2023 Dept Of Citywide Admin Svcs Clerical Associate 52847.35385 2.748062e+06 54608.44 1.050162e+03 0.000 1708.50 52 0.000000e+00 0.00 2.802671e+06 2.748062e+06 54608.44 NULL
2023 Dept Of Citywide Admin Svcs Clock Repairer 4749.24000 4.749240e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.749240e+03 4.749240e+03 0.00 NULL
2023 Dept Of Citywide Admin Svcs College Aide 8118.97265 2.760451e+05 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 2.760451e+05 2.760451e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Commissioner 188857.40000 9.442870e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.442870e+05 9.442870e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Commissioner Of Citywide Administrative Services 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Community Assistant 40639.09677 1.259812e+06 65501.38 2.112948e+03 0.000 2339.25 31 0.000000e+00 0.00 1.325313e+06 1.259812e+06 65501.38 NULL
2023 Dept Of Citywide Admin Svcs Community Associate 57353.02609 3.957359e+06 344990.00 4.999855e+03 1514.750 9387.60 69 1.514750e+03 104517.75 4.302349e+06 4.061877e+06 240472.25 NULL
2023 Dept Of Citywide Admin Svcs Community Coordinator 66750.67642 5.874060e+06 188023.24 2.136628e+03 0.000 3920.25 88 0.000000e+00 0.00 6.062083e+06 5.874060e+06 188023.24 NULL
2023 Dept Of Citywide Admin Svcs Community Service Aide 38059.00000 7.611800e+04 9363.30 4.681650e+03 4681.650 312.50 2 4.681650e+03 9363.30 8.548130e+04 8.548130e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Computer Aide-Non-Spvr 68772.00000 6.877200e+04 5.66 5.660000e+00 5.660 0.00 1 5.660000e+00 5.66 6.877766e+04 6.877766e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Computer Associate 88005.30769 1.144069e+06 22781.45 1.752419e+03 2.070 338.25 13 2.070000e+00 26.91 1.166850e+06 1.144096e+06 22754.54 NULL
2023 Dept Of Citywide Admin Svcs Computer Operations Manager 135591.40000 6.779570e+05 69980.73 1.399615e+04 16.750 788.00 5 1.675000e+01 83.75 7.479377e+05 6.780408e+05 69896.98 NULL
2023 Dept Of Citywide Admin Svcs Computer Specialist 113372.94737 4.308172e+06 171403.21 4.510611e+03 1.560 2152.00 38 1.560000e+00 59.28 4.479575e+06 4.308231e+06 171343.93 NULL
2023 Dept Of Citywide Admin Svcs Computer Systems Manager 147196.32500 5.887853e+06 160840.93 4.021023e+03 0.000 1806.75 40 0.000000e+00 0.00 6.048694e+06 5.887853e+06 160840.93 NULL
2023 Dept Of Citywide Admin Svcs Confidential Strategy Planner 81255.25857 1.137574e+06 12726.52 9.090371e+02 29.870 245.00 14 2.987000e+01 418.18 1.150300e+06 1.137992e+06 12308.34 NULL
2023 Dept Of Citywide Admin Svcs Construction Project Manager 103339.30769 1.343411e+06 25583.66 1.967974e+03 0.000 355.00 13 0.000000e+00 0.00 1.368995e+06 1.343411e+06 25583.66 NULL
2023 Dept Of Citywide Admin Svcs Custodian 45297.24357 7.609937e+06 3160406.96 1.881195e+04 17619.450 99201.57 168 1.761945e+04 2960067.60 1.077034e+07 1.057000e+07 200339.36 NULL
2023 Dept Of Citywide Admin Svcs Cyber Security Analyst 68959.00000 6.895900e+04 1149.71 1.149710e+03 1149.710 26.00 1 1.149710e+03 1149.71 7.010871e+04 7.010871e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Deputy Assistant Commissioner 109434.17391 2.516986e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 2.516986e+06 2.516986e+06 0.00 NULL
2023 Dept Of Citywide Admin Svcs Deputy Commissioner 213783.00000 8.551320e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.551320e+05 8.551320e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Director Of Public Relations 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Director Of Stores 115627.00000 1.156270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.156270e+05 1.156270e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Director Of The City Record 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Director,Citywide Occupational Safety & Health Program 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Economist 70387.00000 7.038700e+04 102.86 1.028600e+02 102.860 2.75 1 1.028600e+02 102.86 7.048986e+04 7.048986e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Electrical Engineer 118226.00000 1.182260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.182260e+05 1.182260e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Electrician NA NA 908194.70 3.363684e+04 27022.680 9642.75 27 2.702268e+04 729612.36 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Elevator Mechanic NA NA 671353.52 2.237845e+04 24142.100 7406.75 30 2.237845e+04 671353.52 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Elevator Mechanic Helper NA NA 9609.75 3.203250e+03 1496.250 179.50 3 1.496250e+03 4488.75 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Environmental Engineer 90114.00000 9.011400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.011400e+04 9.011400e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Estimator 98871.00000 9.887100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.887100e+04 9.887100e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Examining Attorney 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Exec Asst To The Deputy Com For Citywide Personnel Svcs-Dcas 125359.00000 1.253590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.253590e+05 1.253590e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Executive Agency Counsel 152269.77778 4.111284e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 4.111284e+06 4.111284e+06 0.00 NULL
2023 Dept Of Citywide Admin Svcs Executive Assistant To The Commissioner 84975.00000 8.497500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.497500e+04 8.497500e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Executive Program Specialist 136050.33333 4.081510e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.081510e+05 4.081510e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs General Counsel 225000.00000 2.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.250000e+05 2.250000e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Graphic Artist 80912.50000 3.236500e+05 10281.46 2.570365e+03 1014.205 162.25 4 1.014205e+03 4056.82 3.339315e+05 3.277068e+05 6224.64 NULL
2023 Dept Of Citywide Admin Svcs High Pressure Plant Tender NA NA 709306.92 2.149415e+04 7713.000 12515.23 33 7.713000e+03 254529.00 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Industrial Hygienist 59553.00000 5.955300e+04 525.74 5.257400e+02 525.740 16.50 1 5.257400e+02 525.74 6.007874e+04 6.007874e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Investigator 47815.60000 4.781560e+05 3298.28 3.298280e+02 0.000 100.25 10 0.000000e+00 0.00 4.814543e+05 4.781560e+05 3298.28 NULL
2023 Dept Of Citywide Admin Svcs It Infrastructure Engineer 90044.00000 9.004400e+04 237.99 2.379900e+02 237.990 4.00 1 2.379900e+02 237.99 9.028199e+04 9.028199e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs It Project Specialist 127300.50000 2.546010e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.546010e+05 2.546010e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs It Service Management Specialist 128750.00000 1.287500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287500e+05 1.287500e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Job Training Participant 7738.21860 2.553612e+05 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 2.553612e+05 2.553612e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Landscape Architect 117613.00000 1.176130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.176130e+05 1.176130e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Locksmith NA NA 31400.93 3.140093e+04 31400.930 700.00 1 3.140093e+04 31400.93 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Machinist NA NA 50142.33 5.014233e+04 50142.330 813.00 1 5.014233e+04 50142.33 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Maintenance Worker NA NA 1105840.50 3.071779e+04 30963.935 23682.25 36 3.071779e+04 1105840.50 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Management Auditor 73450.00000 5.141500e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.141500e+05 5.141500e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Masons Helper NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Mayoral Program Coordinator 52912.95341 1.164085e+06 14283.51 6.492505e+02 0.000 377.75 22 0.000000e+00 0.00 1.178368e+06 1.164085e+06 14283.51 NULL
2023 Dept Of Citywide Admin Svcs Mechanical Engineer 107664.00000 3.229920e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.229920e+05 3.229920e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Media Services Technician 70000.00000 7.000000e+04 722.68 7.226800e+02 722.680 20.75 1 7.226800e+02 722.68 7.072268e+04 7.072268e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Motor Vehicle Operator 43669.00000 8.733800e+04 4546.94 2.273470e+03 2273.470 127.75 2 2.273470e+03 4546.94 9.188494e+04 9.188494e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Motor Vehicle Supervisor 63749.50000 1.274990e+05 184.56 9.228000e+01 92.280 0.00 2 9.228000e+01 184.56 1.276836e+05 1.276836e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs New York City Fellow 38353.53747 6.136566e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 6.136566e+05 6.136566e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs New York City Public Service Fellow 42730.28571 5.982240e+05 400.62 2.861571e+01 0.000 15.00 14 0.000000e+00 0.00 5.986246e+05 5.982240e+05 400.62 NULL
2023 Dept Of Citywide Admin Svcs New York City Urban Fellow 26584.66123 8.241245e+05 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 8.241245e+05 8.241245e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Office Machine Aide 50122.00000 1.002440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.002440e+05 1.002440e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Oiler NA NA 1124414.12 4.497656e+04 41624.860 12553.75 25 4.162486e+04 1040621.50 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Painter NA NA 88175.21 1.763504e+04 13908.150 1308.00 5 1.390815e+04 69540.75 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Plasterer NA NA 119769.98 2.994249e+04 28093.145 1593.75 4 2.809315e+04 112372.58 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Plumber NA NA 952756.41 5.604449e+04 56402.110 7018.75 17 5.604449e+04 952756.41 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Principal Administrative Associate - Non Supvr 64358.56410 5.019968e+06 157938.27 2.024850e+03 0.000 3943.00 78 0.000000e+00 0.00 5.177906e+06 5.019968e+06 157938.27 NULL
2023 Dept Of Citywide Admin Svcs Procurement Analyst 74361.20000 1.859030e+06 2278.56 9.114240e+01 0.000 51.25 25 0.000000e+00 0.00 1.861309e+06 1.859030e+06 2278.56 NULL
2023 Dept Of Citywide Admin Svcs Project Manager 63654.00000 6.365400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.365400e+04 6.365400e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Public Records Officer 75028.00000 7.502800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.502800e+04 7.502800e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Quality Assurance Specialist 59917.33333 7.190080e+05 47212.77 3.934398e+03 3726.275 1314.75 12 3.726275e+03 44715.30 7.662208e+05 7.637233e+05 2497.47 NULL
2023 Dept Of Citywide Admin Svcs Radio And Television Operator 62417.33333 1.872520e+05 2881.15 9.603833e+02 993.930 71.00 3 9.603833e+02 2881.15 1.901331e+05 1.901331e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Real Property Manager 53045.00000 5.304500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.304500e+04 5.304500e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Research Projects Coord 92651.30435 2.130980e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 2.130980e+06 2.130980e+06 0.00 NULL
2023 Dept Of Citywide Admin Svcs Secretary 52948.62500 4.235890e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.235890e+05 4.235890e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Secretary Of Comm 66611.00000 6.661100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.661100e+04 6.661100e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Secretary To The Deputy Commissioner 95691.00000 9.569100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.569100e+04 9.569100e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Senior It Architect 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Senior Salvage Appraiser 77609.00000 7.760900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.760900e+04 7.760900e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Senior Stationary Engineer NA NA 1380344.23 5.751434e+04 57158.600 12692.00 24 5.715860e+04 1371806.40 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Sheet Metal Worker NA NA 91787.44 4.589372e+04 45893.720 736.00 2 4.589372e+04 91787.44 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Space Analyst 88670.37500 7.093630e+05 2225.75 2.782188e+02 0.000 48.00 8 0.000000e+00 0.00 7.115888e+05 7.093630e+05 2225.75 NULL
2023 Dept Of Citywide Admin Svcs Special Assistant To The Commissioner 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Special Assistant To The First Deputy Commissioner 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Special Examiner 12329.51128 3.452263e+05 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 3.452263e+05 3.452263e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Special Officer 50207.00000 3.012420e+06 604631.82 1.007720e+04 8602.250 16845.63 60 8.602250e+03 516135.00 3.617052e+06 3.528555e+06 88496.82 NULL
2023 Dept Of Citywide Admin Svcs Staff Analyst 64776.42857 3.627480e+06 84701.86 1.512533e+03 8.215 1954.00 56 8.215000e+00 460.04 3.712182e+06 3.627940e+06 84241.82 NULL
2023 Dept Of Citywide Admin Svcs Staff Analyst Trainee 46718.60000 2.335930e+05 17.32 3.464000e+00 0.000 0.00 5 0.000000e+00 0.00 2.336103e+05 2.335930e+05 17.32 NULL
2023 Dept Of Citywide Admin Svcs Stationary Engineer NA NA 7417483.37 6.564145e+04 63798.750 76992.25 113 6.379875e+04 7209258.75 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Statistician 79405.00000 7.940500e+04 421.15 4.211500e+02 421.150 6.50 1 4.211500e+02 421.15 7.982615e+04 7.982615e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Steam Fitter NA NA 794933.46 5.678096e+04 43201.250 5899.50 14 4.320125e+04 604817.50 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Steam Fitter’s Helper NA NA 73024.93 7.302493e+04 73024.930 855.00 1 7.302493e+04 73024.93 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Stock Worker 38060.00000 3.806000e+05 16703.35 1.670335e+03 915.515 594.50 10 9.155150e+02 9155.15 3.973033e+05 3.897552e+05 7548.20 NULL
2023 Dept Of Citywide Admin Svcs Strategic Initiative Specialist 116313.20000 5.815660e+05 105292.42 2.105848e+04 0.000 1476.50 5 0.000000e+00 0.00 6.868584e+05 5.815660e+05 105292.42 NULL
2023 Dept Of Citywide Admin Svcs Summer College Intern 3182.73214 4.455825e+04 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 4.455825e+04 4.455825e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Summer Graduate Intern 4228.50000 2.537100e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.537100e+04 2.537100e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Supervising Special Officer 67500.31818 1.485007e+06 412187.09 1.873578e+04 19760.800 8135.00 22 1.873578e+04 412187.09 1.897194e+06 1.897194e+06 0.00 NULL
2023 Dept Of Citywide Admin Svcs Supervisor NA NA 71093.48 7.109348e+04 71093.480 1146.50 1 7.109348e+04 71093.48 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Supervisor Carpenter NA NA 101543.35 2.538584e+04 21523.225 1316.75 4 2.152322e+04 86092.90 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Supervisor Electrician NA NA 209109.35 6.970312e+04 89517.040 2131.75 3 6.970312e+04 209109.35 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Supervisor Elevator Mechanic NA NA 236488.38 3.941473e+04 37015.515 2322.25 6 3.701551e+04 222093.09 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Supervisor Of Mechanics 121196.00000 1.211960e+05 9424.85 9.424850e+03 9424.850 108.25 1 9.424850e+03 9424.85 1.306209e+05 1.306209e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Supervisor Of Motor Transport 75000.00000 7.500000e+04 19989.50 1.998950e+04 19989.500 341.75 1 1.998950e+04 19989.50 9.498950e+04 9.498950e+04 0.00 NULL
2023 Dept Of Citywide Admin Svcs Supervisor Of Radio And Television Operators 96171.50000 1.923430e+05 40290.96 2.014548e+04 20145.480 586.75 2 2.014548e+04 40290.96 2.326340e+05 2.326340e+05 0.00 NULL
2023 Dept Of Citywide Admin Svcs Supervisor Of Stock Workers 54286.28571 3.800040e+05 64643.79 9.234827e+03 8891.370 1519.50 7 8.891370e+03 62239.59 4.446478e+05 4.422436e+05 2404.20 NULL
2023 Dept Of Citywide Admin Svcs Supervisor Painter NA NA 62923.98 6.292398e+04 62923.980 815.50 1 6.292398e+04 62923.98 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Supervisor Plumber NA NA 146876.74 1.468767e+05 146876.740 1057.50 1 1.468767e+05 146876.74 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Supervisor Sheet Metal Worker NA NA 144803.84 1.448038e+05 144803.840 1116.00 1 1.448038e+05 144803.84 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Supervisor Steamfitter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2023 Dept Of Citywide Admin Svcs Telecommunications Associate 78543.80000 3.927190e+05 3394.07 6.788140e+02 340.550 58.50 5 3.405500e+02 1702.75 3.961131e+05 3.944218e+05 1691.32 NULL
2023 Dept Of Citywide Admin Svcs Tests And Measurement Specialist 68852.03846 1.790153e+06 12812.67 4.927950e+02 297.915 267.50 26 2.979150e+02 7745.79 1.802966e+06 1.797899e+06 5066.88 NULL
2023 Dept Of Citywide Admin Svcs Thermostat Repairer NA NA 211260.52 2.112605e+04 11666.385 1682.50 10 1.166639e+04 116663.85 NA NA NA NULL
2023 Dept Of Ed Hrly Support Staff Coop Education Trainee Computer Tech Aide/Jr 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 175 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Dept Of Ed Hrly Support Staff Coop Education Trainee Computer Tech Aide/Sr 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Dept Of Ed Hrly Support Staff F/T Dc 37 Family Para 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1999 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Dept Of Ed Hrly Support Staff F/T Film Inspection Asst. 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Dept Of Ed Hrly Support Staff F/T Group Leader 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Dept Of Ed Hrly Support Staff F/T Health Service Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 108 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Dept Of Ed Hrly Support Staff F/T School Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 10449 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Dept Of Ed Hrly Support Staff F/T School Guard 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Dept Of Ed Hrly Support Staff F/T School Lunch Helper 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 3824 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Dept Of Ed Hrly Support Staff F/T School Safety Officer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Dept Of Ed Hrly Support Staff F/T Sr. School Lunch Helper 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 3020 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Dept Of Ed Hrly Support Staff Student Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 4065 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Dept Of Ed Hrly Support Staff Substitute Recreation Assistant 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Dept Of Ed Hrly Support Staff Substitute School Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1038 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Dept Of Ed Hrly Support Staff Substitute School Lunch Helper 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 977 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Dept Of Ed Hrly Support Staff Substitute Sr. School Lunch Helper 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 580 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Dept Of Ed Hrly Support Staff Supervising School Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 579 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Dept Of Ed Hrly Support Staff NA NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2023 Dept Of Ed Para Professionals Adult Ed-30 H 45580.88235 7.748750e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 7.748750e+05 7.748750e+05 0.00 NULL
2023 Dept Of Ed Para Professionals Adult Ed-35 H 59835.00000 5.983500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.983500e+04 5.983500e+04 0.00 NULL
2023 Dept Of Ed Para Professionals Annual Ed Para 40495.10647 1.137184e+09 0.00 0.000000e+00 0.000 0.00 28082 0.000000e+00 0.00 1.137184e+09 1.137184e+09 0.00 NULL
2023 Dept Of Ed Para Professionals Pre-Ses Ed Para 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Dept Of Ed Para Professionals Substitute Ed Para NA NA 0.00 0.000000e+00 0.000 0.00 11231 0.000000e+00 0.00 NA NA NA NULL
2023 Dept Of Ed Para Professionals Teacher Aide 29147.88776 5.712986e+06 0.00 0.000000e+00 0.000 0.00 196 0.000000e+00 0.00 5.712986e+06 5.712986e+06 0.00 NULL
2023 Dept Of Ed Pedagogical 12 Month Special Education Asst. Principal 148973.94828 4.320244e+07 0.00 0.000000e+00 0.000 0.00 290 0.000000e+00 0.00 4.320244e+07 4.320244e+07 0.00 NULL
2023 Dept Of Ed Pedagogical 12 Month Special Education Supervisor 154988.69231 4.029706e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 4.029706e+06 4.029706e+06 0.00 NULL
2023 Dept Of Ed Pedagogical Adult Educat Teach - Reg Sub 35645.00000 3.564500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.564500e+04 3.564500e+04 0.00 NULL
2023 Dept Of Ed Pedagogical Adult Education Teacher 119172.85714 2.502630e+07 0.00 0.000000e+00 0.000 0.00 210 0.000000e+00 0.00 2.502630e+07 2.502630e+07 0.00 NULL
2023 Dept Of Ed Pedagogical Assistant Principal 141353.67482 5.142447e+08 0.00 0.000000e+00 0.000 0.00 3638 0.000000e+00 0.00 5.142447e+08 5.142447e+08 0.00 NULL
2023 Dept Of Ed Pedagogical Assistant Principal Assigned 156524.93333 4.695748e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 4.695748e+06 4.695748e+06 0.00 NULL
2023 Dept Of Ed Pedagogical Assistant Superintendent 177859.52222 4.802207e+07 0.00 0.000000e+00 0.000 0.00 270 0.000000e+00 0.00 4.802207e+07 4.802207e+07 0.00 NULL
2023 Dept Of Ed Pedagogical Chancellor 363346.00000 7.266920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.266920e+05 7.266920e+05 0.00 NULL
2023 Dept Of Ed Pedagogical Community Supertindent 207491.67857 1.161953e+07 0.00 0.000000e+00 0.000 0.00 56 0.000000e+00 0.00 1.161953e+07 1.161953e+07 0.00 NULL
2023 Dept Of Ed Pedagogical Cse Chairperson 165702.87500 2.651246e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.651246e+06 2.651246e+06 0.00 NULL
2023 Dept Of Ed Pedagogical Deputy Chancellor 249034.00000 1.494204e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.494204e+06 1.494204e+06 0.00 NULL
2023 Dept Of Ed Pedagogical Deputy Community Superintendent 172972.00000 1.729720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.729720e+05 1.729720e+05 0.00 NULL
2023 Dept Of Ed Pedagogical Director 157917.00000 4.737510e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.737510e+05 4.737510e+05 0.00 NULL
2023 Dept Of Ed Pedagogical Educational Administrator Csa 146794.22192 1.607397e+08 0.00 0.000000e+00 0.000 0.00 1095 0.000000e+00 0.00 1.607397e+08 1.607397e+08 0.00 NULL
2023 Dept Of Ed Pedagogical Educational Administrator Uft 147201.00000 8.832060e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.832060e+05 8.832060e+05 0.00 NULL
2023 Dept Of Ed Pedagogical Guidance Counselor 106031.55311 3.703682e+08 0.00 0.000000e+00 0.000 0.00 3493 0.000000e+00 0.00 3.703682e+08 3.703682e+08 0.00 NULL
2023 Dept Of Ed Pedagogical Guidance Counselor Assigned A 113890.27273 1.252793e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.252793e+06 1.252793e+06 0.00 NULL
2023 Dept Of Ed Pedagogical Guidance Counselor-Reg Sub 71213.15385 1.851542e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 1.851542e+06 1.851542e+06 0.00 NULL
2023 Dept Of Ed Pedagogical Lab Specialist/Assistant 97812.41667 4.694996e+06 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 4.694996e+06 4.694996e+06 0.00 NULL
2023 Dept Of Ed Pedagogical Local Instructional Supervisor 198701.60000 9.935080e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.935080e+05 9.935080e+05 0.00 NULL
2023 Dept Of Ed Pedagogical Principal 183177.35072 3.300856e+08 0.00 0.000000e+00 0.000 0.00 1802 0.000000e+00 0.00 3.300856e+08 3.300856e+08 0.00 NULL
2023 Dept Of Ed Pedagogical Principal Assigned 190965.56250 6.110898e+06 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 6.110898e+06 6.110898e+06 0.00 NULL
2023 Dept Of Ed Pedagogical Psychologist In Train - Reg Sub 53741.03448 1.558490e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 1.558490e+06 1.558490e+06 0.00 NULL
2023 Dept Of Ed Pedagogical Psychologist In Training 53572.00000 7.500080e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 7.500080e+05 7.500080e+05 0.00 NULL
2023 Dept Of Ed Pedagogical School Medical Inspector 92726.00000 6.490820e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.490820e+05 6.490820e+05 0.00 NULL
2023 Dept Of Ed Pedagogical School Psychiatrist 102944.00000 2.058880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.058880e+05 2.058880e+05 0.00 NULL
2023 Dept Of Ed Pedagogical School Psycholgist 107325.68462 1.674281e+08 0.00 0.000000e+00 0.000 0.00 1560 0.000000e+00 0.00 1.674281e+08 1.674281e+08 0.00 NULL
2023 Dept Of Ed Pedagogical School Psychologist - Reg Sub 72064.00000 2.882560e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.882560e+05 2.882560e+05 0.00 NULL
2023 Dept Of Ed Pedagogical School Secretary 66722.23857 2.203836e+08 0.00 0.000000e+00 0.000 0.00 3303 0.000000e+00 0.00 2.203836e+08 2.203836e+08 0.00 NULL
2023 Dept Of Ed Pedagogical School Secretary-Reg Sub 46820.90578 1.540408e+07 0.00 0.000000e+00 0.000 0.00 329 0.000000e+00 0.00 1.540408e+07 1.540408e+07 0.00 NULL
2023 Dept Of Ed Pedagogical School Social Worker 103166.42407 2.554401e+08 0.00 0.000000e+00 0.000 0.00 2476 0.000000e+00 0.00 2.554401e+08 2.554401e+08 0.00 NULL
2023 Dept Of Ed Pedagogical School Social Worker - Reg Sub 82043.25000 6.563460e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.563460e+05 6.563460e+05 0.00 NULL
2023 Dept Of Ed Pedagogical Supervisor 137766.24691 1.115907e+07 0.00 0.000000e+00 0.000 0.00 81 0.000000e+00 0.00 1.115907e+07 1.115907e+07 0.00 NULL
2023 Dept Of Ed Pedagogical Supervisor Assigned 160130.18750 2.562083e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.562083e+06 2.562083e+06 0.00 NULL
2023 Dept Of Ed Pedagogical Teach Asst Vocation - Reg Sub 55944.13793 1.622380e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 1.622380e+06 1.622380e+06 0.00 NULL
2023 Dept Of Ed Pedagogical Teacher 101342.52490 5.749972e+09 0.00 0.000000e+00 0.000 0.00 56738 0.000000e+00 0.00 5.749972e+09 5.749972e+09 0.00 NULL
2023 Dept Of Ed Pedagogical Teacher Assigned A 111371.81507 9.756171e+07 0.00 0.000000e+00 0.000 0.00 876 0.000000e+00 0.00 9.756171e+07 9.756171e+07 0.00 NULL
2023 Dept Of Ed Pedagogical Teacher Assigned B 102639.68750 1.642235e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.642235e+06 1.642235e+06 0.00 NULL
2023 Dept Of Ed Pedagogical Teacher Attendance 105009.18284 4.651907e+07 0.00 0.000000e+00 0.000 0.00 443 0.000000e+00 0.00 4.651907e+07 4.651907e+07 0.00 NULL
2023 Dept Of Ed Pedagogical Teacher Special Education 92793.86089 2.701600e+09 0.00 0.000000e+00 0.000 0.00 29114 0.000000e+00 0.00 2.701600e+09 2.701600e+09 0.00 NULL
2023 Dept Of Ed Pedagogical Teacher Special Education-Reg Sub 66792.79470 1.008571e+07 0.00 0.000000e+00 0.000 0.00 151 0.000000e+00 0.00 1.008571e+07 1.008571e+07 0.00 NULL
2023 Dept Of Ed Pedagogical Teacher Trainer 117973.20000 5.898660e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.898660e+05 5.898660e+05 0.00 NULL
2023 Dept Of Ed Pedagogical Teacher-Reg Sub 70017.89315 3.472888e+07 0.00 0.000000e+00 0.000 0.00 496 0.000000e+00 0.00 3.472888e+07 3.472888e+07 0.00 NULL
2023 Dept Of Ed Pedagogical Uft School Secretary Assigned - Non School Based- 12 Month 65364.00000 1.307280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.307280e+05 1.307280e+05 0.00 NULL
2023 Dept Of Ed Per Diem Teachers Assistant Principal NA NA 0.00 0.000000e+00 0.000 0.00 114 0.000000e+00 0.00 NA NA NA NULL
2023 Dept Of Ed Per Diem Teachers Guidance Counselor NA NA 0.00 0.000000e+00 0.000 0.00 124 0.000000e+00 0.00 NA NA NA NULL
2023 Dept Of Ed Per Diem Teachers Lab Specialist/Assistant NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2023 Dept Of Ed Per Diem Teachers Principal NA NA 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 NA NA NA NULL
2023 Dept Of Ed Per Diem Teachers School Psychologist NA NA 0.00 0.000000e+00 0.000 0.00 49 0.000000e+00 0.00 NA NA NA NULL
2023 Dept Of Ed Per Diem Teachers School Social Worker NA NA 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 NA NA NA NULL
2023 Dept Of Ed Per Diem Teachers Secretary NA NA 0.00 0.000000e+00 0.000 0.00 156 0.000000e+00 0.00 NA NA NA NULL
2023 Dept Of Ed Per Diem Teachers Supervisor NA NA 0.00 0.000000e+00 0.000 0.00 76 0.000000e+00 0.00 NA NA NA NULL
2023 Dept Of Ed Per Diem Teachers Teacher-General Ed NA NA 0.00 0.000000e+00 0.000 0.00 14259 0.000000e+00 0.00 NA NA NA NULL
2023 Dept Of Ed Per Diem Teachers Teacher-Special Ed NA NA 0.00 0.000000e+00 0.000 0.00 163 0.000000e+00 0.00 NA NA NA NULL
2023 Dept Of Ed Per Session Teacher School Secretary Per Session NA NA 0.00 0.000000e+00 0.000 0.00 1589 0.000000e+00 0.00 NA NA NA NULL
2023 Dept Of Ed Per Session Teacher Supervisor Per Session NA NA 0.00 0.000000e+00 0.000 0.00 1372 0.000000e+00 0.00 NA NA NA NULL
2023 Dept Of Ed Per Session Teacher Teacher- Per Session NA NA 0.00 0.000000e+00 0.000 0.00 79834 0.000000e+00 0.00 NA NA NA NULL
2023 Dept Of Environment Protection *Attorney At Law 125681.00000 1.256810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.256810e+05 1.256810e+05 0.00 NULL
2023 Dept Of Environment Protection *Custodial Assistant 45856.00000 4.585600e+04 11076.63 1.107663e+04 11076.630 311.50 1 1.107663e+04 11076.63 5.693263e+04 5.693263e+04 0.00 NULL
2023 Dept Of Environment Protection Accountant 77583.33333 4.655000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.655000e+05 4.655000e+05 0.00 NULL
2023 Dept Of Environment Protection Adm Manager-Non-Mgrl 99525.97778 8.957338e+06 636293.37 7.069926e+03 444.510 8906.25 90 4.445100e+02 40005.90 9.593631e+06 8.997344e+06 596287.47 NULL
2023 Dept Of Environment Protection Admin Community Relations Specialist 119753.50000 1.197535e+06 179911.17 1.799112e+04 7331.270 2064.25 10 7.331270e+03 73312.70 1.377446e+06 1.270848e+06 106598.47 NULL
2023 Dept Of Environment Protection Admin Construction Project Manager 107998.33333 3.239950e+05 3794.25 1.264750e+03 0.000 61.00 3 0.000000e+00 0.00 3.277892e+05 3.239950e+05 3794.25 NULL
2023 Dept Of Environment Protection Admin Contract Specialist 124026.00000 2.480520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.480520e+05 2.480520e+05 0.00 NULL
2023 Dept Of Environment Protection Admin Dir Of Laboratory 116780.50000 4.671220e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.671220e+05 4.671220e+05 0.00 NULL
2023 Dept Of Environment Protection Admin Housing Development Spec 140967.50000 2.819350e+05 1193.95 5.969750e+02 596.975 0.00 2 5.969750e+02 1193.95 2.831290e+05 2.831290e+05 0.00 NULL
2023 Dept Of Environment Protection Administrative Accountant 94647.60000 4.732380e+05 51702.72 1.034054e+04 2419.180 784.75 5 2.419180e+03 12095.90 5.249407e+05 4.853339e+05 39606.82 NULL
2023 Dept Of Environment Protection Administrative Architect 141557.33333 4.246720e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.246720e+05 4.246720e+05 0.00 NULL
2023 Dept Of Environment Protection Administrative City Planner 125042.78261 2.875984e+06 17132.28 7.448817e+02 0.000 225.25 23 0.000000e+00 0.00 2.893116e+06 2.875984e+06 17132.28 NULL
2023 Dept Of Environment Protection Administrative Community Relations Specialist 225145.00000 2.251450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.251450e+05 2.251450e+05 0.00 NULL
2023 Dept Of Environment Protection Administrative Construction Project Manager 142347.50000 2.846950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.846950e+05 2.846950e+05 0.00 NULL
2023 Dept Of Environment Protection Administrative Contract Specialist 121914.00000 2.438280e+05 35246.41 1.762321e+04 17623.205 447.25 2 1.762321e+04 35246.41 2.790744e+05 2.790744e+05 0.00 NULL
2023 Dept Of Environment Protection Administrative Director Of Laboratory 140981.61905 2.960614e+06 7113.27 3.387271e+02 0.000 86.75 21 0.000000e+00 0.00 2.967727e+06 2.960614e+06 7113.27 NULL
2023 Dept Of Environment Protection Administrative Engineer 146946.48298 4.041028e+07 592504.30 2.154561e+03 0.000 7088.00 275 0.000000e+00 0.00 4.100279e+07 4.041028e+07 592504.30 NULL
2023 Dept Of Environment Protection Administrative Horticulturist 141679.00000 4.250370e+05 22.13 7.376667e+00 0.000 0.00 3 0.000000e+00 0.00 4.250591e+05 4.250370e+05 22.13 NULL
2023 Dept Of Environment Protection Administrative Housing Development Specialist 208898.00000 2.088980e+05 310.74 3.107400e+02 310.740 0.00 1 3.107400e+02 310.74 2.092087e+05 2.092087e+05 0.00 NULL
2023 Dept Of Environment Protection Administrative Landscape Architect 145230.00000 2.904600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.904600e+05 2.904600e+05 0.00 NULL
2023 Dept Of Environment Protection Administrative Management Auditor 120471.00000 2.409420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.409420e+05 2.409420e+05 0.00 NULL
2023 Dept Of Environment Protection Administrative Manager 169948.50000 1.019691e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.019691e+06 1.019691e+06 0.00 NULL
2023 Dept Of Environment Protection Administrative Parks & Recreation Manager 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2023 Dept Of Environment Protection Administrative Procurement Analyst 124026.00000 1.240260e+05 3449.83 3.449830e+03 3449.830 67.00 1 3.449830e+03 3449.83 1.274758e+05 1.274758e+05 0.00 NULL
2023 Dept Of Environment Protection Administrative Procurement Analyst-Non-Mgrl 87693.57692 2.280033e+06 219658.99 8.448423e+03 1803.060 3916.50 26 1.803060e+03 46879.56 2.499692e+06 2.326913e+06 172779.43 NULL
2023 Dept Of Environment Protection Administrative Project Manager 129425.23151 1.902551e+07 331275.86 2.253577e+03 0.000 4814.50 147 0.000000e+00 0.00 1.935678e+07 1.902551e+07 331275.86 NULL
2023 Dept Of Environment Protection Administrative Public Health Sanitarian 136347.05556 2.454247e+06 15016.30 8.342389e+02 0.000 192.00 18 0.000000e+00 0.00 2.469263e+06 2.454247e+06 15016.30 NULL
2023 Dept Of Environment Protection Administrative Public Information Specialist 114240.00000 3.427200e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.427200e+05 3.427200e+05 0.00 NULL
2023 Dept Of Environment Protection Administrative Public Information Specialist Nm Former M1/M2 156800.00000 1.568000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.568000e+05 1.568000e+05 0.00 NULL
2023 Dept Of Environment Protection Administrative Quality Assurance Specialist 110675.20000 5.533760e+05 36350.32 7.270064e+03 0.000 510.00 5 0.000000e+00 0.00 5.897263e+05 5.533760e+05 36350.32 NULL
2023 Dept Of Environment Protection Administrative Real Property Manager 142970.25000 5.718810e+05 1671.66 4.179150e+02 0.000 23.50 4 0.000000e+00 0.00 5.735527e+05 5.718810e+05 1671.66 NULL
2023 Dept Of Environment Protection Administrative Staff Analyst 133713.29752 1.617931e+07 859765.99 7.105504e+03 0.000 9905.00 121 0.000000e+00 0.00 1.703907e+07 1.617931e+07 859765.99 NULL
2023 Dept Of Environment Protection Administrative Storekeeper 135188.00000 1.351880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.351880e+05 1.351880e+05 0.00 NULL
2023 Dept Of Environment Protection Administrative Supervisor Of Building Maintenance 123537.00000 1.235370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.235370e+05 1.235370e+05 0.00 NULL
2023 Dept Of Environment Protection Agency Attorney 97696.28000 2.442407e+06 11977.33 4.790932e+02 0.000 185.25 25 0.000000e+00 0.00 2.454384e+06 2.442407e+06 11977.33 NULL
2023 Dept Of Environment Protection Agency Attorney Interne 73472.57143 5.143080e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.143080e+05 5.143080e+05 0.00 NULL
2023 Dept Of Environment Protection Air Pollution Inspector 53285.21818 2.930687e+06 351877.08 6.397765e+03 2433.820 8619.25 55 2.433820e+03 133860.10 3.282564e+06 3.064547e+06 218016.98 NULL
2023 Dept Of Environment Protection Apprentice 42552.30263 6.467950e+06 271581.29 1.786719e+03 605.080 8245.42 152 6.050800e+02 91972.16 6.739531e+06 6.559922e+06 179609.13 NULL
2023 Dept Of Environment Protection Architect 94717.66667 2.841530e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.841530e+05 2.841530e+05 0.00 NULL
2023 Dept Of Environment Protection Assistant Architect 79844.33333 4.790660e+05 11.96 1.993333e+00 0.000 0.00 6 0.000000e+00 0.00 4.790780e+05 4.790660e+05 11.96 NULL
2023 Dept Of Environment Protection Assistant Chemical Engineer 77600.28000 1.940007e+06 262113.78 1.048455e+04 1771.680 4744.75 25 1.771680e+03 44292.00 2.202121e+06 1.984299e+06 217821.78 NULL
2023 Dept Of Environment Protection Assistant Civil Engineer 75461.50820 9.206304e+06 532298.83 4.363105e+03 2.995 9260.75 122 2.995000e+00 365.39 9.738603e+06 9.206669e+06 531933.44 NULL
2023 Dept Of Environment Protection Assistant Commissioner 183105.00000 5.493150e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.493150e+05 5.493150e+05 0.00 NULL
2023 Dept Of Environment Protection Assistant Electrical Engineer 76208.60000 2.286258e+06 43392.33 1.446411e+03 0.000 889.00 30 0.000000e+00 0.00 2.329650e+06 2.286258e+06 43392.33 NULL
2023 Dept Of Environment Protection Assistant Environmental Engineer 75404.84375 4.825910e+06 89720.52 1.401883e+03 0.000 1876.75 64 0.000000e+00 0.00 4.915631e+06 4.825910e+06 89720.52 NULL
2023 Dept Of Environment Protection Assistant Landscape Architect 77392.66667 2.321780e+05 29.30 9.766667e+00 1.020 0.00 3 1.020000e+00 3.06 2.322073e+05 2.321811e+05 26.24 NULL
2023 Dept Of Environment Protection Assistant Mechanical Engineer 74605.20238 6.266837e+06 520055.63 6.191138e+03 116.345 10556.00 84 1.163450e+02 9772.98 6.786893e+06 6.276610e+06 510282.65 NULL
2023 Dept Of Environment Protection Associate Air Pollution Inspr 71054.75000 1.989533e+06 845888.80 3.021031e+04 26534.750 15603.00 28 2.653475e+04 742973.00 2.835422e+06 2.732506e+06 102915.80 NULL
2023 Dept Of Environment Protection Associate Chemist 80048.56790 1.296787e+07 1441332.93 8.897117e+03 838.290 30626.75 162 8.382900e+02 135802.98 1.440920e+07 1.310367e+07 1305529.95 NULL
2023 Dept Of Environment Protection Associate Housing Development Specialist 102818.37500 8.225470e+05 5248.73 6.560912e+02 184.295 65.00 8 1.842950e+02 1474.36 8.277957e+05 8.240214e+05 3774.37 NULL
2023 Dept Of Environment Protection Associate Investigator 75933.75000 3.037350e+05 52883.81 1.322095e+04 4429.940 1284.00 4 4.429940e+03 17719.76 3.566188e+05 3.214548e+05 35164.05 NULL
2023 Dept Of Environment Protection Associate Laboratory Microbiologist 76446.00000 2.140488e+06 122644.98 4.380178e+03 389.890 2375.75 28 3.898900e+02 10916.92 2.263133e+06 2.151405e+06 111728.06 NULL
2023 Dept Of Environment Protection Associate Park Service Worker 32276.45455 3.550410e+05 7356.93 6.688118e+02 2.610 213.75 11 2.610000e+00 28.71 3.623979e+05 3.550697e+05 7328.22 NULL
2023 Dept Of Environment Protection Associate Project Manager 95912.62896 2.119669e+07 716831.95 3.243583e+03 0.000 11163.75 221 0.000000e+00 0.00 2.191352e+07 2.119669e+07 716831.95 NULL
2023 Dept Of Environment Protection Associate Public Health Sanitarian 88313.58824 3.002662e+06 66708.17 1.962005e+03 269.695 975.25 34 2.696950e+02 9169.63 3.069370e+06 3.011832e+06 57538.54 NULL
2023 Dept Of Environment Protection Associate Public Records Officer 82017.33333 2.460520e+05 1.91 6.366667e-01 0.000 0.00 3 0.000000e+00 0.00 2.460539e+05 2.460520e+05 1.91 NULL
2023 Dept Of Environment Protection Associate Staff Analyst 84498.89730 3.126459e+06 63310.13 1.711085e+03 0.000 1120.75 37 0.000000e+00 0.00 3.189769e+06 3.126459e+06 63310.13 NULL
2023 Dept Of Environment Protection Associate Water Use Inpector 78409.72222 2.822750e+06 931574.97 2.587708e+04 27556.275 15671.92 36 2.587708e+04 931574.97 3.754325e+06 3.754325e+06 0.00 NULL
2023 Dept Of Environment Protection Auto Mechanic NA NA 103180.96 1.289762e+04 12082.060 1578.75 8 1.208206e+04 96656.48 NA NA NA NULL
2023 Dept Of Environment Protection Bricklayer NA NA 33550.05 1.118335e+04 10958.860 487.00 3 1.095886e+04 32876.58 NA NA NA NULL
2023 Dept Of Environment Protection Captain 94070.00000 8.466300e+05 204680.99 2.274233e+04 22885.080 2988.25 9 2.274233e+04 204680.99 1.051311e+06 1.051311e+06 0.00 NULL
2023 Dept Of Environment Protection Carpenter NA NA 109511.01 2.737775e+04 35506.860 1199.25 4 2.737775e+04 109511.01 NA NA NA NULL
2023 Dept Of Environment Protection Certified It Administrator 121892.13043 2.803519e+06 268005.38 1.165241e+04 5597.970 3014.25 23 5.597970e+03 128753.31 3.071524e+06 2.932272e+06 139252.07 NULL
2023 Dept Of Environment Protection Certified It Developer 113004.04865 2.034073e+06 911.17 5.062056e+01 0.000 9.25 18 0.000000e+00 0.00 2.034984e+06 2.034073e+06 911.17 NULL
2023 Dept Of Environment Protection Chemical Engineer 85147.00000 8.514700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.514700e+04 8.514700e+04 0.00 NULL
2023 Dept Of Environment Protection Chemical Engineering Intern 68034.00000 6.803400e+04 12487.23 1.248723e+04 12487.230 292.00 1 1.248723e+04 12487.23 8.052123e+04 8.052123e+04 0.00 NULL
2023 Dept Of Environment Protection Chief Marine Engineer 87792.00000 7.023360e+05 190698.81 2.383735e+04 19228.815 2936.25 8 1.922881e+04 153830.52 8.930348e+05 8.561665e+05 36868.29 NULL
2023 Dept Of Environment Protection City Laborer NA NA 185630.93 1.091947e+04 4703.460 2967.25 17 4.703460e+03 79958.82 NA NA NA NULL
2023 Dept Of Environment Protection City Park Worker 18961.51910 2.256421e+06 72353.15 6.080097e+02 0.000 2502.50 119 0.000000e+00 0.00 2.328774e+06 2.256421e+06 72353.15 NULL
2023 Dept Of Environment Protection City Planner 87605.58824 2.978590e+06 17191.37 5.056285e+02 0.000 304.00 34 0.000000e+00 0.00 2.995781e+06 2.978590e+06 17191.37 NULL
2023 Dept Of Environment Protection City Research Scientist 97937.40517 1.136074e+07 235889.86 2.033533e+03 0.000 4804.50 116 0.000000e+00 0.00 1.159663e+07 1.136074e+07 235889.86 NULL
2023 Dept Of Environment Protection City Seasonal Aide 6843.09171 5.132319e+05 11469.97 1.529329e+02 0.000 562.75 75 0.000000e+00 0.00 5.247018e+05 5.132319e+05 11469.97 NULL
2023 Dept Of Environment Protection Civil Engineer 103816.16216 3.841198e+06 35957.15 9.718149e+02 0.000 461.50 37 0.000000e+00 0.00 3.877155e+06 3.841198e+06 35957.15 NULL
2023 Dept Of Environment Protection Civil Engineering Intern 63053.13333 9.457970e+05 54954.27 3.663618e+03 67.480 1315.25 15 6.748000e+01 1012.20 1.000751e+06 9.468092e+05 53942.07 NULL
2023 Dept Of Environment Protection Claim Specialist 55204.50000 2.208180e+05 31751.38 7.937845e+03 81.415 698.25 4 8.141500e+01 325.66 2.525694e+05 2.211437e+05 31425.72 NULL
2023 Dept Of Environment Protection Clerical Associate 40112.91246 1.379884e+07 669044.46 1.944897e+03 21.945 18578.00 344 2.194500e+01 7549.08 1.446789e+07 1.380639e+07 661495.38 NULL
2023 Dept Of Environment Protection Climber & Pruner 72273.00000 2.890920e+05 867.61 2.169025e+02 0.000 19.00 4 0.000000e+00 0.00 2.899596e+05 2.890920e+05 867.61 NULL
2023 Dept Of Environment Protection College Aide 9095.14994 3.910914e+05 0.00 0.000000e+00 0.000 0.00 43 0.000000e+00 0.00 3.910914e+05 3.910914e+05 0.00 NULL
2023 Dept Of Environment Protection Commissioner Of Environmental Protection 247577.00000 2.475770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.475770e+05 2.475770e+05 0.00 NULL
2023 Dept Of Environment Protection Community Assistant 45231.91014 8.141744e+05 92016.57 5.112032e+03 31.940 3018.50 18 3.194000e+01 574.92 9.061910e+05 8.147493e+05 91441.65 NULL
2023 Dept Of Environment Protection Community Associate 50470.66944 2.674945e+06 207850.95 3.921716e+03 28.700 5502.75 53 2.870000e+01 1521.10 2.882796e+06 2.676467e+06 206329.85 NULL
2023 Dept Of Environment Protection Community Coordinator 62880.62962 3.269793e+06 209743.38 4.033527e+03 61.705 3690.50 52 6.170500e+01 3208.66 3.479536e+06 3.273001e+06 206534.72 NULL
2023 Dept Of Environment Protection Community Service Aide 36943.33333 1.108300e+05 11169.67 3.723223e+03 91.130 413.25 3 9.113000e+01 273.39 1.219997e+05 1.111034e+05 10896.28 NULL
2023 Dept Of Environment Protection Computer Aide-Non-Spvr 57546.50000 1.150930e+05 4.07 2.035000e+00 2.035 0.00 2 2.035000e+00 4.07 1.150971e+05 1.150971e+05 0.00 NULL
2023 Dept Of Environment Protection Computer Associate 88580.20190 3.720368e+06 248504.89 5.916783e+03 120.715 4166.75 42 1.207150e+02 5070.03 3.968873e+06 3.725439e+06 243434.86 NULL
2023 Dept Of Environment Protection Computer Operations Manager 122459.00000 6.122950e+05 67336.15 1.346723e+04 14238.880 854.00 5 1.346723e+04 67336.15 6.796312e+05 6.796312e+05 0.00 NULL
2023 Dept Of Environment Protection Computer Programmer Analyst 68011.83167 6.121065e+05 197.01 2.189000e+01 0.000 4.50 9 0.000000e+00 0.00 6.123035e+05 6.121065e+05 197.01 NULL
2023 Dept Of Environment Protection Computer Service Technician 60264.00000 6.026400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.026400e+04 6.026400e+04 0.00 NULL
2023 Dept Of Environment Protection Computer Specialist 110198.88981 1.168108e+07 370995.70 3.499959e+03 5.370 4699.00 106 5.370000e+00 569.22 1.205208e+07 1.168165e+07 370426.48 NULL
2023 Dept Of Environment Protection Computer Systems Manager 136313.66667 1.226823e+06 17586.01 1.954001e+03 0.000 204.00 9 0.000000e+00 0.00 1.244409e+06 1.226823e+06 17586.01 NULL
2023 Dept Of Environment Protection Confidential Asst To The Executive Deputy Commissioner 127620.00000 1.276200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.276200e+05 1.276200e+05 0.00 NULL
2023 Dept Of Environment Protection Construction Laborer NA NA 4215160.84 1.463598e+04 11197.170 63234.75 288 1.119717e+04 3224784.96 NA NA NA NULL
2023 Dept Of Environment Protection Construction Project Manager 86185.21875 2.757927e+06 228130.48 7.129078e+03 557.950 3486.00 32 5.579500e+02 17854.40 2.986057e+06 2.775781e+06 210276.08 NULL
2023 Dept Of Environment Protection Counsel 225145.00000 4.502900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.502900e+05 4.502900e+05 0.00 NULL
2023 Dept Of Environment Protection Crane Operator Ampes NA NA 60275.37 6.027537e+04 60275.370 443.25 1 6.027537e+04 60275.37 NA NA NA NULL
2023 Dept Of Environment Protection Custodian 40679.52632 7.729110e+05 61942.86 3.260151e+03 722.340 2105.25 19 7.223400e+02 13724.46 8.348539e+05 7.866355e+05 48218.40 NULL
2023 Dept Of Environment Protection Customer Information Representative Ma L 1549 54519.50129 2.017222e+06 102534.35 2.771199e+03 89.470 2422.75 37 8.947000e+01 3310.39 2.119756e+06 2.020532e+06 99223.96 NULL
2023 Dept Of Environment Protection Cyber Security Analyst 85743.71429 6.002060e+05 200.59 2.865571e+01 0.000 4.25 7 0.000000e+00 0.00 6.004066e+05 6.002060e+05 200.59 NULL
2023 Dept Of Environment Protection Deputy Commissioner 223069.77778 2.007628e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 2.007628e+06 2.007628e+06 0.00 NULL
2023 Dept Of Environment Protection Deputy Commissioner Of It 231796.00000 2.317960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.317960e+05 2.317960e+05 0.00 NULL
2023 Dept Of Environment Protection Director Of Noise Abatement 184158.00000 1.841580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.841580e+05 1.841580e+05 0.00 NULL
2023 Dept Of Environment Protection Director Of Technical Services 155738.33333 4.672150e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.672150e+05 4.672150e+05 0.00 NULL
2023 Dept Of Environment Protection Director, Energy Management Strategy 130000.00000 2.600000e+05 0.36 1.800000e-01 0.180 0.00 2 1.800000e-01 0.36 2.600004e+05 2.600004e+05 0.00 NULL
2023 Dept Of Environment Protection District Supervisor 108242.50000 3.247275e+06 937004.62 3.123349e+04 36651.945 11317.75 30 3.123349e+04 937004.62 4.184280e+06 4.184280e+06 0.00 NULL
2023 Dept Of Environment Protection Electrical Engineer 110118.33333 3.303550e+05 32901.28 1.096709e+04 6803.760 452.00 3 6.803760e+03 20411.28 3.632563e+05 3.507663e+05 12490.00 NULL
2023 Dept Of Environment Protection Electrical Engineering Intern 65750.00000 1.972500e+05 1014.33 3.381100e+02 0.000 16.00 3 0.000000e+00 0.00 1.982643e+05 1.972500e+05 1014.33 NULL
2023 Dept Of Environment Protection Electrician NA NA 2464001.84 3.118990e+04 28909.080 26565.00 79 2.890908e+04 2283817.32 NA NA NA NULL
2023 Dept Of Environment Protection Electricians Helper NA NA 324044.59 1.543069e+04 15015.370 5378.00 21 1.501537e+04 315322.77 NA NA NA NULL
2023 Dept Of Environment Protection Engineering Technician 63431.94681 5.962603e+06 2004597.80 2.132551e+04 14858.705 43954.00 94 1.485870e+04 1396718.27 7.967201e+06 7.359321e+06 607879.53 NULL
2023 Dept Of Environment Protection Environmental Engineer 100988.33333 9.088950e+05 48267.68 5.363076e+03 389.990 724.50 9 3.899900e+02 3509.91 9.571627e+05 9.124049e+05 44757.77 NULL
2023 Dept Of Environment Protection Environmental Engineering Intern 63989.83333 7.678780e+05 898.59 7.488250e+01 0.000 23.00 12 0.000000e+00 0.00 7.687766e+05 7.678780e+05 898.59 NULL
2023 Dept Of Environment Protection Environmental Police Officer 62839.47087 1.294493e+07 1277656.37 6.202215e+03 2916.450 35476.73 206 2.916450e+03 600788.70 1.422259e+07 1.354572e+07 676867.67 NULL
2023 Dept Of Environment Protection Environmental Police Officer-Managerial 146194.50000 1.754334e+06 948.96 7.908000e+01 0.000 22.35 12 0.000000e+00 0.00 1.755283e+06 1.754334e+06 948.96 NULL
2023 Dept Of Environment Protection Executive Agency Counsel 158218.70833 3.797249e+06 28484.58 1.186858e+03 0.000 375.25 24 0.000000e+00 0.00 3.825734e+06 3.797249e+06 28484.58 NULL
2023 Dept Of Environment Protection Executive Program Specialist 155200.76471 2.638413e+06 15658.16 9.210682e+02 0.000 255.50 17 0.000000e+00 0.00 2.654071e+06 2.638413e+06 15658.16 NULL
2023 Dept Of Environment Protection Forester 67570.00000 1.351400e+05 278.39 1.391950e+02 139.195 0.00 2 1.391950e+02 278.39 1.354184e+05 1.354184e+05 0.00 NULL
2023 Dept Of Environment Protection Gardener 55967.13636 1.231277e+06 78803.37 3.581971e+03 1765.530 1947.50 22 1.765530e+03 38841.66 1.310080e+06 1.270119e+06 39961.71 NULL
2023 Dept Of Environment Protection Geologist 73962.61200 1.405290e+06 2243.08 1.180568e+02 0.000 51.50 19 0.000000e+00 0.00 1.407533e+06 1.405290e+06 2243.08 NULL
2023 Dept Of Environment Protection Graphic Artist 79306.00000 7.930600e+04 2018.30 2.018300e+03 2018.300 43.50 1 2.018300e+03 2018.30 8.132430e+04 8.132430e+04 0.00 NULL
2023 Dept Of Environment Protection Helicopter Mechanic 84252.00000 1.685040e+05 2582.37 1.291185e+03 1291.185 46.00 2 1.291185e+03 2582.37 1.710864e+05 1.710864e+05 0.00 NULL
2023 Dept Of Environment Protection Helicopter Pilot 84254.00000 1.685080e+05 501.52 2.507600e+02 250.760 10.00 2 2.507600e+02 501.52 1.690095e+05 1.690095e+05 0.00 NULL
2023 Dept Of Environment Protection Industrial Hygienist 66835.52542 3.943296e+06 227556.10 3.856883e+03 132.670 6027.00 59 1.326700e+02 7827.53 4.170852e+06 3.951124e+06 219728.57 NULL
2023 Dept Of Environment Protection Instrumental Specialist 75494.03922 3.850196e+06 227798.20 4.466631e+03 582.930 4382.00 51 5.829300e+02 29729.43 4.077994e+06 3.879925e+06 198068.77 NULL
2023 Dept Of Environment Protection Investigator 47867.00000 1.436010e+05 234.86 7.828667e+01 0.000 9.75 3 0.000000e+00 0.00 1.438359e+05 1.436010e+05 234.86 NULL
2023 Dept Of Environment Protection Laboratory Associate 52677.00000 5.267700e+04 4517.98 4.517980e+03 4517.980 148.25 1 4.517980e+03 4517.98 5.719498e+04 5.719498e+04 0.00 NULL
2023 Dept Of Environment Protection Laboratory Helper 40954.00000 1.638160e+05 37867.38 9.466845e+03 9466.845 1215.00 4 9.466845e+03 37867.38 2.016834e+05 2.016834e+05 0.00 NULL
2023 Dept Of Environment Protection Laboratory Microbiologist 59615.36364 6.557690e+05 42255.26 3.841387e+03 269.570 952.75 11 2.695700e+02 2965.27 6.980243e+05 6.587343e+05 39289.99 NULL
2023 Dept Of Environment Protection Landscape Architect 85147.00000 8.514700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.514700e+04 8.514700e+04 0.00 NULL
2023 Dept Of Environment Protection Machinist NA NA 757366.53 1.485032e+04 11571.680 11623.00 51 1.157168e+04 590155.68 NA NA NA NULL
2023 Dept Of Environment Protection Machinist’s Helper NA NA 53099.33 4.084564e+03 4289.790 917.00 13 4.084564e+03 53099.33 NA NA NA NULL
2023 Dept Of Environment Protection Management Auditor 71720.00000 7.172000e+04 8877.12 8.877120e+03 8877.120 219.75 1 8.877120e+03 8877.12 8.059712e+04 8.059712e+04 0.00 NULL
2023 Dept Of Environment Protection Management Auditor Trainee 49640.00000 4.964000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.964000e+04 4.964000e+04 0.00 NULL
2023 Dept Of Environment Protection Marine Engineer 81321.66667 7.318950e+05 184205.23 2.046725e+04 14756.320 3033.00 9 1.475632e+04 132806.88 9.161002e+05 8.647019e+05 51398.35 NULL
2023 Dept Of Environment Protection Marine Oiler 68962.00000 4.827340e+05 191476.05 2.735372e+04 24514.300 3724.00 7 2.451430e+04 171600.10 6.742101e+05 6.543341e+05 19875.95 NULL
2023 Dept Of Environment Protection Mariner 68962.00000 1.172354e+06 227185.65 1.336386e+04 6778.420 4390.75 17 6.778420e+03 115233.14 1.399540e+06 1.287587e+06 111952.51 NULL
2023 Dept Of Environment Protection Mate 77073.00000 7.707300e+05 238152.49 2.381525e+04 22661.960 4194.75 10 2.266196e+04 226619.60 1.008882e+06 9.973496e+05 11532.89 NULL
2023 Dept Of Environment Protection Mechanical Engineer 98582.30769 1.281570e+06 58283.22 4.483325e+03 147.390 789.00 13 1.473900e+02 1916.07 1.339853e+06 1.283486e+06 56367.15 NULL
2023 Dept Of Environment Protection Mechanical Engineering Intern 61651.40000 3.082570e+05 2307.57 4.615140e+02 0.000 55.50 5 0.000000e+00 0.00 3.105646e+05 3.082570e+05 2307.57 NULL
2023 Dept Of Environment Protection Motor Vehicle Operator 53772.26316 1.021673e+06 243805.84 1.283189e+04 13064.010 6008.50 19 1.283189e+04 243805.84 1.265479e+06 1.265479e+06 0.00 NULL
2023 Dept Of Environment Protection Motor Vehicle Supervisor 65371.80000 3.268590e+05 19668.54 3.933708e+03 2142.820 420.75 5 2.142820e+03 10714.10 3.465275e+05 3.375731e+05 8954.44 NULL
2023 Dept Of Environment Protection Oiler NA NA 1293022.42 2.085520e+04 17065.090 14376.00 62 1.706509e+04 1058035.58 NA NA NA NULL
2023 Dept Of Environment Protection Painter NA NA 2261.76 2.261760e+03 2261.760 33.50 1 2.261760e+03 2261.76 NA NA NA NULL
2023 Dept Of Environment Protection Plumber NA NA 530220.56 2.209252e+04 19408.295 3992.50 24 1.940829e+04 465799.08 NA NA NA NULL
2023 Dept Of Environment Protection Plumber’s Helper NA NA 9598.26 1.371180e+03 913.260 49.00 7 9.132600e+02 6392.82 NA NA NA NULL
2023 Dept Of Environment Protection Port Marine Engineer 98000.00000 9.800000e+04 19173.53 1.917353e+04 19173.530 333.75 1 1.917353e+04 19173.53 1.171735e+05 1.171735e+05 0.00 NULL
2023 Dept Of Environment Protection Principal Administrative Associate - Non Supvr 65372.80133 2.183452e+07 2321782.10 6.951443e+03 956.680 50647.00 334 9.566800e+02 319531.12 2.415630e+07 2.215405e+07 2002250.98 NULL
2023 Dept Of Environment Protection Procurement Analyst 69383.93638 4.718108e+06 65438.72 9.623341e+02 0.000 1312.00 68 0.000000e+00 0.00 4.783546e+06 4.718108e+06 65438.72 NULL
2023 Dept Of Environment Protection Project Manager 74832.45833 1.795979e+06 58022.50 2.417604e+03 0.000 1075.25 24 0.000000e+00 0.00 1.854002e+06 1.795979e+06 58022.50 NULL
2023 Dept Of Environment Protection Project Manager Intern# 62365.11111 1.122572e+06 28780.61 1.598923e+03 0.000 787.00 18 0.000000e+00 0.00 1.151353e+06 1.122572e+06 28780.61 NULL
2023 Dept Of Environment Protection Public Health Sanitarian 66645.00000 5.331600e+05 8849.59 1.106199e+03 290.900 136.00 8 2.909000e+02 2327.20 5.420096e+05 5.354872e+05 6522.39 NULL
2023 Dept Of Environment Protection Public Records Aide 49218.40000 2.460920e+05 8197.47 1.639494e+03 2546.040 281.00 5 1.639494e+03 8197.47 2.542895e+05 2.542895e+05 0.00 NULL
2023 Dept Of Environment Protection Public Records Officer 53794.00000 5.379400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.379400e+04 5.379400e+04 0.00 NULL
2023 Dept Of Environment Protection Quality Assurance Specialist 62897.00000 1.257940e+05 15952.71 7.976355e+03 7976.355 361.00 2 7.976355e+03 15952.71 1.417467e+05 1.417467e+05 0.00 NULL
2023 Dept Of Environment Protection Radio Repair Mechanic NA NA 3999.39 3.999390e+03 3999.390 52.75 1 3.999390e+03 3999.39 NA NA NA NULL
2023 Dept Of Environment Protection Research Assistant 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Dept Of Environment Protection Scientist 73840.75676 5.464216e+06 310776.64 4.199684e+03 49.625 6096.50 74 4.962500e+01 3672.25 5.774993e+06 5.467888e+06 307104.39 NULL
2023 Dept Of Environment Protection Secretary 49247.09625 1.969884e+05 27.80 6.950000e+00 0.900 1.00 4 9.000000e-01 3.60 1.970162e+05 1.969920e+05 24.20 NULL
2023 Dept Of Environment Protection Secretary To The Exec Deputy Commissioner 84048.00000 1.680960e+05 11221.00 5.610500e+03 5610.500 222.50 2 5.610500e+03 11221.00 1.793170e+05 1.793170e+05 0.00 NULL
2023 Dept Of Environment Protection Senior Adviser To The Commissioner 154500.00000 1.545000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.545000e+05 1.545000e+05 0.00 NULL
2023 Dept Of Environment Protection Senior It Architect 171045.00000 1.710450e+05 90566.48 9.056648e+04 90566.480 692.75 1 9.056648e+04 90566.48 2.616115e+05 2.616115e+05 0.00 NULL
2023 Dept Of Environment Protection Senior Photographer 64175.00000 6.417500e+04 241.49 2.414900e+02 241.490 5.75 1 2.414900e+02 241.49 6.441649e+04 6.441649e+04 0.00 NULL
2023 Dept Of Environment Protection Senior Sewage Treatment Worker NA NA 3980172.71 2.105911e+04 19445.770 54257.66 189 1.944577e+04 3675250.53 NA NA NA NULL
2023 Dept Of Environment Protection Senior Stationary Engineer NA NA 3069219.43 5.683740e+04 58384.285 27988.50 54 5.683740e+04 3069219.43 NA NA NA NULL
2023 Dept Of Environment Protection Sewage Treatment Worker NA NA 11802066.13 1.960476e+04 15717.705 175441.38 602 1.571770e+04 9462058.41 NA NA NA NULL
2023 Dept Of Environment Protection Staff Analyst 69909.58032 2.446835e+06 33370.49 9.534426e+02 0.000 744.00 35 0.000000e+00 0.00 2.480206e+06 2.446835e+06 33370.49 NULL
2023 Dept Of Environment Protection Staff Analyst Trainee 42905.74634 9.010207e+05 4886.88 2.327086e+02 0.000 198.75 21 0.000000e+00 0.00 9.059076e+05 9.010207e+05 4886.88 NULL
2023 Dept Of Environment Protection Stationary Engineer NA NA 6098976.60 3.080291e+04 28200.260 64725.75 198 2.820026e+04 5583651.48 NA NA NA NULL
2023 Dept Of Environment Protection Stock Worker 41697.00000 4.169700e+04 18426.40 1.842640e+04 18426.400 611.75 1 1.842640e+04 18426.40 6.012340e+04 6.012340e+04 0.00 NULL
2023 Dept Of Environment Protection Strategic Initiative Specialist 101060.25000 8.084820e+05 26717.17 3.339646e+03 0.000 412.00 8 0.000000e+00 0.00 8.351992e+05 8.084820e+05 26717.17 NULL
2023 Dept Of Environment Protection Summer College Intern 1889.74070 2.437765e+05 0.00 0.000000e+00 0.000 0.00 129 0.000000e+00 0.00 2.437765e+05 2.437765e+05 0.00 NULL
2023 Dept Of Environment Protection Summer Graduate Intern 2362.29450 4.724589e+04 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 4.724589e+04 4.724589e+04 0.00 NULL
2023 Dept Of Environment Protection Superintendent Of Water And Sewer Systems 136723.16071 3.828248e+06 37140.71 1.326454e+03 0.000 552.00 28 0.000000e+00 0.00 3.865389e+06 3.828248e+06 37140.71 NULL
2023 Dept Of Environment Protection Supervising Special Officer 55853.00000 5.585300e+04 24636.30 2.463630e+04 24636.300 614.00 1 2.463630e+04 24636.30 8.048930e+04 8.048930e+04 0.00 NULL
2023 Dept Of Environment Protection Supervisor 95532.40260 2.206798e+07 3946719.87 1.708537e+04 11188.440 53608.75 231 1.118844e+04 2584529.64 2.601470e+07 2.465251e+07 1362190.23 NULL
2023 Dept Of Environment Protection Supervisor Bricklayer NA NA 11470.47 1.147047e+04 11470.470 148.00 1 1.147047e+04 11470.47 NA NA NA NULL
2023 Dept Of Environment Protection Supervisor Electrician NA NA 1194703.16 4.778813e+04 51348.690 11772.75 25 4.778813e+04 1194703.16 NA NA NA NULL
2023 Dept Of Environment Protection Supervisor Of Mechanics 124801.85714 1.747226e+06 418584.99 2.989893e+04 25575.555 4470.25 14 2.557556e+04 358057.77 2.165811e+06 2.105284e+06 60527.22 NULL
2023 Dept Of Environment Protection Supervisor Of Motor Transport 74301.00000 1.486020e+05 36937.12 1.846856e+04 18468.560 692.00 2 1.846856e+04 36937.12 1.855391e+05 1.855391e+05 0.00 NULL
2023 Dept Of Environment Protection Supervisor Of Stock Workers 48038.66667 1.729392e+06 300855.41 8.357095e+03 3782.695 8630.25 36 3.782695e+03 136177.02 2.030247e+06 1.865569e+06 164678.39 NULL
2023 Dept Of Environment Protection Supervisor Painter NA NA 2430.54 2.430540e+03 2430.540 31.50 1 2.430540e+03 2430.54 NA NA NA NULL
2023 Dept Of Environment Protection Supervisor Plumber NA NA 214234.84 3.060498e+04 18727.960 1582.00 7 1.872796e+04 131095.72 NA NA NA NULL
2023 Dept Of Environment Protection Surveyor 85228.66667 1.022744e+06 1344.54 1.120450e+02 0.000 23.00 12 0.000000e+00 0.00 1.024089e+06 1.022744e+06 1344.54 NULL
2023 Dept Of Environment Protection Telecommunications Associate 83190.48569 7.487144e+05 54538.59 6.059843e+03 4457.070 967.50 9 4.457070e+03 40113.63 8.032530e+05 7.888280e+05 14424.96 NULL
2023 Dept Of Environment Protection Telecommunications Manager 174506.00000 1.745060e+05 61789.18 6.178918e+04 61789.180 489.75 1 6.178918e+04 61789.18 2.362952e+05 2.362952e+05 0.00 NULL
2023 Dept Of Environment Protection Water Treatment Plant Operator L1 47343.25000 5.681190e+05 66920.17 5.576681e+03 4053.875 1908.50 12 4.053875e+03 48646.50 6.350392e+05 6.167655e+05 18273.67 NULL
2023 Dept Of Environment Protection Water Treatment Plant Operator L2 & 3 73238.44444 6.591460e+05 72143.07 8.015897e+03 4386.580 1300.00 9 4.386580e+03 39479.22 7.312891e+05 6.986252e+05 32663.85 NULL
2023 Dept Of Environment Protection Water Use Inspector 44819.73418 3.540759e+06 309571.27 3.918624e+03 146.420 9962.37 79 1.464200e+02 11567.18 3.850330e+06 3.552326e+06 298004.09 NULL
2023 Dept Of Environment Protection Watershed Maintainer 59342.88670 1.204661e+07 733658.41 3.614081e+03 799.940 15937.72 203 7.999400e+02 162387.82 1.278026e+07 1.220899e+07 571270.59 NULL
2023 Dept Of Health/Mental Hygiene *Asist Systms Analyst 80369.00000 8.036900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.036900e+04 8.036900e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene *Assist Coordinating Manager 54697.60000 2.734880e+05 3274.00 6.548000e+02 0.000 96.50 5 0.000000e+00 0.00 2.767620e+05 2.734880e+05 3274.00 NULL
2023 Dept Of Health/Mental Hygiene *Associate Executive Director 110174.00000 1.101740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.101740e+05 1.101740e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene *Attorney At Law 125618.00000 1.256180e+05 763.33 7.633300e+02 763.330 9.75 1 7.633300e+02 763.33 1.263813e+05 1.263813e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene *Coordinating Manager 70775.00000 3.538750e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.538750e+05 3.538750e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene *Custodial Assistant 48893.00000 9.778600e+04 15588.60 7.794300e+03 7794.300 445.50 2 7.794300e+03 15588.60 1.133746e+05 1.133746e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene *Director Of Health Care Program Planning/Analysis 116398.50000 2.327970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.327970e+05 2.327970e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene *Senior Staff Officer 88422.00000 8.842200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.842200e+04 8.842200e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene *Senior Systems Analyst 51640.00000 5.164000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.164000e+04 5.164000e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene *Sr Management Consultant 99211.12500 7.936890e+05 2996.70 3.745875e+02 0.000 55.50 8 0.000000e+00 0.00 7.966857e+05 7.936890e+05 2996.70 NULL
2023 Dept Of Health/Mental Hygiene *Sr Systems Analyst - Edp 75466.00000 7.546600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.546600e+04 7.546600e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene *Supvsng Systems Analyst 66562.33333 1.996870e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.996870e+05 1.996870e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene *Systems Analyst 52745.77778 4.747120e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.747120e+05 4.747120e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Accountant 77006.80556 2.772245e+06 35245.68 9.790467e+02 20.845 644.75 36 2.084500e+01 750.42 2.807491e+06 2.772995e+06 34495.26 NULL
2023 Dept Of Health/Mental Hygiene Adm Manager-Non-Mgrl 87741.02083 8.423138e+06 281753.07 2.934928e+03 0.000 4706.25 96 0.000000e+00 0.00 8.704891e+06 8.423138e+06 281753.07 NULL
2023 Dept Of Health/Mental Hygiene Admin Community Relations Specialist 86806.03448 2.517375e+06 25266.34 8.712531e+02 0.000 359.00 29 0.000000e+00 0.00 2.542641e+06 2.517375e+06 25266.34 NULL
2023 Dept Of Health/Mental Hygiene Admin Contract Specialist 147465.00000 1.769580e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.769580e+06 1.769580e+06 0.00 NULL
2023 Dept Of Health/Mental Hygiene Administrative Accountant 101860.45909 2.240930e+06 37334.23 1.697010e+03 0.970 560.25 22 9.700000e-01 21.34 2.278264e+06 2.240951e+06 37312.89 NULL
2023 Dept Of Health/Mental Hygiene Administrative Business Promotion Coordinator 112212.75000 4.488510e+05 13565.90 3.391475e+03 0.000 156.00 4 0.000000e+00 0.00 4.624169e+05 4.488510e+05 13565.90 NULL
2023 Dept Of Health/Mental Hygiene Administrative Community Relations Specialist 155422.00000 3.108440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.108440e+05 3.108440e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Administrative Consultant 105238.60000 5.261930e+05 652.39 1.304780e+02 0.000 3.75 5 0.000000e+00 0.00 5.268454e+05 5.261930e+05 652.39 NULL
2023 Dept Of Health/Mental Hygiene Administrative Contract Specialist 109785.52941 1.866354e+06 35007.26 2.059251e+03 2.110 490.00 17 2.110000e+00 35.87 1.901361e+06 1.866390e+06 34971.39 NULL
2023 Dept Of Health/Mental Hygiene Administrative Director Of Social Services 123686.25000 4.947450e+05 47.89 1.197250e+01 0.000 0.00 4 0.000000e+00 0.00 4.947929e+05 4.947450e+05 47.89 NULL
2023 Dept Of Health/Mental Hygiene Administrative Graphic Artist 117770.00000 8.243900e+05 55.07 7.867143e+00 0.000 0.00 7 0.000000e+00 0.00 8.244451e+05 8.243900e+05 55.07 NULL
2023 Dept Of Health/Mental Hygiene Administrative Investigator 73494.50000 1.469890e+05 78.89 3.944500e+01 39.445 0.00 2 3.944500e+01 78.89 1.470679e+05 1.470679e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Administrative Labor Relations Analyst 140167.00000 4.205010e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.205010e+05 4.205010e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Administrative Management Auditor 113801.40000 1.138014e+06 35016.70 3.501670e+03 21.840 434.50 10 2.184000e+01 218.40 1.173031e+06 1.138232e+06 34798.30 NULL
2023 Dept Of Health/Mental Hygiene Administrative Manager 134867.75000 5.394710e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.394710e+05 5.394710e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Administrative Nutritionist 102589.66667 3.077690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.077690e+05 3.077690e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Administrative Printing Services Manager 123500.00000 2.470000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.470000e+05 2.470000e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Administrative Procurement Analyst 117055.00000 4.682200e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.682200e+05 4.682200e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Administrative Procurement Analyst-Non-Mgrl 99559.67656 1.592955e+06 20946.01 1.309126e+03 0.000 360.75 16 0.000000e+00 0.00 1.613901e+06 1.592955e+06 20946.01 NULL
2023 Dept Of Health/Mental Hygiene Administrative Project Manager 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Administrative Public Health Nurse 123766.48780 5.074426e+06 149892.00 3.655902e+03 341.010 1451.00 41 3.410100e+02 13981.41 5.224318e+06 5.088407e+06 135910.59 NULL
2023 Dept Of Health/Mental Hygiene Administrative Public Health Sanitarian 137075.07692 1.781976e+06 21771.07 1.674698e+03 0.000 287.50 13 0.000000e+00 0.00 1.803747e+06 1.781976e+06 21771.07 NULL
2023 Dept Of Health/Mental Hygiene Administrative Public Information Specialist 145891.60000 7.294580e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.294580e+05 7.294580e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Administrative Public Information Specialist Nm Former M1/M2 97050.16667 5.823010e+05 34281.19 5.713532e+03 410.580 473.00 6 4.105800e+02 2463.48 6.165822e+05 5.847645e+05 31817.71 NULL
2023 Dept Of Health/Mental Hygiene Administrative Quality Assurance Specialist 118331.00000 4.733240e+05 1775.61 4.439025e+02 0.000 39.50 4 0.000000e+00 0.00 4.750996e+05 4.733240e+05 1775.61 NULL
2023 Dept Of Health/Mental Hygiene Administrative Staff Analyst 114008.37998 1.630320e+07 369179.20 2.581673e+03 0.000 4422.25 143 0.000000e+00 0.00 1.667238e+07 1.630320e+07 369179.20 NULL
2023 Dept Of Health/Mental Hygiene Administrative Storekeeper 81250.00000 1.625000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.625000e+05 1.625000e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Administrative Supervisor Of Building Maintenance 103281.27273 1.136094e+06 2159.59 1.963264e+02 0.000 57.50 11 0.000000e+00 0.00 1.138254e+06 1.136094e+06 2159.59 NULL
2023 Dept Of Health/Mental Hygiene Agency Attorney 97042.78571 2.717198e+06 1133.69 4.048893e+01 0.000 19.75 28 0.000000e+00 0.00 2.718332e+06 2.717198e+06 1133.69 NULL
2023 Dept Of Health/Mental Hygiene Agency Attorney Interne 66750.00000 2.670000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.670000e+05 2.670000e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Agency Chief Contracting Officer 125730.00000 2.514600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.514600e+05 2.514600e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Agency Deputy Medical Director 163477.00000 4.904310e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.904310e+05 4.904310e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Agency Medical Director 196785.23529 3.345349e+06 27510.85 1.618285e+03 0.000 302.75 17 0.000000e+00 0.00 3.372860e+06 3.345349e+06 27510.85 NULL
2023 Dept Of Health/Mental Hygiene Architect 117823.25000 4.712930e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.712930e+05 4.712930e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Assistant Architect 82172.83333 4.930370e+05 4470.32 7.450533e+02 208.625 57.50 6 2.086250e+02 1251.75 4.975073e+05 4.942888e+05 3218.57 NULL
2023 Dept Of Health/Mental Hygiene Assistant Commisioner 177000.00000 1.770000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.770000e+05 1.770000e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Assistant Commissioner 185000.00000 1.850000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.850000e+05 1.850000e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Assistant Director Of Toxicology 123600.00000 1.236000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.236000e+05 1.236000e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Assistant Printing Press Operator 63745.74460 2.549830e+05 1691.99 4.229975e+02 88.785 59.00 4 8.878500e+01 355.14 2.566750e+05 2.553381e+05 1336.85 NULL
2023 Dept Of Health/Mental Hygiene Associate Chemist 75542.00000 7.554200e+04 3569.15 3.569150e+03 3569.150 62.00 1 3.569150e+03 3569.15 7.911115e+04 7.911115e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Associate Contract Specialist 78751.33333 1.417524e+06 52223.72 2.901318e+03 0.000 1012.50 18 0.000000e+00 0.00 1.469748e+06 1.417524e+06 52223.72 NULL
2023 Dept Of Health/Mental Hygiene Associate Investigator 72966.68750 1.167467e+06 16246.46 1.015404e+03 22.060 308.25 16 2.206000e+01 352.96 1.183713e+06 1.167820e+06 15893.50 NULL
2023 Dept Of Health/Mental Hygiene Associate Labor Relations Analyst 96379.50000 5.782770e+05 10546.41 1.757735e+03 1333.705 177.00 6 1.333705e+03 8002.23 5.888234e+05 5.862792e+05 2544.18 NULL
2023 Dept Of Health/Mental Hygiene Associate Laboratory Microbiologist 85053.35135 6.293948e+06 88330.27 1.193652e+03 0.000 1706.50 74 0.000000e+00 0.00 6.382278e+06 6.293948e+06 88330.27 NULL
2023 Dept Of Health/Mental Hygiene Associate Project Manager 108571.00000 2.171420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.171420e+05 2.171420e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Associate Public Health Sanitarian 82077.27879 1.354275e+07 409415.44 2.481306e+03 13.910 7589.00 165 1.391000e+01 2295.15 1.395217e+07 1.354505e+07 407120.29 NULL
2023 Dept Of Health/Mental Hygiene Associate Public Information Specialist 66666.66667 4.000000e+05 311.98 5.199667e+01 0.000 8.00 6 0.000000e+00 0.00 4.003120e+05 4.000000e+05 311.98 NULL
2023 Dept Of Health/Mental Hygiene Associate Public Records Officer 63752.00000 1.912560e+05 3152.25 1.050750e+03 0.000 80.50 3 0.000000e+00 0.00 1.944082e+05 1.912560e+05 3152.25 NULL
2023 Dept Of Health/Mental Hygiene Associate Quality Assurance Specialist 70424.00000 7.042400e+04 10156.92 1.015692e+04 10156.920 198.50 1 1.015692e+04 10156.92 8.058092e+04 8.058092e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Associate Staff Analyst 88351.25000 3.534050e+06 25999.08 6.499770e+02 0.000 409.75 40 0.000000e+00 0.00 3.560049e+06 3.534050e+06 25999.08 NULL
2023 Dept Of Health/Mental Hygiene Asst Comm-Prgm Dev Revw-Hmh 177000.00000 1.770000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.770000e+05 1.770000e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Asst Commissioner 177000.00000 1.770000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.770000e+05 1.770000e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Asst Commissioner For Agency Preparedness And Response 177000.00000 1.770000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.770000e+05 1.770000e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Asst Commissioner For Policy And Community Resilience 173500.00000 3.470000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.470000e+05 3.470000e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Asst Pb Hlth Adv 32728.68000 1.963721e+05 1049.39 1.748983e+02 0.000 35.00 6 0.000000e+00 0.00 1.974215e+05 1.963721e+05 1049.39 NULL
2023 Dept Of Health/Mental Hygiene Ast Commissioner For Policy And Community Resilience 177000.00000 1.770000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.770000e+05 1.770000e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Bookbinder 42316.50000 8.463300e+04 323.87 1.619350e+02 161.935 13.00 2 1.619350e+02 323.87 8.495687e+04 8.495687e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Bookkeeper 58533.00000 2.926650e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.926650e+05 2.926650e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Call Center Representative 36135.00000 3.613500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.613500e+04 3.613500e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Caseworker 69935.00000 6.993500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.993500e+04 6.993500e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Certified It Administrator 119447.82353 2.030613e+06 10799.41 6.352594e+02 50.350 136.75 17 5.035000e+01 855.95 2.041412e+06 2.031469e+06 9943.46 NULL
2023 Dept Of Health/Mental Hygiene Certified It Developer 115177.09091 2.533896e+06 37637.06 1.710775e+03 1.905 468.00 22 1.905000e+00 41.91 2.571533e+06 2.533938e+06 37595.15 NULL
2023 Dept Of Health/Mental Hygiene Chief City Medical Examiner 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene City Clinician 104106.95708 5.205348e+05 5443.20 1.088640e+03 0.000 70.00 5 0.000000e+00 0.00 5.259780e+05 5.205348e+05 5443.20 NULL
2023 Dept Of Health/Mental Hygiene City Custodial Assistant 43048.58071 2.367672e+06 632469.26 1.149944e+04 4172.370 18228.63 55 4.172370e+03 229480.35 3.000141e+06 2.597152e+06 402988.91 NULL
2023 Dept Of Health/Mental Hygiene City Dentist 95767.03000 9.576703e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.576703e+04 9.576703e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene City Deputy Medical Director 162145.00000 3.242900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.242900e+05 3.242900e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene City Laborer NA NA 119310.51 8.522179e+03 3010.125 2187.50 14 3.010125e+03 42141.75 NA NA NA NULL
2023 Dept Of Health/Mental Hygiene City Medical Director 179280.00000 1.792800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792800e+05 1.792800e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene City Medical Examiner 209076.81366 8.572149e+06 311513.85 7.597899e+03 1014.840 2931.50 41 1.014840e+03 41608.44 8.883663e+06 8.613758e+06 269905.41 NULL
2023 Dept Of Health/Mental Hygiene City Medical Specialist 132340.04258 1.468974e+07 195612.59 1.762276e+03 0.000 2052.50 111 0.000000e+00 0.00 1.488536e+07 1.468974e+07 195612.59 NULL
2023 Dept Of Health/Mental Hygiene City Mortuary Technician 30023.84251 1.441144e+06 361655.38 7.534487e+03 913.720 9878.58 48 9.137200e+02 43858.56 1.802800e+06 1.485003e+06 317796.82 NULL
2023 Dept Of Health/Mental Hygiene City Pest Control Aide 37395.70025 1.084475e+06 24433.76 8.425434e+02 0.000 896.00 29 0.000000e+00 0.00 1.108909e+06 1.084475e+06 24433.76 NULL
2023 Dept Of Health/Mental Hygiene City Research Scientist 100289.36285 9.898560e+07 1690701.77 1.712970e+03 0.000 22392.75 987 0.000000e+00 0.00 1.006763e+08 9.898560e+07 1690701.77 NULL
2023 Dept Of Health/Mental Hygiene City Seasonal Aide 2334.28772 4.435147e+04 1107.54 5.829158e+01 0.000 42.50 19 0.000000e+00 0.00 4.545901e+04 4.435147e+04 1107.54 NULL
2023 Dept Of Health/Mental Hygiene City Veterinarian 50040.08920 1.501203e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.501203e+05 1.501203e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Civil Engineer 101758.00000 1.017580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.017580e+05 1.017580e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Clerical Aide 36765.97333 3.308938e+05 9.60 1.066667e+00 0.000 0.00 9 0.000000e+00 0.00 3.309034e+05 3.308938e+05 9.60 NULL
2023 Dept Of Health/Mental Hygiene Clerical Associate 51917.74204 8.722181e+06 121947.91 7.258804e+02 0.000 2977.65 168 0.000000e+00 0.00 8.844129e+06 8.722181e+06 121947.91 NULL
2023 Dept Of Health/Mental Hygiene College Aide 7564.94799 1.066658e+06 0.00 0.000000e+00 0.000 0.00 141 0.000000e+00 0.00 1.066658e+06 1.066658e+06 0.00 NULL
2023 Dept Of Health/Mental Hygiene College Aide - Assignment Levels Ii And Iii 4956.80567 5.948167e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 5.948167e+04 5.948167e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Commissioner Of Health 243166.00000 4.863320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863320e+05 4.863320e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Community Assistant 35340.94614 2.261821e+06 33502.77 5.234808e+02 0.000 1141.25 64 0.000000e+00 0.00 2.295323e+06 2.261821e+06 33502.77 NULL
2023 Dept Of Health/Mental Hygiene Community Associate 51971.42274 4.157714e+06 77615.67 9.701959e+02 0.000 1889.00 80 0.000000e+00 0.00 4.235329e+06 4.157714e+06 77615.67 NULL
2023 Dept Of Health/Mental Hygiene Community Coordinator 72196.14431 2.339155e+07 709827.18 2.190825e+03 0.000 12934.75 324 0.000000e+00 0.00 2.410138e+07 2.339155e+07 709827.18 NULL
2023 Dept Of Health/Mental Hygiene Community Service Aide 37496.50000 7.499300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.499300e+04 7.499300e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Computer Aide-Non-Spvr 58089.46154 7.551630e+05 26110.11 2.008470e+03 0.000 592.25 13 0.000000e+00 0.00 7.812731e+05 7.551630e+05 26110.11 NULL
2023 Dept Of Health/Mental Hygiene Computer Associate 79610.18784 4.060120e+06 111898.06 2.194080e+03 3.300 1900.75 51 3.300000e+00 168.30 4.172018e+06 4.060288e+06 111729.76 NULL
2023 Dept Of Health/Mental Hygiene Computer Operations Manager 86544.00000 3.461760e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.461760e+05 3.461760e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Computer Programmer Analyst 66599.00000 1.997970e+05 0.88 2.933333e-01 0.000 0.00 3 0.000000e+00 0.00 1.997979e+05 1.997970e+05 0.88 NULL
2023 Dept Of Health/Mental Hygiene Computer Service Technician 59426.83857 4.159879e+05 7017.34 1.002477e+03 27.570 151.50 7 2.757000e+01 192.99 4.230052e+05 4.161809e+05 6824.35 NULL
2023 Dept Of Health/Mental Hygiene Computer Specialist 117567.62557 8.229734e+06 110637.28 1.580533e+03 7.965 1151.50 70 7.965000e+00 557.55 8.340371e+06 8.230291e+06 110079.73 NULL
2023 Dept Of Health/Mental Hygiene Computer Systems Manager 130559.02597 1.005304e+07 53957.86 7.007514e+02 0.000 661.50 77 0.000000e+00 0.00 1.010700e+07 1.005304e+07 53957.86 NULL
2023 Dept Of Health/Mental Hygiene Confidential Strategy Planner 88580.44444 7.972240e+05 12703.95 1.411550e+03 0.000 214.75 9 0.000000e+00 0.00 8.099279e+05 7.972240e+05 12703.95 NULL
2023 Dept Of Health/Mental Hygiene Construction Project Manager 101654.50000 2.033090e+05 3213.50 1.606750e+03 1606.750 98.50 2 1.606750e+03 3213.50 2.065225e+05 2.065225e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Consultant 81758.67816 7.113005e+06 97676.07 1.122713e+03 1.360 1691.00 87 1.360000e+00 118.32 7.210681e+06 7.113123e+06 97557.75 NULL
2023 Dept Of Health/Mental Hygiene Consultant Public Health Nurse 91007.20000 4.550360e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.550360e+05 4.550360e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Contract Specialist 68846.81250 2.203098e+06 19051.38 5.953556e+02 0.495 443.00 32 4.950000e-01 15.84 2.222149e+06 2.203114e+06 19035.54 NULL
2023 Dept Of Health/Mental Hygiene Counselor 84837.50000 3.393500e+05 87.27 2.181750e+01 0.000 0.00 4 0.000000e+00 0.00 3.394373e+05 3.393500e+05 87.27 NULL
2023 Dept Of Health/Mental Hygiene Criminalist 82350.32301 2.544625e+07 1775363.24 5.745512e+03 572.830 26178.50 309 5.728300e+02 177004.47 2.722161e+07 2.562325e+07 1598358.77 NULL
2023 Dept Of Health/Mental Hygiene Criminalist Assistant Director Of Laboratory 132014.29412 2.244243e+06 6124.40 3.602588e+02 0.000 65.50 17 0.000000e+00 0.00 2.250367e+06 2.244243e+06 6124.40 NULL
2023 Dept Of Health/Mental Hygiene Criminalist Deputy Director Of Labatory 170404.25000 6.816170e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.816170e+05 6.816170e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Criminalist Director Of Laboratory 175463.33333 5.263900e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.263900e+05 5.263900e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Custodian 45837.76654 5.958910e+05 89279.88 6.867683e+03 4658.180 2719.25 13 4.658180e+03 60556.34 6.851708e+05 6.564473e+05 28723.54 NULL
2023 Dept Of Health/Mental Hygiene Customer Information Representative Ma L 1549 52527.07736 1.733394e+06 274685.22 8.323795e+03 436.990 7239.15 33 4.369900e+02 14420.67 2.008079e+06 1.747814e+06 260264.55 NULL
2023 Dept Of Health/Mental Hygiene Cyber Security Analyst 88400.97687 2.828831e+06 21135.44 6.604825e+02 0.000 412.25 32 0.000000e+00 0.00 2.849967e+06 2.828831e+06 21135.44 NULL
2023 Dept Of Health/Mental Hygiene Deputy Chief City Medical Examiner 241434.00000 2.414340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.414340e+05 2.414340e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Deputy Commissioner 225580.00000 1.353480e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.353480e+06 1.353480e+06 0.00 NULL
2023 Dept Of Health/Mental Hygiene Deputy Commissioner For Administation 200762.00000 2.007620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.007620e+05 2.007620e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Deputy Director Of Emergency Management 147197.00000 1.471970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.471970e+05 1.471970e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Deputy Director Of Medicolegal Investigations 129768.71429 1.816762e+06 1701.84 1.215600e+02 0.000 16.00 14 0.000000e+00 0.00 1.818464e+06 1.816762e+06 1701.84 NULL
2023 Dept Of Health/Mental Hygiene Dir Of Healthcare Facilities And Provider Readiness 136114.50000 2.722290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.722290e+05 2.722290e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Director 145344.25000 5.813770e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.813770e+05 5.813770e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Director Of Biodetection And Response 97000.00000 9.700000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.700000e+04 9.700000e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Director Of Clinical Laboratories 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Director Of Community Engagement And Response 143072.50000 2.861450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.861450e+05 2.861450e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Director Of Countermeasures And Response 128000.00000 1.280000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.280000e+05 1.280000e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Director Of Crisis Assistance And Training 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Director Of Forensic Biology 217359.00000 2.173590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.173590e+05 2.173590e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Director Of Interagency Planning 123046.00000 1.230460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.230460e+05 1.230460e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Director Of Mental Health Disaster Preparedness 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Director Of Public Health Emergency Evaluation 188500.00000 3.770000e+05 1487.37 7.436850e+02 743.685 9.00 2 7.436850e+02 1487.37 3.784874e+05 3.784874e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Director Of Public Health Emergency Planning 97000.00000 9.700000e+04 9.38 9.380000e+00 9.380 0.00 1 9.380000e+00 9.38 9.700938e+04 9.700938e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Director Of Public Relations 162815.00000 4.884450e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.884450e+05 4.884450e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Director Of Security 107104.00000 1.071040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.071040e+05 1.071040e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Economist 70654.18750 2.260934e+06 31847.20 9.952250e+02 0.000 627.75 32 0.000000e+00 0.00 2.292781e+06 2.260934e+06 31847.20 NULL
2023 Dept Of Health/Mental Hygiene Electrician NA NA 86286.04 2.157151e+04 17142.660 915.25 4 1.714266e+04 68570.64 NA NA NA NULL
2023 Dept Of Health/Mental Hygiene Environmental Health Technician 46963.00000 4.696300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.696300e+04 4.696300e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Evidence And Property Control Specialist 64300.21429 2.700609e+06 403712.89 9.612212e+03 892.775 7895.25 42 8.927750e+02 37496.55 3.104322e+06 2.738106e+06 366216.34 NULL
2023 Dept Of Health/Mental Hygiene Exec Director Of Grants Management And Administration 177000.00000 1.770000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.770000e+05 1.770000e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Executive Agency Counsel 154790.12500 2.476642e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.476642e+06 2.476642e+06 0.00 NULL
2023 Dept Of Health/Mental Hygiene Executive Assistant 83000.00000 8.300000e+04 136.27 1.362700e+02 136.270 3.00 1 1.362700e+02 136.27 8.313627e+04 8.313627e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Executive Deputy Commissioner For Mental Hygiene 233800.00000 2.338000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.338000e+05 2.338000e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Executive Director Of Healthcare Systems Readiness 124803.00000 1.248030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.248030e+05 1.248030e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Executive Program Specialist 151617.50000 6.064700e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.064700e+05 6.064700e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Executive Secretary 62525.83000 6.252583e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.252583e+04 6.252583e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Exterminator 51660.58227 2.221405e+06 429704.59 9.993130e+03 3249.080 9846.25 43 3.249080e+03 139710.44 2.651110e+06 2.361115e+06 289994.15 NULL
2023 Dept Of Health/Mental Hygiene Family Pub Health Nurse 96176.18000 4.808809e+06 63956.03 1.279121e+03 0.000 809.75 50 0.000000e+00 0.00 4.872765e+06 4.808809e+06 63956.03 NULL
2023 Dept Of Health/Mental Hygiene Forensic Mortuary Technician 53435.83280 3.366457e+06 1572382.25 2.495845e+04 14736.360 36013.99 63 1.473636e+04 928390.68 4.938840e+06 4.294848e+06 643991.57 NULL
2023 Dept Of Health/Mental Hygiene Graphic Artist 79262.75000 3.170510e+05 350.83 8.770750e+01 0.000 8.50 4 0.000000e+00 0.00 3.174018e+05 3.170510e+05 350.83 NULL
2023 Dept Of Health/Mental Hygiene Health Care Prog Plan/Analyst 60789.00000 3.039450e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.039450e+05 3.039450e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Health Services Manager 166302.91176 5.654299e+06 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 5.654299e+06 5.654299e+06 0.00 NULL
2023 Dept Of Health/Mental Hygiene Health Services Manager Non Managerial Level I 103235.48315 9.187958e+06 145997.21 1.640418e+03 0.000 1980.75 89 0.000000e+00 0.00 9.333955e+06 9.187958e+06 145997.21 NULL
2023 Dept Of Health/Mental Hygiene Health Services Manager Non Managerial Level Ii 121868.49057 6.459030e+06 61458.54 1.159595e+03 0.000 796.00 53 0.000000e+00 0.00 6.520489e+06 6.459030e+06 61458.54 NULL
2023 Dept Of Health/Mental Hygiene Institutional Aide 37373.38543 7.474677e+05 904047.91 4.520240e+04 42381.635 26610.00 20 4.238164e+04 847632.70 1.651516e+06 1.595100e+06 56415.21 NULL
2023 Dept Of Health/Mental Hygiene Insurance Advisor 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Interpreter 71753.50000 1.435070e+05 1745.55 8.727750e+02 872.775 41.75 2 8.727750e+02 1745.55 1.452525e+05 1.452525e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Investigator 54001.57447 2.538074e+06 18545.35 3.945819e+02 0.000 612.25 47 0.000000e+00 0.00 2.556619e+06 2.538074e+06 18545.35 NULL
2023 Dept Of Health/Mental Hygiene It Automation And Monitoring Engineer 116668.30719 9.333465e+05 6879.84 8.599800e+02 9.900 82.25 8 9.900000e+00 79.20 9.402263e+05 9.334257e+05 6800.64 NULL
2023 Dept Of Health/Mental Hygiene It Infrastructure Engineer 102847.25000 8.227780e+05 1694.60 2.118250e+02 0.000 29.50 8 0.000000e+00 0.00 8.244726e+05 8.227780e+05 1694.60 NULL
2023 Dept Of Health/Mental Hygiene It Project Specialist 109194.23143 1.528719e+06 16990.78 1.213627e+03 72.915 214.00 14 7.291500e+01 1020.81 1.545710e+06 1.529740e+06 15969.97 NULL
2023 Dept Of Health/Mental Hygiene It Security Specialist 116342.00000 3.490260e+05 5470.69 1.823563e+03 283.490 70.50 3 2.834900e+02 850.47 3.544967e+05 3.498765e+05 4620.22 NULL
2023 Dept Of Health/Mental Hygiene It Service Management Specialist 107682.23077 1.399869e+06 23015.42 1.770417e+03 7.380 286.75 13 7.380000e+00 95.94 1.422884e+06 1.399965e+06 22919.48 NULL
2023 Dept Of Health/Mental Hygiene Jr Phnurse 41801.48373 1.600997e+07 972459.02 2.539057e+03 31.500 18539.00 383 3.150000e+01 12064.50 1.698243e+07 1.602203e+07 960394.52 NULL
2023 Dept Of Health/Mental Hygiene Junior Public Health Nurse 77346.70588 1.314894e+06 5787.68 3.404518e+02 0.000 88.00 17 0.000000e+00 0.00 1.320682e+06 1.314894e+06 5787.68 NULL
2023 Dept Of Health/Mental Hygiene Laboratory Associate 48614.44469 2.527951e+06 42264.51 8.127790e+02 0.000 1259.00 52 0.000000e+00 0.00 2.570216e+06 2.527951e+06 42264.51 NULL
2023 Dept Of Health/Mental Hygiene Laboratory Helper 43593.58333 5.231230e+05 18387.72 1.532310e+03 0.000 615.00 12 0.000000e+00 0.00 5.415107e+05 5.231230e+05 18387.72 NULL
2023 Dept Of Health/Mental Hygiene Laboratory Microbiologist 63998.65217 1.471969e+06 9117.76 3.964243e+02 0.000 230.00 23 0.000000e+00 0.00 1.481087e+06 1.471969e+06 9117.76 NULL
2023 Dept Of Health/Mental Hygiene Legal Secretarial Assistant 67225.00000 6.722500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.722500e+04 6.722500e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Machinist NA NA 6446.11 3.223055e+03 3223.055 100.25 2 3.223055e+03 6446.11 NA NA NA NULL
2023 Dept Of Health/Mental Hygiene Maintenance Worker NA NA 140553.55 1.081181e+04 1326.620 3005.25 13 1.326620e+03 17246.06 NA NA NA NULL
2023 Dept Of Health/Mental Hygiene Management Auditor 81780.66667 9.813680e+05 9533.38 7.944483e+02 2.220 154.00 12 2.220000e+00 26.64 9.909014e+05 9.813946e+05 9506.74 NULL
2023 Dept Of Health/Mental Hygiene Medical Record Librarian 51557.00000 2.577850e+05 31062.23 6.212446e+03 405.200 656.25 5 4.052000e+02 2026.00 2.888472e+05 2.598110e+05 29036.23 NULL
2023 Dept Of Health/Mental Hygiene Medical Specialist 58256.39000 5.825639e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.825639e+04 5.825639e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Medicolegal Investigator 107308.93333 4.828902e+06 553297.40 1.229550e+04 7819.040 6892.82 45 7.819040e+03 351856.80 5.382199e+06 5.180759e+06 201440.60 NULL
2023 Dept Of Health/Mental Hygiene Motor Vehicle Operator 52127.21868 1.772325e+06 330709.24 9.726742e+03 505.960 7642.75 34 5.059600e+02 17202.64 2.103035e+06 1.789528e+06 313506.60 NULL
2023 Dept Of Health/Mental Hygiene Motor Vehicle Supervisor 65192.00000 3.911520e+05 190163.27 3.169388e+04 32572.375 4044.75 6 3.169388e+04 190163.27 5.813153e+05 5.813153e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene New York City Public Service Fellow 42127.00000 8.425400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.425400e+04 8.425400e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Nurse Practicioner 110433.96153 1.546075e+06 13603.40 9.716714e+02 0.000 166.50 14 0.000000e+00 0.00 1.559679e+06 1.546075e+06 13603.40 NULL
2023 Dept Of Health/Mental Hygiene Nurse’s Aide 44391.00000 4.439100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.439100e+04 4.439100e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Nutritionist 79273.72222 1.426927e+06 7779.18 4.321767e+02 0.000 115.00 18 0.000000e+00 0.00 1.434706e+06 1.426927e+06 7779.18 NULL
2023 Dept Of Health/Mental Hygiene Office Machine Aide 44573.25000 1.782930e+05 20910.75 5.227688e+03 1724.255 545.00 4 1.724255e+03 6897.02 1.992038e+05 1.851900e+05 14013.73 NULL
2023 Dept Of Health/Mental Hygiene Oiler NA NA 244144.75 6.103619e+04 61693.600 2709.75 4 6.103619e+04 244144.75 NA NA NA NULL
2023 Dept Of Health/Mental Hygiene Paralegal Aide 55319.80000 2.765990e+05 1456.16 2.912320e+02 0.000 44.00 5 0.000000e+00 0.00 2.780552e+05 2.765990e+05 1456.16 NULL
2023 Dept Of Health/Mental Hygiene Peer Counselor 41037.00000 4.103700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.103700e+04 4.103700e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Poison Information Specialist 97533.42914 1.365468e+06 170419.34 1.217281e+04 6593.265 2252.50 14 6.593265e+03 92305.71 1.535887e+06 1.457774e+06 78113.63 NULL
2023 Dept Of Health/Mental Hygiene Principal Administrative Associate - Non Supvr 64050.67874 1.793419e+07 444779.00 1.588496e+03 0.000 10022.75 280 0.000000e+00 0.00 1.837897e+07 1.793419e+07 444779.00 NULL
2023 Dept Of Health/Mental Hygiene Printing Press Operator NA NA 850.31 2.125775e+02 272.940 15.50 4 2.125775e+02 850.31 NA NA NA NULL
2023 Dept Of Health/Mental Hygiene Procurement Analyst 77874.00000 4.360944e+06 172285.50 3.076527e+03 0.000 3389.75 56 0.000000e+00 0.00 4.533230e+06 4.360944e+06 172285.50 NULL
2023 Dept Of Health/Mental Hygiene Psychiatrist 108790.52000 1.087905e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.087905e+05 1.087905e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Public Health Adviser 48623.12224 2.455468e+07 263469.79 5.217224e+02 0.000 6610.25 505 0.000000e+00 0.00 2.481815e+07 2.455468e+07 263469.79 NULL
2023 Dept Of Health/Mental Hygiene Public Health Assistant 28645.39754 3.523384e+06 47967.63 3.899807e+02 0.000 1510.25 123 0.000000e+00 0.00 3.571352e+06 3.523384e+06 47967.63 NULL
2023 Dept Of Health/Mental Hygiene Public Health Educator 65470.30000 3.928218e+06 277923.94 4.632066e+03 0.000 4957.75 60 0.000000e+00 0.00 4.206142e+06 3.928218e+06 277923.94 NULL
2023 Dept Of Health/Mental Hygiene Public Health Emergency Preparedness Specialist 83560.31111 3.760214e+06 230875.53 5.130567e+03 941.510 3756.00 45 9.415100e+02 42367.95 3.991090e+06 3.802582e+06 188507.58 NULL
2023 Dept Of Health/Mental Hygiene Public Health Epidemiologist 76199.27941 5.181551e+06 199196.80 2.929365e+03 37.690 3341.75 68 3.769000e+01 2562.92 5.380748e+06 5.184114e+06 196633.88 NULL
2023 Dept Of Health/Mental Hygiene Public Health Nurse 47985.81892 3.311022e+07 1672857.48 2.424431e+03 18.730 31133.33 690 1.873000e+01 12923.70 3.478307e+07 3.312314e+07 1659933.78 NULL
2023 Dept Of Health/Mental Hygiene Public Health Preventative Medicine Resident 74980.66667 2.249420e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.249420e+05 2.249420e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Public Health Sanitarian 61243.50000 2.278258e+07 688514.18 1.850845e+03 0.000 15374.75 372 0.000000e+00 0.00 2.347110e+07 2.278258e+07 688514.18 NULL
2023 Dept Of Health/Mental Hygiene Public Records Aide 50232.17200 5.023217e+05 4531.61 4.531610e+02 0.000 140.00 10 0.000000e+00 0.00 5.068533e+05 5.023217e+05 4531.61 NULL
2023 Dept Of Health/Mental Hygiene Quality Assurance Specialist 35669.63794 1.783482e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.783482e+05 1.783482e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Regional Director Mental Health Mental Retard & Alc Service 125768.50000 7.546110e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.546110e+05 7.546110e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Research Assistant 65286.50000 1.305730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.305730e+05 1.305730e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Scientist 72751.23729 4.292323e+06 60566.02 1.026543e+03 0.000 974.25 59 0.000000e+00 0.00 4.352889e+06 4.292323e+06 60566.02 NULL
2023 Dept Of Health/Mental Hygiene Secretary 53089.81759 1.539605e+06 9289.41 3.203245e+02 0.000 228.22 29 0.000000e+00 0.00 1.548894e+06 1.539605e+06 9289.41 NULL
2023 Dept Of Health/Mental Hygiene Senior Consultant 98504.33333 5.910260e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.910260e+05 5.910260e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Senior It Architect 133345.33333 8.000720e+05 43.22 7.203333e+00 0.000 0.00 6 0.000000e+00 0.00 8.001152e+05 8.000720e+05 43.22 NULL
2023 Dept Of Health/Mental Hygiene Senior Medical Specialist 146213.78000 1.462138e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.462138e+05 1.462138e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Senior Mental Health Worker 45355.50000 9.071100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.071100e+04 9.071100e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Senior Photographer 59292.88889 5.336360e+05 43567.50 4.840833e+03 3907.990 1219.25 9 3.907990e+03 35171.91 5.772035e+05 5.688079e+05 8395.59 NULL
2023 Dept Of Health/Mental Hygiene Senior Stationary Engineer NA NA 94331.13 9.433113e+04 94331.130 840.50 1 9.433113e+04 94331.13 NA NA NA NULL
2023 Dept Of Health/Mental Hygiene Social Worker 70471.62712 4.157826e+06 196099.08 3.323713e+03 0.000 3258.25 59 0.000000e+00 0.00 4.353925e+06 4.157826e+06 196099.08 NULL
2023 Dept Of Health/Mental Hygiene Space Analyst 92239.00000 9.223900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.223900e+04 9.223900e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Spec Consultant 91728.85655 1.064055e+07 594700.43 5.126728e+03 0.000 8056.00 116 0.000000e+00 0.00 1.123525e+07 1.064055e+07 594700.43 NULL
2023 Dept Of Health/Mental Hygiene Special Advisor To The Mayor For Health Services 95100.00000 1.902000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.902000e+05 1.902000e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Special Assistant In Mental Retardation 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Special Assistant To Commissioner 177000.00000 1.770000e+05 294.43 2.944300e+02 294.430 0.00 1 2.944300e+02 294.43 1.772944e+05 1.772944e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Special Consultant 76332.07595 6.030234e+06 21631.85 2.738209e+02 0.000 381.50 79 0.000000e+00 0.00 6.051866e+06 6.030234e+06 21631.85 NULL
2023 Dept Of Health/Mental Hygiene Special Officer 42372.14286 2.076235e+06 596543.59 1.217436e+04 8219.860 19251.23 49 8.219860e+03 402773.14 2.672779e+06 2.479008e+06 193770.45 NULL
2023 Dept Of Health/Mental Hygiene Sr Healthcare Prog Plan Anlyst 63717.72783 3.823064e+06 44755.78 7.459297e+02 0.000 1159.25 60 0.000000e+00 0.00 3.867819e+06 3.823064e+06 44755.78 NULL
2023 Dept Of Health/Mental Hygiene Staff Analyst 71796.28571 1.005148e+06 9565.43 6.832450e+02 0.000 199.50 14 0.000000e+00 0.00 1.014713e+06 1.005148e+06 9565.43 NULL
2023 Dept Of Health/Mental Hygiene Staff Analyst Trainee 19217.31000 1.921731e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.921731e+04 1.921731e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Stationary Engineer NA NA 2164812.30 1.202674e+05 115426.050 22104.50 18 1.154261e+05 2077668.90 NA NA NA NULL
2023 Dept Of Health/Mental Hygiene Statistician 70497.00000 7.049700e+04 1.56 1.560000e+00 1.560 0.00 1 1.560000e+00 1.56 7.049856e+04 7.049856e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Steam Fitter NA NA 56720.47 2.836024e+04 28360.235 345.00 2 2.836024e+04 56720.47 NA NA NA NULL
2023 Dept Of Health/Mental Hygiene Stock Worker 41520.81818 4.567290e+05 7013.20 6.375636e+02 0.000 254.00 11 0.000000e+00 0.00 4.637422e+05 4.567290e+05 7013.20 NULL
2023 Dept Of Health/Mental Hygiene Strategic Initiative Specialist 134849.30000 1.348493e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.348493e+06 1.348493e+06 0.00 NULL
2023 Dept Of Health/Mental Hygiene Summer College Intern 420.00000 4.200000e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.200000e+02 4.200000e+02 0.00 NULL
2023 Dept Of Health/Mental Hygiene Summer Graduate Intern 8841.44487 8.841445e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 8.841445e+04 8.841445e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Supervising Computer Service Technician 80614.20000 4.030710e+05 36360.25 7.272050e+03 10.060 760.50 5 1.006000e+01 50.30 4.394312e+05 4.031213e+05 36309.95 NULL
2023 Dept Of Health/Mental Hygiene Supervising Public Health Adviser 72319.69642 8.895323e+06 338149.91 2.749186e+03 6.520 6461.50 123 6.520000e+00 801.96 9.233473e+06 8.896125e+06 337347.95 NULL
2023 Dept Of Health/Mental Hygiene Supervising Special Officer 63992.70588 1.087876e+06 356926.88 2.099570e+04 19478.220 8523.75 17 1.947822e+04 331129.74 1.444803e+06 1.419006e+06 25797.14 NULL
2023 Dept Of Health/Mental Hygiene Supervisor 56916.64706 9.675830e+05 88593.32 5.211372e+03 0.000 2063.38 17 0.000000e+00 0.00 1.056176e+06 9.675830e+05 88593.32 NULL
2023 Dept Of Health/Mental Hygiene Supervisor Electrician NA NA 195773.58 6.525786e+04 58411.950 1988.75 3 5.841195e+04 175235.85 NA NA NA NULL
2023 Dept Of Health/Mental Hygiene Supervisor I Social Work 79622.00000 1.592440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.592440e+05 1.592440e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Supervisor Ii Social Work 86563.00000 8.656300e+05 3292.18 3.292180e+02 0.000 75.50 10 0.000000e+00 0.00 8.689222e+05 8.656300e+05 3292.18 NULL
2023 Dept Of Health/Mental Hygiene Supervisor Iii Social Work 97095.33333 8.738580e+05 17815.74 1.979527e+03 15.890 293.75 9 1.589000e+01 143.01 8.916737e+05 8.740010e+05 17672.73 NULL
2023 Dept Of Health/Mental Hygiene Supervisor Of Mechanical Installations & Maintenance 107360.50000 2.147210e+05 185.83 9.291500e+01 92.915 0.00 2 9.291500e+01 185.83 2.149068e+05 2.149068e+05 0.00 NULL
2023 Dept Of Health/Mental Hygiene Supervisor Of Motor Transport 72418.00000 2.896720e+05 66949.88 1.673747e+04 5957.495 1283.25 4 5.957495e+03 23829.98 3.566219e+05 3.135020e+05 43119.90 NULL
2023 Dept Of Health/Mental Hygiene Supervisor Of Stock Workers 61159.00000 2.446360e+05 43222.49 1.080562e+04 199.710 823.75 4 1.997100e+02 798.84 2.878585e+05 2.454348e+05 42423.65 NULL
2023 Dept Of Health/Mental Hygiene Telecommunications Associate 98581.00000 9.858100e+04 160.46 1.604600e+02 160.460 0.00 1 1.604600e+02 160.46 9.874146e+04 9.874146e+04 0.00 NULL
2023 Dept Of Health/Mental Hygiene Thermostat Repairer NA NA 8016.58 4.008290e+03 4008.290 70.00 2 4.008290e+03 8016.58 NA NA NA NULL
2023 Dept Of Health/Mental Hygiene X-Ray Technician 56610.83333 6.793300e+05 45784.32 3.815360e+03 296.110 998.25 12 2.961100e+02 3553.32 7.251143e+05 6.828833e+05 42231.00 NULL
2023 Dept Of Parks & Recreation *Principal Park Supervisor 89155.00000 8.915500e+04 148.06 1.480600e+02 148.060 0.00 1 1.480600e+02 148.06 8.930306e+04 8.930306e+04 0.00 NULL
2023 Dept Of Parks & Recreation *Senior Estimator 103014.25000 4.120570e+05 1071.73 2.679325e+02 0.000 16.00 4 0.000000e+00 0.00 4.131287e+05 4.120570e+05 1071.73 NULL
2023 Dept Of Parks & Recreation Accountant 81406.00000 8.140600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.140600e+04 8.140600e+04 0.00 NULL
2023 Dept Of Parks & Recreation Adm Manager-Non-Mgrl 85362.89696 4.780322e+06 195375.09 3.488841e+03 0.000 3031.75 56 0.000000e+00 0.00 4.975697e+06 4.780322e+06 195375.09 NULL
2023 Dept Of Parks & Recreation Admin Community Relations Specialist 98544.40217 9.066085e+06 531729.65 5.779670e+03 602.745 7665.75 92 6.027450e+02 55452.54 9.597815e+06 9.121538e+06 476277.11 NULL
2023 Dept Of Parks & Recreation Admin Construction Project Manager 79872.00000 9.584640e+05 3891.76 3.243133e+02 0.000 83.75 12 0.000000e+00 0.00 9.623558e+05 9.584640e+05 3891.76 NULL
2023 Dept Of Parks & Recreation Admin Landmarks Preservationist 135135.00000 1.351350e+05 2994.96 2.994960e+03 2994.960 39.00 1 2.994960e+03 2994.96 1.381300e+05 1.381300e+05 0.00 NULL
2023 Dept Of Parks & Recreation Administrative Architect 142000.00000 2.840000e+05 2794.93 1.397465e+03 1397.465 37.25 2 1.397465e+03 2794.93 2.867949e+05 2.867949e+05 0.00 NULL
2023 Dept Of Parks & Recreation Administrative City Planner 138773.60000 6.938680e+05 2713.89 5.427780e+02 0.000 37.00 5 0.000000e+00 0.00 6.965819e+05 6.938680e+05 2713.89 NULL
2023 Dept Of Parks & Recreation Administrative Community Relations Specialist 145430.53333 2.181458e+06 40223.41 2.681561e+03 0.000 490.75 15 0.000000e+00 0.00 2.221681e+06 2.181458e+06 40223.41 NULL
2023 Dept Of Parks & Recreation Administrative Construction Project Manager 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2023 Dept Of Parks & Recreation Administrative Engineer 136825.75000 5.473030e+05 10606.60 2.651650e+03 903.530 142.25 4 9.035300e+02 3614.12 5.579096e+05 5.509171e+05 6992.48 NULL
2023 Dept Of Parks & Recreation Administrative Graphic Artist 107462.00000 2.149240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.149240e+05 2.149240e+05 0.00 NULL
2023 Dept Of Parks & Recreation Administrative Horticulturist 98158.77551 4.809780e+06 73522.51 1.500459e+03 37.900 1169.00 49 3.790000e+01 1857.10 4.883303e+06 4.811637e+06 71665.41 NULL
2023 Dept Of Parks & Recreation Administrative Landscape Architect 146380.00000 4.391400e+05 124.25 4.141667e+01 0.000 0.00 3 0.000000e+00 0.00 4.392642e+05 4.391400e+05 124.25 NULL
2023 Dept Of Parks & Recreation Administrative Management Auditor 116751.00000 1.167510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.167510e+05 1.167510e+05 0.00 NULL
2023 Dept Of Parks & Recreation Administrative Manager 158000.00000 1.580000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.580000e+05 1.580000e+05 0.00 NULL
2023 Dept Of Parks & Recreation Administrative Parks & Recreation Manager 108216.79352 1.276958e+07 618932.09 5.245187e+03 169.100 8143.50 118 1.691000e+02 19953.80 1.338851e+07 1.278954e+07 598978.29 NULL
2023 Dept Of Parks & Recreation Administrative Procurement Analyst-Non-Mgrl 88176.57143 6.172360e+05 29288.86 4.184123e+03 0.000 440.50 7 0.000000e+00 0.00 6.465249e+05 6.172360e+05 29288.86 NULL
2023 Dept Of Parks & Recreation Administrative Project Manager 115258.46341 4.725597e+06 13671.39 3.334485e+02 0.000 223.50 41 0.000000e+00 0.00 4.739268e+06 4.725597e+06 13671.39 NULL
2023 Dept Of Parks & Recreation Administrative Public Information Specialist 144272.00000 2.885440e+05 371.10 1.855500e+02 185.550 6.00 2 1.855500e+02 371.10 2.889151e+05 2.889151e+05 0.00 NULL
2023 Dept Of Parks & Recreation Administrative Public Information Specialist Nm Former M1/M2 118601.00000 1.186010e+05 1200.94 1.200940e+03 1200.940 18.00 1 1.200940e+03 1200.94 1.198019e+05 1.198019e+05 0.00 NULL
2023 Dept Of Parks & Recreation Administrative Quality Assurance Specialist 82716.00000 8.271600e+04 2331.63 2.331630e+03 2331.630 43.00 1 2.331630e+03 2331.63 8.504763e+04 8.504763e+04 0.00 NULL
2023 Dept Of Parks & Recreation Administrative Staff Analyst 112211.62500 8.976930e+06 267694.50 3.346181e+03 0.000 3537.75 80 0.000000e+00 0.00 9.244624e+06 8.976930e+06 267694.50 NULL
2023 Dept Of Parks & Recreation Administrative Supervisor Of Building Maintenance 114429.00000 2.288580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.288580e+05 2.288580e+05 0.00 NULL
2023 Dept Of Parks & Recreation Agency Attorney 95094.20000 1.426413e+06 20587.92 1.372528e+03 0.000 255.25 15 0.000000e+00 0.00 1.447001e+06 1.426413e+06 20587.92 NULL
2023 Dept Of Parks & Recreation Agency Chief Contracting Officer 162000.00000 1.620000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.620000e+05 1.620000e+05 0.00 NULL
2023 Dept Of Parks & Recreation Architect 113809.50000 1.593333e+06 10068.76 7.191971e+02 0.000 141.75 14 0.000000e+00 0.00 1.603402e+06 1.593333e+06 10068.76 NULL
2023 Dept Of Parks & Recreation Assistant Architect 83650.50000 3.346020e+05 2512.65 6.281625e+02 40.755 44.75 4 4.075500e+01 163.02 3.371147e+05 3.347650e+05 2349.63 NULL
2023 Dept Of Parks & Recreation Assistant Civil Engineer 83157.44444 7.484170e+05 28872.89 3.208099e+03 178.000 442.00 9 1.780000e+02 1602.00 7.772899e+05 7.500190e+05 27270.89 NULL
2023 Dept Of Parks & Recreation Assistant Commissioner 177360.80000 8.868040e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.868040e+05 8.868040e+05 0.00 NULL
2023 Dept Of Parks & Recreation Assistant Electrical Engineer 86214.75000 3.448590e+05 1685.50 4.213750e+02 0.680 27.00 4 6.800000e-01 2.72 3.465445e+05 3.448617e+05 1682.78 NULL
2023 Dept Of Parks & Recreation Assistant Environmental Engineer 77758.00000 2.332740e+05 74.79 2.493000e+01 20.140 0.00 3 2.014000e+01 60.42 2.333488e+05 2.333344e+05 14.37 NULL
2023 Dept Of Parks & Recreation Assistant Landscape Architect 72484.72000 1.812118e+06 6031.06 2.412424e+02 0.000 116.00 25 0.000000e+00 0.00 1.818149e+06 1.812118e+06 6031.06 NULL
2023 Dept Of Parks & Recreation Assistant Mechanical Engineer 79611.28571 5.572790e+05 5005.68 7.150971e+02 0.000 102.00 7 0.000000e+00 0.00 5.622847e+05 5.572790e+05 5005.68 NULL
2023 Dept Of Parks & Recreation Assistant To The Commissioner Of Parks And Recreation 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 5.50 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2023 Dept Of Parks & Recreation Associate Fraud Investigator 103220.00000 1.032200e+05 19540.50 1.954050e+04 19540.500 257.00 1 1.954050e+04 19540.50 1.227605e+05 1.227605e+05 0.00 NULL
2023 Dept Of Parks & Recreation Associate Labor Relations Analyst 88000.00000 8.800000e+04 8597.84 8.597840e+03 8597.840 141.00 1 8.597840e+03 8597.84 9.659784e+04 9.659784e+04 0.00 NULL
2023 Dept Of Parks & Recreation Associate Park Service Worker 47291.03139 1.839621e+07 1678741.97 4.315532e+03 1128.930 37563.02 389 1.128930e+03 439153.77 2.007495e+07 1.883536e+07 1239588.20 NULL
2023 Dept Of Parks & Recreation Associate Project Manager 99771.71419 7.383107e+06 137409.73 1.856888e+03 0.000 1918.50 74 0.000000e+00 0.00 7.520517e+06 7.383107e+06 137409.73 NULL
2023 Dept Of Parks & Recreation Associate Quality Assurance Specialist 82914.00000 8.291400e+04 4327.13 4.327130e+03 4327.130 94.50 1 4.327130e+03 4327.13 8.724113e+04 8.724113e+04 0.00 NULL
2023 Dept Of Parks & Recreation Associate Staff Analyst 76142.96875 1.218288e+06 5354.70 3.346687e+02 0.000 97.75 16 0.000000e+00 0.00 1.223642e+06 1.218288e+06 5354.70 NULL
2023 Dept Of Parks & Recreation Associate Urban Designer 88936.73333 1.334051e+06 20788.33 1.385889e+03 0.000 361.25 15 0.000000e+00 0.00 1.354839e+06 1.334051e+06 20788.33 NULL
2023 Dept Of Parks & Recreation Associate Urban Park Ranger 59071.47107 7.147648e+06 1145731.05 9.468852e+03 5081.280 25599.67 121 5.081280e+03 614834.88 8.293379e+06 7.762483e+06 530896.17 NULL
2023 Dept Of Parks & Recreation Auto Mechanic NA NA 111697.07 3.603131e+03 2092.970 1848.50 31 2.092970e+03 64882.07 NA NA NA NULL
2023 Dept Of Parks & Recreation Automotive Service Worker 41791.60932 3.343329e+05 7141.08 8.926350e+02 561.590 195.75 8 5.615900e+02 4492.72 3.414740e+05 3.388256e+05 2648.36 NULL
2023 Dept Of Parks & Recreation Blacksmith NA NA 141028.67 1.282079e+04 5380.320 1601.75 11 5.380320e+03 59183.52 NA NA NA NULL
2023 Dept Of Parks & Recreation Blacksmith’s Helper NA NA 139884.91 1.554277e+04 14428.160 2354.75 9 1.442816e+04 129853.44 NA NA NA NULL
2023 Dept Of Parks & Recreation Borough Commissioner 177018.83333 1.062113e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.062113e+06 1.062113e+06 0.00 NULL
2023 Dept Of Parks & Recreation Carpenter NA NA 449063.40 1.122658e+04 7682.065 5532.25 40 7.682065e+03 307282.60 NA NA NA NULL
2023 Dept Of Parks & Recreation Cement Mason NA NA 324703.43 1.546207e+04 8898.500 3496.50 21 8.898500e+03 186868.50 NA NA NA NULL
2023 Dept Of Parks & Recreation Certified It Administrator 112028.33333 2.016510e+06 71695.87 3.983104e+03 308.275 917.75 18 3.082750e+02 5548.95 2.088206e+06 2.022059e+06 66146.92 NULL
2023 Dept Of Parks & Recreation Certified It Developer 108321.53846 1.408180e+06 49455.32 3.804255e+03 0.000 629.00 13 0.000000e+00 0.00 1.457635e+06 1.408180e+06 49455.32 NULL
2023 Dept Of Parks & Recreation Chief Lifeguard 31280.64436 3.784958e+06 186423.01 1.540686e+03 348.350 2892.25 121 3.483500e+02 42150.35 3.971381e+06 3.827108e+06 144272.66 NULL
2023 Dept Of Parks & Recreation City Park Worker 27818.14124 5.891882e+07 3099721.47 1.463513e+03 223.430 95366.96 2118 2.234300e+02 473224.74 6.201854e+07 5.939205e+07 2626496.73 NULL
2023 Dept Of Parks & Recreation City Planner 98567.12500 1.577074e+06 478.58 2.991125e+01 0.000 9.25 16 0.000000e+00 0.00 1.577553e+06 1.577074e+06 478.58 NULL
2023 Dept Of Parks & Recreation City Research Scientist 95136.39440 2.758955e+06 4113.89 1.418583e+02 0.000 94.25 29 0.000000e+00 0.00 2.763069e+06 2.758955e+06 4113.89 NULL
2023 Dept Of Parks & Recreation City Seasonal Aide 9453.18203 2.243240e+07 1431451.68 6.032245e+02 18.120 52035.55 2373 1.812000e+01 42998.76 2.386385e+07 2.247540e+07 1388452.92 NULL
2023 Dept Of Parks & Recreation Civil Engineer 118589.22222 1.067303e+06 246.02 2.733556e+01 0.000 0.00 9 0.000000e+00 0.00 1.067549e+06 1.067303e+06 246.02 NULL
2023 Dept Of Parks & Recreation Civil Engineering Intern 64608.00000 6.460800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.460800e+04 6.460800e+04 0.00 NULL
2023 Dept Of Parks & Recreation Clerical Aide 11289.04728 6.773428e+04 1606.48 2.677467e+02 6.860 65.50 6 6.860000e+00 41.16 6.934076e+04 6.777544e+04 1565.32 NULL
2023 Dept Of Parks & Recreation Clerical Associate 55291.56522 2.543412e+06 28677.84 6.234313e+02 0.000 889.00 46 0.000000e+00 0.00 2.572090e+06 2.543412e+06 28677.84 NULL
2023 Dept Of Parks & Recreation Climber & Pruner 74268.41414 7.352573e+06 956483.66 9.661451e+03 5596.800 16360.80 99 5.596800e+03 554083.20 8.309057e+06 7.906656e+06 402400.46 NULL
2023 Dept Of Parks & Recreation Commissioner Of Parks & Recreation 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2023 Dept Of Parks & Recreation Community Assistant 42123.50000 1.684940e+05 0.98 2.450000e-01 0.000 0.00 4 0.000000e+00 0.00 1.684950e+05 1.684940e+05 0.98 NULL
2023 Dept Of Parks & Recreation Community Associate 33566.39777 5.068526e+06 27778.65 1.839646e+02 0.000 859.25 151 0.000000e+00 0.00 5.096305e+06 5.068526e+06 27778.65 NULL
2023 Dept Of Parks & Recreation Community Coordinator 70088.31116 4.051104e+07 1316252.65 2.277254e+03 0.000 24068.08 578 0.000000e+00 0.00 4.182730e+07 4.051104e+07 1316252.65 NULL
2023 Dept Of Parks & Recreation Computer Aide-Non-Spvr 60304.40000 3.015220e+05 6299.83 1.259966e+03 288.600 128.75 5 2.886000e+02 1443.00 3.078218e+05 3.029650e+05 4856.83 NULL
2023 Dept Of Parks & Recreation Computer Associate 82466.84551 1.484403e+06 72044.21 4.002456e+03 3.630 1106.50 18 3.630000e+00 65.34 1.556447e+06 1.484469e+06 71978.87 NULL
2023 Dept Of Parks & Recreation Computer Operations Manager 128787.25000 5.151490e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.151490e+05 5.151490e+05 0.00 NULL
2023 Dept Of Parks & Recreation Computer Specialist 106324.18750 1.701187e+06 17201.84 1.075115e+03 19.980 272.50 16 1.998000e+01 319.68 1.718389e+06 1.701507e+06 16882.16 NULL
2023 Dept Of Parks & Recreation Computer Systems Manager 139475.40000 6.973770e+05 7295.50 1.459100e+03 0.000 115.00 5 0.000000e+00 0.00 7.046725e+05 6.973770e+05 7295.50 NULL
2023 Dept Of Parks & Recreation Construction Project Manager 94844.57895 7.208188e+06 205326.26 2.701661e+03 47.625 3018.50 76 4.762500e+01 3619.50 7.413514e+06 7.211808e+06 201706.76 NULL
2023 Dept Of Parks & Recreation Counsel 204000.00000 2.040000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.040000e+05 2.040000e+05 0.00 NULL
2023 Dept Of Parks & Recreation Cyber Security Analyst 103000.00000 1.030000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030000e+05 1.030000e+05 0.00 NULL
2023 Dept Of Parks & Recreation Deputy Borough Commissioner 165000.00000 8.250000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.250000e+05 8.250000e+05 0.00 NULL
2023 Dept Of Parks & Recreation Deputy Chief Of Operations 127961.92857 1.791467e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.791467e+06 1.791467e+06 0.00 NULL
2023 Dept Of Parks & Recreation Deputy Commissioner 201568.66667 1.209412e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.209412e+06 1.209412e+06 0.00 NULL
2023 Dept Of Parks & Recreation Director Of Community Involvement 128750.00000 1.287500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287500e+05 1.287500e+05 0.00 NULL
2023 Dept Of Parks & Recreation Director Of Puppetry 67706.00000 6.770600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.770600e+04 6.770600e+04 0.00 NULL
2023 Dept Of Parks & Recreation Director Of Urban Park Ranger Program 101058.66667 3.031760e+05 2655.74 8.852467e+02 0.000 42.50 3 0.000000e+00 0.00 3.058317e+05 3.031760e+05 2655.74 NULL
2023 Dept Of Parks & Recreation Electrical Engineer 107378.00000 4.295120e+05 3261.00 8.152500e+02 0.000 43.25 4 0.000000e+00 0.00 4.327730e+05 4.295120e+05 3261.00 NULL
2023 Dept Of Parks & Recreation Electrician NA NA 556521.04 1.504111e+04 8394.480 5908.50 37 8.394480e+03 310595.76 NA NA NA NULL
2023 Dept Of Parks & Recreation Engineering Technician 65279.00000 6.527900e+04 714.60 7.146000e+02 714.600 20.00 1 7.146000e+02 714.60 6.599360e+04 6.599360e+04 0.00 NULL
2023 Dept Of Parks & Recreation Environmental Engineer 114863.00000 1.148630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.148630e+05 1.148630e+05 0.00 NULL
2023 Dept Of Parks & Recreation Estimator 102760.00000 1.027600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.027600e+05 1.027600e+05 0.00 NULL
2023 Dept Of Parks & Recreation Executive Agency Counsel 151560.50000 6.062420e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.062420e+05 6.062420e+05 0.00 NULL
2023 Dept Of Parks & Recreation Executive Assistant To The Commissioner 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2023 Dept Of Parks & Recreation Exterminator 53811.60000 8.071740e+05 249856.38 1.665709e+04 7301.360 5892.00 15 7.301360e+03 109520.40 1.057030e+06 9.166944e+05 140335.98 NULL
2023 Dept Of Parks & Recreation Forester 64481.71423 4.965092e+06 53675.95 6.970903e+02 25.710 1112.50 77 2.571000e+01 1979.67 5.018768e+06 4.967072e+06 51696.28 NULL
2023 Dept Of Parks & Recreation Gardener 51862.36175 1.218766e+07 995846.56 4.237645e+03 461.180 23908.42 235 4.611800e+02 108377.30 1.318350e+07 1.229603e+07 887469.26 NULL
2023 Dept Of Parks & Recreation Graphic Artist 45644.52000 9.128904e+04 970.67 4.853350e+02 485.335 22.00 2 4.853350e+02 970.67 9.225971e+04 9.225971e+04 0.00 NULL
2023 Dept Of Parks & Recreation Hostler 36124.68020 7.224936e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.224936e+04 7.224936e+04 0.00 NULL
2023 Dept Of Parks & Recreation Investigator 73225.61538 9.519330e+05 38531.22 2.963940e+03 0.000 664.50 13 0.000000e+00 0.00 9.904642e+05 9.519330e+05 38531.22 NULL
2023 Dept Of Parks & Recreation It Automation And Monitoring Engineer 101349.00000 3.040470e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.040470e+05 3.040470e+05 0.00 NULL
2023 Dept Of Parks & Recreation It Infrastructure Engineer 97353.00000 9.735300e+04 16530.13 1.653013e+04 16530.130 279.75 1 1.653013e+04 16530.13 1.138831e+05 1.138831e+05 0.00 NULL
2023 Dept Of Parks & Recreation It Project Specialist 100486.35294 1.708268e+06 22572.49 1.327794e+03 0.000 375.00 17 0.000000e+00 0.00 1.730840e+06 1.708268e+06 22572.49 NULL
2023 Dept Of Parks & Recreation It Service Management Specialist 82177.50000 1.643550e+05 65.62 3.281000e+01 32.810 0.00 2 3.281000e+01 65.62 1.644206e+05 1.644206e+05 0.00 NULL
2023 Dept Of Parks & Recreation Job Training Participant 6095.92478 3.396040e+07 1300636.66 2.334656e+02 0.000 56281.25 5571 0.000000e+00 0.00 3.526103e+07 3.396040e+07 1300636.66 NULL
2023 Dept Of Parks & Recreation Labor Relations Analyst 75497.66667 2.264930e+05 258.59 8.619667e+01 0.000 7.00 3 0.000000e+00 0.00 2.267516e+05 2.264930e+05 258.59 NULL
2023 Dept Of Parks & Recreation Landmarks Preservationist 85078.66667 5.104720e+05 1795.78 2.992967e+02 63.435 38.75 6 6.343500e+01 380.61 5.122678e+05 5.108526e+05 1415.17 NULL
2023 Dept Of Parks & Recreation Landscape Architect 106988.71717 1.059188e+07 105340.23 1.064043e+03 0.000 1441.25 99 0.000000e+00 0.00 1.069722e+07 1.059188e+07 105340.23 NULL
2023 Dept Of Parks & Recreation Letterer And Sign Painter NA NA 63155.39 2.105180e+04 10252.850 1330.00 3 1.025285e+04 30758.55 NA NA NA NULL
2023 Dept Of Parks & Recreation Lifeguard 5628.48647 6.832983e+06 100585.23 8.285439e+01 28.240 2306.50 1214 2.824000e+01 34283.36 6.933568e+06 6.867266e+06 66301.87 NULL
2023 Dept Of Parks & Recreation Machinist NA NA 24581.83 8.193943e+03 2175.430 373.75 3 2.175430e+03 6526.29 NA NA NA NULL
2023 Dept Of Parks & Recreation Maintenance Worker NA NA 492688.63 4.692273e+03 911.430 10509.25 105 9.114300e+02 95700.15 NA NA NA NULL
2023 Dept Of Parks & Recreation Management Auditor 87609.66667 2.628290e+05 9.85 3.283333e+00 0.000 0.00 3 0.000000e+00 0.00 2.628388e+05 2.628290e+05 9.85 NULL
2023 Dept Of Parks & Recreation Manager Of Park License Agreements 160112.00000 1.601120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.601120e+05 1.601120e+05 0.00 NULL
2023 Dept Of Parks & Recreation Marine Maintenance Mechanic 76436.00000 2.293080e+05 43.51 1.450333e+01 0.000 1.00 3 0.000000e+00 0.00 2.293515e+05 2.293080e+05 43.51 NULL
2023 Dept Of Parks & Recreation Masons Helper NA NA 25187.16 6.296790e+03 1038.025 495.75 4 1.038025e+03 4152.10 NA NA NA NULL
2023 Dept Of Parks & Recreation Mechanical Engineer 114629.50000 2.292590e+05 1.89 9.450000e-01 0.945 0.00 2 9.450000e-01 1.89 2.292609e+05 2.292609e+05 0.00 NULL
2023 Dept Of Parks & Recreation Monuments Officer 96682.00000 9.668200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.668200e+04 9.668200e+04 0.00 NULL
2023 Dept Of Parks & Recreation Oiler NA NA 146489.55 3.662239e+04 28467.235 1595.00 4 2.846724e+04 113868.94 NA NA NA NULL
2023 Dept Of Parks & Recreation Painter NA NA 462013.91 1.650050e+04 14608.595 6868.50 28 1.460859e+04 409040.66 NA NA NA NULL
2023 Dept Of Parks & Recreation Park Supervisor 82898.05315 4.459915e+07 4611373.99 8.571327e+03 4983.530 79616.85 538 4.983530e+03 2681139.14 4.921053e+07 4.728029e+07 1930234.85 NULL
2023 Dept Of Parks & Recreation Playground Associate 9271.50329 2.197346e+06 32826.63 1.385090e+02 0.000 1455.75 237 0.000000e+00 0.00 2.230173e+06 2.197346e+06 32826.63 NULL
2023 Dept Of Parks & Recreation Plumber NA NA 1827782.16 1.986720e+04 8970.170 13946.50 92 8.970170e+03 825255.64 NA NA NA NULL
2023 Dept Of Parks & Recreation Plumber’s Helper NA NA 201075.98 3.351266e+04 43352.315 2423.50 6 3.351266e+04 201075.98 NA NA NA NULL
2023 Dept Of Parks & Recreation Principal Administrative Associate - Non Supvr 69080.97967 9.256851e+06 306015.11 2.283695e+03 4.305 6011.73 134 4.305000e+00 576.87 9.562866e+06 9.257428e+06 305438.24 NULL
2023 Dept Of Parks & Recreation Procurement Analyst 73909.80952 1.552106e+06 49393.20 2.352057e+03 0.000 1019.25 21 0.000000e+00 0.00 1.601499e+06 1.552106e+06 49393.20 NULL
2023 Dept Of Parks & Recreation Project Manager 83000.57143 1.162008e+06 33407.39 2.386242e+03 181.725 607.50 14 1.817250e+02 2544.15 1.195415e+06 1.164552e+06 30863.24 NULL
2023 Dept Of Parks & Recreation Public Records Officer 60507.00000 6.050700e+04 336.00 3.360000e+02 336.000 8.00 1 3.360000e+02 336.00 6.084300e+04 6.084300e+04 0.00 NULL
2023 Dept Of Parks & Recreation Puppeteer 52351.00000 1.570530e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.570530e+05 1.570530e+05 0.00 NULL
2023 Dept Of Parks & Recreation Quality Assurance Specialist 63000.00000 6.300000e+04 597.36 5.973600e+02 597.360 16.00 1 5.973600e+02 597.36 6.359736e+04 6.359736e+04 0.00 NULL
2023 Dept Of Parks & Recreation Recreation Director 50441.79537 3.026508e+06 110703.30 1.845055e+03 393.585 3050.50 60 3.935850e+02 23615.10 3.137211e+06 3.050123e+06 87088.20 NULL
2023 Dept Of Parks & Recreation Recreation Specialist 29959.09949 7.699489e+06 185670.85 7.224547e+02 114.850 6061.95 257 1.148500e+02 29516.45 7.885159e+06 7.729005e+06 156154.40 NULL
2023 Dept Of Parks & Recreation Recreation Supervisor 63535.51947 1.022922e+07 861627.02 5.351721e+03 1752.620 16962.75 161 1.752620e+03 282171.82 1.109085e+07 1.051139e+07 579455.20 NULL
2023 Dept Of Parks & Recreation Research Assistant 66211.00000 6.621100e+04 7434.68 7.434680e+03 7434.680 146.50 1 7.434680e+03 7434.68 7.364568e+04 7.364568e+04 0.00 NULL
2023 Dept Of Parks & Recreation Roofer NA NA 7623.55 1.905888e+03 1552.095 149.00 4 1.552095e+03 6208.38 NA NA NA NULL
2023 Dept Of Parks & Recreation Secretary 61256.50000 1.225130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.225130e+05 1.225130e+05 0.00 NULL
2023 Dept Of Parks & Recreation Senior Photographer 75824.50000 1.516490e+05 2049.42 1.024710e+03 1024.710 40.50 2 1.024710e+03 2049.42 1.536984e+05 1.536984e+05 0.00 NULL
2023 Dept Of Parks & Recreation Senior Stationary Engineer NA NA 277425.99 9.247533e+04 98859.180 2614.25 3 9.247533e+04 277425.99 NA NA NA NULL
2023 Dept Of Parks & Recreation Sheet Metal Worker NA NA 37474.24 6.245707e+03 5661.680 323.50 6 5.661680e+03 33970.08 NA NA NA NULL
2023 Dept Of Parks & Recreation Staff Analyst 66952.70000 6.695270e+05 36292.80 3.629280e+03 0.000 677.25 10 0.000000e+00 0.00 7.058198e+05 6.695270e+05 36292.80 NULL
2023 Dept Of Parks & Recreation Stationary Engineer NA NA 1550883.19 2.461719e+04 18800.160 15654.25 63 1.880016e+04 1184410.08 NA NA NA NULL
2023 Dept Of Parks & Recreation Steam Fitter NA NA 377286.06 2.694900e+04 6170.425 2460.50 14 6.170425e+03 86385.95 NA NA NA NULL
2023 Dept Of Parks & Recreation Steam Fitter’s Helper NA NA 46631.95 1.554398e+04 19911.650 550.75 3 1.554398e+04 46631.95 NA NA NA NULL
2023 Dept Of Parks & Recreation Stock Worker 41697.00000 4.169700e+04 336.61 3.366100e+02 336.610 13.50 1 3.366100e+02 336.61 4.203361e+04 4.203361e+04 0.00 NULL
2023 Dept Of Parks & Recreation Supervising Computer Service Technician 82739.00000 8.273900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.273900e+04 8.273900e+04 0.00 NULL
2023 Dept Of Parks & Recreation Supervising Dockmaster 62115.00000 4.348050e+05 1305.57 1.865100e+02 0.000 35.00 7 0.000000e+00 0.00 4.361106e+05 4.348050e+05 1305.57 NULL
2023 Dept Of Parks & Recreation Supervisor 80647.00000 8.064700e+04 18815.29 1.881529e+04 18815.290 314.75 1 1.881529e+04 18815.29 9.946229e+04 9.946229e+04 0.00 NULL
2023 Dept Of Parks & Recreation Supervisor Carpenter NA NA 137845.63 2.756913e+04 18275.400 1608.25 5 1.827540e+04 91377.00 NA NA NA NULL
2023 Dept Of Parks & Recreation Supervisor Electrician NA NA 148979.88 3.724497e+04 37177.975 1517.00 4 3.717797e+04 148711.90 NA NA NA NULL
2023 Dept Of Parks & Recreation Supervisor Of Mechanics NA NA 335538.94 3.050354e+04 24844.390 3514.25 11 2.484439e+04 273288.29 NA NA NA NULL
2023 Dept Of Parks & Recreation Supervisor Painter NA NA 151793.01 7.589651e+04 75896.505 1967.25 2 7.589651e+04 151793.01 NA NA NA NULL
2023 Dept Of Parks & Recreation Supervisor Plumber NA NA 587073.10 7.338414e+04 53651.215 4227.25 8 5.365121e+04 429209.72 NA NA NA NULL
2023 Dept Of Parks & Recreation Surveyor 79975.44444 7.197790e+05 30347.26 3.371918e+03 3639.880 566.75 9 3.371918e+03 30347.26 7.501263e+05 7.501263e+05 0.00 NULL
2023 Dept Of Parks & Recreation Telecommunications Associate 74385.15385 9.670070e+05 43960.57 3.381582e+03 152.460 611.25 13 1.524600e+02 1981.98 1.010968e+06 9.689890e+05 41978.59 NULL
2023 Dept Of Parks & Recreation Telephone Service Technician 68369.00000 3.418450e+05 40910.35 8.182070e+03 4520.500 847.25 5 4.520500e+03 22602.50 3.827553e+05 3.644475e+05 18307.85 NULL
2023 Dept Of Parks & Recreation Thermostat Repairer NA NA 71014.12 3.550706e+04 35507.060 592.00 2 3.550706e+04 71014.12 NA NA NA NULL
2023 Dept Of Parks & Recreation Urban Park Ranger 48003.93046 2.116973e+07 1180095.75 2.675954e+03 245.540 30455.89 441 2.455400e+02 108283.14 2.234983e+07 2.127802e+07 1071812.61 NULL
2023 Dept Of Records & Info Service Adm Manager-Non-Mgrl 82711.75000 3.308470e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.308470e+05 3.308470e+05 0.00 NULL
2023 Dept Of Records & Info Service Administrative Public Records Officer 106956.75000 4.278270e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.278270e+05 4.278270e+05 0.00 NULL
2023 Dept Of Records & Info Service Administrative Staff Analyst 116896.00000 1.168960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.168960e+05 1.168960e+05 0.00 NULL
2023 Dept Of Records & Info Service Agency Attorney 117541.00000 1.175410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.175410e+05 1.175410e+05 0.00 NULL
2023 Dept Of Records & Info Service Assistant Commissioner 156972.00000 1.569720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.569720e+05 1.569720e+05 0.00 NULL
2023 Dept Of Records & Info Service Associate Project Manager 106090.00000 1.060900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.060900e+05 1.060900e+05 0.00 NULL
2023 Dept Of Records & Info Service Associate Public Information Specialist 57500.00000 5.750000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.750000e+04 5.750000e+04 0.00 NULL
2023 Dept Of Records & Info Service Associate Public Records Officer 71068.20000 7.106820e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.106820e+05 7.106820e+05 0.00 NULL
2023 Dept Of Records & Info Service Certified It Administrator 135983.00000 1.359830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.359830e+05 1.359830e+05 0.00 NULL
2023 Dept Of Records & Info Service Certified It Developer 115179.66667 3.455390e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.455390e+05 3.455390e+05 0.00 NULL
2023 Dept Of Records & Info Service Clerical Associate 43385.50000 8.677100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.677100e+04 8.677100e+04 0.00 NULL
2023 Dept Of Records & Info Service Commissioner 218405.00000 2.184050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.184050e+05 2.184050e+05 0.00 NULL
2023 Dept Of Records & Info Service Community Assistant 43977.57000 4.397757e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.397757e+04 4.397757e+04 0.00 NULL
2023 Dept Of Records & Info Service Community Associate 31511.13429 2.205779e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.205779e+05 2.205779e+05 0.00 NULL
2023 Dept Of Records & Info Service Community Coordinator 71521.97500 3.576099e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.576099e+05 3.576099e+05 0.00 NULL
2023 Dept Of Records & Info Service Computer Associate 68622.66667 2.058680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.058680e+05 2.058680e+05 0.00 NULL
2023 Dept Of Records & Info Service Computer Specialist 102982.00000 2.059640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.059640e+05 2.059640e+05 0.00 NULL
2023 Dept Of Records & Info Service Computer Systems Manager 184605.00000 1.846050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.846050e+05 1.846050e+05 0.00 NULL
2023 Dept Of Records & Info Service Motor Vehicle Operator 47286.00000 9.457200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.457200e+04 9.457200e+04 0.00 NULL
2023 Dept Of Records & Info Service Principal Administrative Associate - Non Supvr 61964.00000 2.478560e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.478560e+05 2.478560e+05 0.00 NULL
2023 Dept Of Records & Info Service Public Records Aide 34272.96634 2.399108e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.399108e+05 2.399108e+05 0.00 NULL
2023 Dept Of Records & Info Service Public Records Officer 44508.73042 8.011571e+05 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 8.011571e+05 8.011571e+05 0.00 NULL
2023 Dept Of Records & Info Service Research Assistant 65322.50000 1.306450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.306450e+05 1.306450e+05 0.00 NULL
2023 Dept Of Records & Info Service Staff Analyst 61866.00000 6.186600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.186600e+04 6.186600e+04 0.00 NULL
2023 Dept Of Records & Info Service Stock Worker 27401.21530 2.740122e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.740122e+04 2.740122e+04 0.00 NULL
2023 Dept Of Records & Info Service Summer Graduate Intern 4851.16290 4.851163e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.851163e+03 4.851163e+03 0.00 NULL
2023 Dept Of Records & Info Service Supervisor Of Stock Workers 44950.00000 4.495000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.495000e+04 4.495000e+04 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Accountant 88136.33333 2.644090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.644090e+05 2.644090e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Adm Manager-Non-Mgrl 87374.62500 2.096991e+06 9738.28 4.057617e+02 0.000 180.00 24 0.000000e+00 0.00 2.106729e+06 2.096991e+06 9738.28 NULL
2023 Dept Of Youth & Comm Dev Srvs Admin Community Relations Specialist 86694.31884 5.981908e+06 138495.63 2.007183e+03 0.000 2497.25 69 0.000000e+00 0.00 6.120404e+06 5.981908e+06 138495.63 NULL
2023 Dept Of Youth & Comm Dev Srvs Admin Contract Specialist 149923.60000 1.499236e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.499236e+06 1.499236e+06 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Administrative Business Promotion Coordinator 87550.00000 8.755000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.755000e+04 8.755000e+04 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Administrative Community Relations Specialist 127959.28571 1.791430e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.791430e+06 1.791430e+06 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Administrative Contract Specialist 93012.38462 6.045805e+06 35989.65 5.536869e+02 0.000 619.50 65 0.000000e+00 0.00 6.081795e+06 6.045805e+06 35989.65 NULL
2023 Dept Of Youth & Comm Dev Srvs Administrative Director Of Social Services 126068.50000 2.521370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.521370e+05 2.521370e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Administrative Graphic Artist 112817.00000 1.128170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.128170e+05 1.128170e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Administrative Labor Relations Analyst 103162.00000 1.031620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.031620e+05 1.031620e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Administrative Management Auditor 102503.71429 7.175260e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.175260e+05 7.175260e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Administrative Manager 122578.08333 1.470937e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.470937e+06 1.470937e+06 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Administrative Procurement Analyst 158333.00000 4.749990e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.749990e+05 4.749990e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Administrative Procurement Analyst-Non-Mgrl 75476.00000 3.773800e+05 5162.69 1.032538e+03 0.000 98.75 5 0.000000e+00 0.00 3.825427e+05 3.773800e+05 5162.69 NULL
2023 Dept Of Youth & Comm Dev Srvs Administrative Staff Analyst 130476.36744 5.610484e+06 17238.98 4.009065e+02 0.000 253.50 43 0.000000e+00 0.00 5.627723e+06 5.610484e+06 17238.98 NULL
2023 Dept Of Youth & Comm Dev Srvs Agency Attorney 106712.60000 5.335630e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.335630e+05 5.335630e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Agency Chief Contracting Officer 191580.00000 1.915800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.915800e+05 1.915800e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Assist Commissioner For Intergovernmental Relations 185000.00000 1.850000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.850000e+05 1.850000e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Assoc Commissioner For Planning,Review And Evaluation 180000.00000 1.800000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.800000e+05 1.800000e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Associate Contract Specialist 76532.41598 5.280737e+06 40926.58 5.931388e+02 0.000 782.50 69 0.000000e+00 0.00 5.321663e+06 5.280737e+06 40926.58 NULL
2023 Dept Of Youth & Comm Dev Srvs Associate Staff Analyst 93692.83333 5.621570e+05 14361.60 2.393600e+03 0.000 212.25 6 0.000000e+00 0.00 5.765186e+05 5.621570e+05 14361.60 NULL
2023 Dept Of Youth & Comm Dev Srvs Certified It Administrator 125469.66667 3.764090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.764090e+05 3.764090e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Certified It Developer 128234.78571 1.795287e+06 2496.89 1.783493e+02 0.000 35.00 14 0.000000e+00 0.00 1.797784e+06 1.795287e+06 2496.89 NULL
2023 Dept Of Youth & Comm Dev Srvs City Research Scientist 88968.20000 4.448410e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.448410e+05 4.448410e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Clerical Associate 61854.50000 1.237090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.237090e+05 1.237090e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs College Aide 4558.70265 4.558703e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 4.558703e+04 4.558703e+04 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs College Aide - Assignment Levels Ii And Iii 8281.30497 1.821887e+05 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 1.821887e+05 1.821887e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Commissioner Of Community Development 227786.00000 4.555720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.555720e+05 4.555720e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Community Assistant 14433.79300 1.443379e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.443379e+05 1.443379e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Community Associate 53849.33333 3.230960e+05 1855.83 3.093050e+02 0.000 61.75 6 0.000000e+00 0.00 3.249518e+05 3.230960e+05 1855.83 NULL
2023 Dept Of Youth & Comm Dev Srvs Community Coordinator 64849.11998 6.484912e+06 62267.06 6.226706e+02 0.000 1189.75 100 0.000000e+00 0.00 6.547179e+06 6.484912e+06 62267.06 NULL
2023 Dept Of Youth & Comm Dev Srvs Computer Associate 86098.80000 4.304940e+05 560.45 1.120900e+02 0.000 9.00 5 0.000000e+00 0.00 4.310545e+05 4.304940e+05 560.45 NULL
2023 Dept Of Youth & Comm Dev Srvs Computer Operations Manager 116196.00000 1.161960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.161960e+05 1.161960e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Computer Specialist 119941.66667 2.878600e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 2.878600e+06 2.878600e+06 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Computer Systems Manager 129770.50000 1.557246e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.557246e+06 1.557246e+06 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Contract Specialist 74557.44000 1.863936e+06 21656.69 8.662676e+02 0.000 383.00 25 0.000000e+00 0.00 1.885593e+06 1.863936e+06 21656.69 NULL
2023 Dept Of Youth & Comm Dev Srvs Deputy Assistant Commissioner For Evaluation 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Deputy Commissioner 195353.25000 7.814130e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.814130e+05 7.814130e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Director Of Planning 152500.00000 3.050000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.050000e+05 3.050000e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Executive Agency Counsel 172215.00000 6.888600e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.888600e+05 6.888600e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Executive Assistant To The Commissioner Of Employment 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Executive Program Specialist 102500.00000 2.050000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.050000e+05 2.050000e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Management Auditor 82124.00000 1.642480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.642480e+05 1.642480e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Motor Vehicle Operator 61270.00000 1.225400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.225400e+05 1.225400e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Principal Administrative Associate - Non Supvr 72122.78947 1.370333e+06 1638.55 8.623947e+01 0.000 39.50 19 0.000000e+00 0.00 1.371972e+06 1.370333e+06 1638.55 NULL
2023 Dept Of Youth & Comm Dev Srvs Procurement Analyst 69048.57143 9.666800e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 9.666800e+05 9.666800e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Public Records Aide 41754.00000 4.175400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.175400e+04 4.175400e+04 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Research Assistant 58173.00000 5.817300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.817300e+04 5.817300e+04 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Secretary 58267.00000 5.826700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.826700e+04 5.826700e+04 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Secretary To Commissioner 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Senior Field Supervisor 4839.35802 2.903615e+05 0.00 0.000000e+00 0.000 0.00 60 0.000000e+00 0.00 2.903615e+05 2.903615e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Staff Analyst 68488.85714 4.794220e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.794220e+05 4.794220e+05 0.00 NULL
2023 Dept Of Youth & Comm Dev Srvs Youth Coordinator 20484.33333 6.145300e+04 407.60 1.358667e+02 0.000 0.00 3 0.000000e+00 0.00 6.186060e+04 6.145300e+04 407.60 NULL
2023 Dept. Of Design & Construction *Certified Local Area Network Administrator 139777.00000 1.397770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.397770e+05 1.397770e+05 0.00 NULL
2023 Dept. Of Design & Construction *Senior Estimator 98405.50000 1.968110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.968110e+05 1.968110e+05 0.00 NULL
2023 Dept. Of Design & Construction Accountant 86296.08333 1.035553e+06 11462.20 9.551833e+02 159.850 257.50 12 1.598500e+02 1918.20 1.047015e+06 1.037471e+06 9544.00 NULL
2023 Dept. Of Design & Construction Adm Manager-Non-Mgrl 87246.53333 1.308698e+06 61.43 4.095333e+00 0.000 1.50 15 0.000000e+00 0.00 1.308759e+06 1.308698e+06 61.43 NULL
2023 Dept. Of Design & Construction Admin Community Relations Specialist 100801.07143 1.411215e+06 24.09 1.720714e+00 0.000 0.00 14 0.000000e+00 0.00 1.411239e+06 1.411215e+06 24.09 NULL
2023 Dept. Of Design & Construction Admin Construction Project Manager 118289.27083 5.677885e+06 84923.95 1.769249e+03 0.000 1097.25 48 0.000000e+00 0.00 5.762809e+06 5.677885e+06 84923.95 NULL
2023 Dept. Of Design & Construction Admin Contract Specialist 114278.00000 1.142780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.142780e+05 1.142780e+05 0.00 NULL
2023 Dept. Of Design & Construction Admin Landmarks Preservationist 108150.00000 1.081500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081500e+05 1.081500e+05 0.00 NULL
2023 Dept. Of Design & Construction Administrative Accountant 114058.25000 4.562330e+05 1849.42 4.623550e+02 20.575 38.75 4 2.057500e+01 82.30 4.580824e+05 4.563153e+05 1767.12 NULL
2023 Dept. Of Design & Construction Administrative Architect 136163.25714 4.765714e+06 8171.78 2.334794e+02 0.000 93.50 35 0.000000e+00 0.00 4.773886e+06 4.765714e+06 8171.78 NULL
2023 Dept. Of Design & Construction Administrative Business Promotion Coordinator 144200.00000 1.442000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.442000e+05 1.442000e+05 0.00 NULL
2023 Dept. Of Design & Construction Administrative City Planner 125416.00000 3.762480e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.762480e+05 3.762480e+05 0.00 NULL
2023 Dept. Of Design & Construction Administrative Community Relations Specialist 191337.80000 9.566890e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.566890e+05 9.566890e+05 0.00 NULL
2023 Dept. Of Design & Construction Administrative Construction Project Manager 157075.54545 5.183493e+06 8025.17 2.431870e+02 0.000 104.75 33 0.000000e+00 0.00 5.191518e+06 5.183493e+06 8025.17 NULL
2023 Dept. Of Design & Construction Administrative Engineer 138744.67901 1.123832e+07 210989.39 2.604807e+03 0.000 2771.75 81 0.000000e+00 0.00 1.144931e+07 1.123832e+07 210989.39 NULL
2023 Dept. Of Design & Construction Administrative Graphic Artist 127288.00000 2.545760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.545760e+05 2.545760e+05 0.00 NULL
2023 Dept. Of Design & Construction Administrative Landmarks Preservationist 141766.00000 1.417660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.417660e+05 1.417660e+05 0.00 NULL
2023 Dept. Of Design & Construction Administrative Landscape Architect 138822.50000 5.552900e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.552900e+05 5.552900e+05 0.00 NULL
2023 Dept. Of Design & Construction Administrative Management Auditor 142066.00000 1.420660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.420660e+05 1.420660e+05 0.00 NULL
2023 Dept. Of Design & Construction Administrative Manager 168008.00000 5.040240e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.040240e+05 5.040240e+05 0.00 NULL
2023 Dept. Of Design & Construction Administrative Procurement Analyst-Non-Mgrl 100625.63636 1.106882e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.106882e+06 1.106882e+06 0.00 NULL
2023 Dept. Of Design & Construction Administrative Project Manager 121504.44138 1.761814e+07 270868.63 1.868060e+03 0.000 4081.00 145 0.000000e+00 0.00 1.788901e+07 1.761814e+07 270868.63 NULL
2023 Dept. Of Design & Construction Administrative Public Information Specialist 161544.00000 1.615440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.615440e+05 1.615440e+05 0.00 NULL
2023 Dept. Of Design & Construction Administrative Staff Analyst 117646.12521 2.823507e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 2.823507e+06 2.823507e+06 0.00 NULL
2023 Dept. Of Design & Construction Administrative Supervisor Of Building Maintenance 95977.50000 1.919550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.919550e+05 1.919550e+05 0.00 NULL
2023 Dept. Of Design & Construction Agency Attorney 89930.66667 5.395840e+05 1361.65 2.269417e+02 0.000 22.75 6 0.000000e+00 0.00 5.409457e+05 5.395840e+05 1361.65 NULL
2023 Dept. Of Design & Construction Agency Attorney Interne 73579.00000 2.207370e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.207370e+05 2.207370e+05 0.00 NULL
2023 Dept. Of Design & Construction Agency Chief Contracting Officer 149350.00000 1.493500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.493500e+05 1.493500e+05 0.00 NULL
2023 Dept. Of Design & Construction Architect 111742.14286 1.564390e+06 45.32 3.237143e+00 0.000 0.00 14 0.000000e+00 0.00 1.564435e+06 1.564390e+06 45.32 NULL
2023 Dept. Of Design & Construction Architectural Intern 66052.00000 6.605200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.605200e+04 6.605200e+04 0.00 NULL
2023 Dept. Of Design & Construction Asbestos Hazard Investigator 73193.00000 1.463860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.463860e+05 1.463860e+05 0.00 NULL
2023 Dept. Of Design & Construction Ass Commissioner Design And Construction Management 187460.00000 1.874600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.874600e+05 1.874600e+05 0.00 NULL
2023 Dept. Of Design & Construction Assistant Architect 89144.33333 2.674330e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.674330e+05 2.674330e+05 0.00 NULL
2023 Dept. Of Design & Construction Assistant Civil Engineer 75377.08759 1.032666e+07 232885.44 1.699894e+03 56.260 4664.25 137 5.626000e+01 7707.62 1.055955e+07 1.033437e+07 225177.82 NULL
2023 Dept. Of Design & Construction Assistant Electrical Engineer 86464.00000 1.729280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.729280e+05 1.729280e+05 0.00 NULL
2023 Dept. Of Design & Construction Assistant Environmental Engineer 81523.00000 8.152300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.152300e+04 8.152300e+04 0.00 NULL
2023 Dept. Of Design & Construction Assistant Landscape Architect 76412.00000 2.292360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.292360e+05 2.292360e+05 0.00 NULL
2023 Dept. Of Design & Construction Assistant Mechanical Engineer 79382.66667 2.381480e+05 43.27 1.442333e+01 0.000 0.00 3 0.000000e+00 0.00 2.381913e+05 2.381480e+05 43.27 NULL
2023 Dept. Of Design & Construction Assistant Urban Designer 74295.33333 2.228860e+05 1543.99 5.146633e+02 31.610 34.00 3 3.161000e+01 94.83 2.244300e+05 2.229808e+05 1449.16 NULL
2023 Dept. Of Design & Construction Associate Investigator 77978.20000 3.898910e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.898910e+05 3.898910e+05 0.00 NULL
2023 Dept. Of Design & Construction Associate Project Manager 98659.69767 8.484734e+06 255055.78 2.965765e+03 5.230 3855.75 86 5.230000e+00 449.78 8.739790e+06 8.485184e+06 254606.00 NULL
2023 Dept. Of Design & Construction Associate Public Health Sanitarian 107572.00000 1.075720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.075720e+05 1.075720e+05 0.00 NULL
2023 Dept. Of Design & Construction Associate Staff Analyst 93320.85714 6.532460e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.532460e+05 6.532460e+05 0.00 NULL
2023 Dept. Of Design & Construction Associate Urban Designer 102249.83333 6.134990e+05 14.75 2.458333e+00 0.000 0.00 6 0.000000e+00 0.00 6.135138e+05 6.134990e+05 14.75 NULL
2023 Dept. Of Design & Construction Certified It Administrator 123984.50000 4.959380e+05 2.32 5.800000e-01 0.000 0.00 4 0.000000e+00 0.00 4.959403e+05 4.959380e+05 2.32 NULL
2023 Dept. Of Design & Construction Certified It Developer 113853.70000 1.138537e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.138537e+06 1.138537e+06 0.00 NULL
2023 Dept. Of Design & Construction City Planner 105277.00000 5.263850e+05 8502.44 1.700488e+03 0.000 168.50 5 0.000000e+00 0.00 5.348874e+05 5.263850e+05 8502.44 NULL
2023 Dept. Of Design & Construction Civil Engineer 102429.96429 2.868039e+06 54578.65 1.949237e+03 3.560 906.75 28 3.560000e+00 99.68 2.922618e+06 2.868139e+06 54478.97 NULL
2023 Dept. Of Design & Construction Civil Engineering Intern 61768.73333 1.853062e+06 28789.30 9.596433e+02 0.000 730.25 30 0.000000e+00 0.00 1.881851e+06 1.853062e+06 28789.30 NULL
2023 Dept. Of Design & Construction Claim Specialist 60488.66667 1.814660e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.814660e+05 1.814660e+05 0.00 NULL
2023 Dept. Of Design & Construction Clerical Associate 59038.95833 1.416935e+06 34.86 1.452500e+00 0.000 0.00 24 0.000000e+00 0.00 1.416970e+06 1.416935e+06 34.86 NULL
2023 Dept. Of Design & Construction College Aide 3454.21542 4.145058e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 4.145058e+04 4.145058e+04 0.00 NULL
2023 Dept. Of Design & Construction College Aide - Assignment Levels Ii And Iii 3777.67500 3.777675e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.777675e+03 3.777675e+03 0.00 NULL
2023 Dept. Of Design & Construction Commissioner Of Design & Construction 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2023 Dept. Of Design & Construction Community Assistant 35302.00000 1.059060e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.059060e+05 1.059060e+05 0.00 NULL
2023 Dept. Of Design & Construction Community Associate 54364.46667 8.154670e+05 297.55 1.983667e+01 0.000 10.25 15 0.000000e+00 0.00 8.157646e+05 8.154670e+05 297.55 NULL
2023 Dept. Of Design & Construction Community Coordinator 73494.25490 3.748207e+06 2804.08 5.498196e+01 0.000 62.75 51 0.000000e+00 0.00 3.751011e+06 3.748207e+06 2804.08 NULL
2023 Dept. Of Design & Construction Computer Associate 95564.50000 3.822580e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.822580e+05 3.822580e+05 0.00 NULL
2023 Dept. Of Design & Construction Computer Programmer Analyst 56494.55667 1.694837e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.694837e+05 1.694837e+05 0.00 NULL
2023 Dept. Of Design & Construction Computer Service Technician 68859.33333 2.065780e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.065780e+05 2.065780e+05 0.00 NULL
2023 Dept. Of Design & Construction Computer Specialist 111515.53846 2.899404e+06 2.16 8.307690e-02 0.000 0.00 26 0.000000e+00 0.00 2.899406e+06 2.899404e+06 2.16 NULL
2023 Dept. Of Design & Construction Computer Systems Manager 131748.14286 9.222370e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.222370e+05 9.222370e+05 0.00 NULL
2023 Dept. Of Design & Construction Construction Project Manager 93550.92356 9.729296e+06 252024.48 2.423312e+03 0.000 4083.75 104 0.000000e+00 0.00 9.981321e+06 9.729296e+06 252024.48 NULL
2023 Dept. Of Design & Construction Deputy Commissioner 207360.00000 2.073600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.073600e+05 2.073600e+05 0.00 NULL
2023 Dept. Of Design & Construction Deputy Commissioner For Policy And Analysis 200140.00000 2.001400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.001400e+05 2.001400e+05 0.00 NULL
2023 Dept. Of Design & Construction Director For Equal Employment Opportunity 127342.00000 1.273420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.273420e+05 1.273420e+05 0.00 NULL
2023 Dept. Of Design & Construction Electrical Engineer 94791.00000 9.479100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.479100e+04 9.479100e+04 0.00 NULL
2023 Dept. Of Design & Construction Engineering Technician 70483.60000 1.409672e+06 13177.76 6.588880e+02 0.000 317.00 20 0.000000e+00 0.00 1.422850e+06 1.409672e+06 13177.76 NULL
2023 Dept. Of Design & Construction Estimator 90381.50000 1.446104e+06 27657.79 1.728612e+03 0.000 449.00 16 0.000000e+00 0.00 1.473762e+06 1.446104e+06 27657.79 NULL
2023 Dept. Of Design & Construction Executive Agency Counsel 178880.12500 1.431041e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.431041e+06 1.431041e+06 0.00 NULL
2023 Dept. Of Design & Construction Executive Program Specialist 171730.25000 6.869210e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.869210e+05 6.869210e+05 0.00 NULL
2023 Dept. Of Design & Construction First Deputy Commissioner 232000.00000 2.320000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.320000e+05 2.320000e+05 0.00 NULL
2023 Dept. Of Design & Construction Geologist 86254.11111 7.762870e+05 64.53 7.170000e+00 0.000 0.00 9 0.000000e+00 0.00 7.763515e+05 7.762870e+05 64.53 NULL
2023 Dept. Of Design & Construction Graphic Artist 92339.00000 3.693560e+05 430.59 1.076475e+02 0.000 7.00 4 0.000000e+00 0.00 3.697866e+05 3.693560e+05 430.59 NULL
2023 Dept. Of Design & Construction Highways And Sewers Inspector 65490.50000 1.309810e+05 12149.34 6.074670e+03 6074.670 248.00 2 6.074670e+03 12149.34 1.431303e+05 1.431303e+05 0.00 NULL
2023 Dept. Of Design & Construction Industrial Hygienist 58606.50000 2.344260e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.344260e+05 2.344260e+05 0.00 NULL
2023 Dept. Of Design & Construction Investigator 52637.00000 2.631850e+05 3474.37 6.948740e+02 471.000 113.25 5 4.710000e+02 2355.00 2.666594e+05 2.655400e+05 1119.37 NULL
2023 Dept. Of Design & Construction Landscape Architect 108385.75000 4.335430e+05 28871.80 7.217950e+03 0.000 396.25 4 0.000000e+00 0.00 4.624148e+05 4.335430e+05 28871.80 NULL
2023 Dept. Of Design & Construction Management Auditor 91737.50000 3.669500e+05 398.21 9.955250e+01 0.000 7.00 4 0.000000e+00 0.00 3.673482e+05 3.669500e+05 398.21 NULL
2023 Dept. Of Design & Construction Mechanical Engineer 108719.33333 3.261580e+05 2205.87 7.352900e+02 0.000 32.00 3 0.000000e+00 0.00 3.283639e+05 3.261580e+05 2205.87 NULL
2023 Dept. Of Design & Construction Mechanical Engineering Intern 67043.00000 1.340860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.340860e+05 1.340860e+05 0.00 NULL
2023 Dept. Of Design & Construction Motor Vehicle Operator 53624.00000 5.362400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.362400e+04 5.362400e+04 0.00 NULL
2023 Dept. Of Design & Construction Motor Vehicle Supervisor 65757.50000 1.315150e+05 1992.60 9.963000e+02 996.300 38.50 2 9.963000e+02 1992.60 1.335076e+05 1.335076e+05 0.00 NULL
2023 Dept. Of Design & Construction New York City Public Service Fellow 42127.00000 4.212700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.212700e+04 4.212700e+04 0.00 NULL
2023 Dept. Of Design & Construction Principal Administrative Associate - Non Supvr 71092.40625 2.274957e+06 25146.66 7.858331e+02 0.000 499.00 32 0.000000e+00 0.00 2.300104e+06 2.274957e+06 25146.66 NULL
2023 Dept. Of Design & Construction Principal Title Examiner 80340.00000 1.606800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.606800e+05 1.606800e+05 0.00 NULL
2023 Dept. Of Design & Construction Procurement Analyst 72498.95652 1.667476e+06 2791.88 1.213861e+02 0.000 68.00 23 0.000000e+00 0.00 1.670268e+06 1.667476e+06 2791.88 NULL
2023 Dept. Of Design & Construction Program Producer 99144.00000 9.914400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.914400e+04 9.914400e+04 0.00 NULL
2023 Dept. Of Design & Construction Project Manager 77633.68421 2.950080e+06 55549.77 1.461836e+03 0.000 999.00 38 0.000000e+00 0.00 3.005630e+06 2.950080e+06 55549.77 NULL
2023 Dept. Of Design & Construction Project Manager Intern# 59909.25000 2.396370e+06 1253.44 3.133600e+01 0.000 38.00 40 0.000000e+00 0.00 2.397623e+06 2.396370e+06 1253.44 NULL
2023 Dept. Of Design & Construction Public Records Aide 49749.57143 3.482470e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.482470e+05 3.482470e+05 0.00 NULL
2023 Dept. Of Design & Construction Quality Assurance Specialist 67403.00000 6.740300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.740300e+04 6.740300e+04 0.00 NULL
2023 Dept. Of Design & Construction Research Assistant 63126.50000 1.262530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.262530e+05 1.262530e+05 0.00 NULL
2023 Dept. Of Design & Construction Secretary 62313.75000 4.985100e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.985100e+05 4.985100e+05 0.00 NULL
2023 Dept. Of Design & Construction Senior Policy Advisor 99821.00000 9.982100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.982100e+04 9.982100e+04 0.00 NULL
2023 Dept. Of Design & Construction Space Analyst 80259.00000 8.025900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.025900e+04 8.025900e+04 0.00 NULL
2023 Dept. Of Design & Construction Special Assistant 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2023 Dept. Of Design & Construction Special Assistant To The Commissioner 143220.00000 1.432200e+05 221.79 2.217900e+02 221.790 0.00 1 2.217900e+02 221.79 1.434418e+05 1.434418e+05 0.00 NULL
2023 Dept. Of Design & Construction Staff Analyst 72451.22857 2.535793e+06 18601.33 5.314666e+02 0.000 365.75 35 0.000000e+00 0.00 2.554394e+06 2.535793e+06 18601.33 NULL
2023 Dept. Of Design & Construction Stock Worker 46834.50000 9.366900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.366900e+04 9.366900e+04 0.00 NULL
2023 Dept. Of Design & Construction Summer College Intern 2474.68750 1.187850e+05 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 1.187850e+05 1.187850e+05 0.00 NULL
2023 Dept. Of Design & Construction Summer Graduate Intern 2804.00000 3.084400e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 3.084400e+04 3.084400e+04 0.00 NULL
2023 Dept. Of Design & Construction Supervising Special Officer 73884.00000 7.388400e+04 225.58 2.255800e+02 225.580 4.25 1 2.255800e+02 225.58 7.410958e+04 7.410958e+04 0.00 NULL
2023 Dept. Of Design & Construction Supervisor Of Electrical Installations & Maintenance 89616.00000 1.792320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.792320e+05 1.792320e+05 0.00 NULL
2023 Dept. Of Design & Construction Supervisor Of Stock Workers 70530.00000 7.053000e+04 2016.85 2.016850e+03 2016.850 49.50 1 2.016850e+03 2016.85 7.254685e+04 7.254685e+04 0.00 NULL
2023 Dept. Of Design & Construction Surveyor 83836.22449 4.107975e+06 49394.69 1.008055e+03 0.000 874.50 49 0.000000e+00 0.00 4.157370e+06 4.107975e+06 49394.69 NULL
2023 Dept. Of Design & Construction Transportation Specialist 108798.00000 2.175960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.175960e+05 2.175960e+05 0.00 NULL
2023 Dept. Of Homeless Services Adm Manager-Non-Mgrl 75285.11765 1.279847e+06 101671.90 5.980700e+03 452.110 1948.00 17 4.521100e+02 7685.87 1.381519e+06 1.287533e+06 93986.03 NULL
2023 Dept. Of Homeless Services Admin Community Relations Specialist 79857.71217 3.673455e+06 648235.76 1.409208e+04 9771.890 11726.00 46 9.771890e+03 449506.94 4.321691e+06 4.122962e+06 198728.82 NULL
2023 Dept. Of Homeless Services Admin Construction Project Manager 92700.00000 9.270000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.270000e+04 9.270000e+04 0.00 NULL
2023 Dept. Of Homeless Services Admin Contract Specialist 121389.00000 1.213890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.213890e+05 1.213890e+05 0.00 NULL
2023 Dept. Of Homeless Services Admin Job Opor Spec-Managerial 128910.00000 1.289100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.289100e+05 1.289100e+05 0.00 NULL
2023 Dept. Of Homeless Services Admin Job Opportunity Spec Nm 98185.66667 5.891140e+05 9531.51 1.588585e+03 49.330 165.50 6 4.933000e+01 295.98 5.986455e+05 5.894100e+05 9235.53 NULL
2023 Dept. Of Homeless Services Administrative Construction Project Manager 150141.00000 1.501410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.501410e+05 1.501410e+05 0.00 NULL
2023 Dept. Of Homeless Services Administrative Contract Specialist 102279.66667 3.068390e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.068390e+05 3.068390e+05 0.00 NULL
2023 Dept. Of Homeless Services Administrative Director Of Social Services 118464.37342 1.871737e+07 534843.36 3.385085e+03 0.000 8947.62 158 0.000000e+00 0.00 1.925221e+07 1.871737e+07 534843.36 NULL
2023 Dept. Of Homeless Services Administrative Engineer 110210.00000 1.102100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.102100e+05 1.102100e+05 0.00 NULL
2023 Dept. Of Homeless Services Administrative Housing Development Specialist 118160.66667 3.544820e+05 10659.48 3.553160e+03 0.000 159.50 3 0.000000e+00 0.00 3.651415e+05 3.544820e+05 10659.48 NULL
2023 Dept. Of Homeless Services Administrative Nutritionist 96682.00000 9.668200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.668200e+04 9.668200e+04 0.00 NULL
2023 Dept. Of Homeless Services Administrative Public Information Specialist Nm Former M1/M2 107421.00000 1.074210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074210e+05 1.074210e+05 0.00 NULL
2023 Dept. Of Homeless Services Administrative Staff Analyst 96323.83282 6.164725e+06 215082.25 3.360660e+03 0.000 3427.25 64 0.000000e+00 0.00 6.379808e+06 6.164725e+06 215082.25 NULL
2023 Dept. Of Homeless Services Administrative Storekeeper 80204.00000 8.020400e+04 -4414.82 -4.414820e+03 -4414.820 4.25 1 -4.414820e+03 -4414.82 7.578918e+04 7.578918e+04 0.00 NULL
2023 Dept. Of Homeless Services Administrative Supervisor Of Building Maintenance 126040.50000 1.512486e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.512486e+06 1.512486e+06 0.00 NULL
2023 Dept. Of Homeless Services Agency Medical Director 219468.00000 2.194680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.194680e+05 2.194680e+05 0.00 NULL
2023 Dept. Of Homeless Services Architect 101230.00000 1.012300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.012300e+05 1.012300e+05 0.00 NULL
2023 Dept. Of Homeless Services Assistant Commissioner 149350.00000 1.493500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.493500e+05 1.493500e+05 0.00 NULL
2023 Dept. Of Homeless Services Assistant Deputy Commissioner Ss 159675.00000 3.193500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.193500e+05 3.193500e+05 0.00 NULL
2023 Dept. Of Homeless Services Assistant Superintendent Of Welfare Shelters 75589.37313 5.064488e+06 1196178.72 1.785341e+04 11375.410 21366.00 67 1.137541e+04 762152.47 6.260667e+06 5.826640e+06 434026.25 NULL
2023 Dept. Of Homeless Services Associate Commissioner For Adult Services 187911.00000 1.879110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.879110e+05 1.879110e+05 0.00 NULL
2023 Dept. Of Homeless Services Associate Contract Specialist 71875.44444 6.468790e+05 69021.40 7.669044e+03 0.000 1223.25 9 0.000000e+00 0.00 7.159004e+05 6.468790e+05 69021.40 NULL
2023 Dept. Of Homeless Services Associate Fraud Investigator 77463.06944 5.577341e+06 1378046.58 1.913954e+04 14344.765 23139.00 72 1.434476e+04 1032823.08 6.955388e+06 6.610164e+06 345223.50 NULL
2023 Dept. Of Homeless Services Associate Housing Development Specialist 84228.50000 1.684570e+05 390.39 1.951950e+02 195.195 7.00 2 1.951950e+02 390.39 1.688474e+05 1.688474e+05 0.00 NULL
2023 Dept. Of Homeless Services Associate Investigator 81489.00000 8.148900e+04 177.70 1.777000e+02 177.700 0.00 1 1.777000e+02 177.70 8.166670e+04 8.166670e+04 0.00 NULL
2023 Dept. Of Homeless Services Associate Project Manager 91794.64286 1.285125e+06 10136.27 7.240193e+02 0.000 130.25 14 0.000000e+00 0.00 1.295261e+06 1.285125e+06 10136.27 NULL
2023 Dept. Of Homeless Services Associate Staff Analyst 81280.78947 3.088670e+06 131042.63 3.448490e+03 38.650 2195.00 38 3.865000e+01 1468.70 3.219713e+06 3.090139e+06 129573.93 NULL
2023 Dept. Of Homeless Services Asst Commissioner For Planning & Program Dev 150393.00000 3.007860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.007860e+05 3.007860e+05 0.00 NULL
2023 Dept. Of Homeless Services Carpenter NA NA 307592.60 1.708848e+04 15940.070 3901.75 18 1.594007e+04 286921.26 NA NA NA NULL
2023 Dept. Of Homeless Services Caseworker 50258.71277 4.724319e+06 309799.03 3.295734e+03 194.455 8236.75 94 1.944550e+02 18278.77 5.034118e+06 4.742598e+06 291520.26 NULL
2023 Dept. Of Homeless Services Cement Mason NA NA 183693.90 3.673878e+04 37205.350 1909.50 5 3.673878e+04 183693.90 NA NA NA NULL
2023 Dept. Of Homeless Services City Laborer NA NA 1043981.72 5.494641e+04 54339.530 17817.00 19 5.433953e+04 1032451.07 NA NA NA NULL
2023 Dept. Of Homeless Services City Research Scientist 86489.28571 1.210850e+06 3786.18 2.704414e+02 0.000 67.75 14 0.000000e+00 0.00 1.214636e+06 1.210850e+06 3786.18 NULL
2023 Dept. Of Homeless Services Clerical Associate 47136.17391 1.084132e+06 147878.35 6.429493e+03 11.040 3204.00 23 1.104000e+01 253.92 1.232010e+06 1.084386e+06 147624.43 NULL
2023 Dept. Of Homeless Services Community Assistant 39916.34095 5.268957e+06 1174621.98 8.898651e+03 2619.885 37036.51 132 2.619885e+03 345824.82 6.443579e+06 5.614782e+06 828797.16 NULL
2023 Dept. Of Homeless Services Community Associate 45298.74117 4.892264e+06 822878.44 7.619245e+03 685.445 22644.30 108 6.854450e+02 74028.06 5.715142e+06 4.966292e+06 748850.38 NULL
2023 Dept. Of Homeless Services Community Coordinator 65780.30737 2.585166e+07 4167260.77 1.060372e+04 3051.910 86260.00 393 3.051910e+03 1199400.63 3.001892e+07 2.705106e+07 2967860.14 NULL
2023 Dept. Of Homeless Services Computer Specialist 102982.00000 1.029820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.029820e+05 1.029820e+05 0.00 NULL
2023 Dept. Of Homeless Services Computer Systems Manager 172415.00000 1.724150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.724150e+05 1.724150e+05 0.00 NULL
2023 Dept. Of Homeless Services Construction Project Manager 92346.66667 5.540800e+05 23168.58 3.861430e+03 0.000 329.00 6 0.000000e+00 0.00 5.772486e+05 5.540800e+05 23168.58 NULL
2023 Dept. Of Homeless Services Counselor 62269.00000 1.245380e+05 7200.38 3.600190e+03 3600.190 167.75 2 3.600190e+03 7200.38 1.317384e+05 1.317384e+05 0.00 NULL
2023 Dept. Of Homeless Services Deputy Commisioner 195521.66667 5.865650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.865650e+05 5.865650e+05 0.00 NULL
2023 Dept. Of Homeless Services Director Of Administration 138852.00000 1.388520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.388520e+05 1.388520e+05 0.00 NULL
2023 Dept. Of Homeless Services Electrician NA NA 365057.70 2.607555e+04 28956.240 3880.00 14 2.607555e+04 365057.70 NA NA NA NULL
2023 Dept. Of Homeless Services Exec Asst To The Deputy Commissioner 102591.00000 1.025910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.025910e+05 1.025910e+05 0.00 NULL
2023 Dept. Of Homeless Services Executive Assistant To The Commissioner 145026.00000 1.450260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450260e+05 1.450260e+05 0.00 NULL
2023 Dept. Of Homeless Services Executive Program Specialist 149350.00000 1.493500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.493500e+05 1.493500e+05 0.00 NULL
2023 Dept. Of Homeless Services Fraud Investigator 59276.73810 4.979246e+06 1723127.35 2.051342e+04 11712.840 35269.00 84 1.171284e+04 983878.56 6.702373e+06 5.963125e+06 739248.79 NULL
2023 Dept. Of Homeless Services Homemaker 48728.50000 9.745700e+04 1323.99 6.619950e+02 661.995 41.00 2 6.619950e+02 1323.99 9.878099e+04 9.878099e+04 0.00 NULL
2023 Dept. Of Homeless Services Housekeeper 43595.00000 1.307850e+05 97377.11 3.245904e+04 19376.290 2877.50 3 1.937629e+04 58128.87 2.281621e+05 1.889139e+05 39248.24 NULL
2023 Dept. Of Homeless Services Human Resources Technician 42743.00000 4.274300e+04 36.35 3.635000e+01 36.350 1.50 1 3.635000e+01 36.35 4.277935e+04 4.277935e+04 0.00 NULL
2023 Dept. Of Homeless Services Inspector 58919.66667 1.767590e+05 33823.46 1.127449e+04 2854.220 766.50 3 2.854220e+03 8562.66 2.105825e+05 1.853217e+05 25260.80 NULL
2023 Dept. Of Homeless Services Locksmith NA NA 4414.06 2.207030e+03 2207.030 103.00 2 2.207030e+03 4414.06 NA NA NA NULL
2023 Dept. Of Homeless Services Maintenance Worker NA NA 263704.98 1.648156e+04 6910.845 5570.50 16 6.910845e+03 110573.52 NA NA NA NULL
2023 Dept. Of Homeless Services Motor Vehicle Operator 53645.03333 1.609351e+06 288629.11 9.620970e+03 6067.660 7085.12 30 6.067660e+03 182029.80 1.897980e+06 1.791381e+06 106599.31 NULL
2023 Dept. Of Homeless Services Motor Vehicle Supervisor 63410.50000 5.072840e+05 180036.49 2.250456e+04 11188.500 4082.00 8 1.118850e+04 89508.00 6.873205e+05 5.967920e+05 90528.49 NULL
2023 Dept. Of Homeless Services Oiler NA NA 461472.34 4.195203e+04 40880.920 5163.25 11 4.088092e+04 449690.12 NA NA NA NULL
2023 Dept. Of Homeless Services Painter NA NA 49370.90 9.874180e+03 7426.730 731.25 5 7.426730e+03 37133.65 NA NA NA NULL
2023 Dept. Of Homeless Services Plumber NA NA 413546.91 1.969271e+04 13737.510 3219.00 21 1.373751e+04 288487.71 NA NA NA NULL
2023 Dept. Of Homeless Services Plumber’s Helper NA NA 35366.38 1.178879e+04 15824.020 503.50 3 1.178879e+04 35366.38 NA NA NA NULL
2023 Dept. Of Homeless Services Principal Administrative Associate - Non Supvr 64645.13636 1.422193e+06 315572.78 1.434422e+04 3846.900 6160.50 22 3.846900e+03 84631.80 1.737766e+06 1.506825e+06 230940.98 NULL
2023 Dept. Of Homeless Services Procurement Analyst 58308.00000 1.166160e+05 1358.53 6.792650e+02 679.265 33.50 2 6.792650e+02 1358.53 1.179745e+05 1.179745e+05 0.00 NULL
2023 Dept. Of Homeless Services Recreation Director 52351.00000 5.235100e+04 28397.76 2.839776e+04 28397.760 707.75 1 2.839776e+04 28397.76 8.074876e+04 8.074876e+04 0.00 NULL
2023 Dept. Of Homeless Services Recreation Supervisor 64839.00000 6.483900e+04 5852.53 5.852530e+03 5852.530 133.75 1 5.852530e+03 5852.53 7.069153e+04 7.069153e+04 0.00 NULL
2023 Dept. Of Homeless Services Research Assistant 63166.00000 6.316600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.316600e+04 6.316600e+04 0.00 NULL
2023 Dept. Of Homeless Services Secretary 63476.00000 6.347600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.347600e+04 6.347600e+04 0.00 NULL
2023 Dept. Of Homeless Services Senior Consultant 61325.70494 4.292799e+05 39971.88 5.710269e+03 3244.020 696.25 7 3.244020e+03 22708.14 4.692518e+05 4.519881e+05 17263.74 NULL
2023 Dept. Of Homeless Services Senior Stationary Engineer NA NA 67551.96 6.755196e+04 67551.960 640.00 1 6.755196e+04 67551.96 NA NA NA NULL
2023 Dept. Of Homeless Services Sheet Metal Worker NA NA 25600.64 1.280032e+04 12800.320 221.50 2 1.280032e+04 25600.64 NA NA NA NULL
2023 Dept. Of Homeless Services Social Worker 65259.36364 7.178530e+05 82444.38 7.494944e+03 1880.680 1637.50 11 1.880680e+03 20687.48 8.002974e+05 7.385405e+05 61756.90 NULL
2023 Dept. Of Homeless Services Space Analyst 73479.00000 9.552270e+05 117596.53 9.045887e+03 0.000 2160.00 13 0.000000e+00 0.00 1.072824e+06 9.552270e+05 117596.53 NULL
2023 Dept. Of Homeless Services Special Officer 42123.13801 1.861843e+07 5411819.40 1.224394e+04 9195.030 169762.35 442 9.195030e+03 4064203.26 2.403025e+07 2.268263e+07 1347616.14 NULL
2023 Dept. Of Homeless Services Staff Analyst 69487.53846 9.033380e+05 16593.58 1.276429e+03 0.000 377.25 13 0.000000e+00 0.00 9.199316e+05 9.033380e+05 16593.58 NULL
2023 Dept. Of Homeless Services Stationary Engineer NA NA 387.96 3.879600e+02 387.960 4.00 1 3.879600e+02 387.96 NA NA NA NULL
2023 Dept. Of Homeless Services Stock Worker 37078.16667 2.224690e+05 20440.26 3.406710e+03 129.320 698.00 6 1.293200e+02 775.92 2.429093e+05 2.232449e+05 19664.34 NULL
2023 Dept. Of Homeless Services Superintendent Of Adult Institutions 83401.07692 1.084214e+06 191397.54 1.472289e+04 12946.310 3327.75 13 1.294631e+04 168302.03 1.275612e+06 1.252516e+06 23095.51 NULL
2023 Dept. Of Homeless Services Supervising Special Officer 58402.19008 7.066665e+06 2181970.48 1.803281e+04 18013.350 52648.72 121 1.801335e+04 2179615.35 9.248635e+06 9.246280e+06 2355.13 NULL
2023 Dept. Of Homeless Services Supervisor Bricklayer NA NA 33564.13 3.356413e+04 33564.130 413.00 1 3.356413e+04 33564.13 NA NA NA NULL
2023 Dept. Of Homeless Services Supervisor Carpenter NA NA 96610.63 2.415266e+04 24872.245 1177.50 4 2.415266e+04 96610.63 NA NA NA NULL
2023 Dept. Of Homeless Services Supervisor Electrician NA NA 163955.40 5.465180e+04 62878.020 1627.50 3 5.465180e+04 163955.40 NA NA NA NULL
2023 Dept. Of Homeless Services Supervisor I 64749.20588 2.201473e+06 329341.22 9.686506e+03 4305.900 6668.50 34 4.305900e+03 146400.60 2.530814e+06 2.347874e+06 182940.62 NULL
2023 Dept. Of Homeless Services Supervisor I Social Work 71434.00000 7.143400e+04 20.10 2.010000e+01 20.100 0.50 1 2.010000e+01 20.10 7.145410e+04 7.145410e+04 0.00 NULL
2023 Dept. Of Homeless Services Supervisor Ii 74609.88889 6.714890e+05 107415.81 1.193509e+04 6627.320 1955.00 9 6.627320e+03 59645.88 7.789048e+05 7.311349e+05 47769.93 NULL
2023 Dept. Of Homeless Services Supervisor Ii Social Work 81552.37500 1.304838e+06 122100.85 7.631303e+03 764.230 2033.75 16 7.642300e+02 12227.68 1.426939e+06 1.317066e+06 109873.17 NULL
2023 Dept. Of Homeless Services Supervisor Iii Social Work 91768.00000 9.176800e+04 24434.84 2.443484e+04 24434.840 360.50 1 2.443484e+04 24434.84 1.162028e+05 1.162028e+05 0.00 NULL
2023 Dept. Of Homeless Services Supervisor Of Mechanics NA NA 263114.83 8.770494e+04 73469.820 2708.50 3 7.346982e+04 220409.46 NA NA NA NULL
2023 Dept. Of Homeless Services Supervisor Of Stock Workers 63705.00000 6.370500e+04 6026.84 6.026840e+03 6026.840 146.50 1 6.026840e+03 6026.84 6.973184e+04 6.973184e+04 0.00 NULL
2023 Dept. Of Homeless Services Supervisor Painter NA NA 1543.20 1.543200e+03 1543.200 20.00 1 1.543200e+03 1543.20 NA NA NA NULL
2023 Dept. Of Homeless Services Supervisor Plumber NA NA 148761.39 4.958713e+04 60474.880 1154.50 3 4.958713e+04 148761.39 NA NA NA NULL
2023 District Attorney Kings County Accountant 78508.50000 1.570170e+05 22.17 1.108500e+01 11.085 0.00 2 1.108500e+01 22.17 1.570392e+05 1.570392e+05 0.00 NULL
2023 District Attorney Kings County Adm Manager-Non-Mgrl 90323.50000 7.225880e+05 4784.99 5.981237e+02 0.000 94.25 8 0.000000e+00 0.00 7.273730e+05 7.225880e+05 4784.99 NULL
2023 District Attorney Kings County Administrative Chief 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2023 District Attorney Kings County Administrative Community Relations Specialist 125670.00000 2.513400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.513400e+05 2.513400e+05 0.00 NULL
2023 District Attorney Kings County Administrative Manager 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2023 District Attorney Kings County Administrative Procurement Analyst-Non-Mgrl 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2023 District Attorney Kings County Administrative Staff Analyst 157063.66667 4.711910e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.711910e+05 4.711910e+05 0.00 NULL
2023 District Attorney Kings County Assistant District Attorney 115698.00169 6.849322e+07 0.00 0.000000e+00 0.000 0.00 592 0.000000e+00 0.00 6.849322e+07 6.849322e+07 0.00 NULL
2023 District Attorney Kings County Certified It Developer 134085.66667 4.022570e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.022570e+05 4.022570e+05 0.00 NULL
2023 District Attorney Kings County Chief Information Technology Officer 195000.00000 1.950000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.950000e+05 1.950000e+05 0.00 NULL
2023 District Attorney Kings County Chief Rackets Investigator 169800.00000 1.698000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.698000e+05 1.698000e+05 0.00 NULL
2023 District Attorney Kings County City Research Scientist 92874.66667 2.786240e+05 10682.15 3.560717e+03 4909.840 205.50 3 3.560717e+03 10682.15 2.893062e+05 2.893062e+05 0.00 NULL
2023 District Attorney Kings County Clerical Associate 54153.63158 1.028919e+06 2120.55 1.116079e+02 0.000 48.50 19 0.000000e+00 0.00 1.031040e+06 1.028919e+06 2120.55 NULL
2023 District Attorney Kings County Community Assistant 39907.48225 4.908620e+06 51953.36 4.223850e+02 0.000 1764.00 123 0.000000e+00 0.00 4.960574e+06 4.908620e+06 51953.36 NULL
2023 District Attorney Kings County Community Associate 50679.06903 2.407256e+07 147238.29 3.099753e+02 0.000 3994.00 475 0.000000e+00 0.00 2.421980e+07 2.407256e+07 147238.29 NULL
2023 District Attorney Kings County Community Coordinator 77441.51773 1.091925e+07 116948.01 8.294185e+02 0.000 2296.75 141 0.000000e+00 0.00 1.103620e+07 1.091925e+07 116948.01 NULL
2023 District Attorney Kings County Computer Associate 83424.50000 1.668490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.668490e+05 1.668490e+05 0.00 NULL
2023 District Attorney Kings County Computer Specialist 129352.50000 5.174100e+05 13157.20 3.289300e+03 1437.585 174.50 4 1.437585e+03 5750.34 5.305672e+05 5.231603e+05 7406.86 NULL
2023 District Attorney Kings County Confidential Asst Office Of District Attorney, King County 117250.00000 1.172500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.172500e+05 1.172500e+05 0.00 NULL
2023 District Attorney Kings County Confidential Strategy Planner 111069.00000 3.332070e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.332070e+05 3.332070e+05 0.00 NULL
2023 District Attorney Kings County Director Of Crim Justice Data Share And Info Servs Kda 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2023 District Attorney Kings County Director Of Crime Strategies And Analysis 110000.00000 1.100000e+05 1957.62 1.957620e+03 1957.620 40.25 1 1.957620e+03 1957.62 1.119576e+05 1.119576e+05 0.00 NULL
2023 District Attorney Kings County Director Of Public Information 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2023 District Attorney Kings County District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2023 District Attorney Kings County Executive Assistant 105142.60000 1.051426e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.051426e+06 1.051426e+06 0.00 NULL
2023 District Attorney Kings County Executive Program Specialist 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2023 District Attorney Kings County It Infrastructure Engineer 163909.00000 1.639090e+05 1867.64 1.867640e+03 1867.640 15.25 1 1.867640e+03 1867.64 1.657766e+05 1.657766e+05 0.00 NULL
2023 District Attorney Kings County It Project Specialist 116234.00000 3.487020e+05 200.32 6.677333e+01 20.110 0.00 3 2.011000e+01 60.33 3.489023e+05 3.487623e+05 139.99 NULL
2023 District Attorney Kings County It Service Management Specialist 116699.00000 1.166990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.166990e+05 1.166990e+05 0.00 NULL
2023 District Attorney Kings County Media Services Technician 58638.90000 5.863890e+05 35982.76 3.598276e+03 2272.950 842.75 10 2.272950e+03 22729.50 6.223718e+05 6.091185e+05 13253.26 NULL
2023 District Attorney Kings County Office Assistant 40174.00000 4.017400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.017400e+04 4.017400e+04 0.00 NULL
2023 District Attorney Kings County Paralegal Aide 54270.50000 4.341640e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 4.341640e+05 4.341640e+05 0.00 NULL
2023 District Attorney Kings County Principal Accountant Investigator 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2023 District Attorney Kings County Principal Administrative Associate - Non Supvr 75255.16667 9.030620e+05 7791.66 6.493050e+02 0.000 135.50 12 0.000000e+00 0.00 9.108537e+05 9.030620e+05 7791.66 NULL
2023 District Attorney Kings County Reporter/ Stenographer 67031.34339 1.876878e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 1.876878e+06 1.876878e+06 0.00 NULL
2023 District Attorney Kings County Secretary 57143.75000 2.285750e+05 17.48 4.370000e+00 0.000 0.00 4 0.000000e+00 0.00 2.285925e+05 2.285750e+05 17.48 NULL
2023 District Attorney Kings County Social Worker 62578.60000 3.128930e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.128930e+05 3.128930e+05 0.00 NULL
2023 District Attorney Kings County Special Officer 50207.00000 1.004140e+05 6380.44 3.190220e+03 3190.220 176.75 2 3.190220e+03 6380.44 1.067944e+05 1.067944e+05 0.00 NULL
2023 District Attorney Kings County Strategic Initiative Specialist 108657.00000 3.259710e+05 96.30 3.210000e+01 0.000 2.00 3 0.000000e+00 0.00 3.260673e+05 3.259710e+05 96.30 NULL
2023 District Attorney Kings County Summer College Intern 3574.50000 8.936250e+04 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 8.936250e+04 8.936250e+04 0.00 NULL
2023 District Attorney Kings County Supervising Accountant Investigator 106181.16667 6.370870e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.370870e+05 6.370870e+05 0.00 NULL
2023 District Attorney Qns County Adm Manager-Non-Mgrl 98318.84615 1.278145e+06 153462.60 1.180482e+04 12108.420 2458.00 13 1.180482e+04 153462.60 1.431608e+06 1.431608e+06 0.00 NULL
2023 District Attorney Qns County Administrative Accountant 92537.00000 9.253700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.253700e+04 9.253700e+04 0.00 NULL
2023 District Attorney Qns County Administrative Manager 158207.50000 3.164150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.164150e+05 3.164150e+05 0.00 NULL
2023 District Attorney Qns County Administrative Public Information Specialist 144361.00000 1.443610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.443610e+05 1.443610e+05 0.00 NULL
2023 District Attorney Qns County Administrative Staff Analyst 157375.66667 4.721270e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.721270e+05 4.721270e+05 0.00 NULL
2023 District Attorney Qns County Agency Chief Contracting Officer 131250.00000 1.312500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.312500e+05 1.312500e+05 0.00 NULL
2023 District Attorney Qns County Assistant District Attorney 111721.80488 4.759349e+07 687.26 1.613286e+00 0.000 24.50 426 0.000000e+00 0.00 4.759418e+07 4.759349e+07 687.26 NULL
2023 District Attorney Qns County Certified It Administrator 127214.80000 6.360740e+05 62921.73 1.258435e+04 11800.180 748.25 5 1.180018e+04 59000.90 6.989957e+05 6.950749e+05 3920.83 NULL
2023 District Attorney Qns County Certified It Developer 116549.00000 1.165490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.165490e+05 1.165490e+05 0.00 NULL
2023 District Attorney Qns County City Seasonal Aide 20585.46600 2.058547e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.058547e+04 2.058547e+04 0.00 NULL
2023 District Attorney Qns County City Tax Auditor 87648.00000 1.752960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.752960e+05 1.752960e+05 0.00 NULL
2023 District Attorney Qns County Clerical Associate 58127.52174 1.336933e+06 18946.99 8.237822e+02 0.000 502.00 23 0.000000e+00 0.00 1.355880e+06 1.336933e+06 18946.99 NULL
2023 District Attorney Qns County Community Assistant 42168.59183 2.192767e+06 56277.15 1.082253e+03 0.000 1944.50 52 0.000000e+00 0.00 2.249044e+06 2.192767e+06 56277.15 NULL
2023 District Attorney Qns County Community Associate 49805.22412 1.329799e+07 165051.14 6.181691e+02 0.000 4578.50 267 0.000000e+00 0.00 1.346305e+07 1.329799e+07 165051.14 NULL
2023 District Attorney Qns County Community Coordinator 82212.75407 3.535148e+06 98328.08 2.286700e+03 11.680 1714.00 43 1.168000e+01 502.24 3.633477e+06 3.535651e+06 97825.84 NULL
2023 District Attorney Qns County Computer Specialist 122158.66667 3.664760e+05 46665.78 1.555526e+04 8599.880 552.25 3 8.599880e+03 25799.64 4.131418e+05 3.922756e+05 20866.14 NULL
2023 District Attorney Qns County Computer Systems Manager 186688.50000 3.733770e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.733770e+05 3.733770e+05 0.00 NULL
2023 District Attorney Qns County Customer Information Representative Ma L 1549 60813.00000 6.081300e+04 7409.12 7.409120e+03 7409.120 181.75 1 7.409120e+03 7409.12 6.822212e+04 6.822212e+04 0.00 NULL
2023 District Attorney Qns County Director Of Alt Sentencing And Offender Re-Entry Progs Qn Da 166328.00000 1.663280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.663280e+05 1.663280e+05 0.00 NULL
2023 District Attorney Qns County Director Of Criminal Justice Data Share And Info Servs Qn Da 42225.00000 4.222500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.222500e+04 4.222500e+04 0.00 NULL
2023 District Attorney Qns County Director Of Criminal Justice Planning And Policy Development 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2023 District Attorney Qns County Director Of Elder Abuse Program Services Qn Da 104447.00000 1.044470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.044470e+05 1.044470e+05 0.00 NULL
2023 District Attorney Qns County Director Of Invest Accounting And Econ Crimes Investigation 127200.00000 1.272000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.272000e+05 1.272000e+05 0.00 NULL
2023 District Attorney Qns County Director Of Public Information 190365.50000 3.807310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.807310e+05 3.807310e+05 0.00 NULL
2023 District Attorney Qns County District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2023 District Attorney Qns County Executive Agency Counsel 191950.00000 3.839000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.839000e+05 3.839000e+05 0.00 NULL
2023 District Attorney Qns County It Security Specialist 128029.00000 2.560580e+05 6662.20 3.331100e+03 3331.100 81.25 2 3.331100e+03 6662.20 2.627202e+05 2.627202e+05 0.00 NULL
2023 District Attorney Qns County Paralegal Aide 58635.23077 1.524516e+06 51640.96 1.986191e+03 1.635 1148.00 26 1.635000e+00 42.51 1.576157e+06 1.524559e+06 51598.45 NULL
2023 District Attorney Qns County Principal Administrative Associate - Non Supvr 70509.07407 1.903745e+06 147366.74 5.458027e+03 1399.920 2988.75 27 1.399920e+03 37797.84 2.051112e+06 1.941543e+06 109568.90 NULL
2023 District Attorney Qns County Private Secretary 109220.50000 2.184410e+05 152.95 7.647500e+01 76.475 2.75 2 7.647500e+01 152.95 2.185940e+05 2.185940e+05 0.00 NULL
2023 District Attorney Qns County Reporter/ Stenographer 86256.31250 1.380101e+06 171659.07 1.072869e+04 4730.415 2704.50 16 4.730415e+03 75686.64 1.551760e+06 1.455788e+06 95972.43 NULL
2023 District Attorney Qns County Secretary 68112.00000 3.405600e+05 4.93 9.860000e-01 0.000 0.00 5 0.000000e+00 0.00 3.405649e+05 3.405600e+05 4.93 NULL
2023 District Attorney Qns County Special Assistant To Da 124212.15385 1.614758e+06 337.37 2.595154e+01 0.000 0.00 13 0.000000e+00 0.00 1.615095e+06 1.614758e+06 337.37 NULL
2023 District Attorney Qns County Staff Analyst 61866.00000 6.186600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.186600e+04 6.186600e+04 0.00 NULL
2023 District Attorney Qns County Summer Graduate Intern 5210.80683 2.136431e+05 0.00 0.000000e+00 0.000 0.00 41 0.000000e+00 0.00 2.136431e+05 2.136431e+05 0.00 NULL
2023 District Attorney Qns County Supervising Accountant Investigator 100790.00000 1.007900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.007900e+05 1.007900e+05 0.00 NULL
2023 District Attorney Richmond Cou Administrative Manager 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2023 District Attorney Richmond Cou Administrative Procurement Analyst 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2023 District Attorney Richmond Cou Administrative Procurement Analyst-Non-Mgrl 85000.00000 8.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.500000e+04 8.500000e+04 0.00 NULL
2023 District Attorney Richmond Cou Administrative Public Records Officer 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2023 District Attorney Richmond Cou Administrative Staff Analyst 155765.00000 1.557650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.557650e+05 1.557650e+05 0.00 NULL
2023 District Attorney Richmond Cou Assistant District Attorney 115045.44304 9.088590e+06 0.00 0.000000e+00 0.000 0.00 79 0.000000e+00 0.00 9.088590e+06 9.088590e+06 0.00 NULL
2023 District Attorney Richmond Cou Associate Staff Analyst 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2023 District Attorney Richmond Cou Clerical Associate 70003.20000 3.500160e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.500160e+05 3.500160e+05 0.00 NULL
2023 District Attorney Richmond Cou Community Assistant 40011.74860 1.600470e+05 121.94 3.048500e+01 0.000 5.50 4 0.000000e+00 0.00 1.601689e+05 1.600470e+05 121.94 NULL
2023 District Attorney Richmond Cou Community Associate 58902.70056 7.303935e+06 18135.77 1.462562e+02 0.000 509.50 124 0.000000e+00 0.00 7.322071e+06 7.303935e+06 18135.77 NULL
2023 District Attorney Richmond Cou Community Coordinator 84442.36000 2.111059e+06 7014.06 2.805624e+02 0.000 137.00 25 0.000000e+00 0.00 2.118073e+06 2.111059e+06 7014.06 NULL
2023 District Attorney Richmond Cou Computer Programmer Analyst 86314.00000 8.631400e+04 13.65 1.365000e+01 13.650 0.00 1 1.365000e+01 13.65 8.632765e+04 8.632765e+04 0.00 NULL
2023 District Attorney Richmond Cou Computer Systems Manager 125500.00000 1.255000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.255000e+05 1.255000e+05 0.00 NULL
2023 District Attorney Richmond Cou District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2023 District Attorney Richmond Cou Paralegal Aide 87308.00000 8.730800e+04 1699.60 1.699600e+03 1699.600 32.50 1 1.699600e+03 1699.60 8.900760e+04 8.900760e+04 0.00 NULL
2023 District Attorney Richmond Cou Reporter/ Stenographer 84938.00000 5.945660e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.945660e+05 5.945660e+05 0.00 NULL
2023 District Attorney Richmond Cou Secretary 58831.00000 5.883100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.883100e+04 5.883100e+04 0.00 NULL
2023 District Attorney Richmond Cou Social Worker 73032.50000 1.460650e+05 192.98 9.649000e+01 96.490 4.50 2 9.649000e+01 192.98 1.462580e+05 1.462580e+05 0.00 NULL
2023 District Attorney Richmond Cou Special Assistant To The District Attorney 122812.33333 7.368740e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.368740e+05 7.368740e+05 0.00 NULL
2023 District Attorney-Manhattan Admin Contract Specialist 148398.00000 2.967960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.967960e+05 2.967960e+05 0.00 NULL
2023 District Attorney-Manhattan Administrative Chief 152667.48571 5.343362e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 5.343362e+06 5.343362e+06 0.00 NULL
2023 District Attorney-Manhattan Administrative Labor Relations Analyst 146091.25000 5.843650e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.843650e+05 5.843650e+05 0.00 NULL
2023 District Attorney-Manhattan Administrative Manager 124588.00000 1.245880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.245880e+05 1.245880e+05 0.00 NULL
2023 District Attorney-Manhattan Administrative Public Records Officer 142500.00000 1.425000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.425000e+05 1.425000e+05 0.00 NULL
2023 District Attorney-Manhattan Administrative Staff Analyst 138000.00000 1.380000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.380000e+05 1.380000e+05 0.00 NULL
2023 District Attorney-Manhattan Assistant District Attorney 118652.98017 7.178505e+07 0.00 0.000000e+00 0.000 0.00 605 0.000000e+00 0.00 7.178505e+07 7.178505e+07 0.00 NULL
2023 District Attorney-Manhattan Assistant Media Services Technican 62856.50000 1.257130e+05 37608.34 1.880417e+04 18804.170 916.00 2 1.880417e+04 37608.34 1.633213e+05 1.633213e+05 0.00 NULL
2023 District Attorney-Manhattan Associate Staff Analyst 83000.00000 8.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.300000e+04 8.300000e+04 0.00 NULL
2023 District Attorney-Manhattan Carpenter NA NA 28665.39 7.166347e+03 8455.625 360.00 4 7.166347e+03 28665.39 NA NA NA NULL
2023 District Attorney-Manhattan Chief Investigating Accountant 125799.50000 4.528782e+06 17992.33 4.997869e+02 0.000 317.50 36 0.000000e+00 0.00 4.546774e+06 4.528782e+06 17992.33 NULL
2023 District Attorney-Manhattan City Custodial Assistant 38970.88235 6.625050e+05 59425.92 3.495642e+03 2153.640 1966.25 17 2.153640e+03 36611.88 7.219309e+05 6.991169e+05 22814.04 NULL
2023 District Attorney-Manhattan City Laborer NA NA 48808.43 6.101054e+03 6370.265 923.50 8 6.101054e+03 48808.43 NA NA NA NULL
2023 District Attorney-Manhattan Clerical Associate 83136.44444 7.482280e+05 13182.49 1.464721e+03 0.000 198.25 9 0.000000e+00 0.00 7.614105e+05 7.482280e+05 13182.49 NULL
2023 District Attorney-Manhattan College Aide 414.48847 6.921957e+04 0.00 0.000000e+00 0.000 0.00 167 0.000000e+00 0.00 6.921957e+04 6.921957e+04 0.00 NULL
2023 District Attorney-Manhattan Community Assistant 48217.49412 1.639395e+06 82147.47 2.416102e+03 5.875 1835.75 34 5.875000e+00 199.75 1.721542e+06 1.639595e+06 81947.72 NULL
2023 District Attorney-Manhattan Community Associate 54429.14081 5.453800e+07 747986.41 7.464934e+02 0.000 18087.58 1002 0.000000e+00 0.00 5.528599e+07 5.453800e+07 747986.41 NULL
2023 District Attorney-Manhattan Community Coordinator 89286.22822 1.357151e+07 582425.60 3.831747e+03 0.000 8036.75 152 0.000000e+00 0.00 1.415393e+07 1.357151e+07 582425.60 NULL
2023 District Attorney-Manhattan Computer Systems Manager 152500.00000 1.525000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.525000e+05 1.525000e+05 0.00 NULL
2023 District Attorney-Manhattan County Detective 75358.00000 3.014320e+05 59972.94 1.499324e+04 3601.180 965.75 4 3.601180e+03 14404.72 3.614049e+05 3.158367e+05 45568.22 NULL
2023 District Attorney-Manhattan District Attorney 212800.00000 2.128000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.128000e+05 2.128000e+05 0.00 NULL
2023 District Attorney-Manhattan Electrician NA NA 24876.90 1.243845e+04 12438.450 263.75 2 1.243845e+04 24876.90 NA NA NA NULL
2023 District Attorney-Manhattan Electricians Helper NA NA 3680.79 3.680790e+03 3680.790 61.50 1 3.680790e+03 3680.79 NA NA NA NULL
2023 District Attorney-Manhattan Engineering Technician 70038.50000 1.400770e+05 59.71 2.985500e+01 29.855 2.00 2 2.985500e+01 59.71 1.401367e+05 1.401367e+05 0.00 NULL
2023 District Attorney-Manhattan Executive Director 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2023 District Attorney-Manhattan High Pressure Plant Tender NA NA 4857.00 4.857000e+03 4857.000 72.50 1 4.857000e+03 4857.00 NA NA NA NULL
2023 District Attorney-Manhattan Interpreter 83462.00000 3.338480e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.338480e+05 3.338480e+05 0.00 NULL
2023 District Attorney-Manhattan Management Auditor 116309.00000 1.163090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.163090e+05 1.163090e+05 0.00 NULL
2023 District Attorney-Manhattan Media Services Technician 77435.00000 6.194800e+05 231544.08 2.894301e+04 28970.990 3582.50 8 2.894301e+04 231544.08 8.510241e+05 8.510241e+05 0.00 NULL
2023 District Attorney-Manhattan Office Assistant 53367.00000 1.067340e+05 12.17 6.085000e+00 6.085 0.00 2 6.085000e+00 12.17 1.067462e+05 1.067462e+05 0.00 NULL
2023 District Attorney-Manhattan Painter NA NA 17975.90 8.987950e+03 8987.950 266.25 2 8.987950e+03 17975.90 NA NA NA NULL
2023 District Attorney-Manhattan Paralegal Aide 87679.00000 8.767900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.767900e+04 8.767900e+04 0.00 NULL
2023 District Attorney-Manhattan Photographer 65055.33333 1.951660e+05 35306.11 1.176870e+04 10345.500 828.25 3 1.034550e+04 31036.50 2.304721e+05 2.262025e+05 4269.61 NULL
2023 District Attorney-Manhattan Principal Accountant Investigator 126391.16667 2.275041e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.275041e+06 2.275041e+06 0.00 NULL
2023 District Attorney-Manhattan Principal Administrative Associate - Non Supvr 85400.25000 3.416010e+05 5281.61 1.320402e+03 48.440 90.50 4 4.844000e+01 193.76 3.468826e+05 3.417948e+05 5087.85 NULL
2023 District Attorney-Manhattan Reporter/ Stenographer 91900.58519 2.481316e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 2.481316e+06 2.481316e+06 0.00 NULL
2023 District Attorney-Manhattan Secretary 121905.00000 4.876200e+05 19302.41 4.825602e+03 4048.615 295.00 4 4.048615e+03 16194.46 5.069224e+05 5.038145e+05 3107.95 NULL
2023 District Attorney-Manhattan Senior Accountant Investigator 79059.42857 1.660248e+06 14984.41 7.135433e+02 0.000 297.25 21 0.000000e+00 0.00 1.675232e+06 1.660248e+06 14984.41 NULL
2023 District Attorney-Manhattan Senior Secretary 71815.00000 2.872600e+05 169.69 4.242250e+01 0.000 3.00 4 0.000000e+00 0.00 2.874297e+05 2.872600e+05 169.69 NULL
2023 District Attorney-Manhattan Special Officer 49278.50000 2.956710e+05 8888.35 1.481392e+03 999.720 239.00 6 9.997200e+02 5998.32 3.045593e+05 3.016693e+05 2890.03 NULL
2023 District Attorney-Manhattan Staff Analyst 105675.00000 1.056750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.056750e+05 1.056750e+05 0.00 NULL
2023 District Attorney-Manhattan Supervising Accountant Investigator 82253.00000 1.645060e+05 11546.45 5.773225e+03 5773.225 178.75 2 5.773225e+03 11546.45 1.760525e+05 1.760525e+05 0.00 NULL
2023 District Attorney-Manhattan Supervising Special Officer 55853.00000 1.117060e+05 18707.36 9.353680e+03 9353.680 466.25 2 9.353680e+03 18707.36 1.304134e+05 1.304134e+05 0.00 NULL
2023 District Attorney-Manhattan Supervisor Electrician NA NA 7544.32 7.544320e+03 7544.320 71.25 1 7.544320e+03 7544.32 NA NA NA NULL
2023 District Attorney-Manhattan Supervisor Of Mechanics 133577.00000 1.335770e+05 23542.26 2.354226e+04 23542.260 245.50 1 2.354226e+04 23542.26 1.571193e+05 1.571193e+05 0.00 NULL
2023 District Attorney-Manhattan Supervisor Painter NA NA 22839.36 2.283936e+04 22839.360 296.00 1 2.283936e+04 22839.36 NA NA NA NULL
2023 District Attorney-Special Narc Administrative Chief 194929.00000 5.847870e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.847870e+05 5.847870e+05 0.00 NULL
2023 District Attorney-Special Narc Administrative Community Relations Specialist 145660.00000 1.456600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.456600e+05 1.456600e+05 0.00 NULL
2023 District Attorney-Special Narc Administrative Labor Relations Analyst 185000.00000 1.850000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.850000e+05 1.850000e+05 0.00 NULL
2023 District Attorney-Special Narc Assistant District Attorney 130162.71818 1.431790e+07 0.00 0.000000e+00 0.000 0.00 110 0.000000e+00 0.00 1.431790e+07 1.431790e+07 0.00 NULL
2023 District Attorney-Special Narc Associate Staff Analyst 120597.00000 1.205970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.205970e+05 1.205970e+05 0.00 NULL
2023 District Attorney-Special Narc Chief Investigating Accountant 142025.00000 4.260750e+05 5.10 1.700000e+00 0.000 0.00 3 0.000000e+00 0.00 4.260801e+05 4.260750e+05 5.10 NULL
2023 District Attorney-Special Narc Chief Rackets Investigator 168727.50000 3.374550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.374550e+05 3.374550e+05 0.00 NULL
2023 District Attorney-Special Narc Clerical Associate 97085.44444 8.737690e+05 5460.34 6.067044e+02 0.000 128.25 9 0.000000e+00 0.00 8.792293e+05 8.737690e+05 5460.34 NULL
2023 District Attorney-Special Narc College Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 District Attorney-Special Narc Community Assistant 62663.00000 1.253260e+05 169.57 8.478500e+01 84.785 4.00 2 8.478500e+01 169.57 1.254956e+05 1.254956e+05 0.00 NULL
2023 District Attorney-Special Narc Community Associate 66837.20690 3.876558e+06 13059.23 2.251591e+02 0.000 321.00 58 0.000000e+00 0.00 3.889617e+06 3.876558e+06 13059.23 NULL
2023 District Attorney-Special Narc Community Coordinator 96247.50000 7.699800e+05 1707.27 2.134087e+02 0.000 19.50 8 0.000000e+00 0.00 7.716873e+05 7.699800e+05 1707.27 NULL
2023 District Attorney-Special Narc Computer Operations Manager 148206.00000 1.482060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.482060e+05 1.482060e+05 0.00 NULL
2023 District Attorney-Special Narc Computer Specialist 148993.00000 1.489930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.489930e+05 1.489930e+05 0.00 NULL
2023 District Attorney-Special Narc Deputy Chief Rackets Investigator 120833.33333 3.625000e+05 3718.75 1.239583e+03 0.000 59.50 3 0.000000e+00 0.00 3.662188e+05 3.625000e+05 3718.75 NULL
2023 District Attorney-Special Narc Director Of Public Information 182700.00000 1.827000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.827000e+05 1.827000e+05 0.00 NULL
2023 District Attorney-Special Narc Paralegal Aide 95861.87500 7.668950e+05 457.24 5.715500e+01 0.000 11.25 8 0.000000e+00 0.00 7.673522e+05 7.668950e+05 457.24 NULL
2023 District Attorney-Special Narc Rackets Investigator - Start >4-24-08 No Abc 67000.00000 1.340000e+05 8548.34 4.274170e+03 4274.170 175.25 2 4.274170e+03 8548.34 1.425483e+05 1.425483e+05 0.00 NULL
2023 District Attorney-Special Narc Reporter/ Stenographer 101457.20000 5.072860e+05 1096.84 2.193680e+02 0.000 17.00 5 0.000000e+00 0.00 5.083828e+05 5.072860e+05 1096.84 NULL
2023 District Attorney-Special Narc Secretary 102042.50000 2.040850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.040850e+05 2.040850e+05 0.00 NULL
2023 District Attorney-Special Narc Senior Rackets Investigator - Start >4-24-08 No Abc 79356.61538 1.031636e+06 31365.64 2.412742e+03 1330.530 492.00 13 1.330530e+03 17296.89 1.063002e+06 1.048933e+06 14068.75 NULL
2023 District Attorney-Special Narc Special Assistant District Attorney 211000.00000 2.110000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.110000e+05 2.110000e+05 0.00 NULL
2023 District Attorney-Special Narc Supervising Computer Service Technician 98794.00000 9.879400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.879400e+04 9.879400e+04 0.00 NULL
2023 District Attorney-Special Narc Supervising Rackets Investigator Start >4-24-08 No Abc 101135.33333 6.068120e+05 5578.91 9.298183e+02 129.870 75.50 6 1.298700e+02 779.22 6.123909e+05 6.075912e+05 4799.69 NULL
2023 Districting Commission Assistant Corporation Counsel 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2023 Districting Commission Community Liaison Representive 70000.00000 2.800000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.800000e+05 2.800000e+05 0.00 NULL
2023 Districting Commission Counsel 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2023 Districting Commission Districting Commission Administrative Assistant 55000.00000 5.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.500000e+04 5.500000e+04 0.00 NULL
2023 Districting Commission Executive Director 160000.00000 4.800000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.800000e+05 4.800000e+05 0.00 NULL
2023 Districting Commission Press Officer 107500.00000 1.075000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.075000e+05 1.075000e+05 0.00 NULL
2023 Districting Commission Technical Systems Manager 107500.00000 1.075000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.075000e+05 1.075000e+05 0.00 NULL
2023 Doe Custodial Payrol Custodian Engineer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1397 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Equal Employ Practices Comm Administrative Staff Analyst 97138.00000 9.713800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.713800e+04 9.713800e+04 0.00 NULL
2023 Equal Employ Practices Comm Associate Staff Analyst 81203.00000 8.120300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.120300e+04 8.120300e+04 0.00 NULL
2023 Equal Employ Practices Comm City Research Scientist 107789.14500 4.311566e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.311566e+05 4.311566e+05 0.00 NULL
2023 Equal Employ Practices Comm Community Coordinator 66857.20000 3.342860e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.342860e+05 3.342860e+05 0.00 NULL
2023 Equal Employ Practices Comm Computer Specialist 94244.00000 9.424400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.424400e+04 9.424400e+04 0.00 NULL
2023 Equal Employ Practices Comm Executive Agency Counsel 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2023 Equal Employ Practices Comm Executive Director 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2023 Equal Employ Practices Comm Executive Secretary 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2023 Financial Info Svcs Agency *Certified Wide Area Network Administrator 142064.00000 1.420640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.420640e+05 1.420640e+05 0.00 NULL
2023 Financial Info Svcs Agency Accountant 69181.00000 6.918100e+04 2.42 2.420000e+00 2.420 0.00 1 2.420000e+00 2.42 6.918342e+04 6.918342e+04 0.00 NULL
2023 Financial Info Svcs Agency Adm Manager-Non-Mgrl 92269.63636 1.014966e+06 97.97 8.906364e+00 0.000 2.50 11 0.000000e+00 0.00 1.015064e+06 1.014966e+06 97.97 NULL
2023 Financial Info Svcs Agency Admin Contract Specialist 145484.00000 1.454840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.454840e+05 1.454840e+05 0.00 NULL
2023 Financial Info Svcs Agency Administrative Accountant 104310.00000 1.043100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.043100e+05 1.043100e+05 0.00 NULL
2023 Financial Info Svcs Agency Administrative Procurement Analyst-Non-Mgrl 89377.00000 8.937700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.937700e+04 8.937700e+04 0.00 NULL
2023 Financial Info Svcs Agency Administrative Public Information Specialist Nm Former M1/M2 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2023 Financial Info Svcs Agency Administrative Space Analyst 153842.00000 3.076840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.076840e+05 3.076840e+05 0.00 NULL
2023 Financial Info Svcs Agency Administrative Staff Analyst 115376.25000 9.230100e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.230100e+05 9.230100e+05 0.00 NULL
2023 Financial Info Svcs Agency Agency Chief Contracting Officer 153056.00000 1.530560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.530560e+05 1.530560e+05 0.00 NULL
2023 Financial Info Svcs Agency Associate Staff Analyst 88453.00000 8.845300e+04 397.60 3.976000e+02 397.600 8.00 1 3.976000e+02 397.60 8.885060e+04 8.885060e+04 0.00 NULL
2023 Financial Info Svcs Agency Bookkeeper 64525.00000 6.452500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.452500e+04 6.452500e+04 0.00 NULL
2023 Financial Info Svcs Agency Certified It Administrator 131941.33333 3.958240e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.958240e+05 3.958240e+05 0.00 NULL
2023 Financial Info Svcs Agency Certified It Developer 129124.00000 1.291240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.291240e+05 1.291240e+05 0.00 NULL
2023 Financial Info Svcs Agency City Attendant 44017.00000 4.401700e+04 5415.75 5.415750e+03 5415.750 152.00 1 5.415750e+03 5415.75 4.943275e+04 4.943275e+04 0.00 NULL
2023 Financial Info Svcs Agency City Custodial Assistant 38251.00000 1.147530e+05 4663.64 1.554547e+03 1917.790 191.75 3 1.554547e+03 4663.64 1.194166e+05 1.194166e+05 0.00 NULL
2023 Financial Info Svcs Agency City Tax Auditor 77432.00000 7.743200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.743200e+04 7.743200e+04 0.00 NULL
2023 Financial Info Svcs Agency Clerical Associate 49834.94080 2.491747e+05 2657.69 5.315380e+02 0.000 83.50 5 0.000000e+00 0.00 2.518324e+05 2.491747e+05 2657.69 NULL
2023 Financial Info Svcs Agency College Aide 10096.39062 4.038556e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.038556e+04 4.038556e+04 0.00 NULL
2023 Financial Info Svcs Agency Community Assistant 41888.17500 4.188818e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.188818e+04 4.188818e+04 0.00 NULL
2023 Financial Info Svcs Agency Community Associate 58412.25000 2.336490e+05 2077.53 5.193825e+02 0.000 51.25 4 0.000000e+00 0.00 2.357265e+05 2.336490e+05 2077.53 NULL
2023 Financial Info Svcs Agency Community Coordinator 80054.57143 5.603820e+05 11830.83 1.690119e+03 4.930 200.75 7 4.930000e+00 34.51 5.722128e+05 5.604165e+05 11796.32 NULL
2023 Financial Info Svcs Agency Computer Associate 85154.04348 3.917086e+06 349306.13 7.593612e+03 2846.440 4906.50 46 2.846440e+03 130936.24 4.266392e+06 4.048022e+06 218369.89 NULL
2023 Financial Info Svcs Agency Computer Operations Manager 106573.33333 3.197200e+05 1.15 3.833333e-01 0.000 0.00 3 0.000000e+00 0.00 3.197212e+05 3.197200e+05 1.15 NULL
2023 Financial Info Svcs Agency Computer Programmer Analyst 72130.50000 1.442610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.442610e+05 1.442610e+05 0.00 NULL
2023 Financial Info Svcs Agency Computer Specialist 125615.63158 7.160091e+06 4469.15 7.840614e+01 0.000 54.75 57 0.000000e+00 0.00 7.164560e+06 7.160091e+06 4469.15 NULL
2023 Financial Info Svcs Agency Computer Systems Manager 144254.53105 2.885091e+07 148077.84 7.403892e+02 0.000 1613.75 200 0.000000e+00 0.00 2.899898e+07 2.885091e+07 148077.84 NULL
2023 Financial Info Svcs Agency Customer Information Representative Ma L 1549 45330.00000 4.533000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.533000e+04 4.533000e+04 0.00 NULL
2023 Financial Info Svcs Agency Executive Agency Counsel 156196.33333 9.371780e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.371780e+05 9.371780e+05 0.00 NULL
2023 Financial Info Svcs Agency Executive Director 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2023 Financial Info Svcs Agency It Automation And Monitoring Engineer 100411.00000 1.807398e+06 59850.62 3.325034e+03 97.735 952.25 18 9.773500e+01 1759.23 1.867249e+06 1.809157e+06 58091.39 NULL
2023 Financial Info Svcs Agency It Infrastructure Engineer 127533.88235 2.168076e+06 3359.53 1.976194e+02 0.000 41.50 17 0.000000e+00 0.00 2.171436e+06 2.168076e+06 3359.53 NULL
2023 Financial Info Svcs Agency It Project Specialist 125177.05263 2.378364e+06 1742.46 9.170842e+01 0.000 23.50 19 0.000000e+00 0.00 2.380106e+06 2.378364e+06 1742.46 NULL
2023 Financial Info Svcs Agency It Security Specialist 116835.14286 1.635692e+06 31220.72 2.230051e+03 0.000 416.25 14 0.000000e+00 0.00 1.666913e+06 1.635692e+06 31220.72 NULL
2023 Financial Info Svcs Agency It Service Management Specialist 108303.70000 1.083037e+06 2631.85 2.631850e+02 0.000 44.25 10 0.000000e+00 0.00 1.085669e+06 1.083037e+06 2631.85 NULL
2023 Financial Info Svcs Agency Motor Vehicle Operator 53799.00000 1.075980e+05 126.82 6.341000e+01 63.410 3.00 2 6.341000e+01 126.82 1.077248e+05 1.077248e+05 0.00 NULL
2023 Financial Info Svcs Agency New York City Public Service Fellow 46350.00000 4.635000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.635000e+04 4.635000e+04 0.00 NULL
2023 Financial Info Svcs Agency Principal Administrative Associate - Non Supvr 65745.00000 5.917050e+05 40727.44 4.525271e+03 1.080 825.75 9 1.080000e+00 9.72 6.324324e+05 5.917147e+05 40717.72 NULL
2023 Financial Info Svcs Agency Senior It Architect 142004.12500 2.272066e+06 1420.18 8.876125e+01 0.000 21.00 16 0.000000e+00 0.00 2.273486e+06 2.272066e+06 1420.18 NULL
2023 Financial Info Svcs Agency Staff Analyst 62370.00000 6.237000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.237000e+04 6.237000e+04 0.00 NULL
2023 Financial Info Svcs Agency Supervisor Of Office Machine Operations 48265.00000 4.826500e+04 7178.40 7.178400e+03 7178.400 192.25 1 7.178400e+03 7178.40 5.544340e+04 5.544340e+04 0.00 NULL
2023 Financial Info Svcs Agency Telecommunications Associate 65701.50000 5.256120e+05 39398.15 4.924769e+03 4232.285 855.50 8 4.232285e+03 33858.28 5.650102e+05 5.594703e+05 5539.87 NULL
2023 Financial Info Svcs Agency Telecommunications Manager 76500.00000 2.295000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.295000e+05 2.295000e+05 0.00 NULL
2023 Fire Department *Certified Applications Developer 115611.00000 1.156110e+05 8149.21 8.149210e+03 8149.210 124.50 1 8.149210e+03 8149.21 1.237602e+05 1.237602e+05 0.00 NULL
2023 Fire Department Accountant 76344.50000 1.526890e+05 170.29 8.514500e+01 85.145 3.50 2 8.514500e+01 170.29 1.528593e+05 1.528593e+05 0.00 NULL
2023 Fire Department Adm Manager-Non-Mgrl 86662.04831 5.373047e+06 336526.62 5.427849e+03 1806.690 6106.75 62 1.806690e+03 112014.78 5.709574e+06 5.485062e+06 224511.84 NULL
2023 Fire Department Admin Community Relations Specialist 86540.14067 1.298102e+06 188051.67 1.253678e+04 8420.900 3138.25 15 8.420900e+03 126313.50 1.486154e+06 1.424416e+06 61738.17 NULL
2023 Fire Department Admin Inspector 81267.28571 5.688710e+05 270808.19 3.868688e+04 41938.170 4401.50 7 3.868688e+04 270808.19 8.396792e+05 8.396792e+05 0.00 NULL
2023 Fire Department Admin Tests & Meas Spec 147842.00000 1.478420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.478420e+05 1.478420e+05 0.00 NULL
2023 Fire Department Administrative Architect 141000.00000 1.410000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.410000e+05 1.410000e+05 0.00 NULL
2023 Fire Department Administrative Blasting Inspector 123537.00000 1.235370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.235370e+05 1.235370e+05 0.00 NULL
2023 Fire Department Administrative Community Relations Specialist 153589.00000 3.071780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.071780e+05 3.071780e+05 0.00 NULL
2023 Fire Department Administrative Construction Project Manager 153247.00000 3.064940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.064940e+05 3.064940e+05 0.00 NULL
2023 Fire Department Administrative Director Of Marine Maintenance 120510.00000 1.205100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.205100e+05 1.205100e+05 0.00 NULL
2023 Fire Department Administrative Engineer 126918.50000 2.538370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.538370e+05 2.538370e+05 0.00 NULL
2023 Fire Department Administrative Fire Protection Inspector 120431.00000 1.565603e+06 66667.66 5.128282e+03 0.000 911.25 13 0.000000e+00 0.00 1.632271e+06 1.565603e+06 66667.66 NULL
2023 Fire Department Administrative Graphic Artist 98609.00000 9.860900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.860900e+04 9.860900e+04 0.00 NULL
2023 Fire Department Administrative Inspector 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2023 Fire Department Administrative Investigator 75784.00000 7.578400e+04 3337.52 3.337520e+03 3337.520 70.25 1 3.337520e+03 3337.52 7.912152e+04 7.912152e+04 0.00 NULL
2023 Fire Department Administrative Labor Relations Analyst 130089.50000 2.601790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.601790e+05 2.601790e+05 0.00 NULL
2023 Fire Department Administrative Management Auditor 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2023 Fire Department Administrative Procurement Analyst-Non-Mgrl 89279.51667 1.071354e+06 13649.49 1.137457e+03 0.000 317.00 12 0.000000e+00 0.00 1.085004e+06 1.071354e+06 13649.49 NULL
2023 Fire Department Administrative Project Manager 118496.66667 1.066470e+06 1674.42 1.860467e+02 0.000 29.75 9 0.000000e+00 0.00 1.068144e+06 1.066470e+06 1674.42 NULL
2023 Fire Department Administrative Psychologist 152325.00000 3.046500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.046500e+05 3.046500e+05 0.00 NULL
2023 Fire Department Administrative Public Information Specialist Nm Former M1/M2 101698.00000 3.050940e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.050940e+05 3.050940e+05 0.00 NULL
2023 Fire Department Administrative Public Records Officer 85000.00000 8.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.500000e+04 8.500000e+04 0.00 NULL
2023 Fire Department Administrative Quality Assurance Specialist 71082.45000 7.108245e+04 2582.72 2.582720e+03 2582.720 53.50 1 2.582720e+03 2582.72 7.366517e+04 7.366517e+04 0.00 NULL
2023 Fire Department Administrative Staff Analyst 111298.35567 6.677901e+06 139143.65 2.319061e+03 0.000 1912.00 60 0.000000e+00 0.00 6.817045e+06 6.677901e+06 139143.65 NULL
2023 Fire Department Administrative Supervisor Of Building Maintenance 139823.00000 2.796460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.796460e+05 2.796460e+05 0.00 NULL
2023 Fire Department Administrator Of Medical Affairs 213609.00000 2.136090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.136090e+05 2.136090e+05 0.00 NULL
2023 Fire Department Agency Attorney 96469.95652 2.218809e+06 17674.10 7.684391e+02 0.000 271.25 23 0.000000e+00 0.00 2.236483e+06 2.218809e+06 17674.10 NULL
2023 Fire Department Agency Attorney Interne 71757.00000 7.175700e+04 1777.23 1.777230e+03 1777.230 44.25 1 1.777230e+03 1777.23 7.353423e+04 7.353423e+04 0.00 NULL
2023 Fire Department Agency Deputy Medical Director 178326.37500 1.426611e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.426611e+06 1.426611e+06 0.00 NULL
2023 Fire Department Architect 101342.00000 1.013420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.013420e+05 1.013420e+05 0.00 NULL
2023 Fire Department Assistant Architect 77840.00000 7.784000e+04 1253.98 1.253980e+03 1253.980 29.75 1 1.253980e+03 1253.98 7.909398e+04 7.909398e+04 0.00 NULL
2023 Fire Department Assistant Chemical Engineer 75312.33333 2.259370e+05 18870.90 6.290300e+03 7049.520 401.25 3 6.290300e+03 18870.90 2.448079e+05 2.448079e+05 0.00 NULL
2023 Fire Department Assistant Chief Fire Marshal 215352.00000 4.307040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.307040e+05 4.307040e+05 0.00 NULL
2023 Fire Department Assistant Chief Of Department 241510.84615 3.139641e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 3.139641e+06 3.139641e+06 0.00 NULL
2023 Fire Department Assistant Civil Engineer 71726.00000 7.172600e+04 9552.44 9.552440e+03 9552.440 220.00 1 9.552440e+03 9552.44 8.127844e+04 8.127844e+04 0.00 NULL
2023 Fire Department Assistant Commissioner 163087.80000 1.630878e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.630878e+06 1.630878e+06 0.00 NULL
2023 Fire Department Assistant Electrical Engineer 72431.00000 4.345860e+05 306264.52 5.104409e+04 61438.215 5565.75 6 5.104409e+04 306264.52 7.408505e+05 7.408505e+05 0.00 NULL
2023 Fire Department Assistant Environmental Engineer 67609.00000 6.760900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.760900e+04 6.760900e+04 0.00 NULL
2023 Fire Department Assistant Mechanical Engineer 77447.20000 3.872360e+05 9366.96 1.873392e+03 0.000 228.00 5 0.000000e+00 0.00 3.966030e+05 3.872360e+05 9366.96 NULL
2023 Fire Department Associate Commissioner 213210.00000 2.132100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.132100e+05 2.132100e+05 0.00 NULL
2023 Fire Department Associate Fire Protection Inspector 75327.50000 1.581878e+07 2705136.72 1.288160e+04 9962.275 44250.00 210 9.962275e+03 2092077.75 1.852391e+07 1.791085e+07 613058.97 NULL
2023 Fire Department Associate Inspector 70390.91304 1.618991e+06 439966.54 1.912898e+04 19744.920 8442.75 23 1.912898e+04 439966.54 2.058958e+06 2.058958e+06 0.00 NULL
2023 Fire Department Associate Investigator 69154.82353 1.175632e+06 136937.39 8.055141e+03 3593.680 2716.50 17 3.593680e+03 61092.56 1.312569e+06 1.236725e+06 75844.83 NULL
2023 Fire Department Associate Project Manager 97241.55000 1.944831e+06 75831.65 3.791582e+03 1073.440 1211.00 20 1.073440e+03 21468.80 2.020663e+06 1.966300e+06 54362.85 NULL
2023 Fire Department Associate Public Records Officer 82400.00000 8.240000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.240000e+04 8.240000e+04 0.00 NULL
2023 Fire Department Associate Staff Analyst 86102.50000 1.033230e+06 13501.81 1.125151e+03 0.000 266.25 12 0.000000e+00 0.00 1.046732e+06 1.033230e+06 13501.81 NULL
2023 Fire Department Attending Physician 41069.87871 2.874892e+05 25223.34 3.603334e+03 0.000 382.00 7 0.000000e+00 0.00 3.127125e+05 2.874892e+05 25223.34 NULL
2023 Fire Department Auto Mechanic NA NA 4505160.51 2.869529e+04 26510.040 69230.25 157 2.651004e+04 4162076.28 NA NA NA NULL
2023 Fire Department Automotive Service Worker 46350.72000 1.158768e+06 269267.96 1.077072e+04 6816.100 7815.58 25 6.816100e+03 170402.50 1.428036e+06 1.329170e+06 98865.46 NULL
2023 Fire Department Battalion Chief 168087.69727 6.773934e+07 2314632.72 5.743506e+03 0.000 21181.67 403 0.000000e+00 0.00 7.005397e+07 6.773934e+07 2314632.72 NULL
2023 Fire Department Captain 131012.43168 8.437201e+07 40377832.34 6.269850e+04 64645.225 386348.03 644 6.269850e+04 40377832.34 1.247498e+08 1.247498e+08 0.00 NULL
2023 Fire Department Carpenter NA NA 332136.96 2.214246e+04 16100.850 4080.50 15 1.610085e+04 241512.75 NA NA NA NULL
2023 Fire Department Case - Management Nurse 83665.12738 3.513935e+06 66575.95 1.585142e+03 118.320 1089.25 42 1.183200e+02 4969.44 3.580511e+06 3.518905e+06 61606.51 NULL
2023 Fire Department Cashier 58198.00000 5.819800e+04 17806.98 1.780698e+04 17806.980 406.25 1 1.780698e+04 17806.98 7.600498e+04 7.600498e+04 0.00 NULL
2023 Fire Department Cement Mason NA NA 11303.50 5.651750e+03 5651.750 117.50 2 5.651750e+03 11303.50 NA NA NA NULL
2023 Fire Department Certified It Administrator 112103.09591 1.233134e+06 123876.06 1.126146e+04 10617.510 1572.50 11 1.061751e+04 116792.61 1.357010e+06 1.349927e+06 7083.45 NULL
2023 Fire Department Certified It Developer 125245.37500 1.001963e+06 21372.38 2.671548e+03 1885.165 285.00 8 1.885165e+03 15081.32 1.023335e+06 1.017044e+06 6291.06 NULL
2023 Fire Department Chaplain 31036.88889 2.793320e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 2.793320e+05 2.793320e+05 0.00 NULL
2023 Fire Department Chief Fire Marshal 235462.00000 4.709240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.709240e+05 4.709240e+05 0.00 NULL
2023 Fire Department Chief Of Department 242592.00000 2.425920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.425920e+05 2.425920e+05 0.00 NULL
2023 Fire Department City Laborer NA NA 245036.60 1.884897e+04 17912.100 4270.75 13 1.791210e+04 232857.30 NA NA NA NULL
2023 Fire Department City Medical Specialist 42464.03389 9.342087e+05 54612.46 2.482385e+03 0.000 679.00 22 0.000000e+00 0.00 9.888212e+05 9.342087e+05 54612.46 NULL
2023 Fire Department City Research Scientist 104262.07407 2.815076e+06 526.66 1.950593e+01 0.000 6.50 27 0.000000e+00 0.00 2.815603e+06 2.815076e+06 526.66 NULL
2023 Fire Department Clerical Associate 51864.37637 5.030845e+06 135541.28 1.397333e+03 0.000 3653.00 97 0.000000e+00 0.00 5.166386e+06 5.030845e+06 135541.28 NULL
2023 Fire Department Commissioner 243171.00000 4.863420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863420e+05 4.863420e+05 0.00 NULL
2023 Fire Department Communication Electrician NA NA 1519802.32 2.814449e+04 26999.325 19632.83 54 2.699933e+04 1457963.55 NA NA NA NULL
2023 Fire Department Community Assistant 57408.00000 5.740800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.740800e+04 5.740800e+04 0.00 NULL
2023 Fire Department Community Associate 46023.85750 9.665010e+05 32454.05 1.545431e+03 4.160 979.75 21 4.160000e+00 87.36 9.989551e+05 9.665884e+05 32366.69 NULL
2023 Fire Department Community Coordinator 71728.78125 2.295321e+06 165424.95 5.169530e+03 544.645 3313.50 32 5.446450e+02 17428.64 2.460746e+06 2.312750e+06 147996.31 NULL
2023 Fire Department Computer Aide-Non-Spvr 55800.00000 5.580000e+04 143.52 1.435200e+02 143.520 4.00 1 1.435200e+02 143.52 5.594352e+04 5.594352e+04 0.00 NULL
2023 Fire Department Computer Associate 84708.84211 3.218936e+06 1043612.45 2.746349e+04 18898.680 15673.00 38 1.889868e+04 718149.84 4.262548e+06 3.937086e+06 325462.61 NULL
2023 Fire Department Computer Operations Manager 68744.00000 6.874400e+04 6863.76 6.863760e+03 6863.760 132.00 1 6.863760e+03 6863.76 7.560776e+04 7.560776e+04 0.00 NULL
2023 Fire Department Computer Service Technician 71998.00000 7.199800e+04 36089.63 3.608963e+04 36089.630 593.00 1 3.608963e+04 36089.63 1.080876e+05 1.080876e+05 0.00 NULL
2023 Fire Department Computer Specialist 116083.83099 8.241952e+06 262238.21 3.693496e+03 28.260 3140.50 71 2.826000e+01 2006.46 8.504190e+06 8.243958e+06 260231.75 NULL
2023 Fire Department Computer Systems Manager 148278.59259 4.003522e+06 57333.34 2.123457e+03 0.000 613.25 27 0.000000e+00 0.00 4.060855e+06 4.003522e+06 57333.34 NULL
2023 Fire Department Confidential Strategy Planner 100000.00000 1.000000e+05 23566.92 2.356692e+04 23566.920 388.75 1 2.356692e+04 23566.92 1.235669e+05 1.235669e+05 0.00 NULL
2023 Fire Department Counsel 185066.00000 1.850660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.850660e+05 1.850660e+05 0.00 NULL
2023 Fire Department Customer Information Representative Ma L 1549 71650.83333 4.299050e+05 24936.73 4.156122e+03 121.605 509.00 6 1.216050e+02 729.63 4.548417e+05 4.306346e+05 24207.10 NULL
2023 Fire Department Deputy Assistant Chief Of Department 235462.00000 2.119158e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 2.119158e+06 2.119158e+06 0.00 NULL
2023 Fire Department Deputy Chief 192402.29412 1.635420e+07 0.00 0.000000e+00 0.000 0.00 85 0.000000e+00 0.00 1.635420e+07 1.635420e+07 0.00 NULL
2023 Fire Department Deputy Commissioner 232894.85714 1.630264e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.630264e+06 1.630264e+06 0.00 NULL
2023 Fire Department Director 85000.00000 8.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.500000e+04 8.500000e+04 0.00 NULL
2023 Fire Department Electrical Engineer 109594.50000 2.191890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.191890e+05 2.191890e+05 0.00 NULL
2023 Fire Department Electrical Engineering Intern 67043.00000 1.340860e+05 13466.86 6.733430e+03 6733.430 293.25 2 6.733430e+03 13466.86 1.475529e+05 1.475529e+05 0.00 NULL
2023 Fire Department Electrician NA NA 1089398.62 7.262657e+04 51472.520 11553.25 15 5.147252e+04 772087.80 NA NA NA NULL
2023 Fire Department Emergency Medical Specialist Trainee 36330.00000 8.101590e+06 6685.15 2.997825e+01 0.000 284.00 223 0.000000e+00 0.00 8.108275e+06 8.101590e+06 6685.15 NULL
2023 Fire Department Emergency Medical Specialist-Emt 50515.40825 1.640740e+08 26141197.62 8.048398e+03 4038.120 694493.16 3248 4.038120e+03 13115813.76 1.902152e+08 1.771899e+08 13025383.86 NULL
2023 Fire Department Emergency Medical Specialist-Paramedic 69017.10395 6.639445e+07 14329632.56 1.489567e+04 11439.945 277322.29 962 1.143994e+04 11005227.09 8.072409e+07 7.739968e+07 3324405.47 NULL
2023 Fire Department Employee Assistance Program Specialist 61369.17924 5.523226e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.523226e+05 5.523226e+05 0.00 NULL
2023 Fire Department Engineering Technician 66506.00000 6.650600e+04 16957.91 1.695791e+04 16957.910 359.75 1 1.695791e+04 16957.91 8.346391e+04 8.346391e+04 0.00 NULL
2023 Fire Department Executive Agency Counsel 153962.64286 2.155477e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.155477e+06 2.155477e+06 0.00 NULL
2023 Fire Department Executive Director Of Fleet Operations 178684.00000 1.786840e+05 2322.80 2.322800e+03 2322.800 17.50 1 2.322800e+03 2322.80 1.810068e+05 1.810068e+05 0.00 NULL
2023 Fire Department Executive Inspector 118000.00000 1.180000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.180000e+05 1.180000e+05 0.00 NULL
2023 Fire Department Executive Program Specialist 159736.66667 4.792100e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.792100e+05 4.792100e+05 0.00 NULL
2023 Fire Department Fire Alarm Dispatcher 59292.00568 1.043539e+07 4307607.36 2.447504e+04 21621.850 102075.98 176 2.162185e+04 3805445.60 1.474300e+07 1.424084e+07 502161.76 NULL
2023 Fire Department Fire Marshal 103122.00000 1.278713e+07 4323235.20 3.486480e+04 28621.235 53688.73 124 2.862124e+04 3549033.14 1.711036e+07 1.633616e+07 774202.06 NULL
2023 Fire Department Fire Medical Officer 157153.00000 4.714590e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 4.714590e+06 4.714590e+06 0.00 NULL
2023 Fire Department Fire Protection Inspector 58534.07568 1.082880e+07 764202.23 4.130823e+03 940.050 17261.11 185 9.400500e+02 173909.25 1.159301e+07 1.100271e+07 590292.98 NULL
2023 Fire Department Firefighter 83096.30068 7.279236e+08 290976107.91 3.321645e+04 32595.285 4302272.71 8760 3.259528e+04 285534696.60 1.018900e+09 1.013458e+09 5441411.31 NULL
2023 Fire Department First Deputy Commissioner 242767.00000 2.427670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.427670e+05 2.427670e+05 0.00 NULL
2023 Fire Department Graphic Artist 49821.00000 4.982100e+04 936.57 9.365700e+02 936.570 30.25 1 9.365700e+02 936.57 5.075757e+04 5.075757e+04 0.00 NULL
2023 Fire Department Head Nurse 95046.25000 3.801850e+05 3634.84 9.087100e+02 0.000 52.00 4 0.000000e+00 0.00 3.838198e+05 3.801850e+05 3634.84 NULL
2023 Fire Department Institutional Aide 43918.00000 8.783600e+04 5642.55 2.821275e+03 2821.275 168.75 2 2.821275e+03 5642.55 9.347855e+04 9.347855e+04 0.00 NULL
2023 Fire Department Investigator 65211.25000 1.043380e+06 18795.47 1.174717e+03 27.310 468.00 16 2.731000e+01 436.96 1.062175e+06 1.043817e+06 18358.51 NULL
2023 Fire Department It Automation And Monitoring Engineer 151889.00000 1.518890e+05 9156.57 9.156570e+03 9156.570 102.00 1 9.156570e+03 9156.57 1.610456e+05 1.610456e+05 0.00 NULL
2023 Fire Department It Infrastructure Engineer 171519.50000 6.860780e+05 50037.39 1.250935e+04 11985.760 481.50 4 1.198576e+04 47943.04 7.361154e+05 7.340210e+05 2094.35 NULL
2023 Fire Department It Project Specialist 118902.33333 3.567070e+05 63948.77 2.131626e+04 0.000 618.75 3 0.000000e+00 0.00 4.206558e+05 3.567070e+05 63948.77 NULL
2023 Fire Department It Security Specialist 163050.00000 3.261000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.261000e+05 3.261000e+05 0.00 NULL
2023 Fire Department It Service Management Specialist 142055.00000 1.420550e+05 137.79 1.377900e+02 137.790 1.50 1 1.377900e+02 137.79 1.421928e+05 1.421928e+05 0.00 NULL
2023 Fire Department Lieutenant 111491.96600 1.738160e+08 71845756.26 4.608451e+04 44877.370 799709.94 1559 4.487737e+04 69963819.83 2.456617e+08 2.437798e+08 1881936.43 NULL
2023 Fire Department Locksmith NA NA 71639.80 2.387993e+04 31435.800 1573.75 3 2.387993e+04 71639.80 NA NA NA NULL
2023 Fire Department Machinist NA NA 41904.30 4.190430e+04 41904.300 636.00 1 4.190430e+04 41904.30 NA NA NA NULL
2023 Fire Department Maintenance Worker NA NA 9383.06 9.383060e+03 9383.060 200.75 1 9.383060e+03 9383.06 NA NA NA NULL
2023 Fire Department Management Auditor 90101.00000 9.010100e+04 356.94 3.569400e+02 356.940 7.00 1 3.569400e+02 356.94 9.045794e+04 9.045794e+04 0.00 NULL
2023 Fire Department Marine Engineer 107439.81818 2.363676e+06 1803556.30 8.197983e+04 79674.890 20233.28 22 7.967489e+04 1752847.58 4.167232e+06 4.116524e+06 50708.72 NULL
2023 Fire Department Marine Maintenance Mechanic 79484.00000 2.384520e+05 60266.98 2.008899e+04 20350.040 1162.00 3 2.008899e+04 60266.98 2.987190e+05 2.987190e+05 0.00 NULL
2023 Fire Department Mechanical Engineer 93854.00000 9.385400e+04 2083.84 2.083840e+03 2083.840 38.50 1 2.083840e+03 2083.84 9.593784e+04 9.593784e+04 0.00 NULL
2023 Fire Department Metal Work Mechanic 97924.00000 2.937720e+05 46661.67 1.555389e+04 13935.990 660.50 3 1.393599e+04 41807.97 3.404337e+05 3.355800e+05 4853.70 NULL
2023 Fire Department Motor Vehicle Operator 53719.31217 1.020667e+06 183449.25 9.655224e+03 6833.330 4596.15 19 6.833330e+03 129833.27 1.204116e+06 1.150500e+06 53615.98 NULL
2023 Fire Department Motor Vehicle Supervisor 65812.50000 1.316250e+05 40288.61 2.014431e+04 20144.305 814.50 2 2.014431e+04 40288.61 1.719136e+05 1.719136e+05 0.00 NULL
2023 Fire Department New York City Public Service Fellow 42127.00000 4.212700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.212700e+04 4.212700e+04 0.00 NULL
2023 Fire Department Oiler NA NA 205340.81 5.133520e+04 52610.110 2317.50 4 5.133520e+04 205340.81 NA NA NA NULL
2023 Fire Department Painter NA NA 4219.78 4.219780e+03 4219.780 62.50 1 4.219780e+03 4219.78 NA NA NA NULL
2023 Fire Department Physician 62860.09337 2.514404e+05 77.76 1.944000e+01 0.000 1.00 4 0.000000e+00 0.00 2.515181e+05 2.514404e+05 77.76 NULL
2023 Fire Department Physician’s Assistant 76263.58450 1.525272e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.525272e+05 1.525272e+05 0.00 NULL
2023 Fire Department Pilot 109149.53846 1.418944e+06 852275.82 6.555968e+04 69850.530 9551.35 13 6.555968e+04 852275.82 2.271220e+06 2.271220e+06 0.00 NULL
2023 Fire Department Planner: Production Cntrl & Scheduling 65282.00000 1.305640e+05 70841.73 3.542086e+04 35420.865 1252.50 2 3.542086e+04 70841.73 2.014057e+05 2.014057e+05 0.00 NULL
2023 Fire Department Plasterer NA NA 108.62 1.086200e+02 108.620 2.25 1 1.086200e+02 108.62 NA NA NA NULL
2023 Fire Department Plumber NA NA 957324.38 4.786622e+04 37547.805 7543.25 20 3.754781e+04 750956.10 NA NA NA NULL
2023 Fire Department Principal Administrative Associate - Non Supvr 64582.03904 8.976903e+06 594307.63 4.275594e+03 159.460 12781.00 139 1.594600e+02 22164.94 9.571211e+06 8.999068e+06 572142.69 NULL
2023 Fire Department Procurement Analyst 63267.84374 1.138821e+06 35643.20 1.980178e+03 0.000 797.50 18 0.000000e+00 0.00 1.174464e+06 1.138821e+06 35643.20 NULL
2023 Fire Department Program Producer 69390.20000 3.469510e+05 21772.14 4.354428e+03 1203.050 403.00 5 1.203050e+03 6015.25 3.687231e+05 3.529662e+05 15756.89 NULL
2023 Fire Department Project Manager 72750.71429 5.092550e+05 164355.03 2.347929e+04 17985.090 2971.00 7 1.798509e+04 125895.63 6.736100e+05 6.351506e+05 38459.40 NULL
2023 Fire Department Psychologist 82400.00000 8.240000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.240000e+04 8.240000e+04 0.00 NULL
2023 Fire Department Public Records Aide 46246.35714 6.474490e+05 11686.54 8.347529e+02 0.000 377.75 14 0.000000e+00 0.00 6.591355e+05 6.474490e+05 11686.54 NULL
2023 Fire Department Public Records Officer 55561.04620 1.666831e+05 1836.49 6.121633e+02 0.000 46.00 3 0.000000e+00 0.00 1.685196e+05 1.666831e+05 1836.49 NULL
2023 Fire Department Radio Repair Mechanic NA NA 1185577.40 3.592659e+04 31691.900 15922.25 33 3.169190e+04 1045832.70 NA NA NA NULL
2023 Fire Department Research Assistant 72002.00000 1.440040e+05 0.24 1.200000e-01 0.120 0.00 2 1.200000e-01 0.24 1.440042e+05 1.440042e+05 0.00 NULL
2023 Fire Department Roofer NA NA 12217.26 1.221726e+04 12217.260 226.00 1 1.221726e+04 12217.26 NA NA NA NULL
2023 Fire Department Rubber Tire Repairer NA NA 135122.10 2.252035e+04 18818.185 2928.50 6 1.881819e+04 112909.11 NA NA NA NULL
2023 Fire Department Secretary Of The Department 115000.00000 1.150000e+05 7232.33 7.232330e+03 7232.330 125.50 1 7.232330e+03 7232.33 1.222323e+05 1.222323e+05 0.00 NULL
2023 Fire Department Secretary To The Deputy Commissioner 81374.00000 1.627480e+05 5378.91 2.689455e+03 2689.455 97.50 2 2.689455e+03 5378.91 1.681269e+05 1.681269e+05 0.00 NULL
2023 Fire Department Secretary To The Fire Commissioner 127023.00000 1.270230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.270230e+05 1.270230e+05 0.00 NULL
2023 Fire Department Secretary To The First Deputy Commissioner 92405.00000 9.240500e+04 14920.32 1.492032e+04 14920.320 214.75 1 1.492032e+04 14920.32 1.073253e+05 1.073253e+05 0.00 NULL
2023 Fire Department Senior It Architect 145235.50000 2.904710e+05 2984.32 1.492160e+03 1492.160 17.25 2 1.492160e+03 2984.32 2.934553e+05 2.934553e+05 0.00 NULL
2023 Fire Department Senior Management Consultant 141628.00000 1.416280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.416280e+05 1.416280e+05 0.00 NULL
2023 Fire Department Senior Photographer 83316.09375 8.331609e+04 13281.73 1.328173e+04 13281.730 270.75 1 1.328173e+04 13281.73 9.659782e+04 9.659782e+04 0.00 NULL
2023 Fire Department Senior Stationary Engineer NA NA 89687.73 8.968773e+04 89687.730 854.50 1 8.968773e+04 89687.73 NA NA NA NULL
2023 Fire Department Senior Supervisor Communication Electrician NA NA 69850.71 6.985071e+04 69850.710 799.50 1 6.985071e+04 69850.71 NA NA NA NULL
2023 Fire Department Sheet Metal Worker NA NA 226534.78 5.663369e+04 64180.190 1965.75 4 5.663369e+04 226534.78 NA NA NA NULL
2023 Fire Department Social Worker 70318.87000 1.406377e+05 741.60 3.708000e+02 370.800 12.00 2 3.708000e+02 741.60 1.413793e+05 1.413793e+05 0.00 NULL
2023 Fire Department Special Assistant To The Fire Commissioner 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2023 Fire Department Spvsg Fad-Asst Commiss Detail 173040.00000 1.730400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.730400e+05 1.730400e+05 0.00 NULL
2023 Fire Department Spvsg Fad-Dep Dir Dsptch Dtail 112795.00000 2.255900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.255900e+05 2.255900e+05 0.00 NULL
2023 Fire Department Spvsg Fad-Dir Dsptch Op Detail 124934.00000 1.249340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.249340e+05 1.249340e+05 0.00 NULL
2023 Fire Department Staff Analyst 68653.53333 1.029803e+06 52434.26 3.495617e+03 33.860 911.50 15 3.386000e+01 507.90 1.082237e+06 1.030311e+06 51926.36 NULL
2023 Fire Department Stationary Engineer NA NA 64895.85 6.489585e+04 64895.850 680.75 1 6.489585e+04 64895.85 NA NA NA NULL
2023 Fire Department Steam Fitter NA NA 35711.17 3.571117e+04 35711.170 245.00 1 3.571117e+04 35711.17 NA NA NA NULL
2023 Fire Department Steam Fitter’s Helper NA NA 218098.78 7.269959e+04 82034.950 1894.00 3 7.269959e+04 218098.78 NA NA NA NULL
2023 Fire Department Stock Worker 41486.00000 8.297200e+04 7225.27 3.612635e+03 3612.635 234.00 2 3.612635e+03 7225.27 9.019727e+04 9.019727e+04 0.00 NULL
2023 Fire Department Strategic Initiative Specialist 130412.00000 3.912360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.912360e+05 3.912360e+05 0.00 NULL
2023 Fire Department Summer College Intern 5373.94375 2.149578e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.149578e+04 2.149578e+04 0.00 NULL
2023 Fire Department Summer Graduate Intern 5774.26500 1.732279e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.732279e+04 1.732279e+04 0.00 NULL
2023 Fire Department Supervising Blasting Inspector 84833.00000 7.634970e+05 254553.56 2.828373e+04 23117.800 3812.62 9 2.311780e+04 208060.20 1.018051e+06 9.715572e+05 46493.36 NULL
2023 Fire Department Supervising Communication Electrician NA NA 504920.05 5.610223e+04 56385.590 5948.75 9 5.610223e+04 504920.05 NA NA NA NULL
2023 Fire Department Supervising Emergency Medical Service Specialist 83659.13333 4.768571e+07 14767186.04 2.590734e+04 19525.180 234063.23 570 1.952518e+04 11129352.60 6.245289e+07 5.881506e+07 3637833.44 NULL
2023 Fire Department Supervising Emergency Medical Service Specialist-Dpty Chiefs 116044.10169 6.846602e+06 95528.99 1.619135e+03 0.000 1379.50 59 0.000000e+00 0.00 6.942131e+06 6.846602e+06 95528.99 NULL
2023 Fire Department Supervising Fire Alarm Dispatcher 82530.66667 3.713880e+06 1806151.31 4.013670e+04 35518.120 32456.17 45 3.551812e+04 1598315.40 5.520031e+06 5.312195e+06 207835.91 NULL
2023 Fire Department Supervising Fire Marshal 133328.09375 4.266499e+06 1301671.46 4.067723e+04 36802.100 12806.03 32 3.680210e+04 1177667.20 5.568170e+06 5.444166e+06 124004.26 NULL
2023 Fire Department Supervisor Carpenter NA NA 202271.90 1.011359e+05 101135.950 2379.00 2 1.011359e+05 202271.90 NA NA NA NULL
2023 Fire Department Supervisor Electrician NA NA 334383.74 1.114612e+05 102784.050 3289.25 3 1.027841e+05 308352.15 NA NA NA NULL
2023 Fire Department Supervisor Of Electrical Installations & Maintenance 87205.20000 4.360260e+05 393876.25 7.877525e+04 93594.260 5161.00 5 7.877525e+04 393876.25 8.299022e+05 8.299022e+05 0.00 NULL
2023 Fire Department Supervisor Of Mechanics NA NA 2333491.55 5.983312e+04 56759.950 25460.25 39 5.675995e+04 2213638.05 NA NA NA NULL
2023 Fire Department Supervisor Of Nurses 93733.00000 9.373300e+04 1851.41 1.851410e+03 1851.410 25.00 1 1.851410e+03 1851.41 9.558441e+04 9.558441e+04 0.00 NULL
2023 Fire Department Supervisor Of Stock Workers 53980.15789 1.025623e+06 255743.37 1.346018e+04 14036.070 6402.50 19 1.346018e+04 255743.37 1.281366e+06 1.281366e+06 0.00 NULL
2023 Fire Department Supervisor Plumber NA NA 443368.37 8.867367e+04 99154.640 3224.50 5 8.867367e+04 443368.37 NA NA NA NULL
2023 Fire Department Supervisor Roofer NA NA 4064.10 4.064100e+03 4064.100 70.25 1 4.064100e+03 4064.10 NA NA NA NULL
2023 Fire Department Telecommunication Manager 150000.00000 1.500000e+05 4233.23 4.233230e+03 4233.230 88.00 1 4.233230e+03 4233.23 1.542332e+05 1.542332e+05 0.00 NULL
2023 Fire Department Telecommunications Associate 89683.83333 1.076206e+06 141862.40 1.182187e+04 1667.365 2363.50 12 1.667365e+03 20008.38 1.218068e+06 1.096214e+06 121854.02 NULL
2023 Fire Department Telecommunications Manager 134850.80000 6.742540e+05 18738.25 3.747650e+03 0.000 249.25 5 0.000000e+00 0.00 6.929922e+05 6.742540e+05 18738.25 NULL
2023 Fire Department Wiper 95428.00000 1.335992e+06 837947.51 5.985339e+04 69075.110 10797.52 14 5.985339e+04 837947.51 2.173940e+06 2.173940e+06 0.00 NULL
2023 Fire Department Worker’s Compensation Benefits Examiner 53804.77778 4.842430e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.842430e+05 4.842430e+05 0.00 NULL
2023 Guttman Community College Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 NA NA NA NULL
2023 Guttman Community College Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 NA NA NA NULL
2023 Guttman Community College Assistant Administrator 147932.00000 2.958640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.958640e+05 2.958640e+05 0.00 NULL
2023 Guttman Community College Assistant Dean 139749.50000 2.794990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.794990e+05 2.794990e+05 0.00 NULL
2023 Guttman Community College Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 NA NA NA NULL
2023 Guttman Community College Assistant To Heo 66202.00000 1.125434e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.125434e+06 1.125434e+06 0.00 NULL
2023 Guttman Community College Assistant Vice President 170234.00000 3.404680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.404680e+05 3.404680e+05 0.00 NULL
2023 Guttman Community College Associate Administrator 158000.00000 3.160000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.160000e+05 3.160000e+05 0.00 NULL
2023 Guttman Community College Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 NA NA NA NULL
2023 Guttman Community College Business Data And Reporting Analyst 7411.26000 7.411260e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.411260e+03 7.411260e+03 0.00 NULL
2023 Guttman Community College Campus Peace Officer 44376.50000 8.875300e+04 9569.52 4.784760e+03 4784.760 316.75 2 4.784760e+03 9569.52 9.832252e+04 9.832252e+04 0.00 NULL
2023 Guttman Community College Campus Public Safety Sergeant 59939.25000 2.397570e+05 39280.29 9.820073e+03 8159.195 931.75 4 8.159195e+03 32636.78 2.790373e+05 2.723938e+05 6643.51 NULL
2023 Guttman Community College Campus Security Assistant 31792.03000 3.179203e+05 32210.84 3.221084e+03 1762.555 1269.00 10 1.762555e+03 17625.55 3.501311e+05 3.355458e+05 14585.29 NULL
2023 Guttman Community College College Accounting Assistant 39469.00000 3.946900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.946900e+04 3.946900e+04 0.00 NULL
2023 Guttman Community College College Assistant 9174.66603 8.257199e+05 0.00 0.000000e+00 0.000 0.00 90 0.000000e+00 0.00 8.257199e+05 8.257199e+05 0.00 NULL
2023 Guttman Community College College Lab Technician 65896.00000 6.589600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.589600e+04 6.589600e+04 0.00 NULL
2023 Guttman Community College College Security Director 125213.00000 1.252130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.252130e+05 1.252130e+05 0.00 NULL
2023 Guttman Community College College Security Specialist 67514.00000 6.751400e+04 3734.60 3.734600e+03 3734.600 77.00 1 3.734600e+03 3734.60 7.124860e+04 7.124860e+04 0.00 NULL
2023 Guttman Community College Computer Systems Manager 115796.50000 2.315930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.315930e+05 2.315930e+05 0.00 NULL
2023 Guttman Community College Continuing Education Teacher 3199.11538 4.158850e+04 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 4.158850e+04 4.158850e+04 0.00 NULL
2023 Guttman Community College Cuny Office Assistant 37593.25000 1.503730e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.503730e+05 1.503730e+05 0.00 NULL
2023 Guttman Community College Dean 156593.50000 6.263740e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.263740e+05 6.263740e+05 0.00 NULL
2023 Guttman Community College Disability Accommodations Specialist 34795.21875 1.391809e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.391809e+05 1.391809e+05 0.00 NULL
2023 Guttman Community College Higher Education Assistant 83035.13793 2.408019e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 2.408019e+06 2.408019e+06 0.00 NULL
2023 Guttman Community College Higher Education Associate 101073.62500 1.617178e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.617178e+06 1.617178e+06 0.00 NULL
2023 Guttman Community College Higher Education Officer 125852.00000 2.139484e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.139484e+06 2.139484e+06 0.00 NULL
2023 Guttman Community College Instructor 79566.00000 7.956600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.956600e+04 7.956600e+04 0.00 NULL
2023 Guttman Community College It Assistant 55608.00000 5.560800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.560800e+04 5.560800e+04 0.00 NULL
2023 Guttman Community College It Associate 77187.66667 2.315630e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.315630e+05 2.315630e+05 0.00 NULL
2023 Guttman Community College It Senior Associate 95448.50000 1.908970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.908970e+05 1.908970e+05 0.00 NULL
2023 Guttman Community College It Support Assistant 43990.00000 8.798000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.798000e+04 8.798000e+04 0.00 NULL
2023 Guttman Community College Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 NA NA NA NULL
2023 Guttman Community College Lecturer/Doctoral Schedule 79808.00000 7.980800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.980800e+04 7.980800e+04 0.00 NULL
2023 Guttman Community College Non-Teaching Adjunct I 5606.33986 2.074346e+05 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 2.074346e+05 2.074346e+05 0.00 NULL
2023 Guttman Community College Non-Teaching Adjunct Ii 15264.37909 1.679082e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.679082e+05 1.679082e+05 0.00 NULL
2023 Guttman Community College Non-Teaching Adjunct Iii 1750.61656 4.201480e+04 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 4.201480e+04 4.201480e+04 0.00 NULL
2023 Guttman Community College Non-Teaching Adjunct Iv 2849.82000 3.704766e+04 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 3.704766e+04 3.704766e+04 0.00 NULL
2023 Guttman Community College Non-Teaching Adjunct V 7328.46429 1.025985e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.025985e+05 1.025985e+05 0.00 NULL
2023 Guttman Community College President 260100.00000 2.601000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.601000e+05 2.601000e+05 0.00 NULL
2023 Guttman Community College Professor NA NA 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 NA NA NA NULL
2023 Guttman Community College Student Aide 3425.55000 8.563875e+04 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 8.563875e+04 8.563875e+04 0.00 NULL
2023 Guttman Community College Vice President 186233.33333 5.587000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.587000e+05 5.587000e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt *Attorney At Law 108502.01500 6.510121e+05 8645.36 1.440893e+03 0.000 109.25 6 0.000000e+00 0.00 6.596574e+05 6.510121e+05 8645.36 NULL
2023 Housing Preservation & Dvlpmnt *Senior Estimator 93842.00000 1.876840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.876840e+05 1.876840e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Accountant 62879.16667 2.263650e+06 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 2.263650e+06 2.263650e+06 0.00 NULL
2023 Housing Preservation & Dvlpmnt Adm Manager-Non-Mgrl 85057.44875 8.165515e+06 96395.41 1.004119e+03 0.000 1625.75 96 0.000000e+00 0.00 8.261910e+06 8.165515e+06 96395.41 NULL
2023 Housing Preservation & Dvlpmnt Admin Community Relations Specialist 81383.59341 3.580878e+06 92206.58 2.095604e+03 0.000 1780.50 44 0.000000e+00 0.00 3.673085e+06 3.580878e+06 92206.58 NULL
2023 Housing Preservation & Dvlpmnt Admin Construction Project Manager 146153.00000 1.461530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.461530e+05 1.461530e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Admin Housing Development Spec 109094.72549 5.563831e+06 47167.49 9.248527e+02 0.000 807.75 51 0.000000e+00 0.00 5.610998e+06 5.563831e+06 47167.49 NULL
2023 Housing Preservation & Dvlpmnt Administrative Accountant 94383.55556 8.494520e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.494520e+05 8.494520e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Administrative Architect 115799.00000 1.157990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.157990e+05 1.157990e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Administrative Business Promotion Coordinator 86639.75000 3.465590e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.465590e+05 3.465590e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Administrative City Planner 118497.61538 1.540469e+06 2644.66 2.034354e+02 0.000 33.00 13 0.000000e+00 0.00 1.543114e+06 1.540469e+06 2644.66 NULL
2023 Housing Preservation & Dvlpmnt Administrative Community Relations Specialist 177626.00000 1.776260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.776260e+05 1.776260e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Administrative Construction Project Manager 113225.00000 1.132250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.132250e+05 1.132250e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Administrative Engineer 122383.00000 2.447660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.447660e+05 2.447660e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Administrative Housing Development Specialist 140771.23077 1.830026e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.830026e+06 1.830026e+06 0.00 NULL
2023 Housing Preservation & Dvlpmnt Administrative Inspector 115974.58824 1.971568e+06 7956.39 4.680229e+02 0.000 141.00 17 0.000000e+00 0.00 1.979524e+06 1.971568e+06 7956.39 NULL
2023 Housing Preservation & Dvlpmnt Administrative Labor Relations Analyst 114250.00000 2.285000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.285000e+05 2.285000e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Administrative Management Auditor 103391.14286 7.237380e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.237380e+05 7.237380e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Administrative Manager 147155.75000 1.177246e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.177246e+06 1.177246e+06 0.00 NULL
2023 Housing Preservation & Dvlpmnt Administrative Procurement Analyst 122681.50000 2.453630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.453630e+05 2.453630e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Administrative Procurement Analyst-Non-Mgrl 83412.36364 9.175360e+05 22361.83 2.032894e+03 0.000 463.75 11 0.000000e+00 0.00 9.398978e+05 9.175360e+05 22361.83 NULL
2023 Housing Preservation & Dvlpmnt Administrative Project Director 121520.03448 3.524081e+06 21280.04 7.337945e+02 0.000 278.50 29 0.000000e+00 0.00 3.545361e+06 3.524081e+06 21280.04 NULL
2023 Housing Preservation & Dvlpmnt Administrative Project Manager 116432.87500 9.314630e+05 41902.16 5.237770e+03 0.000 549.25 8 0.000000e+00 0.00 9.733652e+05 9.314630e+05 41902.16 NULL
2023 Housing Preservation & Dvlpmnt Administrative Public Information Specialist Nm Former M1/M2 119033.00000 1.190330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.190330e+05 1.190330e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Administrative Quality Assurance Specialist 110016.00000 1.100160e+05 8554.80 8.554800e+03 8554.800 123.75 1 8.554800e+03 8554.80 1.185708e+05 1.185708e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Administrative Real Property Manager 112352.50000 4.494100e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.494100e+05 4.494100e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Administrative Staff Analyst 121315.86885 7.400268e+06 57003.95 9.344910e+02 0.000 825.50 61 0.000000e+00 0.00 7.457272e+06 7.400268e+06 57003.95 NULL
2023 Housing Preservation & Dvlpmnt Administrative Supervisor Of Building Maintenance 63301.00000 6.330100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.330100e+04 6.330100e+04 0.00 NULL
2023 Housing Preservation & Dvlpmnt Agency Attorney 97836.90769 6.359399e+06 36197.79 5.568891e+02 0.000 560.25 65 0.000000e+00 0.00 6.395597e+06 6.359399e+06 36197.79 NULL
2023 Housing Preservation & Dvlpmnt Agency Attorney Interne 71757.00000 7.175700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.175700e+04 7.175700e+04 0.00 NULL
2023 Housing Preservation & Dvlpmnt Agency Chief Contracting Officer 137410.00000 2.748200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.748200e+05 2.748200e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Appraiser 85196.00000 4.259800e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.259800e+05 4.259800e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Architect 97612.00000 9.761200e+04 4055.87 4.055870e+03 4055.870 61.00 1 4.055870e+03 4055.87 1.016679e+05 1.016679e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Assistant Architect 79370.07692 1.031811e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.031811e+06 1.031811e+06 0.00 NULL
2023 Housing Preservation & Dvlpmnt Assistant Civil Engineer 73979.66667 2.219390e+05 24273.92 8.091307e+03 5741.220 458.75 3 5.741220e+03 17223.66 2.462129e+05 2.391627e+05 7050.26 NULL
2023 Housing Preservation & Dvlpmnt Assistant Commissioner 153759.53333 2.306393e+06 11478.50 7.652333e+02 0.000 142.50 15 0.000000e+00 0.00 2.317872e+06 2.306393e+06 11478.50 NULL
2023 Housing Preservation & Dvlpmnt Assistant Mechanical Engineer 80307.00000 2.409210e+05 7822.10 2.607367e+03 0.000 138.00 3 0.000000e+00 0.00 2.487431e+05 2.409210e+05 7822.10 NULL
2023 Housing Preservation & Dvlpmnt Assistant Urban Designer 70688.83333 4.241330e+05 360.16 6.002667e+01 0.270 10.00 6 2.700000e-01 1.62 4.244932e+05 4.241346e+05 358.54 NULL
2023 Housing Preservation & Dvlpmnt Associate Housing Development Specialist 98717.27966 1.164864e+07 183294.34 1.553342e+03 0.000 2841.50 118 0.000000e+00 0.00 1.183193e+07 1.164864e+07 183294.34 NULL
2023 Housing Preservation & Dvlpmnt Associate Inspector 72580.44262 4.427407e+06 167933.98 2.753016e+03 701.670 2884.64 61 7.016700e+02 42801.87 4.595341e+06 4.470209e+06 125132.11 NULL
2023 Housing Preservation & Dvlpmnt Associate Investigator 67801.60000 3.390080e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.390080e+05 3.390080e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Associate Project Manager 96040.20000 4.802010e+05 26885.48 5.377096e+03 0.000 405.50 5 0.000000e+00 0.00 5.070865e+05 4.802010e+05 26885.48 NULL
2023 Housing Preservation & Dvlpmnt Associate Quality Assurance Specialist 76193.00000 7.619300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.619300e+04 7.619300e+04 0.00 NULL
2023 Housing Preservation & Dvlpmnt Associate Real Property Manager 75173.25000 2.405544e+06 4173.03 1.304072e+02 0.000 61.00 32 0.000000e+00 0.00 2.409717e+06 2.405544e+06 4173.03 NULL
2023 Housing Preservation & Dvlpmnt Associate Rehabilitation Specialist 74370.50000 1.487410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.487410e+05 1.487410e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Associate Staff Analyst 94063.82400 1.410957e+06 654.71 4.364733e+01 0.000 14.25 15 0.000000e+00 0.00 1.411612e+06 1.410957e+06 654.71 NULL
2023 Housing Preservation & Dvlpmnt Asst Commissioner 137410.00000 1.374100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.374100e+05 1.374100e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Bookkeeper 67244.00000 2.017320e+05 3.17 1.056667e+00 0.000 0.00 3 0.000000e+00 0.00 2.017352e+05 2.017320e+05 3.17 NULL
2023 Housing Preservation & Dvlpmnt Certified It Administrator 147861.00000 1.478610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.478610e+05 1.478610e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Certified It Developer 118205.50000 7.092330e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.092330e+05 7.092330e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt City Planner 98439.94444 3.543838e+06 11590.26 3.219517e+02 0.000 247.50 36 0.000000e+00 0.00 3.555428e+06 3.543838e+06 11590.26 NULL
2023 Housing Preservation & Dvlpmnt City Research Scientist 101526.80000 1.015268e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.015268e+06 1.015268e+06 0.00 NULL
2023 Housing Preservation & Dvlpmnt Civil Engineer 99233.00000 2.976990e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.976990e+05 2.976990e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Clerical Associate 52656.68276 6.108175e+06 110256.66 9.504884e+02 0.000 2940.00 116 0.000000e+00 0.00 6.218432e+06 6.108175e+06 110256.66 NULL
2023 Housing Preservation & Dvlpmnt Commissioner Of Housing Preservation & Development 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Community Assistant 42146.35200 8.429270e+05 11522.22 5.761110e+02 0.000 433.50 20 0.000000e+00 0.00 8.544493e+05 8.429270e+05 11522.22 NULL
2023 Housing Preservation & Dvlpmnt Community Associate 49809.96862 1.917684e+07 231125.17 6.003251e+02 0.000 7216.25 385 0.000000e+00 0.00 1.940796e+07 1.917684e+07 231125.17 NULL
2023 Housing Preservation & Dvlpmnt Community Coordinator 71293.27014 3.008576e+07 192488.91 4.561349e+02 0.000 4204.00 422 0.000000e+00 0.00 3.027825e+07 3.008576e+07 192488.91 NULL
2023 Housing Preservation & Dvlpmnt Community Service Aide 27164.80851 1.358240e+05 7950.40 1.590080e+03 4.130 324.50 5 4.130000e+00 20.65 1.437744e+05 1.358447e+05 7929.75 NULL
2023 Housing Preservation & Dvlpmnt Computer Associate 92888.06061 3.065306e+06 4038.33 1.223736e+02 0.000 52.50 33 0.000000e+00 0.00 3.069344e+06 3.065306e+06 4038.33 NULL
2023 Housing Preservation & Dvlpmnt Computer Operations Manager 115677.12500 9.254170e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.254170e+05 9.254170e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Computer Specialist 115096.06579 8.747301e+06 44052.99 5.796446e+02 0.000 551.75 76 0.000000e+00 0.00 8.791354e+06 8.747301e+06 44052.99 NULL
2023 Housing Preservation & Dvlpmnt Computer Systems Manager 134588.64865 4.979780e+06 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 4.979780e+06 4.979780e+06 0.00 NULL
2023 Housing Preservation & Dvlpmnt Confidential Strategy Planner 85532.00000 3.421280e+05 20938.83 5.234708e+03 0.000 404.25 4 0.000000e+00 0.00 3.630668e+05 3.421280e+05 20938.83 NULL
2023 Housing Preservation & Dvlpmnt Construction Project Manager 85674.84120 1.996224e+07 777631.99 3.337476e+03 3.570 12220.25 233 3.570000e+00 831.81 2.073987e+07 1.996307e+07 776800.18 NULL
2023 Housing Preservation & Dvlpmnt Customer Information Representative Ma L 1549 63048.70588 1.071828e+06 35965.68 2.115628e+03 95.980 897.25 17 9.598000e+01 1631.66 1.107794e+06 1.073460e+06 34334.02 NULL
2023 Housing Preservation & Dvlpmnt Deputy Commissioner 209718.33333 6.291550e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.291550e+05 6.291550e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Deputy Counsel 154905.00000 1.549050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.549050e+05 1.549050e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Deputy General Counsel 167581.33333 5.027440e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.027440e+05 5.027440e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Director Of Management & Planning 114000.00000 1.140000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.140000e+05 1.140000e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Director Of Neighborhood Conservation 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Director Of Property Management 131454.33333 3.943630e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.943630e+05 3.943630e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Economist 76779.66667 2.303390e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.303390e+05 2.303390e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Electrician NA NA 93472.15 9.347215e+04 93472.150 951.50 1 9.347215e+04 93472.15 NA NA NA NULL
2023 Housing Preservation & Dvlpmnt Eligibility Specialist 63393.00000 6.339300e+04 1212.56 1.212560e+03 1212.560 31.50 1 1.212560e+03 1212.56 6.460556e+04 6.460556e+04 0.00 NULL
2023 Housing Preservation & Dvlpmnt Estimator 84740.33333 2.542210e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.542210e+05 2.542210e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Executive Agency Counsel 136893.48649 5.065059e+06 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 5.065059e+06 5.065059e+06 0.00 NULL
2023 Housing Preservation & Dvlpmnt Executive Assistant To The Deputy Commissioner 100562.25000 4.022490e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.022490e+05 4.022490e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Executive Program Specialist 97850.00000 1.957000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.957000e+05 1.957000e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt General Counsel 207077.50000 4.141550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.141550e+05 4.141550e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Housing Development Specialist 83911.05634 1.191537e+07 286704.12 2.019043e+03 0.000 4902.50 142 0.000000e+00 0.00 1.220207e+07 1.191537e+07 286704.12 NULL
2023 Housing Preservation & Dvlpmnt Industrial Hygienist 63366.00000 1.267320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.267320e+05 1.267320e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Inspector 61575.76866 2.475346e+07 469364.76 1.167574e+03 0.000 9781.58 402 0.000000e+00 0.00 2.522282e+07 2.475346e+07 469364.76 NULL
2023 Housing Preservation & Dvlpmnt Investigator 74640.13333 1.119602e+06 970.52 6.470133e+01 0.000 21.75 15 0.000000e+00 0.00 1.120573e+06 1.119602e+06 970.52 NULL
2023 Housing Preservation & Dvlpmnt Lead Abatement Worker 57271.50000 1.145430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.145430e+05 1.145430e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Legislative Assistant 101733.33333 3.052000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.052000e+05 3.052000e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Management Auditor 82216.00000 3.288640e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.288640e+05 3.288640e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Mechanical Engineer 109273.00000 1.092730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.092730e+05 1.092730e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Multiple Dwelling Specialist 67121.00000 6.712100e+04 949.81 9.498100e+02 949.810 20.25 1 9.498100e+02 949.81 6.807081e+04 6.807081e+04 0.00 NULL
2023 Housing Preservation & Dvlpmnt Paralegal Aide 57528.60000 2.876430e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.876430e+05 2.876430e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Principal Administrative Associate - Non Supvr 63860.68116 8.812774e+06 163556.65 1.185193e+03 0.000 3627.50 138 0.000000e+00 0.00 8.976331e+06 8.812774e+06 163556.65 NULL
2023 Housing Preservation & Dvlpmnt Principal Appraiser 131060.00000 1.310600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.310600e+05 1.310600e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Procurement Analyst 67148.16667 8.057780e+05 9767.33 8.139442e+02 0.000 239.00 12 0.000000e+00 0.00 8.155453e+05 8.057780e+05 9767.33 NULL
2023 Housing Preservation & Dvlpmnt Project Manager 71726.00000 7.172600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.172600e+04 7.172600e+04 0.00 NULL
2023 Housing Preservation & Dvlpmnt Quality Assurance Specialist 56540.00000 4.523200e+05 765.36 9.567000e+01 0.000 25.75 8 0.000000e+00 0.00 4.530854e+05 4.523200e+05 765.36 NULL
2023 Housing Preservation & Dvlpmnt Real Property Manager 64348.47368 1.222621e+06 932.74 4.909158e+01 0.000 15.00 19 0.000000e+00 0.00 1.223554e+06 1.222621e+06 932.74 NULL
2023 Housing Preservation & Dvlpmnt Repair Crew Chief 44134.00000 8.826800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.826800e+04 8.826800e+04 0.00 NULL
2023 Housing Preservation & Dvlpmnt Repair Shop Manager 85655.00000 8.565500e+04 39805.35 3.980535e+04 39805.350 620.50 1 3.980535e+04 39805.35 1.254604e+05 1.254604e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Research Assistant 64100.50000 1.282010e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.282010e+05 1.282010e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Secretary 53473.91667 6.416870e+05 2.91 2.425000e-01 0.000 0.00 12 0.000000e+00 0.00 6.416899e+05 6.416870e+05 2.91 NULL
2023 Housing Preservation & Dvlpmnt Secretary Of The Department 141532.00000 1.415320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.415320e+05 1.415320e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Senior Repair Crew Chief 62601.62500 5.008130e+05 193458.79 2.418235e+04 12909.930 3841.65 8 1.290993e+04 103279.44 6.942718e+05 6.040924e+05 90179.35 NULL
2023 Housing Preservation & Dvlpmnt Special Assistant To The Commissioner 200000.00000 4.000000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.000000e+05 4.000000e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Staff Analyst 70810.53846 9.205370e+05 20.80 1.600000e+00 0.000 0.00 13 0.000000e+00 0.00 9.205578e+05 9.205370e+05 20.80 NULL
2023 Housing Preservation & Dvlpmnt Statistician 74672.00000 7.467200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.467200e+04 7.467200e+04 0.00 NULL
2023 Housing Preservation & Dvlpmnt Strategic Initiative Specialist 105578.85714 7.390520e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.390520e+05 7.390520e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Supervising Demolition Inspector 89007.50000 3.560300e+05 69191.35 1.729784e+04 22373.445 1049.25 4 1.729784e+04 69191.35 4.252213e+05 4.252213e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Supervisor Of Electrical Installations & Maintenance 95934.80000 4.796740e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.796740e+05 4.796740e+05 0.00 NULL
2023 Housing Preservation & Dvlpmnt Supervisor Of Mechanical Installations & Maintenance 89840.27273 9.882430e+05 32499.93 2.954539e+03 0.000 525.00 11 0.000000e+00 0.00 1.020743e+06 9.882430e+05 32499.93 NULL
2023 Housing Preservation & Dvlpmnt Supervisor Of Stock Workers 68869.00000 6.886900e+04 12557.24 1.255724e+04 12557.240 263.00 1 1.255724e+04 12557.24 8.142624e+04 8.142624e+04 0.00 NULL
2023 Hra/Dept Of Social Services *Attorney At Law 89992.00000 5.399520e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.399520e+05 5.399520e+05 0.00 NULL
2023 Hra/Dept Of Social Services *Certified Applications Developer 141588.00000 1.415880e+05 743.51 7.435100e+02 743.510 8.00 1 7.435100e+02 743.51 1.423315e+05 1.423315e+05 0.00 NULL
2023 Hra/Dept Of Social Services *Certified Database Administrator 125847.00000 1.258470e+05 5661.87 5.661870e+03 5661.870 56.50 1 5.661870e+03 5661.87 1.315089e+05 1.315089e+05 0.00 NULL
2023 Hra/Dept Of Social Services *Certified Local Area Network Administrator 109070.50000 8.725640e+05 75931.24 9.491405e+03 0.365 885.50 8 3.650000e-01 2.92 9.484952e+05 8.725669e+05 75928.32 NULL
2023 Hra/Dept Of Social Services *Certified Wide Area Network Administrator 124301.00000 1.243010e+05 220.05 2.200500e+02 220.050 0.00 1 2.200500e+02 220.05 1.245211e+05 1.245211e+05 0.00 NULL
2023 Hra/Dept Of Social Services *Custodial Assistant 39703.00000 3.970300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.970300e+04 3.970300e+04 0.00 NULL
2023 Hra/Dept Of Social Services Accountant 71074.83333 8.528980e+05 416.92 3.474333e+01 0.000 8.50 12 0.000000e+00 0.00 8.533149e+05 8.528980e+05 416.92 NULL
2023 Hra/Dept Of Social Services Adm Manager-Non-Mgrl 80903.05208 7.766693e+06 674089.55 7.021766e+03 313.195 11843.75 96 3.131950e+02 30066.72 8.440783e+06 7.796760e+06 644022.83 NULL
2023 Hra/Dept Of Social Services Admin Community Relations Specialist 98170.82483 2.846954e+06 88083.17 3.037351e+03 0.000 1313.75 29 0.000000e+00 0.00 2.935037e+06 2.846954e+06 88083.17 NULL
2023 Hra/Dept Of Social Services Admin Construction Project Manager 129480.00000 1.294800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.294800e+05 1.294800e+05 0.00 NULL
2023 Hra/Dept Of Social Services Admin Contract Specialist 119519.00000 3.585570e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.585570e+05 3.585570e+05 0.00 NULL
2023 Hra/Dept Of Social Services Admin Job Opor Spec-Managerial 142230.79167 3.413539e+06 13673.24 5.697183e+02 0.000 220.25 24 0.000000e+00 0.00 3.427212e+06 3.413539e+06 13673.24 NULL
2023 Hra/Dept Of Social Services Admin Job Opportunity Spec Nm 88176.16842 8.376736e+06 1856268.89 1.953967e+04 16276.580 28267.25 95 1.627658e+04 1546275.10 1.023300e+07 9.923011e+06 309993.79 NULL
2023 Hra/Dept Of Social Services Administrative Accountant 99371.33333 1.192456e+06 4988.58 4.157150e+02 0.000 64.00 12 0.000000e+00 0.00 1.197445e+06 1.192456e+06 4988.58 NULL
2023 Hra/Dept Of Social Services Administrative Architect 143999.00000 1.439990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.439990e+05 1.439990e+05 0.00 NULL
2023 Hra/Dept Of Social Services Administrative Business Promotion Coordinator 112646.00000 2.252920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.252920e+05 2.252920e+05 0.00 NULL
2023 Hra/Dept Of Social Services Administrative City Planner 109524.00000 1.095240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.095240e+05 1.095240e+05 0.00 NULL
2023 Hra/Dept Of Social Services Administrative Community Relations Specialist 155712.20000 7.785610e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.785610e+05 7.785610e+05 0.00 NULL
2023 Hra/Dept Of Social Services Administrative Construction Project Manager 123150.00000 1.231500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.231500e+05 1.231500e+05 0.00 NULL
2023 Hra/Dept Of Social Services Administrative Contract Specialist 98084.64286 1.373185e+06 3333.45 2.381036e+02 0.000 58.00 14 0.000000e+00 0.00 1.376518e+06 1.373185e+06 3333.45 NULL
2023 Hra/Dept Of Social Services Administrative Director Of Social Services 119260.37059 2.027426e+07 629061.80 3.700364e+03 0.000 8677.25 170 0.000000e+00 0.00 2.090332e+07 2.027426e+07 629061.80 NULL
2023 Hra/Dept Of Social Services Administrative Engineer 120389.00000 1.203890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.203890e+05 1.203890e+05 0.00 NULL
2023 Hra/Dept Of Social Services Administrative Graphic Artist 103746.00000 1.037460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.037460e+05 1.037460e+05 0.00 NULL
2023 Hra/Dept Of Social Services Administrative Investigator 104124.37838 3.852602e+06 30342.32 8.200627e+02 0.000 440.75 37 0.000000e+00 0.00 3.882944e+06 3.852602e+06 30342.32 NULL
2023 Hra/Dept Of Social Services Administrative Labor Relations Analyst 103658.33333 3.109750e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.109750e+05 3.109750e+05 0.00 NULL
2023 Hra/Dept Of Social Services Administrative Management Auditor 112110.84615 1.457441e+06 5.34 4.107692e-01 0.000 0.00 13 0.000000e+00 0.00 1.457446e+06 1.457441e+06 5.34 NULL
2023 Hra/Dept Of Social Services Administrative Manager 124108.80000 6.205440e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.205440e+05 6.205440e+05 0.00 NULL
2023 Hra/Dept Of Social Services Administrative Nutritionist 95000.00000 9.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500000e+04 9.500000e+04 0.00 NULL
2023 Hra/Dept Of Social Services Administrative Printing Services Manager 113015.33333 3.390460e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.390460e+05 3.390460e+05 0.00 NULL
2023 Hra/Dept Of Social Services Administrative Procurement Analyst 133372.25000 5.334890e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.334890e+05 5.334890e+05 0.00 NULL
2023 Hra/Dept Of Social Services Administrative Procurement Analyst-Non-Mgrl 86052.23333 2.581567e+06 15741.56 5.247187e+02 0.000 373.75 30 0.000000e+00 0.00 2.597309e+06 2.581567e+06 15741.56 NULL
2023 Hra/Dept Of Social Services Administrative Public Information Specialist 130607.80000 6.530390e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.530390e+05 6.530390e+05 0.00 NULL
2023 Hra/Dept Of Social Services Administrative Public Information Specialist Nm Former M1/M2 100031.20000 5.001560e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.001560e+05 5.001560e+05 0.00 NULL
2023 Hra/Dept Of Social Services Administrative Retirement Benefits Specialist 91902.00000 9.190200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.190200e+04 9.190200e+04 0.00 NULL
2023 Hra/Dept Of Social Services Administrative Space Analyst 99091.66667 8.918250e+05 656.10 7.290000e+01 0.000 10.00 9 0.000000e+00 0.00 8.924811e+05 8.918250e+05 656.10 NULL
2023 Hra/Dept Of Social Services Administrative Staff Analyst 108583.73700 3.550688e+07 415431.06 1.270431e+03 0.000 6009.25 327 0.000000e+00 0.00 3.592231e+07 3.550688e+07 415431.06 NULL
2023 Hra/Dept Of Social Services Administrative Storekeeper 106420.75000 4.256830e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.256830e+05 4.256830e+05 0.00 NULL
2023 Hra/Dept Of Social Services Administrative Supervisor Of Building Maintenance 138893.40000 6.944670e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.944670e+05 6.944670e+05 0.00 NULL
2023 Hra/Dept Of Social Services Agency Attorney 87252.25000 8.376216e+06 57393.28 5.978467e+02 0.000 804.50 96 0.000000e+00 0.00 8.433609e+06 8.376216e+06 57393.28 NULL
2023 Hra/Dept Of Social Services Agency Attorney Interne 62917.00000 1.132506e+06 537.86 2.988111e+01 0.000 15.75 18 0.000000e+00 0.00 1.133044e+06 1.132506e+06 537.86 NULL
2023 Hra/Dept Of Social Services Agency Chief Contracting Officer 209106.00000 2.091060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.091060e+05 2.091060e+05 0.00 NULL
2023 Hra/Dept Of Social Services Architect 98601.75000 3.944070e+05 838.38 2.095950e+02 0.000 13.00 4 0.000000e+00 0.00 3.952454e+05 3.944070e+05 838.38 NULL
2023 Hra/Dept Of Social Services Assist Commissioner For Policy Analysis & Prog Deve 152310.00000 3.046200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.046200e+05 3.046200e+05 0.00 NULL
2023 Hra/Dept Of Social Services Assistant Administrator Of Public Affairs 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2023 Hra/Dept Of Social Services Assistant Architect 93587.00000 9.358700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.358700e+04 9.358700e+04 0.00 NULL
2023 Hra/Dept Of Social Services Assistant Commissioner 163114.71429 1.141803e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.141803e+06 1.141803e+06 0.00 NULL
2023 Hra/Dept Of Social Services Assistant Deputy Administrator 174413.00000 3.488260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.488260e+05 3.488260e+05 0.00 NULL
2023 Hra/Dept Of Social Services Assistant Printing Press Operator 66465.50000 1.329310e+05 4.54 2.270000e+00 2.270 0.00 2 2.270000e+00 4.54 1.329355e+05 1.329355e+05 0.00 NULL
2023 Hra/Dept Of Social Services Assistant Superintendent Of Welfare Shelters 71302.00000 1.426040e+05 25.02 1.251000e+01 12.510 0.00 2 1.251000e+01 25.02 1.426290e+05 1.426290e+05 0.00 NULL
2023 Hra/Dept Of Social Services Assoc Adm For Purchasing Materials Mgt & Envir Control 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2023 Hra/Dept Of Social Services Associate Commissioner For Employment Service 172000.00000 3.440000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.440000e+05 3.440000e+05 0.00 NULL
2023 Hra/Dept Of Social Services Associate Commissioner For Personnel Service 164000.00000 1.640000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.640000e+05 1.640000e+05 0.00 NULL
2023 Hra/Dept Of Social Services Associate Contract Specialist 76874.87500 6.149990e+05 2063.21 2.579013e+02 0.000 44.00 8 0.000000e+00 0.00 6.170622e+05 6.149990e+05 2063.21 NULL
2023 Hra/Dept Of Social Services Associate Fraud Investigator 78554.64878 1.610370e+07 1028514.40 5.017143e+03 4.280 16945.00 205 4.280000e+00 877.40 1.713222e+07 1.610458e+07 1027637.00 NULL
2023 Hra/Dept Of Social Services Associate Housing Development Specialist 103659.62500 8.292770e+05 3466.36 4.332950e+02 0.000 53.75 8 0.000000e+00 0.00 8.327434e+05 8.292770e+05 3466.36 NULL
2023 Hra/Dept Of Social Services Associate Job Opportunity Specialist 68062.81494 6.289004e+07 12857663.12 1.391522e+04 6797.270 235818.00 924 6.797270e+03 6280677.48 7.574770e+07 6.917072e+07 6576985.64 NULL
2023 Hra/Dept Of Social Services Associate Labor Relations Analyst 83183.33333 2.495500e+05 8952.75 2.984250e+03 2710.060 147.25 3 2.710060e+03 8130.18 2.585028e+05 2.576802e+05 822.57 NULL
2023 Hra/Dept Of Social Services Associate Project Manager 97021.00000 9.702100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.702100e+04 9.702100e+04 0.00 NULL
2023 Hra/Dept Of Social Services Associate Staff Analyst 81908.37089 1.662740e+07 230810.77 1.136999e+03 0.000 4041.25 203 0.000000e+00 0.00 1.685821e+07 1.662740e+07 230810.77 NULL
2023 Hra/Dept Of Social Services Asst Commissioner For Public & Legis Affairs 129435.50000 2.588710e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.588710e+05 2.588710e+05 0.00 NULL
2023 Hra/Dept Of Social Services Bookbinder 43831.00000 4.383100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.383100e+04 4.383100e+04 0.00 NULL
2023 Hra/Dept Of Social Services Bookkeeper 54881.85227 4.829603e+06 838901.72 9.532974e+03 138.565 19078.50 88 1.385650e+02 12193.72 5.668505e+06 4.841797e+06 826708.00 NULL
2023 Hra/Dept Of Social Services Business Promotion Coordinator 91411.00000 1.828220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.828220e+05 1.828220e+05 0.00 NULL
2023 Hra/Dept Of Social Services Carpenter NA NA 222803.69 1.713875e+04 13649.510 2404.50 13 1.364951e+04 177443.63 NA NA NA NULL
2023 Hra/Dept Of Social Services Caseworker 51530.61476 6.353725e+07 8201002.53 6.651259e+03 49.560 188020.22 1233 4.956000e+01 61107.48 7.173825e+07 6.359836e+07 8139895.05 NULL
2023 Hra/Dept Of Social Services Cement Mason NA NA 33621.90 1.681095e+04 16810.950 349.50 2 1.681095e+04 33621.90 NA NA NA NULL
2023 Hra/Dept Of Social Services Certified It Administrator 111224.10345 3.225499e+06 188741.66 6.508333e+03 360.300 2294.25 29 3.603000e+02 10448.70 3.414241e+06 3.235948e+06 178292.96 NULL
2023 Hra/Dept Of Social Services Certified It Developer 125243.90000 1.252439e+06 69540.66 6.954066e+03 5324.890 856.00 10 5.324890e+03 53248.90 1.321980e+06 1.305688e+06 16291.76 NULL
2023 Hra/Dept Of Social Services Chief Of Staff 157500.00000 3.150000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.150000e+05 3.150000e+05 0.00 NULL
2023 Hra/Dept Of Social Services City Custodial Assistant 42873.50000 8.574700e+04 215.76 1.078800e+02 107.880 7.50 2 1.078800e+02 215.76 8.596276e+04 8.596276e+04 0.00 NULL
2023 Hra/Dept Of Social Services City Laborer NA NA 217053.71 1.205854e+04 10380.200 3749.75 18 1.038020e+04 186843.60 NA NA NA NULL
2023 Hra/Dept Of Social Services City Planner 92890.00000 9.289000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.289000e+04 9.289000e+04 0.00 NULL
2023 Hra/Dept Of Social Services City Research Scientist 99683.87059 8.473129e+06 6810.73 8.012624e+01 0.000 93.75 85 0.000000e+00 0.00 8.479940e+06 8.473129e+06 6810.73 NULL
2023 Hra/Dept Of Social Services Clerical Aide 39439.00000 1.577560e+05 150.31 3.757750e+01 0.000 0.00 4 0.000000e+00 0.00 1.579063e+05 1.577560e+05 150.31 NULL
2023 Hra/Dept Of Social Services Clerical Associate 45359.44147 3.215984e+07 3176921.37 4.480848e+03 0.000 87393.40 709 0.000000e+00 0.00 3.533677e+07 3.215984e+07 3176921.37 NULL
2023 Hra/Dept Of Social Services Community Assistant 40485.45283 2.145729e+06 128180.34 2.418497e+03 0.000 4183.50 53 0.000000e+00 0.00 2.273909e+06 2.145729e+06 128180.34 NULL
2023 Hra/Dept Of Social Services Community Associate NA NA 1265483.65 3.467078e+03 41.490 31297.08 365 4.149000e+01 15143.85 NA NA NA NULL
2023 Hra/Dept Of Social Services Community Coordinator 70622.14334 2.648330e+07 1287997.66 3.434660e+03 5.110 25455.48 375 5.110000e+00 1916.25 2.777130e+07 2.648522e+07 1286081.41 NULL
2023 Hra/Dept Of Social Services Computer Aide-Non-Spvr 51094.60000 2.554730e+05 16762.97 3.352594e+03 505.600 440.25 5 5.056000e+02 2528.00 2.722360e+05 2.580010e+05 14234.97 NULL
2023 Hra/Dept Of Social Services Computer Associate 77063.28814 9.093468e+06 802486.09 6.800730e+03 211.390 14770.50 118 2.113900e+02 24944.02 9.895954e+06 9.118412e+06 777542.07 NULL
2023 Hra/Dept Of Social Services Computer Operations Manager 137890.12500 1.103121e+06 42692.98 5.336623e+03 1850.780 709.75 8 1.850780e+03 14806.24 1.145814e+06 1.117927e+06 27886.74 NULL
2023 Hra/Dept Of Social Services Computer Programmer Analyst 58684.00000 5.868400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.868400e+04 5.868400e+04 0.00 NULL
2023 Hra/Dept Of Social Services Computer Service Technician 54555.25000 4.364420e+05 15118.30 1.889787e+03 1409.865 392.25 8 1.409865e+03 11278.92 4.515603e+05 4.477209e+05 3839.38 NULL
2023 Hra/Dept Of Social Services Computer Specialist 112285.86751 3.559462e+07 1419654.61 4.478406e+03 0.220 17668.50 317 2.200000e-01 69.74 3.701427e+07 3.559469e+07 1419584.87 NULL
2023 Hra/Dept Of Social Services Computer Systems Manager 141139.60825 1.369054e+07 330229.22 3.404425e+03 0.000 3673.75 97 0.000000e+00 0.00 1.402077e+07 1.369054e+07 330229.22 NULL
2023 Hra/Dept Of Social Services Confidential Agency Investigator 110000.00000 2.200000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.200000e+05 2.200000e+05 0.00 NULL
2023 Hra/Dept Of Social Services Confidential Strategy Planner 88365.40000 4.418270e+05 986.78 1.973560e+02 0.000 17.00 5 0.000000e+00 0.00 4.428138e+05 4.418270e+05 986.78 NULL
2023 Hra/Dept Of Social Services Construction Project Manager 92507.50000 3.700300e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.700300e+05 3.700300e+05 0.00 NULL
2023 Hra/Dept Of Social Services Consultant 78783.62500 6.302690e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.302690e+05 6.302690e+05 0.00 NULL
2023 Hra/Dept Of Social Services Contract Specialist 63443.37500 5.075470e+05 25334.57 3.166821e+03 0.000 556.75 8 0.000000e+00 0.00 5.328816e+05 5.075470e+05 25334.57 NULL
2023 Hra/Dept Of Social Services Custodian 47569.83117 3.662877e+06 594343.99 7.718753e+03 6297.520 16608.25 77 6.297520e+03 484909.04 4.257221e+06 4.147786e+06 109434.95 NULL
2023 Hra/Dept Of Social Services Cyber Security Analyst 89900.85714 6.293060e+05 991.03 1.415757e+02 0.000 15.75 7 0.000000e+00 0.00 6.302970e+05 6.293060e+05 991.03 NULL
2023 Hra/Dept Of Social Services Deputy Assistant Commissioner 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2023 Hra/Dept Of Social Services Deputy Asst Admin For Personnel Adm & Labor Rel 106023.00000 1.060230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.060230e+05 1.060230e+05 0.00 NULL
2023 Hra/Dept Of Social Services Deputy Commisioner 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2023 Hra/Dept Of Social Services Deputy Commissioner 171137.50000 3.422750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.422750e+05 3.422750e+05 0.00 NULL
2023 Hra/Dept Of Social Services Deputy Commissioner Of It 180492.25000 7.219690e+05 11644.01 2.911003e+03 0.000 113.00 4 0.000000e+00 0.00 7.336130e+05 7.219690e+05 11644.01 NULL
2023 Hra/Dept Of Social Services Deputy Director Of Administration 126510.60000 1.265106e+06 2861.95 2.861950e+02 0.000 0.00 10 0.000000e+00 0.00 1.267968e+06 1.265106e+06 2861.95 NULL
2023 Hra/Dept Of Social Services Deputy Director Of Labor Relations 113955.50000 2.279110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.279110e+05 2.279110e+05 0.00 NULL
2023 Hra/Dept Of Social Services Deputy Director Of Security 93965.00000 1.879300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.879300e+05 1.879300e+05 0.00 NULL
2023 Hra/Dept Of Social Services Deputy General Counsel 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2023 Hra/Dept Of Social Services Dir Of Contract Mgmt & Intergovernmental Relations 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2023 Hra/Dept Of Social Services Dir Of Home Care Services/Family And Adult Services 126331.00000 1.263310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.263310e+05 1.263310e+05 0.00 NULL
2023 Hra/Dept Of Social Services Dir Of Mgnt System, Planning, Research And Eval 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2023 Hra/Dept Of Social Services Dir Policy Econom Resrch 96000.00000 9.600000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.600000e+04 9.600000e+04 0.00 NULL
2023 Hra/Dept Of Social Services Director Of Admin 215848.00000 2.158480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.158480e+05 2.158480e+05 0.00 NULL
2023 Hra/Dept Of Social Services Director Of Administration 159005.00000 1.590050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.590050e+05 1.590050e+05 0.00 NULL
2023 Hra/Dept Of Social Services Director Of Community Participation Programs 114000.00000 1.140000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.140000e+05 1.140000e+05 0.00 NULL
2023 Hra/Dept Of Social Services Director Of Compliance & Legislative Development 107838.00000 2.156760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.156760e+05 2.156760e+05 0.00 NULL
2023 Hra/Dept Of Social Services Director Of Eeo/Contract Compliance 150733.50000 3.014670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.014670e+05 3.014670e+05 0.00 NULL
2023 Hra/Dept Of Social Services Director Of Fiscal Operations 149170.00000 2.983400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.983400e+05 2.983400e+05 0.00 NULL
2023 Hra/Dept Of Social Services Director Of Food Stamp Program 174024.00000 1.740240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.740240e+05 1.740240e+05 0.00 NULL
2023 Hra/Dept Of Social Services Director Of Internal Auditing 108204.00000 1.082040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.082040e+05 1.082040e+05 0.00 NULL
2023 Hra/Dept Of Social Services Director Of Labor Relations 165534.00000 1.655340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.655340e+05 1.655340e+05 0.00 NULL
2023 Hra/Dept Of Social Services Director Of Legislative Coordination 122847.50000 2.456950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.456950e+05 2.456950e+05 0.00 NULL
2023 Hra/Dept Of Social Services Director Of Management Design 93730.00000 9.373000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.373000e+04 9.373000e+04 0.00 NULL
2023 Hra/Dept Of Social Services Director Of Management Planning 108871.00000 1.088710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.088710e+05 1.088710e+05 0.00 NULL
2023 Hra/Dept Of Social Services Director Of Management Planning Ss 153617.00000 1.536170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.536170e+05 1.536170e+05 0.00 NULL
2023 Hra/Dept Of Social Services Director Of Policy Analysis 152436.00000 1.524360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.524360e+05 1.524360e+05 0.00 NULL
2023 Hra/Dept Of Social Services Director Of Public Information 149583.33333 4.487500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.487500e+05 4.487500e+05 0.00 NULL
2023 Hra/Dept Of Social Services Director Of Security 123055.00000 2.461100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.461100e+05 2.461100e+05 0.00 NULL
2023 Hra/Dept Of Social Services Electrician NA NA 51923.16 6.490395e+03 6673.140 550.50 8 6.490395e+03 51923.16 NA NA NA NULL
2023 Hra/Dept Of Social Services Electricians Helper NA NA 4428.91 1.107227e+03 359.100 74.00 4 3.591000e+02 1436.40 NA NA NA NULL
2023 Hra/Dept Of Social Services Eligibility Specialist 46558.15258 1.129035e+08 15374450.72 6.339980e+03 97.700 396809.66 2425 9.770000e+01 236922.50 1.282780e+08 1.131404e+08 15137528.22 NULL
2023 Hra/Dept Of Social Services Exec Asst To The Deputy Commissioner 116856.50000 2.337130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.337130e+05 2.337130e+05 0.00 NULL
2023 Hra/Dept Of Social Services Executive Agency Counsel 138917.71930 7.918310e+06 0.00 0.000000e+00 0.000 0.00 57 0.000000e+00 0.00 7.918310e+06 7.918310e+06 0.00 NULL
2023 Hra/Dept Of Social Services Executive Assistant To The Commissioner Of Community Develop 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2023 Hra/Dept Of Social Services Executive Assistant To The Executive Deputy Adm 114333.33333 3.430000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.430000e+05 3.430000e+05 0.00 NULL
2023 Hra/Dept Of Social Services Executive Asst-Domestic Violence-Hra 62425.83333 3.745550e+05 101.18 1.686333e+01 0.000 3.00 6 0.000000e+00 0.00 3.746562e+05 3.745550e+05 101.18 NULL
2023 Hra/Dept Of Social Services Executive Deputy Administrator 218573.50000 8.742940e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.742940e+05 8.742940e+05 0.00 NULL
2023 Hra/Dept Of Social Services Executive Program Specialist 103000.00000 1.030000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030000e+05 1.030000e+05 0.00 NULL
2023 Hra/Dept Of Social Services Fraud Investigator 60099.82189 2.800652e+07 5551198.12 1.191244e+04 7.455 113621.80 466 7.455000e+00 3474.03 3.355772e+07 2.800999e+07 5547724.09 NULL
2023 Hra/Dept Of Social Services General Counsel 215859.00000 4.317180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.317180e+05 4.317180e+05 0.00 NULL
2023 Hra/Dept Of Social Services Graphic Artist 61500.72727 6.765080e+05 800.73 7.279364e+01 0.000 16.75 11 0.000000e+00 0.00 6.773087e+05 6.765080e+05 800.73 NULL
2023 Hra/Dept Of Social Services Head Nurse 92491.92308 1.202395e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.202395e+06 1.202395e+06 0.00 NULL
2023 Hra/Dept Of Social Services Human Resources Administrator 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2023 Hra/Dept Of Social Services Human Resources Technician 38001.00000 3.800100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.800100e+04 3.800100e+04 0.00 NULL
2023 Hra/Dept Of Social Services Investigator 73084.45455 8.039290e+05 130774.33 1.188858e+04 0.000 2031.27 11 0.000000e+00 0.00 9.347033e+05 8.039290e+05 130774.33 NULL
2023 Hra/Dept Of Social Services It Project Specialist 120350.82482 1.648806e+07 778978.95 5.685978e+03 0.000 9906.56 137 0.000000e+00 0.00 1.726704e+07 1.648806e+07 778978.95 NULL
2023 Hra/Dept Of Social Services It Security Specialist 132613.00000 1.326130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.326130e+05 1.326130e+05 0.00 NULL
2023 Hra/Dept Of Social Services It Service Management Specialist 115483.44444 1.039351e+06 37083.85 4.120428e+03 0.000 488.25 9 0.000000e+00 0.00 1.076435e+06 1.039351e+06 37083.85 NULL
2023 Hra/Dept Of Social Services Job Opportunity Specialist 52007.79092 1.019873e+08 17063993.08 8.701679e+03 312.830 413984.72 1961 3.128300e+02 613459.63 1.190513e+08 1.026007e+08 16450533.45 NULL
2023 Hra/Dept Of Social Services Locksmith NA NA 1306.68 6.533400e+02 653.340 31.00 2 6.533400e+02 1306.68 NA NA NA NULL
2023 Hra/Dept Of Social Services Management Auditor 75459.75556 3.395689e+06 6244.08 1.387573e+02 0.000 123.75 45 0.000000e+00 0.00 3.401933e+06 3.395689e+06 6244.08 NULL
2023 Hra/Dept Of Social Services Management Auditor Trainee 57086.00000 1.712580e+05 7049.10 2.349700e+03 0.000 156.00 3 0.000000e+00 0.00 1.783071e+05 1.712580e+05 7049.10 NULL
2023 Hra/Dept Of Social Services Medical Specialist 60929.48000 6.092948e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.092948e+04 6.092948e+04 0.00 NULL
2023 Hra/Dept Of Social Services Motor Vehicle Operator 53172.58333 6.380710e+05 77377.84 6.448153e+03 531.060 2008.15 12 5.310600e+02 6372.72 7.154488e+05 6.444437e+05 71005.12 NULL
2023 Hra/Dept Of Social Services Motor Vehicle Supervisor 65209.33333 3.912560e+05 63365.10 1.056085e+04 1014.635 1471.00 6 1.014635e+03 6087.81 4.546211e+05 3.973438e+05 57277.29 NULL
2023 Hra/Dept Of Social Services New York City Public Service Fellow 45505.40000 2.275270e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.275270e+05 2.275270e+05 0.00 NULL
2023 Hra/Dept Of Social Services Office Machine Aide 38894.28571 2.722600e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.722600e+05 2.722600e+05 0.00 NULL
2023 Hra/Dept Of Social Services Oiler NA NA 39814.60 7.962920e+03 8922.220 453.00 5 7.962920e+03 39814.60 NA NA NA NULL
2023 Hra/Dept Of Social Services Paralegal Aide 51803.20000 1.036064e+06 2437.50 1.218750e+02 0.000 71.75 20 0.000000e+00 0.00 1.038502e+06 1.036064e+06 2437.50 NULL
2023 Hra/Dept Of Social Services Plumber NA NA 185662.99 2.062922e+04 18015.170 1544.00 9 1.801517e+04 162136.53 NA NA NA NULL
2023 Hra/Dept Of Social Services Principal Administrative Associate - Non Supvr 59390.51202 7.655437e+07 11750191.02 9.115742e+03 1175.810 258137.69 1289 1.175810e+03 1515619.09 8.830456e+07 7.806999e+07 10234571.93 NULL
2023 Hra/Dept Of Social Services Printing Press Operator NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2023 Hra/Dept Of Social Services Procurement Analyst 62166.34783 1.429826e+06 5396.59 2.346343e+02 0.000 135.50 23 0.000000e+00 0.00 1.435223e+06 1.429826e+06 5396.59 NULL
2023 Hra/Dept Of Social Services Psychiatrist 142428.26969 1.281854e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.281854e+06 1.281854e+06 0.00 NULL
2023 Hra/Dept Of Social Services Public Health Educator 62704.42857 1.755724e+06 58523.50 2.090125e+03 509.740 1343.50 28 5.097400e+02 14272.72 1.814248e+06 1.769997e+06 44250.78 NULL
2023 Hra/Dept Of Social Services Research Assistant 66293.00000 1.325860e+05 11503.26 5.751630e+03 5751.630 182.13 2 5.751630e+03 11503.26 1.440893e+05 1.440893e+05 0.00 NULL
2023 Hra/Dept Of Social Services Secretary 46214.22222 8.318560e+05 138083.69 7.671316e+03 1095.900 3661.00 18 1.095900e+03 19726.20 9.699397e+05 8.515822e+05 118357.49 NULL
2023 Hra/Dept Of Social Services Secretary Of Comm 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2023 Hra/Dept Of Social Services Secretary To One Deputy Commissioner 110000.00000 1.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100000e+05 1.100000e+05 0.00 NULL
2023 Hra/Dept Of Social Services Secretary To The Department 135000.00000 2.700000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.700000e+05 2.700000e+05 0.00 NULL
2023 Hra/Dept Of Social Services Secretary To The Human Resources Administrator 85939.00000 8.593900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.593900e+04 8.593900e+04 0.00 NULL
2023 Hra/Dept Of Social Services Senior Consultant 89169.00000 1.872549e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.872549e+06 1.872549e+06 0.00 NULL
2023 Hra/Dept Of Social Services Senior It Architect 125664.00000 1.256640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.256640e+05 1.256640e+05 0.00 NULL
2023 Hra/Dept Of Social Services Senior Stationary Engineer NA NA 34602.22 1.730111e+04 17301.110 311.00 2 1.730111e+04 34602.22 NA NA NA NULL
2023 Hra/Dept Of Social Services Sheet Metal Worker NA NA 1158.40 1.158400e+03 1158.400 10.00 1 1.158400e+03 1158.40 NA NA NA NULL
2023 Hra/Dept Of Social Services Social Worker 63300.69841 3.987944e+06 91379.49 1.450468e+03 0.000 1916.50 63 0.000000e+00 0.00 4.079323e+06 3.987944e+06 91379.49 NULL
2023 Hra/Dept Of Social Services Space Analyst 81153.63636 1.785380e+06 4193.03 1.905923e+02 0.000 85.25 22 0.000000e+00 0.00 1.789573e+06 1.785380e+06 4193.03 NULL
2023 Hra/Dept Of Social Services Special Assistant To The Human Resources Administrator 102052.00000 1.020520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020520e+05 1.020520e+05 0.00 NULL
2023 Hra/Dept Of Social Services Special Officer 41641.62821 3.248047e+06 169775.45 2.176608e+03 649.780 5499.33 78 6.497800e+02 50682.84 3.417822e+06 3.298730e+06 119092.61 NULL
2023 Hra/Dept Of Social Services Staff Analyst 71561.00000 1.180756e+07 859375.54 5.208337e+03 0.000 16323.50 165 0.000000e+00 0.00 1.266694e+07 1.180756e+07 859375.54 NULL
2023 Hra/Dept Of Social Services Staff Nurse 86350.51613 2.676866e+06 2529.60 8.160000e+01 0.000 39.50 31 0.000000e+00 0.00 2.679396e+06 2.676866e+06 2529.60 NULL
2023 Hra/Dept Of Social Services Stationary Engineer NA NA 18288.30 4.572075e+03 2077.335 172.00 4 2.077335e+03 8309.34 NA NA NA NULL
2023 Hra/Dept Of Social Services Stock Worker 40668.71429 2.846810e+05 9260.36 1.322909e+03 0.000 302.50 7 0.000000e+00 0.00 2.939414e+05 2.846810e+05 9260.36 NULL
2023 Hra/Dept Of Social Services Strategic Initiative Specialist 89263.00000 8.926300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.926300e+04 8.926300e+04 0.00 NULL
2023 Hra/Dept Of Social Services Supervising Bookbinder 65390.00000 6.539000e+04 456.34 4.563400e+02 456.340 10.00 1 4.563400e+02 456.34 6.584634e+04 6.584634e+04 0.00 NULL
2023 Hra/Dept Of Social Services Supervising Computer Service Technician 73968.50000 1.479370e+05 1295.82 6.479100e+02 647.910 27.75 2 6.479100e+02 1295.82 1.492328e+05 1.492328e+05 0.00 NULL
2023 Hra/Dept Of Social Services Supervising Special Officer 59542.38235 2.024441e+06 213437.52 6.277574e+03 3766.565 4888.25 34 3.766565e+03 128063.21 2.237879e+06 2.152504e+06 85374.31 NULL
2023 Hra/Dept Of Social Services Supervisor Carpenter NA NA 46093.20 4.609320e+04 46093.200 473.00 1 4.609320e+04 46093.20 NA NA NA NULL
2023 Hra/Dept Of Social Services Supervisor Electrician NA NA 26258.43 1.312922e+04 13129.215 258.50 2 1.312922e+04 26258.43 NA NA NA NULL
2023 Hra/Dept Of Social Services Supervisor I 64133.84416 2.469153e+07 5448421.47 1.415174e+04 1143.800 103962.50 385 1.143800e+03 440363.00 3.013995e+07 2.513189e+07 5008058.47 NULL
2023 Hra/Dept Of Social Services Supervisor I Social Work 71224.00000 1.282032e+06 47423.94 2.634663e+03 0.000 907.25 18 0.000000e+00 0.00 1.329456e+06 1.282032e+06 47423.94 NULL
2023 Hra/Dept Of Social Services Supervisor Ii 74931.49697 1.236370e+07 1246753.27 7.556080e+03 370.770 21693.75 165 3.707700e+02 61177.05 1.361045e+07 1.242487e+07 1185576.22 NULL
2023 Hra/Dept Of Social Services Supervisor Ii Social Work 82551.40000 4.127570e+05 3056.56 6.113120e+02 0.000 58.25 5 0.000000e+00 0.00 4.158136e+05 4.127570e+05 3056.56 NULL
2023 Hra/Dept Of Social Services Supervisor Iii 83195.23529 4.242957e+06 199610.76 3.913936e+03 0.000 3074.75 51 0.000000e+00 0.00 4.442568e+06 4.242957e+06 199610.76 NULL
2023 Hra/Dept Of Social Services Supervisor Iii Social Work 90810.18182 9.989120e+05 2859.29 2.599355e+02 0.000 44.00 11 0.000000e+00 0.00 1.001771e+06 9.989120e+05 2859.29 NULL
2023 Hra/Dept Of Social Services Supervisor Of Electrical Installations & Maintenance 85644.00000 8.564400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.564400e+04 8.564400e+04 0.00 NULL
2023 Hra/Dept Of Social Services Supervisor Of Mechanics NA NA 46058.45 4.605845e+04 46058.450 485.50 1 4.605845e+04 46058.45 NA NA NA NULL
2023 Hra/Dept Of Social Services Supervisor Of Nurses 108277.42857 7.579420e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.579420e+05 7.579420e+05 0.00 NULL
2023 Hra/Dept Of Social Services Supervisor Of Office Machine Operations 47139.15789 8.956440e+05 127001.72 6.684301e+03 1920.480 3479.25 19 1.920480e+03 36489.12 1.022646e+06 9.321331e+05 90512.60 NULL
2023 Hra/Dept Of Social Services Supervisor Of Stock Workers 55837.75000 2.233510e+05 17498.07 4.374517e+03 1867.345 412.75 4 1.867345e+03 7469.38 2.408491e+05 2.308204e+05 10028.69 NULL
2023 Hra/Dept Of Social Services Supervisor Plumber NA NA 53765.23 1.792174e+04 4991.100 381.00 3 4.991100e+03 14973.30 NA NA NA NULL
2023 Hra/Dept Of Social Services Telecommunications Associate 77360.00000 4.641600e+05 6013.13 1.002188e+03 563.850 115.00 6 5.638500e+02 3383.10 4.701731e+05 4.675431e+05 2630.03 NULL
2023 Hra/Dept Of Social Services Telecommunications Manager 112188.00000 1.121880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.121880e+05 1.121880e+05 0.00 NULL
2023 Human Rights Commission *Attorney At Law 93000.00000 9.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.300000e+04 9.300000e+04 0.00 NULL
2023 Human Rights Commission Administrative Public Information Specialist 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2023 Human Rights Commission Administrative Staff Analyst 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2023 Human Rights Commission Agency Attorney 76129.73077 1.979373e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 1.979373e+06 1.979373e+06 0.00 NULL
2023 Human Rights Commission Associate Human Rights Specialist 74997.20000 2.624902e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 2.624902e+06 2.624902e+06 0.00 NULL
2023 Human Rights Commission Associate Public Information Specialist 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2023 Human Rights Commission Asst To The Chairman 89766.00000 1.795320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.795320e+05 1.795320e+05 0.00 NULL
2023 Human Rights Commission Chairman Commission On Human Rights 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2023 Human Rights Commission Community Assistant 11938.11808 7.162871e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.162871e+04 7.162871e+04 0.00 NULL
2023 Human Rights Commission Community Associate 46887.50000 9.377500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.377500e+04 9.377500e+04 0.00 NULL
2023 Human Rights Commission Community Coordinator 70984.58824 1.206738e+06 111.93 6.584118e+00 0.000 1.75 17 0.000000e+00 0.00 1.206850e+06 1.206738e+06 111.93 NULL
2023 Human Rights Commission Computer Associate 89353.33333 2.680600e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.680600e+05 2.680600e+05 0.00 NULL
2023 Human Rights Commission Computer Systems Manager 141625.00000 1.416250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.416250e+05 1.416250e+05 0.00 NULL
2023 Human Rights Commission Contract Specialist 55873.00000 5.587300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.587300e+04 5.587300e+04 0.00 NULL
2023 Human Rights Commission Counsel 181670.00000 1.816700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.816700e+05 1.816700e+05 0.00 NULL
2023 Human Rights Commission Cyber Security Analyst 71027.00000 7.102700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.102700e+04 7.102700e+04 0.00 NULL
2023 Human Rights Commission Dep Commissioner For Community Relations 183848.00000 3.676960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.676960e+05 3.676960e+05 0.00 NULL
2023 Human Rights Commission Deputy Commissioner For Law Enforcement 173349.00000 1.733490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.733490e+05 1.733490e+05 0.00 NULL
2023 Human Rights Commission Deputy Executive Director 142178.00000 4.265340e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.265340e+05 4.265340e+05 0.00 NULL
2023 Human Rights Commission Executive Agency Counsel 114453.30769 1.487893e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.487893e+06 1.487893e+06 0.00 NULL
2023 Human Rights Commission Executive Director 110113.60000 5.505680e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.505680e+05 5.505680e+05 0.00 NULL
2023 Human Rights Commission Graphic Artist 75012.00000 7.501200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.501200e+04 7.501200e+04 0.00 NULL
2023 Human Rights Commission Human Rights Specialist 61810.18750 9.889630e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 9.889630e+05 9.889630e+05 0.00 NULL
2023 Human Rights Commission Principal Administrative Associate - Non Supvr 61015.00000 6.101500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.101500e+04 6.101500e+04 0.00 NULL
2023 Human Rights Commission Prinicipal Human Rights Specialist 92139.50000 5.528370e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.528370e+05 5.528370e+05 0.00 NULL
2023 Human Rights Commission Secretary To The Chairperson 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2023 Human Rights Commission Supervising Human Rights Specialist 75478.66667 2.264360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.264360e+05 2.264360e+05 0.00 NULL
2023 Hunter College High School Administrator 208080.00000 2.080800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.080800e+05 2.080800e+05 0.00 NULL
2023 Hunter College High School Assistant Principal 131886.09091 1.450747e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.450747e+06 1.450747e+06 0.00 NULL
2023 Hunter College High School Assistant Principal Admin 144323.00000 1.443230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.443230e+05 1.443230e+05 0.00 NULL
2023 Hunter College High School Assistant Teacher 33811.22222 3.043010e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 3.043010e+05 3.043010e+05 0.00 NULL
2023 Hunter College High School Assistant To Heo 79512.50000 1.590250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.590250e+05 1.590250e+05 0.00 NULL
2023 Hunter College High School Business Data And Reporting Analyst 59501.00000 1.190020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.190020e+05 1.190020e+05 0.00 NULL
2023 Hunter College High School Coach NA NA 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 NA NA NA NULL
2023 Hunter College High School College Assistant 7002.61772 1.610602e+05 117.08 5.090435e+00 0.000 5.00 23 0.000000e+00 0.00 1.611773e+05 1.610602e+05 117.08 NULL
2023 Hunter College High School College Lab Technician 101491.00000 1.014910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.014910e+05 1.014910e+05 0.00 NULL
2023 Hunter College High School Computer Systems Manager 103489.00000 1.034890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.034890e+05 1.034890e+05 0.00 NULL
2023 Hunter College High School Cuny Administrator Assistant 57700.57143 4.039040e+05 -61.24 -8.748571e+00 0.000 0.00 7 -8.748571e+00 -61.24 4.038428e+05 4.038428e+05 0.00 NULL
2023 Hunter College High School Cuny Custodial Assistant 34528.47979 4.833987e+05 35918.97 2.565641e+03 0.000 1398.25 14 0.000000e+00 0.00 5.193177e+05 4.833987e+05 35918.97 NULL
2023 Hunter College High School Cuny Office Assistant 39597.50000 2.375850e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.375850e+05 2.375850e+05 0.00 NULL
2023 Hunter College High School Education & Vocat Counselor 93126.33333 2.793790e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.793790e+05 2.793790e+05 0.00 NULL
2023 Hunter College High School Hccs Sr College Lab Tech 77885.00000 7.788500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.788500e+04 7.788500e+04 0.00 NULL
2023 Hunter College High School High School Elem Counselor 92605.85714 6.482410e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.482410e+05 6.482410e+05 0.00 NULL
2023 Hunter College High School Higher Education Assistant 82920.00000 1.658400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.658400e+05 1.658400e+05 0.00 NULL
2023 Hunter College High School Higher Education Associate 109700.33333 3.291010e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.291010e+05 3.291010e+05 0.00 NULL
2023 Hunter College High School Higher Education Officer 119995.00000 1.199950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.199950e+05 1.199950e+05 0.00 NULL
2023 Hunter College High School It Assistant 55608.00000 5.560800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.560800e+04 5.560800e+04 0.00 NULL
2023 Hunter College High School It Associate 75943.00000 1.518860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.518860e+05 1.518860e+05 0.00 NULL
2023 Hunter College High School It Senior Associate 91298.00000 1.825960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.825960e+05 1.825960e+05 0.00 NULL
2023 Hunter College High School Maintenance Worker NA NA 4767.48 4.767480e+03 4767.480 102.00 1 4.767480e+03 4767.48 NA NA NA NULL
2023 Hunter College High School Oiler NA NA 27425.41 2.742541e+04 27425.410 306.00 1 2.742541e+04 27425.41 NA NA NA NULL
2023 Hunter College High School Principal 172382.50000 3.447650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.447650e+05 3.447650e+05 0.00 NULL
2023 Hunter College High School Senior Custodial Supervisor 41913.00000 4.191300e+04 195.71 1.957100e+02 195.710 6.50 1 1.957100e+02 195.71 4.210871e+04 4.210871e+04 0.00 NULL
2023 Hunter College High School Substitute Teacher 41923.19254 2.976547e+06 0.00 0.000000e+00 0.000 0.00 71 0.000000e+00 0.00 2.976547e+06 2.976547e+06 0.00 NULL
2023 Hunter College High School Teacher NA NA 0.00 0.000000e+00 0.000 0.00 107 0.000000e+00 0.00 NA NA NA NULL
2023 Hunter College High School Teacher Of Library 88604.00000 8.860400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.860400e+04 8.860400e+04 0.00 NULL
2023 Independent Budget Office Administrative Staff Analyst 22425.00000 2.242500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.242500e+04 2.242500e+04 0.00 NULL
2023 Independent Budget Office Agency Chief Contracting Officer 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2023 Independent Budget Office Assistant Budget Analyst 66878.00000 6.687800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.687800e+04 6.687800e+04 0.00 NULL
2023 Independent Budget Office Budget Analyst 106700.71959 4.161328e+06 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 4.161328e+06 4.161328e+06 0.00 NULL
2023 Independent Budget Office Director Of Independent Budget Office 240000.00000 2.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.400000e+05 2.400000e+05 0.00 NULL
2023 Independent Budget Office Executive Agency Counsel 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2023 Independent Budget Office Principal Administrative Associate - Non Supvr 84500.00000 1.690000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.690000e+05 1.690000e+05 0.00 NULL
2023 Landmarks Preservation Comm *Attorney At Law 91563.00000 9.156300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.156300e+04 9.156300e+04 0.00 NULL
2023 Landmarks Preservation Comm Admin Landmarks Preservationist 90346.00000 9.034600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.034600e+04 9.034600e+04 0.00 NULL
2023 Landmarks Preservation Comm Administrative Landmarks Preservationist 101729.93917 9.155695e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.155695e+05 9.155695e+05 0.00 NULL
2023 Landmarks Preservation Comm Administrative Public Information Specialist 92814.00000 9.281400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.281400e+04 9.281400e+04 0.00 NULL
2023 Landmarks Preservation Comm Administrative Staff Analyst 115000.00000 2.300000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.300000e+05 2.300000e+05 0.00 NULL
2023 Landmarks Preservation Comm Associate Landmarks Preservationist 92730.00000 9.273000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.273000e+04 9.273000e+04 0.00 NULL
2023 Landmarks Preservation Comm Associate Staff Analyst 97985.00000 9.798500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.798500e+04 9.798500e+04 0.00 NULL
2023 Landmarks Preservation Comm Chair-Landmarks Preservation Commission 223319.00000 2.233190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.233190e+05 2.233190e+05 0.00 NULL
2023 Landmarks Preservation Comm City Research Scientist 89435.00000 8.943500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.943500e+04 8.943500e+04 0.00 NULL
2023 Landmarks Preservation Comm Community Assistant 22093.14300 2.209314e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.209314e+04 2.209314e+04 0.00 NULL
2023 Landmarks Preservation Comm Community Associate 50526.10000 5.052610e+05 1506.59 1.506590e+02 0.000 53.50 10 0.000000e+00 0.00 5.067676e+05 5.052610e+05 1506.59 NULL
2023 Landmarks Preservation Comm Community Coordinator 48475.38062 1.939015e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.939015e+05 1.939015e+05 0.00 NULL
2023 Landmarks Preservation Comm Computer Specialist 97086.00000 9.708600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.708600e+04 9.708600e+04 0.00 NULL
2023 Landmarks Preservation Comm Computer Systems Manager 145416.00000 1.454160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.454160e+05 1.454160e+05 0.00 NULL
2023 Landmarks Preservation Comm Counsel 165258.00000 1.652580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.652580e+05 1.652580e+05 0.00 NULL
2023 Landmarks Preservation Comm Director Of Plan & Field Services 108000.00000 1.080000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.080000e+05 1.080000e+05 0.00 NULL
2023 Landmarks Preservation Comm Director Of Public Relations 99910.00000 1.998200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.998200e+05 1.998200e+05 0.00 NULL
2023 Landmarks Preservation Comm Director Of Urban Archaeology 97291.00000 9.729100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.729100e+04 9.729100e+04 0.00 NULL
2023 Landmarks Preservation Comm Executive Director 178190.00000 1.781900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.781900e+05 1.781900e+05 0.00 NULL
2023 Landmarks Preservation Comm Executive Program Specialist 133900.00000 1.339000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339000e+05 1.339000e+05 0.00 NULL
2023 Landmarks Preservation Comm Landmarks Preservationist 71748.19190 3.587410e+06 18327.21 3.665442e+02 0.000 431.25 50 0.000000e+00 0.00 3.605737e+06 3.587410e+06 18327.21 NULL
2023 Landmarks Preservation Comm Principal Administrative Associate - Non Supvr 70381.00000 7.038100e+04 414.17 4.141700e+02 414.170 9.75 1 4.141700e+02 414.17 7.079517e+04 7.079517e+04 0.00 NULL
2023 Landmarks Preservation Comm Procurement Analyst 66095.50000 1.321910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.321910e+05 1.321910e+05 0.00 NULL
2023 Landmarks Preservation Comm Secretary To The Chair, Landmarks Preservation Commission 70310.00000 7.031000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.031000e+04 7.031000e+04 0.00 NULL
2023 Landmarks Preservation Comm Secretary To The Executive Director 44083.00000 4.408300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.408300e+04 4.408300e+04 0.00 NULL
2023 Landmarks Preservation Comm Staff Analyst 61866.00000 6.186600e+04 2116.41 2.116410e+03 2116.410 61.50 1 2.116410e+03 2116.41 6.398241e+04 6.398241e+04 0.00 NULL
2023 Landmarks Preservation Comm Summer College Intern 3200.25000 3.200250e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.200250e+03 3.200250e+03 0.00 NULL
2023 Landmarks Preservation Comm Summer Graduate Intern 2383.99235 1.430395e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.430395e+04 1.430395e+04 0.00 NULL
2023 Landmarks Preservation Comm Urban Archeologist 44871.87250 1.346156e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.346156e+05 1.346156e+05 0.00 NULL
2023 Law Department Accountant 96161.00000 9.616100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.616100e+04 9.616100e+04 0.00 NULL
2023 Law Department Administrative Accountant 107473.00000 1.074730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074730e+05 1.074730e+05 0.00 NULL
2023 Law Department Administrative Management Auditor 87550.00000 8.755000e+04 490.88 4.908800e+02 490.880 5.50 1 4.908800e+02 490.88 8.804088e+04 8.804088e+04 0.00 NULL
2023 Law Department Administrative Procurement Analyst 103280.00000 2.065600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.065600e+05 2.065600e+05 0.00 NULL
2023 Law Department Administrative Public Information Specialist 167503.50000 3.350070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.350070e+05 3.350070e+05 0.00 NULL
2023 Law Department Administrative Staff Analyst 132610.61111 2.386991e+06 36908.62 2.050479e+03 0.000 512.50 18 0.000000e+00 0.00 2.423900e+06 2.386991e+06 36908.62 NULL
2023 Law Department Appraiser 104901.00000 1.049010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.049010e+05 1.049010e+05 0.00 NULL
2023 Law Department Assistant Corporation Counsel 116121.77767 1.079933e+08 50.48 5.427960e-02 0.000 1.75 930 0.000000e+00 0.00 1.079933e+08 1.079933e+08 50.48 NULL
2023 Law Department Associate Quality Assurance Specialist 78276.16667 4.696570e+05 28998.73 4.833122e+03 1271.420 535.00 6 1.271420e+03 7628.52 4.986557e+05 4.772855e+05 21370.21 NULL
2023 Law Department Associate Staff Analyst 82467.11111 7.422040e+05 21850.32 2.427813e+03 1002.660 403.00 9 1.002660e+03 9023.94 7.640543e+05 7.512279e+05 12826.38 NULL
2023 Law Department Bookkeeper 58929.12500 4.714330e+05 38962.77 4.870346e+03 468.145 825.00 8 4.681450e+02 3745.16 5.103958e+05 4.751782e+05 35217.61 NULL
2023 Law Department Certified It Administrator 135104.00000 8.106240e+05 17402.38 2.900397e+03 1485.025 172.50 6 1.485025e+03 8910.15 8.280264e+05 8.195342e+05 8492.23 NULL
2023 Law Department Certified It Developer 103270.00000 6.196200e+05 123.02 2.050333e+01 0.000 2.00 6 0.000000e+00 0.00 6.197430e+05 6.196200e+05 123.02 NULL
2023 Law Department City Assessor 98464.33333 2.953930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.953930e+05 2.953930e+05 0.00 NULL
2023 Law Department City Custodial Assistant 41218.00000 8.243600e+04 9509.65 4.754825e+03 4754.825 290.50 2 4.754825e+03 9509.65 9.194565e+04 9.194565e+04 0.00 NULL
2023 Law Department Claim Specialist 53847.78944 5.761713e+06 488666.02 4.566972e+03 71.350 11915.43 107 7.135000e+01 7634.45 6.250379e+06 5.769348e+06 481031.57 NULL
2023 Law Department Clerical Associate 38057.79378 9.438333e+06 514216.87 2.073455e+03 0.000 14944.75 248 0.000000e+00 0.00 9.952550e+06 9.438333e+06 514216.87 NULL
2023 Law Department College Aide 5925.04602 1.303510e+05 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 1.303510e+05 1.303510e+05 0.00 NULL
2023 Law Department College Aide - Assignment Levels Ii And Iii 4700.50000 9.401000e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.401000e+03 9.401000e+03 0.00 NULL
2023 Law Department Community Associate 44327.00000 8.865400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.865400e+04 8.865400e+04 0.00 NULL
2023 Law Department Community Coordinator 67936.19444 2.445703e+06 21185.48 5.884856e+02 0.000 455.75 36 0.000000e+00 0.00 2.466888e+06 2.445703e+06 21185.48 NULL
2023 Law Department Computer Aide-Non-Spvr 23459.46654 3.049731e+05 15749.92 1.211532e+03 0.000 402.00 13 0.000000e+00 0.00 3.207230e+05 3.049731e+05 15749.92 NULL
2023 Law Department Computer Associate 74556.93324 1.416582e+06 5186.01 2.729479e+02 0.000 84.75 19 0.000000e+00 0.00 1.421768e+06 1.416582e+06 5186.01 NULL
2023 Law Department Computer Operations Manager 157789.75000 6.311590e+05 6563.11 1.640777e+03 0.000 61.75 4 0.000000e+00 0.00 6.377221e+05 6.311590e+05 6563.11 NULL
2023 Law Department Computer Service Technician 38825.50367 1.164765e+05 4810.52 1.603507e+03 467.880 117.00 3 4.678800e+02 1403.64 1.212870e+05 1.178802e+05 3406.88 NULL
2023 Law Department Computer Specialist 114363.00000 1.486719e+06 37582.62 2.890971e+03 1872.330 509.25 13 1.872330e+03 24340.29 1.524302e+06 1.511059e+06 13242.33 NULL
2023 Law Department Computer Systems Manager 164338.36364 1.807722e+06 21240.84 1.930985e+03 0.000 231.50 11 0.000000e+00 0.00 1.828963e+06 1.807722e+06 21240.84 NULL
2023 Law Department Corporation Counsel 253000.00000 2.530000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.530000e+05 2.530000e+05 0.00 NULL
2023 Law Department Custodian 45174.87500 3.613990e+05 54771.09 6.846386e+03 7886.390 1608.25 8 6.846386e+03 54771.09 4.161701e+05 4.161701e+05 0.00 NULL
2023 Law Department Customer Information Representative Ma L 1549 70192.11111 6.317290e+05 19553.00 2.172556e+03 774.550 398.00 9 7.745500e+02 6970.95 6.512820e+05 6.386999e+05 12582.05 NULL
2023 Law Department Department Librarian 38725.50000 1.549020e+05 5929.68 1.482420e+03 402.475 173.50 4 4.024750e+02 1609.90 1.608317e+05 1.565119e+05 4319.78 NULL
2023 Law Department Deputy Director Of Admin Worker’s Comp Benefits 105593.00000 2.111860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.111860e+05 2.111860e+05 0.00 NULL
2023 Law Department Deputy Operation Support Manager 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2023 Law Department Dir Of Administration, Worker’s Comp Benefits 143841.00000 1.438410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.438410e+05 1.438410e+05 0.00 NULL
2023 Law Department Executive Program Specialist 127906.00000 1.279060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.279060e+05 1.279060e+05 0.00 NULL
2023 Law Department First Assistant Corporation Counsel 246267.50000 4.925350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.925350e+05 4.925350e+05 0.00 NULL
2023 Law Department Graphic Artist 54006.00000 5.400600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.400600e+04 5.400600e+04 0.00 NULL
2023 Law Department It Security Specialist 156270.33333 4.688110e+05 19117.37 6.372457e+03 0.000 200.25 3 0.000000e+00 0.00 4.879284e+05 4.688110e+05 19117.37 NULL
2023 Law Department Legal Secretarial Assistant 59294.31034 1.719535e+06 60084.66 2.071885e+03 0.000 1378.50 29 0.000000e+00 0.00 1.779620e+06 1.719535e+06 60084.66 NULL
2023 Law Department Legal Secretarial Assistant - Al 1 Only 48509.00000 1.455270e+05 12397.32 4.132440e+03 224.530 353.75 3 2.245300e+02 673.59 1.579243e+05 1.462006e+05 11723.73 NULL
2023 Law Department Maintenance Worker NA NA 8786.63 8.786630e+03 8786.630 192.50 1 8.786630e+03 8786.63 NA NA NA NULL
2023 Law Department Management Auditor 98172.50000 1.963450e+05 596.62 2.983100e+02 298.310 6.50 2 2.983100e+02 596.62 1.969416e+05 1.969416e+05 0.00 NULL
2023 Law Department Media Services Technician 45120.60000 2.256030e+05 2175.52 4.351040e+02 351.390 72.75 5 3.513900e+02 1756.95 2.277785e+05 2.273600e+05 418.57 NULL
2023 Law Department Medicolegal Analyst 75680.66667 2.270420e+05 14362.55 4.787517e+03 6342.000 292.00 3 4.787517e+03 14362.55 2.414045e+05 2.414045e+05 0.00 NULL
2023 Law Department Motor Vehicle Operator 34317.91214 2.402254e+05 45783.04 6.540434e+03 0.000 1148.25 7 0.000000e+00 0.00 2.860084e+05 2.402254e+05 45783.04 NULL
2023 Law Department Paralegal Aide 53449.23351 1.411060e+07 646281.02 2.448034e+03 0.000 15286.75 264 0.000000e+00 0.00 1.475688e+07 1.411060e+07 646281.02 NULL
2023 Law Department Photographer 14206.27700 1.420628e+04 243.55 2.435500e+02 243.550 10.00 1 2.435500e+02 243.55 1.444983e+04 1.444983e+04 0.00 NULL
2023 Law Department Principal Administrative Associate - Non Supvr 67562.16667 4.053730e+05 71108.08 1.185135e+04 5609.480 1498.25 6 5.609480e+03 33656.88 4.764811e+05 4.390299e+05 37451.20 NULL
2023 Law Department Principal Title Examiner 75916.60000 3.795830e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.795830e+05 3.795830e+05 0.00 NULL
2023 Law Department Procurement Analyst 58336.50000 1.166730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.166730e+05 1.166730e+05 0.00 NULL
2023 Law Department Project Manager 93418.00000 9.341800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.341800e+04 9.341800e+04 0.00 NULL
2023 Law Department Public Records Aide 37284.53521 2.609917e+05 16953.10 2.421871e+03 0.000 477.25 7 0.000000e+00 0.00 2.779448e+05 2.609917e+05 16953.10 NULL
2023 Law Department Research Assistant 57086.00000 5.708600e+04 129.92 1.299200e+02 129.920 0.00 1 1.299200e+02 129.92 5.721592e+04 5.721592e+04 0.00 NULL
2023 Law Department Secretary 40882.00000 8.176400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.176400e+04 8.176400e+04 0.00 NULL
2023 Law Department Secretary To The Corporation Counsel 105707.00000 1.057070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.057070e+05 1.057070e+05 0.00 NULL
2023 Law Department Secretary To The First Assistant Corporation Counsel 76277.00000 7.627700e+04 167.00 1.670000e+02 167.000 4.00 1 1.670000e+02 167.00 7.644400e+04 7.644400e+04 0.00 NULL
2023 Law Department Senior Photographer 57114.00000 5.711400e+04 4040.52 4.040520e+03 4040.520 117.00 1 4.040520e+03 4040.52 6.115452e+04 6.115452e+04 0.00 NULL
2023 Law Department Senior Student Legal Specialist 50755.00000 1.015100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.015100e+05 1.015100e+05 0.00 NULL
2023 Law Department Senior Title Examiner 61423.00000 6.142300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.142300e+04 6.142300e+04 0.00 NULL
2023 Law Department Space Analyst 93618.00000 9.361800e+04 15223.47 1.522347e+04 15223.470 232.00 1 1.522347e+04 15223.47 1.088415e+05 1.088415e+05 0.00 NULL
2023 Law Department Staff Analyst 67800.22500 1.084804e+06 49835.09 3.114693e+03 20.560 998.00 16 2.056000e+01 328.96 1.134639e+06 1.085133e+06 49506.13 NULL
2023 Law Department Staff Analyst Trainee 52347.00000 5.234700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.234700e+04 5.234700e+04 0.00 NULL
2023 Law Department Stenographer To The Corporation Counsel 78924.00000 7.892400e+04 129.60 1.296000e+02 129.600 3.00 1 1.296000e+02 129.60 7.905360e+04 7.905360e+04 0.00 NULL
2023 Law Department Student Legal Specialist 39057.00000 3.905700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.905700e+04 3.905700e+04 0.00 NULL
2023 Law Department Summer Graduate Intern 2906.51997 2.819324e+05 0.00 0.000000e+00 0.000 0.00 97 0.000000e+00 0.00 2.819324e+05 2.819324e+05 0.00 NULL
2023 Law Department Supervising Computer Service Technician 75110.74188 3.004430e+05 5953.43 1.488358e+03 417.020 97.50 4 4.170200e+02 1668.08 3.063964e+05 3.021110e+05 4285.35 NULL
2023 Law Department Supervising Special Officer 73884.00000 7.388400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.388400e+04 7.388400e+04 0.00 NULL
2023 Law Department Supervisor Of Office Machine Operations 48193.33333 1.445800e+05 706.31 2.354367e+02 108.460 23.50 3 1.084600e+02 325.38 1.452863e+05 1.449054e+05 380.93 NULL
2023 Law Department Worker’s Compensation Benefits Examiner 54639.78967 4.043344e+06 337760.70 4.564334e+03 343.585 8131.75 74 3.435850e+02 25425.29 4.381105e+06 4.068770e+06 312335.41 NULL
2023 Manhattan Community Board #1 Community Associate 50470.00000 5.047000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.047000e+04 5.047000e+04 0.00 NULL
2023 Manhattan Community Board #1 Community Coordinator 82762.00000 1.655240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.655240e+05 1.655240e+05 0.00 NULL
2023 Manhattan Community Board #1 District Manager 97315.00000 9.731500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.731500e+04 9.731500e+04 0.00 NULL
2023 Manhattan Community Board #10 Community Assistant 41200.00000 4.120000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.120000e+04 4.120000e+04 0.00 NULL
2023 Manhattan Community Board #10 Community Associate 52263.00000 1.045260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.045260e+05 1.045260e+05 0.00 NULL
2023 Manhattan Community Board #10 District Manager 91915.00000 9.191500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.191500e+04 9.191500e+04 0.00 NULL
2023 Manhattan Community Board #11 Assistant District Manager 60000.00000 6.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.000000e+04 6.000000e+04 0.00 NULL
2023 Manhattan Community Board #11 Community Associate 58653.00000 5.865300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.865300e+04 5.865300e+04 0.00 NULL
2023 Manhattan Community Board #11 District Manager 99752.00000 9.975200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.975200e+04 9.975200e+04 0.00 NULL
2023 Manhattan Community Board #12 Community Associate 48079.00000 4.807900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.807900e+04 4.807900e+04 0.00 NULL
2023 Manhattan Community Board #12 Community Coordinator 67983.00000 6.798300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.798300e+04 6.798300e+04 0.00 NULL
2023 Manhattan Community Board #12 District Manager 94540.00000 9.454000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.454000e+04 9.454000e+04 0.00 NULL
2023 Manhattan Community Board #2 Assistant District Manager 52341.00000 5.234100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.234100e+04 5.234100e+04 0.00 NULL
2023 Manhattan Community Board #2 Community Assistant 42801.00000 4.280100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.280100e+04 4.280100e+04 0.00 NULL
2023 Manhattan Community Board #2 Community Coordinator 67983.00000 6.798300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.798300e+04 6.798300e+04 0.00 NULL
2023 Manhattan Community Board #2 District Manager 88846.50000 1.776930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.776930e+05 1.776930e+05 0.00 NULL
2023 Manhattan Community Board #3 Assistant District Manager 57500.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2023 Manhattan Community Board #3 Community Associate 50677.00000 1.013540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.013540e+05 1.013540e+05 0.00 NULL
2023 Manhattan Community Board #3 District Manager 90306.00000 9.030600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.030600e+04 9.030600e+04 0.00 NULL
2023 Manhattan Community Board #4 Community Associate 49246.00000 4.924600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.924600e+04 4.924600e+04 0.00 NULL
2023 Manhattan Community Board #4 Community Coordinator 74309.00000 7.430900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.430900e+04 7.430900e+04 0.00 NULL
2023 Manhattan Community Board #4 District Manager 97079.00000 9.707900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.707900e+04 9.707900e+04 0.00 NULL
2023 Manhattan Community Board #5 Community Associate 49736.50000 9.947300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.947300e+04 9.947300e+04 0.00 NULL
2023 Manhattan Community Board #5 Community Coordinator 73503.00000 7.350300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.350300e+04 7.350300e+04 0.00 NULL
2023 Manhattan Community Board #5 District Manager 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2023 Manhattan Community Board #6 Community Associate 51500.00000 5.150000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.150000e+04 5.150000e+04 0.00 NULL
2023 Manhattan Community Board #6 Community Coordinator 68275.50000 1.365510e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.365510e+05 1.365510e+05 0.00 NULL
2023 Manhattan Community Board #6 District Manager 113085.00000 1.130850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.130850e+05 1.130850e+05 0.00 NULL
2023 Manhattan Community Board #7 Community Coordinator 66939.44000 2.677578e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.677578e+05 2.677578e+05 0.00 NULL
2023 Manhattan Community Board #7 District Manager 92300.00000 1.846000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.846000e+05 1.846000e+05 0.00 NULL
2023 Manhattan Community Board #8 Community Associate 46555.25000 1.862210e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.862210e+05 1.862210e+05 0.00 NULL
2023 Manhattan Community Board #8 District Manager 100700.00000 1.007000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.007000e+05 1.007000e+05 0.00 NULL
2023 Manhattan Community Board #9 Community Associate 34253.75000 1.370150e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.370150e+05 1.370150e+05 0.00 NULL
2023 Manhattan Community Board #9 District Manager 102310.00000 1.023100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.023100e+05 1.023100e+05 0.00 NULL
2023 Mayors Office Of Contract Svcs Admin Contract Specialist 184581.00000 3.691620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.691620e+05 3.691620e+05 0.00 NULL
2023 Mayors Office Of Contract Svcs Administrative Engineer 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2023 Mayors Office Of Contract Svcs Administrative Manager 113057.00000 1.130570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.130570e+05 1.130570e+05 0.00 NULL
2023 Mayors Office Of Contract Svcs Administrative Procurement Analyst 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2023 Mayors Office Of Contract Svcs Administrative Procurement Analyst-Non-Mgrl 84254.00000 8.425400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.425400e+04 8.425400e+04 0.00 NULL
2023 Mayors Office Of Contract Svcs Administrative Staff Analyst 164276.14286 1.149933e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.149933e+06 1.149933e+06 0.00 NULL
2023 Mayors Office Of Contract Svcs Computer Specialist 116534.00000 1.165340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.165340e+05 1.165340e+05 0.00 NULL
2023 Mayors Office Of Contract Svcs Computer Systems Manager 143067.15385 1.859873e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.859873e+06 1.859873e+06 0.00 NULL
2023 Mayors Office Of Contract Svcs Executive Agency Counsel 172774.66667 5.183240e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.183240e+05 5.183240e+05 0.00 NULL
2023 Mayors Office Of Contract Svcs Graphic Artist 97287.00000 9.728700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.728700e+04 9.728700e+04 0.00 NULL
2023 Mayors Office Of Contract Svcs Mayoral Office Assistant 54369.66667 4.893270e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.893270e+05 4.893270e+05 0.00 NULL
2023 Mayors Office Of Contract Svcs Mayoral Program Coordinator 72599.00000 7.259900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.259900e+04 7.259900e+04 0.00 NULL
2023 Mayors Office Of Contract Svcs New York City Public Service Fellow 42127.00000 4.212700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.212700e+04 4.212700e+04 0.00 NULL
2023 Mayors Office Of Contract Svcs Research Projects Coord 99769.14205 1.755937e+07 0.00 0.000000e+00 0.000 0.00 176 0.000000e+00 0.00 1.755937e+07 1.755937e+07 0.00 NULL
2023 Mayors Office Of Contract Svcs Research Projects Coordinator 56695.83333 1.360700e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 1.360700e+06 1.360700e+06 0.00 NULL
2023 Mayors Office Of Contract Svcs Special Assistant 150606.66667 4.518200e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.518200e+05 4.518200e+05 0.00 NULL
2023 Mayors Office Of Contract Svcs Summer College Intern 4872.10500 1.461632e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.461632e+04 1.461632e+04 0.00 NULL
2023 Mayors Office Of Contract Svcs Summer Graduate Intern 5525.00000 5.525000e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.525000e+03 5.525000e+03 0.00 NULL
2023 Municipal Water Fin Authority Budget Analyst 128428.72727 1.412716e+06 181.98 1.654364e+01 0.000 4.25 11 0.000000e+00 0.00 1.412898e+06 1.412716e+06 181.98 NULL
2023 Municipal Water Fin Authority Statistical Secretary 65949.00000 1.318980e+05 31.94 1.597000e+01 15.970 1.00 2 1.597000e+01 31.94 1.319299e+05 1.319299e+05 0.00 NULL
2023 Nyc Dept Of Veterans’ Services Admin Community Relations Specialist 86140.50000 1.722810e+05 107.31 5.365500e+01 53.655 3.00 2 5.365500e+01 107.31 1.723883e+05 1.723883e+05 0.00 NULL
2023 Nyc Dept Of Veterans’ Services Administrative Business Promotion Coordinator 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2023 Nyc Dept Of Veterans’ Services Administrative Community Relations Specialist 160900.00000 6.436000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.436000e+05 6.436000e+05 0.00 NULL
2023 Nyc Dept Of Veterans’ Services Administrative Graphic Artist 117500.00000 2.350000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.350000e+05 2.350000e+05 0.00 NULL
2023 Nyc Dept Of Veterans’ Services Administrative Staff Analyst 115000.00000 2.300000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.300000e+05 2.300000e+05 0.00 NULL
2023 Nyc Dept Of Veterans’ Services Agency Attorney 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2023 Nyc Dept Of Veterans’ Services Assistant Commissioner 107160.00000 1.071600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.071600e+05 1.071600e+05 0.00 NULL
2023 Nyc Dept Of Veterans’ Services Associate Public Information Specialist 56148.00000 5.614800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.614800e+04 5.614800e+04 0.00 NULL
2023 Nyc Dept Of Veterans’ Services Chauffeur-Attendant 53663.00000 5.366300e+04 19969.43 1.996943e+04 19969.430 453.25 1 1.996943e+04 19969.43 7.363243e+04 7.363243e+04 0.00 NULL
2023 Nyc Dept Of Veterans’ Services Chief Information Officer 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2023 Nyc Dept Of Veterans’ Services City Research Scientist 100024.00000 1.000240e+05 307.03 3.070300e+02 307.030 4.75 1 3.070300e+02 307.03 1.003310e+05 1.003310e+05 0.00 NULL
2023 Nyc Dept Of Veterans’ Services College Aide 11026.84700 2.205369e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.205369e+04 2.205369e+04 0.00 NULL
2023 Nyc Dept Of Veterans’ Services Commissioner Of Department Of Veterans Services 227785.00000 2.277850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277850e+05 2.277850e+05 0.00 NULL
2023 Nyc Dept Of Veterans’ Services Community Coordinator 65601.50789 1.246429e+06 2492.94 1.312074e+02 0.000 64.00 19 0.000000e+00 0.00 1.248922e+06 1.246429e+06 2492.94 NULL
2023 Nyc Dept Of Veterans’ Services Computer Associate 86893.00000 8.689300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.689300e+04 8.689300e+04 0.00 NULL
2023 Nyc Dept Of Veterans’ Services Deputy Assistant Commissioner 120698.25000 4.827930e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.827930e+05 4.827930e+05 0.00 NULL
2023 Nyc Dept Of Veterans’ Services Executive Agency Counsel 190000.00000 1.900000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.900000e+05 1.900000e+05 0.00 NULL
2023 Nyc Dept Of Veterans’ Services Executive Program Specialist 110000.00000 3.300000e+05 15.41 5.136667e+00 0.000 0.00 3 0.000000e+00 0.00 3.300154e+05 3.300000e+05 15.41 NULL
2023 Nyc Dept Of Veterans’ Services Principal Administrative Associate - Non Supvr 73728.00000 1.474560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.474560e+05 1.474560e+05 0.00 NULL
2023 Nyc Dept Of Veterans’ Services Procurement Analyst 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2023 Nyc Dept Of Veterans’ Services Special Assistant 155310.66667 4.659320e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.659320e+05 4.659320e+05 0.00 NULL
2023 Nyc Employees Retirement Sys Accountant 69457.25000 2.778290e+05 19381.13 4.845283e+03 681.290 355.50 4 6.812900e+02 2725.16 2.972101e+05 2.805542e+05 16655.97 NULL
2023 Nyc Employees Retirement Sys Adm Manager-Non-Mgrl 90868.72727 9.995560e+05 108595.89 9.872354e+03 5954.610 1946.25 11 5.954610e+03 65500.71 1.108152e+06 1.065057e+06 43095.18 NULL
2023 Nyc Employees Retirement Sys Administrative Accountant 100327.06653 9.029436e+05 41127.86 4.569762e+03 1459.280 767.50 9 1.459280e+03 13133.52 9.440715e+05 9.160771e+05 27994.34 NULL
2023 Nyc Employees Retirement Sys Administrative Actuary 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2023 Nyc Employees Retirement Sys Administrative Graphic Artist 115322.00000 1.153220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.153220e+05 1.153220e+05 0.00 NULL
2023 Nyc Employees Retirement Sys Administrative Investigator 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2023 Nyc Employees Retirement Sys Administrative Labor Relations Analyst 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2023 Nyc Employees Retirement Sys Administrative Management Auditor 118703.00000 3.561090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.561090e+05 3.561090e+05 0.00 NULL
2023 Nyc Employees Retirement Sys Administrative Manager 123265.75000 4.930630e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.930630e+05 4.930630e+05 0.00 NULL
2023 Nyc Employees Retirement Sys Administrative Procurement Analyst 158902.00000 1.589020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.589020e+05 1.589020e+05 0.00 NULL
2023 Nyc Employees Retirement Sys Administrative Procurement Analyst-Non-Mgrl 105000.00000 1.050000e+05 2247.83 2.247830e+03 2247.830 37.75 1 2.247830e+03 2247.83 1.072478e+05 1.072478e+05 0.00 NULL
2023 Nyc Employees Retirement Sys Administrative Public Information Specialist 151995.00000 3.039900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.039900e+05 3.039900e+05 0.00 NULL
2023 Nyc Employees Retirement Sys Administrative Retirement Benefits Specialist 138543.68000 3.463592e+06 1027.37 4.109480e+01 0.000 16.75 25 0.000000e+00 0.00 3.464619e+06 3.463592e+06 1027.37 NULL
2023 Nyc Employees Retirement Sys Administrative Retirements Benefits Specialist 104212.66667 6.252760e+05 16793.05 2.798842e+03 432.335 262.75 6 4.323350e+02 2594.01 6.420691e+05 6.278700e+05 14199.04 NULL
2023 Nyc Employees Retirement Sys Administrative Staff Analyst 133283.91667 1.599407e+06 64311.15 5.359262e+03 0.000 892.75 12 0.000000e+00 0.00 1.663718e+06 1.599407e+06 64311.15 NULL
2023 Nyc Employees Retirement Sys Agency Attorney 94101.60000 4.705080e+05 647.35 1.294700e+02 10.260 11.00 5 1.026000e+01 51.30 4.711553e+05 4.705593e+05 596.05 NULL
2023 Nyc Employees Retirement Sys Agency Attorney Interne 62397.00000 6.239700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.239700e+04 6.239700e+04 0.00 NULL
2023 Nyc Employees Retirement Sys Assistant Retirement Benefits Examiner 35399.85236 3.185987e+06 79653.48 8.850387e+02 0.000 2502.75 90 0.000000e+00 0.00 3.265640e+06 3.185987e+06 79653.48 NULL
2023 Nyc Employees Retirement Sys Associate Retirement Benefits Examiner 65689.29907 1.405751e+07 1190071.78 5.561083e+03 707.970 23121.75 214 7.079700e+02 151505.58 1.524758e+07 1.420902e+07 1038566.20 NULL
2023 Nyc Employees Retirement Sys Associate Staff Analyst 85963.00000 3.438520e+05 17401.22 4.350305e+03 1672.055 328.75 4 1.672055e+03 6688.22 3.612532e+05 3.505402e+05 10713.00 NULL
2023 Nyc Employees Retirement Sys Bookkeeper 28291.16717 8.487350e+04 2331.79 7.772633e+02 0.000 96.25 3 0.000000e+00 0.00 8.720529e+04 8.487350e+04 2331.79 NULL
2023 Nyc Employees Retirement Sys Certified It Administrator 114537.76471 1.947142e+06 52738.85 3.102285e+03 2144.730 723.50 17 2.144730e+03 36460.41 1.999881e+06 1.983602e+06 16278.44 NULL
2023 Nyc Employees Retirement Sys Certified It Developer 123250.00000 4.930000e+05 7644.12 1.911030e+03 1190.445 86.75 4 1.190445e+03 4761.78 5.006441e+05 4.977618e+05 2882.34 NULL
2023 Nyc Employees Retirement Sys Clerical Associate 44598.33533 1.337950e+06 107952.68 3.598423e+03 133.110 3420.50 30 1.331100e+02 3993.30 1.445903e+06 1.341943e+06 103959.38 NULL
2023 Nyc Employees Retirement Sys Community Assistant 44455.25000 1.778210e+05 47587.23 1.189681e+04 3298.360 1439.75 4 3.298360e+03 13193.44 2.254082e+05 1.910144e+05 34393.79 NULL
2023 Nyc Employees Retirement Sys Community Associate 46913.90430 6.567947e+05 15905.33 1.136095e+03 8.150 562.50 14 8.150000e+00 114.10 6.727000e+05 6.569088e+05 15791.23 NULL
2023 Nyc Employees Retirement Sys Community Coordinator 65827.57143 4.607930e+05 18848.42 2.692631e+03 1547.200 535.00 7 1.547200e+03 10830.40 4.796414e+05 4.716234e+05 8018.02 NULL
2023 Nyc Employees Retirement Sys Computer Associate 86483.40000 4.324170e+05 9701.21 1.940242e+03 1261.010 180.25 5 1.261010e+03 6305.05 4.421182e+05 4.387220e+05 3396.16 NULL
2023 Nyc Employees Retirement Sys Computer Specialist 113955.05882 1.937236e+06 27478.61 1.616389e+03 86.730 365.75 17 8.673000e+01 1474.41 1.964715e+06 1.938710e+06 26004.20 NULL
2023 Nyc Employees Retirement Sys Computer Systems Manager 156293.90000 4.688817e+06 24321.49 8.107163e+02 0.000 277.75 30 0.000000e+00 0.00 4.713138e+06 4.688817e+06 24321.49 NULL
2023 Nyc Employees Retirement Sys Confidential Strategy Planner 92500.00000 1.850000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.850000e+05 1.850000e+05 0.00 NULL
2023 Nyc Employees Retirement Sys Customer Information Representative Ma L 1549 45943.06446 1.286406e+06 36641.43 1.308622e+03 63.075 997.50 28 6.307500e+01 1766.10 1.323047e+06 1.288172e+06 34875.33 NULL
2023 Nyc Employees Retirement Sys Cyber Security Analyst 97040.33333 2.911210e+05 4976.53 1.658843e+03 1511.540 66.00 3 1.511540e+03 4534.62 2.960975e+05 2.956556e+05 441.91 NULL
2023 Nyc Employees Retirement Sys Deputy Executive Director 224197.00000 2.241970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.241970e+05 2.241970e+05 0.00 NULL
2023 Nyc Employees Retirement Sys Executive Agency Counsel 155872.33333 9.352340e+05 6399.61 1.066602e+03 0.000 74.75 6 0.000000e+00 0.00 9.416336e+05 9.352340e+05 6399.61 NULL
2023 Nyc Employees Retirement Sys Executive Director 240630.00000 2.406300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.406300e+05 2.406300e+05 0.00 NULL
2023 Nyc Employees Retirement Sys Graphic Artist 73940.00000 7.394000e+04 153.13 1.531300e+02 153.130 5.00 1 1.531300e+02 153.13 7.409313e+04 7.409313e+04 0.00 NULL
2023 Nyc Employees Retirement Sys Legal Secretarial Assistant - Al 1 Only 36926.94200 3.692694e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.692694e+04 3.692694e+04 0.00 NULL
2023 Nyc Employees Retirement Sys Management Auditor 81562.50000 1.631250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.631250e+05 1.631250e+05 0.00 NULL
2023 Nyc Employees Retirement Sys Office Machine Aide 24895.89706 1.742713e+05 14908.70 2.129814e+03 519.170 723.75 7 5.191700e+02 3634.19 1.891800e+05 1.779055e+05 11274.51 NULL
2023 Nyc Employees Retirement Sys Principal Administrative Associate - Non Supvr 65287.51515 2.154488e+06 287471.26 8.711250e+03 3092.780 6329.00 33 3.092780e+03 102061.74 2.441959e+06 2.256550e+06 185409.52 NULL
2023 Nyc Employees Retirement Sys Research Assistant 57086.00000 5.708600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.708600e+04 5.708600e+04 0.00 NULL
2023 Nyc Employees Retirement Sys Staff Analyst 65855.60000 3.292780e+05 30610.27 6.122054e+03 5442.270 637.00 5 5.442270e+03 27211.35 3.598883e+05 3.564893e+05 3398.92 NULL
2023 Nyc Employees Retirement Sys Supervising Computer Service Technician 96321.00000 9.632100e+04 14383.01 1.438301e+04 14383.010 226.00 1 1.438301e+04 14383.01 1.107040e+05 1.107040e+05 0.00 NULL
2023 Nyc Employees Retirement Sys Telecommunications Associate 124038.00000 1.240380e+05 815.72 8.157200e+02 815.720 11.25 1 8.157200e+02 815.72 1.248537e+05 1.248537e+05 0.00 NULL
2023 Nyc Employees Retirement Sys Telecommunications Manager 100940.00000 1.009400e+05 6101.53 6.101530e+03 6101.530 92.50 1 6.101530e+03 6101.53 1.070415e+05 1.070415e+05 0.00 NULL
2023 Nyc Fire Pension Fund Accountant 72006.00000 1.440120e+05 233.28 1.166400e+02 116.640 8.00 2 1.166400e+02 233.28 1.442453e+05 1.442453e+05 0.00 NULL
2023 Nyc Fire Pension Fund Adm Manager-Non-Mgrl 86205.75000 3.448230e+05 31016.13 7.754033e+03 6428.620 530.25 4 6.428620e+03 25714.48 3.758391e+05 3.705375e+05 5301.65 NULL
2023 Nyc Fire Pension Fund Administrative Retirement Benefits Specialist 142546.00000 4.276380e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.276380e+05 4.276380e+05 0.00 NULL
2023 Nyc Fire Pension Fund Administrative Retirements Benefits Specialist 106090.00000 1.060900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.060900e+05 1.060900e+05 0.00 NULL
2023 Nyc Fire Pension Fund Administrative Staff Analyst 116246.50000 4.649860e+05 5017.50 1.254375e+03 79.450 88.25 4 7.945000e+01 317.80 4.700035e+05 4.653038e+05 4699.70 NULL
2023 Nyc Fire Pension Fund Agency Chief Contracting Officer 182621.00000 1.826210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.826210e+05 1.826210e+05 0.00 NULL
2023 Nyc Fire Pension Fund Assistant Retirement Benefits Examiner 47597.00000 4.759700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.759700e+04 4.759700e+04 0.00 NULL
2023 Nyc Fire Pension Fund Associate Retirement Benefits Examiner 67828.36364 7.461120e+05 69137.33 6.285212e+03 767.430 1101.75 11 7.674300e+02 8441.73 8.152493e+05 7.545537e+05 60695.60 NULL
2023 Nyc Fire Pension Fund Associate Staff Analyst 87500.00000 8.750000e+04 4131.13 4.131130e+03 4131.130 75.25 1 4.131130e+03 4131.13 9.163113e+04 9.163113e+04 0.00 NULL
2023 Nyc Fire Pension Fund Certified It Administrator 111221.00000 1.112210e+05 2093.23 2.093230e+03 2093.230 33.50 1 2.093230e+03 2093.23 1.133142e+05 1.133142e+05 0.00 NULL
2023 Nyc Fire Pension Fund Chief Of Staff 193363.00000 1.933630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.933630e+05 1.933630e+05 0.00 NULL
2023 Nyc Fire Pension Fund Clerical Associate 51368.00000 5.136800e+04 1269.82 1.269820e+03 1269.820 32.25 1 1.269820e+03 1269.82 5.263782e+04 5.263782e+04 0.00 NULL
2023 Nyc Fire Pension Fund Community Coordinator 68823.50000 2.752940e+05 316.10 7.902500e+01 63.220 7.00 4 6.322000e+01 252.88 2.756101e+05 2.755469e+05 63.22 NULL
2023 Nyc Fire Pension Fund Computer Systems Manager 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2023 Nyc Fire Pension Fund Confidential Asst To The Executive Dir 86520.00000 8.652000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.652000e+04 8.652000e+04 0.00 NULL
2023 Nyc Fire Pension Fund Deputy Executive Director 225018.00000 2.250180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.250180e+05 2.250180e+05 0.00 NULL
2023 Nyc Fire Pension Fund Executive Agency Counsel 161495.50000 3.229910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.229910e+05 3.229910e+05 0.00 NULL
2023 Nyc Fire Pension Fund Executive Director 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2023 Nyc Fire Pension Fund Principal Administrative Associate - Non Supvr 77363.00000 3.094520e+05 3012.25 7.530625e+02 0.000 72.25 4 0.000000e+00 0.00 3.124642e+05 3.094520e+05 3012.25 NULL
2023 Nyc Fire Pension Fund Public Records Aide 50446.00000 3.026760e+05 9035.55 1.505925e+03 284.495 272.25 6 2.844950e+02 1706.97 3.117115e+05 3.043830e+05 7328.58 NULL
2023 Nyc Fire Pension Fund Research Assistant 69999.00000 6.999900e+04 87.34 8.734000e+01 87.340 2.25 1 8.734000e+01 87.34 7.008634e+04 7.008634e+04 0.00 NULL
2023 Nyc Fire Pension Fund Staff Analyst 61866.00000 1.237320e+05 4656.56 2.328280e+03 2328.280 129.25 2 2.328280e+03 4656.56 1.283886e+05 1.283886e+05 0.00 NULL
2023 Nyc Housing Authority *Administrative Attorney 135883.00000 1.358830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.358830e+05 1.358830e+05 0.00 NULL
2023 Nyc Housing Authority *Attorney At Law 91563.00000 1.831260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.831260e+05 1.831260e+05 0.00 NULL
2023 Nyc Housing Authority *Housing Caretaker 46278.00000 1.388340e+05 41038.82 1.367961e+04 18691.640 1101.75 3 1.367961e+04 41038.82 1.798728e+05 1.798728e+05 0.00 NULL
2023 Nyc Housing Authority *Senior Estimator 98097.50000 1.961950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.961950e+05 1.961950e+05 0.00 NULL
2023 Nyc Housing Authority Accountant 70770.06667 2.123102e+06 24714.92 8.238307e+02 0.000 418.75 30 0.000000e+00 0.00 2.147817e+06 2.123102e+06 24714.92 NULL
2023 Nyc Housing Authority Adm Manager-Non-Mgrl 87594.21277 8.233856e+06 175660.46 1.868728e+03 0.000 3059.25 94 0.000000e+00 0.00 8.409516e+06 8.233856e+06 175660.46 NULL
2023 Nyc Housing Authority Admin Community Relations Specialist 97611.60000 5.856696e+06 104590.53 1.743176e+03 0.000 1801.25 60 0.000000e+00 0.00 5.961287e+06 5.856696e+06 104590.53 NULL
2023 Nyc Housing Authority Admin Contract Specialist 136608.77778 1.229479e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.229479e+06 1.229479e+06 0.00 NULL
2023 Nyc Housing Authority Admin Housing Development Spec 89553.00000 8.955300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.955300e+04 8.955300e+04 0.00 NULL
2023 Nyc Housing Authority Admin Job Opportunity Spec Nm 99991.50000 1.999830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.999830e+05 1.999830e+05 0.00 NULL
2023 Nyc Housing Authority Administratiive Taxi & Limousine Inspector 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2023 Nyc Housing Authority Administrative Accountant 110895.00000 3.881325e+06 8.56 2.445714e-01 0.000 0.00 35 0.000000e+00 0.00 3.881334e+06 3.881325e+06 8.56 NULL
2023 Nyc Housing Authority Administrative Architect 130921.14286 9.164480e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.164480e+05 9.164480e+05 0.00 NULL
2023 Nyc Housing Authority Administrative Business Promotion Coordinator 119664.66667 3.589940e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.589940e+05 3.589940e+05 0.00 NULL
2023 Nyc Housing Authority Administrative City Planner 143333.33333 4.300000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.300000e+05 4.300000e+05 0.00 NULL
2023 Nyc Housing Authority Administrative Claim Examiner 126670.33333 7.600220e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.600220e+05 7.600220e+05 0.00 NULL
2023 Nyc Housing Authority Administrative Community Relations Specialist 160678.44444 1.446106e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.446106e+06 1.446106e+06 0.00 NULL
2023 Nyc Housing Authority Administrative Construction Project Manager 123721.64000 3.093041e+06 4661.84 1.864736e+02 0.000 73.75 25 0.000000e+00 0.00 3.097703e+06 3.093041e+06 4661.84 NULL
2023 Nyc Housing Authority Administrative Engineer 132179.55556 1.189616e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.189616e+06 1.189616e+06 0.00 NULL
2023 Nyc Housing Authority Administrative Fire Protection Inspector 127002.00000 1.270020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.270020e+05 1.270020e+05 0.00 NULL
2023 Nyc Housing Authority Administrative Housing Development Specialist 135961.00000 2.447298e+06 47525.12 2.640284e+03 0.000 547.75 18 0.000000e+00 0.00 2.494823e+06 2.447298e+06 47525.12 NULL
2023 Nyc Housing Authority Administrative Housing Manager 130624.62857 4.571862e+06 14975.80 4.278800e+02 0.000 252.50 35 0.000000e+00 0.00 4.586838e+06 4.571862e+06 14975.80 NULL
2023 Nyc Housing Authority Administrative Housing Superintendent 125658.46875 1.608428e+07 218291.58 1.705403e+03 0.000 3348.75 128 0.000000e+00 0.00 1.630258e+07 1.608428e+07 218291.58 NULL
2023 Nyc Housing Authority Administrative Inspector 124601.80000 4.361063e+06 12761.82 3.646234e+02 0.000 201.50 35 0.000000e+00 0.00 4.373825e+06 4.361063e+06 12761.82 NULL
2023 Nyc Housing Authority Administrative Investigator 103375.00000 4.135000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.135000e+05 4.135000e+05 0.00 NULL
2023 Nyc Housing Authority Administrative Labor Relations Analyst 141252.66667 8.475160e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.475160e+05 8.475160e+05 0.00 NULL
2023 Nyc Housing Authority Administrative Landmarks Preservationist 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2023 Nyc Housing Authority Administrative Landscape Architect 118453.00000 1.184530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.184530e+05 1.184530e+05 0.00 NULL
2023 Nyc Housing Authority Administrative Management Auditor 103021.66667 3.090650e+05 42.56 1.418667e+01 0.000 0.00 3 0.000000e+00 0.00 3.091076e+05 3.090650e+05 42.56 NULL
2023 Nyc Housing Authority Administrative Manager 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2023 Nyc Housing Authority Administrative Printing Services Manager 121213.50000 2.424270e+05 3016.17 1.508085e+03 1508.085 65.50 2 1.508085e+03 3016.17 2.454432e+05 2.454432e+05 0.00 NULL
2023 Nyc Housing Authority Administrative Procurement Analyst 150884.00000 1.508840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.508840e+05 1.508840e+05 0.00 NULL
2023 Nyc Housing Authority Administrative Procurement Analyst-Non-Mgrl 94312.23077 1.226059e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.226059e+06 1.226059e+06 0.00 NULL
2023 Nyc Housing Authority Administrative Project Manager 123676.57692 3.215591e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 3.215591e+06 3.215591e+06 0.00 NULL
2023 Nyc Housing Authority Administrative Public Health Sanitarian 114818.80000 5.740940e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.740940e+05 5.740940e+05 0.00 NULL
2023 Nyc Housing Authority Administrative Public Information Specialist 147956.75000 5.918270e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.918270e+05 5.918270e+05 0.00 NULL
2023 Nyc Housing Authority Administrative Public Information Specialist Nm Former M1/M2 116167.50000 2.323350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.323350e+05 2.323350e+05 0.00 NULL
2023 Nyc Housing Authority Administrative Public Records Officer 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2023 Nyc Housing Authority Administrative Quality Assurance Specialist 101274.50000 2.025490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.025490e+05 2.025490e+05 0.00 NULL
2023 Nyc Housing Authority Administrative Real Property Manager 151267.00000 6.050680e+05 14594.73 3.648682e+03 0.000 238.50 4 0.000000e+00 0.00 6.196627e+05 6.050680e+05 14594.73 NULL
2023 Nyc Housing Authority Administrative Space Analyst 103388.75000 4.135550e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.135550e+05 4.135550e+05 0.00 NULL
2023 Nyc Housing Authority Administrative Staff Analyst 128277.59712 1.783059e+07 99214.70 7.137748e+02 0.000 1504.25 139 0.000000e+00 0.00 1.792980e+07 1.783059e+07 99214.70 NULL
2023 Nyc Housing Authority Administrative Storekeeper 121666.66667 3.650000e+05 12776.47 4.258823e+03 0.000 224.00 3 0.000000e+00 0.00 3.777765e+05 3.650000e+05 12776.47 NULL
2023 Nyc Housing Authority Administrative Supervisor Of Building Maintenance 122072.44444 1.098652e+06 12093.44 1.343716e+03 0.000 179.25 9 0.000000e+00 0.00 1.110745e+06 1.098652e+06 12093.44 NULL
2023 Nyc Housing Authority Administrative Supervisor Of Skilled Trades 126572.75000 5.062910e+05 26414.65 6.603663e+03 0.000 466.75 4 0.000000e+00 0.00 5.327057e+05 5.062910e+05 26414.65 NULL
2023 Nyc Housing Authority Agency Attorney 92030.13462 4.785567e+06 0.00 0.000000e+00 0.000 0.00 52 0.000000e+00 0.00 4.785567e+06 4.785567e+06 0.00 NULL
2023 Nyc Housing Authority Agency Attorney Interne 75380.00000 3.015200e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.015200e+05 3.015200e+05 0.00 NULL
2023 Nyc Housing Authority Agency Chief Contracting Officer 226000.00000 2.260000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.260000e+05 2.260000e+05 0.00 NULL
2023 Nyc Housing Authority Architect 100483.85714 7.033870e+05 2.14 3.057143e-01 0.000 0.00 7 0.000000e+00 0.00 7.033891e+05 7.033870e+05 2.14 NULL
2023 Nyc Housing Authority Asbestos Handler 83394.10000 1.667882e+06 534087.95 2.670440e+04 28559.060 9008.50 20 2.670440e+04 534087.95 2.201970e+06 2.201970e+06 0.00 NULL
2023 Nyc Housing Authority Asbestos Handler Supervisor 89983.33333 5.399000e+05 307766.32 5.129439e+04 49485.740 4752.00 6 4.948574e+04 296914.44 8.476663e+05 8.368144e+05 10851.88 NULL
2023 Nyc Housing Authority Asbestos Hazard Investigator 87845.66667 5.270740e+05 151611.13 2.526852e+04 6652.180 2246.25 6 6.652180e+03 39913.08 6.786851e+05 5.669871e+05 111698.05 NULL
2023 Nyc Housing Authority Assistant Architect 83325.83333 4.999550e+05 300.31 5.005167e+01 0.000 5.75 6 0.000000e+00 0.00 5.002553e+05 4.999550e+05 300.31 NULL
2023 Nyc Housing Authority Assistant Civil Engineer 82133.33333 2.464000e+05 2.10 7.000000e-01 0.000 0.00 3 0.000000e+00 0.00 2.464021e+05 2.464000e+05 2.10 NULL
2023 Nyc Housing Authority Assistant Director Of Intergroup Relations 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2023 Nyc Housing Authority Assistant Electrical Engineer 78059.25000 3.122370e+05 895.97 2.239925e+02 77.330 18.00 4 7.733000e+01 309.32 3.131330e+05 3.125463e+05 586.65 NULL
2023 Nyc Housing Authority Assistant Executive Director 173043.75000 1.384350e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.384350e+06 1.384350e+06 0.00 NULL
2023 Nyc Housing Authority Assistant Housing Manager 75104.23469 1.472043e+07 1524710.98 7.779138e+03 1741.235 29135.25 196 1.741235e+03 341282.06 1.624514e+07 1.506171e+07 1183428.92 NULL
2023 Nyc Housing Authority Assistant Landscape Architect 78898.75000 3.155950e+05 1.38 3.450000e-01 0.000 0.00 4 0.000000e+00 0.00 3.155964e+05 3.155950e+05 1.38 NULL
2023 Nyc Housing Authority Assistant Mechanical Engineer 80434.25000 3.217370e+05 835.91 2.089775e+02 0.000 18.00 4 0.000000e+00 0.00 3.225729e+05 3.217370e+05 835.91 NULL
2023 Nyc Housing Authority Assistant Printing Press Operator 66473.00000 3.323650e+05 11353.75 2.270750e+03 1984.000 267.50 5 1.984000e+03 9920.00 3.437188e+05 3.422850e+05 1433.75 NULL
2023 Nyc Housing Authority Assistant Resident Building Supt 71270.39013 1.589330e+07 4168014.00 1.869065e+04 16845.860 82455.00 223 1.684586e+04 3756626.78 2.006131e+07 1.964992e+07 411387.22 NULL
2023 Nyc Housing Authority Assoc Inspector 83630.33333 2.508910e+05 27841.13 9.280377e+03 12148.900 463.25 3 9.280377e+03 27841.13 2.787321e+05 2.787321e+05 0.00 NULL
2023 Nyc Housing Authority Associate Fire Protection Inspector 78154.80000 3.907740e+05 3210.09 6.420180e+02 599.520 72.50 5 5.995200e+02 2997.60 3.939841e+05 3.937716e+05 212.49 NULL
2023 Nyc Housing Authority Associate Fraud Investigator 87003.33333 2.610100e+05 33.55 1.118333e+01 0.000 0.00 3 0.000000e+00 0.00 2.610435e+05 2.610100e+05 33.55 NULL
2023 Nyc Housing Authority Associate Housing Development Specialist 103590.78571 4.350813e+06 22559.93 5.371412e+02 0.000 374.50 42 0.000000e+00 0.00 4.373373e+06 4.350813e+06 22559.93 NULL
2023 Nyc Housing Authority Associate Inspector 81085.83333 9.730300e+05 301691.34 2.514094e+04 23799.425 4961.00 12 2.379942e+04 285593.10 1.274721e+06 1.258623e+06 16098.24 NULL
2023 Nyc Housing Authority Associate Investigator 67404.20000 6.740420e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 6.740420e+05 6.740420e+05 0.00 NULL
2023 Nyc Housing Authority Associate Job Opportunity Specialist 77878.50000 1.557570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.557570e+05 1.557570e+05 0.00 NULL
2023 Nyc Housing Authority Associate Labor Relations Analyst 90492.00000 1.357380e+06 15328.52 1.021901e+03 0.000 246.25 15 0.000000e+00 0.00 1.372709e+06 1.357380e+06 15328.52 NULL
2023 Nyc Housing Authority Associate Project Manager 97066.66667 2.038400e+06 66484.06 3.165908e+03 0.000 1113.75 21 0.000000e+00 0.00 2.104884e+06 2.038400e+06 66484.06 NULL
2023 Nyc Housing Authority Associate Public Health Sanitarian 85952.81250 1.375245e+06 44022.27 2.751392e+03 6.570 671.75 16 6.570000e+00 105.12 1.419267e+06 1.375350e+06 43917.15 NULL
2023 Nyc Housing Authority Associate Public Information Specialist 58869.00000 5.886900e+04 451.10 4.511000e+02 451.100 13.50 1 4.511000e+02 451.10 5.932010e+04 5.932010e+04 0.00 NULL
2023 Nyc Housing Authority Associate Public Records Officer 83430.00000 8.343000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.343000e+04 8.343000e+04 0.00 NULL
2023 Nyc Housing Authority Associate Quality Assurance Specialist 75500.00000 1.510000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.510000e+05 1.510000e+05 0.00 NULL
2023 Nyc Housing Authority Associate Real Property Manager 82470.33333 2.474110e+05 378.99 1.263300e+02 0.000 7.75 3 0.000000e+00 0.00 2.477900e+05 2.474110e+05 378.99 NULL
2023 Nyc Housing Authority Associate Retirement Benefits Examiner 51812.00000 5.181200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.181200e+04 5.181200e+04 0.00 NULL
2023 Nyc Housing Authority Associate Staff Analyst 87409.95833 4.195678e+06 31278.82 6.516421e+02 0.000 537.00 48 0.000000e+00 0.00 4.226957e+06 4.195678e+06 31278.82 NULL
2023 Nyc Housing Authority Associate Urban Designer 98596.33333 2.957890e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.957890e+05 2.957890e+05 0.00 NULL
2023 Nyc Housing Authority Auto Mechanic NA NA 4718.13 2.359065e+03 2359.065 76.00 2 2.359065e+03 4718.13 NA NA NA NULL
2023 Nyc Housing Authority Automotive Service Worker 54400.00000 1.088000e+05 117.61 5.880500e+01 58.805 3.00 2 5.880500e+01 117.61 1.089176e+05 1.089176e+05 0.00 NULL
2023 Nyc Housing Authority Bookkeeper 58547.87500 1.405149e+06 8756.63 3.648596e+02 0.000 229.50 24 0.000000e+00 0.00 1.413906e+06 1.405149e+06 8756.63 NULL
2023 Nyc Housing Authority Bricklayer NA NA 2198958.85 3.282028e+04 24536.730 30648.50 67 2.453673e+04 1643960.91 NA NA NA NULL
2023 Nyc Housing Authority Business Promotion Coordinator 74407.50000 1.488150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.488150e+05 1.488150e+05 0.00 NULL
2023 Nyc Housing Authority Call Center Representative 40345.00000 8.069000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.069000e+04 8.069000e+04 0.00 NULL
2023 Nyc Housing Authority Caretaker 41039.26132 1.785618e+08 39816463.67 9.151106e+03 8717.230 1218835.00 4351 8.717230e+03 37928667.73 2.183783e+08 2.164905e+08 1887795.94 NULL
2023 Nyc Housing Authority Carpenter NA NA 9800697.74 3.487793e+04 32871.380 121760.25 281 3.287138e+04 9236857.78 NA NA NA NULL
2023 Nyc Housing Authority Certified It Administrator 120055.15385 1.560717e+06 53990.73 4.153133e+03 1496.240 681.00 13 1.496240e+03 19451.12 1.614708e+06 1.580168e+06 34539.61 NULL
2023 Nyc Housing Authority Chair 258000.00000 2.580000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.580000e+05 2.580000e+05 0.00 NULL
2023 Nyc Housing Authority Chauffeur-Attendant 60071.00000 6.007100e+04 3361.98 3.361980e+03 3361.980 89.50 1 3.361980e+03 3361.98 6.343298e+04 6.343298e+04 0.00 NULL
2023 Nyc Housing Authority Chief Caretaker 51819.00000 5.700090e+05 121273.43 1.102486e+04 13232.310 3515.75 11 1.102486e+04 121273.43 6.912824e+05 6.912824e+05 0.00 NULL
2023 Nyc Housing Authority Chief Of Housing Community Activities 112954.71429 7.906830e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.906830e+05 7.906830e+05 0.00 NULL
2023 Nyc Housing Authority Chief, Publications & Reports 114465.50000 2.289310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.289310e+05 2.289310e+05 0.00 NULL
2023 Nyc Housing Authority City Attendant 40591.20000 2.029560e+05 989.17 1.978340e+02 9.660 22.50 5 9.660000e+00 48.30 2.039452e+05 2.030043e+05 940.87 NULL
2023 Nyc Housing Authority City Laborer NA NA 2260645.26 1.852988e+04 15458.415 39483.25 122 1.545842e+04 1885926.63 NA NA NA NULL
2023 Nyc Housing Authority City Pest Control Aide 37611.86667 1.128356e+06 19913.61 6.637870e+02 0.000 733.50 30 0.000000e+00 0.00 1.148270e+06 1.128356e+06 19913.61 NULL
2023 Nyc Housing Authority City Planner 96560.25000 3.862410e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.862410e+05 3.862410e+05 0.00 NULL
2023 Nyc Housing Authority City Research Scientist 103497.00000 9.314730e+05 9330.59 1.036732e+03 0.000 143.50 9 0.000000e+00 0.00 9.408036e+05 9.314730e+05 9330.59 NULL
2023 Nyc Housing Authority City Seasonal Aide 36288.38697 1.894254e+07 8705.66 1.667751e+01 0.000 327.75 522 0.000000e+00 0.00 1.895124e+07 1.894254e+07 8705.66 NULL
2023 Nyc Housing Authority City Security Aide 11903.84615 3.095000e+05 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 3.095000e+05 3.095000e+05 0.00 NULL
2023 Nyc Housing Authority City Service Aide 44781.41176 7.612840e+05 24225.58 1.425034e+03 1541.790 751.75 17 1.425034e+03 24225.58 7.855096e+05 7.855096e+05 0.00 NULL
2023 Nyc Housing Authority Civil Engineer 109527.00000 4.381080e+05 2767.93 6.919825e+02 5.360 43.50 4 5.360000e+00 21.44 4.408759e+05 4.381294e+05 2746.49 NULL
2023 Nyc Housing Authority Claim Specialist 66873.60000 3.343680e+05 146.65 2.933000e+01 0.000 0.00 5 0.000000e+00 0.00 3.345147e+05 3.343680e+05 146.65 NULL
2023 Nyc Housing Authority Clerical Aide 36389.66667 2.183380e+05 8.04 1.340000e+00 0.000 0.00 6 0.000000e+00 0.00 2.183460e+05 2.183380e+05 8.04 NULL
2023 Nyc Housing Authority Clerical Associate 46755.07447 4.394977e+06 68704.44 7.308983e+02 0.000 1830.25 94 0.000000e+00 0.00 4.463681e+06 4.394977e+06 68704.44 NULL
2023 Nyc Housing Authority College Aide 27216.00000 2.449440e+05 5735.09 6.372322e+02 0.000 300.75 9 0.000000e+00 0.00 2.506791e+05 2.449440e+05 5735.09 NULL
2023 Nyc Housing Authority Community Assistant 41721.00000 3.754890e+05 1876.10 2.084556e+02 3.660 75.25 9 3.660000e+00 32.94 3.773651e+05 3.755219e+05 1843.16 NULL
2023 Nyc Housing Authority Community Associate 53200.00000 9.682400e+06 206988.85 1.137301e+03 0.000 5438.50 182 0.000000e+00 0.00 9.889389e+06 9.682400e+06 206988.85 NULL
2023 Nyc Housing Authority Community Coordinator 74298.05296 2.384968e+07 360392.70 1.122719e+03 0.000 7553.75 321 0.000000e+00 0.00 2.421007e+07 2.384968e+07 360392.70 NULL
2023 Nyc Housing Authority Community Service Aide 36801.93571 5.152271e+06 290984.68 2.078462e+03 234.095 10173.75 140 2.340950e+02 32773.30 5.443256e+06 5.185044e+06 258211.38 NULL
2023 Nyc Housing Authority Computer Aide-Non-Spvr 56650.00000 5.665000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.665000e+04 5.665000e+04 0.00 NULL
2023 Nyc Housing Authority Computer Associate 73742.33333 6.636810e+05 13500.83 1.500092e+03 1.010 292.50 9 1.010000e+00 9.09 6.771818e+05 6.636901e+05 13491.74 NULL
2023 Nyc Housing Authority Computer Operations Manager 108155.33333 3.244660e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.244660e+05 3.244660e+05 0.00 NULL
2023 Nyc Housing Authority Computer Programmer Analyst 82400.00000 8.240000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.240000e+04 8.240000e+04 0.00 NULL
2023 Nyc Housing Authority Computer Service Technician 56655.33333 1.699660e+05 5.37 1.790000e+00 0.000 0.00 3 0.000000e+00 0.00 1.699714e+05 1.699660e+05 5.37 NULL
2023 Nyc Housing Authority Computer Specialist 107116.85714 5.248726e+06 186593.81 3.808037e+03 103.060 2245.25 49 1.030600e+02 5049.94 5.435320e+06 5.253776e+06 181543.87 NULL
2023 Nyc Housing Authority Computer Systems Manager 137640.94737 7.845534e+06 654.97 1.149070e+01 0.000 4.50 57 0.000000e+00 0.00 7.846189e+06 7.845534e+06 654.97 NULL
2023 Nyc Housing Authority Confidential Investigator 72613.14634 2.977139e+06 45694.45 1.114499e+03 0.000 886.75 41 0.000000e+00 0.00 3.022833e+06 2.977139e+06 45694.45 NULL
2023 Nyc Housing Authority Construction Project Manager 93296.59794 9.049770e+06 427568.02 4.407918e+03 0.000 6786.00 97 0.000000e+00 0.00 9.477338e+06 9.049770e+06 427568.02 NULL
2023 Nyc Housing Authority Consultant On Race Relations 129000.00000 1.290000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.290000e+05 1.290000e+05 0.00 NULL
2023 Nyc Housing Authority Contract Specialist 66398.50000 6.639850e+05 15280.95 1.528095e+03 18.645 317.50 10 1.864500e+01 186.45 6.792659e+05 6.641714e+05 15094.50 NULL
2023 Nyc Housing Authority Controller 195000.00000 1.950000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.950000e+05 1.950000e+05 0.00 NULL
2023 Nyc Housing Authority Coordinator, Tenant Patrol 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2023 Nyc Housing Authority Counsel 226600.00000 2.266000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.266000e+05 2.266000e+05 0.00 NULL
2023 Nyc Housing Authority Custodian 68000.00000 6.800000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.800000e+04 6.800000e+04 0.00 NULL
2023 Nyc Housing Authority Customer Information Representative Ma L 1549 49819.29091 5.480122e+06 57611.05 5.237368e+02 0.000 1417.00 110 0.000000e+00 0.00 5.537733e+06 5.480122e+06 57611.05 NULL
2023 Nyc Housing Authority Deputy Controller 173531.00000 1.735310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.735310e+05 1.735310e+05 0.00 NULL
2023 Nyc Housing Authority Deputy Director Of Design 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2023 Nyc Housing Authority Deputy Director Of Management 107500.00000 2.150000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.150000e+05 2.150000e+05 0.00 NULL
2023 Nyc Housing Authority Deputy Executive Director 223799.83333 1.342799e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.342799e+06 1.342799e+06 0.00 NULL
2023 Nyc Housing Authority Deputy Inspector General 123166.66667 3.695000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.695000e+05 3.695000e+05 0.00 NULL
2023 Nyc Housing Authority Dir Of Quality & Cost Control 195000.00000 1.950000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.950000e+05 1.950000e+05 0.00 NULL
2023 Nyc Housing Authority Director Of Contract Administration 135000.00000 2.700000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.700000e+05 2.700000e+05 0.00 NULL
2023 Nyc Housing Authority Director Of Development 116090.00000 1.160900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.160900e+05 1.160900e+05 0.00 NULL
2023 Nyc Housing Authority Director Of Equal Opportunity 162008.50000 3.240170e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.240170e+05 3.240170e+05 0.00 NULL
2023 Nyc Housing Authority Director Of General Services 158926.00000 1.589260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.589260e+05 1.589260e+05 0.00 NULL
2023 Nyc Housing Authority Director Of Information Systems 167244.50000 3.344890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.344890e+05 3.344890e+05 0.00 NULL
2023 Nyc Housing Authority Director Of Leased Housing 130156.00000 1.301560e+05 1672.40 1.672400e+03 1672.400 32.75 1 1.672400e+03 1672.40 1.318284e+05 1.318284e+05 0.00 NULL
2023 Nyc Housing Authority Director Of Methods & Analysis 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2023 Nyc Housing Authority Director Of Plant Operations & Maintenance 169350.00000 1.693500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.693500e+05 1.693500e+05 0.00 NULL
2023 Nyc Housing Authority Director Of Program Planning 180000.00000 1.800000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.800000e+05 1.800000e+05 0.00 NULL
2023 Nyc Housing Authority Director Of Public And Community Relations 128000.00000 1.280000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.280000e+05 1.280000e+05 0.00 NULL
2023 Nyc Housing Authority Director Of Review & Counseling 140000.00000 1.400000e+05 6.66 6.660000e+00 6.660 0.00 1 6.660000e+00 6.66 1.400067e+05 1.400067e+05 0.00 NULL
2023 Nyc Housing Authority Director Of Social & Community Services 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2023 Nyc Housing Authority Director Or Management 153107.00000 1.531070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.531070e+05 1.531070e+05 0.00 NULL
2023 Nyc Housing Authority Director, Energy Management Strategy 129000.00000 1.290000e+05 9581.30 9.581300e+03 9581.300 161.50 1 9.581300e+03 9581.30 1.385813e+05 1.385813e+05 0.00 NULL
2023 Nyc Housing Authority Economist 83448.73077 2.169667e+06 34054.19 1.309777e+03 0.000 595.75 26 0.000000e+00 0.00 2.203721e+06 2.169667e+06 34054.19 NULL
2023 Nyc Housing Authority Electrical Engineer 113766.33333 3.412990e+05 2403.67 8.012233e+02 178.450 24.25 3 1.784500e+02 535.35 3.437027e+05 3.418343e+05 1868.32 NULL
2023 Nyc Housing Authority Electrician NA NA 5646399.74 6.071398e+04 52441.920 60714.00 93 5.244192e+04 4877098.56 NA NA NA NULL
2023 Nyc Housing Authority Electricians Helper NA NA 1847756.45 2.757845e+04 21067.230 31302.25 67 2.106723e+04 1411504.41 NA NA NA NULL
2023 Nyc Housing Authority Elevator Mechanic NA NA 8025729.10 3.551208e+04 30902.535 83403.75 226 3.090253e+04 6983972.91 NA NA NA NULL
2023 Nyc Housing Authority Elevator Mechanic Helper NA NA 3524575.05 2.149131e+04 20037.190 59261.00 164 2.003719e+04 3286099.16 NA NA NA NULL
2023 Nyc Housing Authority Emergency Service Aide 43114.66038 2.285077e+06 205228.93 3.872244e+03 1288.110 6986.75 53 1.288110e+03 68269.83 2.490306e+06 2.353347e+06 136959.10 NULL
2023 Nyc Housing Authority Engineering Technician 85886.00000 8.588600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.588600e+04 8.588600e+04 0.00 NULL
2023 Nyc Housing Authority Estimator 98136.16667 5.888170e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.888170e+05 5.888170e+05 0.00 NULL
2023 Nyc Housing Authority Executive Agency Counsel 144573.45161 8.963554e+06 0.00 0.000000e+00 0.000 0.00 62 0.000000e+00 0.00 8.963554e+06 8.963554e+06 0.00 NULL
2023 Nyc Housing Authority Executive Director 258000.00000 2.580000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.580000e+05 2.580000e+05 0.00 NULL
2023 Nyc Housing Authority Executive Program Specialist 181666.66667 5.450000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.450000e+05 5.450000e+05 0.00 NULL
2023 Nyc Housing Authority Fraud Investigator 68620.00000 6.862000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.862000e+04 6.862000e+04 0.00 NULL
2023 Nyc Housing Authority Geologist 102019.33333 3.060580e+05 17691.52 5.897173e+03 429.790 209.00 3 4.297900e+02 1289.37 3.237495e+05 3.073474e+05 16402.15 NULL
2023 Nyc Housing Authority Glazier NA NA 665276.64 3.167984e+04 32012.880 7139.00 21 3.167984e+04 665276.64 NA NA NA NULL
2023 Nyc Housing Authority Graphic Artist 73500.00000 2.205000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.205000e+05 2.205000e+05 0.00 NULL
2023 Nyc Housing Authority Health Services Manager 140000.00000 2.800000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.800000e+05 2.800000e+05 0.00 NULL
2023 Nyc Housing Authority Hearing Examiner 128812.00000 3.864360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.864360e+05 3.864360e+05 0.00 NULL
2023 Nyc Housing Authority Heating Plant Technician 53799.49474 1.022190e+07 3071674.02 1.616671e+04 10738.875 82823.25 190 1.073888e+04 2040386.25 1.329358e+07 1.226229e+07 1031287.77 NULL
2023 Nyc Housing Authority High Pressure Plant Tender NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2023 Nyc Housing Authority Housing Assistant 55117.51966 5.186559e+07 2941255.93 3.125670e+03 0.000 67986.25 941 0.000000e+00 0.00 5.480684e+07 5.186559e+07 2941255.93 NULL
2023 Nyc Housing Authority Housing Development Specialist 87881.50000 3.515260e+05 348.27 8.706750e+01 0.000 7.00 4 0.000000e+00 0.00 3.518743e+05 3.515260e+05 348.27 NULL
2023 Nyc Housing Authority Housing Exterminator 50134.01064 4.712597e+06 353939.56 3.765314e+03 1057.805 9661.50 94 1.057805e+03 99433.67 5.066537e+06 4.812031e+06 254505.89 NULL
2023 Nyc Housing Authority Housing Exterminator-Al Ii & Iii 64516.00000 1.225804e+06 264097.31 1.389986e+04 9586.150 5725.75 19 9.586150e+03 182136.85 1.489901e+06 1.407941e+06 81960.46 NULL
2023 Nyc Housing Authority Housing Exterminator-Al Iv 80422.71429 5.629590e+05 97865.07 1.398072e+04 18507.700 1810.25 7 1.398072e+04 97865.07 6.608241e+05 6.608241e+05 0.00 NULL
2023 Nyc Housing Authority Housing Manager 92818.53927 1.772834e+07 2003096.36 1.048742e+04 4412.440 32157.75 191 4.412440e+03 842776.04 1.973144e+07 1.857112e+07 1160320.32 NULL
2023 Nyc Housing Authority Housing Stock Worker 50660.75000 8.105720e+05 4776.50 2.985312e+02 22.110 122.75 16 2.211000e+01 353.76 8.153485e+05 8.109258e+05 4422.74 NULL
2023 Nyc Housing Authority Industrial Hygienist 78026.55556 7.022390e+05 40243.94 4.471549e+03 0.000 771.75 9 0.000000e+00 0.00 7.424829e+05 7.022390e+05 40243.94 NULL
2023 Nyc Housing Authority Inspector 73981.66667 2.219450e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.219450e+05 2.219450e+05 0.00 NULL
2023 Nyc Housing Authority Inspector Boilers 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2023 Nyc Housing Authority Inspector Elevators 95679.00000 9.567900e+04 964.91 9.649100e+02 964.910 15.00 1 9.649100e+02 964.91 9.664391e+04 9.664391e+04 0.00 NULL
2023 Nyc Housing Authority Inspector General 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2023 Nyc Housing Authority Insurance Advisor 69963.50000 1.399270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.399270e+05 1.399270e+05 0.00 NULL
2023 Nyc Housing Authority Interpreter 62317.75000 2.492710e+05 1748.05 4.370125e+02 219.100 47.75 4 2.191000e+02 876.40 2.510190e+05 2.501474e+05 871.65 NULL
2023 Nyc Housing Authority Interpreter/Translator 56796.00000 2.271840e+05 1953.05 4.882625e+02 437.305 54.25 4 4.373050e+02 1749.22 2.291370e+05 2.289332e+05 203.83 NULL
2023 Nyc Housing Authority Investigator 59439.00000 1.188780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.188780e+05 1.188780e+05 0.00 NULL
2023 Nyc Housing Authority It Project Specialist 146775.00000 2.935500e+05 73.89 3.694500e+01 36.945 1.00 2 3.694500e+01 73.89 2.936239e+05 2.936239e+05 0.00 NULL
2023 Nyc Housing Authority It Security Specialist 164800.00000 1.648000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.648000e+05 1.648000e+05 0.00 NULL
2023 Nyc Housing Authority It Service Management Specialist 110725.00000 2.214500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.214500e+05 2.214500e+05 0.00 NULL
2023 Nyc Housing Authority Labor Relations Analyst 74684.00000 7.468400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.468400e+04 7.468400e+04 0.00 NULL
2023 Nyc Housing Authority Labor Relations Analyst Trainee 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2023 Nyc Housing Authority Landscape Architect 105534.00000 2.110680e+05 8623.53 4.311765e+03 4311.765 130.00 2 4.311765e+03 8623.53 2.196915e+05 2.196915e+05 0.00 NULL
2023 Nyc Housing Authority Lead Abatement Worker 58595.62500 9.375300e+05 168321.29 1.052008e+04 9153.885 4025.75 16 9.153885e+03 146462.16 1.105851e+06 1.083992e+06 21859.13 NULL
2023 Nyc Housing Authority Legal Secretarial Assistant - Al 1 Only 45391.00000 4.539100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.539100e+04 4.539100e+04 0.00 NULL
2023 Nyc Housing Authority Machinist NA NA 29634.56 9.878187e+03 4375.740 466.25 3 4.375740e+03 13127.22 NA NA NA NULL
2023 Nyc Housing Authority Maintenance Worker NA NA 20534481.09 1.453254e+04 10920.230 448174.75 1413 1.092023e+04 15430284.99 NA NA NA NULL
2023 Nyc Housing Authority Management Auditor 75425.44444 1.357658e+06 11320.60 6.289222e+02 0.000 261.00 18 0.000000e+00 0.00 1.368979e+06 1.357658e+06 11320.60 NULL
2023 Nyc Housing Authority Masons Helper NA NA 1418622.73 2.488812e+04 18770.270 26332.75 57 1.877027e+04 1069905.39 NA NA NA NULL
2023 Nyc Housing Authority Mechanical Engineer 109527.28571 7.666910e+05 179.16 2.559429e+01 0.000 2.00 7 0.000000e+00 0.00 7.668702e+05 7.666910e+05 179.16 NULL
2023 Nyc Housing Authority Media Services Technician 62573.00000 6.257300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.257300e+04 6.257300e+04 0.00 NULL
2023 Nyc Housing Authority Motor Grader Operator NA NA 51366.10 2.568305e+04 25683.050 584.00 2 2.568305e+04 51366.10 NA NA NA NULL
2023 Nyc Housing Authority Motor Vehicle Operator 51965.84615 6.755560e+05 31205.75 2.400442e+03 747.380 764.50 13 7.473800e+02 9715.94 7.067618e+05 6.852719e+05 21489.81 NULL
2023 Nyc Housing Authority Office Machine Aide 51456.00000 5.145600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.145600e+04 5.145600e+04 0.00 NULL
2023 Nyc Housing Authority Oil Burner Specialist 68447.25000 2.737890e+05 127129.89 3.178247e+04 22419.805 2630.50 4 2.241981e+04 89679.22 4.009189e+05 3.634682e+05 37450.67 NULL
2023 Nyc Housing Authority Oiler NA NA 8566.67 1.713334e+03 1209.940 96.75 5 1.209940e+03 6049.70 NA NA NA NULL
2023 Nyc Housing Authority Painter NA NA 12305320.61 3.525880e+04 34399.130 182604.00 349 3.439913e+04 12005296.37 NA NA NA NULL
2023 Nyc Housing Authority Plasterer NA NA 11082064.69 4.229796e+04 42151.800 119872.50 262 4.215180e+04 11043771.60 NA NA NA NULL
2023 Nyc Housing Authority Plumber NA NA 13386389.95 6.374471e+04 57651.520 102681.00 210 5.765152e+04 12106819.20 NA NA NA NULL
2023 Nyc Housing Authority Plumber’s Helper NA NA 6027786.28 3.059790e+04 25727.380 70581.00 197 2.572738e+04 5068293.86 NA NA NA NULL
2023 Nyc Housing Authority Principal Administrative Associate - Non Supvr 65817.34831 5.857744e+06 76863.16 8.636310e+02 0.000 1803.25 89 0.000000e+00 0.00 5.934607e+06 5.857744e+06 76863.16 NULL
2023 Nyc Housing Authority Printing Press Operator NA NA 2041.65 1.020825e+03 1020.825 33.50 2 1.020825e+03 2041.65 NA NA NA NULL
2023 Nyc Housing Authority Procurement Analyst 71627.45161 2.220451e+06 138009.07 4.451905e+03 0.000 2287.00 31 0.000000e+00 0.00 2.358460e+06 2.220451e+06 138009.07 NULL
2023 Nyc Housing Authority Program Producer 97603.00000 9.760300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.760300e+04 9.760300e+04 0.00 NULL
2023 Nyc Housing Authority Project Manager 76655.00000 1.533100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.533100e+05 1.533100e+05 0.00 NULL
2023 Nyc Housing Authority Project Manager Intern# 61958.50000 2.478340e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.478340e+05 2.478340e+05 0.00 NULL
2023 Nyc Housing Authority Public Health Sanitarian 70206.66667 2.106200e+05 18294.49 6.098163e+03 198.530 374.50 3 1.985300e+02 595.59 2.289145e+05 2.112156e+05 17698.90 NULL
2023 Nyc Housing Authority Public Records Aide 54023.00000 5.402300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.402300e+04 5.402300e+04 0.00 NULL
2023 Nyc Housing Authority Public Records Officer 53560.00000 5.356000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.356000e+04 5.356000e+04 0.00 NULL
2023 Nyc Housing Authority Quality Assurance Specialist 62127.00000 8.076510e+05 294.99 2.269154e+01 0.000 8.50 13 0.000000e+00 0.00 8.079460e+05 8.076510e+05 294.99 NULL
2023 Nyc Housing Authority Real Property Manager 62830.00000 6.283000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.283000e+04 6.283000e+04 0.00 NULL
2023 Nyc Housing Authority Research Assistant 59120.00000 4.138400e+05 1106.00 1.580000e+02 0.000 28.50 7 0.000000e+00 0.00 4.149460e+05 4.138400e+05 1106.00 NULL
2023 Nyc Housing Authority Resident Building Superintendent 89580.70732 1.836404e+07 3788881.41 1.848235e+04 12363.060 61456.75 205 1.236306e+04 2534427.30 2.215293e+07 2.089847e+07 1254454.11 NULL
2023 Nyc Housing Authority Roofer NA NA 514452.50 1.659524e+04 7326.890 8641.25 31 7.326890e+03 227133.59 NA NA NA NULL
2023 Nyc Housing Authority Secretary 44905.99405 2.263262e+07 225563.85 4.475473e+02 0.000 7147.00 504 0.000000e+00 0.00 2.285818e+07 2.263262e+07 225563.85 NULL
2023 Nyc Housing Authority Secretary To Deputy Executive Director 86907.66667 2.607230e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.607230e+05 2.607230e+05 0.00 NULL
2023 Nyc Housing Authority Secretary To Executive Director 85276.00000 8.527600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.527600e+04 8.527600e+04 0.00 NULL
2023 Nyc Housing Authority Secretary To Member 82500.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2023 Nyc Housing Authority Secretary To The Chairman 82876.00000 8.287600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.287600e+04 8.287600e+04 0.00 NULL
2023 Nyc Housing Authority Senior General Deputy Manager 240000.00000 2.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.400000e+05 2.400000e+05 0.00 NULL
2023 Nyc Housing Authority Senior Intergroup Relations Officer 109822.00000 1.098220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.098220e+05 1.098220e+05 0.00 NULL
2023 Nyc Housing Authority Senior It Architect 164800.00000 1.648000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.648000e+05 1.648000e+05 0.00 NULL
2023 Nyc Housing Authority Social Worker 64164.10000 6.416410e+05 212.77 2.127700e+01 0.000 6.00 10 0.000000e+00 0.00 6.418538e+05 6.416410e+05 212.77 NULL
2023 Nyc Housing Authority Space Analyst 83064.00000 8.306400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.306400e+04 8.306400e+04 0.00 NULL
2023 Nyc Housing Authority Special Assistant To The Deputy Executive Director 135595.77778 1.220362e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.220362e+06 1.220362e+06 0.00 NULL
2023 Nyc Housing Authority Special Assistant To The Executive Director 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2023 Nyc Housing Authority Special Officer 50207.00000 1.506210e+05 9801.50 3.267167e+03 3291.230 290.00 3 3.267167e+03 9801.50 1.604225e+05 1.604225e+05 0.00 NULL
2023 Nyc Housing Authority Staff Analyst 69625.44000 1.740636e+06 36648.98 1.465959e+03 0.000 644.25 25 0.000000e+00 0.00 1.777285e+06 1.740636e+06 36648.98 NULL
2023 Nyc Housing Authority Staff Analyst Trainee 45519.00000 4.551900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.551900e+04 4.551900e+04 0.00 NULL
2023 Nyc Housing Authority Statistician 63198.00000 6.319800e+04 3.56 3.560000e+00 3.560 0.00 1 3.560000e+00 3.56 6.320156e+04 6.320156e+04 0.00 NULL
2023 Nyc Housing Authority Summer College Intern 21900.00000 2.190000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.190000e+04 2.190000e+04 0.00 NULL
2023 Nyc Housing Authority Summer Graduate Intern 27114.00000 2.711400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.711400e+04 2.711400e+04 0.00 NULL
2023 Nyc Housing Authority Supervising Computer Service Technician 81586.00000 2.447580e+05 1637.13 5.457100e+02 1.530 32.00 3 1.530000e+00 4.59 2.463951e+05 2.447626e+05 1632.54 NULL
2023 Nyc Housing Authority Supervising Housing Groundskeeper 60332.12579 9.592808e+06 3039931.77 1.911907e+04 19697.540 66941.25 159 1.911907e+04 3039931.77 1.263274e+07 1.263274e+07 0.00 NULL
2023 Nyc Housing Authority Supervising Special Officer 60021.50000 1.200430e+05 7530.64 3.765320e+03 3765.320 185.00 2 3.765320e+03 7530.64 1.275736e+05 1.275736e+05 0.00 NULL
2023 Nyc Housing Authority Supervisor 80695.00000 2.420850e+05 23637.99 7.879330e+03 9291.220 411.25 3 7.879330e+03 23637.99 2.657230e+05 2.657230e+05 0.00 NULL
2023 Nyc Housing Authority Supervisor Bricklayer NA NA 888333.45 6.833334e+04 80513.560 10731.00 13 6.833334e+04 888333.45 NA NA NA NULL
2023 Nyc Housing Authority Supervisor Carpenter NA NA 1784824.31 7.760106e+04 91957.960 20952.50 23 7.760106e+04 1784824.31 NA NA NA NULL
2023 Nyc Housing Authority Supervisor Electrician NA NA 1532688.41 8.514936e+04 88852.920 15174.50 18 8.514936e+04 1532688.41 NA NA NA NULL
2023 Nyc Housing Authority Supervisor Elevator Mechanic NA NA 1132788.41 4.356879e+04 41036.450 10357.25 26 4.103645e+04 1066947.70 NA NA NA NULL
2023 Nyc Housing Authority Supervisor Glazier NA NA 232270.28 5.806757e+04 61508.700 2421.50 4 5.806757e+04 232270.28 NA NA NA NULL
2023 Nyc Housing Authority Supervisor Ii Social Work 81061.87500 6.484950e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.484950e+05 6.484950e+05 0.00 NULL
2023 Nyc Housing Authority Supervisor Of Electrical Installations & Maintenance 89961.66667 2.698850e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.698850e+05 2.698850e+05 0.00 NULL
2023 Nyc Housing Authority Supervisor Of Housing Caretaker 59211.34884 1.273044e+07 4081098.04 1.898185e+04 19511.800 92212.50 215 1.898185e+04 4081098.04 1.681154e+07 1.681154e+07 0.00 NULL
2023 Nyc Housing Authority Supervisor Of Housing Stock Workers 70220.10000 7.022010e+05 44514.76 4.451476e+03 0.000 785.25 10 0.000000e+00 0.00 7.467158e+05 7.022010e+05 44514.76 NULL
2023 Nyc Housing Authority Supervisor Of Mechanical Installations & Maintenance 90844.63333 2.725339e+06 128846.50 4.294883e+03 0.000 1769.00 30 0.000000e+00 0.00 2.854186e+06 2.725339e+06 128846.50 NULL
2023 Nyc Housing Authority Supervisor Of Office Machine Operations 46469.00000 4.646900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.646900e+04 4.646900e+04 0.00 NULL
2023 Nyc Housing Authority Supervisor Painter NA NA 5452801.38 5.564083e+04 58255.800 70583.25 98 5.564083e+04 5452801.38 NA NA NA NULL
2023 Nyc Housing Authority Supervisor Plasterer NA NA 2406810.28 7.521282e+04 78091.005 24889.00 32 7.521282e+04 2406810.28 NA NA NA NULL
2023 Nyc Housing Authority Supervisor Plumber NA NA 2449421.17 9.071930e+04 114177.060 16936.25 27 9.071930e+04 2449421.17 NA NA NA NULL
2023 Nyc Housing Authority Supervisor Roofer NA NA 246841.75 4.114029e+04 17624.915 3667.25 6 1.762492e+04 105749.49 NA NA NA NULL
2023 Nyc Housing Authority Telecommunication Manager 160000.00000 8.000000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.000000e+05 8.000000e+05 0.00 NULL
2023 Nyc Housing Authority Telecommunications Associate 89508.33333 5.370500e+05 4280.97 7.134950e+02 58.860 72.50 6 5.886000e+01 353.16 5.413310e+05 5.374032e+05 3927.81 NULL
2023 Nyc Housing Authority Welder NA NA 532563.83 6.657048e+04 64582.855 5311.25 8 6.458286e+04 516662.84 NA NA NA NULL
2023 Nyc Housing Authority Worker’s Compensation Benefits Examiner 63389.66667 3.803380e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.803380e+05 3.803380e+05 0.00 NULL
2023 Nyc Police Pension Fund Accountant 71309.50000 2.852380e+05 7305.92 1.826480e+03 1004.755 190.50 4 1.004755e+03 4019.02 2.925439e+05 2.892570e+05 3286.90 NULL
2023 Nyc Police Pension Fund Adm Manager-Non-Mgrl 93338.50000 3.733540e+05 22239.61 5.559903e+03 6199.375 386.50 4 5.559903e+03 22239.61 3.955936e+05 3.955936e+05 0.00 NULL
2023 Nyc Police Pension Fund Administrative Accountant 164086.25000 6.563450e+05 28988.18 7.247045e+03 0.000 318.75 4 0.000000e+00 0.00 6.853332e+05 6.563450e+05 28988.18 NULL
2023 Nyc Police Pension Fund Administrative Management Auditor 125619.50000 5.024780e+05 41323.43 1.033086e+04 5981.500 626.50 4 5.981500e+03 23926.00 5.438014e+05 5.264040e+05 17397.43 NULL
2023 Nyc Police Pension Fund Administrative Procurement Analyst 169512.00000 1.695120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.695120e+05 1.695120e+05 0.00 NULL
2023 Nyc Police Pension Fund Administrative Real Property Manager 103551.00000 2.071020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.071020e+05 2.071020e+05 0.00 NULL
2023 Nyc Police Pension Fund Administrative Retirement Benefits Specialist 144608.36364 1.590692e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.590692e+06 1.590692e+06 0.00 NULL
2023 Nyc Police Pension Fund Administrative Staff Analyst 155149.00000 3.102980e+05 422.03 2.110150e+02 211.015 6.50 2 2.110150e+02 422.03 3.107200e+05 3.107200e+05 0.00 NULL
2023 Nyc Police Pension Fund Agency Attorney Interne 62397.00000 6.239700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.239700e+04 6.239700e+04 0.00 NULL
2023 Nyc Police Pension Fund Agency Chief Contracting Officer 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2023 Nyc Police Pension Fund Assistant Retirement Benefits Examiner 49096.86667 7.364530e+05 9649.89 6.433260e+02 192.270 309.25 15 1.922700e+02 2884.05 7.461029e+05 7.393371e+05 6765.84 NULL
2023 Nyc Police Pension Fund Associate Retirement Benefits Examiner 76004.47826 1.748103e+06 41726.14 1.814180e+03 36.370 903.25 23 3.637000e+01 836.51 1.789829e+06 1.748940e+06 40889.63 NULL
2023 Nyc Police Pension Fund Associate Staff Analyst 88673.00000 1.773460e+05 1586.63 7.933150e+02 793.315 36.75 2 7.933150e+02 1586.63 1.789326e+05 1.789326e+05 0.00 NULL
2023 Nyc Police Pension Fund Certified It Administrator 146105.00000 2.922100e+05 55457.69 2.772885e+04 27728.845 584.50 2 2.772885e+04 55457.69 3.476677e+05 3.476677e+05 0.00 NULL
2023 Nyc Police Pension Fund Certified It Developer 129570.00000 1.295700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.295700e+05 1.295700e+05 0.00 NULL
2023 Nyc Police Pension Fund Clerical Aide 42951.50000 6.872240e+05 5356.45 3.347781e+02 106.115 190.50 16 1.061150e+02 1697.84 6.925804e+05 6.889218e+05 3658.61 NULL
2023 Nyc Police Pension Fund Clerical Associate 53348.69205 5.868356e+05 1422.97 1.293609e+02 0.000 37.50 11 0.000000e+00 0.00 5.882586e+05 5.868356e+05 1422.97 NULL
2023 Nyc Police Pension Fund College Aide 2006.56250 4.013125e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.013125e+03 4.013125e+03 0.00 NULL
2023 Nyc Police Pension Fund Community Assistant 50610.60000 2.530530e+05 3415.40 6.830800e+02 172.730 98.00 5 1.727300e+02 863.65 2.564684e+05 2.539166e+05 2551.75 NULL
2023 Nyc Police Pension Fund Community Associate 57942.56522 1.332679e+06 50500.44 2.195671e+03 204.610 1070.25 23 2.046100e+02 4706.03 1.383179e+06 1.337385e+06 45794.41 NULL
2023 Nyc Police Pension Fund Community Coordinator 103479.33333 6.208760e+05 28383.24 4.730540e+03 2823.380 410.75 6 2.823380e+03 16940.28 6.492592e+05 6.378163e+05 11442.96 NULL
2023 Nyc Police Pension Fund Computer Aide-Non-Spvr 53280.00000 5.328000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.328000e+04 5.328000e+04 0.00 NULL
2023 Nyc Police Pension Fund Computer Associate 84822.66667 2.544680e+05 7750.47 2.583490e+03 0.000 161.00 3 0.000000e+00 0.00 2.622185e+05 2.544680e+05 7750.47 NULL
2023 Nyc Police Pension Fund Computer Programmer Analyst 60686.00000 6.068600e+04 3.41 3.410000e+00 3.410 0.00 1 3.410000e+00 3.41 6.068941e+04 6.068941e+04 0.00 NULL
2023 Nyc Police Pension Fund Computer Specialist 136782.66667 4.103480e+05 8726.61 2.908870e+03 0.000 75.00 3 0.000000e+00 0.00 4.190746e+05 4.103480e+05 8726.61 NULL
2023 Nyc Police Pension Fund Computer Systems Manager 163718.71429 1.146031e+06 29462.21 4.208887e+03 78.430 307.50 7 7.843000e+01 549.01 1.175493e+06 1.146580e+06 28913.20 NULL
2023 Nyc Police Pension Fund Customer Information Representative Ma L 1549 62185.00000 6.218500e+05 29988.86 2.998886e+03 6.800 541.75 10 6.800000e+00 68.00 6.518389e+05 6.219180e+05 29920.86 NULL
2023 Nyc Police Pension Fund Cyber Security Analyst 65199.00000 6.519900e+04 42.28 4.228000e+01 42.280 1.25 1 4.228000e+01 42.28 6.524128e+04 6.524128e+04 0.00 NULL
2023 Nyc Police Pension Fund Deputy Director 227924.00000 4.558480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.558480e+05 4.558480e+05 0.00 NULL
2023 Nyc Police Pension Fund Executive Agency Counsel 176672.50000 3.533450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.533450e+05 3.533450e+05 0.00 NULL
2023 Nyc Police Pension Fund Executive Director 240511.00000 2.405110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.405110e+05 2.405110e+05 0.00 NULL
2023 Nyc Police Pension Fund Office Machine Aide 44142.00000 4.414200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.414200e+04 4.414200e+04 0.00 NULL
2023 Nyc Police Pension Fund Paralegal Aide 72841.50000 1.456830e+05 2.38 1.190000e+00 1.190 0.00 2 1.190000e+00 2.38 1.456854e+05 1.456854e+05 0.00 NULL
2023 Nyc Police Pension Fund Principal Administrative Associate - Non Supvr 67521.57143 4.726510e+05 16068.40 2.295486e+03 2087.880 382.00 7 2.087880e+03 14615.16 4.887194e+05 4.872662e+05 1453.24 NULL
2023 Nyc Police Pension Fund Procurement Analyst 77792.33333 2.333770e+05 7632.74 2.544247e+03 92.740 155.75 3 9.274000e+01 278.22 2.410097e+05 2.336552e+05 7354.52 NULL
2023 Nyc Police Pension Fund Staff Analyst 69250.00000 1.385000e+05 930.90 4.654500e+02 465.450 18.50 2 4.654500e+02 930.90 1.394309e+05 1.394309e+05 0.00 NULL
2023 Nyc Police Pension Fund Supervisor Of Office Machine Operations 68701.00000 6.870100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.870100e+04 6.870100e+04 0.00 NULL
2023 Off Of Payroll Administration Accountant 73194.00000 7.319400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.319400e+04 7.319400e+04 0.00 NULL
2023 Off Of Payroll Administration Adm Manager-Non-Mgrl 88626.33333 1.861153e+06 4799.20 2.285333e+02 0.000 78.00 21 0.000000e+00 0.00 1.865952e+06 1.861153e+06 4799.20 NULL
2023 Off Of Payroll Administration Admin Contract Specialist 148592.00000 1.485920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.485920e+05 1.485920e+05 0.00 NULL
2023 Off Of Payroll Administration Administrative Accountant 102224.75000 8.177980e+05 1493.71 1.867138e+02 0.000 24.00 8 0.000000e+00 0.00 8.192917e+05 8.177980e+05 1493.71 NULL
2023 Off Of Payroll Administration Administrative Management Auditor 96223.00000 9.622300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.622300e+04 9.622300e+04 0.00 NULL
2023 Off Of Payroll Administration Administrative Public Information Specialist 138732.00000 1.387320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.387320e+05 1.387320e+05 0.00 NULL
2023 Off Of Payroll Administration Administrative Staff Analyst 115704.68182 2.545503e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 2.545503e+06 2.545503e+06 0.00 NULL
2023 Off Of Payroll Administration Associate Staff Analyst 81342.66667 4.880560e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.880560e+05 4.880560e+05 0.00 NULL
2023 Off Of Payroll Administration Certified It Administrator 112736.00000 1.127360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.127360e+05 1.127360e+05 0.00 NULL
2023 Off Of Payroll Administration Certified It Developer 134992.00000 1.349920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.349920e+05 1.349920e+05 0.00 NULL
2023 Off Of Payroll Administration Clerical Associate 54416.50000 5.441650e+05 214.20 2.142000e+01 0.000 7.25 10 0.000000e+00 0.00 5.443792e+05 5.441650e+05 214.20 NULL
2023 Off Of Payroll Administration College Aide - Assignment Levels Ii And Iii 20245.93750 2.024594e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.024594e+04 2.024594e+04 0.00 NULL
2023 Off Of Payroll Administration Community Associate 54083.75000 2.163350e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.163350e+05 2.163350e+05 0.00 NULL
2023 Off Of Payroll Administration Community Coordinator 83830.00000 2.514900e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.514900e+05 2.514900e+05 0.00 NULL
2023 Off Of Payroll Administration Computer Associate 86730.00000 5.203800e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.203800e+05 5.203800e+05 0.00 NULL
2023 Off Of Payroll Administration Computer Programmer Analyst 73944.00000 7.394400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.394400e+04 7.394400e+04 0.00 NULL
2023 Off Of Payroll Administration Computer Specialist 115254.16667 1.383050e+06 85.06 7.088333e+00 0.000 0.00 12 0.000000e+00 0.00 1.383135e+06 1.383050e+06 85.06 NULL
2023 Off Of Payroll Administration Computer Systems Manager 136804.10000 2.736082e+06 10047.98 5.023990e+02 0.000 110.50 20 0.000000e+00 0.00 2.746130e+06 2.736082e+06 10047.98 NULL
2023 Off Of Payroll Administration Custodian 61017.00000 6.101700e+04 4231.48 4.231480e+03 4231.480 95.75 1 4.231480e+03 4231.48 6.524848e+04 6.524848e+04 0.00 NULL
2023 Off Of Payroll Administration Customer Information Representative Ma L 1549 82560.50000 4.953630e+05 1.42 2.366667e-01 0.000 0.00 6 0.000000e+00 0.00 4.953644e+05 4.953630e+05 1.42 NULL
2023 Off Of Payroll Administration Executive Agency Counsel 180851.00000 1.808510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.808510e+05 1.808510e+05 0.00 NULL
2023 Off Of Payroll Administration Executive Director 222014.00000 4.440280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.440280e+05 4.440280e+05 0.00 NULL
2023 Off Of Payroll Administration Management Auditor 95110.00000 2.853300e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.853300e+05 2.853300e+05 0.00 NULL
2023 Off Of Payroll Administration Principal Administrative Associate - Non Supvr 64936.04545 1.428593e+06 8046.24 3.657382e+02 0.000 183.75 22 0.000000e+00 0.00 1.436639e+06 1.428593e+06 8046.24 NULL
2023 Off Of Payroll Administration Public Records Officer 54170.33333 1.625110e+05 115.21 3.840333e+01 0.000 4.50 3 0.000000e+00 0.00 1.626262e+05 1.625110e+05 115.21 NULL
2023 Off Of Payroll Administration Staff Analyst 76130.00000 3.045200e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.045200e+05 3.045200e+05 0.00 NULL
2023 Off Of Payroll Administration Supervisor Of Stock Workers 52750.00000 5.275000e+04 93.84 9.384000e+01 93.840 3.25 1 9.384000e+01 93.84 5.284384e+04 5.284384e+04 0.00 NULL
2023 Off Of Payroll Administration Telecommunications Associate 69050.50000 1.381010e+05 73.68 3.684000e+01 36.840 2.00 2 3.684000e+01 73.68 1.381747e+05 1.381747e+05 0.00 NULL
2023 Office Of Collective Bargainin Administrative Staff Analyst 160575.00000 1.605750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.605750e+05 1.605750e+05 0.00 NULL
2023 Office Of Collective Bargainin Computer Systems Manager 129149.00000 1.291490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.291490e+05 1.291490e+05 0.00 NULL
2023 Office Of Collective Bargainin Deputy Director 205465.50000 4.109310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.109310e+05 4.109310e+05 0.00 NULL
2023 Office Of Collective Bargainin Director Of Information And Research 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2023 Office Of Collective Bargainin Director Of The Office Of Collective Bargaining 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2023 Office Of Collective Bargainin Executive Assistant To The Director 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2023 Office Of Collective Bargainin Labor Relations Trial Examiner 141937.50000 8.516250e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.516250e+05 8.516250e+05 0.00 NULL
2023 Office Of Collective Bargainin Secretary To The Deputy Chair 75000.00000 7.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.500000e+04 7.500000e+04 0.00 NULL
2023 Office Of Collective Bargainin Secy To The Director Of Collective Bargaining 82232.00000 1.644640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.644640e+05 1.644640e+05 0.00 NULL
2023 Office Of Collective Bargainin Staff Analyst 79251.00000 7.925100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.925100e+04 7.925100e+04 0.00 NULL
2023 Office Of Emergency Management Administrative Public Information Specialist 124221.00000 1.242210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.242210e+05 1.242210e+05 0.00 NULL
2023 Office Of Emergency Management Agency Attorney 86635.33333 2.599060e+05 18843.33 6.281110e+03 2068.040 271.50 3 2.068040e+03 6204.12 2.787493e+05 2.661101e+05 12639.21 NULL
2023 Office Of Emergency Management Certified It Administrator 160469.00000 1.604690e+05 4495.05 4.495050e+03 4495.050 41.00 1 4.495050e+03 4495.05 1.649640e+05 1.649640e+05 0.00 NULL
2023 Office Of Emergency Management College Aide 3836.68333 5.755025e+04 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 5.755025e+04 5.755025e+04 0.00 NULL
2023 Office Of Emergency Management Commissioner Of Emergency Management 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2023 Office Of Emergency Management Community Associate 56295.00000 5.629500e+04 12015.64 1.201564e+04 12015.640 320.75 1 1.201564e+04 12015.64 6.831064e+04 6.831064e+04 0.00 NULL
2023 Office Of Emergency Management Community Coordinator 83047.00000 8.304700e+04 22650.87 2.265087e+04 22650.870 395.00 1 2.265087e+04 22650.87 1.056979e+05 1.056979e+05 0.00 NULL
2023 Office Of Emergency Management Emergency Preparedness Manager 121315.82955 1.067579e+07 19357.71 2.199740e+02 0.000 355.50 88 0.000000e+00 0.00 1.069515e+07 1.067579e+07 19357.71 NULL
2023 Office Of Emergency Management Emergency Preparedness Specialist 70848.87335 1.062733e+07 949476.39 6.329843e+03 3406.775 18678.00 150 3.406775e+03 511016.25 1.157681e+07 1.113835e+07 438460.14 NULL
2023 Office Of Emergency Management Executive Agency Counsel 160541.00000 4.816230e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.816230e+05 4.816230e+05 0.00 NULL
2023 Office Of Emergency Management First Deputy Commissioner 230000.00000 2.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.300000e+05 2.300000e+05 0.00 NULL
2023 Office Of Labor Relations Accountant 85153.50000 2.554605e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.554605e+05 2.554605e+05 0.00 NULL
2023 Office Of Labor Relations Adm Manager-Non-Mgrl 90971.59200 4.548580e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.548580e+05 4.548580e+05 0.00 NULL
2023 Office Of Labor Relations Admin Community Relations Specialist 68203.00000 6.820300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.820300e+04 6.820300e+04 0.00 NULL
2023 Office Of Labor Relations Administrative Community Relations Specialist 158000.00000 1.580000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.580000e+05 1.580000e+05 0.00 NULL
2023 Office Of Labor Relations Administrative Labor Relations Analyst 133031.00000 5.321240e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.321240e+05 5.321240e+05 0.00 NULL
2023 Office Of Labor Relations Administrative Manager 106538.25000 4.261530e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.261530e+05 4.261530e+05 0.00 NULL
2023 Office Of Labor Relations Administrative Staff Analyst 132369.46667 3.971084e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.971084e+05 3.971084e+05 0.00 NULL
2023 Office Of Labor Relations Agency Attorney 94986.00000 1.899720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.899720e+05 1.899720e+05 0.00 NULL
2023 Office Of Labor Relations Assistant Commissioner Of Labor Relations 173793.71429 1.216556e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.216556e+06 1.216556e+06 0.00 NULL
2023 Office Of Labor Relations Assistant Retirement Benefits Examiner 46085.71429 3.226000e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.226000e+05 3.226000e+05 0.00 NULL
2023 Office Of Labor Relations Associate Counsel 179567.30000 1.795673e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.795673e+05 1.795673e+05 0.00 NULL
2023 Office Of Labor Relations Associate Labor Relations Analyst 101563.40000 2.031268e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.031268e+05 2.031268e+05 0.00 NULL
2023 Office Of Labor Relations Associate Staff Analyst 81203.00000 3.248120e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.248120e+05 3.248120e+05 0.00 NULL
2023 Office Of Labor Relations Bookkeeper 59075.50000 5.907550e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.907550e+04 5.907550e+04 0.00 NULL
2023 Office Of Labor Relations Certified It Administrator 124833.50000 2.496670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.496670e+05 2.496670e+05 0.00 NULL
2023 Office Of Labor Relations City Research Scientist 89884.12500 2.157219e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 2.157219e+06 2.157219e+06 0.00 NULL
2023 Office Of Labor Relations Clerical Associate 49752.09945 2.985126e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.985126e+05 2.985126e+05 0.00 NULL
2023 Office Of Labor Relations Commissioner Of Labor Relations 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2023 Office Of Labor Relations Community Assistant 37567.22497 7.137773e+05 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 7.137773e+05 7.137773e+05 0.00 NULL
2023 Office Of Labor Relations Community Associate 46774.42500 1.403233e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 1.403233e+06 1.403233e+06 0.00 NULL
2023 Office Of Labor Relations Community Coordinator 69266.08842 2.632111e+06 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 2.632111e+06 2.632111e+06 0.00 NULL
2023 Office Of Labor Relations Computer Specialist 113513.50000 2.270270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.270270e+05 2.270270e+05 0.00 NULL
2023 Office Of Labor Relations Computer Systems Manager 131421.00000 2.628420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.628420e+05 2.628420e+05 0.00 NULL
2023 Office Of Labor Relations Counsel 210000.00000 2.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.100000e+05 2.100000e+05 0.00 NULL
2023 Office Of Labor Relations Customer Information Representative Ma L 1549 64846.06500 1.296921e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.296921e+05 1.296921e+05 0.00 NULL
2023 Office Of Labor Relations Deputy Assistant Counsel 90780.71429 6.354650e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.354650e+05 6.354650e+05 0.00 NULL
2023 Office Of Labor Relations Deputy Commissioner Of Labor Relations 231863.00000 6.955890e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.955890e+05 6.955890e+05 0.00 NULL
2023 Office Of Labor Relations Director 142826.50000 2.856530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.856530e+05 2.856530e+05 0.00 NULL
2023 Office Of Labor Relations Employee Assistance Program Specialist 64611.75000 2.584470e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.584470e+05 2.584470e+05 0.00 NULL
2023 Office Of Labor Relations Employee Health Benefits Program Director 218802.00000 2.188020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.188020e+05 2.188020e+05 0.00 NULL
2023 Office Of Labor Relations Executive Agency Counsel 160641.75000 6.425670e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.425670e+05 6.425670e+05 0.00 NULL
2023 Office Of Labor Relations Health Services Manager 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2023 Office Of Labor Relations Insurance Advisor 59462.12500 9.513940e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 9.513940e+05 9.513940e+05 0.00 NULL
2023 Office Of Labor Relations Labor Relations Analyst 58127.00000 5.812700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.812700e+04 5.812700e+04 0.00 NULL
2023 Office Of Labor Relations Management Auditor 72499.00000 7.249900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.249900e+04 7.249900e+04 0.00 NULL
2023 Office Of Labor Relations Paralegal Aide 55191.00000 5.519100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.519100e+04 5.519100e+04 0.00 NULL
2023 Office Of Labor Relations Principal Administrative Associate - Non Supvr 63264.30360 6.326430e+05 564.66 5.646600e+01 0.000 17.75 10 0.000000e+00 0.00 6.332077e+05 6.326430e+05 564.66 NULL
2023 Office Of Labor Relations Secretary 46681.50000 9.336300e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.336300e+04 9.336300e+04 0.00 NULL
2023 Office Of Labor Relations Secretary To The Commissioner Of Labor Relations 91311.00000 9.131100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.131100e+04 9.131100e+04 0.00 NULL
2023 Office Of Labor Relations Staff Analyst 60524.66667 1.815740e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.815740e+05 1.815740e+05 0.00 NULL
2023 Office Of Labor Relations Tests And Measurement Specialist 90776.00000 9.077600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.077600e+04 9.077600e+04 0.00 NULL
2023 Office Of Management & Budget Administrative Manager 182304.00000 3.646080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.646080e+05 3.646080e+05 0.00 NULL
2023 Office Of Management & Budget Administrative Staff Analyst 178324.50000 3.566490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.566490e+05 3.566490e+05 0.00 NULL
2023 Office Of Management & Budget Budget Analyst 96895.28619 4.699421e+07 143441.85 2.957564e+02 0.000 3280.50 485 0.000000e+00 0.00 4.713766e+07 4.699421e+07 143441.85 NULL
2023 Office Of Management & Budget College Aide 11254.89429 7.878426e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.878426e+04 7.878426e+04 0.00 NULL
2023 Office Of Management & Budget Community Associate 54690.00000 5.469000e+04 5518.25 5.518250e+03 5518.250 162.25 1 5.518250e+03 5518.25 6.020825e+04 6.020825e+04 0.00 NULL
2023 Office Of Management & Budget Computer Specialist 89859.00000 8.985900e+04 2.20 2.200000e+00 2.200 0.00 1 2.200000e+00 2.20 8.986120e+04 8.986120e+04 0.00 NULL
2023 Office Of Management & Budget Computer Systems Manager 176595.50000 7.063820e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.063820e+05 7.063820e+05 0.00 NULL
2023 Office Of Management & Budget Deputy General Counsel 196950.00000 1.969500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.969500e+05 1.969500e+05 0.00 NULL
2023 Office Of Management & Budget Director Of Financing Policy Coordination 222924.00000 2.229240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.229240e+05 2.229240e+05 0.00 NULL
2023 Office Of Management & Budget Director Of Management & Budget 251982.00000 2.519820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.519820e+05 2.519820e+05 0.00 NULL
2023 Office Of Management & Budget Executive Agency Counsel 222924.00000 2.229240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.229240e+05 2.229240e+05 0.00 NULL
2023 Office Of Management & Budget Statistical Secretary 74550.00000 1.192800e+06 77.24 4.827500e+00 0.000 1.50 16 0.000000e+00 0.00 1.192877e+06 1.192800e+06 77.24 NULL
2023 Office Of Management & Budget Summer College Intern 1040.58450 2.081169e+04 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 2.081169e+04 2.081169e+04 0.00 NULL
2023 Office Of Management & Budget Summer Graduate Intern 2190.50000 1.314300e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.314300e+04 1.314300e+04 0.00 NULL
2023 Office Of Management & Budget Supervisor Of Office Machine Operations 56375.00000 5.637500e+04 8641.12 8.641120e+03 8641.120 226.25 1 8.641120e+03 8641.12 6.501612e+04 6.501612e+04 0.00 NULL
2023 Office Of The Actuary Actuarial Specialist Level I 79112.42857 2.215148e+06 14402.39 5.143711e+02 0.000 352.00 28 0.000000e+00 0.00 2.229550e+06 2.215148e+06 14402.39 NULL
2023 Office Of The Actuary Actuarial Specialist Level Ii, Oj 117359.00000 1.173590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.173590e+05 1.173590e+05 0.00 NULL
2023 Office Of The Actuary Administrative Actuary 177369.66667 2.128436e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 2.128436e+06 2.128436e+06 0.00 NULL
2023 Office Of The Actuary Administrative Public Information Specialist 116463.00000 1.164630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.164630e+05 1.164630e+05 0.00 NULL
2023 Office Of The Actuary Administrative Staff Analyst 120643.50000 2.412870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.412870e+05 2.412870e+05 0.00 NULL
2023 Office Of The Actuary Certified It Administrator 113237.00000 1.132370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.132370e+05 1.132370e+05 0.00 NULL
2023 Office Of The Actuary Chief Actuary 318442.50000 6.368850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.368850e+05 6.368850e+05 0.00 NULL
2023 Office Of The Actuary Community Associate 64497.00000 6.449700e+04 14936.65 1.493665e+04 14936.650 357.75 1 1.493665e+04 14936.65 7.943365e+04 7.943365e+04 0.00 NULL
2023 Office Of The Actuary Computer Systems Manager 198021.00000 1.980210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.980210e+05 1.980210e+05 0.00 NULL
2023 Office Of The Actuary Executive Agency Counsel 177877.00000 3.557540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.557540e+05 3.557540e+05 0.00 NULL
2023 Office Of The Actuary Principal Administrative Associate - Non Supvr 74789.00000 7.478900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.478900e+04 7.478900e+04 0.00 NULL
2023 Office Of The Actuary Procurement Analyst 68627.00000 6.862700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.862700e+04 6.862700e+04 0.00 NULL
2023 Office Of The Actuary Secretary To The Chief Actuary 64640.00000 6.464000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.464000e+04 6.464000e+04 0.00 NULL
2023 Office Of The Comptroller Accountant 71785.83929 4.020007e+06 54780.67 9.782263e+02 0.000 956.25 56 0.000000e+00 0.00 4.074788e+06 4.020007e+06 54780.67 NULL
2023 Office Of The Comptroller Adm Manager-Non-Mgrl 82463.10526 1.566799e+06 6472.57 3.406616e+02 0.000 143.00 19 0.000000e+00 0.00 1.573272e+06 1.566799e+06 6472.57 NULL
2023 Office Of The Comptroller Admin Community Relations Specialist 76407.50000 3.056300e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.056300e+05 3.056300e+05 0.00 NULL
2023 Office Of The Comptroller Administrative Accountant 124382.38095 2.612030e+06 24146.85 1.149850e+03 0.000 358.25 21 0.000000e+00 0.00 2.636177e+06 2.612030e+06 24146.85 NULL
2023 Office Of The Comptroller Administrative Architect 99904.00000 9.990400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.990400e+04 9.990400e+04 0.00 NULL
2023 Office Of The Comptroller Administrative Assistant To The Comptroller 126666.66667 3.800000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.800000e+05 3.800000e+05 0.00 NULL
2023 Office Of The Comptroller Administrative Business Promotion Coordinator 115712.87500 9.257030e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.257030e+05 9.257030e+05 0.00 NULL
2023 Office Of The Comptroller Administrative City Planner 135408.62500 1.083269e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.083269e+06 1.083269e+06 0.00 NULL
2023 Office Of The Comptroller Administrative Claim Examiner 93855.56667 2.815667e+06 39680.88 1.322696e+03 0.000 803.50 30 0.000000e+00 0.00 2.855348e+06 2.815667e+06 39680.88 NULL
2023 Office Of The Comptroller Administrative Construction Project Manager 115718.75000 4.628750e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.628750e+05 4.628750e+05 0.00 NULL
2023 Office Of The Comptroller Administrative Engineer 122531.41176 2.083034e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.083034e+06 2.083034e+06 0.00 NULL
2023 Office Of The Comptroller Administrative Graphic Artist 102712.00000 1.027120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.027120e+05 1.027120e+05 0.00 NULL
2023 Office Of The Comptroller Administrative Labor Relations Analyst 158766.25000 1.270130e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.270130e+06 1.270130e+06 0.00 NULL
2023 Office Of The Comptroller Administrative Management Auditor 127341.78571 1.782785e+06 8.87 6.335714e-01 0.000 0.00 14 0.000000e+00 0.00 1.782794e+06 1.782785e+06 8.87 NULL
2023 Office Of The Comptroller Administrative Manager 135574.00000 1.355740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.355740e+05 1.355740e+05 0.00 NULL
2023 Office Of The Comptroller Administrative Procurement Analyst 150431.00000 6.017240e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.017240e+05 6.017240e+05 0.00 NULL
2023 Office Of The Comptroller Administrative Procurement Analyst-Non-Mgrl 88489.20000 4.424460e+05 15839.27 3.167854e+03 0.000 275.25 5 0.000000e+00 0.00 4.582853e+05 4.424460e+05 15839.27 NULL
2023 Office Of The Comptroller Administrative Project Manager 114238.28571 7.996680e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.996680e+05 7.996680e+05 0.00 NULL
2023 Office Of The Comptroller Administrative Public Information Specialist 101227.33333 3.036820e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.036820e+05 3.036820e+05 0.00 NULL
2023 Office Of The Comptroller Administrative Public Information Specialist Nm Former M1/M2 86402.50000 3.456100e+05 412.77 1.031925e+02 0.000 10.00 4 0.000000e+00 0.00 3.460228e+05 3.456100e+05 412.77 NULL
2023 Office Of The Comptroller Administrative Public Records Officer 80572.00000 1.611440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.611440e+05 1.611440e+05 0.00 NULL
2023 Office Of The Comptroller Administrative Staff Analyst 128086.05263 2.433635e+06 7699.52 4.052379e+02 0.000 87.50 19 0.000000e+00 0.00 2.441335e+06 2.433635e+06 7699.52 NULL
2023 Office Of The Comptroller Administrative Supervisor Of Building Maintenance 88000.00000 1.760000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.760000e+05 1.760000e+05 0.00 NULL
2023 Office Of The Comptroller Agency Attorney 89690.50000 8.969050e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 8.969050e+05 8.969050e+05 0.00 NULL
2023 Office Of The Comptroller Agency Chief Contracting Officer 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2023 Office Of The Comptroller Architect 111655.00000 1.116550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.116550e+05 1.116550e+05 0.00 NULL
2023 Office Of The Comptroller Assistant Budget Analyst 53636.76651 1.126372e+06 10792.19 5.139138e+02 0.000 271.00 21 0.000000e+00 0.00 1.137164e+06 1.126372e+06 10792.19 NULL
2023 Office Of The Comptroller Assistant Comptroller 159000.00000 1.590000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.590000e+05 1.590000e+05 0.00 NULL
2023 Office Of The Comptroller Assistant Comptroller Of It 210000.00000 2.100000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.100000e+05 2.100000e+05 0.00 NULL
2023 Office Of The Comptroller Assistant Mechanical Engineer 65564.00000 6.556400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.556400e+04 6.556400e+04 0.00 NULL
2023 Office Of The Comptroller Assistant To Deputy Comptroller 125000.00000 2.500000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.500000e+05 2.500000e+05 0.00 NULL
2023 Office Of The Comptroller Assistant To The Comptroller 200000.00000 4.000000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.000000e+05 4.000000e+05 0.00 NULL
2023 Office Of The Comptroller Associate Fraud Investigator 84789.00000 1.695780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.695780e+05 1.695780e+05 0.00 NULL
2023 Office Of The Comptroller Associate Investigator 74780.50000 1.495610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.495610e+05 1.495610e+05 0.00 NULL
2023 Office Of The Comptroller Associate Project Manager 115914.50000 4.636580e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.636580e+05 4.636580e+05 0.00 NULL
2023 Office Of The Comptroller Associate Staff Analyst 88689.00000 5.321340e+05 9898.25 1.649708e+03 0.000 172.00 6 0.000000e+00 0.00 5.420322e+05 5.321340e+05 9898.25 NULL
2023 Office Of The Comptroller Bookkeeper 62911.16667 3.774670e+05 5937.16 9.895267e+02 0.000 137.25 6 0.000000e+00 0.00 3.834042e+05 3.774670e+05 5937.16 NULL
2023 Office Of The Comptroller Budget Analyst 96091.60000 9.609160e+05 33887.62 3.388762e+03 0.000 481.00 10 0.000000e+00 0.00 9.948036e+05 9.609160e+05 33887.62 NULL
2023 Office Of The Comptroller Business Promotion Coordinator 77844.20000 7.784420e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.784420e+05 7.784420e+05 0.00 NULL
2023 Office Of The Comptroller Certified It Administrator 115854.00000 1.158540e+05 4889.34 4.889340e+03 4889.340 81.75 1 4.889340e+03 4889.34 1.207433e+05 1.207433e+05 0.00 NULL
2023 Office Of The Comptroller Certified It Developer 137479.00000 1.374790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.374790e+05 1.374790e+05 0.00 NULL
2023 Office Of The Comptroller City Custodial Assistant 24021.56931 3.122804e+05 38963.44 2.997188e+03 1383.600 1246.00 13 1.383600e+03 17986.80 3.512438e+05 3.302672e+05 20976.64 NULL
2023 Office Of The Comptroller Civil Engineer 122081.00000 1.220810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.220810e+05 1.220810e+05 0.00 NULL
2023 Office Of The Comptroller Claim Specialist 68048.51351 2.517795e+06 2279.17 6.159919e+01 0.000 48.75 37 0.000000e+00 0.00 2.520074e+06 2.517795e+06 2279.17 NULL
2023 Office Of The Comptroller Clerical Associate 49862.31400 1.246558e+06 23809.49 9.523796e+02 0.000 570.75 25 0.000000e+00 0.00 1.270367e+06 1.246558e+06 23809.49 NULL
2023 Office Of The Comptroller College Aide 1173.00000 1.173000e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.173000e+03 1.173000e+03 0.00 NULL
2023 Office Of The Comptroller Communications Officer 102500.00000 2.050000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.050000e+05 2.050000e+05 0.00 NULL
2023 Office Of The Comptroller Community Assistant 43214.50000 8.642900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.642900e+04 8.642900e+04 0.00 NULL
2023 Office Of The Comptroller Community Associate 56463.83333 6.775660e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 6.775660e+05 6.775660e+05 0.00 NULL
2023 Office Of The Comptroller Community Coordinator 73854.21739 1.698647e+06 8311.20 3.613565e+02 0.000 153.25 23 0.000000e+00 0.00 1.706958e+06 1.698647e+06 8311.20 NULL
2023 Office Of The Comptroller Community Service Aide 36895.00000 3.689500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.689500e+04 3.689500e+04 0.00 NULL
2023 Office Of The Comptroller Comptroller 209050.00000 2.090500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.090500e+05 2.090500e+05 0.00 NULL
2023 Office Of The Comptroller Computer Aide-Non-Spvr 56047.00000 5.604700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.604700e+04 5.604700e+04 0.00 NULL
2023 Office Of The Comptroller Computer Associate 76369.11765 1.298275e+06 18193.12 1.070184e+03 0.000 281.00 17 0.000000e+00 0.00 1.316468e+06 1.298275e+06 18193.12 NULL
2023 Office Of The Comptroller Computer Operations Manager 134961.00000 9.447270e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.447270e+05 9.447270e+05 0.00 NULL
2023 Office Of The Comptroller Computer Programmer Analyst 75024.00000 7.502400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.502400e+04 7.502400e+04 0.00 NULL
2023 Office Of The Comptroller Computer Service Technician 57426.00000 3.445560e+05 2475.06 4.125100e+02 0.000 60.25 6 0.000000e+00 0.00 3.470311e+05 3.445560e+05 2475.06 NULL
2023 Office Of The Comptroller Computer Specialist 104762.50000 8.381000e+05 15.17 1.896250e+00 0.000 0.00 8 0.000000e+00 0.00 8.381152e+05 8.381000e+05 15.17 NULL
2023 Office Of The Comptroller Computer Systems Manager 124322.05263 2.362119e+06 4928.26 2.593821e+02 0.000 52.75 19 0.000000e+00 0.00 2.367047e+06 2.362119e+06 4928.26 NULL
2023 Office Of The Comptroller Confidential Assistant To The Comptroller 98571.42857 6.900000e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.900000e+05 6.900000e+05 0.00 NULL
2023 Office Of The Comptroller Confidential Strategy Planner 91662.66667 2.749880e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.749880e+05 2.749880e+05 0.00 NULL
2023 Office Of The Comptroller Construction Project Manager 115965.00000 1.159650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.159650e+05 1.159650e+05 0.00 NULL
2023 Office Of The Comptroller Contract Specialist 64110.20000 3.205510e+05 8009.58 1.601916e+03 13.940 214.00 5 1.394000e+01 69.70 3.285606e+05 3.206207e+05 7939.88 NULL
2023 Office Of The Comptroller Cyber Security Analyst 72515.33333 2.175460e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.175460e+05 2.175460e+05 0.00 NULL
2023 Office Of The Comptroller Deputy Comptroller 220000.00000 2.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.200000e+05 2.200000e+05 0.00 NULL
2023 Office Of The Comptroller Director Of Investments 246337.11111 2.217034e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 2.217034e+06 2.217034e+06 0.00 NULL
2023 Office Of The Comptroller Director Of Audits 220000.00000 2.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.200000e+05 2.200000e+05 0.00 NULL
2023 Office Of The Comptroller Director Of Budget Studies & Economic Research 154712.00000 9.282720e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.282720e+05 9.282720e+05 0.00 NULL
2023 Office Of The Comptroller Economist 73510.87500 5.880870e+05 362.15 4.526875e+01 0.000 5.75 8 0.000000e+00 0.00 5.884492e+05 5.880870e+05 362.15 NULL
2023 Office Of The Comptroller Engineering Technician 69781.00000 6.978100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.978100e+04 6.978100e+04 0.00 NULL
2023 Office Of The Comptroller Executive Agency Counsel 145125.60606 4.789145e+06 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 4.789145e+06 4.789145e+06 0.00 NULL
2023 Office Of The Comptroller Executive Assistant To The Comptroller 168765.50000 3.375310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.375310e+05 3.375310e+05 0.00 NULL
2023 Office Of The Comptroller Executive Program Specialist 96682.00000 9.668200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.668200e+04 9.668200e+04 0.00 NULL
2023 Office Of The Comptroller First Deputy Comptroller 233908.00000 4.678160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.678160e+05 4.678160e+05 0.00 NULL
2023 Office Of The Comptroller Fraud Investigator 83335.00000 1.666700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.666700e+05 1.666700e+05 0.00 NULL
2023 Office Of The Comptroller Investigator 69781.00000 6.978100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.978100e+04 6.978100e+04 0.00 NULL
2023 Office Of The Comptroller Investment Analyst 82735.10714 2.316583e+06 0.95 3.392860e-02 0.000 0.00 28 0.000000e+00 0.00 2.316584e+06 2.316583e+06 0.95 NULL
2023 Office Of The Comptroller Investment Manager 167050.47059 5.679716e+06 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 5.679716e+06 5.679716e+06 0.00 NULL
2023 Office Of The Comptroller It Security Specialist 118450.00000 1.184500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.184500e+05 1.184500e+05 0.00 NULL
2023 Office Of The Comptroller Legal Secretarial Assistant 67080.64286 9.391290e+05 12346.85 8.819179e+02 0.000 297.50 14 0.000000e+00 0.00 9.514758e+05 9.391290e+05 12346.85 NULL
2023 Office Of The Comptroller Management Auditor 83386.64708 7.588185e+06 53176.97 5.843623e+02 0.000 809.00 91 0.000000e+00 0.00 7.641362e+06 7.588185e+06 53176.97 NULL
2023 Office Of The Comptroller Management Auditor Trainee 54381.85000 1.087637e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.087637e+06 1.087637e+06 0.00 NULL
2023 Office Of The Comptroller Mechanical Engineer 95731.00000 9.573100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.573100e+04 9.573100e+04 0.00 NULL
2023 Office Of The Comptroller New York City Public Service Fellow 42127.00000 4.212700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.212700e+04 4.212700e+04 0.00 NULL
2023 Office Of The Comptroller Office Machine Aide 36243.39333 1.087302e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.087302e+05 1.087302e+05 0.00 NULL
2023 Office Of The Comptroller Pension Investment Advisor 350000.00000 3.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.500000e+05 3.500000e+05 0.00 NULL
2023 Office Of The Comptroller Principal Administrative Associate - Non Supvr 66080.76413 1.519858e+06 56811.33 2.470058e+03 0.000 997.00 23 0.000000e+00 0.00 1.576669e+06 1.519858e+06 56811.33 NULL
2023 Office Of The Comptroller Principal Investment Officer 214924.00000 4.298480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.298480e+05 4.298480e+05 0.00 NULL
2023 Office Of The Comptroller Procurement Analyst 69839.88889 6.285590e+05 61230.41 6.803379e+03 3356.190 1133.25 9 3.356190e+03 30205.71 6.897894e+05 6.587647e+05 31024.70 NULL
2023 Office Of The Comptroller Project Manager 71373.00000 7.137300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.137300e+04 7.137300e+04 0.00 NULL
2023 Office Of The Comptroller Public Records Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Office Of The Comptroller Research And Liaison Coordinator 109745.37931 3.182616e+06 225.78 7.785517e+00 0.000 7.50 29 0.000000e+00 0.00 3.182842e+06 3.182616e+06 225.78 NULL
2023 Office Of The Comptroller Research Assistant 57141.00000 5.714100e+04 975.08 9.750800e+02 975.080 25.00 1 9.750800e+02 975.08 5.811608e+04 5.811608e+04 0.00 NULL
2023 Office Of The Comptroller Second Deputy Comptroller 240000.00000 2.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.400000e+05 2.400000e+05 0.00 NULL
2023 Office Of The Comptroller Secretary 49500.20000 2.475010e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.475010e+05 2.475010e+05 0.00 NULL
2023 Office Of The Comptroller Special Deputy Comptroller 215000.00000 2.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.150000e+05 2.150000e+05 0.00 NULL
2023 Office Of The Comptroller Staff Analyst 67922.23529 1.154678e+06 30468.79 1.792282e+03 472.820 691.75 17 4.728200e+02 8037.94 1.185147e+06 1.162716e+06 22430.85 NULL
2023 Office Of The Comptroller Staff Analyst Trainee 52144.60000 2.607230e+05 8321.38 1.664276e+03 0.000 281.00 5 0.000000e+00 0.00 2.690444e+05 2.607230e+05 8321.38 NULL
2023 Office Of The Comptroller Strategic Initiative Specialist 130079.66667 3.902390e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.902390e+05 3.902390e+05 0.00 NULL
2023 Office Of The Comptroller Summer College Intern 1863.04461 9.501527e+04 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 9.501527e+04 9.501527e+04 0.00 NULL
2023 Office Of The Comptroller Summer Graduate Intern 2642.66206 4.492525e+04 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 4.492525e+04 4.492525e+04 0.00 NULL
2023 Office Of The Comptroller Supervising Computer Service Technician 99934.00000 9.993400e+04 2660.54 2.660540e+03 2660.540 43.50 1 2.660540e+03 2660.54 1.025945e+05 1.025945e+05 0.00 NULL
2023 Office Of The Comptroller Supervisor Of Motor Transport 59491.00000 5.949100e+04 3760.97 3.760970e+03 3760.970 88.00 1 3.760970e+03 3760.97 6.325197e+04 6.325197e+04 0.00 NULL
2023 Office Of The Comptroller Supervisor Of Stock Workers 52750.00000 5.275000e+04 158.79 1.587900e+02 158.790 5.50 1 1.587900e+02 158.79 5.290879e+04 5.290879e+04 0.00 NULL
2023 Office Of The Comptroller Telecommunications Associate 101309.00000 1.013090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.013090e+05 1.013090e+05 0.00 NULL
2023 Office Of The Comptroller Third Deputy Comptroller 225000.00000 2.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.250000e+05 2.250000e+05 0.00 NULL
2023 Office Of The Mayor Administrative Assistant To The Mayor 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2023 Office Of The Mayor Assistant Legislative Representative 134133.16667 1.609598e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.609598e+06 1.609598e+06 0.00 NULL
2023 Office Of The Mayor Assistant To The Deputy Mayor 175088.18182 1.925970e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.925970e+06 1.925970e+06 0.00 NULL
2023 Office Of The Mayor Assistant To The Mayor 196684.66667 5.900540e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.900540e+05 5.900540e+05 0.00 NULL
2023 Office Of The Mayor Asst Dir Of Intergvnmental Reltns For The Albany Office 178000.00000 1.780000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.780000e+05 1.780000e+05 0.00 NULL
2023 Office Of The Mayor Chief Of Staff - Mayor’s Office 251982.00000 2.519820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.519820e+05 2.519820e+05 0.00 NULL
2023 Office Of The Mayor Chief Of Staff To The Mayor 251982.00000 2.519820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.519820e+05 2.519820e+05 0.00 NULL
2023 Office Of The Mayor Chief Service Officer 180250.00000 1.802500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.802500e+05 1.802500e+05 0.00 NULL
2023 Office Of The Mayor Chief Service Officer Of Nyc Service 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2023 Office Of The Mayor Clerical Associate 52403.00000 5.240300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.240300e+04 5.240300e+04 0.00 NULL
2023 Office Of The Mayor College Aide 5241.48380 1.415201e+05 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 1.415201e+05 1.415201e+05 0.00 NULL
2023 Office Of The Mayor Commissioner Of The Ofc To End Domstc And Gend Based Violce 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2023 Office Of The Mayor Counsel To The Mayor 239884.00000 4.797680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.797680e+05 4.797680e+05 0.00 NULL
2023 Office Of The Mayor Deputy Mayor 251982.00000 2.267838e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 2.267838e+06 2.267838e+06 0.00 NULL
2023 Office Of The Mayor Director 148000.00000 1.480000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.480000e+05 1.480000e+05 0.00 NULL
2023 Office Of The Mayor Director Of City Legislative Affairs 178000.00000 1.780000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.780000e+05 1.780000e+05 0.00 NULL
2023 Office Of The Mayor Director Of Community Assistance Unit 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2023 Office Of The Mayor Director Of Immigrant Affairs 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2023 Office Of The Mayor Director Of Intergovernmental Affairs 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2023 Office Of The Mayor Director Of Intergovernmental Relations 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2023 Office Of The Mayor Director Of Office For People With Disabilities 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2023 Office Of The Mayor Director Of The Mayor�S Office Of Administrative Services 201000.00000 2.010000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.010000e+05 2.010000e+05 0.00 NULL
2023 Office Of The Mayor Director Of The Mayor�S Office Of Appointments 190140.00000 1.901400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.901400e+05 1.901400e+05 0.00 NULL
2023 Office Of The Mayor Director Of The Mayor�S Office Of Operations 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2023 Office Of The Mayor Director Of The Office For People With Disabilities 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2023 Office Of The Mayor Director Of The Office Of Correspondence 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2023 Office Of The Mayor Director Of The Office Of Criminal Justice 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2023 Office Of The Mayor Director Of The Office Of Immigrant Affairs 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2023 Office Of The Mayor Director Of The Office Of Scheduling & Executive Operations 201000.00000 2.010000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.010000e+05 2.010000e+05 0.00 NULL
2023 Office Of The Mayor Executive Administrator Of Gracie Mansion 237033.00000 2.370330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.370330e+05 2.370330e+05 0.00 NULL
2023 Office Of The Mayor Executive Agency Counsel 165224.50000 3.304490e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 3.304490e+06 3.304490e+06 0.00 NULL
2023 Office Of The Mayor Executive Asst To The Nyc Commission To The United Nations 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2023 Office Of The Mayor Executive Cook 126121.50000 2.522430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.522430e+05 2.522430e+05 0.00 NULL
2023 Office Of The Mayor Executive Director Of Gracie Mansion 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2023 Office Of The Mayor Executive Director Of The Commission On Gender Equity 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2023 Office Of The Mayor Executive Director, Citywide Event Coordination & Management 177904.00000 1.779040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.779040e+05 1.779040e+05 0.00 NULL
2023 Office Of The Mayor Executive Director, Special Projects & Community Events 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2023 Office Of The Mayor Executive Program Specialist 197666.66667 5.930000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.930000e+05 5.930000e+05 0.00 NULL
2023 Office Of The Mayor First Deputy Mayor 275000.00000 5.500000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.500000e+05 5.500000e+05 0.00 NULL
2023 Office Of The Mayor High School Student Aide 2087.67857 2.922750e+04 67.50 4.821429e+00 0.000 4.50 14 0.000000e+00 0.00 2.929500e+04 2.922750e+04 67.50 NULL
2023 Office Of The Mayor Mayor 258750.00000 2.587500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.587500e+05 2.587500e+05 0.00 NULL
2023 Office Of The Mayor Mayoral Office Assistant 53406.86148 1.441985e+06 16121.68 5.970993e+02 0.000 560.58 27 0.000000e+00 0.00 1.458107e+06 1.441985e+06 16121.68 NULL
2023 Office Of The Mayor Mayoral Program Coordinator 78455.60000 4.707336e+05 7320.01 1.220002e+03 0.000 150.00 6 0.000000e+00 0.00 4.780536e+05 4.707336e+05 7320.01 NULL
2023 Office Of The Mayor Press Officer 140003.33333 1.680040e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.680040e+06 1.680040e+06 0.00 NULL
2023 Office Of The Mayor Project Planner 84643.00000 8.464300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.464300e+04 8.464300e+04 0.00 NULL
2023 Office Of The Mayor Research Projects Coord 113051.42308 1.763602e+07 1792.35 1.148942e+01 0.000 55.25 156 0.000000e+00 0.00 1.763781e+07 1.763602e+07 1792.35 NULL
2023 Office Of The Mayor Research Projects Coordinator 65397.50000 5.231800e+05 6801.52 8.501900e+02 319.780 241.50 8 3.197800e+02 2558.24 5.299815e+05 5.257382e+05 4243.28 NULL
2023 Office Of The Mayor Secretary 79501.71429 5.565120e+05 10851.15 1.550164e+03 706.060 228.50 7 7.060600e+02 4942.42 5.673632e+05 5.614544e+05 5908.73 NULL
2023 Office Of The Mayor Senior Advisor To The Mayor 220000.00000 2.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.200000e+05 2.200000e+05 0.00 NULL
2023 Office Of The Mayor Senior Policy Advisor To The Mayor 175991.00000 3.519820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.519820e+05 3.519820e+05 0.00 NULL
2023 Office Of The Mayor Senior Project Planner 126800.00000 2.536000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.536000e+05 2.536000e+05 0.00 NULL
2023 Office Of The Mayor Senior Service Inspector 62696.00000 6.269600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.269600e+04 6.269600e+04 0.00 NULL
2023 Office Of The Mayor Service Inspector 42970.00000 2.578200e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.578200e+05 2.578200e+05 0.00 NULL
2023 Office Of The Mayor Special Assistant 111479.74828 3.232913e+07 0.00 0.000000e+00 0.000 0.00 290 0.000000e+00 0.00 3.232913e+07 3.232913e+07 0.00 NULL
2023 Office Of The Mayor Sr Project Planner 101585.00000 1.015850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.015850e+05 1.015850e+05 0.00 NULL
2023 Office Of The Mayor Staff Assistant 63460.07143 8.884410e+05 21416.94 1.529781e+03 1287.880 644.00 14 1.287880e+03 18030.32 9.098579e+05 9.064713e+05 3386.62 NULL
2023 Office Of The Mayor Summer College Intern 3383.69063 2.030214e+05 39.38 6.563333e-01 0.000 2.50 60 0.000000e+00 0.00 2.030608e+05 2.030214e+05 39.38 NULL
2023 Office Of The Mayor Summer Graduate Intern 3756.22727 8.263700e+04 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 8.263700e+04 8.263700e+04 0.00 NULL
2023 Personnel Monitors Monitor 6528.94970 1.103392e+06 0.00 0.000000e+00 0.000 0.00 169 0.000000e+00 0.00 1.103392e+06 1.103392e+06 0.00 NULL
2023 Police Department *Adm School Security Manager-U 89696.33333 2.690890e+05 308.66 1.028867e+02 29.070 0.00 3 2.907000e+01 87.21 2.693977e+05 2.691762e+05 221.45 NULL
2023 Police Department *Admin Schl Secur Mgr-Mgl 185587.00000 1.855870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.855870e+05 1.855870e+05 0.00 NULL
2023 Police Department *Agency Attorney 124126.33333 3.723790e+05 23609.99 7.869997e+03 7960.260 301.25 3 7.869997e+03 23609.99 3.959890e+05 3.959890e+05 0.00 NULL
2023 Police Department *Assistant Advocate-Pd 105694.00000 2.113880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.113880e+05 2.113880e+05 0.00 NULL
2023 Police Department *Attorney At Law 108572.50000 2.171450e+05 13189.66 6.594830e+03 6594.830 153.00 2 6.594830e+03 13189.66 2.303347e+05 2.303347e+05 0.00 NULL
2023 Police Department *Certified Local Area Network Administrator 121696.00000 1.216960e+05 26052.77 2.605277e+04 26052.770 299.00 1 2.605277e+04 26052.77 1.477488e+05 1.477488e+05 0.00 NULL
2023 Police Department *Custodial Assistant 42405.00000 1.272150e+05 3496.08 1.165360e+03 0.000 98.00 3 0.000000e+00 0.00 1.307111e+05 1.272150e+05 3496.08 NULL
2023 Police Department Accountant 64217.94090 1.798102e+06 72591.57 2.592556e+03 0.850 1760.50 28 8.500000e-01 23.80 1.870694e+06 1.798126e+06 72567.77 NULL
2023 Police Department Adm Manager-Non-Mgrl 90713.04255 4.263513e+06 186426.43 3.966520e+03 534.200 3045.75 47 5.342000e+02 25107.40 4.449939e+06 4.288620e+06 161319.03 NULL
2023 Police Department Admin Community Relations Specialist 97866.62500 7.829330e+05 12158.53 1.519816e+03 0.000 246.00 8 0.000000e+00 0.00 7.950915e+05 7.829330e+05 12158.53 NULL
2023 Police Department Admin Construction Project Manager 87550.00000 8.755000e+04 828.22 8.282200e+02 828.220 17.75 1 8.282200e+02 828.22 8.837822e+04 8.837822e+04 0.00 NULL
2023 Police Department Admin Contract Specialist 168925.00000 1.013550e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.013550e+06 1.013550e+06 0.00 NULL
2023 Police Department Admin Tests & Meas Spec 168123.33333 5.043700e+05 3442.72 1.147573e+03 0.000 49.25 3 0.000000e+00 0.00 5.078127e+05 5.043700e+05 3442.72 NULL
2023 Police Department Admin Traffic Enf Agnt-Union 76559.94444 2.756158e+06 471732.76 1.310369e+04 9902.770 8221.00 36 9.902770e+03 356499.72 3.227891e+06 3.112658e+06 115233.04 NULL
2023 Police Department Admin Traffic Enfrcmnt Agent 136306.33333 4.089190e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.089190e+05 4.089190e+05 0.00 NULL
2023 Police Department Administrative Accountant 118867.16667 1.426406e+06 25347.20 2.112267e+03 0.000 313.25 12 0.000000e+00 0.00 1.451753e+06 1.426406e+06 25347.20 NULL
2023 Police Department Administrative Architect 137167.75000 5.486710e+05 23286.17 5.821542e+03 5616.660 325.00 4 5.616660e+03 22466.64 5.719572e+05 5.711376e+05 819.53 NULL
2023 Police Department Administrative City Planner 139500.00000 4.185000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.185000e+05 4.185000e+05 0.00 NULL
2023 Police Department Administrative Community Relations Specialist 148232.50000 2.964650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.964650e+05 2.964650e+05 0.00 NULL
2023 Police Department Administrative Contract Specialist 133939.00000 2.678780e+05 2642.34 1.321170e+03 1321.170 34.50 2 1.321170e+03 2642.34 2.705203e+05 2.705203e+05 0.00 NULL
2023 Police Department Administrative Engineer 141335.66667 4.240070e+05 64017.76 2.133925e+04 18420.590 715.00 3 1.842059e+04 55261.77 4.880248e+05 4.792688e+05 8755.99 NULL
2023 Police Department Administrative Graphic Artist 106643.00000 2.132860e+05 8400.47 4.200235e+03 4200.235 144.25 2 4.200235e+03 8400.47 2.216865e+05 2.216865e+05 0.00 NULL
2023 Police Department Administrative Investigator 120734.00000 1.207340e+05 36622.54 3.662254e+04 36622.540 427.25 1 3.662254e+04 36622.54 1.573565e+05 1.573565e+05 0.00 NULL
2023 Police Department Administrative Management Auditor 106055.77778 9.545020e+05 55815.81 6.201757e+03 700.860 757.00 9 7.008600e+02 6307.74 1.010318e+06 9.608097e+05 49508.07 NULL
2023 Police Department Administrative Manager 110359.00000 1.103590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.103590e+05 1.103590e+05 0.00 NULL
2023 Police Department Administrative Printing Services Manager 136374.33333 4.091230e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.091230e+05 4.091230e+05 0.00 NULL
2023 Police Department Administrative Procurement Analyst 165417.00000 1.654170e+05 1703.36 1.703360e+03 1703.360 47.00 1 1.703360e+03 1703.36 1.671204e+05 1.671204e+05 0.00 NULL
2023 Police Department Administrative Procurement Analyst-Non-Mgrl 91860.00000 1.377900e+06 104055.64 6.937043e+03 820.890 1777.00 15 8.208900e+02 12313.35 1.481956e+06 1.390213e+06 91742.29 NULL
2023 Police Department Administrative Project Manager 145199.92857 2.032799e+06 63800.42 4.557173e+03 1323.800 714.75 14 1.323800e+03 18533.20 2.096599e+06 2.051332e+06 45267.22 NULL
2023 Police Department Administrative Psychologist 143036.60000 2.145549e+06 6660.64 4.440427e+02 0.000 84.50 15 0.000000e+00 0.00 2.152210e+06 2.145549e+06 6660.64 NULL
2023 Police Department Administrative Public Health Sanitarian 160771.00000 1.607710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.607710e+05 1.607710e+05 0.00 NULL
2023 Police Department Administrative Public Information Specialist 186116.00000 9.305800e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.305800e+05 9.305800e+05 0.00 NULL
2023 Police Department Administrative Public Information Specialist Nm Former M1/M2 90885.00000 6.361950e+05 11933.77 1.704824e+03 0.000 223.75 7 0.000000e+00 0.00 6.481288e+05 6.361950e+05 11933.77 NULL
2023 Police Department Administrative Quality Assurance Specialist 90493.00000 9.049300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.049300e+04 9.049300e+04 0.00 NULL
2023 Police Department Administrative Staff Analyst 118143.30303 1.169619e+07 456163.43 4.607711e+03 665.360 6359.00 99 6.653600e+02 65870.64 1.215235e+07 1.176206e+07 390292.79 NULL
2023 Police Department Administrative Supervisor Of Building Maintenance 190765.00000 1.907650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.907650e+05 1.907650e+05 0.00 NULL
2023 Police Department Administrative Transportation Coordinator 148976.00000 1.489760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.489760e+05 1.489760e+05 0.00 NULL
2023 Police Department Agency Attorney 96223.15534 9.910985e+06 947590.89 9.199912e+03 2872.570 12598.75 103 2.872570e+03 295874.71 1.085858e+07 1.020686e+07 651716.18 NULL
2023 Police Department Agency Attorney Interne 71344.75000 2.853790e+05 20066.59 5.016648e+03 5427.290 378.25 4 5.016648e+03 20066.59 3.054456e+05 3.054456e+05 0.00 NULL
2023 Police Department Agency Chief Contracting Officer 190550.00000 1.905500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.905500e+05 1.905500e+05 0.00 NULL
2023 Police Department Architect 96327.00000 9.632700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.632700e+04 9.632700e+04 0.00 NULL
2023 Police Department Assistant Architect 89503.33333 2.685100e+05 19981.14 6.660380e+03 2536.990 339.75 3 2.536990e+03 7610.97 2.884911e+05 2.761210e+05 12370.17 NULL
2023 Police Department Assistant Commissioner 211050.00000 2.110500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.110500e+05 2.110500e+05 0.00 NULL
2023 Police Department Assistant Counsel-Pd 118644.50000 9.491560e+05 70595.71 8.824464e+03 5473.140 891.50 8 5.473140e+03 43785.12 1.019752e+06 9.929411e+05 26810.59 NULL
2023 Police Department Assistant Deputy Commissioner 171971.00000 1.719710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.719710e+05 1.719710e+05 0.00 NULL
2023 Police Department Assistant Mechanical Engineer 84657.00000 8.465700e+04 8818.63 8.818630e+03 8818.630 182.75 1 8.818630e+03 8818.63 9.347563e+04 9.347563e+04 0.00 NULL
2023 Police Department Assistant Printing Press Operator 53426.00000 1.068520e+05 7141.15 3.570575e+03 3570.575 187.75 2 3.570575e+03 7141.15 1.139931e+05 1.139931e+05 0.00 NULL
2023 Police Department Assistant Supervising Chief Surgeon 182108.00000 1.821080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.821080e+05 1.821080e+05 0.00 NULL
2023 Police Department Assistant To Police Commissionor 225558.00000 4.511160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.511160e+05 4.511160e+05 0.00 NULL
2023 Police Department Assoc Spvr Of School Security 81186.59091 3.572210e+06 496904.59 1.129329e+04 9223.565 7364.00 44 9.223565e+03 405836.86 4.069115e+06 3.978047e+06 91067.73 NULL
2023 Police Department Assoc Supvr Of Schl Sec 123044.20000 6.152210e+05 95.70 1.914000e+01 0.000 0.00 5 0.000000e+00 0.00 6.153167e+05 6.152210e+05 95.70 NULL
2023 Police Department Associate Fingerprint Technician 46474.47059 7.900660e+05 14420.02 8.482365e+02 241.740 460.00 17 2.417400e+02 4109.58 8.044860e+05 7.941756e+05 10310.44 NULL
2023 Police Department Associate Investigator 46677.32331 6.208084e+06 573875.15 4.314851e+03 0.000 10753.38 133 0.000000e+00 0.00 6.781959e+06 6.208084e+06 573875.15 NULL
2023 Police Department Associate Labor Relations Analyst 108106.00000 1.081060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081060e+05 1.081060e+05 0.00 NULL
2023 Police Department Associate Parking Control Specialist 60224.40000 3.011220e+05 55457.50 1.109150e+04 4962.290 1282.25 5 4.962290e+03 24811.45 3.565795e+05 3.259335e+05 30646.05 NULL
2023 Police Department Associate Project Manager 111362.50000 2.227250e+05 621.09 3.105450e+02 310.545 7.50 2 3.105450e+02 621.09 2.233461e+05 2.233461e+05 0.00 NULL
2023 Police Department Associate Public Information Specialist 56148.00000 5.614800e+04 61.46 6.146000e+01 61.460 2.00 1 6.146000e+01 61.46 5.620946e+04 5.620946e+04 0.00 NULL
2023 Police Department Associate Public Records Officer 68507.00000 6.850700e+04 714.91 7.149100e+02 714.910 21.00 1 7.149100e+02 714.91 6.922191e+04 6.922191e+04 0.00 NULL
2023 Police Department Associate Staff Analyst 85787.54386 4.889890e+06 187811.24 3.294934e+03 92.800 3279.75 57 9.280000e+01 5289.60 5.077701e+06 4.895180e+06 182521.64 NULL
2023 Police Department Associate Traffic Enforcement Agent 53101.54861 2.293987e+07 7197538.86 1.666097e+04 15853.600 178492.61 432 1.585360e+04 6848755.20 3.013741e+07 2.978862e+07 348783.66 NULL
2023 Police Department Auto Body Worker 62957.90909 1.385074e+06 318000.45 1.445457e+04 16097.255 6770.75 22 1.445457e+04 318000.45 1.703074e+06 1.703074e+06 0.00 NULL
2023 Police Department Auto Mechanic NA NA 2674722.61 1.285924e+04 10617.855 41204.00 208 1.061785e+04 2208513.84 NA NA NA NULL
2023 Police Department Automotive Service Worker 42320.89706 2.877821e+06 352577.99 5.184970e+03 2422.670 10507.25 68 2.422670e+03 164741.56 3.230399e+06 3.042563e+06 187836.43 NULL
2023 Police Department Bookbinder 45288.16667 2.717290e+05 3501.40 5.835667e+02 447.145 143.25 6 4.471450e+02 2682.87 2.752304e+05 2.744119e+05 818.53 NULL
2023 Police Department Bookkeeper 56376.02736 3.044305e+06 115995.76 2.148070e+03 17.570 2496.75 54 1.757000e+01 948.78 3.160301e+06 3.045254e+06 115046.98 NULL
2023 Police Department Capt Det Chief Of Department 242592.00000 9.703680e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 9.703680e+05 9.703680e+05 0.00 NULL
2023 Police Department Capt Det Chief Of Internal Affairs 241116.00000 7.233480e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.233480e+05 7.233480e+05 0.00 NULL
2023 Police Department Capt Det Chief Of The Housing Bureau 241116.00000 7.233480e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.233480e+05 7.233480e+05 0.00 NULL
2023 Police Department Capt Det Chief Of The Transit Bureau 241116.00000 4.822320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.822320e+05 4.822320e+05 0.00 NULL
2023 Police Department Captain 159968.77197 6.734685e+07 3717644.85 8.830510e+03 2205.560 40239.21 421 2.205560e+03 928540.76 7.106450e+07 6.827539e+07 2789104.09 NULL
2023 Police Department Captain D/A Deputy Chief 206011.00000 1.833498e+07 254632.75 2.861042e+03 0.000 0.00 89 0.000000e+00 0.00 1.858961e+07 1.833498e+07 254632.75 NULL
2023 Police Department Captain D/A Deputy Inspector 185607.99379 2.988289e+07 236672.53 1.470016e+03 0.000 424.68 161 0.000000e+00 0.00 3.011956e+07 2.988289e+07 236672.53 NULL
2023 Police Department Captain D/A Inspector 195575.00000 2.835838e+07 299710.85 2.066971e+03 0.000 0.00 145 0.000000e+00 0.00 2.865809e+07 2.835838e+07 299710.85 NULL
2023 Police Department Captain Detailed As Assistant Chief 240511.00000 6.493797e+06 33723.78 1.249029e+03 0.000 0.00 27 0.000000e+00 0.00 6.527521e+06 6.493797e+06 33723.78 NULL
2023 Police Department Captain Detailed As Chief Of Crime Control Strategies 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2023 Police Department Captain Detailed As Chief Of Detectives 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2023 Police Department Captain Detailed As Chief Of Patrol 241116.00000 2.411160e+05 8445.84 8.445840e+03 8445.840 0.00 1 8.445840e+03 8445.84 2.495618e+05 2.495618e+05 0.00 NULL
2023 Police Department Captain Detailed As Chief Of Personnel 241116.00000 4.822320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.822320e+05 4.822320e+05 0.00 NULL
2023 Police Department Captain Detailed As Chief Of Special Operations 241116.00000 4.822320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.822320e+05 4.822320e+05 0.00 NULL
2023 Police Department Captain Detailed As Chief Of Training 241116.00000 4.822320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.822320e+05 4.822320e+05 0.00 NULL
2023 Police Department Captain: Chief Of Transportation Bureau 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2023 Police Department Carpenter NA NA 409312.95 2.154279e+04 28879.640 5371.00 19 2.154279e+04 409312.95 NA NA NA NULL
2023 Police Department Case Management Nurse 86427.18750 2.765670e+06 155599.74 4.862492e+03 284.530 2356.25 32 2.845300e+02 9104.96 2.921270e+06 2.774775e+06 146494.78 NULL
2023 Police Department Cashier 52770.25000 2.110810e+05 9874.10 2.468525e+03 459.640 304.75 4 4.596400e+02 1838.56 2.209551e+05 2.129196e+05 8035.54 NULL
2023 Police Department Certified It Administrator 122175.36957 5.620067e+06 486887.72 1.058452e+04 7946.500 5967.75 46 7.946500e+03 365539.00 6.106955e+06 5.985606e+06 121348.72 NULL
2023 Police Department Certified It Developer 122268.75000 4.890750e+05 46662.20 1.166555e+04 9741.490 528.75 4 9.741490e+03 38965.96 5.357372e+05 5.280410e+05 7696.24 NULL
2023 Police Department Chaplain 48151.53333 7.222730e+05 5935.48 3.956987e+02 0.000 306.50 15 0.000000e+00 0.00 7.282085e+05 7.222730e+05 5935.48 NULL
2023 Police Department Chief Of Information Technology 241116.00000 4.822320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.822320e+05 4.822320e+05 0.00 NULL
2023 Police Department Chief Of Intelligence & Counterterrorism 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2023 Police Department Chief Of Professional Standards 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2023 Police Department Chief Of Staff 205000.00000 2.050000e+05 34848.01 3.484801e+04 34848.010 299.47 1 3.484801e+04 34848.01 2.398480e+05 2.398480e+05 0.00 NULL
2023 Police Department Chief Of Strategic Initiatives 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2023 Police Department City Attendant 45377.00000 4.537700e+04 11551.69 1.155169e+04 11551.690 317.00 1 1.155169e+04 11551.69 5.692869e+04 5.692869e+04 0.00 NULL
2023 Police Department City Custodial Assistant 39630.01782 1.438570e+07 580364.16 1.598799e+03 6.730 18763.87 363 6.730000e+00 2442.99 1.496606e+07 1.438814e+07 577921.17 NULL
2023 Police Department City Dentist 83789.16000 8.378916e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.378916e+04 8.378916e+04 0.00 NULL
2023 Police Department City Deputy Medical Director 188100.00000 1.881000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.881000e+05 1.881000e+05 0.00 NULL
2023 Police Department City Laborer NA NA 320663.14 1.034397e+04 8713.620 6196.75 31 8.713620e+03 270122.22 NA NA NA NULL
2023 Police Department City Research Scientist 103190.68293 4.230818e+06 141325.97 3.446975e+03 437.110 2100.25 41 4.371100e+02 17921.51 4.372144e+06 4.248740e+06 123404.46 NULL
2023 Police Department Civilianization Manager-Pd 127037.00000 1.270370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.270370e+05 1.270370e+05 0.00 NULL
2023 Police Department Clerical Aide 14957.33333 8.974400e+04 8645.17 1.440862e+03 17.830 285.25 6 1.783000e+01 106.98 9.838917e+04 8.985098e+04 8538.19 NULL
2023 Police Department Clerical Associate 51929.02740 2.440664e+06 86489.16 1.840195e+03 1.010 2088.75 47 1.010000e+00 47.47 2.527153e+06 2.440712e+06 86441.69 NULL
2023 Police Department College Aide 12440.93989 6.842517e+05 0.00 0.000000e+00 0.000 0.00 55 0.000000e+00 0.00 6.842517e+05 6.842517e+05 0.00 NULL
2023 Police Department College Aide - Assignment Levels Ii And Iii 25426.61000 2.542661e+04 94.32 9.432000e+01 94.320 9.00 1 9.432000e+01 94.32 2.552093e+04 2.552093e+04 0.00 NULL
2023 Police Department Commissioner 243171.00000 4.863420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.863420e+05 4.863420e+05 0.00 NULL
2023 Police Department Community Assistant 35769.24076 5.079232e+06 8728.79 6.147035e+01 0.000 351.25 142 0.000000e+00 0.00 5.087961e+06 5.079232e+06 8728.79 NULL
2023 Police Department Community Associate 58456.66667 1.753700e+05 1907.22 6.357400e+02 0.000 55.25 3 0.000000e+00 0.00 1.772772e+05 1.753700e+05 1907.22 NULL
2023 Police Department Community Coordinator 64940.88000 1.623522e+06 51148.92 2.045957e+03 3.570 955.00 25 3.570000e+00 89.25 1.674671e+06 1.623611e+06 51059.67 NULL
2023 Police Department Compositor NA NA 81856.67 2.046417e+04 16123.565 1031.50 4 1.612357e+04 64494.26 NA NA NA NULL
2023 Police Department Computer Associate 80138.73077 8.334428e+06 633603.83 6.092345e+03 2594.210 10302.75 104 2.594210e+03 269797.84 8.968032e+06 8.604226e+06 363805.99 NULL
2023 Police Department Computer Operations Manager 127914.37500 1.023315e+06 28566.95 3.570869e+03 0.000 319.25 8 0.000000e+00 0.00 1.051882e+06 1.023315e+06 28566.95 NULL
2023 Police Department Computer Programmer Analyst 64382.00000 6.438200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.438200e+04 6.438200e+04 0.00 NULL
2023 Police Department Computer Specialist 110411.52174 7.618395e+06 484921.64 7.027850e+03 1802.220 6538.75 69 1.802220e+03 124353.18 8.103317e+06 7.742748e+06 360568.46 NULL
2023 Police Department Computer Systems Manager 156684.37500 3.760425e+06 86402.51 3.600105e+03 0.000 857.00 24 0.000000e+00 0.00 3.846828e+06 3.760425e+06 86402.51 NULL
2023 Police Department Construction Project Manager 121074.00000 2.421480e+05 5498.29 2.749145e+03 2749.145 65.75 2 2.749145e+03 5498.29 2.476463e+05 2.476463e+05 0.00 NULL
2023 Police Department Counsel To The Police Commissioner 241116.00000 4.822320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.822320e+05 4.822320e+05 0.00 NULL
2023 Police Department Crime Analyst 63371.33835 8.428388e+06 239106.06 1.797790e+03 97.680 6009.84 133 9.768000e+01 12991.44 8.667494e+06 8.441379e+06 226114.62 NULL
2023 Police Department Criminalist 85431.12632 2.434787e+07 1439278.46 5.050100e+03 2033.490 22401.25 285 2.033490e+03 579544.65 2.578715e+07 2.492742e+07 859733.81 NULL
2023 Police Department Criminalist Assistant Director Of Laboratory 130961.54545 1.440577e+06 58.85 5.350000e+00 0.000 0.00 11 0.000000e+00 0.00 1.440636e+06 1.440577e+06 58.85 NULL
2023 Police Department Criminalist Director Of Laboratory 191282.00000 1.912820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.912820e+05 1.912820e+05 0.00 NULL
2023 Police Department Custodian 44367.88889 7.986220e+05 163351.08 9.075060e+03 6527.230 4892.00 18 6.527230e+03 117490.14 9.619731e+05 9.161121e+05 45860.94 NULL
2023 Police Department Deputy Chief Surgeon 161456.25000 1.291650e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.291650e+06 1.291650e+06 0.00 NULL
2023 Police Department Deputy Commissioner 241116.00000 1.687812e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.687812e+06 1.687812e+06 0.00 NULL
2023 Police Department Director 106334.66667 3.190040e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.190040e+05 3.190040e+05 0.00 NULL
2023 Police Department Director Employee Management Division 152407.33333 4.572220e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.572220e+05 4.572220e+05 0.00 NULL
2023 Police Department Director Of Communications 105000.00000 1.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.050000e+05 1.050000e+05 0.00 NULL
2023 Police Department Director Of Department Advocates Office 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2023 Police Department Director Of Internal Affairs - Pd 205000.00000 2.050000e+05 36485.22 3.648522e+04 36485.220 311.00 1 3.648522e+04 36485.22 2.414852e+05 2.414852e+05 0.00 NULL
2023 Police Department Director Of Motor Transport 168293.00000 1.682930e+05 22291.27 2.229127e+04 22291.270 227.50 1 2.229127e+04 22291.27 1.905843e+05 1.905843e+05 0.00 NULL
2023 Police Department Director Of Organized Crime Control-Pd 192152.00000 1.921520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.921520e+05 1.921520e+05 0.00 NULL
2023 Police Department Director Of Photographic Services-Pd 161298.00000 3.225960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.225960e+05 3.225960e+05 0.00 NULL
2023 Police Department Director Of Psychological Services 150824.00000 1.508240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.508240e+05 1.508240e+05 0.00 NULL
2023 Police Department Director Of Support Services-Pd 179972.50000 3.599450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.599450e+05 3.599450e+05 0.00 NULL
2023 Police Department Director Of Technology Development-Pd 180000.00000 1.800000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.800000e+05 1.800000e+05 0.00 NULL
2023 Police Department Director Of Training 120000.00000 1.200000e+05 280.26 2.802600e+02 280.260 0.00 1 2.802600e+02 280.26 1.202803e+05 1.202803e+05 0.00 NULL
2023 Police Department Electrical Engineer 114485.00000 1.144850e+05 147.24 1.472400e+02 147.240 2.00 1 1.472400e+02 147.24 1.146322e+05 1.146322e+05 0.00 NULL
2023 Police Department Electrician NA NA 927899.51 2.993224e+04 35087.040 10014.50 31 2.993224e+04 927899.51 NA NA NA NULL
2023 Police Department Electricians Helper NA NA 50960.34 2.548017e+04 25480.170 864.00 2 2.548017e+04 50960.34 NA NA NA NULL
2023 Police Department Elevator Mechanic NA NA 51067.61 1.702254e+04 14842.870 572.00 3 1.484287e+04 44528.61 NA NA NA NULL
2023 Police Department Employee Assistance Program Specialist 75097.00000 3.003880e+05 7218.22 1.804555e+03 1936.315 155.00 4 1.804555e+03 7218.22 3.076062e+05 3.076062e+05 0.00 NULL
2023 Police Department Estimator 90779.00000 9.077900e+04 6640.19 6.640190e+03 6640.190 118.50 1 6.640190e+03 6640.19 9.741919e+04 9.741919e+04 0.00 NULL
2023 Police Department Evidence And Property Control Specialist 58643.10194 1.208048e+07 767206.33 3.724303e+03 1174.185 18902.18 206 1.174185e+03 241882.11 1.284769e+07 1.232236e+07 525324.22 NULL
2023 Police Department Executive Agency Counsel 165100.76786 9.245643e+06 63205.77 1.128674e+03 0.000 788.50 56 0.000000e+00 0.00 9.308849e+06 9.245643e+06 63205.77 NULL
2023 Police Department Fingerprint Technician Trainee 31952.52174 1.469816e+06 7054.38 1.533561e+02 0.000 315.75 46 0.000000e+00 0.00 1.476870e+06 1.469816e+06 7054.38 NULL
2023 Police Department First Deputy Commissioner 242592.00000 4.851840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.851840e+05 4.851840e+05 0.00 NULL
2023 Police Department Fitness Instructor 64242.30000 1.284846e+06 108895.13 5.444757e+03 3983.700 2537.00 20 3.983700e+03 79674.00 1.393741e+06 1.364520e+06 29221.13 NULL
2023 Police Department Glazier NA NA 11303.82 5.651910e+03 5651.910 121.00 2 5.651910e+03 11303.82 NA NA NA NULL
2023 Police Department Graphic Artist 72443.30769 9.417630e+05 54691.87 4.207067e+03 546.650 1238.00 13 5.466500e+02 7106.45 9.964549e+05 9.488694e+05 47585.42 NULL
2023 Police Department Health Services Manager Non Managerial Level I 94724.00000 9.472400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.472400e+04 9.472400e+04 0.00 NULL
2023 Police Department Horseshoer NA NA 33.28 1.109333e+01 0.000 1.00 3 0.000000e+00 0.00 NA NA NA NULL
2023 Police Department Hostler 47835.96405 1.100227e+06 170771.78 7.424860e+03 5273.110 4710.50 23 5.273110e+03 121281.53 1.270999e+06 1.221509e+06 49490.25 NULL
2023 Police Department Intelligence Research Manager-Pd 156116.80000 7.805840e+05 38448.85 7.689770e+03 0.000 523.75 5 0.000000e+00 0.00 8.190328e+05 7.805840e+05 38448.85 NULL
2023 Police Department Intelligence Research Specialist-Pd 93930.04444 4.226852e+06 252184.55 5.604101e+03 2038.210 3697.75 45 2.038210e+03 91719.45 4.479037e+06 4.318571e+06 160465.10 NULL
2023 Police Department Investigator 50846.23810 3.203313e+06 201568.09 3.199493e+03 323.780 5039.67 63 3.237800e+02 20398.14 3.404881e+06 3.223711e+06 181169.95 NULL
2023 Police Department Investigator Trainee 49386.00000 1.481580e+05 13639.03 4.546343e+03 1350.450 411.25 3 1.350450e+03 4051.35 1.617970e+05 1.522094e+05 9587.68 NULL
2023 Police Department It Automation And Monitoring Engineer 134622.00000 4.038660e+05 63964.20 2.132140e+04 19904.190 749.75 3 1.990419e+04 59712.57 4.678302e+05 4.635786e+05 4251.63 NULL
2023 Police Department It Project Specialist 113813.14286 7.966920e+05 70301.74 1.004311e+04 10624.660 855.75 7 1.004311e+04 70301.74 8.669937e+05 8.669937e+05 0.00 NULL
2023 Police Department It Security Specialist 131093.42857 9.176540e+05 21744.62 3.106374e+03 2353.050 276.75 7 2.353050e+03 16471.35 9.393986e+05 9.341253e+05 5273.27 NULL
2023 Police Department It Service Management Specialist 116699.00000 1.166990e+05 248.06 2.480600e+02 248.060 4.00 1 2.480600e+02 248.06 1.169471e+05 1.169471e+05 0.00 NULL
2023 Police Department Lieutenant 129727.51397 1.996506e+08 45261076.43 2.940941e+04 28842.610 436311.82 1539 2.884261e+04 44388776.79 2.449117e+08 2.440394e+08 872299.64 NULL
2023 Police Department Lieutenant D/A Commander Of Detective Squad 143528.37799 2.999743e+07 9830538.47 4.703607e+04 52478.420 85580.95 209 4.703607e+04 9830538.47 3.982797e+07 3.982797e+07 0.00 NULL
2023 Police Department Lieutenant D/A Special Assignment 142985.83537 2.344968e+07 7864180.79 4.795232e+04 48213.655 68531.27 164 4.795232e+04 7864180.79 3.131386e+07 3.131386e+07 0.00 NULL
2023 Police Department Locksmith NA NA 87.66 4.383000e+01 43.830 2.50 2 4.383000e+01 87.66 NA NA NA NULL
2023 Police Department Maintenance Worker NA NA 210142.68 1.568229e+03 134.910 4725.00 134 1.349100e+02 18077.94 NA NA NA NULL
2023 Police Department Management Auditor 80080.79167 1.921939e+06 64193.18 2.674716e+03 0.000 1050.00 24 0.000000e+00 0.00 1.986132e+06 1.921939e+06 64193.18 NULL
2023 Police Department Management Auditor Trainee 49640.00000 9.928000e+04 4042.66 2.021330e+03 2021.330 132.25 2 2.021330e+03 4042.66 1.033227e+05 1.033227e+05 0.00 NULL
2023 Police Department Manager Of Radio Repair Operations 162996.71429 1.140977e+06 23656.03 3.379433e+03 0.000 264.00 7 0.000000e+00 0.00 1.164633e+06 1.140977e+06 23656.03 NULL
2023 Police Department Marine Maintenance Mechanic 78628.00000 1.572560e+05 129.11 6.455500e+01 64.555 3.00 2 6.455500e+01 129.11 1.573851e+05 1.573851e+05 0.00 NULL
2023 Police Department Media Services Technician 49469.30000 1.484079e+06 51935.49 1.731183e+03 50.720 1438.75 30 5.072000e+01 1521.60 1.536014e+06 1.485601e+06 50413.89 NULL
2023 Police Department Motor Vehicle Operator 50424.90000 2.521245e+06 271131.74 5.422635e+03 1643.770 6531.00 50 1.643770e+03 82188.50 2.792377e+06 2.603434e+06 188943.24 NULL
2023 Police Department Motor Vehicle Supervisor 64406.81818 7.084750e+05 111332.45 1.012113e+04 13365.100 2302.25 11 1.012113e+04 111332.45 8.198074e+05 8.198074e+05 0.00 NULL
2023 Police Department Nutritionist 72930.00000 7.293000e+04 2115.67 2.115670e+03 2115.670 46.00 1 2.115670e+03 2115.67 7.504567e+04 7.504567e+04 0.00 NULL
2023 Police Department Oiler NA NA 886009.00 4.430045e+04 38196.875 9614.87 20 3.819688e+04 763937.50 NA NA NA NULL
2023 Police Department Operations Communications Specialist 50481.00000 5.048100e+04 10507.78 1.050778e+04 10507.780 275.00 1 1.050778e+04 10507.78 6.098878e+04 6.098878e+04 0.00 NULL
2023 Police Department P.o. Da Det Gr3 104554.06888 3.597706e+08 119090139.36 3.460917e+04 36518.610 1404093.15 3441 3.460917e+04 119090139.36 4.788607e+08 4.788607e+08 0.00 NULL
2023 Police Department P.o. Det Spec 104380.01956 1.227509e+08 34024061.38 2.893202e+04 30290.685 409264.81 1176 2.893202e+04 34024061.38 1.567750e+08 1.567750e+08 0.00 NULL
2023 Police Department Painter NA NA 319818.63 1.881286e+04 18431.860 4737.00 17 1.843186e+04 313341.62 NA NA NA NULL
2023 Police Department Paralegal Aide 51709.11111 1.396146e+06 31514.60 1.167207e+03 274.890 893.13 27 2.748900e+02 7422.03 1.427661e+06 1.403568e+06 24092.57 NULL
2023 Police Department Parking Control Specialist 47108.00000 4.239720e+05 42070.04 4.674449e+03 4224.320 1267.00 9 4.224320e+03 38018.88 4.660420e+05 4.619909e+05 4051.16 NULL
2023 Police Department Photographer 50764.59259 1.370644e+06 64185.88 2.377255e+03 568.070 1711.50 27 5.680700e+02 15337.89 1.434830e+06 1.385982e+06 48847.99 NULL
2023 Police Department Physician’s Assistant 25977.45477 7.793236e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.793236e+04 7.793236e+04 0.00 NULL
2023 Police Department Plumber NA NA 1072249.56 4.288998e+04 59793.300 8411.25 25 4.288998e+04 1072249.56 NA NA NA NULL
2023 Police Department Plumber’s Helper NA NA 24605.91 2.460591e+04 24605.910 286.50 1 2.460591e+04 24605.91 NA NA NA NULL
2023 Police Department Police Administrative Aide 45024.20540 6.334906e+07 1054571.73 7.495179e+02 0.000 31821.24 1407 0.000000e+00 0.00 6.440363e+07 6.334906e+07 1054571.73 NULL
2023 Police Department Police Attendant 43652.94545 2.400912e+06 407670.36 7.412188e+03 6483.160 12510.25 55 6.483160e+03 356573.80 2.808582e+06 2.757486e+06 51096.56 NULL
2023 Police Department Police Cadet 12857.60712 4.140149e+06 0.00 0.000000e+00 0.000 0.00 322 0.000000e+00 0.00 4.140149e+06 4.140149e+06 0.00 NULL
2023 Police Department Police Communications Technician 51249.70745 1.017819e+08 11328982.92 5.704422e+03 1941.490 291108.35 1986 1.941490e+03 3855799.14 1.131109e+08 1.056377e+08 7473183.78 NULL
2023 Police Department Police Officer 81791.96386 2.005375e+09 347336552.41 1.416659e+04 11463.150 6059092.07 24518 1.146315e+04 281053511.70 2.352712e+09 2.286429e+09 66283040.71 NULL
2023 Police Department Police Officer D/A Detective 1st Gr 135511.00000 5.799871e+07 20079743.78 4.691529e+04 50214.560 183559.22 428 4.691529e+04 20079743.78 7.807845e+07 7.807845e+07 0.00 NULL
2023 Police Department Police Officer D/A Detective 2nd Gr 118021.17914 9.618726e+07 32812905.88 4.026123e+04 43804.970 343834.56 815 4.026123e+04 32812905.88 1.290002e+08 1.290002e+08 0.00 NULL
2023 Police Department Police Surgeon 147967.08333 3.551210e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 3.551210e+06 3.551210e+06 0.00 NULL
2023 Police Department Precinct Community Relations Aide 22979.84000 6.893952e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.893952e+04 6.893952e+04 0.00 NULL
2023 Police Department Precinct Receptionist 22646.68325 1.811735e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.811735e+05 1.811735e+05 0.00 NULL
2023 Police Department Principal Administrative Associate - Non Supvr 65831.98542 2.258037e+07 1322036.71 3.854334e+03 483.940 27901.03 343 4.839400e+02 165991.42 2.390241e+07 2.274636e+07 1156045.29 NULL
2023 Police Department Principal Fingerprint Technician 56866.71429 3.980670e+05 16238.67 2.319810e+03 2404.140 439.00 7 2.319810e+03 16238.67 4.143057e+05 4.143057e+05 0.00 NULL
2023 Police Department Principal Police Communication Technician 76060.00000 5.248140e+06 1098468.50 1.591983e+04 10857.860 19027.92 69 1.085786e+04 749192.34 6.346608e+06 5.997332e+06 349276.16 NULL
2023 Police Department Printing Press Operator NA NA 182438.90 1.073170e+04 14413.140 3252.50 17 1.073170e+04 182438.90 NA NA NA NULL
2023 Police Department Procurement Analyst 69916.75000 1.118668e+06 103848.30 6.490519e+03 4286.500 2257.75 16 4.286500e+03 68584.00 1.222516e+06 1.187252e+06 35264.30 NULL
2023 Police Department Program Producer 56838.60000 2.841930e+05 12143.93 2.428786e+03 72.260 264.75 5 7.226000e+01 361.30 2.963369e+05 2.845543e+05 11782.63 NULL
2023 Police Department Property Clerk 157859.00000 1.578590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.578590e+05 1.578590e+05 0.00 NULL
2023 Police Department Psychologist 80791.78174 1.858211e+06 204620.84 8.896558e+03 3066.550 2959.00 23 3.066550e+03 70530.65 2.062832e+06 1.928742e+06 134090.19 NULL
2023 Police Department Public Health Assistant 40773.00000 4.077300e+05 18096.48 1.809648e+03 471.405 626.25 10 4.714050e+02 4714.05 4.258265e+05 4.124440e+05 13382.43 NULL
2023 Police Department Public Records Officer 59531.00000 1.190620e+05 20133.94 1.006697e+04 10066.970 492.25 2 1.006697e+04 20133.94 1.391959e+05 1.391959e+05 0.00 NULL
2023 Police Department Quality Assurance Specialist 57442.00000 5.744200e+04 11608.48 1.160848e+04 11608.480 306.75 1 1.160848e+04 11608.48 6.905048e+04 6.905048e+04 0.00 NULL
2023 Police Department Radio Repair Mechanic NA NA 1052453.71 1.525295e+04 19037.690 13413.70 69 1.525295e+04 1052453.71 NA NA NA NULL
2023 Police Department Research Assistant 72814.00000 7.281400e+04 0.18 1.800000e-01 0.180 0.00 1 1.800000e-01 0.18 7.281418e+04 7.281418e+04 0.00 NULL
2023 Police Department Roofer NA NA 43949.74 2.197487e+04 21974.870 773.50 2 2.197487e+04 43949.74 NA NA NA NULL
2023 Police Department School Crossing Guard 12345.86573 3.453139e+07 14862.96 5.313893e+00 0.000 595.00 2797 0.000000e+00 0.00 3.454625e+07 3.453139e+07 14862.96 NULL
2023 Police Department School Safety Agent 45141.75966 2.208786e+08 47553179.58 9.718614e+03 8178.450 1398522.58 4893 8.178450e+03 40017155.85 2.684318e+08 2.608958e+08 7536023.73 NULL
2023 Police Department Secretary 53989.33333 8.098400e+05 40609.35 2.707290e+03 0.000 935.50 15 0.000000e+00 0.00 8.504493e+05 8.098400e+05 40609.35 NULL
2023 Police Department Secretary Of The Department 89624.00000 8.962400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.962400e+04 8.962400e+04 0.00 NULL
2023 Police Department Secretary To The Commissioner 90000.00000 1.800000e+05 57684.58 2.884229e+04 28842.290 908.00 2 2.884229e+04 57684.58 2.376846e+05 2.376846e+05 0.00 NULL
2023 Police Department Secretary To The First Deputy Commissioner-Pd 112197.00000 1.121970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.121970e+05 1.121970e+05 0.00 NULL
2023 Police Department Senior It Architect 172307.50000 1.033845e+06 125049.40 2.084157e+04 20118.140 1108.00 6 2.011814e+04 120708.84 1.158894e+06 1.154554e+06 4340.56 NULL
2023 Police Department Senior Office Appliance Maintainer 55645.00000 5.564500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.564500e+04 5.564500e+04 0.00 NULL
2023 Police Department Senior Photographer 61731.71429 4.321220e+05 53425.54 7.632220e+03 7950.770 1273.25 7 7.632220e+03 53425.54 4.855475e+05 4.855475e+05 0.00 NULL
2023 Police Department Senior Police Administrative Aide 57379.94245 5.284693e+07 1655660.71 1.797677e+03 0.610 40690.29 921 6.100000e-01 561.81 5.450259e+07 5.284749e+07 1655098.90 NULL
2023 Police Department Senior Stationary Engineer NA NA 163650.31 5.455010e+04 77470.810 1451.50 3 5.455010e+04 163650.31 NA NA NA NULL
2023 Police Department Sergeant- 109735.59897 4.268715e+08 86050712.16 2.212101e+04 19042.955 972381.29 3890 1.904296e+04 74077094.95 5.129222e+08 5.009486e+08 11973617.21 NULL
2023 Police Department Sergeant-D/A Special Assignment 127595.45151 3.815104e+07 10089315.08 3.374353e+04 34604.740 99330.49 299 3.374353e+04 10089315.08 4.824036e+07 4.824036e+07 0.00 NULL
2023 Police Department Sergeant-D/A Supervisor Detective Squad 129431.35845 5.669094e+07 18729193.20 4.276072e+04 47679.750 179355.57 438 4.276072e+04 18729193.20 7.542013e+07 7.542013e+07 0.00 NULL
2023 Police Department Sheet Metal Worker NA NA 349290.33 4.989862e+04 60149.920 3075.00 7 4.989862e+04 349290.33 NA NA NA NULL
2023 Police Department Space Analyst 104318.00000 1.043180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.043180e+05 1.043180e+05 0.00 NULL
2023 Police Department Staff Analyst 66752.86792 3.537902e+06 54542.86 1.029111e+03 0.000 1190.25 53 0.000000e+00 0.00 3.592445e+06 3.537902e+06 54542.86 NULL
2023 Police Department Staff Analyst Trainee 50740.50000 3.044430e+05 6810.25 1.135042e+03 557.150 225.75 6 5.571500e+02 3342.90 3.112532e+05 3.077859e+05 3467.35 NULL
2023 Police Department Stationary Engineer NA NA 1216282.12 8.108547e+04 88089.180 12449.25 15 8.108547e+04 1216282.12 NA NA NA NULL
2023 Police Department Steam Fitter NA NA 383266.73 2.129260e+04 9462.195 2630.25 18 9.462195e+03 170319.51 NA NA NA NULL
2023 Police Department Stenographer To Each Deputy Commissioner 88546.33333 2.656390e+05 45984.91 1.532830e+04 19050.830 685.50 3 1.532830e+04 45984.91 3.116239e+05 3.116239e+05 0.00 NULL
2023 Police Department Stenographic Specialist 52482.25000 2.099290e+05 2332.05 5.830125e+02 0.000 68.00 4 0.000000e+00 0.00 2.122610e+05 2.099290e+05 2332.05 NULL
2023 Police Department Stock Worker 39830.84615 1.553403e+06 105792.71 2.712634e+03 379.480 3660.00 39 3.794800e+02 14799.72 1.659196e+06 1.568203e+06 90992.99 NULL
2023 Police Department Summer College Intern 4397.95677 2.111019e+05 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 2.111019e+05 2.111019e+05 0.00 NULL
2023 Police Department Summer Graduate Intern 5264.39194 7.370149e+04 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 7.370149e+04 7.370149e+04 0.00 NULL
2023 Police Department Supervising Chief Surgeon 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2023 Police Department Supervising Police Communications Technician 72868.52252 1.617681e+07 3372309.18 1.519058e+04 11780.715 60423.48 222 1.178072e+04 2615318.73 1.954912e+07 1.879213e+07 756990.45 NULL
2023 Police Department Supervisor 80647.00000 1.612940e+05 21636.43 1.081822e+04 10818.215 364.25 2 1.081822e+04 21636.43 1.829304e+05 1.829304e+05 0.00 NULL
2023 Police Department Supervisor Carpenter NA NA 32610.30 3.261030e+04 32610.300 405.75 1 3.261030e+04 32610.30 NA NA NA NULL
2023 Police Department Supervisor Electrician NA NA 113737.34 5.686867e+04 56868.670 1098.00 2 5.686867e+04 113737.34 NA NA NA NULL
2023 Police Department Supervisor Elevator Mechanic NA NA 50855.92 5.085592e+04 50855.920 504.50 1 5.085592e+04 50855.92 NA NA NA NULL
2023 Police Department Supervisor Glazier NA NA 21869.76 2.186976e+04 21869.760 228.00 1 2.186976e+04 21869.76 NA NA NA NULL
2023 Police Department Supervisor Of Mechanical Installations & Maintenance 88394.00000 8.839400e+04 27343.24 2.734324e+04 27343.240 448.00 1 2.734324e+04 27343.24 1.157372e+05 1.157372e+05 0.00 NULL
2023 Police Department Supervisor Of Mechanics 125944.82000 6.297241e+06 926223.50 1.852447e+04 18248.280 10064.25 50 1.824828e+04 912414.00 7.223464e+06 7.209655e+06 13809.50 NULL
2023 Police Department Supervisor Of Office Machine Operations 51965.66667 1.558970e+05 17995.77 5.998590e+03 14.560 414.00 3 1.456000e+01 43.68 1.738928e+05 1.559407e+05 17952.09 NULL
2023 Police Department Supervisor Of Radio Repair Operations 133522.20000 2.002833e+06 388575.86 2.590506e+04 27905.640 4170.75 15 2.590506e+04 388575.86 2.391409e+06 2.391409e+06 0.00 NULL
2023 Police Department Supervisor Of School Security 74344.00000 9.293000e+06 1701398.15 1.361119e+04 13471.900 31472.67 125 1.347190e+04 1683987.50 1.099440e+07 1.097699e+07 17410.65 NULL
2023 Police Department Supervisor Of Stock Workers 56983.42857 3.988840e+05 55104.11 7.872016e+03 6865.780 1619.00 7 6.865780e+03 48060.46 4.539881e+05 4.469445e+05 7043.65 NULL
2023 Police Department Supervisor Painter NA NA 166395.54 4.159889e+04 40219.650 2156.50 4 4.021965e+04 160878.60 NA NA NA NULL
2023 Police Department Supervisor Plumber NA NA 239805.16 5.995129e+04 78494.610 1760.50 4 5.995129e+04 239805.16 NA NA NA NULL
2023 Police Department Supervisor Roofer NA NA 9155.17 9.155170e+03 9155.170 155.00 1 9.155170e+03 9155.17 NA NA NA NULL
2023 Police Department Supervisor Sheet Metal Worker NA NA 43331.81 4.333181e+04 43331.810 352.75 1 4.333181e+04 43331.81 NA NA NA NULL
2023 Police Department Supervisor Steamfitter NA NA 118622.89 1.186229e+05 118622.890 740.00 1 1.186229e+05 118622.89 NA NA NA NULL
2023 Police Department Supervisor Thermostat Repair NA NA 88891.71 4.444586e+04 44445.855 664.50 2 4.444586e+04 88891.71 NA NA NA NULL
2023 Police Department Telecommunications Associate 94715.75000 1.136589e+06 196114.35 1.634286e+04 19392.670 2755.25 12 1.634286e+04 196114.35 1.332703e+06 1.332703e+06 0.00 NULL
2023 Police Department Telephone Service Technician 82048.33333 2.461450e+05 30591.13 1.019704e+04 14837.700 541.00 3 1.019704e+04 30591.13 2.767361e+05 2.767361e+05 0.00 NULL
2023 Police Department Thermostat Repairer NA NA 193006.18 2.412577e+04 10051.310 1534.50 8 1.005131e+04 80410.48 NA NA NA NULL
2023 Police Department Traffic Enforcement Agent 44317.60355 1.322437e+08 27999983.96 9.383373e+03 7134.355 840344.45 2984 7.134355e+03 21288915.32 1.602437e+08 1.535326e+08 6711068.64 NULL
2023 Police Department Welder NA NA 42093.43 1.403114e+04 20121.930 450.75 3 1.403114e+04 42093.43 NA NA NA NULL
2023 Public Administrator-Bronx Community Associate 49593.33333 2.975600e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.975600e+05 2.975600e+05 0.00 NULL
2023 Public Administrator-Bronx Community Coordinator 86500.00000 8.650000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.650000e+04 8.650000e+04 0.00 NULL
2023 Public Administrator-Bronx Decedent Property Agent 58253.00000 5.825300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.825300e+04 5.825300e+04 0.00 NULL
2023 Public Administrator-Bronx Deputy Public Administator 126540.00000 2.530800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.530800e+05 2.530800e+05 0.00 NULL
2023 Public Administrator-Bronx Public Administrator 189810.00000 1.898100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.898100e+05 1.898100e+05 0.00 NULL
2023 Public Administrator-Kings Community Assistant 41935.50000 1.677420e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.677420e+05 1.677420e+05 0.00 NULL
2023 Public Administrator-Kings Community Associate 44803.00000 1.344090e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.344090e+05 1.344090e+05 0.00 NULL
2023 Public Administrator-Kings Community Coordinator 67317.50000 1.346350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.346350e+05 1.346350e+05 0.00 NULL
2023 Public Administrator-Kings Decedent Property Agent 60813.66667 1.824410e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.824410e+05 1.824410e+05 0.00 NULL
2023 Public Administrator-Kings Deputy Public Administator 126540.00000 1.265400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.265400e+05 1.265400e+05 0.00 NULL
2023 Public Administrator-Kings Public Administrator 189297.00000 3.785940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.785940e+05 3.785940e+05 0.00 NULL
2023 Public Administrator-New York Accountant 71583.00000 7.158300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.158300e+04 7.158300e+04 0.00 NULL
2023 Public Administrator-New York Bookkeeper 42230.00000 4.223000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.223000e+04 4.223000e+04 0.00 NULL
2023 Public Administrator-New York Clerical Associate 50415.00000 1.512450e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.512450e+05 1.512450e+05 0.00 NULL
2023 Public Administrator-New York Decedent Property Agent 51834.33333 3.110060e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.110060e+05 3.110060e+05 0.00 NULL
2023 Public Administrator-New York Deputy Public Administator 126540.00000 1.265400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.265400e+05 1.265400e+05 0.00 NULL
2023 Public Administrator-New York Principal Administrative Associate - Non Supvr 69462.00000 6.946200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.946200e+04 6.946200e+04 0.00 NULL
2023 Public Administrator-New York Public Administrator 189810.00000 1.898100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.898100e+05 1.898100e+05 0.00 NULL
2023 Public Administrator-Queens Decedent Property Agent 52876.16667 3.172570e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.172570e+05 3.172570e+05 0.00 NULL
2023 Public Administrator-Queens Deputy Public Administator 126540.00000 2.530800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.530800e+05 2.530800e+05 0.00 NULL
2023 Public Administrator-Queens Public Administrator 189810.00000 1.898100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.898100e+05 1.898100e+05 0.00 NULL
2023 Public Administrator-Queens Secretary 50408.00000 5.040800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.040800e+04 5.040800e+04 0.00 NULL
2023 Public Administrator-Richmond Community Coordinator 79120.00000 7.912000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.912000e+04 7.912000e+04 0.00 NULL
2023 Public Administrator-Richmond Deputy Public Administator 124800.00000 1.248000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.248000e+05 1.248000e+05 0.00 NULL
2023 Public Administrator-Richmond Public Administrator 187200.00000 1.872000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.872000e+05 1.872000e+05 0.00 NULL
2023 Public Administrator-Richmond Secretary To Public Administrator 77931.00000 1.558620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.558620e+05 1.558620e+05 0.00 NULL
2023 Public Advocate Assistant To The Public Advocate 50725.00000 2.029000e+06 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 2.029000e+06 2.029000e+06 0.00 NULL
2023 Public Advocate Counsel To The Public Advocate 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2023 Public Advocate Director Of Communications 105000.00000 2.100000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.100000e+05 2.100000e+05 0.00 NULL
2023 Public Advocate Director Of The Ombudsman Program 102500.00000 2.050000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.050000e+05 2.050000e+05 0.00 NULL
2023 Public Advocate Executive Secretary To The Public Advocate 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2023 Public Advocate First Assistant To The Public Advocate 145000.00000 2.900000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.900000e+05 2.900000e+05 0.00 NULL
2023 Public Advocate Legislative Attorney 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2023 Public Advocate Legislative Information Officer 101071.42857 7.075000e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.075000e+05 7.075000e+05 0.00 NULL
2023 Public Advocate Office Assistant 29250.00000 1.170000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.170000e+05 1.170000e+05 0.00 NULL
2023 Public Advocate Office Manager 95227.27273 1.047500e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.047500e+06 1.047500e+06 0.00 NULL
2023 Public Advocate Public Advocate 184800.00000 1.848000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.848000e+05 1.848000e+05 0.00 NULL
2023 Public Advocate Special Assistant 55000.00000 5.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.500000e+04 5.500000e+04 0.00 NULL
2023 Public Advocate Summer College Intern 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2023 Public Service Corps College Aide 3712.63558 2.413213e+05 0.00 0.000000e+00 0.000 0.00 65 0.000000e+00 0.00 2.413213e+05 2.413213e+05 0.00 NULL
2023 Queens Community Board #1 Community Assistant 40119.50000 8.023900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.023900e+04 8.023900e+04 0.00 NULL
2023 Queens Community Board #1 District Manager 107285.00000 1.072850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.072850e+05 1.072850e+05 0.00 NULL
2023 Queens Community Board #10 Community Assistant 40170.00000 4.017000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.017000e+04 4.017000e+04 0.00 NULL
2023 Queens Community Board #10 Community Associate 39000.00000 3.900000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.900000e+04 3.900000e+04 0.00 NULL
2023 Queens Community Board #10 Community Coordinator 39674.24950 7.934850e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.934850e+04 7.934850e+04 0.00 NULL
2023 Queens Community Board #10 District Manager 122371.00000 1.223710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.223710e+05 1.223710e+05 0.00 NULL
2023 Queens Community Board #11 Community Associate 58269.00000 5.826900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.826900e+04 5.826900e+04 0.00 NULL
2023 Queens Community Board #11 Community Coordinator 76506.00000 7.650600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.650600e+04 7.650600e+04 0.00 NULL
2023 Queens Community Board #11 District Manager 91427.00000 9.142700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.142700e+04 9.142700e+04 0.00 NULL
2023 Queens Community Board #12 Community Assistant 42882.50000 8.576500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.576500e+04 8.576500e+04 0.00 NULL
2023 Queens Community Board #12 District Manager 119471.00000 1.194710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.194710e+05 1.194710e+05 0.00 NULL
2023 Queens Community Board #13 Community Assistant 42436.00000 4.243600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.243600e+04 4.243600e+04 0.00 NULL
2023 Queens Community Board #13 Community Coordinator 73594.00000 7.359400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.359400e+04 7.359400e+04 0.00 NULL
2023 Queens Community Board #13 District Manager 122285.00000 1.222850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.222850e+05 1.222850e+05 0.00 NULL
2023 Queens Community Board #14 Community Coordinator 83179.00000 8.317900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.317900e+04 8.317900e+04 0.00 NULL
2023 Queens Community Board #14 Community Service Aide 24921.00000 2.492100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.492100e+04 2.492100e+04 0.00 NULL
2023 Queens Community Board #14 District Manager 137910.00000 1.379100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.379100e+05 1.379100e+05 0.00 NULL
2023 Queens Community Board #2 Community Assistant 39097.00000 3.909700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.909700e+04 3.909700e+04 0.00 NULL
2023 Queens Community Board #2 Community Associate 67153.00000 6.715300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.715300e+04 6.715300e+04 0.00 NULL
2023 Queens Community Board #2 Community Service Aide 21274.68000 2.127468e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.127468e+04 2.127468e+04 0.00 NULL
2023 Queens Community Board #2 District Manager 110083.00000 1.100830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.100830e+05 1.100830e+05 0.00 NULL
2023 Queens Community Board #3 Community Coordinator 64081.00000 6.408100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.408100e+04 6.408100e+04 0.00 NULL
2023 Queens Community Board #3 Community Service Aide 32083.00000 3.208300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.208300e+04 3.208300e+04 0.00 NULL
2023 Queens Community Board #3 District Manager 114398.00000 1.143980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.143980e+05 1.143980e+05 0.00 NULL
2023 Queens Community Board #4 Community Associate 44740.50000 8.948100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.948100e+04 8.948100e+04 0.00 NULL
2023 Queens Community Board #4 Community Coordinator 91935.00000 9.193500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.193500e+04 9.193500e+04 0.00 NULL
2023 Queens Community Board #4 District Manager 110966.00000 1.109660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.109660e+05 1.109660e+05 0.00 NULL
2023 Queens Community Board #5 Community Associate 35763.66500 1.430547e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.430547e+05 1.430547e+05 0.00 NULL
2023 Queens Community Board #5 District Manager 99183.00000 9.918300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.918300e+04 9.918300e+04 0.00 NULL
2023 Queens Community Board #6 Community Coordinator 70422.00000 7.042200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.042200e+04 7.042200e+04 0.00 NULL
2023 Queens Community Board #6 Community Service Aide 27998.50000 5.599700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.599700e+04 5.599700e+04 0.00 NULL
2023 Queens Community Board #6 District Manager 123517.00000 1.235170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.235170e+05 1.235170e+05 0.00 NULL
2023 Queens Community Board #7 Community Assistant 19260.00000 3.852000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.852000e+04 3.852000e+04 0.00 NULL
2023 Queens Community Board #7 Community Associate 44083.00000 4.408300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.408300e+04 4.408300e+04 0.00 NULL
2023 Queens Community Board #7 Community Coordinator 64081.00000 6.408100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.408100e+04 6.408100e+04 0.00 NULL
2023 Queens Community Board #7 District Manager 103459.00000 1.034590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.034590e+05 1.034590e+05 0.00 NULL
2023 Queens Community Board #8 Community Assistant 38516.66667 1.155500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.155500e+05 1.155500e+05 0.00 NULL
2023 Queens Community Board #8 Community Associate 44467.50000 8.893500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.893500e+04 8.893500e+04 0.00 NULL
2023 Queens Community Board #8 Community Service Aide 2006.95500 4.013910e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.013910e+03 4.013910e+03 0.00 NULL
2023 Queens Community Board #8 District Manager 139481.00000 1.394810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.394810e+05 1.394810e+05 0.00 NULL
2023 Queens Community Board #9 Community Assistant 33426.00000 6.685200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.685200e+04 6.685200e+04 0.00 NULL
2023 Queens Community Board #9 Community Associate 56858.00000 5.685800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.685800e+04 5.685800e+04 0.00 NULL
2023 Queens Community Board #9 District Manager 90151.00000 9.015100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.015100e+04 9.015100e+04 0.00 NULL
2023 Staten Island Community Bd #1 Community Associate 58245.00000 5.824500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.824500e+04 5.824500e+04 0.00 NULL
2023 Staten Island Community Bd #1 Community Coordinator 76113.00000 7.611300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.611300e+04 7.611300e+04 0.00 NULL
2023 Staten Island Community Bd #1 District Manager 106516.50000 2.130330e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.130330e+05 2.130330e+05 0.00 NULL
2023 Staten Island Community Bd #2 Community Associate 33232.57740 3.323258e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.323258e+04 3.323258e+04 0.00 NULL
2023 Staten Island Community Bd #2 Community Coordinator 78420.00000 7.842000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.842000e+04 7.842000e+04 0.00 NULL
2023 Staten Island Community Bd #2 District Manager 131722.00000 1.317220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.317220e+05 1.317220e+05 0.00 NULL
2023 Staten Island Community Bd #3 Community Coordinator 73047.50000 1.460950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.460950e+05 1.460950e+05 0.00 NULL
2023 Staten Island Community Bd #3 District Manager 104201.00000 1.042010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.042010e+05 1.042010e+05 0.00 NULL
2023 Tax Commission *Administrative Attorney 156958.00000 1.569580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.569580e+05 1.569580e+05 0.00 NULL
2023 Tax Commission *Certified Database Administrator 119387.10000 1.193871e+05 2.35 2.350000e+00 2.350 0.00 1 2.350000e+00 2.35 1.193894e+05 1.193894e+05 0.00 NULL
2023 Tax Commission Adm Manager-Non-Mgrl 89935.39000 3.597416e+05 16390.36 4.097590e+03 3100.710 276.25 4 3.100710e+03 12402.84 3.761319e+05 3.721444e+05 3987.52 NULL
2023 Tax Commission Administrative Assessor 173250.00000 1.732500e+05 24.99 2.499000e+01 24.990 0.00 1 2.499000e+01 24.99 1.732750e+05 1.732750e+05 0.00 NULL
2023 Tax Commission Administrative Staff Analyst 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2023 Tax Commission Agency Attorney 72295.25000 4.337715e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.337715e+05 4.337715e+05 0.00 NULL
2023 Tax Commission Assistant Counsel 160611.00000 1.606110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.606110e+05 1.606110e+05 0.00 NULL
2023 Tax Commission Certified It Administrator 134459.40000 1.344594e+05 1.88 1.880000e+00 1.880 0.00 1 1.880000e+00 1.88 1.344613e+05 1.344613e+05 0.00 NULL
2023 Tax Commission Certified It Developer 129434.00000 2.588680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.588680e+05 2.588680e+05 0.00 NULL
2023 Tax Commission City Assessor 105550.85568 2.322119e+06 135509.30 6.159514e+03 4763.970 1629.50 22 4.763970e+03 104807.34 2.457628e+06 2.426926e+06 30701.96 NULL
2023 Tax Commission Clerical Associate 53704.00000 5.370400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.370400e+04 5.370400e+04 0.00 NULL
2023 Tax Commission College Aide 8741.77083 1.311266e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.311266e+05 1.311266e+05 0.00 NULL
2023 Tax Commission Commissioner 81618.00000 4.897080e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.897080e+05 4.897080e+05 0.00 NULL
2023 Tax Commission Computer Associate 93736.00000 9.373600e+04 39.31 3.931000e+01 39.310 0.00 1 3.931000e+01 39.31 9.377531e+04 9.377531e+04 0.00 NULL
2023 Tax Commission Computer Specialist 127726.00000 1.277260e+05 1.36 1.360000e+00 1.360 0.00 1 1.360000e+00 1.36 1.277274e+05 1.277274e+05 0.00 NULL
2023 Tax Commission Computer Systems Manager 196944.00000 1.969440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.969440e+05 1.969440e+05 0.00 NULL
2023 Tax Commission Executive Agency Counsel 156958.00000 1.569580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.569580e+05 1.569580e+05 0.00 NULL
2023 Tax Commission Executive Assistant To The President Of The Tax Commission 147708.00000 1.477080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.477080e+05 1.477080e+05 0.00 NULL
2023 Tax Commission President 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2023 Tax Commission Principal Administrative Associate - Non Supvr 71417.66667 2.142530e+05 474.19 1.580633e+02 0.000 10.50 3 0.000000e+00 0.00 2.147272e+05 2.142530e+05 474.19 NULL
2023 Tax Commission Secretary 68645.00000 6.864500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.864500e+04 6.864500e+04 0.00 NULL
2023 Tax Commission Secretary Of The Tax Commission 63709.00000 6.370900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.370900e+04 6.370900e+04 0.00 NULL
2023 Tax Commission Secretary To The President 84460.00000 8.446000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.446000e+04 8.446000e+04 0.00 NULL
2023 Tax Commission Special Assistant 163243.00000 1.632430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.632430e+05 1.632430e+05 0.00 NULL
2023 Taxi & Limousine Commission Accountant 86956.75000 3.478270e+05 1746.01 4.365025e+02 0.000 40.00 4 0.000000e+00 0.00 3.495730e+05 3.478270e+05 1746.01 NULL
2023 Taxi & Limousine Commission Adm Manager-Non-Mgrl 83752.50000 3.350100e+05 733.89 1.834725e+02 0.000 17.00 4 0.000000e+00 0.00 3.357439e+05 3.350100e+05 733.89 NULL
2023 Taxi & Limousine Commission Admin Community Relations Specialist 82913.00000 1.658260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.658260e+05 1.658260e+05 0.00 NULL
2023 Taxi & Limousine Commission Administratiive Taxi & Limousine Inspector 106959.73333 1.604396e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.604396e+06 1.604396e+06 0.00 NULL
2023 Taxi & Limousine Commission Administrative City Planner 134930.00000 1.349300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.349300e+05 1.349300e+05 0.00 NULL
2023 Taxi & Limousine Commission Administrative Community Relations Specialist 131000.00000 1.310000e+05 590.23 5.902300e+02 590.230 10.00 1 5.902300e+02 590.23 1.315902e+05 1.315902e+05 0.00 NULL
2023 Taxi & Limousine Commission Administrative Management Auditor 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2023 Taxi & Limousine Commission Administrative Manager 164661.00000 1.646610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.646610e+05 1.646610e+05 0.00 NULL
2023 Taxi & Limousine Commission Administrative Procurement Analyst-Non-Mgrl 102000.00000 1.020000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020000e+05 1.020000e+05 0.00 NULL
2023 Taxi & Limousine Commission Administrative Public Information Specialist 164964.50000 3.299290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.299290e+05 3.299290e+05 0.00 NULL
2023 Taxi & Limousine Commission Administrative Quality Assurance Specialist 110980.00000 1.109800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.109800e+05 1.109800e+05 0.00 NULL
2023 Taxi & Limousine Commission Administrative Staff Analyst 145637.66667 1.310739e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.310739e+06 1.310739e+06 0.00 NULL
2023 Taxi & Limousine Commission Agency Attorney 82694.45714 2.894306e+06 85523.64 2.443533e+03 0.000 1461.25 35 0.000000e+00 0.00 2.979830e+06 2.894306e+06 85523.64 NULL
2023 Taxi & Limousine Commission Agency Attorney Interne 65071.28571 4.554990e+05 3148.13 4.497329e+02 532.220 73.00 7 4.497329e+02 3148.13 4.586471e+05 4.586471e+05 0.00 NULL
2023 Taxi & Limousine Commission Associate Investigator 79639.00000 7.963900e+04 10.67 1.067000e+01 10.670 0.00 1 1.067000e+01 10.67 7.964967e+04 7.964967e+04 0.00 NULL
2023 Taxi & Limousine Commission Associate Staff Analyst 93840.33333 2.815210e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.815210e+05 2.815210e+05 0.00 NULL
2023 Taxi & Limousine Commission Associate Taxi & Limousine Inspector 67680.03774 3.587042e+06 187087.04 3.529944e+03 1745.520 3569.25 53 1.745520e+03 92512.56 3.774129e+06 3.679555e+06 94574.48 NULL
2023 Taxi & Limousine Commission Cashier 43420.17600 2.171009e+05 580.67 1.161340e+02 76.230 22.50 5 7.623000e+01 381.15 2.176815e+05 2.174820e+05 199.52 NULL
2023 Taxi & Limousine Commission Certified It Administrator 141684.00000 2.833680e+05 1750.43 8.752150e+02 875.215 16.50 2 8.752150e+02 1750.43 2.851184e+05 2.851184e+05 0.00 NULL
2023 Taxi & Limousine Commission Certified It Developer 108150.00000 1.081500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081500e+05 1.081500e+05 0.00 NULL
2023 Taxi & Limousine Commission Chairman 243171.00000 2.431710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.431710e+05 2.431710e+05 0.00 NULL
2023 Taxi & Limousine Commission Chief Of Staff 185000.00000 1.850000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.850000e+05 1.850000e+05 0.00 NULL
2023 Taxi & Limousine Commission City Research Scientist 97768.58333 1.173223e+06 1338.78 1.115650e+02 0.000 18.00 12 0.000000e+00 0.00 1.174562e+06 1.173223e+06 1338.78 NULL
2023 Taxi & Limousine Commission City Tax Auditor 73093.00000 7.309300e+04 2087.04 2.087040e+03 2087.040 38.00 1 2.087040e+03 2087.04 7.518004e+04 7.518004e+04 0.00 NULL
2023 Taxi & Limousine Commission Clerical Aide 38910.00000 3.891000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.891000e+04 3.891000e+04 0.00 NULL
2023 Taxi & Limousine Commission Clerical Associate 48418.46639 2.953526e+06 16483.15 2.702156e+02 0.000 519.25 61 0.000000e+00 0.00 2.970010e+06 2.953526e+06 16483.15 NULL
2023 Taxi & Limousine Commission College Aide 4262.08854 5.114506e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 5.114506e+04 5.114506e+04 0.00 NULL
2023 Taxi & Limousine Commission Community Assistant 26193.99086 2.881339e+05 4019.15 3.653773e+02 161.480 112.50 11 1.614800e+02 1776.28 2.921530e+05 2.899102e+05 2242.87 NULL
2023 Taxi & Limousine Commission Community Associate 45130.45184 2.978610e+06 121557.50 1.841780e+03 0.000 3325.00 66 0.000000e+00 0.00 3.100167e+06 2.978610e+06 121557.50 NULL
2023 Taxi & Limousine Commission Community Coordinator 73524.96875 2.352799e+06 19096.53 5.967666e+02 0.000 411.25 32 0.000000e+00 0.00 2.371896e+06 2.352799e+06 19096.53 NULL
2023 Taxi & Limousine Commission Computer Aide-Non-Spvr 57309.82500 2.865491e+05 3621.38 7.242760e+02 49.140 79.25 5 4.914000e+01 245.70 2.901705e+05 2.867948e+05 3375.68 NULL
2023 Taxi & Limousine Commission Computer Associate 78584.78646 4.715087e+05 1948.39 3.247317e+02 4.795 34.75 6 4.795000e+00 28.77 4.734571e+05 4.715375e+05 1919.62 NULL
2023 Taxi & Limousine Commission Computer Operations Manager 138684.00000 4.160520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.160520e+05 4.160520e+05 0.00 NULL
2023 Taxi & Limousine Commission Computer Programmer Analyst 80864.95000 1.617299e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.617299e+05 1.617299e+05 0.00 NULL
2023 Taxi & Limousine Commission Computer Specialist 115381.16667 1.384574e+06 2221.62 1.851350e+02 0.280 32.50 12 2.800000e-01 3.36 1.386796e+06 1.384577e+06 2218.26 NULL
2023 Taxi & Limousine Commission Computer Systems Manager 147409.40000 1.474094e+06 1553.43 1.553430e+02 0.000 18.50 10 0.000000e+00 0.00 1.475647e+06 1.474094e+06 1553.43 NULL
2023 Taxi & Limousine Commission Confidential Strategy Planner 85270.66667 2.558120e+05 82.77 2.759000e+01 0.000 1.50 3 0.000000e+00 0.00 2.558948e+05 2.558120e+05 82.77 NULL
2023 Taxi & Limousine Commission Customer Information Representative Ma L 1549 48053.52029 8.169098e+05 4881.64 2.871553e+02 0.000 160.50 17 0.000000e+00 0.00 8.217915e+05 8.169098e+05 4881.64 NULL
2023 Taxi & Limousine Commission Cyber Security Analyst 92700.00000 9.270000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.270000e+04 9.270000e+04 0.00 NULL
2023 Taxi & Limousine Commission Deputy Commissioner 194958.00000 1.949580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.949580e+05 1.949580e+05 0.00 NULL
2023 Taxi & Limousine Commission Economist 73687.80000 3.684390e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.684390e+05 3.684390e+05 0.00 NULL
2023 Taxi & Limousine Commission Executive Agency Counsel 158066.21429 2.212927e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.212927e+06 2.212927e+06 0.00 NULL
2023 Taxi & Limousine Commission Executive Assistant 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2023 Taxi & Limousine Commission Graphic Artist 54006.00000 5.400600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.400600e+04 5.400600e+04 0.00 NULL
2023 Taxi & Limousine Commission It Project Specialist 115875.00000 2.317500e+05 3.45 1.725000e+00 1.725 0.00 2 1.725000e+00 3.45 2.317535e+05 2.317535e+05 0.00 NULL
2023 Taxi & Limousine Commission Maintenance Worker NA NA 30049.71 1.502485e+04 15024.855 637.00 2 1.502485e+04 30049.71 NA NA NA NULL
2023 Taxi & Limousine Commission Motor Vehicle Operator 47033.79000 1.881352e+05 27056.99 6.764248e+03 6915.310 856.75 4 6.764248e+03 27056.99 2.151921e+05 2.151921e+05 0.00 NULL
2023 Taxi & Limousine Commission New York City Public Service Fellow 44238.50000 8.847700e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.847700e+04 8.847700e+04 0.00 NULL
2023 Taxi & Limousine Commission Operations Communications Specialist 37681.28658 3.014503e+05 5814.29 7.267862e+02 348.040 182.75 8 3.480400e+02 2784.32 3.072646e+05 3.042346e+05 3029.97 NULL
2023 Taxi & Limousine Commission Photographer 50280.00000 5.028000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.028000e+04 5.028000e+04 0.00 NULL
2023 Taxi & Limousine Commission Principal Administrative Associate - Non Supvr 69097.48649 2.556607e+06 86548.47 2.339148e+03 0.000 1752.00 37 0.000000e+00 0.00 2.643155e+06 2.556607e+06 86548.47 NULL
2023 Taxi & Limousine Commission Procurement Analyst 66744.00000 6.674400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.674400e+04 6.674400e+04 0.00 NULL
2023 Taxi & Limousine Commission Quality Assurance Specialist 49950.00000 4.995000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.995000e+04 4.995000e+04 0.00 NULL
2023 Taxi & Limousine Commission Secretary 46176.00000 9.235200e+04 62.31 3.115500e+01 31.155 0.00 2 3.115500e+01 62.31 9.241431e+04 9.241431e+04 0.00 NULL
2023 Taxi & Limousine Commission Staff Analyst 62174.80000 3.108740e+05 789.59 1.579180e+02 0.000 22.75 5 0.000000e+00 0.00 3.116636e+05 3.108740e+05 789.59 NULL
2023 Taxi & Limousine Commission Stock Worker 24525.71156 9.810285e+04 7788.23 1.947057e+03 579.560 338.75 4 5.795600e+02 2318.24 1.058911e+05 1.004211e+05 5469.99 NULL
2023 Taxi & Limousine Commission Supervisor Of Stock Workers 60481.06167 1.814432e+05 5769.88 1.923293e+03 1630.530 150.50 3 1.630530e+03 4891.59 1.872131e+05 1.863348e+05 878.29 NULL
2023 Taxi & Limousine Commission Taxi And Limousine Inspector 52759.64072 8.810860e+06 229633.16 1.375049e+03 795.450 5635.75 167 7.954500e+02 132840.15 9.040493e+06 8.943700e+06 96793.01 NULL
2023 Taxi & Limousine Commission Telecommunications Associate 71766.00000 7.176600e+04 11.41 1.141000e+01 11.410 0.00 1 1.141000e+01 11.41 7.177741e+04 7.177741e+04 0.00 NULL
2023 Taxi & Limousine Commission Transportation Specialist 77784.50000 1.555690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.555690e+05 1.555690e+05 0.00 NULL
2023 Teachers Retirement System Accountant 73865.50000 7.386550e+05 1585.22 1.585220e+02 0.000 35.50 10 0.000000e+00 0.00 7.402402e+05 7.386550e+05 1585.22 NULL
2023 Teachers Retirement System Actuarial Specialist Level I 121041.00000 1.210410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.210410e+05 1.210410e+05 0.00 NULL
2023 Teachers Retirement System Adm Manager-Non-Mgrl 81964.66667 7.376820e+05 4039.99 4.488878e+02 0.000 96.00 9 0.000000e+00 0.00 7.417220e+05 7.376820e+05 4039.99 NULL
2023 Teachers Retirement System Administrative Accountant 97157.44444 8.744170e+05 15364.45 1.707161e+03 0.000 246.75 9 0.000000e+00 0.00 8.897814e+05 8.744170e+05 15364.45 NULL
2023 Teachers Retirement System Administrative Community Relations Specialist 98050.00000 9.805000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.805000e+04 9.805000e+04 0.00 NULL
2023 Teachers Retirement System Administrative Director Of Social Services 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2023 Teachers Retirement System Administrative Management Auditor 162500.00000 3.250000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.250000e+05 3.250000e+05 0.00 NULL
2023 Teachers Retirement System Administrative Manager 121320.00000 1.091880e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.091880e+06 1.091880e+06 0.00 NULL
2023 Teachers Retirement System Administrative Project Manager 166226.00000 1.662260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.662260e+05 1.662260e+05 0.00 NULL
2023 Teachers Retirement System Administrative Public Information Specialist 101268.50000 2.025370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.025370e+05 2.025370e+05 0.00 NULL
2023 Teachers Retirement System Administrative Retirement Benefits Specialist 120881.29630 3.263795e+06 21.27 7.877778e-01 0.000 0.00 27 0.000000e+00 0.00 3.263816e+06 3.263795e+06 21.27 NULL
2023 Teachers Retirement System Administrative Retirements Benefits Specialist 103982.81818 1.143811e+06 1907.23 1.733845e+02 0.000 23.00 11 0.000000e+00 0.00 1.145718e+06 1.143811e+06 1907.23 NULL
2023 Teachers Retirement System Administrative Staff Analyst 108836.25000 1.306035e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.306035e+06 1.306035e+06 0.00 NULL
2023 Teachers Retirement System Agency Attorney 101563.00000 4.062520e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.062520e+05 4.062520e+05 0.00 NULL
2023 Teachers Retirement System Assistant Executive Director 196394.00000 3.927880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.927880e+05 3.927880e+05 0.00 NULL
2023 Teachers Retirement System Assistant Retirement Benefits Examiner 50314.10345 1.459109e+06 2797.20 9.645517e+01 0.000 88.00 29 0.000000e+00 0.00 1.461906e+06 1.459109e+06 2797.20 NULL
2023 Teachers Retirement System Associate Public Records Officer 75977.00000 7.597700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.597700e+04 7.597700e+04 0.00 NULL
2023 Teachers Retirement System Associate Retirement Benefits Examiner 70551.40860 6.561281e+06 61600.97 6.623760e+02 0.000 1158.50 93 0.000000e+00 0.00 6.622882e+06 6.561281e+06 61600.97 NULL
2023 Teachers Retirement System Associate Staff Analyst 81302.00000 1.626040e+05 382.88 1.914400e+02 191.440 5.75 2 1.914400e+02 382.88 1.629869e+05 1.629869e+05 0.00 NULL
2023 Teachers Retirement System Bookkeeper 58521.50000 2.340860e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.340860e+05 2.340860e+05 0.00 NULL
2023 Teachers Retirement System Certified It Administrator 101628.00000 1.016280e+05 2.57 2.570000e+00 2.570 0.00 1 2.570000e+00 2.57 1.016306e+05 1.016306e+05 0.00 NULL
2023 Teachers Retirement System Certified It Developer 131468.00000 1.314680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.314680e+05 1.314680e+05 0.00 NULL
2023 Teachers Retirement System Clerical Associate 57264.07692 7.444330e+05 1.07 8.230770e-02 0.000 0.00 13 0.000000e+00 0.00 7.444341e+05 7.444330e+05 1.07 NULL
2023 Teachers Retirement System College Aide 10624.30114 1.168673e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.168673e+05 1.168673e+05 0.00 NULL
2023 Teachers Retirement System College Aide - Assignment Levels Ii And Iii 10370.28854 7.259202e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.259202e+04 7.259202e+04 0.00 NULL
2023 Teachers Retirement System Community Associate 58153.50000 1.163070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.163070e+05 1.163070e+05 0.00 NULL
2023 Teachers Retirement System Community Coordinator 82136.00000 1.642720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.642720e+05 1.642720e+05 0.00 NULL
2023 Teachers Retirement System Computer Associate 82565.12500 6.605210e+05 7842.86 9.803575e+02 14.610 96.25 8 1.461000e+01 116.88 6.683639e+05 6.606379e+05 7725.98 NULL
2023 Teachers Retirement System Computer Operations Manager 133305.50000 2.666110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.666110e+05 2.666110e+05 0.00 NULL
2023 Teachers Retirement System Computer Specialist 119114.17241 3.454311e+06 401.92 1.385931e+01 0.000 5.25 29 0.000000e+00 0.00 3.454713e+06 3.454311e+06 401.92 NULL
2023 Teachers Retirement System Computer Systems Manager 160038.80435 7.361785e+06 8.67 1.884783e-01 0.000 0.00 46 0.000000e+00 0.00 7.361794e+06 7.361785e+06 8.67 NULL
2023 Teachers Retirement System Customer Information Representative Ma L 1549 60542.73913 1.392483e+06 4512.70 1.962043e+02 0.000 114.00 23 0.000000e+00 0.00 1.396996e+06 1.392483e+06 4512.70 NULL
2023 Teachers Retirement System Cyber Security Analyst 72100.00000 7.210000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.210000e+04 7.210000e+04 0.00 NULL
2023 Teachers Retirement System Deputy Executive Director 235458.00000 2.354580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.354580e+05 2.354580e+05 0.00 NULL
2023 Teachers Retirement System Executive Agency Counsel 181186.00000 3.623720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.623720e+05 3.623720e+05 0.00 NULL
2023 Teachers Retirement System Executive Director 244491.00000 2.444910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.444910e+05 2.444910e+05 0.00 NULL
2023 Teachers Retirement System Graphic Artist 71175.00000 2.135250e+05 510.55 1.701833e+02 143.680 10.75 3 1.436800e+02 431.04 2.140355e+05 2.139560e+05 79.51 NULL
2023 Teachers Retirement System Investment Analyst 75543.33333 2.266300e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.266300e+05 2.266300e+05 0.00 NULL
2023 Teachers Retirement System Labor Relations Analyst 72784.00000 7.278400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.278400e+04 7.278400e+04 0.00 NULL
2023 Teachers Retirement System Labor Relations Analyst Trainee 45540.00000 4.554000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.554000e+04 4.554000e+04 0.00 NULL
2023 Teachers Retirement System Legal Secretarial Assistant 45000.00000 4.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.500000e+04 4.500000e+04 0.00 NULL
2023 Teachers Retirement System Management Auditor 83706.00000 4.185300e+05 746.19 1.492380e+02 0.000 12.75 5 0.000000e+00 0.00 4.192762e+05 4.185300e+05 746.19 NULL
2023 Teachers Retirement System Management Auditor Trainee 52633.00000 5.263300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.263300e+04 5.263300e+04 0.00 NULL
2023 Teachers Retirement System Office Machine Aide 52147.00000 2.085880e+05 1.72 4.300000e-01 0.000 0.00 4 0.000000e+00 0.00 2.085897e+05 2.085880e+05 1.72 NULL
2023 Teachers Retirement System Paralegal Aide 65262.00000 6.526200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.526200e+04 6.526200e+04 0.00 NULL
2023 Teachers Retirement System Principal Administrative Associate - Non Supvr 68765.30769 8.939490e+05 58.01 4.462308e+00 0.000 1.50 13 0.000000e+00 0.00 8.940070e+05 8.939490e+05 58.01 NULL
2023 Teachers Retirement System Public Records Officer 63654.00000 6.365400e+04 143.76 1.437600e+02 143.760 4.25 1 1.437600e+02 143.76 6.379776e+04 6.379776e+04 0.00 NULL
2023 Teachers Retirement System Secretary To The Executive Director Of Retirement System 49329.00000 4.932900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.932900e+04 4.932900e+04 0.00 NULL
2023 Teachers Retirement System Staff Analyst 70671.00000 1.413420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.413420e+05 1.413420e+05 0.00 NULL
2023 Teachers Retirement System Summer College Intern 3060.47917 1.285401e+05 0.00 0.000000e+00 0.000 0.00 42 0.000000e+00 0.00 1.285401e+05 1.285401e+05 0.00 NULL
2023 Teachers Retirement System Supervisor Of Office Machine Operations 48341.00000 4.834100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.834100e+04 4.834100e+04 0.00 NULL
2023 Teachers Retirement System Supervisor Of Stock Workers 58537.66667 1.756130e+05 364.79 1.215967e+02 0.000 10.00 3 0.000000e+00 0.00 1.759778e+05 1.756130e+05 364.79 NULL
2023 Teachers Retirement System Telecommunications Associate 61625.00000 2.465000e+05 1.15 2.875000e-01 0.000 0.00 4 0.000000e+00 0.00 2.465011e+05 2.465000e+05 1.15 NULL
2023 Technology & Innovation *Certified Local Area Network Administrator 107441.00000 1.074410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074410e+05 1.074410e+05 0.00 NULL
2023 Technology & Innovation Accountant 90446.00000 9.044600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.044600e+04 9.044600e+04 0.00 NULL
2023 Technology & Innovation Adm Manager-Non-Mgrl 100708.19355 3.121954e+06 15478.28 4.992994e+02 0.000 296.00 31 0.000000e+00 0.00 3.137432e+06 3.121954e+06 15478.28 NULL
2023 Technology & Innovation Admin Contract Specialist 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2023 Technology & Innovation Administrative Business Promotion Coordinator 133270.68750 2.132331e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.132331e+06 2.132331e+06 0.00 NULL
2023 Technology & Innovation Administrative Community Relations Specialist 241116.00000 2.411160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.411160e+05 2.411160e+05 0.00 NULL
2023 Technology & Innovation Administrative Construction Project Manager 151976.50000 3.039530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.039530e+05 3.039530e+05 0.00 NULL
2023 Technology & Innovation Administrative Graphic Artist 139050.00000 4.171500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.171500e+05 4.171500e+05 0.00 NULL
2023 Technology & Innovation Administrative Labor Relations Analyst 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2023 Technology & Innovation Administrative Manager 195700.00000 1.957000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.957000e+05 1.957000e+05 0.00 NULL
2023 Technology & Innovation Administrative Procurement Analyst 146275.00000 2.925500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.925500e+05 2.925500e+05 0.00 NULL
2023 Technology & Innovation Administrative Procurement Analyst-Non-Mgrl 109000.87500 8.720070e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.720070e+05 8.720070e+05 0.00 NULL
2023 Technology & Innovation Administrative Project Manager 200558.00000 4.011160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.011160e+05 4.011160e+05 0.00 NULL
2023 Technology & Innovation Administrative Public Information Specialist 123333.33333 7.400000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.400000e+05 7.400000e+05 0.00 NULL
2023 Technology & Innovation Administrative Public Information Specialist Nm Former M1/M2 126875.00000 2.537500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.537500e+05 2.537500e+05 0.00 NULL
2023 Technology & Innovation Administrative Staff Analyst 137525.57627 8.114009e+06 2812.33 4.766661e+01 0.000 47.25 59 0.000000e+00 0.00 8.116821e+06 8.114009e+06 2812.33 NULL
2023 Technology & Innovation Agency Attorney 102748.57143 7.192400e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.192400e+05 7.192400e+05 0.00 NULL
2023 Technology & Innovation Agency Chief Contracting Officer 165000.00000 1.650000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.650000e+05 1.650000e+05 0.00 NULL
2023 Technology & Innovation Assistant Commissioner 176000.00000 1.760000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.760000e+05 1.760000e+05 0.00 NULL
2023 Technology & Innovation Associate Call Center Representative-Non-Spvr 66009.03175 4.158569e+06 25200.48 4.000076e+02 0.000 544.25 63 0.000000e+00 0.00 4.183769e+06 4.158569e+06 25200.48 NULL
2023 Technology & Innovation Associate Commissioner 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2023 Technology & Innovation Associate Investigator 77451.00000 1.549020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.549020e+05 1.549020e+05 0.00 NULL
2023 Technology & Innovation Associate Quality Assurance Specialist 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2023 Technology & Innovation Associate Staff Analyst 88477.85714 6.193450e+05 1160.86 1.658371e+02 0.000 11.50 7 0.000000e+00 0.00 6.205059e+05 6.193450e+05 1160.86 NULL
2023 Technology & Innovation Business Promotion Coordinator 75132.66667 6.761940e+05 643.72 7.152444e+01 0.000 13.00 9 0.000000e+00 0.00 6.768377e+05 6.761940e+05 643.72 NULL
2023 Technology & Innovation Call Center Representative 40887.61915 1.835854e+07 23459.48 5.224829e+01 0.000 846.50 449 0.000000e+00 0.00 1.838200e+07 1.835854e+07 23459.48 NULL
2023 Technology & Innovation Certified It Administrator 130834.69565 1.805519e+07 239177.30 1.733169e+03 7.450 2614.25 138 7.450000e+00 1028.10 1.829437e+07 1.805622e+07 238149.20 NULL
2023 Technology & Innovation Certified It Developer 124318.78947 2.362057e+06 1305.10 6.868947e+01 0.000 18.75 19 0.000000e+00 0.00 2.363362e+06 2.362057e+06 1305.10 NULL
2023 Technology & Innovation Chief Operating Officer 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2023 Technology & Innovation City Research Scientist 107454.33333 9.670890e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.670890e+05 9.670890e+05 0.00 NULL
2023 Technology & Innovation Clerical Associate 53649.60870 1.233941e+06 688.72 2.994435e+01 0.000 17.50 23 0.000000e+00 0.00 1.234630e+06 1.233941e+06 688.72 NULL
2023 Technology & Innovation College Aide 9642.79688 7.714238e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.714238e+04 7.714238e+04 0.00 NULL
2023 Technology & Innovation Commissioner Of Dept Of Info Technology & Telecommunications 247577.00000 2.475770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.475770e+05 2.475770e+05 0.00 NULL
2023 Technology & Innovation Community Assistant 38607.00000 3.860700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.860700e+04 3.860700e+04 0.00 NULL
2023 Technology & Innovation Community Associate 53661.36585 2.200116e+06 12712.38 3.100580e+02 0.000 307.00 41 0.000000e+00 0.00 2.212828e+06 2.200116e+06 12712.38 NULL
2023 Technology & Innovation Community Coordinator 78108.70320 4.452196e+06 19769.56 3.468344e+02 0.000 393.00 57 0.000000e+00 0.00 4.471966e+06 4.452196e+06 19769.56 NULL
2023 Technology & Innovation Computer Aide-Non-Spvr 55565.33333 5.000880e+05 1363.00 1.514444e+02 5.590 35.25 9 5.590000e+00 50.31 5.014510e+05 5.001383e+05 1312.69 NULL
2023 Technology & Innovation Computer Associate 84652.91818 9.311821e+06 304465.32 2.767867e+03 33.165 4145.17 110 3.316500e+01 3648.15 9.616286e+06 9.315469e+06 300817.17 NULL
2023 Technology & Innovation Computer Operations Manager 142858.88889 5.142920e+06 25946.13 7.207258e+02 0.000 263.00 36 0.000000e+00 0.00 5.168866e+06 5.142920e+06 25946.13 NULL
2023 Technology & Innovation Computer Programmer Analyst 76196.50000 3.047860e+05 764.15 1.910375e+02 27.495 17.00 4 2.749500e+01 109.98 3.055502e+05 3.048960e+05 654.17 NULL
2023 Technology & Innovation Computer Service Technician 71768.00000 7.176800e+04 28.48 2.848000e+01 28.480 0.00 1 2.848000e+01 28.48 7.179648e+04 7.179648e+04 0.00 NULL
2023 Technology & Innovation Computer Specialist 121409.56250 2.136808e+07 173992.41 9.885932e+02 0.000 2123.75 176 0.000000e+00 0.00 2.154208e+07 2.136808e+07 173992.41 NULL
2023 Technology & Innovation Computer Systems Manager 147834.70270 3.828919e+07 83118.71 3.209217e+02 0.000 894.50 259 0.000000e+00 0.00 3.837231e+07 3.828919e+07 83118.71 NULL
2023 Technology & Innovation Confidential Strategy Planner 88286.00000 5.297160e+05 929.55 1.549250e+02 0.000 10.50 6 0.000000e+00 0.00 5.306456e+05 5.297160e+05 929.55 NULL
2023 Technology & Innovation Cyber Security Analyst 91908.25397 5.790220e+06 28451.41 4.516097e+02 0.000 554.50 63 0.000000e+00 0.00 5.818671e+06 5.790220e+06 28451.41 NULL
2023 Technology & Innovation Deputy Commissioner 141250.00000 5.650000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.650000e+05 5.650000e+05 0.00 NULL
2023 Technology & Innovation Deputy Commissioner Film Office 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2023 Technology & Innovation Deputy Commissioner Of It 225026.40000 1.125132e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.125132e+06 1.125132e+06 0.00 NULL
2023 Technology & Innovation Director Of Television 66264.00000 1.325280e+05 6114.82 3.057410e+03 3057.410 126.00 2 3.057410e+03 6114.82 1.386428e+05 1.386428e+05 0.00 NULL
2023 Technology & Innovation Economist 87678.00000 1.753560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.753560e+05 1.753560e+05 0.00 NULL
2023 Technology & Innovation Executive Agency Counsel 171476.90323 5.315784e+06 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 5.315784e+06 5.315784e+06 0.00 NULL
2023 Technology & Innovation Executive Program Specialist 106200.00000 1.062000e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.062000e+06 1.062000e+06 0.00 NULL
2023 Technology & Innovation Film Manager 77376.00000 7.737600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.737600e+04 7.737600e+04 0.00 NULL
2023 Technology & Innovation First Deputy Commissioner 164000.00000 1.640000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.640000e+05 1.640000e+05 0.00 NULL
2023 Technology & Innovation Graphic Artist 87377.75000 3.495110e+05 194.40 4.860000e+01 0.000 0.00 4 0.000000e+00 0.00 3.497054e+05 3.495110e+05 194.40 NULL
2023 Technology & Innovation Inspector 64220.66667 1.926620e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.926620e+05 1.926620e+05 0.00 NULL
2023 Technology & Innovation It Automation And Monitoring Engineer 135124.60000 6.756230e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.756230e+05 6.756230e+05 0.00 NULL
2023 Technology & Innovation It Infrastructure Engineer 138685.77778 1.248172e+06 1479.84 1.644267e+02 0.000 14.25 9 0.000000e+00 0.00 1.249652e+06 1.248172e+06 1479.84 NULL
2023 Technology & Innovation It Project Specialist 117719.27273 5.179648e+06 67671.53 1.537989e+03 0.000 942.00 44 0.000000e+00 0.00 5.247320e+06 5.179648e+06 67671.53 NULL
2023 Technology & Innovation It Security Specialist 147492.07059 1.253683e+07 62682.71 7.374436e+02 0.000 711.00 85 0.000000e+00 0.00 1.259951e+07 1.253683e+07 62682.71 NULL
2023 Technology & Innovation It Service Management Specialist 111848.66667 6.710920e+05 28.74 4.790000e+00 0.000 0.50 6 0.000000e+00 0.00 6.711207e+05 6.710920e+05 28.74 NULL
2023 Technology & Innovation Labor Relations Analyst 82298.00000 8.229800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.229800e+04 8.229800e+04 0.00 NULL
2023 Technology & Innovation New York City Public Service Fellow 42127.00000 1.263810e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.263810e+05 1.263810e+05 0.00 NULL
2023 Technology & Innovation Principal Administrative Associate - Non Supvr 70681.82286 1.979091e+06 41423.00 1.479393e+03 0.000 867.00 28 0.000000e+00 0.00 2.020514e+06 1.979091e+06 41423.00 NULL
2023 Technology & Innovation Procurement Analyst 86235.28571 6.036470e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.036470e+05 6.036470e+05 0.00 NULL
2023 Technology & Innovation Program Producer 78098.77778 7.028890e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.028890e+05 7.028890e+05 0.00 NULL
2023 Technology & Innovation Quality Assurance Specialist 57098.00000 5.709800e+04 3406.50 3.406500e+03 3406.500 93.00 1 3.406500e+03 3406.50 6.050450e+04 6.050450e+04 0.00 NULL
2023 Technology & Innovation Radio And Television Operator 62113.44762 1.304382e+06 50342.83 2.397278e+03 252.450 979.25 21 2.524500e+02 5301.45 1.354725e+06 1.309684e+06 45041.38 NULL
2023 Technology & Innovation Secretary 68436.00000 6.843600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.843600e+04 6.843600e+04 0.00 NULL
2023 Technology & Innovation Secretary Of Commissioner 61800.00000 6.180000e+04 5302.28 5.302280e+03 5302.280 124.50 1 5.302280e+03 5302.28 6.710228e+04 6.710228e+04 0.00 NULL
2023 Technology & Innovation Secretary To The Deputy Commissioner 75197.00000 7.519700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.519700e+04 7.519700e+04 0.00 NULL
2023 Technology & Innovation Senior It Architect 183716.87500 1.469735e+06 441.66 5.520750e+01 0.000 4.00 8 0.000000e+00 0.00 1.470177e+06 1.469735e+06 441.66 NULL
2023 Technology & Innovation Staff Analyst 72196.85714 1.010756e+06 3384.35 2.417393e+02 0.000 66.25 14 0.000000e+00 0.00 1.014140e+06 1.010756e+06 3384.35 NULL
2023 Technology & Innovation Staff Analyst Trainee 47824.00000 4.782400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.782400e+04 4.782400e+04 0.00 NULL
2023 Technology & Innovation Strategic Initiative Specialist 94049.00000 1.880980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.880980e+05 1.880980e+05 0.00 NULL
2023 Technology & Innovation Summer College Intern 2610.53333 1.644636e+05 0.00 0.000000e+00 0.000 0.00 63 0.000000e+00 0.00 1.644636e+05 1.644636e+05 0.00 NULL
2023 Technology & Innovation Summer Graduate Intern 4702.03119 1.880812e+05 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 1.880812e+05 1.880812e+05 0.00 NULL
2023 Technology & Innovation Supervising Computer Service Technician 77346.00000 7.734600e+04 518.03 5.180300e+02 518.030 10.00 1 5.180300e+02 518.03 7.786403e+04 7.786403e+04 0.00 NULL
2023 Technology & Innovation Supervisor Of Radio And Television Operators 87839.00000 5.270340e+05 328.75 5.479167e+01 0.000 6.00 6 0.000000e+00 0.00 5.273628e+05 5.270340e+05 328.75 NULL
2023 Technology & Innovation Telecommunication Manager 154631.30769 4.020414e+06 48.52 1.866154e+00 0.000 0.00 26 0.000000e+00 0.00 4.020463e+06 4.020414e+06 48.52 NULL
2023 Technology & Innovation Telecommunications Associate 84283.83951 6.826991e+06 76538.82 9.449237e+02 2.640 1151.25 81 2.640000e+00 213.84 6.903530e+06 6.827205e+06 76324.98 NULL
2023 Technology & Innovation Telecommunications Manager 121709.54545 1.338805e+06 19808.93 1.800812e+03 0.000 216.75 11 0.000000e+00 0.00 1.358614e+06 1.338805e+06 19808.93 NULL
2024 Admin For Children’s Svcs *Attorney At Law 115937.77778 1.043440e+06 16483.29 1.831477e+03 0.000 197.00 9 0.000000e+00 0.00 1.059923e+06 1.043440e+06 16483.29 NULL
2024 Admin For Children’s Svcs *Certified Database Administrator 138251.50000 2.765030e+05 4986.21 2.493105e+03 2493.105 55.00 2 2.493105e+03 4986.21 2.814892e+05 2.814892e+05 0.00 NULL
2024 Admin For Children’s Svcs *Certified Local Area Network Administrator 108150.00000 1.081500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081500e+05 1.081500e+05 0.00 NULL
2024 Admin For Children’s Svcs *Cook 43230.10000 4.323010e+05 87875.55 8.787555e+03 5122.720 2740.00 10 5.122720e+03 51227.20 5.201765e+05 4.835282e+05 36648.35 NULL
2024 Admin For Children’s Svcs *Senior Cook 47801.50000 1.912060e+05 13709.31 3.427327e+03 952.905 381.00 4 9.529050e+02 3811.62 2.049153e+05 1.950176e+05 9897.69 NULL
2024 Admin For Children’s Svcs Accountant 79494.16667 4.769650e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.769650e+05 4.769650e+05 0.00 NULL
2024 Admin For Children’s Svcs Adm Manager-Non-Mgrl 87281.53383 1.160844e+07 568878.99 4.277286e+03 0.000 9119.60 133 0.000000e+00 0.00 1.217732e+07 1.160844e+07 568878.99 NULL
2024 Admin For Children’s Svcs Admin Community Relations Specialist 99575.57143 2.091087e+06 108427.95 5.163236e+03 0.000 1357.25 21 0.000000e+00 0.00 2.199515e+06 2.091087e+06 108427.95 NULL
2024 Admin For Children’s Svcs Admin Construction Project Manager 148775.00000 1.487750e+05 496.24 4.962400e+02 496.240 9.50 1 4.962400e+02 496.24 1.492712e+05 1.492712e+05 0.00 NULL
2024 Admin For Children’s Svcs Admin Contract Specialist 147780.00000 1.477800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.477800e+05 1.477800e+05 0.00 NULL
2024 Admin For Children’s Svcs Administrative Accountant 103603.33333 3.108100e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.108100e+05 3.108100e+05 0.00 NULL
2024 Admin For Children’s Svcs Administrative Architect 127412.65000 5.096506e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.096506e+05 5.096506e+05 0.00 NULL
2024 Admin For Children’s Svcs Administrative Business Promotion Coordinator 127099.66667 3.812990e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.812990e+05 3.812990e+05 0.00 NULL
2024 Admin For Children’s Svcs Administrative Community Relations Specialist 155508.00000 1.555080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.555080e+05 1.555080e+05 0.00 NULL
2024 Admin For Children’s Svcs Administrative Construction Project Manager 172666.00000 1.726660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.726660e+05 1.726660e+05 0.00 NULL
2024 Admin For Children’s Svcs Administrative Contract Specialist 117381.33333 3.521440e+05 133709.79 4.456993e+04 0.000 1559.50 3 0.000000e+00 0.00 4.858538e+05 3.521440e+05 133709.79 NULL
2024 Admin For Children’s Svcs Administrative Director Of Residential Child Care 102918.90000 5.145945e+06 1008242.25 2.016485e+04 8330.575 14670.00 50 8.330575e+03 416528.75 6.154187e+06 5.562474e+06 591713.50 NULL
2024 Admin For Children’s Svcs Administrative Director Of Social Services 126887.89073 3.832014e+07 1107089.39 3.665859e+03 0.000 16339.75 302 0.000000e+00 0.00 3.942723e+07 3.832014e+07 1107089.39 NULL
2024 Admin For Children’s Svcs Administrative Graphic Artist 125044.00000 1.250440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250440e+05 1.250440e+05 0.00 NULL
2024 Admin For Children’s Svcs Administrative Juvenile Counselor 131721.00000 3.951630e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.951630e+05 3.951630e+05 0.00 NULL
2024 Admin For Children’s Svcs Administrative Management Auditor 134763.50000 5.390540e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.390540e+05 5.390540e+05 0.00 NULL
2024 Admin For Children’s Svcs Administrative Manager 208486.50000 4.169730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.169730e+05 4.169730e+05 0.00 NULL
2024 Admin For Children’s Svcs Administrative Nutritionist 112416.66667 3.372500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.372500e+05 3.372500e+05 0.00 NULL
2024 Admin For Children’s Svcs Administrative Procurement Analyst 150143.00000 1.501430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.501430e+05 1.501430e+05 0.00 NULL
2024 Admin For Children’s Svcs Administrative Procurement Analyst-Non-Mgrl 90053.71429 6.303760e+05 9.51 1.358571e+00 0.000 0.00 7 0.000000e+00 0.00 6.303855e+05 6.303760e+05 9.51 NULL
2024 Admin For Children’s Svcs Administrative Project Manager 122897.66667 3.686930e+05 1427.02 4.756733e+02 0.000 16.00 3 0.000000e+00 0.00 3.701200e+05 3.686930e+05 1427.02 NULL
2024 Admin For Children’s Svcs Administrative Psychologist 99316.38000 1.986328e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.986328e+05 1.986328e+05 0.00 NULL
2024 Admin For Children’s Svcs Administrative Public Health Nurse 147752.25000 5.910090e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.910090e+05 5.910090e+05 0.00 NULL
2024 Admin For Children’s Svcs Administrative Public Information Specialist 169008.50000 3.380170e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.380170e+05 3.380170e+05 0.00 NULL
2024 Admin For Children’s Svcs Administrative Public Information Specialist Nm Former M1/M2 126588.00000 1.265880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.265880e+05 1.265880e+05 0.00 NULL
2024 Admin For Children’s Svcs Administrative Staff Analyst 125052.49664 1.863282e+07 209628.63 1.406904e+03 0.000 2551.75 149 0.000000e+00 0.00 1.884245e+07 1.863282e+07 209628.63 NULL
2024 Admin For Children’s Svcs Administrative Supervisor Of Building Maintenance 176785.00000 1.767850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.767850e+05 1.767850e+05 0.00 NULL
2024 Admin For Children’s Svcs Agency Attorney 106089.49600 2.652237e+07 1123460.18 4.493841e+03 78.545 12880.25 250 7.854500e+01 19636.25 2.764583e+07 2.654201e+07 1103823.93 NULL
2024 Admin For Children’s Svcs Agency Attorney Interne 78365.87952 6.504368e+06 52689.93 6.348184e+02 0.000 1008.75 83 0.000000e+00 0.00 6.557058e+06 6.504368e+06 52689.93 NULL
2024 Admin For Children’s Svcs Agency Chief Contracting Officer 215191.00000 4.303820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.303820e+05 4.303820e+05 0.00 NULL
2024 Admin For Children’s Svcs Architect 104231.00000 2.084620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.084620e+05 2.084620e+05 0.00 NULL
2024 Admin For Children’s Svcs Assistant Commissioner 161000.00000 1.610000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.610000e+05 1.610000e+05 0.00 NULL
2024 Admin For Children’s Svcs Assistant Commissioner For Facilities Development & Const 264746.00000 2.647460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.647460e+05 2.647460e+05 0.00 NULL
2024 Admin For Children’s Svcs Assistant Commissioner For Program Development 181882.00000 1.818820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.818820e+05 1.818820e+05 0.00 NULL
2024 Admin For Children’s Svcs Assistant Director Of Education 114433.00000 1.144330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.144330e+05 1.144330e+05 0.00 NULL
2024 Admin For Children’s Svcs Associate Contract Specialist 89250.50000 1.785010e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.785010e+05 1.785010e+05 0.00 NULL
2024 Admin For Children’s Svcs Associate Investigator 90144.00000 9.014400e+04 7278.86 7.278860e+03 7278.860 130.75 1 7.278860e+03 7278.86 9.742286e+04 9.742286e+04 0.00 NULL
2024 Admin For Children’s Svcs Associate Project Manager 98344.00000 9.834400e+04 87.03 8.703000e+01 87.030 1.50 1 8.703000e+01 87.03 9.843103e+04 9.843103e+04 0.00 NULL
2024 Admin For Children’s Svcs Associate Staff Analyst 95242.36842 7.238420e+06 153349.86 2.017761e+03 0.000 2038.50 76 0.000000e+00 0.00 7.391770e+06 7.238420e+06 153349.86 NULL
2024 Admin For Children’s Svcs Associate Youth Development Specialist 81766.51163 7.031920e+06 2936814.07 3.414900e+04 30787.595 46520.25 86 3.078760e+04 2647733.17 9.968734e+06 9.679653e+06 289080.90 NULL
2024 Admin For Children’s Svcs Asst Commissioner For Non-Secure Detention Juvenile Justice 149350.00000 1.493500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.493500e+05 1.493500e+05 0.00 NULL
2024 Admin For Children’s Svcs Asst Commissioner For Planning & Prg Deve 152550.00000 1.525500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.525500e+05 1.525500e+05 0.00 NULL
2024 Admin For Children’s Svcs Bookkeeper 59339.50000 1.186790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.186790e+05 1.186790e+05 0.00 NULL
2024 Admin For Children’s Svcs Carpenter NA NA 129904.74 3.247619e+04 34532.120 1515.00 4 3.247619e+04 129904.74 NA NA NA NULL
2024 Admin For Children’s Svcs Caseworker 48436.82212 1.598415e+06 48651.34 1.474283e+03 0.000 1307.25 33 0.000000e+00 0.00 1.647066e+06 1.598415e+06 48651.34 NULL
2024 Admin For Children’s Svcs Certified It Administrator 119539.40000 1.195394e+06 157327.55 1.573275e+04 1872.690 1772.00 10 1.872690e+03 18726.90 1.352722e+06 1.214121e+06 138600.65 NULL
2024 Admin For Children’s Svcs Certified It Developer 124910.50000 2.498210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.498210e+05 2.498210e+05 0.00 NULL
2024 Admin For Children’s Svcs Chaplain 70664.00000 7.066400e+04 103509.95 1.035099e+05 103509.950 1921.25 1 1.035099e+05 103509.95 1.741740e+05 1.741740e+05 0.00 NULL
2024 Admin For Children’s Svcs Child And Family Specialist 96071.98558 1.998297e+07 1210208.98 5.818312e+03 156.650 18293.25 208 1.566500e+02 32583.20 2.119318e+07 2.001556e+07 1177625.78 NULL
2024 Admin For Children’s Svcs Child Protective Specialist 65168.59525 1.672878e+08 15050201.67 5.862954e+03 2531.710 322883.98 2567 2.531710e+03 6498899.57 1.823380e+08 1.737867e+08 8551302.10 NULL
2024 Admin For Children’s Svcs Child Protective Specialist Supervisor 93701.05981 5.013007e+07 5849613.97 1.093386e+04 6026.480 86708.75 535 6.026480e+03 3224166.80 5.597968e+07 5.335423e+07 2625447.17 NULL
2024 Admin For Children’s Svcs Child Welfare Specialist 66529.49425 1.157613e+07 876483.64 5.037262e+03 0.000 17905.00 174 0.000000e+00 0.00 1.245262e+07 1.157613e+07 876483.64 NULL
2024 Admin For Children’s Svcs Child Welfare Specialist Supervisor 89152.51923 9.271862e+06 520735.30 5.007070e+03 146.510 8694.00 104 1.465100e+02 15237.04 9.792597e+06 9.287099e+06 505498.26 NULL
2024 Admin For Children’s Svcs Children’s Counselor 29670.03198 5.934006e+04 438.22 2.191100e+02 219.110 11.75 2 2.191100e+02 438.22 5.977828e+04 5.977828e+04 0.00 NULL
2024 Admin For Children’s Svcs City Custodial Assistant 46434.00000 4.643400e+04 1676.00 1.676000e+03 1676.000 51.75 1 1.676000e+03 1676.00 4.811000e+04 4.811000e+04 0.00 NULL
2024 Admin For Children’s Svcs City Laborer NA NA 110533.40 1.842223e+04 24190.130 1763.25 6 1.842223e+04 110533.40 NA NA NA NULL
2024 Admin For Children’s Svcs City Medical Director 182689.25000 7.307570e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.307570e+05 7.307570e+05 0.00 NULL
2024 Admin For Children’s Svcs City Research Scientist 97193.84337 8.067089e+06 109617.59 1.320694e+03 0.000 1725.25 83 0.000000e+00 0.00 8.176707e+06 8.067089e+06 109617.59 NULL
2024 Admin For Children’s Svcs Clerical Associate 50622.98780 4.151085e+06 188118.19 2.294124e+03 0.000 4228.00 82 0.000000e+00 0.00 4.339203e+06 4.151085e+06 188118.19 NULL
2024 Admin For Children’s Svcs Commissioner Of Children’s Services 277605.00000 2.776050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.776050e+05 2.776050e+05 0.00 NULL
2024 Admin For Children’s Svcs Community Assistant 42697.10256 1.665187e+06 60151.35 1.542342e+03 0.000 2003.50 39 0.000000e+00 0.00 1.725338e+06 1.665187e+06 60151.35 NULL
2024 Admin For Children’s Svcs Community Associate 49115.70796 4.076604e+06 330905.68 3.986815e+03 115.350 9391.75 83 1.153500e+02 9574.05 4.407509e+06 4.086178e+06 321331.63 NULL
2024 Admin For Children’s Svcs Community Coordinator 74773.61818 2.878784e+07 1369305.57 3.556638e+03 0.000 27405.25 385 0.000000e+00 0.00 3.015715e+07 2.878784e+07 1369305.57 NULL
2024 Admin For Children’s Svcs Computer Aide-Non-Spvr 61714.66667 3.702880e+05 1837.23 3.062050e+02 0.000 42.25 6 0.000000e+00 0.00 3.721252e+05 3.702880e+05 1837.23 NULL
2024 Admin For Children’s Svcs Computer Associate 69423.98133 2.707535e+06 50374.15 1.291645e+03 0.000 979.25 39 0.000000e+00 0.00 2.757909e+06 2.707535e+06 50374.15 NULL
2024 Admin For Children’s Svcs Computer Service Technician 54289.57143 3.800270e+05 3890.75 5.558214e+02 0.000 109.00 7 0.000000e+00 0.00 3.839178e+05 3.800270e+05 3890.75 NULL
2024 Admin For Children’s Svcs Computer Specialist 119311.62963 3.221414e+06 11640.26 4.311207e+02 0.000 158.50 27 0.000000e+00 0.00 3.233054e+06 3.221414e+06 11640.26 NULL
2024 Admin For Children’s Svcs Computer Systems Manager 143338.02778 5.160169e+06 2770.95 7.697083e+01 0.000 89.00 36 0.000000e+00 0.00 5.162940e+06 5.160169e+06 2770.95 NULL
2024 Admin For Children’s Svcs Confidential Strategy Planner 96472.22222 8.682500e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.682500e+05 8.682500e+05 0.00 NULL
2024 Admin For Children’s Svcs Congreg Care Spec - Acs 51194.97260 7.474466e+06 2200085.90 1.506908e+04 6497.135 55440.55 146 6.497135e+03 948581.71 9.674552e+06 8.423048e+06 1251504.19 NULL
2024 Admin For Children’s Svcs Congreg Care Spec- Djj 70018.60000 3.500930e+05 137911.49 2.758230e+04 34164.210 2946.00 5 2.758230e+04 137911.49 4.880045e+05 4.880045e+05 0.00 NULL
2024 Admin For Children’s Svcs Construction Project Manager 111850.16667 6.711010e+05 37183.16 6.197193e+03 288.670 446.00 6 2.886700e+02 1732.02 7.082842e+05 6.728330e+05 35451.14 NULL
2024 Admin For Children’s Svcs Contract Specialist 53748.00000 5.374800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.374800e+04 5.374800e+04 0.00 NULL
2024 Admin For Children’s Svcs Custodian 49083.33333 5.890000e+05 112988.84 9.415737e+03 4694.635 3261.25 12 4.694635e+03 56335.62 7.019888e+05 6.453356e+05 56653.22 NULL
2024 Admin For Children’s Svcs Deputy Commissioner 239910.66667 7.197320e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.197320e+05 7.197320e+05 0.00 NULL
2024 Admin For Children’s Svcs Deputy Director Of Administration 144239.77778 1.298158e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.298158e+06 1.298158e+06 0.00 NULL
2024 Admin For Children’s Svcs Deputy General Counsel 231440.00000 2.314400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.314400e+05 2.314400e+05 0.00 NULL
2024 Admin For Children’s Svcs Deputy Superintendent 131139.00000 2.622780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.622780e+05 2.622780e+05 0.00 NULL
2024 Admin For Children’s Svcs Director Of Advocacy 128795.00000 1.287950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287950e+05 1.287950e+05 0.00 NULL
2024 Admin For Children’s Svcs Director Of Field Operations 129000.30282 3.663609e+07 102393.14 3.605392e+02 0.000 1426.00 284 0.000000e+00 0.00 3.673848e+07 3.663609e+07 102393.14 NULL
2024 Admin For Children’s Svcs Director Of Headstart Program 184156.00000 1.841560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.841560e+05 1.841560e+05 0.00 NULL
2024 Admin For Children’s Svcs Director Of Program Planning 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2024 Admin For Children’s Svcs Director Of Public Information 139208.33333 4.176250e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.176250e+05 4.176250e+05 0.00 NULL
2024 Admin For Children’s Svcs Director Of Race Equity Strategies 108150.00000 1.081500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081500e+05 1.081500e+05 0.00 NULL
2024 Admin For Children’s Svcs Director Of Security 155510.00000 1.555100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.555100e+05 1.555100e+05 0.00 NULL
2024 Admin For Children’s Svcs Electrician NA NA 151599.49 5.053316e+04 41450.440 1543.75 3 4.145044e+04 124351.32 NA NA NA NULL
2024 Admin For Children’s Svcs Exec Asst To The Deputy Commissioner 150844.00000 1.508440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.508440e+05 1.508440e+05 0.00 NULL
2024 Admin For Children’s Svcs Executive Agency Counsel 181535.28378 1.343361e+07 8519.48 1.151281e+02 0.000 111.00 74 0.000000e+00 0.00 1.344213e+07 1.343361e+07 8519.48 NULL
2024 Admin For Children’s Svcs Executive Assistant 117866.00000 1.178660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.178660e+05 1.178660e+05 0.00 NULL
2024 Admin For Children’s Svcs Executive Assistant To The Executive Deputy Adm 138333.00000 1.383330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.383330e+05 1.383330e+05 0.00 NULL
2024 Admin For Children’s Svcs Executive Deputy Administrator 94026.00000 9.402600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.402600e+04 9.402600e+04 0.00 NULL
2024 Admin For Children’s Svcs Executive Program Specialist 149628.00000 1.496280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.496280e+05 1.496280e+05 0.00 NULL
2024 Admin For Children’s Svcs Graphic Artist 77250.00000 7.725000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.725000e+04 7.725000e+04 0.00 NULL
2024 Admin For Children’s Svcs High School Student Aide 8062.80000 3.225120e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.225120e+04 3.225120e+04 0.00 NULL
2024 Admin For Children’s Svcs Homemaker 42186.75000 1.687470e+05 638.67 1.596675e+02 80.060 25.25 4 8.006000e+01 320.24 1.693857e+05 1.690672e+05 318.43 NULL
2024 Admin For Children’s Svcs Institutional Aide 42910.68750 1.373142e+06 198659.20 6.208100e+03 1679.060 6511.25 32 1.679060e+03 53729.92 1.571801e+06 1.426872e+06 144929.28 NULL
2024 Admin For Children’s Svcs Investigator 86995.80000 4.349790e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.349790e+05 4.349790e+05 0.00 NULL
2024 Admin For Children’s Svcs It Project Specialist 105060.00000 2.101200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.101200e+05 2.101200e+05 0.00 NULL
2024 Admin For Children’s Svcs Maintenance Worker 63139.33080 6.313933e+04 1394.66 1.394660e+03 1394.660 21.50 1 1.394660e+03 1394.66 6.453399e+04 6.453399e+04 0.00 NULL
2024 Admin For Children’s Svcs Management Auditor 87404.00000 8.740400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.740400e+04 8.740400e+04 0.00 NULL
2024 Admin For Children’s Svcs Motor Vehicle Operator 55350.64286 7.749090e+05 437017.52 3.121554e+04 28101.675 10634.75 14 2.810167e+04 393423.45 1.211927e+06 1.168332e+06 43594.07 NULL
2024 Admin For Children’s Svcs Motor Vehicle Supervisor 65264.00000 1.305280e+05 40851.07 2.042553e+04 20425.535 994.00 2 2.042553e+04 40851.07 1.713791e+05 1.713791e+05 0.00 NULL
2024 Admin For Children’s Svcs New York City Public Service Fellow 45297.33333 2.717840e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.717840e+05 2.717840e+05 0.00 NULL
2024 Admin For Children’s Svcs Nutritionist 70286.00000 7.028600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.028600e+04 7.028600e+04 0.00 NULL
2024 Admin For Children’s Svcs Painter NA NA 261868.70 6.546718e+04 61897.290 3414.00 4 6.189729e+04 247589.16 NA NA NA NULL
2024 Admin For Children’s Svcs Paralegal Aide 52888.86667 7.933330e+05 3226.91 2.151273e+02 0.000 93.50 15 0.000000e+00 0.00 7.965599e+05 7.933330e+05 3226.91 NULL
2024 Admin For Children’s Svcs Plumber NA NA 65604.43 1.640111e+04 7837.810 534.00 4 7.837810e+03 31351.24 NA NA NA NULL
2024 Admin For Children’s Svcs Principal Administrative Associate - Non Supvr 63266.20579 1.689208e+07 580554.91 2.174363e+03 0.000 11486.75 267 0.000000e+00 0.00 1.747263e+07 1.689208e+07 580554.91 NULL
2024 Admin For Children’s Svcs Procurement Analyst 80122.42857 5.608570e+05 20090.17 2.870024e+03 0.000 358.00 7 0.000000e+00 0.00 5.809472e+05 5.608570e+05 20090.17 NULL
2024 Admin For Children’s Svcs Program Coordinator 62933.00000 6.293300e+04 1463.10 1.463100e+03 1463.100 38.00 1 1.463100e+03 1463.10 6.439610e+04 6.439610e+04 0.00 NULL
2024 Admin For Children’s Svcs Program Evaluator 89289.52809 7.946768e+06 391621.34 4.400240e+03 0.000 6143.00 89 0.000000e+00 0.00 8.338389e+06 7.946768e+06 391621.34 NULL
2024 Admin For Children’s Svcs Protection Agent 77121.81884 1.064281e+07 283923.13 2.057414e+03 0.000 5112.24 138 0.000000e+00 0.00 1.092673e+07 1.064281e+07 283923.13 NULL
2024 Admin For Children’s Svcs Public Health Assistant 43612.00000 4.361200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.361200e+04 4.361200e+04 0.00 NULL
2024 Admin For Children’s Svcs Research Assistant 69870.00000 1.397400e+05 22334.27 1.116714e+04 11167.135 464.50 2 1.116714e+04 22334.27 1.620743e+05 1.620743e+05 0.00 NULL
2024 Admin For Children’s Svcs Secretary 47100.00000 4.710000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.710000e+04 4.710000e+04 0.00 NULL
2024 Admin For Children’s Svcs Secretary Of Comm 99329.00000 9.932900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.932900e+04 9.932900e+04 0.00 NULL
2024 Admin For Children’s Svcs Senior Advisor For Investigations 147996.00000 1.479960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.479960e+05 1.479960e+05 0.00 NULL
2024 Admin For Children’s Svcs Senior Stationary Engineer NA NA 64620.52 3.231026e+04 32310.260 522.00 2 3.231026e+04 64620.52 NA NA NA NULL
2024 Admin For Children’s Svcs Sheet Metal Worker NA NA 32351.59 1.617580e+04 16175.795 249.50 2 1.617580e+04 32351.59 NA NA NA NULL
2024 Admin For Children’s Svcs Space Analyst 85130.00000 3.405200e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.405200e+05 3.405200e+05 0.00 NULL
2024 Admin For Children’s Svcs Special Officer 39213.25137 7.176025e+06 1019291.59 5.569899e+03 1900.620 34198.61 183 1.900620e+03 347813.46 8.195317e+06 7.523838e+06 671478.13 NULL
2024 Admin For Children’s Svcs Staff Analyst 74989.87097 4.649372e+06 44767.21 7.220518e+02 0.000 843.00 62 0.000000e+00 0.00 4.694139e+06 4.649372e+06 44767.21 NULL
2024 Admin For Children’s Svcs Staff Nurse 101367.40000 1.013674e+06 2634.86 2.634860e+02 0.000 35.75 10 0.000000e+00 0.00 1.016309e+06 1.013674e+06 2634.86 NULL
2024 Admin For Children’s Svcs Stationary Engineer NA NA 835317.52 1.193311e+05 142802.260 7270.75 7 1.193311e+05 835317.52 NA NA NA NULL
2024 Admin For Children’s Svcs Stock Worker 37336.60000 1.866830e+05 1264.20 2.528400e+02 189.410 53.00 5 1.894100e+02 947.05 1.879472e+05 1.876300e+05 317.15 NULL
2024 Admin For Children’s Svcs Strategic Initiative Specialist 146234.88889 1.316114e+06 687.01 7.633444e+01 0.000 0.00 9 0.000000e+00 0.00 1.316801e+06 1.316114e+06 687.01 NULL
2024 Admin For Children’s Svcs Summer College Intern 2634.97073 1.080338e+05 0.00 0.000000e+00 0.000 0.00 41 0.000000e+00 0.00 1.080338e+05 1.080338e+05 0.00 NULL
2024 Admin For Children’s Svcs Summer Graduate Intern 5882.44900 2.941224e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.941224e+04 2.941224e+04 0.00 NULL
2024 Admin For Children’s Svcs Superintendent 132912.00000 1.329120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.329120e+05 1.329120e+05 0.00 NULL
2024 Admin For Children’s Svcs Supervising Computer Service Technician 82425.62500 6.594050e+05 1246.49 1.558113e+02 0.000 24.25 8 0.000000e+00 0.00 6.606515e+05 6.594050e+05 1246.49 NULL
2024 Admin For Children’s Svcs Supervising Special Officer 62623.87234 2.943322e+06 683121.70 1.453450e+04 15232.200 15875.23 47 1.453450e+04 683121.70 3.626444e+06 3.626444e+06 0.00 NULL
2024 Admin For Children’s Svcs Supervisor I 67086.14286 9.392060e+05 70215.71 5.015408e+03 0.000 1356.00 14 0.000000e+00 0.00 1.009422e+06 9.392060e+05 70215.71 NULL
2024 Admin For Children’s Svcs Supervisor Ii 79066.23529 1.344126e+06 99985.42 5.881495e+03 0.000 1657.25 17 0.000000e+00 0.00 1.444111e+06 1.344126e+06 99985.42 NULL
2024 Admin For Children’s Svcs Supervisor Iii 86690.66667 5.201440e+05 83300.99 1.388350e+04 6277.805 1327.25 6 6.277805e+03 37666.83 6.034450e+05 5.578108e+05 45634.16 NULL
2024 Admin For Children’s Svcs Supervisor Of Child Care 78015.00000 3.900750e+05 165535.70 3.310714e+04 23879.220 2917.00 5 2.387922e+04 119396.10 5.556107e+05 5.094711e+05 46139.60 NULL
2024 Admin For Children’s Svcs Supervisor Of Mechanical Installations & Maintenance 100814.00000 1.008140e+05 5737.68 5.737680e+03 5737.680 95.00 1 5.737680e+03 5737.68 1.065517e+05 1.065517e+05 0.00 NULL
2024 Admin For Children’s Svcs Supervisor Of Nurses 113180.83333 6.790850e+05 1204.35 2.007250e+02 0.000 15.00 6 0.000000e+00 0.00 6.802893e+05 6.790850e+05 1204.35 NULL
2024 Admin For Children’s Svcs Supervisor Of Stock Workers 56650.00000 5.665000e+04 50364.84 5.036484e+04 50364.840 1457.75 1 5.036484e+04 50364.84 1.070148e+05 1.070148e+05 0.00 NULL
2024 Admin For Children’s Svcs Telecommunications Associate 84350.40000 8.435040e+05 4908.41 4.908410e+02 13.140 128.00 10 1.314000e+01 131.40 8.484124e+05 8.436354e+05 4777.01 NULL
2024 Admin For Children’s Svcs Youth Development Specialist 57084.95839 4.389833e+07 11839599.03 1.539610e+04 9893.460 269731.40 769 9.893460e+03 7608070.74 5.573793e+07 5.150640e+07 4231528.29 NULL
2024 Admin Trials And Hearings *Attorney At Law 100972.50000 2.019450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.019450e+05 2.019450e+05 0.00 NULL
2024 Admin Trials And Hearings Accountant 64310.00000 1.286200e+05 12.83 6.415000e+00 6.415 0.00 2 6.415000e+00 12.83 1.286328e+05 1.286328e+05 0.00 NULL
2024 Admin Trials And Hearings Adm Manager-Non-Mgrl 87154.77778 1.568786e+06 217.63 1.209056e+01 0.000 4.00 18 0.000000e+00 0.00 1.569004e+06 1.568786e+06 217.63 NULL
2024 Admin Trials And Hearings Admin Community Relations Specialist 100245.25000 4.009810e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.009810e+05 4.009810e+05 0.00 NULL
2024 Admin Trials And Hearings Administrative Accountant 137713.00000 1.377130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.377130e+05 1.377130e+05 0.00 NULL
2024 Admin Trials And Hearings Administrative City Planner 154815.00000 1.548150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.548150e+05 1.548150e+05 0.00 NULL
2024 Admin Trials And Hearings Administrative Community Relations Specialist 147219.75000 5.888790e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.888790e+05 5.888790e+05 0.00 NULL
2024 Admin Trials And Hearings Administrative Labor Relations Analyst 124594.00000 1.245940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.245940e+05 1.245940e+05 0.00 NULL
2024 Admin Trials And Hearings Administrative Law Judge 180500.41176 3.068507e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 3.068507e+06 3.068507e+06 0.00 NULL
2024 Admin Trials And Hearings Administrative Procurement Analyst 170113.00000 1.701130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.701130e+05 1.701130e+05 0.00 NULL
2024 Admin Trials And Hearings Administrative Staff Analyst 136717.88889 1.230461e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.230461e+06 1.230461e+06 0.00 NULL
2024 Admin Trials And Hearings Agency Attorney 101127.87500 5.663161e+06 3004.40 5.365000e+01 0.000 46.00 56 0.000000e+00 0.00 5.666165e+06 5.663161e+06 3004.40 NULL
2024 Admin Trials And Hearings Agency Attorney Interne 64332.26917 1.929968e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.929968e+05 1.929968e+05 0.00 NULL
2024 Admin Trials And Hearings Agency Chief Contracting Officer 122541.00000 1.225410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.225410e+05 1.225410e+05 0.00 NULL
2024 Admin Trials And Hearings Associate Public Information Specialist 68949.00000 6.894900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.894900e+04 6.894900e+04 0.00 NULL
2024 Admin Trials And Hearings Associate Staff Analyst 92529.75000 3.701190e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.701190e+05 3.701190e+05 0.00 NULL
2024 Admin Trials And Hearings Bookkeeper 56129.00000 5.612900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.612900e+04 5.612900e+04 0.00 NULL
2024 Admin Trials And Hearings Certified It Administrator 106631.50000 2.132630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.132630e+05 2.132630e+05 0.00 NULL
2024 Admin Trials And Hearings Certified It Developer 139701.00000 1.397010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.397010e+05 1.397010e+05 0.00 NULL
2024 Admin Trials And Hearings Chief Administrative Law Judge 260042.00000 2.600420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.600420e+05 2.600420e+05 0.00 NULL
2024 Admin Trials And Hearings City Laborer NA NA 244.69 1.223450e+02 122.345 4.50 2 1.223450e+02 244.69 NA NA NA NULL
2024 Admin Trials And Hearings Clerical Aide 43060.00000 4.306000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.306000e+04 4.306000e+04 0.00 NULL
2024 Admin Trials And Hearings Clerical Associate 48067.83605 2.066917e+06 575.04 1.337302e+01 0.000 15.00 43 0.000000e+00 0.00 2.067492e+06 2.066917e+06 575.04 NULL
2024 Admin Trials And Hearings College Aide 10101.25000 5.050625e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.050625e+04 5.050625e+04 0.00 NULL
2024 Admin Trials And Hearings Community Assistant 37586.82545 4.134551e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 4.134551e+05 4.134551e+05 0.00 NULL
2024 Admin Trials And Hearings Community Associate 50128.87671 1.604124e+06 1561.09 4.878406e+01 0.000 45.00 32 0.000000e+00 0.00 1.605685e+06 1.604124e+06 1561.09 NULL
2024 Admin Trials And Hearings Community Coordinator 70963.58491 3.761070e+06 16401.59 3.094640e+02 0.000 329.75 53 0.000000e+00 0.00 3.777472e+06 3.761070e+06 16401.59 NULL
2024 Admin Trials And Hearings Community Service Aide 32277.37391 2.582190e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 2.582190e+05 2.582190e+05 0.00 NULL
2024 Admin Trials And Hearings Computer Associate 90269.00000 5.416140e+05 10991.97 1.831995e+03 512.630 196.50 6 5.126300e+02 3075.78 5.526060e+05 5.446898e+05 7916.19 NULL
2024 Admin Trials And Hearings Computer Specialist 132655.50000 2.653110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.653110e+05 2.653110e+05 0.00 NULL
2024 Admin Trials And Hearings Computer Systems Manager 162515.33333 9.750920e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.750920e+05 9.750920e+05 0.00 NULL
2024 Admin Trials And Hearings Confidential Secretary Of Administrative Law Judge 64096.71429 4.486770e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.486770e+05 4.486770e+05 0.00 NULL
2024 Admin Trials And Hearings Confidential Strategy Planner 93726.66667 2.811800e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.811800e+05 2.811800e+05 0.00 NULL
2024 Admin Trials And Hearings Contract Specialist 60566.00000 6.056600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.056600e+04 6.056600e+04 0.00 NULL
2024 Admin Trials And Hearings Customer Information Representative Ma L 1549 48626.03429 3.403822e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.403822e+05 3.403822e+05 0.00 NULL
2024 Admin Trials And Hearings Cyber Security Analyst 66515.87500 5.321270e+05 8728.15 1.091019e+03 245.930 209.00 8 2.459300e+02 1967.44 5.408552e+05 5.340944e+05 6760.71 NULL
2024 Admin Trials And Hearings Executive Agency Counsel 151437.92366 1.983837e+07 0.00 0.000000e+00 0.000 0.00 131 0.000000e+00 0.00 1.983837e+07 1.983837e+07 0.00 NULL
2024 Admin Trials And Hearings Hearing Officer 44112.32826 8.734241e+06 0.00 0.000000e+00 0.000 0.00 198 0.000000e+00 0.00 8.734241e+06 8.734241e+06 0.00 NULL
2024 Admin Trials And Hearings Maintenance Worker NA NA 22084.43 2.208443e+04 22084.430 420.00 1 2.208443e+04 22084.43 NA NA NA NULL
2024 Admin Trials And Hearings Member Of The Environmental Control Board - Oath 53.10783 3.186470e+02 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.186470e+02 3.186470e+02 0.00 NULL
2024 Admin Trials And Hearings New York City Public Service Fellow 49173.00000 9.834600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.834600e+04 9.834600e+04 0.00 NULL
2024 Admin Trials And Hearings Principal Administrative Associate - Non Supvr 66938.00000 3.346900e+06 27793.71 5.558742e+02 0.000 724.00 50 0.000000e+00 0.00 3.374694e+06 3.346900e+06 27793.71 NULL
2024 Admin Trials And Hearings Procurement Analyst 49919.80625 9.983961e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.983961e+04 9.983961e+04 0.00 NULL
2024 Admin Trials And Hearings Public Records Aide 50358.25000 2.014330e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.014330e+05 2.014330e+05 0.00 NULL
2024 Admin Trials And Hearings Secretary 51403.00000 1.028060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.028060e+05 1.028060e+05 0.00 NULL
2024 Admin Trials And Hearings Special Officer 51431.27273 5.657440e+05 36964.20 3.360382e+03 1229.540 1003.55 11 1.229540e+03 13524.94 6.027082e+05 5.792689e+05 23439.26 NULL
2024 Admin Trials And Hearings Staff Analyst 68932.00000 1.378640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.378640e+05 1.378640e+05 0.00 NULL
2024 Admin Trials And Hearings Statistician 61357.00000 6.135700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.135700e+04 6.135700e+04 0.00 NULL
2024 Admin Trials And Hearings Summer College Intern 4569.43625 9.138872e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.138872e+03 9.138872e+03 0.00 NULL
2024 Admin Trials And Hearings Summer Graduate Intern 4368.80250 1.310641e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.310641e+04 1.310641e+04 0.00 NULL
2024 Board Of Correction Administrative Staff Analyst 148399.00000 1.483990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.483990e+05 1.483990e+05 0.00 NULL
2024 Board Of Correction City Research Scientist 93313.66667 2.799410e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.799410e+05 2.799410e+05 0.00 NULL
2024 Board Of Correction Community Coordinator 71922.50000 1.438450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.438450e+05 1.438450e+05 0.00 NULL
2024 Board Of Correction Computer Specialist 115929.00000 1.159290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.159290e+05 1.159290e+05 0.00 NULL
2024 Board Of Correction Computer Systems Manager 157940.00000 1.579400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.579400e+05 1.579400e+05 0.00 NULL
2024 Board Of Correction Confidential Agency Investigator 125138.00000 1.251380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.251380e+05 1.251380e+05 0.00 NULL
2024 Board Of Correction Correctional Standards Review Specialist 79809.88889 7.182890e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.182890e+05 7.182890e+05 0.00 NULL
2024 Board Of Correction Counsel 196176.50000 3.923530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.923530e+05 3.923530e+05 0.00 NULL
2024 Board Of Correction Deputy Executive Director 166773.00000 5.003190e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.003190e+05 5.003190e+05 0.00 NULL
2024 Board Of Correction Director Of Correctional Standards Review 124764.00000 8.733480e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.733480e+05 8.733480e+05 0.00 NULL
2024 Board Of Correction Executive Director 210421.50000 4.208430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.208430e+05 4.208430e+05 0.00 NULL
2024 Board Of Correction Secretary 77886.20000 7.788620e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.788620e+04 7.788620e+04 0.00 NULL
2024 Board Of Correction Secretary To The Board Of Correction 116874.00000 2.337480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.337480e+05 2.337480e+05 0.00 NULL
2024 Board Of Election Administrative Assistant 58337.61905 7.350540e+06 1390091.07 1.103247e+04 7640.180 28207.63 126 7.640180e+03 962662.68 8.740631e+06 8.313203e+06 427428.39 NULL
2024 Board Of Election Administrative Associate 74775.73864 6.580265e+06 2032510.41 2.309671e+04 17550.020 31845.30 88 1.755002e+04 1544401.76 8.612775e+06 8.124667e+06 488108.65 NULL
2024 Board Of Election Administrative Manager 190007.00000 7.600280e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.600280e+05 7.600280e+05 0.00 NULL
2024 Board Of Election Assistance Finance Officer 79976.33333 2.399290e+05 40053.69 1.335123e+04 11717.480 693.50 3 1.171748e+04 35152.44 2.799827e+05 2.750814e+05 4901.25 NULL
2024 Board Of Election Associate Staff Analyst 98397.15385 1.279163e+06 168897.13 1.299209e+04 5409.990 1897.75 13 5.409990e+03 70329.87 1.448060e+06 1.349493e+06 98567.26 NULL
2024 Board Of Election Chief Clerk 166168.80000 8.308440e+05 7303.29 1.460658e+03 0.000 0.00 5 0.000000e+00 0.00 8.381473e+05 8.308440e+05 7303.29 NULL
2024 Board Of Election Clerk To The Board 46723.99130 5.373259e+06 604698.92 5.258251e+03 2928.640 15939.73 115 2.928640e+03 336793.60 5.977958e+06 5.710053e+06 267905.32 NULL
2024 Board Of Election Commissioner 27900.00000 2.790000e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 2.790000e+05 2.790000e+05 0.00 NULL
2024 Board Of Election Computer Operator 53532.50000 1.070650e+05 4292.85 2.146425e+03 2146.425 91.50 2 2.146425e+03 4292.85 1.113579e+05 1.113579e+05 0.00 NULL
2024 Board Of Election Computer Specialist 135212.75000 5.408510e+05 65287.21 1.632180e+04 6452.455 784.25 4 6.452455e+03 25809.82 6.061382e+05 5.666608e+05 39477.39 NULL
2024 Board Of Election Computer System Manager 154670.75000 6.186830e+05 639.29 1.598225e+02 0.000 0.00 4 0.000000e+00 0.00 6.193223e+05 6.186830e+05 639.29 NULL
2024 Board Of Election Coordinator, Election Day Operations 132873.50000 2.657470e+05 26770.30 1.338515e+04 13385.150 320.25 2 1.338515e+04 26770.30 2.925173e+05 2.925173e+05 0.00 NULL
2024 Board Of Election Coordinator, Voter Registration Activities 115414.00000 1.154140e+05 9489.00 9.489000e+03 9489.000 99.50 1 9.489000e+03 9489.00 1.249030e+05 1.249030e+05 0.00 NULL
2024 Board Of Election Counsel 157289.50000 6.291580e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.291580e+05 6.291580e+05 0.00 NULL
2024 Board Of Election Counsel To The Board 66358.00000 1.327160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.327160e+05 1.327160e+05 0.00 NULL
2024 Board Of Election Deputy Chief Clerk 162950.83333 9.777050e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.777050e+05 9.777050e+05 0.00 NULL
2024 Board Of Election Deputy Executive Director 244520.00000 2.445200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.445200e+05 2.445200e+05 0.00 NULL
2024 Board Of Election Director Of Equipment 86900.00000 3.476000e+05 57893.01 1.447325e+04 7276.285 650.25 4 7.276285e+03 29105.14 4.054930e+05 3.767051e+05 28787.87 NULL
2024 Board Of Election Director Of Training 112108.50000 2.242170e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.242170e+05 2.242170e+05 0.00 NULL
2024 Board Of Election Director, Public Affairs And Communication 132480.00000 1.324800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.324800e+05 1.324800e+05 0.00 NULL
2024 Board Of Election Executive Director 265554.00000 2.655540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.655540e+05 2.655540e+05 0.00 NULL
2024 Board Of Election Finance Officer 139276.00000 1.392760e+05 3831.73 3.831730e+03 3831.730 33.50 1 3.831730e+03 3831.73 1.431077e+05 1.431077e+05 0.00 NULL
2024 Board Of Election Financial Clerk 45943.45253 9.372464e+06 1390727.00 6.817289e+03 4684.795 35742.35 204 4.684795e+03 955698.18 1.076319e+07 1.032816e+07 435028.82 NULL
2024 Board Of Election Project Coordinator 113695.21053 2.160209e+06 528936.86 2.783878e+04 16574.820 5604.00 19 1.657482e+04 314921.58 2.689146e+06 2.475131e+06 214015.28 NULL
2024 Board Of Election Senior Administrative Assistant 93670.91667 1.124051e+06 217096.33 1.809136e+04 13327.190 2506.25 12 1.332719e+04 159926.28 1.341147e+06 1.283977e+06 57170.05 NULL
2024 Board Of Election Senior Administrator 109552.43750 1.752839e+06 639739.24 3.998370e+04 34124.295 7040.50 16 3.412429e+04 545988.72 2.392578e+06 2.298828e+06 93750.52 NULL
2024 Board Of Election Senior Computer Programmer 87027.25000 6.962180e+05 160926.96 2.011587e+04 10013.250 1945.50 8 1.001325e+04 80106.00 8.571450e+05 7.763240e+05 80820.96 NULL
2024 Board Of Election Senior Systems Analysts 127071.50000 2.541430e+05 179209.85 8.960493e+04 89604.925 1985.00 2 8.960493e+04 179209.85 4.333528e+05 4.333528e+05 0.00 NULL
2024 Board Of Election Senior Voting Machine Technician 56444.02941 3.838194e+06 1265685.21 1.861302e+04 16096.660 26399.00 68 1.609666e+04 1094572.88 5.103879e+06 4.932767e+06 171112.33 NULL
2024 Board Of Election Stenographic/Secretarial Associate 55973.00000 5.597300e+04 176.12 1.761200e+02 176.120 0.00 1 1.761200e+02 176.12 5.614912e+04 5.614912e+04 0.00 NULL
2024 Board Of Election Temporary Clerk 21598.93619 4.643771e+06 709897.18 3.301847e+03 1089.900 23631.38 215 1.089900e+03 234328.50 5.353668e+06 4.878100e+06 475568.68 NULL
2024 Board Of Election Trainer Assistant 61046.79619 6.593054e+06 1402346.13 1.298469e+04 10298.545 26013.25 108 1.029855e+04 1112242.86 7.995400e+06 7.705297e+06 290103.27 NULL
2024 Board Of Election Voting Machine Technician 50684.63006 8.768441e+06 2545562.28 1.471423e+04 13973.740 60528.10 173 1.397374e+04 2417457.02 1.131400e+07 1.118590e+07 128105.26 NULL
2024 Board Of Election Poll Workers Election Trainer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 224 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 Board Of Election Poll Workers Election Worker 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 30303 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 Borough President-Bronx Administrative Education Officer 122308.00000 1.223080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.223080e+05 1.223080e+05 0.00 NULL
2024 Borough President-Bronx Administrative Manager 134010.50000 2.680210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.680210e+05 2.680210e+05 0.00 NULL
2024 Borough President-Bronx Administrative Staff Analyst 139606.00000 1.396060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.396060e+05 1.396060e+05 0.00 NULL
2024 Borough President-Bronx Assistant To The President 108834.50000 4.353380e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.353380e+05 4.353380e+05 0.00 NULL
2024 Borough President-Bronx Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2024 Borough President-Bronx City Planner 126078.00000 1.260780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.260780e+05 1.260780e+05 0.00 NULL
2024 Borough President-Bronx Community Assistant 26504.11180 5.300822e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.300822e+04 5.300822e+04 0.00 NULL
2024 Borough President-Bronx Community Associate 60317.94545 1.326995e+06 26389.16 1.199507e+03 0.000 546.00 22 0.000000e+00 0.00 1.353384e+06 1.326995e+06 26389.16 NULL
2024 Borough President-Bronx Community Coordinator 79465.27785 1.668771e+06 32033.81 1.525420e+03 0.000 490.00 21 0.000000e+00 0.00 1.700805e+06 1.668771e+06 32033.81 NULL
2024 Borough President-Bronx Computer Systems Manager 21268.00000 2.126800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.126800e+04 2.126800e+04 0.00 NULL
2024 Borough President-Bronx Counsel To The Borough President 154624.50000 3.092490e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.092490e+05 3.092490e+05 0.00 NULL
2024 Borough President-Bronx Deputy Borough President 177933.50000 3.558670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.558670e+05 3.558670e+05 0.00 NULL
2024 Borough President-Bronx Director Of Community Planning Boards - Mgl Assign 131127.00000 1.311270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.311270e+05 1.311270e+05 0.00 NULL
2024 Borough President-Bronx Executive Assistant 195042.00000 1.950420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.950420e+05 1.950420e+05 0.00 NULL
2024 Borough President-Bronx Public Information Officer 105294.00000 1.052940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.052940e+05 1.052940e+05 0.00 NULL
2024 Borough President-Bronx Research And Liaison Coordinator 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2024 Borough President-Bronx Research Liaison Adn Governmental Coordinator 140136.00000 1.401360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.401360e+05 1.401360e+05 0.00 NULL
2024 Borough President-Bronx Secretary To The Deputy Boro President 101932.00000 1.019320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.019320e+05 1.019320e+05 0.00 NULL
2024 Borough President-Bronx Secretary To The Excutive Assistant 85826.00000 8.582600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.582600e+04 8.582600e+04 0.00 NULL
2024 Borough President-Bronx Secretary To The President 81611.00000 8.161100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.161100e+04 8.161100e+04 0.00 NULL
2024 Borough President-Bronx Special Assistant To The Borough President 104633.75000 4.185350e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.185350e+05 4.185350e+05 0.00 NULL
2024 Borough President-Brooklyn Adm Manager-Non-Mgrl 101563.00000 1.015630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.015630e+05 1.015630e+05 0.00 NULL
2024 Borough President-Brooklyn Assistant To The President 106830.58514 3.952732e+06 235.00 6.351351e+00 0.000 0.00 37 0.000000e+00 0.00 3.952967e+06 3.952732e+06 235.00 NULL
2024 Borough President-Brooklyn Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2024 Borough President-Brooklyn Chauffeur-Attendant 74203.25000 2.968130e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.968130e+05 2.968130e+05 0.00 NULL
2024 Borough President-Brooklyn Clerical Associate 72450.50000 1.449010e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.449010e+05 1.449010e+05 0.00 NULL
2024 Borough President-Brooklyn College Aide 1608.00000 1.608000e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.608000e+03 1.608000e+03 0.00 NULL
2024 Borough President-Brooklyn Community Associate 58987.00000 1.179740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.179740e+05 1.179740e+05 0.00 NULL
2024 Borough President-Brooklyn Community Coordinator 69341.34745 2.149582e+06 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 2.149582e+06 2.149582e+06 0.00 NULL
2024 Borough President-Brooklyn Counsel To The Borough President 139895.00000 2.797900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.797900e+05 2.797900e+05 0.00 NULL
2024 Borough President-Brooklyn Deputy Borough President 209770.50000 4.195410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.195410e+05 4.195410e+05 0.00 NULL
2024 Borough President-Brooklyn Director Of Community Planning Boards 105125.00000 1.051250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.051250e+05 1.051250e+05 0.00 NULL
2024 Borough President-Brooklyn Executive Agency Counsel 153963.50000 3.079270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.079270e+05 3.079270e+05 0.00 NULL
2024 Borough President-Brooklyn Executive Assistant 154500.00000 1.545000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.545000e+05 1.545000e+05 0.00 NULL
2024 Borough President-Brooklyn Principal Administrative Associate - Non Supvr 85514.00000 8.551400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.551400e+04 8.551400e+04 0.00 NULL
2024 Borough President-Brooklyn Program Producer 105880.00000 1.058800e+05 3179.53 3.179530e+03 3179.530 43.50 1 3.179530e+03 3179.53 1.090595e+05 1.090595e+05 0.00 NULL
2024 Borough President-Brooklyn Public Information Officer 110400.00000 2.208000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.208000e+05 2.208000e+05 0.00 NULL
2024 Borough President-Brooklyn Research & Liaison Coordinator 87939.00000 8.793900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.793900e+04 8.793900e+04 0.00 NULL
2024 Borough President-Brooklyn Research And Liaison Coordinator 73970.75000 2.958830e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.958830e+05 2.958830e+05 0.00 NULL
2024 Borough President-Brooklyn Secretary To The President 80426.50000 1.608530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.608530e+05 1.608530e+05 0.00 NULL
2024 Borough President-Brooklyn Special Assistant To The Borough President 117875.00000 1.178750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.178750e+05 1.178750e+05 0.00 NULL
2024 Borough President-Brooklyn Special Assistant To The President 142055.00000 1.420550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.420550e+05 1.420550e+05 0.00 NULL
2024 Borough President-Manhattan Adm Manager-Non-Mgrl 86782.00000 8.678200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.678200e+04 8.678200e+04 0.00 NULL
2024 Borough President-Manhattan Administrative Staff Analyst 148424.00000 1.484240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.484240e+05 1.484240e+05 0.00 NULL
2024 Borough President-Manhattan Agency Chief Contracting Officer 138240.00000 1.382400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.382400e+05 1.382400e+05 0.00 NULL
2024 Borough President-Manhattan Assistant To The President 125130.57143 8.759140e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.759140e+05 8.759140e+05 0.00 NULL
2024 Borough President-Manhattan Associate Public Information Specialist 76915.00000 7.691500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.691500e+04 7.691500e+04 0.00 NULL
2024 Borough President-Manhattan Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2024 Borough President-Manhattan Chauffeur Attendant 71154.00000 1.423080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.423080e+05 1.423080e+05 0.00 NULL
2024 Borough President-Manhattan Community Associate 59445.00000 1.188900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.188900e+05 1.188900e+05 0.00 NULL
2024 Borough President-Manhattan Community Coordinator 76004.96960 1.900124e+06 497.22 1.988880e+01 0.000 8.50 25 0.000000e+00 0.00 1.900621e+06 1.900124e+06 497.22 NULL
2024 Borough President-Manhattan Community Planning Board Coordinator 64008.00000 2.560320e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.560320e+05 2.560320e+05 0.00 NULL
2024 Borough President-Manhattan Computer Systems Manager 120136.00000 1.201360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.201360e+05 1.201360e+05 0.00 NULL
2024 Borough President-Manhattan Deputy Borough President 174836.00000 1.748360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.748360e+05 1.748360e+05 0.00 NULL
2024 Borough President-Manhattan Director Of Community Planning Boards 133595.00000 1.335950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.335950e+05 1.335950e+05 0.00 NULL
2024 Borough President-Manhattan Executive Assistant 174836.00000 1.748360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.748360e+05 1.748360e+05 0.00 NULL
2024 Borough President-Manhattan General Counsel 144525.00000 2.890500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.890500e+05 2.890500e+05 0.00 NULL
2024 Borough President-Manhattan Housing Consultant 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2024 Borough President-Manhattan Principal Administrative Associate - Non Supvr 69421.50000 1.388430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.388430e+05 1.388430e+05 0.00 NULL
2024 Borough President-Manhattan Public Information Officer 132379.00000 1.323790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.323790e+05 1.323790e+05 0.00 NULL
2024 Borough President-Manhattan Public Relations Officer 110210.00000 1.102100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.102100e+05 1.102100e+05 0.00 NULL
2024 Borough President-Queens Adm Manager-Non-Mgrl 122564.00000 1.225640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.225640e+05 1.225640e+05 0.00 NULL
2024 Borough President-Queens Administrative Engineer 140789.00000 1.407890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.407890e+05 1.407890e+05 0.00 NULL
2024 Borough President-Queens Agency Attorney 127982.00000 1.279820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.279820e+05 1.279820e+05 0.00 NULL
2024 Borough President-Queens Assistant Civil Engineer 83089.00000 8.308900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.308900e+04 8.308900e+04 0.00 NULL
2024 Borough President-Queens Assistant To The President 77017.00000 1.540340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.540340e+05 1.540340e+05 0.00 NULL
2024 Borough President-Queens Associate Staff Analyst 96238.50000 1.924770e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.924770e+05 1.924770e+05 0.00 NULL
2024 Borough President-Queens Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2024 Borough President-Queens City Planner 91549.00000 1.830980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.830980e+05 1.830980e+05 0.00 NULL
2024 Borough President-Queens Community Assistant 33443.20000 1.672160e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.672160e+05 1.672160e+05 0.00 NULL
2024 Borough President-Queens Community Associate 59054.74797 1.062985e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.062985e+06 1.062985e+06 0.00 NULL
2024 Borough President-Queens Community Coordinator 79815.78571 1.117421e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.117421e+06 1.117421e+06 0.00 NULL
2024 Borough President-Queens Community Planning Board Coordinator 60471.00000 6.047100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.047100e+04 6.047100e+04 0.00 NULL
2024 Borough President-Queens Computer Specialist 102982.00000 1.029820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.029820e+05 1.029820e+05 0.00 NULL
2024 Borough President-Queens Computer Systems Manager 106923.00000 1.069230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.069230e+05 1.069230e+05 0.00 NULL
2024 Borough President-Queens Counsel To The Borough President 143870.00000 1.438700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.438700e+05 1.438700e+05 0.00 NULL
2024 Borough President-Queens Deputy Borough President 174836.00000 1.748360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.748360e+05 1.748360e+05 0.00 NULL
2024 Borough President-Queens Director Of Community Planning Boards 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2024 Borough President-Queens Director Of Community Planning Boards - Mgl Assign 95018.00000 9.501800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.501800e+04 9.501800e+04 0.00 NULL
2024 Borough President-Queens Economist 79769.00000 7.976900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.976900e+04 7.976900e+04 0.00 NULL
2024 Borough President-Queens Engineering Technician 77420.50000 1.548410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.548410e+05 1.548410e+05 0.00 NULL
2024 Borough President-Queens Executive Assistant 172323.00000 1.723230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.723230e+05 1.723230e+05 0.00 NULL
2024 Borough President-Queens Fiscal & Policy Analyst 81255.00000 8.125500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.125500e+04 8.125500e+04 0.00 NULL
2024 Borough President-Queens Principal Administrative Associate - Non Supvr 68312.00000 2.049360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.049360e+05 2.049360e+05 0.00 NULL
2024 Borough President-Queens Public Information Officer 103904.00000 1.039040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.039040e+05 1.039040e+05 0.00 NULL
2024 Borough President-Queens Research And Liaison Specialist 76639.50000 3.065580e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.065580e+05 3.065580e+05 0.00 NULL
2024 Borough President-Queens Secretary To The President 99987.00000 9.998700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.998700e+04 9.998700e+04 0.00 NULL
2024 Borough President-Queens Special Assistant To The Borough President 99183.33333 8.926500e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.926500e+05 8.926500e+05 0.00 NULL
2024 Borough President-Staten Is Administrative Architect 156642.00000 1.566420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.566420e+05 1.566420e+05 0.00 NULL
2024 Borough President-Staten Is Agency Attorney 60498.08000 1.209962e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.209962e+05 1.209962e+05 0.00 NULL
2024 Borough President-Staten Is Assistant To The President 140819.66667 4.224590e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.224590e+05 4.224590e+05 0.00 NULL
2024 Borough President-Staten Is Borough President 179200.00000 1.792000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792000e+05 1.792000e+05 0.00 NULL
2024 Borough President-Staten Is College Aide 3221.50000 3.221500e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.221500e+03 3.221500e+03 0.00 NULL
2024 Borough President-Staten Is Community Associate 57373.94000 5.737394e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.737394e+05 5.737394e+05 0.00 NULL
2024 Borough President-Staten Is Community Coordinator 74750.35867 1.121255e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.121255e+06 1.121255e+06 0.00 NULL
2024 Borough President-Staten Is Counsel To The Borough President 130010.97750 1.300110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300110e+05 1.300110e+05 0.00 NULL
2024 Borough President-Staten Is Deputy Borough President 157000.00000 1.570000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.570000e+05 1.570000e+05 0.00 NULL
2024 Borough President-Staten Is Director Of Community Planning Boards 102383.00000 1.023830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.023830e+05 1.023830e+05 0.00 NULL
2024 Borough President-Staten Is Engineering Technician 81277.00000 8.127700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.127700e+04 8.127700e+04 0.00 NULL
2024 Borough President-Staten Is Executive Assistant 136442.00000 1.364420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.364420e+05 1.364420e+05 0.00 NULL
2024 Borough President-Staten Is Public Information Officer 107533.00000 1.075330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.075330e+05 1.075330e+05 0.00 NULL
2024 Borough President-Staten Is Secretary To The Deputy Boro President 31263.96000 3.126396e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.126396e+04 3.126396e+04 0.00 NULL
2024 Borough President-Staten Is Secretary To The President 3109.20000 3.109200e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.109200e+03 3.109200e+03 0.00 NULL
2024 Borough President-Staten Is Special Assistant To The Borough President 82759.04000 8.275904e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.275904e+04 8.275904e+04 0.00 NULL
2024 Borough President-Staten Is Summer College Intern 1591.76667 4.775300e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.775300e+03 4.775300e+03 0.00 NULL
2024 Bronx Community Board #1 Community Associate 56650.00000 5.665000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.665000e+04 5.665000e+04 0.00 NULL
2024 Bronx Community Board #1 Community Coordinator 94705.00000 9.470500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.470500e+04 9.470500e+04 0.00 NULL
2024 Bronx Community Board #1 District Manager 121135.00000 1.211350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.211350e+05 1.211350e+05 0.00 NULL
2024 Bronx Community Board #10 Clerical Associate 50268.00000 5.026800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.026800e+04 5.026800e+04 0.00 NULL
2024 Bronx Community Board #10 Community Assistant 34918.10000 3.491810e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.491810e+04 3.491810e+04 0.00 NULL
2024 Bronx Community Board #10 Community Associate 53781.00000 5.378100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.378100e+04 5.378100e+04 0.00 NULL
2024 Bronx Community Board #10 District Manager 110685.00000 1.106850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.106850e+05 1.106850e+05 0.00 NULL
2024 Bronx Community Board #11 Community Coordinator 81519.00000 1.630380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.630380e+05 1.630380e+05 0.00 NULL
2024 Bronx Community Board #11 District Manager 108589.00000 1.085890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.085890e+05 1.085890e+05 0.00 NULL
2024 Bronx Community Board #12 Community Coordinator 94648.00000 9.464800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.464800e+04 9.464800e+04 0.00 NULL
2024 Bronx Community Board #12 District Manager 158091.00000 1.580910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.580910e+05 1.580910e+05 0.00 NULL
2024 Bronx Community Board #2 Community Coordinator 78662.00000 7.866200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.866200e+04 7.866200e+04 0.00 NULL
2024 Bronx Community Board #2 District Manager 159395.00000 1.593950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.593950e+05 1.593950e+05 0.00 NULL
2024 Bronx Community Board #3 Community Coordinator 77250.00000 7.725000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.725000e+04 7.725000e+04 0.00 NULL
2024 Bronx Community Board #3 District Manager 116575.00000 1.165750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.165750e+05 1.165750e+05 0.00 NULL
2024 Bronx Community Board #4 Community Coordinator 75652.50000 1.513050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.513050e+05 1.513050e+05 0.00 NULL
2024 Bronx Community Board #4 District Manager 108986.00000 2.179720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.179720e+05 2.179720e+05 0.00 NULL
2024 Bronx Community Board #5 Community Coordinator 76923.00000 7.692300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.692300e+04 7.692300e+04 0.00 NULL
2024 Bronx Community Board #5 District Manager 90301.00000 9.030100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.030100e+04 9.030100e+04 0.00 NULL
2024 Bronx Community Board #6 Community Associate 18636.85250 1.863685e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.863685e+04 1.863685e+04 0.00 NULL
2024 Bronx Community Board #6 Community Coordinator 74912.00000 7.491200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.491200e+04 7.491200e+04 0.00 NULL
2024 Bronx Community Board #6 District Manager 113066.00000 1.130660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.130660e+05 1.130660e+05 0.00 NULL
2024 Bronx Community Board #7 Community Associate 48925.00000 9.785000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.785000e+04 9.785000e+04 0.00 NULL
2024 Bronx Community Board #7 Community Coordinator 70040.00000 7.004000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.004000e+04 7.004000e+04 0.00 NULL
2024 Bronx Community Board #7 District Manager 104787.50000 2.095750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.095750e+05 2.095750e+05 0.00 NULL
2024 Bronx Community Board #8 Community Associate 57561.00000 5.756100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.756100e+04 5.756100e+04 0.00 NULL
2024 Bronx Community Board #8 Community Coordinator 74160.00000 1.483200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.483200e+05 1.483200e+05 0.00 NULL
2024 Bronx Community Board #8 District Manager 99286.00000 1.985720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.985720e+05 1.985720e+05 0.00 NULL
2024 Bronx Community Board #9 Community Associate 62848.00000 6.284800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.284800e+04 6.284800e+04 0.00 NULL
2024 Bronx Community Board #9 Community Coordinator 84986.00000 8.498600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.498600e+04 8.498600e+04 0.00 NULL
2024 Bronx Community Board #9 District Manager 137351.00000 1.373510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.373510e+05 1.373510e+05 0.00 NULL
2024 Bronx District Attorney Adm Manager-Non-Mgrl 93473.37500 7.477870e+05 26783.65 3.347956e+03 50.105 474.75 8 5.010500e+01 400.84 7.745707e+05 7.481878e+05 26382.81 NULL
2024 Bronx District Attorney Administrative Accountant 137858.00000 4.135740e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.135740e+05 4.135740e+05 0.00 NULL
2024 Bronx District Attorney Administrative Chief 170433.33333 5.113000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.113000e+05 5.113000e+05 0.00 NULL
2024 Bronx District Attorney Administrative Community Relations Specialist 156666.66667 4.700000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.700000e+05 4.700000e+05 0.00 NULL
2024 Bronx District Attorney Administrative Labor Relations Analyst 177300.00000 1.773000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.773000e+05 1.773000e+05 0.00 NULL
2024 Bronx District Attorney Administrative Manager 144821.66667 8.689300e+05 6018.29 1.003048e+03 0.000 173.75 6 0.000000e+00 0.00 8.749483e+05 8.689300e+05 6018.29 NULL
2024 Bronx District Attorney Administrative Staff Analyst 182047.50000 3.640950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.640950e+05 3.640950e+05 0.00 NULL
2024 Bronx District Attorney Agency Chief Contracting Officer 191300.00000 1.913000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.913000e+05 1.913000e+05 0.00 NULL
2024 Bronx District Attorney Assistant District Attorney 132457.47134 6.238747e+07 12102.53 2.569539e+01 0.000 263.75 471 0.000000e+00 0.00 6.239957e+07 6.238747e+07 12102.53 NULL
2024 Bronx District Attorney Associate Contract Specialist 77910.00000 7.791000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.791000e+04 7.791000e+04 0.00 NULL
2024 Bronx District Attorney Certified It Administrator 151274.50000 3.025490e+05 33.97 1.698500e+01 16.985 0.00 2 1.698500e+01 33.97 3.025830e+05 3.025830e+05 0.00 NULL
2024 Bronx District Attorney Certified It Developer 141557.25000 5.662290e+05 148.83 3.720750e+01 0.000 2.00 4 0.000000e+00 0.00 5.663778e+05 5.662290e+05 148.83 NULL
2024 Bronx District Attorney City Research Scientist 107559.42857 7.529160e+05 2203.50 3.147857e+02 0.000 35.75 7 0.000000e+00 0.00 7.551195e+05 7.529160e+05 2203.50 NULL
2024 Bronx District Attorney City Tax Auditor 87741.00000 8.774100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.774100e+04 8.774100e+04 0.00 NULL
2024 Bronx District Attorney Clerical Associate 63745.86667 1.912376e+06 15507.44 5.169147e+02 0.000 333.75 30 0.000000e+00 0.00 1.927883e+06 1.912376e+06 15507.44 NULL
2024 Bronx District Attorney College Aide 2428.40702 1.384192e+05 0.00 0.000000e+00 0.000 0.00 57 0.000000e+00 0.00 1.384192e+05 1.384192e+05 0.00 NULL
2024 Bronx District Attorney Community Assistant 44022.49485 4.270182e+06 24830.50 2.559845e+02 0.000 954.25 97 0.000000e+00 0.00 4.295012e+06 4.270182e+06 24830.50 NULL
2024 Bronx District Attorney Community Associate 57636.35671 1.890472e+07 335482.30 1.022812e+03 0.000 8816.75 328 0.000000e+00 0.00 1.924021e+07 1.890472e+07 335482.30 NULL
2024 Bronx District Attorney Community Coordinator 76521.47799 1.216692e+07 202343.79 1.272602e+03 0.000 4307.00 159 0.000000e+00 0.00 1.236926e+07 1.216692e+07 202343.79 NULL
2024 Bronx District Attorney Computer Associate 88108.00000 1.762160e+05 184.24 9.212000e+01 92.120 2.00 2 9.212000e+01 184.24 1.764002e+05 1.764002e+05 0.00 NULL
2024 Bronx District Attorney Computer Specialist 141730.66667 4.251920e+05 74.79 2.493000e+01 0.000 1.00 3 0.000000e+00 0.00 4.252668e+05 4.251920e+05 74.79 NULL
2024 Bronx District Attorney Computer Systems Manager 185150.00000 7.406000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.406000e+05 7.406000e+05 0.00 NULL
2024 Bronx District Attorney Deputy Chief Technology Officer 191300.00000 1.913000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.913000e+05 1.913000e+05 0.00 NULL
2024 Bronx District Attorney Director Of Public Information 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2024 Bronx District Attorney District Attorney 232600.00000 2.326000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.326000e+05 2.326000e+05 0.00 NULL
2024 Bronx District Attorney Interpreter 66491.20000 6.649120e+05 26749.45 2.674945e+03 2097.950 848.00 10 2.097950e+03 20979.50 6.916614e+05 6.858915e+05 5769.95 NULL
2024 Bronx District Attorney It Project Specialist 114271.66667 3.428150e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.428150e+05 3.428150e+05 0.00 NULL
2024 Bronx District Attorney It Security Specialist 97850.00000 9.785000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.785000e+04 9.785000e+04 0.00 NULL
2024 Bronx District Attorney Job Opportunity Specialist 67983.00000 6.798300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.798300e+04 6.798300e+04 0.00 NULL
2024 Bronx District Attorney Media Services Technician 64788.33333 5.830950e+05 8616.03 9.573367e+02 413.820 211.50 9 4.138200e+02 3724.38 5.917110e+05 5.868194e+05 4891.65 NULL
2024 Bronx District Attorney Paralegal Aide 64643.14286 4.525020e+05 5728.84 8.184057e+02 0.000 171.00 7 0.000000e+00 0.00 4.582308e+05 4.525020e+05 5728.84 NULL
2024 Bronx District Attorney Principal Accountant Investigator 144000.00000 7.200000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.200000e+05 7.200000e+05 0.00 NULL
2024 Bronx District Attorney Principal Administrative Associate - Non Supvr 71807.35714 1.005303e+06 2114.71 1.510507e+02 0.000 41.00 14 0.000000e+00 0.00 1.007418e+06 1.005303e+06 2114.71 NULL
2024 Bronx District Attorney Private Secretary 120000.00000 1.200000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200000e+05 1.200000e+05 0.00 NULL
2024 Bronx District Attorney Reporter/ Stenographer 91070.91304 2.094631e+06 2501.96 1.087809e+02 0.000 47.75 23 0.000000e+00 0.00 2.097133e+06 2.094631e+06 2501.96 NULL
2024 Bronx District Attorney Secretary 59837.50000 1.196750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.196750e+05 1.196750e+05 0.00 NULL
2024 Bronx District Attorney Special Assistant To The District Attorney 150040.00000 7.502000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.502000e+05 7.502000e+05 0.00 NULL
2024 Bronx District Attorney Student Legal Assistant 2339.51915 3.322117e+05 0.00 0.000000e+00 0.000 0.00 142 0.000000e+00 0.00 3.322117e+05 3.322117e+05 0.00 NULL
2024 Brooklyn Community Board #1 Assistant District Manager 65058.50000 1.301170e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.301170e+05 1.301170e+05 0.00 NULL
2024 Brooklyn Community Board #1 Community Associate 45751.00000 9.150200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.150200e+04 9.150200e+04 0.00 NULL
2024 Brooklyn Community Board #1 District Manager 117897.00000 2.357940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.357940e+05 2.357940e+05 0.00 NULL
2024 Brooklyn Community Board #10 College Aide 3971.87500 3.971875e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.971875e+03 3.971875e+03 0.00 NULL
2024 Brooklyn Community Board #10 Community Assistant 115.06250 1.150625e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150625e+02 1.150625e+02 0.00 NULL
2024 Brooklyn Community Board #10 Community Associate 17407.94000 1.740794e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.740794e+04 1.740794e+04 0.00 NULL
2024 Brooklyn Community Board #10 Community Coordinator 91143.00000 9.114300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.114300e+04 9.114300e+04 0.00 NULL
2024 Brooklyn Community Board #10 District Manager 152556.00000 1.525560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.525560e+05 1.525560e+05 0.00 NULL
2024 Brooklyn Community Board #11 Community Assistant 29664.46080 2.966446e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.966446e+04 2.966446e+04 0.00 NULL
2024 Brooklyn Community Board #11 Community Coordinator 70022.00000 7.002200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.002200e+04 7.002200e+04 0.00 NULL
2024 Brooklyn Community Board #11 District Manager 114486.00000 1.144860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.144860e+05 1.144860e+05 0.00 NULL
2024 Brooklyn Community Board #12 Community Assistant 40328.00000 4.032800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.032800e+04 4.032800e+04 0.00 NULL
2024 Brooklyn Community Board #12 Community Associate 56650.00000 5.665000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.665000e+04 5.665000e+04 0.00 NULL
2024 Brooklyn Community Board #12 Community Coordinator 25673.25040 2.567325e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.567325e+04 2.567325e+04 0.00 NULL
2024 Brooklyn Community Board #12 District Manager 180238.00000 1.802380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.802380e+05 1.802380e+05 0.00 NULL
2024 Brooklyn Community Board #13 Community Assistant 34501.00000 3.450100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.450100e+04 3.450100e+04 0.00 NULL
2024 Brooklyn Community Board #13 Community Associate 58636.00000 5.863600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.863600e+04 5.863600e+04 0.00 NULL
2024 Brooklyn Community Board #13 Community Coordinator 70455.00000 7.045500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.045500e+04 7.045500e+04 0.00 NULL
2024 Brooklyn Community Board #13 District Manager 103810.00000 1.038100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.038100e+05 1.038100e+05 0.00 NULL
2024 Brooklyn Community Board #14 Community Coordinator 59333.82000 1.186676e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.186676e+05 1.186676e+05 0.00 NULL
2024 Brooklyn Community Board #14 District Manager 145664.00000 1.456640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.456640e+05 1.456640e+05 0.00 NULL
2024 Brooklyn Community Board #15 Community Associate 65067.00000 6.506700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.506700e+04 6.506700e+04 0.00 NULL
2024 Brooklyn Community Board #15 District Manager 86143.00000 8.614300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.614300e+04 8.614300e+04 0.00 NULL
2024 Brooklyn Community Board #16 Community Assistant 41583.00000 8.316600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.316600e+04 8.316600e+04 0.00 NULL
2024 Brooklyn Community Board #16 District Manager 125098.00000 1.250980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250980e+05 1.250980e+05 0.00 NULL
2024 Brooklyn Community Board #17 Assistant District Manager 60195.50000 1.203910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.203910e+05 1.203910e+05 0.00 NULL
2024 Brooklyn Community Board #17 Community Assistant 43048.33160 8.609666e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.609666e+04 8.609666e+04 0.00 NULL
2024 Brooklyn Community Board #17 District Manager 125922.00000 1.259220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.259220e+05 1.259220e+05 0.00 NULL
2024 Brooklyn Community Board #18 Community Assistant 42910.00000 4.291000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.291000e+04 4.291000e+04 0.00 NULL
2024 Brooklyn Community Board #18 Community Associate 57231.00000 5.723100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.723100e+04 5.723100e+04 0.00 NULL
2024 Brooklyn Community Board #18 District Manager 125865.00000 1.258650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.258650e+05 1.258650e+05 0.00 NULL
2024 Brooklyn Community Board #2 Community Associate 53560.00000 5.356000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.356000e+04 5.356000e+04 0.00 NULL
2024 Brooklyn Community Board #2 Community Coordinator 74184.00000 7.418400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.418400e+04 7.418400e+04 0.00 NULL
2024 Brooklyn Community Board #2 District Manager 99751.00000 9.975100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.975100e+04 9.975100e+04 0.00 NULL
2024 Brooklyn Community Board #3 Community Coordinator 80987.00000 8.098700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.098700e+04 8.098700e+04 0.00 NULL
2024 Brooklyn Community Board #3 District Manager 107940.00000 2.158800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.158800e+05 2.158800e+05 0.00 NULL
2024 Brooklyn Community Board #4 Community Coordinator 49837.51720 9.967503e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.967503e+04 9.967503e+04 0.00 NULL
2024 Brooklyn Community Board #4 District Manager 100493.00000 1.004930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.004930e+05 1.004930e+05 0.00 NULL
2024 Brooklyn Community Board #4 Principal Administrative Associate - Non Supvr 65688.00000 6.568800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.568800e+04 6.568800e+04 0.00 NULL
2024 Brooklyn Community Board #5 Community Associate 56160.50000 1.123210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.123210e+05 1.123210e+05 0.00 NULL
2024 Brooklyn Community Board #5 District Manager 115407.00000 1.154070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.154070e+05 1.154070e+05 0.00 NULL
2024 Brooklyn Community Board #6 Community Associate 620.90000 6.209000e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.209000e+02 6.209000e+02 0.00 NULL
2024 Brooklyn Community Board #6 Community Coordinator 92589.00000 9.258900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.258900e+04 9.258900e+04 0.00 NULL
2024 Brooklyn Community Board #6 District Manager 122472.00000 1.224720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.224720e+05 1.224720e+05 0.00 NULL
2024 Brooklyn Community Board #7 Community Associate 57992.00000 5.799200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.799200e+04 5.799200e+04 0.00 NULL
2024 Brooklyn Community Board #7 Community Coordinator 80283.00000 8.028300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.028300e+04 8.028300e+04 0.00 NULL
2024 Brooklyn Community Board #7 District Manager 120011.00000 1.200110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200110e+05 1.200110e+05 0.00 NULL
2024 Brooklyn Community Board #8 College Aide 7990.00000 7.990000e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.990000e+03 7.990000e+03 0.00 NULL
2024 Brooklyn Community Board #8 Community Coordinator 87440.00000 8.744000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.744000e+04 8.744000e+04 0.00 NULL
2024 Brooklyn Community Board #8 District Manager 141731.00000 1.417310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.417310e+05 1.417310e+05 0.00 NULL
2024 Brooklyn Community Board #9 Community Associate 47741.00000 4.774100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.774100e+04 4.774100e+04 0.00 NULL
2024 Brooklyn Community Board #9 Community Coordinator 84414.00000 8.441400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.441400e+04 8.441400e+04 0.00 NULL
2024 Brooklyn Community Board #9 District Manager 97036.00000 9.703600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.703600e+04 9.703600e+04 0.00 NULL
2024 Business Integrity Commission Admin Contract Specialist 148506.00000 2.970120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.970120e+05 2.970120e+05 0.00 NULL
2024 Business Integrity Commission Administrative Investigator 203012.00000 2.030120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.030120e+05 2.030120e+05 0.00 NULL
2024 Business Integrity Commission Administrative Staff Analyst 150545.00000 1.505450e+05 187.35 1.873500e+02 187.350 0.00 1 1.873500e+02 187.35 1.507324e+05 1.507324e+05 0.00 NULL
2024 Business Integrity Commission Agency Attorney 94608.50000 3.784340e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.784340e+05 3.784340e+05 0.00 NULL
2024 Business Integrity Commission Associate Fraud Investigator 80443.33333 4.826600e+05 17513.65 2.918942e+03 0.000 316.75 6 0.000000e+00 0.00 5.001737e+05 4.826600e+05 17513.65 NULL
2024 Business Integrity Commission Associate Investigator 70022.00000 7.002200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.002200e+04 7.002200e+04 0.00 NULL
2024 Business Integrity Commission Associate Staff Analyst 106544.50000 2.130890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.130890e+05 2.130890e+05 0.00 NULL
2024 Business Integrity Commission Chair 264035.50000 5.280710e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.280710e+05 5.280710e+05 0.00 NULL
2024 Business Integrity Commission Community Assistant 24063.48000 2.406348e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.406348e+04 2.406348e+04 0.00 NULL
2024 Business Integrity Commission Community Associate 48796.01684 9.271243e+05 2857.73 1.504068e+02 0.000 99.50 19 0.000000e+00 0.00 9.299821e+05 9.271243e+05 2857.73 NULL
2024 Business Integrity Commission Community Coordinator 73218.27778 1.317929e+06 2095.86 1.164367e+02 0.000 47.50 18 0.000000e+00 0.00 1.320025e+06 1.317929e+06 2095.86 NULL
2024 Business Integrity Commission Computer Service Technician 66003.00000 6.600300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.600300e+04 6.600300e+04 0.00 NULL
2024 Business Integrity Commission Computer Systems Manager 130182.00000 2.603640e+05 286.14 1.430700e+02 143.070 0.00 2 1.430700e+02 286.14 2.606501e+05 2.606501e+05 0.00 NULL
2024 Business Integrity Commission Cyber Security Analyst 90177.00000 9.017700e+04 155.74 1.557400e+02 155.740 3.25 1 1.557400e+02 155.74 9.033274e+04 9.033274e+04 0.00 NULL
2024 Business Integrity Commission Deputy Commissioner Of Investigations 142055.00000 1.420550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.420550e+05 1.420550e+05 0.00 NULL
2024 Business Integrity Commission Director Of Investigations 129637.00000 1.296370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.296370e+05 1.296370e+05 0.00 NULL
2024 Business Integrity Commission Director Of Investigative Audits 141544.00000 1.415440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.415440e+05 1.415440e+05 0.00 NULL
2024 Business Integrity Commission Executive Agency Counsel 130752.60000 2.092042e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 2.092042e+06 2.092042e+06 0.00 NULL
2024 Business Integrity Commission Management Auditor 88802.66667 2.664080e+05 -1.84 -6.133333e-01 0.000 0.00 3 -6.133333e-01 -1.84 2.664062e+05 2.664062e+05 0.00 NULL
2024 Business Integrity Commission Market Agent 64098.57143 4.486900e+05 3521.46 5.030657e+02 570.680 80.50 7 5.030657e+02 3521.46 4.522115e+05 4.522115e+05 0.00 NULL
2024 Business Integrity Commission Principal Administrative Associate - Non Supvr 65686.00000 6.568600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.568600e+04 6.568600e+04 0.00 NULL
2024 Campaign Finance Board Admin Asst-Campaign Fin Board 68442.33333 6.159810e+05 10123.58 1.124842e+03 64.650 311.75 9 6.465000e+01 581.85 6.261046e+05 6.165628e+05 9541.73 NULL
2024 Campaign Finance Board Agency Attorney 110566.83333 6.634010e+05 2145.45 3.575750e+02 16.105 33.25 6 1.610500e+01 96.63 6.655464e+05 6.634976e+05 2048.82 NULL
2024 Campaign Finance Board Agency Chief Contracting Officer 174744.00000 1.747440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.747440e+05 1.747440e+05 0.00 NULL
2024 Campaign Finance Board Analyst 93579.80000 1.263327e+07 586623.79 4.345361e+03 478.920 9517.83 135 4.789200e+02 64654.20 1.321990e+07 1.269793e+07 521969.59 NULL
2024 Campaign Finance Board Associate Staff Analyst 134546.00000 1.345460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.345460e+05 1.345460e+05 0.00 NULL
2024 Campaign Finance Board Attorney-Campaign Fin Board 142731.33333 4.281940e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.281940e+05 4.281940e+05 0.00 NULL
2024 Campaign Finance Board College Aide 2203.30000 4.406600e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.406600e+03 4.406600e+03 0.00 NULL
2024 Campaign Finance Board Deputy Executive Director Campaign Finance Board 189777.22222 1.707995e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.707995e+06 1.707995e+06 0.00 NULL
2024 Campaign Finance Board Director Of Public Relations 133900.00000 1.339000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339000e+05 1.339000e+05 0.00 NULL
2024 Campaign Finance Board Executive Agency Counsel 174758.52600 8.737926e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.737926e+05 8.737926e+05 0.00 NULL
2024 Campaign Finance Board Executive Director 254865.00000 5.097300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.097300e+05 5.097300e+05 0.00 NULL
2024 Campaign Finance Board Systems Administrator-Cam Fin Bd 127454.05263 2.421627e+06 45320.11 2.385269e+03 0.000 589.25 19 0.000000e+00 0.00 2.466947e+06 2.421627e+06 45320.11 NULL
2024 City Clerk Administrative Investigator 106848.00000 1.068480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.068480e+05 1.068480e+05 0.00 NULL
2024 City Clerk Administrative Management Auditor 230661.00000 2.306610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.306610e+05 2.306610e+05 0.00 NULL
2024 City Clerk Agency Attorney 96001.00000 9.600100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.600100e+04 9.600100e+04 0.00 NULL
2024 City Clerk Chief Of Staff 134059.00000 1.340590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.340590e+05 1.340590e+05 0.00 NULL
2024 City Clerk City Clerk & Clerk Of Council 271948.00000 2.719480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.719480e+05 2.719480e+05 0.00 NULL
2024 City Clerk Clerical Associate 51213.70000 2.048548e+06 1619.02 4.047550e+01 0.000 40.75 40 0.000000e+00 0.00 2.050167e+06 2.048548e+06 1619.02 NULL
2024 City Clerk College Aide 10073.33333 6.044000e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.044000e+04 6.044000e+04 0.00 NULL
2024 City Clerk Community Assistant 52339.00000 5.233900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.233900e+04 5.233900e+04 0.00 NULL
2024 City Clerk Community Associate 57157.50000 1.143150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.143150e+05 1.143150e+05 0.00 NULL
2024 City Clerk Community Coordinator 100362.00000 1.003620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.003620e+05 1.003620e+05 0.00 NULL
2024 City Clerk Deputy City Clerk 176414.50000 7.056580e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.056580e+05 7.056580e+05 0.00 NULL
2024 City Clerk Director Of Administration 152953.00000 1.529530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.529530e+05 1.529530e+05 0.00 NULL
2024 City Clerk Executive Agency Counsel 195389.00000 1.953890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.953890e+05 1.953890e+05 0.00 NULL
2024 City Clerk Executive Assistant To The City Clerk 114892.00000 1.148920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.148920e+05 1.148920e+05 0.00 NULL
2024 City Clerk Executive Assistant To The Director Of Administration 73016.00000 7.301600e+04 5.29 5.290000e+00 5.290 0.00 1 5.290000e+00 5.29 7.302129e+04 7.302129e+04 0.00 NULL
2024 City Clerk Executive Assistant To The First Deputy City Clerk 66501.00000 6.650100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.650100e+04 6.650100e+04 0.00 NULL
2024 City Clerk Principal Administrative Associate - Non Supvr 79602.00000 3.980100e+05 900.73 1.801460e+02 8.080 13.00 5 8.080000e+00 40.40 3.989107e+05 3.980504e+05 860.33 NULL
2024 City Clerk Special Advisor To The City Clerk 99772.00000 9.977200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.977200e+04 9.977200e+04 0.00 NULL
2024 City Council Assistant Director Of Administration 166333.66667 9.980020e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.980020e+05 9.980020e+05 0.00 NULL
2024 City Council Assistant Director Of Finance 178636.00000 5.359080e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.359080e+05 5.359080e+05 0.00 NULL
2024 City Council Assistant Director Of Legal Services 147183.68421 2.796490e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.796490e+06 2.796490e+06 0.00 NULL
2024 City Council Assistant Sergeant At Arms 66243.85714 9.274140e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 9.274140e+05 9.274140e+05 0.00 NULL
2024 City Council Chief Of Staff 276460.00000 2.764600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.764600e+05 2.764600e+05 0.00 NULL
2024 City Council Communication Assistant 92683.16667 1.112198e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.112198e+06 1.112198e+06 0.00 NULL
2024 City Council Council Member 148500.00000 7.722000e+06 0.00 0.000000e+00 0.000 0.00 52 0.000000e+00 0.00 7.722000e+06 7.722000e+06 0.00 NULL
2024 City Council Council Member Aide 62228.46457 3.161206e+07 0.00 0.000000e+00 0.000 0.00 508 0.000000e+00 0.00 3.161206e+07 3.161206e+07 0.00 NULL
2024 City Council Deputy Chief Of Staff 239560.20000 1.197801e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.197801e+06 1.197801e+06 0.00 NULL
2024 City Council Deputy Director 162537.00000 3.413277e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 3.413277e+06 3.413277e+06 0.00 NULL
2024 City Council Deputy Director- Finance 218648.16667 1.311889e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.311889e+06 1.311889e+06 0.00 NULL
2024 City Council Deputy Director-Legal Division 190994.00000 3.819880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.819880e+05 3.819880e+05 0.00 NULL
2024 City Council Director 199644.60000 1.996446e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.996446e+06 1.996446e+06 0.00 NULL
2024 City Council Director Legal Division/Gen Counsel& Spec Counsel 239560.00000 2.395600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.395600e+05 2.395600e+05 0.00 NULL
2024 City Council Director Of Finance 233398.00000 2.333980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.333980e+05 2.333980e+05 0.00 NULL
2024 City Council Director Of Land Use Division 196267.00000 1.962670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.962670e+05 1.962670e+05 0.00 NULL
2024 City Council Executive Legislative Coordinator 227698.00000 6.830940e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.830940e+05 6.830940e+05 0.00 NULL
2024 City Council Legislative Administrative Assistant 74590.25000 8.950830e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 8.950830e+05 8.950830e+05 0.00 NULL
2024 City Council Legislative Administrative Manager 112559.45161 3.489343e+06 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 3.489343e+06 3.489343e+06 0.00 NULL
2024 City Council Legislative Assistant 79576.76712 5.809104e+06 0.00 0.000000e+00 0.000 0.00 73 0.000000e+00 0.00 5.809104e+06 5.809104e+06 0.00 NULL
2024 City Council Legislative Clerk 40000.00000 1.320000e+06 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 1.320000e+06 1.320000e+06 0.00 NULL
2024 City Council Legislative Computer Support Specialist 92647.62500 7.411810e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.411810e+05 7.411810e+05 0.00 NULL
2024 City Council Legislative Coordinator 98155.28571 6.870870e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.870870e+05 6.870870e+05 0.00 NULL
2024 City Council Legislative Counsel 105725.65455 5.814911e+06 0.00 0.000000e+00 0.000 0.00 55 0.000000e+00 0.00 5.814911e+06 5.814911e+06 0.00 NULL
2024 City Council Legislative Financial Analyst 64434.60000 9.665190e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 9.665190e+05 9.665190e+05 0.00 NULL
2024 City Council Legislative Intern 5964.15184 1.133189e+05 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.133189e+05 1.133189e+05 0.00 NULL
2024 City Council Legislative Investigator 86170.40000 4.308520e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.308520e+05 4.308520e+05 0.00 NULL
2024 City Council Legislative Policy Analyst 75067.00000 1.201072e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.201072e+06 1.201072e+06 0.00 NULL
2024 City Council Legislative Programmer/Analyst 91701.11111 1.650620e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.650620e+06 1.650620e+06 0.00 NULL
2024 City Council Legislative Project Manager 96019.37500 7.681550e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.681550e+05 7.681550e+05 0.00 NULL
2024 City Council Legislative Support Service Coord 78480.50000 1.569610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.569610e+05 1.569610e+05 0.00 NULL
2024 City Council Legislative Systems Manager 148220.25000 5.928810e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.928810e+05 5.928810e+05 0.00 NULL
2024 City Council Minority Leader 148500.00000 1.485000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.485000e+05 1.485000e+05 0.00 NULL
2024 City Council Principal Legislative Financial Analyst 128244.84615 1.667183e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.667183e+06 1.667183e+06 0.00 NULL
2024 City Council Senior Legislative Financial Analyst 77563.20000 3.878160e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.878160e+05 3.878160e+05 0.00 NULL
2024 City Council Senior Legislative Investigator 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2024 City Council Senior Legislative Policy Analyst 98040.81818 1.078449e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.078449e+06 1.078449e+06 0.00 NULL
2024 City Council Sergeant At Arms 135317.00000 2.706340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.706340e+05 2.706340e+05 0.00 NULL
2024 City Council Speaker/Majority Leader 164500.00000 1.645000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.645000e+05 1.645000e+05 0.00 NULL
2024 City Council Special Advisor To The Director 173305.66667 1.039834e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.039834e+06 1.039834e+06 0.00 NULL
2024 Civil Service Commission Administrative Manager 144315.00000 1.443150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.443150e+05 1.443150e+05 0.00 NULL
2024 Civil Service Commission Agency Attorney 84944.80000 4.247240e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.247240e+05 4.247240e+05 0.00 NULL
2024 Civil Service Commission Chairman 2028.42800 2.028428e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.028428e+03 2.028428e+03 0.00 NULL
2024 Civil Service Commission Clerical Associate 54117.00000 5.411700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.411700e+04 5.411700e+04 0.00 NULL
2024 Civil Service Commission Commissioner 1837.58067 5.512742e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.512742e+03 5.512742e+03 0.00 NULL
2024 Civil Service Commission Community Associate 61530.00000 1.230600e+05 0.09 4.500000e-02 0.045 0.00 2 4.500000e-02 0.09 1.230601e+05 1.230601e+05 0.00 NULL
2024 Civil Service Commission Executive Agency Counsel 159320.00000 1.593200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.593200e+05 1.593200e+05 0.00 NULL
2024 Civilian Complaint Review Bd Adm Manager-Non-Mgrl 113018.00000 2.260360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.260360e+05 2.260360e+05 0.00 NULL
2024 Civilian Complaint Review Bd Administrative Director Of Social Services 129652.00000 1.296520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.296520e+05 1.296520e+05 0.00 NULL
2024 Civilian Complaint Review Bd Administrative Procurement Analyst 98881.70000 9.888170e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.888170e+04 9.888170e+04 0.00 NULL
2024 Civilian Complaint Review Bd Administrative Staff Analyst 209019.09000 2.090191e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.090191e+05 2.090191e+05 0.00 NULL
2024 Civilian Complaint Review Bd Agency Attorney 92276.37500 7.382110e+05 16692.36 2.086545e+03 1713.675 316.50 8 1.713675e+03 13709.40 7.549034e+05 7.519204e+05 2982.96 NULL
2024 Civilian Complaint Review Bd Agency Attorney Interne 76293.00000 1.525860e+05 2639.16 1.319580e+03 1319.580 61.25 2 1.319580e+03 2639.16 1.552252e+05 1.552252e+05 0.00 NULL
2024 Civilian Complaint Review Bd Certified It Administrator 147317.00000 1.473170e+05 3718.51 3.718510e+03 3718.510 42.00 1 3.718510e+03 3718.51 1.510355e+05 1.510355e+05 0.00 NULL
2024 Civilian Complaint Review Bd City Research Scientist 96816.50000 1.936330e+05 1044.93 5.224650e+02 522.465 19.75 2 5.224650e+02 1044.93 1.946779e+05 1.946779e+05 0.00 NULL
2024 Civilian Complaint Review Bd Clerical Associate 66240.50000 1.324810e+05 156.60 7.830000e+01 78.300 4.75 2 7.830000e+01 156.60 1.326376e+05 1.326376e+05 0.00 NULL
2024 Civilian Complaint Review Bd College Aide 3772.12500 1.131638e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.131638e+04 1.131638e+04 0.00 NULL
2024 Civilian Complaint Review Bd Community Assistant 43348.62000 4.334862e+04 685.85 6.858500e+02 685.850 29.00 1 6.858500e+02 685.85 4.403447e+04 4.403447e+04 0.00 NULL
2024 Civilian Complaint Review Bd Community Associate 45459.10923 1.818364e+05 6610.17 1.652543e+03 449.355 207.50 4 4.493550e+02 1797.42 1.884466e+05 1.836339e+05 4812.75 NULL
2024 Civilian Complaint Review Bd Community Coordinator 81800.32568 8.998036e+05 53130.95 4.830086e+03 1194.240 969.25 11 1.194240e+03 13136.64 9.529345e+05 9.129402e+05 39994.31 NULL
2024 Civilian Complaint Review Bd Computer Operations Manager 157673.00000 1.576730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.576730e+05 1.576730e+05 0.00 NULL
2024 Civilian Complaint Review Bd Computer Specialist 117325.90167 3.519777e+05 18432.19 6.144063e+03 4555.140 301.25 3 4.555140e+03 13665.42 3.704099e+05 3.656431e+05 4766.77 NULL
2024 Civilian Complaint Review Bd Computer Systems Manager 133948.00000 2.678960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.678960e+05 2.678960e+05 0.00 NULL
2024 Civilian Complaint Review Bd Deputy Assistant Director 153658.31857 2.151216e+06 6681.43 4.772450e+02 0.000 82.50 14 0.000000e+00 0.00 2.157898e+06 2.151216e+06 6681.43 NULL
2024 Civilian Complaint Review Bd Executive Agency Counsel 145587.30704 3.930857e+06 13226.86 4.898837e+02 0.000 238.75 27 0.000000e+00 0.00 3.944084e+06 3.930857e+06 13226.86 NULL
2024 Civilian Complaint Review Bd Executive Director 258441.00000 2.584410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.584410e+05 2.584410e+05 0.00 NULL
2024 Civilian Complaint Review Bd Executive Program Specialist 68959.00000 6.895900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.895900e+04 6.895900e+04 0.00 NULL
2024 Civilian Complaint Review Bd Investigative Manager 121969.63636 2.683332e+06 13459.98 6.118173e+02 0.000 233.00 22 0.000000e+00 0.00 2.696792e+06 2.683332e+06 13459.98 NULL
2024 Civilian Complaint Review Bd Investigator 60506.28533 9.257462e+06 85280.84 5.573911e+02 0.000 1989.50 153 0.000000e+00 0.00 9.342742e+06 9.257462e+06 85280.84 NULL
2024 Civilian Complaint Review Bd Media Services Technician 63706.00000 6.370600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.370600e+04 6.370600e+04 0.00 NULL
2024 Civilian Complaint Review Bd Member, Civilian Complaint Review Board 288.14259 3.745854e+03 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 3.745854e+03 3.745854e+03 0.00 NULL
2024 Civilian Complaint Review Bd New York City Public Service Fellow 44693.00000 4.469300e+04 397.81 3.978100e+02 397.810 16.75 1 3.978100e+02 397.81 4.509081e+04 4.509081e+04 0.00 NULL
2024 Civilian Complaint Review Bd Principal Administrative Associate - Non Supvr 64844.50000 1.296890e+05 53.78 2.689000e+01 26.890 0.00 2 2.689000e+01 53.78 1.297428e+05 1.297428e+05 0.00 NULL
2024 Civilian Complaint Review Bd Secretary 75024.00000 7.502400e+04 21104.20 2.110420e+04 21104.200 404.00 1 2.110420e+04 21104.20 9.612820e+04 9.612820e+04 0.00 NULL
2024 Civilian Complaint Review Bd Special Officer 86037.08750 8.603709e+04 31278.90 3.127890e+04 31278.900 729.50 1 3.127890e+04 31278.90 1.173160e+05 1.173160e+05 0.00 NULL
2024 Civilian Complaint Review Bd Strategic Initiative Specialist 94829.00000 9.482900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.482900e+04 9.482900e+04 0.00 NULL
2024 Civilian Complaint Review Bd Supervisor Of Investigators 93792.92308 2.438616e+06 126371.77 4.860453e+03 1311.705 2037.00 26 1.311705e+03 34104.33 2.564988e+06 2.472720e+06 92267.44 NULL
2024 Commission On Racial Equity Executive Agency Counsel 155000.00000 1.550000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550000e+05 1.550000e+05 0.00 NULL
2024 Commission On Racial Equity Executive Director And Chair, Commission On Racial Equity 208946.00000 2.089460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.089460e+05 2.089460e+05 0.00 NULL
2024 Commission On Racial Equity Research Projects Coord 113300.00000 4.532000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.532000e+05 4.532000e+05 0.00 NULL
2024 Community College (Bronx) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 106 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Bronx) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Bronx) Adjunct College Lab Tech 9992.95732 2.798028e+05 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 2.798028e+05 2.798028e+05 0.00 NULL
2024 Community College (Bronx) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 235 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Bronx) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Bronx) Adjunct Senior College Lab Tech 26208.00000 2.620800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.620800e+04 2.620800e+04 0.00 NULL
2024 Community College (Bronx) Administrator 155833.00000 3.116660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.116660e+05 3.116660e+05 0.00 NULL
2024 Community College (Bronx) Administrator Supt Campus B/G 132165.00000 1.321650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.321650e+05 1.321650e+05 0.00 NULL
2024 Community College (Bronx) Assistant College Security Director 85000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2024 Community College (Bronx) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 73 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Bronx) Assistant To Heo 71504.55556 1.930623e+06 11209.44 4.151644e+02 0.000 171.25 27 0.000000e+00 0.00 1.941832e+06 1.930623e+06 11209.44 NULL
2024 Community College (Bronx) Assistant Vice President 156193.00000 7.809650e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.809650e+05 7.809650e+05 0.00 NULL
2024 Community College (Bronx) Associate Administrator 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2024 Community College (Bronx) Associate Dean 147709.00000 1.477090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.477090e+05 1.477090e+05 0.00 NULL
2024 Community College (Bronx) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 116 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Bronx) Business Data And Reporting Analyst 49904.93929 6.986692e+05 12012.33 8.580236e+02 0.000 272.50 14 0.000000e+00 0.00 7.106815e+05 6.986692e+05 12012.33 NULL
2024 Community College (Bronx) Campus Peace Officer 42746.25000 5.129550e+05 91090.72 7.590893e+03 7685.915 2944.17 12 7.590893e+03 91090.72 6.040457e+05 6.040457e+05 0.00 NULL
2024 Community College (Bronx) Campus Public Safety Sergeant 60061.88889 5.405570e+05 140809.80 1.564553e+04 12570.580 3377.83 9 1.257058e+04 113135.22 6.813668e+05 6.536922e+05 27674.58 NULL
2024 Community College (Bronx) Campus Security Assistant 18589.63442 4.461512e+05 67184.75 2.799365e+03 595.065 2713.00 24 5.950650e+02 14281.56 5.133360e+05 4.604328e+05 52903.19 NULL
2024 Community College (Bronx) Carpenter NA NA 20735.46 6.911820e+03 8706.750 276.00 3 6.911820e+03 20735.46 NA NA NA NULL
2024 Community College (Bronx) Cement Mason NA NA 1154.40 5.772000e+02 577.200 12.00 2 5.772000e+02 1154.40 NA NA NA NULL
2024 Community College (Bronx) Chief Administrative Supt Campus B/G 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2024 Community College (Bronx) Chief College Lab Technician 77772.90917 4.666375e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.666375e+05 4.666375e+05 0.00 NULL
2024 Community College (Bronx) City Laborer NA NA 195650.89 1.505007e+04 18750.340 3332.00 13 1.505007e+04 195650.89 NA NA NA NULL
2024 Community College (Bronx) Clip Instructor 66558.00000 5.324640e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.324640e+05 5.324640e+05 0.00 NULL
2024 Community College (Bronx) College Accountant 55365.33333 1.660960e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.660960e+05 1.660960e+05 0.00 NULL
2024 Community College (Bronx) College Accounting Assistant 47435.50000 9.487100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.487100e+04 9.487100e+04 0.00 NULL
2024 Community College (Bronx) College Assistant 10856.82369 2.421072e+06 0.00 0.000000e+00 0.000 0.00 223 0.000000e+00 0.00 2.421072e+06 2.421072e+06 0.00 NULL
2024 Community College (Bronx) College Graph Designer 52550.10000 2.102004e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.102004e+05 2.102004e+05 0.00 NULL
2024 Community College (Bronx) College Lab Technician 55585.71857 7.782001e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 7.782001e+05 7.782001e+05 0.00 NULL
2024 Community College (Bronx) College Print Shop Associate 45644.50000 9.128900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.128900e+04 9.128900e+04 0.00 NULL
2024 Community College (Bronx) College Security Director 114704.00000 1.147040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.147040e+05 1.147040e+05 0.00 NULL
2024 Community College (Bronx) College Security Specialist 66424.66667 1.992740e+05 8166.42 2.722140e+03 2380.760 179.00 3 2.380760e+03 7142.28 2.074404e+05 2.064163e+05 1024.14 NULL
2024 Community College (Bronx) Computer Systems Manager 102019.00000 1.020190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020190e+05 1.020190e+05 0.00 NULL
2024 Community College (Bronx) Continuing Education Teacher 10468.85557 3.664099e+05 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 3.664099e+05 3.664099e+05 0.00 NULL
2024 Community College (Bronx) Cuny Administrator Assistant 55467.45455 6.101420e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 6.101420e+05 6.101420e+05 0.00 NULL
2024 Community College (Bronx) Cuny Art Model 343.00000 6.860000e+02 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 6.860000e+02 6.860000e+02 0.00 NULL
2024 Community College (Bronx) Cuny Custodial Assistant 35439.60000 1.417584e+06 38692.85 9.673212e+02 437.330 1529.50 40 4.373300e+02 17493.20 1.456277e+06 1.435077e+06 21199.65 NULL
2024 Community College (Bronx) Cuny Office Assistant 39259.83077 2.551889e+06 4982.14 7.664831e+01 0.000 222.75 65 0.000000e+00 0.00 2.556871e+06 2.551889e+06 4982.14 NULL
2024 Community College (Bronx) Cuny Start Instructor 75204.14286 5.264290e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.264290e+05 5.264290e+05 0.00 NULL
2024 Community College (Bronx) Custodial Supervisor 38873.00000 3.887300e+04 3134.05 3.134050e+03 3134.050 106.25 1 3.134050e+03 3134.05 4.200705e+04 4.200705e+04 0.00 NULL
2024 Community College (Bronx) Dean 167500.00000 3.350000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.350000e+05 3.350000e+05 0.00 NULL
2024 Community College (Bronx) Disability Accommodations Specialist 28622.09075 1.144884e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.144884e+05 1.144884e+05 0.00 NULL
2024 Community College (Bronx) Electrician NA NA 37680.84 1.256028e+04 16223.040 399.50 3 1.256028e+04 37680.84 NA NA NA NULL
2024 Community College (Bronx) Eoc Accounting Assistant 39469.00000 3.946900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.946900e+04 3.946900e+04 0.00 NULL
2024 Community College (Bronx) Eoc Adjunct College Lab Tech 2751.71000 1.100684e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.100684e+04 1.100684e+04 0.00 NULL
2024 Community College (Bronx) Eoc Adjunct Lecturer 32091.04786 2.246373e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.246373e+05 2.246373e+05 0.00 NULL
2024 Community College (Bronx) Eoc Administrative Assistant 58147.00000 1.162940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.162940e+05 1.162940e+05 0.00 NULL
2024 Community College (Bronx) Eoc Assistant To Heo 76301.88889 6.867170e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 6.867170e+05 6.867170e+05 0.00 NULL
2024 Community College (Bronx) Eoc College Lab Technician 74430.00000 7.443000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.443000e+04 7.443000e+04 0.00 NULL
2024 Community College (Bronx) Eoc Custodial Assistant 36150.50000 7.230100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.230100e+04 7.230100e+04 0.00 NULL
2024 Community College (Bronx) Eoc Custodial Supervisor 42874.00000 4.287400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.287400e+04 4.287400e+04 0.00 NULL
2024 Community College (Bronx) Eoc Higher Education Assistant 99532.00000 9.953200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.953200e+04 9.953200e+04 0.00 NULL
2024 Community College (Bronx) Eoc Higher Education Associate 105923.00000 2.118460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.118460e+05 2.118460e+05 0.00 NULL
2024 Community College (Bronx) Eoc Higher Education Officer 113701.66667 3.411050e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.411050e+05 3.411050e+05 0.00 NULL
2024 Community College (Bronx) Eoc It Assistant 49211.00000 4.921100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.921100e+04 4.921100e+04 0.00 NULL
2024 Community College (Bronx) Eoc It Support Assistant 38928.00000 3.892800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.892800e+04 3.892800e+04 0.00 NULL
2024 Community College (Bronx) Eoc Lecturer 86802.00000 2.604060e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.604060e+05 2.604060e+05 0.00 NULL
2024 Community College (Bronx) Eoc Office Assistant 38108.00000 2.286480e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.286480e+05 2.286480e+05 0.00 NULL
2024 Community College (Bronx) High Pressure Plant Tender NA NA 155572.13 3.111443e+04 30117.600 2842.75 5 3.011760e+04 150588.00 NA NA NA NULL
2024 Community College (Bronx) Higher Education Assistant 88153.72093 7.581220e+06 1529.28 1.778233e+01 0.000 20.00 86 0.000000e+00 0.00 7.582749e+06 7.581220e+06 1529.28 NULL
2024 Community College (Bronx) Higher Education Associate 102605.41935 3.180768e+06 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 3.180768e+06 3.180768e+06 0.00 NULL
2024 Community College (Bronx) Higher Education Officer 129361.92308 5.045115e+06 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 5.045115e+06 5.045115e+06 0.00 NULL
2024 Community College (Bronx) Instructor 67708.00000 6.770800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.770800e+04 6.770800e+04 0.00 NULL
2024 Community College (Bronx) It Assistant 56335.47200 1.295716e+06 66554.83 2.893688e+03 172.260 1756.50 23 1.722600e+02 3961.98 1.362271e+06 1.299678e+06 62592.85 NULL
2024 Community College (Bronx) It Associate 85098.16667 5.105890e+05 2078.70 3.464500e+02 0.000 29.00 6 0.000000e+00 0.00 5.126677e+05 5.105890e+05 2078.70 NULL
2024 Community College (Bronx) It Senior Associate 100457.33333 3.013720e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.013720e+05 3.013720e+05 0.00 NULL
2024 Community College (Bronx) It Support Assistant 34379.90278 3.094191e+05 369.53 4.105889e+01 0.000 13.00 9 0.000000e+00 0.00 3.097887e+05 3.094191e+05 369.53 NULL
2024 Community College (Bronx) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 70 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Bronx) Lecturer/Doctoral Schedule 86126.00000 3.445040e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.445040e+05 3.445040e+05 0.00 NULL
2024 Community College (Bronx) Locksmith NA NA 16783.70 1.678370e+04 16783.700 382.75 1 1.678370e+04 16783.70 NA NA NA NULL
2024 Community College (Bronx) Mail/Message Services Worker 38406.00000 7.681200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 7.681200e+04 7.681200e+04 0.00 NULL
2024 Community College (Bronx) Maintenance Worker NA NA 27134.48 4.522413e+03 3681.595 590.50 6 3.681595e+03 22089.57 NA NA NA NULL
2024 Community College (Bronx) Motor Vehicle Operator 44753.50000 8.950700e+04 581.13 2.905650e+02 290.565 18.75 2 2.905650e+02 581.13 9.008813e+04 9.008813e+04 0.00 NULL
2024 Community College (Bronx) Non-Teaching Adjunct Ii 4889.55618 3.667167e+05 0.00 0.000000e+00 0.000 0.00 75 0.000000e+00 0.00 3.667167e+05 3.667167e+05 0.00 NULL
2024 Community College (Bronx) Non-Teaching Adjunct Iii 2857.45893 8.000885e+04 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 8.000885e+04 8.000885e+04 0.00 NULL
2024 Community College (Bronx) Non-Teaching Adjunct Iv 1042.17500 1.250610e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.250610e+04 1.250610e+04 0.00 NULL
2024 Community College (Bronx) Non-Teaching Adjunct V 3434.65941 5.838921e+04 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 5.838921e+04 5.838921e+04 0.00 NULL
2024 Community College (Bronx) Nurse Practitioner 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2024 Community College (Bronx) Painter NA NA 43952.64 1.465088e+04 21605.000 651.00 3 1.465088e+04 43952.64 NA NA NA NULL
2024 Community College (Bronx) Plumber NA NA 67549.68 3.377484e+04 33774.840 594.00 2 3.377484e+04 67549.68 NA NA NA NULL
2024 Community College (Bronx) President 275454.00000 5.509080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.509080e+05 5.509080e+05 0.00 NULL
2024 Community College (Bronx) Principal Custodial Supervisor 65774.00000 6.577400e+04 1769.57 1.769570e+03 1769.570 37.00 1 1.769570e+03 1769.57 6.754357e+04 6.754357e+04 0.00 NULL
2024 Community College (Bronx) Professor NA NA 0.00 0.000000e+00 0.000 0.00 132 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Bronx) Project Manager 90940.00000 1.818800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.818800e+05 1.818800e+05 0.00 NULL
2024 Community College (Bronx) Senior College Lab Tech 77084.69231 1.002101e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.002101e+06 1.002101e+06 0.00 NULL
2024 Community College (Bronx) Senior Custodial Supervisor 42004.00000 8.400800e+04 7994.53 3.997265e+03 3997.265 246.00 2 3.997265e+03 7994.53 9.200253e+04 9.200253e+04 0.00 NULL
2024 Community College (Bronx) Senior Stationary Engineer NA NA 66865.12 6.686512e+04 66865.120 613.67 1 6.686512e+04 66865.12 NA NA NA NULL
2024 Community College (Bronx) Senior Vice President 227660.00000 2.276600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.276600e+05 2.276600e+05 0.00 NULL
2024 Community College (Bronx) Sr College Laboratory Tech 4902.58000 9.805160e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.805160e+03 9.805160e+03 0.00 NULL
2024 Community College (Bronx) Stationary Engineer NA NA 492693.30 5.474370e+04 8109.000 5164.50 9 8.109000e+03 72981.00 NA NA NA NULL
2024 Community College (Bronx) Steam Fitter NA NA 22755.00 7.585000e+03 10824.000 185.00 3 7.585000e+03 22755.00 NA NA NA NULL
2024 Community College (Bronx) Stock Worker 35602.50000 1.424100e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.424100e+05 1.424100e+05 0.00 NULL
2024 Community College (Bronx) Supervisor Carpenter NA NA 10167.20 1.016720e+04 10167.200 128.50 1 1.016720e+04 10167.20 NA NA NA NULL
2024 Community College (Bronx) Supervisor Electrician NA NA 123877.06 1.238771e+05 123877.060 1219.50 1 1.238771e+05 123877.06 NA NA NA NULL
2024 Community College (Bronx) Thermostat Repairer NA NA 2046.96 1.023480e+03 1023.480 18.00 2 1.023480e+03 2046.96 NA NA NA NULL
2024 Community College (Bronx) University Professor 170452.00000 1.704520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.704520e+05 1.704520e+05 0.00 NULL
2024 Community College (Bronx) Vice President 186463.50000 1.118781e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.118781e+06 1.118781e+06 0.00 NULL
2024 Community College (Hostos) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 115 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Hostos) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Hostos) Adjunct College Lab Tech 12110.59977 1.332166e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.332166e+05 1.332166e+05 0.00 NULL
2024 Community College (Hostos) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 160 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Hostos) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Hostos) Administrator 165954.00000 1.659540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.659540e+05 1.659540e+05 0.00 NULL
2024 Community College (Hostos) Administrator Supt Campus B/G 94900.50000 1.898010e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.898010e+05 1.898010e+05 0.00 NULL
2024 Community College (Hostos) Assistant Administrator 148084.00000 4.442520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.442520e+05 4.442520e+05 0.00 NULL
2024 Community College (Hostos) Assistant College Security Director 95205.00000 1.904100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.904100e+05 1.904100e+05 0.00 NULL
2024 Community College (Hostos) Assistant Dean 127145.00000 2.542900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.542900e+05 2.542900e+05 0.00 NULL
2024 Community College (Hostos) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 71 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Hostos) Assistant To Heo 61860.57143 3.464192e+06 11266.34 2.011846e+02 0.000 213.50 56 0.000000e+00 0.00 3.475458e+06 3.464192e+06 11266.34 NULL
2024 Community College (Hostos) Assistant Vice President 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2024 Community College (Hostos) Associate Administrator 140010.00000 1.400100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400100e+05 1.400100e+05 0.00 NULL
2024 Community College (Hostos) Associate Dean 139000.00000 2.780000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.780000e+05 2.780000e+05 0.00 NULL
2024 Community College (Hostos) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 59 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Hostos) Business Data And Reporting Analyst 55608.00000 1.112160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.112160e+05 1.112160e+05 0.00 NULL
2024 Community College (Hostos) Campus Peace Officer 46673.50000 6.534290e+05 272067.82 1.943342e+04 15679.780 7783.50 14 1.567978e+04 219516.92 9.254968e+05 8.729459e+05 52550.90 NULL
2024 Community College (Hostos) Campus Public Safety Sergeant 59948.20000 2.997410e+05 129328.03 2.586561e+04 28087.000 2990.80 5 2.586561e+04 129328.03 4.290690e+05 4.290690e+05 0.00 NULL
2024 Community College (Hostos) Campus Security Assistant 35066.37500 2.805310e+05 52595.20 6.574400e+03 7544.520 2047.00 8 6.574400e+03 52595.20 3.331262e+05 3.331262e+05 0.00 NULL
2024 Community College (Hostos) Chief Administrative Supt Campus B/G 158339.00000 1.583390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.583390e+05 1.583390e+05 0.00 NULL
2024 Community College (Hostos) City Laborer NA NA 4322.85 1.080713e+03 1162.285 79.50 4 1.080713e+03 4322.85 NA NA NA NULL
2024 Community College (Hostos) Clip Instructor 68088.44444 6.127960e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 6.127960e+05 6.127960e+05 0.00 NULL
2024 Community College (Hostos) College Accounting Assistant 50270.00000 5.027000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.027000e+04 5.027000e+04 0.00 NULL
2024 Community College (Hostos) College Assistant 6556.15494 1.875060e+06 0.00 0.000000e+00 0.000 0.00 286 0.000000e+00 0.00 1.875060e+06 1.875060e+06 0.00 NULL
2024 Community College (Hostos) College Lab Technician 68788.27273 7.566710e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.566710e+05 7.566710e+05 0.00 NULL
2024 Community College (Hostos) College Print Shop Specialist 52572.00000 1.051440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.051440e+05 1.051440e+05 0.00 NULL
2024 Community College (Hostos) College Security Director 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2024 Community College (Hostos) College Security Specialist 63124.00000 6.312400e+04 4568.60 4.568600e+03 4568.600 100.75 1 4.568600e+03 4568.60 6.769260e+04 6.769260e+04 0.00 NULL
2024 Community College (Hostos) Computer Systems Manager 124444.00000 1.244440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.244440e+05 1.244440e+05 0.00 NULL
2024 Community College (Hostos) Continuing Education Teacher 11726.40705 9.146598e+05 0.00 0.000000e+00 0.000 0.00 78 0.000000e+00 0.00 9.146598e+05 9.146598e+05 0.00 NULL
2024 Community College (Hostos) Cuny Administrator Assistant 62032.83333 3.721970e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.721970e+05 3.721970e+05 0.00 NULL
2024 Community College (Hostos) Cuny Custodial Assistant 34356.22581 1.065043e+06 11310.38 3.648510e+02 90.040 471.75 31 9.004000e+01 2791.24 1.076353e+06 1.067834e+06 8519.14 NULL
2024 Community College (Hostos) Cuny Office Assistant 39985.76596 1.879331e+06 6979.91 1.485087e+02 0.000 264.25 47 0.000000e+00 0.00 1.886311e+06 1.879331e+06 6979.91 NULL
2024 Community College (Hostos) Cuny Start Instructor 75987.12500 6.078970e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.078970e+05 6.078970e+05 0.00 NULL
2024 Community College (Hostos) Custodial Supervisor 39366.75000 1.574670e+05 8834.19 2.208548e+03 1884.595 282.50 4 1.884595e+03 7538.38 1.663012e+05 1.650054e+05 1295.81 NULL
2024 Community College (Hostos) Dean 149051.50000 2.981030e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.981030e+05 2.981030e+05 0.00 NULL
2024 Community College (Hostos) Disability Accommodations Specialist 18866.56719 1.509325e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.509325e+05 1.509325e+05 0.00 NULL
2024 Community College (Hostos) Electrician NA NA 16506.00 8.253000e+03 8253.000 175.00 2 8.253000e+03 16506.00 NA NA NA NULL
2024 Community College (Hostos) Electricians Helper NA NA 1197.00 1.197000e+03 1197.000 20.00 1 1.197000e+03 1197.00 NA NA NA NULL
2024 Community College (Hostos) High Pressure Plant Tender NA NA 69086.74 6.908674e+04 69086.740 1088.75 1 6.908674e+04 69086.74 NA NA NA NULL
2024 Community College (Hostos) Higher Education Assistant 78993.13750 6.319451e+06 0.00 0.000000e+00 0.000 0.00 80 0.000000e+00 0.00 6.319451e+06 6.319451e+06 0.00 NULL
2024 Community College (Hostos) Higher Education Associate 101768.77273 4.477826e+06 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 4.477826e+06 4.477826e+06 0.00 NULL
2024 Community College (Hostos) Higher Education Officer 130705.62069 3.790463e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 3.790463e+06 3.790463e+06 0.00 NULL
2024 Community College (Hostos) Instructor 79566.00000 7.956600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.956600e+04 7.956600e+04 0.00 NULL
2024 Community College (Hostos) It Assistant 50972.36333 6.116684e+05 60.48 5.040000e+00 0.000 2.00 12 0.000000e+00 0.00 6.117288e+05 6.116684e+05 60.48 NULL
2024 Community College (Hostos) It Associate 72209.00000 1.444180e+05 10103.15 5.051575e+03 5051.575 189.25 2 5.051575e+03 10103.15 1.545211e+05 1.545211e+05 0.00 NULL
2024 Community College (Hostos) It Senior Associate 101009.75000 4.040390e+05 10679.10 2.669775e+03 2039.675 146.75 4 2.039675e+03 8158.70 4.147181e+05 4.121977e+05 2520.40 NULL
2024 Community College (Hostos) It Support Assistant 33497.06500 2.679765e+05 428.63 5.357875e+01 0.000 17.75 8 0.000000e+00 0.00 2.684052e+05 2.679765e+05 428.63 NULL
2024 Community College (Hostos) Lead Theatre Technician 8660.15940 1.818633e+05 15319.91 7.295195e+02 285.600 437.45 21 2.856000e+02 5997.60 1.971833e+05 1.878609e+05 9322.31 NULL
2024 Community College (Hostos) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 45 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Hostos) Lecturer/Doctoral Schedule 86112.33333 5.166740e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.166740e+05 5.166740e+05 0.00 NULL
2024 Community College (Hostos) Locksmith NA NA 15.94 7.970000e+00 7.970 0.50 2 7.970000e+00 15.94 NA NA NA NULL
2024 Community College (Hostos) Mail/Message Services Worker 41966.33333 1.258990e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.258990e+05 1.258990e+05 0.00 NULL
2024 Community College (Hostos) Maintenance Worker NA NA 50170.02 6.271252e+03 1846.240 1143.75 8 1.846240e+03 14769.92 NA NA NA NULL
2024 Community College (Hostos) Non-Teaching Adjunct I 5550.70817 3.219411e+05 0.00 0.000000e+00 0.000 0.00 58 0.000000e+00 0.00 3.219411e+05 3.219411e+05 0.00 NULL
2024 Community College (Hostos) Non-Teaching Adjunct Ii 8332.74196 1.166584e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.166584e+05 1.166584e+05 0.00 NULL
2024 Community College (Hostos) Non-Teaching Adjunct Iii 2767.77656 4.428443e+04 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 4.428443e+04 4.428443e+04 0.00 NULL
2024 Community College (Hostos) Non-Teaching Adjunct Iv 3245.52682 3.570079e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 3.570079e+04 3.570079e+04 0.00 NULL
2024 Community College (Hostos) Non-Teaching Adjunct V 6044.10083 7.252921e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.252921e+04 7.252921e+04 0.00 NULL
2024 Community College (Hostos) Oiler NA NA 81551.30 8.155130e+04 81551.300 907.25 1 8.155130e+04 81551.30 NA NA NA NULL
2024 Community College (Hostos) Painter NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Hostos) Plumber NA NA 5714.43 5.714430e+03 5714.430 50.25 1 5.714430e+03 5714.43 NA NA NA NULL
2024 Community College (Hostos) Plumber’s Helper NA NA 3799.95 3.799950e+03 3799.950 47.75 1 3.799950e+03 3799.95 NA NA NA NULL
2024 Community College (Hostos) President 283560.00000 2.835600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.835600e+05 2.835600e+05 0.00 NULL
2024 Community College (Hostos) Principal Custodial Supervisor 65598.00000 6.559800e+04 560.47 5.604700e+02 560.470 11.75 1 5.604700e+02 560.47 6.615847e+04 6.615847e+04 0.00 NULL
2024 Community College (Hostos) Professor NA NA 0.00 0.000000e+00 0.000 0.00 69 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Hostos) Senior College Lab Tech 78202.66667 2.346080e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.346080e+05 2.346080e+05 0.00 NULL
2024 Community College (Hostos) Senior Custodial Supervisor 41913.00000 4.191300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.191300e+04 4.191300e+04 0.00 NULL
2024 Community College (Hostos) Senior Stationary Engineer NA NA 54599.92 5.459992e+04 54599.920 516.75 1 5.459992e+04 54599.92 NA NA NA NULL
2024 Community College (Hostos) Senior Vice President 245000.00000 2.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.450000e+05 2.450000e+05 0.00 NULL
2024 Community College (Hostos) Staff Nurse 85993.00000 8.599300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.599300e+04 8.599300e+04 0.00 NULL
2024 Community College (Hostos) Stationary Engineer NA NA 191825.55 9.591277e+04 95912.775 2010.75 2 9.591277e+04 191825.55 NA NA NA NULL
2024 Community College (Hostos) Stock Worker 40272.00000 4.027200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.027200e+04 4.027200e+04 0.00 NULL
2024 Community College (Hostos) Student Aide 885.00000 3.540000e+03 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.540000e+03 3.540000e+03 0.00 NULL
2024 Community College (Hostos) Supervisor Thermostat Repair NA NA 79604.98 7.960498e+04 79604.980 668.50 1 7.960498e+04 79604.98 NA NA NA NULL
2024 Community College (Hostos) Vice President 172500.00000 6.900000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.900000e+05 6.900000e+05 0.00 NULL
2024 Community College (Kingsboro) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 87 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Kingsboro) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Kingsboro) Adjunct College Lab Tech 10856.45606 8.685165e+05 0.00 0.000000e+00 0.000 0.00 80 0.000000e+00 0.00 8.685165e+05 8.685165e+05 0.00 NULL
2024 Community College (Kingsboro) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 508 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Kingsboro) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Kingsboro) Adjunct Senior College Lab Tech 16097.23357 1.126806e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.126806e+05 1.126806e+05 0.00 NULL
2024 Community College (Kingsboro) Administrator Supt Campus B/G 98156.00000 1.963120e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.963120e+05 1.963120e+05 0.00 NULL
2024 Community College (Kingsboro) Assistant Administrator 143000.00000 1.430000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.430000e+05 1.430000e+05 0.00 NULL
2024 Community College (Kingsboro) Assistant College Security Director 79077.33333 2.372320e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.372320e+05 2.372320e+05 0.00 NULL
2024 Community College (Kingsboro) Assistant Dean 138500.00000 2.770000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.770000e+05 2.770000e+05 0.00 NULL
2024 Community College (Kingsboro) Assistant Principal Custodial Supervisor 47165.00000 9.433000e+04 6320.96 3.160480e+03 3160.480 183.25 2 3.160480e+03 6320.96 1.006510e+05 1.006510e+05 0.00 NULL
2024 Community College (Kingsboro) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 151 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Kingsboro) Assistant To Heo 68101.62500 2.724065e+06 700.66 1.751650e+01 0.000 12.00 40 0.000000e+00 0.00 2.724766e+06 2.724065e+06 700.66 NULL
2024 Community College (Kingsboro) Assistant Vice President 158500.00000 3.170000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.170000e+05 3.170000e+05 0.00 NULL
2024 Community College (Kingsboro) Associate Administrator 153788.00000 6.151520e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.151520e+05 6.151520e+05 0.00 NULL
2024 Community College (Kingsboro) Associate Dean 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2024 Community College (Kingsboro) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 112 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Kingsboro) Auto Mechanic NA NA 781.20 3.906000e+02 390.600 12.00 2 3.906000e+02 781.20 NA NA NA NULL
2024 Community College (Kingsboro) Campus Peace Officer 44881.41667 5.385770e+05 121451.52 1.012096e+04 8817.485 3687.95 12 8.817485e+03 105809.82 6.600285e+05 6.443868e+05 15641.70 NULL
2024 Community College (Kingsboro) Campus Public Safety Sergeant 61519.62500 4.921570e+05 147782.13 1.847277e+04 17533.605 3275.15 8 1.753360e+04 140268.84 6.399391e+05 6.324258e+05 7513.29 NULL
2024 Community College (Kingsboro) Campus Security Assistant 34560.85714 2.419260e+05 49626.58 7.089511e+03 7194.830 1989.50 7 7.089511e+03 49626.58 2.915526e+05 2.915526e+05 0.00 NULL
2024 Community College (Kingsboro) Carpenter NA NA 91461.06 4.573053e+04 45730.530 1128.00 2 4.573053e+04 91461.06 NA NA NA NULL
2024 Community College (Kingsboro) Chief Administrative Supt Campus B/G 146125.00000 1.461250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.461250e+05 1.461250e+05 0.00 NULL
2024 Community College (Kingsboro) Chief College Lab Technician 60978.36000 5.488052e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 5.488052e+05 5.488052e+05 0.00 NULL
2024 Community College (Kingsboro) City Laborer NA NA 108895.96 9.074663e+03 7816.470 1999.00 12 7.816470e+03 93797.64 NA NA NA NULL
2024 Community College (Kingsboro) Clip Instructor 68053.83333 4.083230e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.083230e+05 4.083230e+05 0.00 NULL
2024 Community College (Kingsboro) College Accountant 55566.00000 5.556600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.556600e+04 5.556600e+04 0.00 NULL
2024 Community College (Kingsboro) College Accounting Assistant 39469.00000 3.946900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.946900e+04 3.946900e+04 0.00 NULL
2024 Community College (Kingsboro) College Assistant 9835.34302 2.380153e+06 1267.50 5.237603e+00 0.000 53.75 242 0.000000e+00 0.00 2.381421e+06 2.380153e+06 1267.50 NULL
2024 Community College (Kingsboro) College Lab Technician 57491.10933 8.623666e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 8.623666e+05 8.623666e+05 0.00 NULL
2024 Community College (Kingsboro) College Print Shop Assistant 40114.00000 1.203420e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.203420e+05 1.203420e+05 0.00 NULL
2024 Community College (Kingsboro) College Print Shop Associate 51608.00000 5.160800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.160800e+04 5.160800e+04 0.00 NULL
2024 Community College (Kingsboro) College Print Shop Coordinator 64417.00000 6.441700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.441700e+04 6.441700e+04 0.00 NULL
2024 Community College (Kingsboro) College Security Director 124848.00000 1.248480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.248480e+05 1.248480e+05 0.00 NULL
2024 Community College (Kingsboro) College Security Specialist 65333.50000 1.306670e+05 22572.00 1.128600e+04 11286.000 489.75 2 1.128600e+04 22572.00 1.532390e+05 1.532390e+05 0.00 NULL
2024 Community College (Kingsboro) Computer Operator Manager 95621.50000 1.912430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.912430e+05 1.912430e+05 0.00 NULL
2024 Community College (Kingsboro) Computer Systems Manager 114459.33333 3.433780e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.433780e+05 3.433780e+05 0.00 NULL
2024 Community College (Kingsboro) Continuing Education Teacher NA NA 0.00 0.000000e+00 0.000 0.00 239 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Kingsboro) Cuny Administrator Assistant 54602.33333 8.190350e+05 3361.23 2.240820e+02 0.000 100.50 15 0.000000e+00 0.00 8.223962e+05 8.190350e+05 3361.23 NULL
2024 Community College (Kingsboro) Cuny Broadcast Associate 61875.00000 6.187500e+04 120.07 1.200700e+02 120.070 3.50 1 1.200700e+02 120.07 6.199507e+04 6.199507e+04 0.00 NULL
2024 Community College (Kingsboro) Cuny Custodial Assistant 26799.61118 2.465564e+06 23503.83 2.554764e+02 10.720 950.25 92 1.072000e+01 986.24 2.489068e+06 2.466550e+06 22517.59 NULL
2024 Community College (Kingsboro) Cuny Office Assistant 39447.84615 1.538466e+06 1361.13 3.490077e+01 0.000 55.50 39 0.000000e+00 0.00 1.539827e+06 1.538466e+06 1361.13 NULL
2024 Community College (Kingsboro) Cuny Start Instructor 64524.66667 3.871480e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.871480e+05 3.871480e+05 0.00 NULL
2024 Community College (Kingsboro) Custodial Supervisor 39951.50000 1.598060e+05 10383.39 2.595847e+03 3177.115 355.50 4 2.595847e+03 10383.39 1.701894e+05 1.701894e+05 0.00 NULL
2024 Community College (Kingsboro) Dean 164065.50000 6.562620e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.562620e+05 6.562620e+05 0.00 NULL
2024 Community College (Kingsboro) Disability Accommodations Specialist 9110.75000 1.822150e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.822150e+04 1.822150e+04 0.00 NULL
2024 Community College (Kingsboro) Electrician NA NA 101959.92 2.548998e+04 23580.000 1081.00 4 2.358000e+04 94320.00 NA NA NA NULL
2024 Community College (Kingsboro) Electricians Helper NA NA 1975.05 1.975050e+03 1975.050 33.00 1 1.975050e+03 1975.05 NA NA NA NULL
2024 Community College (Kingsboro) Facilities Coordinator 75430.50000 1.508610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.508610e+05 1.508610e+05 0.00 NULL
2024 Community College (Kingsboro) High Pressure Plant Tender NA NA 55188.50 9.198083e+03 7047.500 1036.75 6 7.047500e+03 42285.00 NA NA NA NULL
2024 Community College (Kingsboro) Higher Education Assistant 81579.75789 7.750077e+06 1124.83 1.184032e+01 0.000 18.00 95 0.000000e+00 0.00 7.751202e+06 7.750077e+06 1124.83 NULL
2024 Community College (Kingsboro) Higher Education Associate 102488.98485 6.764273e+06 0.00 0.000000e+00 0.000 0.00 66 0.000000e+00 0.00 6.764273e+06 6.764273e+06 0.00 NULL
2024 Community College (Kingsboro) Higher Education Officer 130703.20930 5.620238e+06 0.00 0.000000e+00 0.000 0.00 43 0.000000e+00 0.00 5.620238e+06 5.620238e+06 0.00 NULL
2024 Community College (Kingsboro) It Assistant 60145.61905 1.263058e+06 16878.75 8.037500e+02 160.320 479.00 21 1.603200e+02 3366.72 1.279937e+06 1.266425e+06 13512.03 NULL
2024 Community College (Kingsboro) It Associate 76428.75000 3.057150e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.057150e+05 3.057150e+05 0.00 NULL
2024 Community College (Kingsboro) It Senior Associate 104579.50000 2.091590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.091590e+05 2.091590e+05 0.00 NULL
2024 Community College (Kingsboro) It Support Assistant 44574.80000 2.228740e+05 151.05 3.021000e+01 0.000 6.00 5 0.000000e+00 0.00 2.230250e+05 2.228740e+05 151.05 NULL
2024 Community College (Kingsboro) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 163 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Kingsboro) Lecturer/Doctoral Schedule 84319.50000 1.686390e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.686390e+06 1.686390e+06 0.00 NULL
2024 Community College (Kingsboro) Locksmith NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Kingsboro) Mail/Message Services Worker 39187.25000 1.567490e+05 27.03 6.757500e+00 0.000 1.50 4 0.000000e+00 0.00 1.567760e+05 1.567490e+05 27.03 NULL
2024 Community College (Kingsboro) Maintenance Worker NA NA 89464.36 1.789287e+04 21769.160 1920.75 5 1.789287e+04 89464.36 NA NA NA NULL
2024 Community College (Kingsboro) Media Services Technician 69832.00000 6.983200e+04 3791.11 3.791110e+03 3791.110 93.00 1 3.791110e+03 3791.11 7.362311e+04 7.362311e+04 0.00 NULL
2024 Community College (Kingsboro) Non-Teaching Adjunct I 5411.42001 1.639660e+06 0.00 0.000000e+00 0.000 0.00 303 0.000000e+00 0.00 1.639660e+06 1.639660e+06 0.00 NULL
2024 Community College (Kingsboro) Non-Teaching Adjunct Iii 4539.69008 1.725082e+05 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 1.725082e+05 1.725082e+05 0.00 NULL
2024 Community College (Kingsboro) Non-Teaching Adjunct Iv 12633.97424 1.642417e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.642417e+05 1.642417e+05 0.00 NULL
2024 Community College (Kingsboro) Non-Teaching Adjunct V 6999.94139 1.259989e+05 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.259989e+05 1.259989e+05 0.00 NULL
2024 Community College (Kingsboro) Oiler NA NA 11472.06 5.736030e+03 5736.030 128.00 2 5.736030e+03 11472.06 NA NA NA NULL
2024 Community College (Kingsboro) Painter NA NA 79398.27 6.107559e+03 337.580 1176.00 13 3.375800e+02 4388.54 NA NA NA NULL
2024 Community College (Kingsboro) Plumber NA NA 55040.48 2.752024e+04 27520.240 484.00 2 2.752024e+04 55040.48 NA NA NA NULL
2024 Community College (Kingsboro) President 275454.00000 5.509080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.509080e+05 5.509080e+05 0.00 NULL
2024 Community College (Kingsboro) Principal Custodial Supervisor 65598.00000 6.559800e+04 2686.06 2.686060e+03 2686.060 57.00 1 2.686060e+03 2686.06 6.828406e+04 6.828406e+04 0.00 NULL
2024 Community College (Kingsboro) Professor NA NA 0.00 0.000000e+00 0.000 0.00 142 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Kingsboro) Project Manager 107428.00000 1.074280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074280e+05 1.074280e+05 0.00 NULL
2024 Community College (Kingsboro) Purchasing Agent 59356.33333 1.780690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.780690e+05 1.780690e+05 0.00 NULL
2024 Community College (Kingsboro) Senior College Lab Tech 76832.00000 9.988160e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 9.988160e+05 9.988160e+05 0.00 NULL
2024 Community College (Kingsboro) Senior Custodial Supervisor 41913.00000 4.191300e+04 240.59 2.405900e+02 240.590 6.50 1 2.405900e+02 240.59 4.215359e+04 4.215359e+04 0.00 NULL
2024 Community College (Kingsboro) Senior Stationary Engineer NA NA 48686.81 2.434340e+04 24343.405 485.00 2 2.434340e+04 48686.81 NA NA NA NULL
2024 Community College (Kingsboro) Senior Vice President 202999.50000 4.059990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.059990e+05 4.059990e+05 0.00 NULL
2024 Community College (Kingsboro) Sign Language Interpreter 5320.36500 5.320365e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.320365e+03 5.320365e+03 0.00 NULL
2024 Community College (Kingsboro) Sr College Laboratory Tech 6025.08000 1.205016e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.205016e+04 1.205016e+04 0.00 NULL
2024 Community College (Kingsboro) Staff Nurse 41149.54000 2.057477e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.057477e+05 2.057477e+05 0.00 NULL
2024 Community College (Kingsboro) Stationary Engineer NA NA 94978.70 1.899574e+04 15391.200 1007.50 5 1.539120e+04 76956.00 NA NA NA NULL
2024 Community College (Kingsboro) Stock Worker 36516.00000 3.651600e+04 3235.37 3.235370e+03 3235.370 121.50 1 3.235370e+03 3235.37 3.975137e+04 3.975137e+04 0.00 NULL
2024 Community College (Kingsboro) Student Aide 1258.17273 1.383990e+04 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.383990e+04 1.383990e+04 0.00 NULL
2024 Community College (Kingsboro) Supervisor Of Stock Workers 50992.00000 5.099200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.099200e+04 5.099200e+04 0.00 NULL
2024 Community College (Kingsboro) Supervisor Painter NA NA 31018.32 3.101832e+04 31018.320 402.00 1 3.101832e+04 31018.32 NA NA NA NULL
2024 Community College (Kingsboro) Thermostat Repairer NA NA 1535.22 1.535220e+03 1535.220 13.50 1 1.535220e+03 1535.22 NA NA NA NULL
2024 Community College (Kingsboro) University Architect 117801.00000 1.178010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.178010e+05 1.178010e+05 0.00 NULL
2024 Community College (Kingsboro) Vice President 182222.00000 1.093332e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.093332e+06 1.093332e+06 0.00 NULL
2024 Community College (Kingsboro) NA 55092.00000 5.509200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.509200e+04 5.509200e+04 0.00 NULL
2024 Community College (Laguardia) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 170 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Laguardia) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Laguardia) Adjunct College Lab Tech 10154.43970 7.717374e+05 0.00 0.000000e+00 0.000 0.00 76 0.000000e+00 0.00 7.717374e+05 7.717374e+05 0.00 NULL
2024 Community College (Laguardia) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 478 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Laguardia) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Laguardia) Adjunct Senior College Lab Tech 8816.50000 8.816500e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.816500e+03 8.816500e+03 0.00 NULL
2024 Community College (Laguardia) Administrator 185000.00000 3.700000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.700000e+05 3.700000e+05 0.00 NULL
2024 Community College (Laguardia) Administrator Supt Campus B/G 84371.66667 2.531150e+05 147.46 4.915333e+01 0.000 0.00 3 0.000000e+00 0.00 2.532625e+05 2.531150e+05 147.46 NULL
2024 Community College (Laguardia) Assistant Administrator 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2024 Community College (Laguardia) Assistant College Security Director 81600.00000 8.160000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.160000e+04 8.160000e+04 0.00 NULL
2024 Community College (Laguardia) Assistant Dean 146523.00000 4.395690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.395690e+05 4.395690e+05 0.00 NULL
2024 Community College (Laguardia) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Laguardia) Assistant To Heo 70850.92188 4.534459e+06 2934.90 4.585781e+01 0.000 41.00 64 0.000000e+00 0.00 4.537394e+06 4.534459e+06 2934.90 NULL
2024 Community College (Laguardia) Assistant Vice President 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2024 Community College (Laguardia) Associate Administrator 153440.00000 7.672000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.672000e+05 7.672000e+05 0.00 NULL
2024 Community College (Laguardia) Associate Dean 157293.50000 3.145870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.145870e+05 3.145870e+05 0.00 NULL
2024 Community College (Laguardia) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 152 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Laguardia) Business Data And Reporting Analyst 53222.13667 3.193328e+05 4345.94 7.243233e+02 0.000 120.00 6 0.000000e+00 0.00 3.236788e+05 3.193328e+05 4345.94 NULL
2024 Community College (Laguardia) Campus Peace Officer 47464.80952 9.967610e+05 90196.61 4.295077e+03 3677.890 2701.00 21 3.677890e+03 77235.69 1.086958e+06 1.073997e+06 12960.92 NULL
2024 Community College (Laguardia) Campus Public Safety Sergeant 60086.50000 4.806920e+05 53568.37 6.696046e+03 6863.475 1295.25 8 6.696046e+03 53568.37 5.342604e+05 5.342604e+05 0.00 NULL
2024 Community College (Laguardia) Campus Security Assistant 35384.52941 1.203074e+06 144778.29 4.258185e+03 3040.235 5587.50 34 3.040235e+03 103367.99 1.347852e+06 1.306442e+06 41410.30 NULL
2024 Community College (Laguardia) Chief College Lab Technician 97121.88889 8.740970e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.740970e+05 8.740970e+05 0.00 NULL
2024 Community College (Laguardia) Clip Instructor 70015.72727 7.701730e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.701730e+05 7.701730e+05 0.00 NULL
2024 Community College (Laguardia) College Accountant 50373.00000 1.007460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.007460e+05 1.007460e+05 0.00 NULL
2024 Community College (Laguardia) College Accounting Assistant 50531.00000 1.515930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.515930e+05 1.515930e+05 0.00 NULL
2024 Community College (Laguardia) College Assistant 7187.14901 4.707583e+06 5982.57 9.133695e+00 0.000 212.25 655 0.000000e+00 0.00 4.713565e+06 4.707583e+06 5982.57 NULL
2024 Community College (Laguardia) College Graph Designer 57096.74125 1.141935e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.141935e+05 1.141935e+05 0.00 NULL
2024 Community College (Laguardia) College Lab Technician 61434.26400 9.215140e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 9.215140e+05 9.215140e+05 0.00 NULL
2024 Community College (Laguardia) College Print Shop Coordinator 64351.00000 6.435100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.435100e+04 6.435100e+04 0.00 NULL
2024 Community College (Laguardia) College Security Director 124000.00000 1.240000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.240000e+05 1.240000e+05 0.00 NULL
2024 Community College (Laguardia) College Security Specialist 67612.33333 2.028370e+05 98313.86 3.277129e+04 34498.250 2045.75 3 3.277129e+04 98313.86 3.011509e+05 3.011509e+05 0.00 NULL
2024 Community College (Laguardia) Computer Systems Manager 144144.50000 2.882890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.882890e+05 2.882890e+05 0.00 NULL
2024 Community College (Laguardia) Continuing Education Teacher 9290.99848 2.536443e+06 0.00 0.000000e+00 0.000 0.00 273 0.000000e+00 0.00 2.536443e+06 2.536443e+06 0.00 NULL
2024 Community College (Laguardia) Cuny Administrator Assistant 57457.25000 6.894870e+05 31.61 2.634167e+00 0.000 1.00 12 0.000000e+00 0.00 6.895186e+05 6.894870e+05 31.61 NULL
2024 Community College (Laguardia) Cuny Art Model 1658.86800 8.294340e+03 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.294340e+03 8.294340e+03 0.00 NULL
2024 Community College (Laguardia) Cuny Broadcast Associate 49830.00000 1.494900e+05 59724.17 1.990806e+04 20005.640 1649.00 3 1.990806e+04 59724.17 2.092142e+05 2.092142e+05 0.00 NULL
2024 Community College (Laguardia) Cuny Custodial Assistant 33719.09214 1.416202e+06 16916.19 4.027664e+02 12.865 657.50 42 1.286500e+01 540.33 1.433118e+06 1.416742e+06 16375.86 NULL
2024 Community College (Laguardia) Cuny Office Assistant 39541.17500 3.163294e+06 23361.76 2.920220e+02 0.000 870.75 80 0.000000e+00 0.00 3.186656e+06 3.163294e+06 23361.76 NULL
2024 Community College (Laguardia) Cuny Start Instructor 67012.83333 4.020770e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.020770e+05 4.020770e+05 0.00 NULL
2024 Community College (Laguardia) Custodial Supervisor 39559.00000 7.911800e+04 10.60 5.300000e+00 5.300 0.00 2 5.300000e+00 10.60 7.912860e+04 7.912860e+04 0.00 NULL
2024 Community College (Laguardia) Dean 159181.00000 1.591810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.591810e+05 1.591810e+05 0.00 NULL
2024 Community College (Laguardia) Facilities Coordinator 60757.00000 1.215140e+05 417.64 2.088200e+02 208.820 13.25 2 2.088200e+02 417.64 1.219316e+05 1.219316e+05 0.00 NULL
2024 Community College (Laguardia) Higher Education Assistant 84437.01600 1.055463e+07 15186.27 1.214902e+02 0.000 236.00 125 0.000000e+00 0.00 1.056981e+07 1.055463e+07 15186.27 NULL
2024 Community College (Laguardia) Higher Education Associate 105548.77922 8.127256e+06 0.00 0.000000e+00 0.000 0.00 77 0.000000e+00 0.00 8.127256e+06 8.127256e+06 0.00 NULL
2024 Community College (Laguardia) Higher Education Officer 131515.01961 6.707266e+06 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 6.707266e+06 6.707266e+06 0.00 NULL
2024 Community College (Laguardia) It Assistant 55832.85190 1.395821e+06 7155.56 2.862224e+02 0.000 149.25 25 0.000000e+00 0.00 1.402977e+06 1.395821e+06 7155.56 NULL
2024 Community College (Laguardia) It Associate 78363.88235 1.332186e+06 12964.53 7.626194e+02 0.000 243.75 17 0.000000e+00 0.00 1.345151e+06 1.332186e+06 12964.53 NULL
2024 Community College (Laguardia) It Senior Associate 102961.00000 1.235532e+06 4744.25 3.953542e+02 0.000 107.00 12 0.000000e+00 0.00 1.240276e+06 1.235532e+06 4744.25 NULL
2024 Community College (Laguardia) It Support Assistant 35184.08278 7.036817e+05 8874.31 4.437155e+02 0.000 243.00 20 0.000000e+00 0.00 7.125560e+05 7.036817e+05 8874.31 NULL
2024 Community College (Laguardia) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 107 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Laguardia) Lecturer/Doctoral Schedule 83652.61905 1.756705e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.756705e+06 1.756705e+06 0.00 NULL
2024 Community College (Laguardia) Mail/Message Services Worker 43777.28571 3.064410e+05 3331.80 4.759714e+02 0.000 128.75 7 0.000000e+00 0.00 3.097728e+05 3.064410e+05 3331.80 NULL
2024 Community College (Laguardia) Media Services Technician 63750.00000 6.375000e+04 34143.68 3.414368e+04 34143.680 721.50 1 3.414368e+04 34143.68 9.789368e+04 9.789368e+04 0.00 NULL
2024 Community College (Laguardia) Non-Teaching Adjunct I 3808.68963 4.646601e+05 0.00 0.000000e+00 0.000 0.00 122 0.000000e+00 0.00 4.646601e+05 4.646601e+05 0.00 NULL
2024 Community College (Laguardia) Non-Teaching Adjunct Ii 15487.50000 3.097500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.097500e+04 3.097500e+04 0.00 NULL
2024 Community College (Laguardia) Non-Teaching Adjunct Iii 7906.39774 2.450983e+05 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 2.450983e+05 2.450983e+05 0.00 NULL
2024 Community College (Laguardia) Non-Teaching Adjunct Iv 5366.38773 1.180605e+05 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 1.180605e+05 1.180605e+05 0.00 NULL
2024 Community College (Laguardia) Non-Teaching Adjunct V 4209.13615 1.094375e+05 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 1.094375e+05 1.094375e+05 0.00 NULL
2024 Community College (Laguardia) President 280908.00000 2.809080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.809080e+05 2.809080e+05 0.00 NULL
2024 Community College (Laguardia) Professor NA NA 0.00 0.000000e+00 0.000 0.00 307 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Laguardia) Purchasing Agent 56166.50000 1.123330e+05 272.76 1.363800e+02 136.380 8.25 2 1.363800e+02 272.76 1.126058e+05 1.126058e+05 0.00 NULL
2024 Community College (Laguardia) Senior College Lab Tech 76007.42857 1.064104e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.064104e+06 1.064104e+06 0.00 NULL
2024 Community College (Laguardia) Senior Custodial Supervisor 41913.00000 4.191300e+04 293.20 2.932000e+02 293.200 8.00 1 2.932000e+02 293.20 4.220620e+04 4.220620e+04 0.00 NULL
2024 Community College (Laguardia) Senior Vice President 230000.00000 4.600000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.600000e+05 4.600000e+05 0.00 NULL
2024 Community College (Laguardia) Sign Language Interpreter 18770.92595 3.941894e+05 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 3.941894e+05 3.941894e+05 0.00 NULL
2024 Community College (Laguardia) Sr College Laboratory Tech 7122.50000 7.122500e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.122500e+03 7.122500e+03 0.00 NULL
2024 Community College (Laguardia) Staff Nurse 93228.00000 9.322800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.322800e+04 9.322800e+04 0.00 NULL
2024 Community College (Laguardia) Supervisor Of Stock Workers 43413.00000 4.341300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.341300e+04 4.341300e+04 0.00 NULL
2024 Community College (Laguardia) University Assistant Architect 63290.00000 6.329000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.329000e+04 6.329000e+04 0.00 NULL
2024 Community College (Laguardia) University Assistant Engineer 75132.00000 7.513200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.513200e+04 7.513200e+04 0.00 NULL
2024 Community College (Laguardia) Vice President 174675.00000 6.987000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.987000e+05 6.987000e+05 0.00 NULL
2024 Community College (Manhattan) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 268 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Manhattan) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Manhattan) Adjunct College Lab Tech 12609.22716 7.565536e+05 0.00 0.000000e+00 0.000 0.00 60 0.000000e+00 0.00 7.565536e+05 7.565536e+05 0.00 NULL
2024 Community College (Manhattan) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 681 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Manhattan) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Manhattan) Adjunct Senior College Lab Tech 6987.07519 1.886510e+05 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 1.886510e+05 1.886510e+05 0.00 NULL
2024 Community College (Manhattan) Administrator 159000.00000 3.180000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.180000e+05 3.180000e+05 0.00 NULL
2024 Community College (Manhattan) Administrator Supt Campus B/G 99023.50000 3.960940e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.960940e+05 3.960940e+05 0.00 NULL
2024 Community College (Manhattan) Assistant Administrator 140285.00000 5.611400e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.611400e+05 5.611400e+05 0.00 NULL
2024 Community College (Manhattan) Assistant College Security Director 78364.40000 3.918220e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.918220e+05 3.918220e+05 0.00 NULL
2024 Community College (Manhattan) Assistant Dean 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2024 Community College (Manhattan) Assistant Media Services Technican 14364.57000 5.745828e+04 304.15 7.603750e+01 17.380 17.50 4 1.738000e+01 69.52 5.776243e+04 5.752780e+04 234.63 NULL
2024 Community College (Manhattan) Assistant Principal Custodial Supervisor 47088.00000 9.417600e+04 49835.58 2.491779e+04 24917.790 1472.42 2 2.491779e+04 49835.58 1.440116e+05 1.440116e+05 0.00 NULL
2024 Community College (Manhattan) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 184 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Manhattan) Assistant Purchasing Agent 45396.00000 4.539600e+04 173.93 1.739300e+02 173.930 7.00 1 1.739300e+02 173.93 4.556993e+04 4.556993e+04 0.00 NULL
2024 Community College (Manhattan) Assistant To Heo 62287.75342 4.547006e+06 1648.84 2.258685e+01 0.000 38.50 73 0.000000e+00 0.00 4.548655e+06 4.547006e+06 1648.84 NULL
2024 Community College (Manhattan) Assistant Vice President 166592.20000 8.329610e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.329610e+05 8.329610e+05 0.00 NULL
2024 Community College (Manhattan) Associate Administrator 175000.00000 3.500000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.500000e+05 3.500000e+05 0.00 NULL
2024 Community College (Manhattan) Associate Dean 150732.50000 3.014650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.014650e+05 3.014650e+05 0.00 NULL
2024 Community College (Manhattan) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 251 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Manhattan) Business Data And Reporting Analyst 47309.42857 6.623320e+05 18393.49 1.313821e+03 246.815 618.25 14 2.468150e+02 3455.41 6.807255e+05 6.657874e+05 14938.08 NULL
2024 Community College (Manhattan) Campus Peace Officer 45097.28571 6.313620e+05 167810.70 1.198648e+04 5897.335 5105.67 14 5.897335e+03 82562.69 7.991727e+05 7.139247e+05 85248.01 NULL
2024 Community College (Manhattan) Campus Public Safety Sergeant 59940.10000 5.994010e+05 61575.76 6.157576e+03 6047.910 1569.93 10 6.047910e+03 60479.10 6.609768e+05 6.598801e+05 1096.66 NULL
2024 Community College (Manhattan) Campus Security Assistant 32406.05809 1.296242e+06 385676.49 9.641912e+03 6727.555 15410.75 40 6.727555e+03 269102.20 1.681919e+06 1.565345e+06 116574.29 NULL
2024 Community College (Manhattan) Carpenter NA NA 67068.86 9.581266e+03 7300.290 807.75 7 7.300290e+03 51102.03 NA NA NA NULL
2024 Community College (Manhattan) Chief Administrator Supt Campus B/G 146594.00000 1.465940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.465940e+05 1.465940e+05 0.00 NULL
2024 Community College (Manhattan) City Laborer NA NA 78223.35 1.303723e+04 9200.785 1398.25 6 9.200785e+03 55204.71 NA NA NA NULL
2024 Community College (Manhattan) Clip Instructor 69458.81818 7.640470e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.640470e+05 7.640470e+05 0.00 NULL
2024 Community College (Manhattan) College Accountant 52969.50000 1.059390e+05 268.82 1.344100e+02 134.410 9.00 2 1.344100e+02 268.82 1.062078e+05 1.062078e+05 0.00 NULL
2024 Community College (Manhattan) College Accounting Assistant 50009.57143 3.500670e+05 2808.23 4.011757e+02 0.000 99.50 7 0.000000e+00 0.00 3.528752e+05 3.500670e+05 2808.23 NULL
2024 Community College (Manhattan) College Assistant 6034.71970 4.507936e+06 66193.28 8.861216e+01 0.000 4040.00 747 0.000000e+00 0.00 4.574129e+06 4.507936e+06 66193.28 NULL
2024 Community College (Manhattan) College Graph Designer 56071.00000 1.121420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.121420e+05 1.121420e+05 0.00 NULL
2024 Community College (Manhattan) College Lab Technician 64398.16667 1.159167e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.159167e+06 1.159167e+06 0.00 NULL
2024 Community College (Manhattan) College Print Shop Associate 40793.00000 4.079300e+04 153.55 1.535500e+02 153.550 6.75 1 1.535500e+02 153.55 4.094655e+04 4.094655e+04 0.00 NULL
2024 Community College (Manhattan) College Print Shop Coordinator 64351.00000 6.435100e+04 2009.32 2.009320e+03 2009.320 47.75 1 2.009320e+03 2009.32 6.636032e+04 6.636032e+04 0.00 NULL
2024 Community College (Manhattan) College Print Shop Specialist 33571.00000 1.342840e+05 934.21 2.335525e+02 195.075 46.00 4 1.950750e+02 780.30 1.352182e+05 1.350643e+05 153.91 NULL
2024 Community College (Manhattan) College Security Director 130354.00000 1.303540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.303540e+05 1.303540e+05 0.00 NULL
2024 Community College (Manhattan) College Security Specialist 63124.00000 6.312400e+04 10286.60 1.028660e+04 10286.600 235.00 1 1.028660e+04 10286.60 7.341060e+04 7.341060e+04 0.00 NULL
2024 Community College (Manhattan) Computer Systems Manager 165240.00000 1.652400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.652400e+05 1.652400e+05 0.00 NULL
2024 Community College (Manhattan) Continuing Education Teacher 8881.32946 9.947089e+05 0.00 0.000000e+00 0.000 0.00 112 0.000000e+00 0.00 9.947089e+05 9.947089e+05 0.00 NULL
2024 Community College (Manhattan) Cuny Administrator Assistant 55861.72727 6.144790e+05 53.80 4.890909e+00 0.000 2.00 11 0.000000e+00 0.00 6.145328e+05 6.144790e+05 53.80 NULL
2024 Community College (Manhattan) Cuny Art Model 1567.97071 1.097580e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.097580e+04 1.097580e+04 0.00 NULL
2024 Community College (Manhattan) Cuny Custodial Assistant 28907.20030 2.601648e+06 309718.88 3.441321e+03 331.140 12961.26 90 3.311400e+02 29802.60 2.911367e+06 2.631451e+06 279916.28 NULL
2024 Community College (Manhattan) Cuny Office Assistant 39855.44928 2.750026e+06 11716.45 1.698036e+02 0.000 418.50 69 0.000000e+00 0.00 2.761742e+06 2.750026e+06 11716.45 NULL
2024 Community College (Manhattan) Cuny Start Instructor 77303.25000 1.236852e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.236852e+06 1.236852e+06 0.00 NULL
2024 Community College (Manhattan) Custodial Supervisor 40205.63636 4.422620e+05 99609.65 9.055423e+03 3634.490 3286.20 11 3.634490e+03 39979.39 5.418717e+05 4.822414e+05 59630.26 NULL
2024 Community College (Manhattan) Dean 169845.50000 6.793820e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.793820e+05 6.793820e+05 0.00 NULL
2024 Community College (Manhattan) Electrician NA NA 117334.08 1.676201e+04 18911.160 1244.00 7 1.676201e+04 117334.08 NA NA NA NULL
2024 Community College (Manhattan) Eoc Accounting Assistant 39469.00000 3.946900e+04 248.45 2.484500e+02 248.450 11.50 1 2.484500e+02 248.45 3.971745e+04 3.971745e+04 0.00 NULL
2024 Community College (Manhattan) Eoc Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Manhattan) Eoc Assistant 3305.32500 1.652662e+04 395.82 7.916400e+01 68.000 25.00 5 6.800000e+01 340.00 1.692244e+04 1.686662e+04 55.82 NULL
2024 Community College (Manhattan) Eoc Assistant To Heo 71975.00000 7.197500e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.197500e+05 7.197500e+05 0.00 NULL
2024 Community College (Manhattan) Eoc College Lab Technician 70222.00000 1.404440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.404440e+05 1.404440e+05 0.00 NULL
2024 Community College (Manhattan) Eoc Higher Education Assistant 97932.50000 3.917300e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.917300e+05 3.917300e+05 0.00 NULL
2024 Community College (Manhattan) Eoc Higher Education Associate 107789.00000 1.077890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.077890e+05 1.077890e+05 0.00 NULL
2024 Community College (Manhattan) Eoc Higher Education Officer 128952.75000 5.158110e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.158110e+05 5.158110e+05 0.00 NULL
2024 Community College (Manhattan) Eoc Lecturer 78630.00000 2.358900e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.358900e+05 2.358900e+05 0.00 NULL
2024 Community College (Manhattan) Eoc Lecturer/ Doctral Schedule 98309.00000 1.966180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.966180e+05 1.966180e+05 0.00 NULL
2024 Community College (Manhattan) Eoc Mail/Message Services Worker 29134.00000 2.913400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.913400e+04 2.913400e+04 0.00 NULL
2024 Community College (Manhattan) Eoc Office Assistant 44264.00000 3.983760e+05 510.16 5.668444e+01 0.000 22.00 9 0.000000e+00 0.00 3.988862e+05 3.983760e+05 510.16 NULL
2024 Community College (Manhattan) Facilities Coordinator 64466.00000 6.446600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.446600e+04 6.446600e+04 0.00 NULL
2024 Community College (Manhattan) Higher Education Assistant 83634.89209 1.162525e+07 3336.43 2.400309e+01 0.000 50.00 139 0.000000e+00 0.00 1.162859e+07 1.162525e+07 3336.43 NULL
2024 Community College (Manhattan) Higher Education Associate 102961.70833 7.413243e+06 0.00 0.000000e+00 0.000 0.00 72 0.000000e+00 0.00 7.413243e+06 7.413243e+06 0.00 NULL
2024 Community College (Manhattan) Higher Education Officer 126860.22642 6.723592e+06 0.00 0.000000e+00 0.000 0.00 53 0.000000e+00 0.00 6.723592e+06 6.723592e+06 0.00 NULL
2024 Community College (Manhattan) Instructor NA NA 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Manhattan) It Assistant 63610.57143 8.905480e+05 4705.27 3.360907e+02 1.200 118.25 14 1.200000e+00 16.80 8.952533e+05 8.905648e+05 4688.47 NULL
2024 Community College (Manhattan) It Associate 76438.85714 5.350720e+05 3184.44 4.549200e+02 417.220 68.50 7 4.172200e+02 2920.54 5.382564e+05 5.379925e+05 263.90 NULL
2024 Community College (Manhattan) It Senior Associate 94083.50000 5.645010e+05 681.44 1.135733e+02 0.000 10.00 6 0.000000e+00 0.00 5.651824e+05 5.645010e+05 681.44 NULL
2024 Community College (Manhattan) It Support Assistant 30595.78868 5.813200e+05 2879.01 1.515268e+02 0.000 116.00 19 0.000000e+00 0.00 5.841990e+05 5.813200e+05 2879.01 NULL
2024 Community College (Manhattan) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 138 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Manhattan) Lecturer/Doctoral Schedule 88998.00000 2.669940e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.669940e+05 2.669940e+05 0.00 NULL
2024 Community College (Manhattan) Locksmith NA NA 3290.67 1.645335e+03 1645.335 87.75 2 1.645335e+03 3290.67 NA NA NA NULL
2024 Community College (Manhattan) Mail/Message Services Worker 34048.33333 1.021450e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.021450e+05 1.021450e+05 0.00 NULL
2024 Community College (Manhattan) Maintenance Worker NA NA 4054.72 2.027360e+03 2027.360 86.75 2 2.027360e+03 4054.72 NA NA NA NULL
2024 Community College (Manhattan) Media Services Technician 37830.43750 1.513218e+05 741.21 1.853025e+02 222.875 34.00 4 1.853025e+02 741.21 1.520630e+05 1.520630e+05 0.00 NULL
2024 Community College (Manhattan) Non-Teaching Adjunct I NA NA 0.00 0.000000e+00 0.000 0.00 226 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Manhattan) Non-Teaching Adjunct Ii 4521.45250 9.042905e+04 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 9.042905e+04 9.042905e+04 0.00 NULL
2024 Community College (Manhattan) Non-Teaching Adjunct Iii 8213.43651 2.956837e+05 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 2.956837e+05 2.956837e+05 0.00 NULL
2024 Community College (Manhattan) Non-Teaching Adjunct Iv 2868.21750 4.589148e+04 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 4.589148e+04 4.589148e+04 0.00 NULL
2024 Community College (Manhattan) Non-Teaching Adjunct V 13141.91818 1.445611e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.445611e+05 1.445611e+05 0.00 NULL
2024 Community College (Manhattan) Oiler NA NA 396442.82 3.604026e+04 28500.780 4402.02 11 2.850078e+04 313508.58 NA NA NA NULL
2024 Community College (Manhattan) Painter NA NA 43396.95 1.084924e+04 10735.580 617.50 4 1.073558e+04 42942.32 NA NA NA NULL
2024 Community College (Manhattan) Plumber NA NA 134189.60 4.472987e+04 46397.760 1183.50 3 4.472987e+04 134189.60 NA NA NA NULL
2024 Community College (Manhattan) President 280500.00000 2.805000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.805000e+05 2.805000e+05 0.00 NULL
2024 Community College (Manhattan) Principal Custodial Supervisor 65664.00000 6.566400e+04 7520.17 7.520170e+03 7520.170 157.50 1 7.520170e+03 7520.17 7.318417e+04 7.318417e+04 0.00 NULL
2024 Community College (Manhattan) Professor NA NA 0.00 0.000000e+00 0.000 0.00 212 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Manhattan) Purchasing Agent 67282.50000 2.691300e+05 243.97 6.099250e+01 47.600 7.00 4 4.760000e+01 190.40 2.693740e+05 2.693204e+05 53.57 NULL
2024 Community College (Manhattan) Research Assistant 49402.50000 9.880500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.880500e+04 9.880500e+04 0.00 NULL
2024 Community College (Manhattan) Senior College Lab Tech 78973.88235 1.342556e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.342556e+06 1.342556e+06 0.00 NULL
2024 Community College (Manhattan) Senior Custodial Supervisor 41913.00000 8.382600e+04 27134.83 1.356742e+04 13567.415 902.62 2 1.356742e+04 27134.83 1.109608e+05 1.109608e+05 0.00 NULL
2024 Community College (Manhattan) Senior Stationary Engineer NA NA 148734.06 7.436703e+04 74367.030 1405.00 2 7.436703e+04 148734.06 NA NA NA NULL
2024 Community College (Manhattan) Senior Vice President 219295.00000 2.192950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.192950e+05 2.192950e+05 0.00 NULL
2024 Community College (Manhattan) Sign Language Interpreter 5393.84000 1.618152e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.618152e+04 1.618152e+04 0.00 NULL
2024 Community College (Manhattan) Staff Nurse 16038.98625 3.207797e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.207797e+04 3.207797e+04 0.00 NULL
2024 Community College (Manhattan) Stationary Engineer NA NA 472579.80 4.296180e+04 33835.200 4932.50 11 3.383520e+04 372187.20 NA NA NA NULL
2024 Community College (Manhattan) Stock Worker 36563.50000 7.312700e+04 290.07 1.450350e+02 145.035 13.00 2 1.450350e+02 290.07 7.341707e+04 7.341707e+04 0.00 NULL
2024 Community College (Manhattan) Supervisor Of Stock Workers 61497.00000 6.149700e+04 437.58 4.375800e+02 437.580 12.00 1 4.375800e+02 437.58 6.193458e+04 6.193458e+04 0.00 NULL
2024 Community College (Manhattan) Thermostat Repairer NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Manhattan) University Professor 170452.00000 1.704520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.704520e+05 1.704520e+05 0.00 NULL
2024 Community College (Manhattan) Vice President 191525.50000 1.149153e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.149153e+06 1.149153e+06 0.00 NULL
2024 Community College (Queensboro) Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 76 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Queensboro) Adjunct Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Queensboro) Adjunct College Lab Tech 6688.56000 1.605254e+05 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 1.605254e+05 1.605254e+05 0.00 NULL
2024 Community College (Queensboro) Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 278 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Queensboro) Adjunct Professor NA NA 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Queensboro) Administrator 166464.00000 1.664640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.664640e+05 1.664640e+05 0.00 NULL
2024 Community College (Queensboro) Administrator Supt Campus B/G 64306.96000 1.286139e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.286139e+05 1.286139e+05 0.00 NULL
2024 Community College (Queensboro) Assistant Administrator 170000.00000 1.700000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.700000e+05 1.700000e+05 0.00 NULL
2024 Community College (Queensboro) Assistant College Security Director 92978.50000 1.859570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.859570e+05 1.859570e+05 0.00 NULL
2024 Community College (Queensboro) Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 86 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Queensboro) Assistant To Heo 67693.13333 2.030794e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 2.030794e+06 2.030794e+06 0.00 NULL
2024 Community College (Queensboro) Assistant Vice President 175000.00000 1.750000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750000e+05 1.750000e+05 0.00 NULL
2024 Community College (Queensboro) Associate Administrator 165333.20000 8.266660e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.266660e+05 8.266660e+05 0.00 NULL
2024 Community College (Queensboro) Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 250 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Queensboro) Campus Peace Officer 49333.37037 1.332001e+06 70470.12 2.610004e+03 1371.410 1956.75 27 1.371410e+03 37028.07 1.402471e+06 1.369029e+06 33442.05 NULL
2024 Community College (Queensboro) Campus Public Safety Sergeant 60140.58333 7.216870e+05 79088.88 6.590740e+03 4422.570 1826.75 12 4.422570e+03 53070.84 8.007759e+05 7.747578e+05 26018.04 NULL
2024 Community College (Queensboro) Campus Security Assistant 35020.27778 6.303650e+05 18503.68 1.027982e+03 357.780 731.25 18 3.577800e+02 6440.04 6.488687e+05 6.368050e+05 12063.64 NULL
2024 Community College (Queensboro) Carpenter NA NA 22450.03 5.612507e+03 3442.515 259.00 4 3.442515e+03 13770.06 NA NA NA NULL
2024 Community College (Queensboro) Cement Mason NA NA 3078.40 3.078400e+03 3078.400 32.00 1 3.078400e+03 3078.40 NA NA NA NULL
2024 Community College (Queensboro) Chief Administrative Supt Campus B/G 148421.00000 1.484210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.484210e+05 1.484210e+05 0.00 NULL
2024 Community College (Queensboro) Chief College Lab Technician 59766.10200 2.988305e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.988305e+05 2.988305e+05 0.00 NULL
2024 Community College (Queensboro) City Laborer NA NA 75377.57 1.507551e+04 17418.150 1370.25 5 1.507551e+04 75377.57 NA NA NA NULL
2024 Community College (Queensboro) Clip Instructor 68128.37500 5.450270e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.450270e+05 5.450270e+05 0.00 NULL
2024 Community College (Queensboro) College Accountant 67398.00000 1.347960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.347960e+05 1.347960e+05 0.00 NULL
2024 Community College (Queensboro) College Assistant 7260.54617 2.403241e+06 0.00 0.000000e+00 0.000 0.00 331 0.000000e+00 0.00 2.403241e+06 2.403241e+06 0.00 NULL
2024 Community College (Queensboro) College Graph Designer 68820.00000 6.882000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.882000e+04 6.882000e+04 0.00 NULL
2024 Community College (Queensboro) College Lab Technician 57221.01231 7.438732e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 7.438732e+05 7.438732e+05 0.00 NULL
2024 Community College (Queensboro) College Print Shop Assistant 39353.00000 3.935300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.935300e+04 3.935300e+04 0.00 NULL
2024 Community College (Queensboro) College Print Shop Associate 51255.00000 5.125500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.125500e+04 5.125500e+04 0.00 NULL
2024 Community College (Queensboro) College Security Director 153671.00000 1.536710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.536710e+05 1.536710e+05 0.00 NULL
2024 Community College (Queensboro) College Security Specialist 64374.00000 1.287480e+05 11356.38 5.678190e+03 5678.190 241.50 2 5.678190e+03 11356.38 1.401044e+05 1.401044e+05 0.00 NULL
2024 Community College (Queensboro) Computer Systems Manager 138389.50000 5.535580e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.535580e+05 5.535580e+05 0.00 NULL
2024 Community College (Queensboro) Continuing Education Teacher 5461.78277 7.045700e+05 0.00 0.000000e+00 0.000 0.00 129 0.000000e+00 0.00 7.045700e+05 7.045700e+05 0.00 NULL
2024 Community College (Queensboro) Cuny Administrator Assistant 56269.69231 7.315060e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 7.315060e+05 7.315060e+05 0.00 NULL
2024 Community College (Queensboro) Cuny Custodial Assistant 28739.10863 1.235782e+06 51574.26 1.199401e+03 251.730 1993.25 43 2.517300e+02 10824.39 1.287356e+06 1.246606e+06 40749.87 NULL
2024 Community College (Queensboro) Cuny Office Assistant 40870.08621 2.370465e+06 0.00 0.000000e+00 0.000 0.00 58 0.000000e+00 0.00 2.370465e+06 2.370465e+06 0.00 NULL
2024 Community College (Queensboro) Cuny Start Instructor 69578.10526 1.321984e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 1.321984e+06 1.321984e+06 0.00 NULL
2024 Community College (Queensboro) Custodial Supervisor 40853.33333 1.225600e+05 8955.68 2.985227e+03 32.690 279.50 3 3.269000e+01 98.07 1.315157e+05 1.226581e+05 8857.61 NULL
2024 Community College (Queensboro) Dean 162650.00000 8.132500e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.132500e+05 8.132500e+05 0.00 NULL
2024 Community College (Queensboro) Disability Accommodations Specialist 41829.56375 1.673183e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.673183e+05 1.673183e+05 0.00 NULL
2024 Community College (Queensboro) Electrician NA NA 47395.80 7.899300e+03 4763.160 502.50 6 4.763160e+03 28578.96 NA NA NA NULL
2024 Community College (Queensboro) Facilities Coordinator 77880.00000 7.788000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.788000e+04 7.788000e+04 0.00 NULL
2024 Community College (Queensboro) High Pressure Plant Tender NA NA 30849.00 4.407000e+03 4512.000 559.00 7 4.407000e+03 30849.00 NA NA NA NULL
2024 Community College (Queensboro) Higher Education Assistant 83399.06731 8.673503e+06 0.00 0.000000e+00 0.000 0.00 104 0.000000e+00 0.00 8.673503e+06 8.673503e+06 0.00 NULL
2024 Community College (Queensboro) Higher Education Associate 106874.03774 5.664324e+06 0.00 0.000000e+00 0.000 0.00 53 0.000000e+00 0.00 5.664324e+06 5.664324e+06 0.00 NULL
2024 Community College (Queensboro) Higher Education Officer 133264.36170 6.263425e+06 0.00 0.000000e+00 0.000 0.00 47 0.000000e+00 0.00 6.263425e+06 6.263425e+06 0.00 NULL
2024 Community College (Queensboro) Higher Education Officer/Asst Administrator 149528.00000 1.495280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.495280e+05 1.495280e+05 0.00 NULL
2024 Community College (Queensboro) It Assistant 55608.00000 2.780400e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.780400e+05 2.780400e+05 0.00 NULL
2024 Community College (Queensboro) It Associate 75262.75000 6.021020e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.021020e+05 6.021020e+05 0.00 NULL
2024 Community College (Queensboro) It Senior Associate 106274.77778 9.564730e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 9.564730e+05 9.564730e+05 0.00 NULL
2024 Community College (Queensboro) It Support Assistant 16356.35000 6.542540e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.542540e+04 6.542540e+04 0.00 NULL
2024 Community College (Queensboro) Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 122 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Queensboro) Lecturer/Doctoral Schedule 87851.23077 1.142066e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.142066e+06 1.142066e+06 0.00 NULL
2024 Community College (Queensboro) Locksmith NA NA 1075.63 1.075630e+03 1075.630 22.50 1 1.075630e+03 1075.63 NA NA NA NULL
2024 Community College (Queensboro) Mail/Message Services Worker 43877.00000 4.387700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.387700e+04 4.387700e+04 0.00 NULL
2024 Community College (Queensboro) Maintenance Worker NA NA 16265.52 5.421840e+03 5188.140 348.00 3 5.188140e+03 15564.42 NA NA NA NULL
2024 Community College (Queensboro) Motor Vehicle Operator 48588.00000 4.858800e+04 907.53 9.075300e+02 907.530 26.00 1 9.075300e+02 907.53 4.949553e+04 4.949553e+04 0.00 NULL
2024 Community College (Queensboro) Non-Teaching Adjunct I 5904.93969 4.723952e+05 0.00 0.000000e+00 0.000 0.00 80 0.000000e+00 0.00 4.723952e+05 4.723952e+05 0.00 NULL
2024 Community College (Queensboro) Non-Teaching Adjunct Ii 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 Community College (Queensboro) Non-Teaching Adjunct Iii 913.24846 2.374446e+04 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 2.374446e+04 2.374446e+04 0.00 NULL
2024 Community College (Queensboro) Non-Teaching Adjunct Iv 580.20000 8.122800e+03 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 8.122800e+03 8.122800e+03 0.00 NULL
2024 Community College (Queensboro) Non-Teaching Adjunct V 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 Community College (Queensboro) Oiler NA NA 13204.76 6.602380e+03 6602.380 150.00 2 6.602380e+03 13204.76 NA NA NA NULL
2024 Community College (Queensboro) Painter NA NA 675.15 3.375750e+02 337.575 10.00 2 3.375750e+02 675.15 NA NA NA NULL
2024 Community College (Queensboro) Plumber NA NA 9268.18 4.634090e+03 4634.090 81.50 2 4.634090e+03 9268.18 NA NA NA NULL
2024 Community College (Queensboro) President 280908.00000 2.809080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.809080e+05 2.809080e+05 0.00 NULL
2024 Community College (Queensboro) Professor NA NA 0.00 0.000000e+00 0.000 0.00 127 0.000000e+00 0.00 NA NA NA NULL
2024 Community College (Queensboro) Project Manager 107428.00000 1.074280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074280e+05 1.074280e+05 0.00 NULL
2024 Community College (Queensboro) Senior College Lab Tech 78868.80769 2.050589e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 2.050589e+06 2.050589e+06 0.00 NULL
2024 Community College (Queensboro) Senior Custodial Supervisor 41975.33333 1.259260e+05 13443.97 4.481323e+03 4283.800 408.75 3 4.283800e+03 12851.40 1.393700e+05 1.387774e+05 592.57 NULL
2024 Community College (Queensboro) Senior Stationary Engineer NA NA 20848.59 2.084859e+04 20848.590 189.00 1 2.084859e+04 20848.59 NA NA NA NULL
2024 Community College (Queensboro) Sr College Laboratory Tech 5207.25806 4.686532e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 4.686532e+04 4.686532e+04 0.00 NULL
2024 Community College (Queensboro) Staff Nurse 50934.51875 2.037381e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.037381e+05 2.037381e+05 0.00 NULL
2024 Community College (Queensboro) Stationary Engineer NA NA 184094.70 2.045497e+04 22625.700 1969.50 9 2.045497e+04 184094.70 NA NA NA NULL
2024 Community College (Queensboro) Stock Worker 36516.00000 3.651600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.651600e+04 3.651600e+04 0.00 NULL
2024 Community College (Queensboro) Supervisor Of Stock Workers 63967.00000 6.396700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.396700e+04 6.396700e+04 0.00 NULL
2024 Community College (Queensboro) Vice President 193836.66667 1.163020e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.163020e+06 1.163020e+06 0.00 NULL
2024 Community College (Queensboro) NA 67016.00000 6.701600e+04 3033.05 3.033050e+03 3033.050 63.00 1 3.033050e+03 3033.05 7.004905e+04 7.004905e+04 0.00 NULL
2024 Conflicts Of Interest Board Administrative Staff Analyst 170116.00000 1.701160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.701160e+05 1.701160e+05 0.00 NULL
2024 Conflicts Of Interest Board Agency Attorney 90502.85714 6.335200e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.335200e+05 6.335200e+05 0.00 NULL
2024 Conflicts Of Interest Board Agency Chief Contracting Officer 145963.00000 1.459630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.459630e+05 1.459630e+05 0.00 NULL
2024 Conflicts Of Interest Board Community Associate 59518.50000 1.190370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.190370e+05 1.190370e+05 0.00 NULL
2024 Conflicts Of Interest Board Community Coordinator 73474.00000 7.347400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.347400e+04 7.347400e+04 0.00 NULL
2024 Conflicts Of Interest Board Computer Operations Manager 166836.00000 1.668360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.668360e+05 1.668360e+05 0.00 NULL
2024 Conflicts Of Interest Board Computer Specialist 109613.00000 1.096130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.096130e+05 1.096130e+05 0.00 NULL
2024 Conflicts Of Interest Board Confidential Investigator 68431.66667 2.052950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.052950e+05 2.052950e+05 0.00 NULL
2024 Conflicts Of Interest Board Counsel 260006.00000 2.600060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.600060e+05 2.600060e+05 0.00 NULL
2024 Conflicts Of Interest Board Executive Agency Counsel 162190.00000 9.731400e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.731400e+05 9.731400e+05 0.00 NULL
2024 Conflicts Of Interest Board Principal Administrative Associate - Non Supvr 68141.00000 6.814100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.814100e+04 6.814100e+04 0.00 NULL
2024 Conflicts Of Interest Board Secretary To Conflicts Of Interest Board 69874.00000 6.987400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.987400e+04 6.987400e+04 0.00 NULL
2024 Consumer And Worker Protection Adm Manager-Non-Mgrl 85207.00000 3.408280e+05 3.86 9.650000e-01 0.000 0.00 4 0.000000e+00 0.00 3.408319e+05 3.408280e+05 3.86 NULL
2024 Consumer And Worker Protection Admin Community Relations Specialist 87761.33333 2.632840e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.632840e+05 2.632840e+05 0.00 NULL
2024 Consumer And Worker Protection Admin Contract Specialist 172712.00000 1.727120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.727120e+05 1.727120e+05 0.00 NULL
2024 Consumer And Worker Protection Administrative Business Promotion Coordinator 127520.00000 2.550400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.550400e+05 2.550400e+05 0.00 NULL
2024 Consumer And Worker Protection Administrative Community Relations Specialist 148012.75000 5.920510e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.920510e+05 5.920510e+05 0.00 NULL
2024 Consumer And Worker Protection Administrative Contract Specialist 95968.00000 1.919360e+05 17.58 8.790000e+00 8.790 0.00 2 8.790000e+00 17.58 1.919536e+05 1.919536e+05 0.00 NULL
2024 Consumer And Worker Protection Administrative Graphic Artist 85233.00000 8.523300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.523300e+04 8.523300e+04 0.00 NULL
2024 Consumer And Worker Protection Administrative Manager 103166.00000 1.031660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.031660e+05 1.031660e+05 0.00 NULL
2024 Consumer And Worker Protection Administrative Public Information Specialist Nm Former M1/M2 65000.00000 6.500000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.500000e+04 6.500000e+04 0.00 NULL
2024 Consumer And Worker Protection Administrative Staff Analyst 146866.73684 2.790468e+06 113.10 5.952632e+00 0.000 0.00 19 0.000000e+00 0.00 2.790581e+06 2.790468e+06 113.10 NULL
2024 Consumer And Worker Protection Agency Attorney 90913.87951 6.545799e+06 6367.87 8.844264e+01 0.000 77.50 72 0.000000e+00 0.00 6.552167e+06 6.545799e+06 6367.87 NULL
2024 Consumer And Worker Protection Associate Inspector 88607.00696 2.037961e+06 1424.18 6.192087e+01 0.000 25.25 23 0.000000e+00 0.00 2.039385e+06 2.037961e+06 1424.18 NULL
2024 Consumer And Worker Protection Associate Staff Analyst 98211.75000 3.928470e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.928470e+05 3.928470e+05 0.00 NULL
2024 Consumer And Worker Protection Bookkeeper 51352.00000 5.135200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.135200e+04 5.135200e+04 0.00 NULL
2024 Consumer And Worker Protection Business Promotion Coordinator 102068.00000 1.020680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.020680e+05 1.020680e+05 0.00 NULL
2024 Consumer And Worker Protection Certified It Administrator 113362.32000 3.400870e+05 2.72 9.066667e-01 0.000 0.00 3 0.000000e+00 0.00 3.400897e+05 3.400870e+05 2.72 NULL
2024 Consumer And Worker Protection Certified It Developer 122435.50000 4.897420e+05 133.56 3.339000e+01 0.000 2.00 4 0.000000e+00 0.00 4.898756e+05 4.897420e+05 133.56 NULL
2024 Consumer And Worker Protection City Research Scientist 107989.96900 1.079900e+06 1091.48 1.091480e+02 0.000 19.00 10 0.000000e+00 0.00 1.080991e+06 1.079900e+06 1091.48 NULL
2024 Consumer And Worker Protection Clerical Associate 52585.98447 4.469809e+06 928.81 1.092718e+01 0.000 16.00 85 0.000000e+00 0.00 4.470737e+06 4.469809e+06 928.81 NULL
2024 Consumer And Worker Protection College Aide 15538.46100 4.661538e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.661538e+04 4.661538e+04 0.00 NULL
2024 Consumer And Worker Protection Commissioner 260042.00000 2.600420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.600420e+05 2.600420e+05 0.00 NULL
2024 Consumer And Worker Protection Community Associate 56882.69963 1.535833e+06 893.95 3.310926e+01 0.000 25.25 27 0.000000e+00 0.00 1.536727e+06 1.535833e+06 893.95 NULL
2024 Consumer And Worker Protection Community Coordinator 77423.08929 2.167846e+06 4378.67 1.563811e+02 0.000 95.25 28 0.000000e+00 0.00 2.172225e+06 2.167846e+06 4378.67 NULL
2024 Consumer And Worker Protection Computer Associate 87738.16400 8.773816e+05 2580.14 2.580140e+02 0.000 50.00 10 0.000000e+00 0.00 8.799618e+05 8.773816e+05 2580.14 NULL
2024 Consumer And Worker Protection Computer Specialist 124090.30000 1.240903e+06 10426.49 1.042649e+03 0.000 115.50 10 0.000000e+00 0.00 1.251329e+06 1.240903e+06 10426.49 NULL
2024 Consumer And Worker Protection Computer Systems Manager 143130.37278 2.576347e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.576347e+06 2.576347e+06 0.00 NULL
2024 Consumer And Worker Protection Confidential Examiner 61903.00000 6.190300e+04 0.91 9.100000e-01 0.910 0.00 1 9.100000e-01 0.91 6.190391e+04 6.190391e+04 0.00 NULL
2024 Consumer And Worker Protection Customer Information Representative Ma L 1549 63757.00000 3.825420e+05 219.19 3.653167e+01 15.460 6.75 6 1.546000e+01 92.76 3.827612e+05 3.826348e+05 126.43 NULL
2024 Consumer And Worker Protection Deputy Commissioner 168828.00000 1.688280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.688280e+05 1.688280e+05 0.00 NULL
2024 Consumer And Worker Protection Director Of Bureau Of Consumer Services 112682.00000 1.126820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.126820e+05 1.126820e+05 0.00 NULL
2024 Consumer And Worker Protection Director Of Consumer Information 91166.00000 9.116600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.116600e+04 9.116600e+04 0.00 NULL
2024 Consumer And Worker Protection Executive Agency Counsel 178501.00000 1.785010e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.785010e+06 1.785010e+06 0.00 NULL
2024 Consumer And Worker Protection Executive Assistant To The Commissioner 103810.00000 1.038100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.038100e+05 1.038100e+05 0.00 NULL
2024 Consumer And Worker Protection General Inspector 78463.00000 1.569260e+05 15369.55 7.684775e+03 7684.775 314.50 2 7.684775e+03 15369.55 1.722955e+05 1.722955e+05 0.00 NULL
2024 Consumer And Worker Protection Graphic Artist 49822.00000 4.982200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.982200e+04 4.982200e+04 0.00 NULL
2024 Consumer And Worker Protection High School Student Aide 7512.00000 7.512000e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.512000e+03 7.512000e+03 0.00 NULL
2024 Consumer And Worker Protection Inspector 59069.48693 4.430212e+06 15754.91 2.100655e+02 0.000 410.50 75 0.000000e+00 0.00 4.445966e+06 4.430212e+06 15754.91 NULL
2024 Consumer And Worker Protection Principal Administrative Associate - Non Supvr 72225.58724 4.189084e+06 3213.03 5.539707e+01 0.000 69.00 58 0.000000e+00 0.00 4.192297e+06 4.189084e+06 3213.03 NULL
2024 Consumer And Worker Protection Procurement Analyst 64467.33333 1.934020e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.934020e+05 1.934020e+05 0.00 NULL
2024 Consumer And Worker Protection Public Records Aide 49615.00000 4.961500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.961500e+04 4.961500e+04 0.00 NULL
2024 Consumer And Worker Protection Research Assistant 60400.63636 6.644070e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 6.644070e+05 6.644070e+05 0.00 NULL
2024 Consumer And Worker Protection Secretary 52076.30000 1.041526e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.041526e+05 1.041526e+05 0.00 NULL
2024 Consumer And Worker Protection Secretary Of The Department 66066.00000 6.606600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.606600e+04 6.606600e+04 0.00 NULL
2024 Consumer And Worker Protection Secretary To The Department 111395.00000 1.113950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.113950e+05 1.113950e+05 0.00 NULL
2024 Consumer And Worker Protection Space Analyst 76496.50000 1.529930e+05 1862.82 9.314100e+02 931.410 38.00 2 9.314100e+02 1862.82 1.548558e+05 1.548558e+05 0.00 NULL
2024 Consumer And Worker Protection Staff Analyst 70589.66667 2.117690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.117690e+05 2.117690e+05 0.00 NULL
2024 Cultural Affairs Adm Manager-Non-Mgrl 76194.00000 7.619400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.619400e+04 7.619400e+04 0.00 NULL
2024 Cultural Affairs Admin Contract Specialist 99973.00000 9.997300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.997300e+04 9.997300e+04 0.00 NULL
2024 Cultural Affairs Administrative Community Relations Specialist 160313.00000 1.603130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.603130e+05 1.603130e+05 0.00 NULL
2024 Cultural Affairs Administrative Project Manager 157598.00000 1.575980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.575980e+05 1.575980e+05 0.00 NULL
2024 Cultural Affairs Administrative Public Information Specialist Nm Former M1/M2 111395.00000 1.113950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.113950e+05 1.113950e+05 0.00 NULL
2024 Cultural Affairs Administrative Staff Analyst 121929.00000 2.438580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.438580e+05 2.438580e+05 0.00 NULL
2024 Cultural Affairs Agency Attorney 95892.20000 4.794610e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.794610e+05 4.794610e+05 0.00 NULL
2024 Cultural Affairs Agency Chief Contracting Officer 135098.00000 1.350980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350980e+05 1.350980e+05 0.00 NULL
2024 Cultural Affairs Arts Program Specialist 52691.00000 5.269100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.269100e+04 5.269100e+04 0.00 NULL
2024 Cultural Affairs Assistant Commissioner 136324.50000 8.179470e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.179470e+05 8.179470e+05 0.00 NULL
2024 Cultural Affairs Associate Arts Programs Specialist 68095.70588 1.157627e+06 5785.90 3.403471e+02 0.000 168.75 17 0.000000e+00 0.00 1.163413e+06 1.157627e+06 5785.90 NULL
2024 Cultural Affairs City Laborer 60845.62500 6.084562e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.084562e+04 6.084562e+04 0.00 NULL
2024 Cultural Affairs Commissioner Of Cultural Affairs 260042.00000 2.600420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.600420e+05 2.600420e+05 0.00 NULL
2024 Cultural Affairs Community Assistant 45023.63400 4.502363e+04 294.24 2.942400e+02 294.240 8.90 1 2.942400e+02 294.24 4.531787e+04 4.531787e+04 0.00 NULL
2024 Cultural Affairs Community Associate 46998.91816 7.519827e+05 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 7.519827e+05 7.519827e+05 0.00 NULL
2024 Cultural Affairs Community Coordinator 78271.66924 8.609884e+05 3989.03 3.626391e+02 0.000 81.25 11 0.000000e+00 0.00 8.649774e+05 8.609884e+05 3989.03 NULL
2024 Cultural Affairs Computer Associate 115245.00000 1.152450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.152450e+05 1.152450e+05 0.00 NULL
2024 Cultural Affairs Computer Systems Manager 156236.00000 1.562360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.562360e+05 1.562360e+05 0.00 NULL
2024 Cultural Affairs Deputy Commissioner 177551.00000 1.775510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.775510e+05 1.775510e+05 0.00 NULL
2024 Cultural Affairs Executive Agency Counsel 146586.00000 2.931720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.931720e+05 2.931720e+05 0.00 NULL
2024 Cultural Affairs Executive Director Of Materials For The Arts 126806.00000 1.268060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.268060e+05 1.268060e+05 0.00 NULL
2024 Cultural Affairs Procurement Analyst 70293.00000 7.029300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.029300e+04 7.029300e+04 0.00 NULL
2024 Cultural Affairs Special Assistant 168943.00000 1.689430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.689430e+05 1.689430e+05 0.00 NULL
2024 Cultural Affairs Staff Analyst 85810.66667 2.574320e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.574320e+05 2.574320e+05 0.00 NULL
2024 Cuny Central Office Administrator Supt Campus B/G 1165.36000 1.165360e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.165360e+03 1.165360e+03 0.00 NULL
2024 Cuny Central Office Assistant To Heo 62995.20000 1.259904e+06 2577.38 1.288690e+02 0.000 46.00 20 0.000000e+00 0.00 1.262481e+06 1.259904e+06 2577.38 NULL
2024 Cuny Central Office Campus Peace Officer 50907.00000 1.018140e+05 146.29 7.314500e+01 73.145 4.00 2 7.314500e+01 146.29 1.019603e+05 1.019603e+05 0.00 NULL
2024 Cuny Central Office College Assistant 5209.30133 3.906976e+05 0.00 0.000000e+00 0.000 0.00 75 0.000000e+00 0.00 3.906976e+05 3.906976e+05 0.00 NULL
2024 Cuny Central Office Higher Education Assistant 84784.22222 1.526116e+06 3042.20 1.690111e+02 0.000 41.00 18 0.000000e+00 0.00 1.529158e+06 1.526116e+06 3042.20 NULL
2024 Cuny Central Office Higher Education Associate 102745.38462 2.671380e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 2.671380e+06 2.671380e+06 0.00 NULL
2024 Cuny Central Office Higher Education Officer 124189.15789 2.359594e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.359594e+06 2.359594e+06 0.00 NULL
2024 Cuny Central Office It Associate 74698.33333 2.240950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.240950e+05 2.240950e+05 0.00 NULL
2024 Cuny Central Office It Senior Associate 42338.73000 4.233873e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.233873e+04 4.233873e+04 0.00 NULL
2024 Cuny Central Office Non-Teaching Adjunct I 2489.55000 7.468650e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.468650e+03 7.468650e+03 0.00 NULL
2024 Cuny Central Office Non-Teaching Adjunct Ii 18437.50000 5.531250e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.531250e+04 5.531250e+04 0.00 NULL
2024 Cuny Central Office Non-Teaching Adjunct Iii 27936.00000 2.793600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.793600e+04 2.793600e+04 0.00 NULL
2024 Cuny Central Office Non-Teaching Adjunct Iv 42144.51000 8.428902e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.428902e+04 8.428902e+04 0.00 NULL
2024 Cuny Central Office Non-Teaching Adjunct V 24889.61250 9.955845e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 9.955845e+04 9.955845e+04 0.00 NULL
2024 Cuny Central Office University Assistant Dean 135781.00000 2.715620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.715620e+05 2.715620e+05 0.00 NULL
2024 Cuny Central Office University Associate Administrator 153714.00000 1.537140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.537140e+05 1.537140e+05 0.00 NULL
2024 Cuny Central Office University Associate Dean 145656.00000 1.456560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.456560e+05 1.456560e+05 0.00 NULL
2024 Cuny Central Office University Dean 185095.50000 3.701910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.701910e+05 3.701910e+05 0.00 NULL
2024 Department For The Aging Accountant 75587.16667 4.535230e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.535230e+05 4.535230e+05 0.00 NULL
2024 Department For The Aging Adm Manager-Non-Mgrl 116104.75000 4.644190e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.644190e+05 4.644190e+05 0.00 NULL
2024 Department For The Aging Admin Community Relations Specialist 92612.00000 1.852240e+05 81.04 4.052000e+01 40.520 0.00 2 4.052000e+01 81.04 1.853050e+05 1.853050e+05 0.00 NULL
2024 Department For The Aging Administrative Program Officer 113409.67923 6.237532e+06 0.00 0.000000e+00 0.000 0.00 55 0.000000e+00 0.00 6.237532e+06 6.237532e+06 0.00 NULL
2024 Department For The Aging Administrative Accountant 135123.00000 1.351230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.351230e+05 1.351230e+05 0.00 NULL
2024 Department For The Aging Administrative Architect 113300.00000 1.133000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133000e+05 1.133000e+05 0.00 NULL
2024 Department For The Aging Administrative Community Relations Specialist 160425.50000 3.208510e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.208510e+05 3.208510e+05 0.00 NULL
2024 Department For The Aging Administrative Director Of Social Services 161445.50000 1.291564e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.291564e+06 1.291564e+06 0.00 NULL
2024 Department For The Aging Administrative Labor Relations Analyst 154226.00000 1.542260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.542260e+05 1.542260e+05 0.00 NULL
2024 Department For The Aging Administrative Manager 155873.00000 1.558730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.558730e+05 1.558730e+05 0.00 NULL
2024 Department For The Aging Administrative Procurement Analyst-Non-Mgrl 83960.00000 2.518800e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.518800e+05 2.518800e+05 0.00 NULL
2024 Department For The Aging Administrative Project Manager 151270.00000 1.512700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.512700e+05 1.512700e+05 0.00 NULL
2024 Department For The Aging Administrative Public Information Specialist 114000.00000 1.140000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.140000e+05 1.140000e+05 0.00 NULL
2024 Department For The Aging Administrative Quality Assurance Specialist 135238.00000 1.352380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.352380e+05 1.352380e+05 0.00 NULL
2024 Department For The Aging Administrative Staff Analyst 133007.21212 4.389238e+06 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 4.389238e+06 4.389238e+06 0.00 NULL
2024 Department For The Aging Administrative Supervisor Of Building Maintenance 127985.00000 2.559700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.559700e+05 2.559700e+05 0.00 NULL
2024 Department For The Aging Agency Chief Contracting Officer 192469.00000 1.924690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.924690e+05 1.924690e+05 0.00 NULL
2024 Department For The Aging Assistant Architect 95458.00000 1.909160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.909160e+05 1.909160e+05 0.00 NULL
2024 Department For The Aging Assistant To Commissioner 94521.00000 9.452100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.452100e+04 9.452100e+04 0.00 NULL
2024 Department For The Aging Associate Contract Specialist 67748.00000 6.774800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.774800e+04 6.774800e+04 0.00 NULL
2024 Department For The Aging Associate Investigator 68001.74100 1.360035e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.360035e+05 1.360035e+05 0.00 NULL
2024 Department For The Aging Associate Project Manager 96621.00000 9.662100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.662100e+04 9.662100e+04 0.00 NULL
2024 Department For The Aging Associate Staff Analyst 82123.78929 1.149733e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.149733e+06 1.149733e+06 0.00 NULL
2024 Department For The Aging Certified It Administrator 108017.00000 2.160340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.160340e+05 2.160340e+05 0.00 NULL
2024 Department For The Aging Certified It Developer 124592.72000 1.245927e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.245927e+05 1.245927e+05 0.00 NULL
2024 Department For The Aging City Custodial Assistant 48781.00000 4.878100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.878100e+04 4.878100e+04 0.00 NULL
2024 Department For The Aging City Research Scientist 100057.00000 6.003420e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.003420e+05 6.003420e+05 0.00 NULL
2024 Department For The Aging Clerical Associate 70872.00000 7.087200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.087200e+04 7.087200e+04 0.00 NULL
2024 Department For The Aging College Aide 10409.35750 5.204679e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.204679e+04 5.204679e+04 0.00 NULL
2024 Department For The Aging College Aide - Assignment Levels Ii And Iii 18379.32000 5.513796e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.513796e+04 5.513796e+04 0.00 NULL
2024 Department For The Aging Commissioner 275316.00000 2.753160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.753160e+05 2.753160e+05 0.00 NULL
2024 Department For The Aging Community Assistant 48977.00000 4.897700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.897700e+04 4.897700e+04 0.00 NULL
2024 Department For The Aging Community Associate 54782.00212 1.205204e+06 42756.40 1.943473e+03 0.000 893.95 22 0.000000e+00 0.00 1.247960e+06 1.205204e+06 42756.40 NULL
2024 Department For The Aging Community Coordinator 70230.20738 4.916115e+06 1779.62 2.542314e+01 0.000 40.75 70 0.000000e+00 0.00 4.917894e+06 4.916115e+06 1779.62 NULL
2024 Department For The Aging Computer Associate 81014.65333 2.430440e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.430440e+05 2.430440e+05 0.00 NULL
2024 Department For The Aging Computer Operations Manager 149417.52000 1.494175e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.494175e+05 1.494175e+05 0.00 NULL
2024 Department For The Aging Computer Specialist 108894.66667 6.533680e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.533680e+05 6.533680e+05 0.00 NULL
2024 Department For The Aging Computer Systems Manager 137943.74154 1.793269e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.793269e+06 1.793269e+06 0.00 NULL
2024 Department For The Aging Counsel 202221.00000 2.022210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.022210e+05 2.022210e+05 0.00 NULL
2024 Department For The Aging Director Of Direct Service Programs 115091.00000 2.301820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.301820e+05 2.301820e+05 0.00 NULL
2024 Department For The Aging Executive Agency Counsel 132670.50000 2.653410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.653410e+05 2.653410e+05 0.00 NULL
2024 Department For The Aging High School Student Aide 7946.56000 2.383968e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.383968e+04 2.383968e+04 0.00 NULL
2024 Department For The Aging Housing Development Specialist 73878.00000 7.387800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.387800e+04 7.387800e+04 0.00 NULL
2024 Department For The Aging Management Auditor 86771.81250 1.388349e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.388349e+06 1.388349e+06 0.00 NULL
2024 Department For The Aging Nutrition Consultant 75694.33333 9.083320e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 9.083320e+05 9.083320e+05 0.00 NULL
2024 Department For The Aging Nutritionist 72079.00000 1.441580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.441580e+05 1.441580e+05 0.00 NULL
2024 Department For The Aging Principal Administrative Associate - Non Supvr 69845.09524 1.466747e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.466747e+06 1.466747e+06 0.00 NULL
2024 Department For The Aging Principal Nutrition Consultant 95098.33333 2.852950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.852950e+05 2.852950e+05 0.00 NULL
2024 Department For The Aging Procurement Analyst 74170.18750 2.966808e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.966808e+05 2.966808e+05 0.00 NULL
2024 Department For The Aging Program Officer 74972.23077 2.923917e+06 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 2.923917e+06 2.923917e+06 0.00 NULL
2024 Department For The Aging Secretary 58714.50000 1.174290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.174290e+05 1.174290e+05 0.00 NULL
2024 Department For The Aging Staff Analyst 75882.50000 4.552950e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.552950e+05 4.552950e+05 0.00 NULL
2024 Department For The Aging Supervisor Ii 63404.80979 4.438337e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 4.438337e+05 4.438337e+05 0.00 NULL
2024 Department For The Aging Supervisor Iii 101319.50000 2.026390e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.026390e+05 2.026390e+05 0.00 NULL
2024 Department Of Buildings Adm Manager-Non-Mgrl 98658.82456 5.623553e+06 143583.00 2.519000e+03 8.380 1884.00 57 8.380000e+00 477.66 5.767136e+06 5.624031e+06 143105.34 NULL
2024 Department Of Buildings Admin Community Relations Specialist 106026.20000 1.590393e+06 69222.08 4.614805e+03 222.360 959.25 15 2.223600e+02 3335.40 1.659615e+06 1.593728e+06 65886.68 NULL
2024 Department Of Buildings Admin Inspector 112722.90244 4.621639e+06 521493.76 1.271936e+04 7612.580 6991.75 41 7.612580e+03 312115.78 5.143133e+06 4.933755e+06 209377.98 NULL
2024 Department Of Buildings Administrative Architect 149023.02174 6.855059e+06 28336.03 6.160007e+02 0.000 353.50 46 0.000000e+00 0.00 6.883395e+06 6.855059e+06 28336.03 NULL
2024 Department Of Buildings Administrative Borough Superintendent 190293.00000 5.708790e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.708790e+05 5.708790e+05 0.00 NULL
2024 Department Of Buildings Administrative City Planner 124556.33333 3.736690e+05 10324.63 3.441543e+03 0.000 136.50 3 0.000000e+00 0.00 3.839936e+05 3.736690e+05 10324.63 NULL
2024 Department Of Buildings Administrative Engineer 154021.04255 7.238989e+06 75401.32 1.604283e+03 0.000 1109.75 47 0.000000e+00 0.00 7.314390e+06 7.238989e+06 75401.32 NULL
2024 Department Of Buildings Administrative Inspector 150360.76471 2.556133e+06 12991.14 7.641847e+02 0.000 149.50 17 0.000000e+00 0.00 2.569124e+06 2.556133e+06 12991.14 NULL
2024 Department Of Buildings Administrative Investigator 128909.00000 1.289090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.289090e+05 1.289090e+05 0.00 NULL
2024 Department Of Buildings Administrative Manager 161850.00000 6.474000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.474000e+05 6.474000e+05 0.00 NULL
2024 Department Of Buildings Administrative Procurement Analyst-Non-Mgrl 99471.50000 3.978860e+05 43.64 1.091000e+01 0.000 0.00 4 0.000000e+00 0.00 3.979296e+05 3.978860e+05 43.64 NULL
2024 Department Of Buildings Administrative Project Manager 164425.00000 3.288500e+05 10810.29 5.405145e+03 5405.145 112.25 2 5.405145e+03 10810.29 3.396603e+05 3.396603e+05 0.00 NULL
2024 Department Of Buildings Administrative Public Information Specialist 175860.00000 3.517200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.517200e+05 3.517200e+05 0.00 NULL
2024 Department Of Buildings Administrative Staff Analyst 124206.13725 6.334513e+06 175674.35 3.444595e+03 0.000 1734.50 51 0.000000e+00 0.00 6.510187e+06 6.334513e+06 175674.35 NULL
2024 Department Of Buildings Agency Attorney 90990.16438 6.642282e+06 30278.12 4.147688e+02 0.000 464.00 73 0.000000e+00 0.00 6.672560e+06 6.642282e+06 30278.12 NULL
2024 Department Of Buildings Agency Attorney Interne 70379.71429 9.853160e+05 782.86 5.591857e+01 1.040 17.75 14 1.040000e+00 14.56 9.860989e+05 9.853306e+05 768.30 NULL
2024 Department Of Buildings Agency Chief Contracting Officer 169095.00000 1.690950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.690950e+05 1.690950e+05 0.00 NULL
2024 Department Of Buildings Architect 106522.12500 8.521770e+05 166.22 2.077750e+01 0.000 3.00 8 0.000000e+00 0.00 8.523432e+05 8.521770e+05 166.22 NULL
2024 Department Of Buildings Assistant Architect 85369.46667 2.561084e+06 35623.19 1.187440e+03 69.235 648.75 30 6.923500e+01 2077.05 2.596707e+06 2.563161e+06 33546.14 NULL
2024 Department Of Buildings Assistant Civil Engineer 81607.15000 1.632143e+06 46937.81 2.346890e+03 780.820 855.50 20 7.808200e+02 15616.40 1.679081e+06 1.647759e+06 31321.41 NULL
2024 Department Of Buildings Assistant Commissioner 210862.44444 1.897762e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.897762e+06 1.897762e+06 0.00 NULL
2024 Department Of Buildings Assistant Electrical Engineer 73570.57143 5.149940e+05 3498.79 4.998271e+02 0.000 81.00 7 0.000000e+00 0.00 5.184928e+05 5.149940e+05 3498.79 NULL
2024 Department Of Buildings Assistant Mechanical Engineer 77374.16667 9.284900e+05 6217.26 5.181050e+02 0.000 128.00 12 0.000000e+00 0.00 9.347073e+05 9.284900e+05 6217.26 NULL
2024 Department Of Buildings Assistant Plan Examiner 80739.05618 1.437155e+07 273922.88 1.538893e+03 199.845 5380.75 178 1.998450e+02 35572.41 1.464547e+07 1.440712e+07 238350.47 NULL
2024 Department Of Buildings Associate Commissioner 234821.00000 2.348210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.348210e+05 2.348210e+05 0.00 NULL
2024 Department Of Buildings Associate Inspector 80948.73333 1.214231e+06 187369.62 1.249131e+04 8826.180 3487.50 15 8.826180e+03 132392.70 1.401601e+06 1.346624e+06 54976.92 NULL
2024 Department Of Buildings Associate Investigator 86050.50000 1.721010e+05 1210.43 6.052150e+02 605.215 23.00 2 6.052150e+02 1210.43 1.733114e+05 1.733114e+05 0.00 NULL
2024 Department Of Buildings Associate Labor Relations Analyst 102049.66667 3.061490e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.061490e+05 3.061490e+05 0.00 NULL
2024 Department Of Buildings Associate Project Manager 107341.00000 2.146820e+05 9456.40 4.728200e+03 4728.200 142.00 2 4.728200e+03 9456.40 2.241384e+05 2.241384e+05 0.00 NULL
2024 Department Of Buildings Associate Public Records Officer 86544.00000 8.654400e+04 6817.86 6.817860e+03 6817.860 148.25 1 6.817860e+03 6817.86 9.336186e+04 9.336186e+04 0.00 NULL
2024 Department Of Buildings Associate Staff Analyst 92382.10000 2.771463e+06 1774.31 5.914367e+01 0.000 33.25 30 0.000000e+00 0.00 2.773237e+06 2.771463e+06 1774.31 NULL
2024 Department Of Buildings Borough Commissioner 216905.00000 6.507150e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.507150e+05 6.507150e+05 0.00 NULL
2024 Department Of Buildings Certified It Administrator 118791.60000 5.939580e+05 9484.30 1.896860e+03 0.000 99.50 5 0.000000e+00 0.00 6.034423e+05 5.939580e+05 9484.30 NULL
2024 Department Of Buildings Chief Of Staff 216905.00000 2.169050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.169050e+05 2.169050e+05 0.00 NULL
2024 Department Of Buildings Chief Strategy Officer 158935.00000 1.589350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.589350e+05 1.589350e+05 0.00 NULL
2024 Department Of Buildings City Laborer NA NA 20694.68 6.898227e+03 5537.220 374.25 3 5.537220e+03 16611.66 NA NA NA NULL
2024 Department Of Buildings City Planner 106699.00000 2.133980e+05 1941.20 9.706000e+02 970.600 28.00 2 9.706000e+02 1941.20 2.153392e+05 2.153392e+05 0.00 NULL
2024 Department Of Buildings City Research Scientist 102929.60000 5.146480e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.146480e+05 5.146480e+05 0.00 NULL
2024 Department Of Buildings Civil Engineer 113742.80000 2.843570e+06 92256.67 3.690267e+03 2058.570 1614.00 25 2.058570e+03 51464.25 2.935827e+06 2.895034e+06 40792.42 NULL
2024 Department Of Buildings Clerical Associate 49083.37455 8.638674e+06 118468.55 6.731168e+02 0.000 3416.27 176 0.000000e+00 0.00 8.757142e+06 8.638674e+06 118468.55 NULL
2024 Department Of Buildings College Aide 10110.06840 3.639625e+05 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 3.639625e+05 3.639625e+05 0.00 NULL
2024 Department Of Buildings College Aide - Assignment Levels Ii And Iii 12448.61190 4.979445e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.979445e+04 4.979445e+04 0.00 NULL
2024 Department Of Buildings Commissioner Of Buildings 277605.00000 2.776050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.776050e+05 2.776050e+05 0.00 NULL
2024 Department Of Buildings Community Assistant 46599.33333 1.397980e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.397980e+05 1.397980e+05 0.00 NULL
2024 Department Of Buildings Community Associate 53042.46400 5.304246e+05 10456.98 1.045698e+03 463.860 318.50 10 4.638600e+02 4638.60 5.408816e+05 5.350632e+05 5818.38 NULL
2024 Department Of Buildings Community Coordinator 76704.62162 2.838071e+06 48284.06 1.304975e+03 182.060 942.75 37 1.820600e+02 6736.22 2.886355e+06 2.844807e+06 41547.84 NULL
2024 Department Of Buildings Computer Associate 87128.23529 1.481180e+06 79730.04 4.690002e+03 14.160 980.50 17 1.416000e+01 240.72 1.560910e+06 1.481421e+06 79489.32 NULL
2024 Department Of Buildings Computer Operations Manager 141102.00000 1.411020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.411020e+05 1.411020e+05 0.00 NULL
2024 Department Of Buildings Computer Specialist 113076.61538 1.469996e+06 422.75 3.251923e+01 0.000 7.00 13 0.000000e+00 0.00 1.470419e+06 1.469996e+06 422.75 NULL
2024 Department Of Buildings Computer Systems Manager 143203.76000 3.580094e+06 2377.18 9.508720e+01 0.000 36.25 25 0.000000e+00 0.00 3.582471e+06 3.580094e+06 2377.18 NULL
2024 Department Of Buildings Confidential Agency Investigator 142700.00000 1.427000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.427000e+05 1.427000e+05 0.00 NULL
2024 Department Of Buildings Confidential Strategy Planner 99937.10000 9.993710e+05 39778.62 3.977862e+03 327.155 531.00 10 3.271550e+02 3271.55 1.039150e+06 1.002643e+06 36507.07 NULL
2024 Department Of Buildings Deputy Commissioner 239603.50000 9.584140e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 9.584140e+05 9.584140e+05 0.00 NULL
2024 Department Of Buildings Director, Energy Management Strategy 136992.00000 1.369920e+05 244.14 2.441400e+02 244.140 0.00 1 2.441400e+02 244.14 1.372361e+05 1.372361e+05 0.00 NULL
2024 Department Of Buildings Electrical Engineer 105361.50000 2.107230e+05 1376.85 6.884250e+02 688.425 23.00 2 6.884250e+02 1376.85 2.120999e+05 2.120999e+05 0.00 NULL
2024 Department Of Buildings Energy Conservation Specialist 88871.50000 1.777430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.777430e+05 1.777430e+05 0.00 NULL
2024 Department Of Buildings Equal Employment Opportunity Officer 141171.50000 2.823430e+05 7305.29 3.652645e+03 3652.645 103.50 2 3.652645e+03 7305.29 2.896483e+05 2.896483e+05 0.00 NULL
2024 Department Of Buildings Estimator 73878.00000 7.387800e+04 4616.52 4.616520e+03 4616.520 94.75 1 4.616520e+03 4616.52 7.849452e+04 7.849452e+04 0.00 NULL
2024 Department Of Buildings Executive Agency Counsel 164388.50000 4.274101e+06 13609.90 5.234577e+02 0.000 215.25 26 0.000000e+00 0.00 4.287711e+06 4.274101e+06 13609.90 NULL
2024 Department Of Buildings Executive Assistant 109852.50000 2.197050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.197050e+05 2.197050e+05 0.00 NULL
2024 Department Of Buildings Executive Director Of Professional Development 172642.00000 1.726420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.726420e+05 1.726420e+05 0.00 NULL
2024 Department Of Buildings Executive Director, New York City Loft Board 171241.00000 1.712410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.712410e+05 1.712410e+05 0.00 NULL
2024 Department Of Buildings Executive Inspector 132530.00000 5.301200e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.301200e+05 5.301200e+05 0.00 NULL
2024 Department Of Buildings Executive Program Specialist 184559.33333 5.536780e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.536780e+05 5.536780e+05 0.00 NULL
2024 Department Of Buildings First Deputy Commissioner 268277.00000 2.682770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.682770e+05 2.682770e+05 0.00 NULL
2024 Department Of Buildings Inspector 73672.90244 3.020589e+06 335908.07 8.192880e+03 1032.270 6848.50 41 1.032270e+03 42323.07 3.356497e+06 3.062912e+06 293585.00 NULL
2024 Department Of Buildings Inspector Boilers 78042.10000 1.560842e+06 16644.58 8.322290e+02 62.755 520.25 20 6.275500e+01 1255.10 1.577487e+06 1.562097e+06 15389.48 NULL
2024 Department Of Buildings Inspector Construction 72964.79559 3.640943e+07 1948258.31 3.904325e+03 235.440 28360.20 499 2.354400e+02 117484.56 3.835769e+07 3.652692e+07 1830773.75 NULL
2024 Department Of Buildings Inspector Elevators 77338.37302 3.325550e+06 264333.68 6.147295e+03 2810.510 3985.25 43 2.810510e+03 120851.93 3.589884e+06 3.446402e+06 143481.75 NULL
2024 Department Of Buildings Inspector Hoists And Rigging 87297.60000 8.729760e+05 131331.89 1.313319e+04 14637.115 1868.75 10 1.313319e+04 131331.89 1.004308e+06 1.004308e+06 0.00 NULL
2024 Department Of Buildings Inspector Plumbing 74882.59722 5.391547e+06 164462.53 2.284202e+03 119.815 2552.07 72 1.198150e+02 8626.68 5.556010e+06 5.400174e+06 155835.85 NULL
2024 Department Of Buildings Investigator 55931.35000 2.237254e+06 47543.11 1.188578e+03 0.000 1829.25 40 0.000000e+00 0.00 2.284797e+06 2.237254e+06 47543.11 NULL
2024 Department Of Buildings It Security Specialist 113869.00000 2.277380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.277380e+05 2.277380e+05 0.00 NULL
2024 Department Of Buildings Labor Relations Analyst 85621.00000 8.562100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.562100e+04 8.562100e+04 0.00 NULL
2024 Department Of Buildings Management Auditor 81646.00000 8.164600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.164600e+04 8.164600e+04 0.00 NULL
2024 Department Of Buildings Mechanical Engineer 112391.50000 4.495660e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.495660e+05 4.495660e+05 0.00 NULL
2024 Department Of Buildings Multiple Dwelling Specialist 82335.00000 8.233500e+04 309.51 3.095100e+02 309.510 0.00 1 3.095100e+02 309.51 8.264451e+04 8.264451e+04 0.00 NULL
2024 Department Of Buildings New York City Public Service Fellow 54500.00000 5.450000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.450000e+04 5.450000e+04 0.00 NULL
2024 Department Of Buildings Paralegal Aide 53133.18182 5.844650e+05 695.68 6.324364e+01 0.000 26.25 11 0.000000e+00 0.00 5.851607e+05 5.844650e+05 695.68 NULL
2024 Department Of Buildings Plan Examiner 99621.25000 2.390910e+06 63471.71 2.644655e+03 375.425 968.50 24 3.754250e+02 9010.20 2.454382e+06 2.399920e+06 54461.51 NULL
2024 Department Of Buildings Principal Administrative Associate - Non Supvr 69645.17649 6.755582e+06 207277.65 2.136883e+03 4.860 3796.00 97 4.860000e+00 471.42 6.962860e+06 6.756054e+06 206806.23 NULL
2024 Department Of Buildings Principal Multiple Dwelling Specialist 104853.66667 3.145610e+05 8628.38 2.876127e+03 83.520 80.75 3 8.352000e+01 250.56 3.231894e+05 3.148116e+05 8377.82 NULL
2024 Department Of Buildings Procurement Analyst 78656.00000 3.932800e+05 6144.87 1.228974e+03 1.960 116.50 5 1.960000e+00 9.80 3.994249e+05 3.932898e+05 6135.07 NULL
2024 Department Of Buildings Public Records Officer 48180.00000 4.818000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.818000e+04 4.818000e+04 0.00 NULL
2024 Department Of Buildings Risk Management Officer 130631.00000 2.612620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.612620e+05 2.612620e+05 0.00 NULL
2024 Department Of Buildings Safety Specialist 58333.00000 5.833300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.833300e+04 5.833300e+04 0.00 NULL
2024 Department Of Buildings Secretary 51121.50000 2.044860e+05 3467.21 8.668025e+02 787.470 95.00 4 7.874700e+02 3149.88 2.079532e+05 2.076359e+05 317.33 NULL
2024 Department Of Buildings Secretary To Department 182656.00000 1.826560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.826560e+05 1.826560e+05 0.00 NULL
2024 Department Of Buildings Senior Policy Advisor 118960.00000 1.189600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.189600e+05 1.189600e+05 0.00 NULL
2024 Department Of Buildings Space Analyst 85719.50000 1.714390e+05 2057.00 1.028500e+03 1028.500 33.00 2 1.028500e+03 2057.00 1.734960e+05 1.734960e+05 0.00 NULL
2024 Department Of Buildings Staff Analyst 77788.33333 1.866920e+06 64.33 2.680417e+00 0.000 0.00 24 0.000000e+00 0.00 1.866984e+06 1.866920e+06 64.33 NULL
2024 Department Of Buildings Stock Worker 40215.00000 4.021500e+04 3075.62 3.075620e+03 3075.620 120.50 1 3.075620e+03 3075.62 4.329062e+04 4.329062e+04 0.00 NULL
2024 Department Of Buildings Strategic Initiative Specialist 147003.28571 1.029023e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.029023e+06 1.029023e+06 0.00 NULL
2024 Department Of Buildings Summer College Intern 3820.37167 1.948390e+05 0.00 0.000000e+00 0.000 0.00 51 0.000000e+00 0.00 1.948390e+05 1.948390e+05 0.00 NULL
2024 Department Of Buildings Summer Graduate Intern 4712.00950 2.356005e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.356005e+04 2.356005e+04 0.00 NULL
2024 Department Of Business Serv. Adm Manager-Non-Mgrl 104756.29412 1.780857e+06 3630.01 2.135300e+02 0.000 56.75 17 0.000000e+00 0.00 1.784487e+06 1.780857e+06 3630.01 NULL
2024 Department Of Business Serv. Admin Community Relations Specialist 78283.47200 3.914174e+05 1010.90 2.021800e+02 0.000 14.25 5 0.000000e+00 0.00 3.924283e+05 3.914174e+05 1010.90 NULL
2024 Department Of Business Serv. Admin Contract Specialist 146125.00000 1.461250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.461250e+05 1.461250e+05 0.00 NULL
2024 Department Of Business Serv. Administrative Architect 196646.00000 1.966460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.966460e+05 1.966460e+05 0.00 NULL
2024 Department Of Business Serv. Administrative Business Promotion Coordinator 126436.81081 4.678162e+06 -63.89 -1.726757e+00 0.000 0.00 37 -1.726757e+00 -63.89 4.678098e+06 4.678098e+06 0.00 NULL
2024 Department Of Business Serv. Administrative City Planner 92700.00000 9.270000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.270000e+04 9.270000e+04 0.00 NULL
2024 Department Of Business Serv. Administrative Contract Specialist 107116.66667 3.213500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.213500e+05 3.213500e+05 0.00 NULL
2024 Department Of Business Serv. Administrative Management Auditor 109320.50000 2.186410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.186410e+05 2.186410e+05 0.00 NULL
2024 Department Of Business Serv. Administrative Manager 140000.00000 1.400000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.400000e+05 1.400000e+05 0.00 NULL
2024 Department Of Business Serv. Administrative Procurement Analyst 137737.00000 1.377370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.377370e+05 1.377370e+05 0.00 NULL
2024 Department Of Business Serv. Administrative Procurement Analyst-Non-Mgrl 113300.00000 1.133000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133000e+05 1.133000e+05 0.00 NULL
2024 Department Of Business Serv. Administrative Project Manager 104591.00000 1.045910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.045910e+05 1.045910e+05 0.00 NULL
2024 Department Of Business Serv. Administrative Public Information Specialist 153294.00000 1.532940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.532940e+05 1.532940e+05 0.00 NULL
2024 Department Of Business Serv. Administrative Space Analyst 136490.00000 1.364900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.364900e+05 1.364900e+05 0.00 NULL
2024 Department Of Business Serv. Administrative Staff Analyst 142146.00000 8.528760e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.528760e+05 8.528760e+05 0.00 NULL
2024 Department Of Business Serv. Agency Attorney 90765.00000 2.722950e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.722950e+05 2.722950e+05 0.00 NULL
2024 Department Of Business Serv. Agency Chief Contracting Officer 175422.00000 1.754220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.754220e+05 1.754220e+05 0.00 NULL
2024 Department Of Business Serv. Assistant Commissioner 147213.50000 8.832810e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.832810e+05 8.832810e+05 0.00 NULL
2024 Department Of Business Serv. Associate Contract Specialist 90043.50000 3.601740e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.601740e+05 3.601740e+05 0.00 NULL
2024 Department Of Business Serv. Associate Staff Analyst 90100.00000 3.604000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.604000e+05 3.604000e+05 0.00 NULL
2024 Department Of Business Serv. Business Promotion Coordinator 90217.28571 1.894563e+06 13978.36 6.656362e+02 0.000 222.50 21 0.000000e+00 0.00 1.908541e+06 1.894563e+06 13978.36 NULL
2024 Department Of Business Serv. Certified It Developer 120488.80000 6.024440e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.024440e+05 6.024440e+05 0.00 NULL
2024 Department Of Business Serv. City Planner 94336.50000 1.886730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.886730e+05 1.886730e+05 0.00 NULL
2024 Department Of Business Serv. City Research Scientist 107547.00000 1.075470e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.075470e+06 1.075470e+06 0.00 NULL
2024 Department Of Business Serv. Clerical Associate 61248.33333 1.837450e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.837450e+05 1.837450e+05 0.00 NULL
2024 Department Of Business Serv. College Aide 8178.14750 2.453444e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.453444e+04 2.453444e+04 0.00 NULL
2024 Department Of Business Serv. Commissioner 236735.00000 2.367350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.367350e+05 2.367350e+05 0.00 NULL
2024 Department Of Business Serv. Commissioner Of Business Services 260042.00000 2.600420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.600420e+05 2.600420e+05 0.00 NULL
2024 Department Of Business Serv. Community Associate 60177.24161 8.424814e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 8.424814e+05 8.424814e+05 0.00 NULL
2024 Department Of Business Serv. Community Coordinator 69958.93280 8.814826e+06 65738.50 5.217341e+02 0.000 1266.50 126 0.000000e+00 0.00 8.880564e+06 8.814826e+06 65738.50 NULL
2024 Department Of Business Serv. Computer Associate 88646.33333 2.659390e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.659390e+05 2.659390e+05 0.00 NULL
2024 Department Of Business Serv. Computer Operations Manager 92965.00000 9.296500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.296500e+04 9.296500e+04 0.00 NULL
2024 Department Of Business Serv. Computer Service Technician 67874.00000 6.787400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.787400e+04 6.787400e+04 0.00 NULL
2024 Department Of Business Serv. Computer Specialist 111095.00000 1.110950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.110950e+05 1.110950e+05 0.00 NULL
2024 Department Of Business Serv. Computer Systems Manager 144550.00000 8.673000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.673000e+05 8.673000e+05 0.00 NULL
2024 Department Of Business Serv. Contract Reviewer 74183.17241 2.151312e+06 10.08 3.475862e-01 0.000 0.00 29 0.000000e+00 0.00 2.151322e+06 2.151312e+06 10.08 NULL
2024 Department Of Business Serv. Customer Information Representative Ma L 1549 64191.00000 6.419100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.419100e+04 6.419100e+04 0.00 NULL
2024 Department Of Business Serv. Cyber Security Analyst 90695.71429 6.348700e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.348700e+05 6.348700e+05 0.00 NULL
2024 Department Of Business Serv. Deputy Commissioner 197213.66667 1.183282e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.183282e+06 1.183282e+06 0.00 NULL
2024 Department Of Business Serv. Deputy Director 117585.00000 1.175850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.175850e+05 1.175850e+05 0.00 NULL
2024 Department Of Business Serv. Executive Agency Counsel 154161.50000 6.166460e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.166460e+05 6.166460e+05 0.00 NULL
2024 Department Of Business Serv. Executive Assistant To The Commissioner 159309.00000 3.186180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.186180e+05 3.186180e+05 0.00 NULL
2024 Department Of Business Serv. Executive Director 146345.00000 1.463450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.463450e+05 1.463450e+05 0.00 NULL
2024 Department Of Business Serv. Executive Program Specialist 143593.85714 1.005157e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.005157e+06 1.005157e+06 0.00 NULL
2024 Department Of Business Serv. General Counsel 220627.00000 2.206270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.206270e+05 2.206270e+05 0.00 NULL
2024 Department Of Business Serv. Graphic Artist 85309.00000 1.706180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.706180e+05 1.706180e+05 0.00 NULL
2024 Department Of Business Serv. Management Auditor 97957.00000 9.795700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.795700e+04 9.795700e+04 0.00 NULL
2024 Department Of Business Serv. New York City Public Service Fellow 41228.91795 8.245784e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.245784e+04 8.245784e+04 0.00 NULL
2024 Department Of Business Serv. Principal Administrative Associate - Non Supvr 77059.81818 8.476580e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 8.476580e+05 8.476580e+05 0.00 NULL
2024 Department Of Business Serv. Procurement Analyst 84339.60000 4.216980e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.216980e+05 4.216980e+05 0.00 NULL
2024 Department Of Business Serv. Project Manager 112379.76923 1.460937e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.460937e+06 1.460937e+06 0.00 NULL
2024 Department Of Business Serv. Secretary Of Department 64992.00000 6.499200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.499200e+04 6.499200e+04 0.00 NULL
2024 Department Of Business Serv. Space Analyst 96187.00000 9.618700e+04 212.30 2.123000e+02 212.300 4.00 1 2.123000e+02 212.30 9.639930e+04 9.639930e+04 0.00 NULL
2024 Department Of Business Serv. Special Assistant- Cannabis Nyc 125367.00000 1.253670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.253670e+05 1.253670e+05 0.00 NULL
2024 Department Of Business Serv. Staff Analyst 81934.60000 4.096730e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.096730e+05 4.096730e+05 0.00 NULL
2024 Department Of Business Serv. Telecommunications Associate 82597.00000 8.259700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.259700e+04 8.259700e+04 0.00 NULL
2024 Department Of City Planning *Certified Local Area Network Administrator 145473.00000 1.454730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.454730e+05 1.454730e+05 0.00 NULL
2024 Department Of City Planning Accountant 80000.00000 8.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.000000e+04 8.000000e+04 0.00 NULL
2024 Department Of City Planning Adm Manager-Non-Mgrl 84684.85714 5.927940e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.927940e+05 5.927940e+05 0.00 NULL
2024 Department Of City Planning Admin Community Relations Specialist 116739.50000 2.334790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.334790e+05 2.334790e+05 0.00 NULL
2024 Department Of City Planning Administrative Accountant 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2024 Department Of City Planning Administrative City Planner 144367.11429 5.052849e+06 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 5.052849e+06 5.052849e+06 0.00 NULL
2024 Department Of City Planning Administrative Community Relations Specialist 131127.00000 1.311270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.311270e+05 1.311270e+05 0.00 NULL
2024 Department Of City Planning Administrative Contract Specialist 116699.00000 1.166990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.166990e+05 1.166990e+05 0.00 NULL
2024 Department Of City Planning Administrative Staff Analyst 150810.42857 1.055673e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.055673e+06 1.055673e+06 0.00 NULL
2024 Department Of City Planning Agency Attorney 104282.66667 6.256960e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.256960e+05 6.256960e+05 0.00 NULL
2024 Department Of City Planning Assistant Urban Designer 75680.00000 7.568000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.568000e+04 7.568000e+04 0.00 NULL
2024 Department Of City Planning Associate Staff Analyst 101195.00000 1.011950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.011950e+05 1.011950e+05 0.00 NULL
2024 Department Of City Planning Associate Urban Designer 89039.00000 8.903900e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 8.903900e+05 8.903900e+05 0.00 NULL
2024 Department Of City Planning Bookbinder 64898.00000 6.489800e+04 9.76 9.760000e+00 9.760 0.00 1 9.760000e+00 9.76 6.490776e+04 6.490776e+04 0.00 NULL
2024 Department Of City Planning Certified It Administrator 110833.50000 2.216670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.216670e+05 2.216670e+05 0.00 NULL
2024 Department Of City Planning Chairman 277605.00000 2.776050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.776050e+05 2.776050e+05 0.00 NULL
2024 Department Of City Planning City Planner 92828.17822 9.375646e+06 0.00 0.000000e+00 0.000 0.00 101 0.000000e+00 0.00 9.375646e+06 9.375646e+06 0.00 NULL
2024 Department Of City Planning City Research Scientist 89965.77358 4.768186e+06 0.00 0.000000e+00 0.000 0.00 53 0.000000e+00 0.00 4.768186e+06 4.768186e+06 0.00 NULL
2024 Department Of City Planning Clerical Associate 57826.52812 2.313061e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.313061e+05 2.313061e+05 0.00 NULL
2024 Department Of City Planning Commissioner 71552.18182 7.870740e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 7.870740e+05 7.870740e+05 0.00 NULL
2024 Department Of City Planning Commissioner Designated As Vice Chairman 83125.00000 8.312500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.312500e+04 8.312500e+04 0.00 NULL
2024 Department Of City Planning Community Associate 69253.00000 6.925300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.925300e+04 6.925300e+04 0.00 NULL
2024 Department Of City Planning Community Coordinator 73311.93750 3.518973e+06 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 3.518973e+06 3.518973e+06 0.00 NULL
2024 Department Of City Planning Computer Aide-Non-Spvr 74211.00000 7.421100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.421100e+04 7.421100e+04 0.00 NULL
2024 Department Of City Planning Computer Associate 79547.02667 2.386411e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.386411e+05 2.386411e+05 0.00 NULL
2024 Department Of City Planning Computer Operations Manager 149123.50000 2.982470e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.982470e+05 2.982470e+05 0.00 NULL
2024 Department Of City Planning Computer Service Technician 72397.00000 7.239700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.239700e+04 7.239700e+04 0.00 NULL
2024 Department Of City Planning Computer Specialist 121578.75000 9.726300e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.726300e+05 9.726300e+05 0.00 NULL
2024 Department Of City Planning Computer Systems Manager 149286.40000 7.464320e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.464320e+05 7.464320e+05 0.00 NULL
2024 Department Of City Planning Contract Specialist 88782.00000 8.878200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.878200e+04 8.878200e+04 0.00 NULL
2024 Department Of City Planning Counsel 238810.00000 2.388100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.388100e+05 2.388100e+05 0.00 NULL
2024 Department Of City Planning Customer Information Representative Ma L 1549 68533.00000 6.853300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.853300e+04 6.853300e+04 0.00 NULL
2024 Department Of City Planning Director Of Mortgage Research And Analysis 145705.00000 2.914100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.914100e+05 2.914100e+05 0.00 NULL
2024 Department Of City Planning Director Of Public Information 157554.50000 3.151090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.151090e+05 3.151090e+05 0.00 NULL
2024 Department Of City Planning Economist 80281.00000 7.225290e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.225290e+05 7.225290e+05 0.00 NULL
2024 Department Of City Planning Executive Agency Counsel 151555.33333 4.546660e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.546660e+05 4.546660e+05 0.00 NULL
2024 Department Of City Planning Executive Assistant For Planning 195995.00000 1.959950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.959950e+05 1.959950e+05 0.00 NULL
2024 Department Of City Planning Executive Assistant To The Chairman 74263.00000 1.485260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.485260e+05 1.485260e+05 0.00 NULL
2024 Department Of City Planning Executive Director 248752.00000 2.487520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.487520e+05 2.487520e+05 0.00 NULL
2024 Department Of City Planning Management Auditor 83947.00000 8.394700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.394700e+04 8.394700e+04 0.00 NULL
2024 Department Of City Planning Motor Vehicle Supervisor 70061.00000 7.006100e+04 37335.08 3.733508e+04 37335.080 731.50 1 3.733508e+04 37335.08 1.073961e+05 1.073961e+05 0.00 NULL
2024 Department Of City Planning New York City Public Service Fellow 47415.00000 4.741500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.741500e+04 4.741500e+04 0.00 NULL
2024 Department Of City Planning New York City Urban Planning And Design Fellow 45308.81071 3.171617e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.171617e+05 3.171617e+05 0.00 NULL
2024 Department Of City Planning Principal Administrative Associate - Non Supvr 75989.54545 8.358850e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 8.358850e+05 8.358850e+05 0.00 NULL
2024 Department Of City Planning Principal Planning Consultant 126236.80000 6.311840e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.311840e+05 6.311840e+05 0.00 NULL
2024 Department Of City Planning Procurement Analyst 97483.50000 1.949670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.949670e+05 1.949670e+05 0.00 NULL
2024 Department Of City Planning Secretary 65523.00000 6.552300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.552300e+04 6.552300e+04 0.00 NULL
2024 Department Of City Planning Secretary To The Chairman 98345.00000 9.834500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.834500e+04 9.834500e+04 0.00 NULL
2024 Department Of City Planning Staff Analyst 78764.00000 3.938200e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.938200e+05 3.938200e+05 0.00 NULL
2024 Department Of City Planning Summer College Intern 3411.75000 1.194112e+05 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 1.194112e+05 1.194112e+05 0.00 NULL
2024 Department Of City Planning Telecommunication Manager 129816.00000 1.298160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.298160e+05 1.298160e+05 0.00 NULL
2024 Department Of City Planning Telecommunications Associate 87716.00000 8.771600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.771600e+04 8.771600e+04 0.00 NULL
2024 Department Of City Planning Telecommunications Manager 92791.40000 4.639570e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.639570e+05 4.639570e+05 0.00 NULL
2024 Department Of City Planning Transportation Specialist 117932.00000 2.358640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.358640e+05 2.358640e+05 0.00 NULL
2024 Department Of Correction *Cook 43069.12000 4.306912e+06 176000.69 1.760007e+03 494.530 4793.25 100 4.945300e+02 49453.00 4.482913e+06 4.356365e+06 126547.69 NULL
2024 Department Of Correction *Senior Cook 47173.76000 1.179344e+06 95277.19 3.811088e+03 3168.390 2289.00 25 3.168390e+03 79209.75 1.274621e+06 1.258554e+06 16067.44 NULL
2024 Department Of Correction Accountant 78786.00000 7.878600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.878600e+04 7.878600e+04 0.00 NULL
2024 Department Of Correction Adm Manager-Non-Mgrl 89876.69048 3.774821e+06 167849.18 3.996409e+03 0.000 2766.50 42 0.000000e+00 0.00 3.942670e+06 3.774821e+06 167849.18 NULL
2024 Department Of Correction Admin Community Relations Specialist 113539.00000 5.676950e+05 18.18 3.636000e+00 0.000 0.00 5 0.000000e+00 0.00 5.677132e+05 5.676950e+05 18.18 NULL
2024 Department Of Correction Admin Construction Project Manager 132167.00000 1.321670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.321670e+05 1.321670e+05 0.00 NULL
2024 Department Of Correction Administrative Architect 148088.00000 2.961760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.961760e+05 2.961760e+05 0.00 NULL
2024 Department Of Correction Administrative Business Promotion Coordinator 148500.33333 4.455010e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.455010e+05 4.455010e+05 0.00 NULL
2024 Department Of Correction Administrative Construction Project Manager 140346.66667 4.210400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.210400e+05 4.210400e+05 0.00 NULL
2024 Department Of Correction Administrative Contract Specialist 111443.00000 1.114430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.114430e+05 1.114430e+05 0.00 NULL
2024 Department Of Correction Administrative Director Of Social Services 118893.64286 1.664511e+06 113.80 8.128571e+00 0.000 0.00 14 0.000000e+00 0.00 1.664625e+06 1.664511e+06 113.80 NULL
2024 Department Of Correction Administrative Graphic Artist 114883.00000 1.148830e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.148830e+05 1.148830e+05 0.00 NULL
2024 Department Of Correction Administrative Investigator 118270.42857 8.278930e+05 11304.05 1.614864e+03 0.000 208.50 7 0.000000e+00 0.00 8.391971e+05 8.278930e+05 11304.05 NULL
2024 Department Of Correction Administrative Management Auditor 120232.00000 1.202320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.202320e+05 1.202320e+05 0.00 NULL
2024 Department Of Correction Administrative Manager 188845.00000 3.776900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.776900e+05 3.776900e+05 0.00 NULL
2024 Department Of Correction Administrative Procurement Analyst-Non-Mgrl 106282.14286 7.439750e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.439750e+05 7.439750e+05 0.00 NULL
2024 Department Of Correction Administrative Project Manager 135597.83333 8.135870e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.135870e+05 8.135870e+05 0.00 NULL
2024 Department Of Correction Administrative Public Health Sanitarian 156330.66667 4.689920e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.689920e+05 4.689920e+05 0.00 NULL
2024 Department Of Correction Administrative Public Information Specialist 173184.50000 3.463690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.463690e+05 3.463690e+05 0.00 NULL
2024 Department Of Correction Administrative Public Information Specialist Nm Former M1/M2 111957.75000 4.478310e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.478310e+05 4.478310e+05 0.00 NULL
2024 Department Of Correction Administrative Public Records Officer 119053.50000 2.381070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.381070e+05 2.381070e+05 0.00 NULL
2024 Department Of Correction Administrative Staff Analyst 126795.23214 7.100533e+06 3170.53 5.661661e+01 0.000 33.50 56 0.000000e+00 0.00 7.103704e+06 7.100533e+06 3170.53 NULL
2024 Department Of Correction Administrative Supervisor Of Building Maintenance 200713.00000 2.007130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.007130e+05 2.007130e+05 0.00 NULL
2024 Department Of Correction Agency Attorney 108534.36000 8.140077e+06 1359.33 1.812440e+01 0.000 25.00 75 0.000000e+00 0.00 8.141436e+06 8.140077e+06 1359.33 NULL
2024 Department Of Correction Agency Attorney Interne 75299.50000 3.011980e+05 10.40 2.600000e+00 0.000 0.00 4 0.000000e+00 0.00 3.012084e+05 3.011980e+05 10.40 NULL
2024 Department Of Correction Agency Chief Contracting Officer 177528.50000 3.550570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.550570e+05 3.550570e+05 0.00 NULL
2024 Department Of Correction Architect 127246.00000 1.272460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.272460e+05 1.272460e+05 0.00 NULL
2024 Department Of Correction Asbestos Handler Supervisor 89964.50000 1.799290e+05 3034.53 1.517265e+03 1517.265 48.25 2 1.517265e+03 3034.53 1.829635e+05 1.829635e+05 0.00 NULL
2024 Department Of Correction Assistant Commissioner 165341.42857 3.472170e+06 7974.85 3.797548e+02 0.000 92.75 21 0.000000e+00 0.00 3.480145e+06 3.472170e+06 7974.85 NULL
2024 Department Of Correction Associate Commissioner 217811.42857 1.524680e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.524680e+06 1.524680e+06 0.00 NULL
2024 Department Of Correction Associate Correctional Counselor 73249.08929 4.101949e+06 2814.72 5.026286e+01 0.000 51.75 56 0.000000e+00 0.00 4.104764e+06 4.101949e+06 2814.72 NULL
2024 Department Of Correction Associate Investigator 75746.78000 7.574678e+05 16720.47 1.672047e+03 26.455 334.75 10 2.645500e+01 264.55 7.741883e+05 7.577323e+05 16455.92 NULL
2024 Department Of Correction Associate Project Manager 99316.66667 2.979500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.979500e+05 2.979500e+05 0.00 NULL
2024 Department Of Correction Associate Public Health Sanitarian 87133.25000 3.485330e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.485330e+05 3.485330e+05 0.00 NULL
2024 Department Of Correction Associate Staff Analyst 97360.93333 1.460414e+06 2807.08 1.871387e+02 0.000 18.00 15 0.000000e+00 0.00 1.463221e+06 1.460414e+06 2807.08 NULL
2024 Department Of Correction Auto Body Worker 70085.00000 1.401700e+05 59833.44 2.991672e+04 29916.720 1107.00 2 2.991672e+04 59833.44 2.000034e+05 2.000034e+05 0.00 NULL
2024 Department Of Correction Auto Mechanic NA NA 447524.20 1.790097e+04 9511.390 6411.50 25 9.511390e+03 237784.75 NA NA NA NULL
2024 Department Of Correction Automotive Service Worker 41738.70000 4.173870e+05 10763.44 1.076344e+03 38.190 295.00 10 3.819000e+01 381.90 4.281504e+05 4.177689e+05 10381.54 NULL
2024 Department Of Correction Bookkeeper 60445.00000 6.044500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.044500e+04 6.044500e+04 0.00 NULL
2024 Department Of Correction Bricklayer NA NA 451585.88 5.017621e+04 35887.190 4968.75 9 3.588719e+04 322984.71 NA NA NA NULL
2024 Department Of Correction Captain 122442.57012 8.032233e+07 41180759.76 6.277555e+04 56744.815 425897.91 656 5.674482e+04 37224598.64 1.215031e+08 1.175469e+08 3956161.12 NULL
2024 Department Of Correction Carpenter NA NA 1208076.81 8.053845e+04 84472.520 13396.75 15 8.053845e+04 1208076.81 NA NA NA NULL
2024 Department Of Correction Case Management Nurse 103299.50000 4.131980e+05 4352.29 1.088072e+03 891.980 57.25 4 8.919800e+02 3567.92 4.175503e+05 4.167659e+05 784.37 NULL
2024 Department Of Correction Cashier 48585.85185 1.311818e+06 291434.73 1.079388e+04 2973.820 7470.25 27 2.973820e+03 80293.14 1.603253e+06 1.392111e+06 211141.59 NULL
2024 Department Of Correction Cement Mason NA NA 78570.34 7.857034e+04 78570.340 642.50 1 7.857034e+04 78570.34 NA NA NA NULL
2024 Department Of Correction Certified It Administrator 124739.75000 9.979180e+05 10738.78 1.342348e+03 759.710 127.50 8 7.597100e+02 6077.68 1.008657e+06 1.003996e+06 4661.10 NULL
2024 Department Of Correction Certified It Developer 121415.50000 4.856620e+05 181.72 4.543000e+01 0.000 0.00 4 0.000000e+00 0.00 4.858437e+05 4.856620e+05 181.72 NULL
2024 Department Of Correction Chaplain 50537.70242 9.602163e+05 3953.95 2.081026e+02 71.450 98.25 19 7.145000e+01 1357.55 9.641703e+05 9.615739e+05 2596.40 NULL
2024 Department Of Correction Chief Information Technology Officer 231750.00000 2.317500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.317500e+05 2.317500e+05 0.00 NULL
2024 Department Of Correction Chief Of Staff 234667.66667 7.040030e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.040030e+05 7.040030e+05 0.00 NULL
2024 Department Of Correction City Laborer NA NA 181246.47 2.589235e+04 23913.470 3218.00 7 2.391347e+04 167394.29 NA NA NA NULL
2024 Department Of Correction City Medical Director 221450.00000 2.214500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.214500e+05 2.214500e+05 0.00 NULL
2024 Department Of Correction City Medical Specialist 135398.93828 1.760186e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.760186e+06 1.760186e+06 0.00 NULL
2024 Department Of Correction City Research Scientist 103128.41380 3.506366e+06 2950.35 8.677500e+01 0.000 62.00 34 0.000000e+00 0.00 3.509316e+06 3.506366e+06 2950.35 NULL
2024 Department Of Correction Civil Engineer 104598.00000 1.045980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.045980e+05 1.045980e+05 0.00 NULL
2024 Department Of Correction Clerical Associate 47798.11080 2.198713e+06 307192.23 6.678092e+03 2966.360 8405.50 46 2.966360e+03 136452.56 2.505905e+06 2.335166e+06 170739.67 NULL
2024 Department Of Correction College Aide 2092.11000 5.230275e+04 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 5.230275e+04 5.230275e+04 0.00 NULL
2024 Department Of Correction Commissary Manager 43007.50000 8.601500e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.601500e+04 8.601500e+04 0.00 NULL
2024 Department Of Correction Commissioner 262017.00000 7.860510e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.860510e+05 7.860510e+05 0.00 NULL
2024 Department Of Correction Community Assistant 47486.00000 4.748600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.748600e+04 4.748600e+04 0.00 NULL
2024 Department Of Correction Community Associate 47043.28571 3.293030e+05 18130.99 2.590141e+03 0.000 487.00 7 0.000000e+00 0.00 3.474340e+05 3.293030e+05 18130.99 NULL
2024 Department Of Correction Community Coordinator 69519.79892 9.315653e+06 533028.83 3.977827e+03 0.000 10468.75 134 0.000000e+00 0.00 9.848682e+06 9.315653e+06 533028.83 NULL
2024 Department Of Correction Computer Aide-Non-Spvr 59173.50000 1.183470e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.183470e+05 1.183470e+05 0.00 NULL
2024 Department Of Correction Computer Associate 86370.50000 8.637050e+05 10691.65 1.069165e+03 0.000 202.50 10 0.000000e+00 0.00 8.743967e+05 8.637050e+05 10691.65 NULL
2024 Department Of Correction Computer Operations Manager 177976.00000 7.119040e+05 1699.64 4.249100e+02 0.000 21.50 4 0.000000e+00 0.00 7.136036e+05 7.119040e+05 1699.64 NULL
2024 Department Of Correction Computer Specialist 112665.84615 1.464656e+06 7992.30 6.147923e+02 0.000 113.50 13 0.000000e+00 0.00 1.472648e+06 1.464656e+06 7992.30 NULL
2024 Department Of Correction Computer Systems Manager 140018.57143 2.940390e+06 9321.71 4.438910e+02 0.000 127.50 21 0.000000e+00 0.00 2.949712e+06 2.940390e+06 9321.71 NULL
2024 Department Of Correction Confidential Agency Investigator 119654.66667 3.948604e+06 17128.11 5.190336e+02 0.000 367.75 33 0.000000e+00 0.00 3.965732e+06 3.948604e+06 17128.11 NULL
2024 Department Of Correction Construction Project Manager 113648.00000 1.136480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.136480e+05 1.136480e+05 0.00 NULL
2024 Department Of Correction Correction Administrative Aide 28685.47933 8.605644e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 8.605644e+04 8.605644e+04 0.00 NULL
2024 Department Of Correction Correction Officer 96385.34134 5.862156e+08 207359942.68 3.409404e+04 30410.750 2969783.91 6082 3.041075e+04 184958181.50 7.935756e+08 7.711738e+08 22401761.18 NULL
2024 Department Of Correction Correctional Standards Review Specialist 80562.94737 3.061392e+06 100026.14 2.632267e+03 416.285 1977.75 38 4.162850e+02 15818.83 3.161418e+06 3.077211e+06 84207.31 NULL
2024 Department Of Correction Deputy Commissioner 230578.33333 4.150410e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 4.150410e+06 4.150410e+06 0.00 NULL
2024 Department Of Correction Dietary Aide 40286.83333 2.417210e+05 18138.12 3.023020e+03 1353.360 597.75 6 1.353360e+03 8120.16 2.598591e+05 2.498412e+05 10017.96 NULL
2024 Department Of Correction Dietitian 64936.00000 3.246800e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.246800e+05 3.246800e+05 0.00 NULL
2024 Department Of Correction Director Of Correctional Standards Review 129550.52778 4.663819e+06 38.79 1.077500e+00 0.000 0.00 36 0.000000e+00 0.00 4.663858e+06 4.663819e+06 38.79 NULL
2024 Department Of Correction Director Of Public Affairs 127461.00000 1.274610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.274610e+05 1.274610e+05 0.00 NULL
2024 Department Of Correction Director, Energy Management Strategy 157217.00000 1.572170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.572170e+05 1.572170e+05 0.00 NULL
2024 Department Of Correction Electrician NA NA 2291363.28 6.364898e+04 58358.400 23352.50 36 5.835840e+04 2100902.40 NA NA NA NULL
2024 Department Of Correction Electricians Helper NA NA 853053.23 4.062158e+04 33179.420 13672.00 21 3.317942e+04 696767.82 NA NA NA NULL
2024 Department Of Correction Executive Agency Counsel 169966.10714 4.759051e+06 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 4.759051e+06 4.759051e+06 0.00 NULL
2024 Department Of Correction Executive Assistant To The Commissioner 221660.00000 2.216600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.216600e+05 2.216600e+05 0.00 NULL
2024 Department Of Correction Executive Director Of Food Services 163224.00000 1.632240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.632240e+05 1.632240e+05 0.00 NULL
2024 Department Of Correction Executive Program Specialist 134789.25000 5.391570e+05 2780.42 6.951050e+02 0.000 44.50 4 0.000000e+00 0.00 5.419374e+05 5.391570e+05 2780.42 NULL
2024 Department Of Correction Facility Supervisor 211720.33333 1.270322e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.270322e+06 1.270322e+06 0.00 NULL
2024 Department Of Correction Film Manager 75884.00000 7.588400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.588400e+04 7.588400e+04 0.00 NULL
2024 Department Of Correction First Deputy Commissioner 243728.00000 4.874560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.874560e+05 4.874560e+05 0.00 NULL
2024 Department Of Correction Fitness Instructor 23450.92000 9.380368e+04 1160.07 2.900175e+02 286.565 42.00 4 2.865650e+02 1146.26 9.496375e+04 9.494994e+04 13.81 NULL
2024 Department Of Correction Food Service Administrator 90797.75000 3.631910e+05 1758.01 4.395025e+02 426.925 33.75 4 4.269250e+02 1707.70 3.649490e+05 3.648987e+05 50.31 NULL
2024 Department Of Correction Food Service Manager 67048.50000 6.704850e+05 13449.69 1.344969e+03 722.780 323.75 10 7.227800e+02 7227.80 6.839347e+05 6.777128e+05 6221.89 NULL
2024 Department Of Correction Fraud Investigator 75523.00000 7.552300e+04 39049.87 3.904987e+04 39049.870 637.75 1 3.904987e+04 39049.87 1.145729e+05 1.145729e+05 0.00 NULL
2024 Department Of Correction Graphic Artist 85867.50000 1.717350e+05 1296.74 6.483700e+02 648.370 33.50 2 6.483700e+02 1296.74 1.730317e+05 1.730317e+05 0.00 NULL
2024 Department Of Correction Health Services Manager Non Managerial Level I 120726.00000 1.207260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.207260e+05 1.207260e+05 0.00 NULL
2024 Department Of Correction High Pressure Plant Tender NA NA 482617.21 3.447266e+04 25824.620 8464.25 14 2.582462e+04 361544.68 NA NA NA NULL
2024 Department Of Correction Industrial Hygienist 67804.50000 1.356090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.356090e+05 1.356090e+05 0.00 NULL
2024 Department Of Correction Institutional Aide 42937.00000 6.011180e+05 156674.80 1.119106e+04 6388.890 5101.75 14 6.388890e+03 89444.46 7.577928e+05 6.905625e+05 67230.34 NULL
2024 Department Of Correction Investigator 67595.03798 7.705834e+06 858684.89 7.532324e+03 2640.945 17907.50 114 2.640945e+03 301067.73 8.564519e+06 8.006902e+06 557617.16 NULL
2024 Department Of Correction It Automation And Monitoring Engineer 78409.00000 1.568180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.568180e+05 1.568180e+05 0.00 NULL
2024 Department Of Correction It Infrastructure Engineer 125999.66667 3.779990e+05 4559.91 1.519970e+03 882.630 63.75 3 8.826300e+02 2647.89 3.825589e+05 3.806469e+05 1912.02 NULL
2024 Department Of Correction It Project Specialist 132613.00000 1.326130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.326130e+05 1.326130e+05 0.00 NULL
2024 Department Of Correction It Service Management Specialist 93157.00000 3.726280e+05 17913.61 4.478403e+03 0.000 227.00 4 0.000000e+00 0.00 3.905416e+05 3.726280e+05 17913.61 NULL
2024 Department Of Correction Legal Coordinator 62373.24242 2.058317e+06 290208.68 8.794202e+03 655.830 5917.52 33 6.558300e+02 21642.39 2.348526e+06 2.079959e+06 268566.29 NULL
2024 Department Of Correction Letterer And Sign Painter NA NA 30340.16 3.034016e+04 30340.160 612.00 1 3.034016e+04 30340.16 NA NA NA NULL
2024 Department Of Correction Licensed Barber 43477.16667 2.608630e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.608630e+05 2.608630e+05 0.00 NULL
2024 Department Of Correction Locksmith NA NA 188768.89 1.887689e+04 1403.355 4268.75 10 1.403355e+03 14033.55 NA NA NA NULL
2024 Department Of Correction Machinist NA NA 274820.87 6.870522e+04 62689.440 3574.50 4 6.268944e+04 250757.76 NA NA NA NULL
2024 Department Of Correction Maintenance Worker NA NA 665317.75 2.661271e+04 15131.410 12341.00 25 1.513141e+04 378285.25 NA NA NA NULL
2024 Department Of Correction Management Auditor 81473.60000 4.073680e+05 9447.60 1.889520e+03 0.000 213.25 5 0.000000e+00 0.00 4.168156e+05 4.073680e+05 9447.60 NULL
2024 Department Of Correction Marine Engineer 87235.84055 6.978867e+05 611468.92 7.643362e+04 40392.210 4338.00 8 4.039221e+04 323137.68 1.309356e+06 1.021024e+06 288331.24 NULL
2024 Department Of Correction Marine Oiler 148973.64300 1.489736e+05 90072.35 9.007235e+04 90072.350 1584.00 1 9.007235e+04 90072.35 2.390460e+05 2.390460e+05 0.00 NULL
2024 Department Of Correction Masons Helper NA NA 40136.60 4.013660e+04 40136.600 634.75 1 4.013660e+04 40136.60 NA NA NA NULL
2024 Department Of Correction Mate 68909.00000 6.890900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.890900e+04 6.890900e+04 0.00 NULL
2024 Department Of Correction Metal Work Mechanic 113684.00000 1.136840e+05 11704.59 1.170459e+04 11704.590 142.75 1 1.170459e+04 11704.59 1.253886e+05 1.253886e+05 0.00 NULL
2024 Department Of Correction Motor Vehicle Operator 54797.73333 1.643932e+06 534021.16 1.780071e+04 15224.590 13004.80 30 1.522459e+04 456737.70 2.177953e+06 2.100670e+06 77283.46 NULL
2024 Department Of Correction Motor Vehicle Supervisor 66251.00000 1.987530e+05 11581.71 3.860570e+03 1855.560 252.75 3 1.855560e+03 5566.68 2.103347e+05 2.043197e+05 6015.03 NULL
2024 Department Of Correction Office Machine Aide 46367.00000 4.636700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.636700e+04 4.636700e+04 0.00 NULL
2024 Department Of Correction Oiler NA NA 1997273.93 5.398038e+04 51662.950 18222.00 37 5.166295e+04 1911529.15 NA NA NA NULL
2024 Department Of Correction Painter NA NA 101378.42 2.534460e+04 26003.925 1374.25 4 2.534460e+04 101378.42 NA NA NA NULL
2024 Department Of Correction Paralegal Aide 53728.46000 5.372846e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.372846e+04 5.372846e+04 0.00 NULL
2024 Department Of Correction Plasterer NA NA 166785.40 8.339270e+04 83392.700 1582.25 2 8.339270e+04 166785.40 NA NA NA NULL
2024 Department Of Correction Plumber NA NA 1432660.64 4.940209e+04 38302.700 11655.00 29 3.830270e+04 1110778.30 NA NA NA NULL
2024 Department Of Correction Plumber’s Helper NA NA 887896.68 3.699569e+04 30619.625 10323.25 24 3.061962e+04 734871.00 NA NA NA NULL
2024 Department Of Correction Principal Administrative Associate - Non Supvr 70221.97486 5.477314e+06 352209.29 4.515504e+03 90.800 7172.50 78 9.080000e+01 7082.40 5.829523e+06 5.484396e+06 345126.89 NULL
2024 Department Of Correction Printing Press Operator NA NA 51159.86 5.115986e+04 51159.860 880.00 1 5.115986e+04 51159.86 NA NA NA NULL
2024 Department Of Correction Procurement Analyst 72780.73333 1.091711e+06 1789.00 1.192667e+02 0.000 45.75 15 0.000000e+00 0.00 1.093500e+06 1.091711e+06 1789.00 NULL
2024 Department Of Correction Program Specialist Correction 82633.88000 6.197541e+06 962030.21 1.282707e+04 4.190 15872.23 75 4.190000e+00 314.25 7.159571e+06 6.197855e+06 961715.96 NULL
2024 Department Of Correction Psychologist 121522.94773 4.860918e+05 22445.91 5.611477e+03 4863.305 256.25 4 4.863305e+03 19453.22 5.085377e+05 5.055450e+05 2992.69 NULL
2024 Department Of Correction Public Health Assistant 33663.10755 6.732622e+04 29051.36 1.452568e+04 14525.680 1135.50 2 1.452568e+04 29051.36 9.637758e+04 9.637758e+04 0.00 NULL
2024 Department Of Correction Public Health Sanitarian 68237.00000 3.411850e+05 1772.97 3.545940e+02 0.000 36.00 5 0.000000e+00 0.00 3.429580e+05 3.411850e+05 1772.97 NULL
2024 Department Of Correction Radio Repair Mechanic NA NA 28799.43 2.879943e+04 28799.430 364.50 1 2.879943e+04 28799.43 NA NA NA NULL
2024 Department Of Correction Recreation Director 52357.23077 6.806440e+05 6210.49 4.777300e+02 0.000 183.75 13 0.000000e+00 0.00 6.868545e+05 6.806440e+05 6210.49 NULL
2024 Department Of Correction Recreation Supervisor 66318.40000 3.315920e+05 1449.46 2.898920e+02 0.000 39.00 5 0.000000e+00 0.00 3.330415e+05 3.315920e+05 1449.46 NULL
2024 Department Of Correction Roofer NA NA 291659.59 3.645745e+04 39984.105 4092.50 8 3.645745e+04 291659.59 NA NA NA NULL
2024 Department Of Correction Rubber Tire Repairer NA NA 64.37 3.218500e+01 32.185 0.00 2 3.218500e+01 64.37 NA NA NA NULL
2024 Department Of Correction Secretary To The Commissioner Of Correction 116902.00000 1.169020e+05 32210.97 3.221097e+04 32210.970 395.00 1 3.221097e+04 32210.97 1.491130e+05 1.491130e+05 0.00 NULL
2024 Department Of Correction Senior Deputy Commissioner 234557.00000 2.345570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.345570e+05 2.345570e+05 0.00 NULL
2024 Department Of Correction Senior Institutional Trades Instructor 49350.00000 9.870000e+04 90005.34 4.500267e+04 45002.670 2285.25 2 4.500267e+04 90005.34 1.887053e+05 1.887053e+05 0.00 NULL
2024 Department Of Correction Senior It Architect 136499.00000 2.729980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.729980e+05 2.729980e+05 0.00 NULL
2024 Department Of Correction Senior Press Officer 102672.00000 1.026720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.026720e+05 1.026720e+05 0.00 NULL
2024 Department Of Correction Senior Stationary Engineer NA NA 1380328.36 1.150274e+05 120357.935 10382.25 12 1.150274e+05 1380328.36 NA NA NA NULL
2024 Department Of Correction Sheet Metal Worker NA NA 557415.45 5.574154e+04 55252.090 4181.25 10 5.525209e+04 552520.90 NA NA NA NULL
2024 Department Of Correction Social Worker 65873.25000 5.269860e+05 11499.39 1.437424e+03 0.000 284.25 8 0.000000e+00 0.00 5.384854e+05 5.269860e+05 11499.39 NULL
2024 Department Of Correction Staff Analyst 78757.03998 9.450845e+05 76078.86 6.339905e+03 0.000 1346.75 12 0.000000e+00 0.00 1.021163e+06 9.450845e+05 76078.86 NULL
2024 Department Of Correction Staff Nurse 101906.83333 6.114410e+05 18185.88 3.030980e+03 3316.140 246.00 6 3.030980e+03 18185.88 6.296269e+05 6.296269e+05 0.00 NULL
2024 Department Of Correction Stationary Engineer NA NA 2351419.49 8.708961e+04 107071.280 20287.00 27 8.708961e+04 2351419.49 NA NA NA NULL
2024 Department Of Correction Steam Fitter NA NA 751510.54 8.350117e+04 92803.500 6114.25 9 8.350117e+04 751510.54 NA NA NA NULL
2024 Department Of Correction Steam Fitter’s Helper NA NA 259641.97 6.491049e+04 71011.765 2817.25 4 6.491049e+04 259641.97 NA NA NA NULL
2024 Department Of Correction Stock Worker 41609.50000 2.496570e+05 12902.63 2.150438e+03 189.990 374.75 6 1.899900e+02 1139.94 2.625596e+05 2.507969e+05 11762.69 NULL
2024 Department Of Correction Summer College Intern 1997.53600 3.995072e+04 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 3.995072e+04 3.995072e+04 0.00 NULL
2024 Department Of Correction Summer Graduate Intern 3305.35714 4.627500e+04 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 4.627500e+04 4.627500e+04 0.00 NULL
2024 Department Of Correction Supervising Housekeeper 54934.00000 1.098680e+05 57435.48 2.871774e+04 28717.740 1394.25 2 2.871774e+04 57435.48 1.673035e+05 1.673035e+05 0.00 NULL
2024 Department Of Correction Supervisor Of Mechanics NA NA 1452980.24 8.072112e+04 82716.790 12831.75 18 8.072112e+04 1452980.24 NA NA NA NULL
2024 Department Of Correction Supervisor Of Stock Workers 50357.18750 8.057150e+05 41395.83 2.587239e+03 29.505 1254.00 16 2.950500e+01 472.08 8.471108e+05 8.061871e+05 40923.75 NULL
2024 Department Of Correction Supervisor Painter NA NA 41947.08 4.194708e+04 41947.080 497.50 1 4.194708e+04 41947.08 NA NA NA NULL
2024 Department Of Correction Supervisor Plumber NA NA 151599.90 7.579995e+04 75799.950 1177.75 2 7.579995e+04 151599.90 NA NA NA NULL
2024 Department Of Correction Supervisor Steamfitter NA NA 165959.98 1.659600e+05 165959.980 1304.50 1 1.659600e+05 165959.98 NA NA NA NULL
2024 Department Of Correction Telecommunications Associate 93399.00000 9.339900e+04 3744.55 3.744550e+03 3744.550 59.00 1 3.744550e+03 3744.55 9.714355e+04 9.714355e+04 0.00 NULL
2024 Department Of Correction Thermostat Repairer NA NA 1077347.75 8.977898e+04 87950.115 8792.25 12 8.795012e+04 1055401.38 NA NA NA NULL
2024 Department Of Correction Tractor Operator NA NA 372198.37 1.240661e+05 133476.770 2153.00 3 1.240661e+05 372198.37 NA NA NA NULL
2024 Department Of Correction Warden 224553.36364 2.470087e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 2.470087e+06 2.470087e+06 0.00 NULL
2024 Department Of Correction Warden-Assistant Deputy Warden Ted < 11/1/92 130120.41667 1.249156e+07 6324578.19 6.588102e+04 58081.905 61994.80 96 5.808190e+04 5575862.88 1.881614e+07 1.806742e+07 748715.31 NULL
2024 Department Of Correction Warden-Deputy Warden In Comm Ted < 11/1/92 186178.00000 1.861780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.861780e+05 1.861780e+05 0.00 NULL
2024 Department Of Correction Warden-Deputy Warden Ted < 11/1/92 167155.00000 3.844565e+06 43015.85 1.870254e+03 0.000 387.75 23 0.000000e+00 0.00 3.887581e+06 3.844565e+06 43015.85 NULL
2024 Department Of Correction Welder NA NA 628513.27 6.285133e+04 67703.355 6178.75 10 6.285133e+04 628513.27 NA NA NA NULL
2024 Department Of Correction Worker’s Compensation Benefits Examiner 60021.00000 6.002100e+04 2795.09 2.795090e+03 2795.090 72.75 1 2.795090e+03 2795.09 6.281609e+04 6.281609e+04 0.00 NULL
2024 Department Of Education Admin *Certified Wide Area Network Administrator 140012.50000 2.800250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.800250e+05 2.800250e+05 0.00 NULL
2024 Department Of Education Admin *Senior Estimator 92480.00000 9.248000e+04 50.95 5.095000e+01 50.950 1.00 1 5.095000e+01 50.95 9.253095e+04 9.253095e+04 0.00 NULL
2024 Department Of Education Admin Accountant 71230.29787 3.347824e+06 382275.25 8.133516e+03 0.440 8002.75 47 4.400000e-01 20.68 3.730099e+06 3.347845e+06 382254.57 NULL
2024 Department Of Education Admin Adm Manager-Non-Mgrl 87650.80000 1.314762e+06 3657.75 2.438500e+02 0.000 106.75 15 0.000000e+00 0.00 1.318420e+06 1.314762e+06 3657.75 NULL
2024 Department Of Education Admin Admin Community Relations Specialist 96404.00000 1.928080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.928080e+05 1.928080e+05 0.00 NULL
2024 Department Of Education Admin Admin Contract Specialist 158177.00000 3.163540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.163540e+05 3.163540e+05 0.00 NULL
2024 Department Of Education Admin Administrative Accountant 144336.50000 1.732038e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.732038e+06 1.732038e+06 0.00 NULL
2024 Department Of Education Admin Administrative Assistant To Community Education Council 54235.97619 2.277911e+06 5338.30 1.271024e+02 106.310 243.50 42 1.063100e+02 4465.02 2.283249e+06 2.282376e+06 873.28 NULL
2024 Department Of Education Admin Administrative Community Relations Specialist 125672.95455 2.764805e+06 178.08 8.094546e+00 0.000 4.75 22 0.000000e+00 0.00 2.764983e+06 2.764805e+06 178.08 NULL
2024 Department Of Education Admin Administrative Director Of Social Services 104553.75000 2.091075e+06 5875.38 2.937690e+02 0.000 118.50 20 0.000000e+00 0.00 2.096950e+06 2.091075e+06 5875.38 NULL
2024 Department Of Education Admin Administrative Education Analyst 131860.32258 6.540272e+07 413940.71 8.345579e+02 0.000 4928.25 496 0.000000e+00 0.00 6.581666e+07 6.540272e+07 413940.71 NULL
2024 Department Of Education Admin Administrative Education Officer 127521.91617 6.388848e+07 336167.24 6.709925e+02 0.000 4680.75 501 0.000000e+00 0.00 6.422465e+07 6.388848e+07 336167.24 NULL
2024 Department Of Education Admin Administrative Engineer 152119.00000 1.521190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.521190e+05 1.521190e+05 0.00 NULL
2024 Department Of Education Admin Administrative Graphic Artist 124190.28571 8.693320e+05 6162.27 8.803243e+02 0.000 88.25 7 0.000000e+00 0.00 8.754943e+05 8.693320e+05 6162.27 NULL
2024 Department Of Education Admin Administrative Labor Relations Analyst 228321.00000 2.283210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.283210e+05 2.283210e+05 0.00 NULL
2024 Department Of Education Admin Administrative Management Auditor 137317.50000 8.239050e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.239050e+05 8.239050e+05 0.00 NULL
2024 Department Of Education Admin Administrative Manager 120067.85185 3.241832e+06 13593.20 5.034519e+02 0.000 232.50 27 0.000000e+00 0.00 3.255425e+06 3.241832e+06 13593.20 NULL
2024 Department Of Education Admin Administrative Procurement Analyst 140312.59375 4.490003e+06 59.68 1.865000e+00 0.000 0.00 32 0.000000e+00 0.00 4.490063e+06 4.490003e+06 59.68 NULL
2024 Department Of Education Admin Administrative Project Manager 113102.66667 3.393080e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.393080e+05 3.393080e+05 0.00 NULL
2024 Department Of Education Admin Administrative Public Health Nurse 164361.00000 9.861660e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.861660e+05 9.861660e+05 0.00 NULL
2024 Department Of Education Admin Administrative Public Information Specialist 120221.40000 1.803321e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.803321e+06 1.803321e+06 0.00 NULL
2024 Department Of Education Admin Administrative Quality Assurance Specialist 121902.55357 6.826543e+06 3258.27 5.818339e+01 0.000 157.25 56 0.000000e+00 0.00 6.829801e+06 6.826543e+06 3258.27 NULL
2024 Department Of Education Admin Administrative Retirement Benefits Specialist 168868.61111 3.039635e+06 661.66 3.675889e+01 0.000 38.75 18 0.000000e+00 0.00 3.040297e+06 3.039635e+06 661.66 NULL
2024 Department Of Education Admin Administrative School Food Service Manager 136708.24000 3.417706e+06 382.96 1.531840e+01 0.000 1.50 25 0.000000e+00 0.00 3.418089e+06 3.417706e+06 382.96 NULL
2024 Department Of Education Admin Administrative Space Analyst 157354.76923 2.045612e+06 0.00 0.000000e+00 0.000 7.50 13 0.000000e+00 0.00 2.045612e+06 2.045612e+06 0.00 NULL
2024 Department Of Education Admin Administrative Staff Analyst 155537.57547 3.297397e+07 289.63 1.366179e+00 0.000 0.00 212 0.000000e+00 0.00 3.297426e+07 3.297397e+07 289.63 NULL
2024 Department Of Education Admin Administrative Storekeeper 129292.50000 2.585850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.585850e+05 2.585850e+05 0.00 NULL
2024 Department Of Education Admin Administrative Supervisor Of Building Maintenance 105597.75000 4.223910e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.223910e+05 4.223910e+05 0.00 NULL
2024 Department Of Education Admin Agency Attorney 122405.95690 2.705172e+07 166.45 7.531674e-01 0.000 5.25 221 0.000000e+00 0.00 2.705188e+07 2.705172e+07 166.45 NULL
2024 Department Of Education Admin Agency Attorney Dc37 127471.40000 6.373570e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.373570e+05 6.373570e+05 0.00 NULL
2024 Department Of Education Admin Agency Attorney Interne 79151.10000 7.915110e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 7.915110e+05 7.915110e+05 0.00 NULL
2024 Department Of Education Admin Agency Chief Contracting Officer 239737.00000 2.397370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.397370e+05 2.397370e+05 0.00 NULL
2024 Department Of Education Admin Agency Chief Decarbonization Officer 195700.00000 1.957000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.957000e+05 1.957000e+05 0.00 NULL
2024 Department Of Education Admin Area Manager Of School Maintenance 162306.31250 5.193802e+06 -6694.82 -2.092131e+02 0.000 0.00 32 -2.092131e+02 -6694.82 5.187107e+06 5.187107e+06 0.00 NULL
2024 Department Of Education Admin Asbestos Handler 90987.25000 7.278980e+05 76718.20 9.589775e+03 9186.630 1096.25 8 9.186630e+03 73493.04 8.046162e+05 8.013910e+05 3225.16 NULL
2024 Department Of Education Admin Assistant Accountant 71200.00000 1.424000e+05 293.14 1.465700e+02 146.570 15.50 2 1.465700e+02 293.14 1.426931e+05 1.426931e+05 0.00 NULL
2024 Department Of Education Admin Assistant Architect 78796.00000 7.879600e+04 148.28 1.482800e+02 148.280 7.50 1 1.482800e+02 148.28 7.894428e+04 7.894428e+04 0.00 NULL
2024 Department Of Education Admin Assistant Retirement Benefits Examiner 58277.34211 2.214539e+06 41424.04 1.090106e+03 439.085 1752.50 38 4.390850e+02 16685.23 2.255963e+06 2.231224e+06 24738.81 NULL
2024 Department Of Education Admin Associate Education Analyst 107057.95312 6.851709e+06 53456.34 8.352553e+02 0.000 785.75 64 0.000000e+00 0.00 6.905165e+06 6.851709e+06 53456.34 NULL
2024 Department Of Education Admin Associate Fingerprint Technician 46635.66667 2.798140e+05 5903.17 9.838617e+02 399.205 228.25 6 3.992050e+02 2395.23 2.857172e+05 2.822092e+05 3507.94 NULL
2024 Department Of Education Admin Associate Human Rights Specialist 112572.00000 1.125720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.125720e+05 1.125720e+05 0.00 NULL
2024 Department Of Education Admin Associate Investigator 78282.37500 6.262590e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.262590e+05 6.262590e+05 0.00 NULL
2024 Department Of Education Admin Associate Project Manager 95175.66667 8.565810e+05 205.83 2.287000e+01 1.260 7.00 9 1.260000e+00 11.34 8.567868e+05 8.565923e+05 194.49 NULL
2024 Department Of Education Admin Associate Quality Assurance Specialist 78503.67442 3.375658e+06 62441.27 1.452123e+03 237.380 1168.25 43 2.373800e+02 10207.34 3.438099e+06 3.385865e+06 52233.93 NULL
2024 Department Of Education Admin Associate Retirement Benefits Examiner 77301.24444 3.478556e+06 230092.10 5.113158e+03 739.160 4338.75 45 7.391600e+02 33262.20 3.708648e+06 3.511818e+06 196829.90 NULL
2024 Department Of Education Admin Associate School Food Service Manager 77937.31148 4.754176e+06 171485.99 2.811246e+03 1101.850 3495.50 61 1.101850e+03 67212.85 4.925662e+06 4.821389e+06 104273.14 NULL
2024 Department Of Education Admin Associate Staff Analyst 98900.27778 1.780205e+06 39326.58 2.184810e+03 0.000 712.25 18 0.000000e+00 0.00 1.819532e+06 1.780205e+06 39326.58 NULL
2024 Department Of Education Admin Bookkeeper 59684.18868 3.163262e+06 127774.76 2.410845e+03 1.040 2972.75 53 1.040000e+00 55.12 3.291037e+06 3.163317e+06 127719.64 NULL
2024 Department Of Education Admin Bricklayer NA NA 580.31 5.803100e+02 580.310 0.00 1 5.803100e+02 580.31 NA NA NA NULL
2024 Department Of Education Admin Carpenter NA NA 1614752.19 2.784056e+04 20096.390 17455.25 58 2.009639e+04 1165590.62 NA NA NA NULL
2024 Department Of Education Admin Caseworker 49459.00000 4.945900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.945900e+04 4.945900e+04 0.00 NULL
2024 Department Of Education Admin Certified It Administrator 126871.80645 1.179908e+07 328615.79 3.533503e+03 0.210 3823.00 93 2.100000e-01 19.53 1.212769e+07 1.179910e+07 328596.26 NULL
2024 Department Of Education Admin Certified It Developer 135294.27059 1.150001e+07 185843.28 2.186392e+03 0.000 2028.75 85 0.000000e+00 0.00 1.168586e+07 1.150001e+07 185843.28 NULL
2024 Department Of Education Admin Chief Administrator Of Impartial Hearings 167148.00000 1.671480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.671480e+05 1.671480e+05 0.00 NULL
2024 Department Of Education Admin Chief Diversity Officer Ýdoe¨ 254546.00000 2.545460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.545460e+05 2.545460e+05 0.00 NULL
2024 Department Of Education Admin Chief Of Staff To The Deputy Chancellor Ýdoe¨ 169195.00000 3.383900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.383900e+05 3.383900e+05 0.00 NULL
2024 Department Of Education Admin Chief School Business Executive 254546.00000 2.545460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.545460e+05 2.545460e+05 0.00 NULL
2024 Department Of Education Admin Chief Strategy Officer Ýdoe¨ 213000.00000 2.130000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.130000e+05 2.130000e+05 0.00 NULL
2024 Department Of Education Admin Chief Strategy Officer/Division Ýdoe¨ 210625.50000 4.212510e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.212510e+05 4.212510e+05 0.00 NULL
2024 Department Of Education Admin City Dentist 38736.46000 3.873646e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.873646e+04 3.873646e+04 0.00 NULL
2024 Department Of Education Admin City Elevator Operator 42403.00000 2.120150e+05 100.13 2.002600e+01 0.000 3.00 5 0.000000e+00 0.00 2.121151e+05 2.120150e+05 100.13 NULL
2024 Department Of Education Admin City Laborer NA NA 195397.47 8.881703e+03 5050.090 3593.50 22 5.050090e+03 111101.98 NA NA NA NULL
2024 Department Of Education Admin City Medical Specialist 129191.72508 6.459586e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.459586e+05 6.459586e+05 0.00 NULL
2024 Department Of Education Admin City Planner 109645.00000 1.096450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.096450e+05 1.096450e+05 0.00 NULL
2024 Department Of Education Admin City Research Scientist 105328.13043 2.422547e+06 8135.94 3.537365e+02 0.000 88.25 23 0.000000e+00 0.00 2.430683e+06 2.422547e+06 8135.94 NULL
2024 Department Of Education Admin Civil Engineer 114140.00000 2.282800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.282800e+05 2.282800e+05 0.00 NULL
2024 Department Of Education Admin Clerical Aide 40433.87079 4.447726e+05 78.06 7.096364e+00 0.000 3.50 11 0.000000e+00 0.00 4.448506e+05 4.447726e+05 78.06 NULL
2024 Department Of Education Admin Clerical Associate 52386.05469 1.341083e+07 97071.94 3.791873e+02 0.000 2611.50 256 0.000000e+00 0.00 1.350790e+07 1.341083e+07 97071.94 NULL
2024 Department Of Education Admin Community Assistant 41849.12214 1.096447e+07 194277.80 7.415183e+02 125.510 6168.50 262 1.255100e+02 32883.62 1.115875e+07 1.099735e+07 161394.18 NULL
2024 Department Of Education Admin Community Associate 53393.47204 1.642383e+08 3692992.32 1.200583e+03 325.205 91230.25 3076 3.252050e+02 1000330.58 1.679313e+08 1.652387e+08 2692661.74 NULL
2024 Department Of Education Admin Community Coordinator 73825.75957 1.369468e+08 2472566.20 1.332920e+03 167.020 45232.25 1855 1.670200e+02 309822.10 1.394194e+08 1.372566e+08 2162744.10 NULL
2024 Department Of Education Admin Computer Aide-Non-Spvr 63420.50000 2.536820e+05 2047.18 5.117950e+02 4.220 42.50 4 4.220000e+00 16.88 2.557292e+05 2.536989e+05 2030.30 NULL
2024 Department Of Education Admin Computer Associate 86054.79310 7.486767e+06 54265.69 6.237436e+02 0.010 1098.25 87 1.000000e-02 0.87 7.541033e+06 7.486768e+06 54264.82 NULL
2024 Department Of Education Admin Computer Operations Manager 174094.50000 3.481890e+05 0.49 2.450000e-01 0.245 0.00 2 2.450000e-01 0.49 3.481895e+05 3.481895e+05 0.00 NULL
2024 Department Of Education Admin Computer Programmer Analyst 67996.20000 3.399810e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.399810e+05 3.399810e+05 0.00 NULL
2024 Department Of Education Admin Computer Service Technician 64535.65217 2.968640e+06 126674.32 2.753790e+03 0.095 2369.75 46 9.500000e-02 4.37 3.095314e+06 2.968644e+06 126669.95 NULL
2024 Department Of Education Admin Computer Specialist 123851.21182 2.514180e+07 213252.92 1.050507e+03 0.000 2549.00 203 0.000000e+00 0.00 2.535505e+07 2.514180e+07 213252.92 NULL
2024 Department Of Education Admin Computer Systems Manager 163689.91613 2.537194e+07 541.94 3.496387e+00 0.000 18.75 155 0.000000e+00 0.00 2.537248e+07 2.537194e+07 541.94 NULL
2024 Department Of Education Admin Confidential Investigator 82203.77528 7.316136e+06 8195.71 9.208663e+01 0.000 160.50 89 0.000000e+00 0.00 7.324332e+06 7.316136e+06 8195.71 NULL
2024 Department Of Education Admin Confidential Strategy Planner 104749.57143 1.466494e+06 1615.91 1.154221e+02 0.000 24.50 14 0.000000e+00 0.00 1.468110e+06 1.466494e+06 1615.91 NULL
2024 Department Of Education Admin Construction Laborer NA NA 55194.59 4.245738e+03 3033.420 688.00 13 3.033420e+03 39434.46 NA NA NA NULL
2024 Department Of Education Admin Construction Project Manager 91801.58333 1.101619e+06 103442.43 8.620202e+03 6413.955 1761.00 12 6.413955e+03 76967.46 1.205061e+06 1.178586e+06 26474.97 NULL
2024 Department Of Education Admin Consultant 90518.16667 5.431090e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.431090e+05 5.431090e+05 0.00 NULL
2024 Department Of Education Admin Contract Specialist 67533.50000 4.052010e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.052010e+05 4.052010e+05 0.00 NULL
2024 Department Of Education Admin Counsel To The Chancellor 251153.00000 5.023060e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.023060e+05 5.023060e+05 0.00 NULL
2024 Department Of Education Admin Customer Information Representative Ma L 1549 67119.42522 2.288772e+07 377625.79 1.107407e+03 0.000 7460.75 341 0.000000e+00 0.00 2.326535e+07 2.288772e+07 377625.79 NULL
2024 Department Of Education Admin Cyber Security Analyst 104334.00000 2.086680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.086680e+05 2.086680e+05 0.00 NULL
2024 Department Of Education Admin Deputy Auditor General 158774.00000 3.175480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.175480e+05 3.175480e+05 0.00 NULL
2024 Department Of Education Admin Deputy Chancellor Financial Affairs 275126.00000 2.751260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.751260e+05 2.751260e+05 0.00 NULL
2024 Department Of Education Admin Deputy Chief Of Staff To The Chancellor Ýdoe¨ 192170.33333 5.765110e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.765110e+05 5.765110e+05 0.00 NULL
2024 Department Of Education Admin Deputy Chief Strategy Officer Ýdoe¨ 154117.00000 1.541170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.541170e+05 1.541170e+05 0.00 NULL
2024 Department Of Education Admin Deputy Executive Director 228321.00000 2.283210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.283210e+05 2.283210e+05 0.00 NULL
2024 Department Of Education Admin Deputy Executive Director Of Financial Operations 170670.00000 1.706700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.706700e+05 1.706700e+05 0.00 NULL
2024 Department Of Education Admin Deputy Inspector General 181769.80000 9.088490e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.088490e+05 9.088490e+05 0.00 NULL
2024 Department Of Education Admin Director 198081.00000 1.980810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.980810e+05 1.980810e+05 0.00 NULL
2024 Department Of Education Admin Director Of Artworks 151486.00000 1.514860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.514860e+05 1.514860e+05 0.00 NULL
2024 Department Of Education Admin Director Of Audit And Investigation 191986.00000 1.919860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.919860e+05 1.919860e+05 0.00 NULL
2024 Department Of Education Admin Director Of Equal Opportunity 199781.00000 1.997810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.997810e+05 1.997810e+05 0.00 NULL
2024 Department Of Education Admin Director Of Headstart Program 129014.00000 1.290140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.290140e+05 1.290140e+05 0.00 NULL
2024 Department Of Education Admin Director Of News Bureau 222972.00000 2.229720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.229720e+05 2.229720e+05 0.00 NULL
2024 Department Of Education Admin Director Of School Safety 248870.00000 4.977400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.977400e+05 4.977400e+05 0.00 NULL
2024 Department Of Education Admin District Manager Of Administration And Business Affairs 109607.04545 2.411355e+06 11049.83 5.022650e+02 0.360 158.25 22 3.600000e-01 7.92 2.422405e+06 2.411363e+06 11041.91 NULL
2024 Department Of Education Admin Education Analyst 84745.44156 6.525399e+06 5316.87 6.905026e+01 0.000 132.25 77 0.000000e+00 0.00 6.530716e+06 6.525399e+06 5316.87 NULL
2024 Department Of Education Admin Education Analyst Trainee 49138.30000 4.913830e+05 193.86 1.938600e+01 0.000 6.50 10 0.000000e+00 0.00 4.915769e+05 4.913830e+05 193.86 NULL
2024 Department Of Education Admin Education Officer 97061.33493 2.028582e+07 110037.36 5.264945e+02 0.000 1590.50 209 0.000000e+00 0.00 2.039586e+07 2.028582e+07 110037.36 NULL
2024 Department Of Education Admin Educational Management Associate 156685.76667 4.700573e+06 -1011.78 -3.372600e+01 0.000 26.00 30 -3.372600e+01 -1011.78 4.699561e+06 4.699561e+06 0.00 NULL
2024 Department Of Education Admin Electrician NA NA 837247.20 1.550458e+04 12241.530 8586.75 54 1.224153e+04 661042.62 NA NA NA NULL
2024 Department Of Education Admin Elevator Mechanic NA NA 26748.21 1.337410e+04 13374.105 292.25 2 1.337410e+04 26748.21 NA NA NA NULL
2024 Department Of Education Admin Equal Rights Compliance Specialist 81805.75000 1.636115e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.636115e+06 1.636115e+06 0.00 NULL
2024 Department Of Education Admin Executive Agency Counsel 168429.66337 1.701140e+07 323.32 3.201188e+00 0.000 12.00 101 0.000000e+00 0.00 1.701172e+07 1.701140e+07 323.32 NULL
2024 Department Of Education Admin Executive Director 258587.00000 7.757610e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.757610e+05 7.757610e+05 0.00 NULL
2024 Department Of Education Admin Executive Program Specialist 241639.66667 7.249190e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.249190e+05 7.249190e+05 0.00 NULL
2024 Department Of Education Admin Exterminator 59933.15385 7.791310e+05 14670.73 1.128518e+03 17.730 414.00 13 1.773000e+01 230.49 7.938017e+05 7.793615e+05 14440.24 NULL
2024 Department Of Education Admin Glazier NA NA 36184.55 1.206152e+04 6791.590 314.00 3 6.791590e+03 20374.77 NA NA NA NULL
2024 Department Of Education Admin Health Services Manager 139099.00000 1.390990e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.390990e+05 1.390990e+05 0.00 NULL
2024 Department Of Education Admin Industrial Hygienist 77578.00000 7.757800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.757800e+04 7.757800e+04 0.00 NULL
2024 Department Of Education Admin Interpreter/Translator 67074.00000 2.213442e+06 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 2.213442e+06 2.213442e+06 0.00 NULL
2024 Department Of Education Admin Investigator Empl Disc 71373.47368 2.712192e+06 1716.09 4.516026e+01 0.000 44.50 38 0.000000e+00 0.00 2.713908e+06 2.712192e+06 1716.09 NULL
2024 Department Of Education Admin It Automation And Monitoring Engineer 132339.33333 3.970180e+05 10885.10 3.628367e+03 0.000 123.75 3 0.000000e+00 0.00 4.079031e+05 3.970180e+05 10885.10 NULL
2024 Department Of Education Admin It Infrastructure Engineer 149719.28571 1.048035e+06 147555.48 2.107935e+04 0.000 1150.75 7 0.000000e+00 0.00 1.195590e+06 1.048035e+06 147555.48 NULL
2024 Department Of Education Admin It Project Specialist 141350.00000 4.240500e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.240500e+05 4.240500e+05 0.00 NULL
2024 Department Of Education Admin It Security Specialist 129504.12500 1.036033e+06 25360.00 3.170000e+03 0.000 219.50 8 0.000000e+00 0.00 1.061393e+06 1.036033e+06 25360.00 NULL
2024 Department Of Education Admin It Service Management Specialist 125216.33333 3.756490e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.756490e+05 3.756490e+05 0.00 NULL
2024 Department Of Education Admin Legal Secretarial Assistant 52484.00000 5.248400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.248400e+04 5.248400e+04 0.00 NULL
2024 Department Of Education Admin Legislative Representative 131096.00000 1.310960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.310960e+05 1.310960e+05 0.00 NULL
2024 Department Of Education Admin Locksmith NA NA 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 NA NA NA NULL
2024 Department Of Education Admin Machinist NA NA 1427770.97 2.644020e+04 21969.050 19515.25 54 2.196905e+04 1186328.70 NA NA NA NULL
2024 Department Of Education Admin Machinist’s Helper NA NA 89168.52 1.486142e+04 432.900 1228.00 6 4.329000e+02 2597.40 NA NA NA NULL
2024 Department Of Education Admin Maintenance Worker NA NA 378.76 1.262533e+02 112.430 6.50 3 1.124300e+02 337.29 NA NA NA NULL
2024 Department Of Education Admin Management Auditor 80422.93333 1.206344e+06 3513.18 2.342120e+02 0.000 100.25 15 0.000000e+00 0.00 1.209857e+06 1.206344e+06 3513.18 NULL
2024 Department Of Education Admin Media Services Technician 69354.00000 6.935400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.935400e+04 6.935400e+04 0.00 NULL
2024 Department Of Education Admin Mental Health Worker 50288.00000 1.005760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.005760e+05 1.005760e+05 0.00 NULL
2024 Department Of Education Admin Motor Vehicle Operator 53611.33333 8.041700e+05 106667.48 7.111165e+03 1146.400 2897.00 15 1.146400e+03 17196.00 9.108375e+05 8.213660e+05 89471.48 NULL
2024 Department Of Education Admin New York City Public Service Fellow 47901.33333 2.874080e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.874080e+05 2.874080e+05 0.00 NULL
2024 Department Of Education Admin Occupational Therapist 42872.03703 9.183190e+07 777338.62 3.629032e+02 0.000 9773.75 2142 0.000000e+00 0.00 9.260924e+07 9.183190e+07 777338.62 NULL
2024 Department Of Education Admin Office Machine Aide 50831.66667 1.524950e+05 272.91 9.097000e+01 0.000 9.25 3 0.000000e+00 0.00 1.527679e+05 1.524950e+05 272.91 NULL
2024 Department Of Education Admin Painter NA NA 32934.20 3.293420e+04 32934.200 422.00 1 3.293420e+04 32934.20 NA NA NA NULL
2024 Department Of Education Admin Physical Therapist 40595.00914 2.947198e+07 435420.58 5.997529e+02 0.000 4955.50 726 0.000000e+00 0.00 2.990740e+07 2.947198e+07 435420.58 NULL
2024 Department Of Education Admin Plasterer NA NA 13334.33 1.666791e+03 626.775 88.00 8 6.267750e+02 5014.20 NA NA NA NULL
2024 Department Of Education Admin Plumber NA NA 724282.29 2.785701e+04 16440.765 5922.25 26 1.644076e+04 427459.89 NA NA NA NULL
2024 Department Of Education Admin Policy Advisor To The Chancellor Ýdoe¨ 129380.00000 3.881400e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.881400e+05 3.881400e+05 0.00 NULL
2024 Department Of Education Admin Press Secretary Ýdoe¨ 194073.00000 3.881460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.881460e+05 3.881460e+05 0.00 NULL
2024 Department Of Education Admin Principal Administrative Associate - Non Supvr 68230.23571 9.552233e+06 201345.29 1.438181e+03 0.000 3804.75 140 0.000000e+00 0.00 9.753578e+06 9.552233e+06 201345.29 NULL
2024 Department Of Education Admin Principal School-Neighborhood Worker 63176.00000 6.317600e+04 12.75 1.275000e+01 12.750 0.25 1 1.275000e+01 12.75 6.318875e+04 6.318875e+04 0.00 NULL
2024 Department Of Education Admin Procurement Analyst 79925.38235 5.434926e+06 41014.72 6.031576e+02 0.000 704.50 68 0.000000e+00 0.00 5.475941e+06 5.434926e+06 41014.72 NULL
2024 Department Of Education Admin Program Producer 101624.00000 1.016240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.016240e+05 1.016240e+05 0.00 NULL
2024 Department Of Education Admin Public Records Aide 58675.66667 1.760270e+05 416.42 1.388067e+02 0.000 27.00 3 0.000000e+00 0.00 1.764434e+05 1.760270e+05 416.42 NULL
2024 Department Of Education Admin Quality Assurance Specialist 66177.27273 2.911800e+06 140472.03 3.192546e+03 0.000 2510.75 44 0.000000e+00 0.00 3.052272e+06 2.911800e+06 140472.03 NULL
2024 Department Of Education Admin Quality Assurance Specialist Trainee 40799.71429 2.855980e+05 186.70 2.667143e+01 0.300 6.25 7 3.000000e-01 2.10 2.857847e+05 2.856001e+05 184.60 NULL
2024 Department Of Education Admin Radio Repair Mechanic NA NA 284555.37 1.497660e+04 16366.460 3599.00 19 1.497660e+04 284555.37 NA NA NA NULL
2024 Department Of Education Admin Research Assistant 64989.13333 9.748370e+05 5366.84 3.577893e+02 0.000 159.75 15 0.000000e+00 0.00 9.802038e+05 9.748370e+05 5366.84 NULL
2024 Department Of Education Admin Roofer NA NA 28664.23 3.583029e+03 556.610 417.75 8 5.566100e+02 4452.88 NA NA NA NULL
2024 Department Of Education Admin School Business Manager 91189.16129 5.653728e+06 149651.99 2.413742e+03 4.865 2407.50 62 4.865000e+00 301.63 5.803380e+06 5.654030e+06 149350.36 NULL
2024 Department Of Education Admin School Computer Technology Specialist 65939.37338 2.321066e+07 723669.05 2.055878e+03 0.130 15057.75 352 1.300000e-01 45.76 2.393433e+07 2.321071e+07 723623.29 NULL
2024 Department Of Education Admin School Equipment Maintainer 41288.00000 4.128800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.128800e+04 4.128800e+04 0.00 NULL
2024 Department Of Education Admin School Food Service Manager 57244.63508 2.839334e+07 439818.38 8.867306e+02 171.905 12627.00 496 1.719050e+02 85264.88 2.883316e+07 2.847860e+07 354553.50 NULL
2024 Department Of Education Admin School Lunch Aide 39644.19881 3.330113e+07 636657.81 7.579260e+02 122.070 28440.75 840 1.220700e+02 102538.80 3.393778e+07 3.340367e+07 534119.01 NULL
2024 Department Of Education Admin School Lunch Assistant 46331.91667 3.335898e+06 34693.93 4.818601e+02 28.350 1399.75 72 2.835000e+01 2041.20 3.370592e+06 3.337939e+06 32652.73 NULL
2024 Department Of Education Admin School Lunch Assistant Cook 46430.56190 4.875209e+06 157542.69 1.500407e+03 718.390 5997.00 105 7.183900e+02 75430.95 5.032752e+06 4.950640e+06 82111.74 NULL
2024 Department Of Education Admin School Lunch Loader And Handler 59934.28125 1.917897e+06 622286.86 1.944646e+04 19513.500 14470.00 32 1.944646e+04 622286.86 2.540184e+06 2.540184e+06 0.00 NULL
2024 Department Of Education Admin School Plant Manager 150209.44000 7.510472e+06 4083.67 8.167340e+01 0.000 74.75 50 0.000000e+00 0.00 7.514556e+06 7.510472e+06 4083.67 NULL
2024 Department Of Education Admin School-Neighborhood Worker 47110.00000 1.884400e+05 233.42 5.835500e+01 0.000 6.00 4 0.000000e+00 0.00 1.886734e+05 1.884400e+05 233.42 NULL
2024 Department Of Education Admin Secretary 53712.25490 2.739325e+06 5431.25 1.064951e+02 0.000 171.75 51 0.000000e+00 0.00 2.744756e+06 2.739325e+06 5431.25 NULL
2024 Department Of Education Admin Secretary To The Chancellor 94393.00000 9.439300e+04 451.68 4.516800e+02 451.680 8.50 1 4.516800e+02 451.68 9.484468e+04 9.484468e+04 0.00 NULL
2024 Department Of Education Admin Secretary To The Deputy Chancellor 123642.14286 8.654950e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.654950e+05 8.654950e+05 0.00 NULL
2024 Department Of Education Admin Secretary To The Special Commissioner Of Investigation-Nyc 85621.00000 8.562100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.562100e+04 8.562100e+04 0.00 NULL
2024 Department Of Education Admin Senior Executive Director Of Intergovernmental Affairs Ýdoe¨ 238297.00000 4.765940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.765940e+05 4.765940e+05 0.00 NULL
2024 Department Of Education Admin Senior It Architect 156227.50000 1.562275e+06 9576.47 9.576470e+02 0.000 96.75 10 0.000000e+00 0.00 1.571851e+06 1.562275e+06 9576.47 NULL
2024 Department Of Education Admin Senior School Lunch Aide 42862.58242 1.560198e+07 314839.60 8.649440e+02 195.605 13280.75 364 1.956050e+02 71200.22 1.591682e+07 1.567318e+07 243639.38 NULL
2024 Department Of Education Admin Senior School-Neighborhood Worker 62234.50000 2.489380e+05 15013.02 3.753255e+03 3753.255 352.50 4 3.753255e+03 15013.02 2.639510e+05 2.639510e+05 0.00 NULL
2024 Department Of Education Admin Service Inspector 52759.33333 1.582780e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.582780e+05 1.582780e+05 0.00 NULL
2024 Department Of Education Admin Sign Language Interpreter 112032.57030 3.697075e+06 1601.43 4.852818e+01 0.000 21.00 33 0.000000e+00 0.00 3.698676e+06 3.697075e+06 1601.43 NULL
2024 Department Of Education Admin Special Assistant 162526.77778 1.462741e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.462741e+06 1.462741e+06 0.00 NULL
2024 Department Of Education Admin Special Assistant To Member Of The Board Of Education 156135.00000 1.405215e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.405215e+06 1.405215e+06 0.00 NULL
2024 Department Of Education Admin Special Assistant To The Chancellor 197663.40000 9.883170e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.883170e+05 9.883170e+05 0.00 NULL
2024 Department Of Education Admin Special Officer 42750.30769 2.223016e+06 132457.85 2.547266e+03 852.865 4146.50 52 8.528650e+02 44348.98 2.355474e+06 2.267365e+06 88108.87 NULL
2024 Department Of Education Admin Staff Analyst 79381.37500 6.350510e+05 3121.32 3.901650e+02 0.000 100.00 8 0.000000e+00 0.00 6.381723e+05 6.350510e+05 3121.32 NULL
2024 Department Of Education Admin Staff Audiologist 78434.90000 7.843490e+05 6691.96 6.691960e+02 0.000 97.00 10 0.000000e+00 0.00 7.910410e+05 7.843490e+05 6691.96 NULL
2024 Department Of Education Admin Staff Nurse 44455.64589 3.680927e+07 3075901.37 3.714857e+03 163.520 35670.91 828 1.635200e+02 135394.56 3.988518e+07 3.694467e+07 2940506.81 NULL
2024 Department Of Education Admin Steam Fitter NA NA 2032787.09 4.065574e+04 26814.000 16333.75 50 2.681400e+04 1340700.00 NA NA NA NULL
2024 Department Of Education Admin Steam Fitter’s Helper NA NA 195637.35 4.890934e+04 50662.280 2120.50 4 4.890934e+04 195637.35 NA NA NA NULL
2024 Department Of Education Admin Stock Worker 39273.33333 2.356400e+05 744.62 1.241033e+02 1.360 47.50 6 1.360000e+00 8.16 2.363846e+05 2.356482e+05 736.46 NULL
2024 Department Of Education Admin Strategi Initiative Specialist 108452.00000 1.084520e+05 6.05 6.050000e+00 6.050 0.00 1 6.050000e+00 6.05 1.084581e+05 1.084581e+05 0.00 NULL
2024 Department Of Education Admin Strategic Initiative Specialist 158261.85714 1.107833e+06 12.24 1.748571e+00 0.000 0.00 7 0.000000e+00 0.00 1.107845e+06 1.107833e+06 12.24 NULL
2024 Department Of Education Admin Substance Abuse Prevention & Intervention Specialist 68650.54239 2.574395e+07 75449.83 2.011995e+02 0.000 1775.75 375 0.000000e+00 0.00 2.581940e+07 2.574395e+07 75449.83 NULL
2024 Department Of Education Admin Summer College Intern 3017.13611 2.715422e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 2.715422e+04 2.715422e+04 0.00 NULL
2024 Department Of Education Admin Summer Graduate Intern 7027.63333 2.108290e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.108290e+04 2.108290e+04 0.00 NULL
2024 Department Of Education Admin Supervising Computer Service Technician 86442.36764 2.766156e+06 126057.92 3.939310e+03 0.005 1848.00 32 5.000000e-03 0.16 2.892214e+06 2.766156e+06 126057.76 NULL
2024 Department Of Education Admin Supervising Therapist 40733.57767 2.973551e+06 238047.01 3.260918e+03 0.000 1529.25 73 0.000000e+00 0.00 3.211598e+06 2.973551e+06 238047.01 NULL
2024 Department Of Education Admin Supervisor 88279.00000 8.827900e+04 1354.32 1.354320e+03 1354.320 20.50 1 1.354320e+03 1354.32 8.963332e+04 8.963332e+04 0.00 NULL
2024 Department Of Education Admin Supervisor Bricklayer NA NA 140.09 1.400900e+02 140.090 0.00 1 1.400900e+02 140.09 NA NA NA NULL
2024 Department Of Education Admin Supervisor Carpenter NA NA 89877.16 2.246929e+04 22494.180 927.00 4 2.246929e+04 89877.16 NA NA NA NULL
2024 Department Of Education Admin Supervisor Electrician NA NA 64659.02 3.232951e+04 32329.510 616.50 2 3.232951e+04 64659.02 NA NA NA NULL
2024 Department Of Education Admin Supervisor Elevator Mechanic NA NA 33539.49 3.353949e+04 33539.490 324.75 1 3.353949e+04 33539.49 NA NA NA NULL
2024 Department Of Education Admin Supervisor I 66902.33333 2.007070e+05 1632.19 5.440633e+02 0.000 28.75 3 0.000000e+00 0.00 2.023392e+05 2.007070e+05 1632.19 NULL
2024 Department Of Education Admin Supervisor I Social Work 69707.00000 2.091210e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.091210e+05 2.091210e+05 0.00 NULL
2024 Department Of Education Admin Supervisor Ii 78069.00000 1.561380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.561380e+05 1.561380e+05 0.00 NULL
2024 Department Of Education Admin Supervisor Of Electrical Installations & Maintenance 91287.23810 1.917032e+06 179991.17 8.571008e+03 3687.580 2841.50 21 3.687580e+03 77439.18 2.097023e+06 1.994471e+06 102551.99 NULL
2024 Department Of Education Admin Supervisor Of Mechanical Installations & Maintenance 88936.05556 1.600849e+06 53701.19 2.983399e+03 367.700 997.75 18 3.677000e+02 6618.60 1.654550e+06 1.607468e+06 47082.59 NULL
2024 Department Of Education Admin Supervisor Of Mechanics NA NA 390039.82 1.857332e+04 11702.120 3561.50 21 1.170212e+04 245744.52 NA NA NA NULL
2024 Department Of Education Admin Supervisor Of Nurses 47873.68648 1.053221e+06 14089.44 6.404291e+02 0.000 80.00 22 0.000000e+00 0.00 1.067311e+06 1.053221e+06 14089.44 NULL
2024 Department Of Education Admin Supervisor Of Office Machine Operations 57913.00000 5.791300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.791300e+04 5.791300e+04 0.00 NULL
2024 Department Of Education Admin Supervisor Of Stock Workers 71443.50000 1.428870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.428870e+05 1.428870e+05 0.00 NULL
2024 Department Of Education Admin Supervisor Plasterer NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2024 Department Of Education Admin Supervisor Plumber NA NA 121430.41 1.214304e+05 121430.410 954.50 1 1.214304e+05 121430.41 NA NA NA NULL
2024 Department Of Education Admin Supervisor Roofer NA NA 154.34 7.717000e+01 77.170 0.00 2 7.717000e+01 154.34 NA NA NA NULL
2024 Department Of Education Admin Supervisor Steamfitter NA NA 79562.50 3.978125e+04 39781.250 625.00 2 3.978125e+04 79562.50 NA NA NA NULL
2024 Department Of Education Admin Telecommuncation Manager 138953.00000 1.389530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.389530e+05 1.389530e+05 0.00 NULL
2024 Department Of Education Admin Telecommunications Associate 93548.11538 2.432251e+06 6716.86 2.583408e+02 0.160 137.25 26 1.600000e-01 4.16 2.438968e+06 2.432255e+06 6712.70 NULL
2024 Department Of Education Admin Thermostat Repairer NA NA 22226.32 7.408773e+03 7686.280 171.00 3 7.408773e+03 22226.32 NA NA NA NULL
2024 Department Of Education Admin NA NA NA 192312.43 4.180705e+03 0.000 1999.00 46 0.000000e+00 0.00 NA NA NA NULL
2024 Department Of Finance *Attorney At Law 120556.20000 1.205562e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.205562e+06 1.205562e+06 0.00 NULL
2024 Department Of Finance Accountant 84010.90909 9.241200e+05 604.98 5.499818e+01 0.000 10.00 11 0.000000e+00 0.00 9.247250e+05 9.241200e+05 604.98 NULL
2024 Department Of Finance Adm Manager-Non-Mgrl 94135.50000 7.154298e+06 139575.00 1.836513e+03 6.875 2148.50 76 6.875000e+00 522.50 7.293873e+06 7.154820e+06 139052.50 NULL
2024 Department Of Finance Admin Community Relations Specialist 115559.00000 3.466770e+05 3.51 1.170000e+00 0.000 0.00 3 0.000000e+00 0.00 3.466805e+05 3.466770e+05 3.51 NULL
2024 Department Of Finance Admin Contract Specialist 138181.00000 4.145430e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.145430e+05 4.145430e+05 0.00 NULL
2024 Department Of Finance Administrative Accountant 109816.63636 1.207983e+06 44275.17 4.025015e+03 0.000 597.50 11 0.000000e+00 0.00 1.252258e+06 1.207983e+06 44275.17 NULL
2024 Department Of Finance Administrative Actuary 144200.00000 1.442000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.442000e+05 1.442000e+05 0.00 NULL
2024 Department Of Finance Administrative Assessor 182651.00000 7.306040e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.306040e+05 7.306040e+05 0.00 NULL
2024 Department Of Finance Administrative City Planner 175120.00000 7.004800e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.004800e+05 7.004800e+05 0.00 NULL
2024 Department Of Finance Administrative Deputy Register 131592.33333 3.947770e+05 495.91 1.653033e+02 0.000 7.00 3 0.000000e+00 0.00 3.952729e+05 3.947770e+05 495.91 NULL
2024 Department Of Finance Administrative Investigator 168290.50000 3.365810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.365810e+05 3.365810e+05 0.00 NULL
2024 Department Of Finance Administrative Labor Relations Analyst 137877.00000 8.272620e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.272620e+05 8.272620e+05 0.00 NULL
2024 Department Of Finance Administrative Management Auditor 132584.42857 9.280910e+05 6471.31 9.244729e+02 0.000 88.00 7 0.000000e+00 0.00 9.345623e+05 9.280910e+05 6471.31 NULL
2024 Department Of Finance Administrative Manager 138604.25000 5.544170e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.544170e+05 5.544170e+05 0.00 NULL
2024 Department Of Finance Administrative Procurement Analyst-Non-Mgrl 116953.00000 1.169530e+06 29210.55 2.921055e+03 0.000 387.00 10 0.000000e+00 0.00 1.198741e+06 1.169530e+06 29210.55 NULL
2024 Department Of Finance Administrative Public Information Specialist Nm Former M1/M2 122660.50000 2.453210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.453210e+05 2.453210e+05 0.00 NULL
2024 Department Of Finance Administrative Space Analyst 108850.00000 2.177000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.177000e+05 2.177000e+05 0.00 NULL
2024 Department Of Finance Administrative Staff Analyst 128721.69748 1.531788e+07 272785.88 2.292318e+03 0.000 3237.00 119 0.000000e+00 0.00 1.559067e+07 1.531788e+07 272785.88 NULL
2024 Department Of Finance Administrative Storekeeper 119725.00000 3.591750e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.591750e+05 3.591750e+05 0.00 NULL
2024 Department Of Finance Administrative Supervisor Of Building Maintenance 130045.00000 1.300450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300450e+05 1.300450e+05 0.00 NULL
2024 Department Of Finance Administrative Tax Auditor 135068.70588 4.592336e+06 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 4.592336e+06 4.592336e+06 0.00 NULL
2024 Department Of Finance Agency Attorney 105644.40000 2.641110e+06 156.51 6.260400e+00 0.000 2.00 25 0.000000e+00 0.00 2.641267e+06 2.641110e+06 156.51 NULL
2024 Department Of Finance Agency Attorney Interne 79398.00000 1.587960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.587960e+05 1.587960e+05 0.00 NULL
2024 Department Of Finance Agency Chief Contracting Officer 189497.00000 1.894970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.894970e+05 1.894970e+05 0.00 NULL
2024 Department Of Finance Assist Commissioner 189502.00000 1.895020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.895020e+05 1.895020e+05 0.00 NULL
2024 Department Of Finance Assistant City Assessor 60282.57143 1.687912e+06 4981.78 1.779207e+02 0.000 130.50 28 0.000000e+00 0.00 1.692894e+06 1.687912e+06 4981.78 NULL
2024 Department Of Finance Assistant Commissioner 213396.00000 8.535840e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.535840e+05 8.535840e+05 0.00 NULL
2024 Department Of Finance Assistant Commissioner, Citywide Pymt Svcs & Stnds 209438.00000 2.094380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.094380e+05 2.094380e+05 0.00 NULL
2024 Department Of Finance Associate Fraud Investigator 81343.93333 1.220159e+06 553914.62 3.692764e+04 36166.670 8555.75 15 3.616667e+04 542500.05 1.774074e+06 1.762659e+06 11414.57 NULL
2024 Department Of Finance Associate Labor Relations Analyst 97630.00000 9.763000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.763000e+04 9.763000e+04 0.00 NULL
2024 Department Of Finance Associate Staff Analyst 94479.86957 2.173037e+06 2525.12 1.097878e+02 0.000 37.25 23 0.000000e+00 0.00 2.175562e+06 2.173037e+06 2525.12 NULL
2024 Department Of Finance Asst Commissioner 209426.00000 2.094260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.094260e+05 2.094260e+05 0.00 NULL
2024 Department Of Finance Business Research & Data Analytics Specialist 99754.88889 2.693382e+06 1897.78 7.028815e+01 0.000 32.00 27 0.000000e+00 0.00 2.695280e+06 2.693382e+06 1897.78 NULL
2024 Department Of Finance Cashier 53397.00000 1.067940e+05 48.09 2.404500e+01 24.045 1.50 2 2.404500e+01 48.09 1.068421e+05 1.068421e+05 0.00 NULL
2024 Department Of Finance Certified It Administrator 130457.58333 1.565491e+06 171325.29 1.427711e+04 10403.635 2055.50 12 1.040364e+04 124843.62 1.736816e+06 1.690335e+06 46481.67 NULL
2024 Department Of Finance Certified It Developer 136990.00000 1.369900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.369900e+05 1.369900e+05 0.00 NULL
2024 Department Of Finance Chief Information Officer 241364.00000 2.413640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.413640e+05 2.413640e+05 0.00 NULL
2024 Department Of Finance Chief Of City Sheriff Operations 220329.00000 2.203290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.203290e+05 2.203290e+05 0.00 NULL
2024 Department Of Finance Chief Of Staff 186989.00000 1.869890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.869890e+05 1.869890e+05 0.00 NULL
2024 Department Of Finance Chief Pension Investment Advisor, Finance 224443.00000 2.244430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.244430e+05 2.244430e+05 0.00 NULL
2024 Department Of Finance Chief Tax Compliance Officer 241356.00000 2.413560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.413560e+05 2.413560e+05 0.00 NULL
2024 Department Of Finance City Assessor 94325.16822 1.009279e+07 462817.52 4.325397e+03 3135.160 6447.50 107 3.135160e+03 335462.12 1.055561e+07 1.042826e+07 127355.40 NULL
2024 Department Of Finance City Collector 150373.00000 1.503730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.503730e+05 1.503730e+05 0.00 NULL
2024 Department Of Finance City Laborer NA NA 237221.09 1.824778e+04 14627.140 4419.00 13 1.462714e+04 190152.82 NA NA NA NULL
2024 Department Of Finance City Planner 77308.66667 2.319260e+05 4843.78 1.614593e+03 0.000 99.25 3 0.000000e+00 0.00 2.367698e+05 2.319260e+05 4843.78 NULL
2024 Department Of Finance City Planning Technician 43871.00000 4.387100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.387100e+04 4.387100e+04 0.00 NULL
2024 Department Of Finance City Register 209448.00000 2.094480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.094480e+05 2.094480e+05 0.00 NULL
2024 Department Of Finance City Research Scientist 100955.50000 1.615288e+06 12122.11 7.576319e+02 0.000 158.00 16 0.000000e+00 0.00 1.627410e+06 1.615288e+06 12122.11 NULL
2024 Department Of Finance City Tax Auditor 73805.53168 2.679141e+07 50556.99 1.392755e+02 0.000 899.25 363 0.000000e+00 0.00 2.684196e+07 2.679141e+07 50556.99 NULL
2024 Department Of Finance Clerical Aide 44070.66667 6.610600e+05 620.57 4.137133e+01 0.000 23.00 15 0.000000e+00 0.00 6.616806e+05 6.610600e+05 620.57 NULL
2024 Department Of Finance Clerical Associate 49893.56863 7.633716e+06 44739.23 2.924133e+02 0.000 1396.00 153 0.000000e+00 0.00 7.678455e+06 7.633716e+06 44739.23 NULL
2024 Department Of Finance Collections Specialist 61252.11111 5.512690e+05 1014.86 1.127622e+02 0.000 29.25 9 0.000000e+00 0.00 5.522839e+05 5.512690e+05 1014.86 NULL
2024 Department Of Finance Collections Unit Head 149609.00000 1.496090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.496090e+05 1.496090e+05 0.00 NULL
2024 Department Of Finance College Aide 14919.72429 1.044381e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.044381e+05 1.044381e+05 0.00 NULL
2024 Department Of Finance College Aide - Assignment Levels Ii And Iii 13597.24440 2.719449e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.719449e+04 2.719449e+04 0.00 NULL
2024 Department Of Finance Commissioner Of Finance 277605.00000 2.776050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.776050e+05 2.776050e+05 0.00 NULL
2024 Department Of Finance Community Assistant 43583.00000 8.716600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.716600e+04 8.716600e+04 0.00 NULL
2024 Department Of Finance Community Associate 57193.75000 2.287750e+05 9357.60 2.339400e+03 1784.190 237.00 4 1.784190e+03 7136.76 2.381326e+05 2.359118e+05 2220.84 NULL
2024 Department Of Finance Community Coordinator 76231.54167 1.829557e+06 46709.55 1.946231e+03 0.000 849.75 24 0.000000e+00 0.00 1.876267e+06 1.829557e+06 46709.55 NULL
2024 Department Of Finance Community Service Aide 38934.00000 3.893400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.893400e+04 3.893400e+04 0.00 NULL
2024 Department Of Finance Computer Aide-Non-Spvr 74111.00000 7.411100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.411100e+04 7.411100e+04 0.00 NULL
2024 Department Of Finance Computer Associate 90948.80952 1.909925e+06 85185.44 4.056450e+03 7.740 1204.75 21 7.740000e+00 162.54 1.995110e+06 1.910088e+06 85022.90 NULL
2024 Department Of Finance Computer Specialist 122205.35714 5.132625e+06 37870.37 9.016755e+02 0.000 520.25 42 0.000000e+00 0.00 5.170495e+06 5.132625e+06 37870.37 NULL
2024 Department Of Finance Computer Systems Manager 155552.90845 2.208851e+07 142808.01 1.005690e+03 0.000 1595.00 142 0.000000e+00 0.00 2.223132e+07 2.208851e+07 142808.01 NULL
2024 Department Of Finance Confidential Strategy Planner 89540.83333 5.372450e+05 113.57 1.892833e+01 0.000 2.50 6 0.000000e+00 0.00 5.373586e+05 5.372450e+05 113.57 NULL
2024 Department Of Finance Counsel 227193.00000 4.543860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.543860e+05 4.543860e+05 0.00 NULL
2024 Department Of Finance Deputy City Sheriff - Non-Spvr 74823.57246 1.032565e+07 4047538.86 2.932999e+04 23788.865 72960.79 138 2.378887e+04 3282863.37 1.437319e+07 1.360852e+07 764675.49 NULL
2024 Department Of Finance Deputy Commissioner 238578.75000 9.543150e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 9.543150e+05 9.543150e+05 0.00 NULL
2024 Department Of Finance Director Of Public Information 111698.00000 1.116980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.116980e+05 1.116980e+05 0.00 NULL
2024 Department Of Finance Director, Research Development And Policy Analysis 239961.00000 2.399610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.399610e+05 2.399610e+05 0.00 NULL
2024 Department Of Finance Disability Coordinator 98360.00000 9.836000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.836000e+04 9.836000e+04 0.00 NULL
2024 Department Of Finance Economist 80354.00000 1.607080e+05 1290.69 6.453450e+02 645.345 27.50 2 6.453450e+02 1290.69 1.619987e+05 1.619987e+05 0.00 NULL
2024 Department Of Finance Examiner Of Accounts 144627.00000 1.446270e+05 37.33 3.733000e+01 37.330 0.00 1 3.733000e+01 37.33 1.446643e+05 1.446643e+05 0.00 NULL
2024 Department Of Finance Exec Asst To The Commissioner Of Finance 117685.00000 1.176850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.176850e+05 1.176850e+05 0.00 NULL
2024 Department Of Finance Executive Agency Counsel 161552.16667 3.877252e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 3.877252e+06 3.877252e+06 0.00 NULL
2024 Department Of Finance Executive Program Specialist 145526.00000 4.365780e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.365780e+05 4.365780e+05 0.00 NULL
2024 Department Of Finance First Deputy Commissioner 259284.00000 2.592840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.592840e+05 2.592840e+05 0.00 NULL
2024 Department Of Finance Fraud Investigator 77690.00000 7.769000e+04 2110.45 2.110450e+03 2110.450 43.75 1 2.110450e+03 2110.45 7.980045e+04 7.980045e+04 0.00 NULL
2024 Department Of Finance Graphic Artist 96567.00000 1.931340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.931340e+05 1.931340e+05 0.00 NULL
2024 Department Of Finance Hearing Officer 59751.79686 5.616669e+06 0.00 0.000000e+00 0.000 0.00 94 0.000000e+00 0.00 5.616669e+06 5.616669e+06 0.00 NULL
2024 Department Of Finance High School Student Aide 5719.16000 2.287664e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.287664e+04 2.287664e+04 0.00 NULL
2024 Department Of Finance Investigator 53692.00000 1.073840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.073840e+05 1.073840e+05 0.00 NULL
2024 Department Of Finance It Project Specialist 141719.77778 1.275478e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.275478e+06 1.275478e+06 0.00 NULL
2024 Department Of Finance Labor Relations Analyst 89700.00000 8.970000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.970000e+04 8.970000e+04 0.00 NULL
2024 Department Of Finance Legal Secretarial Assistant 63577.50000 1.271550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.271550e+05 1.271550e+05 0.00 NULL
2024 Department Of Finance Management Auditor 79480.50000 1.589610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.589610e+05 1.589610e+05 0.00 NULL
2024 Department Of Finance Motor Vehicle Operator 53960.00000 1.079200e+05 9036.08 4.518040e+03 4518.040 243.75 2 4.518040e+03 9036.08 1.169561e+05 1.169561e+05 0.00 NULL
2024 Department Of Finance Motor Vehicle Supervisor 65252.00000 6.525200e+04 4903.86 4.903860e+03 4903.860 107.75 1 4.903860e+03 4903.86 7.015586e+04 7.015586e+04 0.00 NULL
2024 Department Of Finance Pension Investment Advisor 149541.50000 2.990830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.990830e+05 2.990830e+05 0.00 NULL
2024 Department Of Finance Principal Administrative Associate - Non Supvr 67328.67732 2.107388e+07 310135.71 9.908489e+02 0.000 6525.50 313 0.000000e+00 0.00 2.138401e+07 2.107388e+07 310135.71 NULL
2024 Department Of Finance Procurement Analyst 85687.64286 1.199627e+06 23760.35 1.697168e+03 0.000 355.75 14 0.000000e+00 0.00 1.223387e+06 1.199627e+06 23760.35 NULL
2024 Department Of Finance Public Records Aide 51237.00000 5.123700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.123700e+04 5.123700e+04 0.00 NULL
2024 Department Of Finance Secretary 54590.00000 5.459000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.459000e+04 5.459000e+04 0.00 NULL
2024 Department Of Finance Secretary To Deputy Commissioner 83239.50000 1.664790e+05 14510.72 7.255360e+03 7255.360 254.00 2 7.255360e+03 14510.72 1.809897e+05 1.809897e+05 0.00 NULL
2024 Department Of Finance Senior Director Collections 94190.00000 1.883800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.883800e+05 1.883800e+05 0.00 NULL
2024 Department Of Finance Special Officer 45164.50000 9.032900e+04 545.22 2.726100e+02 272.610 0.00 2 2.726100e+02 545.22 9.087422e+04 9.087422e+04 0.00 NULL
2024 Department Of Finance Staff Analyst 78346.26667 1.175194e+06 2431.08 1.620720e+02 0.000 50.25 15 0.000000e+00 0.00 1.177625e+06 1.175194e+06 2431.08 NULL
2024 Department Of Finance Summer College Intern 1983.32500 1.388327e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.388327e+04 1.388327e+04 0.00 NULL
2024 Department Of Finance Summer Graduate Intern 3123.41406 8.120877e+04 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 8.120877e+04 8.120877e+04 0.00 NULL
2024 Department Of Finance Supervising Deputy Sheriff - Al 1 Only 40 Hr 113727.13333 1.705907e+06 1102004.14 7.346694e+04 82984.570 13194.00 15 7.346694e+04 1102004.14 2.807911e+06 2.807911e+06 0.00 NULL
2024 Department Of Finance Supervising Special Officer 67454.40000 3.372720e+05 31076.52 6.215304e+03 3858.860 648.25 5 3.858860e+03 19294.30 3.683485e+05 3.565663e+05 11782.22 NULL
2024 Department Of Finance Tax Map Cartographer 89402.00000 1.788040e+05 282.53 1.412650e+02 141.265 6.50 2 1.412650e+02 282.53 1.790865e+05 1.790865e+05 0.00 NULL
2024 Department Of Finance Telecommunications Associate 66634.00000 6.663400e+04 15814.30 1.581430e+04 15814.300 335.75 1 1.581430e+04 15814.30 8.244830e+04 8.244830e+04 0.00 NULL
2024 Department Of Investigation Adm Manager-Non-Mgrl 101443.62500 8.115490e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.115490e+05 8.115490e+05 0.00 NULL
2024 Department Of Investigation Admin Community Relations Specialist 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2024 Department Of Investigation Administrative Community Relations Specialist 101295.00000 1.012950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.012950e+05 1.012950e+05 0.00 NULL
2024 Department Of Investigation Administrative Management Auditor 173690.00000 1.736900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.736900e+05 1.736900e+05 0.00 NULL
2024 Department Of Investigation Administrative Manager 137839.00000 4.135170e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.135170e+05 4.135170e+05 0.00 NULL
2024 Department Of Investigation Administrative Procurement Analyst-Non-Mgrl 105329.00000 1.053290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.053290e+05 1.053290e+05 0.00 NULL
2024 Department Of Investigation Administrative Public Information Specialist 149408.00000 2.988160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.988160e+05 2.988160e+05 0.00 NULL
2024 Department Of Investigation Administrative Staff Analyst 134909.50000 2.698190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.698190e+05 2.698190e+05 0.00 NULL
2024 Department Of Investigation Certified It Administrator 138020.00000 2.760400e+05 1365.09 6.825450e+02 682.545 14.25 2 6.825450e+02 1365.09 2.774051e+05 2.774051e+05 0.00 NULL
2024 Department Of Investigation Clerical Associate 57474.01333 5.172661e+05 798.44 8.871556e+01 0.000 25.25 9 0.000000e+00 0.00 5.180646e+05 5.172661e+05 798.44 NULL
2024 Department Of Investigation College Aide 1049.02333 3.147070e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.147070e+03 3.147070e+03 0.00 NULL
2024 Department Of Investigation Commissioner 270834.00000 2.708340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.708340e+05 2.708340e+05 0.00 NULL
2024 Department Of Investigation Community Assistant 34052.75000 6.810550e+04 261.65 1.308250e+02 130.825 9.00 2 1.308250e+02 261.65 6.836715e+04 6.836715e+04 0.00 NULL
2024 Department Of Investigation Community Associate 57455.68750 4.596455e+05 4725.34 5.906675e+02 0.000 126.75 8 0.000000e+00 0.00 4.643708e+05 4.596455e+05 4725.34 NULL
2024 Department Of Investigation Community Coordinator 85996.00000 1.719920e+05 55983.34 2.799167e+04 27991.670 899.00 2 2.799167e+04 55983.34 2.279753e+05 2.279753e+05 0.00 NULL
2024 Department Of Investigation Computer Associate 80848.20000 4.042410e+05 23453.24 4.690648e+03 1872.240 360.27 5 1.872240e+03 9361.20 4.276942e+05 4.136022e+05 14092.04 NULL
2024 Department Of Investigation Computer Operations Manager 106076.00000 1.060760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.060760e+05 1.060760e+05 0.00 NULL
2024 Department Of Investigation Computer Specialist 94760.00000 9.476000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.476000e+04 9.476000e+04 0.00 NULL
2024 Department Of Investigation Computer Systems Manager 140531.20000 1.405312e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.405312e+06 1.405312e+06 0.00 NULL
2024 Department Of Investigation Confidential Investigator 67752.93269 7.046305e+06 122033.63 1.173400e+03 12.260 2534.00 104 1.226000e+01 1275.04 7.168339e+06 7.047580e+06 120758.59 NULL
2024 Department Of Investigation Confidential Secretary To The Deputy Commissioner 94543.00000 9.454300e+04 1179.68 1.179680e+03 1179.680 23.25 1 1.179680e+03 1179.68 9.572268e+04 9.572268e+04 0.00 NULL
2024 Department Of Investigation Deputy Commissioner 213928.66667 6.417860e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.417860e+05 6.417860e+05 0.00 NULL
2024 Department Of Investigation Deputy Inspector General 125891.23077 4.909758e+06 19126.47 4.904223e+02 0.000 239.25 39 0.000000e+00 0.00 4.928884e+06 4.909758e+06 19126.47 NULL
2024 Department Of Investigation Examiner Of Accounts 159046.00000 1.590460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.590460e+05 1.590460e+05 0.00 NULL
2024 Department Of Investigation Examining Attorney 126542.73913 2.910483e+06 29215.74 1.270250e+03 0.000 420.25 23 0.000000e+00 0.00 2.939699e+06 2.910483e+06 29215.74 NULL
2024 Department Of Investigation Inspector General 171317.03704 4.625560e+06 38.91 1.441111e+00 0.000 0.00 27 0.000000e+00 0.00 4.625599e+06 4.625560e+06 38.91 NULL
2024 Department Of Investigation Principal Administrative Associate - Non Supvr 78408.58333 9.409030e+05 3535.79 2.946492e+02 0.000 105.75 12 0.000000e+00 0.00 9.444388e+05 9.409030e+05 3535.79 NULL
2024 Department Of Investigation Procurement Analyst 80566.00000 1.611320e+05 35.89 1.794500e+01 17.945 1.00 2 1.794500e+01 35.89 1.611679e+05 1.611679e+05 0.00 NULL
2024 Department Of Investigation Secretary 63597.00000 1.271940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.271940e+05 1.271940e+05 0.00 NULL
2024 Department Of Investigation Special Investigator 92238.26667 6.917870e+06 206819.12 2.757588e+03 402.010 3405.00 75 4.020100e+02 30150.75 7.124689e+06 6.948021e+06 176668.37 NULL
2024 Department Of Investigation Staff Analyst 79227.00000 1.584540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.584540e+05 1.584540e+05 0.00 NULL
2024 Department Of Probation *Attorney At Law 103741.00000 2.074820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.074820e+05 2.074820e+05 0.00 NULL
2024 Department Of Probation Adm Manager-Non-Mgrl 86990.92308 1.130882e+06 5126.54 3.943492e+02 0.000 99.25 13 0.000000e+00 0.00 1.136009e+06 1.130882e+06 5126.54 NULL
2024 Department Of Probation Administrative Director Of Social Services 164880.50000 3.297610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.297610e+05 3.297610e+05 0.00 NULL
2024 Department Of Probation Administrative Graphic Artist 115760.00000 1.157600e+05 1963.36 1.963360e+03 1963.360 22.75 1 1.963360e+03 1963.36 1.177234e+05 1.177234e+05 0.00 NULL
2024 Department Of Probation Administrative Probation Officer 110517.85714 6.189000e+06 0.00 0.000000e+00 0.000 0.00 56 0.000000e+00 0.00 6.189000e+06 6.189000e+06 0.00 NULL
2024 Department Of Probation Administrative Procurement Analyst-Non-Mgrl 78581.50000 1.571630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.571630e+05 1.571630e+05 0.00 NULL
2024 Department Of Probation Administrative Public Information Specialist 133427.00000 2.668540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.668540e+05 2.668540e+05 0.00 NULL
2024 Department Of Probation Administrative Staff Analyst 130679.66667 1.568156e+06 4248.30 3.540250e+02 0.000 42.00 12 0.000000e+00 0.00 1.572404e+06 1.568156e+06 4248.30 NULL
2024 Department Of Probation Agency Attorney 111879.12500 8.950330e+05 327.08 4.088500e+01 0.000 0.00 8 0.000000e+00 0.00 8.953601e+05 8.950330e+05 327.08 NULL
2024 Department Of Probation Agency Chief Contracting Officer 149485.00000 1.494850e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.494850e+05 1.494850e+05 0.00 NULL
2024 Department Of Probation Assistant Dir Of Administration 152550.00000 1.525500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.525500e+05 1.525500e+05 0.00 NULL
2024 Department Of Probation Assistant Director 197450.50000 3.949010e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.949010e+05 3.949010e+05 0.00 NULL
2024 Department Of Probation Associate Staff Analyst 92087.00000 2.762610e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.762610e+05 2.762610e+05 0.00 NULL
2024 Department Of Probation Certified It Administrator 106096.00000 1.060960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.060960e+05 1.060960e+05 0.00 NULL
2024 Department Of Probation City Attendant 46796.00000 4.679600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.679600e+04 4.679600e+04 0.00 NULL
2024 Department Of Probation City Laborer NA NA 25230.14 3.153767e+03 561.880 432.00 8 5.618800e+02 4495.04 NA NA NA NULL
2024 Department Of Probation City Research Scientist 124297.50000 7.457850e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.457850e+05 7.457850e+05 0.00 NULL
2024 Department Of Probation Clerical Associate 48253.34783 1.109827e+06 15142.49 6.583691e+02 0.000 480.00 23 0.000000e+00 0.00 1.124969e+06 1.109827e+06 15142.49 NULL
2024 Department Of Probation College Aide 11610.62115 1.509381e+05 113.25 8.711538e+00 0.000 3.50 13 0.000000e+00 0.00 1.510513e+05 1.509381e+05 113.25 NULL
2024 Department Of Probation Community Assistant 37075.16223 2.595261e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 2.595261e+05 2.595261e+05 0.00 NULL
2024 Department Of Probation Community Associate 49024.51923 2.549275e+06 45693.84 8.787277e+02 0.000 1484.75 52 0.000000e+00 0.00 2.594969e+06 2.549275e+06 45693.84 NULL
2024 Department Of Probation Community Coordinator 70828.61629 2.195687e+06 2799.75 9.031452e+01 0.000 69.00 31 0.000000e+00 0.00 2.198487e+06 2.195687e+06 2799.75 NULL
2024 Department Of Probation Community Service Aide 34697.33333 1.040920e+05 153.65 5.121667e+01 0.000 7.50 3 0.000000e+00 0.00 1.042456e+05 1.040920e+05 153.65 NULL
2024 Department Of Probation Computer Aide-Non-Spvr 53055.00000 5.305500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.305500e+04 5.305500e+04 0.00 NULL
2024 Department Of Probation Computer Associate 86201.00000 8.620100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.620100e+04 8.620100e+04 0.00 NULL
2024 Department Of Probation Computer Service Technician 55188.00000 1.103760e+05 645.73 3.228650e+02 322.865 17.50 2 3.228650e+02 645.73 1.110217e+05 1.110217e+05 0.00 NULL
2024 Department Of Probation Computer Specialist 116184.83333 6.971090e+05 4153.99 6.923317e+02 581.280 57.00 6 5.812800e+02 3487.68 7.012630e+05 7.005967e+05 666.31 NULL
2024 Department Of Probation Counsel 221959.50000 4.439190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.439190e+05 4.439190e+05 0.00 NULL
2024 Department Of Probation Deputy Commissioner, Strategic Initiatives 198222.00000 1.982220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.982220e+05 1.982220e+05 0.00 NULL
2024 Department Of Probation Deputy Director Of Probation 206338.33333 6.190150e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.190150e+05 6.190150e+05 0.00 NULL
2024 Department Of Probation Director Of Probation 259631.50000 5.192630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.192630e+05 5.192630e+05 0.00 NULL
2024 Department Of Probation District Supervisor 120000.00000 1.200000e+05 8683.38 8.683380e+03 8683.380 101.00 1 8.683380e+03 8683.38 1.286834e+05 1.286834e+05 0.00 NULL
2024 Department Of Probation Executive Agency Counsel 167661.88889 1.508957e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.508957e+06 1.508957e+06 0.00 NULL
2024 Department Of Probation Executive Dir Of Administration 199777.00000 3.995540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.995540e+05 3.995540e+05 0.00 NULL
2024 Department Of Probation Investigator 50491.50000 1.009830e+05 50.60 2.530000e+01 25.300 2.00 2 2.530000e+01 50.60 1.010336e+05 1.010336e+05 0.00 NULL
2024 Department Of Probation It Project Specialist 81955.00000 8.195500e+04 714.25 7.142500e+02 714.250 15.50 1 7.142500e+02 714.25 8.266925e+04 8.266925e+04 0.00 NULL
2024 Department Of Probation It Security Specialist 103765.00000 1.037650e+05 137.85 1.378500e+02 137.850 2.50 1 1.378500e+02 137.85 1.039029e+05 1.039029e+05 0.00 NULL
2024 Department Of Probation New York City Public Service Fellow 47620.66667 1.428620e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.428620e+05 1.428620e+05 0.00 NULL
2024 Department Of Probation Press Officer 135543.00000 1.355430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.355430e+05 1.355430e+05 0.00 NULL
2024 Department Of Probation Principal Administrative Associate - Non Supvr 66167.96774 2.051207e+06 60578.51 1.954145e+03 29.760 1403.50 31 2.976000e+01 922.56 2.111786e+06 2.052130e+06 59655.95 NULL
2024 Department Of Probation Probation Adjunct Trainer 7751.71562 6.201372e+04 162.50 2.031250e+01 0.000 5.00 8 0.000000e+00 0.00 6.217622e+04 6.201372e+04 162.50 NULL
2024 Department Of Probation Probation Assistant 33774.85714 7.092720e+05 5161.75 2.457976e+02 0.000 220.25 21 0.000000e+00 0.00 7.144338e+05 7.092720e+05 5161.75 NULL
2024 Department Of Probation Probation Officer 56626.39388 2.961560e+07 1731222.27 3.310176e+03 1021.450 43235.50 523 1.021450e+03 534218.35 3.134683e+07 3.014982e+07 1197003.92 NULL
2024 Department Of Probation Probation Officer Trainee 41873.37037 2.261162e+06 117181.21 2.170022e+03 489.225 3924.25 54 4.892250e+02 26418.15 2.378343e+06 2.287580e+06 90763.06 NULL
2024 Department Of Probation Procurement Analyst 64158.00000 6.415800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.415800e+04 6.415800e+04 0.00 NULL
2024 Department Of Probation Project Director 101100.00000 1.011000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.011000e+05 1.011000e+05 0.00 NULL
2024 Department Of Probation Research Assistant 57086.00000 5.708600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.708600e+04 5.708600e+04 0.00 NULL
2024 Department Of Probation Secretary 45995.25000 3.679620e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 3.679620e+05 3.679620e+05 0.00 NULL
2024 Department Of Probation Senior Consultant 94028.50000 1.880570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.880570e+05 1.880570e+05 0.00 NULL
2024 Department Of Probation Senior It Architect 175100.00000 1.751000e+05 604.81 6.048100e+02 604.810 6.00 1 6.048100e+02 604.81 1.757048e+05 1.757048e+05 0.00 NULL
2024 Department Of Probation Senior Mental Health Worker 54532.50000 1.090650e+05 510.59 2.552950e+02 255.295 13.25 2 2.552950e+02 510.59 1.095756e+05 1.095756e+05 0.00 NULL
2024 Department Of Probation Staff Analyst 77428.60000 3.871430e+05 8445.26 1.689052e+03 0.000 125.00 5 0.000000e+00 0.00 3.955883e+05 3.871430e+05 8445.26 NULL
2024 Department Of Probation Stock Worker 40175.00000 4.017500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.017500e+04 4.017500e+04 0.00 NULL
2024 Department Of Probation Strategic Initiative Specialist 97906.00000 1.958120e+05 368.49 1.842450e+02 184.245 8.50 2 1.842450e+02 368.49 1.961805e+05 1.961805e+05 0.00 NULL
2024 Department Of Probation Summer College Intern 4616.63625 1.107993e+05 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 1.107993e+05 1.107993e+05 0.00 NULL
2024 Department Of Probation Summer Graduate Intern 5781.94000 3.469164e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.469164e+04 3.469164e+04 0.00 NULL
2024 Department Of Probation Supervising Computer Service Technician 88570.00000 8.857000e+04 479.98 4.799800e+02 479.980 9.50 1 4.799800e+02 479.98 8.904998e+04 8.904998e+04 0.00 NULL
2024 Department Of Probation Supervising Probation Officer 74198.11053 1.409764e+07 875713.88 4.609020e+03 2872.510 16817.00 190 2.872510e+03 545776.90 1.497335e+07 1.464342e+07 329936.98 NULL
2024 Department Of Probation Supervisor Of Mechanical Installations & Maintenance 93000.00000 9.300000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.300000e+04 9.300000e+04 0.00 NULL
2024 Department Of Sanitation *Attorney At Law 118850.00000 2.377000e+05 12.74 6.370000e+00 6.370 0.00 2 6.370000e+00 12.74 2.377127e+05 2.377127e+05 0.00 NULL
2024 Department Of Sanitation Accountant 73638.00000 2.945520e+05 428.86 1.072150e+02 23.130 9.00 4 2.313000e+01 92.52 2.949809e+05 2.946445e+05 336.34 NULL
2024 Department Of Sanitation Adm Manager-Non-Mgrl 94054.68000 2.351367e+06 229356.84 9.174274e+03 4313.120 3493.00 25 4.313120e+03 107828.00 2.580724e+06 2.459195e+06 121528.84 NULL
2024 Department Of Sanitation Admin Community Relations Specialist 116942.87500 9.355430e+05 46081.07 5.760134e+03 5088.705 623.00 8 5.088705e+03 40709.64 9.816241e+05 9.762526e+05 5371.43 NULL
2024 Department Of Sanitation Administrative Accountant 124651.33333 3.739540e+05 21922.13 7.307377e+03 0.000 245.25 3 0.000000e+00 0.00 3.958761e+05 3.739540e+05 21922.13 NULL
2024 Department Of Sanitation Administrative Architect 143745.66667 8.624740e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.624740e+05 8.624740e+05 0.00 NULL
2024 Department Of Sanitation Administrative Business Promotion Coordinator 107854.00000 3.235620e+05 6366.62 2.122207e+03 0.000 108.00 3 0.000000e+00 0.00 3.299286e+05 3.235620e+05 6366.62 NULL
2024 Department Of Sanitation Administrative City Planner 143007.00000 1.001049e+06 27563.03 3.937576e+03 0.000 302.75 7 0.000000e+00 0.00 1.028612e+06 1.001049e+06 27563.03 NULL
2024 Department Of Sanitation Administrative Construction Project Manager 191973.00000 3.839460e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.839460e+05 3.839460e+05 0.00 NULL
2024 Department Of Sanitation Administrative Contract Specialist 85701.00000 8.570100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.570100e+04 8.570100e+04 0.00 NULL
2024 Department Of Sanitation Administrative Engineer 180631.20000 2.709468e+06 1050.40 7.002667e+01 0.000 14.00 15 0.000000e+00 0.00 2.710518e+06 2.709468e+06 1050.40 NULL
2024 Department Of Sanitation Administrative Management Auditor 91708.75000 3.668350e+05 3756.07 9.390175e+02 106.335 78.00 4 1.063350e+02 425.34 3.705911e+05 3.672603e+05 3330.73 NULL
2024 Department Of Sanitation Administrative Procurement Analyst 135747.50000 2.714950e+05 266.04 1.330200e+02 133.020 3.00 2 1.330200e+02 266.04 2.717610e+05 2.717610e+05 0.00 NULL
2024 Department Of Sanitation Administrative Procurement Analyst-Non-Mgrl 106412.77778 9.577150e+05 38705.26 4.300584e+03 1464.910 549.50 9 1.464910e+03 13184.19 9.964203e+05 9.708992e+05 25521.07 NULL
2024 Department Of Sanitation Administrative Project Manager 132369.54545 2.912130e+06 1194.50 5.429545e+01 0.000 15.75 22 0.000000e+00 0.00 2.913324e+06 2.912130e+06 1194.50 NULL
2024 Department Of Sanitation Administrative Public Information Specialist 159170.50000 3.183410e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.183410e+05 3.183410e+05 0.00 NULL
2024 Department Of Sanitation Administrative Staff Analyst 133767.25299 1.030008e+07 189065.81 2.455400e+03 0.000 2007.00 77 0.000000e+00 0.00 1.048914e+07 1.030008e+07 189065.81 NULL
2024 Department Of Sanitation Administrative Supervisor Of Building Maintenance 161684.33333 4.850530e+05 296.75 9.891667e+01 0.000 0.00 3 0.000000e+00 0.00 4.853498e+05 4.850530e+05 296.75 NULL
2024 Department Of Sanitation Agency Attorney 115847.66667 1.390172e+06 13223.53 1.101961e+03 6.790 88.25 12 6.790000e+00 81.48 1.403396e+06 1.390253e+06 13142.05 NULL
2024 Department Of Sanitation Agency Chief Contracting Officer 205953.00000 2.059530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.059530e+05 2.059530e+05 0.00 NULL
2024 Department Of Sanitation Agency Chief Decarbonization Officer 164800.00000 1.648000e+05 1083.86 1.083860e+03 1083.860 14.50 1 1.083860e+03 1083.86 1.658839e+05 1.658839e+05 0.00 NULL
2024 Department Of Sanitation Assistant Architect 73878.00000 7.387800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.387800e+04 7.387800e+04 0.00 NULL
2024 Department Of Sanitation Assistant Civil Engineer 83127.50000 1.662550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.662550e+05 1.662550e+05 0.00 NULL
2024 Department Of Sanitation Assistant Commissioner 203348.00000 8.133920e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.133920e+05 8.133920e+05 0.00 NULL
2024 Department Of Sanitation Assistant Electrical Engineer 87701.00000 8.770100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.770100e+04 8.770100e+04 0.00 NULL
2024 Department Of Sanitation Assistant Mechanical Engineer 79967.00000 7.996700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.996700e+04 7.996700e+04 0.00 NULL
2024 Department Of Sanitation Assistant To The Commissioner 96642.00000 1.932840e+05 6990.28 3.495140e+03 3495.140 120.75 2 3.495140e+03 6990.28 2.002743e+05 2.002743e+05 0.00 NULL
2024 Department Of Sanitation Associate Fraud Investigator 99016.00000 9.901600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.901600e+04 9.901600e+04 0.00 NULL
2024 Department Of Sanitation Associate Project Manager 98058.25556 8.825243e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.825243e+05 8.825243e+05 0.00 NULL
2024 Department Of Sanitation Associate Sanitation Enforcement Agent 52777.02632 4.011054e+06 285029.45 3.750387e+03 1586.360 3781.25 76 1.586360e+03 120563.36 4.296083e+06 4.131617e+06 164466.09 NULL
2024 Department Of Sanitation Associate Staff Analyst 97427.40000 2.435685e+06 53772.66 2.150906e+03 24.370 705.75 25 2.437000e+01 609.25 2.489458e+06 2.436294e+06 53163.41 NULL
2024 Department Of Sanitation Auto Machinist NA NA 71465.44 1.020935e+04 8502.330 882.00 7 8.502330e+03 59516.31 NA NA NA NULL
2024 Department Of Sanitation Auto Mechanic NA NA 7276815.46 1.166156e+04 10203.360 93048.00 624 1.020336e+04 6366896.64 NA NA NA NULL
2024 Department Of Sanitation Automotive Service Worker 48047.75000 1.921910e+05 3643.49 9.108725e+02 0.000 109.50 4 0.000000e+00 0.00 1.958345e+05 1.921910e+05 3643.49 NULL
2024 Department Of Sanitation Blacksmith NA NA 1528.53 1.528530e+03 1528.530 0.00 1 1.528530e+03 1528.53 NA NA NA NULL
2024 Department Of Sanitation Bookkeeper 56723.09091 6.239540e+05 5342.54 4.856855e+02 28.190 154.00 11 2.819000e+01 310.09 6.292965e+05 6.242641e+05 5032.45 NULL
2024 Department Of Sanitation Carpenter NA NA 1112532.64 7.946662e+04 79097.845 11420.50 14 7.909785e+04 1107369.83 NA NA NA NULL
2024 Department Of Sanitation Carriage Upholsterer NA NA 1992.84 1.992840e+03 1992.840 28.00 1 1.992840e+03 1992.84 NA NA NA NULL
2024 Department Of Sanitation Cement Mason NA NA 406410.36 6.773506e+04 48151.580 3519.00 6 4.815158e+04 288909.48 NA NA NA NULL
2024 Department Of Sanitation Certified It Administrator 142943.50000 2.001209e+06 560661.90 4.004728e+04 41946.295 6736.50 14 4.004728e+04 560661.90 2.561871e+06 2.561871e+06 0.00 NULL
2024 Department Of Sanitation Certified It Developer 149601.00000 3.440823e+06 82131.83 3.570949e+03 581.420 1157.25 23 5.814200e+02 13372.66 3.522955e+06 3.454196e+06 68759.17 NULL
2024 Department Of Sanitation Chaplain 33223.75000 1.328950e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.328950e+05 1.328950e+05 0.00 NULL
2024 Department Of Sanitation City Attendant 42429.22500 1.697169e+06 122231.11 3.055778e+03 753.145 4020.50 40 7.531450e+02 30125.80 1.819400e+06 1.727295e+06 92105.31 NULL
2024 Department Of Sanitation City Custodial Assistant 50434.00000 5.043400e+04 12384.97 1.238497e+04 12384.970 315.50 1 1.238497e+04 12384.97 6.281897e+04 6.281897e+04 0.00 NULL
2024 Department Of Sanitation City Deputy Medical Director 179040.00000 1.790400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.790400e+05 1.790400e+05 0.00 NULL
2024 Department Of Sanitation City Laborer NA NA 133607.53 1.113396e+04 5981.265 2230.00 12 5.981265e+03 71775.18 NA NA NA NULL
2024 Department Of Sanitation City Medical Specialist 89703.69809 1.076444e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.076444e+06 1.076444e+06 0.00 NULL
2024 Department Of Sanitation City Planner 88405.50000 1.768110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.768110e+05 1.768110e+05 0.00 NULL
2024 Department Of Sanitation City Research Scientist 102426.12500 8.194090e+05 11608.56 1.451070e+03 659.795 177.00 8 6.597950e+02 5278.36 8.310176e+05 8.246874e+05 6330.20 NULL
2024 Department Of Sanitation City Seasonal Aide 131.29247 3.032856e+04 0.00 0.000000e+00 0.000 0.00 231 0.000000e+00 0.00 3.032856e+04 3.032856e+04 0.00 NULL
2024 Department Of Sanitation Civil Engineer 121918.33333 3.657550e+05 756.77 2.522567e+02 0.000 10.00 3 0.000000e+00 0.00 3.665118e+05 3.657550e+05 756.77 NULL
2024 Department Of Sanitation Clerical Aide 43830.00000 4.383000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.383000e+04 4.383000e+04 0.00 NULL
2024 Department Of Sanitation Clerical Associate 47798.39779 8.651510e+06 1247171.69 6.890451e+03 4568.170 35457.25 181 4.568170e+03 826838.77 9.898682e+06 9.478349e+06 420332.92 NULL
2024 Department Of Sanitation College Aide 8821.47367 3.881448e+05 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 3.881448e+05 3.881448e+05 0.00 NULL
2024 Department Of Sanitation College Aide - Assignment Levels Ii And Iii 17067.67445 1.365414e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.365414e+05 1.365414e+05 0.00 NULL
2024 Department Of Sanitation Commissioner Of Sanitation 277605.00000 2.776050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.776050e+05 2.776050e+05 0.00 NULL
2024 Department Of Sanitation Community Assistant 43417.75000 3.473420e+05 533.90 6.673750e+01 0.000 16.00 8 0.000000e+00 0.00 3.478759e+05 3.473420e+05 533.90 NULL
2024 Department Of Sanitation Community Associate 53496.66667 4.814700e+05 13996.64 1.555182e+03 0.000 355.25 9 0.000000e+00 0.00 4.954666e+05 4.814700e+05 13996.64 NULL
2024 Department Of Sanitation Community Coordinator 75087.07273 4.129789e+06 111445.92 2.026289e+03 271.320 2135.25 55 2.713200e+02 14922.60 4.241235e+06 4.144712e+06 96523.32 NULL
2024 Department Of Sanitation Computer Associate 87488.93750 1.399823e+06 54151.35 3.384459e+03 505.025 741.25 16 5.050250e+02 8080.40 1.453974e+06 1.407903e+06 46070.95 NULL
2024 Department Of Sanitation Computer Operations Manager 133460.20000 6.673010e+05 3551.69 7.103380e+02 509.880 72.25 5 5.098800e+02 2549.40 6.708527e+05 6.698504e+05 1002.29 NULL
2024 Department Of Sanitation Computer Specialist 122009.10000 3.660273e+06 285261.38 9.508713e+03 7349.655 3847.25 30 7.349655e+03 220489.65 3.945534e+06 3.880763e+06 64771.73 NULL
2024 Department Of Sanitation Computer Systems Manager 166126.69492 9.801475e+06 96837.51 1.641314e+03 0.000 1004.50 59 0.000000e+00 0.00 9.898313e+06 9.801475e+06 96837.51 NULL
2024 Department Of Sanitation Confidential Assistant To The Commissioner 165892.00000 1.658920e+05 12.28 1.228000e+01 12.280 0.00 1 1.228000e+01 12.28 1.659043e+05 1.659043e+05 0.00 NULL
2024 Department Of Sanitation Construction Laborer NA NA 129380.95 1.617262e+04 17816.985 1653.00 8 1.617262e+04 129380.95 NA NA NA NULL
2024 Department Of Sanitation Construction Project Manager 105887.00000 7.412090e+05 10407.74 1.486820e+03 39.860 132.00 7 3.986000e+01 279.02 7.516167e+05 7.414880e+05 10128.72 NULL
2024 Department Of Sanitation Custodian 41520.00000 4.152000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.152000e+04 4.152000e+04 0.00 NULL
2024 Department Of Sanitation Dep Dir Mtr Eq Mntc 188577.00000 1.885770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.885770e+05 1.885770e+05 0.00 NULL
2024 Department Of Sanitation Deputy Administrator 156536.00000 1.565360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.565360e+05 1.565360e+05 0.00 NULL
2024 Department Of Sanitation Deputy Commissioner 256525.50000 1.026102e+06 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.026102e+06 1.026102e+06 0.00 NULL
2024 Department Of Sanitation Deputy Director Of Motor Equipment Maintenance 171063.00000 3.421260e+05 3955.28 1.977640e+03 1977.640 25.50 2 1.977640e+03 3955.28 3.460813e+05 3.460813e+05 0.00 NULL
2024 Department Of Sanitation Director 157556.00000 1.575560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.575560e+05 1.575560e+05 0.00 NULL
2024 Department Of Sanitation Director Of Building Management 161649.00000 1.616490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.616490e+05 1.616490e+05 0.00 NULL
2024 Department Of Sanitation Director Of Motor Equipment Maintenance-Nm 207047.00000 4.140940e+05 23705.18 1.185259e+04 11852.590 140.50 2 1.185259e+04 23705.18 4.377992e+05 4.377992e+05 0.00 NULL
2024 Department Of Sanitation Economist 100173.50000 2.003470e+05 12075.32 6.037660e+03 6037.660 168.75 2 6.037660e+03 12075.32 2.124223e+05 2.124223e+05 0.00 NULL
2024 Department Of Sanitation Electrical Engineer 116782.00000 1.167820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.167820e+05 1.167820e+05 0.00 NULL
2024 Department Of Sanitation Electrician NA NA 1333895.80 2.186714e+04 16562.630 15393.00 61 1.656263e+04 1010320.43 NA NA NA NULL
2024 Department Of Sanitation Employee Assistance Program Specialist 97062.00000 9.706200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.706200e+04 9.706200e+04 0.00 NULL
2024 Department Of Sanitation Estimator 91547.00000 1.830940e+05 9480.77 4.740385e+03 4740.385 185.00 2 4.740385e+03 9480.77 1.925748e+05 1.925748e+05 0.00 NULL
2024 Department Of Sanitation Executive Agency Counsel 173983.72727 1.913821e+06 -6358.92 -5.780836e+02 0.000 0.00 11 -5.780836e+02 -6358.92 1.907462e+06 1.907462e+06 0.00 NULL
2024 Department Of Sanitation Executive Assistant To The Commissioner 191741.40000 9.587070e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.587070e+05 9.587070e+05 0.00 NULL
2024 Department Of Sanitation General Superintendent 159172.44000 4.377242e+07 6920043.45 2.516379e+04 12970.720 69018.40 275 1.297072e+04 3566948.00 5.069246e+07 4.733937e+07 3353095.45 NULL
2024 Department Of Sanitation Graphic Artist 99479.50000 3.979180e+05 190.07 4.751750e+01 30.060 3.50 4 3.006000e+01 120.24 3.981081e+05 3.980382e+05 69.83 NULL
2024 Department Of Sanitation High Pressure Plant Tender NA NA 211066.06 4.221321e+04 50617.120 3540.00 5 4.221321e+04 211066.06 NA NA NA NULL
2024 Department Of Sanitation High School Student Aide 6617.88000 5.294304e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.294304e+04 5.294304e+04 0.00 NULL
2024 Department Of Sanitation Investigator 64190.00000 5.777100e+05 39027.72 4.336413e+03 63.240 820.50 9 6.324000e+01 569.16 6.167377e+05 5.782792e+05 38458.56 NULL
2024 Department Of Sanitation It Infrastructure Engineer 121540.00000 1.215400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.215400e+05 1.215400e+05 0.00 NULL
2024 Department Of Sanitation It Project Specialist 130980.83333 7.858850e+05 7573.74 1.262290e+03 0.000 82.50 6 0.000000e+00 0.00 7.934587e+05 7.858850e+05 7573.74 NULL
2024 Department Of Sanitation Job Training Participant 3149.40838 1.776266e+06 90.98 1.613121e-01 0.000 0.00 564 0.000000e+00 0.00 1.776357e+06 1.776266e+06 90.98 NULL
2024 Department Of Sanitation Laboratory Associate 50360.66667 1.510820e+05 13954.28 4.651427e+03 124.370 414.00 3 1.243700e+02 373.11 1.650363e+05 1.514551e+05 13581.17 NULL
2024 Department Of Sanitation Laboratory Microbiologist 65711.00000 1.314220e+05 4505.95 2.252975e+03 2252.975 103.75 2 2.252975e+03 4505.95 1.359280e+05 1.359280e+05 0.00 NULL
2024 Department Of Sanitation Letterer And Sign Painter NA NA 75316.28 2.510543e+04 30576.080 1314.00 3 2.510543e+04 75316.28 NA NA NA NULL
2024 Department Of Sanitation Machinist NA NA 630317.75 2.424299e+04 14495.230 8454.00 26 1.449523e+04 376875.98 NA NA NA NULL
2024 Department Of Sanitation Maintenance Worker NA NA 318706.21 1.517649e+04 9483.610 5956.50 21 9.483610e+03 199155.81 NA NA NA NULL
2024 Department Of Sanitation Management Auditor 91230.50000 3.649220e+05 1993.50 4.983750e+02 0.000 40.00 4 0.000000e+00 0.00 3.669155e+05 3.649220e+05 1993.50 NULL
2024 Department Of Sanitation Medical Director 221175.00000 2.211750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.211750e+05 2.211750e+05 0.00 NULL
2024 Department Of Sanitation Medical Record Librarian 63596.00000 2.543840e+05 33.24 8.310000e+00 0.040 1.00 4 4.000000e-02 0.16 2.544172e+05 2.543842e+05 33.08 NULL
2024 Department Of Sanitation Metal Work Mechanic 112261.40741 6.062116e+06 855363.84 1.584007e+04 12665.935 9224.50 54 1.266593e+04 683960.49 6.917480e+06 6.746076e+06 171403.35 NULL
2024 Department Of Sanitation Motor Vehicle Operator 56357.00000 1.690710e+05 7668.91 2.556303e+03 1986.390 180.00 3 1.986390e+03 5959.17 1.767399e+05 1.750302e+05 1709.74 NULL
2024 Department Of Sanitation Oiler NA NA 88486.64 2.212166e+04 1917.585 852.00 4 1.917585e+03 7670.34 NA NA NA NULL
2024 Department Of Sanitation Painter NA NA 192780.60 4.819515e+04 43749.950 2352.50 4 4.374995e+04 174999.80 NA NA NA NULL
2024 Department Of Sanitation Plumber NA NA 444943.49 2.780897e+04 27661.185 3629.50 16 2.766119e+04 442578.96 NA NA NA NULL
2024 Department Of Sanitation Principal Administrative Associate - Non Supvr 68578.20312 4.389005e+06 492367.33 7.693240e+03 1414.405 9588.50 64 1.414405e+03 90521.92 4.881372e+06 4.479527e+06 401845.41 NULL
2024 Department Of Sanitation Procurement Analyst 74128.25141 1.704950e+06 31198.35 1.356450e+03 77.600 605.50 23 7.760000e+01 1784.80 1.736148e+06 1.706735e+06 29413.55 NULL
2024 Department Of Sanitation Public Records Aide 53628.00000 5.362800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.362800e+04 5.362800e+04 0.00 NULL
2024 Department Of Sanitation Research Assistant 65604.00000 1.968120e+05 5419.97 1.806657e+03 0.000 151.75 3 0.000000e+00 0.00 2.022320e+05 1.968120e+05 5419.97 NULL
2024 Department Of Sanitation Rubber Tire Repairer NA NA 42275.25 3.843205e+03 4333.710 729.00 11 3.843205e+03 42275.25 NA NA NA NULL
2024 Department Of Sanitation Sanitation Compliance Agent 42396.44444 3.815680e+05 588.22 6.535778e+01 47.520 25.00 9 4.752000e+01 427.68 3.821562e+05 3.819957e+05 160.54 NULL
2024 Department Of Sanitation Sanitation Enforcement Agent 40214.21359 8.284128e+06 179137.84 8.696012e+02 244.205 2918.75 206 2.442050e+02 50306.23 8.463266e+06 8.334434e+06 128831.61 NULL
2024 Department Of Sanitation Sanitation Worker 76048.64233 5.666384e+08 101475251.52 1.361901e+04 11918.220 1295530.39 7451 1.191822e+04 88802657.22 6.681137e+08 6.554411e+08 12672594.30 NULL
2024 Department Of Sanitation Secretary 59919.20000 2.995960e+05 1913.13 3.826260e+02 0.000 69.50 5 0.000000e+00 0.00 3.015091e+05 2.995960e+05 1913.13 NULL
2024 Department Of Sanitation Secretary To The Commissioner 97771.00000 9.777100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.777100e+04 9.777100e+04 0.00 NULL
2024 Department Of Sanitation Senior Automotive Specialist 106445.00000 1.064450e+05 23682.27 2.368227e+04 23682.270 332.00 1 2.368227e+04 23682.27 1.301273e+05 1.301273e+05 0.00 NULL
2024 Department Of Sanitation Senior Photographer 79217.00000 7.921700e+04 696.31 6.963100e+02 696.310 12.75 1 6.963100e+02 696.31 7.991331e+04 7.991331e+04 0.00 NULL
2024 Department Of Sanitation Senior Stationary Engineer NA NA 268567.78 6.714195e+04 74823.475 2068.00 4 6.714195e+04 268567.78 NA NA NA NULL
2024 Department Of Sanitation Sheet Metal Worker NA NA 508060.98 7.258014e+04 59668.810 3823.00 7 5.966881e+04 417681.67 NA NA NA NULL
2024 Department Of Sanitation Staff Analyst 77122.64286 1.079717e+06 8769.02 6.263586e+02 11.355 159.50 14 1.135500e+01 158.97 1.088486e+06 1.079876e+06 8610.05 NULL
2024 Department Of Sanitation Staff Nurse 112861.20000 5.643060e+05 4740.72 9.481440e+02 401.640 55.50 5 4.016400e+02 2008.20 5.690467e+05 5.663142e+05 2732.52 NULL
2024 Department Of Sanitation Stationary Engineer NA NA 1482119.19 4.781030e+04 50678.450 12738.50 31 4.781030e+04 1482119.19 NA NA NA NULL
2024 Department Of Sanitation Statistician 72495.00000 7.249500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.249500e+04 7.249500e+04 0.00 NULL
2024 Department Of Sanitation Steam Fitter NA NA 413218.50 4.591317e+04 22816.500 2597.50 9 2.281650e+04 205348.50 NA NA NA NULL
2024 Department Of Sanitation Stock Worker 47338.80000 2.366940e+05 63173.95 1.263479e+04 12237.370 1929.00 5 1.223737e+04 61186.85 2.998680e+05 2.978808e+05 1987.10 NULL
2024 Department Of Sanitation Summer College Intern 4545.14224 1.318091e+05 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 1.318091e+05 1.318091e+05 0.00 NULL
2024 Department Of Sanitation Summer Graduate Intern 7644.10483 6.115284e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.115284e+04 6.115284e+04 0.00 NULL
2024 Department Of Sanitation Supervising Computer Service Technician 96554.00000 9.655400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.655400e+04 9.655400e+04 0.00 NULL
2024 Department Of Sanitation Supervisor 111971.18498 1.222725e+08 32260710.28 2.954277e+04 26221.275 392278.71 1092 2.622128e+04 28633632.30 1.545332e+08 1.509062e+08 3627077.98 NULL
2024 Department Of Sanitation Supervisor Bricklayer NA NA 18570.55 1.857055e+04 18570.550 207.50 1 1.857055e+04 18570.55 NA NA NA NULL
2024 Department Of Sanitation Supervisor Carpenter NA NA 567.89 5.678900e+02 567.890 0.00 1 5.678900e+02 567.89 NA NA NA NULL
2024 Department Of Sanitation Supervisor Electrician NA NA 189852.26 6.328409e+04 61957.180 1792.50 3 6.195718e+04 185871.54 NA NA NA NULL
2024 Department Of Sanitation Supervisor Of Ironwork 139491.33333 4.184740e+05 178309.08 5.943636e+04 33198.700 1576.50 3 3.319870e+04 99596.10 5.967831e+05 5.180701e+05 78712.98 NULL
2024 Department Of Sanitation Supervisor Of Mechanics 143244.90476 1.203257e+07 1835401.66 2.185002e+04 18642.340 15642.67 84 1.864234e+04 1565956.56 1.386797e+07 1.359853e+07 269445.10 NULL
2024 Department Of Sanitation Supervisor Of Office Machine Operations 64136.00000 1.924080e+05 2609.49 8.698300e+02 151.460 67.75 3 1.514600e+02 454.38 1.950175e+05 1.928624e+05 2155.11 NULL
2024 Department Of Sanitation Supervisor Of Stock Workers 56921.38462 7.399780e+05 226793.40 1.744565e+04 15509.580 5278.75 13 1.550958e+04 201624.54 9.667714e+05 9.416025e+05 25168.86 NULL
2024 Department Of Sanitation Supervisor Painter NA NA 694.95 6.949500e+02 694.950 0.00 1 6.949500e+02 694.95 NA NA NA NULL
2024 Department Of Sanitation Supervisor Plumber NA NA 86769.30 4.338465e+04 43384.650 698.75 2 4.338465e+04 86769.30 NA NA NA NULL
2024 Department Of Sanitation Supervisor Sheet Metal Worker NA NA 243329.45 2.433295e+05 243329.450 1764.50 1 2.433295e+05 243329.45 NA NA NA NULL
2024 Department Of Sanitation Supervisor Steamfitter NA NA 131691.92 1.316919e+05 131691.920 868.75 1 1.316919e+05 131691.92 NA NA NA NULL
2024 Department Of Sanitation Telecommunication Manager 238397.00000 2.383970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.383970e+05 2.383970e+05 0.00 NULL
2024 Department Of Sanitation Telecommunications Associate 89764.28571 6.283500e+05 61443.94 8.777706e+03 2167.360 807.00 7 2.167360e+03 15171.52 6.897939e+05 6.435215e+05 46272.42 NULL
2024 Department Of Sanitation Thermostat Repairer NA NA 24831.55 2.483155e+04 24831.550 203.50 1 2.483155e+04 24831.55 NA NA NA NULL
2024 Department Of Sanitation Tractor Operator NA NA 46790.99 9.358198e+03 2331.720 301.00 5 2.331720e+03 11658.60 NA NA NA NULL
2024 Department Of Sanitation Welder NA NA 64732.51 3.236626e+04 32366.255 652.00 2 3.236626e+04 64732.51 NA NA NA NULL
2024 Department Of Transportation Accountant 75178.14286 1.578741e+06 29581.22 1.408630e+03 0.000 571.75 21 0.000000e+00 0.00 1.608322e+06 1.578741e+06 29581.22 NULL
2024 Department Of Transportation Actuarial Specialist Level I 70019.00000 7.001900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.001900e+04 7.001900e+04 0.00 NULL
2024 Department Of Transportation Adm Manager-Non-Mgrl 98279.58595 2.142495e+07 1264564.50 5.800755e+03 226.640 18692.75 218 2.266400e+02 49407.52 2.268951e+07 2.147436e+07 1215156.98 NULL
2024 Department Of Transportation Admin Community Relations Specialist 97386.48800 2.434662e+06 144634.51 5.785380e+03 2225.270 2168.50 25 2.225270e+03 55631.75 2.579297e+06 2.490294e+06 89002.76 NULL
2024 Department Of Transportation Admin Construction Project Manager 131635.20000 6.581760e+05 117352.95 2.347059e+04 16929.530 1362.75 5 1.692953e+04 84647.65 7.755289e+05 7.428237e+05 32705.30 NULL
2024 Department Of Transportation Admin Inspector 123169.27273 1.354862e+06 384112.96 3.491936e+04 30041.960 4564.00 11 3.004196e+04 330461.56 1.738975e+06 1.685324e+06 53651.40 NULL
2024 Department Of Transportation Administrative Accountant 123870.71429 8.670950e+05 2051.38 2.930543e+02 0.000 32.00 7 0.000000e+00 0.00 8.691464e+05 8.670950e+05 2051.38 NULL
2024 Department Of Transportation Administrative Architect 139815.50000 2.796310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.796310e+05 2.796310e+05 0.00 NULL
2024 Department Of Transportation Administrative City Planner 131048.29577 9.304429e+06 215023.15 3.028495e+03 0.000 3161.50 71 0.000000e+00 0.00 9.519452e+06 9.304429e+06 215023.15 NULL
2024 Department Of Transportation Administrative Claim Examiner 113300.00000 1.133000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133000e+05 1.133000e+05 0.00 NULL
2024 Department Of Transportation Administrative Community Relations Specialist 218585.25000 8.743410e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.743410e+05 8.743410e+05 0.00 NULL
2024 Department Of Transportation Administrative Construction Project Manager 167740.00000 3.354800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.354800e+05 3.354800e+05 0.00 NULL
2024 Department Of Transportation Administrative Contract Specialist 120716.66667 3.621500e+05 60112.95 2.003765e+04 6303.720 672.50 3 6.303720e+03 18911.16 4.222630e+05 3.810612e+05 41201.79 NULL
2024 Department Of Transportation Administrative Director Of Marine Maintenance 186297.50000 3.725950e+05 28547.16 1.427358e+04 14273.580 0.00 2 1.427358e+04 28547.16 4.011422e+05 4.011422e+05 0.00 NULL
2024 Department Of Transportation Administrative Engineer 155782.17886 1.916121e+07 474979.34 3.861621e+03 0.000 5473.50 123 0.000000e+00 0.00 1.963619e+07 1.916121e+07 474979.34 NULL
2024 Department Of Transportation Administrative Graphic Artist 154024.00000 1.540240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.540240e+05 1.540240e+05 0.00 NULL
2024 Department Of Transportation Administrative Inspector 169647.00000 5.089410e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.089410e+05 5.089410e+05 0.00 NULL
2024 Department Of Transportation Administrative Investigator 125867.00000 3.776010e+05 6226.40 2.075467e+03 0.000 127.00 3 0.000000e+00 0.00 3.838274e+05 3.776010e+05 6226.40 NULL
2024 Department Of Transportation Administrative Management Auditor 142141.91667 1.705703e+06 1047.87 8.732250e+01 0.000 18.25 12 0.000000e+00 0.00 1.706751e+06 1.705703e+06 1047.87 NULL
2024 Department Of Transportation Administrative Manager 169592.25000 6.783690e+05 17586.12 4.396530e+03 0.000 145.00 4 0.000000e+00 0.00 6.959551e+05 6.783690e+05 17586.12 NULL
2024 Department Of Transportation Administrative Procurement Analyst 189873.50000 3.797470e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.797470e+05 3.797470e+05 0.00 NULL
2024 Department Of Transportation Administrative Procurement Analyst-Non-Mgrl 101362.02632 3.851757e+06 224033.79 5.895626e+03 0.000 3453.25 38 0.000000e+00 0.00 4.075791e+06 3.851757e+06 224033.79 NULL
2024 Department Of Transportation Administrative Project Manager 149874.50000 1.378845e+07 738535.08 8.027555e+03 0.000 7603.75 92 0.000000e+00 0.00 1.452699e+07 1.378845e+07 738535.08 NULL
2024 Department Of Transportation Administrative Public Information Specialist 210276.00000 4.205520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.205520e+05 4.205520e+05 0.00 NULL
2024 Department Of Transportation Administrative Quality Assurance Specialist 117399.16667 1.408790e+06 262034.52 2.183621e+04 11186.255 3687.00 12 1.118625e+04 134235.06 1.670825e+06 1.543025e+06 127799.46 NULL
2024 Department Of Transportation Administrative Real Property Manager 161036.00000 3.220720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.220720e+05 3.220720e+05 0.00 NULL
2024 Department Of Transportation Administrative Staff Analyst 135530.69850 1.965195e+07 361124.23 2.490512e+03 0.000 4411.75 145 0.000000e+00 0.00 2.001308e+07 1.965195e+07 361124.23 NULL
2024 Department Of Transportation Administrative Superintendent Of Bridge Operations 177119.50000 3.542390e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.542390e+05 3.542390e+05 0.00 NULL
2024 Department Of Transportation Administrative Superintendent Of Highway Operations 168423.20833 4.042157e+06 36235.35 1.509806e+03 0.000 668.25 24 0.000000e+00 0.00 4.078392e+06 4.042157e+06 36235.35 NULL
2024 Department Of Transportation Administrative Supervisor Of Building Maintenance 169627.00000 1.696270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.696270e+05 1.696270e+05 0.00 NULL
2024 Department Of Transportation Administrative Transportation Coordinator 162351.91304 3.734094e+06 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 3.734094e+06 3.734094e+06 0.00 NULL
2024 Department Of Transportation Agency Attorney 108394.53333 3.251836e+06 228.94 7.631333e+00 0.000 0.00 30 0.000000e+00 0.00 3.252065e+06 3.251836e+06 228.94 NULL
2024 Department Of Transportation Agency Chief Contracting Officer 237766.00000 2.377660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.377660e+05 2.377660e+05 0.00 NULL
2024 Department Of Transportation Apprentice Inspector 42561.41259 6.086282e+06 572086.05 4.000602e+03 671.040 16985.75 143 6.710400e+02 95958.72 6.658368e+06 6.182241e+06 476127.33 NULL
2024 Department Of Transportation Architect 103006.00000 3.090180e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.090180e+05 3.090180e+05 0.00 NULL
2024 Department Of Transportation Area Supervisor 125003.12698 7.875197e+06 3378532.22 5.362750e+04 52168.090 36288.50 63 5.216809e+04 3286589.67 1.125373e+07 1.116179e+07 91942.55 NULL
2024 Department Of Transportation Asphalt Plant Manager 206291.50000 4.125830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.125830e+05 4.125830e+05 0.00 NULL
2024 Department Of Transportation Assistant Accountant 63695.00000 6.369500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.369500e+04 6.369500e+04 0.00 NULL
2024 Department Of Transportation Assistant Architect 73476.00000 7.347600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.347600e+04 7.347600e+04 0.00 NULL
2024 Department Of Transportation Assistant Captain 107727.54545 2.370006e+06 888111.96 4.036873e+04 38594.180 4996.00 22 3.859418e+04 849071.96 3.258118e+06 3.219078e+06 39040.00 NULL
2024 Department Of Transportation Assistant City Highway Repairer 45190.45032 3.533893e+07 3495910.75 4.470474e+03 2737.130 82885.70 782 2.737130e+03 2140435.66 3.883484e+07 3.747937e+07 1355475.09 NULL
2024 Department Of Transportation Assistant Civil Engineer 83355.87302 1.050284e+07 506129.18 4.016898e+03 145.650 8694.75 126 1.456500e+02 18351.90 1.100897e+07 1.052119e+07 487777.28 NULL
2024 Department Of Transportation Assistant Commissioner 174760.00000 3.495200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.495200e+05 3.495200e+05 0.00 NULL
2024 Department Of Transportation Assistant Director 137104.00000 1.371040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.371040e+05 1.371040e+05 0.00 NULL
2024 Department Of Transportation Assistant Electrical Engineer 81992.03704 2.213785e+06 267831.43 9.919683e+03 4536.700 4631.00 27 4.536700e+03 122490.90 2.481616e+06 2.336276e+06 145340.53 NULL
2024 Department Of Transportation Assistant Environmental Engineer 71726.00000 7.172600e+04 942.21 9.422100e+02 942.210 21.00 1 9.422100e+02 942.21 7.266821e+04 7.266821e+04 0.00 NULL
2024 Department Of Transportation Assistant Mechanical Engineer 82576.42857 5.780350e+05 72315.41 1.033077e+04 426.950 1092.50 7 4.269500e+02 2988.65 6.503504e+05 5.810237e+05 69326.76 NULL
2024 Department Of Transportation Assistant Printing Press Operator 75474.00000 1.509480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.509480e+05 1.509480e+05 0.00 NULL
2024 Department Of Transportation Assistant To The Deputy Commissioner 193450.00000 1.934500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.934500e+05 1.934500e+05 0.00 NULL
2024 Department Of Transportation Assistant Transportation Specialist 67318.75000 1.077100e+06 191646.76 1.197792e+04 6027.450 3813.32 16 6.027450e+03 96439.20 1.268747e+06 1.173539e+06 95207.56 NULL
2024 Department Of Transportation Associate Fraud Investigator 92571.00000 9.257100e+04 1335.96 1.335960e+03 1335.960 20.50 1 1.335960e+03 1335.96 9.390696e+04 9.390696e+04 0.00 NULL
2024 Department Of Transportation Associate Inspector 78268.82000 3.913441e+06 816479.43 1.632959e+04 12822.380 14148.75 50 1.282238e+04 641119.00 4.729920e+06 4.554560e+06 175360.43 NULL
2024 Department Of Transportation Associate Investigator 80723.50000 1.614470e+05 15466.40 7.733200e+03 7733.200 372.50 2 7.733200e+03 15466.40 1.769134e+05 1.769134e+05 0.00 NULL
2024 Department Of Transportation Associate Labor Relations Analyst 117155.00000 1.171550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.171550e+05 1.171550e+05 0.00 NULL
2024 Department Of Transportation Associate Landmarks Preservationist 92653.00000 9.265300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.265300e+04 9.265300e+04 0.00 NULL
2024 Department Of Transportation Associate Operations Communications Specialist 69978.66667 2.099360e+05 100433.27 3.347776e+04 5827.550 1586.00 3 5.827550e+03 17482.65 3.103693e+05 2.274186e+05 82950.62 NULL
2024 Department Of Transportation Associate Project Manager 106408.96667 3.192269e+06 241741.28 8.058043e+03 975.385 3157.75 30 9.753850e+02 29261.55 3.434010e+06 3.221531e+06 212479.73 NULL
2024 Department Of Transportation Associate Quality Assurance Specialist 76953.00000 7.695300e+04 5332.18 5.332180e+03 5332.180 110.00 1 5.332180e+03 5332.18 8.228518e+04 8.228518e+04 0.00 NULL
2024 Department Of Transportation Associate Staff Analyst 92708.61750 5.933352e+06 225598.01 3.524969e+03 71.210 3532.75 64 7.121000e+01 4557.44 6.158950e+06 5.937909e+06 221040.57 NULL
2024 Department Of Transportation Associate Urban Designer 96985.98000 4.849299e+05 8820.48 1.764096e+03 0.000 199.00 5 0.000000e+00 0.00 4.937504e+05 4.849299e+05 8820.48 NULL
2024 Department Of Transportation Auto Machinist NA NA 25264.21 2.526421e+04 25264.210 316.75 1 2.526421e+04 25264.21 NA NA NA NULL
2024 Department Of Transportation Auto Body Worker 65023.00000 1.300460e+05 2561.11 1.280555e+03 1280.555 43.50 2 1.280555e+03 2561.11 1.326071e+05 1.326071e+05 0.00 NULL
2024 Department Of Transportation Auto Mechanic NA NA 881610.75 8.396293e+03 3147.340 11133.00 105 3.147340e+03 330470.70 NA NA NA NULL
2024 Department Of Transportation Automotive Service Worker 43145.46667 6.471820e+05 31222.98 2.081532e+03 1002.420 916.75 15 1.002420e+03 15036.30 6.784050e+05 6.622183e+05 16186.68 NULL
2024 Department Of Transportation Blacksmith NA NA 59868.56 2.993428e+04 29934.280 584.00 2 2.993428e+04 59868.56 NA NA NA NULL
2024 Department Of Transportation Blacksmith’s Helper NA NA 41253.40 2.062670e+04 20626.700 525.00 2 2.062670e+04 41253.40 NA NA NA NULL
2024 Department Of Transportation Boiler Maker NA NA 474223.33 5.927792e+04 56853.015 4725.25 8 5.685301e+04 454824.12 NA NA NA NULL
2024 Department Of Transportation Bookkeeper 62283.28571 4.359830e+05 19137.73 2.733961e+03 72.140 513.75 7 7.214000e+01 504.98 4.551207e+05 4.364880e+05 18632.75 NULL
2024 Department Of Transportation Borough Commissioner 207859.00000 1.039295e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.039295e+06 1.039295e+06 0.00 NULL
2024 Department Of Transportation Bricklayer NA NA 176810.24 1.360079e+04 5333.300 1952.50 13 5.333300e+03 69332.90 NA NA NA NULL
2024 Department Of Transportation Bridge Operator 53665.52778 3.863918e+06 1097815.99 1.524744e+04 12741.145 23646.80 72 1.274115e+04 917362.44 4.961734e+06 4.781280e+06 180453.55 NULL
2024 Department Of Transportation Bridge Painter NA NA 443610.36 1.232251e+04 12866.310 3748.00 36 1.232251e+04 443610.36 NA NA NA NULL
2024 Department Of Transportation Bridge Repairer And Riveter NA NA 1609122.22 4.022806e+04 38695.350 5322.25 40 3.869535e+04 1547814.00 NA NA NA NULL
2024 Department Of Transportation Captain 142462.22222 5.128640e+06 2547612.47 7.076701e+04 83330.775 11720.50 36 7.076701e+04 2547612.47 7.676252e+06 7.676252e+06 0.00 NULL
2024 Department Of Transportation Carpenter NA NA 836960.68 3.347843e+04 34952.170 9692.25 25 3.347843e+04 836960.68 NA NA NA NULL
2024 Department Of Transportation Cement Mason NA NA 1314052.72 4.106415e+04 43902.240 10687.50 32 4.106415e+04 1314052.72 NA NA NA NULL
2024 Department Of Transportation Certified It Administrator 127835.52381 2.684546e+06 360869.36 1.718426e+04 9334.690 3813.50 21 9.334690e+03 196028.49 3.045415e+06 2.880574e+06 164840.87 NULL
2024 Department Of Transportation Certified It Developer 141040.00000 1.551440e+06 72602.42 6.600220e+03 4535.390 664.00 11 4.535390e+03 49889.29 1.624042e+06 1.601329e+06 22713.13 NULL
2024 Department Of Transportation Chief Marine Engineer 149469.75000 6.576669e+06 8919472.70 2.027153e+05 176013.405 18471.75 44 1.760134e+05 7744589.82 1.549614e+07 1.432126e+07 1174882.88 NULL
2024 Department Of Transportation Chief Of Staff 256774.00000 2.567740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.567740e+05 2.567740e+05 0.00 NULL
2024 Department Of Transportation City Attendant 44641.96095 1.205333e+06 154160.11 5.709634e+03 1575.280 4759.75 27 1.575280e+03 42532.56 1.359493e+06 1.247866e+06 111627.55 NULL
2024 Department Of Transportation City Custodial Assistant 46805.97600 4.680598e+04 0.63 6.300000e-01 0.630 0.00 1 6.300000e-01 0.63 4.680661e+04 4.680661e+04 0.00 NULL
2024 Department Of Transportation City Debris Remover 48802.00000 9.760400e+04 24398.58 1.219929e+04 12199.290 649.00 2 1.219929e+04 24398.58 1.220026e+05 1.220026e+05 0.00 NULL
2024 Department Of Transportation City Laborer NA NA 804972.98 2.874903e+04 24831.300 14011.75 28 2.483130e+04 695276.40 NA NA NA NULL
2024 Department Of Transportation City Parking Equipment Service Worker 46677.32895 3.547477e+06 164167.97 2.160105e+03 491.855 4277.50 76 4.918550e+02 37380.98 3.711645e+06 3.584858e+06 126786.99 NULL
2024 Department Of Transportation City Planner 97174.39906 9.911789e+06 608685.90 5.967509e+03 29.195 9529.50 102 2.919500e+01 2977.89 1.052047e+07 9.914767e+06 605708.01 NULL
2024 Department Of Transportation City Research Scientist 106309.17647 1.807256e+06 4099.53 2.411488e+02 0.000 64.00 17 0.000000e+00 0.00 1.811356e+06 1.807256e+06 4099.53 NULL
2024 Department Of Transportation City Seasonal Aide 5970.11580 2.985058e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.985058e+04 2.985058e+04 0.00 NULL
2024 Department Of Transportation City Tax Auditor 78451.71429 5.491620e+05 8699.48 1.242783e+03 182.290 194.00 7 1.822900e+02 1276.03 5.578615e+05 5.504380e+05 7423.45 NULL
2024 Department Of Transportation Civil Engineer 116771.75510 5.721816e+06 192141.75 3.921260e+03 797.830 2569.25 49 7.978300e+02 39093.67 5.913958e+06 5.760910e+06 153048.08 NULL
2024 Department Of Transportation Civil Engineering Intern 66279.50000 1.458149e+06 32024.71 1.455669e+03 397.580 770.00 22 3.975800e+02 8746.76 1.490174e+06 1.466896e+06 23277.95 NULL
2024 Department Of Transportation Claim Specialist 66261.68000 1.987850e+05 40692.30 1.356410e+04 14089.980 860.25 3 1.356410e+04 40692.30 2.394773e+05 2.394773e+05 0.00 NULL
2024 Department Of Transportation Clerical Associate 50491.09869 1.656108e+07 570432.36 1.739123e+03 47.520 15712.42 328 4.752000e+01 15586.56 1.713151e+07 1.657667e+07 554845.80 NULL
2024 Department Of Transportation Climber & Pruner 67241.00000 4.034460e+05 40867.75 6.811292e+03 1974.615 769.50 6 1.974615e+03 11847.69 4.443138e+05 4.152937e+05 29020.06 NULL
2024 Department Of Transportation College Aide 8262.79704 1.140266e+06 0.00 0.000000e+00 0.000 0.00 138 0.000000e+00 0.00 1.140266e+06 1.140266e+06 0.00 NULL
2024 Department Of Transportation College Aide - Assignment Levels Ii And Iii 10673.86804 3.095422e+05 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 3.095422e+05 3.095422e+05 0.00 NULL
2024 Department Of Transportation Commissioner Of Transportation 277605.00000 2.776050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.776050e+05 2.776050e+05 0.00 NULL
2024 Department Of Transportation Community Assistant 42147.27444 2.950309e+05 28279.05 4.039864e+03 40.770 796.68 7 4.077000e+01 285.39 3.233100e+05 2.953163e+05 27993.66 NULL
2024 Department Of Transportation Community Associate 51458.84333 1.440848e+06 56004.26 2.000152e+03 35.610 1666.75 28 3.561000e+01 997.08 1.496852e+06 1.441845e+06 55007.18 NULL
2024 Department Of Transportation Community Coordinator 76069.49011 1.042152e+07 331108.68 2.416852e+03 181.400 7111.25 137 1.814000e+02 24851.80 1.075263e+07 1.044637e+07 306256.88 NULL
2024 Department Of Transportation Computer Aide-Non-Spvr 63434.00000 1.268680e+05 9075.57 4.537785e+03 4537.785 224.50 2 4.537785e+03 9075.57 1.359436e+05 1.359436e+05 0.00 NULL
2024 Department Of Transportation Computer Associate 78089.22273 8.589814e+05 117377.27 1.067066e+04 10307.000 2213.50 11 1.030700e+04 113377.00 9.763587e+05 9.723584e+05 4000.27 NULL
2024 Department Of Transportation Computer Specialist 117146.73913 2.694375e+06 60322.77 2.622729e+03 0.000 736.50 23 0.000000e+00 0.00 2.754698e+06 2.694375e+06 60322.77 NULL
2024 Department Of Transportation Computer Systems Manager 182789.06667 2.741836e+06 47693.04 3.179536e+03 0.000 475.50 15 0.000000e+00 0.00 2.789529e+06 2.741836e+06 47693.04 NULL
2024 Department Of Transportation Confidential Strategy Planner 99583.22222 8.962490e+05 6338.76 7.043067e+02 2.030 105.25 9 2.030000e+00 18.27 9.025878e+05 8.962673e+05 6320.49 NULL
2024 Department Of Transportation Construction Project Manager 97038.20000 3.396337e+06 342484.35 9.785267e+03 4739.070 5304.50 35 4.739070e+03 165867.45 3.738821e+06 3.562204e+06 176616.90 NULL
2024 Department Of Transportation Crane Operator Ampes NA NA 559622.49 7.994607e+04 89376.610 4126.75 7 7.994607e+04 559622.49 NA NA NA NULL
2024 Department Of Transportation Customer Information Representative Ma L 1549 48159.21282 7.223882e+05 31344.35 2.089623e+03 30.710 823.50 15 3.071000e+01 460.65 7.537325e+05 7.228488e+05 30883.70 NULL
2024 Department Of Transportation Cyber Security Analyst 91200.84615 1.185611e+06 44132.95 3.394842e+03 1052.660 826.75 13 1.052660e+03 13684.58 1.229744e+06 1.199296e+06 30448.37 NULL
2024 Department Of Transportation Deckhand 57839.87654 1.405509e+07 6334636.03 2.606846e+04 23045.960 105351.75 243 2.304596e+04 5600168.28 2.038973e+07 1.965526e+07 734467.75 NULL
2024 Department Of Transportation Deputy Commissioner 221060.33333 6.631810e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.631810e+05 6.631810e+05 0.00 NULL
2024 Department Of Transportation Deputy Director 193796.00000 1.937960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.937960e+05 1.937960e+05 0.00 NULL
2024 Department Of Transportation Director Of Public Relations 175382.00000 1.753820e+05 55.63 5.563000e+01 55.630 0.00 1 5.563000e+01 55.63 1.754376e+05 1.754376e+05 0.00 NULL
2024 Department Of Transportation Dockbuilder NA NA 296484.37 1.853027e+04 16366.170 3863.25 16 1.636617e+04 261858.72 NA NA NA NULL
2024 Department Of Transportation Economist 88191.42857 6.173400e+05 3783.20 5.404571e+02 0.000 75.00 7 0.000000e+00 0.00 6.211232e+05 6.173400e+05 3783.20 NULL
2024 Department Of Transportation Electrician NA NA 3854848.17 5.006296e+04 49766.620 39385.75 77 4.976662e+04 3832029.74 NA NA NA NULL
2024 Department Of Transportation Engineering Technician 76261.33333 2.287840e+05 99234.76 3.307825e+04 23137.390 1810.25 3 2.313739e+04 69412.17 3.280188e+05 2.981962e+05 29822.59 NULL
2024 Department Of Transportation Executive Agency Counsel 181849.42105 3.455139e+06 350.30 1.843684e+01 0.000 0.00 19 0.000000e+00 0.00 3.455489e+06 3.455139e+06 350.30 NULL
2024 Department Of Transportation Executive Assistant To Commissioner Of Transportation 133856.00000 1.338560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.338560e+05 1.338560e+05 0.00 NULL
2024 Department Of Transportation Executive Program Specialist 167958.50000 3.359170e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.359170e+05 3.359170e+05 0.00 NULL
2024 Department Of Transportation Ferry Terminal Supervisor 80024.00000 1.120336e+06 553728.80 3.955206e+04 43269.130 9321.25 14 3.955206e+04 553728.80 1.674065e+06 1.674065e+06 0.00 NULL
2024 Department Of Transportation Gardener 56881.50000 2.275260e+05 11575.87 2.893968e+03 857.060 224.25 4 8.570600e+02 3428.24 2.391019e+05 2.309542e+05 8147.63 NULL
2024 Department Of Transportation Gasoline Roller Engineer-L15 NA NA 2387603.98 2.623741e+04 19269.310 8.50 91 1.926931e+04 1753507.21 NA NA NA NULL
2024 Department Of Transportation Graphic Artist 81416.75000 3.256670e+05 10855.48 2.713870e+03 2202.525 208.00 4 2.202525e+03 8810.10 3.365225e+05 3.344771e+05 2045.38 NULL
2024 Department Of Transportation High Pressure Plant Tender NA NA 338557.73 5.642629e+04 54176.790 5953.00 6 5.417679e+04 325060.74 NA NA NA NULL
2024 Department Of Transportation High School Student Aide 5052.00000 1.010400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.010400e+04 1.010400e+04 0.00 NULL
2024 Department Of Transportation Highway Repairer NA NA 12689305.31 1.833715e+04 14904.085 154375.46 692 1.490408e+04 10313626.82 NA NA NA NULL
2024 Department Of Transportation Highways And Sewers Inspector 65880.07000 6.588007e+06 1034068.21 1.034068e+04 5511.970 21364.75 100 5.511970e+03 551197.00 7.622075e+06 7.139204e+06 482871.21 NULL
2024 Department Of Transportation Industrial Hygienist 78884.50000 3.155380e+05 15084.22 3.771055e+03 1125.500 303.25 4 1.125500e+03 4502.00 3.306222e+05 3.200400e+05 10582.22 NULL
2024 Department Of Transportation Investigator 59641.28571 4.174890e+05 32824.37 4.689196e+03 1488.660 635.75 7 1.488660e+03 10420.62 4.503134e+05 4.279096e+05 22403.75 NULL
2024 Department Of Transportation It Automation And Monitoring Engineer 126362.66667 7.581760e+05 63432.10 1.057202e+04 0.000 990.25 6 0.000000e+00 0.00 8.216081e+05 7.581760e+05 63432.10 NULL
2024 Department Of Transportation It Infrastructure Engineer 144042.66667 4.321280e+05 20492.73 6.830910e+03 0.000 319.25 3 0.000000e+00 0.00 4.526207e+05 4.321280e+05 20492.73 NULL
2024 Department Of Transportation It Project Specialist 131061.93333 1.965929e+06 13169.58 8.779720e+02 0.000 175.75 15 0.000000e+00 0.00 1.979099e+06 1.965929e+06 13169.58 NULL
2024 Department Of Transportation It Security Specialist 133900.00000 1.339000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.339000e+05 1.339000e+05 0.00 NULL
2024 Department Of Transportation It Service Management Specialist 127308.00000 1.273080e+05 1877.34 1.877340e+03 1877.340 27.50 1 1.877340e+03 1877.34 1.291853e+05 1.291853e+05 0.00 NULL
2024 Department Of Transportation Letterer And Sign Painter NA NA 137603.81 1.250944e+04 18139.450 2358.00 11 1.250944e+04 137603.81 NA NA NA NULL
2024 Department Of Transportation Machinist NA NA 429552.88 3.579607e+04 37325.325 5999.50 12 3.579607e+04 429552.88 NA NA NA NULL
2024 Department Of Transportation Management Auditor 91942.88235 1.563029e+06 34289.81 2.017048e+03 368.760 579.25 17 3.687600e+02 6268.92 1.597319e+06 1.569298e+06 28020.89 NULL
2024 Department Of Transportation Marine Electronics Technician 119580.00000 3.587400e+05 98115.13 3.270504e+04 20515.280 1073.75 3 2.051528e+04 61545.84 4.568551e+05 4.202858e+05 36569.29 NULL
2024 Department Of Transportation Marine Engineer 101547.49020 5.178922e+06 2035291.51 3.990768e+04 20106.370 12635.25 51 2.010637e+04 1025424.87 7.214214e+06 6.204347e+06 1009866.64 NULL
2024 Department Of Transportation Marine Oiler 61555.00000 3.016195e+06 2395990.99 4.889778e+04 56203.390 40572.50 49 4.889778e+04 2395990.99 5.412186e+06 5.412186e+06 0.00 NULL
2024 Department Of Transportation Masons Helper NA NA 9.68 9.680000e+00 9.680 0.00 1 9.680000e+00 9.68 NA NA NA NULL
2024 Department Of Transportation Mate 93293.74286 1.306112e+07 4980937.94 3.557813e+04 30927.815 34423.25 140 3.092781e+04 4329894.10 1.804206e+07 1.739102e+07 651043.84 NULL
2024 Department Of Transportation Mechanical Engineer 138091.00000 1.380910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.380910e+05 1.380910e+05 0.00 NULL
2024 Department Of Transportation Motor Grader Operator NA NA 830196.83 2.371991e+04 23475.240 1195.75 35 2.347524e+04 821633.40 NA NA NA NULL
2024 Department Of Transportation Motor Vehicle Operator 44979.00000 4.497900e+04 289.66 2.896600e+02 289.660 9.00 1 2.896600e+02 289.66 4.526866e+04 4.526866e+04 0.00 NULL
2024 Department Of Transportation New York City Public Service Fellow 50512.00000 7.576800e+05 1549.91 1.033273e+02 0.000 57.00 15 0.000000e+00 0.00 7.592299e+05 7.576800e+05 1549.91 NULL
2024 Department Of Transportation Office Machine Aide 45032.25000 1.801290e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.801290e+05 1.801290e+05 0.00 NULL
2024 Department Of Transportation Oiler NA NA 1058757.52 5.293788e+04 60052.680 9911.00 20 5.293788e+04 1058757.52 NA NA NA NULL
2024 Department Of Transportation Operations Communications Specialist 54443.41667 6.533210e+05 81967.43 6.830619e+03 4821.860 2011.75 12 4.821860e+03 57862.32 7.352884e+05 7.111833e+05 24105.11 NULL
2024 Department Of Transportation Painter NA NA 181200.47 3.020008e+04 19155.660 2315.00 6 1.915566e+04 114933.96 NA NA NA NULL
2024 Department Of Transportation Plumber NA NA 761864.67 7.618647e+04 76824.315 6189.00 10 7.618647e+04 761864.67 NA NA NA NULL
2024 Department Of Transportation Principal Administrative Associate - Non Supvr 66443.96386 1.382034e+07 1009470.54 4.853224e+03 106.590 20428.78 208 1.065900e+02 22170.72 1.482982e+07 1.384252e+07 987299.82 NULL
2024 Department Of Transportation Procurement Analyst 73270.47600 2.198114e+06 65582.73 2.186091e+03 0.000 1472.75 30 0.000000e+00 0.00 2.263697e+06 2.198114e+06 65582.73 NULL
2024 Department Of Transportation Project Manager 79922.30769 1.038990e+06 118589.20 9.122246e+03 1204.600 2072.25 13 1.204600e+03 15659.80 1.157579e+06 1.054650e+06 102929.40 NULL
2024 Department Of Transportation Project Manager Intern# 64025.71429 8.963600e+05 59932.57 4.280898e+03 734.945 1266.25 14 7.349450e+02 10289.23 9.562926e+05 9.066492e+05 49643.34 NULL
2024 Department Of Transportation Public Records Aide 46010.58750 1.840424e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.840424e+05 1.840424e+05 0.00 NULL
2024 Department Of Transportation Public Records Officer 57070.00000 5.707000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.707000e+04 5.707000e+04 0.00 NULL
2024 Department Of Transportation Quality Assurance Specialist 53353.79375 5.335379e+05 79819.11 7.981911e+03 2655.165 1794.00 10 2.655165e+03 26551.65 6.133570e+05 5.600896e+05 53267.46 NULL
2024 Department Of Transportation Radio Repair Mechanic NA NA 30980.50 7.745125e+03 10047.905 394.50 4 7.745125e+03 30980.50 NA NA NA NULL
2024 Department Of Transportation Research Assistant 68727.50000 4.123650e+05 20061.34 3.343557e+03 0.000 459.50 6 0.000000e+00 0.00 4.324263e+05 4.123650e+05 20061.34 NULL
2024 Department Of Transportation Research Projects Coord 159837.00000 1.598370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.598370e+05 1.598370e+05 0.00 NULL
2024 Department Of Transportation Rigger NA NA 242220.24 6.055506e+04 69775.905 3056.50 4 6.055506e+04 242220.24 NA NA NA NULL
2024 Department Of Transportation Roofer NA NA 26212.66 2.621266e+04 26212.660 364.25 1 2.621266e+04 26212.66 NA NA NA NULL
2024 Department Of Transportation Rubber Tire Repairer NA NA 59120.84 7.390105e+03 7078.145 1169.75 8 7.078145e+03 56625.16 NA NA NA NULL
2024 Department Of Transportation Secretary 51823.62667 3.109418e+05 201.39 3.356500e+01 0.000 7.00 6 0.000000e+00 0.00 3.111432e+05 3.109418e+05 201.39 NULL
2024 Department Of Transportation Secretary Of Comm 90000.00000 9.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.000000e+04 9.000000e+04 0.00 NULL
2024 Department Of Transportation Secretary To The Deputy Commissioner 59890.50000 1.197810e+05 753.68 3.768400e+02 376.840 16.75 2 3.768400e+02 753.68 1.205347e+05 1.205347e+05 0.00 NULL
2024 Department Of Transportation Secretary To The First Deputy Commissioner 85109.00000 8.510900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.510900e+04 8.510900e+04 0.00 NULL
2024 Department Of Transportation Senior It Architect 148979.40000 7.448970e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.448970e+05 7.448970e+05 0.00 NULL
2024 Department Of Transportation Senior Service Inspector 55131.00000 5.513100e+04 11958.11 1.195811e+04 11958.110 324.00 1 1.195811e+04 11958.11 6.708911e+04 6.708911e+04 0.00 NULL
2024 Department Of Transportation Service Inspector 37998.45455 4.179830e+05 1542.51 1.402282e+02 0.000 76.00 11 0.000000e+00 0.00 4.195255e+05 4.179830e+05 1542.51 NULL
2024 Department Of Transportation Sheet Metal Worker NA NA 376710.96 4.708887e+04 37815.390 3037.25 8 3.781539e+04 302523.12 NA NA NA NULL
2024 Department Of Transportation Ship Carpenter NA NA 276316.97 6.907924e+04 74198.520 3421.50 4 6.907924e+04 276316.97 NA NA NA NULL
2024 Department Of Transportation Staff Analyst 74576.37778 3.355937e+06 49709.53 1.104656e+03 0.000 960.75 45 0.000000e+00 0.00 3.405647e+06 3.355937e+06 49709.53 NULL
2024 Department Of Transportation Staff Analyst Trainee 52915.00000 5.291500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.291500e+04 5.291500e+04 0.00 NULL
2024 Department Of Transportation Stationary Engineer NA NA 137132.14 6.856607e+04 68566.070 1204.75 2 6.856607e+04 137132.14 NA NA NA NULL
2024 Department Of Transportation Steam Fitter NA NA 618459.43 5.153829e+04 52731.645 5077.75 12 5.153829e+04 618459.43 NA NA NA NULL
2024 Department Of Transportation Stock Worker 43067.09091 9.474760e+05 159367.31 7.243969e+03 3662.105 5140.50 22 3.662105e+03 80566.31 1.106843e+06 1.028042e+06 78801.00 NULL
2024 Department Of Transportation Strategic Initiative Specialist 127528.81818 1.402817e+06 40183.68 3.653062e+03 0.000 486.50 11 0.000000e+00 0.00 1.443001e+06 1.402817e+06 40183.68 NULL
2024 Department Of Transportation Summer College Intern 3387.01562 2.709612e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 2.709612e+04 2.709612e+04 0.00 NULL
2024 Department Of Transportation Summer Graduate Intern 2800.30000 8.400900e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 8.400900e+03 8.400900e+03 0.00 NULL
2024 Department Of Transportation Supervising Special Officer 68099.00000 6.809900e+05 123165.29 1.231653e+04 13245.635 2443.75 10 1.231653e+04 123165.29 8.041553e+05 8.041553e+05 0.00 NULL
2024 Department Of Transportation Supervisor 88344.00000 8.834400e+04 2007.15 2.007150e+03 2007.150 30.75 1 2.007150e+03 2007.15 9.035115e+04 9.035115e+04 0.00 NULL
2024 Department Of Transportation Supervisor Boiler Maker NA NA 69086.47 6.908647e+04 69086.470 564.75 1 6.908647e+04 69086.47 NA NA NA NULL
2024 Department Of Transportation Supervisor Bricklayer NA NA 354694.03 5.911567e+04 73434.330 3486.25 6 5.911567e+04 354694.03 NA NA NA NULL
2024 Department Of Transportation Supervisor Bridge Painter NA NA 113722.19 1.137222e+04 10878.845 854.50 10 1.087884e+04 108788.45 NA NA NA NULL
2024 Department Of Transportation Supervisor Bridge Repairer And Riveter NA NA 194033.95 4.850849e+04 51986.115 844.50 4 4.850849e+04 194033.95 NA NA NA NULL
2024 Department Of Transportation Supervisor Carpenter NA NA 331741.22 5.529020e+04 64165.360 3651.75 6 5.529020e+04 331741.22 NA NA NA NULL
2024 Department Of Transportation Supervisor Dockbuilder NA NA 64114.79 6.411479e+04 64114.790 802.25 1 6.411479e+04 64114.79 NA NA NA NULL
2024 Department Of Transportation Supervisor Electrician NA NA 1236452.80 6.869182e+04 74893.045 11761.75 18 6.869182e+04 1236452.80 NA NA NA NULL
2024 Department Of Transportation Supervisor Highway Repairer NA NA 6174332.25 3.337477e+04 28022.300 63245.25 185 2.802230e+04 5184125.50 NA NA NA NULL
2024 Department Of Transportation Supervisor Of Electrical Installations & Maintenance 81879.92857 3.438957e+06 1297705.03 3.089774e+04 19537.835 20491.40 42 1.953783e+04 820589.07 4.736662e+06 4.259546e+06 477115.96 NULL
2024 Department Of Transportation Supervisor Of Mechanics NA NA 944593.07 2.698837e+04 19944.280 8250.50 35 1.994428e+04 698049.80 NA NA NA NULL
2024 Department Of Transportation Supervisor Of Office Machine Operations 53742.00000 5.374200e+04 197.76 1.977600e+02 197.760 6.00 1 1.977600e+02 197.76 5.393976e+04 5.393976e+04 0.00 NULL
2024 Department Of Transportation Supervisor Of Stock Workers 58374.50000 3.502470e+05 84867.32 1.414455e+04 6857.065 1898.50 6 6.857065e+03 41142.39 4.351143e+05 3.913894e+05 43724.93 NULL
2024 Department Of Transportation Supervisor Of Traffic Device Maintainers 87571.74194 2.714724e+06 1011742.26 3.263685e+04 32685.900 13711.25 31 3.263685e+04 1011742.26 3.726466e+06 3.726466e+06 0.00 NULL
2024 Department Of Transportation Supervisor Of Traffic Device Maintainers Level 1 Only 73746.03922 3.761048e+06 1210079.86 2.372706e+04 23523.620 19934.50 51 2.352362e+04 1199704.62 4.971128e+06 4.960753e+06 10375.24 NULL
2024 Department Of Transportation Supervisor Painter NA NA 58603.20 1.953440e+04 828.920 646.75 3 8.289200e+02 2486.76 NA NA NA NULL
2024 Department Of Transportation Supervisor Plumber NA NA 196487.53 9.824376e+04 98243.765 1534.25 2 9.824376e+04 196487.53 NA NA NA NULL
2024 Department Of Transportation Supervisor Sheet Metal Worker NA NA 130970.91 1.309709e+05 130970.910 938.50 1 1.309709e+05 130970.91 NA NA NA NULL
2024 Department Of Transportation Supervisor Ship Carpenter NA NA 100511.79 1.005118e+05 100511.790 1170.00 1 1.005118e+05 100511.79 NA NA NA NULL
2024 Department Of Transportation Supervisor Steamfitter NA NA 113169.98 1.131700e+05 113169.980 889.00 1 1.131700e+05 113169.98 NA NA NA NULL
2024 Department Of Transportation Telecommunications Associate 98782.09766 1.580514e+06 459531.09 2.872069e+04 18131.265 5888.50 16 1.813126e+04 290100.24 2.040045e+06 1.870614e+06 169430.85 NULL
2024 Department Of Transportation Tractor Operator NA NA 1729640.53 6.177288e+04 53253.755 10951.25 28 5.325375e+04 1491105.14 NA NA NA NULL
2024 Department Of Transportation Traffic Control Inspector 62142.06667 3.728524e+06 296337.44 4.938957e+03 1726.375 6935.75 60 1.726375e+03 103582.50 4.024861e+06 3.832106e+06 192754.94 NULL
2024 Department Of Transportation Traffic Device Maintainer 69054.39827 1.595157e+07 3118135.39 1.349842e+04 12657.800 61640.77 231 1.265780e+04 2923951.80 1.906970e+07 1.887552e+07 194183.59 NULL
2024 Department Of Transportation Transportation Specialist 90688.17073 1.859108e+07 1950288.78 9.513604e+03 3491.780 31126.75 205 3.491780e+03 715814.90 2.054136e+07 1.930689e+07 1234473.88 NULL
2024 Department Of Transportation Welder NA NA 66239.72 2.207991e+04 24574.390 623.50 3 2.207991e+04 66239.72 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs *Custodial Assistant 40918.00000 4.091800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.091800e+04 4.091800e+04 0.00 NULL
2024 Dept Of Citywide Admin Svcs *Senior Estimator 104170.00000 2.083400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.083400e+05 2.083400e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Accountant 91053.28571 6.373730e+05 33274.50 4.753500e+03 0.000 491.50 7 0.000000e+00 0.00 6.706475e+05 6.373730e+05 33274.50 NULL
2024 Dept Of Citywide Admin Svcs Adm Manager-Non-Mgrl 98313.46753 7.570137e+06 90908.97 1.180636e+03 0.000 1481.50 77 0.000000e+00 0.00 7.661046e+06 7.570137e+06 90908.97 NULL
2024 Dept Of Citywide Admin Svcs Admin Community Relations Specialist 103582.50000 6.214950e+05 20317.61 3.386268e+03 12.425 252.50 6 1.242500e+01 74.55 6.418126e+05 6.215696e+05 20243.06 NULL
2024 Dept Of Citywide Admin Svcs Admin Construction Project Manager 117972.00000 9.437760e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.437760e+05 9.437760e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Admin Contract Specialist 126591.00000 1.265910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.265910e+05 1.265910e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Admin Tests & Meas Spec 141217.66667 4.236530e+05 1111.94 3.706467e+02 0.000 19.25 3 0.000000e+00 0.00 4.247649e+05 4.236530e+05 1111.94 NULL
2024 Dept Of Citywide Admin Svcs Administrative Accountant 117183.40000 5.859170e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.859170e+05 5.859170e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Administrative Architect 141060.75000 1.128486e+06 455.31 5.691375e+01 0.000 31.50 8 0.000000e+00 0.00 1.128941e+06 1.128486e+06 455.31 NULL
2024 Dept Of Citywide Admin Svcs Administrative Business Promotion Coordinator 153404.14286 1.073829e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.073829e+06 1.073829e+06 0.00 NULL
2024 Dept Of Citywide Admin Svcs Administrative City Planner 142124.75000 1.136998e+06 1007.63 1.259537e+02 0.000 13.00 8 0.000000e+00 0.00 1.138006e+06 1.136998e+06 1007.63 NULL
2024 Dept Of Citywide Admin Svcs Administrative Community Relations Specialist 210844.33333 6.325330e+05 161.04 5.368000e+01 0.000 0.00 3 0.000000e+00 0.00 6.326940e+05 6.325330e+05 161.04 NULL
2024 Dept Of Citywide Admin Svcs Administrative Construction Project Manager 119681.00000 5.984050e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.984050e+05 5.984050e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Administrative Engineer 167807.08333 2.013685e+06 59294.88 4.941240e+03 0.000 589.00 12 0.000000e+00 0.00 2.072980e+06 2.013685e+06 59294.88 NULL
2024 Dept Of Citywide Admin Svcs Administrative Graphic Artist 157571.00000 1.575710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.575710e+05 1.575710e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Administrative Inspector 133192.00000 1.331920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.331920e+05 1.331920e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Administrative Investigator 104758.00000 2.095160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.095160e+05 2.095160e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Administrative Management Auditor 124313.50000 4.972540e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.972540e+05 4.972540e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Administrative Manager 162935.88889 1.466423e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.466423e+06 1.466423e+06 0.00 NULL
2024 Dept Of Citywide Admin Svcs Administrative Printing Services Manager 124921.00000 1.249210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.249210e+05 1.249210e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Administrative Procurement Analyst 119770.00000 2.395400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.395400e+05 2.395400e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Administrative Procurement Analyst-Non-Mgrl 103617.79310 3.004916e+06 734.20 2.531724e+01 0.000 12.00 29 0.000000e+00 0.00 3.005650e+06 3.004916e+06 734.20 NULL
2024 Dept Of Citywide Admin Svcs Administrative Project Manager 153446.61538 1.994806e+06 111144.20 8.549554e+03 0.000 1010.25 13 0.000000e+00 0.00 2.105950e+06 1.994806e+06 111144.20 NULL
2024 Dept Of Citywide Admin Svcs Administrative Public Information Specialist 169750.00000 1.697500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.697500e+05 1.697500e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Administrative Public Information Specialist Nm Former M1/M2 110974.00000 1.109740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.109740e+05 1.109740e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Administrative Quality Assurance Specialist 101757.13333 1.526357e+06 152808.39 1.018723e+04 5514.600 2503.50 15 5.514600e+03 82719.00 1.679165e+06 1.609076e+06 70089.39 NULL
2024 Dept Of Citywide Admin Svcs Administrative Real Property Manager 111654.75000 1.339857e+06 1991.85 1.659875e+02 0.000 22.00 12 0.000000e+00 0.00 1.341849e+06 1.339857e+06 1991.85 NULL
2024 Dept Of Citywide Admin Svcs Administrative Space Analyst 122182.00000 3.298914e+06 34545.73 1.279471e+03 0.000 441.25 27 0.000000e+00 0.00 3.333460e+06 3.298914e+06 34545.73 NULL
2024 Dept Of Citywide Admin Svcs Administrative Staff Analyst 132744.41284 1.446914e+07 50805.41 4.661047e+02 0.000 643.25 109 0.000000e+00 0.00 1.451995e+07 1.446914e+07 50805.41 NULL
2024 Dept Of Citywide Admin Svcs Administrative Storekeeper 107438.00000 1.074380e+05 16.33 1.633000e+01 16.330 0.00 1 1.633000e+01 16.33 1.074543e+05 1.074543e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Administrative Supervisor Of Building Maintenance 109189.83333 6.551390e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.551390e+05 6.551390e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Agency Attorney 115408.82353 3.923900e+06 865.34 2.545118e+01 0.000 9.00 34 0.000000e+00 0.00 3.924765e+06 3.923900e+06 865.34 NULL
2024 Dept Of Citywide Admin Svcs Agency Chief Decarbonization Officer 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Appraiser 112853.85714 7.899770e+05 42888.67 6.126953e+03 0.000 550.00 7 0.000000e+00 0.00 8.328657e+05 7.899770e+05 42888.67 NULL
2024 Dept Of Citywide Admin Svcs Architect 112126.63636 1.233393e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.233393e+06 1.233393e+06 0.00 NULL
2024 Dept Of Citywide Admin Svcs Asbestos Handler 90887.00000 2.726610e+05 149837.16 4.994572e+04 50610.090 2158.25 3 4.994572e+04 149837.16 4.224982e+05 4.224982e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Asbestos Handler Supervisor 95436.00000 9.543600e+04 51347.14 5.134714e+04 51347.140 751.00 1 5.134714e+04 51347.14 1.467831e+05 1.467831e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Assistant Architect 83617.14286 5.853200e+05 24772.79 3.538970e+03 0.000 429.00 7 0.000000e+00 0.00 6.100928e+05 5.853200e+05 24772.79 NULL
2024 Dept Of Citywide Admin Svcs Assistant Civil Engineer 99540.00000 1.990800e+05 3109.64 1.554820e+03 1554.820 54.50 2 1.554820e+03 3109.64 2.021896e+05 2.021896e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Assistant Commissioner 183793.28571 1.286553e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.286553e+06 1.286553e+06 0.00 NULL
2024 Dept Of Citywide Admin Svcs Assistant Electrical Engineer 73878.00000 7.387800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.387800e+04 7.387800e+04 0.00 NULL
2024 Dept Of Citywide Admin Svcs Assistant Landscape Architect 85147.00000 8.514700e+04 1591.89 1.591890e+03 1591.890 33.00 1 1.591890e+03 1591.89 8.673889e+04 8.673889e+04 0.00 NULL
2024 Dept Of Citywide Admin Svcs Assistant Mechanical Engineer 82693.14286 5.788520e+05 14919.72 2.131389e+03 0.000 300.25 7 0.000000e+00 0.00 5.937717e+05 5.788520e+05 14919.72 NULL
2024 Dept Of Citywide Admin Svcs Assistant Printing Press Operator 73301.00000 7.330100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.330100e+04 7.330100e+04 0.00 NULL
2024 Dept Of Citywide Admin Svcs Associate Chemist 99483.00000 9.948300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.948300e+04 9.948300e+04 0.00 NULL
2024 Dept Of Citywide Admin Svcs Associate Investigator 69386.83333 4.163210e+05 5.88 9.800000e-01 0.000 0.00 6 0.000000e+00 0.00 4.163269e+05 4.163210e+05 5.88 NULL
2024 Dept Of Citywide Admin Svcs Associate Project Manager 108774.07143 1.522837e+06 50505.20 3.607514e+03 0.000 559.75 14 0.000000e+00 0.00 1.573342e+06 1.522837e+06 50505.20 NULL
2024 Dept Of Citywide Admin Svcs Associate Public Information Specialist 73700.00000 7.370000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.370000e+04 7.370000e+04 0.00 NULL
2024 Dept Of Citywide Admin Svcs Associate Quality Assurance Specialist 93399.50000 1.867990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.867990e+05 1.867990e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Associate Real Property Manager 78137.50000 3.125500e+05 9471.49 2.367872e+03 210.365 149.25 4 2.103650e+02 841.46 3.220215e+05 3.133915e+05 8630.03 NULL
2024 Dept Of Citywide Admin Svcs Associate Staff Analyst 94857.12500 2.276571e+06 12875.10 5.364625e+02 0.000 169.50 24 0.000000e+00 0.00 2.289446e+06 2.276571e+06 12875.10 NULL
2024 Dept Of Citywide Admin Svcs Auto Mechanic NA NA 8408.48 1.681696e+03 1656.250 97.50 5 1.656250e+03 8281.25 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Bookkeeper 60445.00000 6.044500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.044500e+04 6.044500e+04 0.00 NULL
2024 Dept Of Citywide Admin Svcs Bricklayer NA NA 27544.36 2.754436e+04 27544.360 299.00 1 2.754436e+04 27544.36 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Carpenter NA NA 580270.07 2.522913e+04 16111.110 6572.25 23 1.611111e+04 370555.53 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Cement Mason NA NA 72030.41 3.601521e+04 36015.205 584.50 2 3.601521e+04 72030.41 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Certified It Administrator 118920.16667 7.135210e+05 53669.07 8.944845e+03 1733.995 585.75 6 1.733995e+03 10403.97 7.671901e+05 7.239250e+05 43265.10 NULL
2024 Dept Of Citywide Admin Svcs Certified It Developer 142378.00000 1.566158e+06 21173.52 1.924865e+03 299.230 236.25 11 2.992300e+02 3291.53 1.587332e+06 1.569450e+06 17881.99 NULL
2024 Dept Of Citywide Admin Svcs Chauffeur-Attendant 68435.57692 1.779325e+06 827636.67 3.183218e+04 30641.280 16960.25 26 3.064128e+04 796673.28 2.606962e+06 2.575998e+06 30963.39 NULL
2024 Dept Of Citywide Admin Svcs Chief Of Staff 253240.00000 2.532400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.532400e+05 2.532400e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs City Chief Decarbonization Officer 216989.50000 4.339790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.339790e+05 4.339790e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs City Custodial Assistant 40675.29545 1.610742e+07 3975879.03 1.004010e+04 5205.885 132884.33 396 5.205885e+03 2061530.46 2.008330e+07 1.816895e+07 1914348.57 NULL
2024 Dept Of Citywide Admin Svcs City Laborer NA NA 229499.06 2.294991e+04 28041.640 4133.75 10 2.294991e+04 229499.06 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs City Planner 95337.50000 7.627000e+05 858.06 1.072575e+02 0.000 12.50 8 0.000000e+00 0.00 7.635581e+05 7.627000e+05 858.06 NULL
2024 Dept Of Citywide Admin Svcs City Research Scientist 92938.85714 3.252860e+06 214.83 6.138000e+00 0.000 4.75 35 0.000000e+00 0.00 3.253075e+06 3.252860e+06 214.83 NULL
2024 Dept Of Citywide Admin Svcs City Security Aide 45358.41667 1.088602e+06 414499.36 1.727081e+04 10139.190 12560.00 24 1.013919e+04 243340.56 1.503101e+06 1.331943e+06 171158.80 NULL
2024 Dept Of Citywide Admin Svcs Clerical Associate 54407.58140 2.339526e+06 24053.90 5.593930e+02 0.000 729.50 43 0.000000e+00 0.00 2.363580e+06 2.339526e+06 24053.90 NULL
2024 Dept Of Citywide Admin Svcs Clock Repairer 4415.96000 4.415960e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.415960e+03 4.415960e+03 0.00 NULL
2024 Dept Of Citywide Admin Svcs College Aide 10288.56400 3.600997e+05 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 3.600997e+05 3.600997e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Commissioner 210829.00000 1.054145e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.054145e+06 1.054145e+06 0.00 NULL
2024 Dept Of Citywide Admin Svcs Commissioner Of Citywide Administrative Services 277605.00000 2.776050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.776050e+05 2.776050e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Community Assistant 42517.17391 9.778950e+05 40017.41 1.739887e+03 0.000 1503.50 23 0.000000e+00 0.00 1.017912e+06 9.778950e+05 40017.41 NULL
2024 Dept Of Citywide Admin Svcs Community Associate 58225.39245 3.085946e+06 399397.14 7.535795e+03 4284.560 10305.50 53 4.284560e+03 227081.68 3.485343e+06 3.313027e+06 172315.46 NULL
2024 Dept Of Citywide Admin Svcs Community Coordinator 68944.54102 5.998175e+06 233095.34 2.679257e+03 0.000 4778.25 87 0.000000e+00 0.00 6.231270e+06 5.998175e+06 233095.34 NULL
2024 Dept Of Citywide Admin Svcs Community Service Aide 39225.00000 7.845000e+04 11177.13 5.588565e+03 5588.565 379.50 2 5.588565e+03 11177.13 8.962713e+04 8.962713e+04 0.00 NULL
2024 Dept Of Citywide Admin Svcs Computer Associate 93679.36364 1.030473e+06 41213.08 3.746644e+03 0.000 570.25 11 0.000000e+00 0.00 1.071686e+06 1.030473e+06 41213.08 NULL
2024 Dept Of Citywide Admin Svcs Computer Operations Manager 143959.25000 5.758370e+05 46182.66 1.154567e+04 3961.205 515.00 4 3.961205e+03 15844.82 6.220197e+05 5.916818e+05 30337.84 NULL
2024 Dept Of Citywide Admin Svcs Computer Specialist 116937.95385 4.560580e+06 152751.59 3.916707e+03 0.000 1742.75 39 0.000000e+00 0.00 4.713332e+06 4.560580e+06 152751.59 NULL
2024 Dept Of Citywide Admin Svcs Computer Systems Manager 161944.31250 5.182218e+06 101172.20 3.161631e+03 0.000 1131.75 32 0.000000e+00 0.00 5.283390e+06 5.182218e+06 101172.20 NULL
2024 Dept Of Citywide Admin Svcs Confidential Strategy Planner 90311.00000 1.625598e+06 854.82 4.749000e+01 0.000 14.50 18 0.000000e+00 0.00 1.626453e+06 1.625598e+06 854.82 NULL
2024 Dept Of Citywide Admin Svcs Construction Project Manager 109852.30000 1.098523e+06 4878.76 4.878760e+02 0.000 73.75 10 0.000000e+00 0.00 1.103402e+06 1.098523e+06 4878.76 NULL
2024 Dept Of Citywide Admin Svcs Custodian 47629.38619 9.240101e+06 3473126.26 1.790271e+04 13911.270 100424.17 194 1.391127e+04 2698786.38 1.271323e+07 1.193889e+07 774339.88 NULL
2024 Dept Of Citywide Admin Svcs Cyber Security Analyst 74085.50000 1.481710e+05 8530.63 4.265315e+03 4265.315 175.75 2 4.265315e+03 8530.63 1.567016e+05 1.567016e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Deputy Assistant Commissioner 127632.12500 3.063171e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 3.063171e+06 3.063171e+06 0.00 NULL
2024 Dept Of Citywide Admin Svcs Deputy Commissioner 246927.00000 4.938540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.938540e+05 4.938540e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Director Of Public Information 185765.00000 1.857650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.857650e+05 1.857650e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Director Of Public Relations 113300.00000 1.133000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133000e+05 1.133000e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Director Of Stores 130138.00000 1.301380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.301380e+05 1.301380e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Director Of The City Record 185717.00000 1.857170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.857170e+05 1.857170e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Director, Energy Management Strategy 128750.00000 1.287500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287500e+05 1.287500e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Director,Citywide Occupational Safety & Health Program 131800.00000 2.636000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.636000e+05 2.636000e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Economist 70387.00000 7.038700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.038700e+04 7.038700e+04 0.00 NULL
2024 Dept Of Citywide Admin Svcs Electrical Engineer 121819.00000 1.218190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.218190e+05 1.218190e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Electrician NA NA 1250054.21 3.788043e+04 24677.410 12799.75 33 2.467741e+04 814354.53 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Electricians Helper NA NA 237205.44 7.906848e+04 66675.440 3063.50 3 6.667544e+04 200026.32 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Elevator Mechanic NA NA 992732.58 3.423216e+04 33390.560 10669.50 29 3.339056e+04 968326.24 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Elevator Mechanic Helper NA NA 30522.63 1.017421e+04 11555.500 539.75 3 1.017421e+04 30522.63 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Energy Conservation Specialist 82959.33333 2.488780e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.488780e+05 2.488780e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Estimator 101837.00000 1.018370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.018370e+05 1.018370e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Examining Attorney 148526.00000 1.485260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.485260e+05 1.485260e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Exec Asst To The Deputy Com For Citywide Personnel Svcs-Dcas 185709.00000 1.857090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.857090e+05 1.857090e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Executive Agency Counsel 169923.85185 4.587944e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 4.587944e+06 4.587944e+06 0.00 NULL
2024 Dept Of Citywide Admin Svcs Executive Assistant To The Commissioner 97850.00000 9.785000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.785000e+04 9.785000e+04 0.00 NULL
2024 Dept Of Citywide Admin Svcs Executive Program Specialist 150662.33333 4.519870e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.519870e+05 4.519870e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs General Counsel 253239.00000 2.532390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.532390e+05 2.532390e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Graphic Artist 83346.00000 3.333840e+05 12607.41 3.151852e+03 1385.695 206.25 4 1.385695e+03 5542.78 3.459914e+05 3.389268e+05 7064.63 NULL
2024 Dept Of Citywide Admin Svcs High Pressure Plant Tender NA NA 627220.58 1.960064e+04 15095.760 10960.50 32 1.509576e+04 483064.32 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs High School Student Aide 7510.46000 6.008368e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.008368e+04 6.008368e+04 0.00 NULL
2024 Dept Of Citywide Admin Svcs Industrial Hygienist 59553.00000 5.955300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.955300e+04 5.955300e+04 0.00 NULL
2024 Dept Of Citywide Admin Svcs Investigator 49943.66667 2.996620e+05 3082.70 5.137833e+02 0.000 87.00 6 0.000000e+00 0.00 3.027447e+05 2.996620e+05 3082.70 NULL
2024 Dept Of Citywide Admin Svcs It Infrastructure Engineer 129025.50000 2.580510e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.580510e+05 2.580510e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs It Project Specialist 114484.75000 4.579390e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.579390e+05 4.579390e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Job Training Participant 8065.83600 4.032918e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.032918e+04 4.032918e+04 0.00 NULL
2024 Dept Of Citywide Admin Svcs Landscape Architect 121287.00000 1.212870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.212870e+05 1.212870e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Locksmith NA NA 38264.52 1.913226e+04 19132.260 865.75 2 1.913226e+04 38264.52 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Machinist NA NA 59862.49 5.986249e+04 59862.490 769.00 1 5.986249e+04 59862.49 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Maintenance Worker NA NA 1082863.37 3.184892e+04 32141.190 20305.75 34 3.184892e+04 1082863.37 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Management Auditor 76100.25000 6.088020e+05 6404.27 8.005338e+02 0.000 106.00 8 0.000000e+00 0.00 6.152063e+05 6.088020e+05 6404.27 NULL
2024 Dept Of Citywide Admin Svcs Masons Helper NA NA 22.02 2.202000e+01 22.020 0.50 1 2.202000e+01 22.02 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Mayoral Program Coordinator 53190.67723 2.074436e+06 14043.20 3.600821e+02 0.000 353.75 39 0.000000e+00 0.00 2.088480e+06 2.074436e+06 14043.20 NULL
2024 Dept Of Citywide Admin Svcs Mechanical Engineer 126333.50000 2.526670e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.526670e+05 2.526670e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Media Services Technician 76491.00000 7.649100e+04 3369.85 3.369850e+03 3369.850 76.25 1 3.369850e+03 3369.85 7.986085e+04 7.986085e+04 0.00 NULL
2024 Dept Of Citywide Admin Svcs Motor Vehicle Operator 44979.00000 8.995800e+04 3462.05 1.731025e+03 1731.025 91.00 2 1.731025e+03 3462.05 9.342005e+04 9.342005e+04 0.00 NULL
2024 Dept Of Citywide Admin Svcs Motor Vehicle Supervisor 65993.00000 6.599300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.599300e+04 6.599300e+04 0.00 NULL
2024 Dept Of Citywide Admin Svcs New York City Fellow 31611.63877 6.638444e+05 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 6.638444e+05 6.638444e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs New York City Public Service Fellow 44851.94118 7.624830e+05 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 7.624830e+05 7.624830e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs New York City Urban Fellow 25659.29618 8.467568e+05 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 8.467568e+05 8.467568e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Office Machine Aide 52417.00000 5.241700e+04 0.43 4.300000e-01 0.430 0.00 1 4.300000e-01 0.43 5.241743e+04 5.241743e+04 0.00 NULL
2024 Dept Of Citywide Admin Svcs Oiler NA NA 1063322.70 3.544409e+04 20689.465 9535.25 30 2.068947e+04 620683.95 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Painter NA NA 137949.81 2.299163e+04 18481.865 1758.50 6 1.848187e+04 110891.19 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Plasterer NA NA 225718.62 5.642965e+04 50167.725 2306.50 4 5.016772e+04 200670.90 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Plumber NA NA 914982.70 6.099885e+04 57701.650 7451.75 15 5.770165e+04 865524.75 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Principal Administrative Associate - Non Supvr 69677.18557 6.758687e+06 251359.03 2.591330e+03 0.000 5157.00 97 0.000000e+00 0.00 7.010046e+06 6.758687e+06 251359.03 NULL
2024 Dept Of Citywide Admin Svcs Procurement Analyst 74094.75000 1.185516e+06 4029.77 2.518606e+02 0.000 67.25 16 0.000000e+00 0.00 1.189546e+06 1.185516e+06 4029.77 NULL
2024 Dept Of Citywide Admin Svcs Project Manager 73878.00000 7.387800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.387800e+04 7.387800e+04 0.00 NULL
2024 Dept Of Citywide Admin Svcs Public Records Officer 77305.00000 7.730500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.730500e+04 7.730500e+04 0.00 NULL
2024 Dept Of Citywide Admin Svcs Quality Assurance Specialist 67235.60000 6.723560e+05 55519.02 5.551902e+03 5420.780 1376.50 10 5.420780e+03 54207.80 7.278750e+05 7.265638e+05 1311.22 NULL
2024 Dept Of Citywide Admin Svcs Radio And Television Operator 61493.50000 1.229870e+05 9248.66 4.624330e+03 4624.330 218.00 2 4.624330e+03 9248.66 1.322357e+05 1.322357e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Research Projects Coord 109052.66216 4.034948e+06 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 4.034948e+06 4.034948e+06 0.00 NULL
2024 Dept Of Citywide Admin Svcs Secretary 57956.25000 2.318250e+05 1317.81 3.294525e+02 0.000 28.50 4 0.000000e+00 0.00 2.331428e+05 2.318250e+05 1317.81 NULL
2024 Dept Of Citywide Admin Svcs Secretary Of Comm 77737.00000 7.773700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.773700e+04 7.773700e+04 0.00 NULL
2024 Dept Of Citywide Admin Svcs Secretary To The Deputy Commissioner 105496.50000 2.109930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.109930e+05 2.109930e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Senior It Architect 169373.00000 1.693730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.693730e+05 1.693730e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Senior Stationary Engineer NA NA 1627404.95 6.509620e+04 61971.060 12057.50 25 6.197106e+04 1549276.50 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Sheet Metal Worker NA NA 104411.32 1.044113e+05 104411.320 777.75 1 1.044113e+05 104411.32 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Space Analyst 89475.80000 4.473790e+05 135.37 2.707400e+01 0.000 0.00 5 0.000000e+00 0.00 4.475144e+05 4.473790e+05 135.37 NULL
2024 Dept Of Citywide Admin Svcs Special Assistant To The Commissioner 184618.00000 1.846180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.846180e+05 1.846180e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Special Assistant To The First Deputy Commissioner 151944.00000 1.519440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.519440e+05 1.519440e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Special Examiner 21189.77567 5.721239e+05 3821.70 1.415444e+02 58.110 84.50 27 5.811000e+01 1568.97 5.759456e+05 5.736929e+05 2252.73 NULL
2024 Dept Of Citywide Admin Svcs Special Officer 49348.11250 3.947849e+06 418252.74 5.228159e+03 1742.310 10530.89 80 1.742310e+03 139384.80 4.366102e+06 4.087234e+06 278867.94 NULL
2024 Dept Of Citywide Admin Svcs Staff Analyst 70679.81818 3.887390e+06 49050.03 8.918187e+02 4.930 914.75 55 4.930000e+00 271.15 3.936440e+06 3.887661e+06 48778.88 NULL
2024 Dept Of Citywide Admin Svcs Staff Analyst Trainee 52650.42857 3.685530e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.685530e+05 3.685530e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Stationary Engineer NA NA 7445789.70 5.434883e+04 51784.050 62506.00 137 5.178405e+04 7094414.85 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Statistician 81787.00000 8.178700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.178700e+04 8.178700e+04 0.00 NULL
2024 Dept Of Citywide Admin Svcs Steam Fitter NA NA 627379.95 5.228166e+04 57041.250 5112.25 12 5.228166e+04 627379.95 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Steam Fitter’s Helper NA NA 49589.75 4.958975e+04 49589.750 537.50 1 4.958975e+04 49589.75 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Stock Worker 40832.66667 4.899920e+05 9756.39 8.130325e+02 28.690 320.50 12 2.869000e+01 344.28 4.997484e+05 4.903363e+05 9412.11 NULL
2024 Dept Of Citywide Admin Svcs Strategic Initiative Specialist 129889.80000 6.494490e+05 84711.50 1.694230e+04 30.910 1026.25 5 3.091000e+01 154.55 7.341605e+05 6.496036e+05 84556.95 NULL
2024 Dept Of Citywide Admin Svcs Summer College Intern 2821.53125 6.771675e+04 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 6.771675e+04 6.771675e+04 0.00 NULL
2024 Dept Of Citywide Admin Svcs Summer Graduate Intern 3203.08333 2.882775e+04 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 2.882775e+04 2.882775e+04 0.00 NULL
2024 Dept Of Citywide Admin Svcs Supervising Special Officer 70542.96000 1.763574e+06 348018.04 1.392072e+04 7564.610 6204.75 25 7.564610e+03 189115.25 2.111592e+06 1.952689e+06 158902.79 NULL
2024 Dept Of Citywide Admin Svcs Supervisor NA NA 64052.50 6.405250e+04 64052.500 829.25 1 6.405250e+04 64052.50 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Supervisor Bricklayer NA NA 860.21 8.602100e+02 860.210 0.00 1 8.602100e+02 860.21 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Supervisor Carpenter NA NA 132365.00 3.309125e+04 30422.080 1476.25 4 3.042208e+04 121688.32 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Supervisor Electrician NA NA 239071.84 1.195359e+05 119535.920 2231.75 2 1.195359e+05 239071.84 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Supervisor Elevator Mechanic NA NA 344331.10 5.738852e+04 59930.235 3287.50 6 5.738852e+04 344331.10 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Supervisor Of Mechanics 132434.00000 1.324340e+05 2380.32 2.380320e+03 2380.320 9.50 1 2.380320e+03 2380.32 1.348143e+05 1.348143e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Supervisor Of Motor Transport 79616.00000 7.961600e+04 27007.80 2.700780e+04 27007.800 424.00 1 2.700780e+04 27007.80 1.066238e+05 1.066238e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Supervisor Of Radio And Television Operators 99159.00000 1.983180e+05 48859.55 2.442978e+04 24429.775 681.50 2 2.442978e+04 48859.55 2.471775e+05 2.471775e+05 0.00 NULL
2024 Dept Of Citywide Admin Svcs Supervisor Of Stock Workers 56194.12500 4.495530e+05 74717.58 9.339698e+03 5463.410 1629.00 8 5.463410e+03 43707.28 5.242706e+05 4.932603e+05 31010.30 NULL
2024 Dept Of Citywide Admin Svcs Supervisor Painter NA NA 36924.87 3.692487e+04 36924.870 368.00 1 3.692487e+04 36924.87 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Supervisor Plumber NA NA 115594.45 1.155944e+05 115594.450 891.50 1 1.155944e+05 115594.45 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Supervisor Sheet Metal Worker NA NA 148698.67 1.486987e+05 148698.670 1039.75 1 1.486987e+05 148698.67 NA NA NA NULL
2024 Dept Of Citywide Admin Svcs Telecommunications Associate 87724.66667 2.631740e+05 16477.78 5.492593e+03 5077.800 238.00 3 5.077800e+03 15233.40 2.796518e+05 2.784074e+05 1244.38 NULL
2024 Dept Of Citywide Admin Svcs Tests And Measurement Specialist 75317.58065 2.334845e+06 3471.94 1.119981e+02 0.000 54.50 31 0.000000e+00 0.00 2.338317e+06 2.334845e+06 3471.94 NULL
2024 Dept Of Citywide Admin Svcs Thermostat Repairer NA NA 107717.33 1.538819e+04 4963.020 856.50 7 4.963020e+03 34741.14 NA NA NA NULL
2024 Dept Of Ed Hrly Support Staff Coop Education Trainee Computer Tech Aide/Jr 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 93 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 Dept Of Ed Hrly Support Staff Coop Education Trainee Computer Tech Aide/Sr 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 33 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 Dept Of Ed Hrly Support Staff F/T Dc 37 Family Para 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1676 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 Dept Of Ed Hrly Support Staff F/T Health Service Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 80 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 Dept Of Ed Hrly Support Staff F/T School Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 9094 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 Dept Of Ed Hrly Support Staff F/T School Guard 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 Dept Of Ed Hrly Support Staff F/T School Lunch Helper 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 3850 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 Dept Of Ed Hrly Support Staff F/T School Safety Officer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 Dept Of Ed Hrly Support Staff F/T Sr. School Lunch Helper 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 2795 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 Dept Of Ed Hrly Support Staff Student Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 3353 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 Dept Of Ed Hrly Support Staff Student Aide Vocational 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 Dept Of Ed Hrly Support Staff Substitute School Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 335 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 Dept Of Ed Hrly Support Staff Substitute School Lunch Helper 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 882 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 Dept Of Ed Hrly Support Staff Substitute Sr. School Lunch Helper 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 579 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 Dept Of Ed Hrly Support Staff Supervising School Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 522 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 Dept Of Ed Hrly Support Staff NA NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2024 Dept Of Ed Para Professionals Adult Ed-30 H 44974.14286 3.148190e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.148190e+05 3.148190e+05 0.00 NULL
2024 Dept Of Ed Para Professionals Annual Ed Para 40944.48092 8.946369e+08 0.00 0.000000e+00 0.000 0.00 21850 0.000000e+00 0.00 8.946369e+08 8.946369e+08 0.00 NULL
2024 Dept Of Ed Para Professionals Pre-Ses Ed Para 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 Dept Of Ed Para Professionals Substitute Ed Para NA NA 0.00 0.000000e+00 0.000 0.00 19258 0.000000e+00 0.00 NA NA NA NULL
2024 Dept Of Ed Para Professionals Teacher Aide 30731.97600 3.841497e+06 0.00 0.000000e+00 0.000 0.00 125 0.000000e+00 0.00 3.841497e+06 3.841497e+06 0.00 NULL
2024 Dept Of Ed Pedagogical 12 Month Special Education Asst. Principal 154410.36364 3.057325e+07 0.00 0.000000e+00 0.000 0.00 198 0.000000e+00 0.00 3.057325e+07 3.057325e+07 0.00 NULL
2024 Dept Of Ed Pedagogical 12 Month Special Education Supervisor 161397.42857 2.259564e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.259564e+06 2.259564e+06 0.00 NULL
2024 Dept Of Ed Pedagogical Adult Educat Teach - Reg Sub 41836.00000 8.367200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.367200e+04 8.367200e+04 0.00 NULL
2024 Dept Of Ed Pedagogical Adult Education Teacher 119002.51190 1.999242e+07 0.00 0.000000e+00 0.000 0.00 168 0.000000e+00 0.00 1.999242e+07 1.999242e+07 0.00 NULL
2024 Dept Of Ed Pedagogical Assistant Principal 144149.70079 3.295262e+08 0.00 0.000000e+00 0.000 0.00 2286 0.000000e+00 0.00 3.295262e+08 3.295262e+08 0.00 NULL
2024 Dept Of Ed Pedagogical Assistant Principal Assigned 157740.27778 2.839325e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.839325e+06 2.839325e+06 0.00 NULL
2024 Dept Of Ed Pedagogical Assistant Superintendent 181914.87500 5.821276e+06 0.00 0.000000e+00 0.000 0.00 32 0.000000e+00 0.00 5.821276e+06 5.821276e+06 0.00 NULL
2024 Dept Of Ed Pedagogical Community Supertindent 200115.42857 1.400808e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.400808e+06 1.400808e+06 0.00 NULL
2024 Dept Of Ed Pedagogical Cse Chairperson 170667.75000 6.826710e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.826710e+05 6.826710e+05 0.00 NULL
2024 Dept Of Ed Pedagogical Director 162655.00000 3.253100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.253100e+05 3.253100e+05 0.00 NULL
2024 Dept Of Ed Pedagogical Educational Administrator Csa 150721.31174 1.116845e+08 0.00 0.000000e+00 0.000 0.00 741 0.000000e+00 0.00 1.116845e+08 1.116845e+08 0.00 NULL
2024 Dept Of Ed Pedagogical Educational Administrator Uft 149467.33333 4.484020e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.484020e+05 4.484020e+05 0.00 NULL
2024 Dept Of Ed Pedagogical Guidance Counselor 108670.47447 4.129478e+08 0.00 0.000000e+00 0.000 0.00 3800 0.000000e+00 0.00 4.129478e+08 4.129478e+08 0.00 NULL
2024 Dept Of Ed Pedagogical Guidance Counselor Assigned A 125530.46667 1.882957e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.882957e+06 1.882957e+06 0.00 NULL
2024 Dept Of Ed Pedagogical Guidance Counselor-Reg Sub 75348.20000 3.013928e+06 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 3.013928e+06 3.013928e+06 0.00 NULL
2024 Dept Of Ed Pedagogical Lab Specialist/Assistant 102979.27869 6.281736e+06 0.00 0.000000e+00 0.000 0.00 61 0.000000e+00 0.00 6.281736e+06 6.281736e+06 0.00 NULL
2024 Dept Of Ed Pedagogical Local Instructional Supervisor 195619.00000 3.912380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.912380e+05 3.912380e+05 0.00 NULL
2024 Dept Of Ed Pedagogical Principal 185008.65751 1.010147e+08 0.00 0.000000e+00 0.000 0.00 546 0.000000e+00 0.00 1.010147e+08 1.010147e+08 0.00 NULL
2024 Dept Of Ed Pedagogical Principal Assigned 198127.88889 1.783151e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.783151e+06 1.783151e+06 0.00 NULL
2024 Dept Of Ed Pedagogical Psychologist In Train - Reg Sub 57308.96774 3.553156e+06 0.00 0.000000e+00 0.000 0.00 62 0.000000e+00 0.00 3.553156e+06 3.553156e+06 0.00 NULL
2024 Dept Of Ed Pedagogical Psychologist In Training 56834.00000 7.956760e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 7.956760e+05 7.956760e+05 0.00 NULL
2024 Dept Of Ed Pedagogical School Medical Inspector 95146.14286 6.660230e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.660230e+05 6.660230e+05 0.00 NULL
2024 Dept Of Ed Pedagogical School Psychiatrist 106033.00000 1.060330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.060330e+05 1.060330e+05 0.00 NULL
2024 Dept Of Ed Pedagogical School Psycholgist 108635.20929 1.474180e+08 0.00 0.000000e+00 0.000 0.00 1357 0.000000e+00 0.00 1.474180e+08 1.474180e+08 0.00 NULL
2024 Dept Of Ed Pedagogical School Psychologist - Reg Sub 74549.00000 2.236470e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.236470e+05 2.236470e+05 0.00 NULL
2024 Dept Of Ed Pedagogical School Secretary 68402.82945 3.112329e+08 0.00 0.000000e+00 0.000 0.00 4550 0.000000e+00 0.00 3.112329e+08 3.112329e+08 0.00 NULL
2024 Dept Of Ed Pedagogical School Secretary-Reg Sub 49578.79621 3.138338e+07 0.00 0.000000e+00 0.000 0.00 633 0.000000e+00 0.00 3.138338e+07 3.138338e+07 0.00 NULL
2024 Dept Of Ed Pedagogical School Social Worker 104605.18566 2.377676e+08 0.00 0.000000e+00 0.000 0.00 2273 0.000000e+00 0.00 2.377676e+08 2.377676e+08 0.00 NULL
2024 Dept Of Ed Pedagogical School Social Worker - Reg Sub 75797.75000 6.063820e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.063820e+05 6.063820e+05 0.00 NULL
2024 Dept Of Ed Pedagogical Supervisor 140378.05000 5.615122e+06 0.00 0.000000e+00 0.000 0.00 40 0.000000e+00 0.00 5.615122e+06 5.615122e+06 0.00 NULL
2024 Dept Of Ed Pedagogical Supervisor Assigned 162745.64706 2.766676e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.766676e+06 2.766676e+06 0.00 NULL
2024 Dept Of Ed Pedagogical Teach Asst Vocation - Reg Sub 59267.07547 3.141155e+06 0.00 0.000000e+00 0.000 0.00 53 0.000000e+00 0.00 3.141155e+06 3.141155e+06 0.00 NULL
2024 Dept Of Ed Pedagogical Teacher 102183.28349 6.086139e+09 0.00 0.000000e+00 0.000 0.00 59561 0.000000e+00 0.00 6.086139e+09 6.086139e+09 0.00 NULL
2024 Dept Of Ed Pedagogical Teacher Assigned A 117749.57159 1.052681e+08 0.00 0.000000e+00 0.000 0.00 894 0.000000e+00 0.00 1.052681e+08 1.052681e+08 0.00 NULL
2024 Dept Of Ed Pedagogical Teacher Assigned B 114899.84211 2.183097e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.183097e+06 2.183097e+06 0.00 NULL
2024 Dept Of Ed Pedagogical Teacher Assistant - Reg Sub 22500.00000 2.700000e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 2.700000e+05 2.700000e+05 0.00 NULL
2024 Dept Of Ed Pedagogical Teacher Attendance 106230.41903 5.247783e+07 0.00 0.000000e+00 0.000 0.00 494 0.000000e+00 0.00 5.247783e+07 5.247783e+07 0.00 NULL
2024 Dept Of Ed Pedagogical Teacher Special Education 94977.22086 2.769441e+09 0.00 0.000000e+00 0.000 0.00 29159 0.000000e+00 0.00 2.769441e+09 2.769441e+09 0.00 NULL
2024 Dept Of Ed Pedagogical Teacher Special Education-Reg Sub 71122.25980 1.450894e+07 0.00 0.000000e+00 0.000 0.00 204 0.000000e+00 0.00 1.450894e+07 1.450894e+07 0.00 NULL
2024 Dept Of Ed Pedagogical Teacher Trainer 113610.66667 3.408320e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.408320e+05 3.408320e+05 0.00 NULL
2024 Dept Of Ed Pedagogical Teacher-Reg Sub 70940.63772 5.717815e+07 0.00 0.000000e+00 0.000 0.00 806 0.000000e+00 0.00 5.717815e+07 5.717815e+07 0.00 NULL
2024 Dept Of Ed Pedagogical Uft School Secretary Assigned - Non School Based- 12 Month 69033.00000 1.380660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.380660e+05 1.380660e+05 0.00 NULL
2024 Dept Of Ed Per Diem Teachers Assistant Principal NA NA 0.00 0.000000e+00 0.000 0.00 150 0.000000e+00 0.00 NA NA NA NULL
2024 Dept Of Ed Per Diem Teachers Guidance Counselor NA NA 0.00 0.000000e+00 0.000 0.00 104 0.000000e+00 0.00 NA NA NA NULL
2024 Dept Of Ed Per Diem Teachers Principal NA NA 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 NA NA NA NULL
2024 Dept Of Ed Per Diem Teachers School Psychologist NA NA 0.00 0.000000e+00 0.000 0.00 46 0.000000e+00 0.00 NA NA NA NULL
2024 Dept Of Ed Per Diem Teachers School Social Worker NA NA 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 NA NA NA NULL
2024 Dept Of Ed Per Diem Teachers Secretary NA NA 0.00 0.000000e+00 0.000 0.00 128 0.000000e+00 0.00 NA NA NA NULL
2024 Dept Of Ed Per Diem Teachers Supervisor NA NA 0.00 0.000000e+00 0.000 0.00 110 0.000000e+00 0.00 NA NA NA NULL
2024 Dept Of Ed Per Diem Teachers Teacher-General Ed NA NA 0.00 0.000000e+00 0.000 0.00 15868 0.000000e+00 0.00 NA NA NA NULL
2024 Dept Of Ed Per Diem Teachers Teacher-Special Ed NA NA 0.00 0.000000e+00 0.000 0.00 162 0.000000e+00 0.00 NA NA NA NULL
2024 Dept Of Ed Per Session Teacher School Medical Inspector - Per Session NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2024 Dept Of Ed Per Session Teacher School Secretary Per Session NA NA 0.00 0.000000e+00 0.000 0.00 1528 0.000000e+00 0.00 NA NA NA NULL
2024 Dept Of Ed Per Session Teacher Supervisor Per Session NA NA 0.00 0.000000e+00 0.000 0.00 1101 0.000000e+00 0.00 NA NA NA NULL
2024 Dept Of Ed Per Session Teacher Teacher- Per Session NA NA 0.00 0.000000e+00 0.000 0.00 84675 0.000000e+00 0.00 NA NA NA NULL
2024 Dept Of Environment Protection *Attorney At Law 121668.50000 2.433370e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.433370e+05 2.433370e+05 0.00 NULL
2024 Dept Of Environment Protection *Custodial Assistant 47256.00000 4.725600e+04 3541.28 3.541280e+03 3541.280 97.00 1 3.541280e+03 3541.28 5.079728e+04 5.079728e+04 0.00 NULL
2024 Dept Of Environment Protection Accountant 81878.50000 3.275140e+05 712.79 1.781975e+02 0.000 18.50 4 0.000000e+00 0.00 3.282268e+05 3.275140e+05 712.79 NULL
2024 Dept Of Environment Protection Adm Manager-Non-Mgrl 101252.77372 1.387163e+07 832150.79 6.074093e+03 265.170 11628.75 137 2.651700e+02 36328.29 1.470378e+07 1.390796e+07 795822.50 NULL
2024 Dept Of Environment Protection Admin Community Relations Specialist 129094.75000 1.032758e+06 78389.50 9.798688e+03 6640.110 937.50 8 6.640110e+03 53120.88 1.111148e+06 1.085879e+06 25268.62 NULL
2024 Dept Of Environment Protection Admin Construction Project Manager 129283.50000 2.585670e+05 2872.07 1.436035e+03 1436.035 35.50 2 1.436035e+03 2872.07 2.614391e+05 2.614391e+05 0.00 NULL
2024 Dept Of Environment Protection Admin Contract Specialist 140417.00000 1.404170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.404170e+05 1.404170e+05 0.00 NULL
2024 Dept Of Environment Protection Admin Dir Of Laboratory 125959.00000 2.519180e+05 772.17 3.860850e+02 386.085 10.75 2 3.860850e+02 772.17 2.526902e+05 2.526902e+05 0.00 NULL
2024 Dept Of Environment Protection Admin Housing Development Spec 145209.00000 2.904180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.904180e+05 2.904180e+05 0.00 NULL
2024 Dept Of Environment Protection Administrative Accountant 106361.50000 4.254460e+05 28392.99 7.098248e+03 6854.900 404.50 4 6.854900e+03 27419.60 4.538390e+05 4.528656e+05 973.39 NULL
2024 Dept Of Environment Protection Administrative Architect 155538.00000 3.110760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.110760e+05 3.110760e+05 0.00 NULL
2024 Dept Of Environment Protection Administrative City Planner 145667.85000 2.913357e+06 3153.01 1.576505e+02 0.000 89.75 20 0.000000e+00 0.00 2.916510e+06 2.913357e+06 3153.01 NULL
2024 Dept Of Environment Protection Administrative Community Relations Specialist 224091.66667 6.722750e+05 6678.23 2.226077e+03 0.000 26.75 3 0.000000e+00 0.00 6.789532e+05 6.722750e+05 6678.23 NULL
2024 Dept Of Environment Protection Administrative Construction Project Manager 160173.50000 6.406940e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.406940e+05 6.406940e+05 0.00 NULL
2024 Dept Of Environment Protection Administrative Contract Specialist 123821.00000 2.476420e+05 32865.71 1.643285e+04 16432.855 384.75 2 1.643285e+04 32865.71 2.805077e+05 2.805077e+05 0.00 NULL
2024 Dept Of Environment Protection Administrative Director Of Laboratory 152918.09524 3.211280e+06 -712.23 -3.391571e+01 0.000 111.75 21 -3.391571e+01 -712.23 3.210568e+06 3.210568e+06 0.00 NULL
2024 Dept Of Environment Protection Administrative Engineer 164850.82613 3.939935e+07 331115.15 1.385419e+03 0.000 3847.00 239 0.000000e+00 0.00 3.973046e+07 3.939935e+07 331115.15 NULL
2024 Dept Of Environment Protection Administrative Horticulturist 129192.33333 7.751540e+05 48655.93 8.109322e+03 0.000 704.25 6 0.000000e+00 0.00 8.238099e+05 7.751540e+05 48655.93 NULL
2024 Dept Of Environment Protection Administrative Housing Development Specialist 235116.00000 2.351160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.351160e+05 2.351160e+05 0.00 NULL
2024 Dept Of Environment Protection Administrative Management Auditor 121784.00000 2.435680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.435680e+05 2.435680e+05 0.00 NULL
2024 Dept Of Environment Protection Administrative Manager 218709.50000 4.374190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.374190e+05 4.374190e+05 0.00 NULL
2024 Dept Of Environment Protection Administrative Parks & Recreation Manager 164162.00000 1.641620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.641620e+05 1.641620e+05 0.00 NULL
2024 Dept Of Environment Protection Administrative Procurement Analyst 140417.00000 1.404170e+05 107.80 1.078000e+02 107.800 0.00 1 1.078000e+02 107.80 1.405248e+05 1.405248e+05 0.00 NULL
2024 Dept Of Environment Protection Administrative Procurement Analyst-Non-Mgrl 94790.87097 2.938517e+06 217969.69 7.031280e+03 134.590 3360.75 31 1.345900e+02 4172.29 3.156487e+06 2.942689e+06 213797.40 NULL
2024 Dept Of Environment Protection Administrative Project Manager 141032.20842 1.974451e+07 528791.53 3.777082e+03 0.000 6690.25 140 0.000000e+00 0.00 2.027330e+07 1.974451e+07 528791.53 NULL
2024 Dept Of Environment Protection Administrative Public Health Sanitarian 150431.66667 2.256475e+06 7580.89 5.053927e+02 0.000 90.50 15 0.000000e+00 0.00 2.264056e+06 2.256475e+06 7580.89 NULL
2024 Dept Of Environment Protection Administrative Public Information Specialist 152595.00000 6.103800e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.103800e+05 6.103800e+05 0.00 NULL
2024 Dept Of Environment Protection Administrative Public Information Specialist Nm Former M1/M2 171340.00000 1.713400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.713400e+05 1.713400e+05 0.00 NULL
2024 Dept Of Environment Protection Administrative Quality Assurance Specialist 103929.50000 2.078590e+05 21459.65 1.072983e+04 10729.825 302.50 2 1.072983e+04 21459.65 2.293186e+05 2.293186e+05 0.00 NULL
2024 Dept Of Environment Protection Administrative Real Property Manager 147617.66667 4.428530e+05 333.09 1.110300e+02 0.000 4.50 3 0.000000e+00 0.00 4.431861e+05 4.428530e+05 333.09 NULL
2024 Dept Of Environment Protection Administrative Staff Analyst 145266.05303 1.917512e+07 698336.84 5.290431e+03 0.000 7007.00 132 0.000000e+00 0.00 1.987346e+07 1.917512e+07 698336.84 NULL
2024 Dept Of Environment Protection Administrative Storekeeper 138977.00000 2.779540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.779540e+05 2.779540e+05 0.00 NULL
2024 Dept Of Environment Protection Administrative Supervisor Of Building Maintenance 139862.00000 1.398620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.398620e+05 1.398620e+05 0.00 NULL
2024 Dept Of Environment Protection Agency Attorney 108338.83784 4.008537e+06 52170.44 1.410012e+03 0.000 632.50 37 0.000000e+00 0.00 4.060707e+06 4.008537e+06 52170.44 NULL
2024 Dept Of Environment Protection Agency Attorney Interne 81807.00000 3.272280e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.272280e+05 3.272280e+05 0.00 NULL
2024 Dept Of Environment Protection Air Pollution Inspector 55671.06122 2.727882e+06 464568.47 9.480989e+03 3507.010 11214.50 49 3.507010e+03 171843.49 3.192450e+06 2.899725e+06 292724.98 NULL
2024 Dept Of Environment Protection Apprentice 51341.69065 7.136495e+06 252248.35 1.814736e+03 878.100 7323.58 139 8.781000e+02 122055.90 7.388743e+06 7.258551e+06 130192.45 NULL
2024 Dept Of Environment Protection Architect 105109.00000 1.051090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.051090e+05 1.051090e+05 0.00 NULL
2024 Dept Of Environment Protection Architectural Intern 66546.00000 6.654600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.654600e+04 6.654600e+04 0.00 NULL
2024 Dept Of Environment Protection Assistant Architect 84760.40000 4.238020e+05 6586.37 1.317274e+03 0.000 120.25 5 0.000000e+00 0.00 4.303884e+05 4.238020e+05 6586.37 NULL
2024 Dept Of Environment Protection Assistant Chemical Engineer 81911.55000 1.638231e+06 196492.27 9.824613e+03 3654.835 3529.00 20 3.654835e+03 73096.70 1.834723e+06 1.711328e+06 123395.57 NULL
2024 Dept Of Environment Protection Assistant Civil Engineer 78204.95238 8.211520e+06 690781.30 6.578870e+03 535.100 12612.00 105 5.351000e+02 56185.50 8.902301e+06 8.267706e+06 634595.80 NULL
2024 Dept Of Environment Protection Assistant Commissioner 224242.00000 4.484840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.484840e+05 4.484840e+05 0.00 NULL
2024 Dept Of Environment Protection Assistant Electrical Engineer 78871.93103 2.287286e+06 137519.85 4.742064e+03 0.000 2923.50 29 0.000000e+00 0.00 2.424806e+06 2.287286e+06 137519.85 NULL
2024 Dept Of Environment Protection Assistant Environmental Engineer 77672.61111 4.194321e+06 178655.46 3.308434e+03 0.000 3281.75 54 0.000000e+00 0.00 4.372976e+06 4.194321e+06 178655.46 NULL
2024 Dept Of Environment Protection Assistant Landscape Architect 80986.60000 4.049330e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.049330e+05 4.049330e+05 0.00 NULL
2024 Dept Of Environment Protection Assistant Mechanical Engineer 78446.88732 5.569729e+06 413534.02 5.824423e+03 51.120 8279.50 71 5.112000e+01 3629.52 5.983263e+06 5.573359e+06 409904.50 NULL
2024 Dept Of Environment Protection Assoc Water Use Inspector-Mgrl 201504.00000 2.015040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.015040e+05 2.015040e+05 0.00 NULL
2024 Dept Of Environment Protection Associate Air Pollution Inspr 72488.29630 1.957184e+06 772487.37 2.861064e+04 28317.910 13922.00 27 2.831791e+04 764583.57 2.729671e+06 2.721768e+06 7903.80 NULL
2024 Dept Of Environment Protection Associate Chemist 83419.28571 1.109476e+07 1179864.42 8.871161e+03 1463.920 25505.75 133 1.463920e+03 194701.36 1.227463e+07 1.128947e+07 985163.06 NULL
2024 Dept Of Environment Protection Associate Housing Development Specialist 106723.25000 8.537860e+05 39481.49 4.935186e+03 0.000 567.25 8 0.000000e+00 0.00 8.932675e+05 8.537860e+05 39481.49 NULL
2024 Dept Of Environment Protection Associate Investigator 80548.25000 3.221930e+05 37841.82 9.460455e+03 321.910 698.25 4 3.219100e+02 1287.64 3.600348e+05 3.234806e+05 36554.18 NULL
2024 Dept Of Environment Protection Associate Laboratory Microbiologist 85357.64000 2.133941e+06 129928.82 5.197153e+03 233.130 2584.25 25 2.331300e+02 5828.25 2.263870e+06 2.139769e+06 124100.57 NULL
2024 Dept Of Environment Protection Associate Park Service Worker 53326.00000 3.199560e+05 15919.26 2.653210e+03 664.615 412.50 6 6.646150e+02 3987.69 3.358753e+05 3.239437e+05 11931.57 NULL
2024 Dept Of Environment Protection Associate Project Manager 100561.25806 2.182179e+07 1128493.90 5.200433e+03 0.000 16054.00 217 0.000000e+00 0.00 2.295029e+07 2.182179e+07 1128493.90 NULL
2024 Dept Of Environment Protection Associate Public Health Sanitarian 90721.93548 2.812380e+06 94002.88 3.032351e+03 868.070 1447.50 31 8.680700e+02 26910.17 2.906383e+06 2.839290e+06 67092.71 NULL
2024 Dept Of Environment Protection Associate Public Records Officer 89266.50000 1.785330e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.785330e+05 1.785330e+05 0.00 NULL
2024 Dept Of Environment Protection Associate Quality Assurance Specialist 84087.00000 8.408700e+04 28017.40 2.801740e+04 28017.400 456.00 1 2.801740e+04 28017.40 1.121044e+05 1.121044e+05 0.00 NULL
2024 Dept Of Environment Protection Associate Staff Analyst 91697.16776 3.484492e+06 66465.61 1.749095e+03 0.000 1016.50 38 0.000000e+00 0.00 3.550958e+06 3.484492e+06 66465.61 NULL
2024 Dept Of Environment Protection Associate Water Use Inpector 79855.95000 3.194238e+06 971522.46 2.428806e+04 19137.865 15636.25 40 1.913787e+04 765514.60 4.165760e+06 3.959753e+06 206007.86 NULL
2024 Dept Of Environment Protection Auto Mechanic NA NA 139647.59 1.074212e+04 6361.460 1841.25 13 6.361460e+03 82698.98 NA NA NA NULL
2024 Dept Of Environment Protection Borough Commissioner 154500.00000 1.545000e+05 19184.23 1.918423e+04 19184.230 181.25 1 1.918423e+04 19184.23 1.736842e+05 1.736842e+05 0.00 NULL
2024 Dept Of Environment Protection Captain 94070.00000 9.407000e+05 216116.35 2.161163e+04 20150.250 3161.25 10 2.015025e+04 201502.50 1.156816e+06 1.142202e+06 14613.85 NULL
2024 Dept Of Environment Protection Carpenter NA NA 111114.89 1.587356e+04 20443.850 1155.50 7 1.587356e+04 111114.89 NA NA NA NULL
2024 Dept Of Environment Protection Cement Mason NA NA 33602.04 1.680102e+04 16801.020 348.00 2 1.680102e+04 33602.04 NA NA NA NULL
2024 Dept Of Environment Protection Certified It Administrator 129770.03571 3.633561e+06 319266.37 1.140237e+04 4040.310 3349.00 28 4.040310e+03 113128.68 3.952827e+06 3.746690e+06 206137.69 NULL
2024 Dept Of Environment Protection Certified It Developer 129519.28750 1.813270e+06 10524.25 7.517321e+02 0.000 129.75 14 0.000000e+00 0.00 1.823794e+06 1.813270e+06 10524.25 NULL
2024 Dept Of Environment Protection Chemical Engineer 108973.50000 2.179470e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.179470e+05 2.179470e+05 0.00 NULL
2024 Dept Of Environment Protection Chief Marine Engineer 87792.00000 7.023360e+05 379859.83 4.748248e+04 64387.950 5866.25 8 4.748248e+04 379859.83 1.082196e+06 1.082196e+06 0.00 NULL
2024 Dept Of Environment Protection City Laborer NA NA 100355.78 7.719675e+03 2419.720 1597.50 13 2.419720e+03 31456.36 NA NA NA NULL
2024 Dept Of Environment Protection City Park Worker 35251.08531 2.115065e+06 153404.63 2.556744e+03 1217.345 5560.50 60 1.217345e+03 73040.70 2.268470e+06 2.188106e+06 80363.93 NULL
2024 Dept Of Environment Protection City Planner 89144.25641 3.476626e+06 74048.94 1.898691e+03 0.000 1512.25 39 0.000000e+00 0.00 3.550675e+06 3.476626e+06 74048.94 NULL
2024 Dept Of Environment Protection City Research Scientist 102336.59813 1.095002e+07 382824.52 3.577799e+03 0.000 6408.25 107 0.000000e+00 0.00 1.133284e+07 1.095002e+07 382824.52 NULL
2024 Dept Of Environment Protection City Seasonal Aide 28276.90838 6.786458e+05 14539.64 6.058183e+02 0.000 634.25 24 0.000000e+00 0.00 6.931854e+05 6.786458e+05 14539.64 NULL
2024 Dept Of Environment Protection Civil Engineer 108720.35484 3.370331e+06 30231.99 9.752255e+02 0.000 446.25 31 0.000000e+00 0.00 3.400563e+06 3.370331e+06 30231.99 NULL
2024 Dept Of Environment Protection Civil Engineering Intern 66416.80000 9.962520e+05 108601.85 7.240123e+03 7085.320 2476.00 15 7.085320e+03 106279.80 1.104854e+06 1.102532e+06 2322.05 NULL
2024 Dept Of Environment Protection Claim Specialist 57289.33333 1.718680e+05 11298.33 3.766110e+03 0.000 245.00 3 0.000000e+00 0.00 1.831663e+05 1.718680e+05 11298.33 NULL
2024 Dept Of Environment Protection Clerical Associate 48177.64598 1.238166e+07 557450.36 2.169068e+03 23.930 15562.62 257 2.393000e+01 6150.01 1.293911e+07 1.238781e+07 551300.35 NULL
2024 Dept Of Environment Protection Climber & Pruner 72689.33333 4.361360e+05 9289.12 1.548187e+03 429.945 172.00 6 4.299450e+02 2579.67 4.454251e+05 4.387157e+05 6709.45 NULL
2024 Dept Of Environment Protection College Aide 8774.46259 2.544594e+05 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 2.544594e+05 2.544594e+05 0.00 NULL
2024 Dept Of Environment Protection College Aide - Assignment Levels Ii And Iii 14319.75000 1.431975e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.431975e+04 1.431975e+04 0.00 NULL
2024 Dept Of Environment Protection Commissioner Of Environmental Protection 282635.00000 2.826350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.826350e+05 2.826350e+05 0.00 NULL
2024 Dept Of Environment Protection Community Assistant 41987.24676 4.198725e+05 46769.84 4.676984e+03 483.080 1533.50 10 4.830800e+02 4830.80 4.666423e+05 4.247033e+05 41939.04 NULL
2024 Dept Of Environment Protection Community Associate 56219.82638 2.754771e+06 211574.60 4.317849e+03 0.000 5459.25 49 0.000000e+00 0.00 2.966346e+06 2.754771e+06 211574.60 NULL
2024 Dept Of Environment Protection Community Coordinator 75783.24976 4.092295e+06 194633.19 3.604318e+03 9.045 3414.75 54 9.045000e+00 488.43 4.286929e+06 4.092784e+06 194144.76 NULL
2024 Dept Of Environment Protection Community Service Aide 38946.50000 7.789300e+04 9805.13 4.902565e+03 4902.565 352.50 2 4.902565e+03 9805.13 8.769813e+04 8.769813e+04 0.00 NULL
2024 Dept Of Environment Protection Computer Aide-Non-Spvr 59297.00000 1.185940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.185940e+05 1.185940e+05 0.00 NULL
2024 Dept Of Environment Protection Computer Associate 95996.37111 3.455869e+06 266275.50 7.396542e+03 52.990 3551.02 36 5.299000e+01 1907.64 3.722145e+06 3.457777e+06 264367.86 NULL
2024 Dept Of Environment Protection Computer Operations Manager 135691.00000 4.070730e+05 48619.13 1.620638e+04 8581.890 480.00 3 8.581890e+03 25745.67 4.556921e+05 4.328187e+05 22873.46 NULL
2024 Dept Of Environment Protection Computer Programmer Analyst 62788.28643 4.395180e+05 1008.62 1.440886e+02 0.000 20.75 7 0.000000e+00 0.00 4.405266e+05 4.395180e+05 1008.62 NULL
2024 Dept Of Environment Protection Computer Service Technician 62264.00000 6.226400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.226400e+04 6.226400e+04 0.00 NULL
2024 Dept Of Environment Protection Computer Specialist 115652.05147 1.283738e+07 447326.31 4.029967e+03 0.000 5422.25 111 0.000000e+00 0.00 1.328470e+07 1.283738e+07 447326.31 NULL
2024 Dept Of Environment Protection Computer Systems Manager 160283.00000 1.763113e+06 -377.09 -3.428091e+01 0.000 0.00 11 -3.428091e+01 -377.09 1.762736e+06 1.762736e+06 0.00 NULL
2024 Dept Of Environment Protection Confidential Asst To The Executive Deputy Commissioner 158933.00000 1.589330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.589330e+05 1.589330e+05 0.00 NULL
2024 Dept Of Environment Protection Construction Laborer NA NA 4087796.52 1.171288e+04 7524.090 50594.42 349 7.524090e+03 2625907.41 NA NA NA NULL
2024 Dept Of Environment Protection Construction Project Manager 89412.09375 2.861187e+06 258107.24 8.065851e+03 2266.365 4167.25 32 2.266365e+03 72523.68 3.119294e+06 2.933711e+06 185583.56 NULL
2024 Dept Of Environment Protection Counsel 269994.00000 2.699940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.699940e+05 2.699940e+05 0.00 NULL
2024 Dept Of Environment Protection Crane Operator Ampes NA NA 84990.62 8.499062e+04 84990.620 625.00 1 8.499062e+04 84990.62 NA NA NA NULL
2024 Dept Of Environment Protection Custodian 43545.06349 1.045082e+06 86503.91 3.604330e+03 71.155 3029.05 24 7.115500e+01 1707.72 1.131585e+06 1.046789e+06 84796.19 NULL
2024 Dept Of Environment Protection Customer Information Representative Ma L 1549 58681.78936 2.464635e+06 95107.35 2.264461e+03 92.125 2243.25 42 9.212500e+01 3869.25 2.559743e+06 2.468504e+06 91238.10 NULL
2024 Dept Of Environment Protection Cyber Security Analyst 91491.00000 9.149100e+05 1472.66 1.472660e+02 0.000 31.25 10 0.000000e+00 0.00 9.163827e+05 9.149100e+05 1472.66 NULL
2024 Dept Of Environment Protection Deputy Commissioner 247820.42857 1.734743e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.734743e+06 1.734743e+06 0.00 NULL
2024 Dept Of Environment Protection Deputy Commissioner Of It 250895.00000 5.017900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.017900e+05 5.017900e+05 0.00 NULL
2024 Dept Of Environment Protection Director Of Noise Abatement 208494.00000 2.084940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.084940e+05 2.084940e+05 0.00 NULL
2024 Dept Of Environment Protection Director Of Technical Services 187827.66667 5.634830e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.634830e+05 5.634830e+05 0.00 NULL
2024 Dept Of Environment Protection Director, Energy Management Strategy 148409.00000 1.484090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.484090e+05 1.484090e+05 0.00 NULL
2024 Dept Of Environment Protection District Supervisor 112500.91667 2.700022e+06 796703.29 3.319597e+04 39345.865 9619.00 24 3.319597e+04 796703.29 3.496725e+06 3.496725e+06 0.00 NULL
2024 Dept Of Environment Protection Electrical Engineer 113489.75000 4.539590e+05 37081.34 9.270335e+03 57.235 415.00 4 5.723500e+01 228.94 4.910403e+05 4.541879e+05 36852.40 NULL
2024 Dept Of Environment Protection Electrical Engineering Intern 66744.87500 5.339590e+05 4784.14 5.980175e+02 17.680 112.50 8 1.768000e+01 141.44 5.387431e+05 5.341004e+05 4642.70 NULL
2024 Dept Of Environment Protection Electrician NA NA 2277145.93 2.710888e+04 24262.745 23008.50 84 2.426274e+04 2038070.58 NA NA NA NULL
2024 Dept Of Environment Protection Electricians Helper NA NA 454782.87 1.515943e+04 17344.010 7304.25 30 1.515943e+04 454782.87 NA NA NA NULL
2024 Dept Of Environment Protection Engineering Technician 65866.09524 5.532752e+06 1661576.54 1.978067e+04 12663.965 35118.75 84 1.266397e+04 1063773.06 7.194329e+06 6.596525e+06 597803.48 NULL
2024 Dept Of Environment Protection Environmental Engineer 104673.44444 9.420610e+05 30907.67 3.434186e+03 623.310 487.25 9 6.233100e+02 5609.79 9.729687e+05 9.476708e+05 25297.88 NULL
2024 Dept Of Environment Protection Environmental Engineering Intern 66396.92308 2.589480e+06 150775.99 3.866051e+03 0.000 3261.75 39 0.000000e+00 0.00 2.740256e+06 2.589480e+06 150775.99 NULL
2024 Dept Of Environment Protection Environmental Police Officer 75766.90500 1.515338e+07 1802914.23 9.014571e+03 4598.375 33042.51 200 4.598375e+03 919675.00 1.695630e+07 1.607306e+07 883239.23 NULL
2024 Dept Of Environment Protection Environmental Police Officer-Managerial 171676.53846 2.231795e+06 1200.26 9.232769e+01 0.000 0.00 13 0.000000e+00 0.00 2.232995e+06 2.231795e+06 1200.26 NULL
2024 Dept Of Environment Protection Executive Agency Counsel 175948.80000 5.278464e+06 1970.95 6.569833e+01 0.000 0.00 30 0.000000e+00 0.00 5.280435e+06 5.278464e+06 1970.95 NULL
2024 Dept Of Environment Protection Executive Asst To The Commissioner 135138.50000 2.702770e+05 2125.44 1.062720e+03 1062.720 25.50 2 1.062720e+03 2125.44 2.724024e+05 2.724024e+05 0.00 NULL
2024 Dept Of Environment Protection Executive Deputy Commissioner 273913.50000 5.478270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.478270e+05 5.478270e+05 0.00 NULL
2024 Dept Of Environment Protection Executive Program Specialist 165236.64706 2.809023e+06 8.71 5.123529e-01 0.000 0.00 17 0.000000e+00 0.00 2.809032e+06 2.809023e+06 8.71 NULL
2024 Dept Of Environment Protection Exterminator 59807.00000 5.980700e+04 95.34 9.534000e+01 95.340 3.00 1 9.534000e+01 95.34 5.990234e+04 5.990234e+04 0.00 NULL
2024 Dept Of Environment Protection Forester 66964.00000 6.696400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.696400e+04 6.696400e+04 0.00 NULL
2024 Dept Of Environment Protection Gardener 56525.65217 1.300090e+06 154821.43 6.731367e+03 2155.470 3704.25 23 2.155470e+03 49575.81 1.454911e+06 1.349666e+06 105245.62 NULL
2024 Dept Of Environment Protection Geologist 66564.25115 8.653353e+05 1609.58 1.238138e+02 0.000 43.50 13 0.000000e+00 0.00 8.669448e+05 8.653353e+05 1609.58 NULL
2024 Dept Of Environment Protection Graphic Artist 89853.00000 8.985300e+04 1096.21 1.096210e+03 1096.210 21.50 1 1.096210e+03 1096.21 9.094921e+04 9.094921e+04 0.00 NULL
2024 Dept Of Environment Protection Helicopter Mechanic 95388.00000 1.907760e+05 491.36 2.456800e+02 245.680 6.50 2 2.456800e+02 491.36 1.912674e+05 1.912674e+05 0.00 NULL
2024 Dept Of Environment Protection Helicopter Pilot 95388.00000 1.907760e+05 1036.29 5.181450e+02 518.145 17.75 2 5.181450e+02 1036.29 1.918123e+05 1.918123e+05 0.00 NULL
2024 Dept Of Environment Protection High School Student Aide 7875.42000 3.937710e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.937710e+04 3.937710e+04 0.00 NULL
2024 Dept Of Environment Protection Industrial Hygienist 70877.64103 2.764228e+06 249851.09 6.406438e+03 665.890 7090.25 39 6.658900e+02 25969.71 3.014079e+06 2.790198e+06 223881.38 NULL
2024 Dept Of Environment Protection Instrumental Specialist 81520.73810 3.423871e+06 345884.75 8.235351e+03 4449.530 6382.25 42 4.449530e+03 186880.26 3.769756e+06 3.610751e+06 159004.49 NULL
2024 Dept Of Environment Protection Investigator 48570.00000 1.457100e+05 75.05 2.501667e+01 0.000 2.75 3 0.000000e+00 0.00 1.457850e+05 1.457100e+05 75.05 NULL
2024 Dept Of Environment Protection It Infrastructure Engineer 177144.50000 3.542890e+05 109015.30 5.450765e+04 54507.650 864.50 2 5.450765e+04 109015.30 4.633043e+05 4.633043e+05 0.00 NULL
2024 Dept Of Environment Protection It Project Specialist 152949.54583 4.588486e+05 26523.28 8.841093e+03 0.000 220.50 3 0.000000e+00 0.00 4.853719e+05 4.588486e+05 26523.28 NULL
2024 Dept Of Environment Protection It Security Specialist 149350.00000 1.493500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.493500e+05 1.493500e+05 0.00 NULL
2024 Dept Of Environment Protection Laboratory Associate 54383.00000 2.719150e+05 14167.44 2.833488e+03 1818.910 420.75 5 1.818910e+03 9094.55 2.860824e+05 2.810095e+05 5072.89 NULL
2024 Dept Of Environment Protection Laboratory Helper 46101.50000 9.220300e+04 286.26 1.431300e+02 143.130 7.50 2 1.431300e+02 286.26 9.248926e+04 9.248926e+04 0.00 NULL
2024 Dept Of Environment Protection Laboratory Microbiologist 66712.00000 4.002720e+05 2429.34 4.048900e+02 334.925 60.00 6 3.349250e+02 2009.55 4.027013e+05 4.022815e+05 419.79 NULL
2024 Dept Of Environment Protection Landscape Architect 87701.00000 8.770100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.770100e+04 8.770100e+04 0.00 NULL
2024 Dept Of Environment Protection Machinist NA NA 640799.39 1.050491e+04 4456.270 8077.50 61 4.456270e+03 271832.47 NA NA NA NULL
2024 Dept Of Environment Protection Machinist’s Helper NA NA 46347.38 3.565183e+03 1990.570 725.25 13 1.990570e+03 25877.41 NA NA NA NULL
2024 Dept Of Environment Protection Management Auditor 73370.00000 1.467400e+05 4842.22 2.421110e+03 2421.110 99.75 2 2.421110e+03 4842.22 1.515822e+05 1.515822e+05 0.00 NULL
2024 Dept Of Environment Protection Marine Electronics Technician 112114.00000 2.242280e+05 10318.80 5.159400e+03 5159.400 130.75 2 5.159400e+03 10318.80 2.345468e+05 2.345468e+05 0.00 NULL
2024 Dept Of Environment Protection Marine Engineer 80388.00000 6.431040e+05 250506.31 3.131329e+04 25479.005 4200.47 8 2.547901e+04 203832.04 8.936103e+05 8.469360e+05 46674.27 NULL
2024 Dept Of Environment Protection Marine Oiler 68962.00000 6.206580e+05 219248.02 2.436089e+04 28532.930 4257.75 9 2.436089e+04 219248.02 8.399060e+05 8.399060e+05 0.00 NULL
2024 Dept Of Environment Protection Mariner 68962.00000 8.965060e+05 306339.26 2.356456e+04 18148.510 5971.75 13 1.814851e+04 235930.63 1.202845e+06 1.132437e+06 70408.63 NULL
2024 Dept Of Environment Protection Mate 76890.00000 1.076460e+06 455802.87 3.255735e+04 31620.450 8149.00 14 3.162045e+04 442686.30 1.532263e+06 1.519146e+06 13116.57 NULL
2024 Dept Of Environment Protection Mechanical Engineer 112866.07692 1.467259e+06 49358.72 3.796825e+03 0.000 736.00 13 0.000000e+00 0.00 1.516618e+06 1.467259e+06 49358.72 NULL
2024 Dept Of Environment Protection Mechanical Engineering Intern 66608.80000 3.330440e+05 1518.84 3.037680e+02 168.760 40.50 5 1.687600e+02 843.80 3.345628e+05 3.338878e+05 675.04 NULL
2024 Dept Of Environment Protection Motor Vehicle Operator 54556.35294 9.274580e+05 231965.30 1.364502e+04 10589.270 5776.25 17 1.058927e+04 180017.59 1.159423e+06 1.107476e+06 51947.71 NULL
2024 Dept Of Environment Protection Motor Vehicle Supervisor 65966.20000 3.298310e+05 25511.43 5.102286e+03 2236.400 561.25 5 2.236400e+03 11182.00 3.553424e+05 3.410130e+05 14329.43 NULL
2024 Dept Of Environment Protection New York City Public Service Fellow 47496.50000 1.899860e+05 25.20 6.300000e+00 0.000 1.00 4 0.000000e+00 0.00 1.900112e+05 1.899860e+05 25.20 NULL
2024 Dept Of Environment Protection Oiler NA NA 1317834.67 1.996719e+04 12058.825 12141.25 66 1.205883e+04 795882.45 NA NA NA NULL
2024 Dept Of Environment Protection Painter NA NA 6644.32 2.214773e+03 2891.890 85.00 3 2.214773e+03 6644.32 NA NA NA NULL
2024 Dept Of Environment Protection Plumber NA NA 425333.39 2.238597e+04 9511.500 3467.75 19 9.511500e+03 180718.50 NA NA NA NULL
2024 Dept Of Environment Protection Plumber’s Helper NA NA 2585.99 1.292995e+03 1292.995 30.00 2 1.292995e+03 2585.99 NA NA NA NULL
2024 Dept Of Environment Protection Port Marine Engineer 110951.00000 1.109510e+05 19556.44 1.955644e+04 19556.440 258.00 1 1.955644e+04 19556.44 1.305074e+05 1.305074e+05 0.00 NULL
2024 Dept Of Environment Protection Principal Administrative Associate - Non Supvr 69962.01623 2.455667e+07 1819708.82 5.184356e+03 219.710 35523.86 351 2.197100e+02 77118.21 2.637638e+07 2.463379e+07 1742590.61 NULL
2024 Dept Of Environment Protection Procurement Analyst 74531.10439 5.217177e+06 61032.50 8.718929e+02 0.000 1101.75 70 0.000000e+00 0.00 5.278210e+06 5.217177e+06 61032.50 NULL
2024 Dept Of Environment Protection Program Producer 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2024 Dept Of Environment Protection Project Manager 78537.66667 1.884904e+06 77031.62 3.209651e+03 0.000 1406.50 24 0.000000e+00 0.00 1.961936e+06 1.884904e+06 77031.62 NULL
2024 Dept Of Environment Protection Project Manager Intern# 66155.73913 1.521582e+06 42781.36 1.860059e+03 0.000 1127.25 23 0.000000e+00 0.00 1.564363e+06 1.521582e+06 42781.36 NULL
2024 Dept Of Environment Protection Public Health Epidemiologist 62436.00000 6.243600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.243600e+04 6.243600e+04 0.00 NULL
2024 Dept Of Environment Protection Public Health Sanitarian 68686.80000 3.434340e+05 12652.36 2.530472e+03 0.000 224.50 5 0.000000e+00 0.00 3.560864e+05 3.434340e+05 12652.36 NULL
2024 Dept Of Environment Protection Public Records Aide 52988.00000 2.119520e+05 5703.23 1.425807e+03 762.550 166.00 4 7.625500e+02 3050.20 2.176552e+05 2.150022e+05 2653.03 NULL
2024 Dept Of Environment Protection Quality Assurance Specialist 64535.50000 2.581420e+05 43358.09 1.083952e+04 10348.605 933.00 4 1.034860e+04 41394.42 3.015001e+05 2.995364e+05 1963.67 NULL
2024 Dept Of Environment Protection Radio Repair Mechanic NA NA 2628.95 1.314475e+03 1314.475 34.50 2 1.314475e+03 2628.95 NA NA NA NULL
2024 Dept Of Environment Protection Research Assistant 59372.00000 5.937200e+04 3539.02 3.539020e+03 3539.020 83.50 1 3.539020e+03 3539.02 6.291102e+04 6.291102e+04 0.00 NULL
2024 Dept Of Environment Protection Scientist 75742.43056 5.453455e+06 219778.13 3.052474e+03 395.345 4387.50 72 3.953450e+02 28464.84 5.673233e+06 5.481920e+06 191313.29 NULL
2024 Dept Of Environment Protection Secretary 62431.00000 1.872930e+05 94.74 3.158000e+01 0.000 2.75 3 0.000000e+00 0.00 1.873877e+05 1.872930e+05 94.74 NULL
2024 Dept Of Environment Protection Secretary To The Exec Deputy Commissioner 95156.00000 9.515600e+04 1332.25 1.332250e+03 1332.250 21.25 1 1.332250e+03 1332.25 9.648825e+04 9.648825e+04 0.00 NULL
2024 Dept Of Environment Protection Senior It Architect 185400.00000 1.854000e+05 93406.55 9.340655e+04 93406.550 684.25 1 9.340655e+04 93406.55 2.788065e+05 2.788065e+05 0.00 NULL
2024 Dept Of Environment Protection Senior Sewage Treatment Worker NA NA 3919298.99 1.969497e+04 17605.790 46204.00 199 1.760579e+04 3503552.21 NA NA NA NULL
2024 Dept Of Environment Protection Senior Stationary Engineer NA NA 2827210.71 4.560017e+04 46153.280 17723.75 62 4.560017e+04 2827210.71 NA NA NA NULL
2024 Dept Of Environment Protection Sewage Treatment Worker NA NA 12174333.28 1.761843e+04 13163.930 158875.28 691 1.316393e+04 9096275.63 NA NA NA NULL
2024 Dept Of Environment Protection Staff Analyst 74165.95456 3.040804e+06 28184.73 6.874324e+02 0.000 607.50 41 0.000000e+00 0.00 3.068989e+06 3.040804e+06 28184.73 NULL
2024 Dept Of Environment Protection Staff Analyst Trainee 49411.73992 9.882348e+05 16281.25 8.140625e+02 0.000 456.00 20 0.000000e+00 0.00 1.004516e+06 9.882348e+05 16281.25 NULL
2024 Dept Of Environment Protection Stationary Engineer NA NA 7120257.43 3.251259e+04 25342.670 56086.07 219 2.534267e+04 5550044.73 NA NA NA NULL
2024 Dept Of Environment Protection Stock Worker 44014.00000 1.320420e+05 21565.39 7.188463e+03 9336.200 655.25 3 7.188463e+03 21565.39 1.536074e+05 1.536074e+05 0.00 NULL
2024 Dept Of Environment Protection Strategic Initiative Specialist 106710.77778 9.603970e+05 2174.64 2.416267e+02 0.000 34.75 9 0.000000e+00 0.00 9.625716e+05 9.603970e+05 2174.64 NULL
2024 Dept Of Environment Protection Summer College Intern 3754.04724 5.443368e+05 0.00 0.000000e+00 0.000 0.00 145 0.000000e+00 0.00 5.443368e+05 5.443368e+05 0.00 NULL
2024 Dept Of Environment Protection Summer Graduate Intern 4028.36261 9.265234e+04 0.00 0.000000e+00 0.000 0.00 23 0.000000e+00 0.00 9.265234e+04 9.265234e+04 0.00 NULL
2024 Dept Of Environment Protection Superintendent Of Water And Sewer Systems 157440.18690 3.778564e+06 10169.56 4.237317e+02 0.000 148.75 24 0.000000e+00 0.00 3.788734e+06 3.778564e+06 10169.56 NULL
2024 Dept Of Environment Protection Supervising Special Officer 59255.00000 5.925500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.925500e+04 5.925500e+04 0.00 NULL
2024 Dept Of Environment Protection Supervisor 98936.85047 2.117249e+07 3414614.13 1.595614e+04 13898.555 46037.92 214 1.389856e+04 2974290.77 2.458710e+07 2.414678e+07 440323.36 NULL
2024 Dept Of Environment Protection Supervisor Bricklayer NA NA 11488.06 1.148806e+04 11488.060 119.00 1 1.148806e+04 11488.06 NA NA NA NULL
2024 Dept Of Environment Protection Supervisor Carpenter NA NA 26550.12 1.327506e+04 13275.060 263.50 2 1.327506e+04 26550.12 NA NA NA NULL
2024 Dept Of Environment Protection Supervisor Electrician NA NA 1059797.51 4.415823e+04 41470.285 10100.25 24 4.147029e+04 995286.84 NA NA NA NULL
2024 Dept Of Environment Protection Supervisor Of Mechanics 140894.87500 2.254318e+06 411759.35 2.573496e+04 11795.900 3403.25 16 1.179590e+04 188734.40 2.666077e+06 2.443052e+06 223024.95 NULL
2024 Dept Of Environment Protection Supervisor Of Motor Transport 78826.00000 7.882600e+04 735.25 7.352500e+02 735.250 0.00 1 7.352500e+02 735.25 7.956125e+04 7.956125e+04 0.00 NULL
2024 Dept Of Environment Protection Supervisor Of Radio Repair Operations 137795.00000 1.377950e+05 9899.11 9.899110e+03 9899.110 114.00 1 9.899110e+03 9899.11 1.476941e+05 1.476941e+05 0.00 NULL
2024 Dept Of Environment Protection Supervisor Of Stock Workers 50579.60606 1.669127e+06 260155.79 7.883509e+03 7625.580 6904.25 33 7.625580e+03 251644.14 1.929283e+06 1.920771e+06 8511.65 NULL
2024 Dept Of Environment Protection Supervisor Painter NA NA 3194.81 3.194810e+03 3194.810 36.00 1 3.194810e+03 3194.81 NA NA NA NULL
2024 Dept Of Environment Protection Supervisor Plumber NA NA 200626.88 4.012538e+04 41638.160 1555.75 5 4.012538e+04 200626.88 NA NA NA NULL
2024 Dept Of Environment Protection Surveyor 87528.57143 6.127000e+05 11896.24 1.699463e+03 0.000 201.00 7 0.000000e+00 0.00 6.245962e+05 6.127000e+05 11896.24 NULL
2024 Dept Of Environment Protection Telecommunications Associate 93817.25274 6.567208e+05 68493.52 9.784789e+03 6176.870 982.50 7 6.176870e+03 43238.09 7.252143e+05 6.999589e+05 25255.43 NULL
2024 Dept Of Environment Protection Water Treatment Plant Operator L1 50861.75000 4.068940e+05 44657.95 5.582244e+03 6390.440 1237.75 8 5.582244e+03 44657.95 4.515520e+05 4.515520e+05 0.00 NULL
2024 Dept Of Environment Protection Water Treatment Plant Operator L2 & 3 77768.25000 9.332190e+05 308226.94 2.568558e+04 21921.235 5501.50 12 2.192124e+04 263054.82 1.241446e+06 1.196274e+06 45172.12 NULL
2024 Dept Of Environment Protection Water Use Inspector 47596.95522 3.188996e+06 387063.11 5.777061e+03 2174.740 11415.38 67 2.174740e+03 145707.58 3.576059e+06 3.334704e+06 241355.53 NULL
2024 Dept Of Environment Protection Watershed Maintainer 59096.68326 1.306037e+07 808251.62 3.657247e+03 1344.810 18797.65 221 1.344810e+03 297203.01 1.386862e+07 1.335757e+07 511048.61 NULL
2024 Dept Of Health/Mental Hygiene *Asist Systms Analyst 82804.00000 8.280400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.280400e+04 8.280400e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene *Assist Coordinating Manager 59831.33333 1.794940e+05 6417.37 2.139123e+03 962.880 160.25 3 9.628800e+02 2888.64 1.859114e+05 1.823826e+05 3528.73 NULL
2024 Dept Of Health/Mental Hygiene *Associate Executive Director 125774.00000 1.257740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.257740e+05 1.257740e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene *Attorney At Law 141385.00000 1.413850e+05 134.27 1.342700e+02 134.270 0.00 1 1.342700e+02 134.27 1.415193e+05 1.415193e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene *Coordinating Manager 78046.66667 4.682800e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.682800e+05 4.682800e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene *Custodial Assistant 49638.50000 9.927700e+04 4587.40 2.293700e+03 2293.700 128.50 2 2.293700e+03 4587.40 1.038644e+05 1.038644e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene *Director Of Health Care Program Planning/Analysis 123337.00000 2.466740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.466740e+05 2.466740e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene *Senior Systems Analyst 56864.00000 5.686400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.686400e+04 5.686400e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene *Sr Management Consultant 106194.33333 9.557490e+05 149.30 1.658889e+01 0.000 0.00 9 0.000000e+00 0.00 9.558983e+05 9.557490e+05 149.30 NULL
2024 Dept Of Health/Mental Hygiene *Sr Systems Analyst - Edp 77888.00000 7.788800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.788800e+04 7.788800e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene *Supvsng Systems Analyst 72262.00000 2.167860e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.167860e+05 2.167860e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene *Systems Analyst 57079.77778 5.137180e+05 321.66 3.574000e+01 0.000 0.00 9 0.000000e+00 0.00 5.140397e+05 5.137180e+05 321.66 NULL
2024 Dept Of Health/Mental Hygiene Accountant 82966.58621 2.406031e+06 64302.56 2.217330e+03 0.000 864.50 29 0.000000e+00 0.00 2.470334e+06 2.406031e+06 64302.56 NULL
2024 Dept Of Health/Mental Hygiene Adm Manager-Non-Mgrl 92506.92647 1.258094e+07 432645.81 3.181219e+03 0.000 6393.75 136 0.000000e+00 0.00 1.301359e+07 1.258094e+07 432645.81 NULL
2024 Dept Of Health/Mental Hygiene Admin Community Relations Specialist 91989.75758 3.035662e+06 31801.32 9.636764e+02 51.300 441.00 33 5.130000e+01 1692.90 3.067463e+06 3.037355e+06 30108.42 NULL
2024 Dept Of Health/Mental Hygiene Admin Contract Specialist 164957.60000 1.649576e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.649576e+06 1.649576e+06 0.00 NULL
2024 Dept Of Health/Mental Hygiene Administrative Accountant 108215.79167 2.597179e+06 31752.95 1.323040e+03 0.000 444.50 24 0.000000e+00 0.00 2.628932e+06 2.597179e+06 31752.95 NULL
2024 Dept Of Health/Mental Hygiene Administrative Business Promotion Coordinator 116757.00000 3.502710e+05 10182.85 3.394283e+03 0.000 130.00 3 0.000000e+00 0.00 3.604538e+05 3.502710e+05 10182.85 NULL
2024 Dept Of Health/Mental Hygiene Administrative Community Relations Specialist 185267.66667 5.558030e+05 3139.45 1.046483e+03 0.000 29.25 3 0.000000e+00 0.00 5.589424e+05 5.558030e+05 3139.45 NULL
2024 Dept Of Health/Mental Hygiene Administrative Consultant 121733.20000 6.086660e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.086660e+05 6.086660e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Administrative Contract Specialist 115777.92308 1.505113e+06 12590.56 9.685046e+02 0.000 180.75 13 0.000000e+00 0.00 1.517704e+06 1.505113e+06 12590.56 NULL
2024 Dept Of Health/Mental Hygiene Administrative Director Of Social Services 120303.20000 6.015160e+05 60.31 1.206200e+01 0.000 0.00 5 0.000000e+00 0.00 6.015763e+05 6.015160e+05 60.31 NULL
2024 Dept Of Health/Mental Hygiene Administrative Graphic Artist 117184.12500 9.374730e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.374730e+05 9.374730e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Administrative Housing Development Specialist 122004.00000 1.220040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.220040e+05 1.220040e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Administrative Investigator 84396.00000 8.439600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.439600e+04 8.439600e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Administrative Labor Relations Analyst 162529.66667 4.875890e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.875890e+05 4.875890e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Administrative Management Auditor 122577.88889 1.103201e+06 3071.32 3.412578e+02 0.000 52.00 9 0.000000e+00 0.00 1.106272e+06 1.103201e+06 3071.32 NULL
2024 Dept Of Health/Mental Hygiene Administrative Manager 145364.66667 4.360940e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.360940e+05 4.360940e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Administrative Nutritionist 114478.66667 3.434360e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.434360e+05 3.434360e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Administrative Printing Services Manager 137732.50000 2.754650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.754650e+05 2.754650e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Administrative Procurement Analyst 128445.80000 6.422290e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.422290e+05 6.422290e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Administrative Procurement Analyst-Non-Mgrl 109689.34031 1.755029e+06 9514.02 5.946263e+02 0.000 126.50 16 0.000000e+00 0.00 1.764543e+06 1.755029e+06 9514.02 NULL
2024 Dept Of Health/Mental Hygiene Administrative Project Manager 128806.50000 2.576130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.576130e+05 2.576130e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Administrative Public Health Nurse 129866.93023 5.584278e+06 24104.97 5.605807e+02 0.000 223.00 43 0.000000e+00 0.00 5.608383e+06 5.584278e+06 24104.97 NULL
2024 Dept Of Health/Mental Hygiene Administrative Public Health Sanitarian 151637.78571 2.122929e+06 6370.69 4.550493e+02 0.000 97.00 14 0.000000e+00 0.00 2.129300e+06 2.122929e+06 6370.69 NULL
2024 Dept Of Health/Mental Hygiene Administrative Public Information Specialist 190265.75000 7.610630e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.610630e+05 7.610630e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Administrative Public Information Specialist Nm Former M1/M2 100895.50000 6.053730e+05 19630.25 3.271708e+03 0.000 224.00 6 0.000000e+00 0.00 6.250032e+05 6.053730e+05 19630.25 NULL
2024 Dept Of Health/Mental Hygiene Administrative Quality Assurance Specialist 133442.75000 5.337710e+05 4905.91 1.226477e+03 0.000 81.00 4 0.000000e+00 0.00 5.386769e+05 5.337710e+05 4905.91 NULL
2024 Dept Of Health/Mental Hygiene Administrative Staff Analyst 125227.75477 1.865894e+07 322596.97 2.165080e+03 0.000 3235.00 149 0.000000e+00 0.00 1.898153e+07 1.865894e+07 322596.97 NULL
2024 Dept Of Health/Mental Hygiene Administrative Storekeeper 100461.00000 1.004610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.004610e+05 1.004610e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Administrative Supervisor Of Building Maintenance 109320.00000 9.838800e+05 95.78 1.064222e+01 0.000 0.00 9 0.000000e+00 0.00 9.839758e+05 9.838800e+05 95.78 NULL
2024 Dept Of Health/Mental Hygiene Agency Attorney 106410.73703 3.405144e+06 215.33 6.729063e+00 0.000 0.00 32 0.000000e+00 0.00 3.405359e+06 3.405144e+06 215.33 NULL
2024 Dept Of Health/Mental Hygiene Agency Attorney Interne 69735.37500 5.578830e+05 10.94 1.367500e+00 0.000 0.00 8 0.000000e+00 0.00 5.578939e+05 5.578830e+05 10.94 NULL
2024 Dept Of Health/Mental Hygiene Agency Chief Contracting Officer 155167.00000 3.103340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.103340e+05 3.103340e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Agency Deputy Medical Director 181991.60000 9.099580e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.099580e+05 9.099580e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Agency Medical Director 214223.16667 2.570678e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 2.570678e+06 2.570678e+06 0.00 NULL
2024 Dept Of Health/Mental Hygiene Architect 121427.00000 4.857080e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.857080e+05 4.857080e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Assistant Architect 83383.80000 4.169190e+05 160.06 3.201200e+01 0.000 0.00 5 0.000000e+00 0.00 4.170791e+05 4.169190e+05 160.06 NULL
2024 Dept Of Health/Mental Hygiene Assistant Commisioner 195792.00000 1.957920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.957920e+05 1.957920e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Assistant Director Of Toxicology 141811.00000 1.418110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.418110e+05 1.418110e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Assistant Printing Press Operator 58822.95975 2.941148e+05 202.20 4.044000e+01 10.460 3.75 5 1.046000e+01 52.30 2.943170e+05 2.941671e+05 149.90 NULL
2024 Dept Of Health/Mental Hygiene Associate Chemist 77855.00000 7.785500e+04 14047.91 1.404791e+04 14047.910 248.00 1 1.404791e+04 14047.91 9.190291e+04 9.190291e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Associate Contract Specialist 82476.00000 1.402092e+06 41503.39 2.441376e+03 0.000 747.25 17 0.000000e+00 0.00 1.443595e+06 1.402092e+06 41503.39 NULL
2024 Dept Of Health/Mental Hygiene Associate Investigator 74556.40000 1.491128e+06 28689.23 1.434461e+03 0.000 569.00 20 0.000000e+00 0.00 1.519817e+06 1.491128e+06 28689.23 NULL
2024 Dept Of Health/Mental Hygiene Associate Labor Relations Analyst 98906.66667 2.967200e+05 5989.15 1.996383e+03 2775.130 73.75 3 1.996383e+03 5989.15 3.027092e+05 3.027092e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Associate Laboratory Microbiologist 91263.08642 7.392310e+06 67572.94 8.342338e+02 0.000 1376.75 81 0.000000e+00 0.00 7.459883e+06 7.392310e+06 67572.94 NULL
2024 Dept Of Health/Mental Hygiene Associate Public Health Sanitarian 84711.62893 1.346915e+07 393406.35 2.474254e+03 0.000 7303.25 159 0.000000e+00 0.00 1.386256e+07 1.346915e+07 393406.35 NULL
2024 Dept Of Health/Mental Hygiene Associate Public Information Specialist 68291.66667 4.097500e+05 3558.23 5.930383e+02 139.230 80.50 6 1.392300e+02 835.38 4.133082e+05 4.105854e+05 2722.85 NULL
2024 Dept Of Health/Mental Hygiene Associate Public Records Officer 76353.00000 7.635300e+04 23245.20 2.324520e+04 23245.200 432.00 1 2.324520e+04 23245.20 9.959820e+04 9.959820e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Associate Quality Assurance Specialist 72537.00000 7.253700e+04 14098.31 1.409831e+04 14098.310 295.50 1 1.409831e+04 14098.31 8.663531e+04 8.663531e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Associate Staff Analyst 94709.56863 4.830188e+06 8033.34 1.575165e+02 0.000 102.50 51 0.000000e+00 0.00 4.838221e+06 4.830188e+06 8033.34 NULL
2024 Dept Of Health/Mental Hygiene Asst Comm-Prgm Dev Revw-Hmh 195630.00000 1.956300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.956300e+05 1.956300e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Asst Commissioner 190465.00000 3.809300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.809300e+05 3.809300e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Asst Commissioner For Agency Preparedness And Response 198578.00000 1.985780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.985780e+05 1.985780e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Asst Commissioner For Policy And Community Resilience 180958.50000 3.619170e+05 101.12 5.056000e+01 50.560 0.00 2 5.056000e+01 101.12 3.620181e+05 3.620181e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Asst Pb Hlth Adv 44375.84583 1.331275e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.331275e+05 1.331275e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Ast Commissioner For Policy And Community Resilience 190465.00000 1.904650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.904650e+05 1.904650e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Bookbinder 42026.00000 4.202600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.202600e+04 4.202600e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Bookkeeper 58349.50000 1.166990e+05 67.65 3.382500e+01 33.825 2.00 2 3.382500e+01 67.65 1.167666e+05 1.167666e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Business Promotion Coordinator 107691.00000 1.076910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.076910e+05 1.076910e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Certified It Administrator 120884.11333 1.813262e+06 37113.41 2.474227e+03 498.340 435.00 15 4.983400e+02 7475.10 1.850375e+06 1.820737e+06 29638.31 NULL
2024 Dept Of Health/Mental Hygiene Certified It Developer 122039.77263 2.318756e+06 17222.87 9.064668e+02 0.000 203.25 19 0.000000e+00 0.00 2.335979e+06 2.318756e+06 17222.87 NULL
2024 Dept Of Health/Mental Hygiene Chief City Medical Examiner 269519.00000 2.695190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.695190e+05 2.695190e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene City Clinician 133612.50667 4.008375e+05 1675.00 5.583333e+02 0.000 20.00 3 0.000000e+00 0.00 4.025125e+05 4.008375e+05 1675.00 NULL
2024 Dept Of Health/Mental Hygiene City Custodial Assistant 47712.01666 1.956193e+06 330889.31 8.070471e+03 4826.580 9582.00 41 4.826580e+03 197889.78 2.287082e+06 2.154082e+06 132999.53 NULL
2024 Dept Of Health/Mental Hygiene City Dentist 96194.18000 9.619418e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.619418e+04 9.619418e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene City Deputy Medical Director 186662.50000 3.733250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.733250e+05 3.733250e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene City Laborer NA NA 137069.41 9.790672e+03 5374.080 2459.00 14 5.374080e+03 75237.12 NA NA NA NULL
2024 Dept Of Health/Mental Hygiene City Medical Director 203797.00000 2.037970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.037970e+05 2.037970e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene City Medical Examiner 209047.92550 8.361917e+06 327484.97 8.187124e+03 4412.225 3058.50 40 4.412225e+03 176489.00 8.689402e+06 8.538406e+06 150995.97 NULL
2024 Dept Of Health/Mental Hygiene City Medical Specialist 135794.79210 1.453004e+07 157232.87 1.469466e+03 0.000 1754.00 107 0.000000e+00 0.00 1.468728e+07 1.453004e+07 157232.87 NULL
2024 Dept Of Health/Mental Hygiene City Mortuary Technician 39531.10746 1.739369e+06 566868.01 1.288336e+04 2305.955 15706.75 44 2.305955e+03 101462.02 2.306237e+06 1.840831e+06 465405.99 NULL
2024 Dept Of Health/Mental Hygiene City Pest Control Aide 38623.35831 1.004207e+06 30910.47 1.188864e+03 0.000 1225.50 26 0.000000e+00 0.00 1.035118e+06 1.004207e+06 30910.47 NULL
2024 Dept Of Health/Mental Hygiene City Research Scientist 104421.87571 9.711234e+07 469016.03 5.043183e+02 0.000 6873.25 930 0.000000e+00 0.00 9.758136e+07 9.711234e+07 469016.03 NULL
2024 Dept Of Health/Mental Hygiene City Veterinarian 74552.52605 1.491051e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.491051e+05 1.491051e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Civil Engineer 104956.00000 1.049560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.049560e+05 1.049560e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Clerical Aide 42237.55000 8.447510e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.447510e+04 8.447510e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Clerical Associate 53946.63586 9.009088e+06 213076.45 1.275907e+03 0.000 4975.25 167 0.000000e+00 0.00 9.222165e+06 9.009088e+06 213076.45 NULL
2024 Dept Of Health/Mental Hygiene College Aide 7389.49688 1.204488e+06 0.00 0.000000e+00 0.000 0.00 163 0.000000e+00 0.00 1.204488e+06 1.204488e+06 0.00 NULL
2024 Dept Of Health/Mental Hygiene College Aide - Assignment Levels Ii And Iii 7890.20426 5.523143e+04 698.06 9.972286e+01 0.000 38.00 7 0.000000e+00 0.00 5.592949e+04 5.523143e+04 698.06 NULL
2024 Dept Of Health/Mental Hygiene Commissioner Of Health 277594.00000 2.775940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.775940e+05 2.775940e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Community Assistant 34225.63390 1.403251e+06 30973.11 7.554417e+02 0.000 1142.75 41 0.000000e+00 0.00 1.434224e+06 1.403251e+06 30973.11 NULL
2024 Dept Of Health/Mental Hygiene Community Associate 52810.58585 4.488900e+06 84328.69 9.921022e+02 0.000 2200.00 85 0.000000e+00 0.00 4.573228e+06 4.488900e+06 84328.69 NULL
2024 Dept Of Health/Mental Hygiene Community Coordinator 74906.73818 2.382034e+07 397700.64 1.250631e+03 0.000 7333.50 318 0.000000e+00 0.00 2.421804e+07 2.382034e+07 397700.64 NULL
2024 Dept Of Health/Mental Hygiene Community Service Aide 28366.94750 5.673389e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.673389e+04 5.673389e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Computer Aide-Non-Spvr 61937.81818 6.813160e+05 20521.62 1.865602e+03 0.000 497.75 11 0.000000e+00 0.00 7.018376e+05 6.813160e+05 20521.62 NULL
2024 Dept Of Health/Mental Hygiene Computer Associate 78618.18723 3.695055e+06 54648.72 1.162739e+03 0.000 837.75 47 0.000000e+00 0.00 3.749704e+06 3.695055e+06 54648.72 NULL
2024 Dept Of Health/Mental Hygiene Computer Operations Manager 104842.20000 5.242110e+05 12484.94 2.496988e+03 0.000 147.00 5 0.000000e+00 0.00 5.366959e+05 5.242110e+05 12484.94 NULL
2024 Dept Of Health/Mental Hygiene Computer Programmer Analyst 77615.00000 7.761500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.761500e+04 7.761500e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Computer Service Technician 56699.92143 3.968995e+05 1215.72 1.736743e+02 60.900 25.00 7 6.090000e+01 426.30 3.981152e+05 3.973258e+05 789.42 NULL
2024 Dept Of Health/Mental Hygiene Computer Specialist 124100.15938 7.942410e+06 174685.75 2.729465e+03 0.000 1709.00 64 0.000000e+00 0.00 8.117096e+06 7.942410e+06 174685.75 NULL
2024 Dept Of Health/Mental Hygiene Computer Systems Manager 146088.33333 1.051836e+07 1875.01 2.604181e+01 0.000 25.75 72 0.000000e+00 0.00 1.052024e+07 1.051836e+07 1875.01 NULL
2024 Dept Of Health/Mental Hygiene Confidential Strategy Planner 92993.33333 8.369400e+05 665.60 7.395556e+01 0.000 7.75 9 0.000000e+00 0.00 8.376056e+05 8.369400e+05 665.60 NULL
2024 Dept Of Health/Mental Hygiene Construction Project Manager 93524.00000 9.352400e+04 2085.73 2.085730e+03 2085.730 34.00 1 2.085730e+03 2085.73 9.560973e+04 9.560973e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Consultant 85320.57317 6.996287e+06 56429.26 6.881617e+02 0.000 1022.25 82 0.000000e+00 0.00 7.052716e+06 6.996287e+06 56429.26 NULL
2024 Dept Of Health/Mental Hygiene Consultant Public Health Nurse 89393.76000 4.469688e+05 89.28 1.785600e+01 0.000 0.00 5 0.000000e+00 0.00 4.470581e+05 4.469688e+05 89.28 NULL
2024 Dept Of Health/Mental Hygiene Contract Specialist 74115.41176 1.259962e+06 2843.10 1.672412e+02 0.000 68.25 17 0.000000e+00 0.00 1.262805e+06 1.259962e+06 2843.10 NULL
2024 Dept Of Health/Mental Hygiene Counsel 131289.00000 1.312890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.312890e+05 1.312890e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Counselor 87382.50000 3.495300e+05 5978.74 1.494685e+03 0.000 118.75 4 0.000000e+00 0.00 3.555087e+05 3.495300e+05 5978.74 NULL
2024 Dept Of Health/Mental Hygiene Criminalist 85239.30617 2.369653e+07 1696453.87 6.102352e+03 1173.835 24879.50 278 1.173835e+03 326326.13 2.539298e+07 2.402285e+07 1370127.74 NULL
2024 Dept Of Health/Mental Hygiene Criminalist Assistant Director Of Laboratory 151004.50000 2.718081e+06 25490.64 1.416147e+03 0.000 347.83 18 0.000000e+00 0.00 2.743572e+06 2.718081e+06 25490.64 NULL
2024 Dept Of Health/Mental Hygiene Criminalist Deputy Director Of Labatory 192263.50000 7.690540e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.690540e+05 7.690540e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Criminalist Director Of Laboratory 194787.00000 7.791480e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.791480e+05 7.791480e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Custodian 52912.16747 1.005331e+06 201565.15 1.060869e+04 5203.630 5294.00 19 5.203630e+03 98868.97 1.206896e+06 1.104200e+06 102696.18 NULL
2024 Dept Of Health/Mental Hygiene Customer Information Representative Ma L 1549 59430.51069 1.901776e+06 238181.49 7.443172e+03 190.725 5622.75 32 1.907250e+02 6103.20 2.139958e+06 1.907880e+06 232078.29 NULL
2024 Dept Of Health/Mental Hygiene Cyber Security Analyst 83822.72212 2.849973e+06 35787.59 1.052576e+03 0.000 775.00 34 0.000000e+00 0.00 2.885760e+06 2.849973e+06 35787.59 NULL
2024 Dept Of Health/Mental Hygiene Deputy Chief City Medical Examiner 271736.00000 2.717360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.717360e+05 2.717360e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Deputy Commissioner 244871.85714 1.714103e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.714103e+06 1.714103e+06 0.00 NULL
2024 Dept Of Health/Mental Hygiene Deputy Commissioner For Administation 185356.00000 3.707120e+05 16723.18 8.361590e+03 8361.590 170.50 2 8.361590e+03 16723.18 3.874352e+05 3.874352e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Deputy Director Of Emergency Management 184341.00000 1.843410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.843410e+05 1.843410e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Deputy Director Of Health And Safety 133725.00000 1.337250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.337250e+05 1.337250e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Deputy Director Of Medicolegal Investigations 151290.78571 2.118071e+06 58527.71 4.180551e+03 0.000 786.33 14 0.000000e+00 0.00 2.176599e+06 2.118071e+06 58527.71 NULL
2024 Dept Of Health/Mental Hygiene Dir Of Healthcare Facilities And Provider Readiness 143597.00000 2.871940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.871940e+05 2.871940e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Director 163300.75000 6.532030e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.532030e+05 6.532030e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Director Of Exercises And Training 109697.00000 1.096970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.096970e+05 1.096970e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Director Of Biodetection And Response 116630.00000 1.166300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.166300e+05 1.166300e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Director Of Clinical Laboratories 177551.00000 1.775510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.775510e+05 1.775510e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Director Of Community Engagement And Response 162415.00000 3.248300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.248300e+05 3.248300e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Director Of Countermeasures And Response 141869.00000 1.418690e+05 10.06 1.006000e+01 10.060 0.00 1 1.006000e+01 10.06 1.418791e+05 1.418791e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Director Of Crisis Assistance And Training 119869.00000 1.198690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.198690e+05 1.198690e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Director Of Forensic Biology 252831.00000 2.528310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.528310e+05 2.528310e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Director Of Interagency Planning 140469.00000 1.404690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.404690e+05 1.404690e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Director Of Mental Health Disaster Preparedness 125870.00000 1.258700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.258700e+05 1.258700e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Director Of Public Health Emergency Evaluation 206067.50000 4.121350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.121350e+05 4.121350e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Director Of Public Health Emergency Planning 116630.00000 1.166300e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.166300e+05 1.166300e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Director Of Public Relations 184863.66667 5.545910e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.545910e+05 5.545910e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Director Of Security 107104.00000 1.071040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.071040e+05 1.071040e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Economist 74316.40000 1.857910e+06 54385.24 2.175410e+03 0.000 999.25 25 0.000000e+00 0.00 1.912295e+06 1.857910e+06 54385.24 NULL
2024 Dept Of Health/Mental Hygiene Electrician NA NA 41079.80 1.026995e+04 10373.570 415.25 4 1.026995e+04 41079.80 NA NA NA NULL
2024 Dept Of Health/Mental Hygiene Environmental Health Technician 50665.00000 5.066500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.066500e+04 5.066500e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Evidence And Property Control Specialist 67479.88889 3.036595e+06 375800.63 8.351125e+03 708.810 6560.92 45 7.088100e+02 31896.45 3.412396e+06 3.068491e+06 343904.18 NULL
2024 Dept Of Health/Mental Hygiene Exec Director Of Grants Management And Administration 195280.00000 1.952800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.952800e+05 1.952800e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Executive Agency Counsel 172960.50000 3.113289e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 3.113289e+06 3.113289e+06 0.00 NULL
2024 Dept Of Health/Mental Hygiene Executive Assistant 93650.00000 9.365000e+04 315.30 3.153000e+02 315.300 6.50 1 3.153000e+02 315.30 9.396530e+04 9.396530e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Executive Deputy Commissioner For Mental Hygiene 257364.50000 5.147290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.147290e+05 5.147290e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Executive Director Of Healthcare Systems Readiness 138326.00000 1.383260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.383260e+05 1.383260e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Executive Program Specialist 168191.50000 6.727660e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.727660e+05 6.727660e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Executive Secretary 71492.06660 7.149207e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.149207e+04 7.149207e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Exterminator 55674.81875 2.115643e+06 332274.55 8.744067e+03 3924.610 7460.00 38 3.924610e+03 149135.18 2.447918e+06 2.264778e+06 183139.37 NULL
2024 Dept Of Health/Mental Hygiene Family Pub Health Nurse 98969.80000 4.453641e+06 34168.07 7.592904e+02 0.000 387.00 45 0.000000e+00 0.00 4.487809e+06 4.453641e+06 34168.07 NULL
2024 Dept Of Health/Mental Hygiene Forensic Mortuary Technician 60026.69329 3.481548e+06 1627679.51 2.806344e+04 18973.185 34243.63 58 1.897319e+04 1100444.73 5.109228e+06 4.581993e+06 527234.78 NULL
2024 Dept Of Health/Mental Hygiene Forensic Mortuary Technician-Coord Of Mortuary Services 96150.00000 1.923000e+05 155741.75 7.787088e+04 77870.875 2232.25 2 7.787088e+04 155741.75 3.480418e+05 3.480418e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Graphic Artist 74042.09333 4.442526e+05 601.81 1.003017e+02 0.000 15.00 6 0.000000e+00 0.00 4.448544e+05 4.442526e+05 601.81 NULL
2024 Dept Of Health/Mental Hygiene Health Care Prog Plan/Analyst 66518.80000 3.325940e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.325940e+05 3.325940e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Health Services Manager 184045.68571 6.441599e+06 1422.80 4.065143e+01 0.000 0.00 35 0.000000e+00 0.00 6.443022e+06 6.441599e+06 1422.80 NULL
2024 Dept Of Health/Mental Hygiene Health Services Manager Non Managerial Level I 109605.60784 1.117977e+07 76308.53 7.481228e+02 0.000 818.50 102 0.000000e+00 0.00 1.125608e+07 1.117977e+07 76308.53 NULL
2024 Dept Of Health/Mental Hygiene Health Services Manager Non Managerial Level Ii 132939.46429 7.444610e+06 51416.73 9.181559e+02 0.000 484.00 56 0.000000e+00 0.00 7.496027e+06 7.444610e+06 51416.73 NULL
2024 Dept Of Health/Mental Hygiene High School Student Aide 6023.15000 1.264861e+05 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.264861e+05 1.264861e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Institutional Aide 45403.95428 9.534830e+05 475160.10 2.262667e+04 12780.800 14179.43 21 1.278080e+04 268396.80 1.428643e+06 1.221880e+06 206763.30 NULL
2024 Dept Of Health/Mental Hygiene Insurance Advisor 83578.00000 8.357800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.357800e+04 8.357800e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Interpreter 68959.00000 6.895900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.895900e+04 6.895900e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Investigator 55097.15385 2.865052e+06 39836.06 7.660781e+02 0.000 1195.25 52 0.000000e+00 0.00 2.904888e+06 2.865052e+06 39836.06 NULL
2024 Dept Of Health/Mental Hygiene It Automation And Monitoring Engineer 119211.42857 8.344800e+05 645.86 9.226571e+01 0.000 9.00 7 0.000000e+00 0.00 8.351259e+05 8.344800e+05 645.86 NULL
2024 Dept Of Health/Mental Hygiene It Infrastructure Engineer 109054.33333 6.543260e+05 4894.25 8.157083e+02 0.000 79.50 6 0.000000e+00 0.00 6.592202e+05 6.543260e+05 4894.25 NULL
2024 Dept Of Health/Mental Hygiene It Project Specialist 115372.69067 1.730590e+06 122.92 8.194667e+00 0.000 2.00 15 0.000000e+00 0.00 1.730713e+06 1.730590e+06 122.92 NULL
2024 Dept Of Health/Mental Hygiene It Security Specialist 111349.00000 2.226980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.226980e+05 2.226980e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene It Service Management Specialist 112424.80000 1.124248e+06 59.96 5.996000e+00 0.000 1.00 10 0.000000e+00 0.00 1.124308e+06 1.124248e+06 59.96 NULL
2024 Dept Of Health/Mental Hygiene Jr Phnurse 43493.65418 1.448339e+07 761921.86 2.288054e+03 37.950 14307.50 333 3.795000e+01 12637.35 1.524531e+07 1.449602e+07 749284.51 NULL
2024 Dept Of Health/Mental Hygiene Junior Public Health Nurse 79002.62500 1.264042e+06 6666.37 4.166481e+02 0.000 104.00 16 0.000000e+00 0.00 1.270708e+06 1.264042e+06 6666.37 NULL
2024 Dept Of Health/Mental Hygiene Laboratory Associate 55160.66998 2.482230e+06 34650.74 7.700164e+02 0.000 1011.25 45 0.000000e+00 0.00 2.516881e+06 2.482230e+06 34650.74 NULL
2024 Dept Of Health/Mental Hygiene Laboratory Helper 42012.20203 4.621342e+05 25603.54 2.327595e+03 0.000 796.25 11 0.000000e+00 0.00 4.877378e+05 4.621342e+05 25603.54 NULL
2024 Dept Of Health/Mental Hygiene Laboratory Microbiologist 68446.75000 1.095148e+06 45643.72 2.852733e+03 0.000 930.25 16 0.000000e+00 0.00 1.140792e+06 1.095148e+06 45643.72 NULL
2024 Dept Of Health/Mental Hygiene Legal Secretarial Assistant 73551.00000 7.355100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.355100e+04 7.355100e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Machinist NA NA 5829.57 2.914785e+03 2914.785 75.00 2 2.914785e+03 5829.57 NA NA NA NULL
2024 Dept Of Health/Mental Hygiene Maintenance Worker NA NA 207865.24 1.732210e+04 8932.690 4034.00 12 8.932690e+03 107192.28 NA NA NA NULL
2024 Dept Of Health/Mental Hygiene Management Auditor 87810.00000 1.053720e+06 7344.52 6.120433e+02 0.000 143.50 12 0.000000e+00 0.00 1.061065e+06 1.053720e+06 7344.52 NULL
2024 Dept Of Health/Mental Hygiene Medical Record Librarian 55818.60000 2.790930e+05 30370.54 6.074108e+03 3355.630 818.25 5 3.355630e+03 16778.15 3.094635e+05 2.958712e+05 13592.39 NULL
2024 Dept Of Health/Mental Hygiene Medical Specialist 58892.84000 5.889284e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.889284e+04 5.889284e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Medicolegal Investigator 110024.48571 3.850857e+06 395048.79 1.128711e+04 8754.860 4703.31 35 8.754860e+03 306420.10 4.245906e+06 4.157277e+06 88628.69 NULL
2024 Dept Of Health/Mental Hygiene Motor Vehicle Operator 55372.73670 1.384318e+06 397139.71 1.588559e+04 9351.350 9228.13 25 9.351350e+03 233783.75 1.781458e+06 1.618102e+06 163355.96 NULL
2024 Dept Of Health/Mental Hygiene Motor Vehicle Supervisor 66916.62500 5.353330e+05 211693.17 2.646165e+04 20528.890 4433.00 8 2.052889e+04 164231.12 7.470262e+05 6.995641e+05 47462.05 NULL
2024 Dept Of Health/Mental Hygiene New York City Public Service Fellow 46393.00000 9.278600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.278600e+04 9.278600e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Nurse Practicioner 121615.35776 1.216154e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.216154e+06 1.216154e+06 0.00 NULL
2024 Dept Of Health/Mental Hygiene Nutritionist 82236.77778 1.480262e+06 20495.01 1.138612e+03 0.000 274.75 18 0.000000e+00 0.00 1.500757e+06 1.480262e+06 20495.01 NULL
2024 Dept Of Health/Mental Hygiene Office Machine Aide 44944.00000 1.348320e+05 66.60 2.220000e+01 0.000 2.25 3 0.000000e+00 0.00 1.348986e+05 1.348320e+05 66.60 NULL
2024 Dept Of Health/Mental Hygiene Oiler NA NA 288043.68 7.201092e+04 62573.930 2624.25 4 6.257393e+04 250295.72 NA NA NA NULL
2024 Dept Of Health/Mental Hygiene Paralegal Aide 58003.60000 2.900180e+05 275.76 5.515200e+01 0.000 7.75 5 0.000000e+00 0.00 2.902938e+05 2.900180e+05 275.76 NULL
2024 Dept Of Health/Mental Hygiene Peer Counselor 52074.00000 5.207400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.207400e+04 5.207400e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Photographer 47205.00000 4.720500e+04 2136.91 2.136910e+03 2136.910 76.25 1 2.136910e+03 2136.91 4.934191e+04 4.934191e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Poison Information Specialist 100894.02905 1.311622e+06 88599.11 6.815316e+03 4322.350 1300.50 13 4.322350e+03 56190.55 1.400221e+06 1.367813e+06 32408.56 NULL
2024 Dept Of Health/Mental Hygiene Principal Administrative Associate - Non Supvr 69024.40983 1.994805e+07 527981.39 1.826925e+03 0.000 10810.00 289 0.000000e+00 0.00 2.047604e+07 1.994805e+07 527981.39 NULL
2024 Dept Of Health/Mental Hygiene Printing Press Operator NA NA 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 NA NA NA NULL
2024 Dept Of Health/Mental Hygiene Procurement Analyst 85803.91667 5.148235e+06 173600.96 2.893349e+03 0.000 2742.75 60 0.000000e+00 0.00 5.321836e+06 5.148235e+06 173600.96 NULL
2024 Dept Of Health/Mental Hygiene Psychiatrist 119334.37500 1.193344e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.193344e+05 1.193344e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Public Health Adviser 53287.95058 2.600452e+07 441347.24 9.044001e+02 0.000 10645.75 488 0.000000e+00 0.00 2.644587e+07 2.600452e+07 441347.24 NULL
2024 Dept Of Health/Mental Hygiene Public Health Assistant 36840.27514 2.836701e+06 35539.81 4.615560e+02 0.000 1250.00 77 0.000000e+00 0.00 2.872241e+06 2.836701e+06 35539.81 NULL
2024 Dept Of Health/Mental Hygiene Public Health Educator 69422.07542 4.095902e+06 122586.22 2.077733e+03 0.000 1855.75 59 0.000000e+00 0.00 4.218489e+06 4.095902e+06 122586.22 NULL
2024 Dept Of Health/Mental Hygiene Public Health Emergency Preparedness Specialist 91051.65306 4.461531e+06 296233.34 6.045578e+03 308.500 4277.75 49 3.085000e+02 15116.50 4.757764e+06 4.476648e+06 281116.84 NULL
2024 Dept Of Health/Mental Hygiene Public Health Epidemiologist 79124.40625 5.063962e+06 182666.56 2.854165e+03 0.000 2890.00 64 0.000000e+00 0.00 5.246629e+06 5.063962e+06 182666.56 NULL
2024 Dept Of Health/Mental Hygiene Public Health Nurse 48411.84750 3.078994e+07 1136110.29 1.786337e+03 2.995 21230.75 636 2.995000e+00 1904.82 3.192605e+07 3.079184e+07 1134205.47 NULL
2024 Dept Of Health/Mental Hygiene Public Health Preventative Medicine Resident 80739.50000 3.229580e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.229580e+05 3.229580e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Public Health Sanitarian 64382.37423 2.098865e+07 676919.74 2.076441e+03 0.000 15547.75 326 0.000000e+00 0.00 2.166557e+07 2.098865e+07 676919.74 NULL
2024 Dept Of Health/Mental Hygiene Public Records Aide 53685.23500 4.294819e+05 18.33 2.291250e+00 0.000 0.00 8 0.000000e+00 0.00 4.295002e+05 4.294819e+05 18.33 NULL
2024 Dept Of Health/Mental Hygiene Quality Assurance Specialist 45182.21250 2.710933e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.710933e+05 2.710933e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Regional Director Mental Health Mental Retard & Alc Service 140093.16667 8.405590e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.405590e+05 8.405590e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Research Assistant 77459.00000 7.745900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.745900e+04 7.745900e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Scientist 77550.79545 3.412235e+06 45239.48 1.028170e+03 0.000 689.25 44 0.000000e+00 0.00 3.457474e+06 3.412235e+06 45239.48 NULL
2024 Dept Of Health/Mental Hygiene Secretary 56518.10943 1.243398e+06 9616.74 4.371245e+02 0.000 225.75 22 0.000000e+00 0.00 1.253015e+06 1.243398e+06 9616.74 NULL
2024 Dept Of Health/Mental Hygiene Senior Consultant 100984.87500 8.078790e+05 11309.97 1.413746e+03 0.000 126.50 8 0.000000e+00 0.00 8.191890e+05 8.078790e+05 11309.97 NULL
2024 Dept Of Health/Mental Hygiene Senior It Architect 141554.33333 8.493260e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.493260e+05 8.493260e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Senior Medical Specialist 126659.49020 1.266595e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.266595e+05 1.266595e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Senior Photographer 63278.55556 5.695070e+05 44577.20 4.953022e+03 3732.070 1104.75 9 3.732070e+03 33588.63 6.140842e+05 6.030956e+05 10988.57 NULL
2024 Dept Of Health/Mental Hygiene Senior Stationary Engineer NA NA 131806.86 1.318069e+05 131806.860 984.50 1 1.318069e+05 131806.86 NA NA NA NULL
2024 Dept Of Health/Mental Hygiene Social Worker 71518.24138 2.074029e+06 184.74 6.370345e+00 0.000 4.50 29 0.000000e+00 0.00 2.074214e+06 2.074029e+06 184.74 NULL
2024 Dept Of Health/Mental Hygiene Space Analyst 95006.00000 9.500600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.500600e+04 9.500600e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Spec Consultant 95357.95579 9.059006e+06 183596.20 1.932592e+03 0.000 2597.75 95 0.000000e+00 0.00 9.242602e+06 9.059006e+06 183596.20 NULL
2024 Dept Of Health/Mental Hygiene Special Advisor To The Mayor For Health Services 141055.50000 2.821110e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.821110e+05 2.821110e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Special Assistant In Mental Retardation 170840.00000 1.708400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.708400e+05 1.708400e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Special Assistant To Commissioner 195469.00000 1.954690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.954690e+05 1.954690e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Special Consultant 81926.83721 3.522854e+06 52433.58 1.219386e+03 0.000 915.00 43 0.000000e+00 0.00 3.575288e+06 3.522854e+06 52433.58 NULL
2024 Dept Of Health/Mental Hygiene Special Officer 46492.09756 1.906176e+06 367861.03 8.972220e+03 5897.160 10425.48 41 5.897160e+03 241783.56 2.274037e+06 2.147960e+06 126077.47 NULL
2024 Dept Of Health/Mental Hygiene Sr Healthcare Prog Plan Anlyst 69088.53086 4.628932e+06 68059.80 1.015818e+03 0.000 1515.50 67 0.000000e+00 0.00 4.696991e+06 4.628932e+06 68059.80 NULL
2024 Dept Of Health/Mental Hygiene Staff Analyst 76106.25926 2.054869e+06 17967.50 6.654630e+02 0.000 300.75 27 0.000000e+00 0.00 2.072836e+06 2.054869e+06 17967.50 NULL
2024 Dept Of Health/Mental Hygiene Staff Analyst Trainee 15857.91375 3.171583e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.171583e+04 3.171583e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Stationary Engineer NA NA 2883758.55 1.310799e+05 135414.660 24661.25 22 1.310799e+05 2883758.55 NA NA NA NULL
2024 Dept Of Health/Mental Hygiene Statistician 72753.00000 7.275300e+04 29801.25 2.980125e+04 29801.250 531.00 1 2.980125e+04 29801.25 1.025542e+05 1.025542e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Steam Fitter NA NA 5842.50 5.842500e+03 5842.500 47.50 1 5.842500e+03 5842.50 NA NA NA NULL
2024 Dept Of Health/Mental Hygiene Stock Worker 42263.77678 5.071653e+05 682.85 5.690417e+01 0.000 14.50 12 0.000000e+00 0.00 5.078482e+05 5.071653e+05 682.85 NULL
2024 Dept Of Health/Mental Hygiene Strategic Initiative Specialist 154663.12500 1.237305e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.237305e+06 1.237305e+06 0.00 NULL
2024 Dept Of Health/Mental Hygiene Summer Graduate Intern 7964.54380 2.389363e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.389363e+04 2.389363e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Supervising Computer Service Technician 83037.20000 4.151860e+05 25227.08 5.045416e+03 0.000 465.75 5 0.000000e+00 0.00 4.404131e+05 4.151860e+05 25227.08 NULL
2024 Dept Of Health/Mental Hygiene Supervising Public Health Adviser 74534.32432 8.273310e+06 445811.81 4.016323e+03 0.000 7864.75 111 0.000000e+00 0.00 8.719122e+06 8.273310e+06 445811.81 NULL
2024 Dept Of Health/Mental Hygiene Supervising Special Officer 64433.06667 1.932992e+06 480054.04 1.600180e+04 16969.435 10412.25 30 1.600180e+04 480054.04 2.413046e+06 2.413046e+06 0.00 NULL
2024 Dept Of Health/Mental Hygiene Supervisor 57403.18750 9.184510e+05 80752.35 5.047022e+03 0.000 1828.93 16 0.000000e+00 0.00 9.992033e+05 9.184510e+05 80752.35 NULL
2024 Dept Of Health/Mental Hygiene Supervisor Electrician NA NA 182113.34 6.070445e+04 41238.670 1746.75 3 4.123867e+04 123716.01 NA NA NA NULL
2024 Dept Of Health/Mental Hygiene Supervisor I Social Work 82960.00000 8.296000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.296000e+04 8.296000e+04 0.00 NULL
2024 Dept Of Health/Mental Hygiene Supervisor Ii Social Work 90446.14286 1.266246e+06 38195.61 2.728258e+03 0.000 613.75 14 0.000000e+00 0.00 1.304442e+06 1.266246e+06 38195.61 NULL
2024 Dept Of Health/Mental Hygiene Supervisor Iii Social Work 103490.80000 5.174540e+05 9641.13 1.928226e+03 2334.850 152.75 5 1.928226e+03 9641.13 5.270951e+05 5.270951e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Supervisor Of Mechanical Installations & Maintenance 91046.00000 9.104600e+04 13148.41 1.314841e+04 13148.410 203.50 1 1.314841e+04 13148.41 1.041944e+05 1.041944e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Supervisor Of Motor Transport 71304.00000 3.565200e+05 123154.95 2.463099e+04 17440.370 2242.25 5 1.744037e+04 87201.85 4.796750e+05 4.437218e+05 35953.10 NULL
2024 Dept Of Health/Mental Hygiene Supervisor Of Stock Workers 66654.00000 2.666160e+05 22067.33 5.516833e+03 2477.470 378.00 4 2.477470e+03 9909.88 2.886833e+05 2.765259e+05 12157.45 NULL
2024 Dept Of Health/Mental Hygiene Telecommunications Associate 101562.00000 1.015620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.015620e+05 1.015620e+05 0.00 NULL
2024 Dept Of Health/Mental Hygiene Thermostat Repairer NA NA 26267.74 2.626774e+04 26267.740 217.00 1 2.626774e+04 26267.74 NA NA NA NULL
2024 Dept Of Health/Mental Hygiene X-Ray Technician 59162.23636 6.507846e+05 44269.89 4.024535e+03 296.480 893.25 11 2.964800e+02 3261.28 6.950545e+05 6.540459e+05 41008.61 NULL
2024 Dept Of Parks & Recreation *Senior Estimator 104867.66667 3.146030e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.146030e+05 3.146030e+05 0.00 NULL
2024 Dept Of Parks & Recreation Accountant 83919.00000 8.391900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.391900e+04 8.391900e+04 0.00 NULL
2024 Dept Of Parks & Recreation Adm Manager-Non-Mgrl 92722.46389 5.007013e+06 215188.90 3.984980e+03 0.000 2916.75 54 0.000000e+00 0.00 5.222202e+06 5.007013e+06 215188.90 NULL
2024 Dept Of Parks & Recreation Admin Community Relations Specialist 107350.89888 9.554230e+06 563221.56 6.328332e+03 658.930 7633.50 89 6.589300e+02 58644.77 1.011745e+07 9.612875e+06 504576.79 NULL
2024 Dept Of Parks & Recreation Admin Construction Project Manager 85102.57143 5.957180e+05 527.16 7.530857e+01 0.000 11.00 7 0.000000e+00 0.00 5.962452e+05 5.957180e+05 527.16 NULL
2024 Dept Of Parks & Recreation Admin Landmarks Preservationist 139213.00000 1.392130e+05 3252.60 3.252600e+03 3252.600 42.50 1 3.252600e+03 3252.60 1.424656e+05 1.424656e+05 0.00 NULL
2024 Dept Of Parks & Recreation Administrative Architect 134842.00000 2.696840e+05 7011.51 3.505755e+03 3505.755 100.50 2 3.505755e+03 7011.51 2.766955e+05 2.766955e+05 0.00 NULL
2024 Dept Of Parks & Recreation Administrative City Planner 156624.00000 6.264960e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.264960e+05 6.264960e+05 0.00 NULL
2024 Dept Of Parks & Recreation Administrative Community Relations Specialist 158678.23077 2.062817e+06 2889.76 2.222892e+02 0.000 0.00 13 0.000000e+00 0.00 2.065707e+06 2.062817e+06 2889.76 NULL
2024 Dept Of Parks & Recreation Administrative Construction Project Manager 176647.00000 1.766470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.766470e+05 1.766470e+05 0.00 NULL
2024 Dept Of Parks & Recreation Administrative Engineer 148203.33333 8.892200e+05 50912.04 8.485340e+03 3809.950 498.00 6 3.809950e+03 22859.70 9.401320e+05 9.120797e+05 28052.34 NULL
2024 Dept Of Parks & Recreation Administrative Graphic Artist 116463.50000 2.329270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.329270e+05 2.329270e+05 0.00 NULL
2024 Dept Of Parks & Recreation Administrative Horticulturist 104687.99188 4.815648e+06 54570.73 1.186320e+03 0.000 787.25 46 0.000000e+00 0.00 4.870218e+06 4.815648e+06 54570.73 NULL
2024 Dept Of Parks & Recreation Administrative Landscape Architect 166763.33333 5.002900e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.002900e+05 5.002900e+05 0.00 NULL
2024 Dept Of Parks & Recreation Administrative Management Auditor 120254.00000 1.202540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.202540e+05 1.202540e+05 0.00 NULL
2024 Dept Of Parks & Recreation Administrative Manager 155898.75000 6.235950e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.235950e+05 6.235950e+05 0.00 NULL
2024 Dept Of Parks & Recreation Administrative Parks & Recreation Manager 116611.46094 1.306048e+07 715426.98 6.387741e+03 30.290 9450.25 112 3.029000e+01 3392.48 1.377591e+07 1.306388e+07 712034.50 NULL
2024 Dept Of Parks & Recreation Administrative Procurement Analyst-Non-Mgrl 98007.00000 6.860490e+05 67464.99 9.637856e+03 1526.830 892.75 7 1.526830e+03 10687.81 7.535140e+05 6.967368e+05 56777.18 NULL
2024 Dept Of Parks & Recreation Administrative Project Manager 127507.74194 3.952740e+06 3520.56 1.135665e+02 0.000 66.00 31 0.000000e+00 0.00 3.956261e+06 3.952740e+06 3520.56 NULL
2024 Dept Of Parks & Recreation Administrative Public Information Specialist 153243.50000 3.064870e+05 28.00 1.400000e+01 14.000 0.00 2 1.400000e+01 28.00 3.065150e+05 3.065150e+05 0.00 NULL
2024 Dept Of Parks & Recreation Administrative Quality Assurance Specialist 90386.00000 9.038600e+04 2675.20 2.675200e+03 2675.200 46.75 1 2.675200e+03 2675.20 9.306120e+04 9.306120e+04 0.00 NULL
2024 Dept Of Parks & Recreation Administrative Staff Analyst 122133.97436 9.526450e+06 257057.84 3.295613e+03 0.400 2966.75 78 4.000000e-01 31.20 9.783508e+06 9.526481e+06 257026.64 NULL
2024 Dept Of Parks & Recreation Administrative Supervisor Of Building Maintenance 130632.00000 2.612640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.612640e+05 2.612640e+05 0.00 NULL
2024 Dept Of Parks & Recreation Agency Attorney 105067.70588 1.786151e+06 981.99 5.776412e+01 0.000 13.75 17 0.000000e+00 0.00 1.787133e+06 1.786151e+06 981.99 NULL
2024 Dept Of Parks & Recreation Agency Attorney Interne 73910.00000 1.478200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.478200e+05 1.478200e+05 0.00 NULL
2024 Dept Of Parks & Recreation Agency Chief Contracting Officer 183774.00000 1.837740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.837740e+05 1.837740e+05 0.00 NULL
2024 Dept Of Parks & Recreation Architect 119354.08333 1.432249e+06 4738.71 3.948925e+02 0.000 67.00 12 0.000000e+00 0.00 1.436988e+06 1.432249e+06 4738.71 NULL
2024 Dept Of Parks & Recreation Assistant Architect 90361.00000 1.807220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.807220e+05 1.807220e+05 0.00 NULL
2024 Dept Of Parks & Recreation Assistant Civil Engineer 88591.50000 7.087320e+05 1530.39 1.912988e+02 0.000 27.50 8 0.000000e+00 0.00 7.102624e+05 7.087320e+05 1530.39 NULL
2024 Dept Of Parks & Recreation Assistant Commissioner 195399.00000 7.815960e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.815960e+05 7.815960e+05 0.00 NULL
2024 Dept Of Parks & Recreation Assistant Electrical Engineer 87606.00000 3.504240e+05 307.33 7.683250e+01 -124.060 -0.25 4 -1.240600e+02 -496.24 3.507313e+05 3.499278e+05 803.57 NULL
2024 Dept Of Parks & Recreation Assistant Landscape Architect 74600.15000 1.492003e+06 7171.01 3.585505e+02 0.000 132.75 20 0.000000e+00 0.00 1.499174e+06 1.492003e+06 7171.01 NULL
2024 Dept Of Parks & Recreation Assistant Mechanical Engineer 80164.33333 4.809860e+05 7041.26 1.173543e+03 1141.835 138.25 6 1.141835e+03 6851.01 4.880273e+05 4.878370e+05 190.25 NULL
2024 Dept Of Parks & Recreation Assistant To The Commissioner Of Parks And Recreation 180205.00000 1.802050e+05 4.02 4.020000e+00 4.020 0.00 1 4.020000e+00 4.02 1.802090e+05 1.802090e+05 0.00 NULL
2024 Dept Of Parks & Recreation Associate Fraud Investigator 106341.00000 1.063410e+05 21639.30 2.163930e+04 21639.300 302.25 1 2.163930e+04 21639.30 1.279803e+05 1.279803e+05 0.00 NULL
2024 Dept Of Parks & Recreation Associate Labor Relations Analyst 100134.00000 1.001340e+05 6177.52 6.177520e+03 6177.520 81.00 1 6.177520e+03 6177.52 1.063115e+05 1.063115e+05 0.00 NULL
2024 Dept Of Parks & Recreation Associate Park Service Worker 52338.82640 1.721947e+07 1226620.42 3.728330e+03 1611.820 27290.45 329 1.611820e+03 530288.78 1.844609e+07 1.774976e+07 696331.64 NULL
2024 Dept Of Parks & Recreation Associate Project Manager 105974.11071 5.934550e+06 73916.76 1.319942e+03 31.570 1053.00 56 3.157000e+01 1767.92 6.008467e+06 5.936318e+06 72148.84 NULL
2024 Dept Of Parks & Recreation Associate Quality Assurance Specialist 90629.00000 9.062900e+04 453.67 4.536700e+02 453.670 5.00 1 4.536700e+02 453.67 9.108267e+04 9.108267e+04 0.00 NULL
2024 Dept Of Parks & Recreation Associate Staff Analyst 86018.07500 1.376289e+06 7835.40 4.897125e+02 6.170 137.25 16 6.170000e+00 98.72 1.384125e+06 1.376388e+06 7736.68 NULL
2024 Dept Of Parks & Recreation Associate Urban Designer 94566.73333 1.418501e+06 9007.29 6.004860e+02 117.520 150.50 15 1.175200e+02 1762.80 1.427508e+06 1.420264e+06 7244.49 NULL
2024 Dept Of Parks & Recreation Associate Urban Park Ranger 64430.50427 7.538369e+06 960769.41 8.211704e+03 4924.060 21920.31 117 4.924060e+03 576115.02 8.499138e+06 8.114484e+06 384654.39 NULL
2024 Dept Of Parks & Recreation Auto Mechanic NA NA 140135.20 3.787438e+03 2920.410 1905.00 37 2.920410e+03 108055.17 NA NA NA NULL
2024 Dept Of Parks & Recreation Automotive Service Worker 42841.19259 3.427295e+05 8698.59 1.087324e+03 718.150 212.25 8 7.181500e+02 5745.20 3.514281e+05 3.484747e+05 2953.39 NULL
2024 Dept Of Parks & Recreation Blacksmith NA NA 140946.80 1.084206e+04 8536.590 1315.00 13 8.536590e+03 110975.67 NA NA NA NULL
2024 Dept Of Parks & Recreation Blacksmith’s Helper NA NA 25484.07 4.247345e+03 2434.040 306.50 6 2.434040e+03 14604.24 NA NA NA NULL
2024 Dept Of Parks & Recreation Borough Commissioner 192361.83333 1.154171e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.154171e+06 1.154171e+06 0.00 NULL
2024 Dept Of Parks & Recreation Carpenter NA NA 341025.08 7.750570e+03 5877.275 3529.50 44 5.877275e+03 258600.10 NA NA NA NULL
2024 Dept Of Parks & Recreation Cement Mason NA NA 325650.81 1.302603e+04 8044.410 2714.75 25 8.044410e+03 201110.25 NA NA NA NULL
2024 Dept Of Parks & Recreation Certified It Administrator 112576.26667 1.688644e+06 42939.23 2.862615e+03 0.000 539.00 15 0.000000e+00 0.00 1.731583e+06 1.688644e+06 42939.23 NULL
2024 Dept Of Parks & Recreation Certified It Developer 114719.00000 1.032471e+06 144128.85 1.601432e+04 2941.040 1714.75 9 2.941040e+03 26469.36 1.176600e+06 1.058940e+06 117659.49 NULL
2024 Dept Of Parks & Recreation Chief Dockmaster 72000.00000 2.160000e+05 2022.17 6.740567e+02 0.000 40.00 3 0.000000e+00 0.00 2.180222e+05 2.160000e+05 2022.17 NULL
2024 Dept Of Parks & Recreation Chief Lifeguard 46030.46640 4.280833e+06 472690.55 5.082694e+03 3688.760 8615.00 93 3.688760e+03 343054.68 4.753524e+06 4.623888e+06 129635.87 NULL
2024 Dept Of Parks & Recreation City Park Worker 32991.23567 5.671193e+07 2508527.46 1.459295e+03 418.500 73839.26 1719 4.185000e+02 719401.50 5.922046e+07 5.743134e+07 1789125.96 NULL
2024 Dept Of Parks & Recreation City Planner 101993.86667 1.529908e+06 4712.02 3.141347e+02 0.000 87.00 15 0.000000e+00 0.00 1.534620e+06 1.529908e+06 4712.02 NULL
2024 Dept Of Parks & Recreation City Research Scientist 100308.34432 2.206784e+06 1452.26 6.601182e+01 0.000 28.00 22 0.000000e+00 0.00 2.208236e+06 2.206784e+06 1452.26 NULL
2024 Dept Of Parks & Recreation City Seasonal Aide 20457.82482 4.089519e+07 1409956.38 7.053309e+02 176.400 51823.48 1999 1.764000e+02 352623.60 4.230515e+07 4.124782e+07 1057332.78 NULL
2024 Dept Of Parks & Recreation Civil Engineer 125051.87500 1.000415e+06 1319.30 1.649125e+02 0.000 18.25 8 0.000000e+00 0.00 1.001734e+06 1.000415e+06 1319.30 NULL
2024 Dept Of Parks & Recreation Civil Engineering Intern 66546.00000 1.996380e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.996380e+05 1.996380e+05 0.00 NULL
2024 Dept Of Parks & Recreation Clerical Aide 6523.41024 3.261705e+04 3763.37 7.526740e+02 225.000 160.25 5 2.250000e+02 1125.00 3.638042e+04 3.374205e+04 2638.37 NULL
2024 Dept Of Parks & Recreation Clerical Associate 56488.90956 1.751156e+06 31885.78 1.028574e+03 0.000 845.25 31 0.000000e+00 0.00 1.783042e+06 1.751156e+06 31885.78 NULL
2024 Dept Of Parks & Recreation Climber & Pruner 76928.27778 5.538836e+06 542905.40 7.540353e+03 6251.835 9436.00 72 6.251835e+03 450132.12 6.081741e+06 5.988968e+06 92773.28 NULL
2024 Dept Of Parks & Recreation Commissioner Of Parks & Recreation 277605.00000 2.776050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.776050e+05 2.776050e+05 0.00 NULL
2024 Dept Of Parks & Recreation Community Assistant 46467.00000 4.646700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.646700e+04 4.646700e+04 0.00 NULL
2024 Dept Of Parks & Recreation Community Associate 36225.05768 4.057206e+06 14410.61 1.286662e+02 0.000 461.75 112 0.000000e+00 0.00 4.071617e+06 4.057206e+06 14410.61 NULL
2024 Dept Of Parks & Recreation Community Coordinator 73890.94949 3.775828e+07 1204557.92 2.357256e+03 0.000 23040.68 511 0.000000e+00 0.00 3.896283e+07 3.775828e+07 1204557.92 NULL
2024 Dept Of Parks & Recreation Computer Aide-Non-Spvr 66847.66667 2.005430e+05 2586.80 8.622667e+02 748.770 56.25 3 7.487700e+02 2246.31 2.031298e+05 2.027893e+05 340.49 NULL
2024 Dept Of Parks & Recreation Computer Associate 87743.82690 1.403901e+06 48016.30 3.001019e+03 0.000 665.75 16 0.000000e+00 0.00 1.451918e+06 1.403901e+06 48016.30 NULL
2024 Dept Of Parks & Recreation Computer Operations Manager 136369.25000 5.454770e+05 835.53 2.088825e+02 0.000 9.75 4 0.000000e+00 0.00 5.463125e+05 5.454770e+05 835.53 NULL
2024 Dept Of Parks & Recreation Computer Specialist 110536.76923 1.436978e+06 17750.62 1.365432e+03 0.000 258.00 13 0.000000e+00 0.00 1.454729e+06 1.436978e+06 17750.62 NULL
2024 Dept Of Parks & Recreation Computer Systems Manager 152165.40000 7.608270e+05 1442.09 2.884180e+02 0.000 24.00 5 0.000000e+00 0.00 7.622691e+05 7.608270e+05 1442.09 NULL
2024 Dept Of Parks & Recreation Construction Project Manager 98032.80556 7.058362e+06 265933.73 3.693524e+03 704.330 3754.00 72 7.043300e+02 50711.76 7.324296e+06 7.109074e+06 215221.97 NULL
2024 Dept Of Parks & Recreation Counsel 232531.00000 2.325310e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.325310e+05 2.325310e+05 0.00 NULL
2024 Dept Of Parks & Recreation Cyber Security Analyst 103000.00000 2.060000e+05 2198.56 1.099280e+03 1099.280 32.50 2 1.099280e+03 2198.56 2.081986e+05 2.081986e+05 0.00 NULL
2024 Dept Of Parks & Recreation Deputy Borough Commissioner 185564.25000 1.484514e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.484514e+06 1.484514e+06 0.00 NULL
2024 Dept Of Parks & Recreation Deputy Chief Of Operations 152652.09091 1.679173e+06 17073.26 1.552115e+03 0.000 211.00 11 0.000000e+00 0.00 1.696246e+06 1.679173e+06 17073.26 NULL
2024 Dept Of Parks & Recreation Deputy Commissioner 224551.16667 1.347307e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.347307e+06 1.347307e+06 0.00 NULL
2024 Dept Of Parks & Recreation Director Of Community Involvement 152467.00000 1.524670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.524670e+05 1.524670e+05 0.00 NULL
2024 Dept Of Parks & Recreation Director Of Puppetry 69737.00000 6.973700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.973700e+04 6.973700e+04 0.00 NULL
2024 Dept Of Parks & Recreation Director Of Urban Park Ranger Program 118648.00000 5.932400e+05 17206.67 3.441334e+03 0.000 289.75 5 0.000000e+00 0.00 6.104467e+05 5.932400e+05 17206.67 NULL
2024 Dept Of Parks & Recreation Electrical Engineer 111002.33333 3.330070e+05 3896.67 1.298890e+03 0.000 50.75 3 0.000000e+00 0.00 3.369037e+05 3.330070e+05 3896.67 NULL
2024 Dept Of Parks & Recreation Electrician NA NA 405268.96 1.191968e+04 8079.300 4123.25 34 8.079300e+03 274696.20 NA NA NA NULL
2024 Dept Of Parks & Recreation Engineering Technician 65279.00000 6.527900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.527900e+04 6.527900e+04 0.00 NULL
2024 Dept Of Parks & Recreation Environmental Engineer 118405.00000 1.184050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.184050e+05 1.184050e+05 0.00 NULL
2024 Dept Of Parks & Recreation Estimator 105889.00000 1.058890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.058890e+05 1.058890e+05 0.00 NULL
2024 Dept Of Parks & Recreation Executive Agency Counsel 175168.00000 7.006720e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.006720e+05 7.006720e+05 0.00 NULL
2024 Dept Of Parks & Recreation Executive Assistant To The Commissioner 165935.00000 1.659350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.659350e+05 1.659350e+05 0.00 NULL
2024 Dept Of Parks & Recreation Exterminator 60363.00000 7.847190e+05 173982.98 1.338331e+04 12062.990 4035.50 13 1.206299e+04 156818.87 9.587020e+05 9.415379e+05 17164.11 NULL
2024 Dept Of Parks & Recreation Forester 69394.35408 4.441239e+06 29811.16 4.657994e+02 0.000 698.38 64 0.000000e+00 0.00 4.471050e+06 4.441239e+06 29811.16 NULL
2024 Dept Of Parks & Recreation Gardener 53473.67189 1.016000e+07 511693.49 2.693124e+03 651.570 12252.40 190 6.515700e+02 123798.30 1.067169e+07 1.028380e+07 387895.19 NULL
2024 Dept Of Parks & Recreation Graphic Artist 73797.50000 1.475950e+05 364.40 1.822000e+02 182.200 8.50 2 1.822000e+02 364.40 1.479594e+05 1.479594e+05 0.00 NULL
2024 Dept Of Parks & Recreation High School Student Aide 7622.00000 1.524400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.524400e+04 1.524400e+04 0.00 NULL
2024 Dept Of Parks & Recreation Hostler 28874.37500 5.774875e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.774875e+04 5.774875e+04 0.00 NULL
2024 Dept Of Parks & Recreation Investigator 78724.00000 8.659640e+05 33206.19 3.018745e+03 423.160 595.75 11 4.231600e+02 4654.76 8.991702e+05 8.706188e+05 28551.43 NULL
2024 Dept Of Parks & Recreation It Automation And Monitoring Engineer 102124.00000 7.148680e+05 1213.16 1.733086e+02 0.000 24.00 7 0.000000e+00 0.00 7.160812e+05 7.148680e+05 1213.16 NULL
2024 Dept Of Parks & Recreation It Infrastructure Engineer 97658.00000 2.929740e+05 30596.65 1.019888e+04 7313.190 443.25 3 7.313190e+03 21939.57 3.235707e+05 3.149136e+05 8657.08 NULL
2024 Dept Of Parks & Recreation It Project Specialist 98047.13636 2.157037e+06 9773.36 4.442436e+02 0.000 158.25 22 0.000000e+00 0.00 2.166810e+06 2.157037e+06 9773.36 NULL
2024 Dept Of Parks & Recreation It Service Management Specialist 93833.00000 3.753320e+05 18287.08 4.571770e+03 2402.720 342.75 4 2.402720e+03 9610.88 3.936191e+05 3.849429e+05 8676.20 NULL
2024 Dept Of Parks & Recreation Job Training Participant 6411.90102 1.809438e+07 622872.72 2.207203e+02 0.000 25398.00 2822 0.000000e+00 0.00 1.871726e+07 1.809438e+07 622872.72 NULL
2024 Dept Of Parks & Recreation Labor Relations Analyst 85979.33333 2.579380e+05 15.75 5.250000e+00 0.000 0.00 3 0.000000e+00 0.00 2.579538e+05 2.579380e+05 15.75 NULL
2024 Dept Of Parks & Recreation Landmarks Preservationist 91230.50000 3.649220e+05 3030.58 7.576450e+02 420.420 64.25 4 4.204200e+02 1681.68 3.679526e+05 3.666037e+05 1348.90 NULL
2024 Dept Of Parks & Recreation Landscape Architect 110908.22353 9.427199e+06 286267.12 3.367848e+03 501.380 3632.00 85 5.013800e+02 42617.30 9.713466e+06 9.469816e+06 243649.82 NULL
2024 Dept Of Parks & Recreation Landscape Architect Intern 58705.23167 1.761157e+05 153.75 5.125000e+01 0.000 5.00 3 0.000000e+00 0.00 1.762694e+05 1.761157e+05 153.75 NULL
2024 Dept Of Parks & Recreation Letterer And Sign Painter NA NA 35342.30 1.178077e+04 4428.120 549.75 3 4.428120e+03 13284.36 NA NA NA NULL
2024 Dept Of Parks & Recreation Lifeguard 10804.73787 7.638950e+06 562264.66 7.952824e+02 463.100 17412.25 707 4.631000e+02 327411.70 8.201214e+06 7.966361e+06 234852.96 NULL
2024 Dept Of Parks & Recreation Machinist NA NA 28010.52 9.336840e+03 930.890 354.00 3 9.308900e+02 2792.67 NA NA NA NULL
2024 Dept Of Parks & Recreation Maintenance Worker NA NA 509497.98 4.549089e+03 1533.305 9565.50 112 1.533305e+03 171730.16 NA NA NA NULL
2024 Dept Of Parks & Recreation Management Auditor 89536.66667 2.686100e+05 603.64 2.012133e+02 0.000 7.25 3 0.000000e+00 0.00 2.692136e+05 2.686100e+05 603.64 NULL
2024 Dept Of Parks & Recreation Manager Of Park License Agreements 187891.00000 1.878910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.878910e+05 1.878910e+05 0.00 NULL
2024 Dept Of Parks & Recreation Marine Maintenance Mechanic 86987.50000 3.479500e+05 859.22 2.148050e+02 70.230 18.00 4 7.023000e+01 280.92 3.488092e+05 3.482309e+05 578.30 NULL
2024 Dept Of Parks & Recreation Masons Helper NA NA 16840.30 4.210075e+03 302.270 267.25 4 3.022700e+02 1209.08 NA NA NA NULL
2024 Dept Of Parks & Recreation Mechanical Engineer 128690.00000 1.286900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.286900e+05 1.286900e+05 0.00 NULL
2024 Dept Of Parks & Recreation Monuments Officer 110372.00000 1.103720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.103720e+05 1.103720e+05 0.00 NULL
2024 Dept Of Parks & Recreation Oiler NA NA 143097.68 2.861954e+04 26953.630 1272.75 5 2.695363e+04 134768.15 NA NA NA NULL
2024 Dept Of Parks & Recreation Painter NA NA 418760.01 1.163222e+04 9830.800 5212.00 36 9.830800e+03 353908.80 NA NA NA NULL
2024 Dept Of Parks & Recreation Park Supervisor 85646.48031 4.205242e+07 3631061.00 7.395236e+03 4090.830 60559.50 491 4.090830e+03 2008597.53 4.568348e+07 4.406102e+07 1622463.47 NULL
2024 Dept Of Parks & Recreation Playground Associate 12685.67927 2.499079e+06 48644.77 2.469278e+02 0.000 1996.74 197 0.000000e+00 0.00 2.547724e+06 2.499079e+06 48644.77 NULL
2024 Dept Of Parks & Recreation Plumber NA NA 1632403.90 2.365803e+04 19958.290 13468.75 69 1.995829e+04 1377122.01 NA NA NA NULL
2024 Dept Of Parks & Recreation Plumber’s Helper NA NA 80945.47 2.023637e+04 17447.015 939.25 4 1.744701e+04 69788.06 NA NA NA NULL
2024 Dept Of Parks & Recreation Principal Administrative Associate - Non Supvr 72286.30522 1.120438e+07 327677.97 2.114051e+03 12.680 5910.53 155 1.268000e+01 1965.40 1.153206e+07 1.120634e+07 325712.57 NULL
2024 Dept Of Parks & Recreation Procurement Analyst 82755.81818 1.820628e+06 61643.16 2.801962e+03 14.080 1082.50 22 1.408000e+01 309.76 1.882271e+06 1.820938e+06 61333.40 NULL
2024 Dept Of Parks & Recreation Project Manager 85250.66667 7.672560e+05 19631.81 2.181312e+03 13.790 316.00 9 1.379000e+01 124.11 7.868878e+05 7.673801e+05 19507.70 NULL
2024 Dept Of Parks & Recreation Puppeteer 52163.75000 2.086550e+05 261.07 6.526750e+01 0.000 7.00 4 0.000000e+00 0.00 2.089161e+05 2.086550e+05 261.07 NULL
2024 Dept Of Parks & Recreation Recreation Director 53110.35294 2.708628e+06 148338.43 2.908597e+03 1370.330 3995.50 51 1.370330e+03 69886.83 2.856966e+06 2.778515e+06 78451.60 NULL
2024 Dept Of Parks & Recreation Recreation Specialist 36855.12064 7.407879e+06 279271.86 1.389412e+03 177.460 8186.91 201 1.774600e+02 35669.46 7.687151e+06 7.443549e+06 243602.40 NULL
2024 Dept Of Parks & Recreation Recreation Supervisor 68077.72428 9.667037e+06 1019556.34 7.179974e+03 1867.005 19484.81 142 1.867005e+03 265114.71 1.068659e+07 9.932152e+06 754441.63 NULL
2024 Dept Of Parks & Recreation Research Assistant 68276.00000 6.827600e+04 5684.11 5.684110e+03 5684.110 114.25 1 5.684110e+03 5684.11 7.396011e+04 7.396011e+04 0.00 NULL
2024 Dept Of Parks & Recreation Roofer NA NA 10300.54 2.575135e+03 1864.125 168.75 4 1.864125e+03 7456.50 NA NA NA NULL
2024 Dept Of Parks & Recreation Secretary 62290.00000 1.245800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.245800e+05 1.245800e+05 0.00 NULL
2024 Dept Of Parks & Recreation Senior Photographer 80472.50000 1.609450e+05 777.17 3.885850e+02 388.585 16.00 2 3.885850e+02 777.17 1.617222e+05 1.617222e+05 0.00 NULL
2024 Dept Of Parks & Recreation Senior Stationary Engineer NA NA 233350.34 7.778345e+04 69428.010 1747.75 3 6.942801e+04 208284.03 NA NA NA NULL
2024 Dept Of Parks & Recreation Sheet Metal Worker NA NA 45108.67 6.444096e+03 7021.130 343.25 7 6.444096e+03 45108.67 NA NA NA NULL
2024 Dept Of Parks & Recreation Staff Analyst 72740.50000 8.728860e+05 45322.15 3.776846e+03 663.220 992.50 12 6.632200e+02 7958.64 9.182082e+05 8.808446e+05 37363.51 NULL
2024 Dept Of Parks & Recreation Stationary Engineer NA NA 1817973.50 2.673490e+04 19677.260 15003.00 68 1.967726e+04 1338053.68 NA NA NA NULL
2024 Dept Of Parks & Recreation Steam Fitter NA NA 128606.82 1.607585e+04 11531.250 1048.50 8 1.153125e+04 92250.00 NA NA NA NULL
2024 Dept Of Parks & Recreation Steam Fitter’s Helper NA NA 15958.66 5.319553e+03 6474.710 169.00 3 5.319553e+03 15958.66 NA NA NA NULL
2024 Dept Of Parks & Recreation Stock Worker 48659.00000 4.865900e+04 36.77 3.677000e+01 36.770 1.00 1 3.677000e+01 36.77 4.869577e+04 4.869577e+04 0.00 NULL
2024 Dept Of Parks & Recreation Supervising Computer Service Technician 85245.00000 8.524500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.524500e+04 8.524500e+04 0.00 NULL
2024 Dept Of Parks & Recreation Supervising Dockmaster 62275.33333 1.868260e+05 1312.75 4.375833e+02 295.000 32.00 3 2.950000e+02 885.00 1.881388e+05 1.877110e+05 427.75 NULL
2024 Dept Of Parks & Recreation Supervisor 84167.00000 8.416700e+04 12208.79 1.220879e+04 12208.790 190.50 1 1.220879e+04 12208.79 9.637579e+04 9.637579e+04 0.00 NULL
2024 Dept Of Parks & Recreation Supervisor Carpenter NA NA 145136.83 2.073383e+04 31226.150 1453.00 7 2.073383e+04 145136.83 NA NA NA NULL
2024 Dept Of Parks & Recreation Supervisor Electrician NA NA 125138.65 3.128466e+04 35323.145 1182.25 4 3.128466e+04 125138.65 NA NA NA NULL
2024 Dept Of Parks & Recreation Supervisor Of Mechanics NA NA 382405.27 3.186711e+04 17921.145 3325.25 12 1.792115e+04 215053.74 NA NA NA NULL
2024 Dept Of Parks & Recreation Supervisor Painter NA NA 133858.74 4.461958e+04 54450.010 1256.75 3 4.461958e+04 133858.74 NA NA NA NULL
2024 Dept Of Parks & Recreation Supervisor Plumber NA NA 295610.83 4.223012e+04 18520.140 2278.75 7 1.852014e+04 129640.98 NA NA NA NULL
2024 Dept Of Parks & Recreation Surveyor 84629.00000 7.616610e+05 28072.45 3.119161e+03 1307.590 491.00 9 1.307590e+03 11768.31 7.897334e+05 7.734293e+05 16304.14 NULL
2024 Dept Of Parks & Recreation Telecommunications Associate 86471.12500 6.917690e+05 19512.14 2.439017e+03 1278.590 281.25 8 1.278590e+03 10228.72 7.112811e+05 7.019977e+05 9283.42 NULL
2024 Dept Of Parks & Recreation Telephone Service Technician 72667.60000 3.633380e+05 31384.12 6.276824e+03 4713.820 635.50 5 4.713820e+03 23569.10 3.947221e+05 3.869071e+05 7815.02 NULL
2024 Dept Of Parks & Recreation Thermostat Repairer NA NA 61809.82 6.180982e+04 61809.820 505.00 1 6.180982e+04 61809.82 NA NA NA NULL
2024 Dept Of Parks & Recreation Urban Park Ranger 53649.33929 1.824078e+07 807803.99 2.375894e+03 307.010 21138.51 340 3.070100e+02 104383.40 1.904858e+07 1.834516e+07 703420.59 NULL
2024 Dept Of Records & Info Service Adm Manager-Non-Mgrl 94357.55000 3.774302e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.774302e+05 3.774302e+05 0.00 NULL
2024 Dept Of Records & Info Service Administrative Public Records Officer 120949.75000 4.837990e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.837990e+05 4.837990e+05 0.00 NULL
2024 Dept Of Records & Info Service Administrative Staff Analyst 124439.00000 1.244390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.244390e+05 1.244390e+05 0.00 NULL
2024 Dept Of Records & Info Service Agency Attorney 128440.00000 1.284400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.284400e+05 1.284400e+05 0.00 NULL
2024 Dept Of Records & Info Service Assistant Commissioner 179977.00000 1.799770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.799770e+05 1.799770e+05 0.00 NULL
2024 Dept Of Records & Info Service Associate Public Information Specialist 57500.00000 5.750000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.750000e+04 5.750000e+04 0.00 NULL
2024 Dept Of Records & Info Service Associate Public Records Officer 72537.00000 6.528330e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 6.528330e+05 6.528330e+05 0.00 NULL
2024 Dept Of Records & Info Service Certified It Administrator 154092.00000 1.540920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.540920e+05 1.540920e+05 0.00 NULL
2024 Dept Of Records & Info Service Certified It Developer 112700.50000 2.254010e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.254010e+05 2.254010e+05 0.00 NULL
2024 Dept Of Records & Info Service Clerical Associate 44699.00000 8.939800e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.939800e+04 8.939800e+04 0.00 NULL
2024 Dept Of Records & Info Service College Aide 6623.20000 6.623200e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.623200e+03 6.623200e+03 0.00 NULL
2024 Dept Of Records & Info Service Commissioner 249332.00000 2.493320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.493320e+05 2.493320e+05 0.00 NULL
2024 Dept Of Records & Info Service Community Assistant 45231.30000 4.523130e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.523130e+04 4.523130e+04 0.00 NULL
2024 Dept Of Records & Info Service Community Associate 28843.60024 2.307488e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 2.307488e+05 2.307488e+05 0.00 NULL
2024 Dept Of Records & Info Service Community Coordinator 65337.33827 3.920240e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.920240e+05 3.920240e+05 0.00 NULL
2024 Dept Of Records & Info Service Computer Associate 71647.66667 2.149430e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.149430e+05 2.149430e+05 0.00 NULL
2024 Dept Of Records & Info Service Computer Specialist 106071.00000 2.121420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.121420e+05 2.121420e+05 0.00 NULL
2024 Dept Of Records & Info Service Computer Systems Manager 188844.50000 3.776890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.776890e+05 3.776890e+05 0.00 NULL
2024 Dept Of Records & Info Service Motor Vehicle Operator 42397.00000 4.239700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.239700e+04 4.239700e+04 0.00 NULL
2024 Dept Of Records & Info Service Principal Administrative Associate - Non Supvr 69807.66667 2.094230e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.094230e+05 2.094230e+05 0.00 NULL
2024 Dept Of Records & Info Service Public Records Aide 22164.38245 8.865753e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.865753e+04 8.865753e+04 0.00 NULL
2024 Dept Of Records & Info Service Public Records Officer 41586.38369 4.990366e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 4.990366e+05 4.990366e+05 0.00 NULL
2024 Dept Of Records & Info Service Research Assistant 77554.00000 7.755400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.755400e+04 7.755400e+04 0.00 NULL
2024 Dept Of Records & Info Service Staff Analyst 67673.00000 6.767300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.767300e+04 6.767300e+04 0.00 NULL
2024 Dept Of Records & Info Service Stock Worker 36697.10750 3.669711e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.669711e+04 3.669711e+04 0.00 NULL
2024 Dept Of Records & Info Service Supervisor Of Stock Workers 46299.00000 4.629900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.629900e+04 4.629900e+04 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Accountant 98077.50000 1.961550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.961550e+05 1.961550e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Adm Manager-Non-Mgrl 98307.72000 2.457693e+06 6127.09 2.450836e+02 0.000 86.75 25 0.000000e+00 0.00 2.463820e+06 2.457693e+06 6127.09 NULL
2024 Dept Of Youth & Comm Dev Srvs Admin Community Relations Specialist 97760.65789 7.429810e+06 80238.88 1.055775e+03 0.000 1207.50 76 0.000000e+00 0.00 7.510049e+06 7.429810e+06 80238.88 NULL
2024 Dept Of Youth & Comm Dev Srvs Admin Contract Specialist 171590.81818 1.887499e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.887499e+06 1.887499e+06 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Administrative Business Promotion Coordinator 94155.00000 1.883100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.883100e+05 1.883100e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Administrative Community Relations Specialist 145734.86667 2.186023e+06 143.32 9.554667e+00 0.000 0.00 15 0.000000e+00 0.00 2.186166e+06 2.186023e+06 143.32 NULL
2024 Dept Of Youth & Comm Dev Srvs Administrative Contract Specialist 99340.28571 5.563056e+06 15553.66 2.777439e+02 0.000 275.00 56 0.000000e+00 0.00 5.578610e+06 5.563056e+06 15553.66 NULL
2024 Dept Of Youth & Comm Dev Srvs Administrative Director Of Social Services 133382.50000 2.667650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.667650e+05 2.667650e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Administrative Labor Relations Analyst 139050.00000 1.390500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.390500e+05 1.390500e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Administrative Management Auditor 109729.50000 6.583770e+05 190.25 3.170833e+01 0.000 3.00 6 0.000000e+00 0.00 6.585672e+05 6.583770e+05 190.25 NULL
2024 Dept Of Youth & Comm Dev Srvs Administrative Manager 144622.16667 1.735466e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.735466e+06 1.735466e+06 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Administrative Procurement Analyst 179664.00000 7.186560e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.186560e+05 7.186560e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Administrative Procurement Analyst-Non-Mgrl 85250.18182 9.377520e+05 541.81 4.925545e+01 0.000 6.00 11 0.000000e+00 0.00 9.382938e+05 9.377520e+05 541.81 NULL
2024 Dept Of Youth & Comm Dev Srvs Administrative Public Information Specialist 122479.00000 1.224790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.224790e+05 1.224790e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Administrative Staff Analyst 143086.99041 6.725089e+06 1330.71 2.831298e+01 0.000 1.50 47 0.000000e+00 0.00 6.726419e+06 6.725089e+06 1330.71 NULL
2024 Dept Of Youth & Comm Dev Srvs Agency Attorney 113697.87500 9.095830e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.095830e+05 9.095830e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Agency Chief Contracting Officer 221986.00000 2.219860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.219860e+05 2.219860e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Assist Commissioner For Intergovernmental Relations 190550.00000 1.905500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.905500e+05 1.905500e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Assist Commissioner For Policy Analysis & Prog Deve 175049.00000 1.750490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.750490e+05 1.750490e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Assistant Director Of Neighborhood Safety 109538.50000 2.190770e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.190770e+05 2.190770e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Assoc Commissioner For Planning,Review And Evaluation 196691.00000 1.966910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.966910e+05 1.966910e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Associate Commissioner For Management 181821.50000 3.636430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.636430e+05 3.636430e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Associate Contract Specialist 82266.41519 4.442386e+06 43928.29 8.134869e+02 0.000 815.25 54 0.000000e+00 0.00 4.486315e+06 4.442386e+06 43928.29 NULL
2024 Dept Of Youth & Comm Dev Srvs Associate Director, Office Of Neighborhood Safety 131950.00000 2.639000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.639000e+05 2.639000e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Associate Staff Analyst 101860.28571 7.130220e+05 401.67 5.738143e+01 0.000 0.00 7 0.000000e+00 0.00 7.134237e+05 7.130220e+05 401.67 NULL
2024 Dept Of Youth & Comm Dev Srvs Borough Manager, Office Of Neighborhood Safety 103012.75000 4.120510e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.120510e+05 4.120510e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Certified It Administrator 113070.00000 1.130700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.130700e+05 1.130700e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Certified It Developer 135107.69231 1.756400e+06 0.76 5.846150e-02 0.000 0.00 13 0.000000e+00 0.00 1.756401e+06 1.756400e+06 0.76 NULL
2024 Dept Of Youth & Comm Dev Srvs City Research Scientist 95857.58333 1.150291e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.150291e+06 1.150291e+06 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Clerical Associate 65795.50000 1.315910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.315910e+05 1.315910e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs College Aide 7094.39060 1.064159e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.064159e+05 1.064159e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs College Aide - Assignment Levels Ii And Iii 13874.42644 2.081164e+05 78.80 5.253333e+00 0.000 4.50 15 0.000000e+00 0.00 2.081952e+05 2.081164e+05 78.80 NULL
2024 Dept Of Youth & Comm Dev Srvs Commissioner Of Community Development 260042.00000 2.600420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.600420e+05 2.600420e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Community Assistant 18052.71357 1.624744e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.624744e+05 1.624744e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Community Associate 59291.50000 3.557490e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.557490e+05 3.557490e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Community Coordinator 64554.69906 8.521220e+06 16748.45 1.268822e+02 0.000 370.75 132 0.000000e+00 0.00 8.537969e+06 8.521220e+06 16748.45 NULL
2024 Dept Of Youth & Comm Dev Srvs Computer Associate 88398.75000 7.071900e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 7.071900e+05 7.071900e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Computer Operations Manager 116196.00000 1.161960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.161960e+05 1.161960e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Computer Specialist 124949.55556 2.249092e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.249092e+06 2.249092e+06 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Computer Systems Manager 158621.70000 1.586217e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.586217e+06 1.586217e+06 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Confidential Strategy Planner 95481.00000 9.548100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.548100e+04 9.548100e+04 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Contract Specialist 76503.77857 1.759587e+06 9887.76 4.299026e+02 0.000 165.25 23 0.000000e+00 0.00 1.769475e+06 1.759587e+06 9887.76 NULL
2024 Dept Of Youth & Comm Dev Srvs Cyber Security Analyst 104334.00000 1.043340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.043340e+05 1.043340e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Deputy Assistant Commissioner For Evaluation 135096.00000 1.350960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350960e+05 1.350960e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Deputy Commissioner 232225.25000 9.289010e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 9.289010e+05 9.289010e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Director Of Planning 180360.50000 7.214420e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.214420e+05 7.214420e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Executive Agency Counsel 202429.50000 8.097180e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.097180e+05 8.097180e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Executive Assistant To The Commissioner Of Employment 147772.00000 1.477720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.477720e+05 1.477720e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Executive Program Specialist 126755.00000 5.070200e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.070200e+05 5.070200e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs High School Student Aide 7262.03429 5.083424e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.083424e+04 5.083424e+04 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Management Auditor 95684.50000 1.913690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.913690e+05 1.913690e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Motor Vehicle Operator 62289.50000 1.245790e+05 425.90 2.129500e+02 212.950 8.50 2 2.129500e+02 425.90 1.250049e+05 1.250049e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Principal Administrative Associate - Non Supvr 78808.27778 1.418549e+06 17168.28 9.537933e+02 0.000 258.50 18 0.000000e+00 0.00 1.435717e+06 1.418549e+06 17168.28 NULL
2024 Dept Of Youth & Comm Dev Srvs Procurement Analyst 66580.30843 9.321243e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 9.321243e+05 9.321243e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Research Assistant 58173.00000 5.817300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.817300e+04 5.817300e+04 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Secretary 60039.00000 6.003900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.003900e+04 6.003900e+04 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Secretary To Commissioner 110835.00000 1.108350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.108350e+05 1.108350e+05 0.00 NULL
2024 Dept Of Youth & Comm Dev Srvs Senior Field Supervisor 15259.13055 5.340696e+05 395.44 1.129829e+01 0.000 16.25 35 0.000000e+00 0.00 5.344650e+05 5.340696e+05 395.44 NULL
2024 Dept Of Youth & Comm Dev Srvs Staff Analyst 75368.50000 6.029480e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.029480e+05 6.029480e+05 0.00 NULL
2024 Dept. Of Design & Construction *Certified Local Area Network Administrator 143994.00000 1.439940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.439940e+05 1.439940e+05 0.00 NULL
2024 Dept. Of Design & Construction Accountant 89867.18182 9.885390e+05 12713.99 1.155817e+03 0.000 276.00 11 0.000000e+00 0.00 1.001253e+06 9.885390e+05 12713.99 NULL
2024 Dept. Of Design & Construction Adm Manager-Non-Mgrl 97866.13333 1.467992e+06 2.75 1.833333e-01 0.000 0.00 15 0.000000e+00 0.00 1.467995e+06 1.467992e+06 2.75 NULL
2024 Dept. Of Design & Construction Admin Community Relations Specialist 111252.00000 1.446276e+06 13.33 1.025385e+00 0.000 0.00 13 0.000000e+00 0.00 1.446289e+06 1.446276e+06 13.33 NULL
2024 Dept. Of Design & Construction Admin Construction Project Manager 122210.25714 4.277359e+06 95785.34 2.736724e+03 0.000 1216.50 35 0.000000e+00 0.00 4.373144e+06 4.277359e+06 95785.34 NULL
2024 Dept. Of Design & Construction Admin Contract Specialist 128619.00000 1.286190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.286190e+05 1.286190e+05 0.00 NULL
2024 Dept. Of Design & Construction Admin Landmarks Preservationist 111395.00000 1.113950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.113950e+05 1.113950e+05 0.00 NULL
2024 Dept. Of Design & Construction Administrative Accountant 112550.50000 4.502020e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.502020e+05 4.502020e+05 0.00 NULL
2024 Dept. Of Design & Construction Administrative Architect 144508.06452 4.479750e+06 11103.36 3.581729e+02 0.000 122.00 31 0.000000e+00 0.00 4.490853e+06 4.479750e+06 11103.36 NULL
2024 Dept. Of Design & Construction Administrative Business Promotion Coordinator 162298.00000 1.622980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.622980e+05 1.622980e+05 0.00 NULL
2024 Dept. Of Design & Construction Administrative City Planner 138868.00000 2.777360e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.777360e+05 2.777360e+05 0.00 NULL
2024 Dept. Of Design & Construction Administrative Community Relations Specialist 211492.40000 1.057462e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.057462e+06 1.057462e+06 0.00 NULL
2024 Dept. Of Design & Construction Administrative Construction Project Manager 176096.20000 5.282886e+06 0.00 0.000000e+00 0.000 0.00 30 0.000000e+00 0.00 5.282886e+06 5.282886e+06 0.00 NULL
2024 Dept. Of Design & Construction Administrative Engineer 153696.43836 1.121984e+07 174102.01 2.384959e+03 0.000 2272.67 73 0.000000e+00 0.00 1.139394e+07 1.121984e+07 174102.01 NULL
2024 Dept. Of Design & Construction Administrative Graphic Artist 131119.00000 2.622380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.622380e+05 2.622380e+05 0.00 NULL
2024 Dept. Of Design & Construction Administrative Landscape Architect 144972.33333 4.349170e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.349170e+05 4.349170e+05 0.00 NULL
2024 Dept. Of Design & Construction Administrative Management Auditor 124080.00000 2.481600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.481600e+05 2.481600e+05 0.00 NULL
2024 Dept. Of Design & Construction Administrative Manager 219528.50000 4.390570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.390570e+05 4.390570e+05 0.00 NULL
2024 Dept. Of Design & Construction Administrative Procurement Analyst-Non-Mgrl 101823.29412 1.730996e+06 123.90 7.288235e+00 0.000 3.00 17 0.000000e+00 0.00 1.731120e+06 1.730996e+06 123.90 NULL
2024 Dept. Of Design & Construction Administrative Project Manager 131815.88996 1.792696e+07 272088.13 2.000648e+03 0.000 3894.50 136 0.000000e+00 0.00 1.819905e+07 1.792696e+07 272088.13 NULL
2024 Dept. Of Design & Construction Administrative Public Information Specialist 184418.00000 1.844180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.844180e+05 1.844180e+05 0.00 NULL
2024 Dept. Of Design & Construction Administrative Staff Analyst 126072.44654 4.286463e+06 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 4.286463e+06 4.286463e+06 0.00 NULL
2024 Dept. Of Design & Construction Administrative Supervisor Of Building Maintenance 102788.00000 1.027880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.027880e+05 1.027880e+05 0.00 NULL
2024 Dept. Of Design & Construction Agency Attorney 97710.00000 8.793900e+05 344.66 3.829556e+01 0.000 0.00 9 0.000000e+00 0.00 8.797347e+05 8.793900e+05 344.66 NULL
2024 Dept. Of Design & Construction Agency Attorney Interne 74513.00000 3.725650e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.725650e+05 3.725650e+05 0.00 NULL
2024 Dept. Of Design & Construction Agency Chief Contracting Officer 167578.00000 3.351560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.351560e+05 3.351560e+05 0.00 NULL
2024 Dept. Of Design & Construction Architect 115729.72727 1.273027e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.273027e+06 1.273027e+06 0.00 NULL
2024 Dept. Of Design & Construction Asbestos Handler 80431.00000 1.608620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.608620e+05 1.608620e+05 0.00 NULL
2024 Dept. Of Design & Construction Ass Commissioner Design And Construction Management 180353.00000 1.803530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.803530e+05 1.803530e+05 0.00 NULL
2024 Dept. Of Design & Construction Assistant Architect 91571.00000 2.747130e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.747130e+05 2.747130e+05 0.00 NULL
2024 Dept. Of Design & Construction Assistant Civil Engineer 77003.67890 8.393401e+06 123366.42 1.131802e+03 0.000 2659.50 109 0.000000e+00 0.00 8.516767e+06 8.393401e+06 123366.42 NULL
2024 Dept. Of Design & Construction Assistant Commissioner Of Information Technology 168506.00000 1.685060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.685060e+05 1.685060e+05 0.00 NULL
2024 Dept. Of Design & Construction Assistant Electrical Engineer 87779.50000 1.755590e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.755590e+05 1.755590e+05 0.00 NULL
2024 Dept. Of Design & Construction Assistant Environmental Engineer 83969.00000 8.396900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.396900e+04 8.396900e+04 0.00 NULL
2024 Dept. Of Design & Construction Assistant Landscape Architect 78426.50000 1.568530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.568530e+05 1.568530e+05 0.00 NULL
2024 Dept. Of Design & Construction Assistant Mechanical Engineer 89352.00000 1.787040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.787040e+05 1.787040e+05 0.00 NULL
2024 Dept. Of Design & Construction Assistant Urban Designer 76332.00000 1.526640e+05 1642.75 8.213750e+02 821.375 39.25 2 8.213750e+02 1642.75 1.543068e+05 1.543068e+05 0.00 NULL
2024 Dept. Of Design & Construction Associate Investigator 79468.50000 4.768110e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.768110e+05 4.768110e+05 0.00 NULL
2024 Dept. Of Design & Construction Associate Project Manager 103416.61111 7.445996e+06 174280.67 2.420565e+03 0.000 2700.25 72 0.000000e+00 0.00 7.620277e+06 7.445996e+06 174280.67 NULL
2024 Dept. Of Design & Construction Associate Public Health Sanitarian 107572.00000 1.075720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.075720e+05 1.075720e+05 0.00 NULL
2024 Dept. Of Design & Construction Associate Public Information Specialist 63422.00000 6.342200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.342200e+04 6.342200e+04 0.00 NULL
2024 Dept. Of Design & Construction Associate Staff Analyst 95204.33333 1.142452e+06 2021.70 1.684750e+02 0.000 19.00 12 0.000000e+00 0.00 1.144474e+06 1.142452e+06 2021.70 NULL
2024 Dept. Of Design & Construction Associate Urban Designer 103462.40000 5.173120e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.173120e+05 5.173120e+05 0.00 NULL
2024 Dept. Of Design & Construction Certified It Administrator 126851.00000 5.074040e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.074040e+05 5.074040e+05 0.00 NULL
2024 Dept. Of Design & Construction Certified It Developer 115664.60000 5.783230e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.783230e+05 5.783230e+05 0.00 NULL
2024 Dept. Of Design & Construction Chief Of Staff To First Deputy Commissioner 154932.00000 1.549320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.549320e+05 1.549320e+05 0.00 NULL
2024 Dept. Of Design & Construction City Planner 104448.33333 3.133450e+05 626.36 2.087867e+02 0.000 2.50 3 0.000000e+00 0.00 3.139714e+05 3.133450e+05 626.36 NULL
2024 Dept. Of Design & Construction City Research Scientist 84379.66667 2.531390e+05 73.61 2.453667e+01 0.000 1.75 3 0.000000e+00 0.00 2.532126e+05 2.531390e+05 73.61 NULL
2024 Dept. Of Design & Construction Civil Engineer 106906.78261 2.458856e+06 34581.92 1.503562e+03 0.000 523.00 23 0.000000e+00 0.00 2.493438e+06 2.458856e+06 34581.92 NULL
2024 Dept. Of Design & Construction Civil Engineering Intern 66600.08696 1.531802e+06 16390.00 7.126087e+02 0.000 394.75 23 0.000000e+00 0.00 1.548192e+06 1.531802e+06 16390.00 NULL
2024 Dept. Of Design & Construction Claim Specialist 63837.00000 1.915110e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.915110e+05 1.915110e+05 0.00 NULL
2024 Dept. Of Design & Construction Clerical Associate 61932.41176 1.052851e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.052851e+06 1.052851e+06 0.00 NULL
2024 Dept. Of Design & Construction College Aide 11012.48364 1.211373e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.211373e+05 1.211373e+05 0.00 NULL
2024 Dept. Of Design & Construction College Aide - Assignment Levels Ii And Iii 630.36000 6.303600e+02 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.303600e+02 6.303600e+02 0.00 NULL
2024 Dept. Of Design & Construction Commissioner Of Design & Construction 277605.00000 2.776050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.776050e+05 2.776050e+05 0.00 NULL
2024 Dept. Of Design & Construction Community Assistant 42092.00000 4.209200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.209200e+04 4.209200e+04 0.00 NULL
2024 Dept. Of Design & Construction Community Associate 56066.92308 7.288700e+05 934.74 7.190308e+01 0.000 31.25 13 0.000000e+00 0.00 7.298047e+05 7.288700e+05 934.74 NULL
2024 Dept. Of Design & Construction Community Coordinator 74272.71622 5.496181e+06 21328.56 2.882238e+02 0.000 424.75 74 0.000000e+00 0.00 5.517510e+06 5.496181e+06 21328.56 NULL
2024 Dept. Of Design & Construction Computer Associate 97052.00000 2.911560e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.911560e+05 2.911560e+05 0.00 NULL
2024 Dept. Of Design & Construction Computer Programmer Analyst 34790.97000 3.479097e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.479097e+04 3.479097e+04 0.00 NULL
2024 Dept. Of Design & Construction Computer Service Technician 74158.00000 7.415800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.415800e+04 7.415800e+04 0.00 NULL
2024 Dept. Of Design & Construction Computer Specialist 114519.10000 2.290382e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 2.290382e+06 2.290382e+06 0.00 NULL
2024 Dept. Of Design & Construction Computer Systems Manager 153635.20000 7.681760e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.681760e+05 7.681760e+05 0.00 NULL
2024 Dept. Of Design & Construction Construction Project Manager 95369.48498 1.029990e+07 304751.63 2.821774e+03 0.000 4659.00 108 0.000000e+00 0.00 1.060466e+07 1.029990e+07 304751.63 NULL
2024 Dept. Of Design & Construction Deputy Commissioner 236722.00000 2.367220e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.367220e+05 2.367220e+05 0.00 NULL
2024 Dept. Of Design & Construction Deputy Commissioner For Policy And Analysis 200140.00000 2.001400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.001400e+05 2.001400e+05 0.00 NULL
2024 Dept. Of Design & Construction Electrical Engineer 97780.00000 9.778000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.778000e+04 9.778000e+04 0.00 NULL
2024 Dept. Of Design & Construction Engineering Technician 73550.50000 1.176808e+06 13037.68 8.148550e+02 0.000 291.25 16 0.000000e+00 0.00 1.189846e+06 1.176808e+06 13037.68 NULL
2024 Dept. Of Design & Construction Estimator 96103.12500 7.688250e+05 12169.51 1.521189e+03 0.000 236.50 8 0.000000e+00 0.00 7.809945e+05 7.688250e+05 12169.51 NULL
2024 Dept. Of Design & Construction Executive Agency Counsel 200324.87500 1.602599e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.602599e+06 1.602599e+06 0.00 NULL
2024 Dept. Of Design & Construction Executive Program Specialist 174502.20000 8.725110e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.725110e+05 8.725110e+05 0.00 NULL
2024 Dept. Of Design & Construction First Deputy Commissioner 264852.00000 2.648520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.648520e+05 2.648520e+05 0.00 NULL
2024 Dept. Of Design & Construction Geologist 88373.00000 3.534920e+05 259.92 6.498000e+01 0.000 6.00 4 0.000000e+00 0.00 3.537519e+05 3.534920e+05 259.92 NULL
2024 Dept. Of Design & Construction Graphic Artist 95115.25000 3.804610e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.804610e+05 3.804610e+05 0.00 NULL
2024 Dept. Of Design & Construction High School Student Aide 7792.08000 1.558416e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.558416e+04 1.558416e+04 0.00 NULL
2024 Dept. Of Design & Construction Highways And Sewers Inspector 65490.50000 1.309810e+05 12883.30 6.441650e+03 6441.650 263.00 2 6.441650e+03 12883.30 1.438643e+05 1.438643e+05 0.00 NULL
2024 Dept. Of Design & Construction Industrial Hygienist 70143.33333 2.104300e+05 28.34 9.446667e+00 0.000 1.00 3 0.000000e+00 0.00 2.104583e+05 2.104300e+05 28.34 NULL
2024 Dept. Of Design & Construction Investigator 55545.40000 2.777270e+05 1827.59 3.655180e+02 0.000 45.00 5 0.000000e+00 0.00 2.795546e+05 2.777270e+05 1827.59 NULL
2024 Dept. Of Design & Construction It Automation And Monitoring Engineer 121866.00000 3.655980e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.655980e+05 3.655980e+05 0.00 NULL
2024 Dept. Of Design & Construction It Project Specialist 102898.66667 9.260880e+05 126.85 1.409444e+01 0.000 2.50 9 0.000000e+00 0.00 9.262148e+05 9.260880e+05 126.85 NULL
2024 Dept. Of Design & Construction It Service Management Specialist 83781.33333 2.513440e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.513440e+05 2.513440e+05 0.00 NULL
2024 Dept. Of Design & Construction Landscape Architect 111708.50000 4.468340e+05 26430.64 6.607660e+03 0.000 343.50 4 0.000000e+00 0.00 4.732646e+05 4.468340e+05 26430.64 NULL
2024 Dept. Of Design & Construction Management Auditor 92685.00000 3.707400e+05 7369.67 1.842418e+03 0.000 104.00 4 0.000000e+00 0.00 3.781097e+05 3.707400e+05 7369.67 NULL
2024 Dept. Of Design & Construction Mechanical Engineer 122466.00000 2.449320e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.449320e+05 2.449320e+05 0.00 NULL
2024 Dept. Of Design & Construction Mechanical Engineering Intern 70075.00000 7.007500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.007500e+04 7.007500e+04 0.00 NULL
2024 Dept. Of Design & Construction Motor Vehicle Operator 55233.00000 5.523300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.523300e+04 5.523300e+04 0.00 NULL
2024 Dept. Of Design & Construction Motor Vehicle Supervisor 67742.00000 1.354840e+05 8893.03 4.446515e+03 4446.515 182.25 2 4.446515e+03 8893.03 1.443770e+05 1.443770e+05 0.00 NULL
2024 Dept. Of Design & Construction New York City Public Service Fellow 46862.00000 4.686200e+04 379.75 3.797500e+02 379.750 15.25 1 3.797500e+02 379.75 4.724175e+04 4.724175e+04 0.00 NULL
2024 Dept. Of Design & Construction Principal Administrative Associate - Non Supvr 76713.04444 3.452087e+06 28225.23 6.272273e+02 0.000 503.00 45 0.000000e+00 0.00 3.480312e+06 3.452087e+06 28225.23 NULL
2024 Dept. Of Design & Construction Principal Title Examiner 82750.00000 1.655000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.655000e+05 1.655000e+05 0.00 NULL
2024 Dept. Of Design & Construction Procurement Analyst 73957.40000 1.109361e+06 791.11 5.274067e+01 0.000 15.00 15 0.000000e+00 0.00 1.110152e+06 1.109361e+06 791.11 NULL
2024 Dept. Of Design & Construction Program Producer 102118.00000 1.021180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.021180e+05 1.021180e+05 0.00 NULL
2024 Dept. Of Design & Construction Project Manager 78699.57576 2.597086e+06 46502.91 1.409179e+03 0.000 846.75 33 0.000000e+00 0.00 2.643589e+06 2.597086e+06 46502.91 NULL
2024 Dept. Of Design & Construction Project Manager Intern# 65827.76190 2.764766e+06 1736.60 4.134762e+01 0.000 45.25 42 0.000000e+00 0.00 2.766503e+06 2.764766e+06 1736.60 NULL
2024 Dept. Of Design & Construction Public Records Aide 50047.40000 2.502370e+05 36.24 7.248000e+00 0.000 1.50 5 0.000000e+00 0.00 2.502732e+05 2.502370e+05 36.24 NULL
2024 Dept. Of Design & Construction Quality Assurance Specialist 73653.00000 7.365300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.365300e+04 7.365300e+04 0.00 NULL
2024 Dept. Of Design & Construction Secretary 63706.75000 2.548270e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.548270e+05 2.548270e+05 0.00 NULL
2024 Dept. Of Design & Construction Senior It Architect 121373.28571 8.496130e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.496130e+05 8.496130e+05 0.00 NULL
2024 Dept. Of Design & Construction Senior Policy Advisor 99821.00000 9.982100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.982100e+04 9.982100e+04 0.00 NULL
2024 Dept. Of Design & Construction Space Analyst 87701.00000 8.770100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.770100e+04 8.770100e+04 0.00 NULL
2024 Dept. Of Design & Construction Special Assistant 154118.00000 1.541180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.541180e+05 1.541180e+05 0.00 NULL
2024 Dept. Of Design & Construction Special Assistant To The Commissioner 154115.00000 1.541150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.541150e+05 1.541150e+05 0.00 NULL
2024 Dept. Of Design & Construction Staff Analyst 77906.83333 3.272087e+06 42784.64 1.018682e+03 0.000 822.00 42 0.000000e+00 0.00 3.314872e+06 3.272087e+06 42784.64 NULL
2024 Dept. Of Design & Construction Staff Analyst Trainee 46059.00000 4.605900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.605900e+04 4.605900e+04 0.00 NULL
2024 Dept. Of Design & Construction Stock Worker 49687.00000 9.937400e+04 26.15 1.307500e+01 13.075 1.00 2 1.307500e+01 26.15 9.940015e+04 9.940015e+04 0.00 NULL
2024 Dept. Of Design & Construction Summer College Intern 2622.85795 1.154058e+05 0.00 0.000000e+00 0.000 0.00 44 0.000000e+00 0.00 1.154058e+05 1.154058e+05 0.00 NULL
2024 Dept. Of Design & Construction Summer Graduate Intern 4206.20588 7.150550e+04 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 7.150550e+04 7.150550e+04 0.00 NULL
2024 Dept. Of Design & Construction Supervising Special Officer 84010.00000 8.401000e+04 234.44 2.344400e+02 234.440 3.75 1 2.344400e+02 234.44 8.424444e+04 8.424444e+04 0.00 NULL
2024 Dept. Of Design & Construction Supervisor Of Electrical Installations & Maintenance 103551.00000 1.035510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.035510e+05 1.035510e+05 0.00 NULL
2024 Dept. Of Design & Construction Supervisor Of Stock Workers 82342.00000 8.234200e+04 3130.05 3.130050e+03 3130.050 67.00 1 3.130050e+03 3130.05 8.547205e+04 8.547205e+04 0.00 NULL
2024 Dept. Of Design & Construction Surveyor 87383.62791 3.757496e+06 11366.67 2.643412e+02 0.000 209.00 43 0.000000e+00 0.00 3.768863e+06 3.757496e+06 11366.67 NULL
2024 Dept. Of Design & Construction Transportation Specialist 103737.50000 2.074750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.074750e+05 2.074750e+05 0.00 NULL
2024 Dept. Of Homeless Services Adm Manager-Non-Mgrl 82469.35294 1.401979e+06 156106.18 9.182716e+03 2664.890 2565.25 17 2.664890e+03 45303.13 1.558085e+06 1.447282e+06 110803.05 NULL
2024 Dept. Of Homeless Services Admin Community Relations Specialist 86493.91837 4.238202e+06 810068.95 1.653202e+04 12725.310 13054.75 49 1.272531e+04 623540.19 5.048271e+06 4.861742e+06 186528.76 NULL
2024 Dept. Of Homeless Services Admin Construction Project Manager 95481.00000 9.548100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.548100e+04 9.548100e+04 0.00 NULL
2024 Dept. Of Homeless Services Admin Job Opor Spec-Managerial 174064.00000 1.740640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.740640e+05 1.740640e+05 0.00 NULL
2024 Dept. Of Homeless Services Admin Job Opportunity Spec Nm 101917.00000 4.076680e+05 8167.11 2.041777e+03 1888.390 133.00 4 1.888390e+03 7553.56 4.158351e+05 4.152216e+05 613.55 NULL
2024 Dept. Of Homeless Services Administrative Construction Project Manager 150141.00000 1.501410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.501410e+05 1.501410e+05 0.00 NULL
2024 Dept. Of Homeless Services Administrative Contract Specialist 101961.28000 2.039226e+05 45002.39 2.250119e+04 22501.195 520.00 2 2.250119e+04 45002.39 2.489250e+05 2.489250e+05 0.00 NULL
2024 Dept. Of Homeless Services Administrative Director Of Social Services 131946.07471 2.295862e+07 661473.06 3.801569e+03 0.000 10507.50 174 0.000000e+00 0.00 2.362009e+07 2.295862e+07 661473.06 NULL
2024 Dept. Of Homeless Services Administrative Engineer 110210.00000 1.102100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.102100e+05 1.102100e+05 0.00 NULL
2024 Dept. Of Homeless Services Administrative Housing Development Specialist 134760.50000 5.390420e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.390420e+05 5.390420e+05 0.00 NULL
2024 Dept. Of Homeless Services Administrative Nutritionist 108815.00000 1.088150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.088150e+05 1.088150e+05 0.00 NULL
2024 Dept. Of Homeless Services Administrative Public Information Specialist Nm Former M1/M2 107421.00000 1.074210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074210e+05 1.074210e+05 0.00 NULL
2024 Dept. Of Homeless Services Administrative Staff Analyst 104189.49826 8.543539e+06 385364.06 4.699562e+03 0.000 5169.00 82 0.000000e+00 0.00 8.928903e+06 8.543539e+06 385364.06 NULL
2024 Dept. Of Homeless Services Administrative Storekeeper 90270.00000 9.027000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.027000e+04 9.027000e+04 0.00 NULL
2024 Dept. Of Homeless Services Administrative Supervisor Of Building Maintenance 139681.66667 1.676180e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.676180e+06 1.676180e+06 0.00 NULL
2024 Dept. Of Homeless Services Agency Medical Director 247014.00000 2.470140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.470140e+05 2.470140e+05 0.00 NULL
2024 Dept. Of Homeless Services Architect 104267.00000 1.042670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.042670e+05 1.042670e+05 0.00 NULL
2024 Dept. Of Homeless Services Assistant Comissioner For Family Operations 177034.00000 1.770340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.770340e+05 1.770340e+05 0.00 NULL
2024 Dept. Of Homeless Services Assistant Commissioner 149350.00000 1.493500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.493500e+05 1.493500e+05 0.00 NULL
2024 Dept. Of Homeless Services Assistant Deputy Commissioner Ss 188328.00000 3.766560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.766560e+05 3.766560e+05 0.00 NULL
2024 Dept. Of Homeless Services Assistant Superintendent Of Welfare Shelters 77641.88679 4.115020e+06 1573461.21 2.968795e+04 19687.950 27344.50 53 1.968795e+04 1043461.35 5.688481e+06 5.158481e+06 529999.86 NULL
2024 Dept. Of Homeless Services Associate Commissioner For Adult Services 187911.00000 1.879110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.879110e+05 1.879110e+05 0.00 NULL
2024 Dept. Of Homeless Services Associate Contract Specialist 72287.66667 4.337260e+05 65295.32 1.088255e+04 268.205 1042.00 6 2.682050e+02 1609.23 4.990213e+05 4.353352e+05 63686.09 NULL
2024 Dept. Of Homeless Services Associate Fraud Investigator 80246.35938 5.135767e+06 2023668.88 3.161983e+04 24968.530 32877.00 64 2.496853e+04 1597985.92 7.159436e+06 6.733753e+06 425682.96 NULL
2024 Dept. Of Homeless Services Associate Housing Development Specialist 96621.00000 3.864840e+05 19432.38 4.858095e+03 3787.055 338.00 4 3.787055e+03 15148.22 4.059164e+05 4.016322e+05 4284.16 NULL
2024 Dept. Of Homeless Services Associate Project Manager 102343.37500 8.187470e+05 8904.18 1.113023e+03 0.000 102.00 8 0.000000e+00 0.00 8.276512e+05 8.187470e+05 8904.18 NULL
2024 Dept. Of Homeless Services Associate Public Records Officer 61358.00000 6.135800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.135800e+04 6.135800e+04 0.00 NULL
2024 Dept. Of Homeless Services Associate Staff Analyst 88064.92157 4.491311e+06 303459.65 5.950189e+03 0.000 4385.00 51 0.000000e+00 0.00 4.794771e+06 4.491311e+06 303459.65 NULL
2024 Dept. Of Homeless Services Asst Commissioner For Planning & Program Dev 174064.00000 1.740640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.740640e+05 1.740640e+05 0.00 NULL
2024 Dept. Of Homeless Services Carpenter NA NA 361437.90 1.902305e+04 17875.690 4118.25 19 1.787569e+04 339638.11 NA NA NA NULL
2024 Dept. Of Homeless Services Caseworker 50538.30189 5.357060e+06 361147.11 3.407048e+03 487.515 9881.75 106 4.875150e+02 51676.59 5.718207e+06 5.408737e+06 309470.52 NULL
2024 Dept. Of Homeless Services Cement Mason NA NA 217395.93 4.347919e+04 33974.030 1799.00 5 3.397403e+04 169870.15 NA NA NA NULL
2024 Dept. Of Homeless Services City Laborer NA NA 790864.78 4.393693e+04 38537.605 13424.00 18 3.853761e+04 693676.89 NA NA NA NULL
2024 Dept. Of Homeless Services City Research Scientist 91147.35294 1.549505e+06 2489.30 1.464294e+02 0.000 36.50 17 0.000000e+00 0.00 1.551994e+06 1.549505e+06 2489.30 NULL
2024 Dept. Of Homeless Services Clerical Associate 48686.00000 1.022406e+06 182366.18 8.684104e+03 943.680 4477.50 21 9.436800e+02 19817.28 1.204772e+06 1.042223e+06 162548.90 NULL
2024 Dept. Of Homeless Services Community Assistant 41626.92435 4.745469e+06 1116248.42 9.791653e+03 2913.480 35672.09 114 2.913480e+03 332136.72 5.861718e+06 5.077606e+06 784111.70 NULL
2024 Dept. Of Homeless Services Community Associate NA NA 908910.91 8.910891e+03 1386.630 25033.07 102 1.386630e+03 141436.26 NA NA NA NULL
2024 Dept. Of Homeless Services Community Coordinator 69188.47344 2.435434e+07 4809129.93 1.366230e+04 5433.225 96754.45 352 5.433225e+03 1912495.20 2.916347e+07 2.626684e+07 2896634.73 NULL
2024 Dept. Of Homeless Services Computer Specialist 106071.00000 1.060710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.060710e+05 1.060710e+05 0.00 NULL
2024 Dept. Of Homeless Services Computer Systems Manager 209093.00000 2.090930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.090930e+05 2.090930e+05 0.00 NULL
2024 Dept. Of Homeless Services Construction Project Manager 97184.20000 4.859210e+05 15516.98 3.103396e+03 0.000 205.50 5 0.000000e+00 0.00 5.014380e+05 4.859210e+05 15516.98 NULL
2024 Dept. Of Homeless Services Counselor 60683.00000 1.820490e+05 2551.99 8.506633e+02 29.570 67.25 3 2.957000e+01 88.71 1.846010e+05 1.821377e+05 2463.28 NULL
2024 Dept. Of Homeless Services Deputy Commisioner 208455.50000 8.338220e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.338220e+05 8.338220e+05 0.00 NULL
2024 Dept. Of Homeless Services Electrician NA NA 256415.05 2.331046e+04 29128.160 2626.50 11 2.331046e+04 256415.05 NA NA NA NULL
2024 Dept. Of Homeless Services Exec Asst To The Deputy Commissioner 115467.00000 1.154670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.154670e+05 1.154670e+05 0.00 NULL
2024 Dept. Of Homeless Services Executive Agency Counsel 202592.00000 2.025920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.025920e+05 2.025920e+05 0.00 NULL
2024 Dept. Of Homeless Services Executive Assistant To The Commissioner 151929.00000 3.038580e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.038580e+05 3.038580e+05 0.00 NULL
2024 Dept. Of Homeless Services Executive Program Specialist 174064.00000 1.740640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.740640e+05 1.740640e+05 0.00 NULL
2024 Dept. Of Homeless Services Fraud Investigator 60354.60256 4.707659e+06 2001442.30 2.565952e+04 17928.065 40879.00 78 1.792806e+04 1398389.07 6.709101e+06 6.106048e+06 603053.23 NULL
2024 Dept. Of Homeless Services Homemaker 50202.50000 1.004050e+05 5618.88 2.809440e+03 2809.440 165.25 2 2.809440e+03 5618.88 1.060239e+05 1.060239e+05 0.00 NULL
2024 Dept. Of Homeless Services Housekeeper 46270.00000 1.388100e+05 126025.17 4.200839e+04 24884.680 3385.50 3 2.488468e+04 74654.04 2.648352e+05 2.134640e+05 51371.13 NULL
2024 Dept. Of Homeless Services Housing Development Specialist 69231.00000 2.076930e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.076930e+05 2.076930e+05 0.00 NULL
2024 Dept. Of Homeless Services Human Resources Technician 44049.00000 4.404900e+04 101.28 1.012800e+02 101.280 4.25 1 1.012800e+02 101.28 4.415028e+04 4.415028e+04 0.00 NULL
2024 Dept. Of Homeless Services Inspector 65733.00000 3.286650e+05 103176.54 2.063531e+04 8339.710 2165.75 5 8.339710e+03 41698.55 4.318415e+05 3.703635e+05 61477.99 NULL
2024 Dept. Of Homeless Services Locksmith NA NA 2860.36 1.430180e+03 1430.180 67.50 2 1.430180e+03 2860.36 NA NA NA NULL
2024 Dept. Of Homeless Services Maintenance Worker NA NA 190628.47 1.270856e+04 6960.240 3561.00 15 6.960240e+03 104403.60 NA NA NA NULL
2024 Dept. Of Homeless Services Motor Vehicle Operator 55466.24000 1.386656e+06 296257.64 1.185031e+04 2364.930 7204.26 25 2.364930e+03 59123.25 1.682914e+06 1.445779e+06 237134.39 NULL
2024 Dept. Of Homeless Services Motor Vehicle Supervisor 65325.00000 4.572750e+05 125100.58 1.787151e+04 9832.380 2720.00 7 9.832380e+03 68826.66 5.823756e+05 5.261017e+05 56273.92 NULL
2024 Dept. Of Homeless Services Oiler NA NA 373769.09 3.114742e+04 26754.250 3401.25 12 2.675425e+04 321051.00 NA NA NA NULL
2024 Dept. Of Homeless Services Painter NA NA 63229.94 1.580749e+04 17324.485 795.50 4 1.580749e+04 63229.94 NA NA NA NULL
2024 Dept. Of Homeless Services Plumber NA NA 289387.73 2.226059e+04 14418.870 2345.50 13 1.441887e+04 187445.31 NA NA NA NULL
2024 Dept. Of Homeless Services Plumber’s Helper NA NA 31098.62 1.554931e+04 15549.310 355.00 2 1.554931e+04 31098.62 NA NA NA NULL
2024 Dept. Of Homeless Services Principal Administrative Associate - Non Supvr 69271.95455 1.523983e+06 310398.69 1.410903e+04 3533.495 5424.25 22 3.533495e+03 77736.89 1.834382e+06 1.601720e+06 232661.80 NULL
2024 Dept. Of Homeless Services Procurement Analyst 66623.66667 1.998710e+05 4185.22 1.395073e+03 0.000 101.00 3 0.000000e+00 0.00 2.040562e+05 1.998710e+05 4185.22 NULL
2024 Dept. Of Homeless Services Recreation Director 53922.00000 5.392200e+04 28399.45 2.839945e+04 28399.450 708.50 1 2.839945e+04 28399.45 8.232145e+04 8.232145e+04 0.00 NULL
2024 Dept. Of Homeless Services Recreation Supervisor 64839.00000 6.483900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.483900e+04 6.483900e+04 0.00 NULL
2024 Dept. Of Homeless Services Research Assistant 65139.00000 6.513900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.513900e+04 6.513900e+04 0.00 NULL
2024 Dept. Of Homeless Services Secretary To The Commissioner 83430.00000 8.343000e+04 22188.76 2.218876e+04 22188.760 422.50 1 2.218876e+04 22188.76 1.056188e+05 1.056188e+05 0.00 NULL
2024 Dept. Of Homeless Services Senior Consultant 93246.10070 2.797383e+05 13887.53 4.629177e+03 6107.880 239.25 3 4.629177e+03 13887.53 2.936258e+05 2.936258e+05 0.00 NULL
2024 Dept. Of Homeless Services Senior Stationary Engineer NA NA 88951.24 8.895124e+04 88951.240 702.00 1 8.895124e+04 88951.24 NA NA NA NULL
2024 Dept. Of Homeless Services Sheet Metal Worker NA NA 24881.18 1.244059e+04 12440.590 178.00 2 1.244059e+04 24881.18 NA NA NA NULL
2024 Dept. Of Homeless Services Social Worker 69723.16667 4.183390e+05 62200.00 1.036667e+04 4446.275 1283.75 6 4.446275e+03 26677.65 4.805390e+05 4.450167e+05 35522.35 NULL
2024 Dept. Of Homeless Services Space Analyst 76872.66667 9.224720e+05 132867.65 1.107230e+04 580.555 2385.00 12 5.805550e+02 6966.66 1.055340e+06 9.294387e+05 125900.99 NULL
2024 Dept. Of Homeless Services Special Officer 44759.50874 2.305115e+07 5402683.18 1.049065e+04 4974.320 149048.00 515 4.974320e+03 2561774.80 2.845383e+07 2.561292e+07 2840908.38 NULL
2024 Dept. Of Homeless Services Staff Analyst 75755.52381 1.590866e+06 111722.56 5.320122e+03 0.000 1999.00 21 0.000000e+00 0.00 1.702589e+06 1.590866e+06 111722.56 NULL
2024 Dept. Of Homeless Services Stationary Engineer NA NA 40.86 4.086000e+01 40.860 0.00 1 4.086000e+01 40.86 NA NA NA NULL
2024 Dept. Of Homeless Services Stock Worker 38996.50000 2.339790e+05 20318.65 3.386442e+03 305.875 655.25 6 3.058750e+02 1835.25 2.542976e+05 2.358142e+05 18483.40 NULL
2024 Dept. Of Homeless Services Superintendent Of Adult Institutions 86276.58333 1.035319e+06 370181.64 3.084847e+04 29301.040 6046.25 12 2.930104e+04 351612.48 1.405501e+06 1.386931e+06 18569.16 NULL
2024 Dept. Of Homeless Services Supervising Special Officer 62203.55970 8.335277e+06 2707812.35 2.020755e+04 17577.290 59745.73 134 1.757729e+04 2355356.86 1.104309e+07 1.069063e+07 352455.49 NULL
2024 Dept. Of Homeless Services Supervisor Bricklayer NA NA 37526.20 3.752620e+04 37526.200 368.50 1 3.752620e+04 37526.20 NA NA NA NULL
2024 Dept. Of Homeless Services Supervisor Carpenter NA NA 88696.50 1.773930e+04 22601.590 975.00 5 1.773930e+04 88696.50 NA NA NA NULL
2024 Dept. Of Homeless Services Supervisor Electrician NA NA 131630.76 4.387692e+04 47056.270 1250.00 3 4.387692e+04 131630.76 NA NA NA NULL
2024 Dept. Of Homeless Services Supervisor I 66857.73077 1.738301e+06 233057.71 8.963758e+03 3969.810 4772.50 26 3.969810e+03 103215.06 1.971359e+06 1.841516e+06 129842.65 NULL
2024 Dept. Of Homeless Services Supervisor I Social Work 73577.00000 7.357700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.357700e+04 7.357700e+04 0.00 NULL
2024 Dept. Of Homeless Services Supervisor Ii 78258.00000 6.260640e+05 165139.10 2.064239e+04 22398.140 2864.25 8 2.064239e+04 165139.10 7.912031e+05 7.912031e+05 0.00 NULL
2024 Dept. Of Homeless Services Supervisor Ii Social Work 85770.27273 9.434730e+05 146092.70 1.328115e+04 9592.710 2477.00 11 9.592710e+03 105519.81 1.089566e+06 1.048993e+06 40572.89 NULL
2024 Dept. Of Homeless Services Supervisor Iii Social Work 91768.00000 9.176800e+04 20428.71 2.042871e+04 20428.710 286.75 1 2.042871e+04 20428.71 1.121967e+05 1.121967e+05 0.00 NULL
2024 Dept. Of Homeless Services Supervisor Of Mechanics NA NA 244223.73 8.140791e+04 89039.530 2153.00 3 8.140791e+04 244223.73 NA NA NA NULL
2024 Dept. Of Homeless Services Supervisor Of Stock Workers 67615.00000 6.761500e+04 5777.79 5.777790e+03 5777.790 123.00 1 5.777790e+03 5777.79 7.339279e+04 7.339279e+04 0.00 NULL
2024 Dept. Of Homeless Services Supervisor Painter NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2024 Dept. Of Homeless Services Supervisor Plumber NA NA 227408.11 4.548162e+04 47016.400 1802.00 5 4.548162e+04 227408.11 NA NA NA NULL
2024 District Attorney Kings County Accountant 85543.00000 8.554300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.554300e+04 8.554300e+04 0.00 NULL
2024 District Attorney Kings County Adm Manager-Non-Mgrl 96646.66667 8.698200e+05 6918.28 7.686978e+02 0.000 124.25 9 0.000000e+00 0.00 8.767383e+05 8.698200e+05 6918.28 NULL
2024 District Attorney Kings County Administrative Chief 174086.00000 3.481720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.481720e+05 3.481720e+05 0.00 NULL
2024 District Attorney Kings County Administrative Community Relations Specialist 138843.00000 2.776860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.776860e+05 2.776860e+05 0.00 NULL
2024 District Attorney Kings County Administrative Manager 150267.54000 3.005351e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.005351e+05 3.005351e+05 0.00 NULL
2024 District Attorney Kings County Administrative Procurement Analyst-Non-Mgrl 135656.00000 1.356560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.356560e+05 1.356560e+05 0.00 NULL
2024 District Attorney Kings County Administrative Staff Analyst 161550.66667 4.846520e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.846520e+05 4.846520e+05 0.00 NULL
2024 District Attorney Kings County Agency Chief Contracting Officer 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2024 District Attorney Kings County Assistant District Attorney 121579.30068 7.197495e+07 0.00 0.000000e+00 0.000 0.00 592 0.000000e+00 0.00 7.197495e+07 7.197495e+07 0.00 NULL
2024 District Attorney Kings County Bookkeeper 60101.00000 6.010100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.010100e+04 6.010100e+04 0.00 NULL
2024 District Attorney Kings County Certified It Developer 131427.00000 2.628540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.628540e+05 2.628540e+05 0.00 NULL
2024 District Attorney Kings County Chief Information Technology Officer 204950.00000 2.049500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.049500e+05 2.049500e+05 0.00 NULL
2024 District Attorney Kings County Chief Rackets Investigator 191111.00000 1.911110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.911110e+05 1.911110e+05 0.00 NULL
2024 District Attorney Kings County City Research Scientist 94707.88000 2.841236e+05 573.32 1.911067e+02 0.000 9.00 3 0.000000e+00 0.00 2.846970e+05 2.841236e+05 573.32 NULL
2024 District Attorney Kings County Clerical Associate 54786.58824 9.313720e+05 2744.63 1.614488e+02 0.000 68.25 17 0.000000e+00 0.00 9.341166e+05 9.313720e+05 2744.63 NULL
2024 District Attorney Kings County Community Assistant 41951.45656 4.530757e+06 118088.00 1.093407e+03 0.000 3985.50 108 0.000000e+00 0.00 4.648845e+06 4.530757e+06 118088.00 NULL
2024 District Attorney Kings County Community Associate 52942.68163 2.207710e+07 220441.51 5.286367e+02 0.000 5699.00 417 0.000000e+00 0.00 2.229754e+07 2.207710e+07 220441.51 NULL
2024 District Attorney Kings County Community Coordinator 80571.63606 1.119946e+07 137234.59 9.872992e+02 0.000 2527.75 139 0.000000e+00 0.00 1.133669e+07 1.119946e+07 137234.59 NULL
2024 District Attorney Kings County Computer Associate 84830.75000 3.393230e+05 17268.37 4.317092e+03 0.000 302.75 4 0.000000e+00 0.00 3.565914e+05 3.393230e+05 17268.37 NULL
2024 District Attorney Kings County Computer Specialist 134796.00000 5.391840e+05 610.60 1.526500e+02 0.000 7.50 4 0.000000e+00 0.00 5.397946e+05 5.391840e+05 610.60 NULL
2024 District Attorney Kings County Confidential Asst Office Of District Attorney, King County 130674.00000 1.306740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.306740e+05 1.306740e+05 0.00 NULL
2024 District Attorney Kings County Confidential Strategy Planner 117124.50000 7.027470e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.027470e+05 7.027470e+05 0.00 NULL
2024 District Attorney Kings County Director Of Crim Justice Data Share And Info Servs Kda 125664.00000 1.256640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.256640e+05 1.256640e+05 0.00 NULL
2024 District Attorney Kings County Director Of Crime Strategies And Analysis 120200.00000 1.202000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.202000e+05 1.202000e+05 0.00 NULL
2024 District Attorney Kings County Director Of Public Information 159650.00000 1.596500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.596500e+05 1.596500e+05 0.00 NULL
2024 District Attorney Kings County District Attorney 232600.00000 2.326000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.326000e+05 2.326000e+05 0.00 NULL
2024 District Attorney Kings County Executive Assistant 121262.22222 1.091360e+06 630.18 7.002000e+01 0.000 12.00 9 0.000000e+00 0.00 1.091990e+06 1.091360e+06 630.18 NULL
2024 District Attorney Kings County Executive Program Specialist 140282.00000 1.402820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.402820e+05 1.402820e+05 0.00 NULL
2024 District Attorney Kings County It Infrastructure Engineer 168826.00000 1.688260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.688260e+05 1.688260e+05 0.00 NULL
2024 District Attorney Kings County It Project Specialist 119721.00000 3.591630e+05 752.15 2.507167e+02 0.000 12.00 3 0.000000e+00 0.00 3.599152e+05 3.591630e+05 752.15 NULL
2024 District Attorney Kings County It Service Management Specialist 120200.00000 1.202000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.202000e+05 1.202000e+05 0.00 NULL
2024 District Attorney Kings County Media Services Technician 62732.81818 6.900610e+05 11787.54 1.071595e+03 625.380 239.75 11 6.253800e+02 6879.18 7.018485e+05 6.969402e+05 4908.36 NULL
2024 District Attorney Kings County Paralegal Aide 58720.83333 3.523250e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.523250e+05 3.523250e+05 0.00 NULL
2024 District Attorney Kings County Principal Accountant Investigator 150745.00000 1.507450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.507450e+05 1.507450e+05 0.00 NULL
2024 District Attorney Kings County Principal Administrative Associate - Non Supvr 79219.41667 9.506330e+05 13959.52 1.163293e+03 0.000 242.75 12 0.000000e+00 0.00 9.645925e+05 9.506330e+05 13959.52 NULL
2024 District Attorney Kings County Procurement Analyst 75998.00000 7.599800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.599800e+04 7.599800e+04 0.00 NULL
2024 District Attorney Kings County Reporter/ Stenographer 80105.20345 2.323051e+06 59.40 2.048276e+00 0.000 1.50 29 0.000000e+00 0.00 2.323110e+06 2.323051e+06 59.40 NULL
2024 District Attorney Kings County Secretary 59220.00000 1.776600e+05 340.52 1.135067e+02 0.000 9.00 3 0.000000e+00 0.00 1.780005e+05 1.776600e+05 340.52 NULL
2024 District Attorney Kings County Social Worker 72953.00000 7.295300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.295300e+04 7.295300e+04 0.00 NULL
2024 District Attorney Kings County Special Assistant To The District Attorney 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2024 District Attorney Kings County Special Officer 53264.00000 1.065280e+05 7394.36 3.697180e+03 3697.180 187.50 2 3.697180e+03 7394.36 1.139224e+05 1.139224e+05 0.00 NULL
2024 District Attorney Kings County Strategic Initiative Specialist 116730.00000 3.501900e+05 2689.27 8.964233e+02 0.000 44.00 3 0.000000e+00 0.00 3.528793e+05 3.501900e+05 2689.27 NULL
2024 District Attorney Kings County Summer College Intern 3748.37857 7.871595e+04 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 7.871595e+04 7.871595e+04 0.00 NULL
2024 District Attorney Kings County Supervising Accountant Investigator 119884.20000 5.994210e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.994210e+05 5.994210e+05 0.00 NULL
2024 District Attorney Qns County Adm Manager-Non-Mgrl 107322.69231 1.395195e+06 144025.34 1.107887e+04 12394.460 2080.50 13 1.107887e+04 144025.34 1.539220e+06 1.539220e+06 0.00 NULL
2024 District Attorney Qns County Administrative Accountant 95313.00000 9.531300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.531300e+04 9.531300e+04 0.00 NULL
2024 District Attorney Qns County Administrative Manager 168207.50000 3.364150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.364150e+05 3.364150e+05 0.00 NULL
2024 District Attorney Qns County Administrative Public Information Specialist 144361.00000 1.443610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.443610e+05 1.443610e+05 0.00 NULL
2024 District Attorney Qns County Administrative Staff Analyst 149357.00000 5.974280e+05 3284.85 8.212125e+02 0.000 53.75 4 0.000000e+00 0.00 6.007128e+05 5.974280e+05 3284.85 NULL
2024 District Attorney Qns County Agency Chief Contracting Officer 141250.00000 1.412500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.412500e+05 1.412500e+05 0.00 NULL
2024 District Attorney Qns County Assistant District Attorney 119567.42475 5.081616e+07 0.00 0.000000e+00 0.000 0.00 425 0.000000e+00 0.00 5.081616e+07 5.081616e+07 0.00 NULL
2024 District Attorney Qns County Associate Staff Analyst 88732.00000 8.873200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.873200e+04 8.873200e+04 0.00 NULL
2024 District Attorney Qns County Certified It Administrator 126669.75000 5.066790e+05 27270.92 6.817730e+03 3699.825 298.50 4 3.699825e+03 14799.30 5.339499e+05 5.214783e+05 12471.62 NULL
2024 District Attorney Qns County Certified It Developer 120045.00000 1.200450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.200450e+05 1.200450e+05 0.00 NULL
2024 District Attorney Qns County City Seasonal Aide 2133.88763 5.974885e+04 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 5.974885e+04 5.974885e+04 0.00 NULL
2024 District Attorney Qns County City Tax Auditor 94951.50000 3.798060e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.798060e+05 3.798060e+05 0.00 NULL
2024 District Attorney Qns County Clerical Associate 59608.94737 1.132570e+06 8295.00 4.365789e+02 0.000 232.25 19 0.000000e+00 0.00 1.140865e+06 1.132570e+06 8295.00 NULL
2024 District Attorney Qns County Community Assistant 43727.41280 1.792824e+06 49890.63 1.216845e+03 133.720 1799.75 41 1.337200e+02 5482.52 1.842715e+06 1.798306e+06 44408.11 NULL
2024 District Attorney Qns County Community Associate 53079.65706 1.098749e+07 259830.13 1.255218e+03 0.000 7299.50 207 0.000000e+00 0.00 1.124732e+07 1.098749e+07 259830.13 NULL
2024 District Attorney Qns County Community Coordinator 82989.26443 3.651528e+06 99478.62 2.260878e+03 0.000 1849.75 44 0.000000e+00 0.00 3.751006e+06 3.651528e+06 99478.62 NULL
2024 District Attorney Qns County Computer Specialist 120512.50000 2.410250e+05 27997.39 1.399869e+04 13998.695 322.25 2 1.399869e+04 27997.39 2.690224e+05 2.690224e+05 0.00 NULL
2024 District Attorney Qns County Computer Systems Manager 190186.25000 7.607450e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.607450e+05 7.607450e+05 0.00 NULL
2024 District Attorney Qns County Customer Information Representative Ma L 1549 62637.00000 6.263700e+04 9981.50 9.981500e+03 9981.500 246.50 1 9.981500e+03 9981.50 7.261850e+04 7.261850e+04 0.00 NULL
2024 District Attorney Qns County Director Of Alt Sentencing And Offender Re-Entry Progs Qn Da 166328.00000 1.663280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.663280e+05 1.663280e+05 0.00 NULL
2024 District Attorney Qns County Director Of Criminal Justice Planning And Policy Development 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2024 District Attorney Qns County Director Of Elder Abuse Program Services Qn Da 114447.00000 1.144470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.144470e+05 1.144470e+05 0.00 NULL
2024 District Attorney Qns County Director Of Invest Accounting And Econ Crimes Investigation 137200.00000 1.372000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.372000e+05 1.372000e+05 0.00 NULL
2024 District Attorney Qns County Director Of Public Information 197731.00000 3.954620e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.954620e+05 3.954620e+05 0.00 NULL
2024 District Attorney Qns County District Attorney 232600.00000 2.326000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.326000e+05 2.326000e+05 0.00 NULL
2024 District Attorney Qns County Executive Agency Counsel 184900.00000 1.849000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.849000e+05 1.849000e+05 0.00 NULL
2024 District Attorney Qns County It Security Specialist 128750.00000 1.287500e+05 9205.23 9.205230e+03 9205.230 112.75 1 9.205230e+03 9205.23 1.379552e+05 1.379552e+05 0.00 NULL
2024 District Attorney Qns County Paralegal Aide 60877.71429 1.704576e+06 83724.79 2.990171e+03 0.000 1970.50 28 0.000000e+00 0.00 1.788301e+06 1.704576e+06 83724.79 NULL
2024 District Attorney Qns County Principal Administrative Associate - Non Supvr 75668.08000 1.891702e+06 193515.12 7.740605e+03 1382.530 3607.75 25 1.382530e+03 34563.25 2.085217e+06 1.926265e+06 158951.87 NULL
2024 District Attorney Qns County Private Secretary 114220.50000 2.284410e+05 139.05 6.952500e+01 69.525 2.50 2 6.952500e+01 139.05 2.285800e+05 2.285800e+05 0.00 NULL
2024 District Attorney Qns County Reporter/ Stenographer 85707.00000 1.714140e+06 277960.66 1.389803e+04 5200.470 4257.50 20 5.200470e+03 104009.40 1.992101e+06 1.818149e+06 173951.26 NULL
2024 District Attorney Qns County Secretary 64298.00000 3.214900e+05 8805.23 1.761046e+03 0.000 259.75 5 0.000000e+00 0.00 3.302952e+05 3.214900e+05 8805.23 NULL
2024 District Attorney Qns County Special Assistant To Da 134523.45455 1.479758e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.479758e+06 1.479758e+06 0.00 NULL
2024 District Attorney Qns County Staff Analyst 63722.00000 6.372200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.372200e+04 6.372200e+04 0.00 NULL
2024 District Attorney Qns County Summer College Intern 13311.00000 1.331100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.331100e+04 1.331100e+04 0.00 NULL
2024 District Attorney Qns County Summer Graduate Intern 3002.44047 2.882343e+05 0.00 0.000000e+00 0.000 0.00 96 0.000000e+00 0.00 2.882343e+05 2.882343e+05 0.00 NULL
2024 District Attorney Qns County Supervising Accountant Investigator 80000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2024 District Attorney Richmond Cou Administrative Manager 135964.00000 1.359640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.359640e+05 1.359640e+05 0.00 NULL
2024 District Attorney Richmond Cou Administrative Procurement Analyst 130000.00000 1.300000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.300000e+05 1.300000e+05 0.00 NULL
2024 District Attorney Richmond Cou Administrative Procurement Analyst-Non-Mgrl 100191.00000 1.001910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.001910e+05 1.001910e+05 0.00 NULL
2024 District Attorney Richmond Cou Administrative Public Records Officer 156062.50000 3.121250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.121250e+05 3.121250e+05 0.00 NULL
2024 District Attorney Richmond Cou Assistant District Attorney 144017.96429 1.209751e+07 595.52 7.089524e+00 0.000 14.00 84 0.000000e+00 0.00 1.209810e+07 1.209751e+07 595.52 NULL
2024 District Attorney Richmond Cou Clerical Associate 92716.00000 2.781480e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.781480e+05 2.781480e+05 0.00 NULL
2024 District Attorney Richmond Cou Community Assistant 40652.49400 1.219575e+05 49.96 1.665333e+01 0.000 2.50 3 0.000000e+00 0.00 1.220074e+05 1.219575e+05 49.96 NULL
2024 District Attorney Richmond Cou Community Associate 64093.71304 7.370777e+06 31964.42 2.779515e+02 0.000 712.25 115 0.000000e+00 0.00 7.402741e+06 7.370777e+06 31964.42 NULL
2024 District Attorney Richmond Cou Community Coordinator 88640.28571 1.861446e+06 9331.31 4.443481e+02 0.000 170.75 21 0.000000e+00 0.00 1.870777e+06 1.861446e+06 9331.31 NULL
2024 District Attorney Richmond Cou Computer Programmer Analyst 91993.00000 9.199300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.199300e+04 9.199300e+04 0.00 NULL
2024 District Attorney Richmond Cou Computer Systems Manager 155568.00000 1.555680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.555680e+05 1.555680e+05 0.00 NULL
2024 District Attorney Richmond Cou District Attorney 232600.00000 2.326000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.326000e+05 2.326000e+05 0.00 NULL
2024 District Attorney Richmond Cou Paralegal Aide 94784.00000 9.478400e+04 523.07 5.230700e+02 523.070 10.00 1 5.230700e+02 523.07 9.530707e+04 9.530707e+04 0.00 NULL
2024 District Attorney Richmond Cou Reporter/ Stenographer 95917.60000 4.795880e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.795880e+05 4.795880e+05 0.00 NULL
2024 District Attorney Richmond Cou Social Worker 78634.00000 1.572680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.572680e+05 1.572680e+05 0.00 NULL
2024 District Attorney Richmond Cou Special Assistant To The District Attorney 150645.40000 7.532270e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.532270e+05 7.532270e+05 0.00 NULL
2024 District Attorney-Manhattan Admin Contract Specialist 171635.00000 3.432700e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.432700e+05 3.432700e+05 0.00 NULL
2024 District Attorney-Manhattan Administrative Chief 162303.25000 1.947639e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.947639e+06 1.947639e+06 0.00 NULL
2024 District Attorney-Manhattan Administrative Labor Relations Analyst 148521.50000 5.940860e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.940860e+05 5.940860e+05 0.00 NULL
2024 District Attorney-Manhattan Administrative Manager 119900.00000 1.199000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.199000e+05 1.199000e+05 0.00 NULL
2024 District Attorney-Manhattan Administrative Public Records Officer 164803.00000 1.648030e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.648030e+05 1.648030e+05 0.00 NULL
2024 District Attorney-Manhattan Administrative Staff Analyst 166862.33333 5.005870e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.005870e+05 5.005870e+05 0.00 NULL
2024 District Attorney-Manhattan Advisor For Gay, Lesbian, Transgender Issues 190192.00000 1.901920e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.901920e+05 1.901920e+05 0.00 NULL
2024 District Attorney-Manhattan Assistant District Attorney 128864.84361 7.860755e+07 0.00 0.000000e+00 0.000 0.00 610 0.000000e+00 0.00 7.860755e+07 7.860755e+07 0.00 NULL
2024 District Attorney-Manhattan Assistant Media Services Technican 71993.00000 7.199300e+04 16242.59 1.624259e+04 16242.590 325.75 1 1.624259e+04 16242.59 8.823559e+04 8.823559e+04 0.00 NULL
2024 District Attorney-Manhattan Associate Staff Analyst 104976.00000 2.099520e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.099520e+05 2.099520e+05 0.00 NULL
2024 District Attorney-Manhattan Carpenter NA NA 100241.23 1.670687e+04 15448.105 1007.50 6 1.544810e+04 92688.63 NA NA NA NULL
2024 District Attorney-Manhattan Chief Financial Officer 185300.00000 1.853000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.853000e+05 1.853000e+05 0.00 NULL
2024 District Attorney-Manhattan Chief Investigating Accountant 135161.26667 4.054838e+06 6914.47 2.304823e+02 0.000 127.00 30 0.000000e+00 0.00 4.061752e+06 4.054838e+06 6914.47 NULL
2024 District Attorney-Manhattan City Custodial Assistant 43759.14286 9.189420e+05 31395.39 1.495019e+03 431.860 1011.25 21 4.318600e+02 9069.06 9.503374e+05 9.280111e+05 22326.33 NULL
2024 District Attorney-Manhattan City Laborer NA NA 208020.30 3.467005e+04 40582.155 3193.50 6 3.467005e+04 208020.30 NA NA NA NULL
2024 District Attorney-Manhattan City Research Scientist 103968.00000 1.039680e+05 4016.61 4.016610e+03 4016.610 61.75 1 4.016610e+03 4016.61 1.079846e+05 1.079846e+05 0.00 NULL
2024 District Attorney-Manhattan Clerical Associate 96187.28571 6.733110e+05 33099.96 4.728566e+03 0.000 450.25 7 0.000000e+00 0.00 7.064110e+05 6.733110e+05 33099.96 NULL
2024 District Attorney-Manhattan College Aide 1113.15716 1.102026e+05 0.00 0.000000e+00 0.000 0.00 99 0.000000e+00 0.00 1.102026e+05 1.102026e+05 0.00 NULL
2024 District Attorney-Manhattan Community Assistant 54016.57315 1.350414e+06 38661.90 1.546476e+03 0.000 837.25 25 0.000000e+00 0.00 1.389076e+06 1.350414e+06 38661.90 NULL
2024 District Attorney-Manhattan Community Associate 57818.46518 4.648605e+07 884088.05 1.099612e+03 0.000 21030.95 804 0.000000e+00 0.00 4.737013e+07 4.648605e+07 884088.05 NULL
2024 District Attorney-Manhattan Community Coordinator 95251.78195 1.266849e+07 494551.10 3.718429e+03 0.000 7529.50 133 0.000000e+00 0.00 1.316304e+07 1.266849e+07 494551.10 NULL
2024 District Attorney-Manhattan Computer Systems Manager 171494.00000 1.714940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.714940e+05 1.714940e+05 0.00 NULL
2024 District Attorney-Manhattan County Detective 88886.66667 2.666600e+05 31217.00 1.040567e+04 0.000 464.75 3 0.000000e+00 0.00 2.978770e+05 2.666600e+05 31217.00 NULL
2024 District Attorney-Manhattan Deputy Chief Information Technology Officer 174975.66667 5.249270e+05 5.47 1.823333e+00 0.000 0.00 3 0.000000e+00 0.00 5.249325e+05 5.249270e+05 5.47 NULL
2024 District Attorney-Manhattan Deputy Director Of Communications 166940.00000 1.669400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.669400e+05 1.669400e+05 0.00 NULL
2024 District Attorney-Manhattan Deputy Director Of Cyber-Crime Forensics 131623.66667 3.948710e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.948710e+05 3.948710e+05 0.00 NULL
2024 District Attorney-Manhattan Dir Of Investigative Acctng And Economic Crimes Invstngs 108150.00000 1.081500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081500e+05 1.081500e+05 0.00 NULL
2024 District Attorney-Manhattan Director Criminal Justice Data Share And Info Services 163293.80000 8.164690e+05 0.14 2.800000e-02 0.000 0.00 5 0.000000e+00 0.00 8.164691e+05 8.164690e+05 0.14 NULL
2024 District Attorney-Manhattan Director Of Communications 205000.00000 2.050000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.050000e+05 2.050000e+05 0.00 NULL
2024 District Attorney-Manhattan Director Of Community Relations 160652.66667 4.819580e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.819580e+05 4.819580e+05 0.00 NULL
2024 District Attorney-Manhattan Director Of Crime Strategies And Analysis 105730.00000 1.057300e+05 20733.77 2.073377e+04 20733.770 340.75 1 2.073377e+04 20733.77 1.264638e+05 1.264638e+05 0.00 NULL
2024 District Attorney-Manhattan Director Of Cyber-Crime Forensics 155260.50000 3.105210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.105210e+05 3.105210e+05 0.00 NULL
2024 District Attorney-Manhattan Director Of Social Services 171947.00000 3.438940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.438940e+05 3.438940e+05 0.00 NULL
2024 District Attorney-Manhattan District Attorney 232600.00000 2.326000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.326000e+05 2.326000e+05 0.00 NULL
2024 District Attorney-Manhattan Electrician NA NA 73097.11 1.461942e+04 9781.350 727.00 5 9.781350e+03 48906.75 NA NA NA NULL
2024 District Attorney-Manhattan Electricians Helper NA NA 39234.24 3.923424e+04 39234.240 613.00 1 3.923424e+04 39234.24 NA NA NA NULL
2024 District Attorney-Manhattan Engineering Technician 74327.50000 1.486550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.486550e+05 1.486550e+05 0.00 NULL
2024 District Attorney-Manhattan Executive Director 137939.66667 4.138190e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.138190e+05 4.138190e+05 0.00 NULL
2024 District Attorney-Manhattan High Pressure Plant Tender NA NA 14056.43 1.405643e+04 14056.430 234.50 1 1.405643e+04 14056.43 NA NA NA NULL
2024 District Attorney-Manhattan High School Student Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 District Attorney-Manhattan Interpreter 86585.00000 8.658500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.658500e+04 8.658500e+04 0.00 NULL
2024 District Attorney-Manhattan Media Services Technician 79555.76923 1.034225e+06 278725.06 2.144039e+04 10248.860 4136.88 13 1.024886e+04 133235.18 1.312950e+06 1.167460e+06 145489.88 NULL
2024 District Attorney-Manhattan Painter NA NA 10479.45 1.047945e+04 10479.450 119.50 1 1.047945e+04 10479.45 NA NA NA NULL
2024 District Attorney-Manhattan Paralegal Aide 87679.00000 8.767900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.767900e+04 8.767900e+04 0.00 NULL
2024 District Attorney-Manhattan Photographer 71109.00000 2.133270e+05 24544.27 8.181423e+03 8023.130 569.00 3 8.023130e+03 24069.39 2.378713e+05 2.373964e+05 474.88 NULL
2024 District Attorney-Manhattan Principal Accountant Investigator 135423.73913 3.114746e+06 11159.96 4.852157e+02 0.000 184.50 23 0.000000e+00 0.00 3.125906e+06 3.114746e+06 11159.96 NULL
2024 District Attorney-Manhattan Principal Administrative Associate - Non Supvr 96529.75000 3.861190e+05 4001.69 1.000423e+03 651.190 56.75 4 6.511900e+02 2604.76 3.901207e+05 3.887238e+05 1396.93 NULL
2024 District Attorney-Manhattan Reporter/ Stenographer 99000.44000 2.475011e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 2.475011e+06 2.475011e+06 0.00 NULL
2024 District Attorney-Manhattan Secretary 125474.33333 3.764230e+05 1369.04 4.563467e+02 159.970 20.00 3 1.599700e+02 479.91 3.777920e+05 3.769029e+05 889.13 NULL
2024 District Attorney-Manhattan Senior Accountant Investigator 79641.53846 1.035340e+06 45256.94 3.481303e+03 0.000 910.50 13 0.000000e+00 0.00 1.080597e+06 1.035340e+06 45256.94 NULL
2024 District Attorney-Manhattan Senior Secretary 79497.00000 2.384910e+05 84.73 2.824333e+01 0.000 2.25 3 0.000000e+00 0.00 2.385757e+05 2.384910e+05 84.73 NULL
2024 District Attorney-Manhattan Special Assistant To The Da 167043.50000 3.340870e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.340870e+05 3.340870e+05 0.00 NULL
2024 District Attorney-Manhattan Special Officer 59302.16667 3.558130e+05 9093.27 1.515545e+03 25.835 201.25 6 2.583500e+01 155.01 3.649063e+05 3.559680e+05 8938.26 NULL
2024 District Attorney-Manhattan Staff Analyst 55411.00000 5.541100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.541100e+04 5.541100e+04 0.00 NULL
2024 District Attorney-Manhattan Summer College Intern 778.26042 1.867825e+04 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 1.867825e+04 1.867825e+04 0.00 NULL
2024 District Attorney-Manhattan Summer Graduate Intern 822.50000 3.948000e+04 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 3.948000e+04 3.948000e+04 0.00 NULL
2024 District Attorney-Manhattan Supervising Accountant Investigator 92480.00000 1.849600e+05 39984.26 1.999213e+04 19992.130 611.25 2 1.999213e+04 39984.26 2.249443e+05 2.249443e+05 0.00 NULL
2024 District Attorney-Manhattan Supervising Special Officer 64755.00000 1.295100e+05 13806.80 6.903400e+03 6903.400 267.00 2 6.903400e+03 13806.80 1.433168e+05 1.433168e+05 0.00 NULL
2024 District Attorney-Manhattan Supervisor Carpenter NA NA 65379.72 6.537972e+04 65379.720 659.75 1 6.537972e+04 65379.72 NA NA NA NULL
2024 District Attorney-Manhattan Supervisor Electrician NA NA 5122.34 5.122340e+03 5122.340 46.50 1 5.122340e+03 5122.34 NA NA NA NULL
2024 District Attorney-Manhattan Supervisor Of Mechanics 154851.00000 1.548510e+05 92924.38 9.292438e+04 92924.380 838.75 1 9.292438e+04 92924.38 2.477754e+05 2.477754e+05 0.00 NULL
2024 District Attorney-Manhattan Supervisor Painter NA NA 30218.86 3.021886e+04 30218.860 328.25 1 3.021886e+04 30218.86 NA NA NA NULL
2024 District Attorney-Special Narc Administrative Chief 200671.00000 6.020130e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.020130e+05 6.020130e+05 0.00 NULL
2024 District Attorney-Special Narc Administrative Community Relations Specialist 185000.00000 1.850000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.850000e+05 1.850000e+05 0.00 NULL
2024 District Attorney-Special Narc Administrative Labor Relations Analyst 190000.00000 1.900000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.900000e+05 1.900000e+05 0.00 NULL
2024 District Attorney-Special Narc Assistant District Attorney 138118.59167 1.657423e+07 0.00 0.000000e+00 0.000 0.00 120 0.000000e+00 0.00 1.657423e+07 1.657423e+07 0.00 NULL
2024 District Attorney-Special Narc Associate Staff Analyst 145263.00000 1.452630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.452630e+05 1.452630e+05 0.00 NULL
2024 District Attorney-Special Narc Chief Investigating Accountant 160691.66667 4.820750e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.820750e+05 4.820750e+05 0.00 NULL
2024 District Attorney-Special Narc Clerical Associate 108313.62500 8.665090e+05 2139.03 2.673788e+02 0.000 46.75 8 0.000000e+00 0.00 8.686480e+05 8.665090e+05 2139.03 NULL
2024 District Attorney-Special Narc College Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 District Attorney-Special Narc Community Associate 63503.39130 1.460578e+06 4270.47 1.856726e+02 0.000 114.50 23 0.000000e+00 0.00 1.464848e+06 1.460578e+06 4270.47 NULL
2024 District Attorney-Special Narc Community Coordinator 94798.39474 3.602339e+06 22480.55 5.915934e+02 0.000 292.00 38 0.000000e+00 0.00 3.624820e+06 3.602339e+06 22480.55 NULL
2024 District Attorney-Special Narc Computer Operations Manager 165206.00000 1.652060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.652060e+05 1.652060e+05 0.00 NULL
2024 District Attorney-Special Narc Computer Specialist 169943.00000 1.699430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.699430e+05 1.699430e+05 0.00 NULL
2024 District Attorney-Special Narc Director Of Public Information 199700.00000 1.997000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.997000e+05 1.997000e+05 0.00 NULL
2024 District Attorney-Special Narc Paralegal Aide 109139.62500 8.731170e+05 566.92 7.086500e+01 0.000 9.25 8 0.000000e+00 0.00 8.736839e+05 8.731170e+05 566.92 NULL
2024 District Attorney-Special Narc Reporter/ Stenographer 114658.25000 4.586330e+05 2592.55 6.481375e+02 0.000 37.00 4 0.000000e+00 0.00 4.612255e+05 4.586330e+05 2592.55 NULL
2024 District Attorney-Special Narc Secretary 105982.00000 2.119640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.119640e+05 2.119640e+05 0.00 NULL
2024 District Attorney-Special Narc Special Assistant District Attorney 211000.00000 2.110000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.110000e+05 2.110000e+05 0.00 NULL
2024 Districting Commission Community Liaison Representive 70000.00000 7.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.000000e+04 7.000000e+04 0.00 NULL
2024 Districting Commission Counsel 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2024 Districting Commission Executive Director 165000.00000 3.300000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.300000e+05 3.300000e+05 0.00 NULL
2024 Districting Commission Press Officer 107500.00000 1.075000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.075000e+05 1.075000e+05 0.00 NULL
2024 Doe Custodial Payrol Custodian Engineer 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1469 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 Equal Employ Practices Comm Administrative Staff Analyst 101745.00000 2.034900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.034900e+05 2.034900e+05 0.00 NULL
2024 Equal Employ Practices Comm Associate Staff Analyst 88732.00000 8.873200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.873200e+04 8.873200e+04 0.00 NULL
2024 Equal Employ Practices Comm City Research Scientist 108738.52667 3.262156e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.262156e+05 3.262156e+05 0.00 NULL
2024 Equal Employ Practices Comm Community Coordinator 65189.00000 5.215120e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 5.215120e+05 5.215120e+05 0.00 NULL
2024 Equal Employ Practices Comm Computer Specialist 95657.50000 1.913150e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.913150e+05 1.913150e+05 0.00 NULL
2024 Equal Employ Practices Comm Executive Agency Counsel 115000.00000 1.150000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.150000e+05 1.150000e+05 0.00 NULL
2024 Equal Employ Practices Comm Executive Director 165533.00000 1.655330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.655330e+05 1.655330e+05 0.00 NULL
2024 Equal Employ Practices Comm Executive Secretary 84872.00000 8.487200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.487200e+04 8.487200e+04 0.00 NULL
2024 Financial Info Svcs Agency *Certified Wide Area Network Administrator 146350.00000 1.463500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.463500e+05 1.463500e+05 0.00 NULL
2024 Financial Info Svcs Agency Accountant 69181.00000 6.918100e+04 1.34 1.340000e+00 1.340 0.00 1 1.340000e+00 1.34 6.918234e+04 6.918234e+04 0.00 NULL
2024 Financial Info Svcs Agency Adm Manager-Non-Mgrl 98999.91667 1.187999e+06 1296.53 1.080442e+02 0.000 25.50 12 0.000000e+00 0.00 1.189296e+06 1.187999e+06 1296.53 NULL
2024 Financial Info Svcs Agency Admin Contract Specialist 166084.00000 1.660840e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.660840e+05 1.660840e+05 0.00 NULL
2024 Financial Info Svcs Agency Administrative Accountant 107439.00000 1.074390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074390e+05 1.074390e+05 0.00 NULL
2024 Financial Info Svcs Agency Administrative Procurement Analyst-Non-Mgrl 99982.50000 1.999650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.999650e+05 1.999650e+05 0.00 NULL
2024 Financial Info Svcs Agency Administrative Public Information Specialist Nm Former M1/M2 87418.00000 8.741800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.741800e+04 8.741800e+04 0.00 NULL
2024 Financial Info Svcs Agency Administrative Space Analyst 211971.00000 2.119710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.119710e+05 2.119710e+05 0.00 NULL
2024 Financial Info Svcs Agency Administrative Staff Analyst 126689.55556 1.140206e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.140206e+06 1.140206e+06 0.00 NULL
2024 Financial Info Svcs Agency Agency Chief Contracting Officer 174729.00000 1.747290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.747290e+05 1.747290e+05 0.00 NULL
2024 Financial Info Svcs Agency Associate Staff Analyst 102681.00000 1.026810e+05 25.33 2.533000e+01 25.330 0.00 1 2.533000e+01 25.33 1.027063e+05 1.027063e+05 0.00 NULL
2024 Financial Info Svcs Agency Certified It Administrator 135470.00000 2.709400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.709400e+05 2.709400e+05 0.00 NULL
2024 Financial Info Svcs Agency Certified It Developer 132998.00000 1.329980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.329980e+05 1.329980e+05 0.00 NULL
2024 Financial Info Svcs Agency City Attendant 45362.00000 4.536200e+04 8286.62 8.286620e+03 8286.620 235.50 1 8.286620e+03 8286.62 5.364862e+04 5.364862e+04 0.00 NULL
2024 Financial Info Svcs Agency City Custodial Assistant 41548.00000 8.309600e+04 7066.65 3.533325e+03 3533.325 247.75 2 3.533325e+03 7066.65 9.016265e+04 9.016265e+04 0.00 NULL
2024 Financial Info Svcs Agency City Tax Auditor 79826.00000 7.982600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.982600e+04 7.982600e+04 0.00 NULL
2024 Financial Info Svcs Agency Clerical Associate 51548.55133 1.546457e+05 3360.79 1.120263e+03 0.000 98.25 3 0.000000e+00 0.00 1.580064e+05 1.546457e+05 3360.79 NULL
2024 Financial Info Svcs Agency College Aide 12464.81250 3.739444e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.739444e+04 3.739444e+04 0.00 NULL
2024 Financial Info Svcs Agency Community Assistant 43116.37290 4.311637e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.311637e+04 4.311637e+04 0.00 NULL
2024 Financial Info Svcs Agency Community Associate 63937.00000 1.918110e+05 5741.61 1.913870e+03 0.000 153.25 3 0.000000e+00 0.00 1.975526e+05 1.918110e+05 5741.61 NULL
2024 Financial Info Svcs Agency Community Coordinator 81638.60000 4.081930e+05 6485.83 1.297166e+03 155.530 120.00 5 1.555300e+02 777.65 4.146788e+05 4.089707e+05 5708.18 NULL
2024 Financial Info Svcs Agency Computer Associate 88608.16216 3.278502e+06 398980.30 1.078325e+04 4954.800 5443.25 37 4.954800e+03 183327.60 3.677482e+06 3.461830e+06 215652.70 NULL
2024 Financial Info Svcs Agency Computer Operations Manager 110006.00000 3.300180e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.300180e+05 3.300180e+05 0.00 NULL
2024 Financial Info Svcs Agency Computer Programmer Analyst 84050.00000 8.405000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.405000e+04 8.405000e+04 0.00 NULL
2024 Financial Info Svcs Agency Computer Specialist 130471.00000 6.001666e+06 615.90 1.338913e+01 0.000 9.75 46 0.000000e+00 0.00 6.002282e+06 6.001666e+06 615.90 NULL
2024 Financial Info Svcs Agency Computer Systems Manager 153810.48628 3.030067e+07 276.24 1.402233e+00 0.000 3.50 197 0.000000e+00 0.00 3.030094e+07 3.030067e+07 276.24 NULL
2024 Financial Info Svcs Agency Executive Agency Counsel 175481.50000 1.052889e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.052889e+06 1.052889e+06 0.00 NULL
2024 Financial Info Svcs Agency Executive Director 277605.00000 2.776050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.776050e+05 2.776050e+05 0.00 NULL
2024 Financial Info Svcs Agency It Automation And Monitoring Engineer 97360.53333 1.460408e+06 65366.19 4.357746e+03 3927.950 1050.25 15 3.927950e+03 58919.25 1.525774e+06 1.519327e+06 6446.94 NULL
2024 Financial Info Svcs Agency It Infrastructure Engineer 138272.00000 1.382720e+06 5497.06 5.497060e+02 0.000 68.50 10 0.000000e+00 0.00 1.388217e+06 1.382720e+06 5497.06 NULL
2024 Financial Info Svcs Agency It Project Specialist 138836.14286 1.943706e+06 121.79 8.699286e+00 0.000 2.25 14 0.000000e+00 0.00 1.943828e+06 1.943706e+06 121.79 NULL
2024 Financial Info Svcs Agency It Security Specialist 134362.66667 1.209264e+06 34771.99 3.863554e+03 0.000 490.00 9 0.000000e+00 0.00 1.244036e+06 1.209264e+06 34771.99 NULL
2024 Financial Info Svcs Agency It Service Management Specialist 106236.11111 9.561250e+05 41883.22 4.653691e+03 0.000 632.00 9 0.000000e+00 0.00 9.980082e+05 9.561250e+05 41883.22 NULL
2024 Financial Info Svcs Agency Motor Vehicle Operator 56293.00000 5.629300e+04 184.79 1.847900e+02 184.790 4.25 1 1.847900e+02 184.79 5.647779e+04 5.647779e+04 0.00 NULL
2024 Financial Info Svcs Agency New York City Public Service Fellow 49876.00000 4.987600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.987600e+04 4.987600e+04 0.00 NULL
2024 Financial Info Svcs Agency Nycaps Process Analyst 133810.00000 1.338100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.338100e+05 1.338100e+05 0.00 NULL
2024 Financial Info Svcs Agency Principal Administrative Associate - Non Supvr 72647.33333 6.538260e+05 51847.68 5.760853e+03 48.990 934.25 9 4.899000e+01 440.91 7.056737e+05 6.542669e+05 51406.77 NULL
2024 Financial Info Svcs Agency Procurement Analyst 11802.60000 1.180260e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.180260e+04 1.180260e+04 0.00 NULL
2024 Financial Info Svcs Agency Senior It Architect 146939.00000 2.204085e+06 17093.23 1.139549e+03 0.000 183.25 15 0.000000e+00 0.00 2.221178e+06 2.204085e+06 17093.23 NULL
2024 Financial Info Svcs Agency Staff Analyst 68153.00000 6.815300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.815300e+04 6.815300e+04 0.00 NULL
2024 Financial Info Svcs Agency Supervisor Of Office Machine Operations 52833.00000 5.283300e+04 13305.74 1.330574e+04 13305.740 319.25 1 1.330574e+04 13305.74 6.613874e+04 6.613874e+04 0.00 NULL
2024 Financial Info Svcs Agency Telecommunications Associate 63632.00000 3.181600e+05 26430.08 5.286016e+03 5393.430 557.75 5 5.286016e+03 26430.08 3.445901e+05 3.445901e+05 0.00 NULL
2024 Financial Info Svcs Agency Telecommunications Manager 79568.00000 7.956800e+04 3604.57 3.604570e+03 3604.570 64.00 1 3.604570e+03 3604.57 8.317257e+04 8.317257e+04 0.00 NULL
2024 Fire Department *Certified Applications Developer 119079.00000 2.381580e+05 10079.12 5.039560e+03 5039.560 152.00 2 5.039560e+03 10079.12 2.482371e+05 2.482371e+05 0.00 NULL
2024 Fire Department Accountant 87011.00000 8.701100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.701100e+04 8.701100e+04 0.00 NULL
2024 Fire Department Adm Manager-Non-Mgrl 92828.92356 1.095381e+07 424936.41 3.601156e+03 142.600 6610.25 118 1.426000e+02 16826.80 1.137875e+07 1.097064e+07 408109.61 NULL
2024 Fire Department Admin Community Relations Specialist 89345.58000 2.144294e+06 316745.58 1.319773e+04 11962.060 4531.25 24 1.196206e+04 287089.44 2.461040e+06 2.431383e+06 29656.14 NULL
2024 Fire Department Admin Inspector 88545.66667 1.062548e+06 457846.95 3.815391e+04 43532.540 7634.25 12 3.815391e+04 457846.95 1.520395e+06 1.520395e+06 0.00 NULL
2024 Fire Department Admin Tests & Meas Spec 161847.00000 1.618470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.618470e+05 1.618470e+05 0.00 NULL
2024 Fire Department Administrative Architect 158697.00000 3.173940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.173940e+05 3.173940e+05 0.00 NULL
2024 Fire Department Administrative Blasting Inspector 139042.00000 2.780840e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.780840e+05 2.780840e+05 0.00 NULL
2024 Fire Department Administrative Community Relations Specialist 174214.66667 5.226440e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.226440e+05 5.226440e+05 0.00 NULL
2024 Fire Department Administrative Construction Project Manager 172481.00000 6.899240e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.899240e+05 6.899240e+05 0.00 NULL
2024 Fire Department Administrative Director Of Marine Maintenance 135635.00000 1.356350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.356350e+05 1.356350e+05 0.00 NULL
2024 Fire Department Administrative Engineer 142848.50000 5.713940e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.713940e+05 5.713940e+05 0.00 NULL
2024 Fire Department Administrative Fire Protection Inspector 122319.58333 1.467835e+06 24817.92 2.068160e+03 0.000 281.50 12 0.000000e+00 0.00 1.492653e+06 1.467835e+06 24817.92 NULL
2024 Fire Department Administrative Graphic Artist 101591.00000 2.031820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.031820e+05 2.031820e+05 0.00 NULL
2024 Fire Department Administrative Inspector 157571.00000 1.575710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.575710e+05 1.575710e+05 0.00 NULL
2024 Fire Department Administrative Investigator 78058.00000 7.805800e+04 290.36 2.903600e+02 290.360 7.00 1 2.903600e+02 290.36 7.834836e+04 7.834836e+04 0.00 NULL
2024 Fire Department Administrative Labor Relations Analyst 150688.00000 3.013760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.013760e+05 3.013760e+05 0.00 NULL
2024 Fire Department Administrative Management Auditor 119520.00000 1.195200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.195200e+05 1.195200e+05 0.00 NULL
2024 Fire Department Administrative Procurement Analyst-Non-Mgrl 91662.67167 1.924916e+06 30187.25 1.437488e+03 44.250 607.50 21 4.425000e+01 929.25 1.955103e+06 1.925845e+06 29258.00 NULL
2024 Fire Department Administrative Project Manager 139616.45455 1.535781e+06 11160.02 1.014547e+03 0.000 185.00 11 0.000000e+00 0.00 1.546941e+06 1.535781e+06 11160.02 NULL
2024 Fire Department Administrative Psychologist 150364.39113 4.510932e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.510932e+05 4.510932e+05 0.00 NULL
2024 Fire Department Administrative Public Information Specialist Nm Former M1/M2 110379.00000 4.415160e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.415160e+05 4.415160e+05 0.00 NULL
2024 Fire Department Administrative Public Records Officer 92882.00000 9.288200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.288200e+04 9.288200e+04 0.00 NULL
2024 Fire Department Administrative Quality Assurance Specialist 62284.32000 1.245686e+05 1398.68 6.993400e+02 699.340 23.00 2 6.993400e+02 1398.68 1.259673e+05 1.259673e+05 0.00 NULL
2024 Fire Department Administrative Staff Analyst 125678.63906 1.080836e+07 70970.54 8.252388e+02 0.000 841.00 86 0.000000e+00 0.00 1.087933e+07 1.080836e+07 70970.54 NULL
2024 Fire Department Administrative Supervisor Of Building Maintenance 147357.66667 4.420730e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.420730e+05 4.420730e+05 0.00 NULL
2024 Fire Department Agency Attorney 100965.18519 5.452120e+06 9135.93 1.691839e+02 0.000 109.75 54 0.000000e+00 0.00 5.461256e+06 5.452120e+06 9135.93 NULL
2024 Fire Department Agency Attorney Interne 80763.00000 1.615260e+05 216.52 1.082600e+02 108.260 0.00 2 1.082600e+02 216.52 1.617425e+05 1.617425e+05 0.00 NULL
2024 Fire Department Agency Deputy Medical Director 199519.41667 2.394233e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 2.394233e+06 2.394233e+06 0.00 NULL
2024 Fire Department Architect 112779.00000 1.127790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.127790e+05 1.127790e+05 0.00 NULL
2024 Fire Department Assistant Architect 80175.00000 1.603500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.603500e+05 1.603500e+05 0.00 NULL
2024 Fire Department Assistant Chemical Engineer 77572.00000 4.654320e+05 63457.44 1.057624e+04 9877.480 1292.00 6 9.877480e+03 59264.88 5.288894e+05 5.246969e+05 4192.56 NULL
2024 Fire Department Assistant Chief Fire Marshal 242381.00000 2.423810e+05 2696.45 2.696450e+03 2696.450 0.00 1 2.696450e+03 2696.45 2.450775e+05 2.450775e+05 0.00 NULL
2024 Fire Department Assistant Chief Of Department 257515.22222 2.317637e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 2.317637e+06 2.317637e+06 0.00 NULL
2024 Fire Department Assistant Civil Engineer 73878.00000 7.387800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.387800e+04 7.387800e+04 0.00 NULL
2024 Fire Department Assistant Commissioner 182222.61538 2.368894e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 2.368894e+06 2.368894e+06 0.00 NULL
2024 Fire Department Assistant Electrical Engineer 74221.75000 5.937740e+05 295254.40 3.690680e+04 27138.440 5210.25 8 2.713844e+04 217107.52 8.890284e+05 8.108815e+05 78146.88 NULL
2024 Fire Department Assistant Mechanical Engineer 77387.80000 3.869390e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 3.869390e+05 3.869390e+05 0.00 NULL
2024 Fire Department Associate Commissioner 226589.50000 4.531790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.531790e+05 4.531790e+05 0.00 NULL
2024 Fire Department Associate Fire Protection Inspector 74318.53953 1.597849e+07 2470544.58 1.149091e+04 7675.680 42538.35 215 7.675680e+03 1650271.20 1.844903e+07 1.762876e+07 820273.38 NULL
2024 Fire Department Associate Inspector 76858.08571 2.690033e+06 723816.29 2.068047e+04 20897.340 14139.50 35 2.068047e+04 723816.29 3.413849e+06 3.413849e+06 0.00 NULL
2024 Fire Department Associate Investigator 71515.63636 1.573344e+06 62671.60 2.848709e+03 782.995 1214.50 22 7.829950e+02 17225.89 1.636016e+06 1.590570e+06 45445.71 NULL
2024 Fire Department Associate Project Manager 100458.47619 2.109628e+06 94132.69 4.482509e+03 1259.620 1448.00 21 1.259620e+03 26452.02 2.203761e+06 2.136080e+06 67680.67 NULL
2024 Fire Department Associate Public Records Officer 84872.00000 1.697440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.697440e+05 1.697440e+05 0.00 NULL
2024 Fire Department Associate Staff Analyst 92963.87500 1.487422e+06 16640.25 1.040016e+03 100.970 257.75 16 1.009700e+02 1615.52 1.504062e+06 1.489038e+06 15024.73 NULL
2024 Fire Department Attending Physician 51138.10480 2.045524e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.045524e+05 2.045524e+05 0.00 NULL
2024 Fire Department Auto Mechanic NA NA 3430881.20 2.639139e+04 22179.360 43250.50 130 2.217936e+04 2883316.80 NA NA NA NULL
2024 Fire Department Automotive Service Worker 50602.59375 1.619283e+06 262352.57 8.198518e+03 5609.820 6494.00 32 5.609820e+03 179514.24 1.881636e+06 1.798797e+06 82838.33 NULL
2024 Fire Department Battalion Chief 184840.69248 8.114506e+07 1941479.24 4.422504e+03 0.000 14029.79 439 0.000000e+00 0.00 8.308654e+07 8.114506e+07 1941479.24 NULL
2024 Fire Department Captain 142033.66348 8.905511e+07 36432789.09 5.810652e+04 61645.150 294250.29 627 5.810652e+04 36432789.09 1.254879e+08 1.254879e+08 0.00 NULL
2024 Fire Department Carpenter NA NA 260132.43 1.182420e+04 4959.940 2860.00 22 4.959940e+03 109118.68 NA NA NA NULL
2024 Fire Department Case - Management Nurse 98186.47563 3.927459e+06 50445.26 1.261131e+03 425.025 745.00 40 4.250250e+02 17001.00 3.977904e+06 3.944460e+06 33444.26 NULL
2024 Fire Department Cashier 60004.00000 6.000400e+04 21519.02 2.151902e+04 21519.020 479.00 1 2.151902e+04 21519.02 8.152302e+04 8.152302e+04 0.00 NULL
2024 Fire Department Cement Mason NA NA 20992.76 1.049638e+04 10496.380 167.00 2 1.049638e+04 20992.76 NA NA NA NULL
2024 Fire Department Certified It Administrator 118054.00966 1.298594e+06 73239.52 6.658138e+03 5676.600 932.50 11 5.676600e+03 62442.60 1.371834e+06 1.361037e+06 10796.92 NULL
2024 Fire Department Certified It Developer 127207.26667 1.908109e+06 14799.21 9.866140e+02 570.020 199.75 15 5.700200e+02 8550.30 1.922908e+06 1.916659e+06 6248.91 NULL
2024 Fire Department Chaplain 32128.09091 3.534090e+05 12774.63 1.161330e+03 1047.120 413.00 11 1.047120e+03 11518.32 3.661836e+05 3.649273e+05 1256.31 NULL
2024 Fire Department Chief Fire Marshal 245313.00000 7.359390e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 7.359390e+05 7.359390e+05 0.00 NULL
2024 Fire Department City Laborer NA NA 275712.24 1.451117e+04 11853.910 4891.75 19 1.185391e+04 225224.29 NA NA NA NULL
2024 Fire Department City Medical Specialist 39372.95030 1.574918e+06 116302.27 2.907557e+03 0.000 1599.00 40 0.000000e+00 0.00 1.691220e+06 1.574918e+06 116302.27 NULL
2024 Fire Department City Research Scientist 110237.57576 3.637840e+06 2452.20 7.430909e+01 0.000 37.50 33 0.000000e+00 0.00 3.640292e+06 3.637840e+06 2452.20 NULL
2024 Fire Department Clerical Associate 54243.75826 6.021057e+06 131724.32 1.186706e+03 0.000 3417.00 111 0.000000e+00 0.00 6.152781e+06 6.021057e+06 131724.32 NULL
2024 Fire Department Commissioner 277605.00000 2.776050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.776050e+05 2.776050e+05 0.00 NULL
2024 Fire Department Communication Electrician NA NA 1076365.68 1.793943e+04 15862.020 13183.25 60 1.586202e+04 951721.20 NA NA NA NULL
2024 Fire Department Community Assistant 45849.52500 9.169905e+04 1402.08 7.010400e+02 701.040 43.00 2 7.010400e+02 1402.08 9.310113e+04 9.310113e+04 0.00 NULL
2024 Fire Department Community Associate 49998.11530 1.549942e+06 50270.01 1.621613e+03 0.000 1439.80 31 0.000000e+00 0.00 1.600212e+06 1.549942e+06 50270.01 NULL
2024 Fire Department Community Coordinator 73944.27451 3.771158e+06 229267.04 4.495432e+03 1197.200 4501.75 51 1.197200e+03 61057.20 4.000425e+06 3.832215e+06 168209.84 NULL
2024 Fire Department Computer Aide-Non-Spvr 57474.00000 1.149480e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.149480e+05 1.149480e+05 0.00 NULL
2024 Fire Department Computer Associate 87832.40000 2.634972e+06 475104.66 1.583682e+04 9062.480 6979.00 30 9.062480e+03 271874.40 3.110077e+06 2.906846e+06 203230.26 NULL
2024 Fire Department Computer Operations Manager 70806.00000 1.416120e+05 14053.46 7.026730e+03 7026.730 272.00 2 7.026730e+03 14053.46 1.556655e+05 1.556655e+05 0.00 NULL
2024 Fire Department Computer Service Technician 74158.00000 1.483160e+05 24997.24 1.249862e+04 12498.620 466.50 2 1.249862e+04 24997.24 1.733132e+05 1.733132e+05 0.00 NULL
2024 Fire Department Computer Specialist 122110.18462 7.937162e+06 124713.38 1.918667e+03 511.280 1516.00 65 5.112800e+02 33233.20 8.061875e+06 7.970395e+06 91480.18 NULL
2024 Fire Department Computer Systems Manager 154921.61224 7.591159e+06 50916.10 1.039104e+03 0.000 565.25 49 0.000000e+00 0.00 7.642075e+06 7.591159e+06 50916.10 NULL
2024 Fire Department Confidential Strategy Planner 100000.00000 1.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.000000e+05 1.000000e+05 0.00 NULL
2024 Fire Department Construction Project Manager 98254.20000 4.912710e+05 665.46 1.330920e+02 0.000 12.00 5 0.000000e+00 0.00 4.919365e+05 4.912710e+05 665.46 NULL
2024 Fire Department Customer Information Representative Ma L 1549 81211.71429 5.684820e+05 51083.99 7.297713e+03 2746.460 982.00 7 2.746460e+03 19225.22 6.195660e+05 5.877072e+05 31858.77 NULL
2024 Fire Department Deputy Assistant Chief Of Department 262530.20000 3.937953e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 3.937953e+06 3.937953e+06 0.00 NULL
2024 Fire Department Deputy Chief 212651.24138 1.850066e+07 0.00 0.000000e+00 0.000 0.00 87 0.000000e+00 0.00 1.850066e+07 1.850066e+07 0.00 NULL
2024 Fire Department Deputy Commissioner 254234.83333 3.050818e+06 32787.25 2.732271e+03 0.000 312.00 12 0.000000e+00 0.00 3.083605e+06 3.050818e+06 32787.25 NULL
2024 Fire Department Economist 71299.00000 1.425980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.425980e+05 1.425980e+05 0.00 NULL
2024 Fire Department Electrical Engineer 124534.00000 1.245340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.245340e+05 1.245340e+05 0.00 NULL
2024 Fire Department Electrician NA NA 776940.27 5.549573e+04 66017.975 7919.00 14 5.549573e+04 776940.27 NA NA NA NULL
2024 Fire Department Emergency Medical Specialist Trainee 36330.00000 6.939030e+06 8264.77 4.327105e+01 0.000 307.00 191 0.000000e+00 0.00 6.947295e+06 6.939030e+06 8264.77 NULL
2024 Fire Department Emergency Medical Specialist-Emt 48623.20142 2.266814e+08 22940764.98 4.920799e+03 1492.760 628987.10 4662 1.492760e+03 6959247.12 2.496221e+08 2.336406e+08 15981517.86 NULL
2024 Fire Department Emergency Medical Specialist-Paramedic 66708.77034 7.871635e+07 11199295.68 9.490929e+03 3966.635 216278.27 1180 3.966635e+03 4680629.30 8.991564e+07 8.339698e+07 6518666.38 NULL
2024 Fire Department Employee Assistance Program Specialist 52049.32783 7.807399e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 7.807399e+05 7.807399e+05 0.00 NULL
2024 Fire Department Engineering Technician 68501.00000 6.850100e+04 2118.38 2.118380e+03 2118.380 47.25 1 2.118380e+03 2118.38 7.061938e+04 7.061938e+04 0.00 NULL
2024 Fire Department Estimator 97733.00000 9.773300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.773300e+04 9.773300e+04 0.00 NULL
2024 Fire Department Executive Agency Counsel 177523.20833 4.260557e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 4.260557e+06 4.260557e+06 0.00 NULL
2024 Fire Department Executive Director Of Fleet Operations 201111.00000 2.011110e+05 4538.71 4.538710e+03 4538.710 0.00 1 4.538710e+03 4538.71 2.056497e+05 2.056497e+05 0.00 NULL
2024 Fire Department Executive Inspector 132810.00000 2.656200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.656200e+05 2.656200e+05 0.00 NULL
2024 Fire Department Executive Program Specialist 181706.50000 1.453652e+06 38144.33 4.768041e+03 0.000 983.00 8 0.000000e+00 0.00 1.491796e+06 1.453652e+06 38144.33 NULL
2024 Fire Department Fire Alarm Dispatcher 61568.50785 1.175958e+07 2773669.89 1.452183e+04 10837.220 57025.00 191 1.083722e+04 2069909.02 1.453325e+07 1.382949e+07 703760.87 NULL
2024 Fire Department Fire Cadet 19131.60956 3.175847e+06 0.00 0.000000e+00 0.000 0.00 166 0.000000e+00 0.00 3.175847e+06 3.175847e+06 0.00 NULL
2024 Fire Department Fire Marshal 113467.97479 1.350269e+07 3638680.66 3.057715e+04 7212.220 34085.60 119 7.212220e+03 858254.18 1.714137e+07 1.436094e+07 2780426.48 NULL
2024 Fire Department Fire Medical Officer 165025.38710 5.115787e+06 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 5.115787e+06 5.115787e+06 0.00 NULL
2024 Fire Department Fire Protection Inspector 57709.03481 1.823606e+07 943723.06 2.986465e+03 714.730 22111.27 316 7.147300e+02 225854.68 1.917978e+07 1.846191e+07 717868.38 NULL
2024 Fire Department Firefighter 88756.02257 8.021769e+08 267750004.86 2.962492e+04 24905.020 3121117.42 9038 2.490502e+04 225091570.76 1.069927e+09 1.027269e+09 42658434.10 NULL
2024 Fire Department First Deputy Commissioner 273237.00000 2.732370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.732370e+05 2.732370e+05 0.00 NULL
2024 Fire Department Graphic Artist 51316.00000 5.131600e+04 1319.14 1.319140e+03 1319.140 44.00 1 1.319140e+03 1319.14 5.263514e+04 5.263514e+04 0.00 NULL
2024 Fire Department Head Nurse 114965.00000 1.149650e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.149650e+05 1.149650e+05 0.00 NULL
2024 Fire Department Institutional Aide 44456.66667 1.333700e+05 9720.34 3.240113e+03 0.000 303.50 3 0.000000e+00 0.00 1.430903e+05 1.333700e+05 9720.34 NULL
2024 Fire Department Investigator 70711.09524 1.484933e+06 20079.26 9.561552e+02 482.730 397.50 21 4.827300e+02 10137.33 1.505012e+06 1.495070e+06 9941.93 NULL
2024 Fire Department It Automation And Monitoring Engineer 156446.00000 3.128920e+05 3948.94 1.974470e+03 1974.470 45.00 2 1.974470e+03 3948.94 3.168409e+05 3.168409e+05 0.00 NULL
2024 Fire Department It Infrastructure Engineer 175918.44444 1.583266e+06 9122.92 1.013658e+03 555.750 84.00 9 5.557500e+02 5001.75 1.592389e+06 1.588268e+06 4121.17 NULL
2024 Fire Department It Project Specialist 122774.80000 6.138740e+05 33516.98 6.703396e+03 0.000 351.00 5 0.000000e+00 0.00 6.473910e+05 6.138740e+05 33516.98 NULL
2024 Fire Department It Security Specialist 163707.00000 3.274140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.274140e+05 3.274140e+05 0.00 NULL
2024 Fire Department It Service Management Specialist 146317.00000 2.926340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.926340e+05 2.926340e+05 0.00 NULL
2024 Fire Department Lieutenant 123670.97166 1.658428e+08 61993748.96 4.622949e+04 48041.830 572706.85 1341 4.622949e+04 61993748.96 2.278365e+08 2.278365e+08 0.00 NULL
2024 Fire Department Locksmith NA NA 116859.40 2.921485e+04 29214.850 2635.50 4 2.921485e+04 116859.40 NA NA NA NULL
2024 Fire Department Machinist NA NA 42785.88 4.278588e+04 42785.880 538.50 1 4.278588e+04 42785.88 NA NA NA NULL
2024 Fire Department Maintenance Worker NA NA 27956.52 1.397826e+04 13978.260 538.00 2 1.397826e+04 27956.52 NA NA NA NULL
2024 Fire Department Management Auditor 92980.00000 9.298000e+04 210.08 2.100800e+02 210.080 4.00 1 2.100800e+02 210.08 9.319008e+04 9.319008e+04 0.00 NULL
2024 Fire Department Marine Engineer 117400.12500 1.878402e+06 1532348.09 9.577176e+04 114453.240 14364.72 16 9.577176e+04 1532348.09 3.410750e+06 3.410750e+06 0.00 NULL
2024 Fire Department Marine Maintenance Mechanic 84361.75000 3.374470e+05 32540.86 8.135215e+03 7733.635 529.50 4 7.733635e+03 30934.54 3.699879e+05 3.683815e+05 1606.32 NULL
2024 Fire Department Mechanical Engineer 117283.00000 2.345660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.345660e+05 2.345660e+05 0.00 NULL
2024 Fire Department Metal Work Mechanic 103274.00000 2.065480e+05 15549.02 7.774510e+03 7774.510 182.00 2 7.774510e+03 15549.02 2.220970e+05 2.220970e+05 0.00 NULL
2024 Fire Department Motor Vehicle Operator 54673.55000 1.093471e+06 118765.77 5.938288e+03 2943.310 2963.21 20 2.943310e+03 58866.20 1.212237e+06 1.152337e+06 59899.57 NULL
2024 Fire Department Motor Vehicle Supervisor 67811.00000 1.356220e+05 43704.93 2.185247e+04 21852.465 906.00 2 2.185247e+04 43704.93 1.793269e+05 1.793269e+05 0.00 NULL
2024 Fire Department New York City Public Service Fellow 47415.00000 9.483000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.483000e+04 9.483000e+04 0.00 NULL
2024 Fire Department Oiler NA NA 221146.64 3.685777e+04 42196.175 2013.50 6 3.685777e+04 221146.64 NA NA NA NULL
2024 Fire Department Painter NA NA 2693.22 1.346610e+03 1346.610 22.00 2 1.346610e+03 2693.22 NA NA NA NULL
2024 Fire Department Physician 14300.32356 7.150162e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.150162e+04 7.150162e+04 0.00 NULL
2024 Fire Department Physician’s Assistant 71983.13400 2.159494e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.159494e+05 2.159494e+05 0.00 NULL
2024 Fire Department Pilot 118421.90909 1.302641e+06 606090.33 5.509912e+04 61344.270 5608.20 11 5.509912e+04 606090.33 1.908731e+06 1.908731e+06 0.00 NULL
2024 Fire Department Planner: Production Cntrl & Scheduling 71981.50000 1.439630e+05 78419.75 3.920988e+04 39209.875 1222.25 2 3.920988e+04 78419.75 2.223828e+05 2.223828e+05 0.00 NULL
2024 Fire Department Plasterer NA NA 544.13 5.441300e+02 544.130 0.50 1 5.441300e+02 544.13 NA NA NA NULL
2024 Fire Department Plumber NA NA 710389.14 5.464532e+04 44918.160 5767.00 13 4.491816e+04 583936.08 NA NA NA NULL
2024 Fire Department Principal Administrative Associate - Non Supvr 68366.98893 1.230606e+07 657488.03 3.652711e+03 82.800 13252.75 180 8.280000e+01 14904.00 1.296355e+07 1.232096e+07 642584.03 NULL
2024 Fire Department Procurement Analyst 59221.88546 1.362103e+06 5938.74 2.582061e+02 0.000 124.25 23 0.000000e+00 0.00 1.368042e+06 1.362103e+06 5938.74 NULL
2024 Fire Department Program Producer 51873.96000 5.187396e+05 55432.54 5.543254e+03 3580.100 1230.00 10 3.580100e+03 35801.00 5.741721e+05 5.545406e+05 19631.54 NULL
2024 Fire Department Project Manager 74790.90909 8.227000e+05 192633.72 1.751216e+04 10035.320 3440.50 11 1.003532e+04 110388.52 1.015334e+06 9.330885e+05 82245.20 NULL
2024 Fire Department Public Records Aide 42022.21581 8.824665e+05 21780.94 1.037188e+03 0.000 784.00 21 0.000000e+00 0.00 9.042475e+05 8.824665e+05 21780.94 NULL
2024 Fire Department Public Records Officer 63104.00000 1.893120e+05 1293.20 4.310667e+02 646.600 31.50 3 4.310667e+02 1293.20 1.906052e+05 1.906052e+05 0.00 NULL
2024 Fire Department Radio Repair Mechanic NA NA 1013955.04 2.982221e+04 27752.030 13560.71 34 2.775203e+04 943569.02 NA NA NA NULL
2024 Fire Department Research Assistant 75189.33333 2.255680e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.255680e+05 2.255680e+05 0.00 NULL
2024 Fire Department Roofer NA NA 20556.36 1.027818e+04 10278.180 274.50 2 1.027818e+04 20556.36 NA NA NA NULL
2024 Fire Department Rubber Tire Repairer NA NA 252226.45 2.522265e+04 19197.540 4666.75 10 1.919754e+04 191975.40 NA NA NA NULL
2024 Fire Department Secretary Of The Department 136006.00000 1.360060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.360060e+05 1.360060e+05 0.00 NULL
2024 Fire Department Secretary To The Deputy Commissioner 91702.00000 1.834040e+05 5910.92 2.955460e+03 2955.460 104.75 2 2.955460e+03 5910.92 1.893149e+05 1.893149e+05 0.00 NULL
2024 Fire Department Senior It Architect 147348.50000 5.893940e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.893940e+05 5.893940e+05 0.00 NULL
2024 Fire Department Senior Management Consultant 159404.00000 1.594040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.594040e+05 1.594040e+05 0.00 NULL
2024 Fire Department Senior Photographer 83963.27750 8.396328e+04 11880.59 1.188059e+04 11880.590 219.50 1 1.188059e+04 11880.59 9.584387e+04 9.584387e+04 0.00 NULL
2024 Fire Department Senior Stationary Engineer NA NA 109991.65 1.099916e+05 109991.650 832.50 1 1.099916e+05 109991.65 NA NA NA NULL
2024 Fire Department Senior Supervisor Communication Electrician NA NA 40788.08 4.078808e+04 40788.080 443.75 1 4.078808e+04 40788.08 NA NA NA NULL
2024 Fire Department Sheet Metal Worker NA NA 224793.90 5.619847e+04 56505.760 1654.00 4 5.619847e+04 224793.90 NA NA NA NULL
2024 Fire Department Social Worker 77591.57250 1.551831e+05 1664.46 8.322300e+02 832.230 32.00 2 8.322300e+02 1664.46 1.568476e+05 1.568476e+05 0.00 NULL
2024 Fire Department Special Assistant To The Fire Commissioner 152986.00000 1.529860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.529860e+05 1.529860e+05 0.00 NULL
2024 Fire Department Spvsg Fad-Asst Commiss Detail 173040.00000 3.460800e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.460800e+05 3.460800e+05 0.00 NULL
2024 Fire Department Spvsg Fad-Dep Dir Dsptch Dtail 126952.00000 1.269520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.269520e+05 1.269520e+05 0.00 NULL
2024 Fire Department Spvsg Fad-Dir Dsptch Op Detail 140615.00000 1.406150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.406150e+05 1.406150e+05 0.00 NULL
2024 Fire Department Staff Analyst 69341.72306 2.496302e+06 46346.34 1.287398e+03 0.000 670.25 36 0.000000e+00 0.00 2.542648e+06 2.496302e+06 46346.34 NULL
2024 Fire Department Staff Analyst Trainee 52968.00000 1.059360e+05 188.44 9.422000e+01 94.220 6.50 2 9.422000e+01 188.44 1.061244e+05 1.061244e+05 0.00 NULL
2024 Fire Department Stationary Engineer NA NA 76424.56 7.642456e+04 76424.560 660.50 1 7.642456e+04 76424.56 NA NA NA NULL
2024 Fire Department Steam Fitter NA NA 40251.76 2.012588e+04 20125.880 328.00 2 2.012588e+04 40251.76 NA NA NA NULL
2024 Fire Department Steam Fitter’s Helper NA NA 365269.34 7.305387e+04 77752.330 3966.00 5 7.305387e+04 365269.34 NA NA NA NULL
2024 Fire Department Stock Worker 47950.00000 4.795000e+04 4221.94 4.221940e+03 4221.940 115.50 1 4.221940e+03 4221.94 5.217194e+04 5.217194e+04 0.00 NULL
2024 Fire Department Strategic Initiative Specialist 156653.00000 9.399180e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.399180e+05 9.399180e+05 0.00 NULL
2024 Fire Department Summer College Intern 4836.21250 7.737940e+04 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 7.737940e+04 7.737940e+04 0.00 NULL
2024 Fire Department Summer Graduate Intern 6146.28000 2.458512e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.458512e+04 2.458512e+04 0.00 NULL
2024 Fire Department Supervising Blasting Inspector 89671.37500 1.434742e+06 599835.98 3.748975e+04 26677.740 8242.75 16 2.667774e+04 426843.84 2.034578e+06 1.861586e+06 172992.14 NULL
2024 Fire Department Supervising Communication Electrician NA NA 134212.64 2.684253e+04 20670.850 1500.50 5 2.067085e+04 103354.25 NA NA NA NULL
2024 Fire Department Supervising Emergency Medical Service Specialist 83306.48674 4.398582e+07 9442674.44 1.788385e+04 11414.075 149307.40 528 1.141408e+04 6026631.60 5.342850e+07 5.001246e+07 3416042.84 NULL
2024 Fire Department Supervising Emergency Medical Service Specialist-Dpty Chiefs 128555.16393 7.841865e+06 -3452.34 -5.659574e+01 0.000 -32.50 61 -5.659574e+01 -3452.34 7.838413e+06 7.838413e+06 0.00 NULL
2024 Fire Department Supervising Fire Alarm Dispatcher 90768.62500 3.630745e+06 884562.61 2.211407e+04 24632.890 13591.75 40 2.211407e+04 884562.61 4.515308e+06 4.515308e+06 0.00 NULL
2024 Fire Department Supervising Fire Marshal 149307.00000 4.927131e+06 1193935.36 3.617986e+04 965.420 10402.50 33 9.654200e+02 31858.86 6.121066e+06 4.958990e+06 1162076.50 NULL
2024 Fire Department Supervisor Carpenter NA NA 170676.01 8.533801e+04 85338.005 1862.75 2 8.533801e+04 170676.01 NA NA NA NULL
2024 Fire Department Supervisor Electrician NA NA 232565.16 5.814129e+04 52003.045 2165.00 4 5.200304e+04 208012.18 NA NA NA NULL
2024 Fire Department Supervisor Of Electrical Installations & Maintenance 98078.00000 1.961560e+05 143063.11 7.153155e+04 71531.555 1865.00 2 7.153155e+04 143063.11 3.392191e+05 3.392191e+05 0.00 NULL
2024 Fire Department Supervisor Of Mechanics NA NA 1618924.07 3.854581e+04 35541.375 13842.40 42 3.554138e+04 1492737.75 NA NA NA NULL
2024 Fire Department Supervisor Of Stock Workers 56172.17857 1.572821e+06 232569.26 8.306045e+03 6900.360 5131.00 28 6.900360e+03 193210.08 1.805390e+06 1.766031e+06 39359.18 NULL
2024 Fire Department Supervisor Plumber NA NA 236461.37 5.911534e+04 55515.620 1806.50 4 5.551562e+04 222062.48 NA NA NA NULL
2024 Fire Department Telecommunication Manager 163909.00000 1.639090e+05 1756.50 1.756500e+03 1756.500 0.00 1 1.756500e+03 1756.50 1.656655e+05 1.656655e+05 0.00 NULL
2024 Fire Department Telecommunications Associate 88880.00000 1.244320e+06 57961.17 4.140084e+03 601.630 944.50 14 6.016300e+02 8422.82 1.302281e+06 1.252743e+06 49538.35 NULL
2024 Fire Department Telecommunications Manager 142819.50000 2.856390e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.856390e+05 2.856390e+05 0.00 NULL
2024 Fire Department Wiper 105743.07143 1.480403e+06 801831.75 5.727370e+04 40756.830 7452.00 14 4.075683e+04 570595.62 2.282235e+06 2.050999e+06 231236.13 NULL
2024 Fire Department Worker’s Compensation Benefits Examiner 55005.12500 4.400410e+05 13332.34 1.666543e+03 1498.670 364.00 8 1.498670e+03 11989.36 4.533733e+05 4.520304e+05 1342.98 NULL
2024 Guttman Community College Adjunct Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 NA NA NA NULL
2024 Guttman Community College Adjunct Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 NA NA NA NULL
2024 Guttman Community College Assistant Administrator 145000.00000 1.450000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.450000e+05 1.450000e+05 0.00 NULL
2024 Guttman Community College Assistant Dean 147249.50000 2.944990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.944990e+05 2.944990e+05 0.00 NULL
2024 Guttman Community College Assistant Professor NA NA 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 NA NA NA NULL
2024 Guttman Community College Assistant To Heo 65345.26667 9.801790e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 9.801790e+05 9.801790e+05 0.00 NULL
2024 Guttman Community College Assistant Vice President 167490.00000 1.674900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.674900e+05 1.674900e+05 0.00 NULL
2024 Guttman Community College Associate Administrator 158000.00000 3.160000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.160000e+05 3.160000e+05 0.00 NULL
2024 Guttman Community College Associate Professor NA NA 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 NA NA NA NULL
2024 Guttman Community College Business Data And Reporting Analyst 99.48000 9.948000e+01 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.948000e+01 9.948000e+01 0.00 NULL
2024 Guttman Community College Campus Peace Officer 42693.33333 1.280800e+05 17550.12 5.850040e+03 7303.930 572.50 3 5.850040e+03 17550.12 1.456301e+05 1.456301e+05 0.00 NULL
2024 Guttman Community College Campus Public Safety Sergeant 59941.00000 1.798230e+05 26641.06 8.880353e+03 5554.250 615.50 3 5.554250e+03 16662.75 2.064641e+05 1.964858e+05 9978.31 NULL
2024 Guttman Community College Campus Security Assistant 34390.87500 2.751270e+05 35075.86 4.384483e+03 3522.745 1401.00 8 3.522745e+03 28181.96 3.102029e+05 3.033090e+05 6893.90 NULL
2024 Guttman Community College College Accounting Assistant 39469.00000 3.946900e+04 108.02 1.080200e+02 108.020 5.00 1 1.080200e+02 108.02 3.957702e+04 3.957702e+04 0.00 NULL
2024 Guttman Community College College Assistant 11499.87257 8.279908e+05 0.00 0.000000e+00 0.000 0.00 72 0.000000e+00 0.00 8.279908e+05 8.279908e+05 0.00 NULL
2024 Guttman Community College College Lab Technician 69517.00000 6.951700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.951700e+04 6.951700e+04 0.00 NULL
2024 Guttman Community College College Security Director 125213.00000 1.252130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.252130e+05 1.252130e+05 0.00 NULL
2024 Guttman Community College Computer Systems Manager 115796.50000 2.315930e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.315930e+05 2.315930e+05 0.00 NULL
2024 Guttman Community College Continuing Education Teacher 2604.33187 2.083465e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 2.083465e+04 2.083465e+04 0.00 NULL
2024 Guttman Community College Cuny Administrator Assistant 49155.00000 4.915500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.915500e+04 4.915500e+04 0.00 NULL
2024 Guttman Community College Cuny Office Assistant 37915.00000 3.791500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.791500e+04 3.791500e+04 0.00 NULL
2024 Guttman Community College Dean 156033.33333 4.681000e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.681000e+05 4.681000e+05 0.00 NULL
2024 Guttman Community College Disability Accommodations Specialist 32874.17500 9.862252e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.862252e+04 9.862252e+04 0.00 NULL
2024 Guttman Community College Higher Education Assistant 84666.72414 2.455335e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 2.455335e+06 2.455335e+06 0.00 NULL
2024 Guttman Community College Higher Education Associate 102178.64706 1.737037e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 1.737037e+06 1.737037e+06 0.00 NULL
2024 Guttman Community College Higher Education Officer 129110.93333 1.936664e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 1.936664e+06 1.936664e+06 0.00 NULL
2024 Guttman Community College Instructor NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2024 Guttman Community College It Assistant 55608.00000 1.112160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.112160e+05 1.112160e+05 0.00 NULL
2024 Guttman Community College It Associate 77187.66667 2.315630e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.315630e+05 2.315630e+05 0.00 NULL
2024 Guttman Community College It Senior Associate 95448.50000 1.908970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.908970e+05 1.908970e+05 0.00 NULL
2024 Guttman Community College It Support Assistant 43990.00000 4.399000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.399000e+04 4.399000e+04 0.00 NULL
2024 Guttman Community College Lecturer NA NA 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 NA NA NA NULL
2024 Guttman Community College Lecturer/Doctoral Schedule 84063.50000 3.362540e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.362540e+05 3.362540e+05 0.00 NULL
2024 Guttman Community College Non-Teaching Adjunct I 3978.33088 1.352632e+05 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 1.352632e+05 1.352632e+05 0.00 NULL
2024 Guttman Community College Non-Teaching Adjunct Ii 10676.25500 7.473379e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.473379e+04 7.473379e+04 0.00 NULL
2024 Guttman Community College Non-Teaching Adjunct Iii 4268.55368 8.110252e+04 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 8.110252e+04 8.110252e+04 0.00 NULL
2024 Guttman Community College Non-Teaching Adjunct Iv 5954.44167 1.071799e+05 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.071799e+05 1.071799e+05 0.00 NULL
2024 Guttman Community College Non-Teaching Adjunct V 6372.74400 9.559116e+04 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 9.559116e+04 9.559116e+04 0.00 NULL
2024 Guttman Community College President 260100.00000 2.601000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.601000e+05 2.601000e+05 0.00 NULL
2024 Guttman Community College Professor NA NA 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 NA NA NA NULL
2024 Guttman Community College Student Aide 3291.96429 1.152188e+05 0.00 0.000000e+00 0.000 0.00 35 0.000000e+00 0.00 1.152188e+05 1.152188e+05 0.00 NULL
2024 Guttman Community College Vice President 180000.00000 1.800000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.800000e+05 1.800000e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt *Attorney At Law 103039.56000 8.243165e+05 14658.68 1.832335e+03 0.000 155.75 8 0.000000e+00 0.00 8.389752e+05 8.243165e+05 14658.68 NULL
2024 Housing Preservation & Dvlpmnt *Senior Estimator 93908.00000 9.390800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.390800e+04 9.390800e+04 0.00 NULL
2024 Housing Preservation & Dvlpmnt Accountant 70427.79310 2.042406e+06 1276.16 4.400552e+01 0.000 29.75 29 0.000000e+00 0.00 2.043682e+06 2.042406e+06 1276.16 NULL
2024 Housing Preservation & Dvlpmnt Adm Manager-Non-Mgrl 93988.82064 9.586860e+06 197548.26 1.936748e+03 0.000 2879.50 102 0.000000e+00 0.00 9.784408e+06 9.586860e+06 197548.26 NULL
2024 Housing Preservation & Dvlpmnt Admin Community Relations Specialist 90528.26189 4.164300e+06 79969.27 1.738462e+03 0.000 1303.50 46 0.000000e+00 0.00 4.244269e+06 4.164300e+06 79969.27 NULL
2024 Housing Preservation & Dvlpmnt Admin Construction Project Manager 150538.00000 1.505380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.505380e+05 1.505380e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Admin Housing Development Spec 114029.76190 4.789250e+06 91642.98 2.181976e+03 0.000 1429.75 42 0.000000e+00 0.00 4.880893e+06 4.789250e+06 91642.98 NULL
2024 Housing Preservation & Dvlpmnt Administrative Accountant 99295.00000 8.936550e+05 487.78 5.419778e+01 0.000 10.00 9 0.000000e+00 0.00 8.941428e+05 8.936550e+05 487.78 NULL
2024 Housing Preservation & Dvlpmnt Administrative Architect 126537.00000 1.265370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.265370e+05 1.265370e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Administrative Business Promotion Coordinator 104717.50000 2.094350e+05 202.36 1.011800e+02 101.180 4.00 2 1.011800e+02 202.36 2.096374e+05 2.096374e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Administrative City Planner 129815.33333 1.168338e+06 1397.57 1.552856e+02 0.000 16.25 9 0.000000e+00 0.00 1.169736e+06 1.168338e+06 1397.57 NULL
2024 Housing Preservation & Dvlpmnt Administrative Community Relations Specialist 198394.00000 1.983940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.983940e+05 1.983940e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Administrative Construction Project Manager 129437.00000 1.294370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.294370e+05 1.294370e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Administrative Engineer 132407.00000 2.648140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.648140e+05 2.648140e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Administrative Housing Development Specialist 161002.05882 2.737035e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.737035e+06 2.737035e+06 0.00 NULL
2024 Housing Preservation & Dvlpmnt Administrative Inspector 128438.41176 2.183453e+06 20809.16 1.224068e+03 0.000 302.88 17 0.000000e+00 0.00 2.204262e+06 2.183453e+06 20809.16 NULL
2024 Housing Preservation & Dvlpmnt Administrative Labor Relations Analyst 134691.50000 2.693830e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.693830e+05 2.693830e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Administrative Management Auditor 110870.50000 8.869640e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 8.869640e+05 8.869640e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Administrative Manager 168780.42857 1.181463e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.181463e+06 1.181463e+06 0.00 NULL
2024 Housing Preservation & Dvlpmnt Administrative Procurement Analyst 149449.00000 2.988980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.988980e+05 2.988980e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Administrative Procurement Analyst-Non-Mgrl 91309.36364 1.004403e+06 12810.43 1.164585e+03 0.000 234.75 11 0.000000e+00 0.00 1.017213e+06 1.004403e+06 12810.43 NULL
2024 Housing Preservation & Dvlpmnt Administrative Project Director 129486.77778 3.496143e+06 1734.97 6.425815e+01 0.000 15.00 27 0.000000e+00 0.00 3.497878e+06 3.496143e+06 1734.97 NULL
2024 Housing Preservation & Dvlpmnt Administrative Project Manager 125459.00000 8.782130e+05 4735.31 6.764729e+02 0.000 59.50 7 0.000000e+00 0.00 8.829483e+05 8.782130e+05 4735.31 NULL
2024 Housing Preservation & Dvlpmnt Administrative Public Information Specialist Nm Former M1/M2 122604.00000 1.226040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.226040e+05 1.226040e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Administrative Quality Assurance Specialist 119927.00000 1.199270e+05 2145.82 2.145820e+03 2145.820 26.75 1 2.145820e+03 2145.82 1.220728e+05 1.220728e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Administrative Real Property Manager 115723.25000 4.628930e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.628930e+05 4.628930e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Administrative Staff Analyst 131263.21875 8.400846e+06 22989.46 3.592103e+02 0.000 286.75 64 0.000000e+00 0.00 8.423835e+06 8.400846e+06 22989.46 NULL
2024 Housing Preservation & Dvlpmnt Agency Attorney 107061.37838 7.922542e+06 15421.74 2.084019e+02 0.000 210.50 74 0.000000e+00 0.00 7.937964e+06 7.922542e+06 15421.74 NULL
2024 Housing Preservation & Dvlpmnt Agency Attorney Interne 81793.00000 8.179300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.179300e+04 8.179300e+04 0.00 NULL
2024 Housing Preservation & Dvlpmnt Agency Chief Contracting Officer 151981.50000 3.039630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.039630e+05 3.039630e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Appraiser 86659.60000 4.332980e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.332980e+05 4.332980e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Architect 94120.50000 1.882410e+05 370.09 1.850450e+02 185.045 5.00 2 1.850450e+02 370.09 1.886111e+05 1.886111e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Assistant Architect 83784.75000 6.702780e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.702780e+05 6.702780e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Assistant Commissioner 164177.73333 2.462666e+06 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 2.462666e+06 2.462666e+06 0.00 NULL
2024 Housing Preservation & Dvlpmnt Assistant Electrical Engineer 82400.00000 8.240000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.240000e+04 8.240000e+04 0.00 NULL
2024 Housing Preservation & Dvlpmnt Assistant Mechanical Engineer 77361.00000 3.094440e+05 16706.82 4.176705e+03 2931.800 313.75 4 2.931800e+03 11727.20 3.261508e+05 3.211712e+05 4979.62 NULL
2024 Housing Preservation & Dvlpmnt Assistant Urban Designer 78472.83333 4.708370e+05 1125.29 1.875483e+02 0.000 24.75 6 0.000000e+00 0.00 4.719623e+05 4.708370e+05 1125.29 NULL
2024 Housing Preservation & Dvlpmnt Associate Housing Development Specialist 102968.53571 1.153248e+07 162921.48 1.454656e+03 0.000 2474.25 112 0.000000e+00 0.00 1.169540e+07 1.153248e+07 162921.48 NULL
2024 Housing Preservation & Dvlpmnt Associate Inspector 81238.13235 5.524193e+06 225808.70 3.320716e+03 602.265 3185.14 68 6.022650e+02 40954.02 5.750002e+06 5.565147e+06 184854.68 NULL
2024 Housing Preservation & Dvlpmnt Associate Investigator 73572.83333 4.414370e+05 1212.75 2.021250e+02 0.000 22.00 6 0.000000e+00 0.00 4.426498e+05 4.414370e+05 1212.75 NULL
2024 Housing Preservation & Dvlpmnt Associate Project Manager 96649.40000 4.832470e+05 18836.58 3.767316e+03 0.000 279.75 5 0.000000e+00 0.00 5.020836e+05 4.832470e+05 18836.58 NULL
2024 Housing Preservation & Dvlpmnt Associate Public Records Officer 87576.00000 8.757600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.757600e+04 8.757600e+04 0.00 NULL
2024 Housing Preservation & Dvlpmnt Associate Quality Assurance Specialist 83287.00000 8.328700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.328700e+04 8.328700e+04 0.00 NULL
2024 Housing Preservation & Dvlpmnt Associate Real Property Manager 80687.19048 1.694431e+06 28876.69 1.375080e+03 0.000 434.25 21 0.000000e+00 0.00 1.723308e+06 1.694431e+06 28876.69 NULL
2024 Housing Preservation & Dvlpmnt Associate Rehabilitation Specialist 81826.50000 1.636530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.636530e+05 1.636530e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Associate Staff Analyst 100972.04118 1.716525e+06 109.96 6.468235e+00 0.000 1.50 17 0.000000e+00 0.00 1.716635e+06 1.716525e+06 109.96 NULL
2024 Housing Preservation & Dvlpmnt Associate Urban Designer 85859.50000 1.717190e+05 21.15 1.057500e+01 10.575 0.00 2 1.057500e+01 21.15 1.717401e+05 1.717401e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Asst Commissioner 168838.00000 1.688380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.688380e+05 1.688380e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Certified It Administrator 135192.33333 4.055770e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.055770e+05 4.055770e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Certified It Developer 130089.75000 5.203590e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.203590e+05 5.203590e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt City Planner 104145.47368 3.957528e+06 5064.51 1.332766e+02 0.000 82.50 38 0.000000e+00 0.00 3.962593e+06 3.957528e+06 5064.51 NULL
2024 Housing Preservation & Dvlpmnt City Research Scientist 104923.81818 1.154162e+06 69.78 6.343636e+00 0.000 1.50 11 0.000000e+00 0.00 1.154232e+06 1.154162e+06 69.78 NULL
2024 Housing Preservation & Dvlpmnt Civil Engineer 104290.50000 2.085810e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.085810e+05 2.085810e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Clerical Associate 54170.93714 4.550359e+06 52985.75 6.307827e+02 0.000 1532.25 84 0.000000e+00 0.00 4.603344e+06 4.550359e+06 52985.75 NULL
2024 Housing Preservation & Dvlpmnt College Aide 11787.44912 9.429959e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.429959e+04 9.429959e+04 0.00 NULL
2024 Housing Preservation & Dvlpmnt Commissioner Of Housing Preservation & Development 260388.00000 5.207760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.207760e+05 5.207760e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Community Assistant 46453.56231 6.038963e+05 10235.98 7.873831e+02 0.000 397.25 13 0.000000e+00 0.00 6.141323e+05 6.038963e+05 10235.98 NULL
2024 Housing Preservation & Dvlpmnt Community Associate 51455.41489 1.934724e+07 185756.34 4.940328e+02 0.000 5560.50 376 0.000000e+00 0.00 1.953299e+07 1.934724e+07 185756.34 NULL
2024 Housing Preservation & Dvlpmnt Community Coordinator 74003.48791 3.367159e+07 330890.31 7.272315e+02 0.000 6575.25 455 0.000000e+00 0.00 3.400248e+07 3.367159e+07 330890.31 NULL
2024 Housing Preservation & Dvlpmnt Community Service Aide 34738.19737 1.042146e+05 265.19 8.839667e+01 0.000 11.25 3 0.000000e+00 0.00 1.044798e+05 1.042146e+05 265.19 NULL
2024 Housing Preservation & Dvlpmnt Computer Associate 96086.64000 2.402166e+06 712.94 2.851760e+01 0.000 12.00 25 0.000000e+00 0.00 2.402879e+06 2.402166e+06 712.94 NULL
2024 Housing Preservation & Dvlpmnt Computer Operations Manager 123204.16667 7.392250e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.392250e+05 7.392250e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Computer Specialist 118674.45455 9.137933e+06 24420.59 3.171505e+02 0.000 279.00 77 0.000000e+00 0.00 9.162354e+06 9.137933e+06 24420.59 NULL
2024 Housing Preservation & Dvlpmnt Computer Systems Manager 146751.66667 5.283060e+06 0.00 0.000000e+00 0.000 0.00 36 0.000000e+00 0.00 5.283060e+06 5.283060e+06 0.00 NULL
2024 Housing Preservation & Dvlpmnt Confidential Strategy Planner 88951.00000 5.337060e+05 4368.24 7.280400e+02 10.425 63.00 6 1.042500e+01 62.55 5.380742e+05 5.337686e+05 4305.69 NULL
2024 Housing Preservation & Dvlpmnt Construction Project Manager 88955.44000 1.779109e+07 747547.56 3.737738e+03 46.450 11698.75 200 4.645000e+01 9290.00 1.853864e+07 1.780038e+07 738257.56 NULL
2024 Housing Preservation & Dvlpmnt Customer Information Representative Ma L 1549 66012.20000 1.320244e+06 19838.20 9.919100e+02 3.160 499.25 20 3.160000e+00 63.20 1.340082e+06 1.320307e+06 19775.00 NULL
2024 Housing Preservation & Dvlpmnt Deputy Commissioner 235511.00000 4.710220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.710220e+05 4.710220e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Deputy General Counsel 195255.00000 5.857650e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.857650e+05 5.857650e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Director Of Management & Planning 122152.00000 1.221520e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.221520e+05 1.221520e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Director Of Property Management 135945.50000 2.718910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.718910e+05 2.718910e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Economist 87574.00000 8.757400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.757400e+04 8.757400e+04 0.00 NULL
2024 Housing Preservation & Dvlpmnt Electrician NA NA 31639.51 3.163951e+04 31639.510 312.50 1 3.163951e+04 31639.51 NA NA NA NULL
2024 Housing Preservation & Dvlpmnt Estimator 86138.50000 1.722770e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.722770e+05 1.722770e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Executive Agency Counsel 149220.50000 5.073497e+06 0.00 0.000000e+00 0.000 0.00 34 0.000000e+00 0.00 5.073497e+06 5.073497e+06 0.00 NULL
2024 Housing Preservation & Dvlpmnt Executive Assistant To The Deputy Commissioner 112173.00000 3.365190e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.365190e+05 3.365190e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Executive Program Specialist 149587.00000 2.991740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.991740e+05 2.991740e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt General Counsel 230329.00000 2.303290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.303290e+05 2.303290e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt High School Student Aide 5819.04000 1.163808e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.163808e+04 1.163808e+04 0.00 NULL
2024 Housing Preservation & Dvlpmnt Housing Development Specialist 86084.28125 8.264091e+06 196152.76 2.043258e+03 0.000 3173.75 96 0.000000e+00 0.00 8.460244e+06 8.264091e+06 196152.76 NULL
2024 Housing Preservation & Dvlpmnt Inspector 67500.01876 3.597751e+07 665316.92 1.248249e+03 12.120 12152.23 533 1.212000e+01 6459.96 3.664283e+07 3.598397e+07 658856.96 NULL
2024 Housing Preservation & Dvlpmnt Investigator 78555.16667 9.426620e+05 1527.21 1.272675e+02 0.000 36.25 12 0.000000e+00 0.00 9.441892e+05 9.426620e+05 1527.21 NULL
2024 Housing Preservation & Dvlpmnt Lead Abatement Worker 60638.00000 6.063800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.063800e+04 6.063800e+04 0.00 NULL
2024 Housing Preservation & Dvlpmnt Legislative Assistant 97880.50000 1.957610e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.957610e+05 1.957610e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Management Auditor 83019.00000 3.320760e+05 12922.28 3.230570e+03 0.000 225.00 4 0.000000e+00 0.00 3.449983e+05 3.320760e+05 12922.28 NULL
2024 Housing Preservation & Dvlpmnt Mechanical Engineer 112551.00000 1.125510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.125510e+05 1.125510e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Multiple Dwelling Specialist 85083.00000 1.701660e+05 309.80 1.549000e+02 154.900 2.50 2 1.549000e+02 309.80 1.704758e+05 1.704758e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Paralegal Aide 62937.00000 1.888110e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.888110e+05 1.888110e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Principal Administrative Associate - Non Supvr 68261.77301 1.112667e+07 169708.01 1.041153e+03 0.000 3281.00 163 0.000000e+00 0.00 1.129638e+07 1.112667e+07 169708.01 NULL
2024 Housing Preservation & Dvlpmnt Principal Appraiser 126534.50000 2.530690e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.530690e+05 2.530690e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Procurement Analyst 76731.14286 1.074236e+06 7996.04 5.711457e+02 0.000 172.25 14 0.000000e+00 0.00 1.082232e+06 1.074236e+06 7996.04 NULL
2024 Housing Preservation & Dvlpmnt Project Manager 73878.00000 7.387800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.387800e+04 7.387800e+04 0.00 NULL
2024 Housing Preservation & Dvlpmnt Quality Assurance Specialist 61383.66667 3.683020e+05 3372.46 5.620767e+02 0.000 105.75 6 0.000000e+00 0.00 3.716745e+05 3.683020e+05 3372.46 NULL
2024 Housing Preservation & Dvlpmnt Real Property Manager 66186.64286 9.266130e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 9.266130e+05 9.266130e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Repair Crew Chief 49153.00000 4.915300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.915300e+04 4.915300e+04 0.00 NULL
2024 Housing Preservation & Dvlpmnt Repair Shop Manager 88249.00000 8.824900e+04 44985.32 4.498532e+04 44985.320 687.75 1 4.498532e+04 44985.32 1.332343e+05 1.332343e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Research Assistant 67711.50000 1.354230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.354230e+05 1.354230e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Secretary 55439.63636 6.098360e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 6.098360e+05 6.098360e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Secretary Of The Department 168838.00000 1.688380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.688380e+05 1.688380e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Senior Repair Crew Chief 62996.27273 6.929590e+05 234887.29 2.135339e+04 10941.120 4782.58 11 1.094112e+04 120352.32 9.278463e+05 8.133113e+05 114534.97 NULL
2024 Housing Preservation & Dvlpmnt Special Assistant To The Commissioner 206876.00000 2.068760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.068760e+05 2.068760e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Staff Analyst 75772.84615 9.850470e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 9.850470e+05 9.850470e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Strategic Initiative Specialist 115963.44444 1.043671e+06 1004.92 1.116578e+02 0.000 16.50 9 0.000000e+00 0.00 1.044676e+06 1.043671e+06 1004.92 NULL
2024 Housing Preservation & Dvlpmnt Supervising Demolition Inspector 91695.75000 3.667830e+05 51514.54 1.287864e+04 16587.515 790.00 4 1.287864e+04 51514.54 4.182975e+05 4.182975e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Supervisor Of Electrical Installations & Maintenance 99416.25000 3.976650e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.976650e+05 3.976650e+05 0.00 NULL
2024 Housing Preservation & Dvlpmnt Supervisor Of Mechanical Installations & Maintenance 91027.00000 6.371890e+05 41278.09 5.896870e+03 0.000 576.25 7 0.000000e+00 0.00 6.784671e+05 6.371890e+05 41278.09 NULL
2024 Housing Preservation & Dvlpmnt Supervisor Of Stock Workers 68166.00000 1.363320e+05 9586.45 4.793225e+03 4793.225 213.00 2 4.793225e+03 9586.45 1.459185e+05 1.459185e+05 0.00 NULL
2024 Hra/Dept Of Social Services *Attorney At Law 101456.00000 1.014560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.014560e+05 1.014560e+05 0.00 NULL
2024 Hra/Dept Of Social Services *Certified Applications Developer 145836.00000 1.458360e+05 805.30 8.053000e+02 805.300 10.00 1 8.053000e+02 805.30 1.466413e+05 1.466413e+05 0.00 NULL
2024 Hra/Dept Of Social Services *Certified Database Administrator 129646.00000 1.296460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.296460e+05 1.296460e+05 0.00 NULL
2024 Hra/Dept Of Social Services *Certified Local Area Network Administrator 111411.40000 1.114114e+06 72015.62 7.201562e+03 5527.475 926.50 10 5.527475e+03 55274.75 1.186130e+06 1.169389e+06 16740.87 NULL
2024 Hra/Dept Of Social Services Accountant 71474.33333 4.288460e+05 26954.34 4.492390e+03 0.000 635.00 6 0.000000e+00 0.00 4.558003e+05 4.288460e+05 26954.34 NULL
2024 Hra/Dept Of Social Services Adm Manager-Non-Mgrl 88460.03125 1.132288e+07 808928.24 6.319752e+03 721.010 12863.00 128 7.210100e+02 92289.28 1.213181e+07 1.141517e+07 716638.96 NULL
2024 Hra/Dept Of Social Services Admin Community Relations Specialist 107142.88889 4.821430e+06 274924.24 6.109428e+03 0.000 3724.50 45 0.000000e+00 0.00 5.096354e+06 4.821430e+06 274924.24 NULL
2024 Hra/Dept Of Social Services Admin Construction Project Manager 133388.00000 1.333880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.333880e+05 1.333880e+05 0.00 NULL
2024 Hra/Dept Of Social Services Admin Contract Specialist 133060.50000 5.322420e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.322420e+05 5.322420e+05 0.00 NULL
2024 Hra/Dept Of Social Services Admin Housing Development Spec 83639.00000 8.363900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.363900e+04 8.363900e+04 0.00 NULL
2024 Hra/Dept Of Social Services Admin Job Opor Spec-Managerial 160918.33333 3.379285e+06 -1831.37 -8.720810e+01 0.000 0.00 21 -8.720810e+01 -1831.37 3.377454e+06 3.377454e+06 0.00 NULL
2024 Hra/Dept Of Social Services Admin Job Opportunity Spec Nm 94797.50000 7.962990e+06 1177337.39 1.401592e+04 10896.835 16918.75 84 1.089683e+04 915334.14 9.140327e+06 8.878324e+06 262003.25 NULL
2024 Hra/Dept Of Social Services Administrative Accountant 108550.71429 1.519710e+06 19366.30 1.383307e+03 0.000 366.50 14 0.000000e+00 0.00 1.539076e+06 1.519710e+06 19366.30 NULL
2024 Hra/Dept Of Social Services Administrative Architect 162078.00000 1.620780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.620780e+05 1.620780e+05 0.00 NULL
2024 Hra/Dept Of Social Services Administrative Business Promotion Coordinator 139282.00000 1.392820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.392820e+05 1.392820e+05 0.00 NULL
2024 Hra/Dept Of Social Services Administrative City Planner 123266.00000 1.232660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.232660e+05 1.232660e+05 0.00 NULL
2024 Hra/Dept Of Social Services Administrative Community Relations Specialist 190637.25000 7.625490e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.625490e+05 7.625490e+05 0.00 NULL
2024 Hra/Dept Of Social Services Administrative Construction Project Manager 138607.00000 1.386070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.386070e+05 1.386070e+05 0.00 NULL
2024 Hra/Dept Of Social Services Administrative Contract Specialist 100735.00000 1.309555e+06 2049.50 1.576538e+02 0.000 30.75 13 0.000000e+00 0.00 1.311604e+06 1.309555e+06 2049.50 NULL
2024 Hra/Dept Of Social Services Administrative Director Of Social Services 126924.42021 2.386179e+07 1112666.35 5.918438e+03 0.000 14420.00 188 0.000000e+00 0.00 2.497446e+07 2.386179e+07 1112666.35 NULL
2024 Hra/Dept Of Social Services Administrative Engineer 135498.00000 1.354980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.354980e+05 1.354980e+05 0.00 NULL
2024 Hra/Dept Of Social Services Administrative Graphic Artist 108810.00000 3.264300e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.264300e+05 3.264300e+05 0.00 NULL
2024 Hra/Dept Of Social Services Administrative Investigator 110246.19512 4.520094e+06 90725.45 2.212816e+03 0.000 1342.50 41 0.000000e+00 0.00 4.610819e+06 4.520094e+06 90725.45 NULL
2024 Hra/Dept Of Social Services Administrative Labor Relations Analyst 133552.50000 2.671050e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.671050e+05 2.671050e+05 0.00 NULL
2024 Hra/Dept Of Social Services Administrative Management Auditor 114385.06250 1.830161e+06 2.02 1.262500e-01 0.000 0.00 16 0.000000e+00 0.00 1.830163e+06 1.830161e+06 2.02 NULL
2024 Hra/Dept Of Social Services Administrative Manager 138453.75000 5.538150e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.538150e+05 5.538150e+05 0.00 NULL
2024 Hra/Dept Of Social Services Administrative Printing Services Manager 132179.33333 3.965380e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.965380e+05 3.965380e+05 0.00 NULL
2024 Hra/Dept Of Social Services Administrative Procurement Analyst 139693.80000 6.984690e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.984690e+05 6.984690e+05 0.00 NULL
2024 Hra/Dept Of Social Services Administrative Procurement Analyst-Non-Mgrl 94178.81250 3.013722e+06 37615.60 1.175487e+03 0.000 727.50 32 0.000000e+00 0.00 3.051338e+06 3.013722e+06 37615.60 NULL
2024 Hra/Dept Of Social Services Administrative Public Information Specialist 139630.85714 9.774160e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 9.774160e+05 9.774160e+05 0.00 NULL
2024 Hra/Dept Of Social Services Administrative Public Information Specialist Nm Former M1/M2 105068.75000 4.202750e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.202750e+05 4.202750e+05 0.00 NULL
2024 Hra/Dept Of Social Services Administrative Retirement Benefits Specialist 148866.00000 1.488660e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.488660e+05 1.488660e+05 0.00 NULL
2024 Hra/Dept Of Social Services Administrative Space Analyst 97486.50000 7.798920e+05 185.12 2.314000e+01 0.000 3.75 8 0.000000e+00 0.00 7.800771e+05 7.798920e+05 185.12 NULL
2024 Hra/Dept Of Social Services Administrative Staff Analyst 119507.49457 4.397876e+07 350288.61 9.518712e+02 0.000 4870.75 368 0.000000e+00 0.00 4.432905e+07 4.397876e+07 350288.61 NULL
2024 Hra/Dept Of Social Services Administrative Storekeeper 126632.40000 6.331620e+05 6618.36 1.323672e+03 0.000 159.75 5 0.000000e+00 0.00 6.397804e+05 6.331620e+05 6618.36 NULL
2024 Hra/Dept Of Social Services Administrative Supervisor Of Building Maintenance 144451.85714 1.011163e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.011163e+06 1.011163e+06 0.00 NULL
2024 Hra/Dept Of Social Services Agency Attorney 89165.33333 7.222392e+06 8041.66 9.927975e+01 0.000 139.25 81 0.000000e+00 0.00 7.230434e+06 7.222392e+06 8041.66 NULL
2024 Hra/Dept Of Social Services Agency Attorney Interne 70997.27273 1.561940e+06 557.42 2.533727e+01 0.000 14.00 22 0.000000e+00 0.00 1.562497e+06 1.561940e+06 557.42 NULL
2024 Hra/Dept Of Social Services Agency Chief Contracting Officer 235351.00000 2.353510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.353510e+05 2.353510e+05 0.00 NULL
2024 Hra/Dept Of Social Services Architect 101451.16667 6.087070e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.087070e+05 6.087070e+05 0.00 NULL
2024 Hra/Dept Of Social Services Assist Commissioner For Policy Analysis & Prog Deve 174064.00000 1.740640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.740640e+05 1.740640e+05 0.00 NULL
2024 Hra/Dept Of Social Services Assistant Architect 75425.33333 2.262760e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.262760e+05 2.262760e+05 0.00 NULL
2024 Hra/Dept Of Social Services Assistant Commissioner 178812.16667 1.072873e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.072873e+06 1.072873e+06 0.00 NULL
2024 Hra/Dept Of Social Services Assistant Deputy Administrator 206652.00000 1.033260e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.033260e+06 1.033260e+06 0.00 NULL
2024 Hra/Dept Of Social Services Assistant Deputy Commissioner Ss 164800.00000 3.296000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.296000e+05 3.296000e+05 0.00 NULL
2024 Hra/Dept Of Social Services Assistant Printing Press Operator 68483.50000 1.369670e+05 5897.46 2.948730e+03 2948.730 121.00 2 2.948730e+03 5897.46 1.428645e+05 1.428645e+05 0.00 NULL
2024 Hra/Dept Of Social Services Assistant Superintendent Of Welfare Shelters 73007.14286 5.110500e+05 908.07 1.297243e+02 126.090 0.00 7 1.260900e+02 882.63 5.119581e+05 5.119326e+05 25.44 NULL
2024 Hra/Dept Of Social Services Associate Benefits Opportunity Specialist 71461.22720 4.623541e+07 14180606.63 2.191748e+04 17382.620 276402.61 647 1.738262e+04 11246555.14 6.041602e+07 5.748197e+07 2934051.49 NULL
2024 Hra/Dept Of Social Services Associate Commissioner For Personnel Service 208219.00000 2.082190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.082190e+05 2.082190e+05 0.00 NULL
2024 Hra/Dept Of Social Services Associate Contract Specialist 88383.00000 3.535320e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.535320e+05 3.535320e+05 0.00 NULL
2024 Hra/Dept Of Social Services Associate Fraud Investigator 81363.77114 1.635412e+07 908814.20 4.521464e+03 0.000 15522.75 201 0.000000e+00 0.00 1.726293e+07 1.635412e+07 908814.20 NULL
2024 Hra/Dept Of Social Services Associate Housing Development Specialist 106069.55556 9.546260e+05 51.44 5.715556e+00 0.000 1.00 9 0.000000e+00 0.00 9.546774e+05 9.546260e+05 51.44 NULL
2024 Hra/Dept Of Social Services Associate Job Opportunity Specialist 71383.14545 3.926073e+06 163315.96 2.969381e+03 0.000 2987.00 55 0.000000e+00 0.00 4.089389e+06 3.926073e+06 163315.96 NULL
2024 Hra/Dept Of Social Services Associate Labor Relations Analyst 94134.50000 3.765380e+05 140492.70 3.512318e+04 44317.770 2053.00 4 3.512318e+04 140492.70 5.170307e+05 5.170307e+05 0.00 NULL
2024 Hra/Dept Of Social Services Associate Staff Analyst 88432.90276 2.246196e+07 297605.16 1.171674e+03 0.000 4570.25 254 0.000000e+00 0.00 2.275956e+07 2.246196e+07 297605.16 NULL
2024 Hra/Dept Of Social Services Asst Commissioner For Public & Legis Affairs 163909.00000 1.639090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.639090e+05 1.639090e+05 0.00 NULL
2024 Hra/Dept Of Social Services Benefits Opportunity Specialist 54931.11616 9.552521e+07 21432363.50 1.232453e+04 5885.540 531094.42 1739 5.885540e+03 10234954.06 1.169576e+08 1.057602e+08 11197409.44 NULL
2024 Hra/Dept Of Social Services Bookbinder 47895.00000 4.789500e+04 7149.78 7.149780e+03 7149.780 203.00 1 7.149780e+03 7149.78 5.504478e+04 5.504478e+04 0.00 NULL
2024 Hra/Dept Of Social Services Bookkeeper 56497.14103 4.406777e+06 507955.21 6.512246e+03 31.130 11376.25 78 3.113000e+01 2428.14 4.914732e+06 4.409205e+06 505527.07 NULL
2024 Hra/Dept Of Social Services Business Promotion Coordinator 95619.33333 2.868580e+05 461.12 1.537067e+02 230.560 0.00 3 1.537067e+02 461.12 2.873191e+05 2.873191e+05 0.00 NULL
2024 Hra/Dept Of Social Services Carpenter NA NA 252246.17 1.096722e+04 5873.490 2389.00 23 5.873490e+03 135090.27 NA NA NA NULL
2024 Hra/Dept Of Social Services Caseworker 51578.40000 5.493100e+07 4652126.99 4.368194e+03 74.430 113380.65 1065 7.443000e+01 79267.95 5.958312e+07 5.501026e+07 4572859.04 NULL
2024 Hra/Dept Of Social Services Cement Mason NA NA 16462.04 5.487347e+03 6929.920 124.00 3 5.487347e+03 16462.04 NA NA NA NULL
2024 Hra/Dept Of Social Services Certified It Administrator 114210.80000 3.997378e+06 213328.71 6.095106e+03 0.000 2606.50 35 0.000000e+00 0.00 4.210707e+06 3.997378e+06 213328.71 NULL
2024 Hra/Dept Of Social Services Certified It Developer 125974.00000 7.558440e+05 16484.47 2.747412e+03 802.785 223.25 6 8.027850e+02 4816.71 7.723285e+05 7.606607e+05 11667.76 NULL
2024 Hra/Dept Of Social Services Chief Of Staff 195358.66667 5.860760e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.860760e+05 5.860760e+05 0.00 NULL
2024 Hra/Dept Of Social Services City Custodial Assistant 41548.00000 4.154800e+04 771.48 7.714800e+02 771.480 26.50 1 7.714800e+02 771.48 4.231948e+04 4.231948e+04 0.00 NULL
2024 Hra/Dept Of Social Services City Laborer NA NA 319594.09 1.597970e+04 8808.750 5421.50 20 8.808750e+03 176175.00 NA NA NA NULL
2024 Hra/Dept Of Social Services City Research Scientist 102284.42553 9.614736e+06 10047.47 1.068880e+02 0.000 203.00 94 0.000000e+00 0.00 9.624783e+06 9.614736e+06 10047.47 NULL
2024 Hra/Dept Of Social Services Clerical Aide 40419.00000 1.212570e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.212570e+05 1.212570e+05 0.00 NULL
2024 Hra/Dept Of Social Services Clerical Associate 46765.78163 3.105248e+07 2660219.09 4.006354e+03 0.000 75093.80 664 0.000000e+00 0.00 3.371270e+07 3.105248e+07 2660219.09 NULL
2024 Hra/Dept Of Social Services Community Assistant 42270.34286 1.479462e+06 61558.11 1.758803e+03 0.000 2103.00 35 0.000000e+00 0.00 1.541020e+06 1.479462e+06 61558.11 NULL
2024 Hra/Dept Of Social Services Community Associate 54547.22034 1.729147e+07 1232536.08 3.888126e+03 0.000 29658.89 317 0.000000e+00 0.00 1.852400e+07 1.729147e+07 1232536.08 NULL
2024 Hra/Dept Of Social Services Community Coordinator 73358.22575 2.838963e+07 1393427.66 3.600588e+03 0.000 27809.50 387 0.000000e+00 0.00 2.978306e+07 2.838963e+07 1393427.66 NULL
2024 Hra/Dept Of Social Services Computer Aide-Non-Spvr 52193.00000 2.087720e+05 19505.33 4.876333e+03 2732.300 494.50 4 2.732300e+03 10929.20 2.282773e+05 2.197012e+05 8576.13 NULL
2024 Hra/Dept Of Social Services Computer Associate 81327.02521 9.677916e+06 428912.04 3.604303e+03 0.000 6886.75 119 0.000000e+00 0.00 1.010683e+07 9.677916e+06 428912.04 NULL
2024 Hra/Dept Of Social Services Computer Operations Manager 146980.66667 1.322826e+06 8576.73 9.529700e+02 142.920 107.25 9 1.429200e+02 1286.28 1.331403e+06 1.324112e+06 7290.45 NULL
2024 Hra/Dept Of Social Services Computer Programmer Analyst 57664.00000 5.766400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.766400e+04 5.766400e+04 0.00 NULL
2024 Hra/Dept Of Social Services Computer Service Technician 53096.81818 5.840650e+05 37947.78 3.449798e+03 1505.360 1055.25 11 1.505360e+03 16558.96 6.220128e+05 6.006240e+05 21388.82 NULL
2024 Hra/Dept Of Social Services Computer Specialist 116587.48553 3.625871e+07 1194442.72 3.840652e+03 0.000 15022.75 311 0.000000e+00 0.00 3.745315e+07 3.625871e+07 1194442.72 NULL
2024 Hra/Dept Of Social Services Computer Systems Manager 150398.19828 1.744619e+07 472373.60 4.072186e+03 0.000 5034.25 116 0.000000e+00 0.00 1.791856e+07 1.744619e+07 472373.60 NULL
2024 Hra/Dept Of Social Services Confidential Agency Investigator 120201.00000 2.404020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.404020e+05 2.404020e+05 0.00 NULL
2024 Hra/Dept Of Social Services Confidential Strategy Planner 92179.40000 4.608970e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.608970e+05 4.608970e+05 0.00 NULL
2024 Hra/Dept Of Social Services Construction Project Manager 104471.00000 2.089420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.089420e+05 2.089420e+05 0.00 NULL
2024 Hra/Dept Of Social Services Consultant 84582.00000 5.074920e+05 1674.53 2.790883e+02 0.000 52.50 6 0.000000e+00 0.00 5.091665e+05 5.074920e+05 1674.53 NULL
2024 Hra/Dept Of Social Services Contract Specialist 62594.00000 6.259400e+05 68720.40 6.872040e+03 0.000 1512.25 10 0.000000e+00 0.00 6.946604e+05 6.259400e+05 68720.40 NULL
2024 Hra/Dept Of Social Services Custodian 49534.56977 4.259973e+06 907531.69 1.055269e+04 8265.745 23878.25 86 8.265745e+03 710854.07 5.167505e+06 4.970827e+06 196677.62 NULL
2024 Hra/Dept Of Social Services Cyber Security Analyst 91803.50000 5.508210e+05 149.34 2.489000e+01 0.000 0.00 6 0.000000e+00 0.00 5.509703e+05 5.508210e+05 149.34 NULL
2024 Hra/Dept Of Social Services Department Librarian 61533.00000 6.153300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.153300e+04 6.153300e+04 0.00 NULL
2024 Hra/Dept Of Social Services Deputy Assistant Commissioner 121919.00000 1.219190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.219190e+05 1.219190e+05 0.00 NULL
2024 Hra/Dept Of Social Services Deputy Asst Admin For Personnel Adm & Labor Rel 128750.00000 1.287500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.287500e+05 1.287500e+05 0.00 NULL
2024 Hra/Dept Of Social Services Deputy Commisioner 135000.00000 1.350000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.350000e+05 1.350000e+05 0.00 NULL
2024 Hra/Dept Of Social Services Deputy Commissioner 209799.25000 8.391970e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 8.391970e+05 8.391970e+05 0.00 NULL
2024 Hra/Dept Of Social Services Deputy Commissioner Of It 193716.50000 1.162299e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.162299e+06 1.162299e+06 0.00 NULL
2024 Hra/Dept Of Social Services Deputy Director Of Administration 139441.66667 1.673300e+06 14172.96 1.181080e+03 0.000 327.25 12 0.000000e+00 0.00 1.687473e+06 1.673300e+06 14172.96 NULL
2024 Hra/Dept Of Social Services Deputy Director Of Labor Relations 114413.50000 2.288270e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.288270e+05 2.288270e+05 0.00 NULL
2024 Hra/Dept Of Social Services Deputy Director Of Security 111196.00000 2.223920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.223920e+05 2.223920e+05 0.00 NULL
2024 Hra/Dept Of Social Services Deputy General Counsel 111395.00000 1.113950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.113950e+05 1.113950e+05 0.00 NULL
2024 Hra/Dept Of Social Services Dir Of Contract Mgmt & Intergovernmental Relations 140694.00000 1.406940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.406940e+05 1.406940e+05 0.00 NULL
2024 Hra/Dept Of Social Services Dir Of Home Care Services/Family And Adult Services 142187.00000 1.421870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.421870e+05 1.421870e+05 0.00 NULL
2024 Hra/Dept Of Social Services Dir Of Mgnt System, Planning, Research And Eval 154797.00000 1.547970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.547970e+05 1.547970e+05 0.00 NULL
2024 Hra/Dept Of Social Services Dir Policy Econom Resrch 104901.00000 2.098020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.098020e+05 2.098020e+05 0.00 NULL
2024 Hra/Dept Of Social Services Director Of Admin 242939.00000 2.429390e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.429390e+05 2.429390e+05 0.00 NULL
2024 Hra/Dept Of Social Services Director Of Administration 150207.33333 4.506220e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.506220e+05 4.506220e+05 0.00 NULL
2024 Hra/Dept Of Social Services Director Of Community Participation Programs 128347.00000 1.283470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.283470e+05 1.283470e+05 0.00 NULL
2024 Hra/Dept Of Social Services Director Of Compliance & Legislative Development 131127.00000 1.311270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.311270e+05 1.311270e+05 0.00 NULL
2024 Hra/Dept Of Social Services Director Of Eeo/Contract Compliance 208219.00000 2.082190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.082190e+05 2.082190e+05 0.00 NULL
2024 Hra/Dept Of Social Services Director Of Fiscal Operations 155688.00000 1.556880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.556880e+05 1.556880e+05 0.00 NULL
2024 Hra/Dept Of Social Services Director Of Food Stamp Program 202575.00000 2.025750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.025750e+05 2.025750e+05 0.00 NULL
2024 Hra/Dept Of Social Services Director Of Internal Auditing 121788.00000 1.217880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.217880e+05 1.217880e+05 0.00 NULL
2024 Hra/Dept Of Social Services Director Of Labor Relations 208219.00000 2.082190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.082190e+05 2.082190e+05 0.00 NULL
2024 Hra/Dept Of Social Services Director Of Legislative Coordination 132863.00000 2.657260e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.657260e+05 2.657260e+05 0.00 NULL
2024 Hra/Dept Of Social Services Director Of Management Design 144906.00000 1.449060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.449060e+05 1.449060e+05 0.00 NULL
2024 Hra/Dept Of Social Services Director Of Management Planning 132337.00000 1.323370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.323370e+05 1.323370e+05 0.00 NULL
2024 Hra/Dept Of Social Services Director Of Management Planning Ss 164939.00000 3.298780e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.298780e+05 3.298780e+05 0.00 NULL
2024 Hra/Dept Of Social Services Director Of Policy Analysis 174064.00000 1.740640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.740640e+05 1.740640e+05 0.00 NULL
2024 Hra/Dept Of Social Services Director Of Program Planning 149350.00000 1.493500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.493500e+05 1.493500e+05 0.00 NULL
2024 Hra/Dept Of Social Services Director Of Public Information 175579.00000 1.755790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.755790e+05 1.755790e+05 0.00 NULL
2024 Hra/Dept Of Social Services Electrician NA NA 61162.54 7.645318e+03 5060.800 625.50 8 5.060800e+03 40486.40 NA NA NA NULL
2024 Hra/Dept Of Social Services Electricians Helper NA NA 9736.47 2.434117e+03 1518.790 158.00 4 1.518790e+03 6075.16 NA NA NA NULL
2024 Hra/Dept Of Social Services Eligibility Specialist 47217.65522 1.140779e+08 16114940.49 6.670091e+03 680.090 441713.13 2416 6.800900e+02 1643097.44 1.301928e+08 1.157210e+08 14471843.05 NULL
2024 Hra/Dept Of Social Services Exec Asst To The Deputy Commissioner 144777.50000 2.895550e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.895550e+05 2.895550e+05 0.00 NULL
2024 Hra/Dept Of Social Services Executive Agency Counsel 150594.60377 7.981514e+06 0.00 0.000000e+00 0.000 0.00 53 0.000000e+00 0.00 7.981514e+06 7.981514e+06 0.00 NULL
2024 Hra/Dept Of Social Services Executive Assistant To The Commissioner Of Community Develop 228329.00000 2.283290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.283290e+05 2.283290e+05 0.00 NULL
2024 Hra/Dept Of Social Services Executive Assistant To The Executive Deputy Adm 128996.66667 3.869900e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.869900e+05 3.869900e+05 0.00 NULL
2024 Hra/Dept Of Social Services Executive Asst-Domestic Violence-Hra 69472.85714 4.863100e+05 12.32 1.760000e+00 0.000 0.00 7 0.000000e+00 0.00 4.863223e+05 4.863100e+05 12.32 NULL
2024 Hra/Dept Of Social Services Executive Deputy Administrator 225912.75000 9.036510e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 9.036510e+05 9.036510e+05 0.00 NULL
2024 Hra/Dept Of Social Services Executive Program Specialist 139839.00000 5.593560e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.593560e+05 5.593560e+05 0.00 NULL
2024 Hra/Dept Of Social Services Fraud Investigator 62471.10094 2.661269e+07 3049708.12 7.158939e+03 295.280 66073.75 426 2.952800e+02 125789.28 2.966240e+07 2.673848e+07 2923918.84 NULL
2024 Hra/Dept Of Social Services Graphic Artist 64739.46667 9.710920e+05 1410.33 9.402200e+01 0.000 27.00 15 0.000000e+00 0.00 9.725023e+05 9.710920e+05 1410.33 NULL
2024 Hra/Dept Of Social Services Head Nurse 106307.00000 1.063070e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.063070e+05 1.063070e+05 0.00 NULL
2024 Hra/Dept Of Social Services Health Services Manager Non Managerial Level I 99404.00000 1.988080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.988080e+05 1.988080e+05 0.00 NULL
2024 Hra/Dept Of Social Services Homemaker 39173.66667 1.175210e+05 91.71 3.057000e+01 39.200 0.00 3 3.057000e+01 91.71 1.176127e+05 1.176127e+05 0.00 NULL
2024 Hra/Dept Of Social Services Human Resources Administrator 277605.00000 2.776050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.776050e+05 2.776050e+05 0.00 NULL
2024 Hra/Dept Of Social Services Investigator 76895.30769 9.996390e+05 80294.34 6.176488e+03 0.000 1227.50 13 0.000000e+00 0.00 1.079933e+06 9.996390e+05 80294.34 NULL
2024 Hra/Dept Of Social Services It Project Specialist 125300.13158 1.904562e+07 933021.19 6.138297e+03 0.000 11257.42 152 0.000000e+00 0.00 1.997864e+07 1.904562e+07 933021.19 NULL
2024 Hra/Dept Of Social Services It Security Specialist 136591.00000 1.365910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.365910e+05 1.365910e+05 0.00 NULL
2024 Hra/Dept Of Social Services It Service Management Specialist 119242.50000 1.669395e+06 98566.16 7.040440e+03 0.000 1254.50 14 0.000000e+00 0.00 1.767961e+06 1.669395e+06 98566.16 NULL
2024 Hra/Dept Of Social Services Job Opportunity Specialist 52968.38411 7.998226e+06 278508.56 1.844428e+03 405.900 7389.75 151 4.059000e+02 61290.90 8.276735e+06 8.059517e+06 217217.66 NULL
2024 Hra/Dept Of Social Services Locksmith NA NA 406.34 1.354467e+02 191.220 8.50 3 1.354467e+02 406.34 NA NA NA NULL
2024 Hra/Dept Of Social Services Maintenance Worker NA NA 262.08 1.310400e+02 131.040 0.00 2 1.310400e+02 262.08 NA NA NA NULL
2024 Hra/Dept Of Social Services Management Auditor 77124.43750 2.467982e+06 307.34 9.604375e+00 0.000 0.00 32 0.000000e+00 0.00 2.468289e+06 2.467982e+06 307.34 NULL
2024 Hra/Dept Of Social Services Management Auditor Trainee 65649.00000 1.312980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.312980e+05 1.312980e+05 0.00 NULL
2024 Hra/Dept Of Social Services Mechanical Engineer 101450.00000 1.014500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.014500e+05 1.014500e+05 0.00 NULL
2024 Hra/Dept Of Social Services Medical Specialist 9705.43820 9.705438e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.705438e+03 9.705438e+03 0.00 NULL
2024 Hra/Dept Of Social Services Motor Vehicle Operator 55713.00000 6.128430e+05 62906.54 5.718776e+03 744.680 1606.25 11 7.446800e+02 8191.48 6.757495e+05 6.210345e+05 54715.06 NULL
2024 Hra/Dept Of Social Services Motor Vehicle Supervisor 65531.83333 3.931910e+05 34794.68 5.799113e+03 4492.805 760.00 6 4.492805e+03 26956.83 4.279857e+05 4.201478e+05 7837.85 NULL
2024 Hra/Dept Of Social Services New York City Public Service Fellow 50030.14286 3.502110e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 3.502110e+05 3.502110e+05 0.00 NULL
2024 Hra/Dept Of Social Services Office Machine Aide 40071.57143 2.805010e+05 109.87 1.569571e+01 0.000 5.00 7 0.000000e+00 0.00 2.806109e+05 2.805010e+05 109.87 NULL
2024 Hra/Dept Of Social Services Oiler NA NA 27454.84 5.490968e+03 6891.460 242.75 5 5.490968e+03 27454.84 NA NA NA NULL
2024 Hra/Dept Of Social Services Paralegal Aide 52327.09524 1.098869e+06 3801.30 1.810143e+02 0.000 109.25 21 0.000000e+00 0.00 1.102670e+06 1.098869e+06 3801.30 NULL
2024 Hra/Dept Of Social Services Plumber NA NA 318869.72 3.542997e+04 30389.220 2621.50 9 3.038922e+04 273502.98 NA NA NA NULL
2024 Hra/Dept Of Social Services Principal Administrative Associate - Non Supvr 64179.84827 7.233069e+07 6599218.10 5.855562e+03 213.420 138976.73 1127 2.134200e+02 240524.34 7.892991e+07 7.257121e+07 6358693.76 NULL
2024 Hra/Dept Of Social Services Printing Press Operator NA NA 2920.72 7.301800e+02 881.800 55.00 4 7.301800e+02 2920.72 NA NA NA NULL
2024 Hra/Dept Of Social Services Procurement Analyst 65056.46667 9.758470e+05 16828.92 1.121928e+03 0.000 390.75 15 0.000000e+00 0.00 9.926759e+05 9.758470e+05 16828.92 NULL
2024 Hra/Dept Of Social Services Psychiatrist 203579.14000 2.035791e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.035791e+05 2.035791e+05 0.00 NULL
2024 Hra/Dept Of Social Services Public Health Educator 66140.79310 1.918083e+06 37803.46 1.303568e+03 13.180 823.00 29 1.318000e+01 382.22 1.955886e+06 1.918465e+06 37421.24 NULL
2024 Hra/Dept Of Social Services Secretary 47800.11765 8.126020e+05 129899.22 7.641131e+03 693.160 3392.25 17 6.931600e+02 11783.72 9.425012e+05 8.243857e+05 118115.50 NULL
2024 Hra/Dept Of Social Services Secretary Of Comm 98345.00000 9.834500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.834500e+04 9.834500e+04 0.00 NULL
2024 Hra/Dept Of Social Services Secretary To One Deputy Commissioner 123802.00000 1.238020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.238020e+05 1.238020e+05 0.00 NULL
2024 Hra/Dept Of Social Services Secretary To The Department 106958.00000 1.069580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.069580e+05 1.069580e+05 0.00 NULL
2024 Hra/Dept Of Social Services Senior Consultant 92282.83333 1.661091e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.661091e+06 1.661091e+06 0.00 NULL
2024 Hra/Dept Of Social Services Senior It Architect 129434.00000 2.588680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.588680e+05 2.588680e+05 0.00 NULL
2024 Hra/Dept Of Social Services Senior Stationary Engineer NA NA 6998.28 6.998280e+03 6998.280 38.50 1 6.998280e+03 6998.28 NA NA NA NULL
2024 Hra/Dept Of Social Services Sheet Metal Worker NA NA 3788.92 3.788920e+03 3788.920 30.00 1 3.788920e+03 3788.92 NA NA NA NULL
2024 Hra/Dept Of Social Services Social Worker 65387.91379 3.792499e+06 159913.19 2.757124e+03 35.130 3506.75 58 3.513000e+01 2037.54 3.952412e+06 3.794537e+06 157875.65 NULL
2024 Hra/Dept Of Social Services Space Analyst 84541.38462 2.198076e+06 4698.73 1.807204e+02 0.000 32.25 26 0.000000e+00 0.00 2.202775e+06 2.198076e+06 4698.73 NULL
2024 Hra/Dept Of Social Services Special Assistant To The Human Resources Administrator 139650.00000 2.793000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.793000e+05 2.793000e+05 0.00 NULL
2024 Hra/Dept Of Social Services Special Officer 43488.57447 4.087926e+06 208486.67 2.217943e+03 573.090 6611.50 94 5.730900e+02 53870.46 4.296413e+06 4.141796e+06 154616.21 NULL
2024 Hra/Dept Of Social Services Staff Analyst 76889.86061 1.268683e+07 618414.21 3.747965e+03 0.000 10632.75 165 0.000000e+00 0.00 1.330524e+07 1.268683e+07 618414.21 NULL
2024 Hra/Dept Of Social Services Staff Nurse 101097.45455 1.112072e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.112072e+06 1.112072e+06 0.00 NULL
2024 Hra/Dept Of Social Services Stationary Engineer NA NA 35991.40 8.997850e+03 8997.850 309.00 4 8.997850e+03 35991.40 NA NA NA NULL
2024 Hra/Dept Of Social Services Stock Worker 42174.85714 2.952240e+05 250.53 3.579000e+01 0.000 11.75 7 0.000000e+00 0.00 2.954745e+05 2.952240e+05 250.53 NULL
2024 Hra/Dept Of Social Services Strategic Initiative Specialist 125406.55556 1.128659e+06 461.86 5.131778e+01 0.000 0.00 9 0.000000e+00 0.00 1.129121e+06 1.128659e+06 461.86 NULL
2024 Hra/Dept Of Social Services Supervising Computer Service Technician 77276.00000 7.727600e+04 4496.83 4.496830e+03 4496.830 84.00 1 4.496830e+03 4496.83 8.177283e+04 8.177283e+04 0.00 NULL
2024 Hra/Dept Of Social Services Supervising Special Officer 63378.83721 2.725290e+06 341052.08 7.931444e+03 6276.520 6992.00 43 6.276520e+03 269890.36 3.066342e+06 2.995180e+06 71161.72 NULL
2024 Hra/Dept Of Social Services Supervisor Carpenter NA NA 50409.07 2.520453e+04 25204.535 449.50 2 2.520453e+04 50409.07 NA NA NA NULL
2024 Hra/Dept Of Social Services Supervisor Electrician NA NA 16519.28 1.651928e+04 16519.280 157.00 1 1.651928e+04 16519.28 NA NA NA NULL
2024 Hra/Dept Of Social Services Supervisor I 66192.72321 1.482717e+07 1628588.94 7.270486e+03 557.135 33015.29 224 5.571350e+02 124798.24 1.645576e+07 1.495197e+07 1503790.70 NULL
2024 Hra/Dept Of Social Services Supervisor I Social Work 74338.57143 1.040740e+06 45565.38 3.254670e+03 0.000 817.50 14 0.000000e+00 0.00 1.086305e+06 1.040740e+06 45565.38 NULL
2024 Hra/Dept Of Social Services Supervisor Ii 77493.64211 7.361896e+06 578064.89 6.084894e+03 1377.530 10541.25 95 1.377530e+03 130865.35 7.939961e+06 7.492761e+06 447199.54 NULL
2024 Hra/Dept Of Social Services Supervisor Ii Social Work 85531.80000 4.276590e+05 1007.15 2.014300e+02 0.000 17.25 5 0.000000e+00 0.00 4.286662e+05 4.276590e+05 1007.15 NULL
2024 Hra/Dept Of Social Services Supervisor Iii 85564.95833 4.107118e+06 182127.91 3.794331e+03 678.790 3090.50 48 6.787900e+02 32581.92 4.289246e+06 4.139700e+06 149545.99 NULL
2024 Hra/Dept Of Social Services Supervisor Iii Social Work 93603.33333 8.424300e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 8.424300e+05 8.424300e+05 0.00 NULL
2024 Hra/Dept Of Social Services Supervisor Of Electrical Installations & Maintenance 88359.00000 8.835900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.835900e+04 8.835900e+04 0.00 NULL
2024 Hra/Dept Of Social Services Supervisor Of Mechanics NA NA 35354.27 3.535427e+04 35354.270 299.50 1 3.535427e+04 35354.27 NA NA NA NULL
2024 Hra/Dept Of Social Services Supervisor Of Nurses 123597.50000 2.471950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.471950e+05 2.471950e+05 0.00 NULL
2024 Hra/Dept Of Social Services Supervisor Of Office Machine Operations 52064.73333 7.809710e+05 78026.89 5.201793e+03 2079.610 1896.75 15 2.079610e+03 31194.15 8.589979e+05 8.121652e+05 46832.74 NULL
2024 Hra/Dept Of Social Services Supervisor Of Stock Workers 60835.50000 1.216710e+05 4368.46 2.184230e+03 2184.230 129.00 2 2.184230e+03 4368.46 1.260395e+05 1.260395e+05 0.00 NULL
2024 Hra/Dept Of Social Services Supervisor Plumber NA NA 46798.33 1.559944e+04 0.000 361.75 3 0.000000e+00 0.00 NA NA NA NULL
2024 Hra/Dept Of Social Services Telecommunications Associate 79455.75000 6.356460e+05 3856.14 4.820175e+02 0.000 86.00 8 0.000000e+00 0.00 6.395021e+05 6.356460e+05 3856.14 NULL
2024 Hra/Dept Of Social Services Telecommunications Manager 115578.00000 2.311560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.311560e+05 2.311560e+05 0.00 NULL
2024 Human Rights Commission *Attorney At Law 104316.00000 1.043160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.043160e+05 1.043160e+05 0.00 NULL
2024 Human Rights Commission Administrative Staff Analyst 165851.00000 1.658510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.658510e+05 1.658510e+05 0.00 NULL
2024 Human Rights Commission Agency Attorney 80918.00000 4.045900e+06 4.29 8.580000e-02 0.000 0.00 50 0.000000e+00 0.00 4.045904e+06 4.045900e+06 4.29 NULL
2024 Human Rights Commission Agency Attorney Interne 67929.83333 4.075790e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.075790e+05 4.075790e+05 0.00 NULL
2024 Human Rights Commission Associate Human Rights Specialist 79862.95000 1.597259e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 1.597259e+06 1.597259e+06 0.00 NULL
2024 Human Rights Commission Asst To The Chairman 93063.00000 9.306300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.306300e+04 9.306300e+04 0.00 NULL
2024 Human Rights Commission Chairman Commission On Human Rights 260042.00000 2.600420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.600420e+05 2.600420e+05 0.00 NULL
2024 Human Rights Commission Community Assistant 16805.89000 6.722356e+04 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.722356e+04 6.722356e+04 0.00 NULL
2024 Human Rights Commission Community Associate 51530.00000 1.030600e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.030600e+05 1.030600e+05 0.00 NULL
2024 Human Rights Commission Community Coordinator 71086.57143 1.492818e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 1.492818e+06 1.492818e+06 0.00 NULL
2024 Human Rights Commission Computer Associate 92034.33333 2.761030e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.761030e+05 2.761030e+05 0.00 NULL
2024 Human Rights Commission Computer Operations Manager 142647.00000 1.426470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.426470e+05 1.426470e+05 0.00 NULL
2024 Human Rights Commission Computer Systems Manager 141625.00000 1.416250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.416250e+05 1.416250e+05 0.00 NULL
2024 Human Rights Commission Counsel 197991.00000 1.979910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.979910e+05 1.979910e+05 0.00 NULL
2024 Human Rights Commission Cyber Security Analyst 73158.00000 7.315800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.315800e+04 7.315800e+04 0.00 NULL
2024 Human Rights Commission Dep Commissioner For Community Relations 186102.00000 1.861020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.861020e+05 1.861020e+05 0.00 NULL
2024 Human Rights Commission Deputy Commissioner For Law Enforcement 194590.00000 1.945900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.945900e+05 1.945900e+05 0.00 NULL
2024 Human Rights Commission Deputy Executive Director 139299.25000 5.571970e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.571970e+05 5.571970e+05 0.00 NULL
2024 Human Rights Commission Executive Agency Counsel 130024.35714 1.820341e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.820341e+06 1.820341e+06 0.00 NULL
2024 Human Rights Commission Executive Director 134537.50000 5.381500e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.381500e+05 5.381500e+05 0.00 NULL
2024 Human Rights Commission Graphic Artist 77262.00000 7.726200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.726200e+04 7.726200e+04 0.00 NULL
2024 Human Rights Commission Human Rights Specialist 66578.55556 1.198414e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 1.198414e+06 1.198414e+06 0.00 NULL
2024 Human Rights Commission Principal Administrative Associate - Non Supvr 73392.50000 1.467850e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.467850e+05 1.467850e+05 0.00 NULL
2024 Human Rights Commission Prinicipal Human Rights Specialist 97861.00000 3.914440e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.914440e+05 3.914440e+05 0.00 NULL
2024 Human Rights Commission Project Manager 82400.00000 8.240000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.240000e+04 8.240000e+04 0.00 NULL
2024 Human Rights Commission Supervising Human Rights Specialist 76617.00000 3.064680e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.064680e+05 3.064680e+05 0.00 NULL
2024 Hunter College High School Administrator 208080.00000 2.080800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.080800e+05 2.080800e+05 0.00 NULL
2024 Hunter College High School Assistant Principal 131078.90000 1.310789e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.310789e+06 1.310789e+06 0.00 NULL
2024 Hunter College High School Assistant Principal Admin 144323.00000 1.443230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.443230e+05 1.443230e+05 0.00 NULL
2024 Hunter College High School Assistant Teacher 34564.30000 3.456430e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 3.456430e+05 3.456430e+05 0.00 NULL
2024 Hunter College High School Assistant To Heo 80659.50000 1.613190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.613190e+05 1.613190e+05 0.00 NULL
2024 Hunter College High School Business Data And Reporting Analyst 59501.00000 1.190020e+05 309.39 1.546950e+02 154.695 8.00 2 1.546950e+02 309.39 1.193114e+05 1.193114e+05 0.00 NULL
2024 Hunter College High School Coach NA NA 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 NA NA NA NULL
2024 Hunter College High School College Assistant 8348.23230 2.087058e+05 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 2.087058e+05 2.087058e+05 0.00 NULL
2024 Hunter College High School College Lab Technician 101491.00000 1.014910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.014910e+05 1.014910e+05 0.00 NULL
2024 Hunter College High School Computer Systems Manager 103489.00000 1.034890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.034890e+05 1.034890e+05 0.00 NULL
2024 Hunter College High School Cuny Administrator Assistant 57893.42857 4.052540e+05 467.61 6.680143e+01 0.000 14.50 7 0.000000e+00 0.00 4.057216e+05 4.052540e+05 467.61 NULL
2024 Hunter College High School Cuny Custodial Assistant 33432.70360 4.346251e+05 34791.56 2.676274e+03 1929.400 1362.75 13 1.929400e+03 25082.20 4.694167e+05 4.597073e+05 9709.36 NULL
2024 Hunter College High School Cuny Office Assistant 38663.40000 1.933170e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.933170e+05 1.933170e+05 0.00 NULL
2024 Hunter College High School Education & Vocat Counselor 102932.00000 1.029320e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.029320e+05 1.029320e+05 0.00 NULL
2024 Hunter College High School High School Elem Counselor 91656.71429 6.415970e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.415970e+05 6.415970e+05 0.00 NULL
2024 Hunter College High School Higher Education Assistant 75465.00000 1.509300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.509300e+05 1.509300e+05 0.00 NULL
2024 Hunter College High School Higher Education Associate 107617.60000 5.380880e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.380880e+05 5.380880e+05 0.00 NULL
2024 Hunter College High School Higher Education Officer 119995.00000 2.399900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.399900e+05 2.399900e+05 0.00 NULL
2024 Hunter College High School It Assistant 55608.00000 5.560800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.560800e+04 5.560800e+04 0.00 NULL
2024 Hunter College High School It Associate 75943.00000 1.518860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.518860e+05 1.518860e+05 0.00 NULL
2024 Hunter College High School It Senior Associate 91298.00000 1.825960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.825960e+05 1.825960e+05 0.00 NULL
2024 Hunter College High School Maintenance Worker NA NA 989.33 9.893300e+02 989.330 23.00 1 9.893300e+02 989.33 NA NA NA NULL
2024 Hunter College High School Oiler NA NA 6632.28 6.632280e+03 6632.280 74.00 1 6.632280e+03 6632.28 NA NA NA NULL
2024 Hunter College High School Principal 172382.50000 3.447650e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.447650e+05 3.447650e+05 0.00 NULL
2024 Hunter College High School Senior Custodial Supervisor 41913.00000 4.191300e+04 255.93 2.559300e+02 255.930 8.50 1 2.559300e+02 255.93 4.216893e+04 4.216893e+04 0.00 NULL
2024 Hunter College High School Substitute Teacher 40126.80437 3.210144e+06 0.00 0.000000e+00 0.000 0.00 80 0.000000e+00 0.00 3.210144e+06 3.210144e+06 0.00 NULL
2024 Hunter College High School Teacher NA NA 0.00 0.000000e+00 0.000 0.00 105 0.000000e+00 0.00 NA NA NA NULL
2024 Hunter College High School Teacher Of Library 88604.00000 8.860400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.860400e+04 8.860400e+04 0.00 NULL
2024 Independent Budget Office Adm Manager-Non-Mgrl 111757.00000 1.117570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.117570e+05 1.117570e+05 0.00 NULL
2024 Independent Budget Office Administrative Staff Analyst 51925.00000 5.192500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.192500e+04 5.192500e+04 0.00 NULL
2024 Independent Budget Office Agency Chief Contracting Officer 174560.00000 1.745600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.745600e+05 1.745600e+05 0.00 NULL
2024 Independent Budget Office Assistant Budget Analyst 66950.00000 6.695000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.695000e+04 6.695000e+04 0.00 NULL
2024 Independent Budget Office Budget Analyst 110088.28925 6.495209e+06 0.00 0.000000e+00 0.000 0.00 59 0.000000e+00 0.00 6.495209e+06 6.495209e+06 0.00 NULL
2024 Independent Budget Office College Aide - Assignment Levels Ii And Iii 934.72338 3.738894e+03 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.738894e+03 3.738894e+03 0.00 NULL
2024 Independent Budget Office Cooperative Educational Trainee 1269.20000 1.269200e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.269200e+03 1.269200e+03 0.00 NULL
2024 Independent Budget Office Director Of Independent Budget Office 269519.00000 2.695190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.695190e+05 2.695190e+05 0.00 NULL
2024 Independent Budget Office Executive Agency Counsel 208219.00000 2.082190e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.082190e+05 2.082190e+05 0.00 NULL
2024 Independent Budget Office Principal Administrative Associate - Non Supvr 70095.00000 7.009500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.009500e+04 7.009500e+04 0.00 NULL
2024 Independent Budget Office Summer Graduate Intern 2353.35000 4.706700e+03 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.706700e+03 4.706700e+03 0.00 NULL
2024 Landmarks Preservation Comm *Attorney At Law 103055.00000 1.030550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030550e+05 1.030550e+05 0.00 NULL
2024 Landmarks Preservation Comm Admin Landmarks Preservationist 93056.00000 9.305600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.305600e+04 9.305600e+04 0.00 NULL
2024 Landmarks Preservation Comm Administrative Landmarks Preservationist 116182.26039 1.045640e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.045640e+06 1.045640e+06 0.00 NULL
2024 Landmarks Preservation Comm Administrative Public Information Specialist 92814.00000 9.281400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.281400e+04 9.281400e+04 0.00 NULL
2024 Landmarks Preservation Comm Administrative Staff Analyst 132156.66667 3.964700e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.964700e+05 3.964700e+05 0.00 NULL
2024 Landmarks Preservation Comm Associate Landmarks Preservationist 95650.00000 9.565000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.565000e+04 9.565000e+04 0.00 NULL
2024 Landmarks Preservation Comm Associate Staff Analyst 107506.00000 1.075060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.075060e+05 1.075060e+05 0.00 NULL
2024 Landmarks Preservation Comm Chair-Landmarks Preservation Commission 254944.00000 2.549440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.549440e+05 2.549440e+05 0.00 NULL
2024 Landmarks Preservation Comm City Research Scientist 92118.00000 9.211800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.211800e+04 9.211800e+04 0.00 NULL
2024 Landmarks Preservation Comm Community Assistant 22122.43520 2.212244e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.212244e+04 2.212244e+04 0.00 NULL
2024 Landmarks Preservation Comm Community Associate 53097.33333 3.185840e+05 1839.13 3.065217e+02 0.000 64.00 6 0.000000e+00 0.00 3.204231e+05 3.185840e+05 1839.13 NULL
2024 Landmarks Preservation Comm Community Coordinator 50593.84230 1.011877e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.011877e+05 1.011877e+05 0.00 NULL
2024 Landmarks Preservation Comm Computer Specialist 110515.00000 1.105150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.105150e+05 1.105150e+05 0.00 NULL
2024 Landmarks Preservation Comm Computer Systems Manager 164875.00000 1.648750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.648750e+05 1.648750e+05 0.00 NULL
2024 Landmarks Preservation Comm Counsel 188553.00000 1.885530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.885530e+05 1.885530e+05 0.00 NULL
2024 Landmarks Preservation Comm Director Of Plan & Field Services 116216.00000 1.162160e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.162160e+05 1.162160e+05 0.00 NULL
2024 Landmarks Preservation Comm Director Of Public Relations 105494.50000 2.109890e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.109890e+05 2.109890e+05 0.00 NULL
2024 Landmarks Preservation Comm Director Of Urban Archaeology 111067.00000 1.110670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.110670e+05 1.110670e+05 0.00 NULL
2024 Landmarks Preservation Comm Executive Director 203249.00000 2.032490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.032490e+05 2.032490e+05 0.00 NULL
2024 Landmarks Preservation Comm Executive Program Specialist 152861.00000 1.528610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.528610e+05 1.528610e+05 0.00 NULL
2024 Landmarks Preservation Comm Landmarks Preservationist 75160.03542 3.156721e+06 19278.12 4.590029e+02 0.000 446.00 42 0.000000e+00 0.00 3.176000e+06 3.156721e+06 19278.12 NULL
2024 Landmarks Preservation Comm Principal Administrative Associate - Non Supvr 76956.00000 7.695600e+04 12.19 1.219000e+01 12.190 0.00 1 1.219000e+01 12.19 7.696819e+04 7.696819e+04 0.00 NULL
2024 Landmarks Preservation Comm Procurement Analyst 70121.00000 1.402420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.402420e+05 1.402420e+05 0.00 NULL
2024 Landmarks Preservation Comm Secretary To The Chair, Landmarks Preservation Commission 67997.50000 1.359950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.359950e+05 1.359950e+05 0.00 NULL
2024 Landmarks Preservation Comm Secretary To The Executive Director 46767.00000 4.676700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.676700e+04 4.676700e+04 0.00 NULL
2024 Landmarks Preservation Comm Staff Analyst 67603.00000 6.760300e+04 749.54 7.495400e+02 749.540 16.25 1 7.495400e+02 749.54 6.835254e+04 6.835254e+04 0.00 NULL
2024 Landmarks Preservation Comm Urban Archeologist 48482.77333 1.454483e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.454483e+05 1.454483e+05 0.00 NULL
2024 Law Department Accountant 82175.00000 1.643500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.643500e+05 1.643500e+05 0.00 NULL
2024 Law Department Adm Manager-Non-Mgrl 102407.00000 1.024070e+05 49.05 4.905000e+01 49.050 0.75 1 4.905000e+01 49.05 1.024561e+05 1.024561e+05 0.00 NULL
2024 Law Department Administrative Accountant 110697.00000 1.106970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.106970e+05 1.106970e+05 0.00 NULL
2024 Law Department Administrative Management Auditor 90177.00000 9.017700e+04 431.28 4.312800e+02 431.280 9.00 1 4.312800e+02 431.28 9.060828e+04 9.060828e+04 0.00 NULL
2024 Law Department Administrative Procurement Analyst 96386.00000 9.638600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.638600e+04 9.638600e+04 0.00 NULL
2024 Law Department Administrative Public Information Specialist 189470.00000 3.789400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.789400e+05 3.789400e+05 0.00 NULL
2024 Law Department Administrative Staff Analyst 146805.70000 2.936114e+06 40464.34 2.023217e+03 0.000 430.25 20 0.000000e+00 0.00 2.976578e+06 2.936114e+06 40464.34 NULL
2024 Law Department Appraiser 112626.00000 1.126260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.126260e+05 1.126260e+05 0.00 NULL
2024 Law Department Assistant Corporation Counsel 139265.65233 1.367589e+08 297.86 3.033198e-01 0.000 6.50 982 0.000000e+00 0.00 1.367592e+08 1.367589e+08 297.86 NULL
2024 Law Department Associate Quality Assurance Specialist 92532.33333 5.551940e+05 31779.16 5.296527e+03 1936.105 485.25 6 1.936105e+03 11616.63 5.869732e+05 5.668106e+05 20162.53 NULL
2024 Law Department Associate Staff Analyst 85450.35714 1.196305e+06 28421.45 2.030104e+03 254.990 437.25 14 2.549900e+02 3569.86 1.224726e+06 1.199875e+06 24851.59 NULL
2024 Law Department Bookkeeper 66752.60000 3.337630e+05 37993.94 7.598788e+03 2617.630 741.00 5 2.617630e+03 13088.15 3.717569e+05 3.468512e+05 24905.79 NULL
2024 Law Department Certified It Administrator 130735.85714 9.151510e+05 8149.64 1.164234e+03 0.000 95.25 7 0.000000e+00 0.00 9.233006e+05 9.151510e+05 8149.64 NULL
2024 Law Department Certified It Developer 106187.50000 8.495000e+05 2467.24 3.084050e+02 0.000 42.25 8 0.000000e+00 0.00 8.519672e+05 8.495000e+05 2467.24 NULL
2024 Law Department City Assessor 105257.00000 1.052570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.052570e+05 1.052570e+05 0.00 NULL
2024 Law Department City Custodial Assistant 43071.50000 8.614300e+04 17663.43 8.831715e+03 8831.715 561.25 2 8.831715e+03 17663.43 1.038064e+05 1.038064e+05 0.00 NULL
2024 Law Department Claim Specialist 54825.25761 5.098749e+06 434450.60 4.671512e+03 115.140 10991.00 93 1.151400e+02 10708.02 5.533200e+06 5.109457e+06 423742.58 NULL
2024 Law Department Clerical Associate 40480.37254 7.650790e+06 396160.84 2.096089e+03 0.000 11705.02 189 0.000000e+00 0.00 8.046951e+06 7.650790e+06 396160.84 NULL
2024 Law Department College Aide 7396.75140 1.849188e+05 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 1.849188e+05 1.849188e+05 0.00 NULL
2024 Law Department College Aide - Assignment Levels Ii And Iii 10579.27935 2.115856e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.115856e+04 2.115856e+04 0.00 NULL
2024 Law Department Community Associate 43144.00000 4.314400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.314400e+04 4.314400e+04 0.00 NULL
2024 Law Department Community Coordinator 71501.79167 1.716043e+06 5151.74 2.146558e+02 0.000 123.00 24 0.000000e+00 0.00 1.721195e+06 1.716043e+06 5151.74 NULL
2024 Law Department Computer Aide-Non-Spvr 43809.85517 5.257183e+05 5641.26 4.701050e+02 0.000 169.00 12 0.000000e+00 0.00 5.313595e+05 5.257183e+05 5641.26 NULL
2024 Law Department Computer Associate 90461.09235 1.537839e+06 5082.05 2.989441e+02 0.000 83.75 17 0.000000e+00 0.00 1.542921e+06 1.537839e+06 5082.05 NULL
2024 Law Department Computer Operations Manager 171105.25000 6.844210e+05 11572.74 2.893185e+03 0.000 131.75 4 0.000000e+00 0.00 6.959937e+05 6.844210e+05 11572.74 NULL
2024 Law Department Computer Service Technician 56896.36687 1.137927e+05 623.37 3.116850e+02 311.685 16.25 2 3.116850e+02 623.37 1.144161e+05 1.144161e+05 0.00 NULL
2024 Law Department Computer Specialist 115834.57143 1.621684e+06 16380.30 1.170021e+03 575.360 217.25 14 5.753600e+02 8055.04 1.638064e+06 1.629739e+06 8325.26 NULL
2024 Law Department Computer Systems Manager 176467.63636 1.941144e+06 21239.72 1.930884e+03 0.000 210.00 11 0.000000e+00 0.00 1.962384e+06 1.941144e+06 21239.72 NULL
2024 Law Department Corporation Counsel 266048.50000 5.320970e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.320970e+05 5.320970e+05 0.00 NULL
2024 Law Department Custodian 53743.27273 5.911760e+05 55339.77 5.030888e+03 4176.360 1410.75 11 4.176360e+03 45939.96 6.465158e+05 6.371160e+05 9399.81 NULL
2024 Law Department Customer Information Representative Ma L 1549 74960.11429 5.247208e+05 7686.45 1.098064e+03 60.030 142.75 7 6.003000e+01 420.21 5.324072e+05 5.251410e+05 7266.24 NULL
2024 Law Department Department Librarian 56735.00000 1.134700e+05 6921.20 3.460600e+03 3460.600 193.00 2 3.460600e+03 6921.20 1.203912e+05 1.203912e+05 0.00 NULL
2024 Law Department Deputy Director Of Admin Worker’s Comp Benefits 117017.00000 2.340340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.340340e+05 2.340340e+05 0.00 NULL
2024 Law Department Deputy Operation Support Manager 125000.00000 1.250000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.250000e+05 1.250000e+05 0.00 NULL
2024 Law Department Dir Of Administration, Worker’s Comp Benefits 169989.00000 1.699890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.699890e+05 1.699890e+05 0.00 NULL
2024 Law Department Executive Agency Counsel 211405.00000 2.114050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.114050e+05 2.114050e+05 0.00 NULL
2024 Law Department Executive Program Specialist 151157.00000 1.511570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.511570e+05 1.511570e+05 0.00 NULL
2024 Law Department First Assistant Corporation Counsel 262611.00000 5.252220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.252220e+05 5.252220e+05 0.00 NULL
2024 Law Department High School Student Aide 5825.69600 2.912848e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.912848e+04 2.912848e+04 0.00 NULL
2024 Law Department It Security Specialist 160958.66667 4.828760e+05 32899.32 1.096644e+04 0.000 335.25 3 0.000000e+00 0.00 5.157753e+05 4.828760e+05 32899.32 NULL
2024 Law Department Legal Secretarial Assistant 61645.51515 2.034302e+06 49162.07 1.489760e+03 0.000 977.75 33 0.000000e+00 0.00 2.083464e+06 2.034302e+06 49162.07 NULL
2024 Law Department Legal Secretarial Assistant - Al 1 Only 49988.33333 1.499650e+05 6493.87 2.164623e+03 0.000 179.25 3 0.000000e+00 0.00 1.564589e+05 1.499650e+05 6493.87 NULL
2024 Law Department Maintenance Worker NA NA 2641.52 2.641520e+03 2641.520 46.00 1 2.641520e+03 2641.52 NA NA NA NULL
2024 Law Department Management Auditor 92854.00000 9.285400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.285400e+04 9.285400e+04 0.00 NULL
2024 Law Department Media Services Technician 53622.40000 2.681120e+05 1192.34 2.384680e+02 142.300 37.25 5 1.423000e+02 711.50 2.693043e+05 2.688235e+05 480.84 NULL
2024 Law Department Medicolegal Analyst 85410.50000 1.708210e+05 3237.93 1.618965e+03 1618.965 61.50 2 1.618965e+03 3237.93 1.740589e+05 1.740589e+05 0.00 NULL
2024 Law Department Motor Vehicle Operator 34852.66289 2.439686e+05 36145.02 5.163574e+03 0.000 889.50 7 0.000000e+00 0.00 2.801137e+05 2.439686e+05 36145.02 NULL
2024 Law Department Paralegal Aide 55935.07586 1.241759e+07 553991.93 2.495459e+03 0.000 12928.25 222 0.000000e+00 0.00 1.297158e+07 1.241759e+07 553991.93 NULL
2024 Law Department Photographer 34899.63750 3.489964e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.489964e+04 3.489964e+04 0.00 NULL
2024 Law Department Principal Administrative Associate - Non Supvr 72815.00000 5.097050e+05 62675.66 8.953666e+03 0.000 1165.25 7 0.000000e+00 0.00 5.723807e+05 5.097050e+05 62675.66 NULL
2024 Law Department Principal Title Examiner 89056.33333 2.671690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.671690e+05 2.671690e+05 0.00 NULL
2024 Law Department Procurement Analyst 63759.00000 1.275180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.275180e+05 1.275180e+05 0.00 NULL
2024 Law Department Project Manager 96221.00000 9.622100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.622100e+04 9.622100e+04 0.00 NULL
2024 Law Department Public Records Aide 29067.35792 1.744041e+05 34822.25 5.803708e+03 0.000 882.75 6 0.000000e+00 0.00 2.092264e+05 1.744041e+05 34822.25 NULL
2024 Law Department Research Assistant 58799.00000 5.879900e+04 728.05 7.280500e+02 728.050 19.00 1 7.280500e+02 728.05 5.952705e+04 5.952705e+04 0.00 NULL
2024 Law Department Secretary To The Corporation Counsel 124921.00000 1.249210e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.249210e+05 1.249210e+05 0.00 NULL
2024 Law Department Secretary To The First Assistant Corporation Counsel 90144.00000 9.014400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.014400e+04 9.014400e+04 0.00 NULL
2024 Law Department Senior It Architect 146260.00000 4.387800e+05 2224.82 7.416067e+02 932.670 26.25 3 7.416067e+02 2224.82 4.410048e+05 4.410048e+05 0.00 NULL
2024 Law Department Senior Photographer 62410.00000 6.241000e+04 256.20 2.562000e+02 256.200 7.50 1 2.562000e+02 256.20 6.266620e+04 6.266620e+04 0.00 NULL
2024 Law Department Senior Student Legal Specialist 56735.40000 2.836770e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.836770e+05 2.836770e+05 0.00 NULL
2024 Law Department Senior Title Examiner 63266.00000 6.326600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.326600e+04 6.326600e+04 0.00 NULL
2024 Law Department Space Analyst 96439.00000 1.928780e+05 3139.25 1.569625e+03 1569.625 51.00 2 1.569625e+03 3139.25 1.960172e+05 1.960172e+05 0.00 NULL
2024 Law Department Staff Analyst 66986.06082 1.942596e+06 39547.18 1.363696e+03 0.000 659.25 29 0.000000e+00 0.00 1.982143e+06 1.942596e+06 39547.18 NULL
2024 Law Department Staff Analyst Trainee 53917.00000 5.391700e+04 344.51 3.445100e+02 344.510 14.00 1 3.445100e+02 344.51 5.426151e+04 5.426151e+04 0.00 NULL
2024 Law Department Stenographer To The Corporation Counsel 86242.00000 8.624200e+04 7.89 7.890000e+00 7.890 0.00 1 7.890000e+00 7.89 8.624989e+04 8.624989e+04 0.00 NULL
2024 Law Department Summer Graduate Intern 3763.01577 2.972782e+05 0.00 0.000000e+00 0.000 0.00 79 0.000000e+00 0.00 2.972782e+05 2.972782e+05 0.00 NULL
2024 Law Department Supervising Computer Service Technician 85082.86897 2.552486e+05 18287.08 6.095693e+03 439.780 292.50 3 4.397800e+02 1319.34 2.735357e+05 2.565679e+05 16967.74 NULL
2024 Law Department Supervising Special Officer 73884.00000 7.388400e+04 79.62 7.962000e+01 79.620 1.50 1 7.962000e+01 79.62 7.396362e+04 7.396362e+04 0.00 NULL
2024 Law Department Supervisor Of Office Machine Operations 54815.25000 2.192610e+05 1007.74 2.519350e+02 40.585 28.50 4 4.058500e+01 162.34 2.202687e+05 2.194233e+05 845.40 NULL
2024 Law Department Worker’s Compensation Benefits Examiner 57338.18254 3.497629e+06 363423.87 5.957768e+03 1099.360 8138.00 61 1.099360e+03 67060.96 3.861053e+06 3.564690e+06 296362.91 NULL
2024 Manhattan Community Board #1 Community Associate 51984.00000 5.198400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.198400e+04 5.198400e+04 0.00 NULL
2024 Manhattan Community Board #1 Community Coordinator 87710.00000 8.771000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.771000e+04 8.771000e+04 0.00 NULL
2024 Manhattan Community Board #1 District Manager 105128.50000 2.102570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.102570e+05 2.102570e+05 0.00 NULL
2024 Manhattan Community Board #10 Community Assistant 42436.00000 4.243600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.243600e+04 4.243600e+04 0.00 NULL
2024 Manhattan Community Board #10 Community Associate 53072.00000 1.061440e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.061440e+05 1.061440e+05 0.00 NULL
2024 Manhattan Community Board #10 District Manager 91664.50000 1.833290e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.833290e+05 1.833290e+05 0.00 NULL
2024 Manhattan Community Board #11 Assistant District Manager 64565.00000 6.456500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.456500e+04 6.456500e+04 0.00 NULL
2024 Manhattan Community Board #11 Community Associate 60413.00000 6.041300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.041300e+04 6.041300e+04 0.00 NULL
2024 Manhattan Community Board #11 District Manager 113878.00000 1.138780e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.138780e+05 1.138780e+05 0.00 NULL
2024 Manhattan Community Board #12 Community Associate 48079.00000 4.807900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.807900e+04 4.807900e+04 0.00 NULL
2024 Manhattan Community Board #12 Community Coordinator 70022.00000 7.002200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.002200e+04 7.002200e+04 0.00 NULL
2024 Manhattan Community Board #12 District Manager 109911.00000 1.099110e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.099110e+05 1.099110e+05 0.00 NULL
2024 Manhattan Community Board #2 Community Associate 49615.00000 4.961500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.961500e+04 4.961500e+04 0.00 NULL
2024 Manhattan Community Board #2 Community Coordinator 70022.00000 7.002200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.002200e+04 7.002200e+04 0.00 NULL
2024 Manhattan Community Board #2 District Manager 95555.00000 9.555500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.555500e+04 9.555500e+04 0.00 NULL
2024 Manhattan Community Board #3 Assistant District Manager 64565.00000 6.456500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.456500e+04 6.456500e+04 0.00 NULL
2024 Manhattan Community Board #3 Community Associate 52221.00000 1.044420e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.044420e+05 1.044420e+05 0.00 NULL
2024 Manhattan Community Board #3 District Manager 103000.00000 1.030000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.030000e+05 1.030000e+05 0.00 NULL
2024 Manhattan Community Board #4 Community Associate 50723.00000 5.072300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.072300e+04 5.072300e+04 0.00 NULL
2024 Manhattan Community Board #4 Community Coordinator 76562.00000 7.656200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.656200e+04 7.656200e+04 0.00 NULL
2024 Manhattan Community Board #4 District Manager 110826.00000 1.108260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.108260e+05 1.108260e+05 0.00 NULL
2024 Manhattan Community Board #5 Community Associate 54847.50000 1.096950e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.096950e+05 1.096950e+05 0.00 NULL
2024 Manhattan Community Board #5 Community Coordinator 75732.00000 7.573200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.573200e+04 7.573200e+04 0.00 NULL
2024 Manhattan Community Board #5 District Manager 114161.00000 1.141610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.141610e+05 1.141610e+05 0.00 NULL
2024 Manhattan Community Board #6 Community Coordinator 70323.50000 1.406470e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.406470e+05 1.406470e+05 0.00 NULL
2024 Manhattan Community Board #6 District Manager 128114.00000 1.281140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.281140e+05 1.281140e+05 0.00 NULL
2024 Manhattan Community Board #7 Community Coordinator 69807.00000 1.396140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.396140e+05 1.396140e+05 0.00 NULL
2024 Manhattan Community Board #7 District Manager 104572.00000 1.045720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.045720e+05 1.045720e+05 0.00 NULL
2024 Manhattan Community Board #8 Assistant District Manager 52236.00000 5.223600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.223600e+04 5.223600e+04 0.00 NULL
2024 Manhattan Community Board #8 Community Associate 49889.66667 1.496690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.496690e+05 1.496690e+05 0.00 NULL
2024 Manhattan Community Board #8 District Manager 114298.00000 1.142980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.142980e+05 1.142980e+05 0.00 NULL
2024 Manhattan Community Board #9 Community Associate 45088.00000 9.017600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.017600e+04 9.017600e+04 0.00 NULL
2024 Manhattan Community Board #9 District Manager 116575.00000 1.165750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.165750e+05 1.165750e+05 0.00 NULL
2024 Mayors Office Of Contract Svcs Admin Contract Specialist 208305.00000 4.166100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.166100e+05 4.166100e+05 0.00 NULL
2024 Mayors Office Of Contract Svcs Administrative Engineer 159135.00000 1.591350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.591350e+05 1.591350e+05 0.00 NULL
2024 Mayors Office Of Contract Svcs Administrative Manager 127246.00000 1.272460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.272460e+05 1.272460e+05 0.00 NULL
2024 Mayors Office Of Contract Svcs Administrative Procurement Analyst 135201.50000 2.704030e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.704030e+05 2.704030e+05 0.00 NULL
2024 Mayors Office Of Contract Svcs Administrative Procurement Analyst-Non-Mgrl 89385.00000 8.938500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.938500e+04 8.938500e+04 0.00 NULL
2024 Mayors Office Of Contract Svcs Administrative Staff Analyst 184128.55556 1.657157e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.657157e+06 1.657157e+06 0.00 NULL
2024 Mayors Office Of Contract Svcs College Aide 6241.31333 3.744788e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.744788e+04 3.744788e+04 0.00 NULL
2024 Mayors Office Of Contract Svcs Computer Specialist 116534.00000 1.165340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.165340e+05 1.165340e+05 0.00 NULL
2024 Mayors Office Of Contract Svcs Computer Systems Manager 158353.10000 1.583531e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.583531e+06 1.583531e+06 0.00 NULL
2024 Mayors Office Of Contract Svcs Executive Agency Counsel 181104.20000 9.055210e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 9.055210e+05 9.055210e+05 0.00 NULL
2024 Mayors Office Of Contract Svcs Graphic Artist 100206.00000 1.002060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.002060e+05 1.002060e+05 0.00 NULL
2024 Mayors Office Of Contract Svcs High School Student Aide 5802.80000 1.160560e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.160560e+04 1.160560e+04 0.00 NULL
2024 Mayors Office Of Contract Svcs Mayoral Office Assistant 60723.00000 5.465070e+05 5.75 6.388889e-01 0.000 0.00 9 0.000000e+00 0.00 5.465128e+05 5.465070e+05 5.75 NULL
2024 Mayors Office Of Contract Svcs Mayoral Program Coordinator 81711.00000 8.171100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.171100e+04 8.171100e+04 0.00 NULL
2024 Mayors Office Of Contract Svcs New York City Public Service Fellow 46217.00000 9.243400e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.243400e+04 9.243400e+04 0.00 NULL
2024 Mayors Office Of Contract Svcs Research Projects Coord 111953.87978 2.048756e+07 0.00 0.000000e+00 0.000 0.00 183 0.000000e+00 0.00 2.048756e+07 2.048756e+07 0.00 NULL
2024 Mayors Office Of Contract Svcs Research Projects Coordinator 59410.18750 1.901126e+06 93.60 2.925000e+00 0.000 0.00 32 0.000000e+00 0.00 1.901220e+06 1.901126e+06 93.60 NULL
2024 Mayors Office Of Contract Svcs Special Assistant 139314.00000 2.786280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.786280e+05 2.786280e+05 0.00 NULL
2024 Mayors Office Of Contract Svcs Staff Analyst 63722.00000 6.372200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.372200e+04 6.372200e+04 0.00 NULL
2024 Mayors Office Of Contract Svcs Summer College Intern 3031.87500 9.095625e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.095625e+03 9.095625e+03 0.00 NULL
2024 Municipal Water Fin Authority Budget Analyst 143032.62500 1.144261e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.144261e+06 1.144261e+06 0.00 NULL
2024 Municipal Water Fin Authority Deputy General Counsel 212209.00000 2.122090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.122090e+05 2.122090e+05 0.00 NULL
2024 Municipal Water Fin Authority Statistical Secretary 65920.00000 6.592000e+04 32.90 3.290000e+01 32.900 1.00 1 3.290000e+01 32.90 6.595290e+04 6.595290e+04 0.00 NULL
2024 Nyc Dept Of Veterans’ Services Admin Community Relations Specialist 90446.31000 1.808926e+05 3.19 1.595000e+00 1.595 0.00 2 1.595000e+00 3.19 1.808958e+05 1.808958e+05 0.00 NULL
2024 Nyc Dept Of Veterans’ Services Administrative Business Promotion Coordinator 166505.00000 1.665050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.665050e+05 1.665050e+05 0.00 NULL
2024 Nyc Dept Of Veterans’ Services Administrative Community Relations Specialist 181556.93250 7.262277e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.262277e+05 7.262277e+05 0.00 NULL
2024 Nyc Dept Of Veterans’ Services Administrative Graphic Artist 144308.00000 1.443080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.443080e+05 1.443080e+05 0.00 NULL
2024 Nyc Dept Of Veterans’ Services Administrative Staff Analyst 144964.94667 4.348948e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.348948e+05 4.348948e+05 0.00 NULL
2024 Nyc Dept Of Veterans’ Services Chauffeur-Attendant 61262.00000 6.126200e+04 19456.54 1.945654e+04 19456.540 406.25 1 1.945654e+04 19456.54 8.071854e+04 8.071854e+04 0.00 NULL
2024 Nyc Dept Of Veterans’ Services Chief Information Officer 161655.00000 1.616550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.616550e+05 1.616550e+05 0.00 NULL
2024 Nyc Dept Of Veterans’ Services College Aide 9491.67950 1.898336e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.898336e+04 1.898336e+04 0.00 NULL
2024 Nyc Dept Of Veterans’ Services Commissioner Of Department Of Veterans Services 260041.00000 2.600410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.600410e+05 2.600410e+05 0.00 NULL
2024 Nyc Dept Of Veterans’ Services Community Coordinator 59832.26561 8.376517e+05 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 8.376517e+05 8.376517e+05 0.00 NULL
2024 Nyc Dept Of Veterans’ Services Computer Associate 93974.65000 9.397465e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.397465e+04 9.397465e+04 0.00 NULL
2024 Nyc Dept Of Veterans’ Services Executive Agency Counsel 190000.00000 1.900000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.900000e+05 1.900000e+05 0.00 NULL
2024 Nyc Dept Of Veterans’ Services Executive Program Specialist 101518.50000 6.091110e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.091110e+05 6.091110e+05 0.00 NULL
2024 Nyc Dept Of Veterans’ Services Principal Administrative Associate - Non Supvr 85528.15667 2.565845e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.565845e+05 2.565845e+05 0.00 NULL
2024 Nyc Dept Of Veterans’ Services Procurement Analyst 84140.10000 8.414010e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.414010e+04 8.414010e+04 0.00 NULL
2024 Nyc Dept Of Veterans’ Services Special Assistant 172764.29667 5.182929e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.182929e+05 5.182929e+05 0.00 NULL
2024 Nyc Employees Retirement Sys Accountant 62977.61213 3.778657e+05 16567.68 2.761280e+03 0.000 294.50 6 0.000000e+00 0.00 3.944334e+05 3.778657e+05 16567.68 NULL
2024 Nyc Employees Retirement Sys Adm Manager-Non-Mgrl 97959.16667 1.175510e+06 143551.21 1.196260e+04 8908.290 2236.25 12 8.908290e+03 106899.48 1.319061e+06 1.282409e+06 36651.73 NULL
2024 Nyc Employees Retirement Sys Administrative Accountant 91466.51859 1.006132e+06 35864.09 3.260372e+03 348.920 626.50 11 3.489200e+02 3838.12 1.041996e+06 1.009970e+06 32025.97 NULL
2024 Nyc Employees Retirement Sys Administrative Actuary 188786.00000 1.887860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.887860e+05 1.887860e+05 0.00 NULL
2024 Nyc Employees Retirement Sys Administrative Graphic Artist 118806.00000 1.188060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.188060e+05 1.188060e+05 0.00 NULL
2024 Nyc Employees Retirement Sys Administrative Investigator 136591.00000 1.365910e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.365910e+05 1.365910e+05 0.00 NULL
2024 Nyc Employees Retirement Sys Administrative Labor Relations Analyst 185446.00000 1.854460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.854460e+05 1.854460e+05 0.00 NULL
2024 Nyc Employees Retirement Sys Administrative Management Auditor 129303.66667 3.879110e+05 5.59 1.863333e+00 1.160 0.00 3 1.160000e+00 3.48 3.879166e+05 3.879145e+05 2.11 NULL
2024 Nyc Employees Retirement Sys Administrative Manager 138415.00000 5.536600e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.536600e+05 5.536600e+05 0.00 NULL
2024 Nyc Employees Retirement Sys Administrative Procurement Analyst 158902.00000 1.589020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.589020e+05 1.589020e+05 0.00 NULL
2024 Nyc Employees Retirement Sys Administrative Procurement Analyst-Non-Mgrl 111413.00000 1.114130e+05 425.91 4.259100e+02 425.910 7.00 1 4.259100e+02 425.91 1.118389e+05 1.118389e+05 0.00 NULL
2024 Nyc Employees Retirement Sys Administrative Public Information Specialist 170941.00000 3.418820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.418820e+05 3.418820e+05 0.00 NULL
2024 Nyc Employees Retirement Sys Administrative Retirement Benefits Specialist 155586.75000 3.734082e+06 0.00 0.000000e+00 0.000 0.00 24 0.000000e+00 0.00 3.734082e+06 3.734082e+06 0.00 NULL
2024 Nyc Employees Retirement Sys Administrative Retirements Benefits Specialist 105674.44444 9.510700e+05 47971.49 5.330166e+03 535.150 707.25 9 5.351500e+02 4816.35 9.990415e+05 9.558863e+05 43155.14 NULL
2024 Nyc Employees Retirement Sys Administrative Staff Analyst 149800.08333 1.797601e+06 93559.26 7.796605e+03 0.000 1115.25 12 0.000000e+00 0.00 1.891160e+06 1.797601e+06 93559.26 NULL
2024 Nyc Employees Retirement Sys Agency Attorney 94200.37500 7.536030e+05 8591.08 1.073885e+03 96.675 136.00 8 9.667500e+01 773.40 7.621941e+05 7.543764e+05 7817.68 NULL
2024 Nyc Employees Retirement Sys Assistant Retirement Benefits Examiner 44350.88307 3.947229e+06 129594.20 1.456115e+03 0.000 3762.50 89 0.000000e+00 0.00 4.076823e+06 3.947229e+06 129594.20 NULL
2024 Nyc Employees Retirement Sys Associate Retirement Benefits Examiner 68312.24107 1.530194e+07 1446319.05 6.456781e+03 426.460 27895.50 224 4.264600e+02 95527.04 1.674826e+07 1.539747e+07 1350792.01 NULL
2024 Nyc Employees Retirement Sys Associate Staff Analyst 92698.25000 3.707930e+05 21323.31 5.330828e+03 581.370 305.25 4 5.813700e+02 2325.48 3.921163e+05 3.731185e+05 18997.83 NULL
2024 Nyc Employees Retirement Sys Bookkeeper 21689.91530 6.506975e+04 3348.38 1.116127e+03 68.820 116.00 3 6.882000e+01 206.46 6.841813e+04 6.527621e+04 3141.92 NULL
2024 Nyc Employees Retirement Sys Certified It Administrator 120115.00000 1.681610e+06 55885.28 3.991806e+03 4031.045 772.25 14 3.991806e+03 55885.28 1.737495e+06 1.737495e+06 0.00 NULL
2024 Nyc Employees Retirement Sys Certified It Developer 126953.25000 5.078130e+05 3585.78 8.964450e+02 1003.895 51.50 4 8.964450e+02 3585.78 5.113988e+05 5.113988e+05 0.00 NULL
2024 Nyc Employees Retirement Sys Clerical Associate 47161.76219 1.226206e+06 125514.41 4.827477e+03 760.280 3723.00 26 7.602800e+02 19767.28 1.351720e+06 1.245973e+06 105747.13 NULL
2024 Nyc Employees Retirement Sys Community Assistant 45788.75000 1.831550e+05 42758.35 1.068959e+04 4330.185 1279.00 4 4.330185e+03 17320.74 2.259134e+05 2.004757e+05 25437.61 NULL
2024 Nyc Employees Retirement Sys Community Associate 48417.99583 4.357620e+05 19099.02 2.122113e+03 272.280 725.75 9 2.722800e+02 2450.52 4.548610e+05 4.382125e+05 16648.50 NULL
2024 Nyc Employees Retirement Sys Community Coordinator 72074.14286 5.045190e+05 14655.03 2.093576e+03 74.420 399.50 7 7.442000e+01 520.94 5.191740e+05 5.050399e+05 14134.09 NULL
2024 Nyc Employees Retirement Sys Computer Associate 87710.16667 5.262610e+05 4718.74 7.864567e+02 168.635 90.50 6 1.686350e+02 1011.81 5.309797e+05 5.272728e+05 3706.93 NULL
2024 Nyc Employees Retirement Sys Computer Specialist 119739.73684 2.275055e+06 30955.39 1.629231e+03 59.860 391.25 19 5.986000e+01 1137.34 2.306010e+06 2.276192e+06 29818.05 NULL
2024 Nyc Employees Retirement Sys Computer Systems Manager 174290.73333 5.228722e+06 7427.42 2.475807e+02 0.000 103.00 30 0.000000e+00 0.00 5.236149e+06 5.228722e+06 7427.42 NULL
2024 Nyc Employees Retirement Sys Confidential Strategy Planner 102081.50000 2.041630e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.041630e+05 2.041630e+05 0.00 NULL
2024 Nyc Employees Retirement Sys Customer Information Representative Ma L 1549 57818.39472 1.040731e+06 41088.12 2.282673e+03 454.475 1044.75 18 4.544750e+02 8180.55 1.081819e+06 1.048912e+06 32907.57 NULL
2024 Nyc Employees Retirement Sys Cyber Security Analyst 100346.80000 5.017340e+05 5462.71 1.092542e+03 699.630 91.50 5 6.996300e+02 3498.15 5.071967e+05 5.052322e+05 1964.56 NULL
2024 Nyc Employees Retirement Sys Executive Agency Counsel 171497.85714 1.200485e+06 847.61 1.210871e+02 0.000 9.25 7 0.000000e+00 0.00 1.201333e+06 1.200485e+06 847.61 NULL
2024 Nyc Employees Retirement Sys Executive Director 283814.00000 2.838140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.838140e+05 2.838140e+05 0.00 NULL
2024 Nyc Employees Retirement Sys Graphic Artist 76158.00000 7.615800e+04 234.10 2.341000e+02 234.100 5.75 1 2.341000e+02 234.10 7.639210e+04 7.639210e+04 0.00 NULL
2024 Nyc Employees Retirement Sys Legal Secretarial Assistant - Al 1 Only 33594.09375 6.718819e+04 41.05 2.052500e+01 20.525 1.50 2 2.052500e+01 41.05 6.722924e+04 6.722924e+04 0.00 NULL
2024 Nyc Employees Retirement Sys Management Auditor 84308.00000 1.686160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.686160e+05 1.686160e+05 0.00 NULL
2024 Nyc Employees Retirement Sys Office Machine Aide 25032.94142 1.501976e+05 15590.76 2.598460e+03 408.390 773.75 6 4.083900e+02 2450.34 1.657884e+05 1.526480e+05 13140.42 NULL
2024 Nyc Employees Retirement Sys Principal Administrative Associate - Non Supvr 71140.51515 2.347637e+06 313390.83 9.496692e+03 3205.170 6317.75 33 3.205170e+03 105770.61 2.661028e+06 2.453408e+06 207620.22 NULL
2024 Nyc Employees Retirement Sys Procurement Analyst 64054.00000 6.405400e+04 19383.23 1.938323e+04 19383.230 422.50 1 1.938323e+04 19383.23 8.343723e+04 8.343723e+04 0.00 NULL
2024 Nyc Employees Retirement Sys Public Health Adviser 53599.00000 1.607970e+05 2206.91 7.356367e+02 824.960 65.50 3 7.356367e+02 2206.91 1.630039e+05 1.630039e+05 0.00 NULL
2024 Nyc Employees Retirement Sys Public Records Aide 16916.41962 3.383284e+04 107.42 5.371000e+01 53.710 5.25 2 5.371000e+01 107.42 3.394026e+04 3.394026e+04 0.00 NULL
2024 Nyc Employees Retirement Sys Staff Analyst 69835.25000 2.793410e+05 25532.09 6.383023e+03 913.550 404.25 4 9.135500e+02 3654.20 3.048731e+05 2.829952e+05 21877.89 NULL
2024 Nyc Employees Retirement Sys Supervising Computer Service Technician 99235.00000 9.923500e+04 14265.61 1.426561e+04 14265.610 217.00 1 1.426561e+04 14265.61 1.135006e+05 1.135006e+05 0.00 NULL
2024 Nyc Employees Retirement Sys Telecommunications Associate 127783.00000 1.277830e+05 392.49 3.924900e+02 392.490 5.50 1 3.924900e+02 392.49 1.281755e+05 1.281755e+05 0.00 NULL
2024 Nyc Employees Retirement Sys Telecommunications Manager 113784.00000 2.275680e+05 5580.19 2.790095e+03 2790.095 86.00 2 2.790095e+03 5580.19 2.331482e+05 2.331482e+05 0.00 NULL
2024 Nyc Fire Pension Fund Accountant 70144.00000 2.104320e+05 682.71 2.275700e+02 95.530 18.00 3 9.553000e+01 286.59 2.111147e+05 2.107186e+05 396.12 NULL
2024 Nyc Fire Pension Fund Actuarial Specialist Level Ii, Oj 102715.00000 1.027150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.027150e+05 1.027150e+05 0.00 NULL
2024 Nyc Fire Pension Fund Adm Manager-Non-Mgrl 95945.50000 3.837820e+05 46120.43 1.153011e+04 6048.935 678.00 4 6.048935e+03 24195.74 4.299024e+05 4.079777e+05 21924.69 NULL
2024 Nyc Fire Pension Fund Administrative Retirement Benefits Specialist 158735.00000 4.762050e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.762050e+05 4.762050e+05 0.00 NULL
2024 Nyc Fire Pension Fund Administrative Retirements Benefits Specialist 109273.00000 1.092730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.092730e+05 1.092730e+05 0.00 NULL
2024 Nyc Fire Pension Fund Administrative Staff Analyst 129015.00000 5.160600e+05 1454.10 3.635250e+02 4.840 18.50 4 4.840000e+00 19.36 5.175141e+05 5.160794e+05 1434.74 NULL
2024 Nyc Fire Pension Fund Agency Chief Contracting Officer 208481.00000 2.084810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.084810e+05 2.084810e+05 0.00 NULL
2024 Nyc Fire Pension Fund Assistant Retirement Benefits Examiner 52654.50000 2.106180e+05 6295.64 1.573910e+03 0.000 182.50 4 0.000000e+00 0.00 2.169136e+05 2.106180e+05 6295.64 NULL
2024 Nyc Fire Pension Fund Associate Retirement Benefits Examiner 70000.75000 8.400090e+05 53460.22 4.455018e+03 2364.720 973.25 12 2.364720e+03 28376.64 8.934692e+05 8.683856e+05 25083.58 NULL
2024 Nyc Fire Pension Fund Associate Staff Analyst 96129.00000 9.612900e+04 19342.90 1.934290e+04 19342.900 273.25 1 1.934290e+04 19342.90 1.154719e+05 1.154719e+05 0.00 NULL
2024 Nyc Fire Pension Fund Certified It Administrator 114558.00000 1.145580e+05 1134.39 1.134390e+03 1134.390 17.75 1 1.134390e+03 1134.39 1.156924e+05 1.156924e+05 0.00 NULL
2024 Nyc Fire Pension Fund Chief Of Staff 220743.00000 2.207430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.207430e+05 2.207430e+05 0.00 NULL
2024 Nyc Fire Pension Fund Clerical Associate 52909.00000 5.290900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.290900e+04 5.290900e+04 0.00 NULL
2024 Nyc Fire Pension Fund Community Coordinator 76565.50000 3.062620e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.062620e+05 3.062620e+05 0.00 NULL
2024 Nyc Fire Pension Fund Computer Systems Manager 215763.00000 2.157630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.157630e+05 2.157630e+05 0.00 NULL
2024 Nyc Fire Pension Fund Confidential Asst To The Executive Dir 103568.00000 1.035680e+05 17.06 1.706000e+01 17.060 0.00 1 1.706000e+01 17.06 1.035851e+05 1.035851e+05 0.00 NULL
2024 Nyc Fire Pension Fund Executive Agency Counsel 184365.00000 3.687300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.687300e+05 3.687300e+05 0.00 NULL
2024 Nyc Fire Pension Fund Executive Director 260043.00000 5.200860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.200860e+05 5.200860e+05 0.00 NULL
2024 Nyc Fire Pension Fund Principal Administrative Associate - Non Supvr 82800.25000 3.312010e+05 5857.36 1.464340e+03 0.000 123.00 4 0.000000e+00 0.00 3.370584e+05 3.312010e+05 5857.36 NULL
2024 Nyc Fire Pension Fund Public Records Aide 51116.00000 2.555800e+05 13430.27 2.686054e+03 58.140 406.25 5 5.814000e+01 290.70 2.690103e+05 2.558707e+05 13139.57 NULL
2024 Nyc Fire Pension Fund Research Assistant 72177.00000 7.217700e+04 592.24 5.922400e+02 592.240 14.75 1 5.922400e+02 592.24 7.276924e+04 7.276924e+04 0.00 NULL
2024 Nyc Fire Pension Fund Staff Analyst 67674.50000 1.353490e+05 5190.95 2.595475e+03 2595.475 123.75 2 2.595475e+03 5190.95 1.405400e+05 1.405400e+05 0.00 NULL
2024 Nyc Housing Authority *Attorney At Law 97139.00000 9.713900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.713900e+04 9.713900e+04 0.00 NULL
2024 Nyc Housing Authority *Senior Estimator 101295.00000 1.012950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.012950e+05 1.012950e+05 0.00 NULL
2024 Nyc Housing Authority Accountant 69388.39130 1.595933e+06 2155.16 9.370261e+01 0.000 52.50 23 0.000000e+00 0.00 1.598088e+06 1.595933e+06 2155.16 NULL
2024 Nyc Housing Authority Adm Manager-Non-Mgrl 94365.07619 9.908333e+06 90017.94 8.573137e+02 0.000 1255.00 105 0.000000e+00 0.00 9.998351e+06 9.908333e+06 90017.94 NULL
2024 Nyc Housing Authority Admin Community Relations Specialist 104389.46575 7.620431e+06 139334.15 1.908687e+03 0.000 2041.00 73 0.000000e+00 0.00 7.759765e+06 7.620431e+06 139334.15 NULL
2024 Nyc Housing Authority Admin Contract Specialist 166257.75000 1.330062e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.330062e+06 1.330062e+06 0.00 NULL
2024 Nyc Housing Authority Admin Job Opportunity Spec Nm 123064.00000 2.461280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.461280e+05 2.461280e+05 0.00 NULL
2024 Nyc Housing Authority Admin Tests & Meas Spec 95170.00000 9.517000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.517000e+04 9.517000e+04 0.00 NULL
2024 Nyc Housing Authority Administrative Accountant 131502.00000 4.471068e+06 3.18 9.352940e-02 0.000 0.00 34 0.000000e+00 0.00 4.471071e+06 4.471068e+06 3.18 NULL
2024 Nyc Housing Authority Administrative Architect 148658.57143 1.040610e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.040610e+06 1.040610e+06 0.00 NULL
2024 Nyc Housing Authority Administrative Business Promotion Coordinator 137145.00000 5.485800e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.485800e+05 5.485800e+05 0.00 NULL
2024 Nyc Housing Authority Administrative City Planner 141037.50000 5.641500e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.641500e+05 5.641500e+05 0.00 NULL
2024 Nyc Housing Authority Administrative Claim Examiner 151115.80000 7.555790e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.555790e+05 7.555790e+05 0.00 NULL
2024 Nyc Housing Authority Administrative Community Relations Specialist 170439.77778 1.533958e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.533958e+06 1.533958e+06 0.00 NULL
2024 Nyc Housing Authority Administrative Construction Project Manager 140859.77778 2.535476e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.535476e+06 2.535476e+06 0.00 NULL
2024 Nyc Housing Authority Administrative Director Of Social Services 85998.00000 1.719960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.719960e+05 1.719960e+05 0.00 NULL
2024 Nyc Housing Authority Administrative Energy Conservation Specialist 118450.00000 1.184500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.184500e+05 1.184500e+05 0.00 NULL
2024 Nyc Housing Authority Administrative Engineer 153838.50000 1.230708e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.230708e+06 1.230708e+06 0.00 NULL
2024 Nyc Housing Authority Administrative Fire Protection Inspector 155019.00000 3.100380e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.100380e+05 3.100380e+05 0.00 NULL
2024 Nyc Housing Authority Administrative Housing Development Specialist 147681.07407 3.987389e+06 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 3.987389e+06 3.987389e+06 0.00 NULL
2024 Nyc Housing Authority Administrative Housing Manager 148315.67568 5.487680e+06 48739.36 1.317280e+03 0.000 548.00 37 0.000000e+00 0.00 5.536419e+06 5.487680e+06 48739.36 NULL
2024 Nyc Housing Authority Administrative Housing Superintendent 143166.08130 1.760943e+07 441320.18 3.587969e+03 0.000 5660.50 123 0.000000e+00 0.00 1.805075e+07 1.760943e+07 441320.18 NULL
2024 Nyc Housing Authority Administrative Inspector 135131.90909 5.945804e+06 1275.81 2.899568e+01 0.000 9.00 44 0.000000e+00 0.00 5.947080e+06 5.945804e+06 1275.81 NULL
2024 Nyc Housing Authority Administrative Investigator 116341.00000 4.653640e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.653640e+05 4.653640e+05 0.00 NULL
2024 Nyc Housing Authority Administrative Labor Relations Analyst 154349.33333 1.389144e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.389144e+06 1.389144e+06 0.00 NULL
2024 Nyc Housing Authority Administrative Landmarks Preservationist 188514.00000 1.885140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.885140e+05 1.885140e+05 0.00 NULL
2024 Nyc Housing Authority Administrative Landscape Architect 118453.00000 1.184530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.184530e+05 1.184530e+05 0.00 NULL
2024 Nyc Housing Authority Administrative Management Auditor 114491.00000 3.434730e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.434730e+05 3.434730e+05 0.00 NULL
2024 Nyc Housing Authority Administrative Manager 153080.00000 1.530800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.530800e+05 1.530800e+05 0.00 NULL
2024 Nyc Housing Authority Administrative Printing Services Manager 135748.00000 2.714960e+05 26.77 1.338500e+01 13.385 0.00 2 1.338500e+01 26.77 2.715228e+05 2.715228e+05 0.00 NULL
2024 Nyc Housing Authority Administrative Procurement Analyst 160587.50000 3.211750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.211750e+05 3.211750e+05 0.00 NULL
2024 Nyc Housing Authority Administrative Procurement Analyst-Non-Mgrl 99149.73077 2.577893e+06 21500.30 8.269346e+02 0.000 295.00 26 0.000000e+00 0.00 2.599393e+06 2.577893e+06 21500.30 NULL
2024 Nyc Housing Authority Administrative Project Manager 144299.56000 3.607489e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 3.607489e+06 3.607489e+06 0.00 NULL
2024 Nyc Housing Authority Administrative Public Health Sanitarian 129637.60000 6.481880e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 6.481880e+05 6.481880e+05 0.00 NULL
2024 Nyc Housing Authority Administrative Public Information Specialist 154483.40000 7.724170e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.724170e+05 7.724170e+05 0.00 NULL
2024 Nyc Housing Authority Administrative Public Information Specialist Nm Former M1/M2 151694.00000 1.516940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.516940e+05 1.516940e+05 0.00 NULL
2024 Nyc Housing Authority Administrative Public Records Officer 93827.00000 9.382700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.382700e+04 9.382700e+04 0.00 NULL
2024 Nyc Housing Authority Administrative Quality Assurance Specialist 137872.66667 4.136180e+05 1699.68 5.665600e+02 0.000 25.25 3 0.000000e+00 0.00 4.153177e+05 4.136180e+05 1699.68 NULL
2024 Nyc Housing Authority Administrative Real Property Manager 136000.00000 1.360000e+06 6919.60 6.919600e+02 866.535 107.25 10 6.919600e+02 6919.60 1.366920e+06 1.366920e+06 0.00 NULL
2024 Nyc Housing Authority Administrative Space Analyst 116364.75000 4.654590e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.654590e+05 4.654590e+05 0.00 NULL
2024 Nyc Housing Authority Administrative Staff Analyst 151462.42342 1.681233e+07 32988.25 2.971914e+02 0.000 501.25 111 0.000000e+00 0.00 1.684532e+07 1.681233e+07 32988.25 NULL
2024 Nyc Housing Authority Administrative Storekeeper 128705.75000 5.148230e+05 4307.15 1.076787e+03 304.750 38.50 4 3.047500e+02 1219.00 5.191302e+05 5.160420e+05 3088.15 NULL
2024 Nyc Housing Authority Administrative Supervisor Of Building Maintenance 142088.09091 1.562969e+06 -4929.50 -4.481364e+02 0.000 0.00 11 -4.481364e+02 -4929.50 1.558040e+06 1.558040e+06 0.00 NULL
2024 Nyc Housing Authority Administrative Supervisor Of Skilled Trades 129650.75000 5.186030e+05 7193.61 1.798402e+03 0.000 98.50 4 0.000000e+00 0.00 5.257966e+05 5.186030e+05 7193.61 NULL
2024 Nyc Housing Authority Agency Attorney 95995.76923 6.239725e+06 0.00 0.000000e+00 0.000 0.00 65 0.000000e+00 0.00 6.239725e+06 6.239725e+06 0.00 NULL
2024 Nyc Housing Authority Agency Attorney Interne 78620.16667 9.434420e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 9.434420e+05 9.434420e+05 0.00 NULL
2024 Nyc Housing Authority Agency Chief Contracting Officer 258002.00000 2.580020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.580020e+05 2.580020e+05 0.00 NULL
2024 Nyc Housing Authority Agency Chief Decarbonization Officer 172381.00000 1.723810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.723810e+05 1.723810e+05 0.00 NULL
2024 Nyc Housing Authority Architect 96353.33333 2.890600e+05 11.52 3.840000e+00 0.000 0.00 3 0.000000e+00 0.00 2.890715e+05 2.890600e+05 11.52 NULL
2024 Nyc Housing Authority Asbestos Handler 89165.15385 2.318294e+06 679720.91 2.614311e+04 26521.310 10248.75 26 2.614311e+04 679720.91 2.998015e+06 2.998015e+06 0.00 NULL
2024 Nyc Housing Authority Asbestos Handler Supervisor 94774.25000 7.581940e+05 321554.71 4.019434e+04 39563.345 4502.50 8 3.956335e+04 316506.76 1.079749e+06 1.074701e+06 5047.95 NULL
2024 Nyc Housing Authority Asbestos Hazard Investigator 91610.00000 3.664400e+05 44156.94 1.103924e+04 3152.730 694.25 4 3.152730e+03 12610.92 4.105969e+05 3.790509e+05 31546.02 NULL
2024 Nyc Housing Authority Assistant Architect 85865.80000 4.293290e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.293290e+05 4.293290e+05 0.00 NULL
2024 Nyc Housing Authority Assistant Civil Engineer 87725.00000 1.754500e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.754500e+05 1.754500e+05 0.00 NULL
2024 Nyc Housing Authority Assistant Director Of Intergroup Relations 97433.00000 9.743300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.743300e+04 9.743300e+04 0.00 NULL
2024 Nyc Housing Authority Assistant Electrical Engineer 81887.25000 3.275490e+05 178.81 4.470250e+01 0.000 4.00 4 0.000000e+00 0.00 3.277278e+05 3.275490e+05 178.81 NULL
2024 Nyc Housing Authority Assistant Executive Director 189420.75000 1.515366e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.515366e+06 1.515366e+06 0.00 NULL
2024 Nyc Housing Authority Assistant Housing Manager 80817.71368 1.891134e+07 1000636.05 4.276222e+03 1313.940 18485.25 234 1.313940e+03 307461.96 1.991198e+07 1.921881e+07 693174.09 NULL
2024 Nyc Housing Authority Assistant Landscape Architect 84000.00000 1.680000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.680000e+05 1.680000e+05 0.00 NULL
2024 Nyc Housing Authority Assistant Mechanical Engineer 81665.75000 3.266630e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.266630e+05 3.266630e+05 0.00 NULL
2024 Nyc Housing Authority Assistant Printing Press Operator 67892.00000 4.073520e+05 35166.49 5.861082e+03 4385.225 693.50 6 4.385225e+03 26311.35 4.425185e+05 4.336633e+05 8855.14 NULL
2024 Nyc Housing Authority Assistant Resident Building Supt 77482.78543 1.913825e+07 3934510.24 1.592919e+04 14046.340 71299.25 247 1.404634e+04 3469445.98 2.307276e+07 2.260769e+07 465064.26 NULL
2024 Nyc Housing Authority Assistant To The Chairman 218515.00000 2.185150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.185150e+05 2.185150e+05 0.00 NULL
2024 Nyc Housing Authority Assoc Inspector 92230.46667 1.383457e+06 25827.69 1.721846e+03 0.000 371.00 15 0.000000e+00 0.00 1.409285e+06 1.383457e+06 25827.69 NULL
2024 Nyc Housing Authority Associate Benefits Opportunity Specialist 80417.60000 4.020880e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 4.020880e+05 4.020880e+05 0.00 NULL
2024 Nyc Housing Authority Associate Fire Protection Inspector 78429.25000 3.137170e+05 0.17 4.250000e-02 0.000 0.00 4 0.000000e+00 0.00 3.137172e+05 3.137170e+05 0.17 NULL
2024 Nyc Housing Authority Associate Fraud Investigator 90228.00000 1.804560e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.804560e+05 1.804560e+05 0.00 NULL
2024 Nyc Housing Authority Associate Housing Development Specialist 107082.78049 4.390394e+06 48990.00 1.194878e+03 0.000 741.25 41 0.000000e+00 0.00 4.439384e+06 4.390394e+06 48990.00 NULL
2024 Nyc Housing Authority Associate Inspector 88962.60000 8.896260e+05 100718.40 1.007184e+04 82.620 1416.75 10 8.262000e+01 826.20 9.903444e+05 8.904522e+05 99892.20 NULL
2024 Nyc Housing Authority Associate Investigator 72350.00000 4.341000e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.341000e+05 4.341000e+05 0.00 NULL
2024 Nyc Housing Authority Associate Labor Relations Analyst 106329.35294 1.807599e+06 23204.64 1.364979e+03 0.000 305.75 17 0.000000e+00 0.00 1.830804e+06 1.807599e+06 23204.64 NULL
2024 Nyc Housing Authority Associate Project Manager 100810.45455 2.217830e+06 67046.36 3.047562e+03 0.000 1131.50 22 0.000000e+00 0.00 2.284876e+06 2.217830e+06 67046.36 NULL
2024 Nyc Housing Authority Associate Public Health Sanitarian 87877.13043 2.021174e+06 95511.39 4.152669e+03 95.220 1578.00 23 9.522000e+01 2190.06 2.116685e+06 2.023364e+06 93321.33 NULL
2024 Nyc Housing Authority Associate Public Records Officer 90007.00000 1.800140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.800140e+05 1.800140e+05 0.00 NULL
2024 Nyc Housing Authority Associate Quality Assurance Specialist 70040.00000 7.004000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.004000e+04 7.004000e+04 0.00 NULL
2024 Nyc Housing Authority Associate Real Property Manager 80731.00000 3.229240e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.229240e+05 3.229240e+05 0.00 NULL
2024 Nyc Housing Authority Associate Retirement Benefits Examiner 53366.00000 5.336600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.336600e+04 5.336600e+04 0.00 NULL
2024 Nyc Housing Authority Associate Staff Analyst 92640.64583 4.446751e+06 10424.26 2.171721e+02 0.000 160.50 48 0.000000e+00 0.00 4.457175e+06 4.446751e+06 10424.26 NULL
2024 Nyc Housing Authority Associate Urban Designer 103218.50000 4.128740e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.128740e+05 4.128740e+05 0.00 NULL
2024 Nyc Housing Authority Auto Mechanic NA NA 932.55 9.325500e+02 932.550 0.00 1 9.325500e+02 932.55 NA NA NA NULL
2024 Nyc Housing Authority Automotive Service Worker 54454.80000 2.722740e+05 774.21 1.548420e+02 97.830 20.50 5 9.783000e+01 489.15 2.730482e+05 2.727632e+05 285.06 NULL
2024 Nyc Housing Authority Bookkeeper 63946.66667 1.342880e+06 24123.81 1.148753e+03 1.550 631.75 21 1.550000e+00 32.55 1.367004e+06 1.342913e+06 24091.26 NULL
2024 Nyc Housing Authority Bricklayer NA NA 1943888.43 2.737871e+04 12796.240 21862.75 71 1.279624e+04 908533.04 NA NA NA NULL
2024 Nyc Housing Authority Call Center Representative 40345.00000 8.069000e+04 176.64 8.832000e+01 88.320 8.00 2 8.832000e+01 176.64 8.086664e+04 8.086664e+04 0.00 NULL
2024 Nyc Housing Authority Caretaker 43532.06061 1.975050e+08 30482441.05 6.718634e+03 6507.150 862965.00 4537 6.507150e+03 29522939.55 2.279874e+08 2.270279e+08 959501.50 NULL
2024 Nyc Housing Authority Carpenter NA NA 3941277.14 1.807925e+04 3568.380 43247.25 218 3.568380e+03 777906.84 NA NA NA NULL
2024 Nyc Housing Authority Certified It Administrator 124725.30000 1.247253e+06 22291.59 2.229159e+03 1152.035 277.50 10 1.152035e+03 11520.35 1.269545e+06 1.258773e+06 10771.24 NULL
2024 Nyc Housing Authority Chauffeur-Attendant 68577.00000 6.857700e+04 4906.36 4.906360e+03 4906.360 110.50 1 4.906360e+03 4906.36 7.348336e+04 7.348336e+04 0.00 NULL
2024 Nyc Housing Authority Chief Caretaker 55532.66667 6.663920e+05 63717.16 5.309763e+03 3380.650 1577.00 12 3.380650e+03 40567.80 7.301092e+05 7.069598e+05 23149.36 NULL
2024 Nyc Housing Authority Chief Of Housing Community Activities 121137.42857 2.543886e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 2.543886e+06 2.543886e+06 0.00 NULL
2024 Nyc Housing Authority Chief, Publications & Reports 114259.00000 2.285180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.285180e+05 2.285180e+05 0.00 NULL
2024 Nyc Housing Authority City Attendant 45557.85714 3.189050e+05 1283.22 1.833171e+02 156.180 37.25 7 1.561800e+02 1093.26 3.201882e+05 3.199983e+05 189.96 NULL
2024 Nyc Housing Authority City Laborer NA NA 3116193.36 1.770564e+04 16187.940 53070.25 176 1.618794e+04 2849077.44 NA NA NA NULL
2024 Nyc Housing Authority City Pest Control Aide 38277.10526 2.909060e+06 47829.33 6.293333e+02 0.000 1800.50 76 0.000000e+00 0.00 2.956889e+06 2.909060e+06 47829.33 NULL
2024 Nyc Housing Authority City Planner 106962.20000 5.348110e+05 312.49 6.249800e+01 0.000 4.75 5 0.000000e+00 0.00 5.351235e+05 5.348110e+05 312.49 NULL
2024 Nyc Housing Authority City Research Scientist 95670.46667 1.435057e+06 30988.11 2.065874e+03 0.000 470.25 15 0.000000e+00 0.00 1.466045e+06 1.435057e+06 30988.11 NULL
2024 Nyc Housing Authority City Seasonal Aide 33433.30638 2.357048e+07 395.29 5.606950e-01 0.000 0.00 705 0.000000e+00 0.00 2.357088e+07 2.357048e+07 395.29 NULL
2024 Nyc Housing Authority City Security Aide 13051.54839 4.045980e+05 0.00 0.000000e+00 0.000 0.00 31 0.000000e+00 0.00 4.045980e+05 4.045980e+05 0.00 NULL
2024 Nyc Housing Authority City Service Aide 35047.28571 7.359930e+05 1583.38 7.539905e+01 0.000 49.25 21 0.000000e+00 0.00 7.375764e+05 7.359930e+05 1583.38 NULL
2024 Nyc Housing Authority Civil Engineer 116276.00000 6.976560e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.976560e+05 6.976560e+05 0.00 NULL
2024 Nyc Housing Authority Claim Specialist 78517.50000 4.711050e+05 710.99 1.184983e+02 12.455 14.50 6 1.245500e+01 74.73 4.718160e+05 4.711797e+05 636.26 NULL
2024 Nyc Housing Authority Clerical Aide 35694.66667 2.141680e+05 63.00 1.050000e+01 0.000 3.50 6 0.000000e+00 0.00 2.142310e+05 2.141680e+05 63.00 NULL
2024 Nyc Housing Authority Clerical Associate 48988.60000 4.164031e+06 40496.23 4.764262e+02 0.000 1211.25 85 0.000000e+00 0.00 4.204527e+06 4.164031e+06 40496.23 NULL
2024 Nyc Housing Authority College Aide 26211.86364 5.766610e+05 3305.57 1.502532e+02 0.000 149.75 22 0.000000e+00 0.00 5.799666e+05 5.766610e+05 3305.57 NULL
2024 Nyc Housing Authority Community Assistant 43351.80000 4.335180e+05 62.82 6.282000e+00 0.000 0.00 10 0.000000e+00 0.00 4.335808e+05 4.335180e+05 62.82 NULL
2024 Nyc Housing Authority Community Associate 54940.07807 1.477888e+07 330906.34 1.230135e+03 0.000 8382.00 269 0.000000e+00 0.00 1.510979e+07 1.477888e+07 330906.34 NULL
2024 Nyc Housing Authority Community Coordinator 77892.99535 3.349399e+07 650793.58 1.513473e+03 0.000 12948.75 430 0.000000e+00 0.00 3.414478e+07 3.349399e+07 650793.58 NULL
2024 Nyc Housing Authority Community Service Aide 38991.75127 7.681375e+06 265961.67 1.350059e+03 87.050 8888.00 197 8.705000e+01 17148.85 7.947337e+06 7.698524e+06 248812.82 NULL
2024 Nyc Housing Authority Computer Aide-Non-Spvr 54164.00000 1.083280e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.083280e+05 1.083280e+05 0.00 NULL
2024 Nyc Housing Authority Computer Associate 78448.00000 4.706880e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.706880e+05 4.706880e+05 0.00 NULL
2024 Nyc Housing Authority Computer Service Technician 53055.00000 5.305500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.305500e+04 5.305500e+04 0.00 NULL
2024 Nyc Housing Authority Computer Specialist 116551.17647 1.981370e+06 29474.85 1.733815e+03 0.000 379.00 17 0.000000e+00 0.00 2.010845e+06 1.981370e+06 29474.85 NULL
2024 Nyc Housing Authority Computer Systems Manager 157256.48333 9.435389e+06 53456.83 8.909472e+02 0.000 618.00 60 0.000000e+00 0.00 9.488846e+06 9.435389e+06 53456.83 NULL
2024 Nyc Housing Authority Confidential Investigator 81679.09615 4.247313e+06 64780.43 1.245777e+03 3.420 1206.25 52 3.420000e+00 177.84 4.312093e+06 4.247491e+06 64602.59 NULL
2024 Nyc Housing Authority Construction Project Manager 97623.82540 6.150301e+06 500568.48 7.945531e+03 51.680 7429.25 63 5.168000e+01 3255.84 6.650869e+06 6.153557e+06 497312.64 NULL
2024 Nyc Housing Authority Construction Project Manager Intern 65413.75000 2.616550e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.616550e+05 2.616550e+05 0.00 NULL
2024 Nyc Housing Authority Consultant On Race Relations 144288.00000 1.442880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.442880e+05 1.442880e+05 0.00 NULL
2024 Nyc Housing Authority Contract Specialist 73422.64286 1.027917e+06 80547.55 5.753396e+03 6.900 1538.00 14 6.900000e+00 96.60 1.108465e+06 1.028014e+06 80450.95 NULL
2024 Nyc Housing Authority Controller 224636.00000 2.246360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.246360e+05 2.246360e+05 0.00 NULL
2024 Nyc Housing Authority Coordinator, Tenant Patrol 180000.00000 3.600000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.600000e+05 3.600000e+05 0.00 NULL
2024 Nyc Housing Authority Counsel 258688.00000 2.586880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.586880e+05 2.586880e+05 0.00 NULL
2024 Nyc Housing Authority Custodian 70040.00000 7.004000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.004000e+04 7.004000e+04 0.00 NULL
2024 Nyc Housing Authority Customer Information Representative Ma L 1549 51849.50376 6.895984e+06 52565.39 3.952285e+02 0.000 1495.75 133 0.000000e+00 0.00 6.948549e+06 6.895984e+06 52565.39 NULL
2024 Nyc Housing Authority Cyber Security Analyst 66950.00000 1.339000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.339000e+05 1.339000e+05 0.00 NULL
2024 Nyc Housing Authority Deputy Controller 184615.50000 3.692310e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.692310e+05 3.692310e+05 0.00 NULL
2024 Nyc Housing Authority Deputy Director Of Design 133019.50000 2.660390e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.660390e+05 2.660390e+05 0.00 NULL
2024 Nyc Housing Authority Deputy Director Of Management 113910.66667 3.417320e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.417320e+05 3.417320e+05 0.00 NULL
2024 Nyc Housing Authority Deputy Executive Director 253923.50000 1.523541e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.523541e+06 1.523541e+06 0.00 NULL
2024 Nyc Housing Authority Deputy Inspector General 144929.00000 4.347870e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.347870e+05 4.347870e+05 0.00 NULL
2024 Nyc Housing Authority Dir Of Quality & Cost Control 221629.00000 2.216290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.216290e+05 2.216290e+05 0.00 NULL
2024 Nyc Housing Authority Director Of Audit And Program Analysis 189005.00000 3.780100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.780100e+05 3.780100e+05 0.00 NULL
2024 Nyc Housing Authority Director Of Development 119573.00000 1.195730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.195730e+05 1.195730e+05 0.00 NULL
2024 Nyc Housing Authority Director Of Equal Opportunity 199445.00000 1.994450e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.994450e+05 1.994450e+05 0.00 NULL
2024 Nyc Housing Authority Director Of Housing Applicantions 151082.00000 1.510820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.510820e+05 1.510820e+05 0.00 NULL
2024 Nyc Housing Authority Director Of Hud Acquired Properties 114920.00000 1.149200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.149200e+05 1.149200e+05 0.00 NULL
2024 Nyc Housing Authority Director Of Information Systems 185010.50000 3.700210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.700210e+05 3.700210e+05 0.00 NULL
2024 Nyc Housing Authority Director Of Leased Housing 153944.00000 1.539440e+05 299.45 2.994500e+02 299.450 0.00 1 2.994500e+02 299.45 1.542435e+05 1.542435e+05 0.00 NULL
2024 Nyc Housing Authority Director Of Methods & Analysis 180937.00000 1.809370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.809370e+05 1.809370e+05 0.00 NULL
2024 Nyc Housing Authority Director Of Program Planning 212653.00000 2.126530e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.126530e+05 2.126530e+05 0.00 NULL
2024 Nyc Housing Authority Director Of Public And Community Relations 145859.00000 1.458590e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.458590e+05 1.458590e+05 0.00 NULL
2024 Nyc Housing Authority Director Of Research & Policy Development 172172.00000 1.721720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.721720e+05 1.721720e+05 0.00 NULL
2024 Nyc Housing Authority Director Of Review & Counseling 146262.00000 1.462620e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.462620e+05 1.462620e+05 0.00 NULL
2024 Nyc Housing Authority Director Of Social & Community Services 198142.00000 1.981420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.981420e+05 1.981420e+05 0.00 NULL
2024 Nyc Housing Authority Director Or Management 182828.00000 1.828280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.828280e+05 1.828280e+05 0.00 NULL
2024 Nyc Housing Authority Director, Energy Management Strategy 145703.00000 1.457030e+05 679.77 6.797700e+02 679.770 0.00 1 6.797700e+02 679.77 1.463828e+05 1.463828e+05 0.00 NULL
2024 Nyc Housing Authority Economist 86826.37037 2.344312e+06 39922.50 1.478611e+03 0.000 687.75 27 0.000000e+00 0.00 2.384234e+06 2.344312e+06 39922.50 NULL
2024 Nyc Housing Authority Electrical Engineer 121374.00000 3.641220e+05 876.43 2.921433e+02 0.000 13.75 3 0.000000e+00 0.00 3.649984e+05 3.641220e+05 876.43 NULL
2024 Nyc Housing Authority Electrician NA NA 4939763.93 6.252866e+04 54606.580 51221.25 79 5.460658e+04 4313919.82 NA NA NA NULL
2024 Nyc Housing Authority Electricians Helper NA NA 3843152.59 4.270170e+04 38018.670 61132.50 90 3.801867e+04 3421680.30 NA NA NA NULL
2024 Nyc Housing Authority Elevator Mechanic NA NA 6968268.06 3.256200e+04 29668.680 69246.50 214 2.966868e+04 6349097.52 NA NA NA NULL
2024 Nyc Housing Authority Elevator Mechanic Helper NA NA 3243208.36 2.267978e+04 22856.750 51897.00 143 2.267978e+04 3243208.36 NA NA NA NULL
2024 Nyc Housing Authority Emergency Service Aide 42720.96154 2.221490e+06 101609.05 1.954020e+03 512.355 3299.50 52 5.123550e+02 26642.46 2.323099e+06 2.248132e+06 74966.59 NULL
2024 Nyc Housing Authority Energy Conservation Specialist 108150.00000 1.081500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081500e+05 1.081500e+05 0.00 NULL
2024 Nyc Housing Authority Estimator 99803.33333 5.988200e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.988200e+05 5.988200e+05 0.00 NULL
2024 Nyc Housing Authority Executive Agency Counsel 165824.01562 1.061274e+07 0.00 0.000000e+00 0.000 0.00 64 0.000000e+00 0.00 1.061274e+07 1.061274e+07 0.00 NULL
2024 Nyc Housing Authority Executive Program Specialist 137536.66667 8.252200e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 8.252200e+05 8.252200e+05 0.00 NULL
2024 Nyc Housing Authority Glazier NA NA 1056412.13 4.401717e+04 47441.620 9968.75 24 4.401717e+04 1056412.13 NA NA NA NULL
2024 Nyc Housing Authority Graphic Artist 76158.00000 2.284740e+05 970.74 3.235800e+02 0.000 22.50 3 0.000000e+00 0.00 2.294447e+05 2.284740e+05 970.74 NULL
2024 Nyc Housing Authority Health Services Manager 161082.00000 3.221640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.221640e+05 3.221640e+05 0.00 NULL
2024 Nyc Housing Authority Hearing Examiner 142226.00000 5.689040e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.689040e+05 5.689040e+05 0.00 NULL
2024 Nyc Housing Authority Heating Plant Technician 56172.69412 9.549358e+06 1368146.97 8.047923e+03 6473.665 34164.75 170 6.473665e+03 1100523.05 1.091750e+07 1.064988e+07 267623.92 NULL
2024 Nyc Housing Authority High Pressure Plant Tender NA NA 19385.65 9.692825e+03 9692.825 369.75 2 9.692825e+03 19385.65 NA NA NA NULL
2024 Nyc Housing Authority Housing Assistant 59678.66616 7.811937e+07 2504676.54 1.913427e+03 0.000 56180.50 1309 0.000000e+00 0.00 8.062405e+07 7.811937e+07 2504676.54 NULL
2024 Nyc Housing Authority Housing Development Specialist 94160.57143 6.591240e+05 25284.62 3.612089e+03 0.000 409.75 7 0.000000e+00 0.00 6.844086e+05 6.591240e+05 25284.62 NULL
2024 Nyc Housing Authority Housing Exterminator 51383.77108 4.264853e+06 139986.15 1.686580e+03 216.500 3516.75 83 2.165000e+02 17969.50 4.404839e+06 4.282822e+06 122016.65 NULL
2024 Nyc Housing Authority Housing Exterminator-Al Ii & Iii 60250.77941 4.097053e+06 326553.92 4.802264e+03 3135.920 7315.75 68 3.135920e+03 213242.56 4.423607e+06 4.310296e+06 113311.36 NULL
2024 Nyc Housing Authority Housing Exterminator-Al Iv 92567.11111 8.331040e+05 63848.19 7.094243e+03 4147.200 872.25 9 4.147200e+03 37324.80 8.969522e+05 8.704288e+05 26523.39 NULL
2024 Nyc Housing Authority Housing Manager 101744.88417 2.635192e+07 1956352.57 7.553485e+03 4217.240 29391.00 259 4.217240e+03 1092265.16 2.830828e+07 2.744419e+07 864087.41 NULL
2024 Nyc Housing Authority Housing Stock Worker 54642.04545 1.202125e+06 35091.72 1.595078e+03 33.075 835.25 22 3.307500e+01 727.65 1.237217e+06 1.202853e+06 34364.07 NULL
2024 Nyc Housing Authority Industrial Hygienist 83503.00000 1.670060e+05 388.43 1.942150e+02 194.215 8.75 2 1.942150e+02 388.43 1.673944e+05 1.673944e+05 0.00 NULL
2024 Nyc Housing Authority Inspector 70783.50000 1.415670e+05 24659.73 1.232986e+04 12329.865 485.75 2 1.232986e+04 24659.73 1.662267e+05 1.662267e+05 0.00 NULL
2024 Nyc Housing Authority Inspector Elevators 99069.33333 2.972080e+05 172.10 5.736667e+01 78.720 0.00 3 5.736667e+01 172.10 2.973801e+05 2.973801e+05 0.00 NULL
2024 Nyc Housing Authority Inspector General 214304.00000 2.143040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.143040e+05 2.143040e+05 0.00 NULL
2024 Nyc Housing Authority Insurance Advisor 78835.50000 1.576710e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.576710e+05 1.576710e+05 0.00 NULL
2024 Nyc Housing Authority Interpreter 65663.60000 3.283180e+05 989.66 1.979320e+02 0.000 27.75 5 0.000000e+00 0.00 3.293077e+05 3.283180e+05 989.66 NULL
2024 Nyc Housing Authority Interpreter/Translator 70696.80000 3.534840e+05 2004.76 4.009520e+02 453.690 52.25 5 4.009520e+02 2004.76 3.554888e+05 3.554888e+05 0.00 NULL
2024 Nyc Housing Authority Investigator 56710.00000 1.701300e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.701300e+05 1.701300e+05 0.00 NULL
2024 Nyc Housing Authority It Infrastructure Engineer 140337.50000 5.613500e+05 8748.44 2.187110e+03 1348.760 113.75 4 1.348760e+03 5395.04 5.700984e+05 5.667450e+05 3353.40 NULL
2024 Nyc Housing Authority It Project Specialist 128315.80000 6.415790e+05 608.86 1.217720e+02 0.000 8.00 5 0.000000e+00 0.00 6.421879e+05 6.415790e+05 608.86 NULL
2024 Nyc Housing Authority It Security Specialist 164800.00000 1.648000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.648000e+05 1.648000e+05 0.00 NULL
2024 Nyc Housing Authority It Service Management Specialist 102159.00000 6.129540e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.129540e+05 6.129540e+05 0.00 NULL
2024 Nyc Housing Authority Labor Relations Analyst Trainee 67341.00000 6.734100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.734100e+04 6.734100e+04 0.00 NULL
2024 Nyc Housing Authority Landscape Architect 104267.00000 1.042670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.042670e+05 1.042670e+05 0.00 NULL
2024 Nyc Housing Authority Lead Abatement Worker 60522.00000 6.657420e+05 64101.58 5.827416e+03 4157.110 1512.25 11 4.157110e+03 45728.21 7.298436e+05 7.114702e+05 18373.37 NULL
2024 Nyc Housing Authority Machinist NA NA 34325.36 8.581340e+03 2909.350 446.75 4 2.909350e+03 11637.40 NA NA NA NULL
2024 Nyc Housing Authority Maintenance Worker NA NA 14570630.79 1.120818e+04 9739.810 313279.50 1300 9.739810e+03 12661753.00 NA NA NA NULL
2024 Nyc Housing Authority Management Auditor 81102.36364 8.921260e+05 43954.70 3.995882e+03 0.000 830.50 11 0.000000e+00 0.00 9.360807e+05 8.921260e+05 43954.70 NULL
2024 Nyc Housing Authority Masons Helper NA NA 881436.09 1.728306e+04 14610.380 14748.00 51 1.461038e+04 745129.38 NA NA NA NULL
2024 Nyc Housing Authority Mechanical Engineer 114667.16667 6.880030e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.880030e+05 6.880030e+05 0.00 NULL
2024 Nyc Housing Authority Motor Grader Operator NA NA 100072.66 2.001453e+04 18274.900 783.50 5 1.827490e+04 91374.50 NA NA NA NULL
2024 Nyc Housing Authority Motor Vehicle Operator 51950.90000 5.195090e+05 48790.44 4.879044e+03 1153.465 1151.50 10 1.153465e+03 11534.65 5.682994e+05 5.310437e+05 37255.79 NULL
2024 Nyc Housing Authority Motor Vehicle Supervisor 65252.00000 1.305040e+05 91.02 4.551000e+01 45.510 2.00 2 4.551000e+01 91.02 1.305950e+05 1.305950e+05 0.00 NULL
2024 Nyc Housing Authority Office Machine Aide 53024.00000 5.302400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.302400e+04 5.302400e+04 0.00 NULL
2024 Nyc Housing Authority Oil Burner Specialist 74013.00000 1.480260e+05 27699.60 1.384980e+04 13849.800 553.00 2 1.384980e+04 27699.60 1.757256e+05 1.757256e+05 0.00 NULL
2024 Nyc Housing Authority Oiler NA NA 60293.63 1.507341e+04 18325.830 605.50 4 1.507341e+04 60293.63 NA NA NA NULL
2024 Nyc Housing Authority Painter NA NA 12560470.58 3.220633e+04 30204.395 157564.50 390 3.020440e+04 11779714.05 NA NA NA NULL
2024 Nyc Housing Authority Plasterer NA NA 5725068.79 2.891449e+04 12289.775 49126.00 198 1.228977e+04 2433375.45 NA NA NA NULL
2024 Nyc Housing Authority Plumber NA NA 5077902.33 4.701761e+04 40434.285 42216.75 108 4.043429e+04 4366902.78 NA NA NA NULL
2024 Nyc Housing Authority Plumber’s Helper NA NA 4928937.67 3.061452e+04 24988.320 57789.50 161 2.498832e+04 4023119.52 NA NA NA NULL
2024 Nyc Housing Authority President 263394.00000 5.267880e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.267880e+05 5.267880e+05 0.00 NULL
2024 Nyc Housing Authority Principal Administrative Associate - Non Supvr 70699.02597 5.443825e+06 68247.88 8.863361e+02 0.000 1564.50 77 0.000000e+00 0.00 5.512073e+06 5.443825e+06 68247.88 NULL
2024 Nyc Housing Authority Printing Press Operator NA NA 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 NA NA NA NULL
2024 Nyc Housing Authority Procurement Analyst 73499.34884 3.160472e+06 74441.10 1.731188e+03 0.000 1193.75 43 0.000000e+00 0.00 3.234913e+06 3.160472e+06 74441.10 NULL
2024 Nyc Housing Authority Program Producer 97603.00000 9.760300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.760300e+04 9.760300e+04 0.00 NULL
2024 Nyc Housing Authority Project Manager 84335.33333 2.530060e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.530060e+05 2.530060e+05 0.00 NULL
2024 Nyc Housing Authority Public Health Sanitarian 73958.00000 1.479160e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.479160e+05 1.479160e+05 0.00 NULL
2024 Nyc Housing Authority Public Records Officer 57070.00000 1.141400e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.141400e+05 1.141400e+05 0.00 NULL
2024 Nyc Housing Authority Quality Assurance Specialist 67297.40000 1.009461e+06 6673.76 4.449173e+02 0.000 104.50 15 0.000000e+00 0.00 1.016135e+06 1.009461e+06 6673.76 NULL
2024 Nyc Housing Authority Real Property Manager 68409.33333 2.052280e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.052280e+05 2.052280e+05 0.00 NULL
2024 Nyc Housing Authority Research Assistant 64812.77778 5.833150e+05 3823.56 4.248400e+02 0.000 74.50 9 0.000000e+00 0.00 5.871386e+05 5.833150e+05 3823.56 NULL
2024 Nyc Housing Authority Resident Building Superintendent 96199.69057 2.549292e+07 3153937.06 1.190165e+04 7095.810 48440.50 265 7.095810e+03 1880389.65 2.864686e+07 2.737331e+07 1273547.41 NULL
2024 Nyc Housing Authority Roofer NA NA 762376.04 1.772968e+04 9658.700 10590.00 43 9.658700e+03 415324.10 NA NA NA NULL
2024 Nyc Housing Authority Safety Specialist 63005.00000 6.300500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.300500e+04 6.300500e+04 0.00 NULL
2024 Nyc Housing Authority Secretary 45772.08566 2.618163e+07 163673.13 2.861418e+02 0.000 5279.50 572 0.000000e+00 0.00 2.634531e+07 2.618163e+07 163673.13 NULL
2024 Nyc Housing Authority Secretary To Deputy Executive Director 97525.83333 5.851550e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.851550e+05 5.851550e+05 0.00 NULL
2024 Nyc Housing Authority Secretary To Member 87987.00000 3.519480e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.519480e+05 3.519480e+05 0.00 NULL
2024 Nyc Housing Authority Secretary To The Chairman 94612.00000 9.461200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.461200e+04 9.461200e+04 0.00 NULL
2024 Nyc Housing Authority Senior Intergroup Relations Officer 125367.00000 1.253670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.253670e+05 1.253670e+05 0.00 NULL
2024 Nyc Housing Authority Senior It Architect 157111.00000 6.284440e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.284440e+05 6.284440e+05 0.00 NULL
2024 Nyc Housing Authority Senior Stationary Engineer NA NA 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 NA NA NA NULL
2024 Nyc Housing Authority Social Worker 67525.45455 7.427800e+05 351.46 3.195091e+01 0.000 10.00 11 0.000000e+00 0.00 7.431315e+05 7.427800e+05 351.46 NULL
2024 Nyc Housing Authority Special Assistant To The Deputy Executive Director 150293.87500 1.202351e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.202351e+06 1.202351e+06 0.00 NULL
2024 Nyc Housing Authority Special Assistant To The Executive Director 169861.00000 3.397220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.397220e+05 3.397220e+05 0.00 NULL
2024 Nyc Housing Authority Staff Analyst 73444.50000 2.056446e+06 43334.40 1.547657e+03 0.000 646.25 28 0.000000e+00 0.00 2.099780e+06 2.056446e+06 43334.40 NULL
2024 Nyc Housing Authority Staff Analyst Trainee 58262.00000 1.165240e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.165240e+05 1.165240e+05 0.00 NULL
2024 Nyc Housing Authority Statistician 67547.00000 1.350940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.350940e+05 1.350940e+05 0.00 NULL
2024 Nyc Housing Authority Summer College Intern 45625.00000 1.825000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 1.825000e+05 1.825000e+05 0.00 NULL
2024 Nyc Housing Authority Supervising Demolition Inspector 83454.00000 1.669080e+05 85073.28 4.253664e+04 42536.640 1445.00 2 4.253664e+04 85073.28 2.519813e+05 2.519813e+05 0.00 NULL
2024 Nyc Housing Authority Supervising Housing Groundskeeper 65197.68657 8.736490e+06 1912221.27 1.427031e+04 14657.075 38435.50 134 1.427031e+04 1912221.27 1.064871e+07 1.064871e+07 0.00 NULL
2024 Nyc Housing Authority Supervisor 84907.00000 5.943490e+05 79873.11 1.141044e+04 6725.670 1349.00 7 6.725670e+03 47079.69 6.742221e+05 6.414287e+05 32793.42 NULL
2024 Nyc Housing Authority Supervisor Bricklayer NA NA 579814.15 4.460109e+04 4034.160 5453.00 13 4.034160e+03 52444.08 NA NA NA NULL
2024 Nyc Housing Authority Supervisor Carpenter NA NA 192844.62 2.410558e+04 6046.600 2137.25 8 6.046600e+03 48372.80 NA NA NA NULL
2024 Nyc Housing Authority Supervisor Electrician NA NA 1089587.56 8.381443e+04 87388.960 10324.25 13 8.381443e+04 1089587.56 NA NA NA NULL
2024 Nyc Housing Authority Supervisor Elevator Mechanic NA NA 753308.50 3.138785e+04 31998.070 6647.50 24 3.138785e+04 753308.50 NA NA NA NULL
2024 Nyc Housing Authority Supervisor Glazier NA NA 174556.89 5.818563e+04 72885.620 1567.00 3 5.818563e+04 174556.89 NA NA NA NULL
2024 Nyc Housing Authority Supervisor Ii Social Work 84514.00000 3.380560e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.380560e+05 3.380560e+05 0.00 NULL
2024 Nyc Housing Authority Supervisor Of Electrical Installations & Maintenance 83553.33333 2.506600e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.506600e+05 2.506600e+05 0.00 NULL
2024 Nyc Housing Authority Supervisor Of Housing Caretaker 64581.30345 9.364289e+06 2052330.78 1.415401e+04 15309.810 43514.50 145 1.415401e+04 2052330.78 1.141662e+07 1.141662e+07 0.00 NULL
2024 Nyc Housing Authority Supervisor Of Housing Stock Workers 79283.93750 1.268543e+06 100789.79 6.299362e+03 80.250 1615.75 16 8.025000e+01 1284.00 1.369333e+06 1.269827e+06 99505.79 NULL
2024 Nyc Housing Authority Supervisor Of Mechanical Installations & Maintenance 95009.88889 2.565267e+06 214534.56 7.945724e+03 984.040 2795.50 27 9.840400e+02 26569.08 2.779802e+06 2.591836e+06 187965.48 NULL
2024 Nyc Housing Authority Supervisor Of Office Machine Operations 51200.50000 1.024010e+05 2173.62 1.086810e+03 1086.810 52.75 2 1.086810e+03 2173.62 1.045746e+05 1.045746e+05 0.00 NULL
2024 Nyc Housing Authority Supervisor Painter NA NA 3766287.31 3.656590e+04 34508.480 40604.00 103 3.450848e+04 3554373.44 NA NA NA NULL
2024 Nyc Housing Authority Supervisor Plasterer NA NA 481416.39 6.017705e+04 41664.595 3941.75 8 4.166460e+04 333316.76 NA NA NA NULL
2024 Nyc Housing Authority Supervisor Plumber NA NA 1282713.57 8.551424e+04 97424.970 9949.50 15 8.551424e+04 1282713.57 NA NA NA NULL
2024 Nyc Housing Authority Supervisor Roofer NA NA 130516.21 1.864517e+04 3801.100 1542.00 7 3.801100e+03 26607.70 NA NA NA NULL
2024 Nyc Housing Authority Telecommunication Manager 177891.40000 8.894570e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.894570e+05 8.894570e+05 0.00 NULL
2024 Nyc Housing Authority Telecommunications Associate 91957.66667 2.758730e+05 62.32 2.077333e+01 0.000 0.00 3 0.000000e+00 0.00 2.759353e+05 2.758730e+05 62.32 NULL
2024 Nyc Housing Authority Welder NA NA 351868.12 2.932234e+04 28838.540 3520.25 12 2.883854e+04 346062.48 NA NA NA NULL
2024 Nyc Housing Authority Worker’s Compensation Benefits Examiner 59945.66667 3.596740e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 3.596740e+05 3.596740e+05 0.00 NULL
2024 Nyc Housing Authority NA 194327.66667 5.829830e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.829830e+05 5.829830e+05 0.00 NULL
2024 Nyc Police Pension Fund Accountant 73313.40000 3.665670e+05 7723.37 1.544674e+03 0.000 232.50 5 0.000000e+00 0.00 3.742904e+05 3.665670e+05 7723.37 NULL
2024 Nyc Police Pension Fund Adm Manager-Non-Mgrl 105286.75000 4.211470e+05 15553.11 3.888278e+03 4121.340 224.00 4 3.888278e+03 15553.11 4.367001e+05 4.367001e+05 0.00 NULL
2024 Nyc Police Pension Fund Administrative Accountant 181252.66667 5.437580e+05 38156.84 1.271895e+04 0.000 443.00 3 0.000000e+00 0.00 5.819148e+05 5.437580e+05 38156.84 NULL
2024 Nyc Police Pension Fund Administrative Management Auditor 139043.00000 5.561720e+05 55305.54 1.382639e+04 9587.390 762.75 4 9.587390e+03 38349.56 6.114775e+05 5.945216e+05 16955.98 NULL
2024 Nyc Police Pension Fund Administrative Real Property Manager 100495.00000 1.004950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.004950e+05 1.004950e+05 0.00 NULL
2024 Nyc Police Pension Fund Administrative Retirement Benefits Specialist 157958.00000 1.737538e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 1.737538e+06 1.737538e+06 0.00 NULL
2024 Nyc Police Pension Fund Administrative Staff Analyst 170642.00000 3.412840e+05 142.04 7.102000e+01 71.020 1.50 2 7.102000e+01 142.04 3.414260e+05 3.414260e+05 0.00 NULL
2024 Nyc Police Pension Fund Agency Attorney Interne 66197.00000 6.619700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.619700e+04 6.619700e+04 0.00 NULL
2024 Nyc Police Pension Fund Agency Chief Contracting Officer 177193.00000 1.771930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.771930e+05 1.771930e+05 0.00 NULL
2024 Nyc Police Pension Fund Assistant Retirement Benefits Examiner 52685.78571 7.376010e+05 7738.93 5.527807e+02 265.110 236.75 14 2.651100e+02 3711.54 7.453399e+05 7.413125e+05 4027.39 NULL
2024 Nyc Police Pension Fund Associate Retirement Benefits Examiner 81380.94444 1.464857e+06 58022.88 3.223493e+03 291.350 1176.50 18 2.913500e+02 5244.30 1.522880e+06 1.470101e+06 52778.58 NULL
2024 Nyc Police Pension Fund Associate Staff Analyst 98601.66667 2.958050e+05 5110.68 1.703560e+03 87.850 92.75 3 8.785000e+01 263.55 3.009157e+05 2.960685e+05 4847.13 NULL
2024 Nyc Police Pension Fund Certified It Administrator 139817.00000 4.194510e+05 64824.17 2.160806e+04 26945.280 694.00 3 2.160806e+04 64824.17 4.842752e+05 4.842752e+05 0.00 NULL
2024 Nyc Police Pension Fund Clerical Aide 47150.71429 6.601100e+05 4301.26 3.072329e+02 76.355 141.25 14 7.635500e+01 1068.97 6.644113e+05 6.611790e+05 3232.29 NULL
2024 Nyc Police Pension Fund Clerical Associate 60324.28571 4.222700e+05 5905.12 8.435886e+02 741.810 175.00 7 7.418100e+02 5192.67 4.281751e+05 4.274627e+05 712.45 NULL
2024 Nyc Police Pension Fund College Aide 1743.07500 1.743075e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.743075e+03 1.743075e+03 0.00 NULL
2024 Nyc Police Pension Fund Community Assistant 44939.00000 8.987800e+04 2677.11 1.338555e+03 1338.555 91.75 2 1.338555e+03 2677.11 9.255511e+04 9.255511e+04 0.00 NULL
2024 Nyc Police Pension Fund Community Associate 61051.82353 1.037881e+06 34175.08 2.010299e+03 45.080 721.75 17 4.508000e+01 766.36 1.072056e+06 1.038647e+06 33408.72 NULL
2024 Nyc Police Pension Fund Community Coordinator 97574.22222 8.781680e+05 30644.70 3.404967e+03 52.040 466.50 9 5.204000e+01 468.36 9.088127e+05 8.786364e+05 30176.34 NULL
2024 Nyc Police Pension Fund Computer Aide-Non-Spvr 53280.00000 5.328000e+04 135.55 1.355500e+02 135.550 3.50 1 1.355500e+02 135.55 5.341555e+04 5.341555e+04 0.00 NULL
2024 Nyc Police Pension Fund Computer Associate 80547.75000 3.221910e+05 14606.47 3.651617e+03 0.000 265.50 4 0.000000e+00 0.00 3.367975e+05 3.221910e+05 14606.47 NULL
2024 Nyc Police Pension Fund Computer Specialist 140894.33333 4.226830e+05 3577.65 1.192550e+03 0.000 28.50 3 0.000000e+00 0.00 4.262607e+05 4.226830e+05 3577.65 NULL
2024 Nyc Police Pension Fund Computer Systems Manager 170243.33333 1.532190e+06 28128.03 3.125337e+03 311.640 313.50 9 3.116400e+02 2804.76 1.560318e+06 1.534995e+06 25323.27 NULL
2024 Nyc Police Pension Fund Customer Information Representative Ma L 1549 61844.50000 6.184450e+05 28497.45 2.849745e+03 26.145 508.50 10 2.614500e+01 261.45 6.469424e+05 6.187064e+05 28236.00 NULL
2024 Nyc Police Pension Fund Cyber Security Analyst 87032.00000 1.740640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.740640e+05 1.740640e+05 0.00 NULL
2024 Nyc Police Pension Fund Deputy Director 259772.50000 5.195450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.195450e+05 5.195450e+05 0.00 NULL
2024 Nyc Police Pension Fund Executive Agency Counsel 199967.50000 3.999350e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.999350e+05 3.999350e+05 0.00 NULL
2024 Nyc Police Pension Fund Executive Director 276463.00000 2.764630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.764630e+05 2.764630e+05 0.00 NULL
2024 Nyc Police Pension Fund Office Machine Aide 47011.00000 4.701100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.701100e+04 4.701100e+04 0.00 NULL
2024 Nyc Police Pension Fund Paralegal Aide 89212.00000 8.921200e+04 3143.73 3.143730e+03 3143.730 62.75 1 3.143730e+03 3143.73 9.235573e+04 9.235573e+04 0.00 NULL
2024 Nyc Police Pension Fund Principal Administrative Associate - Non Supvr 75613.28571 5.292930e+05 20741.93 2.963133e+03 1516.060 376.00 7 1.516060e+03 10612.42 5.500349e+05 5.399054e+05 10129.51 NULL
2024 Nyc Police Pension Fund Procurement Analyst 84589.66667 2.537690e+05 2095.85 6.986167e+02 386.450 40.50 3 3.864500e+02 1159.35 2.558649e+05 2.549284e+05 936.50 NULL
2024 Nyc Police Pension Fund Staff Analyst 62500.00000 6.250000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.250000e+04 6.250000e+04 0.00 NULL
2024 Nyc Police Pension Fund Staff Analyst Trainee 53532.75000 2.141310e+05 30.10 7.525000e+00 0.000 1.00 4 0.000000e+00 0.00 2.141611e+05 2.141310e+05 30.10 NULL
2024 Nyc Police Pension Fund Supervisor Of Office Machine Operations 72946.00000 7.294600e+04 31.80 3.180000e+01 31.800 0.00 1 3.180000e+01 31.80 7.297780e+04 7.297780e+04 0.00 NULL
2024 Off Of Payroll Administration Accountant 88759.66667 2.662790e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.662790e+05 2.662790e+05 0.00 NULL
2024 Off Of Payroll Administration Adm Manager-Non-Mgrl 97631.57143 2.050263e+06 5328.70 2.537476e+02 0.000 72.00 21 0.000000e+00 0.00 2.055592e+06 2.050263e+06 5328.70 NULL
2024 Off Of Payroll Administration Admin Contract Specialist 167242.00000 1.672420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.672420e+05 1.672420e+05 0.00 NULL
2024 Off Of Payroll Administration Administrative Accountant 117401.28571 8.218090e+05 9493.40 1.356200e+03 0.000 155.00 7 0.000000e+00 0.00 8.313024e+05 8.218090e+05 9493.40 NULL
2024 Off Of Payroll Administration Administrative Management Auditor 120953.50000 2.419070e+05 8.61 4.305000e+00 4.305 0.00 2 4.305000e+00 8.61 2.419156e+05 2.419156e+05 0.00 NULL
2024 Off Of Payroll Administration Administrative Public Information Specialist 158377.00000 1.583770e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.583770e+05 1.583770e+05 0.00 NULL
2024 Off Of Payroll Administration Administrative Staff Analyst 127265.22727 2.799835e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 2.799835e+06 2.799835e+06 0.00 NULL
2024 Off Of Payroll Administration Agency Attorney 2991.24000 2.991240e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.991240e+03 2.991240e+03 0.00 NULL
2024 Off Of Payroll Administration Associate Staff Analyst 91198.85714 6.383920e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 6.383920e+05 6.383920e+05 0.00 NULL
2024 Off Of Payroll Administration Bookkeeper 68132.00000 6.813200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.813200e+04 6.813200e+04 0.00 NULL
2024 Off Of Payroll Administration Certified It Administrator 116118.00000 1.161180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.161180e+05 1.161180e+05 0.00 NULL
2024 Off Of Payroll Administration Certified It Developer 139042.00000 1.390420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.390420e+05 1.390420e+05 0.00 NULL
2024 Off Of Payroll Administration Clerical Associate 55265.44444 4.973890e+05 1184.51 1.316122e+02 0.000 37.00 9 0.000000e+00 0.00 4.985735e+05 4.973890e+05 1184.51 NULL
2024 Off Of Payroll Administration Community Associate 56105.00000 1.122100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.122100e+05 1.122100e+05 0.00 NULL
2024 Off Of Payroll Administration Community Coordinator 91071.50000 1.821430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.821430e+05 1.821430e+05 0.00 NULL
2024 Off Of Payroll Administration Computer Associate 90660.75000 3.626430e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.626430e+05 3.626430e+05 0.00 NULL
2024 Off Of Payroll Administration Computer Specialist 122820.28571 8.597420e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.597420e+05 8.597420e+05 0.00 NULL
2024 Off Of Payroll Administration Computer Systems Manager 146498.28571 3.076464e+06 0.00 0.000000e+00 0.000 0.00 21 0.000000e+00 0.00 3.076464e+06 3.076464e+06 0.00 NULL
2024 Off Of Payroll Administration Custodian 64764.00000 6.476400e+04 2097.29 2.097290e+03 2097.290 41.50 1 2.097290e+03 2097.29 6.686129e+04 6.686129e+04 0.00 NULL
2024 Off Of Payroll Administration Customer Information Representative Ma L 1549 84579.66667 5.074780e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.074780e+05 5.074780e+05 0.00 NULL
2024 Off Of Payroll Administration Executive Agency Counsel 206460.00000 2.064600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.064600e+05 2.064600e+05 0.00 NULL
2024 Off Of Payroll Administration Executive Director 272669.00000 2.726690e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.726690e+05 2.726690e+05 0.00 NULL
2024 Off Of Payroll Administration Management Auditor 91886.00000 1.837720e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.837720e+05 1.837720e+05 0.00 NULL
2024 Off Of Payroll Administration New York City Public Service Fellow 46350.00000 4.635000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.635000e+04 4.635000e+04 0.00 NULL
2024 Off Of Payroll Administration Principal Administrative Associate - Non Supvr 69947.20833 1.678733e+06 73477.16 3.061548e+03 0.000 1298.75 24 0.000000e+00 0.00 1.752210e+06 1.678733e+06 73477.16 NULL
2024 Off Of Payroll Administration Public Records Officer 59248.00000 2.369920e+05 14122.26 3.530565e+03 0.000 321.00 4 0.000000e+00 0.00 2.511143e+05 2.369920e+05 14122.26 NULL
2024 Off Of Payroll Administration Staff Analyst 82193.20000 4.109660e+05 1.18 2.360000e-01 0.000 0.00 5 0.000000e+00 0.00 4.109672e+05 4.109660e+05 1.18 NULL
2024 Off Of Payroll Administration Supervisor Of Stock Workers 54333.00000 5.433300e+04 2.81 2.810000e+00 2.810 0.00 1 2.810000e+00 2.81 5.433581e+04 5.433581e+04 0.00 NULL
2024 Off Of Payroll Administration Telecommunications Associate 63654.00000 6.365400e+04 896.39 8.963900e+02 896.390 24.00 1 8.963900e+02 896.39 6.455039e+04 6.455039e+04 0.00 NULL
2024 Office Of Collective Bargainin Administrative Staff Analyst 187641.00000 1.876410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.876410e+05 1.876410e+05 0.00 NULL
2024 Office Of Collective Bargainin Community Associate 72100.00000 7.210000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.210000e+04 7.210000e+04 0.00 NULL
2024 Office Of Collective Bargainin Computer Systems Manager 146046.00000 1.460460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.460460e+05 1.460460e+05 0.00 NULL
2024 Office Of Collective Bargainin Deputy Director 234337.50000 4.686750e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.686750e+05 4.686750e+05 0.00 NULL
2024 Office Of Collective Bargainin Director Of Information And Research 206880.00000 2.068800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.068800e+05 2.068800e+05 0.00 NULL
2024 Office Of Collective Bargainin Director Of The Office Of Collective Bargaining 277605.00000 2.776050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.776050e+05 2.776050e+05 0.00 NULL
2024 Office Of Collective Bargainin Executive Assistant To The Director 118737.00000 1.187370e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.187370e+05 1.187370e+05 0.00 NULL
2024 Office Of Collective Bargainin Labor Relations Trial Examiner 153005.85714 1.071041e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.071041e+06 1.071041e+06 0.00 NULL
2024 Office Of Collective Bargainin Secretary To The Deputy Chair 84465.00000 8.446500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.446500e+04 8.446500e+04 0.00 NULL
2024 Office Of Collective Bargainin Secy To The Director Of Collective Bargaining 84617.00000 8.461700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.461700e+04 8.461700e+04 0.00 NULL
2024 Office Of Collective Bargainin Staff Analyst 79251.00000 7.925100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.925100e+04 7.925100e+04 0.00 NULL
2024 Office Of Criminal Justice Administrative Manager 129434.00000 1.294340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.294340e+05 1.294340e+05 0.00 NULL
2024 Office Of Criminal Justice Administrative Staff Analyst 115928.00000 1.159280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.159280e+05 1.159280e+05 0.00 NULL
2024 Office Of Criminal Justice Agency Attorney 106502.00000 1.065020e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.065020e+05 1.065020e+05 0.00 NULL
2024 Office Of Criminal Justice Assistant Legislative Representative 127308.00000 1.273080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.273080e+05 1.273080e+05 0.00 NULL
2024 Office Of Criminal Justice Community Associate 49615.00000 4.961500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.961500e+04 4.961500e+04 0.00 NULL
2024 Office Of Criminal Justice Community Coordinator 74160.00000 7.416000e+04 817.75 8.177500e+02 817.750 20.75 1 8.177500e+02 817.75 7.497775e+04 7.497775e+04 0.00 NULL
2024 Office Of Criminal Justice Contract Specialist 54590.00000 5.459000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.459000e+04 5.459000e+04 0.00 NULL
2024 Office Of Criminal Justice Director Of Criminal Justice 260042.00000 2.600420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.600420e+05 2.600420e+05 0.00 NULL
2024 Office Of Criminal Justice Executive Agency Counsel 166827.60000 8.341380e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.341380e+05 8.341380e+05 0.00 NULL
2024 Office Of Criminal Justice Executive Assistant 82400.00000 8.240000e+04 218.94 2.189400e+02 218.940 5.00 1 2.189400e+02 218.94 8.261894e+04 8.261894e+04 0.00 NULL
2024 Office Of Criminal Justice New York City Public Service Fellow 43391.00000 4.339100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.339100e+04 4.339100e+04 0.00 NULL
2024 Office Of Criminal Justice Project Coordinator 101295.00000 1.012950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.012950e+05 1.012950e+05 0.00 NULL
2024 Office Of Criminal Justice Research Projects Coord 111166.13158 4.224313e+06 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 4.224313e+06 4.224313e+06 0.00 NULL
2024 Office Of Criminal Justice Secretary 74284.00000 7.428400e+04 789.49 7.894900e+02 789.490 22.00 1 7.894900e+02 789.49 7.507349e+04 7.507349e+04 0.00 NULL
2024 Office Of Criminal Justice Senior Project Planner 146317.00000 1.463170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.463170e+05 1.463170e+05 0.00 NULL
2024 Office Of Criminal Justice Special Assistant 133275.31944 1.199478e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.199478e+06 1.199478e+06 0.00 NULL
2024 Office Of Emergency Management Administrative Public Information Specialist 139812.00000 1.398120e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.398120e+05 1.398120e+05 0.00 NULL
2024 Office Of Emergency Management Agency Attorney 97932.00000 2.937960e+05 12471.03 4.157010e+03 1289.170 135.75 3 1.289170e+03 3867.51 3.062670e+05 2.976635e+05 8603.52 NULL
2024 Office Of Emergency Management Certified It Administrator 165283.00000 1.652830e+05 4128.09 4.128090e+03 4128.090 45.50 1 4.128090e+03 4128.09 1.694111e+05 1.694111e+05 0.00 NULL
2024 Office Of Emergency Management College Aide 4233.37143 5.926720e+04 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 5.926720e+04 5.926720e+04 0.00 NULL
2024 Office Of Emergency Management Commissioner Of Emergency Management 277605.00000 2.776050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.776050e+05 2.776050e+05 0.00 NULL
2024 Office Of Emergency Management Community Associate 57984.00000 5.798400e+04 10956.68 1.095668e+04 10956.680 283.75 1 1.095668e+04 10956.68 6.894068e+04 6.894068e+04 0.00 NULL
2024 Office Of Emergency Management Community Coordinator 85538.00000 8.553800e+04 42728.33 4.272833e+04 42728.330 693.50 1 4.272833e+04 42728.33 1.282663e+05 1.282663e+05 0.00 NULL
2024 Office Of Emergency Management Deputy Commissioner 206426.00000 1.032130e+06 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.032130e+06 1.032130e+06 0.00 NULL
2024 Office Of Emergency Management Emergency Prepardness Manager 131496.91791 9.730772e+06 33005.48 4.460200e+02 0.000 356.00 74 0.000000e+00 0.00 9.763777e+06 9.730772e+06 33005.48 NULL
2024 Office Of Emergency Management Emergency Preparedness Manager 113498.47368 2.156471e+06 0.00 0.000000e+00 0.000 0.00 19 0.000000e+00 0.00 2.156471e+06 2.156471e+06 0.00 NULL
2024 Office Of Emergency Management Emergency Preparedness Specialist 77286.86514 1.252047e+07 1114695.95 6.880839e+03 3081.150 19576.75 162 3.081150e+03 499146.30 1.363517e+07 1.301962e+07 615549.65 NULL
2024 Office Of Emergency Management Executive Agency Counsel 151580.00000 9.094800e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.094800e+05 9.094800e+05 0.00 NULL
2024 Office Of Emergency Management First Deputy Commissioner 258867.00000 2.588670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.588670e+05 2.588670e+05 0.00 NULL
2024 Office Of Labor Relations Accountant 90458.00000 2.713740e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.713740e+05 2.713740e+05 0.00 NULL
2024 Office Of Labor Relations Adm Manager-Non-Mgrl 101703.80000 5.085190e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.085190e+05 5.085190e+05 0.00 NULL
2024 Office Of Labor Relations Admin Community Relations Specialist 68203.00000 6.820300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.820300e+04 6.820300e+04 0.00 NULL
2024 Office Of Labor Relations Administrative Labor Relations Analyst 155211.25000 6.208450e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.208450e+05 6.208450e+05 0.00 NULL
2024 Office Of Labor Relations Administrative Manager 121734.75000 4.869390e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.869390e+05 4.869390e+05 0.00 NULL
2024 Office Of Labor Relations Administrative Staff Analyst 147374.33333 4.421230e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.421230e+05 4.421230e+05 0.00 NULL
2024 Office Of Labor Relations Agency Attorney 103949.50000 2.078990e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.078990e+05 2.078990e+05 0.00 NULL
2024 Office Of Labor Relations Assistant Commissioner Of Labor Relations 188579.33333 1.697214e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.697214e+06 1.697214e+06 0.00 NULL
2024 Office Of Labor Relations Assistant Retirement Benefits Examiner 51966.40000 5.196640e+05 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.196640e+05 5.196640e+05 0.00 NULL
2024 Office Of Labor Relations Associate Labor Relations Analyst 104703.50000 2.094070e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.094070e+05 2.094070e+05 0.00 NULL
2024 Office Of Labor Relations Associate Staff Analyst 94033.50000 5.642010e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 5.642010e+05 5.642010e+05 0.00 NULL
2024 Office Of Labor Relations Certified It Administrator 126886.66667 3.806600e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.806600e+05 3.806600e+05 0.00 NULL
2024 Office Of Labor Relations City Research Scientist 92556.68750 1.480907e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.480907e+06 1.480907e+06 0.00 NULL
2024 Office Of Labor Relations Clerical Associate 50500.00863 2.020000e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.020000e+05 2.020000e+05 0.00 NULL
2024 Office Of Labor Relations Commissioner Of Labor Relations 277605.00000 2.776050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.776050e+05 2.776050e+05 0.00 NULL
2024 Office Of Labor Relations Community Assistant 36646.00000 1.832300e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.832300e+05 1.832300e+05 0.00 NULL
2024 Office Of Labor Relations Community Associate 48137.27273 1.059020e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 1.059020e+06 1.059020e+06 0.00 NULL
2024 Office Of Labor Relations Community Coordinator 69888.82692 1.817110e+06 0.00 0.000000e+00 0.000 0.00 26 0.000000e+00 0.00 1.817110e+06 1.817110e+06 0.00 NULL
2024 Office Of Labor Relations Computer Specialist 116943.00000 2.338860e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.338860e+05 2.338860e+05 0.00 NULL
2024 Office Of Labor Relations Computer Systems Manager 144828.50000 2.896570e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.896570e+05 2.896570e+05 0.00 NULL
2024 Office Of Labor Relations Counsel 253333.00000 2.533330e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.533330e+05 2.533330e+05 0.00 NULL
2024 Office Of Labor Relations Customer Information Representative Ma L 1549 66791.56500 1.335831e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.335831e+05 1.335831e+05 0.00 NULL
2024 Office Of Labor Relations Deputy Assistant Counsel 95630.50000 3.825220e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.825220e+05 3.825220e+05 0.00 NULL
2024 Office Of Labor Relations Deputy Commissioner Of Labor Relations 257421.50000 5.148430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.148430e+05 5.148430e+05 0.00 NULL
2024 Office Of Labor Relations Director 186260.00000 1.862600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.862600e+05 1.862600e+05 0.00 NULL
2024 Office Of Labor Relations Employee Assistance Program Specialist 77027.00000 1.540540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.540540e+05 1.540540e+05 0.00 NULL
2024 Office Of Labor Relations Employee Health Benefits Program Director 246781.00000 2.467810e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.467810e+05 2.467810e+05 0.00 NULL
2024 Office Of Labor Relations Executive Agency Counsel 166611.16667 9.996670e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.996670e+05 9.996670e+05 0.00 NULL
2024 Office Of Labor Relations Health Services Manager 138874.00000 1.388740e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.388740e+05 1.388740e+05 0.00 NULL
2024 Office Of Labor Relations Insurance Advisor 69674.18750 1.114787e+06 0.00 0.000000e+00 0.000 0.00 16 0.000000e+00 0.00 1.114787e+06 1.114787e+06 0.00 NULL
2024 Office Of Labor Relations Management Auditor 89610.00000 8.961000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.961000e+04 8.961000e+04 0.00 NULL
2024 Office Of Labor Relations Paralegal Aide 55191.82000 5.519182e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.519182e+04 5.519182e+04 0.00 NULL
2024 Office Of Labor Relations Principal Administrative Associate - Non Supvr 74587.84355 9.696420e+05 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 9.696420e+05 9.696420e+05 0.00 NULL
2024 Office Of Labor Relations Secretary 45877.00000 4.587700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.587700e+04 4.587700e+04 0.00 NULL
2024 Office Of Labor Relations Secretary To The Commissioner Of Labor Relations 78589.00000 7.858900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.858900e+04 7.858900e+04 0.00 NULL
2024 Office Of Labor Relations Staff Analyst 73457.00000 2.203710e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.203710e+05 2.203710e+05 0.00 NULL
2024 Office Of Labor Relations Tests And Measurement Specialist 99392.00000 9.939200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.939200e+04 9.939200e+04 0.00 NULL
2024 Office Of Management & Budget Administrative Staff Analyst 203576.50000 4.071530e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.071530e+05 4.071530e+05 0.00 NULL
2024 Office Of Management & Budget Budget Analyst 108708.67702 5.739818e+07 184272.53 3.490010e+02 0.000 3606.50 528 0.000000e+00 0.00 5.758245e+07 5.739818e+07 184272.53 NULL
2024 Office Of Management & Budget College Aide 12686.06750 1.014885e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.014885e+05 1.014885e+05 0.00 NULL
2024 Office Of Management & Budget Community Associate 60451.00000 6.045100e+04 1905.47 1.905470e+03 1905.470 50.00 1 1.905470e+03 1905.47 6.235647e+04 6.235647e+04 0.00 NULL
2024 Office Of Management & Budget Computer Specialist 92555.00000 9.255500e+04 233.62 2.336200e+02 233.620 4.50 1 2.336200e+02 233.62 9.278862e+04 9.278862e+04 0.00 NULL
2024 Office Of Management & Budget Computer Systems Manager 237472.00000 2.374720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.374720e+05 2.374720e+05 0.00 NULL
2024 Office Of Management & Budget Director Of Financing Policy Coordination 254490.00000 2.544900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.544900e+05 2.544900e+05 0.00 NULL
2024 Office Of Management & Budget Director Of Management & Budget 287663.00000 2.876630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.876630e+05 2.876630e+05 0.00 NULL
2024 Office Of Management & Budget Executive Agency Counsel 238707.00000 4.774140e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.774140e+05 4.774140e+05 0.00 NULL
2024 Office Of Management & Budget Staff Analyst 61866.00000 6.186600e+04 6.43 6.430000e+00 6.430 0.00 1 6.430000e+00 6.43 6.187243e+04 6.187243e+04 0.00 NULL
2024 Office Of Management & Budget Statistical Secretary 75998.22222 6.839840e+05 261.92 2.910222e+01 0.000 7.50 9 0.000000e+00 0.00 6.842459e+05 6.839840e+05 261.92 NULL
2024 Office Of Management & Budget Summer College Intern 2434.42222 6.572940e+04 0.00 0.000000e+00 0.000 0.00 27 0.000000e+00 0.00 6.572940e+04 6.572940e+04 0.00 NULL
2024 Office Of Management & Budget Summer Graduate Intern 2258.75000 1.355250e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.355250e+04 1.355250e+04 0.00 NULL
2024 Office Of Management & Budget Supervisor Of Office Machine Operations 61602.00000 6.160200e+04 7932.66 7.932660e+03 7932.660 174.75 1 7.932660e+03 7932.66 6.953466e+04 6.953466e+04 0.00 NULL
2024 Office Of Racial Equity Administrative Assistant To The Mayor 213847.00000 2.138470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.138470e+05 2.138470e+05 0.00 NULL
2024 Office Of Racial Equity Community Coordinator 85000.00000 8.500000e+04 360.56 3.605600e+02 360.560 7.75 1 3.605600e+02 360.56 8.536056e+04 8.536056e+04 0.00 NULL
2024 Office Of Racial Equity Research Projects Coord 149600.00000 7.480000e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.480000e+05 7.480000e+05 0.00 NULL
2024 Office Of Racial Equity Special Assistant 153793.00000 6.151720e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 6.151720e+05 6.151720e+05 0.00 NULL
2024 Office Of The Actuary Actuarial Specialist Level I 81164.65385 2.110281e+06 15358.10 5.906962e+02 0.000 366.75 26 0.000000e+00 0.00 2.125639e+06 2.110281e+06 15358.10 NULL
2024 Office Of The Actuary Actuarial Specialist Level Ii, Oj 132120.00000 1.321200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.321200e+05 1.321200e+05 0.00 NULL
2024 Office Of The Actuary Administrative Actuary 196958.83333 2.363506e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 2.363506e+06 2.363506e+06 0.00 NULL
2024 Office Of The Actuary Administrative Public Information Specialist 141957.00000 1.419570e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.419570e+05 1.419570e+05 0.00 NULL
2024 Office Of The Actuary Administrative Staff Analyst 138804.50000 2.776090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.776090e+05 2.776090e+05 0.00 NULL
2024 Office Of The Actuary Certified It Administrator 116634.00000 1.166340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.166340e+05 1.166340e+05 0.00 NULL
2024 Office Of The Actuary Chief Actuary 349723.00000 3.497230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.497230e+05 3.497230e+05 0.00 NULL
2024 Office Of The Actuary College Aide 1550.42600 1.550426e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.550426e+03 1.550426e+03 0.00 NULL
2024 Office Of The Actuary Community Associate 66432.00000 6.643200e+04 14103.98 1.410398e+04 14103.980 338.50 1 1.410398e+04 14103.98 8.053598e+04 8.053598e+04 0.00 NULL
2024 Office Of The Actuary Computer Systems Manager 225443.00000 2.254430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.254430e+05 2.254430e+05 0.00 NULL
2024 Office Of The Actuary Executive Agency Counsel 193434.00000 3.868680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.868680e+05 3.868680e+05 0.00 NULL
2024 Office Of The Actuary Principal Administrative Associate - Non Supvr 82976.00000 8.297600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.297600e+04 8.297600e+04 0.00 NULL
2024 Office Of The Actuary Procurement Analyst 79850.00000 7.985000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.985000e+04 7.985000e+04 0.00 NULL
2024 Office Of The Actuary Secretary To The Chief Actuary 76942.00000 7.694200e+04 8.98 8.980000e+00 8.980 0.00 1 8.980000e+00 8.98 7.695098e+04 7.695098e+04 0.00 NULL
2024 Office Of The Comptroller Accountant 76907.50000 1.999595e+06 36464.70 1.402488e+03 0.000 628.00 26 0.000000e+00 0.00 2.036060e+06 1.999595e+06 36464.70 NULL
2024 Office Of The Comptroller Adm Manager-Non-Mgrl 89167.33333 2.407518e+06 27432.57 1.016021e+03 0.000 450.75 27 0.000000e+00 0.00 2.434951e+06 2.407518e+06 27432.57 NULL
2024 Office Of The Comptroller Admin Community Relations Specialist 86752.50000 3.470100e+05 308.25 7.706250e+01 0.000 5.25 4 0.000000e+00 0.00 3.473182e+05 3.470100e+05 308.25 NULL
2024 Office Of The Comptroller Administrative Accountant 124265.00000 3.106625e+06 25579.08 1.023163e+03 0.000 356.50 25 0.000000e+00 0.00 3.132204e+06 3.106625e+06 25579.08 NULL
2024 Office Of The Comptroller Administrative Architect 109168.00000 1.091680e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.091680e+05 1.091680e+05 0.00 NULL
2024 Office Of The Comptroller Administrative Assistant To The Comptroller 142436.66667 4.273100e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.273100e+05 4.273100e+05 0.00 NULL
2024 Office Of The Comptroller Administrative Business Promotion Coordinator 109352.20000 5.467610e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.467610e+05 5.467610e+05 0.00 NULL
2024 Office Of The Comptroller Administrative City Planner 155484.83333 9.329090e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 9.329090e+05 9.329090e+05 0.00 NULL
2024 Office Of The Comptroller Administrative Claim Examiner 98856.34783 2.273696e+06 43555.61 1.893722e+03 0.000 850.50 23 0.000000e+00 0.00 2.317252e+06 2.273696e+06 43555.61 NULL
2024 Office Of The Comptroller Administrative Construction Project Manager 129551.66667 3.886550e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.886550e+05 3.886550e+05 0.00 NULL
2024 Office Of The Comptroller Administrative Engineer 137033.47059 2.329569e+06 0.00 0.000000e+00 0.000 0.00 17 0.000000e+00 0.00 2.329569e+06 2.329569e+06 0.00 NULL
2024 Office Of The Comptroller Administrative Graphic Artist 105793.00000 1.057930e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.057930e+05 1.057930e+05 0.00 NULL
2024 Office Of The Comptroller Administrative Labor Relations Analyst 180795.50000 1.084773e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.084773e+06 1.084773e+06 0.00 NULL
2024 Office Of The Comptroller Administrative Management Auditor 142745.00000 1.998430e+06 -3.25 -2.321429e-01 0.000 0.00 14 -2.321429e-01 -3.25 1.998427e+06 1.998427e+06 0.00 NULL
2024 Office Of The Comptroller Administrative Manager 154741.00000 1.547410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.547410e+05 1.547410e+05 0.00 NULL
2024 Office Of The Comptroller Administrative Procurement Analyst 166477.50000 6.659100e+05 65.24 1.631000e+01 0.000 0.00 4 0.000000e+00 0.00 6.659752e+05 6.659100e+05 65.24 NULL
2024 Office Of The Comptroller Administrative Procurement Analyst-Non-Mgrl 93005.20000 4.650260e+05 4913.09 9.826180e+02 128.560 78.50 5 1.285600e+02 642.80 4.699391e+05 4.656688e+05 4270.29 NULL
2024 Office Of The Comptroller Administrative Project Manager 123594.28571 8.651600e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 8.651600e+05 8.651600e+05 0.00 NULL
2024 Office Of The Comptroller Administrative Public Information Specialist 93682.00000 9.368200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.368200e+04 9.368200e+04 0.00 NULL
2024 Office Of The Comptroller Administrative Public Information Specialist Nm Former M1/M2 92407.00000 1.848140e+05 1704.21 8.521050e+02 852.105 40.00 2 8.521050e+02 1704.21 1.865182e+05 1.865182e+05 0.00 NULL
2024 Office Of The Comptroller Administrative Public Records Officer 86488.50000 1.729770e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.729770e+05 1.729770e+05 0.00 NULL
2024 Office Of The Comptroller Administrative Staff Analyst 133766.55000 2.675331e+06 11321.77 5.660885e+02 0.000 116.75 20 0.000000e+00 0.00 2.686653e+06 2.675331e+06 11321.77 NULL
2024 Office Of The Comptroller Administrative Supervisor Of Building Maintenance 88776.33333 2.663290e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.663290e+05 2.663290e+05 0.00 NULL
2024 Office Of The Comptroller Agency Attorney 91193.00000 1.732667e+06 2.70 1.421053e-01 0.000 0.00 19 0.000000e+00 0.00 1.732670e+06 1.732667e+06 2.70 NULL
2024 Office Of The Comptroller Agency Attorney Interne 77250.00000 1.545000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.545000e+05 1.545000e+05 0.00 NULL
2024 Office Of The Comptroller Agency Chief Contracting Officer 181826.00000 1.818260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.818260e+05 1.818260e+05 0.00 NULL
2024 Office Of The Comptroller Architect 115142.00000 1.151420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.151420e+05 1.151420e+05 0.00 NULL
2024 Office Of The Comptroller Assistant Budget Analyst 65053.03579 9.757955e+05 10985.20 7.323467e+02 0.000 231.50 15 0.000000e+00 0.00 9.867807e+05 9.757955e+05 10985.20 NULL
2024 Office Of The Comptroller Assistant Comptroller 200711.00000 4.014220e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.014220e+05 4.014220e+05 0.00 NULL
2024 Office Of The Comptroller Assistant Comptroller Of It 236017.00000 2.360170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.360170e+05 2.360170e+05 0.00 NULL
2024 Office Of The Comptroller Assistant Mechanical Engineer 73878.00000 7.387800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.387800e+04 7.387800e+04 0.00 NULL
2024 Office Of The Comptroller Assistant To Deputy Comptroller 150000.00000 1.500000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.500000e+05 1.500000e+05 0.00 NULL
2024 Office Of The Comptroller Assistant To The Comptroller 141181.54000 2.823631e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.823631e+05 2.823631e+05 0.00 NULL
2024 Office Of The Comptroller Associate Fraud Investigator 87345.00000 1.746900e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.746900e+05 1.746900e+05 0.00 NULL
2024 Office Of The Comptroller Associate Investigator 77599.50000 3.103980e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.103980e+05 3.103980e+05 0.00 NULL
2024 Office Of The Comptroller Associate Project Manager 118421.00000 5.921050e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.921050e+05 5.921050e+05 0.00 NULL
2024 Office Of The Comptroller Associate Staff Analyst 96042.87500 7.683430e+05 8206.39 1.025799e+03 15.065 121.75 8 1.506500e+01 120.52 7.765494e+05 7.684635e+05 8085.87 NULL
2024 Office Of The Comptroller Bookkeeper 63295.42857 4.430680e+05 2691.47 3.844957e+02 0.000 64.00 7 0.000000e+00 0.00 4.457595e+05 4.430680e+05 2691.47 NULL
2024 Office Of The Comptroller Budget Analyst 100651.77778 9.058660e+05 1947.21 2.163567e+02 0.000 29.25 9 0.000000e+00 0.00 9.078132e+05 9.058660e+05 1947.21 NULL
2024 Office Of The Comptroller Business Promotion Coordinator 78419.00000 6.273520e+05 609.01 7.612625e+01 0.000 14.75 8 0.000000e+00 0.00 6.279610e+05 6.273520e+05 609.01 NULL
2024 Office Of The Comptroller Certified It Administrator 119330.00000 1.193300e+05 3646.17 3.646170e+03 3646.170 54.00 1 3.646170e+03 3646.17 1.229762e+05 1.229762e+05 0.00 NULL
2024 Office Of The Comptroller City Custodial Assistant 32210.95611 2.898986e+05 30887.32 3.431924e+03 2426.230 1056.00 9 2.426230e+03 21836.07 3.207859e+05 3.117347e+05 9051.25 NULL
2024 Office Of The Comptroller Civil Engineer 125790.00000 1.257900e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.257900e+05 1.257900e+05 0.00 NULL
2024 Office Of The Comptroller Claim Specialist 70326.19444 2.531743e+06 606.23 1.683972e+01 0.000 13.25 36 0.000000e+00 0.00 2.532349e+06 2.531743e+06 606.23 NULL
2024 Office Of The Comptroller Clerical Associate 48220.05249 1.205501e+06 26909.56 1.076382e+03 0.000 609.00 25 0.000000e+00 0.00 1.232411e+06 1.205501e+06 26909.56 NULL
2024 Office Of The Comptroller College Aide 4774.68500 2.387342e+04 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.387342e+04 2.387342e+04 0.00 NULL
2024 Office Of The Comptroller Communications Officer 116407.60000 5.820380e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.820380e+05 5.820380e+05 0.00 NULL
2024 Office Of The Comptroller Community Assistant 44535.00000 8.907000e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.907000e+04 8.907000e+04 0.00 NULL
2024 Office Of The Comptroller Community Associate 60706.44444 5.463580e+05 296.56 3.295111e+01 0.000 8.00 9 0.000000e+00 0.00 5.466546e+05 5.463580e+05 296.56 NULL
2024 Office Of The Comptroller Community Coordinator 77043.15000 1.540863e+06 17041.92 8.520960e+02 0.000 333.75 20 0.000000e+00 0.00 1.557905e+06 1.540863e+06 17041.92 NULL
2024 Office Of The Comptroller Community Service Aide 38002.00000 3.800200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.800200e+04 3.800200e+04 0.00 NULL
2024 Office Of The Comptroller Comptroller 209050.00000 2.090500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.090500e+05 2.090500e+05 0.00 NULL
2024 Office Of The Comptroller Computer Associate 77327.93333 1.159919e+06 14649.96 9.766640e+02 0.000 229.50 15 0.000000e+00 0.00 1.174569e+06 1.159919e+06 14649.96 NULL
2024 Office Of The Comptroller Computer Operations Manager 140205.60000 7.010280e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.010280e+05 7.010280e+05 0.00 NULL
2024 Office Of The Comptroller Computer Service Technician 60872.20000 3.043610e+05 403.47 8.069400e+01 0.000 9.50 5 0.000000e+00 0.00 3.047645e+05 3.043610e+05 403.47 NULL
2024 Office Of The Comptroller Computer Specialist 113926.20000 5.696310e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 5.696310e+05 5.696310e+05 0.00 NULL
2024 Office Of The Comptroller Computer Systems Manager 139344.86957 3.204932e+06 1714.76 7.455478e+01 0.000 27.25 23 0.000000e+00 0.00 3.206647e+06 3.204932e+06 1714.76 NULL
2024 Office Of The Comptroller Confidential Assistant To The Comptroller 111951.80000 1.119518e+06 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 1.119518e+06 1.119518e+06 0.00 NULL
2024 Office Of The Comptroller Confidential Strategy Planner 91518.25000 3.660730e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 3.660730e+05 3.660730e+05 0.00 NULL
2024 Office Of The Comptroller Construction Project Manager 119589.00000 1.195890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.195890e+05 1.195890e+05 0.00 NULL
2024 Office Of The Comptroller Contract Specialist 71873.00000 7.187300e+04 5399.71 5.399710e+03 5399.710 122.50 1 5.399710e+03 5399.71 7.727271e+04 7.727271e+04 0.00 NULL
2024 Office Of The Comptroller Cyber Security Analyst 71059.00000 1.421180e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.421180e+05 1.421180e+05 0.00 NULL
2024 Office Of The Comptroller Deputy Comptroller 236404.00000 4.728080e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.728080e+05 4.728080e+05 0.00 NULL
2024 Office Of The Comptroller Director Of Investments 268598.62500 2.148789e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 2.148789e+06 2.148789e+06 0.00 NULL
2024 Office Of The Comptroller Director Of Audits 236967.00000 4.739340e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.739340e+05 4.739340e+05 0.00 NULL
2024 Office Of The Comptroller Director Of Budget Studies & Economic Research 167319.60000 8.365980e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.365980e+05 8.365980e+05 0.00 NULL
2024 Office Of The Comptroller Economist 82093.80000 4.104690e+05 377.26 7.545200e+01 0.000 7.50 5 0.000000e+00 0.00 4.108463e+05 4.104690e+05 377.26 NULL
2024 Office Of The Comptroller Engineering Technician 71874.00000 7.187400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.187400e+04 7.187400e+04 0.00 NULL
2024 Office Of The Comptroller Executive Agency Counsel 158407.20513 6.177881e+06 0.00 0.000000e+00 0.000 0.00 39 0.000000e+00 0.00 6.177881e+06 6.177881e+06 0.00 NULL
2024 Office Of The Comptroller Executive Assistant To The Comptroller 164400.00000 1.644000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.644000e+05 1.644000e+05 0.00 NULL
2024 Office Of The Comptroller Executive Program Specialist 118949.00000 2.378980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.378980e+05 2.378980e+05 0.00 NULL
2024 Office Of The Comptroller First Deputy Comptroller 271286.00000 2.712860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.712860e+05 2.712860e+05 0.00 NULL
2024 Office Of The Comptroller Fraud Investigator 90746.00000 9.074600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.074600e+04 9.074600e+04 0.00 NULL
2024 Office Of The Comptroller Investment Analyst 80580.65217 1.853355e+06 0.13 5.652200e-03 0.000 0.00 23 0.000000e+00 0.00 1.853355e+06 1.853355e+06 0.13 NULL
2024 Office Of The Comptroller Investment Manager 180049.90244 7.382046e+06 0.00 0.000000e+00 0.000 0.00 41 0.000000e+00 0.00 7.382046e+06 7.382046e+06 0.00 NULL
2024 Office Of The Comptroller It Security Specialist 122802.00000 2.456040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.456040e+05 2.456040e+05 0.00 NULL
2024 Office Of The Comptroller Legal Secretarial Assistant 71608.93333 1.074134e+06 6462.99 4.308660e+02 0.000 144.00 15 0.000000e+00 0.00 1.080597e+06 1.074134e+06 6462.99 NULL
2024 Office Of The Comptroller Management Auditor 84586.56627 7.020685e+06 41184.81 4.962025e+02 0.000 615.75 83 0.000000e+00 0.00 7.061870e+06 7.020685e+06 41184.81 NULL
2024 Office Of The Comptroller Management Auditor Trainee 55816.33333 1.674490e+05 7.42 2.473333e+00 0.000 0.00 3 0.000000e+00 0.00 1.674564e+05 1.674490e+05 7.42 NULL
2024 Office Of The Comptroller Mechanical Engineer 101561.00000 1.015610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.015610e+05 1.015610e+05 0.00 NULL
2024 Office Of The Comptroller New York City Public Service Fellow 46110.86667 6.916630e+05 0.00 0.000000e+00 0.000 0.00 15 0.000000e+00 0.00 6.916630e+05 6.916630e+05 0.00 NULL
2024 Office Of The Comptroller Office Machine Aide 30733.56333 9.220069e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 9.220069e+04 9.220069e+04 0.00 NULL
2024 Office Of The Comptroller Pension Investment Advisor 373320.00000 3.733200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.733200e+05 3.733200e+05 0.00 NULL
2024 Office Of The Comptroller Principal Administrative Associate - Non Supvr 69617.90476 1.461976e+06 17388.29 8.280138e+02 0.000 261.00 21 0.000000e+00 0.00 1.479364e+06 1.461976e+06 17388.29 NULL
2024 Office Of The Comptroller Principal Investment Officer 229156.50000 4.583130e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.583130e+05 4.583130e+05 0.00 NULL
2024 Office Of The Comptroller Procurement Analyst 75008.75000 6.000700e+05 29385.00 3.673125e+03 1000.360 449.50 8 1.000360e+03 8002.88 6.294550e+05 6.080729e+05 21382.12 NULL
2024 Office Of The Comptroller Project Manager 73514.00000 7.351400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.351400e+04 7.351400e+04 0.00 NULL
2024 Office Of The Comptroller Public Records Aide 0.00000 0.000000e+00 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 0.000000e+00 0.000000e+00 0.00 NULL
2024 Office Of The Comptroller Research And Liaison Coordinator 120980.34483 3.508430e+06 6.78 2.337931e-01 0.000 0.00 29 0.000000e+00 0.00 3.508437e+06 3.508430e+06 6.78 NULL
2024 Office Of The Comptroller Research Assistant 58910.00000 5.891000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.891000e+04 5.891000e+04 0.00 NULL
2024 Office Of The Comptroller Second Deputy Comptroller 271950.00000 2.719500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.719500e+05 2.719500e+05 0.00 NULL
2024 Office Of The Comptroller Secretary 52321.33333 1.569640e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.569640e+05 1.569640e+05 0.00 NULL
2024 Office Of The Comptroller Special Deputy Comptroller 229160.50000 4.583210e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.583210e+05 4.583210e+05 0.00 NULL
2024 Office Of The Comptroller Staff Analyst 70974.53571 1.987287e+06 37807.99 1.350285e+03 2.310 832.50 28 2.310000e+00 64.68 2.025095e+06 1.987352e+06 37743.31 NULL
2024 Office Of The Comptroller Staff Analyst Trainee 46059.00000 4.605900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.605900e+04 4.605900e+04 0.00 NULL
2024 Office Of The Comptroller Strategic Initiative Specialist 148360.33333 4.450810e+05 549.99 1.833300e+02 0.000 8.00 3 0.000000e+00 0.00 4.456310e+05 4.450810e+05 549.99 NULL
2024 Office Of The Comptroller Summer College Intern 1859.59364 1.022776e+05 0.00 0.000000e+00 0.000 0.00 55 0.000000e+00 0.00 1.022776e+05 1.022776e+05 0.00 NULL
2024 Office Of The Comptroller Summer Graduate Intern 2070.67583 3.727217e+04 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 3.727217e+04 3.727217e+04 0.00 NULL
2024 Office Of The Comptroller Supervisor Of Motor Transport 63114.00000 6.311400e+04 6965.97 6.965970e+03 6965.970 150.50 1 6.965970e+03 6965.97 7.007997e+04 7.007997e+04 0.00 NULL
2024 Office Of The Comptroller Supervisor Of Stock Workers 54333.00000 5.433300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.433300e+04 5.433300e+04 0.00 NULL
2024 Office Of The Comptroller Telecommunications Associate 104372.00000 1.043720e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.043720e+05 1.043720e+05 0.00 NULL
2024 Office Of The Comptroller Third Deputy Comptroller 250697.00000 2.506970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.506970e+05 2.506970e+05 0.00 NULL
2024 Office Of The Mayor Administrative Assistant To The Mayor 180300.00000 1.803000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.803000e+05 1.803000e+05 0.00 NULL
2024 Office Of The Mayor Administrative Manager 229840.00000 2.298400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.298400e+05 2.298400e+05 0.00 NULL
2024 Office Of The Mayor Assistant Executive Secretary 88802.00000 8.880200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.880200e+04 8.880200e+04 0.00 NULL
2024 Office Of The Mayor Assistant Legislative Representative 124815.00000 7.488900e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 7.488900e+05 7.488900e+05 0.00 NULL
2024 Office Of The Mayor Assistant To The Deputy Mayor 205726.81818 2.262995e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 2.262995e+06 2.262995e+06 0.00 NULL
2024 Office Of The Mayor Assistant To The Mayor 220132.00000 4.402640e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.402640e+05 4.402640e+05 0.00 NULL
2024 Office Of The Mayor Asst Dir Of Intergvnmental Reltns For The Albany Office 197286.00000 1.972860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.972860e+05 1.972860e+05 0.00 NULL
2024 Office Of The Mayor Chief Of Staff - Mayor’s Office 251982.00000 2.519820e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.519820e+05 2.519820e+05 0.00 NULL
2024 Office Of The Mayor Chief Of Staff To The Mayor 287663.00000 2.876630e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.876630e+05 2.876630e+05 0.00 NULL
2024 Office Of The Mayor Chief Service Officer Of Nyc Service 182658.00000 1.826580e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.826580e+05 1.826580e+05 0.00 NULL
2024 Office Of The Mayor Clerical Associate 53999.00000 5.399900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.399900e+04 5.399900e+04 0.00 NULL
2024 Office Of The Mayor College Aide 7520.78547 2.782691e+05 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 2.782691e+05 2.782691e+05 0.00 NULL
2024 Office Of The Mayor Commissioner Of The Ofc To End Domstc And Gend Based Violce 260042.00000 2.600420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.600420e+05 2.600420e+05 0.00 NULL
2024 Office Of The Mayor Commissioner, Un & Consular Corps Diplomatic Relations 260042.00000 2.600420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.600420e+05 2.600420e+05 0.00 NULL
2024 Office Of The Mayor Counsel To The Mayor 269822.50000 5.396450e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.396450e+05 5.396450e+05 0.00 NULL
2024 Office Of The Mayor Deputy Mayor 287663.00000 1.725978e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.725978e+06 1.725978e+06 0.00 NULL
2024 Office Of The Mayor Director Of City Legislative Affairs 197287.00000 1.972870e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.972870e+05 1.972870e+05 0.00 NULL
2024 Office Of The Mayor Director Of Community Assistance Unit 260042.00000 2.600420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.600420e+05 2.600420e+05 0.00 NULL
2024 Office Of The Mayor Director Of Intergovernmental Affairs 260042.00000 2.600420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.600420e+05 2.600420e+05 0.00 NULL
2024 Office Of The Mayor Director Of Intergovernmental Relations 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2024 Office Of The Mayor Director Of The Mayor?S Office Of Administrative Services 260043.00000 2.600430e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.600430e+05 2.600430e+05 0.00 NULL
2024 Office Of The Mayor Director Of The Mayor?S Office Of Appointments 243838.00000 2.438380e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.438380e+05 2.438380e+05 0.00 NULL
2024 Office Of The Mayor Director Of The Mayor?S Office Of Operations 260041.00000 2.600410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.600410e+05 2.600410e+05 0.00 NULL
2024 Office Of The Mayor Director Of The Office For People With Disabilities 260042.00000 2.600420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.600420e+05 2.600420e+05 0.00 NULL
2024 Office Of The Mayor Director Of The Office Of Correspondence 138544.00000 1.385440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.385440e+05 1.385440e+05 0.00 NULL
2024 Office Of The Mayor Director Of The Office Of Criminal Justice 248909.00000 2.489090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.489090e+05 2.489090e+05 0.00 NULL
2024 Office Of The Mayor Director Of The Office Of Immigrant Affairs 260042.00000 2.600420e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.600420e+05 2.600420e+05 0.00 NULL
2024 Office Of The Mayor Director Of The Office Of Scheduling & Executive Operations 222779.00000 2.227790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.227790e+05 2.227790e+05 0.00 NULL
2024 Office Of The Mayor Executive Agency Counsel 162853.00000 2.931354e+06 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 2.931354e+06 2.931354e+06 0.00 NULL
2024 Office Of The Mayor Executive Asst To The Nyc Commission To The United Nations 69944.00000 6.994400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.994400e+04 6.994400e+04 0.00 NULL
2024 Office Of The Mayor Executive Cook 134971.50000 2.699430e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.699430e+05 2.699430e+05 0.00 NULL
2024 Office Of The Mayor Executive Director Of Gracie Mansion 161410.00000 1.614100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.614100e+05 1.614100e+05 0.00 NULL
2024 Office Of The Mayor Executive Director Of The Commission On Gender Equity 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2024 Office Of The Mayor Executive Director, Citywide Event Coordination & Management 203097.00000 2.030970e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.030970e+05 2.030970e+05 0.00 NULL
2024 Office Of The Mayor Executive Director, Special Projects & Community Events 188313.00000 1.883130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.883130e+05 1.883130e+05 0.00 NULL
2024 Office Of The Mayor Executive Program Specialist 190305.81818 2.093364e+06 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 2.093364e+06 2.093364e+06 0.00 NULL
2024 Office Of The Mayor First Deputy Mayor 313941.00000 3.139410e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.139410e+05 3.139410e+05 0.00 NULL
2024 Office Of The Mayor High School Student Aide 3948.83333 4.738600e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 4.738600e+04 4.738600e+04 0.00 NULL
2024 Office Of The Mayor Mayor 258750.00000 2.587500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.587500e+05 2.587500e+05 0.00 NULL
2024 Office Of The Mayor Mayoral Office Assistant 60682.26021 1.456374e+06 18787.16 7.827983e+02 3.705 545.50 24 3.705000e+00 88.92 1.475161e+06 1.456463e+06 18698.24 NULL
2024 Office Of The Mayor Mayoral Program Coordinator 78816.25556 7.093463e+05 4605.09 5.116767e+02 0.000 87.00 9 0.000000e+00 0.00 7.139514e+05 7.093463e+05 4605.09 NULL
2024 Office Of The Mayor Press Officer 135574.00000 1.626888e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.626888e+06 1.626888e+06 0.00 NULL
2024 Office Of The Mayor Research Projects Coord 122687.03247 1.889380e+07 8635.15 5.607240e+01 0.000 280.00 154 0.000000e+00 0.00 1.890244e+07 1.889380e+07 8635.15 NULL
2024 Office Of The Mayor Research Projects Coordinator 69655.50000 4.179330e+05 5497.76 9.162933e+02 630.880 159.50 6 6.308800e+02 3785.28 4.234308e+05 4.217183e+05 1712.48 NULL
2024 Office Of The Mayor Secretary 93598.33333 5.615900e+05 7639.48 1.273247e+03 234.220 116.75 6 2.342200e+02 1405.32 5.692295e+05 5.629953e+05 6234.16 NULL
2024 Office Of The Mayor Senior Advisor To The Mayor 236735.00000 2.367350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.367350e+05 2.367350e+05 0.00 NULL
2024 Office Of The Mayor Senior Policy Advisor To The Mayor 246354.50000 4.927090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.927090e+05 4.927090e+05 0.00 NULL
2024 Office Of The Mayor Senior Project Planner 136591.00000 2.731820e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.731820e+05 2.731820e+05 0.00 NULL
2024 Office Of The Mayor Senior Service Inspector 71574.00000 7.157400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.157400e+04 7.157400e+04 0.00 NULL
2024 Office Of The Mayor Service Inspector 47928.60000 2.396430e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.396430e+05 2.396430e+05 0.00 NULL
2024 Office Of The Mayor Special Assistant 127764.84259 2.759721e+07 0.00 0.000000e+00 0.000 0.00 216 0.000000e+00 0.00 2.759721e+07 2.759721e+07 0.00 NULL
2024 Office Of The Mayor Sr Project Planner 115970.00000 1.159700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.159700e+05 1.159700e+05 0.00 NULL
2024 Office Of The Mayor Staff Assistant 66894.21429 9.365190e+05 13992.24 9.994457e+02 538.975 388.25 14 5.389750e+02 7545.65 9.505112e+05 9.440647e+05 6446.59 NULL
2024 Office Of The Mayor Strategic Initiative Specialist 115117.66667 1.036059e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.036059e+06 1.036059e+06 0.00 NULL
2024 Office Of The Mayor Summer College Intern 4486.35671 1.839406e+05 0.00 0.000000e+00 0.000 0.00 41 0.000000e+00 0.00 1.839406e+05 1.839406e+05 0.00 NULL
2024 Office Of The Mayor Summer Graduate Intern 5445.10000 5.445100e+04 0.00 0.000000e+00 0.000 0.00 10 0.000000e+00 0.00 5.445100e+04 5.445100e+04 0.00 NULL
2024 Personnel Monitors Monitor 6165.63609 1.041992e+06 0.00 0.000000e+00 0.000 0.00 169 0.000000e+00 0.00 1.041992e+06 1.041992e+06 0.00 NULL
2024 Police Department *Agency Attorney 139694.00000 4.190820e+05 14783.77 4.927923e+03 1500.490 142.50 3 1.500490e+03 4501.47 4.338658e+05 4.235835e+05 10282.30 NULL
2024 Police Department *Assistant Advocate-Pd 120542.00000 1.205420e+05 2.17 2.170000e+00 2.170 0.00 1 2.170000e+00 2.17 1.205442e+05 1.205442e+05 0.00 NULL
2024 Police Department *Attorney At Law 100053.00000 1.000530e+05 194.77 1.947700e+02 194.770 0.00 1 1.947700e+02 194.77 1.002478e+05 1.002478e+05 0.00 NULL
2024 Police Department *Custodial Assistant 42169.60000 2.108480e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.108480e+05 2.108480e+05 0.00 NULL
2024 Police Department Accountant 67796.80985 1.762717e+06 69170.40 2.660400e+03 2.305 1373.12 26 2.305000e+00 59.93 1.831887e+06 1.762777e+06 69110.47 NULL
2024 Police Department Adm Manager-Non-Mgrl 95584.67308 4.970403e+06 180509.64 3.471339e+03 478.180 2798.75 52 4.781800e+02 24865.36 5.150913e+06 4.995268e+06 155644.28 NULL
2024 Police Department Admin Community Relations Specialist 102855.20000 1.028552e+06 7321.11 7.321110e+02 43.475 104.75 10 4.347500e+01 434.75 1.035873e+06 1.028987e+06 6886.36 NULL
2024 Police Department Admin Construction Project Manager 92881.00000 9.288100e+04 6930.68 6.930680e+03 6930.680 125.75 1 6.930680e+03 6930.68 9.981168e+04 9.981168e+04 0.00 NULL
2024 Police Department Admin Contract Specialist 180968.50000 1.085811e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.085811e+06 1.085811e+06 0.00 NULL
2024 Police Department Admin Tests & Meas Spec 175229.50000 3.504590e+05 6372.25 3.186125e+03 3186.125 79.50 2 3.186125e+03 6372.25 3.568312e+05 3.568312e+05 0.00 NULL
2024 Police Department Admin Traffic Enf Agnt-Union 76640.07143 2.145922e+06 301494.46 1.076766e+04 9313.425 5391.50 28 9.313425e+03 260775.90 2.447416e+06 2.406698e+06 40718.56 NULL
2024 Police Department Admin Traffic Enfrcmnt Agent 169710.00000 3.394200e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.394200e+05 3.394200e+05 0.00 NULL
2024 Police Department Administrative Accountant 115162.73333 1.727441e+06 6318.32 4.212213e+02 0.000 106.25 15 0.000000e+00 0.00 1.733759e+06 1.727441e+06 6318.32 NULL
2024 Police Department Administrative Architect 166958.16667 1.001749e+06 28503.01 4.750502e+03 148.255 362.00 6 1.482550e+02 889.53 1.030252e+06 1.002639e+06 27613.48 NULL
2024 Police Department Administrative City Planner 164008.50000 3.280170e+05 122.66 6.133000e+01 61.330 0.00 2 6.133000e+01 122.66 3.281397e+05 3.281397e+05 0.00 NULL
2024 Police Department Administrative Community Relations Specialist 210617.00000 2.106170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.106170e+05 2.106170e+05 0.00 NULL
2024 Police Department Administrative Contract Specialist 137957.00000 2.759140e+05 221.04 1.105200e+02 110.520 3.00 2 1.105200e+02 221.04 2.761350e+05 2.761350e+05 0.00 NULL
2024 Police Department Administrative Engineer 144211.66667 4.326350e+05 45696.98 1.523233e+04 7687.860 487.25 3 7.687860e+03 23063.58 4.783320e+05 4.556986e+05 22633.40 NULL
2024 Police Department Administrative Graphic Artist 102474.00000 3.074220e+05 22085.85 7.361950e+03 6888.670 374.50 3 6.888670e+03 20666.01 3.295078e+05 3.280880e+05 1419.84 NULL
2024 Police Department Administrative Investigator 124380.00000 1.243800e+05 27986.25 2.798625e+04 27986.250 310.75 1 2.798625e+04 27986.25 1.523662e+05 1.523662e+05 0.00 NULL
2024 Police Department Administrative Management Auditor 107853.56250 1.725657e+06 57005.27 3.562829e+03 141.500 749.50 16 1.415000e+02 2264.00 1.782662e+06 1.727921e+06 54741.27 NULL
2024 Police Department Administrative Manager 153077.00000 3.061540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.061540e+05 3.061540e+05 0.00 NULL
2024 Police Department Administrative Printing Services Manager 150674.75000 6.026990e+05 48884.62 1.222116e+04 12221.155 631.50 4 1.222116e+04 48884.62 6.515836e+05 6.515836e+05 0.00 NULL
2024 Police Department Administrative Procurement Analyst-Non-Mgrl 97539.86364 2.145877e+06 118681.64 5.394620e+03 54.600 1891.00 22 5.460000e+01 1201.20 2.264559e+06 2.147078e+06 117480.44 NULL
2024 Police Department Administrative Project Manager 148816.71429 2.083434e+06 28543.96 2.038854e+03 0.000 399.00 14 0.000000e+00 0.00 2.111978e+06 2.083434e+06 28543.96 NULL
2024 Police Department Administrative Psychologist 157898.00000 1.263184e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.263184e+06 1.263184e+06 0.00 NULL
2024 Police Department Administrative Public Health Sanitarian 184424.00000 1.844240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.844240e+05 1.844240e+05 0.00 NULL
2024 Police Department Administrative Public Information Specialist 199296.66667 5.978900e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.978900e+05 5.978900e+05 0.00 NULL
2024 Police Department Administrative Public Information Specialist Nm Former M1/M2 103997.71429 7.279840e+05 12627.70 1.803957e+03 0.000 251.25 7 0.000000e+00 0.00 7.406117e+05 7.279840e+05 12627.70 NULL
2024 Police Department Administrative Quality Assurance Specialist 93217.00000 9.321700e+04 167.13 1.671300e+02 167.130 0.00 1 1.671300e+02 167.13 9.338413e+04 9.338413e+04 0.00 NULL
2024 Police Department Administrative Staff Analyst 131804.10204 1.291680e+07 374472.84 3.821151e+03 226.165 4423.50 98 2.261650e+02 22164.17 1.329127e+07 1.293897e+07 352308.67 NULL
2024 Police Department Administrative Supervisor Of Building Maintenance 194914.00000 1.949140e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.949140e+05 1.949140e+05 0.00 NULL
2024 Police Department Agency Attorney 102236.14754 1.247281e+07 1418532.51 1.162732e+04 676.000 15771.25 122 6.760000e+02 82472.00 1.389134e+07 1.255528e+07 1336060.51 NULL
2024 Police Department Agency Attorney Interne 80824.00000 1.616480e+05 56373.12 2.818656e+04 28186.560 955.50 2 2.818656e+04 56373.12 2.180211e+05 2.180211e+05 0.00 NULL
2024 Police Department Agency Chief Contracting Officer 199523.00000 5.985690e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.985690e+05 5.985690e+05 0.00 NULL
2024 Police Department Assistant Architect 90085.50000 1.801710e+05 195.32 9.766000e+01 97.660 4.00 2 9.766000e+01 195.32 1.803663e+05 1.803663e+05 0.00 NULL
2024 Police Department Assistant Commissioner 212501.66667 6.375050e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.375050e+05 6.375050e+05 0.00 NULL
2024 Police Department Assistant Counsel-Pd 130025.16667 7.801510e+05 111289.71 1.854828e+04 5505.780 1104.75 6 5.505780e+03 33034.68 8.914407e+05 8.131857e+05 78255.03 NULL
2024 Police Department Assistant Electrical Engineer 95386.00000 1.907720e+05 6920.80 3.460400e+03 3460.400 135.00 2 3.460400e+03 6920.80 1.976928e+05 1.976928e+05 0.00 NULL
2024 Police Department Assistant Mechanical Engineer 83492.50000 1.669850e+05 5763.18 2.881590e+03 2881.590 118.00 2 2.881590e+03 5763.18 1.727482e+05 1.727482e+05 0.00 NULL
2024 Police Department Assistant Printing Press Operator 67138.00000 4.028280e+05 19662.94 3.277157e+03 3195.470 535.50 6 3.195470e+03 19172.82 4.224909e+05 4.220008e+05 490.12 NULL
2024 Police Department Assistant Supervising Chief Surgeon 182108.00000 1.821080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.821080e+05 1.821080e+05 0.00 NULL
2024 Police Department Assistant To Police Commissionor 231183.00000 4.623660e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.623660e+05 4.623660e+05 0.00 NULL
2024 Police Department Assoc Spvr Of School Security 81834.09091 2.700525e+06 387585.90 1.174503e+04 8187.900 6767.30 33 8.187900e+03 270200.70 3.088111e+06 2.970726e+06 117385.20 NULL
2024 Police Department Assoc Supvr Of Schl Sec 126037.00000 2.520740e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.520740e+05 2.520740e+05 0.00 NULL
2024 Police Department Associate Fingerprint Technician 47713.47619 1.001983e+06 10846.44 5.164971e+02 11.930 262.00 21 1.193000e+01 250.53 1.012829e+06 1.002234e+06 10595.91 NULL
2024 Police Department Associate Investigator 41555.88207 6.524273e+06 291651.64 1.857654e+03 0.000 5462.00 157 0.000000e+00 0.00 6.815925e+06 6.524273e+06 291651.64 NULL
2024 Police Department Associate Labor Relations Analyst 119701.00000 1.197010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.197010e+05 1.197010e+05 0.00 NULL
2024 Police Department Associate Parking Control Specialist 65218.33333 3.913100e+05 35232.97 5.872162e+03 1563.065 654.00 6 1.563065e+03 9378.39 4.265430e+05 4.006884e+05 25854.58 NULL
2024 Police Department Associate Project Manager 114795.50000 2.295910e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.295910e+05 2.295910e+05 0.00 NULL
2024 Police Department Associate Public Information Specialist 48832.00000 9.766400e+04 4178.31 2.089155e+03 2089.155 161.00 2 2.089155e+03 4178.31 1.018423e+05 1.018423e+05 0.00 NULL
2024 Police Department Associate Public Records Officer 69254.66667 2.077640e+05 1504.62 5.015400e+02 752.310 38.00 3 5.015400e+02 1504.62 2.092686e+05 2.092686e+05 0.00 NULL
2024 Police Department Associate Staff Analyst 92780.22449 4.546231e+06 104183.92 2.126202e+03 5.980 1496.75 49 5.980000e+00 293.02 4.650415e+06 4.546524e+06 103890.90 NULL
2024 Police Department Associate Traffic Enforcement Agent 57752.87865 2.570003e+07 6518112.25 1.464744e+04 14804.550 146644.39 445 1.464744e+04 6518112.25 3.221814e+07 3.221814e+07 0.00 NULL
2024 Police Department Auto Body Worker 68348.24000 1.708706e+06 193530.43 7.741217e+03 9529.180 3198.00 25 7.741217e+03 193530.43 1.902236e+06 1.902236e+06 0.00 NULL
2024 Police Department Auto Mechanic NA NA 2494060.95 1.144065e+04 8293.360 31914.50 218 8.293360e+03 1807952.48 NA NA NA NULL
2024 Police Department Automotive Service Worker 45719.10667 3.428933e+06 317038.77 4.227184e+03 420.660 8325.73 75 4.206600e+02 31549.50 3.745972e+06 3.460482e+06 285489.27 NULL
2024 Police Department Bookbinder 48277.75000 1.931110e+05 478.70 1.196750e+02 70.900 14.50 4 7.090000e+01 283.60 1.935897e+05 1.933946e+05 195.10 NULL
2024 Police Department Bookkeeper 53038.13556 3.235326e+06 75338.85 1.235063e+03 0.000 1838.50 61 0.000000e+00 0.00 3.310665e+06 3.235326e+06 75338.85 NULL
2024 Police Department Capt Det Chief Of Department 276944.00000 2.769440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.769440e+05 2.769440e+05 0.00 NULL
2024 Police Department Capt Det Chief Of Internal Affairs 276588.00000 2.765880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.765880e+05 2.765880e+05 0.00 NULL
2024 Police Department Capt Det Chief Of The Housing Bureau 276588.00000 2.765880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.765880e+05 2.765880e+05 0.00 NULL
2024 Police Department Capt Det Chief Of The Transit Bureau 276588.00000 2.765880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.765880e+05 2.765880e+05 0.00 NULL
2024 Police Department Captain 166765.08091 8.038077e+07 4559705.21 9.459969e+03 3217.610 46630.22 482 3.217610e+03 1550888.02 8.494047e+07 8.193166e+07 3008817.19 NULL
2024 Police Department Captain - Chief Of Staff 276588.00000 2.765880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.765880e+05 2.765880e+05 0.00 NULL
2024 Police Department Captain D/A Deputy Chief 218587.20896 1.464534e+07 171914.68 2.565891e+03 0.000 0.00 67 0.000000e+00 0.00 1.481726e+07 1.464534e+07 171914.68 NULL
2024 Police Department Captain D/A Deputy Inspector 196650.81098 3.225073e+07 250179.49 1.525485e+03 0.000 1404.02 164 0.000000e+00 0.00 3.250091e+07 3.225073e+07 250179.49 NULL
2024 Police Department Captain D/A Inspector 207452.25397 2.613898e+07 277263.14 2.200501e+03 0.000 0.00 126 0.000000e+00 0.00 2.641625e+07 2.613898e+07 277263.14 NULL
2024 Police Department Captain Detailed As Assistant Chief 276463.00000 3.041093e+06 15694.58 1.426780e+03 0.000 0.00 11 0.000000e+00 0.00 3.056788e+06 3.041093e+06 15694.58 NULL
2024 Police Department Captain Detailed As Chief Of Crime Control Strategies 276588.00000 2.765880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.765880e+05 2.765880e+05 0.00 NULL
2024 Police Department Captain Detailed As Chief Of Interagency Operations 276588.00000 2.765880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.765880e+05 2.765880e+05 0.00 NULL
2024 Police Department Captain Detailed As Chief Of Personnel 276588.00000 2.765880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.765880e+05 2.765880e+05 0.00 NULL
2024 Police Department Captain Detailed As Chief Of Training 258852.00000 5.177040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.177040e+05 5.177040e+05 0.00 NULL
2024 Police Department Carpenter NA NA 262522.62 1.141403e+04 41.960 3077.25 23 4.196000e+01 965.08 NA NA NA NULL
2024 Police Department Case Management Nurse 101272.72000 2.531818e+06 96553.08 3.862123e+03 843.030 1225.50 25 8.430300e+02 21075.75 2.628371e+06 2.552894e+06 75477.33 NULL
2024 Police Department Cashier 47291.00000 4.729100e+04 454.65 4.546500e+02 454.650 14.75 1 4.546500e+02 454.65 4.774565e+04 4.774565e+04 0.00 NULL
2024 Police Department Cement Mason NA NA 40051.84 4.005184e+04 40051.840 327.25 1 4.005184e+04 40051.84 NA NA NA NULL
2024 Police Department Certified It Administrator 124345.01961 6.341596e+06 659942.69 1.294005e+04 9079.130 8296.25 51 9.079130e+03 463035.63 7.001539e+06 6.804632e+06 196907.06 NULL
2024 Police Department Certified It Developer 125175.75000 5.007030e+05 49052.22 1.226306e+04 9909.885 559.25 4 9.909885e+03 39639.54 5.497552e+05 5.403425e+05 9412.68 NULL
2024 Police Department Chaplain 47859.41176 8.136100e+05 46514.33 2.736137e+03 460.610 1130.75 17 4.606100e+02 7830.37 8.601243e+05 8.214404e+05 38683.96 NULL
2024 Police Department Chief Of Information Technology 276588.00000 2.765880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.765880e+05 2.765880e+05 0.00 NULL
2024 Police Department City Attendant 46762.00000 4.676200e+04 4456.68 4.456680e+03 4456.680 120.50 1 4.456680e+03 4456.68 5.121868e+04 5.121868e+04 0.00 NULL
2024 Police Department City Custodial Assistant 41770.78897 1.399321e+07 428397.65 1.278799e+03 0.000 13866.75 335 0.000000e+00 0.00 1.442161e+07 1.399321e+07 428397.65 NULL
2024 Police Department City Dentist 83789.16000 8.378916e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.378916e+04 8.378916e+04 0.00 NULL
2024 Police Department City Laborer NA NA 659151.83 1.136469e+04 11745.010 11813.50 58 1.136469e+04 659151.83 NA NA NA NULL
2024 Police Department City Research Scientist 102744.62000 5.137231e+06 94827.52 1.896550e+03 215.980 1279.75 50 2.159800e+02 10799.00 5.232059e+06 5.148030e+06 84028.52 NULL
2024 Police Department Clerical Associate 52883.55263 2.009575e+06 50453.06 1.327712e+03 0.000 1311.75 38 0.000000e+00 0.00 2.060028e+06 2.009575e+06 50453.06 NULL
2024 Police Department College Aide 9663.88347 7.151274e+05 0.00 0.000000e+00 0.000 0.00 74 0.000000e+00 0.00 7.151274e+05 7.151274e+05 0.00 NULL
2024 Police Department College Aide - Assignment Levels Ii And Iii 19811.00307 1.188660e+05 1899.32 3.165533e+02 12.750 99.00 6 1.275000e+01 76.50 1.207653e+05 1.189425e+05 1822.82 NULL
2024 Police Department Commissioner 260388.00000 5.207760e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.207760e+05 5.207760e+05 0.00 NULL
2024 Police Department Community Assistant 38867.63497 7.695792e+06 17812.65 8.996288e+01 0.000 639.49 198 0.000000e+00 0.00 7.713604e+06 7.695792e+06 17812.65 NULL
2024 Police Department Community Associate 48644.33333 2.918660e+05 6221.42 1.036903e+03 777.360 188.50 6 7.773600e+02 4664.16 2.980874e+05 2.965302e+05 1557.26 NULL
2024 Police Department Community Coordinator 75824.03846 1.971425e+06 127257.99 4.894538e+03 1356.775 2902.25 26 1.356775e+03 35276.15 2.098683e+06 2.006701e+06 91981.84 NULL
2024 Police Department Compositor NA NA 152880.41 2.184006e+04 19370.940 2050.00 7 1.937094e+04 135596.58 NA NA NA NULL
2024 Police Department Computer Aide-Non-Spvr 53055.00000 1.061100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.061100e+05 1.061100e+05 0.00 NULL
2024 Police Department Computer Associate 82431.92647 5.605371e+06 506099.13 7.442634e+03 4553.420 8233.00 68 4.553420e+03 309632.56 6.111470e+06 5.915004e+06 196466.57 NULL
2024 Police Department Computer Operations Manager 151836.00000 1.822032e+06 96932.60 8.077717e+03 0.000 1108.00 12 0.000000e+00 0.00 1.918965e+06 1.822032e+06 96932.60 NULL
2024 Police Department Computer Specialist 114396.16327 5.605412e+06 415247.43 8.474437e+03 1707.290 5456.75 49 1.707290e+03 83657.21 6.020659e+06 5.689069e+06 331590.22 NULL
2024 Police Department Computer Systems Manager 177943.88462 4.626541e+06 190167.31 7.314127e+03 0.000 1931.75 26 0.000000e+00 0.00 4.816708e+06 4.626541e+06 190167.31 NULL
2024 Police Department Counsel To The Police Commissioner 258852.00000 5.177040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.177040e+05 5.177040e+05 0.00 NULL
2024 Police Department Crime Analyst 65468.90987 1.525426e+07 302768.71 1.299437e+03 262.130 7356.75 233 2.621300e+02 61076.29 1.555702e+07 1.531533e+07 241692.42 NULL
2024 Police Department Criminalist 84614.83088 2.301523e+07 1715236.42 6.306016e+03 3838.260 27563.50 272 3.838260e+03 1044006.72 2.473047e+07 2.405924e+07 671229.70 NULL
2024 Police Department Criminalist Assistant Director Of Laboratory 150062.42857 1.050437e+06 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.050437e+06 1.050437e+06 0.00 NULL
2024 Police Department Criminalist Deputy Director Of Labatory 174411.00000 1.744110e+05 37703.50 3.770350e+04 37703.500 428.75 1 3.770350e+04 37703.50 2.121145e+05 2.121145e+05 0.00 NULL
2024 Police Department Custodian 45402.31250 7.264370e+05 89397.17 5.587323e+03 3632.630 2418.75 16 3.632630e+03 58122.08 8.158342e+05 7.845591e+05 31275.09 NULL
2024 Police Department Deputy Chief Surgeon 174149.40000 8.707470e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 8.707470e+05 8.707470e+05 0.00 NULL
2024 Police Department Deputy Commissioner 272154.00000 2.177232e+06 112956.93 1.411962e+04 0.000 894.77 8 0.000000e+00 0.00 2.290189e+06 2.177232e+06 112956.93 NULL
2024 Police Department Director 165395.00000 1.653950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.653950e+05 1.653950e+05 0.00 NULL
2024 Police Department Director Employee Management Division 183394.00000 1.833940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.833940e+05 1.833940e+05 0.00 NULL
2024 Police Department Director Management Information Systems 212183.00000 6.365490e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.365490e+05 6.365490e+05 0.00 NULL
2024 Police Department Director Of Communications 178248.00000 1.782480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.782480e+05 1.782480e+05 0.00 NULL
2024 Police Department Director Of Department Advocates Office 276588.00000 2.765880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.765880e+05 2.765880e+05 0.00 NULL
2024 Police Department Director Of Internal Affairs - Pd 277605.00000 5.552100e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.552100e+05 5.552100e+05 0.00 NULL
2024 Police Department Director Of Photographic Services-Pd 161298.00000 1.612980e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.612980e+05 1.612980e+05 0.00 NULL
2024 Police Department Director Of Psychological Services 171640.00000 1.716400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.716400e+05 1.716400e+05 0.00 NULL
2024 Police Department Director Of Training 145396.00000 1.453960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.453960e+05 1.453960e+05 0.00 NULL
2024 Police Department Electrician NA NA 580234.06 2.072265e+04 22422.100 5914.50 28 2.072265e+04 580234.06 NA NA NA NULL
2024 Police Department Elevator Mechanic NA NA 42242.69 1.408090e+04 13563.330 462.50 3 1.356333e+04 40689.99 NA NA NA NULL
2024 Police Department Employee Assistance Program Specialist 97369.00000 9.736900e+04 3176.08 3.176080e+03 3176.080 52.25 1 3.176080e+03 3176.08 1.005451e+05 1.005451e+05 0.00 NULL
2024 Police Department Evidence And Property Control Specialist 62474.92593 1.180776e+07 883146.78 4.672734e+03 796.040 19514.00 189 7.960400e+02 150451.56 1.269091e+07 1.195821e+07 732695.22 NULL
2024 Police Department Executive Agency Counsel 188283.32692 9.790733e+06 93127.48 1.790913e+03 0.000 781.25 52 0.000000e+00 0.00 9.883860e+06 9.790733e+06 93127.48 NULL
2024 Police Department Fingerprint Technician Trainee 34045.90000 1.361836e+06 6479.08 1.619770e+02 0.000 304.75 40 0.000000e+00 0.00 1.368315e+06 1.361836e+06 6479.08 NULL
2024 Police Department First Deputy Commissioner 276944.00000 2.769440e+05 5578.00 5.578000e+03 5578.000 0.00 1 5.578000e+03 5578.00 2.825220e+05 2.825220e+05 0.00 NULL
2024 Police Department Fitness Instructor 60576.86364 1.332691e+06 79892.08 3.631458e+03 2938.835 1981.00 22 2.938835e+03 64654.37 1.412583e+06 1.397345e+06 15237.71 NULL
2024 Police Department Glazier NA NA 93433.04 1.868661e+04 23735.360 853.00 5 1.868661e+04 93433.04 NA NA NA NULL
2024 Police Department Graphic Artist 73955.61538 9.614230e+05 55810.64 4.293126e+03 162.360 1072.00 13 1.623600e+02 2110.68 1.017234e+06 9.635337e+05 53699.96 NULL
2024 Police Department Health Services Manager Non Managerial Level Ii 129547.00000 1.295470e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.295470e+05 1.295470e+05 0.00 NULL
2024 Police Department High School Student Aide 7592.59429 5.314816e+04 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 5.314816e+04 5.314816e+04 0.00 NULL
2024 Police Department Horseshoer NA NA 44.38 2.219000e+01 22.190 1.00 2 2.219000e+01 44.38 NA NA NA NULL
2024 Police Department Hostler 48897.30000 9.779460e+05 115989.02 5.799451e+03 5207.360 2953.25 20 5.207360e+03 104147.20 1.093935e+06 1.082093e+06 11841.82 NULL
2024 Police Department Intelligence Research Manager-Pd 165397.00000 3.307940e+05 2380.40 1.190200e+03 1190.200 7.00 2 1.190200e+03 2380.40 3.331744e+05 3.331744e+05 0.00 NULL
2024 Police Department Intelligence Research Specialist-Pd 102965.93478 4.736433e+06 320562.84 6.968757e+03 4203.855 4271.50 46 4.203855e+03 193377.33 5.056996e+06 4.929810e+06 127185.51 NULL
2024 Police Department Investigator 50688.85227 4.460619e+06 270470.85 3.073532e+03 2432.050 7823.75 88 2.432050e+03 214020.40 4.731090e+06 4.674639e+06 56450.45 NULL
2024 Police Department Investigator Trainee 50868.00000 1.526040e+05 14341.59 4.780530e+03 4237.080 457.00 3 4.237080e+03 12711.24 1.669456e+05 1.653152e+05 1630.35 NULL
2024 Police Department It Project Specialist 135327.00000 9.472890e+05 67778.73 9.682676e+03 6758.490 709.50 7 6.758490e+03 47309.43 1.015068e+06 9.945984e+05 20469.30 NULL
2024 Police Department It Security Specialist 150246.20000 2.253693e+06 162525.92 1.083506e+04 10020.890 1746.50 15 1.002089e+04 150313.35 2.416219e+06 2.404006e+06 12212.57 NULL
2024 Police Department It Service Management Specialist 120200.00000 2.404000e+05 1842.76 9.213800e+02 921.380 22.50 2 9.213800e+02 1842.76 2.422428e+05 2.422428e+05 0.00 NULL
2024 Police Department Legal Secretarial Assistant 65499.00000 1.309980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.309980e+05 1.309980e+05 0.00 NULL
2024 Police Department Lieutenant 142154.80378 2.557365e+08 63990494.65 3.557004e+04 35233.020 565434.48 1799 3.523302e+04 63384202.98 3.197270e+08 3.191207e+08 606291.67 NULL
2024 Police Department Lieutenant D/A Commander Of Detective Squad 157057.83083 4.177738e+07 14740244.96 5.541445e+04 60439.245 115283.89 266 5.541445e+04 14740244.96 5.651763e+07 5.651763e+07 0.00 NULL
2024 Police Department Lieutenant D/A Special Assignment 155952.18519 2.947496e+07 9643661.27 5.102466e+04 51361.090 76235.03 189 5.102466e+04 9643661.27 3.911862e+07 3.911862e+07 0.00 NULL
2024 Police Department Locksmith NA NA 43.83 4.383000e+01 43.830 1.25 1 4.383000e+01 43.83 NA NA NA NULL
2024 Police Department Maintenance Worker NA NA 183134.51 1.465076e+03 23.330 3514.25 125 2.333000e+01 2916.25 NA NA NA NULL
2024 Police Department Management Auditor 82322.47619 1.728772e+06 67999.19 3.238057e+03 0.000 1211.25 21 0.000000e+00 0.00 1.796771e+06 1.728772e+06 67999.19 NULL
2024 Police Department Manager Of Radio Repair Operations 168594.33333 1.011566e+06 58701.26 9.783543e+03 1072.910 662.25 6 1.072910e+03 6437.46 1.070267e+06 1.018003e+06 52263.80 NULL
2024 Police Department Marine Maintenance Mechanic 85920.00000 1.718400e+05 7.86 3.930000e+00 3.930 0.00 2 3.930000e+00 7.86 1.718479e+05 1.718479e+05 0.00 NULL
2024 Police Department Masons Helper NA NA 24682.04 2.468204e+04 24682.040 440.75 1 2.468204e+04 24682.04 NA NA NA NULL
2024 Police Department Media Services Technician 53162.92857 2.232843e+06 51239.77 1.219995e+03 174.190 1428.50 42 1.741900e+02 7315.98 2.284083e+06 2.240159e+06 43923.79 NULL
2024 Police Department Motor Vehicle Operator 51981.50000 2.183223e+06 293410.95 6.985975e+03 1569.840 6610.50 42 1.569840e+03 65933.28 2.476634e+06 2.249156e+06 227477.67 NULL
2024 Police Department Motor Vehicle Supervisor 66513.25000 2.660530e+05 25010.76 6.252690e+03 5921.440 507.25 4 5.921440e+03 23685.76 2.910638e+05 2.897388e+05 1325.00 NULL
2024 Police Department Oiler NA NA 500215.06 2.942442e+04 29535.590 4602.00 17 2.942442e+04 500215.06 NA NA NA NULL
2024 Police Department Operations Communications Specialist 52019.00000 5.201900e+04 9537.19 9.537190e+03 9537.190 258.50 1 9.537190e+03 9537.19 6.155619e+04 6.155619e+04 0.00 NULL
2024 Police Department P.o. Da Det Gr3 114204.55227 4.718932e+08 177638576.09 4.299094e+04 45316.725 1774920.68 4132 4.299094e+04 177638576.09 6.495318e+08 6.495318e+08 0.00 NULL
2024 Police Department P.o. Det Spec 113441.75557 1.629024e+08 51046095.21 3.554742e+04 35591.680 495181.09 1436 3.554742e+04 51046095.21 2.139485e+08 2.139485e+08 0.00 NULL
2024 Police Department Painter NA NA 309045.69 1.817916e+04 18992.280 3769.75 17 1.817916e+04 309045.69 NA NA NA NULL
2024 Police Department Paralegal Aide 48778.83143 1.463365e+06 44243.29 1.474776e+03 0.000 1394.25 30 0.000000e+00 0.00 1.507608e+06 1.463365e+06 44243.29 NULL
2024 Police Department Parking Control Specialist 50510.83333 6.061300e+05 73647.34 6.137278e+03 1539.110 1895.50 12 1.539110e+03 18469.32 6.797773e+05 6.245993e+05 55178.02 NULL
2024 Police Department Photographer 54760.11765 9.309220e+05 29198.99 1.717588e+03 447.340 734.50 17 4.473400e+02 7604.78 9.601210e+05 9.385268e+05 21594.21 NULL
2024 Police Department Physician’s Assistant 28290.12852 1.414506e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.414506e+05 1.414506e+05 0.00 NULL
2024 Police Department Plumber NA NA 697422.91 4.649486e+04 53094.830 5662.00 15 4.649486e+04 697422.91 NA NA NA NULL
2024 Police Department Police Administrative Aide 46736.30318 5.580315e+07 728068.09 6.097723e+02 0.000 22492.34 1194 0.000000e+00 0.00 5.653121e+07 5.580315e+07 728068.09 NULL
2024 Police Department Police Attendant 43705.14286 2.753424e+06 476107.61 7.557264e+03 4163.940 14459.00 63 4.163940e+03 262328.22 3.229532e+06 3.015752e+06 213779.39 NULL
2024 Police Department Police Cadet 13363.20497 5.572456e+06 0.00 0.000000e+00 0.000 0.00 417 0.000000e+00 0.00 5.572456e+06 5.572456e+06 0.00 NULL
2024 Police Department Police Communications Technician 52586.07965 9.044806e+07 9985093.01 5.805287e+03 1111.570 242815.72 1720 1.111570e+03 1911900.40 1.004332e+08 9.235996e+07 8073192.61 NULL
2024 Police Department Police Officer 77993.69806 2.234363e+09 426095680.07 1.487349e+04 7599.200 4928180.59 28648 7.599200e+03 217701881.60 2.660459e+09 2.452065e+09 208393798.47 NULL
2024 Police Department Police Officer D/A Detective 1st Gr 146026.39522 7.943836e+07 26289351.71 4.832601e+04 53255.080 223632.48 544 4.832601e+04 26289351.71 1.057277e+08 1.057277e+08 0.00 NULL
2024 Police Department Police Officer D/A Detective 2nd Gr 128636.14014 1.487034e+08 58579247.14 5.067409e+04 53739.170 558249.50 1156 5.067409e+04 58579247.14 2.072826e+08 2.072826e+08 0.00 NULL
2024 Police Department Police Surgeon 157459.64000 3.936491e+06 0.00 0.000000e+00 0.000 0.00 25 0.000000e+00 0.00 3.936491e+06 3.936491e+06 0.00 NULL
2024 Police Department Precinct Community Relations Aide 35529.03000 1.065871e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.065871e+05 1.065871e+05 0.00 NULL
2024 Police Department Precinct Receptionist 26033.64724 4.686057e+05 0.00 0.000000e+00 0.000 0.00 18 0.000000e+00 0.00 4.686057e+05 4.686057e+05 0.00 NULL
2024 Police Department Principal Administrative Associate - Non Supvr 70431.76012 2.436939e+07 964889.42 2.788698e+03 63.475 18858.11 346 6.347500e+01 21962.35 2.533428e+07 2.439135e+07 942927.07 NULL
2024 Police Department Principal Fingerprint Technician 61739.50000 2.469580e+05 19908.87 4.977217e+03 5021.470 473.50 4 4.977217e+03 19908.87 2.668669e+05 2.668669e+05 0.00 NULL
2024 Police Department Principal Police Communication Technician 82619.44444 6.692175e+06 1075256.17 1.327477e+04 5547.370 17157.88 81 5.547370e+03 449336.97 7.767431e+06 7.141512e+06 625919.20 NULL
2024 Police Department Printing Press Operator NA NA 199921.21 7.140043e+03 7033.370 3622.75 28 7.033370e+03 196934.36 NA NA NA NULL
2024 Police Department Procurement Analyst 74403.23529 1.264855e+06 38003.42 2.235495e+03 549.630 778.00 17 5.496300e+02 9343.71 1.302858e+06 1.274199e+06 28659.71 NULL
2024 Police Department Program Producer 54965.28571 3.847570e+05 10466.80 1.495257e+03 306.410 254.75 7 3.064100e+02 2144.87 3.952238e+05 3.869019e+05 8321.93 NULL
2024 Police Department Property Clerk 180035.00000 1.800350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.800350e+05 1.800350e+05 0.00 NULL
2024 Police Department Psychologist 89008.01900 1.780160e+06 250004.84 1.250024e+04 11529.010 3506.25 20 1.152901e+04 230580.20 2.030165e+06 2.010741e+06 19424.64 NULL
2024 Police Department Public Health Assistant 41940.33333 3.774630e+05 11237.13 1.248570e+03 0.000 377.00 9 0.000000e+00 0.00 3.887001e+05 3.774630e+05 11237.13 NULL
2024 Police Department Public Records Officer 62732.66667 1.881980e+05 18346.22 6.115407e+03 4663.120 450.50 3 4.663120e+03 13989.36 2.065442e+05 2.021874e+05 4356.86 NULL
2024 Police Department Quality Assurance Specialist 62768.00000 6.276800e+04 10957.45 1.095745e+04 10957.450 253.75 1 1.095745e+04 10957.45 7.372545e+04 7.372545e+04 0.00 NULL
2024 Police Department Radio Repair Mechanic NA NA 1123245.37 1.517899e+04 13618.355 14424.75 74 1.361835e+04 1007758.27 NA NA NA NULL
2024 Police Department Research Assistant 75074.00000 7.507400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.507400e+04 7.507400e+04 0.00 NULL
2024 Police Department Roofer NA NA 7405.63 1.481126e+03 0.000 81.00 5 0.000000e+00 0.00 NA NA NA NULL
2024 Police Department School Crossing Guard 14267.67447 4.397297e+07 3612.69 1.172190e+00 0.000 195.66 3082 0.000000e+00 0.00 4.397659e+07 4.397297e+07 3612.69 NULL
2024 Police Department School Safety Agent 48143.55835 2.372033e+08 45099229.02 9.153487e+03 5721.540 1186271.12 4927 5.721540e+03 28190027.58 2.823025e+08 2.653933e+08 16909201.44 NULL
2024 Police Department Secretary 56332.83333 3.379970e+05 9371.12 1.561853e+03 122.185 231.75 6 1.221850e+02 733.11 3.473681e+05 3.387301e+05 8638.01 NULL
2024 Police Department Secretary Of The Department 258155.00000 2.581550e+05 85329.49 8.532949e+04 85329.490 904.07 1 8.532949e+04 85329.49 3.434845e+05 3.434845e+05 0.00 NULL
2024 Police Department Secretary To The Commissioner 129001.00000 1.290010e+05 46949.62 4.694962e+04 46949.620 520.00 1 4.694962e+04 46949.62 1.759506e+05 1.759506e+05 0.00 NULL
2024 Police Department Secretary To The First Deputy Commissioner-Pd 137270.00000 1.372700e+05 57456.27 5.745627e+04 57456.270 662.25 1 5.745627e+04 57456.27 1.947263e+05 1.947263e+05 0.00 NULL
2024 Police Department Senior It Architect 176485.54545 1.941341e+06 240559.97 2.186909e+04 12283.500 2133.00 11 1.228350e+04 135118.50 2.181901e+06 2.076460e+06 105441.47 NULL
2024 Police Department Senior Office Appliance Maintainer 55645.00000 5.564500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.564500e+04 5.564500e+04 0.00 NULL
2024 Police Department Senior Photographer 66355.75000 2.654230e+05 33307.61 8.326903e+03 8264.070 700.25 4 8.264070e+03 33056.28 2.987306e+05 2.984793e+05 251.33 NULL
2024 Police Department Senior Police Administrative Aide 59018.75758 4.090000e+07 1155184.18 1.666932e+03 0.000 28193.82 693 0.000000e+00 0.00 4.205518e+07 4.090000e+07 1155184.18 NULL
2024 Police Department Senior Stationary Engineer NA NA 68562.84 2.285428e+04 47.610 492.75 3 4.761000e+01 142.83 NA NA NA NULL
2024 Police Department Sergeant- 111238.50911 5.005733e+08 131904374.61 2.931208e+04 27552.135 1321720.79 4500 2.755213e+04 123984607.50 6.324777e+08 6.245579e+08 7919767.11 NULL
2024 Police Department Sergeant-D/A Special Assignment 126800.89552 3.398264e+07 12112287.40 4.519510e+04 43477.995 118753.94 268 4.347800e+04 11652102.66 4.609493e+07 4.563474e+07 460184.74 NULL
2024 Police Department Sergeant-D/A Supervisor Detective Squad 128045.03118 6.158966e+07 23493938.13 4.884395e+04 51429.670 225983.46 481 4.884395e+04 23493938.13 8.508360e+07 8.508360e+07 0.00 NULL
2024 Police Department Sheet Metal Worker NA NA 226177.36 3.769623e+04 39879.995 1673.50 6 3.769623e+04 226177.36 NA NA NA NULL
2024 Police Department Social Worker 72786.66667 2.183600e+05 748.76 2.495867e+02 374.380 19.00 3 2.495867e+02 748.76 2.191088e+05 2.191088e+05 0.00 NULL
2024 Police Department Space Analyst 107448.00000 1.074480e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.074480e+05 1.074480e+05 0.00 NULL
2024 Police Department Staff Analyst 67678.53382 4.602140e+06 45792.56 6.734200e+02 0.000 917.00 68 0.000000e+00 0.00 4.647933e+06 4.602140e+06 45792.56 NULL
2024 Police Department Staff Analyst Trainee 55615.00000 3.336900e+05 10457.50 1.742917e+03 131.790 325.00 6 1.317900e+02 790.74 3.441475e+05 3.344807e+05 9666.76 NULL
2024 Police Department Stationary Engineer NA NA 598255.74 4.601967e+04 1416.340 4933.50 13 1.416340e+03 18412.42 NA NA NA NULL
2024 Police Department Steam Fitter NA NA 654259.00 3.443468e+04 37299.750 5288.00 19 3.443468e+04 654259.00 NA NA NA NULL
2024 Police Department Stenographer To Each Deputy Commissioner 95990.66667 8.639160e+05 157449.04 1.749434e+04 0.000 2081.50 9 0.000000e+00 0.00 1.021365e+06 8.639160e+05 157449.04 NULL
2024 Police Department Stenographic Specialist 54056.25000 2.162250e+05 234.93 5.873250e+01 5.300 9.00 4 5.300000e+00 21.20 2.164599e+05 2.162462e+05 213.73 NULL
2024 Police Department Stock Worker 40466.51515 1.335395e+06 68261.21 2.068522e+03 234.420 2162.00 33 2.344200e+02 7735.86 1.403656e+06 1.343131e+06 60525.35 NULL
2024 Police Department Summer College Intern 2145.49424 4.677177e+05 0.00 0.000000e+00 0.000 0.00 218 0.000000e+00 0.00 4.677177e+05 4.677177e+05 0.00 NULL
2024 Police Department Summer Graduate Intern 2811.80618 1.546493e+05 0.00 0.000000e+00 0.000 0.00 55 0.000000e+00 0.00 1.546493e+05 1.546493e+05 0.00 NULL
2024 Police Department Supervising Chief Surgeon 276588.00000 2.765880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.765880e+05 2.765880e+05 0.00 NULL
2024 Police Department Supervising Police Communications Technician 75185.18653 1.451074e+07 2808859.40 1.455368e+04 7259.630 48699.39 193 7.259630e+03 1401108.59 1.731960e+07 1.591185e+07 1407750.81 NULL
2024 Police Department Supervisor 80647.00000 1.612940e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.612940e+05 1.612940e+05 0.00 NULL
2024 Police Department Supervisor Carpenter NA NA 63166.76 3.158338e+04 31583.380 692.25 2 3.158338e+04 63166.76 NA NA NA NULL
2024 Police Department Supervisor Electrician NA NA 115329.45 5.766472e+04 57664.725 1076.00 2 5.766472e+04 115329.45 NA NA NA NULL
2024 Police Department Supervisor Elevator Mechanic NA NA 61341.76 6.134176e+04 61341.760 597.00 1 6.134176e+04 61341.76 NA NA NA NULL
2024 Police Department Supervisor Glazier NA NA 74677.84 3.733892e+04 37338.920 671.50 2 3.733892e+04 74677.84 NA NA NA NULL
2024 Police Department Supervisor Of Mechanical Installations & Maintenance 95332.00000 9.533200e+04 36909.53 3.690953e+04 36909.530 540.25 1 3.690953e+04 36909.53 1.322415e+05 1.322415e+05 0.00 NULL
2024 Police Department Supervisor Of Mechanics 138850.50000 8.331030e+06 862158.88 1.436931e+04 6579.440 7377.25 60 6.579440e+03 394766.40 9.193189e+06 8.725796e+06 467392.48 NULL
2024 Police Department Supervisor Of Office Machine Operations 55431.50000 1.108630e+05 35317.57 1.765878e+04 17658.785 698.00 2 1.765878e+04 35317.57 1.461806e+05 1.461806e+05 0.00 NULL
2024 Police Department Supervisor Of Radio Repair Operations 136276.76923 1.771598e+06 362987.28 2.792210e+04 33262.580 3742.25 13 2.792210e+04 362987.28 2.134585e+06 2.134585e+06 0.00 NULL
2024 Police Department Supervisor Of School Security 78530.52475 7.931583e+06 1416518.14 1.402493e+04 12828.030 23687.25 101 1.282803e+04 1295631.03 9.348101e+06 9.227214e+06 120887.11 NULL
2024 Police Department Supervisor Of Stock Workers 62949.90000 6.294990e+05 67275.00 6.727500e+03 7263.770 1630.00 10 6.727500e+03 67275.00 6.967740e+05 6.967740e+05 0.00 NULL
2024 Police Department Supervisor Painter NA NA 92689.22 4.634461e+04 46344.610 1010.50 2 4.634461e+04 92689.22 NA NA NA NULL
2024 Police Department Supervisor Plumber NA NA 231212.56 5.780314e+04 57588.760 1780.00 4 5.758876e+04 230355.04 NA NA NA NULL
2024 Police Department Supervisor Roofer NA NA 35929.75 1.197658e+04 1461.100 451.50 3 1.461100e+03 4383.30 NA NA NA NULL
2024 Police Department Supervisor Sheet Metal Worker NA NA 7756.60 3.878300e+03 3878.300 0.00 2 3.878300e+03 7756.60 NA NA NA NULL
2024 Police Department Supervisor Steamfitter NA NA 267664.17 8.922139e+04 89221.390 2107.50 3 8.922139e+04 267664.17 NA NA NA NULL
2024 Police Department Supervisor Thermostat Repair NA NA 89532.35 8.953235e+04 89532.350 694.50 1 8.953235e+04 89532.35 NA NA NA NULL
2024 Police Department Telecommunications Associate 96305.40000 9.630540e+05 170725.47 1.707255e+04 16582.440 2381.00 10 1.658244e+04 165824.40 1.133779e+06 1.128878e+06 4901.07 NULL
2024 Police Department Telephone Service Technician 81946.50000 3.277860e+05 28673.95 7.168488e+03 7454.255 509.00 4 7.168488e+03 28673.95 3.564600e+05 3.564600e+05 0.00 NULL
2024 Police Department Thermostat Repairer NA NA 250237.37 3.127967e+04 12100.935 2026.75 8 1.210093e+04 96807.48 NA NA NA NULL
2024 Police Department Traffic Enforcement Agent 47903.13066 1.638766e+08 25541813.28 7.466183e+03 2403.040 670614.16 3421 2.403040e+03 8220799.84 1.894184e+08 1.720974e+08 17321013.44 NULL
2024 Police Department Welder NA NA 59596.43 1.986548e+04 18820.500 614.50 3 1.882050e+04 56461.50 NA NA NA NULL
2024 Public Administrator-Bronx Community Associate 48090.00000 2.885400e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 2.885400e+05 2.885400e+05 0.00 NULL
2024 Public Administrator-Bronx Community Coordinator 89095.00000 8.909500e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.909500e+04 8.909500e+04 0.00 NULL
2024 Public Administrator-Bronx Decedent Property Agent 60508.50000 1.210170e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.210170e+05 1.210170e+05 0.00 NULL
2024 Public Administrator-Bronx Deputy Public Administator 139567.00000 1.395670e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.395670e+05 1.395670e+05 0.00 NULL
2024 Public Administrator-Bronx Public Administrator 189810.00000 1.898100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.898100e+05 1.898100e+05 0.00 NULL
2024 Public Administrator-Kings Community Assistant 50023.50000 1.000470e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.000470e+05 1.000470e+05 0.00 NULL
2024 Public Administrator-Kings Community Associate 49589.80000 2.479490e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 2.479490e+05 2.479490e+05 0.00 NULL
2024 Public Administrator-Kings Community Coordinator 70546.00000 1.410920e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.410920e+05 1.410920e+05 0.00 NULL
2024 Public Administrator-Kings Decedent Property Agent 59564.25000 2.382570e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.382570e+05 2.382570e+05 0.00 NULL
2024 Public Administrator-Kings Deputy Public Administator 139560.00000 1.395600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.395600e+05 1.395600e+05 0.00 NULL
2024 Public Administrator-Kings Public Administrator 195978.00000 5.879340e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.879340e+05 5.879340e+05 0.00 NULL
2024 Public Administrator-New York Accountant 75634.00000 1.512680e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.512680e+05 1.512680e+05 0.00 NULL
2024 Public Administrator-New York Bookkeeper 43497.00000 4.349700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.349700e+04 4.349700e+04 0.00 NULL
2024 Public Administrator-New York Clerical Associate 51951.66667 1.558550e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.558550e+05 1.558550e+05 0.00 NULL
2024 Public Administrator-New York Decedent Property Agent 55127.25000 2.205090e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.205090e+05 2.205090e+05 0.00 NULL
2024 Public Administrator-New York Deputy Public Administator 139560.00000 1.395600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.395600e+05 1.395600e+05 0.00 NULL
2024 Public Administrator-New York Principal Administrative Associate - Non Supvr 75903.00000 7.590300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.590300e+04 7.590300e+04 0.00 NULL
2024 Public Administrator-New York Public Administrator 209340.00000 2.093400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.093400e+05 2.093400e+05 0.00 NULL
2024 Public Administrator-Queens Decedent Property Agent 59914.00000 2.396560e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 2.396560e+05 2.396560e+05 0.00 NULL
2024 Public Administrator-Queens Deputy Public Administator 139560.00000 1.395600e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.395600e+05 1.395600e+05 0.00 NULL
2024 Public Administrator-Queens Public Administrator 209340.00000 2.093400e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.093400e+05 2.093400e+05 0.00 NULL
2024 Public Administrator-Queens Secretary 53158.00000 5.315800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.315800e+04 5.315800e+04 0.00 NULL
2024 Public Administrator-Richmond Community Coordinator 81494.00000 8.149400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.149400e+04 8.149400e+04 0.00 NULL
2024 Public Administrator-Richmond Deputy Public Administator 140464.00000 1.404640e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.404640e+05 1.404640e+05 0.00 NULL
2024 Public Administrator-Richmond Public Administrator 210695.00000 2.106950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.106950e+05 2.106950e+05 0.00 NULL
2024 Public Administrator-Richmond Secretary To Public Administrator 87712.50000 1.754250e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.754250e+05 1.754250e+05 0.00 NULL
2024 Public Advocate Assistant To The Public Advocate 50203.03947 1.907716e+06 0.00 0.000000e+00 0.000 0.00 38 0.000000e+00 0.00 1.907716e+06 1.907716e+06 0.00 NULL
2024 Public Advocate College Aide 7222.37500 1.444475e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.444475e+04 1.444475e+04 0.00 NULL
2024 Public Advocate Counsel To The Public Advocate 170924.00000 1.709240e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.709240e+05 1.709240e+05 0.00 NULL
2024 Public Advocate Director Of Communications 115816.50000 2.316330e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.316330e+05 2.316330e+05 0.00 NULL
2024 Public Advocate Director Of The Ombudsman Program 119227.00000 2.384540e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.384540e+05 2.384540e+05 0.00 NULL
2024 Public Advocate Executive Assistant And Counsel To The Public Advocate 113300.00000 1.133000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.133000e+05 1.133000e+05 0.00 NULL
2024 Public Advocate First Assistant To The Public Advocate 166288.50000 3.325770e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.325770e+05 3.325770e+05 0.00 NULL
2024 Public Advocate Legislative Attorney 92104.53000 9.210453e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.210453e+04 9.210453e+04 0.00 NULL
2024 Public Advocate Legislative Information Officer 110159.28571 7.711150e+05 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 7.711150e+05 7.711150e+05 0.00 NULL
2024 Public Advocate Office Assistant 37004.57600 1.850229e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 1.850229e+05 1.850229e+05 0.00 NULL
2024 Public Advocate Office Manager 87464.09091 9.621050e+05 0.00 0.000000e+00 0.000 0.00 11 0.000000e+00 0.00 9.621050e+05 9.621050e+05 0.00 NULL
2024 Public Advocate Public Advocate 184800.00000 1.848000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.848000e+05 1.848000e+05 0.00 NULL
2024 Public Advocate Special Assistant 22814.78083 6.844434e+04 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 6.844434e+04 6.844434e+04 0.00 NULL
2024 Public Advocate Summer College Intern 240.00000 1.680000e+03 0.00 0.000000e+00 0.000 0.00 7 0.000000e+00 0.00 1.680000e+03 1.680000e+03 0.00 NULL
2024 Public Service Corps College Aide 3928.38981 2.553453e+05 0.00 0.000000e+00 0.000 0.00 65 0.000000e+00 0.00 2.553453e+05 2.553453e+05 0.00 NULL
2024 Queens Community Board #1 Community Assistant 42092.00000 4.209200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.209200e+04 4.209200e+04 0.00 NULL
2024 Queens Community Board #1 District Manager 133746.00000 1.337460e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.337460e+05 1.337460e+05 0.00 NULL
2024 Queens Community Board #10 Community Coordinator 70491.00000 7.049100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.049100e+04 7.049100e+04 0.00 NULL
2024 Queens Community Board #10 District Manager 135629.00000 1.356290e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.356290e+05 1.356290e+05 0.00 NULL
2024 Queens Community Board #11 Community Associate 63673.00000 6.367300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.367300e+04 6.367300e+04 0.00 NULL
2024 Queens Community Board #11 Community Coordinator 83651.00000 8.365100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.365100e+04 8.365100e+04 0.00 NULL
2024 Queens Community Board #11 District Manager 104373.00000 1.043730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.043730e+05 1.043730e+05 0.00 NULL
2024 Queens Community Board #12 Community Assistant 44181.00000 8.836200e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 8.836200e+04 8.836200e+04 0.00 NULL
2024 Queens Community Board #12 District Manager 136388.00000 1.363880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.363880e+05 1.363880e+05 0.00 NULL
2024 Queens Community Board #13 Community Coordinator 75802.00000 7.580200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.580200e+04 7.580200e+04 0.00 NULL
2024 Queens Community Board #13 District Manager 149089.00000 1.490890e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.490890e+05 1.490890e+05 0.00 NULL
2024 Queens Community Board #14 Community Coordinator 85698.00000 8.569800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.569800e+04 8.569800e+04 0.00 NULL
2024 Queens Community Board #14 District Manager 122515.00000 2.450300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.450300e+05 2.450300e+05 0.00 NULL
2024 Queens Community Board #2 Community Coordinator 72280.00000 7.228000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.228000e+04 7.228000e+04 0.00 NULL
2024 Queens Community Board #2 Community Service Aide 25916.80000 2.591680e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.591680e+04 2.591680e+04 0.00 NULL
2024 Queens Community Board #2 District Manager 131423.00000 1.314230e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.314230e+05 1.314230e+05 0.00 NULL
2024 Queens Community Board #3 Community Coordinator 72090.00000 7.209000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.209000e+04 7.209000e+04 0.00 NULL
2024 Queens Community Board #3 Community Service Aide 32083.00000 3.208300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.208300e+04 3.208300e+04 0.00 NULL
2024 Queens Community Board #3 District Manager 126794.00000 1.267940e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.267940e+05 1.267940e+05 0.00 NULL
2024 Queens Community Board #4 Community Associate 46425.50000 9.285100e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.285100e+04 9.285100e+04 0.00 NULL
2024 Queens Community Board #4 Community Coordinator 94717.00000 9.471700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.471700e+04 9.471700e+04 0.00 NULL
2024 Queens Community Board #4 District Manager 124749.00000 1.247490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.247490e+05 1.247490e+05 0.00 NULL
2024 Queens Community Board #5 Community Associate 51777.86517 1.553336e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.553336e+05 1.553336e+05 0.00 NULL
2024 Queens Community Board #5 District Manager 113228.00000 1.132280e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.132280e+05 1.132280e+05 0.00 NULL
2024 Queens Community Board #6 Community Coordinator 77007.00000 7.700700e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.700700e+04 7.700700e+04 0.00 NULL
2024 Queens Community Board #6 Community Service Aide 29588.00000 5.917600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 5.917600e+04 5.917600e+04 0.00 NULL
2024 Queens Community Board #6 District Manager 123517.00000 1.235170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.235170e+05 1.235170e+05 0.00 NULL
2024 Queens Community Board #7 Community Assistant 40866.00000 4.086600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.086600e+04 4.086600e+04 0.00 NULL
2024 Queens Community Board #7 Community Coordinator 70022.00000 7.002200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.002200e+04 7.002200e+04 0.00 NULL
2024 Queens Community Board #7 District Manager 118110.00000 1.181100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.181100e+05 1.181100e+05 0.00 NULL
2024 Queens Community Board #8 Community Assistant 33557.66667 1.006730e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.006730e+05 1.006730e+05 0.00 NULL
2024 Queens Community Board #8 Community Associate 54409.00000 5.440900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.440900e+04 5.440900e+04 0.00 NULL
2024 Queens Community Board #8 Community Service Aide 1188.00000 1.188000e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.188000e+03 1.188000e+03 0.00 NULL
2024 Queens Community Board #8 District Manager 158004.00000 1.580040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.580040e+05 1.580040e+05 0.00 NULL
2024 Queens Community Board #9 Community Assistant 40866.00000 4.086600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.086600e+04 4.086600e+04 0.00 NULL
2024 Queens Community Board #9 Community Associate 62660.00000 6.266000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.266000e+04 6.266000e+04 0.00 NULL
2024 Queens Community Board #9 District Manager 104649.00000 1.046490e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.046490e+05 1.046490e+05 0.00 NULL
2024 Staten Island Community Bd #1 Community Coordinator 72100.00000 7.210000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.210000e+04 7.210000e+04 0.00 NULL
2024 Staten Island Community Bd #1 District Manager 129671.00000 1.296710e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.296710e+05 1.296710e+05 0.00 NULL
2024 Staten Island Community Bd #2 Community Associate 34391.28120 3.439128e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 3.439128e+04 3.439128e+04 0.00 NULL
2024 Staten Island Community Bd #2 Community Coordinator 78420.00000 7.842000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.842000e+04 7.842000e+04 0.00 NULL
2024 Staten Island Community Bd #2 District Manager 149227.00000 1.492270e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.492270e+05 1.492270e+05 0.00 NULL
2024 Staten Island Community Bd #3 Community Coordinator 75251.00000 1.505020e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.505020e+05 1.505020e+05 0.00 NULL
2024 Staten Island Community Bd #3 District Manager 118956.00000 1.189560e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.189560e+05 1.189560e+05 0.00 NULL
2024 Tax Commission *Certified Database Administrator 122969.10000 1.229691e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.229691e+05 1.229691e+05 0.00 NULL
2024 Tax Commission Adm Manager-Non-Mgrl 98041.50000 3.921660e+05 6075.15 1.518787e+03 702.295 77.75 4 7.022950e+02 2809.18 3.982412e+05 3.949752e+05 3265.97 NULL
2024 Tax Commission Administrative Assessor 193022.00000 1.930220e+05 765.34 7.653400e+02 765.340 0.00 1 7.653400e+02 765.34 1.937873e+05 1.937873e+05 0.00 NULL
2024 Tax Commission Administrative Staff Analyst 172693.00000 1.726930e+05 65.08 6.508000e+01 65.080 0.00 1 6.508000e+01 65.08 1.727581e+05 1.727581e+05 0.00 NULL
2024 Tax Commission Agency Attorney 102502.39833 6.150144e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 6.150144e+05 6.150144e+05 0.00 NULL
2024 Tax Commission Assistant Counsel 185951.00000 1.859510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.859510e+05 1.859510e+05 0.00 NULL
2024 Tax Commission Certified It Administrator 138493.40000 1.384934e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.384934e+05 1.384934e+05 0.00 NULL
2024 Tax Commission Certified It Developer 131375.50000 2.627510e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.627510e+05 2.627510e+05 0.00 NULL
2024 Tax Commission City Assessor 110281.11765 1.874779e+06 134077.92 7.886936e+03 9082.070 1654.50 17 7.886936e+03 134077.92 2.008857e+06 2.008857e+06 0.00 NULL
2024 Tax Commission Clerical Associate 54509.50000 1.090190e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.090190e+05 1.090190e+05 0.00 NULL
2024 Tax Commission College Aide 11989.98750 9.591990e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.591990e+04 9.591990e+04 0.00 NULL
2024 Tax Commission Commissioner 75266.25000 6.021300e+05 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 6.021300e+05 6.021300e+05 0.00 NULL
2024 Tax Commission Computer Associate 96572.00000 9.657200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.657200e+04 9.657200e+04 0.00 NULL
2024 Tax Commission Computer Specialist 127726.00000 1.277260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.277260e+05 1.277260e+05 0.00 NULL
2024 Tax Commission Computer Systems Manager 220504.00000 2.205040e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.205040e+05 2.205040e+05 0.00 NULL
2024 Tax Commission Executive Agency Counsel 168715.00000 1.687150e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.687150e+05 1.687150e+05 0.00 NULL
2024 Tax Commission President 227786.00000 2.277860e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.277860e+05 2.277860e+05 0.00 NULL
2024 Tax Commission Principal Administrative Associate - Non Supvr 78102.00000 2.343060e+05 14.22 4.740000e+00 0.000 0.00 3 0.000000e+00 0.00 2.343202e+05 2.343060e+05 14.22 NULL
2024 Tax Commission Secretary 70704.00000 7.070400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.070400e+04 7.070400e+04 0.00 NULL
2024 Tax Commission Secretary Of The Tax Commission 72193.00000 7.219300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.219300e+04 7.219300e+04 0.00 NULL
2024 Tax Commission Special Assistant 186579.00000 1.865790e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.865790e+05 1.865790e+05 0.00 NULL
2024 Taxi & Limousine Commission Accountant 93107.00000 2.793210e+05 7981.33 2.660443e+03 1291.340 114.00 3 1.291340e+03 3874.02 2.873023e+05 2.831950e+05 4107.31 NULL
2024 Taxi & Limousine Commission Adm Manager-Non-Mgrl 98414.69231 1.279391e+06 76620.40 5.893877e+03 0.000 1187.00 13 0.000000e+00 0.00 1.356011e+06 1.279391e+06 76620.40 NULL
2024 Taxi & Limousine Commission Admin Community Relations Specialist 90548.00000 1.810960e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.810960e+05 1.810960e+05 0.00 NULL
2024 Taxi & Limousine Commission Administratiive Taxi & Limousine Inspector 119518.81250 1.912301e+06 1114.34 6.964625e+01 0.000 0.00 16 0.000000e+00 0.00 1.913415e+06 1.912301e+06 1114.34 NULL
2024 Taxi & Limousine Commission Administrative City Planner 157751.00000 1.577510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.577510e+05 1.577510e+05 0.00 NULL
2024 Taxi & Limousine Commission Administrative Community Relations Specialist 158313.00000 1.583130e+05 33.27 3.327000e+01 33.270 0.00 1 3.327000e+01 33.27 1.583463e+05 1.583463e+05 0.00 NULL
2024 Taxi & Limousine Commission Administrative Management Auditor 146054.00000 1.460540e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.460540e+05 1.460540e+05 0.00 NULL
2024 Taxi & Limousine Commission Administrative Manager 184917.00000 1.849170e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.849170e+05 1.849170e+05 0.00 NULL
2024 Taxi & Limousine Commission Administrative Procurement Analyst-Non-Mgrl 128750.00000 1.287500e+05 493.29 4.932900e+02 493.290 7.25 1 4.932900e+02 493.29 1.292433e+05 1.292433e+05 0.00 NULL
2024 Taxi & Limousine Commission Administrative Public Information Specialist 164873.00000 1.648730e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.648730e+05 1.648730e+05 0.00 NULL
2024 Taxi & Limousine Commission Administrative Quality Assurance Specialist 120755.00000 1.207550e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.207550e+05 1.207550e+05 0.00 NULL
2024 Taxi & Limousine Commission Administrative Staff Analyst 142297.23077 1.849864e+06 4100.11 3.153931e+02 0.000 48.00 13 0.000000e+00 0.00 1.853964e+06 1.849864e+06 4100.11 NULL
2024 Taxi & Limousine Commission Agency Attorney 88474.72917 4.246787e+06 127988.06 2.666418e+03 0.000 1739.25 48 0.000000e+00 0.00 4.374775e+06 4.246787e+06 127988.06 NULL
2024 Taxi & Limousine Commission Agency Attorney Interne 70604.25000 1.129668e+06 6396.30 3.997688e+02 0.000 126.75 16 0.000000e+00 0.00 1.136064e+06 1.129668e+06 6396.30 NULL
2024 Taxi & Limousine Commission Associate Investigator 82052.00000 8.205200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.205200e+04 8.205200e+04 0.00 NULL
2024 Taxi & Limousine Commission Associate Staff Analyst 89108.00000 2.673240e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.673240e+05 2.673240e+05 0.00 NULL
2024 Taxi & Limousine Commission Associate Taxi & Limousine Inspector 72774.18868 3.857032e+06 371132.09 7.002492e+03 3925.800 6233.50 53 3.925800e+03 208067.40 4.228164e+06 4.065099e+06 163064.69 NULL
2024 Taxi & Limousine Commission Cashier 41916.48900 2.095824e+05 312.54 6.250800e+01 37.540 11.50 5 3.754000e+01 187.70 2.098950e+05 2.097701e+05 124.84 NULL
2024 Taxi & Limousine Commission Certified It Administrator 163119.00000 1.631190e+05 32010.32 3.201032e+04 32010.320 250.50 1 3.201032e+04 32010.32 1.951293e+05 1.951293e+05 0.00 NULL
2024 Taxi & Limousine Commission Chairman 277605.00000 2.776050e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.776050e+05 2.776050e+05 0.00 NULL
2024 Taxi & Limousine Commission Chief Of Staff 208220.00000 2.082200e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.082200e+05 2.082200e+05 0.00 NULL
2024 Taxi & Limousine Commission City Research Scientist 103155.37500 8.252430e+05 36234.90 4.529363e+03 0.000 459.25 8 0.000000e+00 0.00 8.614779e+05 8.252430e+05 36234.90 NULL
2024 Taxi & Limousine Commission City Tax Auditor 81308.00000 8.130800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.130800e+04 8.130800e+04 0.00 NULL
2024 Taxi & Limousine Commission Clerical Associate 53313.20196 2.718973e+06 44535.54 8.732459e+02 0.000 1380.00 51 0.000000e+00 0.00 2.763509e+06 2.718973e+06 44535.54 NULL
2024 Taxi & Limousine Commission College Aide 7205.66146 8.646794e+04 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 8.646794e+04 8.646794e+04 0.00 NULL
2024 Taxi & Limousine Commission Community Assistant 42773.41333 1.283202e+05 4124.38 1.374793e+03 1174.300 140.50 3 1.174300e+03 3522.90 1.324446e+05 1.318431e+05 601.48 NULL
2024 Taxi & Limousine Commission Community Associate 51943.19093 2.389387e+06 123016.56 2.674273e+03 0.000 2998.75 46 0.000000e+00 0.00 2.512403e+06 2.389387e+06 123016.56 NULL
2024 Taxi & Limousine Commission Community Coordinator 75820.13636 1.668043e+06 85788.78 3.899490e+03 0.000 1603.25 22 0.000000e+00 0.00 1.753832e+06 1.668043e+06 85788.78 NULL
2024 Taxi & Limousine Commission Computer Aide-Non-Spvr 60616.28333 1.818489e+05 203.45 6.781667e+01 0.000 5.00 3 0.000000e+00 0.00 1.820523e+05 1.818489e+05 203.45 NULL
2024 Taxi & Limousine Commission Computer Associate 85091.46475 4.254573e+05 1003.08 2.006160e+02 0.000 19.25 5 0.000000e+00 0.00 4.264604e+05 4.254573e+05 1003.08 NULL
2024 Taxi & Limousine Commission Computer Operations Manager 144740.25000 5.789610e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 5.789610e+05 5.789610e+05 0.00 NULL
2024 Taxi & Limousine Commission Computer Programmer Analyst 82161.70000 1.643234e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.643234e+05 1.643234e+05 0.00 NULL
2024 Taxi & Limousine Commission Computer Specialist 121182.00000 1.211820e+06 60748.97 6.074897e+03 0.000 624.75 10 0.000000e+00 0.00 1.272569e+06 1.211820e+06 60748.97 NULL
2024 Taxi & Limousine Commission Computer Systems Manager 171717.00000 1.545453e+06 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 1.545453e+06 1.545453e+06 0.00 NULL
2024 Taxi & Limousine Commission Confidential Strategy Planner 98939.50000 1.978790e+05 5.04 2.520000e+00 2.520 0.00 2 2.520000e+00 5.04 1.978840e+05 1.978840e+05 0.00 NULL
2024 Taxi & Limousine Commission Customer Information Representative Ma L 1549 47328.57857 6.626001e+05 9463.36 6.759543e+02 0.000 318.75 14 0.000000e+00 0.00 6.720635e+05 6.626001e+05 9463.36 NULL
2024 Taxi & Limousine Commission Cyber Security Analyst 78870.75000 3.154830e+05 1055.20 2.638000e+02 202.955 25.50 4 2.029550e+02 811.82 3.165382e+05 3.162948e+05 243.38 NULL
2024 Taxi & Limousine Commission Deputy Commissioner 218475.00000 2.184750e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.184750e+05 2.184750e+05 0.00 NULL
2024 Taxi & Limousine Commission Economist 86200.00000 1.724000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.724000e+05 1.724000e+05 0.00 NULL
2024 Taxi & Limousine Commission Executive Agency Counsel 177996.68750 2.847947e+06 168.14 1.050875e+01 0.000 0.00 16 0.000000e+00 0.00 2.848115e+06 2.847947e+06 168.14 NULL
2024 Taxi & Limousine Commission Graphic Artist 108150.00000 1.081500e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.081500e+05 1.081500e+05 0.00 NULL
2024 Taxi & Limousine Commission It Project Specialist 154500.00000 1.545000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.545000e+05 1.545000e+05 0.00 NULL
2024 Taxi & Limousine Commission Maintenance Worker NA NA 17102.73 5.700910e+03 5573.090 305.50 3 5.573090e+03 16719.27 NA NA NA NULL
2024 Taxi & Limousine Commission Motor Vehicle Operator 43358.32375 8.671665e+04 3121.25 1.560625e+03 1560.625 90.00 2 1.560625e+03 3121.25 8.983790e+04 8.983790e+04 0.00 NULL
2024 Taxi & Limousine Commission New York City Public Service Fellow 47578.00000 9.515600e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.515600e+04 9.515600e+04 0.00 NULL
2024 Taxi & Limousine Commission Operations Communications Specialist 43992.04150 4.399204e+05 11958.13 1.195813e+03 750.145 354.25 10 7.501450e+02 7501.45 4.518785e+05 4.474219e+05 4456.68 NULL
2024 Taxi & Limousine Commission Photographer 50280.00000 5.028000e+04 460.96 4.609600e+02 460.960 14.50 1 4.609600e+02 460.96 5.074096e+04 5.074096e+04 0.00 NULL
2024 Taxi & Limousine Commission Principal Administrative Associate - Non Supvr 73933.71875 2.365879e+06 93389.32 2.918416e+03 0.000 1686.50 32 0.000000e+00 0.00 2.459268e+06 2.365879e+06 93389.32 NULL
2024 Taxi & Limousine Commission Quality Assurance Specialist 54581.00000 5.458100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.458100e+04 5.458100e+04 0.00 NULL
2024 Taxi & Limousine Commission Secretary 46934.50000 9.386900e+04 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 9.386900e+04 9.386900e+04 0.00 NULL
2024 Taxi & Limousine Commission Senior It Architect 144000.00000 1.440000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.440000e+05 1.440000e+05 0.00 NULL
2024 Taxi & Limousine Commission Staff Analyst 68024.50000 2.720980e+05 538.91 1.347275e+02 24.815 13.00 4 2.481500e+01 99.26 2.726369e+05 2.721973e+05 439.65 NULL
2024 Taxi & Limousine Commission Stock Worker 26187.59041 1.309380e+05 1966.68 3.933360e+02 0.000 64.25 5 0.000000e+00 0.00 1.329046e+05 1.309380e+05 1966.68 NULL
2024 Taxi & Limousine Commission Strategic Initiative Specialist 143725.00000 1.437250e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.437250e+05 1.437250e+05 0.00 NULL
2024 Taxi & Limousine Commission Supervisor Of Stock Workers 62059.20917 1.861776e+05 890.12 2.967067e+02 45.170 19.50 3 4.517000e+01 135.51 1.870677e+05 1.863131e+05 754.61 NULL
2024 Taxi & Limousine Commission Taxi And Limousine Inspector 55640.01596 1.046032e+07 311183.81 1.655233e+03 161.815 6800.17 188 1.618150e+02 30421.22 1.077151e+07 1.049074e+07 280762.59 NULL
2024 Taxi & Limousine Commission Transportation Specialist 80093.00000 8.009300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.009300e+04 8.009300e+04 0.00 NULL
2024 Teachers Retirement System Accountant 73404.87500 5.872390e+05 139.92 1.749000e+01 0.000 3.25 8 0.000000e+00 0.00 5.873789e+05 5.872390e+05 139.92 NULL
2024 Teachers Retirement System Actuarial Specialist Level I 124951.00000 1.249510e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.249510e+05 1.249510e+05 0.00 NULL
2024 Teachers Retirement System Adm Manager-Non-Mgrl 93468.30000 9.346830e+05 1908.80 1.908800e+02 0.000 32.50 10 0.000000e+00 0.00 9.365918e+05 9.346830e+05 1908.80 NULL
2024 Teachers Retirement System Administrative Accountant 106639.85714 7.464790e+05 3346.91 4.781300e+02 10.190 57.00 7 1.019000e+01 71.33 7.498259e+05 7.465503e+05 3275.58 NULL
2024 Teachers Retirement System Administrative Community Relations Specialist 111934.00000 1.119340e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.119340e+05 1.119340e+05 0.00 NULL
2024 Teachers Retirement System Administrative Director Of Social Services 155800.00000 1.558000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.558000e+05 1.558000e+05 0.00 NULL
2024 Teachers Retirement System Administrative Management Auditor 182689.50000 3.653790e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 3.653790e+05 3.653790e+05 0.00 NULL
2024 Teachers Retirement System Administrative Manager 141701.37500 1.133611e+06 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 1.133611e+06 1.133611e+06 0.00 NULL
2024 Teachers Retirement System Administrative Project Manager 189561.00000 1.895610e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.895610e+05 1.895610e+05 0.00 NULL
2024 Teachers Retirement System Administrative Public Information Specialist 108349.00000 2.166980e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.166980e+05 2.166980e+05 0.00 NULL
2024 Teachers Retirement System Administrative Retirement Benefits Specialist 129744.15625 4.151813e+06 757.69 2.367781e+01 0.000 12.50 32 0.000000e+00 0.00 4.152571e+06 4.151813e+06 757.69 NULL
2024 Teachers Retirement System Administrative Retirements Benefits Specialist 107505.36364 1.182559e+06 1267.03 1.151845e+02 0.000 29.00 11 0.000000e+00 0.00 1.183826e+06 1.182559e+06 1267.03 NULL
2024 Teachers Retirement System Administrative Staff Analyst 133106.28571 1.863488e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 1.863488e+06 1.863488e+06 0.00 NULL
2024 Teachers Retirement System Agency Attorney 122524.33333 3.675730e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.675730e+05 3.675730e+05 0.00 NULL
2024 Teachers Retirement System Assistant Executive Director 186864.75000 7.474590e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 7.474590e+05 7.474590e+05 0.00 NULL
2024 Teachers Retirement System Assistant Retirement Benefits Examiner 53043.89189 1.962624e+06 0.00 0.000000e+00 0.000 0.00 37 0.000000e+00 0.00 1.962624e+06 1.962624e+06 0.00 NULL
2024 Teachers Retirement System Associate Public Records Officer 80340.00000 8.034000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.034000e+04 8.034000e+04 0.00 NULL
2024 Teachers Retirement System Associate Retirement Benefits Examiner 72923.77333 5.469283e+06 50349.94 6.713325e+02 0.000 1002.25 75 0.000000e+00 0.00 5.519633e+06 5.469283e+06 50349.94 NULL
2024 Teachers Retirement System Associate Staff Analyst 90138.00000 2.704140e+05 6682.17 2.227390e+03 387.240 99.75 3 3.872400e+02 1161.72 2.770962e+05 2.715757e+05 5520.45 NULL
2024 Teachers Retirement System Bookkeeper 54402.66667 1.632080e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.632080e+05 1.632080e+05 0.00 NULL
2024 Teachers Retirement System Certified It Administrator 108676.00000 1.086760e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.086760e+05 1.086760e+05 0.00 NULL
2024 Teachers Retirement System City Research Scientist 79410.00000 7.941000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.941000e+04 7.941000e+04 0.00 NULL
2024 Teachers Retirement System Clerical Associate 59441.00000 7.132920e+05 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 7.132920e+05 7.132920e+05 0.00 NULL
2024 Teachers Retirement System College Aide 16873.34750 1.012401e+05 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.012401e+05 1.012401e+05 0.00 NULL
2024 Teachers Retirement System College Aide - Assignment Levels Ii And Iii 13583.70180 5.433481e+04 378.00 9.450000e+01 0.000 21.00 4 0.000000e+00 0.00 5.471281e+04 5.433481e+04 378.00 NULL
2024 Teachers Retirement System Community Associate 65044.00000 1.951320e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.951320e+05 1.951320e+05 0.00 NULL
2024 Teachers Retirement System Computer Associate 80866.66667 4.852000e+05 2151.91 3.586517e+02 0.000 30.25 6 0.000000e+00 0.00 4.873519e+05 4.852000e+05 2151.91 NULL
2024 Teachers Retirement System Computer Operations Manager 158896.00000 1.588960e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.588960e+05 1.588960e+05 0.00 NULL
2024 Teachers Retirement System Computer Specialist 127589.59091 2.806971e+06 0.00 0.000000e+00 0.000 0.00 22 0.000000e+00 0.00 2.806971e+06 2.806971e+06 0.00 NULL
2024 Teachers Retirement System Computer Systems Manager 178790.39583 8.581939e+06 0.00 0.000000e+00 0.000 0.00 48 0.000000e+00 0.00 8.581939e+06 8.581939e+06 0.00 NULL
2024 Teachers Retirement System Customer Information Representative Ma L 1549 68320.00000 1.298080e+06 4042.99 2.127889e+02 0.000 104.25 19 0.000000e+00 0.00 1.302123e+06 1.298080e+06 4042.99 NULL
2024 Teachers Retirement System Cyber Security Analyst 70821.08333 8.498530e+05 287.35 2.394583e+01 0.000 7.50 12 0.000000e+00 0.00 8.501403e+05 8.498530e+05 287.35 NULL
2024 Teachers Retirement System Deputy Executive Director 268206.00000 2.682060e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.682060e+05 2.682060e+05 0.00 NULL
2024 Teachers Retirement System Executive Agency Counsel 212315.00000 4.246300e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.246300e+05 4.246300e+05 0.00 NULL
2024 Teachers Retirement System Executive Director 280000.00000 2.800000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.800000e+05 2.800000e+05 0.00 NULL
2024 Teachers Retirement System Graphic Artist 73318.33333 2.199550e+05 555.09 1.850300e+02 106.200 11.50 3 1.062000e+02 318.60 2.205101e+05 2.202736e+05 236.49 NULL
2024 Teachers Retirement System High School Student Aide 1758.75000 1.758750e+03 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.758750e+03 1.758750e+03 0.00 NULL
2024 Teachers Retirement System Investment Analyst 79402.00000 1.588040e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.588040e+05 1.588040e+05 0.00 NULL
2024 Teachers Retirement System Labor Relations Analyst 87462.00000 8.746200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.746200e+04 8.746200e+04 0.00 NULL
2024 Teachers Retirement System Legal Secretarial Assistant 50000.00000 5.000000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.000000e+04 5.000000e+04 0.00 NULL
2024 Teachers Retirement System Management Auditor 88139.50000 3.525580e+05 426.14 1.065350e+02 0.000 7.00 4 0.000000e+00 0.00 3.529841e+05 3.525580e+05 426.14 NULL
2024 Teachers Retirement System Office Machine Aide 53544.00000 1.606320e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.606320e+05 1.606320e+05 0.00 NULL
2024 Teachers Retirement System Paralegal Aide 67220.00000 6.722000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 6.722000e+04 6.722000e+04 0.00 NULL
2024 Teachers Retirement System Principal Administrative Associate - Non Supvr 75380.33333 1.356846e+06 1045.23 5.806833e+01 0.000 18.50 18 0.000000e+00 0.00 1.357891e+06 1.356846e+06 1045.23 NULL
2024 Teachers Retirement System Public Records Officer 70199.00000 7.019900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.019900e+04 7.019900e+04 0.00 NULL
2024 Teachers Retirement System Secretary To The Executive Director Of Retirement System 49329.00000 4.932900e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 4.932900e+04 4.932900e+04 0.00 NULL
2024 Teachers Retirement System Staff Analyst 70791.00000 1.415820e+05 18.25 9.125000e+00 9.125 0.00 2 9.125000e+00 18.25 1.416002e+05 1.416002e+05 0.00 NULL
2024 Teachers Retirement System Summer College Intern 3747.04585 1.761112e+05 0.00 0.000000e+00 0.000 0.00 47 0.000000e+00 0.00 1.761112e+05 1.761112e+05 0.00 NULL
2024 Teachers Retirement System Summer Graduate Intern 546.00000 1.638000e+03 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.638000e+03 1.638000e+03 0.00 NULL
2024 Teachers Retirement System Supervisor Of Office Machine Operations 52824.00000 5.282400e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 5.282400e+04 5.282400e+04 0.00 NULL
2024 Teachers Retirement System Supervisor Of Stock Workers 55503.50000 1.110070e+05 22.22 1.111000e+01 11.110 0.00 2 1.111000e+01 22.22 1.110292e+05 1.110292e+05 0.00 NULL
2024 Teachers Retirement System Telecommunications Associate 59288.00000 1.778640e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.778640e+05 1.778640e+05 0.00 NULL
2024 Technology & Innovation *Certified Local Area Network Administrator 110688.00000 1.106880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.106880e+05 1.106880e+05 0.00 NULL
2024 Technology & Innovation Accountant 90446.00000 9.044600e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.044600e+04 9.044600e+04 0.00 NULL
2024 Technology & Innovation Adm Manager-Non-Mgrl 100513.80597 6.734425e+06 82377.93 1.229521e+03 0.000 1453.75 67 0.000000e+00 0.00 6.816803e+06 6.734425e+06 82377.93 NULL
2024 Technology & Innovation Admin Community Relations Specialist 102270.00000 1.022700e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.022700e+05 1.022700e+05 0.00 NULL
2024 Technology & Innovation Admin Contract Specialist 200000.00000 2.000000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.000000e+05 2.000000e+05 0.00 NULL
2024 Technology & Innovation Administrative Accountant 103901.00000 1.039010e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.039010e+05 1.039010e+05 0.00 NULL
2024 Technology & Innovation Administrative Business Promotion Coordinator 151382.50000 2.119355e+06 0.00 0.000000e+00 0.000 0.00 14 0.000000e+00 0.00 2.119355e+06 2.119355e+06 0.00 NULL
2024 Technology & Innovation Administrative Community Relations Specialist 198078.33333 5.942350e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.942350e+05 5.942350e+05 0.00 NULL
2024 Technology & Innovation Administrative Construction Project Manager 164436.00000 1.644360e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.644360e+05 1.644360e+05 0.00 NULL
2024 Technology & Innovation Administrative Graphic Artist 145213.00000 4.356390e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 4.356390e+05 4.356390e+05 0.00 NULL
2024 Technology & Innovation Administrative Labor Relations Analyst 222488.00000 2.224880e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.224880e+05 2.224880e+05 0.00 NULL
2024 Technology & Innovation Administrative Manager 222818.00000 2.228180e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.228180e+05 2.228180e+05 0.00 NULL
2024 Technology & Innovation Administrative Procurement Analyst 171811.33333 5.154340e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 5.154340e+05 5.154340e+05 0.00 NULL
2024 Technology & Innovation Administrative Procurement Analyst-Non-Mgrl 114736.80000 1.147368e+06 18.48 1.848000e+00 0.000 0.00 10 0.000000e+00 0.00 1.147386e+06 1.147368e+06 18.48 NULL
2024 Technology & Innovation Administrative Project Manager 226161.50000 4.523230e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 4.523230e+05 4.523230e+05 0.00 NULL
2024 Technology & Innovation Administrative Public Information Specialist 150205.80000 7.510290e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.510290e+05 7.510290e+05 0.00 NULL
2024 Technology & Innovation Administrative Public Information Specialist Nm Former M1/M2 128454.33333 3.853630e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 3.853630e+05 3.853630e+05 0.00 NULL
2024 Technology & Innovation Administrative Real Property Manager 146444.00000 1.464440e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.464440e+05 1.464440e+05 0.00 NULL
2024 Technology & Innovation Administrative Staff Analyst 149770.80303 9.884873e+06 25716.63 3.896459e+02 0.000 289.50 66 0.000000e+00 0.00 9.910590e+06 9.884873e+06 25716.63 NULL
2024 Technology & Innovation Agency Attorney 107871.66667 1.294460e+06 0.00 0.000000e+00 0.000 0.00 12 0.000000e+00 0.00 1.294460e+06 1.294460e+06 0.00 NULL
2024 Technology & Innovation Agency Attorney Interne 74086.50000 1.481730e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.481730e+05 1.481730e+05 0.00 NULL
2024 Technology & Innovation Agency Chief Contracting Officer 186909.00000 1.869090e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.869090e+05 1.869090e+05 0.00 NULL
2024 Technology & Innovation Assistant Commissioner 181280.00000 1.812800e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.812800e+05 1.812800e+05 0.00 NULL
2024 Technology & Innovation Associate Call Center Representative-Non-Spvr 67291.20455 2.960813e+06 32595.90 7.408159e+02 0.480 632.25 44 4.800000e-01 21.12 2.993409e+06 2.960834e+06 32574.78 NULL
2024 Technology & Innovation Associate Commissioner 225995.00000 2.259950e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.259950e+05 2.259950e+05 0.00 NULL
2024 Technology & Innovation Associate Labor Relations Analyst 104065.00000 2.081300e+05 1579.18 7.895900e+02 789.590 24.00 2 7.895900e+02 1579.18 2.097092e+05 2.097092e+05 0.00 NULL
2024 Technology & Innovation Associate Quality Assurance Specialist 84872.00000 8.487200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.487200e+04 8.487200e+04 0.00 NULL
2024 Technology & Innovation Associate Staff Analyst 93239.40000 9.323940e+05 884.67 8.846700e+01 1.735 5.00 10 1.735000e+00 17.35 9.332787e+05 9.324113e+05 867.32 NULL
2024 Technology & Innovation Business Promotion Coordinator 81124.11111 7.301170e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.301170e+05 7.301170e+05 0.00 NULL
2024 Technology & Innovation Call Center Representative 42595.23529 1.448238e+07 117612.95 3.459204e+02 0.000 4054.00 340 0.000000e+00 0.00 1.459999e+07 1.448238e+07 117612.95 NULL
2024 Technology & Innovation Certified It Administrator 137068.76923 1.781894e+07 197108.44 1.516219e+03 0.000 2182.50 130 0.000000e+00 0.00 1.801605e+07 1.781894e+07 197108.44 NULL
2024 Technology & Innovation Certified It Developer 133765.00000 1.605180e+06 237.60 1.980000e+01 0.000 4.00 12 0.000000e+00 0.00 1.605418e+06 1.605180e+06 237.60 NULL
2024 Technology & Innovation Chief Advisor, Public Space Policy 148213.00000 1.482130e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.482130e+05 1.482130e+05 0.00 NULL
2024 Technology & Innovation Chief Operating Officer 160000.00000 1.600000e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.600000e+05 1.600000e+05 0.00 NULL
2024 Technology & Innovation City Laborer NA NA 7068.86 3.534430e+03 3534.430 130.00 2 3.534430e+03 7068.86 NA NA NA NULL
2024 Technology & Innovation City Research Scientist 119067.00000 4.762680e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 4.762680e+05 4.762680e+05 0.00 NULL
2024 Technology & Innovation Clerical Associate 56937.81250 9.110050e+05 516.23 3.226438e+01 0.000 17.00 16 0.000000e+00 0.00 9.115212e+05 9.110050e+05 516.23 NULL
2024 Technology & Innovation College Aide 11437.71156 9.150169e+04 0.00 0.000000e+00 0.000 0.00 8 0.000000e+00 0.00 9.150169e+04 9.150169e+04 0.00 NULL
2024 Technology & Innovation College Aide - Assignment Levels Ii And Iii 17582.77500 1.758278e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.758278e+04 1.758278e+04 0.00 NULL
2024 Technology & Innovation Commissioner Of Dept Of Info Technology & Telecommunications 282635.00000 2.826350e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 2.826350e+05 2.826350e+05 0.00 NULL
2024 Technology & Innovation Community Associate 53459.00514 1.871065e+06 19082.88 5.452251e+02 0.000 471.50 35 0.000000e+00 0.00 1.890148e+06 1.871065e+06 19082.88 NULL
2024 Technology & Innovation Community Coordinator 79745.01020 3.907506e+06 83877.07 1.711777e+03 0.000 1610.50 49 0.000000e+00 0.00 3.991383e+06 3.907506e+06 83877.07 NULL
2024 Technology & Innovation Computer Aide-Non-Spvr 57178.66667 3.430720e+05 1360.08 2.266800e+02 0.000 33.25 6 0.000000e+00 0.00 3.444321e+05 3.430720e+05 1360.08 NULL
2024 Technology & Innovation Computer Associate 89911.15217 8.271826e+06 395968.40 4.304004e+03 0.000 5239.75 92 0.000000e+00 0.00 8.667794e+06 8.271826e+06 395968.40 NULL
2024 Technology & Innovation Computer Operations Manager 164014.58621 4.756423e+06 18967.25 6.540431e+02 0.000 211.50 29 0.000000e+00 0.00 4.775390e+06 4.756423e+06 18967.25 NULL
2024 Technology & Innovation Computer Programmer Analyst 54188.46000 1.083769e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.083769e+05 1.083769e+05 0.00 NULL
2024 Technology & Innovation Computer Service Technician 71768.00000 7.176800e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.176800e+04 7.176800e+04 0.00 NULL
2024 Technology & Innovation Computer Specialist 126194.36242 1.880296e+07 216819.68 1.455166e+03 0.000 2642.75 149 0.000000e+00 0.00 1.901978e+07 1.880296e+07 216819.68 NULL
2024 Technology & Innovation Computer Systems Manager 161259.20253 3.821843e+07 124226.47 5.241623e+02 0.000 1262.75 237 0.000000e+00 0.00 3.834266e+07 3.821843e+07 124226.47 NULL
2024 Technology & Innovation Confidential Strategy Planner 89736.80000 4.486840e+05 727.12 1.454240e+02 0.000 9.00 5 0.000000e+00 0.00 4.494111e+05 4.486840e+05 727.12 NULL
2024 Technology & Innovation Cyber Security Analyst 93952.06154 4.885507e+06 52613.74 1.011803e+03 0.000 938.00 52 0.000000e+00 0.00 4.938121e+06 4.885507e+06 52613.74 NULL
2024 Technology & Innovation Deputy Commissioner 173411.83333 1.040471e+06 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 1.040471e+06 1.040471e+06 0.00 NULL
2024 Technology & Innovation Deputy Commissioner Film Office 168826.00000 1.688260e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.688260e+05 1.688260e+05 0.00 NULL
2024 Technology & Innovation Deputy Commissioner Of It 245484.00000 9.819360e+05 0.00 0.000000e+00 0.000 0.00 4 0.000000e+00 0.00 9.819360e+05 9.819360e+05 0.00 NULL
2024 Technology & Innovation Director Of Television 68347.50000 1.366950e+05 3532.41 1.766205e+03 1766.205 76.00 2 1.766205e+03 3532.41 1.402274e+05 1.402274e+05 0.00 NULL
2024 Technology & Innovation Economist 95901.00000 9.590100e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 9.590100e+04 9.590100e+04 0.00 NULL
2024 Technology & Innovation Executive Agency Counsel 186215.51724 5.400250e+06 0.00 0.000000e+00 0.000 0.00 29 0.000000e+00 0.00 5.400250e+06 5.400250e+06 0.00 NULL
2024 Technology & Innovation Executive Director 148610.00000 1.486100e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.486100e+05 1.486100e+05 0.00 NULL
2024 Technology & Innovation Executive Program Specialist 118218.53846 1.536841e+06 0.00 0.000000e+00 0.000 0.00 13 0.000000e+00 0.00 1.536841e+06 1.536841e+06 0.00 NULL
2024 Technology & Innovation First Deputy Commissioner 179208.00000 1.792080e+05 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 1.792080e+05 1.792080e+05 0.00 NULL
2024 Technology & Innovation Graphic Artist 88252.66667 2.647580e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.647580e+05 2.647580e+05 0.00 NULL
2024 Technology & Innovation High School Student Aide 7629.73333 4.577840e+04 0.00 0.000000e+00 0.000 0.00 6 0.000000e+00 0.00 4.577840e+04 4.577840e+04 0.00 NULL
2024 Technology & Innovation Inspector 65574.66667 1.967240e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.967240e+05 1.967240e+05 0.00 NULL
2024 Technology & Innovation It Automation And Monitoring Engineer 141972.60000 7.098630e+05 0.00 0.000000e+00 0.000 0.00 5 0.000000e+00 0.00 7.098630e+05 7.098630e+05 0.00 NULL
2024 Technology & Innovation It Infrastructure Engineer 134491.20000 1.344912e+06 2446.66 2.446660e+02 0.000 27.25 10 0.000000e+00 0.00 1.347359e+06 1.344912e+06 2446.66 NULL
2024 Technology & Innovation It Project Specialist 122290.62264 6.481403e+06 166277.27 3.137307e+03 0.000 1956.75 53 0.000000e+00 0.00 6.647680e+06 6.481403e+06 166277.27 NULL
2024 Technology & Innovation It Security Specialist 151769.86567 1.016858e+07 42441.33 6.334527e+02 0.000 450.50 67 0.000000e+00 0.00 1.021102e+07 1.016858e+07 42441.33 NULL
2024 Technology & Innovation It Service Management Specialist 97904.50000 1.958090e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 1.958090e+05 1.958090e+05 0.00 NULL
2024 Technology & Innovation New York City Public Service Fellow 49481.00000 1.484430e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 1.484430e+05 1.484430e+05 0.00 NULL
2024 Technology & Innovation Principal Administrative Associate - Non Supvr 75075.60185 2.027041e+06 55357.81 2.050289e+03 0.000 1130.50 27 0.000000e+00 0.00 2.082399e+06 2.027041e+06 55357.81 NULL
2024 Technology & Innovation Procurement Analyst 87538.66667 2.626160e+05 0.00 0.000000e+00 0.000 0.00 3 0.000000e+00 0.00 2.626160e+05 2.626160e+05 0.00 NULL
2024 Technology & Innovation Program Producer 85299.00000 7.676910e+05 0.00 0.000000e+00 0.000 0.00 9 0.000000e+00 0.00 7.676910e+05 7.676910e+05 0.00 NULL
2024 Technology & Innovation Quality Assurance Specialist 62392.00000 6.239200e+04 2546.46 2.546460e+03 2546.460 64.00 1 2.546460e+03 2546.46 6.493846e+04 6.493846e+04 0.00 NULL
2024 Technology & Innovation Radio And Television Operator 65066.04706 1.106123e+06 33724.07 1.983769e+03 799.600 734.00 17 7.996000e+02 13593.20 1.139847e+06 1.119716e+06 20130.87 NULL
2024 Technology & Innovation Secretary 70513.00000 7.051300e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.051300e+04 7.051300e+04 0.00 NULL
2024 Technology & Innovation Secretary Of Commissioner 72109.00000 7.210900e+04 5362.96 5.362960e+03 5362.960 99.50 1 5.362960e+03 5362.96 7.747196e+04 7.747196e+04 0.00 NULL
2024 Technology & Innovation Secretary To The Deputy Commissioner 87182.00000 8.718200e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 8.718200e+04 8.718200e+04 0.00 NULL
2024 Technology & Innovation Senior It Architect 184919.12500 1.479353e+06 34037.47 4.254684e+03 0.000 281.00 8 0.000000e+00 0.00 1.513390e+06 1.479353e+06 34037.47 NULL
2024 Technology & Innovation Sign Language Interpreter 137600.00000 2.752000e+05 0.00 0.000000e+00 0.000 0.00 2 0.000000e+00 0.00 2.752000e+05 2.752000e+05 0.00 NULL
2024 Technology & Innovation Staff Analyst 75480.58824 1.283170e+06 855.11 5.030059e+01 0.000 20.25 17 0.000000e+00 0.00 1.284025e+06 1.283170e+06 855.11 NULL
2024 Technology & Innovation Strategic Initiative Specialist 122495.00000 3.674850e+05 2299.64 7.665467e+02 12.680 30.50 3 1.268000e+01 38.04 3.697846e+05 3.675230e+05 2261.60 NULL
2024 Technology & Innovation Summer College Intern 5613.48389 2.526068e+05 0.00 0.000000e+00 0.000 0.00 45 0.000000e+00 0.00 2.526068e+05 2.526068e+05 0.00 NULL
2024 Technology & Innovation Summer Graduate Intern 7543.85844 2.112280e+05 0.00 0.000000e+00 0.000 0.00 28 0.000000e+00 0.00 2.112280e+05 2.112280e+05 0.00 NULL
2024 Technology & Innovation Supervising Computer Service Technician 79690.00000 7.969000e+04 0.00 0.000000e+00 0.000 0.00 1 0.000000e+00 0.00 7.969000e+04 7.969000e+04 0.00 NULL
2024 Technology & Innovation Supervisor Of Radio And Television Operators 91217.16667 5.473030e+05 36741.98 6.123663e+03 611.735 570.00 6 6.117350e+02 3670.41 5.840450e+05 5.509734e+05 33071.57 NULL
2024 Technology & Innovation Telecommunication Manager 168732.80000 3.374656e+06 0.00 0.000000e+00 0.000 0.00 20 0.000000e+00 0.00 3.374656e+06 3.374656e+06 0.00 NULL
2024 Technology & Innovation Telecommunications Associate 86025.06250 5.505604e+06 235815.05 3.684610e+03 0.000 3185.50 64 0.000000e+00 0.00 5.741419e+06 5.505604e+06 235815.05 NULL
2024 Technology & Innovation Telecommunications Manager 119787.00000 1.796805e+06 36277.23 2.418482e+03 0.000 398.75 15 0.000000e+00 0.00 1.833082e+06 1.796805e+06 36277.23 NULL
# TODO check this
total_savings_by_agency |>
  slice_max(agency_savings, n = 10) |>
  kable(digits = 0, format.args = list(big.mark = ","))
agency_name agency_savings
Dept. Of Design & Construction 20,987,596
Board Of Election 18,406,874
Nyc Employees Retirement Sys 12,636,379
Dept Of Info Tech & Telecomm 12,148,022
Bronx District Attorney 6,806,976
District Attorney Qns County 5,449,610
Office Of Management & Budget 4,953,352
Department Of Investigation 4,680,151
Office Of Emergency Management 3,799,789
Campaign Finance Board 3,314,613

In total, allocating a pay increase in this manner is estimated to save the City NA. We can see the ten agencies that save the most money using this method.

time_vec <- c("Last Updated:", format(Sys.time(), "%Y-%m-%d at %H:%M%p"))
cat(paste(time_vec, " "))
Last Updated:   2025-03-04 at 19:33PM  

Footnotes

  1. The Commission has determined it was best to analyze this using the highest level departmental data. This was created using the published department from payroll data and labeling it with the highest level department information that could be reasonably assigned. Lower level agency data has been retained and is used as a key to help identify unique employees within an agency in the absence of unique employee identifiers.↩︎

  2. https://www.ocb-nyc.org/about/↩︎

  3. The Commission has determined it was best to analyze this using the highest level departmental data. This was created using the published department from payroll data and labeling it with the highest level department information that could be reasonably assigned. Lower level agency data has been retained and is used as a key to help identify unique employees within an agency in the absence of unique employee identifiers.↩︎

  4. https://codelibrary.amlegal.com/codes/newyorkcity/latest/NYCcharter/0-0-0-9↩︎